@onairos/react-native 3.4.0 β 3.5.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +62 -13
- package/lib/commonjs/api/index.js +9 -145
- package/lib/commonjs/assets/animations/loaderani.json +1 -0
- package/lib/commonjs/assets/animations/persona-animation.json +1 -0
- package/lib/commonjs/assets/fonts/EBGaramond-VariableFont_wght.ttf +0 -0
- package/lib/commonjs/assets/fonts/IBMPlexSans-VariableFont_wdth,wght.ttf +0 -0
- package/lib/commonjs/assets/icons/Facebookicon.png +0 -0
- package/lib/commonjs/assets/icons/Gmail.png +0 -0
- package/lib/commonjs/assets/icons/Linkedinicon.png +0 -0
- package/lib/commonjs/assets/icons/Redditicon.png +0 -0
- package/lib/commonjs/assets/icons/YouTubeicon2.png +0 -0
- package/lib/commonjs/assets/icons/YouTubeicon3.png +0 -0
- package/lib/commonjs/assets/icons/chatgpt.png +0 -0
- package/lib/commonjs/assets/icons/claude.png +0 -0
- package/lib/commonjs/assets/icons/gemini.png +0 -0
- package/lib/commonjs/assets/icons/grok.png +0 -0
- package/lib/commonjs/assets/images/Checkbox.svg +3 -0
- package/lib/commonjs/assets/images/EnochE.svg +19 -0
- package/lib/commonjs/assets/images/Enochicon1.png +0 -0
- package/lib/commonjs/assets/images/Face_ID_logo.png +0 -0
- package/lib/commonjs/assets/images/Facebookicon.png +0 -0
- package/lib/commonjs/assets/images/Gmail.png +0 -0
- package/lib/commonjs/assets/images/Googlelogo.png +0 -0
- package/lib/commonjs/assets/images/Linkedinicon.png +0 -0
- package/lib/commonjs/assets/images/Onairoslogo.png +0 -0
- package/lib/commonjs/assets/images/Personalityprofile.svg +3 -0
- package/lib/commonjs/assets/images/Personalitytraits.svg +3 -0
- package/lib/commonjs/assets/images/Redditicon.png +0 -0
- package/lib/commonjs/assets/images/Userpreferences.svg +3 -0
- package/lib/commonjs/assets/images/YouTubeicon3.png +0 -0
- package/lib/commonjs/assets/images/arrow.svg +20 -0
- package/lib/commonjs/assets/images/basicproficon.svg +43 -0
- package/lib/commonjs/assets/images/basicprofile.svg +3 -0
- package/lib/commonjs/assets/images/chatgpt.png +0 -0
- package/lib/commonjs/assets/images/checkmark.svg +4 -0
- package/lib/commonjs/assets/images/claude.png +0 -0
- package/lib/commonjs/assets/images/contentanalysis.svg +3 -0
- package/lib/commonjs/assets/images/contenticon.svg +23 -0
- package/lib/commonjs/assets/images/gemini.png +0 -0
- package/lib/commonjs/assets/images/grok.png +0 -0
- package/lib/commonjs/assets/images/persona1.png +0 -0
- package/lib/commonjs/assets/images/persona2.png +0 -0
- package/lib/commonjs/assets/images/persona3.png +0 -0
- package/lib/commonjs/assets/images/persona4.png +0 -0
- package/lib/commonjs/assets/images/persona5.png +0 -0
- package/lib/commonjs/assets/images/personalityicon.svg +18 -0
- package/lib/commonjs/assets/images/x-close.svg +3 -0
- package/lib/commonjs/components/BodyText.js +9 -0
- package/lib/commonjs/components/BrandMark.js +10 -0
- package/lib/commonjs/components/CodeInput.js +9 -0
- package/lib/commonjs/components/EmailInput.js +8 -0
- package/lib/commonjs/components/GoogleButton.js +9 -0
- package/lib/commonjs/components/HeadingGroup.js +9 -0
- package/lib/commonjs/components/LLMDataInputModal.js +14 -0
- package/lib/commonjs/components/ModalHeader.js +9 -0
- package/lib/commonjs/components/ModalSheet.js +9 -0
- package/lib/commonjs/components/Onairos.js +14 -374
- package/lib/commonjs/components/OnairosButton.js +13 -309
- package/lib/commonjs/components/OnairosSignInButton.js +12 -0
- package/lib/commonjs/components/Overlay.js +13 -483
- package/lib/commonjs/components/PersonaImage.js +10 -0
- package/lib/commonjs/components/PersonaLoadingScreen.js +12 -0
- package/lib/commonjs/components/PersonalizationConsentScreen.js +13 -0
- package/lib/commonjs/components/PinCreationScreen.js +12 -0
- package/lib/commonjs/components/PinInput.js +9 -302
- package/lib/commonjs/components/PlatformConnectorsStep.js +22 -0
- package/lib/commonjs/components/PlatformList.js +10 -137
- package/lib/commonjs/components/PlatformToggle.js +9 -0
- package/lib/commonjs/components/PrimaryButton.js +10 -0
- package/lib/commonjs/components/SignInMatchAnimation.js +9 -0
- package/lib/commonjs/components/SignInStep.js +12 -0
- package/lib/commonjs/components/UniversalOnboarding.js +29 -1702
- package/lib/commonjs/components/VerificationStep.js +11 -0
- package/lib/commonjs/components/WelcomeScreen.js +21 -0
- package/lib/commonjs/components/icons/Basicproficon.js +8 -0
- package/lib/commonjs/components/icons/Basicprofile.js +8 -0
- package/lib/commonjs/components/icons/Checkbox.js +8 -0
- package/lib/commonjs/components/icons/Checkmark.js +8 -0
- package/lib/commonjs/components/icons/Contentanalysis.js +8 -0
- package/lib/commonjs/components/icons/Contenticon.js +8 -0
- package/lib/commonjs/components/icons/EnochE.js +8 -0
- package/lib/commonjs/components/icons/Personalityicon.js +8 -0
- package/lib/commonjs/components/icons/Personalityprofile.js +8 -0
- package/lib/commonjs/components/icons/Personalitytraits.js +8 -0
- package/lib/commonjs/components/icons/Userpreferences.js +8 -0
- package/lib/commonjs/components/icons/index.js +17 -0
- package/lib/commonjs/components/onboarding/OAuthWebView.js +14 -827
- package/lib/commonjs/components/onboarding/OnboardingHeader.js +10 -74
- package/lib/commonjs/components/onboarding/PinInput.js +10 -283
- package/lib/commonjs/components/onboarding/PlatformConnector.js +11 -249
- package/lib/commonjs/config/api.js +7 -0
- package/lib/commonjs/constants/index.js +7 -83
- package/lib/commonjs/context/AuthContext.js +10 -0
- package/lib/commonjs/hooks/useConnectedAccounts.js +9 -0
- package/lib/commonjs/hooks/useConnections.js +8 -159
- package/lib/commonjs/hooks/useCredentials.js +10 -177
- package/lib/commonjs/hooks/useUserConnections.js +10 -0
- package/lib/commonjs/index.js +35 -106
- package/lib/commonjs/services/SDK_API_KEY_VALIDATION.md +31 -38
- package/lib/commonjs/services/apiClient.js +8 -0
- package/lib/commonjs/services/apiKeyService.js +9 -946
- package/lib/commonjs/services/authService.js +10 -0
- package/lib/commonjs/services/biometricPinService.js +8 -0
- package/lib/commonjs/services/chatGPTConversationExtractor.js +8 -0
- package/lib/commonjs/services/chatGPTConversationService.js +9 -0
- package/lib/commonjs/services/claudeConversationExtractor.js +8 -0
- package/lib/commonjs/services/claudeConversationService.js +9 -0
- package/lib/commonjs/services/connectedAccountsService.js +10 -0
- package/lib/commonjs/services/googleAuthService.js +11 -0
- package/lib/commonjs/services/imageCompressionService.js +7 -0
- package/lib/commonjs/services/jwtStorageService.js +7 -0
- package/lib/commonjs/services/linkedinDOMExtractor.js +7 -0
- package/lib/commonjs/services/linkedinProfileService.js +9 -0
- package/lib/commonjs/services/linkedinScrapingService.js +8 -0
- package/lib/commonjs/services/llmDataStorage.js +8 -0
- package/lib/commonjs/services/mobileTrainingService.js +8 -0
- package/lib/commonjs/services/oauthService.js +11 -390
- package/lib/commonjs/services/pinEncryptionService.js +8 -0
- package/lib/commonjs/services/pinStorageUtils.js +7 -0
- package/lib/commonjs/services/platformAuthService.js +12 -1067
- package/lib/commonjs/services/storageService.js +8 -0
- package/lib/commonjs/services/trainingApiHelpers.js +7 -0
- package/lib/commonjs/services/userConnectionsService.js +10 -0
- package/lib/commonjs/services/youtubeMigrationService.js +10 -0
- package/lib/commonjs/theme/index.js +7 -0
- package/lib/commonjs/types/ambient.d.js +1 -2
- package/lib/commonjs/types/declarations.d.js +1 -2
- package/lib/commonjs/types/index.js +1 -6
- package/lib/commonjs/types/node-fix.d.js +1 -2
- package/lib/commonjs/types/node-override.d.js +1 -2
- package/lib/commonjs/types/opacity.d.js +1 -2
- package/lib/commonjs/types.js +1 -14
- package/lib/commonjs/utils/Portal.js +8 -98
- package/lib/commonjs/utils/api.js +9 -129
- package/lib/commonjs/utils/assetRegistry.js +33 -0
- package/lib/commonjs/utils/auth.js +9 -111
- package/lib/commonjs/utils/crypto.js +8 -62
- package/lib/commonjs/utils/debugHelper.js +1 -64
- package/lib/commonjs/utils/encryption.js +7 -76
- package/lib/commonjs/utils/eventUtils.js +1 -0
- package/lib/commonjs/utils/haptics.js +9 -0
- package/lib/commonjs/utils/imagePreloader.js +1 -0
- package/lib/commonjs/utils/networkDiagnostics.js +8 -0
- package/lib/commonjs/utils/onairosApi.js +9 -350
- package/lib/commonjs/utils/programmaticFlow.js +9 -117
- package/lib/commonjs/utils/retryHelper.js +1 -220
- package/lib/commonjs/utils/secureStorage.js +10 -349
- package/lib/commonjs/utils/webviewScripts/chatgpt.js +1 -0
- package/lib/commonjs/utils/webviewScripts/claude.js +1 -0
- package/lib/commonjs/utils/webviewScripts/index.js +9 -0
- package/lib/commonjs/utils/webviewScripts/linkedin.js +1 -0
- package/lib/module/api/index.js +1 -139
- package/lib/module/assets/animations/loaderani.json +1 -0
- package/lib/module/assets/animations/persona-animation.json +1 -0
- package/lib/module/assets/fonts/EBGaramond-VariableFont_wght.ttf +0 -0
- package/lib/module/assets/fonts/IBMPlexSans-VariableFont_wdth,wght.ttf +0 -0
- package/lib/module/assets/icons/Facebookicon.png +0 -0
- package/lib/module/assets/icons/Gmail.png +0 -0
- package/lib/module/assets/icons/Linkedinicon.png +0 -0
- package/lib/module/assets/icons/Redditicon.png +0 -0
- package/lib/module/assets/icons/YouTubeicon2.png +0 -0
- package/lib/module/assets/icons/YouTubeicon3.png +0 -0
- package/lib/module/assets/icons/chatgpt.png +0 -0
- package/lib/module/assets/icons/claude.png +0 -0
- package/lib/module/assets/icons/farcaster.png +0 -0
- package/lib/module/assets/icons/gemini.png +0 -0
- package/lib/module/assets/icons/grok.png +0 -0
- package/lib/module/assets/icons/instagram.png +0 -0
- package/lib/module/assets/icons/pinterest.png +0 -0
- package/lib/module/assets/icons/swerv_logo.png +0 -0
- package/lib/module/assets/icons/twitter.jpg +0 -0
- package/lib/module/assets/images/Checkbox.svg +3 -0
- package/lib/module/assets/images/EnochE.svg +19 -0
- package/lib/module/assets/images/Enochicon1.png +0 -0
- package/lib/module/assets/images/Face_ID_logo.png +0 -0
- package/lib/module/assets/images/Facebookicon.png +0 -0
- package/lib/module/assets/images/Gmail.png +0 -0
- package/lib/module/assets/images/Googlelogo.png +0 -0
- package/lib/module/assets/images/Linkedinicon.png +0 -0
- package/lib/module/assets/images/Onairoslogo.png +0 -0
- package/lib/module/assets/images/Personalityprofile.svg +3 -0
- package/lib/module/assets/images/Personalitytraits.svg +3 -0
- package/lib/module/assets/images/Redditicon.png +0 -0
- package/lib/module/assets/images/Userpreferences.svg +3 -0
- package/lib/module/assets/images/YouTubeicon3.png +0 -0
- package/lib/module/assets/images/arrow.svg +20 -0
- package/lib/module/assets/images/basicproficon.svg +43 -0
- package/lib/module/assets/images/basicprofile.svg +3 -0
- package/lib/module/assets/images/chatgpt.png +0 -0
- package/lib/module/assets/images/checkmark.svg +4 -0
- package/lib/module/assets/images/claude.png +0 -0
- package/lib/module/assets/images/contentanalysis.svg +3 -0
- package/lib/module/assets/images/contenticon.svg +23 -0
- package/lib/module/assets/images/gemini.png +0 -0
- package/lib/module/assets/images/grok.png +0 -0
- package/lib/module/assets/images/persona1.png +0 -0
- package/lib/module/assets/images/persona2.png +0 -0
- package/lib/module/assets/images/persona3.png +0 -0
- package/lib/module/assets/images/persona4.png +0 -0
- package/lib/module/assets/images/persona5.png +0 -0
- package/lib/module/assets/images/personalityicon.svg +18 -0
- package/lib/module/assets/images/x-close.svg +3 -0
- package/lib/module/components/BodyText.js +1 -0
- package/lib/module/components/BrandMark.js +1 -0
- package/lib/module/components/CodeInput.js +1 -0
- package/lib/module/components/EmailInput.js +1 -0
- package/lib/module/components/GoogleButton.js +1 -0
- package/lib/module/components/HeadingGroup.js +1 -0
- package/lib/module/components/LLMDataInputModal.js +8 -0
- package/lib/module/components/ModalHeader.js +1 -0
- package/lib/module/components/ModalSheet.js +1 -0
- package/lib/module/components/Onairos.js +1 -367
- package/lib/module/components/OnairosButton.js +1 -302
- package/lib/module/components/OnairosSignInButton.js +1 -0
- package/lib/module/components/Overlay.js +1 -474
- package/lib/module/components/PersonaImage.js +1 -0
- package/lib/module/components/PersonaLoadingScreen.js +1 -0
- package/lib/module/components/PersonalizationConsentScreen.js +1 -0
- package/lib/module/components/PinCreationScreen.js +1 -0
- package/lib/module/components/PinInput.js +1 -293
- package/lib/module/components/PlatformConnectorsStep.js +1 -0
- package/lib/module/components/PlatformList.js +1 -129
- package/lib/module/components/PlatformToggle.js +1 -0
- package/lib/module/components/PrimaryButton.js +1 -0
- package/lib/module/components/SignInMatchAnimation.js +1 -0
- package/lib/module/components/SignInStep.js +1 -0
- package/lib/module/components/UniversalOnboarding.js +1 -1693
- package/lib/module/components/VerificationStep.js +1 -0
- package/lib/module/components/WelcomeScreen.js +1 -0
- package/lib/module/components/icons/Basicproficon.js +1 -0
- package/lib/module/components/icons/Basicprofile.js +1 -0
- package/lib/module/components/icons/Checkbox.js +1 -0
- package/lib/module/components/icons/Checkmark.js +1 -0
- package/lib/module/components/icons/Contentanalysis.js +1 -0
- package/lib/module/components/icons/Contenticon.js +1 -0
- package/lib/module/components/icons/EnochE.js +1 -0
- package/lib/module/components/icons/Personalityicon.js +1 -0
- package/lib/module/components/icons/Personalityprofile.js +1 -0
- package/lib/module/components/icons/Personalitytraits.js +1 -0
- package/lib/module/components/icons/Userpreferences.js +1 -0
- package/lib/module/components/icons/index.js +1 -0
- package/lib/module/components/onboarding/OAuthWebView.js +1 -818
- package/lib/module/components/onboarding/OnboardingHeader.js +1 -66
- package/lib/module/components/onboarding/PinInput.js +1 -274
- package/lib/module/components/onboarding/PlatformConnector.js +1 -240
- package/lib/module/config/api.js +1 -0
- package/lib/module/constants/index.js +1 -77
- package/lib/module/context/AuthContext.js +1 -0
- package/lib/module/hooks/useConnectedAccounts.js +1 -0
- package/lib/module/hooks/useConnections.js +1 -152
- package/lib/module/hooks/useCredentials.js +6 -169
- package/lib/module/hooks/useUserConnections.js +1 -0
- package/lib/module/index.js +1 -32
- package/lib/module/services/SDK_API_KEY_VALIDATION.md +31 -38
- package/lib/module/services/apiClient.js +1 -0
- package/lib/module/services/apiKeyService.js +1 -919
- package/lib/module/services/authService.js +1 -0
- package/lib/module/services/biometricPinService.js +1 -0
- package/lib/module/services/chatGPTConversationExtractor.js +1 -0
- package/lib/module/services/chatGPTConversationService.js +1 -0
- package/lib/module/services/claudeConversationExtractor.js +1 -0
- package/lib/module/services/claudeConversationService.js +1 -0
- package/lib/module/services/connectedAccountsService.js +1 -0
- package/lib/module/services/googleAuthService.js +1 -0
- package/lib/module/services/imageCompressionService.js +1 -0
- package/lib/module/services/jwtStorageService.js +1 -0
- package/lib/module/services/linkedinDOMExtractor.js +1 -0
- package/lib/module/services/linkedinProfileService.js +1 -0
- package/lib/module/services/linkedinScrapingService.js +1 -0
- package/lib/module/services/llmDataStorage.js +1 -0
- package/lib/module/services/mobileTrainingService.js +1 -0
- package/lib/module/services/oauthService.js +1 -380
- package/lib/module/services/pinEncryptionService.js +7 -0
- package/lib/module/services/pinStorageUtils.js +1 -0
- package/lib/module/services/platformAuthService.js +1 -1041
- package/lib/module/services/storageService.js +1 -0
- package/lib/module/services/trainingApiHelpers.js +1 -0
- package/lib/module/services/userConnectionsService.js +1 -0
- package/lib/module/services/youtubeMigrationService.js +1 -0
- package/lib/module/theme/index.js +1 -0
- package/lib/module/types.js +1 -10
- package/lib/module/utils/Portal.js +1 -90
- package/lib/module/utils/api.js +1 -117
- package/lib/module/utils/assetRegistry.js +33 -0
- package/lib/module/utils/auth.js +1 -99
- package/lib/module/utils/crypto.js +1 -54
- package/lib/module/utils/debugHelper.js +1 -54
- package/lib/module/utils/encryption.js +1 -67
- package/lib/module/utils/eventUtils.js +1 -0
- package/lib/module/utils/haptics.js +8 -0
- package/lib/module/utils/imagePreloader.js +1 -0
- package/lib/module/utils/networkDiagnostics.js +1 -0
- package/lib/module/utils/onairosApi.js +1 -333
- package/lib/module/utils/programmaticFlow.js +1 -111
- package/lib/module/utils/retryHelper.js +1 -211
- package/lib/module/utils/secureStorage.js +6 -330
- package/lib/module/utils/webviewScripts/chatgpt.js +1 -0
- package/lib/module/utils/webviewScripts/claude.js +1 -0
- package/lib/module/utils/webviewScripts/index.js +1 -0
- package/lib/module/utils/webviewScripts/linkedin.js +1 -0
- package/package.json +62 -39
- package/lib/commonjs/api/index.js.map +0 -1
- package/lib/commonjs/assets/images/email.png +0 -0
- package/lib/commonjs/assets/images/linkedin.png +0 -0
- package/lib/commonjs/assets/images/reddit.png +0 -0
- package/lib/commonjs/assets/images/youtube.png +0 -0
- package/lib/commonjs/components/DataRequestModal.js +0 -228
- package/lib/commonjs/components/DataRequestModal.js.map +0 -1
- package/lib/commonjs/components/DataRequestScreen.js +0 -329
- package/lib/commonjs/components/DataRequestScreen.js.map +0 -1
- package/lib/commonjs/components/EmailVerificationModal.js +0 -320
- package/lib/commonjs/components/EmailVerificationModal.js.map +0 -1
- package/lib/commonjs/components/Onairos.js.map +0 -1
- package/lib/commonjs/components/OnairosButton.js.map +0 -1
- package/lib/commonjs/components/Overlay.js.map +0 -1
- package/lib/commonjs/components/PinInput.js.map +0 -1
- package/lib/commonjs/components/PlatformList.js.map +0 -1
- package/lib/commonjs/components/TrainingModal.js +0 -717
- package/lib/commonjs/components/TrainingModal.js.map +0 -1
- package/lib/commonjs/components/UniversalOnboarding.js.map +0 -1
- package/lib/commonjs/components/UniversalOnboarding.tsx.new +0 -455
- package/lib/commonjs/components/onboarding/OAuthWebView.js.map +0 -1
- package/lib/commonjs/components/onboarding/OnboardingHeader.js.map +0 -1
- package/lib/commonjs/components/onboarding/PinInput.js.map +0 -1
- package/lib/commonjs/components/onboarding/PlatformConnector.js.map +0 -1
- package/lib/commonjs/components/screens/ConnectorScreen.js +0 -146
- package/lib/commonjs/components/screens/ConnectorScreen.js.map +0 -1
- package/lib/commonjs/components/screens/LoadingScreen.js +0 -91
- package/lib/commonjs/components/screens/LoadingScreen.js.map +0 -1
- package/lib/commonjs/components/screens/PinCreationScreen.js +0 -61
- package/lib/commonjs/components/screens/PinCreationScreen.js.map +0 -1
- package/lib/commonjs/constants/index.js.map +0 -1
- package/lib/commonjs/hooks/useConnections.js.map +0 -1
- package/lib/commonjs/hooks/useCredentials.js.map +0 -1
- package/lib/commonjs/index.js.map +0 -1
- package/lib/commonjs/services/apiKeyService.js.map +0 -1
- package/lib/commonjs/services/oauthService.js.map +0 -1
- package/lib/commonjs/services/platformAuthService.js.map +0 -1
- package/lib/commonjs/types/ambient.d.js.map +0 -1
- package/lib/commonjs/types/declarations.d.js.map +0 -1
- package/lib/commonjs/types/index.d.js.map +0 -1
- package/lib/commonjs/types/index.js.map +0 -1
- package/lib/commonjs/types/node-fix.d.js.map +0 -1
- package/lib/commonjs/types/node-override.d.js.map +0 -1
- package/lib/commonjs/types/opacity.d.js.map +0 -1
- package/lib/commonjs/types/types.d.js.map +0 -1
- package/lib/commonjs/types.js.map +0 -1
- package/lib/commonjs/utils/Portal.js.map +0 -1
- package/lib/commonjs/utils/api.js.map +0 -1
- package/lib/commonjs/utils/auth.js.map +0 -1
- package/lib/commonjs/utils/crypto.js.map +0 -1
- package/lib/commonjs/utils/debugHelper.js.map +0 -1
- package/lib/commonjs/utils/encryption.js.map +0 -1
- package/lib/commonjs/utils/onairosApi.js.map +0 -1
- package/lib/commonjs/utils/programmaticFlow.js.map +0 -1
- package/lib/commonjs/utils/retryHelper.js.map +0 -1
- package/lib/commonjs/utils/secureStorage.js.map +0 -1
- package/lib/module/api/index.js.map +0 -1
- package/lib/module/assets/images/email.png +0 -0
- package/lib/module/assets/images/linkedin.png +0 -0
- package/lib/module/assets/images/reddit.png +0 -0
- package/lib/module/assets/images/youtube.png +0 -0
- package/lib/module/components/DataRequestModal.js +0 -220
- package/lib/module/components/DataRequestModal.js.map +0 -1
- package/lib/module/components/DataRequestScreen.js +0 -321
- package/lib/module/components/DataRequestScreen.js.map +0 -1
- package/lib/module/components/EmailVerificationModal.js +0 -311
- package/lib/module/components/EmailVerificationModal.js.map +0 -1
- package/lib/module/components/Onairos.js.map +0 -1
- package/lib/module/components/OnairosButton.js.map +0 -1
- package/lib/module/components/Overlay.js.map +0 -1
- package/lib/module/components/PinInput.js.map +0 -1
- package/lib/module/components/PlatformList.js.map +0 -1
- package/lib/module/components/TrainingModal.js +0 -708
- package/lib/module/components/TrainingModal.js.map +0 -1
- package/lib/module/components/UniversalOnboarding.js.map +0 -1
- package/lib/module/components/UniversalOnboarding.tsx.new +0 -455
- package/lib/module/components/onboarding/OAuthWebView.js.map +0 -1
- package/lib/module/components/onboarding/OnboardingHeader.js.map +0 -1
- package/lib/module/components/onboarding/PinInput.js.map +0 -1
- package/lib/module/components/onboarding/PlatformConnector.js.map +0 -1
- package/lib/module/components/screens/ConnectorScreen.js +0 -138
- package/lib/module/components/screens/ConnectorScreen.js.map +0 -1
- package/lib/module/components/screens/LoadingScreen.js +0 -83
- package/lib/module/components/screens/LoadingScreen.js.map +0 -1
- package/lib/module/components/screens/PinCreationScreen.js +0 -53
- package/lib/module/components/screens/PinCreationScreen.js.map +0 -1
- package/lib/module/constants/index.js.map +0 -1
- package/lib/module/hooks/useConnections.js.map +0 -1
- package/lib/module/hooks/useCredentials.js.map +0 -1
- package/lib/module/index.js.map +0 -1
- package/lib/module/services/apiKeyService.js.map +0 -1
- package/lib/module/services/oauthService.js.map +0 -1
- package/lib/module/services/platformAuthService.js.map +0 -1
- package/lib/module/types/ambient.d.js.map +0 -1
- package/lib/module/types/declarations.d.js.map +0 -1
- package/lib/module/types/index.d.js.map +0 -1
- package/lib/module/types/index.js.map +0 -1
- package/lib/module/types/node-fix.d.js.map +0 -1
- package/lib/module/types/node-override.d.js.map +0 -1
- package/lib/module/types/opacity.d.js.map +0 -1
- package/lib/module/types/types.d.js.map +0 -1
- package/lib/module/types.js.map +0 -1
- package/lib/module/utils/Portal.js.map +0 -1
- package/lib/module/utils/api.js.map +0 -1
- package/lib/module/utils/auth.js.map +0 -1
- package/lib/module/utils/crypto.js.map +0 -1
- package/lib/module/utils/debugHelper.js.map +0 -1
- package/lib/module/utils/encryption.js.map +0 -1
- package/lib/module/utils/onairosApi.js.map +0 -1
- package/lib/module/utils/programmaticFlow.js.map +0 -1
- package/lib/module/utils/retryHelper.js.map +0 -1
- package/lib/module/utils/secureStorage.js.map +0 -1
- package/lib/typescript/api/index.d.ts +0 -8
- package/lib/typescript/api/index.d.ts.map +0 -1
- package/lib/typescript/components/DataRequestModal.d.ts +0 -11
- package/lib/typescript/components/DataRequestModal.d.ts.map +0 -1
- package/lib/typescript/components/DataRequestScreen.d.ts +0 -11
- package/lib/typescript/components/DataRequestScreen.d.ts.map +0 -1
- package/lib/typescript/components/EmailVerificationModal.d.ts +0 -11
- package/lib/typescript/components/EmailVerificationModal.d.ts.map +0 -1
- package/lib/typescript/components/Onairos.d.ts +0 -4
- package/lib/typescript/components/Onairos.d.ts.map +0 -1
- package/lib/typescript/components/OnairosButton.d.ts +0 -12
- package/lib/typescript/components/OnairosButton.d.ts.map +0 -1
- package/lib/typescript/components/Overlay.d.ts +0 -4
- package/lib/typescript/components/Overlay.d.ts.map +0 -1
- package/lib/typescript/components/PinInput.d.ts +0 -4
- package/lib/typescript/components/PinInput.d.ts.map +0 -1
- package/lib/typescript/components/PlatformList.d.ts +0 -4
- package/lib/typescript/components/PlatformList.d.ts.map +0 -1
- package/lib/typescript/components/TrainingModal.d.ts +0 -4
- package/lib/typescript/components/TrainingModal.d.ts.map +0 -1
- package/lib/typescript/components/UniversalOnboarding.d.ts +0 -4
- package/lib/typescript/components/UniversalOnboarding.d.ts.map +0 -1
- package/lib/typescript/components/onboarding/OAuthWebView.d.ts +0 -10
- package/lib/typescript/components/onboarding/OAuthWebView.d.ts.map +0 -1
- package/lib/typescript/components/onboarding/OnboardingHeader.d.ts +0 -11
- package/lib/typescript/components/onboarding/OnboardingHeader.d.ts.map +0 -1
- package/lib/typescript/components/onboarding/PinInput.d.ts +0 -4
- package/lib/typescript/components/onboarding/PinInput.d.ts.map +0 -1
- package/lib/typescript/components/onboarding/PlatformConnector.d.ts +0 -13
- package/lib/typescript/components/onboarding/PlatformConnector.d.ts.map +0 -1
- package/lib/typescript/components/screens/ConnectorScreen.d.ts +0 -9
- package/lib/typescript/components/screens/ConnectorScreen.d.ts.map +0 -1
- package/lib/typescript/components/screens/LoadingScreen.d.ts +0 -9
- package/lib/typescript/components/screens/LoadingScreen.d.ts.map +0 -1
- package/lib/typescript/components/screens/PinCreationScreen.d.ts +0 -10
- package/lib/typescript/components/screens/PinCreationScreen.d.ts.map +0 -1
- package/lib/typescript/constants/index.d.ts +0 -53
- package/lib/typescript/constants/index.d.ts.map +0 -1
- package/lib/typescript/hooks/useConnections.d.ts +0 -9
- package/lib/typescript/hooks/useConnections.d.ts.map +0 -1
- package/lib/typescript/hooks/useCredentials.d.ts +0 -9
- package/lib/typescript/hooks/useCredentials.d.ts.map +0 -1
- package/lib/typescript/index.d.ts +0 -18
- package/lib/typescript/index.d.ts.map +0 -1
- package/lib/typescript/services/apiKeyService.d.ts +0 -132
- package/lib/typescript/services/apiKeyService.d.ts.map +0 -1
- package/lib/typescript/services/oauthService.d.ts +0 -50
- package/lib/typescript/services/oauthService.d.ts.map +0 -1
- package/lib/typescript/services/platformAuthService.d.ts +0 -144
- package/lib/typescript/services/platformAuthService.d.ts.map +0 -1
- package/lib/typescript/types/index.d.ts +0 -231
- package/lib/typescript/types/index.d.ts.map +0 -1
- package/lib/typescript/types.d.ts +0 -270
- package/lib/typescript/types.d.ts.map +0 -1
- package/lib/typescript/utils/Portal.d.ts +0 -14
- package/lib/typescript/utils/Portal.d.ts.map +0 -1
- package/lib/typescript/utils/api.d.ts +0 -6
- package/lib/typescript/utils/api.d.ts.map +0 -1
- package/lib/typescript/utils/auth.d.ts +0 -6
- package/lib/typescript/utils/auth.d.ts.map +0 -1
- package/lib/typescript/utils/crypto.d.ts +0 -4
- package/lib/typescript/utils/crypto.d.ts.map +0 -1
- package/lib/typescript/utils/debugHelper.d.ts +0 -29
- package/lib/typescript/utils/debugHelper.d.ts.map +0 -1
- package/lib/typescript/utils/encryption.d.ts +0 -19
- package/lib/typescript/utils/encryption.d.ts.map +0 -1
- package/lib/typescript/utils/onairosApi.d.ts +0 -87
- package/lib/typescript/utils/onairosApi.d.ts.map +0 -1
- package/lib/typescript/utils/programmaticFlow.d.ts +0 -23
- package/lib/typescript/utils/programmaticFlow.d.ts.map +0 -1
- package/lib/typescript/utils/retryHelper.d.ts +0 -69
- package/lib/typescript/utils/retryHelper.d.ts.map +0 -1
- package/lib/typescript/utils/secureStorage.d.ts +0 -94
- package/lib/typescript/utils/secureStorage.d.ts.map +0 -1
- package/src/api/index.ts +0 -111
- package/src/assets/images/email.png +0 -0
- package/src/assets/images/linkedin.png +0 -0
- package/src/assets/images/onairos_logo.png +0 -0
- package/src/assets/images/reddit.png +0 -0
- package/src/assets/images/youtube.png +0 -0
- package/src/components/DataRequestModal.tsx +0 -227
- package/src/components/DataRequestScreen.tsx +0 -356
- package/src/components/EmailVerificationModal.tsx +0 -364
- package/src/components/Onairos.tsx +0 -425
- package/src/components/OnairosButton.tsx +0 -359
- package/src/components/Overlay.tsx +0 -506
- package/src/components/PinInput.tsx +0 -343
- package/src/components/PlatformList.tsx +0 -145
- package/src/components/TrainingModal.tsx +0 -737
- package/src/components/UniversalOnboarding.tsx +0 -1839
- package/src/components/UniversalOnboarding.tsx.new +0 -455
- package/src/components/onboarding/OAuthWebView.tsx +0 -838
- package/src/components/onboarding/OnboardingHeader.tsx +0 -70
- package/src/components/onboarding/PinInput.tsx +0 -356
- package/src/components/onboarding/PlatformConnector.tsx +0 -302
- package/src/components/screens/ConnectorScreen.tsx +0 -153
- package/src/components/screens/LoadingScreen.tsx +0 -100
- package/src/components/screens/PinCreationScreen.tsx +0 -67
- package/src/constants/index.ts +0 -83
- package/src/hooks/useConnections.ts +0 -163
- package/src/hooks/useCredentials.ts +0 -175
- package/src/index.js +0 -14
- package/src/index.ts +0 -50
- package/src/services/SDK_API_KEY_VALIDATION.md +0 -428
- package/src/services/apiKeyService.ts +0 -979
- package/src/services/oauthService.ts +0 -412
- package/src/services/platformAuthService.ts +0 -1113
- package/src/types/ambient.d.ts +0 -29
- package/src/types/declarations.d.ts +0 -26
- package/src/types/index.d.ts +0 -274
- package/src/types/index.ts +0 -244
- package/src/types/node-fix.d.ts +0 -19
- package/src/types/node-override.d.ts +0 -24
- package/src/types/opacity.d.ts +0 -16
- package/src/types/types.d.ts +0 -18
- package/src/types.ts +0 -298
- package/src/utils/Portal.tsx +0 -83
- package/src/utils/api.js +0 -112
- package/src/utils/auth.js +0 -104
- package/src/utils/crypto.js +0 -60
- package/src/utils/debugHelper.ts +0 -53
- package/src/utils/encryption.ts +0 -69
- package/src/utils/onairosApi.ts +0 -391
- package/src/utils/programmaticFlow.ts +0 -113
- package/src/utils/retryHelper.ts +0 -275
- package/src/utils/secureStorage.ts +0 -361
- package/types/index.d.ts +0 -218
- package/types/node-env.d.ts +0 -15
- /package/{src/assets/images β lib/commonjs/assets/icons}/farcaster.png +0 -0
- /package/{src/assets/images β lib/commonjs/assets/icons}/instagram.png +0 -0
- /package/{src/assets/images β lib/commonjs/assets/icons}/pinterest.png +0 -0
- /package/{src/assets/images β lib/commonjs/assets/icons}/swerv_logo.png +0 -0
- /package/{src/assets/images β lib/commonjs/assets/icons}/twitter.jpg +0 -0
|
@@ -1,1702 +1,29 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
console.warn('Opacity SDK not available:', error);
|
|
30
|
-
// Opacity SDK will be disabled if not available
|
|
31
|
-
}
|
|
32
|
-
const {
|
|
33
|
-
height,
|
|
34
|
-
width
|
|
35
|
-
} = _reactNative.Dimensions.get('window');
|
|
36
|
-
const UniversalOnboarding = ({
|
|
37
|
-
visible,
|
|
38
|
-
onClose,
|
|
39
|
-
AppName,
|
|
40
|
-
appIcon,
|
|
41
|
-
requestData,
|
|
42
|
-
returnLink,
|
|
43
|
-
onComplete,
|
|
44
|
-
embedd = false,
|
|
45
|
-
debug = false,
|
|
46
|
-
testMode = false,
|
|
47
|
-
preferredPlatform,
|
|
48
|
-
inferenceData,
|
|
49
|
-
auto = false,
|
|
50
|
-
partner
|
|
51
|
-
}) => {
|
|
52
|
-
const [step, setStep] = (0, _react.useState)('email');
|
|
53
|
-
const [connections, setConnections] = (0, _react.useState)({});
|
|
54
|
-
const [pin, setPin] = (0, _react.useState)('');
|
|
55
|
-
const [selectedTier, setSelectedTier] = (0, _react.useState)('Medium');
|
|
56
|
-
const [training, setTraining] = (0, _react.useState)({
|
|
57
|
-
progress: 0,
|
|
58
|
-
eta: ''
|
|
59
|
-
});
|
|
60
|
-
const [slideAnim] = (0, _react.useState)(new _reactNative.Animated.Value(height));
|
|
61
|
-
const [platformToggles, setPlatformToggles] = (0, _react.useState)({});
|
|
62
|
-
const [oauthUrl, setOauthUrl] = (0, _react.useState)('');
|
|
63
|
-
const [currentPlatform, setCurrentPlatform] = (0, _react.useState)('');
|
|
64
|
-
const [username, setUsername] = (0, _react.useState)('Avatar');
|
|
65
|
-
const [isConnectingPlatform, setIsConnectingPlatform] = (0, _react.useState)(false);
|
|
66
|
-
const [showLoginWebView, setShowLoginWebView] = (0, _react.useState)(false);
|
|
67
|
-
const [email, setEmail] = (0, _react.useState)('');
|
|
68
|
-
const [verificationCode, setVerificationCode] = (0, _react.useState)('');
|
|
69
|
-
const [isVerifyingCode, setIsVerifyingCode] = (0, _react.useState)(false);
|
|
70
|
-
const [isExistingUser, setIsExistingUser] = (0, _react.useState)(false);
|
|
71
|
-
|
|
72
|
-
// Add refs for cleanup and code inputs
|
|
73
|
-
const successTimeoutRef = (0, _react.useRef)(null);
|
|
74
|
-
const isMountedRef = (0, _react.useRef)(true);
|
|
75
|
-
const codeInputRefs = (0, _react.useRef)([]);
|
|
76
|
-
|
|
77
|
-
// Add state for showing additional platforms
|
|
78
|
-
const [showAllPlatforms, setShowAllPlatforms] = (0, _react.useState)(false);
|
|
79
|
-
|
|
80
|
-
// Parse test mode options
|
|
81
|
-
const testModeOptions = typeof testMode === 'object' ? testMode : {};
|
|
82
|
-
const isTestMode = testMode === true || typeof testMode === 'object' && testMode !== null;
|
|
83
|
-
const showTestControls = (debug || isTestMode) && requestData;
|
|
84
|
-
|
|
85
|
-
// Simple 2-flow system
|
|
86
|
-
const isExistingUserFlow = testModeOptions.existingUser || false;
|
|
87
|
-
const isNewUserFlow = testModeOptions.newUser || false;
|
|
88
|
-
const platforms = [{
|
|
89
|
-
id: 'instagram',
|
|
90
|
-
name: 'Instagram',
|
|
91
|
-
icon: require('../assets/images/instagram.png')
|
|
92
|
-
}, {
|
|
93
|
-
id: 'youtube',
|
|
94
|
-
name: 'YouTube',
|
|
95
|
-
icon: require('../assets/images/youtube.png')
|
|
96
|
-
}, {
|
|
97
|
-
id: 'email',
|
|
98
|
-
name: 'Gmail',
|
|
99
|
-
icon: require('../assets/images/email.png')
|
|
100
|
-
}, {
|
|
101
|
-
id: 'reddit',
|
|
102
|
-
name: 'Reddit',
|
|
103
|
-
icon: require('../assets/images/reddit.png')
|
|
104
|
-
}, {
|
|
105
|
-
id: 'pinterest',
|
|
106
|
-
name: 'Pinterest',
|
|
107
|
-
icon: require('../assets/images/pinterest.png')
|
|
108
|
-
}];
|
|
109
|
-
|
|
110
|
-
// Handle preferredPlatform to show ONLY preferred platforms (up to 2)
|
|
111
|
-
const getDisplayPlatforms = () => {
|
|
112
|
-
if (!preferredPlatform) {
|
|
113
|
-
// Default behavior: show first 3 platforms initially
|
|
114
|
-
return showAllPlatforms ? platforms : platforms.slice(0, 3);
|
|
115
|
-
}
|
|
116
|
-
const preferredArray = Array.isArray(preferredPlatform) ? preferredPlatform : [preferredPlatform];
|
|
117
|
-
const maxPreferred = Math.min(preferredArray.length, 2); // Limit to 2 preferred platforms max
|
|
118
|
-
|
|
119
|
-
// Show ONLY the preferred platforms (in specified order)
|
|
120
|
-
return preferredArray.slice(0, maxPreferred).map(id => platforms.find(p => p.id === id)).filter(Boolean);
|
|
121
|
-
};
|
|
122
|
-
const platformsToDisplay = getDisplayPlatforms();
|
|
123
|
-
|
|
124
|
-
// Calculate additional platforms for "Show More" button
|
|
125
|
-
const additionalPlatforms = preferredPlatform ? [] : platforms.slice(3);
|
|
126
|
-
const {
|
|
127
|
-
connectPlatform,
|
|
128
|
-
disconnectPlatform,
|
|
129
|
-
getConnectionStatus,
|
|
130
|
-
isConnecting
|
|
131
|
-
} = (0, _useConnections.useConnections)();
|
|
132
|
-
(0, _react.useEffect)(() => {
|
|
133
|
-
// Set mounted flag
|
|
134
|
-
isMountedRef.current = true;
|
|
135
|
-
if (visible) {
|
|
136
|
-
loadInitialStatus();
|
|
137
|
-
// Animate in
|
|
138
|
-
_reactNative.Animated.spring(slideAnim, {
|
|
139
|
-
toValue: 0,
|
|
140
|
-
useNativeDriver: true,
|
|
141
|
-
bounciness: 0
|
|
142
|
-
}).start();
|
|
143
|
-
|
|
144
|
-
// Set up deep link listener for OAuth callbacks
|
|
145
|
-
// Using the subscription pattern for React Native's Linking API
|
|
146
|
-
const subscription = _reactNative.Linking.addListener('url', ({
|
|
147
|
-
url
|
|
148
|
-
}) => {
|
|
149
|
-
if ((0, _platformAuthService.isOAuthCallback)(url)) {
|
|
150
|
-
handleOAuthCallback(url);
|
|
151
|
-
}
|
|
152
|
-
});
|
|
153
|
-
|
|
154
|
-
// Check for initial URL (app was opened via deep link)
|
|
155
|
-
_reactNative.Linking.getInitialURL().then(initialUrl => {
|
|
156
|
-
if (initialUrl && (0, _platformAuthService.isOAuthCallback)(initialUrl)) {
|
|
157
|
-
handleOAuthCallback(initialUrl);
|
|
158
|
-
}
|
|
159
|
-
});
|
|
160
|
-
|
|
161
|
-
// Initialize platform toggles
|
|
162
|
-
const initialToggles = {};
|
|
163
|
-
platforms.forEach(platform => {
|
|
164
|
-
initialToggles[platform.id] = false;
|
|
165
|
-
});
|
|
166
|
-
setPlatformToggles(initialToggles);
|
|
167
|
-
|
|
168
|
-
// Debug mode for Expo Go
|
|
169
|
-
if (debug || _reactNative.Platform.OS === 'web') {
|
|
170
|
-
console.log('Debug mode enabled - Using mock data for onboarding');
|
|
171
|
-
console.log('Configuration:', {
|
|
172
|
-
auto,
|
|
173
|
-
partner,
|
|
174
|
-
hasInferenceData: !!inferenceData,
|
|
175
|
-
inferenceDataType: typeof inferenceData
|
|
176
|
-
});
|
|
177
|
-
|
|
178
|
-
// Pre-populate with mock connections in debug mode
|
|
179
|
-
if (testMode || _reactNative.Platform.OS === 'web') {
|
|
180
|
-
setConnections({
|
|
181
|
-
instagram: {
|
|
182
|
-
userName: 'instagram_user',
|
|
183
|
-
connected: true
|
|
184
|
-
},
|
|
185
|
-
youtube: {
|
|
186
|
-
userName: 'youtube_user',
|
|
187
|
-
connected: true
|
|
188
|
-
}
|
|
189
|
-
});
|
|
190
|
-
}
|
|
191
|
-
}
|
|
192
|
-
|
|
193
|
-
// If there's a preferred platform, pre-connect
|
|
194
|
-
if (preferredPlatform && debug) {
|
|
195
|
-
const preferredArray = Array.isArray(preferredPlatform) ? preferredPlatform : [preferredPlatform];
|
|
196
|
-
const newConnections = {};
|
|
197
|
-
preferredArray.slice(0, 2).forEach(platform => {
|
|
198
|
-
newConnections[platform] = {
|
|
199
|
-
userName: `${platform}_user`,
|
|
200
|
-
connected: true
|
|
201
|
-
};
|
|
202
|
-
});
|
|
203
|
-
setConnections(prev => ({
|
|
204
|
-
...prev,
|
|
205
|
-
...newConnections
|
|
206
|
-
}));
|
|
207
|
-
}
|
|
208
|
-
|
|
209
|
-
// Return cleanup function
|
|
210
|
-
return () => {
|
|
211
|
-
// Remove event listener using the subscription
|
|
212
|
-
subscription.remove();
|
|
213
|
-
};
|
|
214
|
-
} else {
|
|
215
|
-
// Animate out
|
|
216
|
-
_reactNative.Animated.timing(slideAnim, {
|
|
217
|
-
toValue: height,
|
|
218
|
-
duration: 250,
|
|
219
|
-
useNativeDriver: true
|
|
220
|
-
}).start(() => {
|
|
221
|
-
// Reset state if needed
|
|
222
|
-
});
|
|
223
|
-
}
|
|
224
|
-
}, [visible, preferredPlatform]);
|
|
225
|
-
|
|
226
|
-
// Cleanup effect for unmounting
|
|
227
|
-
(0, _react.useEffect)(() => {
|
|
228
|
-
return () => {
|
|
229
|
-
// Set mounted flag to false
|
|
230
|
-
isMountedRef.current = false;
|
|
231
|
-
|
|
232
|
-
// Clear any pending timeouts
|
|
233
|
-
if (successTimeoutRef.current) {
|
|
234
|
-
clearTimeout(successTimeoutRef.current);
|
|
235
|
-
successTimeoutRef.current = null;
|
|
236
|
-
}
|
|
237
|
-
};
|
|
238
|
-
}, []);
|
|
239
|
-
const handleClose = () => {
|
|
240
|
-
// Clear any pending timeouts before closing
|
|
241
|
-
if (successTimeoutRef.current) {
|
|
242
|
-
clearTimeout(successTimeoutRef.current);
|
|
243
|
-
successTimeoutRef.current = null;
|
|
244
|
-
}
|
|
245
|
-
|
|
246
|
-
// Set mounted flag to false
|
|
247
|
-
isMountedRef.current = false;
|
|
248
|
-
|
|
249
|
-
// Animate out and then call onClose
|
|
250
|
-
_reactNative.Animated.timing(slideAnim, {
|
|
251
|
-
toValue: height,
|
|
252
|
-
duration: 250,
|
|
253
|
-
useNativeDriver: true
|
|
254
|
-
}).start(() => {
|
|
255
|
-
// Only call onClose if component is still meant to be mounted
|
|
256
|
-
// This prevents the "User closed onboarding" error
|
|
257
|
-
onClose();
|
|
258
|
-
});
|
|
259
|
-
};
|
|
260
|
-
const loadInitialStatus = (0, _react.useCallback)(async () => {
|
|
261
|
-
try {
|
|
262
|
-
console.log('π Loading initial connection status...');
|
|
263
|
-
const status = await getConnectionStatus();
|
|
264
|
-
console.log('β
Connection status loaded:', status);
|
|
265
|
-
setConnections(status || {});
|
|
266
|
-
} catch (error) {
|
|
267
|
-
console.error('β Failed to load connection status:', error);
|
|
268
|
-
// Set empty connections to prevent crashes
|
|
269
|
-
setConnections({});
|
|
270
|
-
}
|
|
271
|
-
}, [getConnectionStatus]);
|
|
272
|
-
const togglePlatform = (0, _react.useCallback)(async platformId => {
|
|
273
|
-
if (!platformToggles[platformId]) {
|
|
274
|
-
// Attempt to connect platform
|
|
275
|
-
try {
|
|
276
|
-
setIsConnectingPlatform(true);
|
|
277
|
-
console.log(`π Initiating connection for ${platformId}`);
|
|
278
|
-
|
|
279
|
-
// Test API connectivity first
|
|
280
|
-
console.log('π Testing API connectivity...');
|
|
281
|
-
const connectivityTest = await (0, _platformAuthService.testApiConnectivity)();
|
|
282
|
-
if (!connectivityTest.success) {
|
|
283
|
-
console.error('β API connectivity test failed:', connectivityTest.error);
|
|
284
|
-
_reactNative.Alert.alert('Network Error', `${connectivityTest.error}\n\nPlease check your internet connection and try again.`);
|
|
285
|
-
return;
|
|
286
|
-
}
|
|
287
|
-
console.log('β
API connectivity confirmed');
|
|
288
|
-
|
|
289
|
-
// Instagram: Use Opacity SDK exclusively
|
|
290
|
-
if (platformId === 'instagram') {
|
|
291
|
-
// Check if Opacity SDK is available
|
|
292
|
-
if (!opacityInit || !OpacityEnvironment || !opacityGet) {
|
|
293
|
-
console.error('β Opacity SDK not available for Instagram');
|
|
294
|
-
throw new Error('Instagram connection requires the Opacity SDK. Please ensure @opacity-labs/react-native-opacity is properly installed and configured.');
|
|
295
|
-
}
|
|
296
|
-
console.log('π Initializing Opacity SDK for Instagram...');
|
|
297
|
-
|
|
298
|
-
// Initialize Opacity SDK with your API key
|
|
299
|
-
const apiKey = 'OsamaTest-7bde2407-7360-462a-86b4-b26d7f890cbb';
|
|
300
|
-
await opacityInit({
|
|
301
|
-
apiKey,
|
|
302
|
-
environment: OpacityEnvironment.Production,
|
|
303
|
-
shouldShowErrorsInWebView: true
|
|
304
|
-
});
|
|
305
|
-
console.log('β
Opacity SDK initialized successfully');
|
|
306
|
-
console.log('π± Fetching Instagram profile...');
|
|
307
|
-
|
|
308
|
-
// Fetch Instagram profile using Opacity SDK
|
|
309
|
-
const profile = await opacityGet('flow:instagram:profile');
|
|
310
|
-
if (profile && typeof profile === 'object') {
|
|
311
|
-
console.log('β
Instagram profile retrieved:', profile);
|
|
312
|
-
|
|
313
|
-
// Extract username from profile or use fallback
|
|
314
|
-
const instagramUsername = profile.username || profile.name || username;
|
|
315
|
-
|
|
316
|
-
// Update platform toggle state
|
|
317
|
-
setPlatformToggles(prev => ({
|
|
318
|
-
...prev,
|
|
319
|
-
[platformId]: true
|
|
320
|
-
}));
|
|
321
|
-
|
|
322
|
-
// Update connections state with Instagram data
|
|
323
|
-
setConnections(prev => ({
|
|
324
|
-
...prev,
|
|
325
|
-
[platformId]: {
|
|
326
|
-
userName: instagramUsername,
|
|
327
|
-
connected: true,
|
|
328
|
-
profileData: profile // Store additional profile data
|
|
329
|
-
}
|
|
330
|
-
}));
|
|
331
|
-
console.log(`β
Instagram successfully connected for user: ${instagramUsername}`);
|
|
332
|
-
} else {
|
|
333
|
-
throw new Error('Invalid or empty Instagram profile data returned from Opacity SDK');
|
|
334
|
-
}
|
|
335
|
-
} else {
|
|
336
|
-
// For all other platforms (non-Instagram), check if they have native SDK
|
|
337
|
-
if ((0, _platformAuthService.hasNativeSDK)(platformId)) {
|
|
338
|
-
console.log(`π± Using native SDK for ${platformId}`);
|
|
339
|
-
// Use native SDK for authentication
|
|
340
|
-
const success = await (0, _platformAuthService.initiateNativeAuth)(platformId, username);
|
|
341
|
-
if (success) {
|
|
342
|
-
console.log(`β
Native authentication successful for ${platformId}`);
|
|
343
|
-
// Update platform toggle state
|
|
344
|
-
setPlatformToggles(prev => ({
|
|
345
|
-
...prev,
|
|
346
|
-
[platformId]: true
|
|
347
|
-
}));
|
|
348
|
-
|
|
349
|
-
// Update connections state
|
|
350
|
-
setConnections(prev => ({
|
|
351
|
-
...prev,
|
|
352
|
-
[platformId]: {
|
|
353
|
-
userName: username,
|
|
354
|
-
connected: true
|
|
355
|
-
}
|
|
356
|
-
}));
|
|
357
|
-
} else {
|
|
358
|
-
throw new Error(`Native authentication failed for ${platformId}`);
|
|
359
|
-
}
|
|
360
|
-
} else {
|
|
361
|
-
// Use OAuth WebView flow
|
|
362
|
-
console.log(`π Initiating OAuth flow for ${platformId}`);
|
|
363
|
-
const oauthUrl = await (0, _platformAuthService.initiateOAuth)(platformId, username, AppName);
|
|
364
|
-
if (oauthUrl) {
|
|
365
|
-
console.log(`β
Received OAuth URL for ${platformId}:`, oauthUrl);
|
|
366
|
-
setCurrentPlatform(platformId);
|
|
367
|
-
setOauthUrl(oauthUrl);
|
|
368
|
-
setStep('oauth');
|
|
369
|
-
} else {
|
|
370
|
-
console.error(`β No OAuth URL returned for ${platformId}`);
|
|
371
|
-
throw new Error(`Failed to get authorization URL for ${platformId}. Please try again.`);
|
|
372
|
-
}
|
|
373
|
-
}
|
|
374
|
-
}
|
|
375
|
-
} catch (error) {
|
|
376
|
-
console.error(`β Error connecting ${platformId}:`, error);
|
|
377
|
-
|
|
378
|
-
// Provide user-friendly error messages based on platform
|
|
379
|
-
let errorMessage = 'Unknown error occurred';
|
|
380
|
-
if (error instanceof Error) {
|
|
381
|
-
if (platformId === 'instagram') {
|
|
382
|
-
if (error.message.includes('Initialize')) {
|
|
383
|
-
errorMessage = 'Failed to initialize Instagram connection. Please check your internet connection.';
|
|
384
|
-
} else if (error.message.includes('profile')) {
|
|
385
|
-
errorMessage = 'Unable to retrieve Instagram profile. Please try again or check your Instagram account permissions.';
|
|
386
|
-
} else {
|
|
387
|
-
errorMessage = error.message;
|
|
388
|
-
}
|
|
389
|
-
} else {
|
|
390
|
-
errorMessage = error.message;
|
|
391
|
-
}
|
|
392
|
-
}
|
|
393
|
-
_reactNative.Alert.alert(`${platformId.charAt(0).toUpperCase() + platformId.slice(1)} Connection Failed`, errorMessage, [{
|
|
394
|
-
text: 'OK',
|
|
395
|
-
style: 'default'
|
|
396
|
-
}]);
|
|
397
|
-
} finally {
|
|
398
|
-
setIsConnectingPlatform(false);
|
|
399
|
-
}
|
|
400
|
-
} else {
|
|
401
|
-
// Disconnect platform
|
|
402
|
-
console.log(`π Disconnecting ${platformId}`);
|
|
403
|
-
setPlatformToggles(prev => ({
|
|
404
|
-
...prev,
|
|
405
|
-
[platformId]: false
|
|
406
|
-
}));
|
|
407
|
-
|
|
408
|
-
// Update connections state
|
|
409
|
-
setConnections(prev => {
|
|
410
|
-
const newConnections = {
|
|
411
|
-
...prev
|
|
412
|
-
};
|
|
413
|
-
delete newConnections[platformId];
|
|
414
|
-
return newConnections;
|
|
415
|
-
});
|
|
416
|
-
}
|
|
417
|
-
}, [platformToggles, username, AppName]);
|
|
418
|
-
|
|
419
|
-
/**
|
|
420
|
-
* Handles OAuth callback URLs
|
|
421
|
-
*/
|
|
422
|
-
const handleOAuthCallback = (0, _react.useCallback)(url => {
|
|
423
|
-
console.log('π OAuth callback received:', url);
|
|
424
|
-
const result = (0, _platformAuthService.handleOAuthCallbackUrl)(url);
|
|
425
|
-
if (result.success && result.platform && result.code) {
|
|
426
|
-
console.log(`β
OAuth successful for ${result.platform}`);
|
|
427
|
-
|
|
428
|
-
// Update connections state
|
|
429
|
-
setConnections(prev => ({
|
|
430
|
-
...prev,
|
|
431
|
-
[result.platform]: {
|
|
432
|
-
userName: username,
|
|
433
|
-
connected: true
|
|
434
|
-
}
|
|
435
|
-
}));
|
|
436
|
-
|
|
437
|
-
// Update platform toggles
|
|
438
|
-
setPlatformToggles(prev => ({
|
|
439
|
-
...prev,
|
|
440
|
-
[result.platform]: true
|
|
441
|
-
}));
|
|
442
|
-
|
|
443
|
-
// Close OAuth window and return to connect step
|
|
444
|
-
setOauthUrl('');
|
|
445
|
-
setCurrentPlatform('');
|
|
446
|
-
setStep('connect');
|
|
447
|
-
console.log(`π ${result.platform} successfully connected via OAuth`);
|
|
448
|
-
} else {
|
|
449
|
-
console.error('β OAuth callback failed or incomplete');
|
|
450
|
-
}
|
|
451
|
-
}, [username]);
|
|
452
|
-
|
|
453
|
-
/**
|
|
454
|
-
* Handles completion of the OAuth flow
|
|
455
|
-
*/
|
|
456
|
-
const handleOAuthSuccess = (0, _react.useCallback)(code => {
|
|
457
|
-
console.log(`OAuth success for ${currentPlatform} with code: ${code}`);
|
|
458
|
-
|
|
459
|
-
// Update connections for the current platform
|
|
460
|
-
if (currentPlatform) {
|
|
461
|
-
// Update connections state
|
|
462
|
-
setConnections(prev => ({
|
|
463
|
-
...prev,
|
|
464
|
-
[currentPlatform]: {
|
|
465
|
-
userName: username,
|
|
466
|
-
connected: true
|
|
467
|
-
}
|
|
468
|
-
}));
|
|
469
|
-
|
|
470
|
-
// Update platform toggles
|
|
471
|
-
setPlatformToggles(prev => ({
|
|
472
|
-
...prev,
|
|
473
|
-
[currentPlatform]: true
|
|
474
|
-
}));
|
|
475
|
-
console.log(`Successfully connected ${currentPlatform} for user ${username}`);
|
|
476
|
-
}
|
|
477
|
-
|
|
478
|
-
// Close OAuth window and return to connect step
|
|
479
|
-
setOauthUrl('');
|
|
480
|
-
setCurrentPlatform('');
|
|
481
|
-
setStep('connect');
|
|
482
|
-
}, [currentPlatform, username]);
|
|
483
|
-
|
|
484
|
-
// Function to check for existing account (spoofed for now)
|
|
485
|
-
const checkExistingAccount = (0, _react.useCallback)(async () => {
|
|
486
|
-
console.log('Checking for existing account...');
|
|
487
|
-
// TODO: Implement actual logic to check cookies/storage for existing account
|
|
488
|
-
// For now, this is spoofed and doesn't do anything
|
|
489
|
-
return false;
|
|
490
|
-
}, []);
|
|
491
|
-
|
|
492
|
-
// Function to handle email submission
|
|
493
|
-
const handleEmailSubmit = (0, _react.useCallback)(async () => {
|
|
494
|
-
console.log('π handleEmailSubmit called with email:', email);
|
|
495
|
-
console.log('π§ͺ testMode value:', testMode);
|
|
496
|
-
console.log('π§ͺ isTestMode computed:', isTestMode);
|
|
497
|
-
try {
|
|
498
|
-
if (!email || !email.trim()) {
|
|
499
|
-
console.log('β No email provided');
|
|
500
|
-
_reactNative.Alert.alert('Error', 'Please enter your email address');
|
|
501
|
-
return;
|
|
502
|
-
}
|
|
503
|
-
|
|
504
|
-
// Basic email validation
|
|
505
|
-
const emailRegex = /^[^\s@]+@[^\s@]+\.[^\s@]+$/;
|
|
506
|
-
if (!emailRegex.test(email.trim())) {
|
|
507
|
-
console.log('β Invalid email format');
|
|
508
|
-
_reactNative.Alert.alert('Error', 'Please enter a valid email address');
|
|
509
|
-
return;
|
|
510
|
-
}
|
|
511
|
-
console.log('π§ Email validation passed, proceeding...');
|
|
512
|
-
|
|
513
|
-
// Check if we should skip API calls entirely (only for specific test scenarios)
|
|
514
|
-
const shouldSkipApiCalls = typeof testMode === 'object' && testMode !== null && testMode.skipApiCalls === true;
|
|
515
|
-
if (shouldSkipApiCalls) {
|
|
516
|
-
console.log('π§ͺ Test mode with skipApiCalls: true - Skipping API call, proceeding to verification');
|
|
517
|
-
setStep('verify');
|
|
518
|
-
return;
|
|
519
|
-
}
|
|
520
|
-
|
|
521
|
-
// Add loading state to prevent multiple submissions
|
|
522
|
-
if (isVerifyingCode) {
|
|
523
|
-
console.log('β οΈ Email verification already in progress');
|
|
524
|
-
return;
|
|
525
|
-
}
|
|
526
|
-
setIsVerifyingCode(true);
|
|
527
|
-
console.log('π Starting email verification process...');
|
|
528
|
-
console.log('π‘ Will make API call with testMode flag:', isTestMode);
|
|
529
|
-
|
|
530
|
-
// Wrap the entire API call in a timeout to prevent hanging
|
|
531
|
-
const timeoutPromise = new Promise((_, reject) => {
|
|
532
|
-
setTimeout(() => reject(new Error('Request timeout')), 10000); // 10 second timeout
|
|
533
|
-
});
|
|
534
|
-
try {
|
|
535
|
-
// Safety check for function availability with detailed debugging
|
|
536
|
-
console.log('π Checking requestEmailVerification function availability...');
|
|
537
|
-
console.log('π Type of requestEmailVerification:', typeof _platformAuthService.requestEmailVerification);
|
|
538
|
-
console.log('π requestEmailVerification function:', _platformAuthService.requestEmailVerification);
|
|
539
|
-
if (typeof _platformAuthService.requestEmailVerification !== 'function') {
|
|
540
|
-
console.error('β requestEmailVerification function not available');
|
|
541
|
-
console.error('β Available functions from platformAuthService:', {
|
|
542
|
-
requestEmailVerification: typeof _platformAuthService.requestEmailVerification,
|
|
543
|
-
verifyEmailCode: typeof _platformAuthService.verifyEmailCode,
|
|
544
|
-
checkEmailVerificationStatus: typeof _platformAuthService.checkEmailVerificationStatus
|
|
545
|
-
});
|
|
546
|
-
// In development, just proceed anyway
|
|
547
|
-
console.log('π§ͺ Proceeding without API call in development mode');
|
|
548
|
-
setStep('verify');
|
|
549
|
-
return;
|
|
550
|
-
}
|
|
551
|
-
console.log('β
requestEmailVerification function is available');
|
|
552
|
-
console.log('π Making API call to requestEmailVerification...');
|
|
553
|
-
|
|
554
|
-
// Race between API call and timeout
|
|
555
|
-
const result = await Promise.race([(0, _platformAuthService.requestEmailVerification)(email.trim(), isTestMode), timeoutPromise]);
|
|
556
|
-
console.log('π‘ Email verification API result:', result);
|
|
557
|
-
if (result && result.success) {
|
|
558
|
-
console.log('β
Verification code requested successfully');
|
|
559
|
-
setStep('verify');
|
|
560
|
-
} else {
|
|
561
|
-
console.warn('β οΈ Email verification request failed, but proceeding anyway:', result);
|
|
562
|
-
// In development mode, proceed even if API fails
|
|
563
|
-
setStep('verify');
|
|
564
|
-
}
|
|
565
|
-
} catch (verificationError) {
|
|
566
|
-
console.error('β Error in email verification API call:', verificationError);
|
|
567
|
-
// In development mode, proceed even if API fails
|
|
568
|
-
console.log('π§ͺ API failed but proceeding to verification step in development mode');
|
|
569
|
-
setStep('verify');
|
|
570
|
-
} finally {
|
|
571
|
-
setIsVerifyingCode(false);
|
|
572
|
-
}
|
|
573
|
-
} catch (error) {
|
|
574
|
-
console.error('β Unexpected error in email submission:', error);
|
|
575
|
-
setIsVerifyingCode(false);
|
|
576
|
-
|
|
577
|
-
// In development mode, still try to proceed
|
|
578
|
-
console.log('π§ͺ Error occurred but attempting to proceed to verification step');
|
|
579
|
-
try {
|
|
580
|
-
setStep('verify');
|
|
581
|
-
} catch (stepError) {
|
|
582
|
-
console.error('β Failed to set step to verify:', stepError);
|
|
583
|
-
_reactNative.Alert.alert('Error', 'An unexpected error occurred. Please try again.');
|
|
584
|
-
}
|
|
585
|
-
}
|
|
586
|
-
}, [email, isVerifyingCode, debug, testMode, isTestMode]);
|
|
587
|
-
|
|
588
|
-
// Function to handle verification code submission
|
|
589
|
-
const handleVerificationSubmit = (0, _react.useCallback)(async () => {
|
|
590
|
-
if (!verificationCode.trim() || verificationCode.trim().length !== 6) {
|
|
591
|
-
_reactNative.Alert.alert('Error', 'Please enter a 6-digit verification code');
|
|
592
|
-
return;
|
|
593
|
-
}
|
|
594
|
-
setIsVerifyingCode(true);
|
|
595
|
-
try {
|
|
596
|
-
// Safety check for function availability
|
|
597
|
-
if (typeof _platformAuthService.verifyEmailCode !== 'function') {
|
|
598
|
-
throw new Error('Email verification service not available');
|
|
599
|
-
}
|
|
600
|
-
|
|
601
|
-
// Test Mode: Use specific flows
|
|
602
|
-
if (isTestMode) {
|
|
603
|
-
console.log('π§ͺ Test mode verification - simulating success');
|
|
604
|
-
if (isExistingUserFlow) {
|
|
605
|
-
// Flow 1: Existing User β Data Request β Close (return API URL)
|
|
606
|
-
console.log('π§ͺ Test Flow 1: Existing User β Show Data Request');
|
|
607
|
-
setIsExistingUser(true);
|
|
608
|
-
setStep('dataRequest');
|
|
609
|
-
return;
|
|
610
|
-
} else if (isNewUserFlow) {
|
|
611
|
-
// Flow 2: New User β Platform Connect β PIN β Training
|
|
612
|
-
console.log('π§ͺ Test Flow 2: New User β Platform Connect');
|
|
613
|
-
const emailPrefix = email.trim().split('@')[0] || 'TestUser';
|
|
614
|
-
setUsername(emailPrefix);
|
|
615
|
-
setStep('connect');
|
|
616
|
-
return;
|
|
617
|
-
}
|
|
618
|
-
}
|
|
619
|
-
|
|
620
|
-
// Real API call (production) or test mode
|
|
621
|
-
const result = await (0, _platformAuthService.verifyEmailCode)(email.trim(), verificationCode.trim(), isTestMode);
|
|
622
|
-
if (result.success) {
|
|
623
|
-
console.log('β
Email verification successful');
|
|
624
|
-
|
|
625
|
-
// Check if user exists in backend (properly typed now)
|
|
626
|
-
const existingUser = result.existingUser || false;
|
|
627
|
-
setIsExistingUser(existingUser);
|
|
628
|
-
if (existingUser) {
|
|
629
|
-
console.log('π€ Existing user detected, showing data request screen');
|
|
630
|
-
setStep('dataRequest');
|
|
631
|
-
} else {
|
|
632
|
-
console.log('π New user, proceeding to platform connection');
|
|
633
|
-
// Safely set username from email prefix
|
|
634
|
-
try {
|
|
635
|
-
const emailPrefix = email.trim().split('@')[0];
|
|
636
|
-
if (emailPrefix && emailPrefix.length > 0) {
|
|
637
|
-
setUsername(emailPrefix);
|
|
638
|
-
} else {
|
|
639
|
-
setUsername('User'); // Fallback username
|
|
640
|
-
}
|
|
641
|
-
} catch (usernameError) {
|
|
642
|
-
console.warn('Failed to extract username from email, using fallback:', usernameError);
|
|
643
|
-
setUsername('User');
|
|
644
|
-
}
|
|
645
|
-
setStep('connect');
|
|
646
|
-
}
|
|
647
|
-
} else {
|
|
648
|
-
_reactNative.Alert.alert('Verification Failed', result.error || 'Invalid verification code');
|
|
649
|
-
}
|
|
650
|
-
} catch (error) {
|
|
651
|
-
console.error('β Error verifying code:', error);
|
|
652
|
-
_reactNative.Alert.alert('Error', 'Failed to verify code');
|
|
653
|
-
} finally {
|
|
654
|
-
setIsVerifyingCode(false);
|
|
655
|
-
}
|
|
656
|
-
}, [email, verificationCode]);
|
|
657
|
-
const handlePinSubmit = (0, _react.useCallback)(async userPin => {
|
|
658
|
-
setPin(userPin);
|
|
659
|
-
setStep('training');
|
|
660
|
-
|
|
661
|
-
// Save session data for "Never Connect Again" functionality
|
|
662
|
-
try {
|
|
663
|
-
const sessionData = {
|
|
664
|
-
pin: userPin,
|
|
665
|
-
connections,
|
|
666
|
-
platformToggles,
|
|
667
|
-
selectedTier,
|
|
668
|
-
username,
|
|
669
|
-
timestamp: Date.now(),
|
|
670
|
-
appName: AppName,
|
|
671
|
-
inferenceData: auto ? inferenceData : undefined,
|
|
672
|
-
partner
|
|
673
|
-
};
|
|
674
|
-
|
|
675
|
-
// Store session data in secure storage for future use
|
|
676
|
-
console.log('Saving session data for future "Never Connect Again" functionality:', sessionData);
|
|
677
|
-
|
|
678
|
-
// TODO: Implement actual secure storage of session data
|
|
679
|
-
// This would typically involve:
|
|
680
|
-
// 1. Storing encrypted session data locally
|
|
681
|
-
// 2. Setting cookies in WebView for onairos.uk domain
|
|
682
|
-
// 3. Storing authentication tokens securely
|
|
683
|
-
|
|
684
|
-
// For now, we'll simulate this with console logging
|
|
685
|
-
console.log('Session data saved - future apps will detect existing account');
|
|
686
|
-
} catch (error) {
|
|
687
|
-
console.error('Failed to save session data:', error);
|
|
688
|
-
}
|
|
689
|
-
}, [connections, selectedTier, platformToggles, username, AppName, auto, inferenceData, partner]);
|
|
690
|
-
const handleTrainingComplete = (0, _react.useCallback)(async () => {
|
|
691
|
-
console.log('π Training completed successfully');
|
|
692
|
-
console.log('π Auto mode enabled:', auto);
|
|
693
|
-
console.log('π Inference data available:', !!inferenceData);
|
|
694
|
-
try {
|
|
695
|
-
if (auto && inferenceData) {
|
|
696
|
-
console.log('π€ Auto mode: Making API request to get URL and perform inference');
|
|
697
|
-
|
|
698
|
-
// First, get the API URL from backend
|
|
699
|
-
const apiUrlResponse = await fetch('https://api2.onairos.uk/', {
|
|
700
|
-
method: 'POST',
|
|
701
|
-
headers: {
|
|
702
|
-
'Content-Type': 'application/json'
|
|
703
|
-
},
|
|
704
|
-
body: JSON.stringify({
|
|
705
|
-
Info: {
|
|
706
|
-
storage: 'secure',
|
|
707
|
-
appId: AppName,
|
|
708
|
-
confirmations: Object.keys(requestData || {}),
|
|
709
|
-
EncryptedUserPin: pin,
|
|
710
|
-
// Use the actual PIN from user
|
|
711
|
-
account: email.trim(),
|
|
712
|
-
proofMode: false
|
|
713
|
-
}
|
|
714
|
-
})
|
|
715
|
-
});
|
|
716
|
-
if (!apiUrlResponse.ok) {
|
|
717
|
-
throw new Error(`Failed to get API URL: ${apiUrlResponse.status}`);
|
|
718
|
-
}
|
|
719
|
-
const {
|
|
720
|
-
apiUrl,
|
|
721
|
-
token
|
|
722
|
-
} = await apiUrlResponse.json();
|
|
723
|
-
console.log('β
Received API URL:', apiUrl);
|
|
724
|
-
console.log('β
Received token:', (token === null || token === void 0 ? void 0 : token.substring(0, 20)) + '...');
|
|
725
|
-
|
|
726
|
-
// Now make the inference call with the provided data
|
|
727
|
-
const inferenceResponse = await fetch(apiUrl, {
|
|
728
|
-
method: 'POST',
|
|
729
|
-
headers: {
|
|
730
|
-
'Content-Type': 'application/json',
|
|
731
|
-
'Authorization': `Bearer ${token}`
|
|
732
|
-
},
|
|
733
|
-
body: JSON.stringify({
|
|
734
|
-
...inferenceData,
|
|
735
|
-
userEmail: email.trim(),
|
|
736
|
-
appName: AppName,
|
|
737
|
-
timestamp: new Date().toISOString()
|
|
738
|
-
})
|
|
739
|
-
});
|
|
740
|
-
if (!inferenceResponse.ok) {
|
|
741
|
-
throw new Error(`Inference API failed: ${inferenceResponse.status}`);
|
|
742
|
-
}
|
|
743
|
-
const inferenceResults = await inferenceResponse.json();
|
|
744
|
-
console.log('β
Auto mode inference results:', inferenceResults);
|
|
745
|
-
|
|
746
|
-
// Close the modal first
|
|
747
|
-
handleClose();
|
|
748
|
-
|
|
749
|
-
// Complete onboarding with inference results
|
|
750
|
-
setTimeout(() => {
|
|
751
|
-
onComplete(apiUrl, token, {
|
|
752
|
-
pin,
|
|
753
|
-
connections,
|
|
754
|
-
platformToggles,
|
|
755
|
-
selectedTier,
|
|
756
|
-
tierData: requestData === null || requestData === void 0 ? void 0 : requestData[selectedTier],
|
|
757
|
-
sessionSaved: true,
|
|
758
|
-
// Add inference data if auto mode is enabled
|
|
759
|
-
...(auto && inferenceData && {
|
|
760
|
-
inferenceData
|
|
761
|
-
}),
|
|
762
|
-
// Add partner info for special partners
|
|
763
|
-
...(partner && {
|
|
764
|
-
partner: partner === 'couplebible' ? 'CoupleBible' : partner
|
|
765
|
-
}),
|
|
766
|
-
autoMode: true,
|
|
767
|
-
inferenceResults,
|
|
768
|
-
apiUrl,
|
|
769
|
-
token
|
|
770
|
-
});
|
|
771
|
-
}, 100);
|
|
772
|
-
} else {
|
|
773
|
-
console.log('π Standard mode: Returning API URL for manual use');
|
|
774
|
-
|
|
775
|
-
// Prepare completion data
|
|
776
|
-
const completionData = {
|
|
777
|
-
pin,
|
|
778
|
-
connections,
|
|
779
|
-
platformToggles,
|
|
780
|
-
selectedTier,
|
|
781
|
-
tierData: requestData === null || requestData === void 0 ? void 0 : requestData[selectedTier],
|
|
782
|
-
sessionSaved: true,
|
|
783
|
-
// Add inference data if auto mode is enabled
|
|
784
|
-
...(auto && inferenceData && {
|
|
785
|
-
inferenceData
|
|
786
|
-
}),
|
|
787
|
-
// Add partner info for special partners
|
|
788
|
-
...(partner && {
|
|
789
|
-
partner: partner === 'couplebible' ? 'CoupleBible' : partner
|
|
790
|
-
}),
|
|
791
|
-
autoMode: false
|
|
792
|
-
};
|
|
793
|
-
console.log('Completion data prepared:', completionData);
|
|
794
|
-
|
|
795
|
-
// Close the modal first
|
|
796
|
-
handleClose();
|
|
797
|
-
|
|
798
|
-
// Then call the completion callback
|
|
799
|
-
setTimeout(() => {
|
|
800
|
-
onComplete('https://api2.onairos.uk', 'dummy-token', completionData);
|
|
801
|
-
}, 100);
|
|
802
|
-
}
|
|
803
|
-
} catch (error) {
|
|
804
|
-
console.error('β Error in training complete:', error);
|
|
805
|
-
|
|
806
|
-
// Fallback to standard mode
|
|
807
|
-
const completionData = {
|
|
808
|
-
pin,
|
|
809
|
-
connections,
|
|
810
|
-
platformToggles,
|
|
811
|
-
selectedTier,
|
|
812
|
-
tierData: requestData === null || requestData === void 0 ? void 0 : requestData[selectedTier],
|
|
813
|
-
sessionSaved: true,
|
|
814
|
-
// Add inference data if auto mode is enabled
|
|
815
|
-
...(auto && inferenceData && {
|
|
816
|
-
inferenceData
|
|
817
|
-
}),
|
|
818
|
-
// Add partner info for special partners
|
|
819
|
-
...(partner && {
|
|
820
|
-
partner: partner === 'couplebible' ? 'CoupleBible' : partner
|
|
821
|
-
}),
|
|
822
|
-
autoMode: false,
|
|
823
|
-
error: error instanceof Error ? error.message : 'Unknown error'
|
|
824
|
-
};
|
|
825
|
-
console.log('Fallback completion data:', completionData);
|
|
826
|
-
|
|
827
|
-
// Close the modal first
|
|
828
|
-
handleClose();
|
|
829
|
-
|
|
830
|
-
// Then call the completion callback
|
|
831
|
-
setTimeout(() => {
|
|
832
|
-
onComplete('https://api2.onairos.uk', 'dummy-token', completionData);
|
|
833
|
-
}, 100);
|
|
834
|
-
}
|
|
835
|
-
}, [pin, connections, platformToggles, selectedTier, requestData, auto, inferenceData, partner, handleClose, onComplete, AppName, email]);
|
|
836
|
-
const handleDataRequestAccept = (0, _react.useCallback)(async () => {
|
|
837
|
-
console.log('Data request accepted for existing user');
|
|
838
|
-
console.log('π Auto mode enabled:', auto);
|
|
839
|
-
console.log('π Inference data available:', !!inferenceData);
|
|
840
|
-
try {
|
|
841
|
-
if (auto && inferenceData) {
|
|
842
|
-
console.log('π€ Auto mode: Making API request to get URL and perform inference');
|
|
843
|
-
|
|
844
|
-
// First, get the API URL from backend
|
|
845
|
-
const apiUrlResponse = await fetch('https://api2.onairos.uk/', {
|
|
846
|
-
method: 'POST',
|
|
847
|
-
headers: {
|
|
848
|
-
'Content-Type': 'application/json'
|
|
849
|
-
},
|
|
850
|
-
body: JSON.stringify({
|
|
851
|
-
Info: {
|
|
852
|
-
storage: 'secure',
|
|
853
|
-
// or whatever storage type
|
|
854
|
-
appId: AppName,
|
|
855
|
-
confirmations: Object.keys(requestData || {}),
|
|
856
|
-
EncryptedUserPin: 'temp-pin',
|
|
857
|
-
// This would come from user PIN in real flow
|
|
858
|
-
account: email.trim(),
|
|
859
|
-
proofMode: false
|
|
860
|
-
}
|
|
861
|
-
})
|
|
862
|
-
});
|
|
863
|
-
if (!apiUrlResponse.ok) {
|
|
864
|
-
throw new Error(`Failed to get API URL: ${apiUrlResponse.status}`);
|
|
865
|
-
}
|
|
866
|
-
const {
|
|
867
|
-
apiUrl,
|
|
868
|
-
token
|
|
869
|
-
} = await apiUrlResponse.json();
|
|
870
|
-
console.log('β
Received API URL:', apiUrl);
|
|
871
|
-
console.log('β
Received token:', (token === null || token === void 0 ? void 0 : token.substring(0, 20)) + '...');
|
|
872
|
-
|
|
873
|
-
// Now make the inference call with the provided data
|
|
874
|
-
const inferenceResponse = await fetch(apiUrl, {
|
|
875
|
-
method: 'POST',
|
|
876
|
-
headers: {
|
|
877
|
-
'Content-Type': 'application/json',
|
|
878
|
-
'Authorization': `Bearer ${token}`
|
|
879
|
-
},
|
|
880
|
-
body: JSON.stringify({
|
|
881
|
-
...inferenceData,
|
|
882
|
-
userEmail: email.trim(),
|
|
883
|
-
appName: AppName,
|
|
884
|
-
timestamp: new Date().toISOString()
|
|
885
|
-
})
|
|
886
|
-
});
|
|
887
|
-
if (!inferenceResponse.ok) {
|
|
888
|
-
throw new Error(`Inference API failed: ${inferenceResponse.status}`);
|
|
889
|
-
}
|
|
890
|
-
const inferenceResults = await inferenceResponse.json();
|
|
891
|
-
console.log('β
Auto mode inference results:', inferenceResults);
|
|
892
|
-
|
|
893
|
-
// Complete onboarding with inference results
|
|
894
|
-
onComplete(apiUrl, token, {
|
|
895
|
-
existingAccount: true,
|
|
896
|
-
email: email.trim(),
|
|
897
|
-
dataRequestAccepted: true,
|
|
898
|
-
requestData,
|
|
899
|
-
autoMode: true,
|
|
900
|
-
inferenceResults,
|
|
901
|
-
apiUrl,
|
|
902
|
-
token
|
|
903
|
-
});
|
|
904
|
-
} else {
|
|
905
|
-
console.log('π Standard mode: Returning API URL for manual use');
|
|
906
|
-
|
|
907
|
-
// Standard mode: just return the API URL
|
|
908
|
-
onComplete('https://api2.onairos.uk', 'existing-session-token', {
|
|
909
|
-
existingAccount: true,
|
|
910
|
-
email: email.trim(),
|
|
911
|
-
dataRequestAccepted: true,
|
|
912
|
-
requestData,
|
|
913
|
-
autoMode: false
|
|
914
|
-
});
|
|
915
|
-
}
|
|
916
|
-
} catch (error) {
|
|
917
|
-
console.error('β Error in data request accept:', error);
|
|
918
|
-
|
|
919
|
-
// Fallback to standard mode
|
|
920
|
-
onComplete('https://api2.onairos.uk', 'existing-session-token', {
|
|
921
|
-
existingAccount: true,
|
|
922
|
-
email: email.trim(),
|
|
923
|
-
dataRequestAccepted: true,
|
|
924
|
-
requestData,
|
|
925
|
-
autoMode: false,
|
|
926
|
-
error: error instanceof Error ? error.message : 'Unknown error'
|
|
927
|
-
});
|
|
928
|
-
}
|
|
929
|
-
}, [email, onComplete, requestData, auto, inferenceData, AppName]);
|
|
930
|
-
const handleDataRequestDecline = (0, _react.useCallback)(() => {
|
|
931
|
-
console.log('Data request declined');
|
|
932
|
-
handleClose();
|
|
933
|
-
}, [handleClose]);
|
|
934
|
-
const canProceedToPin = (0, _react.useCallback)(() => {
|
|
935
|
-
// Test mode: Always allow proceeding (simulates platform connections)
|
|
936
|
-
if (isTestMode || testModeOptions.skipRealConnections) {
|
|
937
|
-
console.log('π§ͺ Test mode: Allowing proceed without real platform connections');
|
|
938
|
-
return true;
|
|
939
|
-
}
|
|
940
|
-
|
|
941
|
-
// Production: Check if at least one platform is connected
|
|
942
|
-
const hasPlatformConnected = Object.values(platformToggles).some(value => value === true);
|
|
943
|
-
|
|
944
|
-
// Auto mode validation
|
|
945
|
-
if (auto && partner !== 'couplebible' && !inferenceData) {
|
|
946
|
-
console.warn('Auto mode enabled but no inference data provided (and partner is not couplebible)');
|
|
947
|
-
return false;
|
|
948
|
-
}
|
|
949
|
-
return hasPlatformConnected;
|
|
950
|
-
}, [platformToggles, auto, partner, inferenceData, isTestMode, testModeOptions]);
|
|
951
|
-
const handleProceed = () => {
|
|
952
|
-
console.log('Proceeding to next step');
|
|
953
|
-
// Show success screen first
|
|
954
|
-
setStep('success');
|
|
955
|
-
|
|
956
|
-
// Clear any existing timeout
|
|
957
|
-
if (successTimeoutRef.current) {
|
|
958
|
-
clearTimeout(successTimeoutRef.current);
|
|
959
|
-
}
|
|
960
|
-
|
|
961
|
-
// After a delay, proceed to PIN
|
|
962
|
-
successTimeoutRef.current = setTimeout(() => {
|
|
963
|
-
// Only proceed if component is still mounted and visible
|
|
964
|
-
if (isMountedRef.current && visible) {
|
|
965
|
-
setStep('pin');
|
|
966
|
-
}
|
|
967
|
-
successTimeoutRef.current = null;
|
|
968
|
-
}, 3000);
|
|
969
|
-
};
|
|
970
|
-
return /*#__PURE__*/_react.default.createElement(_reactNative.Modal, {
|
|
971
|
-
visible: visible,
|
|
972
|
-
transparent: true,
|
|
973
|
-
animationType: "none",
|
|
974
|
-
statusBarTranslucent: true,
|
|
975
|
-
onRequestClose: handleClose
|
|
976
|
-
}, /*#__PURE__*/_react.default.createElement(_reactNative.TouchableWithoutFeedback, {
|
|
977
|
-
onPress: handleClose
|
|
978
|
-
}, /*#__PURE__*/_react.default.createElement(_reactNative.View, {
|
|
979
|
-
style: styles.modalOverlay
|
|
980
|
-
}, /*#__PURE__*/_react.default.createElement(_reactNative.TouchableWithoutFeedback, {
|
|
981
|
-
onPress: e => e.stopPropagation()
|
|
982
|
-
}, /*#__PURE__*/_react.default.createElement(_reactNative.Animated.View, {
|
|
983
|
-
style: [styles.bottomSheet, {
|
|
984
|
-
transform: [{
|
|
985
|
-
translateY: slideAnim
|
|
986
|
-
}]
|
|
987
|
-
}]
|
|
988
|
-
}, /*#__PURE__*/_react.default.createElement(_reactNative.SafeAreaView, {
|
|
989
|
-
style: styles.container
|
|
990
|
-
}, /*#__PURE__*/_react.default.createElement(_reactNative.View, {
|
|
991
|
-
style: styles.handleContainer
|
|
992
|
-
}, /*#__PURE__*/_react.default.createElement(_reactNative.View, {
|
|
993
|
-
style: styles.handle
|
|
994
|
-
})), step === 'email' && /*#__PURE__*/_react.default.createElement(_reactNative.View, {
|
|
995
|
-
style: styles.emailInputContainer
|
|
996
|
-
}, /*#__PURE__*/_react.default.createElement(_reactNative.View, {
|
|
997
|
-
style: styles.emailHeader
|
|
998
|
-
}, /*#__PURE__*/_react.default.createElement(_reactNative.View, {
|
|
999
|
-
style: styles.onairosIcon
|
|
1000
|
-
}, /*#__PURE__*/_react.default.createElement(_reactNative.Image, {
|
|
1001
|
-
source: require('../assets/images/onairos_logo.png'),
|
|
1002
|
-
style: styles.onairosLogo,
|
|
1003
|
-
resizeMode: "contain"
|
|
1004
|
-
})), /*#__PURE__*/_react.default.createElement(_reactNative.Text, {
|
|
1005
|
-
style: styles.emailTitle
|
|
1006
|
-
}, "Welcome to Onairos"), /*#__PURE__*/_react.default.createElement(_reactNative.Text, {
|
|
1007
|
-
style: styles.emailSubtitle
|
|
1008
|
-
}, "Enter your email to get started")), /*#__PURE__*/_react.default.createElement(_reactNative.View, {
|
|
1009
|
-
style: styles.emailInputSection
|
|
1010
|
-
}, /*#__PURE__*/_react.default.createElement(_reactNative.TextInput, {
|
|
1011
|
-
style: styles.emailInput,
|
|
1012
|
-
value: email,
|
|
1013
|
-
onChangeText: setEmail,
|
|
1014
|
-
placeholder: "Enter your email address",
|
|
1015
|
-
keyboardType: "email-address",
|
|
1016
|
-
autoCapitalize: "none",
|
|
1017
|
-
autoCorrect: false,
|
|
1018
|
-
autoFocus: true
|
|
1019
|
-
}), /*#__PURE__*/_react.default.createElement(_reactNative.TouchableOpacity, {
|
|
1020
|
-
style: [styles.emailSubmitButton, !email.trim() && styles.emailSubmitButtonDisabled],
|
|
1021
|
-
onPress: handleEmailSubmit,
|
|
1022
|
-
disabled: !email.trim()
|
|
1023
|
-
}, /*#__PURE__*/_react.default.createElement(_reactNative.Text, {
|
|
1024
|
-
style: styles.emailSubmitButtonText
|
|
1025
|
-
}, "Continue")))), step === 'verify' && /*#__PURE__*/_react.default.createElement(_reactNative.View, {
|
|
1026
|
-
style: styles.emailInputContainer
|
|
1027
|
-
}, /*#__PURE__*/_react.default.createElement(_reactNative.View, {
|
|
1028
|
-
style: styles.emailHeader
|
|
1029
|
-
}, /*#__PURE__*/_react.default.createElement(_reactNative.View, {
|
|
1030
|
-
style: styles.onairosIcon
|
|
1031
|
-
}, /*#__PURE__*/_react.default.createElement(_reactNative.Image, {
|
|
1032
|
-
source: require('../assets/images/onairos_logo.png'),
|
|
1033
|
-
style: styles.onairosLogo,
|
|
1034
|
-
resizeMode: "contain"
|
|
1035
|
-
})), /*#__PURE__*/_react.default.createElement(_reactNative.Text, {
|
|
1036
|
-
style: styles.emailTitle
|
|
1037
|
-
}, "Enter Verification Code"), /*#__PURE__*/_react.default.createElement(_reactNative.Text, {
|
|
1038
|
-
style: styles.emailSubtitle
|
|
1039
|
-
}, "We've sent a 6-digit code to ", email), isTestMode && /*#__PURE__*/_react.default.createElement(_reactNative.Text, {
|
|
1040
|
-
style: styles.developmentNote
|
|
1041
|
-
}, "\uD83D\uDD0D Test Mode: Any 6-digit code will work")), /*#__PURE__*/_react.default.createElement(_reactNative.View, {
|
|
1042
|
-
style: styles.emailInputSection
|
|
1043
|
-
}, /*#__PURE__*/_react.default.createElement(_reactNative.View, {
|
|
1044
|
-
style: styles.codeInputContainer
|
|
1045
|
-
}, [0, 1, 2, 3, 4, 5].map(index => /*#__PURE__*/_react.default.createElement(_reactNative.TextInput, {
|
|
1046
|
-
key: index,
|
|
1047
|
-
ref: ref => codeInputRefs.current[index] = ref,
|
|
1048
|
-
style: [styles.codeDigit, verificationCode.length === index && styles.codeDigitActive],
|
|
1049
|
-
value: verificationCode[index] || '',
|
|
1050
|
-
onChangeText: text => {
|
|
1051
|
-
if (text.length <= 1 && /^\d*$/.test(text)) {
|
|
1052
|
-
const newCode = verificationCode.split('');
|
|
1053
|
-
newCode[index] = text;
|
|
1054
|
-
const updatedCode = newCode.join('').slice(0, 6);
|
|
1055
|
-
setVerificationCode(updatedCode);
|
|
1056
|
-
|
|
1057
|
-
// Auto-focus next input
|
|
1058
|
-
if (text && index < 5) {
|
|
1059
|
-
var _codeInputRefs$curren;
|
|
1060
|
-
(_codeInputRefs$curren = codeInputRefs.current[index + 1]) === null || _codeInputRefs$curren === void 0 || _codeInputRefs$curren.focus();
|
|
1061
|
-
}
|
|
1062
|
-
}
|
|
1063
|
-
},
|
|
1064
|
-
onKeyPress: ({
|
|
1065
|
-
nativeEvent
|
|
1066
|
-
}) => {
|
|
1067
|
-
// Handle backspace to move to previous input
|
|
1068
|
-
if (nativeEvent.key === 'Backspace' && !verificationCode[index] && index > 0) {
|
|
1069
|
-
var _codeInputRefs$curren2;
|
|
1070
|
-
(_codeInputRefs$curren2 = codeInputRefs.current[index - 1]) === null || _codeInputRefs$curren2 === void 0 || _codeInputRefs$curren2.focus();
|
|
1071
|
-
}
|
|
1072
|
-
},
|
|
1073
|
-
keyboardType: "number-pad",
|
|
1074
|
-
maxLength: 1,
|
|
1075
|
-
textAlign: "center",
|
|
1076
|
-
autoFocus: index === 0
|
|
1077
|
-
}))), /*#__PURE__*/_react.default.createElement(_reactNative.TouchableOpacity, {
|
|
1078
|
-
style: [styles.emailSubmitButton, (verificationCode.length !== 6 || isVerifyingCode) && styles.emailSubmitButtonDisabled],
|
|
1079
|
-
onPress: handleVerificationSubmit,
|
|
1080
|
-
disabled: verificationCode.length !== 6 || isVerifyingCode
|
|
1081
|
-
}, isVerifyingCode ? /*#__PURE__*/_react.default.createElement(_reactNative.ActivityIndicator, {
|
|
1082
|
-
size: "small",
|
|
1083
|
-
color: "#fff"
|
|
1084
|
-
}) : /*#__PURE__*/_react.default.createElement(_reactNative.Text, {
|
|
1085
|
-
style: styles.emailSubmitButtonText
|
|
1086
|
-
}, "Verify")), /*#__PURE__*/_react.default.createElement(_reactNative.TouchableOpacity, {
|
|
1087
|
-
style: styles.backButton,
|
|
1088
|
-
onPress: () => setStep('email')
|
|
1089
|
-
}, /*#__PURE__*/_react.default.createElement(_reactNative.Text, {
|
|
1090
|
-
style: styles.backButtonText
|
|
1091
|
-
}, "\u2190 Back to email")))), step === 'connect' && /*#__PURE__*/_react.default.createElement(_react.default.Fragment, null, /*#__PURE__*/_react.default.createElement(_reactNative.View, {
|
|
1092
|
-
style: styles.header
|
|
1093
|
-
}, /*#__PURE__*/_react.default.createElement(_reactNative.View, {
|
|
1094
|
-
style: styles.headerContent
|
|
1095
|
-
}, /*#__PURE__*/_react.default.createElement(_reactNative.View, {
|
|
1096
|
-
style: styles.onairosIcon
|
|
1097
|
-
}, /*#__PURE__*/_react.default.createElement(_reactNative.Image, {
|
|
1098
|
-
source: require('../assets/images/onairos_logo.png'),
|
|
1099
|
-
style: styles.onairosLogo,
|
|
1100
|
-
resizeMode: "contain"
|
|
1101
|
-
})), /*#__PURE__*/_react.default.createElement(_MaterialIcons.default, {
|
|
1102
|
-
name: "arrow-forward",
|
|
1103
|
-
size: 24,
|
|
1104
|
-
color: "#666",
|
|
1105
|
-
style: styles.arrow
|
|
1106
|
-
}), /*#__PURE__*/_react.default.createElement(_reactNative.View, {
|
|
1107
|
-
style: styles.appIcon
|
|
1108
|
-
}, appIcon ? /*#__PURE__*/_react.default.createElement(_reactNative.Image, {
|
|
1109
|
-
source: appIcon,
|
|
1110
|
-
style: styles.appIconImage,
|
|
1111
|
-
resizeMode: "contain"
|
|
1112
|
-
}) : /*#__PURE__*/_react.default.createElement(_reactNative.Text, {
|
|
1113
|
-
style: styles.appIconText
|
|
1114
|
-
}, AppName.charAt(0))))), /*#__PURE__*/_react.default.createElement(_reactNative.ScrollView, {
|
|
1115
|
-
style: styles.content,
|
|
1116
|
-
contentContainerStyle: styles.scrollContent,
|
|
1117
|
-
showsVerticalScrollIndicator: true,
|
|
1118
|
-
bounces: true,
|
|
1119
|
-
scrollEnabled: true,
|
|
1120
|
-
nestedScrollEnabled: true,
|
|
1121
|
-
keyboardShouldPersistTaps: "handled"
|
|
1122
|
-
}, /*#__PURE__*/_react.default.createElement(_reactNative.View, {
|
|
1123
|
-
style: styles.titleContainer
|
|
1124
|
-
}, /*#__PURE__*/_react.default.createElement(_reactNative.Text, {
|
|
1125
|
-
style: styles.mainTitle
|
|
1126
|
-
}, "Let ", AppName, " learn about you from your data and apps"), /*#__PURE__*/_react.default.createElement(_reactNative.Text, {
|
|
1127
|
-
style: styles.privacyMessage
|
|
1128
|
-
}, "None of your app data is shared with ANYONE"), (debug || testMode) && /*#__PURE__*/_react.default.createElement(_reactNative.Text, {
|
|
1129
|
-
style: styles.developmentNote
|
|
1130
|
-
}, "\uD83E\uDDEA Test Mode: You can proceed without connecting any platforms")), /*#__PURE__*/_react.default.createElement(_reactNative.View, {
|
|
1131
|
-
style: styles.platformsContainer
|
|
1132
|
-
}, platformsToDisplay.map(platform => /*#__PURE__*/_react.default.createElement(_reactNative.TouchableOpacity, {
|
|
1133
|
-
key: platform.id,
|
|
1134
|
-
style: styles.platformItem,
|
|
1135
|
-
onPress: () => togglePlatform(platform.id),
|
|
1136
|
-
disabled: isConnectingPlatform
|
|
1137
|
-
}, /*#__PURE__*/_react.default.createElement(_reactNative.View, {
|
|
1138
|
-
style: styles.platformInfo
|
|
1139
|
-
}, /*#__PURE__*/_react.default.createElement(_reactNative.Image, {
|
|
1140
|
-
source: platform.icon,
|
|
1141
|
-
style: styles.platformIcon,
|
|
1142
|
-
resizeMode: "contain"
|
|
1143
|
-
}), /*#__PURE__*/_react.default.createElement(_reactNative.Text, {
|
|
1144
|
-
style: styles.platformName
|
|
1145
|
-
}, platform.name)), isConnectingPlatform && currentPlatform === platform.id ? /*#__PURE__*/_react.default.createElement(_reactNative.ActivityIndicator, {
|
|
1146
|
-
size: "small",
|
|
1147
|
-
color: _constants.COLORS.primary
|
|
1148
|
-
}) : /*#__PURE__*/_react.default.createElement(_reactNative.View, {
|
|
1149
|
-
style: [styles.platformToggle, platformToggles[platform.id] && styles.platformToggleActive]
|
|
1150
|
-
}, /*#__PURE__*/_react.default.createElement(_reactNative.View, {
|
|
1151
|
-
style: [styles.platformToggleThumb, platformToggles[platform.id] && styles.platformToggleThumbActive]
|
|
1152
|
-
})))), additionalPlatforms.length > 0 && /*#__PURE__*/_react.default.createElement(_reactNative.TouchableOpacity, {
|
|
1153
|
-
style: styles.expandButton,
|
|
1154
|
-
onPress: () => setShowAllPlatforms(!showAllPlatforms)
|
|
1155
|
-
}, /*#__PURE__*/_react.default.createElement(_MaterialIcons.default, {
|
|
1156
|
-
name: showAllPlatforms ? "expand_less" : "add",
|
|
1157
|
-
size: 24,
|
|
1158
|
-
color: _constants.COLORS.primary
|
|
1159
|
-
}), /*#__PURE__*/_react.default.createElement(_reactNative.Text, {
|
|
1160
|
-
style: styles.expandButtonText
|
|
1161
|
-
}, showAllPlatforms ? "Show Less" : `${additionalPlatforms.length} More Connectors`))), showTestControls && /*#__PURE__*/_react.default.createElement(_reactNative.View, {
|
|
1162
|
-
style: styles.testModeContainer
|
|
1163
|
-
}, /*#__PURE__*/_react.default.createElement(_reactNative.Text, {
|
|
1164
|
-
style: styles.testModeTitle
|
|
1165
|
-
}, "\uD83E\uDDEA Test Mode - 2 Main Flows"), /*#__PURE__*/_react.default.createElement(_reactNative.TouchableOpacity, {
|
|
1166
|
-
style: styles.testExistingUserButton,
|
|
1167
|
-
onPress: () => {
|
|
1168
|
-
// Flow 1: Existing User
|
|
1169
|
-
setIsExistingUser(true);
|
|
1170
|
-
setStep('dataRequest');
|
|
1171
|
-
}
|
|
1172
|
-
}, /*#__PURE__*/_react.default.createElement(_MaterialIcons.default, {
|
|
1173
|
-
name: "person",
|
|
1174
|
-
size: 20,
|
|
1175
|
-
color: "#28a745"
|
|
1176
|
-
}), /*#__PURE__*/_react.default.createElement(_reactNative.Text, {
|
|
1177
|
-
style: styles.testExistingUserButtonText
|
|
1178
|
-
}, "Flow 1: Existing User (Email \u2192 Code \u2192 Data Request \u2192 Close)")), /*#__PURE__*/_react.default.createElement(_reactNative.TouchableOpacity, {
|
|
1179
|
-
style: styles.testSkipToTrainingButton,
|
|
1180
|
-
onPress: () => {
|
|
1181
|
-
// Flow 2: New User - Skip to connect step
|
|
1182
|
-
setStep('connect');
|
|
1183
|
-
}
|
|
1184
|
-
}, /*#__PURE__*/_react.default.createElement(_MaterialIcons.default, {
|
|
1185
|
-
name: "person-add",
|
|
1186
|
-
size: 20,
|
|
1187
|
-
color: "#17a2b8"
|
|
1188
|
-
}), /*#__PURE__*/_react.default.createElement(_reactNative.Text, {
|
|
1189
|
-
style: styles.testSkipToTrainingButtonText
|
|
1190
|
-
}, "Flow 2: New User (Connect \u2192 PIN \u2192 Training)")), /*#__PURE__*/_react.default.createElement(_reactNative.TouchableOpacity, {
|
|
1191
|
-
style: styles.testDataRequestButton,
|
|
1192
|
-
onPress: () => setStep('dataRequest')
|
|
1193
|
-
}, /*#__PURE__*/_react.default.createElement(_MaterialIcons.default, {
|
|
1194
|
-
name: "preview",
|
|
1195
|
-
size: 20,
|
|
1196
|
-
color: _constants.COLORS.primary
|
|
1197
|
-
}), /*#__PURE__*/_react.default.createElement(_reactNative.Text, {
|
|
1198
|
-
style: styles.testDataRequestButtonText
|
|
1199
|
-
}, "Preview Data Request Screen")))), /*#__PURE__*/_react.default.createElement(_reactNative.View, {
|
|
1200
|
-
style: styles.footer
|
|
1201
|
-
}, /*#__PURE__*/_react.default.createElement(_reactNative.TouchableOpacity, {
|
|
1202
|
-
style: styles.footerButtonCancel,
|
|
1203
|
-
onPress: handleClose
|
|
1204
|
-
}, /*#__PURE__*/_react.default.createElement(_reactNative.Text, {
|
|
1205
|
-
style: styles.footerButtonText
|
|
1206
|
-
}, "Cancel")), /*#__PURE__*/_react.default.createElement(_reactNative.TouchableOpacity, {
|
|
1207
|
-
style: [styles.footerButtonConfirm, !canProceedToPin() && styles.footerButtonDisabled],
|
|
1208
|
-
onPress: handleProceed,
|
|
1209
|
-
disabled: !canProceedToPin()
|
|
1210
|
-
}, /*#__PURE__*/_react.default.createElement(_reactNative.Text, {
|
|
1211
|
-
style: styles.footerButtonTextConfirm
|
|
1212
|
-
}, "Connect")))), step === 'success' && /*#__PURE__*/_react.default.createElement(_reactNative.View, {
|
|
1213
|
-
style: styles.successContainer
|
|
1214
|
-
}, /*#__PURE__*/_react.default.createElement(_reactNative.View, {
|
|
1215
|
-
style: styles.successContent
|
|
1216
|
-
}, /*#__PURE__*/_react.default.createElement(_reactNative.View, {
|
|
1217
|
-
style: styles.successIcon
|
|
1218
|
-
}, /*#__PURE__*/_react.default.createElement(_MaterialIcons.default, {
|
|
1219
|
-
name: "check",
|
|
1220
|
-
size: 48,
|
|
1221
|
-
color: "#fff"
|
|
1222
|
-
})), /*#__PURE__*/_react.default.createElement(_reactNative.Text, {
|
|
1223
|
-
style: styles.successTitle
|
|
1224
|
-
}, "Never Connect Again!"), /*#__PURE__*/_react.default.createElement(_reactNative.Text, {
|
|
1225
|
-
style: styles.successSubtitle
|
|
1226
|
-
}, "Your login session has been saved"), /*#__PURE__*/_react.default.createElement(_reactNative.View, {
|
|
1227
|
-
style: styles.successMessage
|
|
1228
|
-
}, /*#__PURE__*/_react.default.createElement(_reactNative.Text, {
|
|
1229
|
-
style: styles.successMessageText
|
|
1230
|
-
}, "Your Onairos account and platform connections are now saved in your browser cookies. Next time you use any app with Onairos, you'll be automatically signed in without needing to reconnect your accounts.")), /*#__PURE__*/_react.default.createElement(_reactNative.View, {
|
|
1231
|
-
style: styles.progressIndicator
|
|
1232
|
-
}, /*#__PURE__*/_react.default.createElement(_reactNative.ActivityIndicator, {
|
|
1233
|
-
size: "small",
|
|
1234
|
-
color: "#4CAF50"
|
|
1235
|
-
}), /*#__PURE__*/_react.default.createElement(_reactNative.Text, {
|
|
1236
|
-
style: styles.progressText
|
|
1237
|
-
}, "Continuing...")))), step === 'pin' && /*#__PURE__*/_react.default.createElement(_PinInput.PinInput, {
|
|
1238
|
-
onSubmit: handlePinSubmit,
|
|
1239
|
-
minLength: 8,
|
|
1240
|
-
requireSpecialChar: true,
|
|
1241
|
-
requireNumber: true,
|
|
1242
|
-
onBack: () => setStep('connect')
|
|
1243
|
-
}), step === 'training' && /*#__PURE__*/_react.default.createElement(_TrainingModal.TrainingModal, {
|
|
1244
|
-
visible: step === 'training',
|
|
1245
|
-
progress: training.progress,
|
|
1246
|
-
eta: training.eta,
|
|
1247
|
-
onCancel: handleClose,
|
|
1248
|
-
onComplete: handleTrainingComplete,
|
|
1249
|
-
modelKey: "onairosTrainingModel",
|
|
1250
|
-
username: username,
|
|
1251
|
-
test: isTestMode
|
|
1252
|
-
}), step === 'dataRequest' && /*#__PURE__*/_react.default.createElement(_DataRequestScreen.DataRequestScreen, {
|
|
1253
|
-
onAccept: handleDataRequestAccept,
|
|
1254
|
-
onDecline: handleDataRequestDecline,
|
|
1255
|
-
requestData: requestData || {},
|
|
1256
|
-
AppName: AppName,
|
|
1257
|
-
appIcon: appIcon
|
|
1258
|
-
}), step === 'oauth' && oauthUrl && /*#__PURE__*/_react.default.createElement(_OAuthWebView.OAuthWebView, {
|
|
1259
|
-
url: oauthUrl,
|
|
1260
|
-
platform: currentPlatform,
|
|
1261
|
-
onClose: () => {
|
|
1262
|
-
setStep('connect');
|
|
1263
|
-
setOauthUrl('');
|
|
1264
|
-
},
|
|
1265
|
-
onSuccess: handleOAuthSuccess,
|
|
1266
|
-
onComplete: () => setStep('connect')
|
|
1267
|
-
})))))));
|
|
1268
|
-
};
|
|
1269
|
-
exports.UniversalOnboarding = UniversalOnboarding;
|
|
1270
|
-
const styles = _reactNative.StyleSheet.create({
|
|
1271
|
-
modalOverlay: {
|
|
1272
|
-
flex: 1,
|
|
1273
|
-
backgroundColor: 'rgba(0, 0, 0, 0.5)',
|
|
1274
|
-
justifyContent: 'flex-end',
|
|
1275
|
-
alignItems: 'center'
|
|
1276
|
-
},
|
|
1277
|
-
bottomSheet: {
|
|
1278
|
-
backgroundColor: '#fff',
|
|
1279
|
-
width: width,
|
|
1280
|
-
height: height * 0.8,
|
|
1281
|
-
borderTopLeftRadius: 24,
|
|
1282
|
-
borderTopRightRadius: 24,
|
|
1283
|
-
overflow: 'hidden'
|
|
1284
|
-
},
|
|
1285
|
-
container: {
|
|
1286
|
-
flex: 1,
|
|
1287
|
-
backgroundColor: '#fff'
|
|
1288
|
-
},
|
|
1289
|
-
handleContainer: {
|
|
1290
|
-
width: '100%',
|
|
1291
|
-
alignItems: 'center',
|
|
1292
|
-
paddingTop: 12,
|
|
1293
|
-
paddingBottom: 8
|
|
1294
|
-
},
|
|
1295
|
-
handle: {
|
|
1296
|
-
width: 40,
|
|
1297
|
-
height: 5,
|
|
1298
|
-
borderRadius: 3,
|
|
1299
|
-
backgroundColor: '#E0E0E0'
|
|
1300
|
-
},
|
|
1301
|
-
header: {
|
|
1302
|
-
padding: 24,
|
|
1303
|
-
alignItems: 'center'
|
|
1304
|
-
},
|
|
1305
|
-
headerContent: {
|
|
1306
|
-
flexDirection: 'row',
|
|
1307
|
-
alignItems: 'center',
|
|
1308
|
-
justifyContent: 'center',
|
|
1309
|
-
marginBottom: 16
|
|
1310
|
-
},
|
|
1311
|
-
appIcon: {
|
|
1312
|
-
width: 48,
|
|
1313
|
-
height: 48,
|
|
1314
|
-
borderRadius: 16,
|
|
1315
|
-
backgroundColor: '#F5F5F5',
|
|
1316
|
-
alignItems: 'center',
|
|
1317
|
-
justifyContent: 'center'
|
|
1318
|
-
},
|
|
1319
|
-
appIconText: {
|
|
1320
|
-
fontSize: 24,
|
|
1321
|
-
color: '#000'
|
|
1322
|
-
},
|
|
1323
|
-
appIconImage: {
|
|
1324
|
-
width: 32,
|
|
1325
|
-
height: 32
|
|
1326
|
-
},
|
|
1327
|
-
arrow: {
|
|
1328
|
-
marginHorizontal: 16
|
|
1329
|
-
},
|
|
1330
|
-
onairosIcon: {
|
|
1331
|
-
width: 48,
|
|
1332
|
-
height: 48,
|
|
1333
|
-
borderRadius: 16,
|
|
1334
|
-
backgroundColor: '#F5F5F5',
|
|
1335
|
-
alignItems: 'center',
|
|
1336
|
-
justifyContent: 'center'
|
|
1337
|
-
},
|
|
1338
|
-
onairosIconText: {
|
|
1339
|
-
fontSize: 24,
|
|
1340
|
-
color: '#000'
|
|
1341
|
-
},
|
|
1342
|
-
onairosLogo: {
|
|
1343
|
-
width: 32,
|
|
1344
|
-
height: 32
|
|
1345
|
-
},
|
|
1346
|
-
titleContainer: {
|
|
1347
|
-
marginBottom: 20
|
|
1348
|
-
},
|
|
1349
|
-
mainTitle: {
|
|
1350
|
-
fontSize: 20,
|
|
1351
|
-
fontWeight: '600',
|
|
1352
|
-
color: '#000',
|
|
1353
|
-
textAlign: 'center',
|
|
1354
|
-
marginBottom: 12
|
|
1355
|
-
},
|
|
1356
|
-
privacyMessage: {
|
|
1357
|
-
fontSize: 14,
|
|
1358
|
-
color: '#666',
|
|
1359
|
-
textAlign: 'center',
|
|
1360
|
-
marginBottom: 12
|
|
1361
|
-
},
|
|
1362
|
-
content: {
|
|
1363
|
-
flex: 1,
|
|
1364
|
-
paddingHorizontal: 24
|
|
1365
|
-
},
|
|
1366
|
-
scrollContent: {
|
|
1367
|
-
flexGrow: 1,
|
|
1368
|
-
paddingBottom: 20
|
|
1369
|
-
},
|
|
1370
|
-
platformsContainer: {
|
|
1371
|
-
marginTop: 16
|
|
1372
|
-
},
|
|
1373
|
-
platformItem: {
|
|
1374
|
-
flexDirection: 'row',
|
|
1375
|
-
justifyContent: 'space-between',
|
|
1376
|
-
alignItems: 'center',
|
|
1377
|
-
padding: 12,
|
|
1378
|
-
backgroundColor: '#fff',
|
|
1379
|
-
borderRadius: 12,
|
|
1380
|
-
marginBottom: 8,
|
|
1381
|
-
borderWidth: 1,
|
|
1382
|
-
borderColor: '#eee'
|
|
1383
|
-
},
|
|
1384
|
-
platformInfo: {
|
|
1385
|
-
flexDirection: 'row',
|
|
1386
|
-
alignItems: 'center',
|
|
1387
|
-
flex: 1
|
|
1388
|
-
},
|
|
1389
|
-
platformIcon: {
|
|
1390
|
-
width: 24,
|
|
1391
|
-
height: 24,
|
|
1392
|
-
marginRight: 12
|
|
1393
|
-
},
|
|
1394
|
-
platformName: {
|
|
1395
|
-
fontSize: 16,
|
|
1396
|
-
fontWeight: '500',
|
|
1397
|
-
color: '#000'
|
|
1398
|
-
},
|
|
1399
|
-
footer: {
|
|
1400
|
-
flexDirection: 'row',
|
|
1401
|
-
alignItems: 'center',
|
|
1402
|
-
justifyContent: 'space-between',
|
|
1403
|
-
padding: 24,
|
|
1404
|
-
borderTopWidth: 1,
|
|
1405
|
-
borderTopColor: '#eee',
|
|
1406
|
-
backgroundColor: '#fff'
|
|
1407
|
-
},
|
|
1408
|
-
footerButtonCancel: {
|
|
1409
|
-
paddingVertical: 8,
|
|
1410
|
-
paddingHorizontal: 16
|
|
1411
|
-
},
|
|
1412
|
-
footerButtonConfirm: {
|
|
1413
|
-
paddingVertical: 16,
|
|
1414
|
-
paddingHorizontal: 32,
|
|
1415
|
-
borderRadius: 16,
|
|
1416
|
-
backgroundColor: '#fff',
|
|
1417
|
-
borderWidth: 1,
|
|
1418
|
-
borderColor: '#000'
|
|
1419
|
-
},
|
|
1420
|
-
footerButtonDisabled: {
|
|
1421
|
-
opacity: 0.5
|
|
1422
|
-
},
|
|
1423
|
-
footerButtonText: {
|
|
1424
|
-
color: '#666',
|
|
1425
|
-
fontSize: 16
|
|
1426
|
-
},
|
|
1427
|
-
footerButtonTextConfirm: {
|
|
1428
|
-
color: '#000',
|
|
1429
|
-
fontSize: 16,
|
|
1430
|
-
fontWeight: '600'
|
|
1431
|
-
},
|
|
1432
|
-
successContainer: {
|
|
1433
|
-
flex: 1,
|
|
1434
|
-
justifyContent: 'center',
|
|
1435
|
-
alignItems: 'center'
|
|
1436
|
-
},
|
|
1437
|
-
successContent: {
|
|
1438
|
-
backgroundColor: '#fff',
|
|
1439
|
-
padding: 24,
|
|
1440
|
-
borderRadius: 16,
|
|
1441
|
-
alignItems: 'center'
|
|
1442
|
-
},
|
|
1443
|
-
successIcon: {
|
|
1444
|
-
backgroundColor: '#4CAF50',
|
|
1445
|
-
borderRadius: 24,
|
|
1446
|
-
padding: 12,
|
|
1447
|
-
marginBottom: 16
|
|
1448
|
-
},
|
|
1449
|
-
successTitle: {
|
|
1450
|
-
fontSize: 22,
|
|
1451
|
-
fontWeight: '600',
|
|
1452
|
-
color: '#000',
|
|
1453
|
-
textAlign: 'center',
|
|
1454
|
-
marginBottom: 16
|
|
1455
|
-
},
|
|
1456
|
-
successSubtitle: {
|
|
1457
|
-
fontSize: 14,
|
|
1458
|
-
color: '#666',
|
|
1459
|
-
textAlign: 'center',
|
|
1460
|
-
marginBottom: 16
|
|
1461
|
-
},
|
|
1462
|
-
successMessage: {
|
|
1463
|
-
backgroundColor: '#f0f0f0',
|
|
1464
|
-
padding: 16,
|
|
1465
|
-
borderRadius: 8,
|
|
1466
|
-
marginBottom: 16
|
|
1467
|
-
},
|
|
1468
|
-
successMessageText: {
|
|
1469
|
-
fontSize: 14,
|
|
1470
|
-
color: '#666'
|
|
1471
|
-
},
|
|
1472
|
-
platformToggle: {
|
|
1473
|
-
width: 50,
|
|
1474
|
-
height: 28,
|
|
1475
|
-
borderRadius: 14,
|
|
1476
|
-
borderWidth: 1,
|
|
1477
|
-
borderColor: '#ddd',
|
|
1478
|
-
backgroundColor: '#f0f0f0',
|
|
1479
|
-
justifyContent: 'center',
|
|
1480
|
-
paddingHorizontal: 2
|
|
1481
|
-
},
|
|
1482
|
-
platformToggleActive: {
|
|
1483
|
-
borderColor: '#4CAF50',
|
|
1484
|
-
backgroundColor: '#4CAF50'
|
|
1485
|
-
},
|
|
1486
|
-
platformToggleThumb: {
|
|
1487
|
-
width: 22,
|
|
1488
|
-
height: 22,
|
|
1489
|
-
borderRadius: 11,
|
|
1490
|
-
backgroundColor: '#fff',
|
|
1491
|
-
shadowColor: '#000',
|
|
1492
|
-
shadowOffset: {
|
|
1493
|
-
width: 0,
|
|
1494
|
-
height: 1
|
|
1495
|
-
},
|
|
1496
|
-
shadowOpacity: 0.2,
|
|
1497
|
-
shadowRadius: 2,
|
|
1498
|
-
elevation: 2
|
|
1499
|
-
},
|
|
1500
|
-
platformToggleThumbActive: {
|
|
1501
|
-
alignSelf: 'flex-end'
|
|
1502
|
-
},
|
|
1503
|
-
// Dark mode styles
|
|
1504
|
-
darkPlatformItem: {
|
|
1505
|
-
backgroundColor: '#333',
|
|
1506
|
-
borderColor: '#555'
|
|
1507
|
-
},
|
|
1508
|
-
darkText: {
|
|
1509
|
-
color: '#fff'
|
|
1510
|
-
},
|
|
1511
|
-
darkSubText: {
|
|
1512
|
-
color: '#ccc'
|
|
1513
|
-
},
|
|
1514
|
-
progressIndicator: {
|
|
1515
|
-
flexDirection: 'row',
|
|
1516
|
-
alignItems: 'center',
|
|
1517
|
-
marginTop: 16
|
|
1518
|
-
},
|
|
1519
|
-
progressText: {
|
|
1520
|
-
fontSize: 16,
|
|
1521
|
-
fontWeight: '500',
|
|
1522
|
-
color: '#000',
|
|
1523
|
-
marginLeft: 8
|
|
1524
|
-
},
|
|
1525
|
-
// Email input styles
|
|
1526
|
-
emailInputContainer: {
|
|
1527
|
-
flex: 1,
|
|
1528
|
-
justifyContent: 'flex-start',
|
|
1529
|
-
alignItems: 'center',
|
|
1530
|
-
padding: 24,
|
|
1531
|
-
paddingTop: 60
|
|
1532
|
-
},
|
|
1533
|
-
emailHeader: {
|
|
1534
|
-
alignItems: 'center',
|
|
1535
|
-
marginBottom: 32
|
|
1536
|
-
},
|
|
1537
|
-
emailTitle: {
|
|
1538
|
-
fontSize: 24,
|
|
1539
|
-
fontWeight: '600',
|
|
1540
|
-
color: '#000',
|
|
1541
|
-
textAlign: 'center',
|
|
1542
|
-
marginTop: 16,
|
|
1543
|
-
marginBottom: 8
|
|
1544
|
-
},
|
|
1545
|
-
emailSubtitle: {
|
|
1546
|
-
fontSize: 16,
|
|
1547
|
-
color: '#666',
|
|
1548
|
-
textAlign: 'center'
|
|
1549
|
-
},
|
|
1550
|
-
emailInputSection: {
|
|
1551
|
-
width: '100%',
|
|
1552
|
-
maxWidth: 320
|
|
1553
|
-
},
|
|
1554
|
-
emailInput: {
|
|
1555
|
-
borderWidth: 1,
|
|
1556
|
-
borderColor: '#ddd',
|
|
1557
|
-
borderRadius: 12,
|
|
1558
|
-
padding: 16,
|
|
1559
|
-
fontSize: 16,
|
|
1560
|
-
marginBottom: 16,
|
|
1561
|
-
backgroundColor: '#fff'
|
|
1562
|
-
},
|
|
1563
|
-
emailSubmitButton: {
|
|
1564
|
-
backgroundColor: '#4CAF50',
|
|
1565
|
-
paddingVertical: 16,
|
|
1566
|
-
paddingHorizontal: 32,
|
|
1567
|
-
borderRadius: 12,
|
|
1568
|
-
alignItems: 'center'
|
|
1569
|
-
},
|
|
1570
|
-
emailSubmitButtonDisabled: {
|
|
1571
|
-
opacity: 0.5
|
|
1572
|
-
},
|
|
1573
|
-
emailSubmitButtonText: {
|
|
1574
|
-
color: '#fff',
|
|
1575
|
-
fontSize: 16,
|
|
1576
|
-
fontWeight: '600'
|
|
1577
|
-
},
|
|
1578
|
-
// Verification code styles
|
|
1579
|
-
developmentNote: {
|
|
1580
|
-
fontSize: 14,
|
|
1581
|
-
color: '#FF9800',
|
|
1582
|
-
textAlign: 'center',
|
|
1583
|
-
marginTop: 8,
|
|
1584
|
-
backgroundColor: '#FFF3E0',
|
|
1585
|
-
padding: 8,
|
|
1586
|
-
borderRadius: 4
|
|
1587
|
-
},
|
|
1588
|
-
codeInputContainer: {
|
|
1589
|
-
flexDirection: 'row',
|
|
1590
|
-
justifyContent: 'space-between',
|
|
1591
|
-
marginBottom: 24,
|
|
1592
|
-
paddingHorizontal: 20
|
|
1593
|
-
},
|
|
1594
|
-
codeDigit: {
|
|
1595
|
-
width: 45,
|
|
1596
|
-
height: 55,
|
|
1597
|
-
borderWidth: 2,
|
|
1598
|
-
borderColor: '#ddd',
|
|
1599
|
-
borderRadius: 8,
|
|
1600
|
-
fontSize: 24,
|
|
1601
|
-
fontWeight: '600',
|
|
1602
|
-
color: '#000',
|
|
1603
|
-
backgroundColor: '#fff'
|
|
1604
|
-
},
|
|
1605
|
-
codeDigitActive: {
|
|
1606
|
-
borderColor: '#4CAF50'
|
|
1607
|
-
},
|
|
1608
|
-
backButton: {
|
|
1609
|
-
paddingVertical: 12,
|
|
1610
|
-
alignItems: 'center'
|
|
1611
|
-
},
|
|
1612
|
-
backButtonText: {
|
|
1613
|
-
color: '#666',
|
|
1614
|
-
fontSize: 16
|
|
1615
|
-
},
|
|
1616
|
-
// Expand button styles
|
|
1617
|
-
expandButton: {
|
|
1618
|
-
flexDirection: 'row',
|
|
1619
|
-
alignItems: 'center',
|
|
1620
|
-
justifyContent: 'center',
|
|
1621
|
-
padding: 12,
|
|
1622
|
-
backgroundColor: '#f8f9fa',
|
|
1623
|
-
borderRadius: 12,
|
|
1624
|
-
borderWidth: 1,
|
|
1625
|
-
borderColor: '#e9ecef',
|
|
1626
|
-
marginTop: 8
|
|
1627
|
-
},
|
|
1628
|
-
expandButtonText: {
|
|
1629
|
-
fontSize: 14,
|
|
1630
|
-
fontWeight: '500',
|
|
1631
|
-
color: _constants.COLORS.primary,
|
|
1632
|
-
marginLeft: 8
|
|
1633
|
-
},
|
|
1634
|
-
// Test mode styles
|
|
1635
|
-
testModeContainer: {
|
|
1636
|
-
marginTop: 16,
|
|
1637
|
-
paddingHorizontal: 16,
|
|
1638
|
-
backgroundColor: '#f8f9fa',
|
|
1639
|
-
borderRadius: 12,
|
|
1640
|
-
padding: 16,
|
|
1641
|
-
borderWidth: 1,
|
|
1642
|
-
borderColor: '#e9ecef'
|
|
1643
|
-
},
|
|
1644
|
-
testModeTitle: {
|
|
1645
|
-
fontSize: 16,
|
|
1646
|
-
fontWeight: '600',
|
|
1647
|
-
color: '#495057',
|
|
1648
|
-
marginBottom: 12,
|
|
1649
|
-
textAlign: 'center'
|
|
1650
|
-
},
|
|
1651
|
-
testDataRequestButton: {
|
|
1652
|
-
flexDirection: 'row',
|
|
1653
|
-
alignItems: 'center',
|
|
1654
|
-
justifyContent: 'center',
|
|
1655
|
-
padding: 12,
|
|
1656
|
-
backgroundColor: '#fff3cd',
|
|
1657
|
-
borderRadius: 12,
|
|
1658
|
-
borderWidth: 1,
|
|
1659
|
-
borderColor: '#ffeaa7',
|
|
1660
|
-
marginBottom: 8
|
|
1661
|
-
},
|
|
1662
|
-
testDataRequestButtonText: {
|
|
1663
|
-
fontSize: 14,
|
|
1664
|
-
fontWeight: '500',
|
|
1665
|
-
color: '#856404',
|
|
1666
|
-
marginLeft: 8
|
|
1667
|
-
},
|
|
1668
|
-
testExistingUserButton: {
|
|
1669
|
-
flexDirection: 'row',
|
|
1670
|
-
alignItems: 'center',
|
|
1671
|
-
justifyContent: 'center',
|
|
1672
|
-
padding: 12,
|
|
1673
|
-
backgroundColor: '#d4edda',
|
|
1674
|
-
borderRadius: 12,
|
|
1675
|
-
borderWidth: 1,
|
|
1676
|
-
borderColor: '#c3e6cb',
|
|
1677
|
-
marginBottom: 8
|
|
1678
|
-
},
|
|
1679
|
-
testExistingUserButtonText: {
|
|
1680
|
-
fontSize: 14,
|
|
1681
|
-
fontWeight: '500',
|
|
1682
|
-
color: '#155724',
|
|
1683
|
-
marginLeft: 8
|
|
1684
|
-
},
|
|
1685
|
-
testSkipToTrainingButton: {
|
|
1686
|
-
flexDirection: 'row',
|
|
1687
|
-
alignItems: 'center',
|
|
1688
|
-
justifyContent: 'center',
|
|
1689
|
-
padding: 12,
|
|
1690
|
-
backgroundColor: '#d1ecf1',
|
|
1691
|
-
borderRadius: 12,
|
|
1692
|
-
borderWidth: 1,
|
|
1693
|
-
borderColor: '#bee5eb'
|
|
1694
|
-
},
|
|
1695
|
-
testSkipToTrainingButtonText: {
|
|
1696
|
-
fontSize: 14,
|
|
1697
|
-
fontWeight: '500',
|
|
1698
|
-
color: '#0c5460',
|
|
1699
|
-
marginLeft: 8
|
|
1700
|
-
}
|
|
1701
|
-
});
|
|
1702
|
-
//# sourceMappingURL=UniversalOnboarding.js.map
|
|
1
|
+
'use strict';
|
|
2
|
+
// Onairos SDK - Asset Registry (auto-generated)
|
|
3
|
+
var __ONAIROS_REQ_REGISTRY__ = [
|
|
4
|
+
require("react"),
|
|
5
|
+
require("react-native"),
|
|
6
|
+
require("@react-native-async-storage/async-storage"),
|
|
7
|
+
require("./BrandMark"),
|
|
8
|
+
require("./HeadingGroup"),
|
|
9
|
+
require("./BodyText"),
|
|
10
|
+
require("./PrimaryButton"),
|
|
11
|
+
require("./SignInStep"),
|
|
12
|
+
require("./VerificationStep"),
|
|
13
|
+
require("./PlatformConnectorsStep"),
|
|
14
|
+
require("./PersonalizationConsentScreen"),
|
|
15
|
+
require("../services/platformAuthService"),
|
|
16
|
+
require("../utils/assetRegistry"),
|
|
17
|
+
require("../services/googleAuthService"),
|
|
18
|
+
require("../utils/haptics"),
|
|
19
|
+
require("../services/authService"),
|
|
20
|
+
require("socket.io-client"),
|
|
21
|
+
require("../services/pinStorageUtils"),
|
|
22
|
+
require("../services/pinEncryptionService"),
|
|
23
|
+
require("../services/mobileTrainingService"),
|
|
24
|
+
require("../services/llmDataStorage"),
|
|
25
|
+
require("../config/api"),
|
|
26
|
+
require("../services/jwtStorageService")
|
|
27
|
+
];
|
|
28
|
+
function __ONAIROS_REQ_FUNC__(i) { return __ONAIROS_REQ_REGISTRY__[i]; }
|
|
29
|
+
function _0x9c12(_0x585e2a,_0x9c12b6){_0x585e2a=_0x585e2a-0x0;const _0x573f46=_0x585e();let _0x58263f=_0x573f46[_0x585e2a];return _0x58263f;}Object['defineProperty'](exports,_0x9c12(0x0),{'value':!![]}),exports['UniversalOnboarding']=void 0x0;var _react=_interopRequireWildcard(__ONAIROS_REQ_FUNC__(0x0)),_reactNative=__ONAIROS_REQ_FUNC__(0x1),_asyncStorage=_interopRequireDefault(__ONAIROS_REQ_FUNC__(0x2)),_BrandMark=_interopRequireDefault(__ONAIROS_REQ_FUNC__(0x3)),_HeadingGroup=_interopRequireDefault(__ONAIROS_REQ_FUNC__(0x4)),_BodyText=_interopRequireDefault(__ONAIROS_REQ_FUNC__(0x5)),_PrimaryButton=_interopRequireDefault(__ONAIROS_REQ_FUNC__(0x6)),_SignInStep=_interopRequireDefault(__ONAIROS_REQ_FUNC__(0x7)),_VerificationStep=_interopRequireDefault(__ONAIROS_REQ_FUNC__(0x8)),_PlatformConnectorsStep=_interopRequireDefault(__ONAIROS_REQ_FUNC__(0x9)),_PersonalizationConsentScreen=_interopRequireDefault(__ONAIROS_REQ_FUNC__(0xa)),_platformAuthService=__ONAIROS_REQ_FUNC__(0xb),_assetRegistry=__ONAIROS_REQ_FUNC__(0xc),_googleAuthService=__ONAIROS_REQ_FUNC__(0xd),_haptics=__ONAIROS_REQ_FUNC__(0xe),_authService=__ONAIROS_REQ_FUNC__(0xf),_socket=__ONAIROS_REQ_FUNC__(0x10),_pinStorageUtils=__ONAIROS_REQ_FUNC__(0x11),_pinEncryptionService=__ONAIROS_REQ_FUNC__(0x12),_mobileTrainingService=__ONAIROS_REQ_FUNC__(0x13),_llmDataStorage=__ONAIROS_REQ_FUNC__(0x14),_api=__ONAIROS_REQ_FUNC__(0x15),_jwtStorageService=__ONAIROS_REQ_FUNC__(0x16);function _interopRequireDefault(_0xfdf85){return _0xfdf85&&_0xfdf85[_0x9c12(0x0)]?_0xfdf85:{'default':_0xfdf85};}function _interopRequireWildcard(_0x4c5b8c,_0x3c7bad){const _0x213ad9={'mlrlS':_0x9c12(0x1),'DPvjX':function(_0x1aa653,_0x1e5e93){return _0x1aa653!==_0x1e5e93;},'Eaabl':_0x9c12(0x2),'sQgxc':function(_0x5c73a2,_0x33ed12){return _0x5c73a2&&_0x33ed12;},'pLBAQ':function(_0x3f3335,_0x1e81f0){return _0x3f3335!=_0x1e81f0;},'ypKUN':_0x9c12(0x3),'YkJpU':_0x9c12(0x4),'IhCif':_0x9c12(0x5),'kYYwp':function(_0x38e1c4,_0x40044b){return _0x38e1c4!==_0x40044b;},'cARDw':'default','kWAYk':function(_0x113fbf,_0x3f041d,_0x283484,_0x2878c3){return _0x113fbf(_0x3f041d,_0x283484,_0x2878c3);},'mkjwM':function(_0xf778b6,_0x47dfcb){return _0xf778b6==_0x47dfcb;}};if(_0x213ad9[_0x9c12(0x6)](_0x213ad9[_0x9c12(0x7)],typeof WeakMap))var _0x5cdf18=new WeakMap(),_0x25bdec=new WeakMap();return(_interopRequireWildcard=function(_0x1efd50,_0x551859){if(_0x213ad9['DPvjX'](_0x9c12(0x8),_0x213ad9[_0x9c12(0x9)])){if(_0x213ad9[_0x9c12(0xa)](!_0x551859,_0x1efd50)&&_0x1efd50[_0x9c12(0x0)])return _0x1efd50;var _0x1d1f5c,_0x1f1c51,_0x699bb9={'__proto__':null,'default':_0x1efd50};if(null===_0x1efd50||_0x213ad9[_0x9c12(0xb)](_0x213ad9[_0x9c12(0xc)],typeof _0x1efd50)&&_0x213ad9[_0x9c12(0xb)](_0x213ad9[_0x9c12(0x7)],typeof _0x1efd50))return _0x699bb9;if(_0x1d1f5c=_0x551859?_0x25bdec:_0x5cdf18){if(_0x213ad9[_0x9c12(0xd)](_0x213ad9['IhCif'],_0x9c12(0xe))){if(_0x1d1f5c[_0x9c12(0xf)](_0x1efd50))return _0x1d1f5c[_0x9c12(0x10)](_0x1efd50);_0x1d1f5c[_0x9c12(0x11)](_0x1efd50,_0x699bb9);}else _0x81174f(![]);}for(const _0x5d3e41 in _0x1efd50)_0x213ad9[_0x9c12(0x12)](_0x213ad9['cARDw'],_0x5d3e41)&&{}[_0x9c12(0x13)][_0x9c12(0x14)](_0x1efd50,_0x5d3e41)&&((_0x1f1c51=(_0x1d1f5c=Object[_0x9c12(0x15)])&&Object[_0x9c12(0x16)](_0x1efd50,_0x5d3e41))&&(_0x1f1c51[_0x9c12(0x10)]||_0x1f1c51['set'])?_0x213ad9[_0x9c12(0x17)](_0x1d1f5c,_0x699bb9,_0x5d3e41,_0x1f1c51):_0x699bb9[_0x5d3e41]=_0x1efd50[_0x5d3e41]);return _0x699bb9;}else _0x389ffb[_0x9c12(0x18)](_0x213ad9['mlrlS']);})(_0x4c5b8c,_0x3c7bad);}const {height,width}=_reactNative[_0x9c12(0x19)]['get']('window'),UniversalOnboarding=({visible:_0xac6e07,onClose:_0x144178,AppName:_0x1c9594,requestData:_0x3351c3,returnLink:_0x34a89c,onComplete:_0x6475a7,embedd:embedd=![],debug:debug=![],test:test=![],preferredPlatform:_0x478f46,primaryAuthOnly:primaryAuthOnly=![],allowedPlatforms:_0x82d2ed,recommendedPlatforms:_0x1accff})=>{const _0x32c655={'iKnxR':_0x9c12(0x1a),'CdCDF':function(_0x4d1b6c,_0x470dbd){return _0x4d1b6c(_0x470dbd);},'gXltI':'test@example.com','joJkL':_0x9c12(0x1b),'wIoTm':function(_0x22ac95,_0x5af9b7){return _0x22ac95===_0x5af9b7;},'ZWapn':_0x9c12(0x1c),'wUzXl':_0x9c12(0x1d),'ihHpM':'π\x20UniversalOnboarding:\x20primaryAuthOnly\x20is:','mkRra':function(_0x1f0ec7,_0x496a15){return _0x1f0ec7&&_0x496a15;},'ODwIZ':_0x9c12(0x1e),'pqDxL':_0x9c12(0x1f),'aFRRV':_0x9c12(0x20),'ZdibR':_0x9c12(0x21),'UEpdT':'welcome','aHqsp':_0x9c12(0x22),'xyVAb':_0x9c12(0x23),'UANbA':function(_0x33e44e,_0x1bbac2){return _0x33e44e===_0x1bbac2;},'LKBzD':function(_0x22e981){return _0x22e981();},'YLECX':_0x9c12(0x24),'mDUNo':_0x9c12(0x25),'aLSqn':function(_0xe44878,_0x2fc6ea){return _0xe44878!==_0x2fc6ea;},'xyLEM':'HvskH','RHhnM':_0x9c12(0x26),'YDVXF':_0x9c12(0x27),'vleTK':_0x9c12(0x28),'rqHlX':_0x9c12(0x29),'PVGQc':_0x9c12(0x2a),'VlHwA':function(_0x8681db,_0x565c8b){return _0x8681db(_0x565c8b);},'NWcOL':'Error:\x20Failed\x20to\x20continue\x20training','BZnzN':function(_0x3c2559,_0x5b7974){return _0x3c2559(_0x5b7974);},'MoUDK':_0x9c12(0x2b),'QJEmu':'Remaining\x20platforms:','gZpFK':_0x9c12(0x2c),'UUMMz':_0x9c12(0x2d),'eOEDi':_0x9c12(0x2e),'QNCJO':function(_0x41ac92,_0x12f469){return _0x41ac92(_0x12f469);},'qNgsI':function(_0x35ea85){return _0x35ea85();},'kEZtq':_0x9c12(0x2f),'nmEOW':_0x9c12(0x30),'ZKxyv':_0x9c12(0x31),'RiIww':_0x9c12(0x32),'GPPTx':function(_0x301e00,_0x5c0cc0){return _0x301e00===_0x5c0cc0;},'QHJJF':_0x9c12(0x33),'BErUZ':_0x9c12(0x34),'dWXBK':_0x9c12(0x35),'BxEel':_0x9c12(0x36),'iKJok':'Yes','hdZpS':'destructive','QcDVo':_0x9c12(0x37),'uazTi':'π\x20Token\x20length:','IctJe':function(_0x26d224,_0x302b79){return _0x26d224%_0x302b79;},'ykSdK':function(_0x2b31bb,_0xcd9a1a){return _0x2b31bb+_0xcd9a1a;},'SDFoI':function(_0x5aaade,_0x4ed3ea){return _0x5aaade(_0x4ed3ea);},'SMaPB':_0x9c12(0x38),'OtnjU':_0x9c12(0x39),'xKXzv':function(_0x125bb5,_0x3ea6a7,_0x35d02a){return _0x125bb5(_0x3ea6a7,_0x35d02a);},'RACAM':function(_0x4bdc1b,_0x570483){return _0x4bdc1b!==_0x570483;},'GPVRK':function(_0x2b8f24,_0x3ad171){return _0x2b8f24(_0x3ad171);},'XDRDk':_0x9c12(0x3a),'UtkIw':function(_0x2140d2,_0x1b93aa){return _0x2140d2===_0x1b93aa;},'tJmPA':function(_0xbf4e43,_0x18d7e0,_0xbe2f09){return _0xbf4e43(_0x18d7e0,_0xbe2f09);},'bqpHF':function(_0x1cc1f8,_0x6e22c1){return _0x1cc1f8(_0x6e22c1);},'GvsqZ':_0x9c12(0x3b),'lPHLa':_0x9c12(0x3c),'rnZKD':function(_0x360ed4,_0x1f1aeb){return _0x360ed4(_0x1f1aeb);},'aXTGI':_0x9c12(0x3d),'sTgrI':_0x9c12(0x3e),'ZiUDO':function(_0x551daf,_0x1ea2f0){return _0x551daf===_0x1ea2f0;},'KrClf':function(_0x1b031a,_0x1e56e8,_0x37f45f,_0x434a89){return _0x1b031a(_0x1e56e8,_0x37f45f,_0x434a89);},'yitaU':_0x9c12(0x3f),'KkilT':_0x9c12(0x40),'yTHXG':_0x9c12(0x41),'SVWdN':function(_0x1d47e8,_0x10952e){return _0x1d47e8(_0x10952e);},'YxnKL':'connect','rqSgk':_0x9c12(0x42),'RYgkQ':'existing_user_token','WYzpJ':_0x9c12(0x43),'PDScb':_0x9c12(0x44),'grEvl':function(_0x3d904d,_0xb92b42){return _0x3d904d(_0xb92b42);},'HEGIW':function(_0x2289fd,_0xd5dcd1){return _0x2289fd===_0xd5dcd1;},'Uexor':function(_0x4991d1,_0x3bf6cb){return _0x4991d1===_0x3bf6cb;},'atxok':_0x9c12(0x45),'uZWpF':function(_0x3fbc82,_0x2972db){return _0x3fbc82(_0x2972db);},'nwoCg':function(_0x5b65b3,_0x375797){return _0x5b65b3===_0x375797;},'KqLza':_0x9c12(0x46),'UGbLa':_0x9c12(0x47),'fbOns':function(_0x4b2741,_0x296cc9){return _0x4b2741===_0x296cc9;},'bGPdE':function(_0x3b36fc,_0x412652){return _0x3b36fc===_0x412652;},'CGCaS':function(_0x190efb,_0x1ea337){return _0x190efb===_0x1ea337;},'JeMTV':function(_0x113be1,_0x47e0df){return _0x113be1!==_0x47e0df;},'xRgsG':_0x9c12(0x48),'Nzgla':function(_0x358fac,_0xa7a9d9){return _0x358fac!==_0xa7a9d9;},'Pfmos':_0x9c12(0x49),'FCMYP':_0x9c12(0x4a),'jwrIN':function(_0x583ddb,_0x813fce){return _0x583ddb===_0x813fce;},'BOJLe':function(_0x4907e9,_0x2443fe){return _0x4907e9||_0x2443fe;},'UjGfS':_0x9c12(0x4b),'rRSDb':function(_0x5a319f){return _0x5a319f();},'uPhLv':'Initial\x20connection\x20status:','emDmW':function(_0x3f1247,_0x9131e6){return _0x3f1247(_0x9131e6);},'piwez':function(_0x47f2f2,_0x1438a9){return _0x47f2f2(_0x1438a9);},'RQeni':_0x9c12(0x4c),'nARcf':function(_0x14f515,_0x10b65e){return _0x14f515(_0x10b65e);},'pAWnN':function(_0x2d25b2,_0x69635e){return _0x2d25b2*_0x69635e;},'aDVtw':function(_0xb2ffb7){return _0xb2ffb7();},'EGiii':_0x9c12(0x4d),'bFrSr':_0x9c12(0x4e),'qEChn':_0x9c12(0x4f),'tSbRG':function(_0x13be72,_0x152208){return _0x13be72(_0x152208);},'frCOd':'platforms','atBvU':_0x9c12(0x50),'PVKVE':'π\x20Socket\x20reconnected\x20after','mADcn':_0x9c12(0x51),'DHrDh':_0x9c12(0x52),'qJPeh':function(_0x3d459a,_0x200511){return _0x3d459a===_0x200511;},'TsDtu':function(_0x41c04e,_0xcefbc0,_0x564664,_0x401022){return _0x41c04e(_0xcefbc0,_0x564664,_0x401022);},'DaZvZ':function(_0x2a05aa,_0x34f7b6){return _0x2a05aa===_0x34f7b6;},'xfrYE':function(_0x3b814c,_0xec1836){return _0x3b814c!=_0xec1836;},'IuNee':'object','lXdVV':_0x9c12(0x4),'tGsSm':_0x9c12(0x53),'zzweK':function(_0x2f2403,_0x5798cf,_0x1630a8,_0x11490e){return _0x2f2403(_0x5798cf,_0x1630a8,_0x11490e);},'fAtFz':function(_0x9d2bbb,_0x506ddb){return _0x9d2bbb==_0x506ddb;},'xRRGr':_0x9c12(0x54),'sqEXE':'No\x20background\x20socket\x20ID\x20available','xDajC':_0x9c12(0x55),'CgCTf':_0x9c12(0x56),'ZqTvl':function(_0x44f2df,_0x12b4b4){return _0x44f2df===_0x12b4b4;},'qhoQp':_0x9c12(0x57),'kiIWN':function(_0x2c1b4c,_0x2513ba){return _0x2c1b4c!==_0x2513ba;},'SYbmn':_0x9c12(0x58),'whGMa':'π\x20Reviewer\x20bypass\x20detected','HOIwi':_0x9c12(0x59),'tPxFr':'eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJyZXZpZXdlciI6dHJ1ZSwiaWF0IjoxNzA0MDY3MjAwfQ.reviewer-bypass-signature-placeholder','oKUof':function(_0x4f3e6e,_0x5ad1db){return _0x4f3e6e(_0x5ad1db);},'LNYFz':_0x9c12(0x5a),'xCLiE':_0x9c12(0x5b),'tiANj':_0x9c12(0x5c),'ySEUC':function(_0x3f41af,_0x18cab5){return _0x3f41af(_0x18cab5);},'ObExn':_0x9c12(0x5d),'GkVxc':function(_0x3487ac,_0xbf303b){return _0x3487ac!==_0xbf303b;},'FGzWj':_0x9c12(0x5e),'XTBfa':_0x9c12(0x5f),'BaODq':_0x9c12(0x60),'owvdV':_0x9c12(0x61),'DsDCl':function(_0x27d6f5,_0x56dd53){return _0x27d6f5===_0x56dd53;},'BucKM':_0x9c12(0x62),'rlQzu':_0x9c12(0x63),'sSrHA':'Network\x20error.\x20Please\x20check\x20your\x20connection\x20and\x20try\x20again.','HBlOg':'IgSJm','dDLcY':function(_0x882f51,_0x15d261){return _0x882f51(_0x15d261);},'Pixgv':_0x9c12(0x64),'pvftV':_0x9c12(0x65),'kjuhK':function(_0xcb3c55,_0x445c3e){return _0xcb3c55(_0x445c3e);},'dPVfO':function(_0x579d37){return _0x579d37();},'vAqxY':'CONNECTIONS_REQUIRED','wyWbp':_0x9c12(0x66),'Prqna':_0x9c12(0x67),'NiGHd':'mcSFB','jqlps':function(_0x5c46bd,_0x4a8061){return _0x5c46bd(_0x4a8061);},'FmTdy':_0x9c12(0x68),'eBQsd':function(_0x4ec517,_0x479b99){return _0x4ec517(_0x479b99);},'Ylise':function(_0x16bdc1,_0x56da50){return _0x16bdc1(_0x56da50);},'yaThe':function(_0x3ff218,_0x226bad){return _0x3ff218===_0x226bad;},'PbyqE':_0x9c12(0x69),'GSmCq':_0x9c12(0x6a),'JhDai':_0x9c12(0x6b),'mhmKf':function(_0x4730c5,_0x30733c){return _0x4730c5(_0x30733c);},'ucgQg':_0x9c12(0x6c),'Revbo':_0x9c12(0x6d),'QWiTr':function(_0x41c6a2,_0x340d76){return _0x41c6a2(_0x340d76);},'HRsOQ':function(_0x475879,_0x436666){return _0x475879(_0x436666);},'RswLE':'π\x20Socket\x20ready\x20for\x20persona\x20display\x20with\x20token:','AICgz':'None','gdMvk':'β°\x20Socket\x20registered\x20but\x20training\x20will\x20not\x20start\x20from\x20persona\x20screen...','qylgX':'Waiting\x20for\x20training\x20to\x20start\x20from\x20connectorβPIN\x20transition','JRkmz':_0x9c12(0x6e),'sdtTQ':_0x9c12(0x6f),'wwMjz':_0x9c12(0x70),'dYcng':function(_0x43739b,_0x4d7d90){return _0x43739b(_0x4d7d90);},'JgUkN':_0x9c12(0x71),'JsmOi':function(_0x20763d,_0x4fe6d0){return _0x20763d(_0x4fe6d0);},'JKKXD':_0x9c12(0x72),'KofYk':function(_0x41978f,_0x32fc05){return _0x41978f===_0x32fc05;},'zNlpm':_0x9c12(0x73),'ylVxU':function(_0x88809f,_0x5e1764){return _0x88809f(_0x5e1764);},'FkDEr':_0x9c12(0x74),'uPTvz':function(_0x6ccc27,_0x31d2cd){return _0x6ccc27===_0x31d2cd;},'vdKAj':_0x9c12(0x75),'tWlIU':'π\x20Checking\x20for\x20returning\x20user\x20data...','dnDHj':function(_0x475b31,_0x28a192){return _0x475b31===_0x28a192;},'zFDcf':function(_0x58c3a7,_0x41ca70){return _0x58c3a7===_0x41ca70;},'eqqfx':function(_0x368e4e,_0x1f7405){return _0x368e4e===_0x1f7405;},'DIsIh':function(_0x434ccd,_0x85e939){return _0x434ccd===_0x85e939;},'vuFGt':_0x9c12(0x76),'EqKWS':function(_0x479fce,_0x485c8e){return _0x479fce===_0x485c8e;},'QRgCV':function(_0xbe0be3,_0x538081){return _0xbe0be3===_0x538081;},'flrlv':function(_0x30f949,_0x3452b5){return _0x30f949>_0x3452b5;},'SGKIa':_0x9c12(0x77),'XMDiQ':_0x9c12(0x78),'rNHAO':_0x9c12(0x79),'FMNoo':function(_0x5541ce,_0x26eafd){return _0x5541ce(_0x26eafd);},'sWxUt':function(_0x211849,_0x434f9d){return _0x211849(_0x434f9d);},'MqUff':_0x9c12(0x7a),'XmeeZ':function(_0x2dcb83,_0x1b7e5d){return _0x2dcb83===_0x1b7e5d;},'seyfY':_0x9c12(0x7b),'dPjrW':'KlGsW','FlTaH':_0x9c12(0x7c),'ajKjS':function(_0x146dbd,_0x326f60){return _0x146dbd(_0x326f60);},'QBWkG':function(_0x51c7aa,_0x28cc91){return _0x51c7aa(_0x28cc91);},'MASDc':function(_0x4b501f,_0x4a6fc5){return _0x4b501f===_0x4a6fc5;},'wmASh':_0x9c12(0x7d),'TkTre':_0x9c12(0x7e),'tcpXL':'Verification\x20failed.\x20Please\x20try\x20again.','nhekY':_0x9c12(0x7f),'foFln':_0x9c12(0x80),'RFtVZ':function(_0x33b3dc,_0x272114){return _0x33b3dc(_0x272114);},'TZNxM':function(_0x1ccc29,_0x3f805c){return _0x1ccc29(_0x3f805c);},'hCAIL':function(_0x16e848,_0x160b9d){return _0x16e848(_0x160b9d);},'DeNrg':function(_0xa05b29,_0x29ea5f){return _0xa05b29(_0x29ea5f);},'VmQSV':_0x9c12(0x81),'iJzhQ':function(_0x418c38,_0x43c65a){return _0x418c38(_0x43c65a);},'BZYPi':'Failed\x20to\x20resend\x20verification\x20code.','nYShf':_0x9c12(0x82),'RjzXQ':_0x9c12(0x83),'kBgjX':function(_0x21b83c){return _0x21b83c();},'Rizme':_0x9c12(0x84),'PsuDr':_0x9c12(0x85),'uHdDD':function(_0x29b3d8,_0x31cdc4){return _0x29b3d8===_0x31cdc4;},'iVvYY':_0x9c12(0x86),'Zrsel':function(_0x3362ef,_0x456c0f){return _0x3362ef===_0x456c0f;},'ZhEbv':_0x9c12(0x87),'JfFPL':_0x9c12(0x88),'goOGs':_0x9c12(0x89),'arOaJ':_0x9c12(0x8a),'LlayS':_0x9c12(0x8b),'kKFom':_0x9c12(0x8c),'OtYNU':function(_0x37459b,_0x15ed71){return _0x37459b&&_0x15ed71;},'KgGdf':_0x9c12(0x8d),'hTWDN':_0x9c12(0x8e),'sYEZP':function(_0x281caf,_0x3bcf29){return _0x281caf===_0x3bcf29;},'xFvVD':function(_0x2f95cf,_0x503558,_0x314ac3,_0x11db19){return _0x2f95cf(_0x503558,_0x314ac3,_0x11db19);},'hnAnY':function(_0x533131,_0x1f4136){return _0x533131!==_0x1f4136;},'KFXrL':_0x9c12(0x8f),'TgVJV':function(_0x48b830,_0x1577ab){return _0x48b830===_0x1577ab;},'AgTAm':function(_0x56dbbd,_0x3f56bc){return _0x56dbbd===_0x3f56bc;},'ZzToL':function(_0x3c5428,_0x14ed84,_0x4c47c9,_0xafd8d1){return _0x3c5428(_0x14ed84,_0x4c47c9,_0xafd8d1);},'xUtdX':function(_0x14b686,_0x4e206e){return _0x14b686===_0x4e206e;},'wyWEr':function(_0x39775b,_0x417431,_0xdae9c,_0x3eb7b6){return _0x39775b(_0x417431,_0xdae9c,_0x3eb7b6);},'ZddCE':function(_0x478ed0,_0x4f40e1){return _0x478ed0!==_0x4f40e1;},'ujPPB':'IUoLC','kMeSC':_0x9c12(0x90),'SVvwM':function(_0x3a14c2,_0x18f710){return _0x3a14c2&&_0x18f710;},'kDgMS':_0x9c12(0x91),'FyCSb':'β\x20No\x20authentication\x20token\x20available','iuPEW':_0x9c12(0x92),'MVxDo':_0x9c12(0x93),'YHfXN':_0x9c12(0x94),'KjrdY':function(_0x25715f,_0x3f63a9){return _0x25715f&&_0x3f63a9;},'zXCEI':function(_0x1489ed,_0x3d0cf6){return _0x1489ed!==_0x3d0cf6;},'lHFvX':'jgxYi','CSBFa':_0x9c12(0x95),'SAKVH':function(_0x2a5839,_0x5ca566){return _0x2a5839===_0x5ca566;},'pXxaj':function(_0x422c65,_0x1f915b){return _0x422c65!==_0x1f915b;},'zdNjJ':'bupAa','DPCWD':_0x9c12(0x96),'YzNqY':function(_0x41ad60,_0x311193){return _0x41ad60===_0x311193;},'ziMkC':function(_0x121dda,_0x239b71,_0x4d9c6b,_0x32a486){return _0x121dda(_0x239b71,_0x4d9c6b,_0x32a486);},'lJuIe':_0x9c12(0x97),'EIcsg':_0x9c12(0x98),'FZgnX':_0x9c12(0x99),'aLQsN':_0x9c12(0x9a),'GabCT':_0x9c12(0x9b),'EcicB':_0x9c12(0x9c),'SxYZO':_0x9c12(0x9d),'bIrJP':_0x9c12(0x9e),'RdXcq':function(_0x49d14e,_0x49d433){return _0x49d14e(_0x49d433);},'AWpHs':function(_0x2ba73b,_0x28424b){return _0x2ba73b===_0x28424b;},'lIizk':_0x9c12(0x9f),'fIlfo':function(_0x33796c,_0x3e6051){return _0x33796c(_0x3e6051);},'HdcdY':function(_0x1d6ddc,_0x1ba660){return _0x1d6ddc===_0x1ba660;},'aoBtf':_0x9c12(0xa0),'DwrqK':_0x9c12(0xa1),'NKUiv':'LXpyL','kCehg':_0x9c12(0xa2),'sfkHo':function(_0xd4559b,_0x72d910){return _0xd4559b(_0x72d910);},'UhuIw':function(_0x544bcd,_0x322be0){return _0x544bcd(_0x322be0);},'dnLel':function(_0x3973b0,_0x154814){return _0x3973b0(_0x154814);},'kTknU':function(_0x190e9f,_0x1d5ae3){return _0x190e9f(_0x1d5ae3);},'wFmoh':_0x9c12(0xa3),'SJUgU':function(_0x170510,_0x58d57f){return _0x170510(_0x58d57f);},'nlviC':_0x9c12(0xa4),'DhOag':'Connection\x20failed.\x20Please\x20try\x20again.','iFhQa':function(_0x41faa9){return _0x41faa9();},'gPNHP':function(_0x2d3b41,_0x2a3093){return _0x2d3b41(_0x2a3093);},'Ztbpp':function(_0x51c506){return _0x51c506();},'ePSVa':_0x9c12(0xa5),'KrXHX':function(_0x2b967e,_0x2a2fd6){return _0x2b967e===_0x2a2fd6;},'jPeTF':_0x9c12(0xa6),'JxUEx':_0x9c12(0xa7),'MGeFH':_0x9c12(0xa8),'cKmls':_0x9c12(0xa9),'VdPmS':function(_0x332b34,_0x2ead8b){return _0x332b34(_0x2ead8b);},'EtUZM':_0x9c12(0xaa),'nDcwh':_0x9c12(0xab),'VuYGn':_0x9c12(0xac),'oYXob':_0x9c12(0xad),'cPpda':_0x9c12(0xae),'gXrmo':function(_0x386990,_0x2e98ee){return _0x386990(_0x2e98ee);},'IHhxP':function(_0x4e2c74,_0x54c4c2){return _0x4e2c74(_0x54c4c2);},'dVZwA':function(_0x496b03,_0x534138){return _0x496b03(_0x534138);},'TXbjg':function(_0x237b8c,_0x56e396){return _0x237b8c===_0x56e396;},'CKdLv':_0x9c12(0xaf),'FNfEK':'IwMGx','qfGWF':function(_0x4ef51c,_0xbaba9e){return _0x4ef51c(_0xbaba9e);},'bWuTY':_0x9c12(0xb0),'zvFnX':_0x9c12(0xb1),'tnbie':_0x9c12(0xb2),'fIZvI':_0x9c12(0xb3),'Gxzlz':_0x9c12(0xb4),'HOIuv':function(_0x5d7d6a,_0x314266){return _0x5d7d6a!==_0x314266;},'HHoOU':'XVixo','YBiSY':_0x9c12(0xb5),'pSLCI':function(_0x2a54d4,_0x4f7d3b){return _0x2a54d4&&_0x4f7d3b;},'htLxD':function(_0x4a1966,_0x3a6d2f){return _0x4a1966(_0x3a6d2f);},'QrHUV':function(_0x351ceb,_0x9a9d31){return _0x351ceb(_0x9a9d31);},'zeYkm':_0x9c12(0xb6),'ytSYE':function(_0x18f52e,_0x350487){return _0x18f52e(_0x350487);},'bIaik':_0x9c12(0xb7),'BOjCW':function(_0x53cee,_0x5be7d3){return _0x53cee(_0x5be7d3);},'gEvwz':_0x9c12(0xb8),'TXNvk':function(_0x56641c,_0x5c1a31){return _0x56641c===_0x5c1a31;},'BRBlm':_0x9c12(0xb9),'ymYuy':_0x9c12(0xba),'jzRtB':_0x9c12(0xbb),'cfhBg':function(_0x542cae,_0x3dcf64){return _0x542cae(_0x3dcf64);},'TuWgm':_0x9c12(0xbc),'izZoY':function(_0x301644,_0x3833c5){return _0x301644&&_0x3833c5;},'yjTeY':function(_0x5d2f59,_0x2e7f7e){return _0x5d2f59===_0x2e7f7e;},'kqYcm':_0x9c12(0xbd),'mRDWE':'β
\x20[PIN\x20SUBMIT]\x20Background\x20training\x20detected,\x20continuing\x20with\x20PIN\x20validation...','kCrLC':_0x9c12(0xbe),'fqYbo':_0x9c12(0xbf),'YqCSd':function(_0x5ac29d,_0x23e9f7){return _0x5ac29d(_0x23e9f7);},'YDMpD':function(_0x56d500,_0x2dad0f){return _0x56d500(_0x2dad0f);},'ADIqy':_0x9c12(0xc0),'jhuPy':function(_0xde108,_0x2fbbcb){return _0xde108(_0x2fbbcb);},'pGIpy':_0x9c12(0xc1),'WYiDN':_0x9c12(0xc2),'lXkSr':function(_0x3a701a,_0x5d12ac){return _0x3a701a(_0x5d12ac);},'Pzmjh':'π\x20Starting\x20Enoch\x20training\x20with\x20socketId:','NDIBm':function(_0x4126d0,_0x5c0ede){return _0x4126d0===_0x5c0ede;},'eAdQm':function(_0x3ba5f3,_0x1eaf41){return _0x3ba5f3===_0x1eaf41;},'ULOJW':function(_0x18caf3,_0x4d3350){return _0x18caf3===_0x4d3350;},'WLoqR':_0x9c12(0xc3),'LGIaN':function(_0x1afa2f,_0x8c17b7){return _0x1afa2f===_0x8c17b7;},'LeGbQ':function(_0x5d80eb,_0x5f2520){return _0x5d80eb===_0x5f2520;},'FmgYu':_0x9c12(0xc4),'dtTow':_0x9c12(0xc5),'hzyqm':'2|7|6|5|1|3|4|0','Ymtmq':function(_0x480b09,_0x3757c1){return _0x480b09(_0x3757c1);},'VOOKm':_0x9c12(0xc6),'thqPk':function(_0xf6b39){return _0xf6b39();},'ZuFnV':'π―\x20Training\x20Features:','fEpfF':function(_0x17d8d4,_0x4d247f){return _0x17d8d4!==_0x4d247f;},'DTxyO':_0x9c12(0xc7),'uYmiW':_0x9c12(0xc8),'tMgSe':_0x9c12(0xc9),'kNbYW':'Training\x20model...','nBhTF':function(_0x17bb7a,_0x35058a){return _0x17bb7a(_0x35058a);},'xdfbv':_0x9c12(0xca),'xbCjL':_0x9c12(0xcb),'FNjQy':_0x9c12(0xcc),'ofsrQ':_0x9c12(0xcd),'UNfkV':'yLSeU','eadSu':function(_0x5cafa7,_0x35105e){return _0x5cafa7===_0x35105e;},'qiMfR':_0x9c12(0xce),'pkpQU':function(_0x2dfa5b,_0x18a889){return _0x2dfa5b(_0x18a889);},'Yecdo':'π\x20Socket\x20connection\x20details:','qNOcn':function(_0x5a0923,_0x28dab4){return _0x5a0923===_0x28dab4;},'dLvKP':function(_0x23fe96,_0x4b4cdd){return _0x23fe96===_0x4b4cdd;},'xPOYS':function(_0xa76a66,_0x1dada1){return _0xa76a66===_0x1dada1;},'iCfJv':function(_0x2364a4,_0x3fab62){return _0x2364a4===_0x3fab62;},'JRKzK':function(_0x4e8362,_0x435b7f){return _0x4e8362===_0x435b7f;},'lmlBh':function(_0x1fdb6c,_0x3141e0){return _0x1fdb6c===_0x3141e0;},'TMZOF':function(_0x1903e7,_0x1b3dee){return _0x1903e7(_0x1b3dee);},'zUxTw':function(_0x12af75,_0x5508b1){return _0x12af75(_0x5508b1);},'COyXC':function(_0x5b0c67,_0x485c51){return _0x5b0c67===_0x485c51;},'VFHbg':_0x9c12(0xcf),'VXtAM':'iyLaV','vpcpG':function(_0x3772d1,_0x377e51){return _0x3772d1(_0x377e51);},'VMlvz':function(_0x29c376,_0x59f2c2){return _0x29c376(_0x59f2c2);},'zTzOd':_0x9c12(0xd0),'VHYuN':function(_0x37676f,_0x4ac455){return _0x37676f===_0x4ac455;},'ooKko':'π\x20Socket\x20reconnection\x20attempt:','BczSn':function(_0x772470,_0x24a277){return _0x772470(_0x24a277);},'tVYrV':'β\x20Socket\x20reconnection\x20error:','OQzov':function(_0x4dce73,_0x5b134a){return _0x4dce73(_0x5b134a);},'WqYuE':function(_0x4f5a58){return _0x4f5a58();},'xfowf':_0x9c12(0xd1),'xVAdl':_0x9c12(0xd2),'NZfaC':_0x9c12(0xd3),'zZqxw':_0x9c12(0x1),'hfNYR':function(_0x578275,_0x9d0344){return _0x578275(_0x9d0344);},'xXfIB':_0x9c12(0xd4),'gzsxY':function(_0x346350,_0x571c8d){return _0x346350(_0x571c8d);},'xLFbK':function(_0x3ef550){return _0x3ef550();},'iEBbR':'π\x20Socket\x20state\x20after\x205\x20seconds:','YlElP':function(_0x173990,_0x44410e){return _0x173990===_0x44410e;},'nVAeY':function(_0x280190,_0xad0ff8){return _0x280190===_0xad0ff8;},'AsyIc':function(_0x34aadb,_0x28af91){return _0x34aadb===_0x28af91;},'CucAY':function(_0x1c00d6,_0x476697){return _0x1c00d6===_0x476697;},'yLwEm':function(_0x254276,_0xd47522){return _0x254276===_0xd47522;},'Mrscb':_0x9c12(0xd5),'MBvfX':function(_0x3b578f,_0x114d62){return _0x3b578f(_0x114d62);},'FWIdm':_0x9c12(0xd6),'LePRT':_0x9c12(0xd7),'kpTQQ':_0x9c12(0xd8),'gDyEg':_0x9c12(0xd9),'YnGAG':'ILgEp','kxMby':'0|3|4|1|2','dtZLp':_0x9c12(0xda),'HxpoF':_0x9c12(0xdb),'eQBva':function(_0x4bdfb9,_0xb7664a){return _0x4bdfb9(_0xb7664a);},'HjFgj':'β\x20Token\x20refresh\x20failed,\x20attempting\x20full\x20reconnection...','lXnmq':_0x9c12(0xdc),'wGXPP':'youtube','VsOAU':'π\x20Training\x20update:','giVEO':_0x9c12(0xdd),'xOfZd':_0x9c12(0xde),'weDhk':_0x9c12(0xdf),'BecoC':function(_0x1e707b){return _0x1e707b();},'VUNub':function(_0x3692b6,_0x1c254d){return _0x3692b6(_0x1c254d);},'edNaJ':'FbsLC','UiTOm':'5|0|6|3|4|7|1|2','TBmNB':'No\x20interaction\x20data\x20found','uFAOR':_0x9c12(0xe0),'ZDMoK':_0x9c12(0xe1),'iWdMT':function(_0x381375,_0x29bc36){return _0x381375(_0x29bc36);},'gqESH':_0x9c12(0xe2),'dwPmD':function(_0x514696,_0x41e62d){return _0x514696===_0x41e62d;},'THNMM':function(_0x30c582,_0x523604){return _0x30c582===_0x523604;},'dvNpj':_0x9c12(0xe3),'OKlpg':'π\x20Socket\x20state:','uxGOQ':_0x9c12(0xe4),'TuIfp':function(_0x4d4b32){return _0x4d4b32();},'NavLr':function(_0xab9f16,_0x134ad4){return _0xab9f16(_0x134ad4);},'UPGfG':'mivfc','XKDvc':'NkzUP','hlkDd':_0x9c12(0xe5),'xyWnv':_0x9c12(0xe6),'tDvqz':'π\x20Token\x20stored\x20verification:','NLyLN':_0x9c12(0xe7),'MRxgp':_0x9c12(0xe8),'wqwKj':function(_0x3946c8,_0x324051){return _0x3946c8===_0x324051;},'khQre':function(_0x4457b1,_0x4c4f06){return _0x4457b1===_0x4c4f06;},'LLqmA':function(_0x356d5d,_0x3e24ba){return _0x356d5d===_0x3e24ba;},'Xkago':function(_0xf75973,_0x55ec70){return _0xf75973(_0x55ec70);},'LxNAt':function(_0x2372ad,_0x597359){return _0x2372ad||_0x597359;},'MiDgh':function(_0x507925,_0x1ef8a4){return _0x507925===_0x1ef8a4;},'EgESY':function(_0x2d66ba,_0x51e83f){return _0x2d66ba===_0x51e83f;},'qBZOu':_0x9c12(0xe9),'vNTVT':'π§βπ»\x20User\x20info\x20available:','vtfXw':_0x9c12(0xea),'ziCgv':_0x9c12(0xeb),'wmSCU':_0x9c12(0xec),'PDmGo':function(_0x52ae2e,_0xa38a13){return _0x52ae2e(_0xa38a13);},'scOyy':_0x9c12(0xed),'Tctmf':_0x9c12(0xee),'KzNff':'π\x20Socket\x20instance\x20created:','vgEAo':'disconnect','cEGZn':'reconnect','gyybp':_0x9c12(0xef),'ZzKMj':_0x9c12(0xf0),'mOLZy':_0x9c12(0xf1),'qcEtv':'inferenceCompleted','YeAhO':_0x9c12(0xf2),'xAbHQ':_0x9c12(0xf3),'RnERG':_0x9c12(0xf4),'RAmQi':'π\x20Socket\x20config:','AIClt':_0x9c12(0xf5),'oPmOw':function(_0x3570e7){return _0x3570e7();},'RKxzX':_0x9c12(0xf6),'InVZI':_0x9c12(0xf7),'ymdev':_0x9c12(0xf8),'wUPun':'nErBK','hyOMc':_0x9c12(0xf9),'PVSTA':function(_0x1ef45d,_0x55a3ad){return _0x1ef45d<_0x55a3ad;},'ohwYc':_0x9c12(0xfa),'bDWlW':_0x9c12(0xfb),'oascT':'You\x27re\x20more\x20interesting\x20than\x20I\x20expected','bsAEW':_0x9c12(0xfc),'UZkHx':'Almost\x20done','yqWWP':function(_0x2f039e,_0x3b4fe0){return _0x2f039e+_0x3b4fe0;},'GEydN':function(_0x3d6556,_0xaae6fb){return _0x3d6556(_0xaae6fb);},'wfHeE':_0x9c12(0xfd),'qWGLt':_0x9c12(0xfe),'EjJPH':_0x9c12(0xff),'KLdbe':'β
\x20Using\x20real\x20authentication\x20token\x20for\x20onComplete:','PKCQI':function(_0x396abf,_0x3266f5,_0x9f4a71,_0xc25377){return _0x396abf(_0x3266f5,_0x9f4a71,_0xc25377);},'AWDgj':function(_0x2996f6,_0x4ce71d){return _0x2996f6===_0x4ce71d;},'BkHQm':function(_0x490ebf,_0x237bfc,_0x306411,_0x3e9999){return _0x490ebf(_0x237bfc,_0x306411,_0x3e9999);},'TZnct':function(_0x8455fa,_0x4ef3e6){return _0x8455fa===_0x4ef3e6;},'yIfAc':function(_0x5e2c64,_0x35a32f){return _0x5e2c64(_0x35a32f);},'HutRz':'VjIaZ','leaKk':_0x9c12(0x100),'mxjWL':_0x9c12(0x101),'fjlzw':_0x9c12(0x102),'PzKPi':_0x9c12(0x103),'XMdif':function(_0x305297){return _0x305297();},'ZcjMY':function(_0x570297,_0x285a24){return _0x570297(_0x285a24);},'SrJtp':_0x9c12(0x104),'sqAom':function(_0x137623,_0x3b88c9){return _0x137623(_0x3b88c9);},'aMNqF':_0x9c12(0x105),'TPKyo':function(_0x37e2a6,_0xa9b229){return _0x37e2a6(_0xa9b229);},'Lubse':_0x9c12(0x106),'mBksZ':_0x9c12(0x107),'WvgjM':function(_0x7d4eb3,_0x41f164){return _0x7d4eb3(_0x41f164);},'XJeAg':_0x9c12(0x108),'fIzXA':_0x9c12(0x109),'jtttt':'rrdKQ','lYlGS':_0x9c12(0x10a),'EahwQ':function(_0x2bfb18,_0x480eea){return _0x2bfb18===_0x480eea;},'smZhP':function(_0x301f75,_0x614284){return _0x301f75===_0x614284;},'QufVO':function(_0x30fe25,_0x1fbaec){return _0x30fe25(_0x1fbaec);},'DFfbh':_0x9c12(0x10b),'bcswi':function(_0x174922,_0x5077a0){return _0x174922(_0x5077a0);},'JGVFT':_0x9c12(0x10c),'CNbQu':_0x9c12(0x10d),'YqzNq':_0x9c12(0x10e),'QfTyK':function(_0x39506d,_0x459899){return _0x39506d(_0x459899);},'ZRGWg':function(_0x4f40e3,_0x6a20f5){return _0x4f40e3(_0x6a20f5);},'SyDpy':function(_0x48fdb1,_0x3a528e){return _0x48fdb1(_0x3a528e);},'AGreq':'tUEXQ','CsnJH':_0x9c12(0x10f),'jJtLp':function(_0x52dab1,_0xda6730){return _0x52dab1===_0xda6730;},'RhSUD':function(_0x40a1db,_0x3c8050){return _0x40a1db===_0x3c8050;},'rpwKq':function(_0x911380,_0x162794){return _0x911380===_0x162794;},'FMLXb':function(_0x1c51f8,_0x1d955d){return _0x1c51f8===_0x1d955d;},'wuHYu':function(_0x57a7a8,_0x14bc87){return _0x57a7a8===_0x14bc87;},'QTsyW':'π‘\x20Background\x20training\x20API\x20response:','TYwar':function(_0x148982,_0x4403d3){return _0x148982===_0x4403d3;},'vpAQA':function(_0x41724e,_0x4f3ff8){return _0x41724e(_0x4f3ff8);},'vEjmr':function(_0x82e745,_0x4a34aa){return _0x82e745(_0x4a34aa);},'jeLXZ':function(_0xd16e09,_0x1d18c1){return _0xd16e09(_0x1d18c1);},'FHDHR':_0x9c12(0x110),'OWJvL':_0x9c12(0x111),'pvWfh':'Background\x20training\x20model...','qsMri':_0x9c12(0x112),'GsOvM':_0x9c12(0x113),'BPHVD':_0x9c12(0x114),'JlHwa':function(_0x15d2af,_0x54b753){return _0x15d2af(_0x54b753);},'CSOCr':function(_0x135eac){return _0x135eac();},'mNtbr':function(_0x39dd44,_0x233c98){return _0x39dd44===_0x233c98;},'GjkFN':function(_0x14b80f,_0x3e340e){return _0x14b80f(_0x3e340e);},'LyPth':_0x9c12(0x115),'niyjM':function(_0xcf8d29,_0x580699){return _0xcf8d29&&_0x580699;},'fcxyo':_0x9c12(0x116),'MJnfT':function(_0x508e07,_0x5bec18){return _0x508e07===_0x5bec18;},'BYrcD':function(_0x4262e7,_0x3c79f3,_0x287a1d,_0x583550){return _0x4262e7(_0x3c79f3,_0x287a1d,_0x583550);},'KkdvZ':'gkfuI','vueNl':_0x9c12(0x117),'ydInj':_0x9c12(0x118),'etDUd':function(_0x4ad6db,_0x1bac88){return _0x4ad6db===_0x1bac88;},'klGXs':function(_0x3c4f56,_0x2e42f8){return _0x3c4f56===_0x2e42f8;},'YGhIT':_0x9c12(0x119),'ngGEf':_0x9c12(0x11a),'JvUhS':'AfKPE','pkVyv':_0x9c12(0x11b),'IQlXA':_0x9c12(0x11c),'vSArr':_0x9c12(0x11d),'Xiser':_0x9c12(0x11e),'cdWwF':'Pinterest','drXIR':_0x9c12(0x11f),'whFdj':_0x9c12(0x120),'oTunP':_0x9c12(0x121),'nZlfr':_0x9c12(0x122),'iNKSu':_0x9c12(0x123),'EEQWV':_0x9c12(0x124),'bKcPQ':_0x9c12(0x125),'ulbHt':_0x9c12(0x126),'isSGX':_0x9c12(0x127),'BqSYM':'#EA4335','fNBpV':_0x9c12(0x128),'eCeyk':'ChatGPT','wCIwK':_0x9c12(0x129),'BpKdy':'slide','ZaPKu':function(_0x534370,_0x3680fb){return _0x534370===_0x3680fb;},'YsPDC':_0x9c12(0x12a),'scduG':'Container\x20Top:\x20','EPKTI':_0x9c12(0x12b),'Vgjkm':_0x9c12(0x12c),'nEHJE':'Hide\x20Debug','tNEMD':_0x9c12(0x12d),'XoEgF':function(_0xacdae4,_0x4dafdc){return _0xacdae4===_0x4dafdc;},'AcQnm':function(_0x5d777c,_0x19534b){return _0x5d777c===_0x19534b;}},[_0x1b97e9,_0x16a468]=(0x0,_react[_0x9c12(0x12e)])(primaryAuthOnly?_0x32c655[_0x9c12(0x12f)]:_0x32c655[_0x9c12(0x130)]),[_0x36d040,_0x3e04e3]=(0x0,_react[_0x9c12(0x12e)])({}),[_0x560367,_0x1e84e3]=(0x0,_react[_0x9c12(0x12e)])(''),[_0x135c33,_0x43d143]=(0x0,_react[_0x9c12(0x12e)])(_0x9c12(0x131)),[_0x5da0e2]=(0x0,_react['useState'])(new _reactNative[(_0x9c12(0x132))][(_0x9c12(0x133))](height)),[_0x15f5a0]=(0x0,_react[_0x9c12(0x12e)])(new _reactNative['Animated'][(_0x9c12(0x133))](0x0)),[_0x20891f,_0x39b738]=(0x0,_react[_0x9c12(0x12e)])({}),[_0x1e86df,_0x325128]=(0x0,_react[_0x9c12(0x12e)])(''),[_0x5639a5,_0xb7017d]=(0x0,_react[_0x9c12(0x12e)])(''),[_0x5dafcf,_0x3601cb]=(0x0,_react[_0x9c12(0x12e)])(''),[_0x30750d,_0x4fd5e5]=(0x0,_react[_0x9c12(0x12e)])(''),[_0x35cea5,_0x1cd740]=(0x0,_react[_0x9c12(0x12e)])(![]),[_0x5a9d01,_0x584572]=(0x0,_react['useState'])(''),[_0x18678c,_0x5965f0]=(0x0,_react['useState'])(![]),[_0x5d6af3,_0x37dd5d]=(0x0,_react[_0x9c12(0x12e)])([]),[_0x3f0ea5,_0x1ab384]=(0x0,_react[_0x9c12(0x12e)])(null),[_0x1eef43,_0x26d657]=(0x0,_react[_0x9c12(0x12e)])(![]),[_0x4f02a0,_0x264851]=(0x0,_react[_0x9c12(0x12e)])(![]),[_0x3a4de7,_0x501a4b]=(0x0,_react['useState'])(![]),[_0x50dcff,_0x59aecb]=(0x0,_react[_0x9c12(0x12e)])(0x0),[_0xa74594,_0x2f3662]=(0x0,_react[_0x9c12(0x12e)])(0x8),[_0x39ac77,_0x22cc46]=(0x0,_react[_0x9c12(0x12e)])(0x6);(0x0,_react[_0x9c12(0x134)])(()=>{if(_0x32c655[_0x9c12(0x135)](_0x32c655[_0x9c12(0x136)],_0x32c655[_0x9c12(0x137)])){_0x197a68[_0x9c12(0x18)](_0x32c655[_0x9c12(0x138)]),_0x32c655[_0x9c12(0x139)](_0x385669,_0x32c655[_0x9c12(0x13a)]),_0x32c655[_0x9c12(0x139)](_0x2139c3,_0x32c655[_0x9c12(0x13b)]),_0x1880a5(![]);return;}else console['log'](_0x9c12(0x13c),_0xac6e07),console['log'](_0x9c12(0x13d),_0x1eef43),console[_0x9c12(0x18)](_0x9c12(0x13e),_0x1b97e9),console[_0x9c12(0x18)](_0x32c655[_0x9c12(0x13f)],primaryAuthOnly);},[_0xac6e07,_0x1eef43,_0x1b97e9,primaryAuthOnly]),(0x0,_react[_0x9c12(0x134)])(()=>{_0x32c655[_0x9c12(0x140)](primaryAuthOnly,_0xac6e07)&&(_0x32c655[_0x9c12(0x135)](_0x1b97e9,_0x32c655[_0x9c12(0x141)])||_0x1b97e9===_0x9c12(0x1b))&&(console[_0x9c12(0x18)](_0x32c655[_0x9c12(0x142)]),console[_0x9c12(0x18)](_0x32c655[_0x9c12(0x143)],_0x1b97e9,_0x32c655[_0x9c12(0x144)]),_0x32c655['CdCDF'](_0x16a468,_0x32c655[_0x9c12(0x130)]));},[primaryAuthOnly,_0xac6e07]);const _0x1e93a5=(0x0,_react[_0x9c12(0x145)])(![]),[_0x2c4f79,_0x23256c]=(0x0,_react[_0x9c12(0x12e)])(0x5),[_0x419e50,_0x3c9c76]=(0x0,_react[_0x9c12(0x12e)])(![]),[_0x99c2b1]=(0x0,_react[_0x9c12(0x12e)])(new _reactNative[(_0x9c12(0x132))][(_0x9c12(0x133))](0x0)),_0x4b545f=(0x0,_react['useRef'])(null),_0x25ceb6=null,[_0x4a0a9a,_0x3c37d5]=(0x0,_react[_0x9c12(0x12e)])(''),[_0x431e1a,_0x21beea]=(0x0,_react[_0x9c12(0x12e)])(0x0),[_0x3511cc,_0x56ece4]=(0x0,_react[_0x9c12(0x12e)])(_0x32c655[_0x9c12(0x146)]),[_0x5a8eca,_0x35e131]=(0x0,_react[_0x9c12(0x12e)])(![]),[_0x4c1326,_0xd3768c]=(0x0,_react[_0x9c12(0x12e)])(![]),[_0x44a871,_0x306307]=(0x0,_react['useState'])(![]),[_0x2081f5,_0x171d04]=(0x0,_react['useState'])(null),[_0x28f57b,_0x4ae6bc]=(0x0,_react[_0x9c12(0x12e)])(null),[_0x240165,_0x53409b]=(0x0,_react[_0x9c12(0x12e)])(null),[_0x38dbfb,_0x16a791]=(0x0,_react[_0x9c12(0x12e)])(null),[_0x1c6212,_0xe4aa5d]=(0x0,_react[_0x9c12(0x12e)])(''),_0x15891e=(0x0,_react[_0x9c12(0x145)])(null),_0x1fc7a5=(0x0,_react[_0x9c12(0x145)])(null),[_0x480d7e,_0x24f9b7]=(0x0,_react[_0x9c12(0x12e)])(![]),[_0x2303c6,_0x19f6f3]=(0x0,_react[_0x9c12(0x12e)])(null),[_0x3ac4fe,_0x16153a]=(0x0,_react[_0x9c12(0x12e)])(null),[_0x4a0a10,_0x4de8ef]=(0x0,_react['useState'])(null),[_0x416eb9,_0x5ec8b5]=(0x0,_react['useState'])(null),[_0x37b174,_0x47bcc6]=(0x0,_react[_0x9c12(0x12e)])(![]),[_0x584c3f,_0x69f14a]=(0x0,_react[_0x9c12(0x12e)])(![]),[_0x452e39,_0x286f69]=(0x0,_react[_0x9c12(0x12e)])(''),[_0x53728a,_0x4b76c7]=(0x0,_react['useState'])(null),_0x55df11=async _0x2cec4d=>{const _0x2f43b1={'WqYVE':_0x9c12(0x42),'fUhrS':function(_0xff7d3a){return _0x32c655[_0x9c12(0x147)](_0xff7d3a);}};if(_0x32c655[_0x9c12(0x135)](_0x32c655[_0x9c12(0x148)],_0x9c12(0x149)))_0x40c065[_0x9c12(0x14a)](_0x2f43b1[_0x9c12(0x14b)],_0x1856e7);else try{const _0x395ad5=await _asyncStorage['default'][_0x9c12(0x14c)](_0x32c655[_0x9c12(0x14d)]);let _0x4bb36b=_0x395ad5?JSON['parse'](_0x395ad5):[];!_0x4bb36b[_0x9c12(0x14e)](_0x2cec4d)&&(_0x32c655[_0x9c12(0x14f)](_0x32c655[_0x9c12(0x150)],'HvskH')?_0x2f43b1[_0x9c12(0x151)](_0x24589f):(_0x4bb36b[_0x9c12(0x152)](_0x2cec4d),await _asyncStorage[_0x9c12(0x53)]['setItem'](_0x9c12(0x25),JSON[_0x9c12(0x153)](_0x4bb36b)),console[_0x9c12(0x18)](_0x32c655[_0x9c12(0x154)],_0x2cec4d,_0x32c655[_0x9c12(0x155)],_0x4bb36b)));}catch(_0x2a56c3){_0x32c655[_0x9c12(0x135)](_0x32c655[_0x9c12(0x156)],'LsTpQ')?(_0xf666f4[_0x9c12(0x14a)](_0x32c655[_0x9c12(0x157)],_0x16624a),_0x32c655[_0x9c12(0x135)](_0x2ec40e,null)||_0x3affc4===void 0x0||_0x388630(_0x1a33be[_0x9c12(0x158)]['BASE_URL'],_0x32c655[_0x9c12(0x159)],{'email':(_0x32c655['UANbA'](_0x2dc3ee,null)||_0x5100ff===void 0x0?void 0x0:_0x110f28[_0x9c12(0x15a)])||'',..._0x3fbf38})):console[_0x9c12(0x14a)](_0x9c12(0x15b),_0x2a56c3);}},_0x2df2eb=async _0x177f31=>{try{const _0x15db93=await _asyncStorage['default'][_0x9c12(0x14c)](_0x32c655['mDUNo']);let _0x2fbc01=_0x15db93?JSON[_0x9c12(0x15c)](_0x15db93):[];_0x2fbc01=_0x2fbc01[_0x9c12(0x15d)](_0x35424d=>_0x35424d!==_0x177f31),await _asyncStorage['default'][_0x9c12(0x15e)](_0x32c655['mDUNo'],JSON[_0x9c12(0x153)](_0x2fbc01)),console[_0x9c12(0x18)](_0x32c655[_0x9c12(0x15f)],_0x177f31,_0x32c655['QJEmu'],_0x2fbc01);}catch(_0xeb7bcf){_0x32c655['aLSqn'](_0x32c655[_0x9c12(0x160)],_0x32c655[_0x9c12(0x161)])?console[_0x9c12(0x14a)](_0x32c655[_0x9c12(0x162)],_0xeb7bcf):(_0x1bfda7[_0x9c12(0x14a)](_0x32c655[_0x9c12(0x163)],_0x25adc8),_0x32c655[_0x9c12(0x139)](_0x5b3398,_0x32c655[_0x9c12(0x164)]),_0x32c655['VlHwA'](_0x4ac134,_0x32c655[_0x9c12(0x165)]),_0x32c655['BZnzN'](_0x36e407,!![]));}},_0x46d5ea=(_0x382a2d,_0x5b8991)=>{const _0x5a91c8={'EeFwf':_0x32c655[_0x9c12(0x166)],'fIMdd':_0x32c655['RiIww']};if(_0x32c655[_0x9c12(0x167)](_0x32c655[_0x9c12(0x168)],_0x32c655[_0x9c12(0x169)]))throw new _0x274a92(_0x5a91c8[_0x9c12(0x16a)]);else _reactNative[_0x9c12(0x16b)][_0x9c12(0x16c)](_0x32c655['dWXBK'],_0x9c12(0x16d)+_0x5b8991+'?',[{'text':'No','style':_0x32c655[_0x9c12(0x16e)]},{'text':_0x32c655[_0x9c12(0x16f)],'style':_0x32c655[_0x9c12(0x170)],'onPress':async()=>{try{_0x3902a9(_0x30ad6e=>({..._0x30ad6e,[_0x382a2d]:_0x9c12(0x4a)})),_0x32c655[_0x9c12(0x171)](_0x3e04e3,_0x5a6a3b=>{if('Bdebk'!==_0x5a91c8['fIMdd'])(0x0,_0x20233b[_0x9c12(0x172)])(_0x1ae6a8)&&_0x12a2b5(_0x3d8cec);else{const _0x4cbf05={..._0x5a6a3b};return delete _0x4cbf05[_0x382a2d],_0x4cbf05;}}),_0x32c655[_0x9c12(0x173)](_0x39b738,_0x1e202d=>({..._0x1e202d,[_0x382a2d]:![]})),await _0x32c655['VlHwA'](_0x2df2eb,_0x382a2d),await _0x32c655['qNgsI'](_0x5af6a2),console['log'](_0x32c655[_0x9c12(0x174)],_0x382a2d);}catch(_0x3d09ad){console[_0x9c12(0x14a)](_0x32c655[_0x9c12(0x175)],_0x3d09ad);}}}]);},_0x3bcdf7=()=>{const _0x5ba5e7={'LCncW':function(_0x160e5d,_0x1365ef){return _0x32c655[_0x9c12(0x176)](_0x160e5d,_0x1365ef);},'vQsAn':function(_0x338f4f,_0x10638a){return _0x32c655[_0x9c12(0x177)](_0x338f4f,_0x10638a);},'JWtdI':function(_0x4c2f0c,_0x2142ab){return _0x32c655[_0x9c12(0x178)](_0x4c2f0c,_0x2142ab);},'oCWNb':function(_0x494895,_0x2b3f25){return _0x32c655[_0x9c12(0x179)](_0x494895,_0x2b3f25);}};if(_0x32c655['SMaPB']===_0x32c655[_0x9c12(0x17a)])return _0x2c51fe[_0x9c12(0x18)](_0x32c655[_0x9c12(0x17b)],_0x92311a[_0x9c12(0x17c)](0x0,0x14)+'...'),_0x134ba9[_0x9c12(0x18)](_0x32c655['uazTi'],_0x865ac3[_0x9c12(0x17d)]),_0xc80b74;else{_0x1fc7a5[_0x9c12(0x17e)]&&_0x32c655[_0x9c12(0x179)](clearInterval,_0x1fc7a5['current']);let _0x5f4939=0x0;_0x1fc7a5[_0x9c12(0x17e)]=_0x32c655[_0x9c12(0x17f)](setInterval,()=>{_0x5f4939=_0x5ba5e7[_0x9c12(0x180)](_0x5ba5e7[_0x9c12(0x181)](_0x5f4939,0x1),0x4),_0x5ba5e7[_0x9c12(0x182)](_0x5f4939,0x0)?_0x5ba5e7['oCWNb'](_0xe4aa5d,''):_0x5ba5e7[_0x9c12(0x183)](_0xe4aa5d,'.'[_0x9c12(0x184)](_0x5f4939));},0x1f4);}},_0x38204a=()=>{_0x1fc7a5[_0x9c12(0x17e)]&&(_0x32c655[_0x9c12(0x185)](_0x9c12(0x186),'xcJKa')?(clearInterval(_0x1fc7a5[_0x9c12(0x17e)]),_0x1fc7a5[_0x9c12(0x17e)]=null):_0x5c55d6(![])),_0x32c655['BZnzN'](_0xe4aa5d,'');},_0x65f9c8=[{'id':_0x32c655[_0x9c12(0x187)],'name':_0x32c655[_0x9c12(0x188)],'color':_0x32c655['drXIR']},{'id':_0x32c655['wGXPP'],'name':_0x32c655[_0x9c12(0x189)],'color':_0x32c655[_0x9c12(0x18a)]},{'id':_0x32c655[_0x9c12(0x18b)],'name':_0x9c12(0x18c),'color':_0x32c655[_0x9c12(0x18d)]}],_0x344016=[{'id':_0x32c655['EEQWV'],'name':_0x32c655['bKcPQ'],'color':_0x9c12(0x121)},{'id':_0x32c655['ulbHt'],'name':_0x32c655['isSGX'],'color':_0x32c655[_0x9c12(0x18e)]},{'id':_0x32c655[_0x9c12(0x18f)],'name':_0x32c655[_0x9c12(0x190)],'color':_0x32c655[_0x9c12(0x191)]}],_0x18f5f5=[..._0x65f9c8,..._0x344016],_0x47b646=async()=>{},_0x5af6a2=async()=>{},_0x32df7d=()=>'disconnected',_0x4f3e16=![],_0x4152d6=()=>![],[_0x5ae83c,_0x3902a9]=(0x0,_react['useState'])({}),[_0x138ec2,_0x1736de]=(0x0,_react[_0x9c12(0x12e)])(null),_0x342884=_0x2902fb=>{return(0x0,_assetRegistry['getUniversalOnboardingIcon'])(_0x2902fb);},_0x51ffa1=(0x0,_react[_0x9c12(0x145)])(![]),_0x4e0268=(0x0,_react[_0x9c12(0x145)])(_0x144178);(0x0,_react['useEffect'])(()=>{_0x32c655[_0x9c12(0x14f)]('CIoNq',_0x32c655['XDRDk'])?(_0x32c655[_0x9c12(0x192)](_0x2009e4,![]),_0x25d284[_0x9c12(0x17e)]=![]):_0x4e0268[_0x9c12(0x17e)]=_0x144178;},[_0x144178]),(0x0,_react[_0x9c12(0x134)])(()=>{if(_0x9c12(0x193)===_0x32c655[_0x9c12(0x194)]){const _0x143ac5={'CRKMn':function(_0x1950b6,_0x45f0b9){return _0x32c655[_0x9c12(0x195)](_0x1950b6,_0x45f0b9);}};_0x32c655[_0x9c12(0x196)](_0x5e3b9d,()=>{var _0x19788c;_0x2702c9(![]),(_0x19788c=_0x47f7e9[_0x9c12(0x17e)])===null||_0x143ac5[_0x9c12(0x197)](_0x19788c,void 0x0)||_0x19788c[_0x9c12(0x14)](_0x1324fe);},0x10);}else{if(_0xac6e07){_0x51ffa1[_0x9c12(0x17e)]=!![],_0x1e93a5[_0x9c12(0x17e)]=![],_0x15f5a0[_0x9c12(0x198)](0x0),_0x32c655[_0x9c12(0x199)](_0x26d657,!![]),_0x118815(),_0x32c655['CdCDF'](requestAnimationFrame,()=>{_reactNative[_0x9c12(0x132)][_0x9c12(0x19a)](_0x15f5a0,{'toValue':0x1,'duration':0x12c,'useNativeDriver':!![]})[_0x9c12(0x19b)]();});const _0x397a93=_reactNative['Linking'][_0x9c12(0x19c)](_0x32c655[_0x9c12(0x19d)],_0x1947d4);return()=>{_0x397a93[_0x9c12(0x19e)]();};}else{if(_0x51ffa1[_0x9c12(0x17e)]&&!_0x1e93a5[_0x9c12(0x17e)])_0x9c12(0x19f)===_0x32c655[_0x9c12(0x1a0)]?(_0x539d92[_0x9c12(0x18)](_0x9c12(0x1a1),_0x187bab['message']),_0x32c655[_0x9c12(0x1a2)](_0x340525,_0x12f847[_0x9c12(0x1a3)]||_0x32c655[_0x9c12(0x1a4)])):_reactNative[_0x9c12(0x132)]['timing'](_0x15f5a0,{'toValue':0x0,'duration':0xfa,'useNativeDriver':!![]})[_0x9c12(0x19b)](()=>{const _0x117cf8={'IWSHG':function(_0x23b060,_0x42c5aa){return _0x32c655[_0x9c12(0x195)](_0x23b060,_0x42c5aa);}};setTimeout(()=>{var _0x2b6e3f;_0x26d657(![]),_0x117cf8[_0x9c12(0x1a5)](_0x2b6e3f=_0x4e0268[_0x9c12(0x17e)],null)||_0x117cf8[_0x9c12(0x1a5)](_0x2b6e3f,void 0x0)||_0x2b6e3f['call'](_0x4e0268);},0x10);});else _0x51ffa1[_0x9c12(0x17e)]&&_0x1e93a5[_0x9c12(0x17e)]&&(_0x32c655[_0x9c12(0x139)](_0x26d657,![]),_0x1e93a5[_0x9c12(0x17e)]=![]);}}},[_0xac6e07]),(0x0,_react[_0x9c12(0x134)])(()=>{const _0x11df64={'LrUHL':function(_0x522f3a,_0x568a58){return _0x32c655[_0x9c12(0x1a6)](_0x522f3a,_0x568a58);},'yvssf':function(_0x40dc09,_0x150f5a,_0xa55127,_0x3aae82){return _0x32c655[_0x9c12(0x1a7)](_0x40dc09,_0x150f5a,_0xa55127,_0x3aae82);},'sWiut':function(_0x2444b5,_0x5e7413){return _0x32c655[_0x9c12(0x185)](_0x2444b5,_0x5e7413);},'renSv':_0x32c655[_0x9c12(0x1a8)],'DCtqM':_0x32c655[_0x9c12(0x1a9)]};return()=>{_0x11df64[_0x9c12(0x1aa)](_0x11df64[_0x9c12(0x1ab)],_0x11df64[_0x9c12(0x1ab)])?(_0x303897[_0x9c12(0x18)](_0x9c12(0x1ac),_0x124d7b['substring'](0x0,0x1e)+_0x9c12(0x1ad)),_0x5d0a08===null||_0x11df64[_0x9c12(0x1ae)](_0x42976e,void 0x0)||_0x11df64['yvssf'](_0xe92653,_0x27892e[_0x9c12(0x158)]['BASE_URL'],_0x49fb17,{'email':(_0x35a4f3===null||_0x11df64[_0x9c12(0x1ae)](_0x39115a,void 0x0)?void 0x0:_0x402bc9[_0x9c12(0x15a)])||'',..._0x5762f6})):(_0x15891e[_0x9c12(0x17e)]&&(console[_0x9c12(0x18)](_0x11df64['DCtqM']),_0x15891e[_0x9c12(0x17e)][_0x9c12(0x1af)](),_0x15891e[_0x9c12(0x17e)]=null),_0x38204a());};},[_0xac6e07]);const _0x1947d4=(0x0,_react['useCallback'])(({url:_0x1b13af})=>{(0x0,_platformAuthService[_0x9c12(0x172)])(_0x1b13af)&&_0x298106(_0x1b13af);},[]);(0x0,_react[_0x9c12(0x134)])(()=>{if(_0x32c655[_0x9c12(0x1b0)](_0x9c12(0x48),_0x32c655[_0x9c12(0x1b1)])){if(_0x206236[_0x9c12(0xf)](_0x4e4024))return _0x4c2950[_0x9c12(0x10)](_0x27d1d7);_0x148c1c[_0x9c12(0x11)](_0xc40a93,_0x29827d);}else{const _0x43a7c6=async()=>{const _0x5603c4={'JqUKj':_0x32c655[_0x9c12(0x1b2)],'UTbeH':function(_0x1141fd,_0x44ad01){return _0x32c655[_0x9c12(0x140)](_0x1141fd,_0x44ad01);},'zxByB':function(_0x1ee547,_0x306995){return _0x32c655[_0x9c12(0x1b3)](_0x1ee547,_0x306995);},'zjOer':function(_0x23df06,_0x6df252){return _0x32c655[_0x9c12(0x179)](_0x23df06,_0x6df252);},'GRSFD':_0x32c655[_0x9c12(0x1b4)],'ZYwAx':_0x32c655[_0x9c12(0x1b5)],'oVRzJ':_0x32c655['PVGQc'],'bKUNI':function(_0x59408a,_0x5d623f){return _0x59408a(_0x5d623f);}};try{const _0x257f24=await _asyncStorage['default'][_0x9c12(0x14c)](_0x32c655[_0x9c12(0x1b6)]),_0x149664=await _asyncStorage[_0x9c12(0x53)]['getItem']('existing_user_info');if(_0x32c655[_0x9c12(0x140)](_0x257f24,_0x149664)){const _0x50f753=_0x32c655['WYzpJ'][_0x9c12(0x1b7)]('|');let _0x1de412=0x0;while(!![]){switch(_0x50f753[_0x1de412++]){case'0':_0x24f9b7(!![]);continue;case'1':await _asyncStorage[_0x9c12(0x53)]['removeItem'](_0x32c655[_0x9c12(0x1b6)]);continue;case'2':console['log']('π\x20Found\x20existing\x20user\x20info\x20-\x20user\x20wants\x20to\x20add\x20more\x20data');continue;case'3':await _asyncStorage['default'][_0x9c12(0x1b8)](_0x32c655[_0x9c12(0x1b9)]);continue;case'4':_0x32c655['BZnzN'](_0x16153a,JSON[_0x9c12(0x15c)](_0x149664));continue;case'5':_0x32c655[_0x9c12(0x1ba)](_0x19f6f3,_0x257f24);continue;}break;}}const _0x206e48=await(0x0,_jwtStorageService[_0x9c12(0x1bb)])();_0x53409b(_0x206e48);if(_0x206e48){if(_0x32c655[_0x9c12(0x185)](_0x9c12(0x1bc),'SaXpF'))try{const _0x1f94f8=new _0x873356(_0x366010),_0x34fcb3=_0x1f94f8[_0x9c12(0x1bd)]['get'](_0x9c12(0xb5)),_0x9cd54a=_0x1f94f8[_0x9c12(0x1bd)][_0x9c12(0x10)](_0x5603c4[_0x9c12(0x1be)])||_0x4a41d5;_0x5603c4[_0x9c12(0x1bf)](_0x34fcb3,_0x9cd54a)&&(_0x5603c4[_0x9c12(0x1c0)](_0x29542d,_0x3afe2c=>({..._0x3afe2c,[_0x9cd54a]:{'userName':_0x59075d,'connected':!![]}})),_0x5603c4[_0x9c12(0x1c1)](_0x16ecf2,_0x1b7edb=>({..._0x1b7edb,[_0x9cd54a]:!![]})),_0x5603c4['zxByB'](_0x1f4b20,_0x5603c4[_0x9c12(0x1c2)]));}catch(_0x5c0011){_0x1ed5a4[_0x9c12(0x14a)](_0x5603c4[_0x9c12(0x1c3)],_0x5c0011);}else{var _0x3e694a;const _0x323fee=await(0x0,_authService[_0x9c12(0x1c4)])(),_0x30aae5=_0x323fee||(_0x32c655[_0x9c12(0x1c5)](_0x25ceb6,null)||_0x32c655['wIoTm'](_0x25ceb6,void 0x0)||_0x32c655[_0x9c12(0x1c6)](_0x3e694a=_0x25ceb6['email'],null)||_0x32c655['UANbA'](_0x3e694a,void 0x0)?void 0x0:_0x3e694a[_0x9c12(0x1b7)]('@')[0x0])||(_0x25ceb6===null||_0x32c655[_0x9c12(0x167)](_0x25ceb6,void 0x0)?void 0x0:_0x25ceb6[_0x9c12(0x1c7)])||_0x9c12(0xc3);console[_0x9c12(0x18)](_0x32c655[_0x9c12(0x1c8)],_0x30aae5),_0x32c655[_0x9c12(0x1c9)](_0x16a791,{'username':_0x30aae5,'email':(_0x32c655[_0x9c12(0x1ca)](_0x25ceb6,null)||_0x32c655[_0x9c12(0x195)](_0x25ceb6,void 0x0)?void 0x0:_0x25ceb6[_0x9c12(0x15a)])||null,'id':null}),_0x3c37d5(_0x30aae5);}}}catch(_0x4cf132){if(_0x32c655['RACAM'](_0x9c12(0x1cb),_0x32c655['KqLza'])){var _0x2319cf;console[_0x9c12(0x14a)](_0x32c655[_0x9c12(0x1cc)],_0x4cf132);const _0x2d4dce=(_0x32c655[_0x9c12(0x195)](_0x25ceb6,null)||_0x25ceb6===void 0x0||(_0x2319cf=_0x25ceb6[_0x9c12(0x15a)])===null||_0x32c655[_0x9c12(0x1cd)](_0x2319cf,void 0x0)?void 0x0:_0x2319cf[_0x9c12(0x1b7)]('@')[0x0])||(_0x25ceb6===null||_0x32c655[_0x9c12(0x195)](_0x25ceb6,void 0x0)?void 0x0:_0x25ceb6[_0x9c12(0x1c7)])||_0x9c12(0xc3);_0x32c655[_0x9c12(0x1b3)](_0x16a791,{'username':_0x2d4dce,'email':(_0x32c655['bGPdE'](_0x25ceb6,null)||_0x32c655[_0x9c12(0x1ce)](_0x25ceb6,void 0x0)?void 0x0:_0x25ceb6[_0x9c12(0x15a)])||null,'id':null}),_0x3c37d5(_0x2d4dce);}else _0x2f194d[_0x9c12(0x18)](_0x9c12(0xbf)),_0x5603c4[_0x9c12(0x1c0)](_0x3507d0,_0x5603c4[_0x9c12(0x1cf)]),_0x5603c4[_0x9c12(0x1c0)](_0x56e02a,_0x9c12(0xc0)),_0x5603c4[_0x9c12(0x1d0)](_0x41fcb4,!![]);}};_0xac6e07&&_0x32c655['qNgsI'](_0x43a7c6);}},[_0xac6e07,_0x25ceb6]);const _0x118815=async()=>{const _0x444337={'pRtfK':function(_0x174eee,_0x468420){return _0x174eee===_0x468420;}};try{const _0x57ea76=await(0x0,_authService[_0x9c12(0x1c4)])(),_0x4e2d27=(_0x32c655['jwrIN'](_0x25ceb6,null)||_0x32c655[_0x9c12(0x1d1)](_0x25ceb6,void 0x0)?void 0x0:_0x25ceb6[_0x9c12(0x15a)])||(_0x32c655[_0x9c12(0x1c6)](_0x25ceb6,null)||_0x25ceb6===void 0x0?void 0x0:_0x25ceb6[_0x9c12(0x1c7)])||_0x9c12(0x1d2)+Math['floor'](Math[_0x9c12(0x1d3)]()*0x2710),_0x257be0=_0x32c655[_0x9c12(0x1d4)](_0x57ea76,_0x4e2d27);console['log'](_0x32c655['UjGfS'],{'storedUsername':_0x57ea76,'fallbackUsername':_0x4e2d27,'finalUsername':_0x257be0}),_0x32c655[_0x9c12(0x179)](_0x3c37d5,_0x257be0);const _0x5e37b4=await _0x32c655['rRSDb'](_0x32df7d);console[_0x9c12(0x18)](_0x32c655[_0x9c12(0x1d5)],_0x5e37b4),_0x32c655[_0x9c12(0x1d6)](_0x3e04e3,_0x5e37b4);const _0x53c901={};Object[_0x9c12(0x1d7)](_0x5e37b4)[_0x9c12(0x1d8)](_0x477e47=>{var _0x5049de;_0x53c901[_0x477e47]=_0x32c655[_0x9c12(0x1d9)](_0x5049de=_0x5e37b4[_0x477e47],null)&&_0x32c655[_0x9c12(0x185)](_0x5049de,void 0x0)&&_0x5049de[_0x9c12(0x49)]?_0x32c655[_0x9c12(0x1da)]:_0x32c655[_0x9c12(0x1db)];}),_0x32c655['piwez'](_0x3902a9,_0x53c901);const _0x59c22c={};Object[_0x9c12(0x1d7)](_0x5e37b4)[_0x9c12(0x1d8)](_0x722d02=>{var _0x27e6ca;_0x59c22c[_0x722d02]=(_0x444337['pRtfK'](_0x27e6ca=_0x5e37b4[_0x722d02],null)||_0x444337[_0x9c12(0x1dc)](_0x27e6ca,void 0x0)?void 0x0:_0x27e6ca[_0x9c12(0x49)])||![];}),_0x32c655[_0x9c12(0x1b3)](_0x39b738,_0x59c22c),console[_0x9c12(0x18)]('Connection\x20statuses\x20set:',_0x53c901),console[_0x9c12(0x18)](_0x9c12(0x1dd),_0x59c22c);}catch(_0x285004){console['error'](_0x32c655[_0x9c12(0x1de)],_0x285004),_0x32c655[_0x9c12(0x1ba)](_0x3e04e3,{}),_0x32c655[_0x9c12(0x1df)](_0x3902a9,{}),_0x32c655['BZnzN'](_0x39b738,{});const _0x3b8ad1=(_0x32c655['ZiUDO'](_0x25ceb6,null)||_0x25ceb6===void 0x0?void 0x0:_0x25ceb6[_0x9c12(0x15a)])||(_0x32c655['UtkIw'](_0x25ceb6,null)||_0x32c655[_0x9c12(0x1d1)](_0x25ceb6,void 0x0)?void 0x0:_0x25ceb6[_0x9c12(0x1c7)])||_0x9c12(0x1d2)+Math['floor'](_0x32c655[_0x9c12(0x1e0)](Math[_0x9c12(0x1d3)](),0x2710));_0x32c655[_0x9c12(0x1ba)](_0x3c37d5,_0x3b8ad1);}},_0x38eb30=()=>{const _0x5a235d={'KUcNK':function(_0x3807db){return _0x32c655[_0x9c12(0x1e1)](_0x3807db);},'QdzTk':_0x32c655[_0x9c12(0x1e2)],'dmhkm':function(_0x4185fd,_0x4ab43a){return _0x32c655['aLSqn'](_0x4185fd,_0x4ab43a);},'kBFRN':_0x32c655[_0x9c12(0x1e3)]},_0x41c02c=_0x1e93a5[_0x9c12(0x17e)];_reactNative[_0x9c12(0x132)][_0x9c12(0x19a)](_0x15f5a0,{'toValue':0x0,'duration':0xfa,'useNativeDriver':!![]})[_0x9c12(0x19b)](()=>{const _0x1743ee={'WOrbm':function(_0x18b7bd){return _0x5a235d[_0x9c12(0x1e4)](_0x18b7bd);},'NlfMu':function(_0x1ccfcc,_0x3c0ed1){return _0x1ccfcc(_0x3c0ed1);},'SaSOZ':_0x5a235d[_0x9c12(0x1e5)],'lpaTa':function(_0x169743,_0x677c6f){return _0x5a235d[_0x9c12(0x1e6)](_0x169743,_0x677c6f);},'hTMiW':_0x5a235d[_0x9c12(0x1e7)],'TUgOh':function(_0x1f2dc7){return _0x1f2dc7();}};setTimeout(()=>{const _0x3e52e9={'KUVqh':'β\x20[TRANSITION]\x20Background\x20training\x20failed\x20during\x20transition:','YOQgB':function(_0x4c9f3f){return _0x1743ee[_0x9c12(0x1e8)](_0x4c9f3f);},'tNLbg':function(_0x7011cf,_0x2b066f){return _0x1743ee[_0x9c12(0x1e9)](_0x7011cf,_0x2b066f);},'bfHpD':_0x1743ee['SaSOZ']};if(_0x1743ee[_0x9c12(0x1ea)](_0x1743ee['hTMiW'],_0x1743ee[_0x9c12(0x1eb)])){const _0x734a4b={'WaRWP':_0x3e52e9[_0x9c12(0x1ec)]};(0x0,_0x3636a8[_0x9c12(0x1ed)])(_0x32b595[_0x9c12(0x1ee)][_0x9c12(0x1ef)]),_0x187d4f['log'](_0x9c12(0xcd)),_0x3e52e9[_0x9c12(0x1f0)](_0x2080c7)['catch'](_0x2d908b=>{_0xef3e0e['error'](_0x734a4b['WaRWP'],_0x2d908b);}),_0x3e52e9[_0x9c12(0x1f1)](_0x2bcb0f,_0x3e52e9[_0x9c12(0x1f2)]);}else _0x26d657(![]),!_0x41c02c&&_0x1743ee[_0x9c12(0x1f3)](_0x144178);},0x64);});},_0x13184d=()=>{(0x0,_haptics[_0x9c12(0x1ed)])(_haptics[_0x9c12(0x1ee)][_0x9c12(0x1ef)]);if(primaryAuthOnly){console[_0x9c12(0x18)](_0x32c655[_0x9c12(0x1f4)]),_0x32c655[_0x9c12(0x1f5)](_0x16a468,_0x32c655[_0x9c12(0x12f)]);return;}console[_0x9c12(0x18)](_0x32c655[_0x9c12(0x1f6)]),_0x32c655['SVWdN'](_0x16a468,_0x32c655[_0x9c12(0x141)]);},_0x4da604=async _0x112041=>{const _0x5e0dea={'ZXwsm':function(_0x1c3be3,_0x14fbdb){return _0x32c655[_0x9c12(0x140)](_0x1c3be3,_0x14fbdb);},'JerFz':function(_0xef4616,_0x174c7b){return _0x32c655[_0x9c12(0x1cd)](_0xef4616,_0x174c7b);},'GnYKz':function(_0x5b352f,_0x574c47){return _0x32c655[_0x9c12(0x1f7)](_0x5b352f,_0x574c47);},'NlzfA':_0x32c655[_0x9c12(0x1f8)],'bRbsI':_0x32c655['lXdVV'],'zzznx':function(_0x14b5b6,_0x3a9a6d){return _0x32c655['Nzgla'](_0x14b5b6,_0x3a9a6d);},'fSMRG':_0x32c655[_0x9c12(0x1f9)],'WJBle':function(_0x1dba06,_0x59bced,_0x20e317,_0x546d5b){return _0x32c655[_0x9c12(0x1fa)](_0x1dba06,_0x59bced,_0x20e317,_0x546d5b);},'Spyij':function(_0x4ddbbf,_0x364595){return _0x32c655[_0x9c12(0x1fb)](_0x4ddbbf,_0x364595);},'PiOoH':_0x32c655[_0x9c12(0x1fc)],'veZkh':_0x9c12(0xc2),'RkHhy':_0x32c655['sqEXE'],'QQCIC':_0x32c655[_0x9c12(0x1fd)],'kSgoZ':_0x32c655[_0x9c12(0x1fe)],'watAy':function(_0x34791c,_0x4f68ed){return _0x34791c===_0x4f68ed;},'aOODG':function(_0x14aa88,_0x315ab5){return _0x32c655['ZqTvl'](_0x14aa88,_0x315ab5);},'Kndgl':_0x32c655['qhoQp'],'mCTym':_0x9c12(0x1ff),'GkHNH':function(_0x1006a8,_0x51568f){return _0x1006a8!==_0x51568f;},'CkGLR':function(_0x55cf16,_0x2073e0){return _0x32c655[_0x9c12(0x1b0)](_0x55cf16,_0x2073e0);},'CGDZG':'connected'};if(_0x32c655[_0x9c12(0x200)]('Sbhue','nsrLV')){(0x0,_haptics[_0x9c12(0x1ed)])(_haptics[_0x9c12(0x1ee)][_0x9c12(0x1ef)]),_0x32c655['rnZKD'](_0x1cd740,!![]),_0x584572('');try{if(_0x32c655['SYbmn']!==_0x32c655[_0x9c12(0x201)])_0x32c655[_0x9c12(0x1a2)](_0x347394,'.'[_0x9c12(0x184)](_0x86797b));else{if(_0x32c655[_0x9c12(0x1cd)](_0x112041,_0x9c12(0x202))){console[_0x9c12(0x18)](_0x32c655[_0x9c12(0x203)]),await _asyncStorage[_0x9c12(0x53)]['setItem'](_0x32c655['HOIwi'],_0x9c12(0x9b)),await(0x0,_jwtStorageService[_0x9c12(0x204)])(_0x32c655['tPxFr']),_0x32c655[_0x9c12(0x205)](_0x4fd5e5,_0x112041),_0x16a468(_0x32c655[_0x9c12(0x12f)]),_0x32c655['bqpHF'](_0x1cd740,![]);return;}if(_0x32c655[_0x9c12(0x206)](_0x112041,_0x32c655[_0x9c12(0x207)])){if(_0x32c655[_0x9c12(0x1d9)](_0x32c655['xCLiE'],_0x32c655[_0x9c12(0x208)])){if(_0x5e0dea[_0x9c12(0x209)](_0x5e0dea[_0x9c12(0x20a)],typeof _0x2f88c4))var _0x2d0ce4=new _0x4c53ac(),_0x26baab=new _0x500e2d();return(_0x58c2d0=function(_0x53aa8b,_0x2e711b){if(_0x5e0dea[_0x9c12(0x20b)](!_0x2e711b,_0x53aa8b)&&_0x53aa8b[_0x9c12(0x0)])return _0x53aa8b;var _0x25d792,_0x428e62,_0x3c0086={'__proto__':null,'default':_0x53aa8b};if(_0x5e0dea[_0x9c12(0x20c)](null,_0x53aa8b)||_0x5e0dea['GnYKz'](_0x5e0dea[_0x9c12(0x20d)],typeof _0x53aa8b)&&_0x5e0dea[_0x9c12(0x20e)](_0x5e0dea[_0x9c12(0x20a)],typeof _0x53aa8b))return _0x3c0086;if(_0x25d792=_0x2e711b?_0x26baab:_0x2d0ce4){if(_0x25d792[_0x9c12(0xf)](_0x53aa8b))return _0x25d792[_0x9c12(0x10)](_0x53aa8b);_0x25d792[_0x9c12(0x11)](_0x53aa8b,_0x3c0086);}for(const _0x366433 in _0x53aa8b)_0x5e0dea[_0x9c12(0x20f)](_0x5e0dea[_0x9c12(0x210)],_0x366433)&&{}[_0x9c12(0x13)][_0x9c12(0x14)](_0x53aa8b,_0x366433)&&((_0x428e62=(_0x25d792=_0x3854e2['defineProperty'])&&_0x3fe4e4[_0x9c12(0x16)](_0x53aa8b,_0x366433))&&(_0x428e62[_0x9c12(0x10)]||_0x428e62[_0x9c12(0x11)])?_0x5e0dea[_0x9c12(0x211)](_0x25d792,_0x3c0086,_0x366433,_0x428e62):_0x3c0086[_0x366433]=_0x53aa8b[_0x366433]);return _0x3c0086;})(_0x409861,_0x5a0eeb);}else{const _0xe0a37c=_0x32c655[_0x9c12(0x212)][_0x9c12(0x1b7)]('|');let _0x562745=0x0;while(!![]){switch(_0xe0a37c[_0x562745++]){case'0':_0x32c655[_0x9c12(0x1f5)](_0x1cd740,![]);continue;case'1':_0x32c655['emDmW'](_0x4fd5e5,_0x32c655['gXltI']);continue;case'2':_0x32c655['ySEUC'](_0x16a468,_0x9c12(0x1b));continue;case'3':console[_0x9c12(0x18)](_0x32c655[_0x9c12(0x138)]);continue;case'4':return;}break;}}}console['log'](_0x32c655['ObExn'],_0x112041);const _0x4a7339=await(0x0,_authService[_0x9c12(0x213)])(_0x112041);if(_0x4a7339['success']){if(_0x32c655[_0x9c12(0x214)](_0x32c655[_0x9c12(0x215)],_0x32c655['FGzWj']))try{const _0x52b38b=_0x5e0dea['PiOoH']['split']('|');let _0x168478=0x0;while(!![]){switch(_0x52b38b[_0x168478++]){case'0':_0x2b4d7d[_0x9c12(0x18)](_0x9c12(0xce),_0x5480b0);continue;case'1':_0x200370['log'](_0x5e0dea['veZkh']);continue;case'2':if(!_0x1a1834)throw new _0x2b947d(_0x5e0dea[_0x9c12(0x216)]);continue;case'3':_0xe980f5['log'](_0x5e0dea[_0x9c12(0x217)]);continue;case'4':_0x5931c2[_0x9c12(0x18)](_0x5e0dea['kSgoZ'],(_0x5e0dea['watAy'](_0x2bc202,null)||_0x5e0dea[_0x9c12(0x218)](_0x21baf1,void 0x0)?void 0x0:_0x289405[_0x9c12(0x17c)](0x0,0x14))+'...');continue;case'5':_0xd2cc21[_0x9c12(0x18)](_0x5e0dea['Kndgl']);continue;}break;}}catch(_0x4d55b5){_0x5e01a0[_0x9c12(0x14a)](_0x5e0dea[_0x9c12(0x219)],_0x4d55b5);throw _0x4d55b5;}else console[_0x9c12(0x18)](_0x32c655[_0x9c12(0x21a)]),_0x32c655[_0x9c12(0x1c9)](_0x4fd5e5,_0x112041),_0x32c655[_0x9c12(0x1d6)](_0x16a468,_0x32c655[_0x9c12(0x13b)]);}else _0x32c655['JeMTV'](_0x32c655[_0x9c12(0x21b)],_0x32c655[_0x9c12(0x21c)])?(console[_0x9c12(0x18)]('β\x20Failed\x20to\x20send\x20verification\x20code:',_0x4a7339['message']),_0x32c655[_0x9c12(0x1ba)](_0x584572,_0x4a7339[_0x9c12(0x1a3)]||'Failed\x20to\x20send\x20verification\x20code.\x20Please\x20try\x20again.')):(_0x2fb5f5[_0x9c12(0x18)](_0x32c655[_0x9c12(0x21d)],_0xbec2c8,_0x32c655[_0x9c12(0x21e)]),_0x1c5e0d(!![]));}}catch(_0x3eb0d4){if(_0x32c655[_0x9c12(0x21f)](_0x32c655[_0x9c12(0x220)],_0x9c12(0x62)))console['error'](_0x32c655[_0x9c12(0x221)],_0x3eb0d4),_0x584572(_0x32c655[_0x9c12(0x222)]);else{var _0x1870bb;_0x62cb4f[_0x3417ad]=_0x5e0dea['GkHNH'](_0x1870bb=_0x251cc0[_0x302285],null)&&_0x5e0dea[_0x9c12(0x223)](_0x1870bb,void 0x0)&&_0x1870bb[_0x9c12(0x49)]?_0x5e0dea[_0x9c12(0x224)]:'disconnected';}}finally{_0x32c655[_0x9c12(0x1b0)](_0x32c655[_0x9c12(0x225)],_0x32c655['HBlOg'])?(_0x31cd27[_0x9c12(0x14a)](_0x32c655['DHrDh']),_0xeec46b===null||_0x32c655[_0x9c12(0x226)](_0x2e896d,void 0x0)||_0x32c655[_0x9c12(0x227)](_0x525c03,_0x2a9490[_0x9c12(0x158)][_0x9c12(0x228)],_0x32c655[_0x9c12(0x159)],{'email':(_0x32c655[_0x9c12(0x178)](_0x40465f,null)||_0x32c655[_0x9c12(0x1cd)](_0x2a028b,void 0x0)?void 0x0:_0x163bf8[_0x9c12(0x15a)])||'',..._0x34ad60})):_0x32c655['dDLcY'](_0x1cd740,![]);}}else{var _0x4ca992;_0x32c655[_0x9c12(0x229)](_0x441249,![]),_0x32c655[_0x9c12(0x1d1)](_0x4ca992=_0x27575a[_0x9c12(0x17e)],null)||_0x32c655[_0x9c12(0x22a)](_0x4ca992,void 0x0)||_0x4ca992[_0x9c12(0x14)](_0x37f0af);}},_0x21c383=async()=>{const _0x7f9f80={'TcEsB':_0x9c12(0x73),'ccQsZ':function(_0xe4a137,_0x514d6a){return _0x32c655[_0x9c12(0x22b)](_0xe4a137,_0x514d6a);},'hxnRH':function(_0x4cb488,_0x527766){return _0x4cb488(_0x527766);},'YIuLQ':function(_0x54b56f){return _0x32c655[_0x9c12(0x22c)](_0x54b56f);},'vYyVb':_0x32c655[_0x9c12(0x22d)],'NIPBU':_0x32c655[_0x9c12(0x22e)],'AwQca':_0x32c655['Prqna']};if(_0x32c655['GPPTx'](_0x32c655[_0x9c12(0x22f)],_0x32c655[_0x9c12(0x22f)])){(0x0,_haptics[_0x9c12(0x1ed)])(_haptics['HapticType'][_0x9c12(0x1ef)]),_0x32c655[_0x9c12(0x179)](_0x1cd740,!![]),_0x32c655[_0x9c12(0x230)](_0x584572,'');try{console[_0x9c12(0x18)](_0x9c12(0x231));const _0x3fcb79=await(0x0,_googleAuthService['signInWithGoogle'])();if(_0x3fcb79[_0x9c12(0x232)]&&_0x3fcb79['user']){const _0x2634d9=_0x9c12(0x233)[_0x9c12(0x1b7)]('|');let _0x174961=0x0;while(!![]){switch(_0x2634d9[_0x174961++]){case'0':(0x0,_haptics[_0x9c12(0x1ed)])(_haptics[_0x9c12(0x1ee)][_0x9c12(0x234)]);continue;case'1':_0x32c655[_0x9c12(0x1c9)](_0x4fd5e5,_0x3fcb79['user'][_0x9c12(0x15a)]);continue;case'2':console['log'](_0x32c655[_0x9c12(0x235)],_0x3fcb79[_0x9c12(0x236)]['email']);continue;case'3':_0x32c655[_0x9c12(0x237)](_0x16a468,_0x32c655['frCOd']);continue;case'4':_0x32c655[_0x9c12(0x238)](_0x3c37d5,_0x3fcb79[_0x9c12(0x236)]['username']||_0x3fcb79['user'][_0x9c12(0x15a)][_0x9c12(0x1b7)]('@')[0x0]);continue;}break;}}else{if(_0x3fcb79[_0x9c12(0x239)])console[_0x9c12(0x18)](_0x9c12(0x23a));else{if(_0x32c655[_0x9c12(0x23b)](_0x32c655[_0x9c12(0x23c)],_0x32c655[_0x9c12(0x23d)])){_0x8a010f[_0x9c12(0x18)](_0x7f9f80[_0x9c12(0x23e)]),_0x7f9f80[_0x9c12(0x23f)](_0x1bfabd,'platforms'),_0x7f9f80[_0x9c12(0x23f)](_0x1108ac,![]);return;}else _0x32c655[_0x9c12(0x240)](_0x584572,_0x3fcb79['message']||_0x32c655['Prqna']),(0x0,_haptics[_0x9c12(0x1ed)])(_haptics['HapticType'][_0x9c12(0x241)]);}}}catch(_0x478fb6){if(_0x32c655[_0x9c12(0x214)](_0x32c655[_0x9c12(0x242)],_0x32c655[_0x9c12(0x242)])){const _0x15c898=_0x9c12(0x243)[_0x9c12(0x1b7)]('|');let _0x213eab=0x0;while(!![]){switch(_0x15c898[_0x213eab++]){case'0':_0x7f9f80[_0x9c12(0x244)](_0xbc1e10,!![]);continue;case'1':_0x7f9f80[_0x9c12(0x244)](_0x4790be,!![]);continue;case'2':_0x7f9f80['YIuLQ'](_0x5ad5a8);continue;case'3':return;case'4':_0x5ee81f['log']('π\x20Connections\x20required\x20detected\x20from\x20background\x20training');continue;case'5':_0x7f9f80[_0x9c12(0x244)](_0x5256b5,_0x7f9f80['vYyVb']);continue;case'6':_0x476067(_0x4be9e4);continue;case'7':_0xda6a80(_0x7f9f80[_0x9c12(0x245)]);continue;}break;}}else console[_0x9c12(0x14a)]('β\x20Google\x20Sign-In\x20error:',_0x478fb6),_0x32c655[_0x9c12(0x246)](_0x584572,_0x478fb6['message']||_0x32c655[_0x9c12(0x247)]),(0x0,_haptics[_0x9c12(0x1ed)])(_haptics[_0x9c12(0x1ee)][_0x9c12(0x241)]),_0x584572(_0x32c655['Prqna']);}finally{_0x32c655['ucgQg']==='zrWYj'?_0x1cd740(![]):(_0x34f9c0[_0x9c12(0x14a)](_0x9c12(0x248),_0x2c919b),_0x7f9f80[_0x9c12(0x23f)](_0x2f4501,_0x49d104[_0x9c12(0x1a3)]||_0x7f9f80[_0x9c12(0x249)]),(0x0,_0x56109d[_0x9c12(0x1ed)])(_0x579bfb['HapticType'][_0x9c12(0x241)]),_0x43a470(_0x9c12(0x67)));}}else{_0x39331d['error'](_0x32c655[_0x9c12(0x24a)]);throw new _0x4350a4(_0x32c655[_0x9c12(0x24b)]);}},_0x1b8697=async _0x4302a8=>{const _0x190dcd={'joCuq':_0x9c12(0x24c),'dUZiW':_0x32c655[_0x9c12(0x24d)],'DrEXU':_0x9c12(0xb3),'xolAl':_0x32c655[_0x9c12(0x24e)],'OejoR':_0x32c655[_0x9c12(0x24f)],'XptnF':_0x9c12(0xc9),'vihdq':_0x9c12(0x250),'utQFb':function(_0x25d3a6,_0x4cedaa){return _0x32c655[_0x9c12(0x251)](_0x25d3a6,_0x4cedaa);},'HiFzF':_0x32c655[_0x9c12(0x252)],'wyxkF':function(_0x1b6982,_0x16888c){return _0x32c655['jqlps'](_0x1b6982,_0x16888c);},'oBIvu':function(_0x97e289){return _0x32c655[_0x9c12(0x253)](_0x97e289);}};(0x0,_haptics['triggerHaptic'])(_haptics[_0x9c12(0x1ee)][_0x9c12(0x1ef)]),_0x32c655[_0x9c12(0x254)](_0x1cd740,!![]),_0x584572('');try{if(_0x32c655['JKKXD']===_0x32c655[_0x9c12(0x255)]){if(_0x32c655[_0x9c12(0x256)](_0x30750d,_0x32c655[_0x9c12(0x13a)])){console['log'](_0x32c655[_0x9c12(0x257)]),_0x32c655[_0x9c12(0x1df)](_0x16a468,_0x32c655[_0x9c12(0x12f)]),_0x32c655['ylVxU'](_0x1cd740,![]);return;}console[_0x9c12(0x18)](_0x9c12(0x258),_0x30750d,_0x4302a8),console[_0x9c12(0x18)](_0x32c655['FkDEr'],_0x1c9594);const _0x2ff808=await(0x0,_authService[_0x9c12(0x259)])(_0x30750d,_0x4302a8);if(_0x2ff808['success']){if(_0x32c655[_0x9c12(0x25a)](_0x32c655['vdKAj'],_0x32c655[_0x9c12(0x25b)])){var _0x580aba,_0x1780a6,_0x23d0d5,_0x68a06b;console[_0x9c12(0x18)](_0x9c12(0x25c)),console['log'](_0x32c655[_0x9c12(0x25d)],{'isNewUser':_0x2ff808[_0x9c12(0x25e)],'flowType':_0x2ff808[_0x9c12(0x25f)],'hasExistingData':_0x32c655[_0x9c12(0x260)](_0x580aba=_0x2ff808['existingUserData'],null)||_0x32c655['zFDcf'](_0x580aba,void 0x0)?void 0x0:_0x580aba[_0x9c12(0x261)],'connectionsCount':((_0x1780a6=_0x2ff808['existingUserData'])===null||_0x32c655['eqqfx'](_0x1780a6,void 0x0)||_0x32c655[_0x9c12(0x195)](_0x1780a6=_0x1780a6[_0x9c12(0x262)],null)||_0x32c655['DaZvZ'](_0x1780a6,void 0x0)?void 0x0:_0x1780a6[_0x9c12(0x17d)])||0x0});const _0x126acf=_0x32c655[_0x9c12(0x23b)](_0x2ff808[_0x9c12(0x25e)],![])||_0x32c655[_0x9c12(0x263)](_0x2ff808[_0x9c12(0x25f)],_0x32c655[_0x9c12(0x264)]),_0x5bf848=_0x32c655[_0x9c12(0x265)](_0x23d0d5=_0x2ff808[_0x9c12(0x266)],null)||_0x32c655[_0x9c12(0x195)](_0x23d0d5,void 0x0)?void 0x0:_0x23d0d5[_0x9c12(0x262)],_0x1781e8=Array['isArray'](_0x5bf848)?_0x5bf848:[],_0x4197c8=_0x1781e8[_0x9c12(0x15d)](_0x10c50d=>_0x10c50d&&(_0x10c50d[_0x9c12(0x267)]||_0x10c50d[_0x9c12(0x268)]===_0x9c12(0x269)))[_0x9c12(0x26a)](_0x1c3280=>_0x1c3280===null||_0x1c3280===void 0x0?void 0x0:_0x1c3280[_0x9c12(0x41)])['filter'](Boolean);console[_0x9c12(0x18)]('π\x20Returning\x20user\x20check:',{'isReturning':_0x126acf,'connectedPlatformNames':_0x4197c8,'showWelcomeBack':_0x32c655[_0x9c12(0x26b)](_0x68a06b=_0x2ff808['enochInstructions'],null)||_0x32c655['UtkIw'](_0x68a06b,void 0x0)?void 0x0:_0x68a06b['showWelcomeBack']});if(_0x126acf&&_0x32c655[_0x9c12(0x26c)](_0x4197c8['length'],0x0)){if(_0x32c655['SGKIa']===_0x32c655[_0x9c12(0x26d)])return _0x5cff06[_0x9c12(0x26e)](_0x32c655[_0x9c12(0x26f)],_0x1e8124),null;else console[_0x9c12(0x18)](_0x32c655['rNHAO']),_0x32c655[_0x9c12(0x173)](_0x5965f0,!![]),_0x32c655[_0x9c12(0x270)](_0x37dd5d,_0x4197c8),_0x32c655[_0x9c12(0x271)](_0x16a468,_0x32c655[_0x9c12(0x272)]);}else{if(_0x32c655[_0x9c12(0x273)](_0x32c655['seyfY'],_0x32c655[_0x9c12(0x274)])){const _0x42d388=_0x190dcd[_0x9c12(0x275)]['split']('|');let _0x20b569=0x0;while(!![]){switch(_0x42d388[_0x20b569++]){case'0':_0x1667bb[_0x9c12(0x18)](_0x9c12(0xb4),_0x3295c3[_0x9c12(0x276)]['compression']);continue;case'1':_0x312465[_0x9c12(0x18)](_0x190dcd[_0x9c12(0x277)],_0x228091[_0x9c12(0x276)]['storage']);continue;case'2':_0x3fbdbf['log'](_0x190dcd['DrEXU'],_0x402e17[_0x9c12(0x276)][_0x9c12(0x278)]);continue;case'3':_0x4b981e[_0x9c12(0x18)]('π\x20Training\x20type:',_0x19189b[_0x9c12(0x276)][_0x9c12(0x279)]);continue;case'4':_0x4565bc[_0x9c12(0x18)](_0x190dcd[_0x9c12(0x27a)],_0x1cf5ca[_0x9c12(0x276)]['inference']);continue;case'5':_0x371bde['log'](_0x190dcd['OejoR'],_0x2ff5cd['features'][_0x9c12(0x27b)]);continue;case'6':_0x1da9d0[_0x9c12(0x18)](_0x190dcd[_0x9c12(0x27c)],_0x4d7902['features'][_0x9c12(0x27d)]);continue;}break;}}else console['log'](_0x32c655[_0x9c12(0x27e)]),_0x32c655[_0x9c12(0x27f)](_0x5965f0,![]),_0x32c655[_0x9c12(0x280)](_0x37dd5d,[]),_0x32c655[_0x9c12(0x281)](_0x16a468,_0x32c655['frCOd']);}}else _0x290fb0[_0x9c12(0x14a)](_0x190dcd[_0x9c12(0x282)],_0x2036ef['error']),_0x190dcd[_0x9c12(0x283)](_0xda20df,_0x9c12(0x284)+(_0x269c51[_0x9c12(0x14a)]||_0x190dcd[_0x9c12(0x285)])),_0x190dcd[_0x9c12(0x286)](_0x16f21c,!![]),_0x190dcd[_0x9c12(0x287)](_0x11a174);}else console['log']('β\x20Email\x20verification\x20failed:',_0x2ff808['message']),_0x32c655[_0x9c12(0x1df)](_0x584572,_0x2ff808['message']||_0x9c12(0x288));}else{_0x4364b5[_0x9c12(0x14a)](_0x32c655[_0x9c12(0x1de)],_0x5d75bd),_0x32c655[_0x9c12(0x171)](_0x43ec68,{}),_0x32c655[_0x9c12(0x179)](_0x395e91,{}),_0x32c655[_0x9c12(0x289)](_0x2c7030,{});const _0x18844b=(_0x32c655['wIoTm'](_0xd6f369,null)||_0x32c655[_0x9c12(0x135)](_0x127607,void 0x0)?void 0x0:_0x3d06df[_0x9c12(0x15a)])||(_0x32c655[_0x9c12(0x21f)](_0xb64108,null)||_0x32c655[_0x9c12(0x28a)](_0x3bf21c,void 0x0)?void 0x0:_0x57e821[_0x9c12(0x1c7)])||_0x9c12(0x1d2)+_0x49caf0[_0x9c12(0x28b)](_0x32c655[_0x9c12(0x1e0)](_0x19a68a['random'](),0x2710));_0x316cb8(_0x18844b);}}catch(_0x42dbb0){_0x32c655['MASDc'](_0x32c655[_0x9c12(0x28c)],_0x32c655[_0x9c12(0x28c)])?(console['error'](_0x32c655['TkTre'],_0x42dbb0),_0x32c655[_0x9c12(0x230)](_0x584572,_0x32c655[_0x9c12(0x28d)])):(_0x32c655[_0x9c12(0x28e)](_0x10d734,_0x3b1aa2=>({..._0x3b1aa2,[_0x57924e]:!_0x3b1aa2[_0x22e949]})),_0x32c655[_0x9c12(0x289)](_0x4231bb,_0x12b72b=>{const _0x15baa2={..._0x12b72b};return delete _0x15baa2[_0x28d95c],_0x15baa2;}));}finally{_0x32c655['qJPeh'](_0x32c655['nhekY'],_0x32c655[_0x9c12(0x28f)])?(_0x509adb['log'](_0x32c655[_0x9c12(0x290)],_0x3308c5?_0x307249[_0x9c12(0x17c)](0x0,0x14)+_0x9c12(0x1ad):_0x32c655['AICgz']),_0x3ef23f['log'](_0x32c655[_0x9c12(0x291)]),_0x32c655[_0x9c12(0x292)](_0x1d0c97,_0x32c655[_0x9c12(0x293)])):_0x32c655['jqlps'](_0x1cd740,![]);}},_0x1b7a15=()=>{const _0x5001c4={'lQyVB':_0x32c655[_0x9c12(0x294)],'OMRjS':function(_0x43dc6b,_0x6d4ede){return _0x32c655['JsmOi'](_0x43dc6b,_0x6d4ede);},'mLzwH':function(_0xe904da,_0x4d04b7){return _0x32c655[_0x9c12(0x295)](_0xe904da,_0x4d04b7);}};_0x32c655['JeMTV'](_0x9c12(0x296),'VIeiA')?(_0x1bee2c[_0x9c12(0x18)](_0x5001c4[_0x9c12(0x297)]),_0x5001c4['OMRjS'](_0x43cc1d,!![]),_0x5e60b7(_0x2e9130),_0x5001c4[_0x9c12(0x298)](_0x218c85,_0x9c12(0x7a))):((0x0,_haptics['triggerHaptic'])(_haptics[_0x9c12(0x1ee)][_0x9c12(0x1ef)]),_0x32c655[_0x9c12(0x299)](_0x584572,''),_0x16a468(_0x9c12(0x1e)));},_0x1a1cea=async()=>{(0x0,_haptics['triggerHaptic'])(_haptics[_0x9c12(0x1ee)]['BUTTON_PRESS']),_0x32c655[_0x9c12(0x29a)](_0x1cd740,!![]),_0x32c655[_0x9c12(0x29b)](_0x584572,'');try{console[_0x9c12(0x18)](_0x9c12(0x29c),_0x30750d);const _0x11fd14=await(0x0,_authService['sendEmailVerificationCode'])(_0x30750d);_0x11fd14['success']?console[_0x9c12(0x18)](_0x32c655[_0x9c12(0x29d)]):_0x32c655[_0x9c12(0x29e)](_0x584572,_0x11fd14[_0x9c12(0x1a3)]||_0x32c655[_0x9c12(0x29f)]);}catch(_0xab87ea){console['error'](_0x32c655[_0x9c12(0x2a0)],_0xab87ea),_0x584572(_0x32c655[_0x9c12(0x2a1)]);}finally{_0x32c655[_0x9c12(0x251)](_0x1cd740,![]);}},_0x2cf930=async _0x1c02d5=>{const _0x5cda1a={'RGeAI':function(_0xe167d7,_0x2cdaad){return _0xe167d7+_0x2cdaad;},'ixIlW':function(_0x5691f0,_0x2d5d33){return _0x32c655[_0x9c12(0x2a2)](_0x5691f0,_0x2d5d33);},'ZCDFP':function(_0x2f2014,_0x1fe7e1){return _0x2f2014(_0x1fe7e1);},'KYGVv':function(_0x183308,_0x451f3a){return _0x32c655[_0x9c12(0x1ba)](_0x183308,_0x451f3a);},'lkXrr':_0x32c655['iVvYY']};if(_0x32c655[_0x9c12(0x2a3)](_0x32c655['ZhEbv'],'iKZTp'))_0x1ff6fd=_0x5cda1a[_0x9c12(0x2a4)](_0x3012ee,0x1)%0x4,_0x5cda1a['ixIlW'](_0x3704ff,0x0)?_0x5cda1a['ZCDFP'](_0x157b65,''):_0x5cda1a['KYGVv'](_0x151984,'.'[_0x9c12(0x184)](_0x1132d2));else{(0x0,_haptics[_0x9c12(0x1ed)])(_haptics[_0x9c12(0x1ee)]['SUCCESS']),console[_0x9c12(0x18)](_0x32c655['JfFPL'],_0x1c02d5);try{const [_0x5cdc9e,_0x276c4e,_0x99d42d]=await Promise[_0x9c12(0x2a5)]([(0x0,_authService['getAuthToken'])(),_asyncStorage[_0x9c12(0x53)][_0x9c12(0x14c)](_0x32c655[_0x9c12(0x2a6)]),(0x0,_authService['getOnairosUsername'])()]);console[_0x9c12(0x18)](_0x32c655['arOaJ']),console[_0x9c12(0x18)](_0x32c655[_0x9c12(0x2a7)],_0x5cdc9e?_0x5cdc9e[_0x9c12(0x17c)](0x0,0x14)+'...':'NO'),console[_0x9c12(0x18)](_0x32c655[_0x9c12(0x2a8)],_0x276c4e||'NO'),_0x1e93a5[_0x9c12(0x17e)]=!![];const _0x3e7f2e={'connectedPlatforms':_0x1c02d5};_0x276c4e&&(_0x3e7f2e[_0x9c12(0x15a)]=_0x276c4e,_0x3e7f2e[_0x9c12(0x2a9)]=_0x99d42d||_0x276c4e[_0x9c12(0x1b7)]('@')[0x0]);if(_0x32c655[_0x9c12(0x2aa)](_0x5cdc9e,_0x276c4e)){if(_0x32c655[_0x9c12(0x185)]('WnjlL',_0x32c655['KgGdf'])){const _0xd70686={'YkZiQ':_0x32c655[_0x9c12(0x1a9)],'nQCsf':function(_0x308545){return _0x32c655[_0x9c12(0x2ab)](_0x308545);}};return()=>{_0x579bf5[_0x9c12(0x17e)]&&(_0x3c4de0[_0x9c12(0x18)](_0xd70686[_0x9c12(0x2ac)]),_0x2c2a14[_0x9c12(0x17e)][_0x9c12(0x1af)](),_0x50d266['current']=null),_0xd70686[_0x9c12(0x2ad)](_0x34b8ec);};}else console[_0x9c12(0x18)](_0x32c655['hTWDN']),await(_0x6475a7===null||_0x32c655[_0x9c12(0x2ae)](_0x6475a7,void 0x0)?void 0x0:_0x32c655[_0x9c12(0x2af)](_0x6475a7,_api[_0x9c12(0x158)][_0x9c12(0x228)],_0x5cdc9e,_0x3e7f2e));}else _0x276c4e?_0x32c655[_0x9c12(0x2b0)](_0x32c655['KFXrL'],_0x9c12(0x2b1))?(console[_0x9c12(0x18)](_0x9c12(0x2b2)),await(_0x32c655[_0x9c12(0x2b3)](_0x6475a7,null)||_0x32c655[_0x9c12(0x2b4)](_0x6475a7,void 0x0)?void 0x0:_0x32c655['ZzToL'](_0x6475a7,_api[_0x9c12(0x158)]['BASE_URL'],'',_0x3e7f2e))):(_0x5b8c89[_0x9c12(0x14a)](_0x32c655[_0x9c12(0x2b5)]),_0x52de6a(_0x32c655[_0x9c12(0x2b6)]),_0x32c655[_0x9c12(0x199)](_0x1773e6,!![]),_0x221aa8()):(console[_0x9c12(0x26e)](_0x9c12(0x2b7)),await(_0x32c655[_0x9c12(0x2b8)](_0x6475a7,null)||_0x6475a7===void 0x0?void 0x0:_0x32c655[_0x9c12(0x2b9)](_0x6475a7,_api[_0x9c12(0x158)]['BASE_URL'],'',_0x3e7f2e)));}catch(_0xbdc9b3){if(_0x32c655[_0x9c12(0x2ba)](_0x32c655[_0x9c12(0x2bb)],_0x9c12(0x2bc)))_0x5cda1a['KYGVv'](_0xf7243c,_0x403894),_0x291949(_0x5cda1a[_0x9c12(0x2bd)]);else{console[_0x9c12(0x14a)](_0x32c655[_0x9c12(0x2be)],_0xbdc9b3);const _0x377a16=await _asyncStorage[_0x9c12(0x53)][_0x9c12(0x14c)](_0x32c655['goOGs'])[_0x9c12(0x2bf)](()=>null);await(_0x32c655[_0x9c12(0x2c0)](_0x6475a7,null)||_0x32c655[_0x9c12(0x226)](_0x6475a7,void 0x0)?void 0x0:_0x32c655[_0x9c12(0x227)](_0x6475a7,_api[_0x9c12(0x158)]['BASE_URL'],'',{'connectedPlatforms':_0x1c02d5,..._0x32c655[_0x9c12(0x2c1)](_0x377a16,{'email':_0x377a16})}));}}console[_0x9c12(0x18)](_0x32c655[_0x9c12(0x2c2)]);}},_0x482ed5=async()=>{const _0x39fa28={'sxAHm':_0x32c655['FyCSb'],'CYmpf':_0x32c655['pvftV'],'mtQYi':_0x32c655[_0x9c12(0x2c3)],'ZHVKb':function(_0xe72044,_0x5abb2b){return _0x32c655['piwez'](_0xe72044,_0x5abb2b);},'jksfj':function(_0x5cfff6){return _0x5cfff6();},'HhLzA':'β\x20Failed\x20to\x20store\x20reviewer\x20bypass:','JGUod':function(_0x172f64){return _0x32c655[_0x9c12(0x253)](_0x172f64);}};(0x0,_haptics[_0x9c12(0x1ed)])(_haptics[_0x9c12(0x1ee)][_0x9c12(0x1ef)]),console[_0x9c12(0x18)](_0x32c655[_0x9c12(0x2c4)]);try{if(_0x32c655[_0x9c12(0x2c5)]===_0x32c655['YHfXN']){const [_0x28d301,_0x1d6ffd,_0xb63750]=await Promise[_0x9c12(0x2a5)]([(0x0,_authService['getAuthToken'])(),_asyncStorage[_0x9c12(0x53)][_0x9c12(0x14c)](_0x32c655[_0x9c12(0x2a6)]),(0x0,_authService[_0x9c12(0x1c4)])()]);_0x1e93a5[_0x9c12(0x17e)]=!![];if(_0x32c655['KjrdY'](_0x28d301,_0x1d6ffd)){if(_0x32c655['zXCEI'](_0x32c655[_0x9c12(0x2c6)],_0x32c655[_0x9c12(0x2c6)])){_0xfa2383[_0x9c12(0x14a)](_0x9c12(0x2c7)+_0x543268+':',_0x2b6dae);return;}else console['log'](_0x32c655[_0x9c12(0x2c8)]),await(_0x32c655['SAKVH'](_0x6475a7,null)||_0x6475a7===void 0x0?void 0x0:_0x32c655[_0x9c12(0x1fa)](_0x6475a7,_api[_0x9c12(0x158)][_0x9c12(0x228)],_0x28d301,{'email':_0x1d6ffd,'connectedPlatforms':[],'username':_0xb63750||_0x1d6ffd[_0x9c12(0x1b7)]('@')[0x0],'skipped':!![]}));}else{if(_0x32c655[_0x9c12(0x2c9)](_0x9c12(0x2ca),_0x32c655[_0x9c12(0x2cb)])){_0x3e8c7d['error'](_0x39fa28[_0x9c12(0x2cc)]);throw new _0x24db12(_0x39fa28[_0x9c12(0x2cd)]);}else console[_0x9c12(0x26e)](_0x32c655[_0x9c12(0x2ce)]),await(_0x32c655[_0x9c12(0x2cf)](_0x6475a7,null)||_0x32c655['YzNqY'](_0x6475a7,void 0x0)?void 0x0:_0x32c655[_0x9c12(0x2d0)](_0x6475a7,_api[_0x9c12(0x158)][_0x9c12(0x228)],'',{'connectedPlatforms':[],'skipped':!![]}));}}else _0x462c2b['error'](_0x39fa28[_0x9c12(0x2d1)],_0x105733[_0x9c12(0x14a)]),_0x39fa28['ZHVKb'](_0x147fd6,_0x9c12(0x284)+_0x307545[_0x9c12(0x14a)]),_0x125e7a(!![]),_0x39fa28[_0x9c12(0x2d2)](_0x21d1b4);}catch(_0x4427b7){_0x32c655['bGPdE'](_0x32c655[_0x9c12(0x2d3)],_0x32c655[_0x9c12(0x2d3)])?(console[_0x9c12(0x14a)](_0x32c655[_0x9c12(0x2d4)],_0x4427b7),await(_0x6475a7===null||_0x32c655[_0x9c12(0x195)](_0x6475a7,void 0x0)?void 0x0:_0x6475a7(_api[_0x9c12(0x158)][_0x9c12(0x228)],'',{'connectedPlatforms':[],'skipped':!![]}))):(_0x815474[_0x9c12(0x14a)](_0x39fa28[_0x9c12(0x2d5)],_0x3ac5b1),_0x39fa28[_0x9c12(0x2d6)](_0x5a7c86));}console[_0x9c12(0x18)](_0x32c655[_0x9c12(0x2d7)]);},_0x492377=async()=>{console[_0x9c12(0x18)](_0x32c655[_0x9c12(0x2d8)]),(0x0,_haptics[_0x9c12(0x1ed)])(_haptics[_0x9c12(0x1ee)][_0x9c12(0x1ef)]);try{await _asyncStorage[_0x9c12(0x53)][_0x9c12(0x15e)](_0x9c12(0x59),_0x32c655[_0x9c12(0x2d9)]),await(0x0,_jwtStorageService[_0x9c12(0x204)])(_0x32c655[_0x9c12(0x2da)]),console[_0x9c12(0x18)](_0x32c655[_0x9c12(0x2db)]),_0x32c655['dPVfO'](_0x38eb30);}catch(_0x48878f){console[_0x9c12(0x14a)](_0x32c655['SxYZO'],_0x48878f),_0x32c655[_0x9c12(0x253)](_0x38eb30);}},_0xdb1c41=async _0x42657b=>{const _0x52830e={'HAKLr':function(_0x2a418d){return _0x32c655[_0x9c12(0x253)](_0x2a418d);}};if(_0x32c655['AWpHs']('xeUTa',_0x32c655['lIizk']))_0x53f188[_0x9c12(0x18)](_0x32c655['VmQSV']);else{(0x0,_haptics['triggerHaptic'])(_haptics[_0x9c12(0x1ee)]['BUTTON_PRESS']),_0x32c655[_0x9c12(0x2dc)](_0x1736de,_0x42657b);try{if(_0x32c655[_0x9c12(0x2dd)](_0x32c655['aoBtf'],_0x32c655[_0x9c12(0x2de)])){if((0x0,_platformAuthService[_0x9c12(0x2df)])(_0x42657b)){if(_0x32c655[_0x9c12(0x23b)](_0x32c655['DwrqK'],_0x32c655['NKUiv']))_0x52830e[_0x9c12(0x2e0)](_0x6fe6d2);else{_0x32c655[_0x9c12(0x199)](_0xb7017d,_0x42657b);const _0x38c8e0=await(0x0,_platformAuthService[_0x9c12(0x2e1)])(_0x42657b,_0x4a0a9a);_0x38c8e0&&(_0x32c655[_0x9c12(0x2e2)]===_0x32c655['kCehg']?(_0x32c655['ylVxU'](_0x3e04e3,_0x2dadf9=>({..._0x2dadf9,[_0x42657b]:{'userName':_0x4a0a9a,'connected':!![]}})),_0x32c655[_0x9c12(0x2e3)](_0x39b738,_0x5b9a83=>({..._0x5b9a83,[_0x42657b]:!![]})),_0x32c655[_0x9c12(0x2e4)](_0x3902a9,_0x267142=>({..._0x267142,[_0x42657b]:'connected'})),await _0x32c655['eBQsd'](_0x55df11,_0x42657b)):_0x4c8b3f=_0x9c12(0x2e5));}}else{_0x32c655[_0x9c12(0x2e6)](_0xb7017d,_0x42657b);const _0x4e194d=await(0x0,_platformAuthService['initiateOAuth'])(_0x42657b,_0x4a0a9a);_0x4e194d&&(_0x32c655[_0x9c12(0x2e7)](_0x325128,_0x4e194d),_0x16a468(_0x32c655[_0x9c12(0x2e8)]));}}else _0x3994cc[_0x9c12(0x18)](_0x32c655[_0x9c12(0x2e9)]),_0x32c655[_0x9c12(0x2ea)](_0x2f2590,_0x32c655['frCOd']);}catch(_0x28b628){console[_0x9c12(0x14a)](_0x9c12(0x2eb)+_0x42657b+':',_0x28b628);}finally{_0x1736de(null);}}},_0x5e6a02=(0x0,_react[_0x9c12(0x2ec)])(async _0x4bbe74=>{const _0x3ca2b8={'OEhdF':function(_0x15c4a7,_0x111ed7){return _0x32c655['SJUgU'](_0x15c4a7,_0x111ed7);},'XdVLV':function(_0x5670ba,_0x32df3a){return _0x5670ba===_0x32df3a;},'ihGfF':function(_0x3ecbb7,_0x2f1247,_0x9946e1){return _0x3ecbb7(_0x2f1247,_0x9946e1);},'IKdPU':_0x32c655[_0x9c12(0x2ed)],'mFWdl':_0x32c655[_0x9c12(0x2ee)],'UYIKI':function(_0x4112a4){return _0x32c655[_0x9c12(0x2ef)](_0x4112a4);},'MuBtk':_0x9c12(0x2f0),'wYLET':function(_0x45fa2f,_0x378929){return _0x32c655[_0x9c12(0x2f1)](_0x45fa2f,_0x378929);},'feThZ':function(_0x29e6e4,_0x5519cc){return _0x29e6e4(_0x5519cc);},'aYYRy':function(_0x14da66){return _0x32c655[_0x9c12(0x2f2)](_0x14da66);}};if(_0x32c655['ePSVa']===_0x32c655[_0x9c12(0x2f3)]){if(!_0x20891f[_0x4bbe74]){if(_0x32c655[_0x9c12(0x2f4)](_0x32c655[_0x9c12(0x2f5)],_0x32c655[_0x9c12(0x2f6)]))_0x27a31a[_0x9c12(0x18)](_0x32c655[_0x9c12(0x2f7)],_0x18af72[_0x9c12(0x278)][_0x9c12(0x2f8)](',\x20'));else try{if(_0x32c655[_0x9c12(0x214)](_0x32c655[_0x9c12(0x2f9)],_0x9c12(0x2fa))){if(_0x32c655['MASDc'](_0x4bbe74,_0x32c655[_0x9c12(0x2fb)])){_0x32c655['VdPmS'](_0x39b738,_0x344bf2=>({..._0x344bf2,[_0x4bbe74]:!_0x344bf2[_0x4bbe74]})),_0x32c655[_0x9c12(0x289)](_0x3e04e3,_0x3a958f=>({..._0x3a958f,[_0x4bbe74]:{'userName':_0x4bbe74+'_user','connected':!![]}})),await _0x55df11(_0x4bbe74);return;}if(_0x32c655[_0x9c12(0x2fc)](_0x4bbe74,_0x9c12(0x128))||_0x32c655['KrXHX'](_0x4bbe74,_0x32c655['EtUZM'])){console[_0x9c12(0x18)](_0x32c655[_0x9c12(0x2fd)]);const _0xb8defb={'userId':_0x5dafcf||_0x4a0a9a,'email':_0x5dafcf||_0x4a0a9a+_0x9c12(0x2fe),'appName':_0x1c9594,'timestamp':Date[_0x9c12(0x2ff)](),'data':{'conversations':[],'chatHistory':[],'preferences':{},'customData':{}},'accessToken':undefined,'refreshToken':undefined,'tokenExpiry':undefined},_0x15b803=await(0x0,_llmDataStorage['sendLLMDataToBackend'])(_0xb8defb);if(_0x15b803[_0x9c12(0x232)]){if(_0x32c655[_0x9c12(0x300)](_0x32c655['VuYGn'],_0x9c12(0xac)))throw new _0x163474(_0x9c12(0x301));else{const _0x42e9e7=_0x32c655[_0x9c12(0x302)][_0x9c12(0x1b7)]('|');let _0x25dbc0=0x0;while(!![]){switch(_0x42e9e7[_0x25dbc0++]){case'0':console[_0x9c12(0x18)](_0x32c655['cPpda'],_0x15b803['connectionId']);continue;case'1':console['log']('β
\x20'+_0x4bbe74+_0x9c12(0x303));continue;case'2':await _0x32c655[_0x9c12(0x304)](_0x55df11,_0x4bbe74);continue;case'3':console[_0x9c12(0x18)](_0x9c12(0x305));continue;case'4':_0x32c655[_0x9c12(0x306)](_0x39b738,_0x31cf65=>({..._0x31cf65,[_0x4bbe74]:!![]}));continue;case'5':_0x32c655[_0x9c12(0x307)](_0x3e04e3,_0x141390=>({..._0x141390,[_0x4bbe74]:{'userName':_0x4a0a9a,'connected':!![],'connectionId':_0x15b803[_0x9c12(0x308)],'storedInBackend':!![]}}));continue;}break;}}}else{if(_0x32c655[_0x9c12(0x309)](_0x32c655[_0x9c12(0x30a)],_0x32c655['FNfEK']))_0x3f06f7[_0x9c12(0x17e)][_0x9c12(0x1af)](),_0x12a69b[_0x9c12(0x17e)]=null;else throw new Error(_0x9c12(0x30b)+_0x15b803[_0x9c12(0x1a3)]);}return;}if((0x0,_platformAuthService[_0x9c12(0x2df)])(_0x4bbe74)){_0x32c655[_0x9c12(0x299)](_0xb7017d,_0x4bbe74);const _0x23601a=await(0x0,_platformAuthService[_0x9c12(0x2e1)])(_0x4bbe74,_0x4a0a9a);_0x23601a&&(_0x32c655[_0x9c12(0x30c)](_0x3e04e3,_0xee033=>({..._0xee033,[_0x4bbe74]:{'userName':_0x4a0a9a,'connected':!![]}})),_0x32c655[_0x9c12(0x173)](_0x39b738,_0x4ba42a=>({..._0x4ba42a,[_0x4bbe74]:!![]})),await _0x32c655[_0x9c12(0x246)](_0x55df11,_0x4bbe74));return;}_0x32c655[_0x9c12(0x29a)](_0xb7017d,_0x4bbe74);const _0x1f6aaf=await(0x0,_platformAuthService[_0x9c12(0x30d)])(_0x4bbe74,_0x4a0a9a);_0x1f6aaf&&(_0x325128(_0x1f6aaf),_0x32c655['GPVRK'](_0x16a468,_0x32c655[_0x9c12(0x2e8)]));}else _0x15d99b['Animated']['timing'](_0x372e7c,{'toValue':0x0,'duration':0xfa,'useNativeDriver':!![]})[_0x9c12(0x19b)](()=>{const _0x434e27={'MQNEs':function(_0x27157b,_0x315c97){return _0x3ca2b8[_0x9c12(0x30e)](_0x27157b,_0x315c97);},'KtSmZ':function(_0x50209b,_0x4847b0){return _0x3ca2b8[_0x9c12(0x30f)](_0x50209b,_0x4847b0);}};_0x3ca2b8['ihGfF'](_0x5c62e8,()=>{var _0x4ef8ee;_0x434e27['MQNEs'](_0x4e7d07,![]),_0x434e27[_0x9c12(0x310)](_0x4ef8ee=_0x4822fe[_0x9c12(0x17e)],null)||_0x434e27[_0x9c12(0x310)](_0x4ef8ee,void 0x0)||_0x4ef8ee[_0x9c12(0x14)](_0x355257);},0x10);});}catch(_0x5bf1e8){if(_0x32c655['hnAnY'](_0x32c655['bWuTY'],_0x9c12(0x311))){console[_0x9c12(0x14a)](_0x9c12(0x2c7)+_0x4bbe74+':',_0x5bf1e8);return;}else _0x3b798a['error'](_0x3ca2b8[_0x9c12(0x312)]),_0x3ca2b8[_0x9c12(0x30e)](_0x31c2ee,_0x3ca2b8[_0x9c12(0x313)]),_0xa91c70(!![]),_0x3ca2b8[_0x9c12(0x314)](_0x33773f);}}else _0x32c655[_0x9c12(0x1d1)](_0x32c655[_0x9c12(0x315)],_0x32c655['tnbie'])?(_0x3c5aa5['current']&&(_0x3ca2b8[_0x9c12(0x30e)](_0x4200bd,_0x280c7a[_0x9c12(0x17e)]),_0x3b8f96['current']=null),_0x27dc12('')):(_0x32c655[_0x9c12(0x1f5)](_0x39b738,_0x2b0969=>({..._0x2b0969,[_0x4bbe74]:!_0x2b0969[_0x4bbe74]})),_0x32c655[_0x9c12(0x306)](_0x3e04e3,_0x53c599=>{const _0x56bbcd={..._0x53c599};return delete _0x56bbcd[_0x4bbe74],_0x56bbcd;}));}else _0xbf7904['error'](_0x3ca2b8['MuBtk'],_0x1dfa82),_0x3ca2b8['wYLET'](_0x33250e,'YouTube\x20reconnection\x20failed.\x20Please\x20restart\x20from\x20connector\x20screen.'),_0x3ca2b8[_0x9c12(0x316)](_0x22af48,!![]),_0x3ca2b8[_0x9c12(0x317)](_0xed67e3);},[_0x20891f,_0x4a0a9a]),_0x298106=(0x0,_react['useCallback'])(_0x270269=>{if(_0x32c655[_0x9c12(0x318)](_0x32c655[_0x9c12(0x319)],_0x9c12(0x31a))){const _0x17f46f=_0x9c12(0x31b)[_0x9c12(0x1b7)]('|');let _0x4989b8=0x0;while(!![]){switch(_0x17f46f[_0x4989b8++]){case'0':_0xeff26b[_0x9c12(0x18)](_0x32c655['fIZvI'],_0x1f48c6[_0x9c12(0x276)][_0x9c12(0x278)]);continue;case'1':_0xaacb25['log'](_0x32c655[_0x9c12(0x31c)],_0x181d9b[_0x9c12(0x276)][_0x9c12(0x31d)]);continue;case'2':_0x37f705[_0x9c12(0x18)](_0x9c12(0xc8),_0x1d070a[_0x9c12(0x276)][_0x9c12(0x279)]);continue;case'3':_0x451b82[_0x9c12(0x18)](_0x9c12(0xc9),_0x486126[_0x9c12(0x276)][_0x9c12(0x27d)]);continue;case'4':_0x784920[_0x9c12(0x18)](_0x32c655[_0x9c12(0x24d)],_0x4f3049['features'][_0x9c12(0x31e)]);continue;case'5':_0x3668bf['log'](_0x32c655['wwMjz'],_0xeb038d[_0x9c12(0x276)][_0x9c12(0x27b)]);continue;case'6':_0x49ffbd[_0x9c12(0x18)](_0x32c655[_0x9c12(0x24e)],_0x3f99c7['features'][_0x9c12(0x31f)]);continue;}break;}}else try{const _0x2267d3=new URL(_0x270269),_0x3dff16=_0x2267d3['searchParams'][_0x9c12(0x10)](_0x32c655[_0x9c12(0x320)]),_0x53a170=_0x2267d3[_0x9c12(0x1bd)][_0x9c12(0x10)](_0x9c12(0x41))||_0x5639a5;_0x32c655[_0x9c12(0x321)](_0x3dff16,_0x53a170)&&(_0x3e04e3(_0x362450=>({..._0x362450,[_0x53a170]:{'userName':_0x4a0a9a,'connected':!![]}})),_0x32c655[_0x9c12(0x322)](_0x39b738,_0x2d0d16=>({..._0x2d0d16,[_0x53a170]:!![]})),_0x32c655[_0x9c12(0x2dc)](_0x16a468,_0x9c12(0x323)));}catch(_0x4f70d9){console[_0x9c12(0x14a)]('Error\x20handling\x20OAuth\x20callback:',_0x4f70d9);}},[_0x5639a5,_0x4a0a9a]),_0x32446e=(0x0,_react[_0x9c12(0x2ec)])(async _0x45145f=>{console[_0x9c12(0x18)]('π\x20OAuth\x20success\x20for\x20'+_0x5639a5+_0x9c12(0x324)),console[_0x9c12(0x18)]('π\x20Received\x20result:',_0x45145f),_0x5639a5&&(_0x32c655['zeYkm']!==_0x9c12(0xb6)?(_0x32c655[_0x9c12(0x325)](_0x5d63d4,_0x2ca741=>({..._0x2ca741,[_0x8b5745]:{'userName':_0x518763,'connected':!![]}})),_0x4a1577(_0x18a8d4=>({..._0x18a8d4,[_0x199881]:!![]})),_0xd82345(_0x32c655['YxnKL'])):(console[_0x9c12(0x18)](_0x9c12(0x326)+_0x5639a5),_0x32c655[_0x9c12(0x327)](_0x3e04e3,_0x2c2ef1=>({..._0x2c2ef1,[_0x5639a5]:{'userName':_0x4a0a9a,'connected':!![]}})),_0x39b738(_0x1683a1=>({..._0x1683a1,[_0x5639a5]:!![]})),_0x32c655[_0x9c12(0x29e)](_0x3902a9,_0x4ccb54=>({..._0x4ccb54,[_0x5639a5]:_0x9c12(0x49)})),await _0x32c655['SJUgU'](_0x55df11,_0x5639a5),console['log'](_0x9c12(0x328)+_0x5639a5+_0x9c12(0x329)))),console[_0x9c12(0x18)](_0x32c655[_0x9c12(0x32a)]),_0x32c655['BOjCW'](_0x325128,''),_0x16a468(_0x9c12(0x323));},[_0x5639a5,_0x4a0a9a,_0x55df11]),_0x55ca2e=(0x0,_react[_0x9c12(0x2ec)])(async _0x55e691=>{const _0x5dc7a9={'QZmdg':_0x32c655['BRBlm'],'KSXZK':_0x9c12(0xe1),'PgjPs':function(_0x12b736,_0x56a116){return _0x32c655['Ylise'](_0x12b736,_0x56a116);},'gCHWc':function(_0x47a708,_0x2a67b7){return _0x32c655[_0x9c12(0x325)](_0x47a708,_0x2a67b7);},'FQiVg':_0x32c655[_0x9c12(0x32b)],'KjYHi':function(_0x3d88bb,_0x50a7bf){return _0x32c655[_0x9c12(0x32c)](_0x3d88bb,_0x50a7bf);},'LDJos':_0x32c655[_0x9c12(0x32d)]};_0x32c655[_0x9c12(0x32e)](_0x1e84e3,_0x55e691),(0x0,_pinStorageUtils[_0x9c12(0x32f)])(_0x55e691),console[_0x9c12(0x18)](_0x32c655['TuWgm']);if(_0x32c655['izZoY'](_0x584c3f,_0x53728a)){if(_0x32c655['yjTeY'](_0x32c655[_0x9c12(0x330)],_0x32c655[_0x9c12(0x330)])){console[_0x9c12(0x18)](_0x32c655[_0x9c12(0x331)]);try{if(_0x32c655[_0x9c12(0x332)]('VEWUz',_0x32c655['kCrLC']))await _0x32c655[_0x9c12(0x237)](_0x116cf3,_0x55e691),_0x32c655['QNCJO'](_0x16a468,_0x32c655[_0x9c12(0x164)]);else{const _0x486285=_0x5dc7a9[_0x9c12(0x333)][_0x9c12(0x1b7)]('|');let _0x23ec33=0x0;while(!![]){switch(_0x486285[_0x23ec33++]){case'0':_0x4ea7ce[_0x9c12(0x18)](_0x5dc7a9[_0x9c12(0x334)]);continue;case'1':_0x5dc7a9['PgjPs'](_0x10b656,_0x523313[_0x9c12(0x335)]);continue;case'2':return;case'3':_0x5dc7a9[_0x9c12(0x336)](_0x4edc87,_0x5dc7a9[_0x9c12(0x337)]);continue;case'4':_0x5dc7a9[_0x9c12(0x338)](_0x4946f7,_0x5dc7a9[_0x9c12(0x339)]);continue;case'5':_0x5dc7a9[_0x9c12(0x33a)](_0x4add1d,!![]);continue;}break;}}}catch(_0x4c0732){console[_0x9c12(0x14a)](_0x32c655['rqHlX'],_0x4c0732),_0x32c655[_0x9c12(0x289)](_0x16a468,_0x9c12(0x2a)),_0x32c655['oKUof'](_0x56ece4,_0x9c12(0x33b)),_0x306307(!![]);}}else{var _0x4edc50;_0x527133[_0x9c12(0x18)](_0x32c655['gEvwz'],_0x16c8f3),_0x42d88b[_0x9c12(0x18)](_0x9c12(0xd0),{'reason':_0xcf295e,'wasConnected':_0x2cca50,'socketId':_0x32c655[_0x9c12(0x33c)](_0x4edc50=_0xc7806c[_0x9c12(0x17e)],null)||_0x32c655['EqKWS'](_0x4edc50,void 0x0)?void 0x0:_0x4edc50['id']}),_0x2c1dd9(![]);}}else console['log'](_0x32c655[_0x9c12(0x33d)]),_0x32c655[_0x9c12(0x33e)](_0x16a468,_0x32c655[_0x9c12(0x164)]),_0x32c655['YDMpD'](_0x56ece4,_0x32c655[_0x9c12(0x33f)]),_0x32c655['jhuPy'](_0x306307,!![]);console[_0x9c12(0x18)]('π\x20[PIN\x20SUBMIT]\x20PIN\x20stored\x20securely,\x20moved\x20to\x20persona\x20step');},[_0x584c3f,_0x53728a]),_0x2e3b0f=async(_0x3dca06,_0x5c6c76)=>{try{_0x32c655[_0x9c12(0x340)](_0x56ece4,_0x9c12(0x341)),_0x32c655['jhuPy'](_0x21beea,0xf);const _0xce38d3=_0x5c6c76||await(0x0,_jwtStorageService[_0x9c12(0x1bb)])();if(!_0xce38d3){console['error'](_0x32c655[_0x9c12(0x342)]);throw new Error(_0x32c655[_0x9c12(0x24b)]);}console[_0x9c12(0x18)](_0x32c655[_0x9c12(0x343)],_0x3dca06),console[_0x9c12(0x18)](_0x32c655[_0x9c12(0x1fe)],_0xce38d3?_0xce38d3['substring'](0x0,0x14)+_0x9c12(0x1ad):_0x9c12(0x344));const _0x4115e2=await(0x0,_authService[_0x9c12(0x1c4)])(),_0x5de646=_0x4115e2||(_0x32c655['NDIBm'](_0x38dbfb,null)||_0x32c655[_0x9c12(0x345)](_0x38dbfb,void 0x0)?void 0x0:_0x38dbfb[_0x9c12(0x2a9)])||(_0x32c655['YzNqY'](_0x38dbfb,null)||_0x32c655[_0x9c12(0x346)](_0x38dbfb,void 0x0)?void 0x0:_0x38dbfb[_0x9c12(0x1c7)])||_0x4a0a9a||_0x32c655[_0x9c12(0x347)],_0x33b1b4=await _asyncStorage['default']['getItem'](_0x32c655[_0x9c12(0x14d)]),_0x30df04=_0x33b1b4?JSON['parse'](_0x33b1b4):[];console[_0x9c12(0x18)]('π±\x20Connected\x20platforms\x20for\x20training:',_0x30df04);const _0x2fa55f=await(0x0,_pinEncryptionService['getEncryptedPinForAPI'])()[_0x9c12(0x2bf)](_0x44524a=>{return console[_0x9c12(0x26e)](_0x32c655[_0x9c12(0x26f)],_0x44524a),null;}),_0x973e44={'socketId':_0x3dca06,'username':_0x5de646,'email':(_0x32c655[_0x9c12(0x348)](_0x38dbfb,null)||_0x32c655[_0x9c12(0x349)](_0x38dbfb,void 0x0)?void 0x0:_0x38dbfb['email'])||null,'modelKey':null,'connectedPlatforms':_0x30df04,'platformConnections':_0x36d040,..._0x2fa55f&&{'encryptedPin':_0x2fa55f,'hasPinData':!![]}};console[_0x9c12(0x18)](_0x32c655['FmgYu'],_0x973e44);const _0x57ae2e=await(0x0,_mobileTrainingService['startEnochTrainingWithYouTubeCheck'])(_0x973e44);console[_0x9c12(0x18)](_0x32c655[_0x9c12(0x34a)],_0x57ae2e);if(_0x57ae2e[_0x9c12(0x34b)]||_0x57ae2e[_0x9c12(0xb5)]===_0x32c655['vAqxY']){const _0x1d48e2=_0x32c655[_0x9c12(0x34c)][_0x9c12(0x1b7)]('|');let _0x5857b4=0x0;while(!![]){switch(_0x1d48e2[_0x5857b4++]){case'0':return;case'1':_0x32c655[_0x9c12(0x34d)](_0x56ece4,_0x32c655[_0x9c12(0x22e)]);continue;case'2':console[_0x9c12(0x18)](_0x32c655[_0x9c12(0x34e)]);continue;case'3':_0x306307(!![]);continue;case'4':_0x32c655['thqPk'](_0x38204a);continue;case'5':_0x32c655[_0x9c12(0x322)](_0x47bcc6,!![]);continue;case'6':_0x32c655['sWxUt'](_0x5ec8b5,_0x57ae2e);continue;case'7':_0x32c655['dDLcY'](_0x4de8ef,_0x9c12(0x34f));continue;}break;}}if(_0x57ae2e[_0x9c12(0x232)]){console[_0x9c12(0x18)](_0x9c12(0x350),_0x57ae2e['message']),console[_0x9c12(0x18)](_0x32c655[_0x9c12(0x351)],_0x57ae2e[_0x9c12(0x276)]);if(_0x57ae2e[_0x9c12(0x276)]){if(_0x32c655['fEpfF'](_0x32c655['DTxyO'],_0x9c12(0x352))){const _0x6d5845=_0x9c12(0x353)[_0x9c12(0x1b7)]('|');let _0x5d2829=0x0;while(!![]){switch(_0x6d5845[_0x5d2829++]){case'0':console[_0x9c12(0x18)](_0x32c655[_0x9c12(0x354)],_0x57ae2e[_0x9c12(0x276)][_0x9c12(0x278)]);continue;case'1':console[_0x9c12(0x18)](_0x32c655[_0x9c12(0x31c)],_0x57ae2e[_0x9c12(0x276)][_0x9c12(0x31d)]);continue;case'2':console[_0x9c12(0x18)](_0x32c655['uYmiW'],_0x57ae2e[_0x9c12(0x276)][_0x9c12(0x279)]);continue;case'3':console[_0x9c12(0x18)]('πΎ\x20Storage\x20method:',_0x57ae2e[_0x9c12(0x276)]['storage']);continue;case'4':console['log'](_0x32c655[_0x9c12(0x24e)],_0x57ae2e['features'][_0x9c12(0x31f)]);continue;case'5':console['log'](_0x32c655[_0x9c12(0x355)],_0x57ae2e[_0x9c12(0x276)][_0x9c12(0x27d)]);continue;case'6':console[_0x9c12(0x18)](_0x32c655[_0x9c12(0x24f)],_0x57ae2e[_0x9c12(0x276)][_0x9c12(0x27b)]);continue;}break;}}else{_0x2d9d17[_0x9c12(0x14a)](_0x32c655[_0x9c12(0x356)],_0x45adf1);throw _0x1d3275;}}_0x56ece4(_0x32c655[_0x9c12(0x357)]),_0x32c655[_0x9c12(0x2dc)](_0x21beea,0x19);}else console[_0x9c12(0x14a)](_0x9c12(0x250),_0x57ae2e[_0x9c12(0x14a)]),_0x56ece4(_0x9c12(0x284)+(_0x57ae2e[_0x9c12(0x14a)]||_0x32c655[_0x9c12(0x252)])),_0x32c655['nBhTF'](_0x306307,!![]),_0x32c655[_0x9c12(0x253)](_0x38204a);}catch(_0x2b9341){if(_0x32c655['aLSqn'](_0x32c655[_0x9c12(0x358)],_0x32c655[_0x9c12(0x358)])){_0x4fe67b[_0x9c12(0x18)](_0x32c655[_0x9c12(0x359)]),_0xc481ae[_0x9c12(0x18)](_0x9c12(0x56),(_0x2472e9===null||_0x32c655['Uexor'](_0x14d209,void 0x0)?void 0x0:_0x2d2ec4['substring'](0x0,0x14))+_0x9c12(0x1ad));if(!_0x9fedde)throw new _0x25533e(_0x32c655[_0x9c12(0x35a)]);_0xab8b07[_0x9c12(0x18)](_0x32c655['xDajC']),_0x53aa99['log'](_0x9c12(0xce),_0x52b198),_0x2fba32['log'](_0x32c655[_0x9c12(0x35b)]);}else console['error'](_0x32c655[_0x9c12(0x35c)],_0x2b9341),_0x32c655['QWiTr'](_0x56ece4,_0x9c12(0x284)+(_0x2b9341 instanceof Error?_0x2b9341[_0x9c12(0x1a3)]:_0x32c655['FNjQy'])),_0x306307(!![]),_0x38204a();}},_0x116cf3=async _0x21b2ac=>{const _0x4d3cf2={'JEUMD':_0x9c12(0x35d)};if(_0x32c655[_0x9c12(0x35e)]===_0x9c12(0x35f))_0x3b8fc5&&((0x0,_0x254cfc[_0x9c12(0x1ed)])(_0x226371[_0x9c12(0x1ee)][_0x9c12(0x1ef)]),_0x39bc99[_0x9c12(0x18)](_0x32c655[_0x9c12(0x360)]),_0x32c655[_0x9c12(0x361)](_0x11078a)[_0x9c12(0x2bf)](_0x11dfd7=>{_0x40d62f['error'](_0x4d3cf2[_0x9c12(0x362)],_0x11dfd7);}),_0x32c655[_0x9c12(0x1b3)](_0x4374a3,_0x32c655[_0x9c12(0x1e2)]));else try{console[_0x9c12(0x18)](_0x32c655[_0x9c12(0x359)]),console['log']('π\x20Using\x20auth\x20token:',(_0x32c655[_0x9c12(0x363)](_0x240165,null)||_0x240165===void 0x0?void 0x0:_0x240165[_0x9c12(0x17c)](0x0,0x14))+'...');if(!_0x53728a)throw new Error(_0x32c655['sqEXE']);console[_0x9c12(0x18)](_0x32c655['xDajC']),console[_0x9c12(0x18)](_0x32c655[_0x9c12(0x364)],_0x53728a),console[_0x9c12(0x18)](_0x32c655[_0x9c12(0x35b)]);}catch(_0xb70926){if(_0x9c12(0x365)===_0x9c12(0x366))_0x59a056['remove']();else{console[_0x9c12(0x14a)](_0x9c12(0x1ff),_0xb70926);throw _0xb70926;}}},_0x58b919=async()=>{const _0x832996={'SSnZP':_0x32c655[_0x9c12(0x21e)],'CSuSR':_0x32c655[_0x9c12(0x367)],'bnRol':function(_0x14667e){return _0x32c655[_0x9c12(0x2ef)](_0x14667e);},'vyNzF':_0x32c655[_0x9c12(0x368)],'mmMgC':function(_0x1798b2,_0xcf61be){return _0x32c655['hfNYR'](_0x1798b2,_0xcf61be);},'nWwcT':_0x32c655[_0x9c12(0x2b6)],'SzfrW':function(_0x37b352,_0x2467c9){return _0x32c655['TXbjg'](_0x37b352,_0x2467c9);},'iWHho':_0x32c655[_0x9c12(0x369)],'wcgUs':_0x9c12(0x36a),'fjRCT':_0x32c655[_0x9c12(0x36b)],'Sbgfj':'Running\x20test\x20inference','DyKhO':_0x32c655[_0x9c12(0x36c)],'CtQku':_0x32c655['kxMby'],'umCLq':_0x32c655['dtZLp'],'zgMYh':function(_0x23598e,_0x80f5d0){return _0x23598e(_0x80f5d0);},'NoKBX':_0x32c655['HxpoF'],'ImBqF':function(_0x3af1aa,_0x250146){return _0x32c655[_0x9c12(0x36d)](_0x3af1aa,_0x250146);},'ChiMW':'π\x20Attempting\x20to\x20refresh\x20YouTube\x20tokens...','BBXBp':function(_0x42357f,_0x4231e4){return _0x42357f(_0x4231e4);},'KSgOy':_0x32c655['HjFgj'],'FUUGb':_0x32c655['lXnmq'],'afqYu':_0x32c655[_0x9c12(0x36e)],'DkkVU':function(_0x1c5308,_0x2cbc44){return _0x32c655[_0x9c12(0x325)](_0x1c5308,_0x2cbc44);},'aTDCy':function(_0x16b421){return _0x32c655['aDVtw'](_0x16b421);},'wDEkI':function(_0x2d1eb0,_0x538cb7){return _0x2d1eb0(_0x538cb7);},'xDhtz':_0x9c12(0xf7),'WXvoL':_0x32c655['VsOAU'],'KjMVF':_0x32c655[_0x9c12(0x36f)],'CFhgA':function(_0x5d902e,_0x567025){return _0x5d902e(_0x567025);},'hzQzd':function(_0x28c99d,_0x11f1e2){return _0x32c655[_0x9c12(0x370)](_0x28c99d,_0x11f1e2);},'yvzxv':_0x32c655[_0x9c12(0x371)],'kQrpP':_0x32c655['vAqxY'],'COTJV':_0x32c655[_0x9c12(0x372)],'IbOTH':function(_0x4b45bd){return _0x32c655[_0x9c12(0x373)](_0x4b45bd);},'pvGCa':function(_0x36031c,_0xa73de8){return _0x32c655[_0x9c12(0x374)](_0x36031c,_0xa73de8);},'yBxTy':_0x9c12(0x66),'WiNUz':function(_0x497716,_0x105745){return _0x497716===_0x105745;},'qwOao':_0x32c655[_0x9c12(0x375)],'rHnPe':_0x32c655[_0x9c12(0x376)],'TDjKy':_0x9c12(0x377),'hONcn':function(_0x4a1136,_0x219976){return _0x32c655['tSbRG'](_0x4a1136,_0x219976);},'vTSaH':_0x32c655[_0x9c12(0x378)],'Rygdq':_0x9c12(0x379),'cuXtY':function(_0x22f2cf,_0x154352){return _0x32c655[_0x9c12(0x2e4)](_0x22f2cf,_0x154352);},'JDunM':function(_0x54a9ae,_0x25642f){return _0x32c655[_0x9c12(0x37a)](_0x54a9ae,_0x25642f);},'zzqQx':function(_0x2c2992,_0x1d4d6c){return _0x32c655[_0x9c12(0x1a6)](_0x2c2992,_0x1d4d6c);},'JOySB':_0x32c655['uFAOR'],'OjqOJ':_0x32c655[_0x9c12(0x37b)],'VbLVp':_0x32c655[_0x9c12(0x32d)],'FefuS':function(_0x4f7423,_0x193467){return _0x4f7423(_0x193467);},'pDnWt':_0x32c655['iuPEW'],'BAxxY':function(_0x1a06e9,_0x229f9f){return _0x1a06e9(_0x229f9f);},'sulXH':function(_0x3e2e4e,_0x37ca99){return _0x3e2e4e(_0x37ca99);},'QLaJt':function(_0x90a620,_0x32d0d6){return _0x32c655['iWdMT'](_0x90a620,_0x32d0d6);},'QDddX':_0x32c655[_0x9c12(0x37c)],'yIqjt':_0x9c12(0x37d),'hMnAO':function(_0x957d94,_0x270961){return _0x32c655['dwPmD'](_0x957d94,_0x270961);},'hDhOk':function(_0x33eec5,_0x5b2ba9){return _0x32c655['KofYk'](_0x33eec5,_0x5b2ba9);},'VzbzT':function(_0x22af36,_0xa2e104){return _0x32c655['THNMM'](_0x22af36,_0xa2e104);},'uXyzT':function(_0x442f6e,_0xc4e35){return _0x32c655[_0x9c12(0x206)](_0x442f6e,_0xc4e35);},'CAMGx':_0x9c12(0xfa),'ATmfN':function(_0x526dd8,_0x51ccfb){return _0x526dd8===_0x51ccfb;},'wBflT':_0x32c655[_0x9c12(0x37e)],'kKyGN':_0x32c655[_0x9c12(0x37f)],'oIhqf':_0x32c655[_0x9c12(0x380)],'SHPXT':function(_0x346e0e){return _0x32c655[_0x9c12(0x381)](_0x346e0e);},'jQkAl':function(_0x2db6f7,_0x36ad43){return _0x32c655['NavLr'](_0x2db6f7,_0x36ad43);}};if(_0x32c655[_0x9c12(0x382)](_0x32c655['UPGfG'],_0x32c655['UPGfG'])){_0x21beea(0x0),_0x56ece4(_0x9c12(0x383)),_0x32c655[_0x9c12(0x251)](_0x35e131,![]),_0x32c655[_0x9c12(0x384)](_0x306307,![]),_0x3bcdf7();try{if(_0x32c655['XKDvc']===_0x32c655[_0x9c12(0x385)]){var _0x163569;console[_0x9c12(0x18)](_0x32c655[_0x9c12(0x386)]),console[_0x9c12(0x18)](_0x9c12(0x387));const _0x57181c=await _0x32c655[_0x9c12(0x373)](_0x959788);if(!_0x57181c)throw new Error(_0x32c655[_0x9c12(0x388)]);_0x32c655[_0x9c12(0x2e7)](_0x53409b,_0x57181c),console['log'](_0x9c12(0x389),_0x57181c[_0x9c12(0x17c)](0x0,0x14)+_0x9c12(0x1ad)),console['log']('π\x20Token\x20length:',_0x57181c['length']);const _0xe798d7=await(0x0,_jwtStorageService[_0x9c12(0x1bb)])();console['log'](_0x32c655[_0x9c12(0x38a)],_0xe798d7?_0xe798d7['substring'](0x0,0x14)+_0x9c12(0x1ad):_0x32c655[_0x9c12(0x38b)]);if(!_0x38dbfb){var _0x218940;console['log'](_0x32c655[_0x9c12(0x38c)]);const _0x37efba=await(0x0,_authService[_0x9c12(0x1c4)])(),_0x4f394e=_0x37efba||(_0x32c655[_0x9c12(0x2c0)](_0x25ceb6,null)||_0x32c655[_0x9c12(0x260)](_0x25ceb6,void 0x0)||_0x32c655[_0x9c12(0x38d)](_0x218940=_0x25ceb6['email'],null)||_0x218940===void 0x0?void 0x0:_0x218940[_0x9c12(0x1b7)]('@')[0x0])||(_0x25ceb6===null||_0x32c655[_0x9c12(0x38e)](_0x25ceb6,void 0x0)?void 0x0:_0x25ceb6[_0x9c12(0x1c7)])||_0x9c12(0xc3),_0x52b800={'username':_0x4f394e,'email':(_0x25ceb6===null||_0x32c655[_0x9c12(0x38f)](_0x25ceb6,void 0x0)?void 0x0:_0x25ceb6['email'])||null,'id':null};_0x32c655[_0x9c12(0x390)](_0x16a791,_0x52b800),_0x3c37d5(_0x4f394e),console[_0x9c12(0x18)](_0x9c12(0x391),_0x52b800),await new Promise(_0x5f1421=>setTimeout(()=>_0x5f1421(),0xc8));}const _0x2791e1=_0x32c655[_0x9c12(0x392)](_0x38dbfb,{'username':_0x4a0a9a||(_0x32c655[_0x9c12(0x346)](_0x25ceb6,null)||_0x25ceb6===void 0x0||_0x32c655[_0x9c12(0x393)](_0x163569=_0x25ceb6['email'],null)||_0x32c655['MiDgh'](_0x163569,void 0x0)?void 0x0:_0x163569[_0x9c12(0x1b7)]('@')[0x0])||(_0x32c655[_0x9c12(0x394)](_0x25ceb6,null)||_0x32c655[_0x9c12(0x395)](_0x25ceb6,void 0x0)?void 0x0:_0x25ceb6[_0x9c12(0x1c7)])||_0x32c655[_0x9c12(0x347)],'email':(_0x32c655[_0x9c12(0x2b4)](_0x25ceb6,null)||_0x32c655[_0x9c12(0x2b8)](_0x25ceb6,void 0x0)?void 0x0:_0x25ceb6['email'])||null,'id':null});if(!_0x57181c){console['error'](_0x32c655['Pixgv']);throw new Error(_0x9c12(0x65));}console[_0x9c12(0x18)](_0x32c655[_0x9c12(0x396)]),console[_0x9c12(0x18)](_0x32c655[_0x9c12(0x397)],_0x2791e1),console[_0x9c12(0x18)](_0x32c655[_0x9c12(0x398)],!!_0x57181c),console[_0x9c12(0x18)](_0x9c12(0x399)),console[_0x9c12(0x18)](_0x32c655['ziCgv'],_reactNative[_0x9c12(0x39a)]['OS']),console[_0x9c12(0x18)](_0x9c12(0x39b)),_0x56ece4(_0x32c655[_0x9c12(0x39c)]),_0x32c655[_0x9c12(0x39d)](_0x21beea,0x5),_0x15891e['current']=(0x0,_socket['io'])(_api['API_CONFIG']['BASE_URL'],{'transports':[_0x32c655[_0x9c12(0x39e)],_0x32c655[_0x9c12(0x39f)]],'autoConnect':![],'timeout':0x3a98,'reconnection':!![],'reconnectionAttempts':0x3,'reconnectionDelay':0x3e8,'forceNew':!![]}),console[_0x9c12(0x18)](_0x32c655[_0x9c12(0x3a0)],{'connected':_0x15891e[_0x9c12(0x17e)][_0x9c12(0x49)],'id':_0x15891e['current']['id'],'disconnected':_0x15891e['current']['disconnected']}),_0x15891e[_0x9c12(0x17e)]['on'](_0x9c12(0x323),()=>{const _0x352e9b={'wdcda':'π\x20Socket\x20reconnection\x20attempt:','VhKpn':function(_0x46d046,_0x589d3c){return _0x32c655['pkpQU'](_0x46d046,_0x589d3c);}};var _0x144569,_0x216902,_0x1d2835,_0x4dc862;console['log'](_0x9c12(0x3a1)),console[_0x9c12(0x18)](_0x32c655[_0x9c12(0x3a2)],{'id':_0x32c655['UANbA'](_0x144569=_0x15891e[_0x9c12(0x17e)],null)||_0x32c655['GPPTx'](_0x144569,void 0x0)?void 0x0:_0x144569['id'],'connected':_0x32c655[_0x9c12(0x2f4)](_0x216902=_0x15891e[_0x9c12(0x17e)],null)||_0x32c655['qNOcn'](_0x216902,void 0x0)?void 0x0:_0x216902[_0x9c12(0x49)],'transport':_0x32c655[_0x9c12(0x3a3)](_0x1d2835=_0x15891e[_0x9c12(0x17e)],null)||_0x32c655[_0x9c12(0x393)](_0x1d2835,void 0x0)||_0x32c655[_0x9c12(0x348)](_0x1d2835=_0x1d2835['io'],null)||_0x32c655['iCfJv'](_0x1d2835,void 0x0)||_0x32c655[_0x9c12(0x3a4)](_0x1d2835=_0x1d2835[_0x9c12(0x3a5)],null)||_0x1d2835===void 0x0||_0x32c655[_0x9c12(0x33c)](_0x1d2835=_0x1d2835[_0x9c12(0x3a6)],null)||_0x32c655[_0x9c12(0x3a7)](_0x1d2835,void 0x0)?void 0x0:_0x1d2835['name']}),_0x32c655[_0x9c12(0x3a8)](_0xd3768c,!![]),_0x32c655['zUxTw'](_0x56ece4,_0x9c12(0x3a9)),_0x32c655[_0x9c12(0x1b3)](_0x21beea,0xa);const _0x53997b=_0x32c655[_0x9c12(0x3aa)](_0x4dc862=_0x15891e['current'],null)||_0x32c655[_0x9c12(0x135)](_0x4dc862,void 0x0)?void 0x0:_0x4dc862['id'];console[_0x9c12(0x18)](_0x9c12(0x3ab),_0x53997b),_0x53997b?_0x32c655[_0x9c12(0x135)](_0x32c655[_0x9c12(0x3ac)],_0x32c655[_0x9c12(0x3ad)])?(_0x328bcd['log'](_0x352e9b[_0x9c12(0x3ae)],_0x473f36),_0x352e9b['VhKpn'](_0x42c187,_0x9c12(0x3af)+_0x22e5a1+_0x9c12(0x3b0))):(console[_0x9c12(0x18)](_0x32c655[_0x9c12(0x290)],_0x57181c?_0x57181c[_0x9c12(0x17c)](0x0,0x14)+_0x9c12(0x1ad):_0x32c655['AICgz']),console[_0x9c12(0x18)](_0x9c12(0x3b1)),_0x32c655[_0x9c12(0x3b2)](_0x56ece4,_0x9c12(0x3b3))):(console[_0x9c12(0x14a)](_0x32c655[_0x9c12(0x2b5)]),_0x32c655[_0x9c12(0x3b4)](_0x56ece4,_0x32c655[_0x9c12(0x2b6)]),_0x306307(!![]),_0x32c655['kBgjX'](_0x38204a));}),_0x15891e[_0x9c12(0x17e)]['on'](_0x32c655[_0x9c12(0x3b5)],_0x2ee12f=>{var _0xb77849;console[_0x9c12(0x18)](_0x9c12(0xb8),_0x2ee12f),console[_0x9c12(0x18)](_0x32c655['zTzOd'],{'reason':_0x2ee12f,'wasConnected':_0x4c1326,'socketId':_0x32c655[_0x9c12(0x1c5)](_0xb77849=_0x15891e[_0x9c12(0x17e)],null)||_0x32c655['VHYuN'](_0xb77849,void 0x0)?void 0x0:_0xb77849['id']}),_0x32c655[_0x9c12(0x2dc)](_0xd3768c,![]);}),_0x15891e[_0x9c12(0x17e)]['on'](_0x32c655[_0x9c12(0x3b6)],_0x5cfd8b=>{console[_0x9c12(0x18)](_0x9c12(0x3b7),_0x5cfd8b,_0x832996['SSnZP']),_0xd3768c(!![]);}),_0x15891e[_0x9c12(0x17e)]['on'](_0x32c655[_0x9c12(0x3b8)],_0x15e377=>{console[_0x9c12(0x18)](_0x32c655['ooKko'],_0x15e377),_0x32c655[_0x9c12(0x3b9)](_0x56ece4,_0x9c12(0x3af)+_0x15e377+_0x9c12(0x3b0));}),_0x15891e['current']['on'](_0x32c655[_0x9c12(0x3ba)],_0x42d8af=>{console[_0x9c12(0x14a)](_0x32c655[_0x9c12(0x3bb)],_0x42d8af);}),_0x15891e['current']['on'](_0x32c655[_0x9c12(0x3bc)],()=>{console[_0x9c12(0x14a)](_0x32c655[_0x9c12(0x2ed)]),_0x32c655[_0x9c12(0x370)](_0x56ece4,_0x32c655[_0x9c12(0x2ee)]),_0x32c655[_0x9c12(0x2e7)](_0x306307,!![]),_0x32c655['WqYuE'](_0x38204a);}),_0x15891e['current']['on'](_0x9c12(0x3bd),_0x57da69=>{const _0x3627dd=_0x832996[_0x9c12(0x3be)][_0x9c12(0x1b7)]('|');let _0x1f6383=0x0;while(!![]){switch(_0x3627dd[_0x1f6383++]){case'0':console[_0x9c12(0x14a)]('β\x20Socket\x20error\x20details:',{'message':_0x57da69['message'],'name':_0x57da69[_0x9c12(0x1c7)],'stack':_0x57da69[_0x9c12(0x3bf)],'errorObject':_0x57da69});continue;case'1':_0x832996[_0x9c12(0x3c0)](_0x38204a);continue;case'2':console[_0x9c12(0x14a)](_0x832996['vyNzF'],_0x57da69);continue;case'3':_0x832996['mmMgC'](_0x306307,!![]);continue;case'4':_0x832996[_0x9c12(0x3c1)](_0x56ece4,_0x832996[_0x9c12(0x3c2)]);continue;}break;}}),_0x15891e[_0x9c12(0x17e)]['on']('trainingCompleted',_0x4b3ad2=>{_0x832996['SzfrW'](_0x832996[_0x9c12(0x3c3)],_0x832996[_0x9c12(0x3c4)])?_0x53126b[_0x9c12(0x17e)]=_0x143758:(console[_0x9c12(0x18)](_0x832996[_0x9c12(0x3c5)],_0x4b3ad2),_0x832996[_0x9c12(0x3c1)](_0x56ece4,_0x832996[_0x9c12(0x3c6)]),_0x832996[_0x9c12(0x3c1)](_0x21beea,0x3c));}),_0x15891e[_0x9c12(0x17e)]['on'](_0x32c655[_0x9c12(0x3c7)],_0x36c70e=>{if(_0x832996['DyKhO']!==_0x832996[_0x9c12(0x3c8)])return _0x89f636&&_0x3432b4['__esModule']?_0x609e90:{'default':_0x1d745a};else{const _0x5827b5=_0x832996['CtQku'][_0x9c12(0x1b7)]('|');let _0x26bb58=0x0;while(!![]){switch(_0x5827b5[_0x26bb58++]){case'0':console[_0x9c12(0x18)](_0x832996[_0x9c12(0x3c9)],_0x36c70e);continue;case'1':_0x832996[_0x9c12(0x3ca)](_0x171d04,_0x36c70e[_0x9c12(0x3cb)]);continue;case'2':_0x4ae6bc(_0x36c70e[_0x9c12(0x3cc)]);continue;case'3':_0x56ece4(_0x832996[_0x9c12(0x3cd)]);continue;case'4':_0x832996['ImBqF'](_0x21beea,0x50);continue;}break;}}}),_0x15891e[_0x9c12(0x17e)]['on'](_0x32c655[_0x9c12(0x3ce)],_0x20cb6e=>{console[_0x9c12(0x18)]('π\x20All\x20Complete:',_0x20cb6e),_0x20cb6e[_0x9c12(0x3cf)]&&(console[_0x9c12(0x18)](_0x32c655[_0x9c12(0x3d0)],_0x20cb6e[_0x9c12(0x1a3)]),console['log'](_0x32c655[_0x9c12(0x24d)],_0x20cb6e['storage']),console[_0x9c12(0x18)](_0x32c655[_0x9c12(0x355)],_0x20cb6e['encryption']),console[_0x9c12(0x18)](_0x32c655[_0x9c12(0x3d1)],_0x20cb6e['inference']),_0x20cb6e[_0x9c12(0x278)]&&Array[_0x9c12(0x3d2)](_0x20cb6e[_0x9c12(0x278)])&&(_0x32c655[_0x9c12(0x1a6)](_0x32c655[_0x9c12(0x3d3)],_0x32c655[_0x9c12(0x3d3)])?console['log'](_0x32c655['wFmoh'],_0x20cb6e[_0x9c12(0x278)]['join'](',\x20')):_0x100de8['Animated']['timing'](_0x3970e0,{'toValue':0x1,'duration':0x12c,'useNativeDriver':!![]})[_0x9c12(0x19b)]()),_0x20cb6e[_0x9c12(0x3d4)]&&console[_0x9c12(0x18)](_0x32c655[_0x9c12(0x3d5)])),_0x32c655[_0x9c12(0x3d6)](_0x35e131,!![]),_0x56ece4(_0x32c655['xXfIB']),_0x32c655['gzsxY'](_0x21beea,0x64),_0x32c655[_0x9c12(0x3d7)](_0x38204a);}),_0x15891e[_0x9c12(0x17e)]['on'](_0x32c655[_0x9c12(0x3d8)],_0x4156c6=>{const _0xbd490f={'nNsQG':_0x832996['ChiMW'],'ylqaJ':function(_0xf4780e,_0x86ce71){return _0x832996[_0x9c12(0x3d9)](_0xf4780e,_0x86ce71);},'gqjzj':_0x832996['KSgOy'],'IEkcS':function(_0x1abb30,_0x1b31b7){return _0x832996['BBXBp'](_0x1abb30,_0x1b31b7);},'xRsmh':_0x832996[_0x9c12(0x3da)],'TppiR':function(_0x1a73e8,_0x27983c){return _0x1a73e8(_0x27983c);},'RAviz':_0x832996[_0x9c12(0x3db)],'gwSdE':_0x9c12(0x3dc),'qRvEc':function(_0x4de1c0,_0x35f1be){return _0x832996[_0x9c12(0x3d9)](_0x4de1c0,_0x35f1be);},'qYpGC':function(_0x51fd69,_0x201741){return _0x832996[_0x9c12(0x3dd)](_0x51fd69,_0x201741);},'nHofx':_0x9c12(0x3de),'WDMmi':function(_0x1c70f2){return _0x832996[_0x9c12(0x3df)](_0x1c70f2);},'SzloK':_0x9c12(0xf6),'IQJIv':function(_0x5e7438,_0x1b91b8){return _0x832996['wDEkI'](_0x5e7438,_0x1b91b8);},'QfkMX':_0x832996[_0x9c12(0x3e0)],'KbpWb':function(_0x41e7ff){return _0x832996['bnRol'](_0x41e7ff);}};console[_0x9c12(0x18)](_0x832996[_0x9c12(0x3e1)],_0x4156c6);if(_0x4156c6[_0x9c12(0x14a)]&&_0x4156c6[_0x9c12(0x14a)][_0x9c12(0x14e)](_0x9c12(0x3e2))){console['log'](_0x832996['KjMVF']),_0x832996['CFhgA'](_0x4de8ef,null),_0x832996['hzQzd'](_0x47bcc6,![]),_0x56ece4(_0x832996[_0x9c12(0x3e3)]),setTimeout(async()=>{try{console[_0x9c12(0x18)](_0xbd490f[_0x9c12(0x3e4)]);const _0x42d60a=await(0x0,_platformAuthService[_0x9c12(0x3e5)])();if(_0x42d60a)console[_0x9c12(0x18)](_0x9c12(0x3e6)),_0x56ece4(_0x9c12(0x3e7)),_0xbd490f[_0x9c12(0x3e8)](_0x306307,!![]);else{console[_0x9c12(0x18)](_0xbd490f[_0x9c12(0x3e9)]),_0xbd490f[_0x9c12(0x3ea)](_0x56ece4,_0xbd490f[_0x9c12(0x3eb)]);try{await _0xbd490f[_0x9c12(0x3ec)](_0xdb1c41,_0xbd490f[_0x9c12(0x3ed)]),console[_0x9c12(0x18)](_0xbd490f[_0x9c12(0x3ee)]),_0xbd490f[_0x9c12(0x3ea)](_0x56ece4,_0x9c12(0x3ef)),_0xbd490f[_0x9c12(0x3f0)](_0x306307,!![]);}catch(_0xee1e49){console['error'](_0x9c12(0x2f0),_0xee1e49),_0xbd490f[_0x9c12(0x3f1)](_0x56ece4,_0xbd490f['nHofx']),_0x306307(!![]),_0xbd490f[_0x9c12(0x3f2)](_0x38204a);}}}catch(_0x1fbbe9){console[_0x9c12(0x14a)](_0xbd490f['SzloK'],_0x1fbbe9),_0xbd490f['IQJIv'](_0x56ece4,_0xbd490f[_0x9c12(0x3f3)]),_0xbd490f['qYpGC'](_0x306307,!![]),_0xbd490f[_0x9c12(0x3f4)](_0x38204a);}},0x3e8);return;}if(_0x4156c6['requiresConnections']||_0x832996['SzfrW'](_0x4156c6[_0x9c12(0xb5)],_0x832996[_0x9c12(0x3f5)])){const _0x44fa8d=_0x832996['COTJV'][_0x9c12(0x1b7)]('|');let _0x60af=0x0;while(!![]){switch(_0x44fa8d[_0x60af++]){case'0':_0x832996['ImBqF'](_0x5ec8b5,_0x4156c6);continue;case'1':_0x832996[_0x9c12(0x3c1)](_0x47bcc6,!![]);continue;case'2':_0x832996[_0x9c12(0x3f6)](_0x38204a);continue;case'3':_0x832996[_0x9c12(0x3f7)](_0x4de8ef,_0x832996[_0x9c12(0x3f5)]);continue;case'4':_0x832996[_0x9c12(0x3f8)](_0x56ece4,_0x832996[_0x9c12(0x3f9)]);continue;case'5':_0x832996[_0x9c12(0x3c1)](_0x306307,!![]);continue;case'6':return;case'7':console[_0x9c12(0x18)](_0x9c12(0x3fa));continue;}break;}}if(_0x4156c6[_0x9c12(0xb5)]==='NO_DATA'){if(_0x832996[_0x9c12(0x3fb)](_0x9c12(0x3fc),_0x832996[_0x9c12(0x3fd)])){const _0x4e637c=_0x832996[_0x9c12(0x3fe)]['split']('|');let _0x31b100=0x0;while(!![]){switch(_0x4e637c[_0x31b100++]){case'0':_0x832996[_0x9c12(0x3d9)](_0x4de8ef,_0x832996['TDjKy']);continue;case'1':_0x832996[_0x9c12(0x3df)](_0x38204a);continue;case'2':return;case'3':_0x832996[_0x9c12(0x3ca)](_0x47bcc6,!![]);continue;case'4':_0x832996[_0x9c12(0x3ff)](_0x56ece4,_0x832996[_0x9c12(0x400)]);continue;case'5':console[_0x9c12(0x18)](_0x832996[_0x9c12(0x401)]);continue;case'6':_0x832996['pvGCa'](_0x5ec8b5,_0x4156c6[_0x9c12(0x335)]);continue;case'7':_0x832996[_0x9c12(0x402)](_0x306307,!![]);continue;}break;}}else _0x45d8e5['email']=_0x5ebe3d,_0x5dc785['username']=_0xd7c9f||_0x92f015['split']('@')[0x0];}if(_0x832996[_0x9c12(0x403)](_0x4156c6['code'],'LIMITED_DATA')){if(_0x832996['zzqQx']('uUbwd',_0x9c12(0x404)))throw new _0x321efd(_0x9c12(0x30b)+_0x4ce0e0['message']);else{const _0x35865a=_0x832996[_0x9c12(0x405)][_0x9c12(0x1b7)]('|');let _0x57b6c5=0x0;while(!![]){switch(_0x35865a[_0x57b6c5++]){case'0':return;case'1':console['log'](_0x832996[_0x9c12(0x406)]);continue;case'2':_0x832996[_0x9c12(0x3f7)](_0x47bcc6,!![]);continue;case'3':_0x832996[_0x9c12(0x407)](_0x56ece4,_0x9c12(0xba));continue;case'4':_0x832996[_0x9c12(0x407)](_0x4de8ef,_0x832996['VbLVp']);continue;case'5':_0x832996[_0x9c12(0x408)](_0x5ec8b5,_0x4156c6[_0x9c12(0x335)]);continue;}break;}}}if(_0x4156c6[_0x9c12(0x14a)])console[_0x9c12(0x14a)](_0x832996[_0x9c12(0x409)],_0x4156c6[_0x9c12(0x14a)]),_0x56ece4(_0x9c12(0x284)+_0x4156c6[_0x9c12(0x14a)]),_0x832996[_0x9c12(0x40a)](_0x306307,!![]),_0x38204a();else _0x4156c6[_0x9c12(0x40b)]&&(_0x832996[_0x9c12(0x40c)](_0x21beea,_0x4156c6[_0x9c12(0x40b)]),_0x832996[_0x9c12(0x40d)](_0x56ece4,_0x4156c6[_0x9c12(0x268)]||_0x832996[_0x9c12(0x40e)]),_0x37b174&&_0x4156c6[_0x9c12(0x40b)]>0x1e&&_0x47bcc6(![]));}),console['log'](_0x32c655['RnERG']),console[_0x9c12(0x18)](_0x32c655['RAmQi'],{'url':_api[_0x9c12(0x158)][_0x9c12(0x228)],'transports':[_0x9c12(0xed)],'autoConnect':![],'timeout':0x2710,'reconnection':![]}),_0x15891e[_0x9c12(0x17e)][_0x9c12(0x323)](),console[_0x9c12(0x18)](_0x9c12(0x40f)),setTimeout(()=>{var _0x6d0bdf,_0x277978,_0x1e6956,_0x42ac5c;console[_0x9c12(0x18)](_0x832996['yIqjt'],{'connected':(_0x6d0bdf=_0x15891e['current'])===null||_0x832996['hMnAO'](_0x6d0bdf,void 0x0)?void 0x0:_0x6d0bdf[_0x9c12(0x49)],'disconnected':(_0x277978=_0x15891e[_0x9c12(0x17e)])===null||_0x832996[_0x9c12(0x403)](_0x277978,void 0x0)?void 0x0:_0x277978['disconnected'],'id':_0x832996[_0x9c12(0x410)](_0x1e6956=_0x15891e[_0x9c12(0x17e)],null)||_0x1e6956===void 0x0?void 0x0:_0x1e6956['id'],'engineConnected':_0x832996[_0x9c12(0x410)](_0x42ac5c=_0x15891e['current'],null)||_0x42ac5c===void 0x0||_0x832996['VzbzT'](_0x42ac5c=_0x42ac5c['io'],null)||_0x832996[_0x9c12(0x411)](_0x42ac5c,void 0x0)||_0x832996[_0x9c12(0x412)](_0x42ac5c=_0x42ac5c[_0x9c12(0x3a5)],null)||_0x832996[_0x9c12(0x403)](_0x42ac5c,void 0x0)?void 0x0:_0x42ac5c[_0x9c12(0x413)]});},0x3e8),setTimeout(()=>{var _0x231d28,_0x508169,_0x3ce579,_0xfa78f;console[_0x9c12(0x18)](_0x32c655[_0x9c12(0x414)],{'connected':_0x32c655[_0x9c12(0x22a)](_0x231d28=_0x15891e['current'],null)||_0x32c655[_0x9c12(0x206)](_0x231d28,void 0x0)?void 0x0:_0x231d28[_0x9c12(0x49)],'disconnected':(_0x508169=_0x15891e[_0x9c12(0x17e)])===null||_0x508169===void 0x0?void 0x0:_0x508169[_0x9c12(0x4a)],'id':_0x32c655[_0x9c12(0x415)](_0x3ce579=_0x15891e[_0x9c12(0x17e)],null)||_0x32c655[_0x9c12(0x37a)](_0x3ce579,void 0x0)?void 0x0:_0x3ce579['id'],'engineConnected':_0x32c655[_0x9c12(0x416)](_0xfa78f=_0x15891e[_0x9c12(0x17e)],null)||_0x32c655[_0x9c12(0x195)](_0xfa78f,void 0x0)||_0x32c655['CucAY'](_0xfa78f=_0xfa78f['io'],null)||_0x32c655[_0x9c12(0x415)](_0xfa78f,void 0x0)||_0x32c655['JRKzK'](_0xfa78f=_0xfa78f[_0x9c12(0x3a5)],null)||_0x32c655[_0x9c12(0x417)](_0xfa78f,void 0x0)?void 0x0:_0xfa78f['readyState']});},0x1388),_0x32c655[_0x9c12(0x196)](setTimeout,()=>{const _0x3ede35={'DkKue':function(_0x564082,_0x12b2a0){return _0x564082(_0x12b2a0);}};!_0x4c1326&&_0x15891e['current']&&!_0x15891e['current']['connected']&&(_0x832996[_0x9c12(0x418)]('aLsDb',_0x832996[_0x9c12(0x419)])?(console[_0x9c12(0x14a)]('β\x20Socket\x20connection\x20timeout\x20after\x2020\x20seconds'),console[_0x9c12(0x14a)](_0x832996[_0x9c12(0x41a)],{'connected':_0x15891e[_0x9c12(0x17e)]['connected'],'disconnected':_0x15891e['current']['disconnected'],'id':_0x15891e[_0x9c12(0x17e)]['id']}),_0x832996[_0x9c12(0x3c1)](_0x56ece4,_0x832996[_0x9c12(0x41b)]),_0x832996[_0x9c12(0x3f8)](_0x306307,!![]),_0x832996['SHPXT'](_0x38204a),_0x15891e[_0x9c12(0x17e)]&&('Gjdfg'===_0x9c12(0x41c)?(_0x15891e['current']['disconnect'](),_0x15891e[_0x9c12(0x17e)]=null):_0x46dac7=_0x832996[_0x9c12(0x41d)])):_0x3ede35['DkKue'](_0x597f24,''));},0x4e20);}else{const _0x3cecf4=_0x32c655[_0x9c12(0x41e)]['split']('|');let _0x275c78=0x0;while(!![]){switch(_0x3cecf4[_0x275c78++]){case'0':_0x32c655[_0x9c12(0x32e)](_0xcd3bc0,_0x32c655[_0x9c12(0x22d)]);continue;case'1':return;case'2':_0x32c655[_0x9c12(0x41f)](_0x452fab,!![]);continue;case'3':_0xe1ec41();continue;case'4':_0x126e8c(_0x32c655[_0x9c12(0x22e)]);continue;case'5':_0x5b97da[_0x9c12(0x18)](_0x32c655[_0x9c12(0x34e)]);continue;case'6':_0x32c655[_0x9c12(0x420)](_0x17654b,_0x3fdbab);continue;case'7':_0x32c655[_0x9c12(0x306)](_0x36adac,!![]);continue;}break;}}}catch(_0xfafa8b){console['error']('β\x20Error\x20in\x20startPersonaCreation:',_0xfafa8b),_0x32c655[_0x9c12(0x1a2)](_0x56ece4,_0x32c655[_0x9c12(0x421)]),_0x32c655[_0x9c12(0x340)](_0x306307,!![]),_0x32c655[_0x9c12(0x422)](_0x38204a);}}else _0x832996[_0x9c12(0x423)](_0x3b5ac1,_0x25a79b['current']);},_0x4900f6=_0x2212f5=>{const _0x575c00={'sNzkp':_0x32c655[_0x9c12(0x424)],'vrWwe':_0x9c12(0xd1),'ELzJH':_0x32c655[_0x9c12(0x3d5)],'plGcJ':_0x9c12(0xd2),'eBQNi':_0x32c655['tMgSe']};if(_0x44a871)return _0x9c12(0x425);if(_0x5a8eca)return _0x9c12(0x426);let _0x40257f='';if(_0x2212f5<0x14)_0x32c655[_0x9c12(0x427)](_0x32c655[_0x9c12(0x428)],_0x32c655[_0x9c12(0x428)])?(_0x4a9fca[_0x9c12(0x14a)](_0x32c655[_0x9c12(0x429)],_0x3475cb),_0x2d2208(_0x32c655[_0x9c12(0x42a)]),_0x32c655[_0x9c12(0x384)](_0x5bc729,!![]),_0x56d1c7()):_0x40257f=_0x32c655[_0x9c12(0x42b)];else{if(_0x32c655[_0x9c12(0x42c)](_0x2212f5,0x28))_0x40257f=_0x32c655[_0x9c12(0x42d)];else{if(_0x32c655[_0x9c12(0x42c)](_0x2212f5,0x3c)){if(_0x32c655[_0x9c12(0x1ce)](_0x32c655[_0x9c12(0x42e)],_0x9c12(0xfb)))_0x40257f=_0x32c655['oascT'];else{const _0x4bf76f=_0x575c00[_0x9c12(0x42f)]['split']('|');let _0x38a3fe=0x0;while(!![]){switch(_0x4bf76f[_0x38a3fe++]){case'0':_0x2a1b43['databases']&&_0x43bcb7['isArray'](_0xcc8930[_0x9c12(0x278)])&&_0x1e1bd4[_0x9c12(0x18)](_0x9c12(0xa3),_0x4517d4['databases'][_0x9c12(0x2f8)](',\x20'));continue;case'1':_0x15324b['log'](_0x575c00[_0x9c12(0x430)],_0x42c9c2[_0x9c12(0x1a3)]);continue;case'2':_0x2194c0[_0x9c12(0x18)](_0x9c12(0x6e),_0x2cad55[_0x9c12(0x31e)]);continue;case'3':_0x1cfc29[_0x9c12(0x3d4)]&&_0x215a97[_0x9c12(0x18)](_0x575c00[_0x9c12(0x431)]);continue;case'4':_0x4b2479['log'](_0x575c00[_0x9c12(0x432)],_0x12d16e[_0x9c12(0x31f)]);continue;case'5':_0x1814f4[_0x9c12(0x18)](_0x575c00[_0x9c12(0x433)],_0x3cdae8['encryption']);continue;}break;}}}else{if(_0x2212f5<0x50)_0x40257f=_0x32c655[_0x9c12(0x434)];else _0x2212f5<0x5f?_0x40257f=_0x32c655['UZkHx']:_0x40257f=_0x9c12(0x2e5);}}}return _0x32c655['yqWWP'](_0x40257f,_0x1c6212);},_0x195b1b=async()=>{if(_0x32c655[_0x9c12(0x23b)](_0x32c655[_0x9c12(0x435)],_0x32c655[_0x9c12(0x435)])){console[_0x9c12(0x18)](_0x9c12(0x436));_0x15891e[_0x9c12(0x17e)]&&(console[_0x9c12(0x18)](_0x32c655['qWGLt']),_0x15891e['current'][_0x9c12(0x1af)](),_0x15891e[_0x9c12(0x17e)]=null);(0x0,_pinStorageUtils['clearTemporaryPin'])(),_0x1e93a5[_0x9c12(0x17e)]=!![];try{if(_0x32c655[_0x9c12(0x437)]==='YzZgE'){const _0x2ebe88=new _0x41e3f9(_0x271834),_0x3c7f20=_0x2ebe88[_0x9c12(0x1bd)][_0x9c12(0x10)](_0x9c12(0xb5)),_0x3529de=_0x2ebe88[_0x9c12(0x1bd)][_0x9c12(0x10)](_0x32c655['yTHXG'])||_0x30131e;_0x3c7f20&&_0x3529de&&(_0x3a213f(_0x235b50=>({..._0x235b50,[_0x3529de]:{'userName':_0x401f6d,'connected':!![]}})),_0x1263fe(_0x431b7f=>({..._0x431b7f,[_0x3529de]:!![]})),_0x3d0b93(_0x32c655[_0x9c12(0x1b4)]));}else{const _0x6aa344=await(0x0,_jwtStorageService[_0x9c12(0x1bb)])();_0x6aa344?(console[_0x9c12(0x18)](_0x32c655[_0x9c12(0x438)],_0x6aa344[_0x9c12(0x17c)](0x0,0x1e)+_0x9c12(0x1ad)),_0x6475a7===null||_0x32c655[_0x9c12(0x2c0)](_0x6475a7,void 0x0)||_0x32c655[_0x9c12(0x439)](_0x6475a7,_api[_0x9c12(0x158)][_0x9c12(0x228)],_0x6aa344,{'email':(_0x32c655[_0x9c12(0x43a)](_0x38dbfb,null)||_0x32c655[_0x9c12(0x2c0)](_0x38dbfb,void 0x0)?void 0x0:_0x38dbfb[_0x9c12(0x15a)])||'',..._0x38dbfb})):(console[_0x9c12(0x14a)]('β\x20No\x20real\x20authentication\x20token\x20found\x20after\x20training\x20completion'),_0x32c655[_0x9c12(0x37a)](_0x6475a7,null)||_0x6475a7===void 0x0||_0x32c655['BkHQm'](_0x6475a7,_api[_0x9c12(0x158)][_0x9c12(0x228)],_0x32c655[_0x9c12(0x159)],{'email':(_0x32c655[_0x9c12(0x2fc)](_0x38dbfb,null)||_0x32c655['eqqfx'](_0x38dbfb,void 0x0)?void 0x0:_0x38dbfb[_0x9c12(0x15a)])||'',..._0x38dbfb}));}}catch(_0x490df2){console[_0x9c12(0x14a)](_0x9c12(0x22),_0x490df2),_0x32c655[_0x9c12(0x43b)](_0x6475a7,null)||_0x6475a7===void 0x0||_0x32c655['BkHQm'](_0x6475a7,_api[_0x9c12(0x158)][_0x9c12(0x228)],_0x32c655[_0x9c12(0x159)],{'email':(_0x32c655[_0x9c12(0x1a6)](_0x38dbfb,null)||_0x32c655['uPTvz'](_0x38dbfb,void 0x0)?void 0x0:_0x38dbfb[_0x9c12(0x15a)])||'',..._0x38dbfb});}}else _0x3bfbed(_0x2c5e48[_0x9c12(0x40b)]),_0x32c655[_0x9c12(0x43c)](_0x429245,_0x4254f7[_0x9c12(0x268)]||_0x32c655[_0x9c12(0x37c)]),_0x37969a&&_0x32c655[_0x9c12(0x26c)](_0xcacbcd[_0x9c12(0x40b)],0x1e)&&_0x5ae3e9(![]);},_0x959788=async()=>{const _0x25f5f0={'zaKpx':function(_0x273464,_0x8df314,_0x1474c0){return _0x32c655[_0x9c12(0x196)](_0x273464,_0x8df314,_0x1474c0);}};if(_0x32c655[_0x9c12(0x2b0)](_0x32c655[_0x9c12(0x43d)],_0x32c655[_0x9c12(0x43e)]))try{const _0x9e9eba=await(0x0,_jwtStorageService[_0x9c12(0x1bb)])();if(_0x9e9eba&&_0x32c655[_0x9c12(0x26c)](_0x9e9eba[_0x9c12(0x43f)]()[_0x9c12(0x17d)],0x14))return console[_0x9c12(0x18)](_0x32c655['QcDVo'],_0x9e9eba[_0x9c12(0x17c)](0x0,0x14)+_0x9c12(0x1ad)),console[_0x9c12(0x18)](_0x32c655[_0x9c12(0x440)],_0x9e9eba[_0x9c12(0x17d)]),_0x9e9eba;return console[_0x9c12(0x26e)](_0x32c655[_0x9c12(0x441)]),console['warn'](_0x9c12(0x442)),console[_0x9c12(0x26e)](_0x32c655['fjlzw']),null;}catch(_0x4fb871){console['error'](_0x32c655[_0x9c12(0x356)],_0x4fb871);throw _0x4fb871;}else{const _0x4828c9={'uqULD':function(_0x152ac8,_0x10fd9b){return _0x32c655['yIfAc'](_0x152ac8,_0x10fd9b);}},_0x1a512f=_0x3bfe3f[_0x9c12(0x17e)];_0x3542a8[_0x9c12(0x132)]['timing'](_0x8808b7,{'toValue':0x0,'duration':0xfa,'useNativeDriver':!![]})[_0x9c12(0x19b)](()=>{_0x25f5f0['zaKpx'](_0x1dc96a,()=>{_0x4828c9[_0x9c12(0x443)](_0x174268,![]),!_0x1a512f&&_0x5e53bc();},0x64);});}},_0x2cfc04=Object[_0x9c12(0x444)](_0x20891f)['some'](_0x3dda55=>_0x3dda55),_0x1d31b8=()=>{const _0x4f3926={'Rhwic':function(_0x1adf83,_0x5b50a1){return _0x32c655['DsDCl'](_0x1adf83,_0x5b50a1);}};if(_0x32c655[_0x9c12(0x445)]!==_0x9c12(0x446))_0x2cfc04&&((0x0,_haptics[_0x9c12(0x1ed)])(_haptics[_0x9c12(0x1ee)][_0x9c12(0x1ef)]),console['log'](_0x32c655[_0x9c12(0x360)]),_0x32c655[_0x9c12(0x447)](_0x2227a3)[_0x9c12(0x2bf)](_0x1b3725=>{console[_0x9c12(0x14a)]('β\x20[TRANSITION]\x20Background\x20training\x20failed\x20during\x20transition:',_0x1b3725);}),_0x32c655[_0x9c12(0x448)](_0x16a468,_0x32c655[_0x9c12(0x1e2)]));else{var _0x7f689e;_0x25b9a5[_0x13bebe]=((_0x7f689e=_0x5a9853[_0x69af35])===null||_0x4f3926[_0x9c12(0x449)](_0x7f689e,void 0x0)?void 0x0:_0x7f689e[_0x9c12(0x49)])||![];}},_0x2227a3=(0x0,_react['useCallback'])(async()=>{const _0x364f83={'SzlRx':function(_0x3aa76f,_0x133d34){return _0x32c655[_0x9c12(0x44a)](_0x3aa76f,_0x133d34);},'NEQNO':_0x32c655['Lubse'],'bffEL':_0x32c655['mBksZ'],'YMehx':'cHDmU','ghwXo':_0x9c12(0x44b),'NFILh':function(_0x144494,_0x357a71){return _0x32c655[_0x9c12(0x44c)](_0x144494,_0x357a71);},'vMcFM':_0x9c12(0x44d)};try{console[_0x9c12(0x18)](_0x32c655['XJeAg']),_0x32c655['QNCJO'](_0x286f69,_0x32c655['fIzXA']);const _0x23fc56=await _0x32c655[_0x9c12(0x3d7)](_0x959788);if(!_0x23fc56){if(_0x32c655[_0x9c12(0x300)](_0x32c655['jtttt'],_0x9c12(0x44e)))throw new Error(_0x32c655[_0x9c12(0x166)]);else{_0x208bd3[_0x9c12(0x14a)]('β\x20[BACKGROUND]\x20Background\x20training\x20failed:',_0x2aed34),_0x364f83[_0x9c12(0x44f)](_0xbc0d39,'');throw _0x3d88cb;}}console[_0x9c12(0x18)](_0x32c655[_0x9c12(0x450)],_0x23fc56[_0x9c12(0x17c)](0x0,0x14)+_0x9c12(0x1ad)),_0x32c655[_0x9c12(0x306)](_0x53409b,_0x23fc56);if(!_0x38dbfb){var _0x4ff90e;const _0x1c0b97=await(0x0,_authService[_0x9c12(0x1c4)])(),_0x3eecb5=_0x1c0b97||(_0x32c655[_0x9c12(0x167)](_0x25ceb6,null)||_0x25ceb6===void 0x0||(_0x4ff90e=_0x25ceb6['email'])===null||_0x32c655[_0x9c12(0x382)](_0x4ff90e,void 0x0)?void 0x0:_0x4ff90e[_0x9c12(0x1b7)]('@')[0x0])||(_0x32c655['EgESY'](_0x25ceb6,null)||_0x25ceb6===void 0x0?void 0x0:_0x25ceb6['name'])||_0x32c655[_0x9c12(0x347)],_0x54ca12={'username':_0x3eecb5,'email':(_0x32c655['EahwQ'](_0x25ceb6,null)||_0x32c655[_0x9c12(0x451)](_0x25ceb6,void 0x0)?void 0x0:_0x25ceb6[_0x9c12(0x15a)])||null,'id':null};_0x32c655[_0x9c12(0x452)](_0x16a791,_0x54ca12),_0x32c655[_0x9c12(0x44a)](_0x3c37d5,_0x3eecb5),console[_0x9c12(0x18)](_0x32c655[_0x9c12(0x453)],_0x54ca12);}console['log']('π\x20[BACKGROUND]\x20Setting\x20up\x20socket\x20for\x20background\x20training...'),_0x32c655[_0x9c12(0x454)](_0x286f69,_0x32c655['JGVFT']);const _0x322eaf=(0x0,_socket['io'])(_api[_0x9c12(0x158)]['BASE_URL'],{'transports':[_0x32c655[_0x9c12(0x39e)],_0x32c655[_0x9c12(0x39f)]],'autoConnect':![],'timeout':0x3a98,'reconnection':!![],'reconnectionAttempts':0x3,'reconnectionDelay':0x3e8,'forceNew':!![]});_0x322eaf['on'](_0x32c655[_0x9c12(0x1b4)],async()=>{console[_0x9c12(0x18)](_0x32c655['SrJtp']);const _0x5bbf55=_0x322eaf['id'];_0x32c655['kjuhK'](_0x4b76c7,_0x32c655[_0x9c12(0x392)](_0x5bbf55,null)),_0x32c655[_0x9c12(0x455)](_0x286f69,_0x32c655[_0x9c12(0x456)]),_0x5bbf55&&await _0x32c655[_0x9c12(0x196)](_0x148f44,_0x5bbf55,_0x23fc56);}),_0x322eaf['on'](_0x32c655['xAbHQ'],_0x8562bc=>{const _0x992dc8={'jQBlt':function(_0x49d533,_0x157d93){return _0x364f83[_0x9c12(0x44f)](_0x49d533,_0x157d93);},'kqxXK':_0x364f83[_0x9c12(0x457)],'aLBdI':_0x364f83['bffEL']};_0x8562bc[_0x9c12(0x40b)]&&(_0x364f83[_0x9c12(0x458)]!==_0x364f83[_0x9c12(0x459)]?(_0x364f83[_0x9c12(0x45a)](_0x286f69,_0x8562bc['status']||_0x364f83[_0x9c12(0x457)]),console['log'](_0x364f83[_0x9c12(0x45b)],_0x8562bc[_0x9c12(0x40b)],'%')):_0x47b707[_0x9c12(0x40b)]&&(_0x992dc8['jQBlt'](_0xd9c49b,_0x33c4b7[_0x9c12(0x268)]||_0x992dc8[_0x9c12(0x45c)]),_0x4a8316[_0x9c12(0x18)](_0x992dc8['aLBdI'],_0x227497[_0x9c12(0x40b)],'%')));}),_0x322eaf['on'](_0x32c655[_0x9c12(0x3b5)],()=>{console[_0x9c12(0x18)](_0x364f83['vMcFM']);}),_0x15891e[_0x9c12(0x17e)]=_0x322eaf,_0x322eaf['connect'](),console['log'](_0x32c655[_0x9c12(0x45d)]);}catch(_0xcae9a0){console['error'](_0x32c655['YqzNq'],_0xcae9a0),_0x32c655['QfTyK'](_0x286f69,'');throw _0xcae9a0;}},[_0x38dbfb,_0x4a0a9a,_0x25ceb6]),_0x148f44=async(_0x37a364,_0x1f802d)=>{if(_0x32c655['AGreq']!==_0x32c655[_0x9c12(0x45e)])_0x3f6eb7[_0x9c12(0x14a)](_0x32c655[_0x9c12(0x3bb)],_0x162317);else try{console[_0x9c12(0x18)](_0x32c655[_0x9c12(0x45f)],_0x37a364),console[_0x9c12(0x18)](_0x32c655[_0x9c12(0x1fe)],_0x1f802d[_0x9c12(0x17c)](0x0,0x14)+_0x9c12(0x1ad));const _0xc70b5c={'socketId':_0x37a364,'username':(_0x32c655['jJtLp'](_0x38dbfb,null)||_0x38dbfb===void 0x0?void 0x0:_0x38dbfb['username'])||(_0x32c655['RhSUD'](_0x38dbfb,null)||_0x32c655[_0x9c12(0x460)](_0x38dbfb,void 0x0)?void 0x0:_0x38dbfb[_0x9c12(0x1c7)])||_0x4a0a9a||_0x32c655[_0x9c12(0x347)],'email':(_0x32c655['FMLXb'](_0x38dbfb,null)||_0x32c655[_0x9c12(0x461)](_0x38dbfb,void 0x0)?void 0x0:_0x38dbfb[_0x9c12(0x15a)])||null,'modelKey':null,'connectedPlatforms':[],'platformConnections':{}};console[_0x9c12(0x18)](_0x9c12(0x462),_0xc70b5c);const _0x56016f=await(0x0,_mobileTrainingService[_0x9c12(0x463)])(_0xc70b5c);console[_0x9c12(0x18)](_0x32c655['QTsyW'],_0x56016f);if(_0x56016f[_0x9c12(0x34b)]||_0x32c655[_0x9c12(0x464)](_0x56016f[_0x9c12(0xb5)],_0x32c655[_0x9c12(0x22d)])){console[_0x9c12(0x18)](_0x9c12(0x465)),_0x32c655['CdCDF'](_0x4de8ef,_0x9c12(0x34f)),_0x32c655[_0x9c12(0x466)](_0x5ec8b5,_0x56016f),_0x32c655[_0x9c12(0x467)](_0x47bcc6,!![]),_0x56ece4(_0x32c655[_0x9c12(0x22e)]),_0x32c655[_0x9c12(0x468)](_0x306307,!![]),_0x38204a();return;}if(_0x56016f['success']){console['log'](_0x9c12(0x469),_0x56016f[_0x9c12(0x1a3)]),console['log'](_0x32c655[_0x9c12(0x46a)],_0x56016f['features']),_0x32c655[_0x9c12(0x46b)](_0x69f14a,!![]);if(_0x56016f[_0x9c12(0x276)]){const _0x323139=_0x32c655[_0x9c12(0x46c)][_0x9c12(0x1b7)]('|');let _0x35cc68=0x0;while(!![]){switch(_0x323139[_0x35cc68++]){case'0':console[_0x9c12(0x18)](_0x9c12(0xc8),_0x56016f['features']['type']);continue;case'1':console[_0x9c12(0x18)]('π\x20Encryption\x20enabled:',_0x56016f[_0x9c12(0x276)]['encryption']);continue;case'2':console[_0x9c12(0x18)](_0x32c655[_0x9c12(0x354)],_0x56016f[_0x9c12(0x276)]['databases']);continue;case'3':console[_0x9c12(0x18)](_0x32c655[_0x9c12(0x24e)],_0x56016f[_0x9c12(0x276)][_0x9c12(0x31f)]);continue;case'4':console[_0x9c12(0x18)](_0x9c12(0x6e),_0x56016f[_0x9c12(0x276)][_0x9c12(0x31e)]);continue;case'5':console[_0x9c12(0x18)](_0x32c655[_0x9c12(0x31c)],_0x56016f[_0x9c12(0x276)][_0x9c12(0x31d)]);continue;case'6':console[_0x9c12(0x18)](_0x9c12(0x70),_0x56016f[_0x9c12(0x276)][_0x9c12(0x27b)]);continue;}break;}}_0x56ece4(_0x32c655[_0x9c12(0x46d)]),_0x32c655[_0x9c12(0x270)](_0x21beea,0x19);}else _0x32c655[_0x9c12(0x2b0)](_0x32c655[_0x9c12(0x46e)],_0x9c12(0x112))?(_0x2ddb32[_0x9c12(0x18)](_0x32c655[_0x9c12(0x27e)]),_0x32c655[_0x9c12(0x46f)](_0x49f3f0,![]),_0x32c655[_0x9c12(0x470)](_0x2b167f,[]),_0x32c655[_0x9c12(0x179)](_0x3a9097,_0x32c655[_0x9c12(0x12f)])):(console[_0x9c12(0x14a)](_0x32c655[_0x9c12(0x471)],_0x56016f[_0x9c12(0x14a)]),_0x32c655[_0x9c12(0x299)](_0x56ece4,'Error:\x20'+(_0x56016f[_0x9c12(0x14a)]||_0x9c12(0x472))),_0x306307(!![]),_0x38204a());}catch(_0x97c60c){console[_0x9c12(0x14a)](_0x32c655[_0x9c12(0x473)],_0x97c60c),_0x32c655['GPVRK'](_0x56ece4,_0x9c12(0x284)+(_0x97c60c instanceof Error?_0x97c60c[_0x9c12(0x1a3)]:_0x32c655[_0x9c12(0x474)])),_0x32c655[_0x9c12(0x475)](_0x306307,!![]),_0x32c655['CSOCr'](_0x38204a);}};return _react[_0x9c12(0x53)]['createElement'](_reactNative[_0x9c12(0x476)],{'transparent':!![],'visible':_0x1eef43,'animationType':_0x32c655['BpKdy'],'onRequestClose':_0x38eb30,'statusBarTranslucent':!![]},_react[_0x9c12(0x53)]['createElement'](_reactNative['View'],{'style':styles[_0x9c12(0x477)]},_react[_0x9c12(0x53)][_0x9c12(0x478)](_reactNative[_0x9c12(0x479)],{'onPress':_0x38eb30},_react[_0x9c12(0x53)]['createElement'](_reactNative[_0x9c12(0x132)][_0x9c12(0x47a)],{'style':[styles['backdrop'],{'opacity':_0x15f5a0}]})),_react[_0x9c12(0x53)][_0x9c12(0x478)](_reactNative[_0x9c12(0x47a)],{'style':styles[_0x9c12(0x47b)]},_react[_0x9c12(0x53)][_0x9c12(0x478)](_reactNative[_0x9c12(0x47c)],{'style':styles['container']},_react[_0x9c12(0x53)][_0x9c12(0x478)](_reactNative[_0x9c12(0x47a)],{'style':styles['handleContainer']},_react[_0x9c12(0x53)]['createElement'](_reactNative[_0x9c12(0x47d)],{'onPress':_0x38eb30,'style':styles[_0x9c12(0x47e)]},_react[_0x9c12(0x53)]['createElement'](_reactNative['View'],{'style':styles['handle']}))),_0x3a4de7&&_0x32c655[_0x9c12(0x47f)](_0x1b97e9,_0x9c12(0x480))&&_react[_0x9c12(0x53)]['createElement'](_reactNative[_0x9c12(0x47a)],{'style':styles[_0x9c12(0x481)]},_react[_0x9c12(0x53)][_0x9c12(0x478)](_reactNative[_0x9c12(0x482)],{'style':styles['debugTitle']},_0x32c655[_0x9c12(0x483)]),_react[_0x9c12(0x53)]['createElement'](_reactNative[_0x9c12(0x47a)],{'style':styles[_0x9c12(0x484)]},_react['default'][_0x9c12(0x478)](_reactNative[_0x9c12(0x482)],{'style':styles['debugLabel']},_0x32c655['scduG'],_0x50dcff),_react['default'][_0x9c12(0x478)](_reactNative['TouchableOpacity'],{'onPress':()=>_0x59aecb(_0xfb696=>Math[_0x9c12(0x485)](0x0,_0xfb696-0x2)),'style':styles[_0x9c12(0x486)]},_react[_0x9c12(0x53)][_0x9c12(0x478)](_reactNative[_0x9c12(0x482)],null,'-')),_react[_0x9c12(0x53)][_0x9c12(0x478)](_reactNative[_0x9c12(0x47d)],{'onPress':()=>_0x59aecb(_0x3301d7=>_0x3301d7+0x2),'style':styles[_0x9c12(0x486)]},_react[_0x9c12(0x53)][_0x9c12(0x478)](_reactNative[_0x9c12(0x482)],null,'+'))),_react['default'][_0x9c12(0x478)](_reactNative[_0x9c12(0x47a)],{'style':styles[_0x9c12(0x484)]},_react[_0x9c12(0x53)]['createElement'](_reactNative[_0x9c12(0x482)],{'style':styles[_0x9c12(0x487)]},_0x32c655[_0x9c12(0x488)],_0xa74594),_react[_0x9c12(0x53)]['createElement'](_reactNative[_0x9c12(0x47d)],{'onPress':()=>_0x2f3662(_0x2d3d29=>Math[_0x9c12(0x485)](0x0,_0x2d3d29-0x2)),'style':styles['debugBtn']},_react[_0x9c12(0x53)][_0x9c12(0x478)](_reactNative[_0x9c12(0x482)],null,'-')),_react[_0x9c12(0x53)][_0x9c12(0x478)](_reactNative[_0x9c12(0x47d)],{'onPress':()=>_0x2f3662(_0x13729f=>_0x13729f+0x2),'style':styles[_0x9c12(0x486)]},_react['default'][_0x9c12(0x478)](_reactNative[_0x9c12(0x482)],null,'+'))),_react[_0x9c12(0x53)][_0x9c12(0x478)](_reactNative['View'],{'style':styles[_0x9c12(0x484)]},_react['default']['createElement'](_reactNative['Text'],{'style':styles['debugLabel']},_0x32c655[_0x9c12(0x489)],_0x39ac77),_react[_0x9c12(0x53)][_0x9c12(0x478)](_reactNative[_0x9c12(0x47d)],{'onPress':()=>_0x22cc46(_0x5ea5bf=>Math[_0x9c12(0x485)](0x0,_0x5ea5bf-0x2)),'style':styles['debugBtn']},_react[_0x9c12(0x53)][_0x9c12(0x478)](_reactNative['Text'],null,'-')),_react['default'][_0x9c12(0x478)](_reactNative[_0x9c12(0x47d)],{'onPress':()=>_0x22cc46(_0x350756=>_0x350756+0x2),'style':styles[_0x9c12(0x486)]},_react[_0x9c12(0x53)][_0x9c12(0x478)](_reactNative[_0x9c12(0x482)],null,'+'))),_react[_0x9c12(0x53)]['createElement'](_reactNative[_0x9c12(0x47d)],{'onPress':()=>_0x501a4b(![]),'style':styles[_0x9c12(0x48a)]},_react[_0x9c12(0x53)][_0x9c12(0x478)](_reactNative['Text'],{'style':styles[_0x9c12(0x48b)]},_0x32c655['nEHJE']))),_0x32c655[_0x9c12(0x451)](_0x1b97e9,_0x32c655[_0x9c12(0x130)])&&_react[_0x9c12(0x53)][_0x9c12(0x478)](_reactNative['View'],{'style':styles[_0x9c12(0x48c)]},_react[_0x9c12(0x53)][_0x9c12(0x478)](_reactNative[_0x9c12(0x47a)],{'style':styles['brandMarkContainer']},_react['default']['createElement'](_BrandMark[_0x9c12(0x53)],null)),_react[_0x9c12(0x53)][_0x9c12(0x478)](_reactNative['View'],{'style':styles[_0x9c12(0x48d)]},_react['default'][_0x9c12(0x478)](_HeadingGroup[_0x9c12(0x53)],null)),_react[_0x9c12(0x53)][_0x9c12(0x478)](_reactNative[_0x9c12(0x47a)],{'style':styles[_0x9c12(0x48e)]},_react[_0x9c12(0x53)]['createElement'](_BodyText['default'],null)),_react[_0x9c12(0x53)][_0x9c12(0x478)](_reactNative['View'],{'style':styles['welcomeSpacer']}),_react[_0x9c12(0x53)][_0x9c12(0x478)](_reactNative[_0x9c12(0x47a)],{'style':styles[_0x9c12(0x48f)]},_react[_0x9c12(0x53)][_0x9c12(0x478)](_PrimaryButton[_0x9c12(0x53)],{'label':_0x32c655['tNEMD'],'onPress':_0x13184d,'testID':'welcome-get-started-button'}))),_0x1b97e9===_0x32c655['ODwIZ']&&_react[_0x9c12(0x53)][_0x9c12(0x478)](_SignInStep['default'],{'onEmailSubmit':_0x4da604,'onGoogleSignIn':_0x21c383,'onContinue':()=>_0x16a468(_0x9c12(0x1b)),'loading':_0x35cea5,'error':_0x5a9d01,'initialEmail':_0x30750d}),_0x32c655[_0x9c12(0x490)](_0x1b97e9,_0x32c655[_0x9c12(0x13b)])&&_react['default']['createElement'](_VerificationStep[_0x9c12(0x53)],{'email':_0x30750d,'onCodeSubmit':_0x1b8697,'onBack':_0x1b7a15,'loading':_0x35cea5,'error':_0x5a9d01,'onResendCode':_0x1a1cea}),_0x32c655[_0x9c12(0x43a)](_0x1b97e9,_0x32c655[_0x9c12(0x12f)])&&_react[_0x9c12(0x53)]['createElement'](_PlatformConnectorsStep[_0x9c12(0x53)],{'onUpdate':_0x2cf930,'onSkip':_0x482ed5,'onReviewerBypass':_0x492377,'allowedPlatforms':_0x82d2ed,'recommendedPlatforms':_0x1accff}),_0x32c655[_0x9c12(0x491)](_0x1b97e9,_0x32c655[_0x9c12(0x272)])&&_react[_0x9c12(0x53)][_0x9c12(0x478)](_PersonalizationConsentScreen[_0x9c12(0x53)],{'visible':!![],'loading':_0x4f02a0,'onAccept':async()=>{const _0x295fe5={'tYvXW':function(_0x527039,_0x5b20d3){return _0x32c655[_0x9c12(0x492)](_0x527039,_0x5b20d3);},'zLKWD':_0x9c12(0x1e),'MffEM':_0x9c12(0x1b),'Qvkta':'π\x20[APPLE\x20FIX]\x20primaryAuthOnly\x20detected\x20-\x20resetting\x20to\x20welcome\x20step','zPFbt':_0x32c655['aFRRV'],'GvZHd':_0x32c655[_0x9c12(0x144)],'PLFDn':function(_0xefb679,_0x21e13){return _0x32c655[_0x9c12(0x493)](_0xefb679,_0x21e13);}};console[_0x9c12(0x18)](_0x32c655[_0x9c12(0x494)]),_0x32c655[_0x9c12(0x493)](_0x264851,!![]),await new Promise(_0x2f2e54=>setTimeout(_0x2f2e54,0x32));try{const [_0x2fabcf,_0x12a8e3,_0x154518]=await Promise[_0x9c12(0x2a5)]([(0x0,_authService[_0x9c12(0x495)])(),_asyncStorage[_0x9c12(0x53)][_0x9c12(0x14c)](_0x32c655[_0x9c12(0x2a6)]),(0x0,_authService[_0x9c12(0x1c4)])()]);console[_0x9c12(0x18)](_0x9c12(0x496)),_0x1e93a5[_0x9c12(0x17e)]=!![],_0x32c655[_0x9c12(0x497)](_0x2fabcf,_0x12a8e3)?(console[_0x9c12(0x18)](_0x32c655['fcxyo']),await(_0x32c655[_0x9c12(0x498)](_0x6475a7,null)||_0x32c655[_0x9c12(0x415)](_0x6475a7,void 0x0)?void 0x0:_0x32c655[_0x9c12(0x499)](_0x6475a7,_api[_0x9c12(0x158)][_0x9c12(0x228)],_0x2fabcf,{'email':_0x12a8e3,'connectedPlatforms':_0x5d6af3,'username':_0x154518||_0x12a8e3['split']('@')[0x0],'isReturningUser':!![]}))):_0x32c655['wqwKj'](_0x32c655[_0x9c12(0x49a)],_0x32c655[_0x9c12(0x49b)])?_0x444c8c&&_0x4c30be&&(_0x295fe5['tYvXW'](_0x4cd24f,_0x295fe5[_0x9c12(0x49c)])||_0x14f1ae===_0x295fe5[_0x9c12(0x49d)])&&(_0x1c27a9[_0x9c12(0x18)](_0x295fe5[_0x9c12(0x49e)]),_0xeac89d[_0x9c12(0x18)](_0x295fe5['zPFbt'],_0x572891,_0x295fe5[_0x9c12(0x49f)]),_0x295fe5[_0x9c12(0x4a0)](_0xb39ed2,_0x9c12(0x4a1))):(console[_0x9c12(0x26e)](_0x32c655[_0x9c12(0x4a2)]),await(_0x32c655['etDUd'](_0x6475a7,null)||_0x32c655[_0x9c12(0x4a3)](_0x6475a7,void 0x0)?void 0x0:_0x32c655['BkHQm'](_0x6475a7,_api['API_CONFIG']['BASE_URL'],'',{'connectedPlatforms':_0x5d6af3,'isReturningUser':!![]})));}catch(_0x4a8823){console[_0x9c12(0x14a)](_0x32c655['YGhIT'],_0x4a8823),await(_0x6475a7===null||_0x6475a7===void 0x0?void 0x0:_0x32c655[_0x9c12(0x2d0)](_0x6475a7,_api[_0x9c12(0x158)][_0x9c12(0x228)],'',{'connectedPlatforms':_0x5d6af3,'isReturningUser':!![]}));}console[_0x9c12(0x18)](_0x32c655[_0x9c12(0x4a4)]);},'onDecline':()=>{if('AfKPE'!==_0x32c655[_0x9c12(0x4a5)]){const _0x5537a8={..._0x70d9e7};return delete _0x5537a8[_0x5c6616],_0x5537a8;}else console[_0x9c12(0x18)](_0x32c655['pkVyv']),_0x38eb30();},'connectedPlatforms':_0x5d6af3,'onConnectMore':()=>{const _0x469724={'tdgop':function(_0x1ed562,_0x22408f){return _0x1ed562(_0x22408f);},'Phsue':_0x32c655[_0x9c12(0x141)]};_0x32c655[_0x9c12(0x300)](_0x32c655[_0x9c12(0x4a6)],_0x32c655[_0x9c12(0x4a6)])?((0x0,_0x11b855[_0x9c12(0x1ed)])(_0x33d196[_0x9c12(0x1ee)][_0x9c12(0x1ef)]),_0x469724[_0x9c12(0x4a7)](_0x3cdd93,''),_0x5a4dc8(_0x469724[_0x9c12(0x4a8)])):(console[_0x9c12(0x18)](_0x32c655[_0x9c12(0x2e9)]),_0x32c655['bqpHF'](_0x16a468,_0x32c655[_0x9c12(0x12f)]));},'isReturningUser':_0x18678c,'appName':_0x1c9594})))));};exports[_0x9c12(0x4a9)]=UniversalOnboarding;const LEGACY_REMOVED=!![],styles=_reactNative[_0x9c12(0x4aa)]['create']({'modalOverlay':{'flex':0x1,'justifyContent':_0x9c12(0x4ab)},'backdrop':{..._reactNative['StyleSheet']['absoluteFillObject'],'backgroundColor':'rgba(0,\x200,\x200,\x200.5)'},'bottomSheet':{'backgroundColor':_0x9c12(0x4ac),'borderTopLeftRadius':0x18,'borderTopRightRadius':0x18,'paddingTop':0x0,'paddingBottom':_reactNative[_0x9c12(0x39a)]['OS']===_0x9c12(0x4ad)?0x14:0x0,'minHeight':height*0.86,'overflow':'hidden','width':_0x9c12(0x4ae)},'container':{'flex':0x1,'backgroundColor':'#FAFAFA'},'welcomeContainer':{'flex':0x1,'alignItems':_0x9c12(0x4af),'paddingTop':0x46,'paddingHorizontal':0x18},'brandMarkContainer':{'marginBottom':0x20},'headingContainer':{'marginBottom':0x18},'bodyContainer':{'marginBottom':0x20,'width':_0x9c12(0x4ae)},'welcomeSpacer':{'flex':0x1,'minHeight':0x14},'welcomeButtonContainer':{'width':'100%','paddingBottom':0x14},'handleContainer':{'alignItems':_0x9c12(0x4af),'paddingTop':0xc,'paddingBottom':0x4,'backgroundColor':_0x9c12(0x4b0)},'handleButton':{'padding':0x0,'width':0x78,'alignItems':_0x9c12(0x4af)},'handle':{'width':0x64,'height':0x6,'borderRadius':0x3,'backgroundColor':_0x9c12(0x4b1)},'debugPanel':{'position':_0x9c12(0x4b2),'top':0x3c,'right':0xa,'backgroundColor':_0x9c12(0x4b3),'padding':0xc,'borderRadius':0x8,'zIndex':0x270f,'minWidth':0xc8},'debugTitle':{'color':_0x9c12(0x4b4),'fontSize':0xe,'fontWeight':_0x9c12(0x4b5),'marginBottom':0x8},'debugRow':{'flexDirection':_0x9c12(0x4b6),'alignItems':_0x9c12(0x4af),'marginBottom':0x6},'debugLabel':{'color':_0x9c12(0x4b4),'fontSize':0xc,'flex':0x1},'debugBtn':{'backgroundColor':_0x9c12(0x4b7),'paddingHorizontal':0xc,'paddingVertical':0x4,'borderRadius':0x4,'marginLeft':0x4},'debugCloseBtn':{'backgroundColor':_0x9c12(0x4b8),'paddingVertical':0x6,'borderRadius':0x4,'marginTop':0x8,'alignItems':_0x9c12(0x4af)},'debugCloseBtnText':{'color':'#fff','fontSize':0xc},'header':{'alignItems':'center','marginBottom':0x14,'paddingHorizontal':0x18},'headerContent':{'flexDirection':_0x9c12(0x4b6),'alignItems':'center','justifyContent':_0x9c12(0x4af),'marginBottom':0x18},'appIcon':{'width':0x30,'height':0x30,'borderRadius':0x18,'backgroundColor':_0x9c12(0x4b9),'alignItems':'center','justifyContent':'center'},'appIconText':{'fontSize':0x18,'fontWeight':_0x9c12(0x4ba),'color':_0x9c12(0x4bb)},'arrow':{'marginHorizontal':0x10,'fontSize':0x18,'color':_0x9c12(0x4b8)},'onairosIcon':{'width':0x36,'height':0x36,'borderRadius':0x20,'backgroundColor':_0x9c12(0x4b0),'alignItems':_0x9c12(0x4af),'justifyContent':'center'},'onairosIconText':{'fontSize':0x18,'fontWeight':_0x9c12(0x4ba),'color':'#fff'},'onairosIconImage':{'width':0x36,'height':0x36},'titleContainer':{'alignItems':_0x9c12(0x4af)},'mainTitle':{'fontSize':0x18,'fontWeight':_0x9c12(0x4bc),'color':'#333','textAlign':'center','marginBottom':0xc},'privacyMessage':{'fontSize':0xe,'color':'#666','textAlign':'center','marginBottom':0x14},'privacyLink':{'color':'#000000','fontWeight':_0x9c12(0x4bc),'textDecorationLine':_0x9c12(0x4bd)},'boldText':{'fontWeight':_0x9c12(0x4ba)},'content':{'flex':0x1,'paddingHorizontal':0x18},'platformsScrollView':{'flex':0x1,'width':_0x9c12(0x4ae)},'platformsScrollContent':{'paddingBottom':0x0,'paddingHorizontal':0x18},'platformsContainer':{'marginTop':0x10},'platformItem':{'flexDirection':'row','alignItems':_0x9c12(0x4af),'justifyContent':'space-between','paddingVertical':0x10,'paddingHorizontal':0x8,'borderBottomWidth':0x1,'borderBottomColor':_0x9c12(0x4be)},'platformInfo':{'flexDirection':_0x9c12(0x4b6),'alignItems':'center'},'platformIcon':{'width':0x28,'height':0x28,'borderRadius':0x14,'backgroundColor':'#F5F5F5','alignItems':_0x9c12(0x4af),'justifyContent':_0x9c12(0x4af),'marginRight':0x10},'platformIconText':{'fontSize':0x12,'fontWeight':_0x9c12(0x4ba),'color':_0x9c12(0x4bb),'textAlign':'center','textAlignVertical':_0x9c12(0x4af)},'platformIconImage':{'width':0x18,'height':0x18},'youtubeIconImage':{'width':0x3a,'height':0x3a},'redditIconImage':{'width':0x22,'height':0x22},'pinterestIconImage':{'width':0x30,'height':0x30},'gmailIconImage':{'width':0x20,'height':0x20},'linkedinPlatformIcon':{'width':0x28,'height':0x28,'borderRadius':0x8,'backgroundColor':_0x9c12(0x4b9),'alignItems':_0x9c12(0x4af),'justifyContent':_0x9c12(0x4af),'marginRight':0x10},'pinterestPlatformIcon':{'width':0x22,'height':0x22,'borderRadius':0x11,'backgroundColor':_0x9c12(0x4b9),'alignItems':_0x9c12(0x4af),'justifyContent':_0x9c12(0x4af),'marginRight':0x10},'platformName':{'fontSize':0x10,'color':_0x9c12(0x4bb),'textAlignVertical':_0x9c12(0x4af)},'footer':{'flexDirection':_0x9c12(0x4b6),'alignItems':_0x9c12(0x4af),'justifyContent':_0x9c12(0x4bf),'padding':0x18,'borderTopWidth':0x1,'borderTopColor':_0x9c12(0x4be)},'footerButtonCancel':{'paddingVertical':0xc,'paddingHorizontal':0x10},'footerButtonText':{'color':_0x9c12(0x4b8),'fontSize':0x10},'footerButtonConfirm':{'paddingVertical':0xc,'paddingHorizontal':0x18,'backgroundColor':'#000000','borderRadius':0x8,'marginTop':0x14},'footerButtonConnected':{'paddingVertical':0xc,'paddingHorizontal':0x18,'backgroundColor':_0x9c12(0x4c0),'borderRadius':0x8},'footerButtonDisabled':{'backgroundColor':_0x9c12(0x4be)},'footerButtonTextConfirm':{'color':_0x9c12(0x4b4),'fontSize':0x10,'fontWeight':_0x9c12(0x4bc)},'footerButtonTextConnected':{'color':_0x9c12(0x4c1),'fontSize':0x10,'fontWeight':_0x9c12(0x4bc)},'connectContainer':{'flex':0x1},'modalContent':{'flex':0x1,'backgroundColor':'#FFFFFF','borderTopLeftRadius':0x14,'borderTopRightRadius':0x14,'padding':0x18},'backButton':{'padding':0x8,'width':0x28},'backButtonText':{'fontSize':0x18,'color':_0x9c12(0x4c2)},'backButtonSpacer':{'width':0x28},'headerTitle':{'fontSize':0x12,'fontWeight':_0x9c12(0x4bc),'color':'#333','textAlign':_0x9c12(0x4af)},'privacyHeader':{'flexDirection':_0x9c12(0x4b6),'alignItems':_0x9c12(0x4af),'justifyContent':_0x9c12(0x4bf),'paddingHorizontal':0x10,'paddingVertical':0x14,'backgroundColor':'#FFFFFF','borderBottomWidth':0x1,'borderBottomColor':_0x9c12(0x4c3)},'privacyDetailsContainer':{'paddingHorizontal':0x18,'paddingVertical':0x8,'flex':0x1,'marginTop':0x14},'privacyDetailsTitle':{'fontSize':0x14,'fontWeight':_0x9c12(0x4bc),'color':_0x9c12(0x4bb),'marginBottom':0x0},'privacyBulletPoint':{'flexDirection':_0x9c12(0x4b6),'marginBottom':0x10,'alignItems':_0x9c12(0x4c4)},'bulletPoint':{'fontSize':0x12,'marginRight':0x8,'color':_0x9c12(0x4bb)},'privacyBulletText':{'fontSize':0x10,'color':_0x9c12(0x4bb),'flex':0x1,'lineHeight':0x18},'connectionsCountText':{'fontSize':0x12,'fontWeight':_0x9c12(0x4bc),'color':_0x9c12(0x4bb),'marginBottom':0x18},'personaContainer':{'flex':0x1,'padding':0x10,'backgroundColor':_0x9c12(0x4b4),'justifyContent':_0x9c12(0x4c4)},'personaHeaderWithBack':{'flexDirection':'row','alignItems':_0x9c12(0x4af),'justifyContent':'space-between','marginBottom':0x10,'paddingVertical':0x8},'personaBackButton':{'padding':0x8},'personaHeader':{'alignItems':'center','marginBottom':0x20,'paddingHorizontal':0x18},'personaTitle':{'fontSize':0x14,'fontWeight':'600','color':_0x9c12(0x4bb),'textAlign':'center','flex':0x1,'marginBottom':0x8},'personaSubtitle':{'fontSize':0xe,'color':_0x9c12(0x4b8),'marginBottom':0x18,'textAlign':'center'},'personaProgressContainer':{'marginBottom':0x18,'paddingHorizontal':0x0},'personaProgressBar':{'height':0x8,'backgroundColor':'#F5F5F5','borderRadius':0x4,'overflow':'hidden','marginBottom':0xc},'personaProgressFill':{'height':_0x9c12(0x4ae),'backgroundColor':'#1BA9D4','borderRadius':0x4},'personaProgressText':{'fontSize':0x10,'fontWeight':_0x9c12(0x4bc),'color':_0x9c12(0x4bb),'textAlign':_0x9c12(0x4af),'marginBottom':0x8},'personaStatusText':{'fontSize':0xe,'color':_0x9c12(0x4b8),'textAlign':_0x9c12(0x4af)},'personaCompleteContainer':{'alignItems':'center','paddingHorizontal':0x0},'personaCompleteTitle':{'fontSize':0x14,'fontWeight':_0x9c12(0x4bc),'color':_0x9c12(0x4bb),'marginBottom':0x8,'textAlign':_0x9c12(0x4af)},'personaCompleteSubtitle':{'fontSize':0xe,'color':_0x9c12(0x4b8),'textAlign':_0x9c12(0x4af),'marginBottom':0x28},'personaContinueButton':{'backgroundColor':'#000000','paddingVertical':0x10,'paddingHorizontal':0x30,'borderRadius':0x10,'alignItems':_0x9c12(0x4af),'width':_0x9c12(0x4ae),'marginTop':0x20,'shadowColor':_0x9c12(0x4c1),'shadowOffset':{'width':0x0,'height':0x2},'shadowOpacity':0.1,'shadowRadius':0x4,'elevation':0x3},'personaContinueButtonText':{'color':_0x9c12(0x4b4),'fontSize':0x10,'fontWeight':'600'},'progressError':{'backgroundColor':_0x9c12(0x4c5)},'dataWarningContainer':{'padding':0x10,'borderRadius':0xc,'marginTop':0x10,'borderWidth':0x1,'shadowColor':_0x9c12(0x4c1),'shadowOffset':{'width':0x0,'height':0x2},'shadowOpacity':0.1,'shadowRadius':0x4,'elevation':0x3},'dataWarningHeader':{'flexDirection':_0x9c12(0x4b6),'alignItems':_0x9c12(0x4af),'marginBottom':0x8},'dataWarningIcon':{'fontSize':0x14,'marginRight':0x8},'dataWarningTitle':{'fontSize':0x10,'fontWeight':_0x9c12(0x4bc),'flex':0x1},'dataWarningMessage':{'fontSize':0xe,'marginBottom':0x0,'lineHeight':0x14},'dataWarningSuggestions':{'marginTop':0xc,'paddingTop':0xc,'borderTopWidth':0x1},'dataWarningSuggestionsTitle':{'fontSize':0xe,'fontWeight':_0x9c12(0x4bc),'marginBottom':0x6},'dataWarningSuggestionItem':{'fontSize':0xd,'marginBottom':0x4,'lineHeight':0x12},'dataWarningContinueNote':{'fontSize':0xd,'fontWeight':_0x9c12(0x4c6),'marginTop':0xc,'fontStyle':_0x9c12(0x4c7)},'dataWarningError':{'backgroundColor':'#FFF5F5','borderColor':'#FEB2B2'},'dataInfoContainer':{'backgroundColor':_0x9c12(0x4c8),'borderColor':'#BAE6FD'},'dataConnectionsRequired':{'backgroundColor':_0x9c12(0x4b9),'borderColor':_0x9c12(0x4c9),'shadowColor':_0x9c12(0x4ca),'shadowOffset':{'width':0x0,'height':0x0},'shadowOpacity':0.15,'shadowRadius':0x8},'highlightedBackButton':{'backgroundColor':_0x9c12(0x4b9),'borderRadius':0x14,'borderWidth':0x2,'borderColor':_0x9c12(0x4c2),'shadowColor':'#000000','shadowOffset':{'width':0x0,'height':0x0},'shadowOpacity':0.3,'shadowRadius':0x8,'elevation':0x5},'highlightedBackArrow':{'color':_0x9c12(0x4c2),'fontWeight':_0x9c12(0x4ba)},'goBackButton':{'backgroundColor':_0x9c12(0x4c2),'paddingVertical':0xc,'paddingHorizontal':0x10,'borderRadius':0x8,'marginTop':0xc,'alignItems':_0x9c12(0x4af),'shadowColor':_0x9c12(0x4c2),'shadowOffset':{'width':0x0,'height':0x0},'shadowOpacity':0.3,'shadowRadius':0x6,'elevation':0x3},'goBackButtonText':{'color':_0x9c12(0x121),'fontSize':0xe,'fontWeight':'600'},'additionalPlatformsToggle':{'paddingVertical':0x10,'paddingHorizontal':0x8,'alignItems':'center','borderBottomWidth':0x1,'borderBottomColor':_0x9c12(0x4be)},'additionalPlatformsText':{'fontSize':0xe,'color':'#666','fontWeight':_0x9c12(0x4c6)},'asterisk':{'color':_0x9c12(0x4cb),'fontSize':0x10,'fontWeight':_0x9c12(0x4ba),'marginLeft':0x2},'linkedinRequirementContainer':{'backgroundColor':_0x9c12(0x4cc),'borderWidth':0x1,'borderColor':'#E5E7EB','borderRadius':0x8,'paddingHorizontal':0xc,'paddingVertical':0x8,'marginTop':0x8,'marginHorizontal':0x4},'linkedinRequirementText':{'fontSize':0xc,'fontStyle':'italic','textAlign':_0x9c12(0x4af)},'linkedinRequirementAsterisk':{'color':_0x9c12(0x4cb),'fontWeight':_0x9c12(0x4ba)},'linkedinRequirementMessage':{'color':_0x9c12(0x4ca)},'existingUserBanner':{'backgroundColor':'#F0F9FF','borderWidth':0x1,'borderColor':_0x9c12(0x4cd),'borderRadius':0xc,'paddingHorizontal':0x10,'paddingVertical':0xc,'marginTop':0xc},'existingUserText':{'fontSize':0xe,'fontWeight':_0x9c12(0x4bc),'color':'#0369A1','marginBottom':0x4},'existingUserSubtext':{'fontSize':0xc,'color':_0x9c12(0x4ce),'lineHeight':0x10}});function _0x585e(){const _0x8fca7b=['__esModule','π§ͺ\x20Testing\x20mode\x20enabled','heVbn','object','function','NdqJF','mkjwM','YkJpU','KaowB','Eaabl','sQgxc','pLBAQ','ypKUN','DPvjX','NtMLt','has','get','set','kYYwp','hasOwnProperty','call','defineProperty','getOwnPropertyDescriptor','kWAYk','log','Dimensions','π§ͺ\x20Test\x20bypass\x20detected\x20-\x20skipping\x20to\x20verification\x20screen','verification','zjgSv','afxbJ','signin','π\x20[APPLE\x20FIX]\x20primaryAuthOnly\x20detected\x20-\x20resetting\x20to\x20welcome\x20step','π\x20[APPLE\x20FIX]\x20Current\x20step\x20was:','->\x20Setting\x20to:\x20welcome','β\x20Error\x20retrieving\x20real\x20token\x20for\x20onComplete:','training-complete-token','JwHkN','connectedPlatforms','π±\x20Stored\x20connected\x20platform:','Total\x20platforms:','STrbh','β\x20[PIN\x20SUBMIT]\x20Failed\x20to\x20continue\x20background\x20training:','persona','π±\x20Removed\x20connected\x20platform:','JMhUz','qvkyx','Error\x20removing\x20connected\x20platform:','π\x20Disconnected\x20platform:','Error\x20disconnecting\x20platform:','Failed\x20to\x20create\x20authentication\x20token\x20for\x20background\x20training','Bdebk','SttnM','JBqFa','Disconnect\x20Platform','cancel','β
\x20Authentication\x20token\x20already\x20exists:','uClqv','ARLHz','CIoNq','Failed\x20to\x20send\x20verification\x20code.\x20Please\x20try\x20again.','ifxkV','url','mLdpU','oNdZc','π\x20Cleaning\x20up\x20socket\x20connection...','platform','Error\x20handling\x20OAuth\x20callback:','2|0|5|4|1|3','existing_user_info','π\x20Using\x20username\x20for\x20training:','XRFqr','Error\x20loading\x20user\x20data:','UwBbQ','connected','disconnected','π\x20Loading\x20username\x20for\x20data\x20connections:','Error\x20loading\x20initial\x20connection\x20status:','pin','eMKea','π\x20Get\x20Started\x20pressed\x20(Apple\x20user)\x20-\x20skipping\x20signin,\x20going\x20to\x20platforms','π\x20Get\x20Started\x20pressed\x20-\x20moving\x20to\x20signin','attempts','β\x20No\x20real\x20authentication\x20token\x20found\x20after\x20training\x20completion','default','1|4|2|3|0|5','π\x20[BACKGROUND]\x20PIN\x20validation\x20-\x20continuing\x20with\x20existing\x20training\x20session','π\x20Using\x20auth\x20token:','β
\x20[BACKGROUND]\x20PIN\x20submitted\x20for\x20existing\x20training\x20session','InqRw','onairos_user','test@bypass.com','UgdRg','3|1|2|0|4','π§\x20Sending\x20verification\x20code\x20to:','cOLHw','β
\x20Verification\x20code\x20sent\x20successfully','UUxqI','GDCaI','bdpHL','β\x20Error\x20sending\x20verification\x20code:','β\x20No\x20authentication\x20token\x20available\x20after\x20ensureAuthToken','No\x20authentication\x20token\x20available','Connections\x20required','Google\x20Sign-In\x20failed.\x20Please\x20try\x20again.','β
\x20Google\x20Sign-In\x20successful:','ranrv','yxfyF','fPSgf','zrWYj','β οΈ\x20Could\x20not\x20get\x20encrypted\x20PIN\x20for\x20training:','πΎ\x20Storage\x20method:','β
\x20Inference\x20enabled:','π\x20Query\x20scores\x20enabled:','Training\x20failed\x20to\x20start','FeedO','π§ͺ\x20Test\x20bypass\x20-\x20skipping\x20code\x20verification,\x20going\x20to\x20platforms','π\x20App\x20name:','JcAJx','returning_user','agaYG','OWKWq','π\x20Welcome\x20back!\x20User\x20has\x20existing\x20connections,\x20skipping\x20to\x20consent\x20screen','consent','rlZnk','π\x20New\x20user\x20or\x20no\x20existing\x20connections,\x20showing\x20platform\x20connection\x20screen','IsyMP','β\x20Error\x20verifying\x20email\x20code:','gmPIp','JQvCl','β
\x20Verification\x20code\x20resent\x20successfully','β\x20Error\x20resending\x20verification\x20code:','Network\x20error.\x20Please\x20try\x20again.','β\x20No\x20socket\x20ID\x20available\x20after\x20connection','Connection\x20error.\x20Please\x20try\x20again.','oauth','fZcXz','β
\x20Onboarding\x20complete!\x20Connected\x20platforms:','user_email','π\x20[SDK]\x20Auth\x20data\x20retrieved\x20in\x20parallel','π\x20[SDK]\x20Token\x20available:','π§\x20[SDK]\x20Email\x20available:','WnjlL','β
\x20[SDK]\x20Calling\x20onComplete\x20with\x20token\x20and\x20user\x20data','UILoG','β\x20[SDK]\x20Error\x20retrieving\x20auth\x20data\x20for\x20onComplete:','β
\x20[SDK]\x20onComplete\x20finished\x20-\x20waiting\x20for\x20parent\x20to\x20close\x20modal','β\x20Training\x20update\x20error:','βοΈ\x20Skipping\x20platform\x20connections','mWOCR','β
\x20[SDK]\x20User\x20skipped\x20platforms\x20-\x20still\x20calling\x20onComplete\x20with\x20auth\x20data','β οΈ\x20[SDK]\x20User\x20skipped\x20-\x20no\x20auth\x20data\x20available','kvEGN','β\x20[SDK]\x20Error\x20during\x20skip:','β
\x20[SDK]\x20Skip\x20complete\x20-\x20waiting\x20for\x20parent\x20to\x20close\x20modal','π\x20Reviewer\x20bypass\x20triggered\x20from\x20platforms','true','β
\x20Stored\x20reviewer\x20bypass\x20markers','β\x20Failed\x20to\x20store\x20reviewer\x20bypass:','β\x20Returning\x20user\x20wants\x20to\x20connect\x20more\x20platforms','dEAft','qfNGE','BRBFY','gTIya','ποΈ\x20Databases\x20used:','β\x20Socket\x20reconnection\x20failed\x20after\x20all\x20attempts','EVmYr','QeAWo','MEshP','BgzDP','instagram','llm','π€\x20Handling\x20LLM/ChatGPT\x20connection\x20-\x20sending\x20to\x20backend...','zuVBz','3|0|4|5|2|1','π\x20Connection\x20ID:','slxaF','YfXFd','EQXFl','RsZJm','ποΈ\x20Databases:','π\x20Compression\x20enabled:','code','Udjvc','π\x20Returning\x20to\x20connect\x20step','β\x20Socket\x20disconnected,\x20reason:','0|4|1|5|3|2','Creating\x20your\x20persona\x20with\x20available\x20data','LIMITED_DATA','π\x20[PIN\x20SUBMIT]\x20PIN\x20submitted,\x20checking\x20for\x20background\x20training...','VDvge','VEWUz','βΉοΈ\x20[PIN\x20SUBMIT]\x20No\x20background\x20training\x20detected','No\x20training\x20in\x20progress.\x20Please\x20restart\x20the\x20flow.','β\x20Error\x20checking\x20authentication\x20token:','π\x20[BACKGROUND]\x20Continuing\x20existing\x20background\x20training\x20with\x20PIN\x20validation','mobile_user','π€\x20Sending\x20training\x20data\x20to\x20/mobile-training/enoch:','π‘\x20Training\x20API\x20response:','π\x20Connections\x20required\x20detected\x20from\x20HTTP\x20response','afGES','π\x20Training\x20type:','π\x20Encryption\x20enabled:','ZDeYQ','β\x20Training\x20start\x20error:','Unknown\x20error','π\x20[TRANSITION]\x20Starting\x20background\x20training\x20during\x20connect\x20β\x20pin\x20transition','π\x20[BACKGROUND]\x20Using\x20existing\x20socket\x20ID:','owbqS','π\x20Disconnect\x20details:','β
\x20Training\x20completed:','π§ \x20Inference\x20enabled:','VOrIW','Complete!','5|0|6|2|4|7|3|1','2|0|4|3|1','β\x20Socket\x20connection\x20error:','nyYQO','β
\x20Training\x20Complete:','π§ \x20Inference\x20Complete:','Uploading\x20to\x20S3','Token\x20refresh\x20failed\x20-\x20please\x20restart\x20from\x20connector\x20screen','π\x20YouTube\x20token\x20expired,\x20triggering\x20reconnection...','YouTube\x20token\x20expired\x20-\x20reconnecting...','7|3|0|1|4|5|2|6','1|4|5|2|3|0','βΉοΈ\x20Limited\x20data\x20scenario\x20detected','Training\x20in\x20progress','aLsDb','Connection\x20timeout.\x20Please\x20check\x20your\x20internet\x20and\x20try\x20again.','π\x20Starting\x20persona\x20creation...','Failed\x20to\x20create\x20or\x20retrieve\x20authentication\x20token','Not\x20stored','π\x20UserInfo\x20not\x20available,\x20attempting\x20to\x20reload...','π§\x20Setting\x20up\x20socket\x20connection\x20for\x20real\x20training...','π\x20Token\x20available:','π±\x20Device\x20platform:','Connecting','websocket','polling','reconnect_attempt','reconnect_error','reconnect_failed','modelStandby','trainingUpdate','π\x20Attempting\x20to\x20connect\x20to\x20socket...','Failed\x20to\x20initialize\x20training.\x20Please\x20try\x20again.','β\x20YouTube\x20token\x20refresh/reconnection\x20error:','YouTube\x20connection\x20failed.\x20Please\x20try\x20again.','1|2|5|4|0|3','Keeping\x20your\x20data\x20private','Trying\x20to\x20understand\x20your\x20mind','juyAQ','Finalizing\x20your\x20unique\x20persona','KbkhY','π\x20Disconnecting\x20training\x20socket...','NYPRB','xzKOB','β οΈ\x20No\x20authentication\x20token\x20found','βΉοΈ\x20User\x20should\x20authenticate\x20first\x20via\x20Google/Apple/Email','uhbRT','β
\x20[BACKGROUND]\x20Socket\x20connected,\x20starting\x20background\x20data\x20collection...','Collecting\x20your\x20data...','Processing...','π\x20[BACKGROUND]\x20Training\x20progress:','π\x20[BACKGROUND]\x20Starting\x20background\x20training\x20optimization...','Connecting...','β
\x20[BACKGROUND]\x20Auth\x20token\x20ready:','π§βπ»\x20[BACKGROUND]\x20User\x20info\x20set:','Initializing\x20data\x20collection...','β
\x20[BACKGROUND]\x20Background\x20training\x20initiated\x20successfully','β\x20[BACKGROUND]\x20Background\x20training\x20failed:','π\x20[BACKGROUND]\x20Starting\x20background\x20training\x20with\x20socketId:','π―\x20Background\x20training\x20Features:','3|4|5|1|0|2|6','QXyLY','β\x20Background\x20training\x20start\x20failed:','β\x20Background\x20training\x20start\x20error:','β
\x20Returning\x20user\x20accepted\x20consent','β
\x20[SDK]\x20Calling\x20onComplete\x20for\x20returning\x20user','NwdBq','β οΈ\x20[SDK]\x20No\x20token/email\x20found\x20for\x20returning\x20user','β\x20[SDK]\x20Error\x20during\x20returning\x20user\x20consent:','β
\x20[SDK]\x20Returning\x20user\x20onComplete\x20finished\x20-\x20waiting\x20for\x20parent\x20to\x20close\x20modal','β\x20Returning\x20user\x20declined\x20consent','JFTxI','Initializing...','pinterest','#E60023','YouTube','#FFFFFF','linkedin','#0077B5','reddit','Reddit','gmail','Gmail','chatgpt','#10A37F','Debug\x20Padding','Container\x20Bottom:\x20','Handle\x20Top:\x20','Get\x20Started','useState','frCOd','UEpdT','Medium','Animated','Value','useEffect','wIoTm','ZWapn','wUzXl','iKnxR','CdCDF','gXltI','joJkL','π\x20UniversalOnboarding:\x20visible\x20prop\x20changed\x20to:','π\x20UniversalOnboarding:\x20modalVisible\x20state\x20is:','π\x20UniversalOnboarding:\x20current\x20step\x20is:','ihHpM','mkRra','ODwIZ','pqDxL','aFRRV','ZdibR','useRef','vSArr','LKBzD','YLECX','OqYzM','error','WqYVE','getItem','mDUNo','includes','aLSqn','xyLEM','fUhrS','push','stringify','RHhnM','YDVXF','vleTK','aHqsp','API_CONFIG','xyVAb','email','Error\x20storing\x20connected\x20platform:','parse','filter','setItem','MoUDK','gZpFK','UUMMz','eOEDi','rqHlX','PVGQc','NWcOL','ZKxyv','GPPTx','QHJJF','BErUZ','EeFwf','Alert','alert','Are\x20you\x20sure\x20you\x20want\x20to\x20disconnect\x20','BxEel','iKJok','hdZpS','BZnzN','isOAuthCallback','QNCJO','kEZtq','nmEOW','IctJe','ykSdK','UANbA','SDFoI','OtnjU','QcDVo','substring','length','current','xKXzv','LCncW','vQsAn','JWtdI','oCWNb','repeat','RACAM','sSrHU','Xiser','cdWwF','whFdj','oTunP','nZlfr','LinkedIn','iNKSu','BqSYM','fNBpV','eCeyk','wCIwK','GPVRK','nKOoR','lPHLa','UtkIw','tJmPA','CRKMn','setValue','rnZKD','timing','start','addEventListener','aXTGI','remove','dwoYo','sTgrI','β\x20Failed\x20to\x20send\x20verification\x20code:','bqpHF','message','GvsqZ','IWSHG','ZiUDO','KrClf','yitaU','KkilT','sWiut','renSv','β
\x20Using\x20real\x20authentication\x20token\x20for\x20onComplete:','...','LrUHL','disconnect','JeMTV','xRgsG','yTHXG','SVWdN','YxnKL','rqSgk','RYgkQ','split','removeItem','PDScb','grEvl','getJWT','SaXpF','searchParams','JqUKj','UTbeH','zxByB','zjOer','GRSFD','ZYwAx','getOnairosUsername','HEGIW','Uexor','name','atxok','uZWpF','nwoCg','NrmHW','UGbLa','fbOns','CGCaS','oVRzJ','bKUNI','jwrIN','user_','random','BOJLe','uPhLv','emDmW','keys','forEach','Nzgla','Pfmos','FCMYP','pRtfK','Platform\x20toggles\x20set:','RQeni','nARcf','pAWnN','aDVtw','EGiii','bFrSr','KUcNK','QdzTk','dmhkm','kBFRN','WOrbm','NlfMu','lpaTa','hTMiW','KUVqh','triggerHaptic','HapticType','BUTTON_PRESS','YOQgB','tNLbg','bfHpD','TUgOh','qEChn','tSbRG','atBvU','xfrYE','IuNee','tGsSm','zzweK','fAtFz','xRRGr','xDajC','CgCTf','β\x20[BACKGROUND]\x20Failed\x20to\x20continue\x20background\x20training:','kiIWN','SYbmn','reviewer@bypass.com','whGMa','storeJWT','oKUof','ZqTvl','LNYFz','xCLiE','Spyij','bRbsI','ZXwsm','JerFz','NlzfA','GnYKz','zzznx','fSMRG','WJBle','tiANj','sendEmailVerificationCode','GkVxc','FGzWj','RkHhy','QQCIC','aOODG','mCTym','XTBfa','BaODq','owvdV','PVKVE','mADcn','DsDCl','BucKM','rlQzu','sSrHA','CkGLR','CGDZG','HBlOg','qJPeh','TsDtu','BASE_URL','piwez','DaZvZ','kjuhK','dPVfO','vAqxY','wyWbp','NiGHd','jqlps','π\x20Initiating\x20Google\x20Sign-In','success','2|1|4|3|0','SUCCESS','FmTdy','user','eBQsd','Ylise','cancelled','βΉοΈ\x20Google\x20Sign-In\x20cancelled\x20by\x20user','yaThe','PbyqE','GSmCq','TcEsB','ccQsZ','VlHwA','ERROR','JhDai','4|5|6|1|7|0|2|3','hxnRH','NIPBU','mhmKf','Prqna','β\x20Google\x20Sign-In\x20error:','AwQca','Pixgv','pvftV','4|1|0|6|3|2|5','JRkmz','sdtTQ','wwMjz','β\x20Training\x20start\x20failed:','dYcng','JgUkN','qNgsI','JsmOi','JKKXD','KofYk','zNlpm','π\x20Verifying\x20email\x20code:','confirmEmailVerificationCode','uPTvz','vdKAj','β
\x20Email\x20verification\x20successful','tWlIU','isNewUser','flowType','dnDHj','hasExistingData','connections','DIsIh','vuFGt','EqKWS','existingUserData','hasData','status','active','map','QRgCV','flrlv','XMDiQ','warn','Revbo','FMNoo','sWxUt','MqUff','XmeeZ','dPjrW','joCuq','features','dUZiW','databases','type','xolAl','queryScores','XptnF','encryption','FlTaH','ySEUC','ajKjS','QBWkG','vihdq','utQFb','Error:\x20','HiFzF','wyxkF','oBIvu','Invalid\x20verification\x20code.\x20Please\x20try\x20again.','QWiTr','bGPdE','floor','wmASh','tcpXL','HRsOQ','foFln','RswLE','gdMvk','dDLcY','qylgX','rNHAO','RFtVZ','VIeiA','lQyVB','mLzwH','TZNxM','hCAIL','DeNrg','π\x20Resending\x20verification\x20code\x20to:','VmQSV','iJzhQ','BZYPi','nYShf','RjzXQ','uHdDD','Zrsel','RGeAI','all','goOGs','LlayS','kKFom','username','OtYNU','kBgjX','YkZiQ','nQCsf','sYEZP','xFvVD','hnAnY','vCHWh','π\x20[SDK]\x20Calling\x20onComplete\x20with\x20email\x20(no\x20SDK\x20token\x20-\x20Apple\x20auth)','TgVJV','AgTAm','Rizme','PsuDr','β οΈ\x20[SDK]\x20No\x20email\x20found\x20-\x20calling\x20onComplete\x20with\x20limited\x20data','xUtdX','wyWEr','ZddCE','ujPPB','IUoLC','lkXrr','kMeSC','catch','zFDcf','SVvwM','kDgMS','iuPEW','MVxDo','YHfXN','lHFvX','Error\x20initiating\x20OAuth\x20for\x20','CSBFa','pXxaj','bupAa','zdNjJ','sxAHm','CYmpf','DPCWD','MASDc','ziMkC','mtQYi','jksfj','lJuIe','EIcsg','HhLzA','JGUod','FZgnX','aLQsN','GabCT','tPxFr','EcicB','fIlfo','HdcdY','aoBtf','hasNativeSDK','HAKLr','initiateNativeAuth','kCehg','sfkHo','UhuIw','Just\x20a\x20few\x20more\x20seconds','dnLel','kTknU','iVvYY','bIrJP','RdXcq','Error\x20connecting\x20to\x20','useCallback','nlviC','DhOag','iFhQa','β\x20YouTube\x20reconnection\x20failed:','gPNHP','Ztbpp','ePSVa','KrXHX','jPeTF','JxUEx','wFmoh','join','MGeFH','oRuuB','cKmls','YzNqY','nDcwh','@temp.com','now','zXCEI','No\x20background\x20socket\x20ID\x20available','oYXob','\x20successfully\x20connected\x20and\x20stored\x20in\x20backend','gXrmo','β
\x20Backend\x20received\x20and\x20stored\x20LLM\x20data','IHhxP','dVZwA','connectionId','TXbjg','CKdLv','Failed\x20to\x20send\x20LLM\x20data\x20to\x20backend:\x20','qfGWF','initiateOAuth','OEhdF','XdVLV','KtSmZ','dhbAz','IKdPU','mFWdl','UYIKI','zvFnX','feThZ','aYYRy','HOIuv','HHoOU','XVixo','6|4|1|3|2|0|5','Gxzlz','compression','storage','inference','YBiSY','pSLCI','htLxD','connect','\x20-\x20backend\x20callback\x20completed','QrHUV','β
\x20Updating\x20connection\x20state\x20for\x20','ytSYE','πΎ\x20','\x20connection\x20stored\x20successfully','bIaik','ymYuy','VdPmS','jzRtB','cfhBg','setTemporaryPin','kqYcm','mRDWE','eqqfx','QZmdg','KSXZK','details','gCHWc','FQiVg','KjYHi','LDJos','PgjPs','Error:\x20Failed\x20to\x20continue\x20training','TXNvk','fqYbo','YqCSd','ADIqy','lXkSr','Starting\x20training...','FyCSb','Pzmjh','None','eAdQm','ULOJW','WLoqR','LGIaN','LeGbQ','dtTow','requiresConnections','hzyqm','Ymtmq','VOOKm','CONNECTIONS_REQUIRED','π\x20Training\x20Started:','ZuFnV','KBuYU','4|3|1|5|2|0|6','fIZvI','tMgSe','pGIpy','kNbYW','xdfbv','WYiDN','sqEXE','qhoQp','xbCjL','β\x20[TRANSITION]\x20Background\x20training\x20failed\x20during\x20transition:','UNfkV','PKgYK','ofsrQ','thqPk','JEUMD','eadSu','qiMfR','NegvE','KWJCe','FWIdm','LePRT','kpTQQ','usWwG','gDyEg','YnGAG','eQBva','wGXPP','giVEO','OQzov','xOfZd','weDhk','BecoC','VUNub','edNaJ','UiTOm','NO_DATA','TBmNB','π«\x20No\x20data\x20scenario\x20detected','nVAeY','ZDMoK','gqESH','π\x20Socket\x20state\x20after\x201\x20second:','dvNpj','OKlpg','uxGOQ','TuIfp','dwPmD','Initializing','NavLr','XKDvc','hlkDd','π\x20Step\x201:\x20Ensuring\x20authentication\x20token...','xyWnv','β
\x20Authentication\x20token\x20set\x20in\x20state:','tDvqz','NLyLN','MRxgp','wqwKj','khQre','LLqmA','Xkago','π§βπ»\x20Set\x20user\x20info:','LxNAt','xPOYS','EgESY','yjTeY','qBZOu','vNTVT','vtfXw','π\x20Attempting\x20to\x20connect\x20to:\x20${API_CONFIG.BASE_URL}','Platform','π\x20Network\x20connectivity\x20check\x20starting...','wmSCU','PDmGo','scOyy','Tctmf','KzNff','β
\x20Socket\x20connected\x20for\x20training','Yecdo','dLvKP','JRKzK','engine','transport','lmlBh','TMZOF','Starting\x20training','COyXC','π\x20Socket\x20ID\x20for\x20training:','VFHbg','VXtAM','wdcda','Reconnecting...\x20(','/3)','β°\x20Socket\x20registered\x20but\x20training\x20will\x20not\x20start\x20from\x20persona\x20screen...','vpcpG','Waiting\x20for\x20training\x20to\x20start\x20from\x20connectorβPIN\x20transition','VMlvz','vgEAo','cEGZn','π\x20Socket\x20reconnected\x20after','gyybp','BczSn','ZzKMj','tVYrV','mOLZy','connect_error','CSuSR','stack','bnRol','mmMgC','nWwcT','iWHho','wcgUs','fjRCT','Sbgfj','qcEtv','DyKhO','umCLq','zgMYh','traits','inferenceResults','NoKBX','YeAhO','completed','xfowf','xVAdl','isArray','NZfaC','testing','zZqxw','hfNYR','xLFbK','xAbHQ','BBXBp','FUUGb','afqYu','β
\x20YouTube\x20reconnected,\x20but\x20training\x20restart\x20disabled','DkkVU','YouTube\x20reconnection\x20failed.\x20Please\x20restart\x20from\x20connector\x20screen.','aTDCy','xDhtz','WXvoL','YouTube\x20access\x20token\x20has\x20expired','yvzxv','nNsQG','refreshYouTubeTokens','β
\x20YouTube\x20tokens\x20refreshed,\x20but\x20training\x20restart\x20disabled','YouTube\x20tokens\x20refreshed\x20-\x20but\x20training\x20only\x20starts\x20from\x20connectorβPIN','ylqaJ','gqjzj','IEkcS','xRsmh','TppiR','RAviz','gwSdE','YouTube\x20reconnected\x20-\x20please\x20restart\x20from\x20connector\x20screen','qRvEc','qYpGC','WDMmi','QfkMX','KbpWb','kQrpP','IbOTH','pvGCa','ImBqF','yBxTy','π\x20Connections\x20required\x20detected\x20from\x20socket','WiNUz','FbsLC','qwOao','rHnPe','hONcn','vTSaH','Rygdq','cuXtY','JDunM','pYvsI','JOySB','OjqOJ','CFhgA','FefuS','pDnWt','BAxxY','progress','sulXH','QLaJt','QDddX','π\x20Socket\x20connect()\x20called\x20-\x20waiting\x20for\x20connection...','hDhOk','VzbzT','uXyzT','readyState','iEBbR','YlElP','AsyIc','yLwEm','ATmfN','wBflT','kKyGN','oIhqf','Gjdfg','CAMGx','Mrscb','zUxTw','MBvfX','AIClt','oPmOw','jQkAl','ymdev','Something\x20went\x20wrong.\x20Please\x20try\x20again.','Your\x20persona\x20is\x20ready!\x20π','fEpfF','wUPun','RKxzX','InVZI','hyOMc','PVSTA','ohwYc','bDWlW','sNzkp','vrWwe','ELzJH','plGcJ','eBQNi','bsAEW','wfHeE','π\x20Real\x20persona\x20creation\x20completed\x20successfully','EjJPH','KLdbe','PKCQI','AWDgj','TZnct','GEydN','HutRz','leaKk','trim','uazTi','mxjWL','βΉοΈ\x20SDK\x20does\x20not\x20create\x20users\x20during\x20onboarding','uqULD','values','PzKPi','pFThv','XMdif','ZcjMY','Rhwic','TPKyo','gnqBO','WvgjM','β\x20[BACKGROUND]\x20Socket\x20disconnected','RRUna','SzlRx','lYlGS','smZhP','QufVO','DFfbh','bcswi','sqAom','aMNqF','NEQNO','YMehx','ghwXo','NFILh','bffEL','kqxXK','CNbQu','AGreq','CsnJH','rpwKq','wuHYu','π€\x20Sending\x20background\x20training\x20data\x20to\x20/mobile-training/enoch:','startEnochTrainingWithYouTubeCheck','TYwar','π\x20Connections\x20required\x20detected\x20from\x20background\x20training','vpAQA','vEjmr','jeLXZ','π\x20Background\x20training\x20started:','FHDHR','pkpQU','OWJvL','pvWfh','qsMri','ZRGWg','SyDpy','GsOvM','Background\x20training\x20failed\x20to\x20start','BPHVD','FNjQy','JlHwa','Modal','modalOverlay','createElement','TouchableWithoutFeedback','View','bottomSheet','SafeAreaView','TouchableOpacity','handleButton','ZaPKu','platforms','debugPanel','Text','YsPDC','debugRow','max','debugBtn','debugLabel','EPKTI','Vgjkm','debugCloseBtn','debugCloseBtnText','welcomeContainer','headingContainer','bodyContainer','welcomeButtonContainer','XoEgF','AcQnm','mNtbr','GjkFN','LyPth','getAuthToken','π\x20[SDK]\x20Auth\x20data\x20retrieved\x20in\x20parallel\x20for\x20returning\x20user','niyjM','MJnfT','BYrcD','KkdvZ','vueNl','zLKWD','MffEM','Qvkta','GvZHd','PLFDn','welcome','ydInj','klGXs','ngGEf','JvUhS','IQlXA','tdgop','Phsue','UniversalOnboarding','StyleSheet','flex-end','#FAFAFA','ios','100%','center','transparent','#D0D0D0','absolute','rgba(0,0,0,0.85)','#fff','700','row','#444','#666','#F5F5F5','bold','#333','600','underline','#E5E5E5','space-between','#E9C46A','#000','#000000','#F0F0F0','flex-start','#FF3B30','500','italic','#F0F9FF','#D1D5DB','#6B7280','#FF6B6B','#F8F9FA','#0EA5E9','#0C4A6E'];_0x585e=function(){return _0x8fca7b;};return _0x585e();}
|