├── .gitignore ├── LICENSE ├── README.md ├── falcon ├── .gitignore ├── 0001-align-to-ptrsize.patch ├── CHANGELOG.md └── app │ ├── .swiftlint.yml │ ├── Gemfile │ ├── Gemfile.lock │ ├── Podfile │ ├── Podfile.lock │ ├── Pods │ ├── AppAuth.xcodeproj │ │ └── project.pbxproj │ ├── AppAuth │ │ ├── LICENSE │ │ ├── README.md │ │ └── Sources │ │ │ ├── AppAuth.h │ │ │ ├── AppAuth │ │ │ └── iOS │ │ │ │ ├── OIDAuthState+IOS.h │ │ │ │ ├── OIDAuthState+IOS.m │ │ │ │ ├── OIDAuthorizationService+IOS.h │ │ │ │ ├── OIDAuthorizationService+IOS.m │ │ │ │ ├── OIDExternalUserAgentCatalyst.h │ │ │ │ ├── OIDExternalUserAgentCatalyst.m │ │ │ │ ├── OIDExternalUserAgentIOS.h │ │ │ │ ├── OIDExternalUserAgentIOS.m │ │ │ │ ├── OIDExternalUserAgentIOSCustomBrowser.h │ │ │ │ └── OIDExternalUserAgentIOSCustomBrowser.m │ │ │ ├── AppAuthCore.h │ │ │ └── AppAuthCore │ │ │ ├── OIDAuthState.h │ │ │ ├── OIDAuthState.m │ │ │ ├── OIDAuthStateChangeDelegate.h │ │ │ ├── OIDAuthStateErrorDelegate.h │ │ │ ├── OIDAuthorizationRequest.h │ │ │ ├── OIDAuthorizationRequest.m │ │ │ ├── OIDAuthorizationResponse.h │ │ │ ├── OIDAuthorizationResponse.m │ │ │ ├── OIDAuthorizationService.h │ │ │ ├── OIDAuthorizationService.m │ │ │ ├── OIDClientMetadataParameters.h │ │ │ ├── OIDClientMetadataParameters.m │ │ │ ├── OIDDefines.h │ │ │ ├── OIDEndSessionRequest.h │ │ │ ├── OIDEndSessionRequest.m │ │ │ ├── OIDEndSessionResponse.h │ │ │ ├── OIDEndSessionResponse.m │ │ │ ├── OIDError.h │ │ │ ├── OIDError.m │ │ │ ├── OIDErrorUtilities.h │ │ │ ├── OIDErrorUtilities.m │ │ │ ├── OIDExternalUserAgent.h │ │ │ ├── OIDExternalUserAgentRequest.h │ │ │ ├── OIDExternalUserAgentSession.h │ │ │ ├── OIDFieldMapping.h │ │ │ ├── OIDFieldMapping.m │ │ │ ├── OIDGrantTypes.h │ │ │ ├── OIDGrantTypes.m │ │ │ ├── OIDIDToken.h │ │ │ ├── OIDIDToken.m │ │ │ ├── OIDRegistrationRequest.h │ │ │ ├── OIDRegistrationRequest.m │ │ │ ├── OIDRegistrationResponse.h │ │ │ ├── OIDRegistrationResponse.m │ │ │ ├── OIDResponseTypes.h │ │ │ ├── OIDResponseTypes.m │ │ │ ├── OIDScopeUtilities.h │ │ │ ├── OIDScopeUtilities.m │ │ │ ├── OIDScopes.h │ │ │ ├── OIDScopes.m │ │ │ ├── OIDServiceConfiguration.h │ │ │ ├── OIDServiceConfiguration.m │ │ │ ├── OIDServiceDiscovery.h │ │ │ ├── OIDServiceDiscovery.m │ │ │ ├── OIDTokenRequest.h │ │ │ ├── OIDTokenRequest.m │ │ │ ├── OIDTokenResponse.h │ │ │ ├── OIDTokenResponse.m │ │ │ ├── OIDTokenUtilities.h │ │ │ ├── OIDTokenUtilities.m │ │ │ ├── OIDURLQueryComponent.h │ │ │ ├── OIDURLQueryComponent.m │ │ │ ├── OIDURLSessionProvider.h │ │ │ ├── OIDURLSessionProvider.m │ │ │ └── Resources │ │ │ └── PrivacyInfo.xcprivacy │ ├── Dip.xcodeproj │ │ └── project.pbxproj │ ├── Dip │ │ ├── LICENSE │ │ ├── README.md │ │ └── Sources │ │ │ ├── AutoInjection.swift │ │ │ ├── AutoWiring.swift │ │ │ ├── Compatibility.swift │ │ │ ├── ComponentScope.swift │ │ │ ├── Definition.swift │ │ │ ├── Dip.swift │ │ │ ├── DipError.swift │ │ │ ├── Register.swift │ │ │ ├── Resolve.swift │ │ │ ├── RuntimeArguments.swift │ │ │ ├── StoryboardInstantiatable.swift │ │ │ ├── TypeForwarding.swift │ │ │ └── Utils.swift │ ├── Firebase.xcodeproj │ │ └── project.pbxproj │ ├── Firebase │ │ ├── CoreOnly │ │ │ ├── CHANGELOG.md │ │ │ ├── NOTICES │ │ │ ├── README.md │ │ │ └── Sources │ │ │ │ ├── Firebase.h │ │ │ │ └── module.modulemap │ │ ├── LICENSE │ │ └── README.md │ ├── FirebaseAnalytics.xcodeproj │ │ └── project.pbxproj │ ├── FirebaseAnalytics │ │ └── Frameworks │ │ │ └── FirebaseAnalytics.xcframework │ │ │ ├── Info.plist │ │ │ ├── _CodeSignature │ │ │ ├── CodeDirectory │ │ │ ├── CodeRequirements │ │ │ ├── CodeRequirements-1 │ │ │ ├── CodeResources │ │ │ └── CodeSignature │ │ │ ├── ios-arm64 │ │ │ └── FirebaseAnalytics.framework │ │ │ │ ├── FirebaseAnalytics │ │ │ │ ├── Headers │ │ │ │ ├── FIRAnalytics+AppDelegate.h │ │ │ │ ├── FIRAnalytics+Consent.h │ │ │ │ ├── FIRAnalytics+OnDevice.h │ │ │ │ ├── FIRAnalytics.h │ │ │ │ ├── FIREventNames.h │ │ │ │ ├── FIRParameterNames.h │ │ │ │ ├── FIRUserPropertyNames.h │ │ │ │ ├── FirebaseAnalytics-Swift.h │ │ │ │ ├── FirebaseAnalytics-umbrella.h │ │ │ │ └── FirebaseAnalytics.h │ │ │ │ ├── Info.plist │ │ │ │ └── Modules │ │ │ │ ├── FirebaseAnalytics.swiftmodule │ │ │ │ ├── Project │ │ │ │ │ └── arm64-apple-ios.swiftsourceinfo │ │ │ │ ├── arm64-apple-ios.abi.json │ │ │ │ ├── arm64-apple-ios.private.swiftinterface │ │ │ │ ├── arm64-apple-ios.swiftdoc │ │ │ │ └── arm64-apple-ios.swiftinterface │ │ │ │ └── module.modulemap │ │ │ ├── ios-arm64_x86_64-maccatalyst │ │ │ └── FirebaseAnalytics.framework │ │ │ │ ├── FirebaseAnalytics │ │ │ │ ├── Headers │ │ │ │ ├── Modules │ │ │ │ ├── Resources │ │ │ │ └── Versions │ │ │ │ ├── A │ │ │ │ ├── FirebaseAnalytics │ │ │ │ ├── Headers │ │ │ │ │ ├── FIRAnalytics+AppDelegate.h │ │ │ │ │ ├── FIRAnalytics+Consent.h │ │ │ │ │ ├── FIRAnalytics+OnDevice.h │ │ │ │ │ ├── FIRAnalytics.h │ │ │ │ │ ├── FIREventNames.h │ │ │ │ │ ├── FIRParameterNames.h │ │ │ │ │ ├── FIRUserPropertyNames.h │ │ │ │ │ ├── FirebaseAnalytics-Swift.h │ │ │ │ │ ├── FirebaseAnalytics-umbrella.h │ │ │ │ │ └── FirebaseAnalytics.h │ │ │ │ ├── Modules │ │ │ │ │ ├── FirebaseAnalytics.swiftmodule │ │ │ │ │ │ ├── Project │ │ │ │ │ │ │ ├── arm64-apple-ios-macabi.swiftsourceinfo │ │ │ │ │ │ │ └── x86_64-apple-ios-macabi.swiftsourceinfo │ │ │ │ │ │ ├── arm64-apple-ios-macabi.abi.json │ │ │ │ │ │ ├── arm64-apple-ios-macabi.private.swiftinterface │ │ │ │ │ │ ├── arm64-apple-ios-macabi.swiftdoc │ │ │ │ │ │ ├── arm64-apple-ios-macabi.swiftinterface │ │ │ │ │ │ ├── x86_64-apple-ios-macabi.abi.json │ │ │ │ │ │ ├── x86_64-apple-ios-macabi.private.swiftinterface │ │ │ │ │ │ ├── x86_64-apple-ios-macabi.swiftdoc │ │ │ │ │ │ └── x86_64-apple-ios-macabi.swiftinterface │ │ │ │ │ └── module.modulemap │ │ │ │ └── Resources │ │ │ │ │ └── Info.plist │ │ │ │ └── Current │ │ │ ├── ios-arm64_x86_64-simulator │ │ │ └── FirebaseAnalytics.framework │ │ │ │ ├── FirebaseAnalytics │ │ │ │ ├── Headers │ │ │ │ ├── FIRAnalytics+AppDelegate.h │ │ │ │ ├── FIRAnalytics+Consent.h │ │ │ │ ├── FIRAnalytics+OnDevice.h │ │ │ │ ├── FIRAnalytics.h │ │ │ │ ├── FIREventNames.h │ │ │ │ ├── FIRParameterNames.h │ │ │ │ ├── FIRUserPropertyNames.h │ │ │ │ ├── FirebaseAnalytics-Swift.h │ │ │ │ ├── FirebaseAnalytics-umbrella.h │ │ │ │ └── FirebaseAnalytics.h │ │ │ │ ├── Info.plist │ │ │ │ └── Modules │ │ │ │ ├── FirebaseAnalytics.swiftmodule │ │ │ │ ├── Project │ │ │ │ │ ├── arm64-apple-ios-simulator.swiftsourceinfo │ │ │ │ │ └── x86_64-apple-ios-simulator.swiftsourceinfo │ │ │ │ ├── arm64-apple-ios-simulator.abi.json │ │ │ │ ├── arm64-apple-ios-simulator.private.swiftinterface │ │ │ │ ├── arm64-apple-ios-simulator.swiftdoc │ │ │ │ ├── arm64-apple-ios-simulator.swiftinterface │ │ │ │ ├── x86_64-apple-ios-simulator.abi.json │ │ │ │ ├── x86_64-apple-ios-simulator.private.swiftinterface │ │ │ │ ├── x86_64-apple-ios-simulator.swiftdoc │ │ │ │ └── x86_64-apple-ios-simulator.swiftinterface │ │ │ │ └── module.modulemap │ │ │ ├── macos-arm64_x86_64 │ │ │ └── FirebaseAnalytics.framework │ │ │ │ ├── FirebaseAnalytics │ │ │ │ ├── Headers │ │ │ │ ├── Modules │ │ │ │ ├── Resources │ │ │ │ └── Versions │ │ │ │ ├── A │ │ │ │ ├── FirebaseAnalytics │ │ │ │ ├── Headers │ │ │ │ │ ├── FIRAnalytics+AppDelegate.h │ │ │ │ │ ├── FIRAnalytics+Consent.h │ │ │ │ │ ├── FIRAnalytics+OnDevice.h │ │ │ │ │ ├── FIRAnalytics.h │ │ │ │ │ ├── FIREventNames.h │ │ │ │ │ ├── FIRParameterNames.h │ │ │ │ │ ├── FIRUserPropertyNames.h │ │ │ │ │ ├── FirebaseAnalytics-Swift.h │ │ │ │ │ ├── FirebaseAnalytics-umbrella.h │ │ │ │ │ └── FirebaseAnalytics.h │ │ │ │ ├── Modules │ │ │ │ │ ├── FirebaseAnalytics.swiftmodule │ │ │ │ │ │ ├── Project │ │ │ │ │ │ │ ├── arm64-apple-macos.swiftsourceinfo │ │ │ │ │ │ │ └── x86_64-apple-macos.swiftsourceinfo │ │ │ │ │ │ ├── arm64-apple-macos.abi.json │ │ │ │ │ │ ├── arm64-apple-macos.private.swiftinterface │ │ │ │ │ │ ├── arm64-apple-macos.swiftdoc │ │ │ │ │ │ ├── arm64-apple-macos.swiftinterface │ │ │ │ │ │ ├── x86_64-apple-macos.abi.json │ │ │ │ │ │ ├── x86_64-apple-macos.private.swiftinterface │ │ │ │ │ │ ├── x86_64-apple-macos.swiftdoc │ │ │ │ │ │ └── x86_64-apple-macos.swiftinterface │ │ │ │ │ └── module.modulemap │ │ │ │ └── Resources │ │ │ │ │ └── Info.plist │ │ │ │ └── Current │ │ │ ├── tvos-arm64 │ │ │ └── FirebaseAnalytics.framework │ │ │ │ ├── FirebaseAnalytics │ │ │ │ ├── Headers │ │ │ │ ├── FIRAnalytics+AppDelegate.h │ │ │ │ ├── FIRAnalytics+Consent.h │ │ │ │ ├── FIRAnalytics+OnDevice.h │ │ │ │ ├── FIRAnalytics.h │ │ │ │ ├── FIREventNames.h │ │ │ │ ├── FIRParameterNames.h │ │ │ │ ├── FIRUserPropertyNames.h │ │ │ │ ├── FirebaseAnalytics-Swift.h │ │ │ │ ├── FirebaseAnalytics-umbrella.h │ │ │ │ └── FirebaseAnalytics.h │ │ │ │ ├── Info.plist │ │ │ │ └── Modules │ │ │ │ ├── FirebaseAnalytics.swiftmodule │ │ │ │ ├── Project │ │ │ │ │ └── arm64-apple-tvos.swiftsourceinfo │ │ │ │ ├── arm64-apple-tvos.abi.json │ │ │ │ ├── arm64-apple-tvos.private.swiftinterface │ │ │ │ ├── arm64-apple-tvos.swiftdoc │ │ │ │ └── arm64-apple-tvos.swiftinterface │ │ │ │ └── module.modulemap │ │ │ └── tvos-arm64_x86_64-simulator │ │ │ └── FirebaseAnalytics.framework │ │ │ ├── FirebaseAnalytics │ │ │ ├── Headers │ │ │ ├── FIRAnalytics+AppDelegate.h │ │ │ ├── FIRAnalytics+Consent.h │ │ │ ├── FIRAnalytics+OnDevice.h │ │ │ ├── FIRAnalytics.h │ │ │ ├── FIREventNames.h │ │ │ ├── FIRParameterNames.h │ │ │ ├── FIRUserPropertyNames.h │ │ │ ├── FirebaseAnalytics-Swift.h │ │ │ ├── FirebaseAnalytics-umbrella.h │ │ │ └── FirebaseAnalytics.h │ │ │ ├── Info.plist │ │ │ └── Modules │ │ │ ├── FirebaseAnalytics.swiftmodule │ │ │ ├── Project │ │ │ │ ├── arm64-apple-tvos-simulator.swiftsourceinfo │ │ │ │ └── x86_64-apple-tvos-simulator.swiftsourceinfo │ │ │ ├── arm64-apple-tvos-simulator.abi.json │ │ │ ├── arm64-apple-tvos-simulator.private.swiftinterface │ │ │ ├── arm64-apple-tvos-simulator.swiftdoc │ │ │ ├── arm64-apple-tvos-simulator.swiftinterface │ │ │ ├── x86_64-apple-tvos-simulator.abi.json │ │ │ ├── x86_64-apple-tvos-simulator.private.swiftinterface │ │ │ ├── x86_64-apple-tvos-simulator.swiftdoc │ │ │ └── x86_64-apple-tvos-simulator.swiftinterface │ │ │ └── module.modulemap │ ├── FirebaseCore.xcodeproj │ │ └── project.pbxproj │ ├── FirebaseCore │ │ ├── FirebaseCore │ │ │ ├── Extension │ │ │ │ ├── FIRAppInternal.h │ │ │ │ ├── FIRComponent.h │ │ │ │ ├── FIRComponentContainer.h │ │ │ │ ├── FIRComponentType.h │ │ │ │ ├── FIRDependency.h │ │ │ │ ├── FIRHeartbeatLogger.h │ │ │ │ ├── FIRLibrary.h │ │ │ │ ├── FIRLogger.h │ │ │ │ ├── FIROptionsInternal.h │ │ │ │ └── FirebaseCoreInternal.h │ │ │ └── Sources │ │ │ │ ├── FIRAnalyticsConfiguration.h │ │ │ │ ├── FIRAnalyticsConfiguration.m │ │ │ │ ├── FIRApp.m │ │ │ │ ├── FIRBundleUtil.h │ │ │ │ ├── FIRBundleUtil.m │ │ │ │ ├── FIRComponent.m │ │ │ │ ├── FIRComponentContainer.m │ │ │ │ ├── FIRComponentContainerInternal.h │ │ │ │ ├── FIRComponentType.m │ │ │ │ ├── FIRConfiguration.m │ │ │ │ ├── FIRConfigurationInternal.h │ │ │ │ ├── FIRDependency.m │ │ │ │ ├── FIRFirebaseUserAgent.h │ │ │ │ ├── FIRFirebaseUserAgent.m │ │ │ │ ├── FIRHeartbeatLogger.m │ │ │ │ ├── FIRLogger.m │ │ │ │ ├── FIROptions.m │ │ │ │ ├── FIRVersion.m │ │ │ │ ├── Public │ │ │ │ └── FirebaseCore │ │ │ │ │ ├── FIRApp.h │ │ │ │ │ ├── FIRConfiguration.h │ │ │ │ │ ├── FIRLoggerLevel.h │ │ │ │ │ ├── FIROptions.h │ │ │ │ │ ├── FIRVersion.h │ │ │ │ │ └── FirebaseCore.h │ │ │ │ └── Resources │ │ │ │ └── PrivacyInfo.xcprivacy │ │ ├── LICENSE │ │ └── README.md │ ├── FirebaseCoreExtension.xcodeproj │ │ └── project.pbxproj │ ├── FirebaseCoreExtension │ │ ├── FirebaseCore │ │ │ └── Extension │ │ │ │ ├── FIRAppInternal.h │ │ │ │ ├── FIRComponent.h │ │ │ │ ├── FIRComponentContainer.h │ │ │ │ ├── FIRComponentType.h │ │ │ │ ├── FIRDependency.h │ │ │ │ ├── FIRHeartbeatLogger.h │ │ │ │ ├── FIRLibrary.h │ │ │ │ ├── FIRLogger.h │ │ │ │ ├── FIROptionsInternal.h │ │ │ │ ├── FirebaseCoreInternal.h │ │ │ │ ├── Resources │ │ │ │ └── PrivacyInfo.xcprivacy │ │ │ │ └── dummy.m │ │ ├── LICENSE │ │ └── README.md │ ├── FirebaseCoreInternal.xcodeproj │ │ └── project.pbxproj │ ├── FirebaseCoreInternal │ │ ├── FirebaseCore │ │ │ └── Internal │ │ │ │ └── Sources │ │ │ │ ├── HeartbeatLogging │ │ │ │ ├── Heartbeat.swift │ │ │ │ ├── HeartbeatController.swift │ │ │ │ ├── HeartbeatLoggingTestUtils.swift │ │ │ │ ├── HeartbeatStorage.swift │ │ │ │ ├── HeartbeatsBundle.swift │ │ │ │ ├── HeartbeatsPayload.swift │ │ │ │ ├── RingBuffer.swift │ │ │ │ ├── Storage.swift │ │ │ │ ├── StorageFactory.swift │ │ │ │ ├── WeakContainer.swift │ │ │ │ ├── _ObjC_HeartbeatController.swift │ │ │ │ └── _ObjC_HeartbeatsPayload.swift │ │ │ │ └── Resources │ │ │ │ └── PrivacyInfo.xcprivacy │ │ ├── LICENSE │ │ └── README.md │ ├── FirebaseCrashlytics.xcodeproj │ │ └── project.pbxproj │ ├── FirebaseCrashlytics │ │ ├── Crashlytics │ │ │ ├── Crashlytics │ │ │ │ ├── Components │ │ │ │ │ ├── FIRCLSApplication.h │ │ │ │ │ ├── FIRCLSApplication.m │ │ │ │ │ ├── FIRCLSBinaryImage.h │ │ │ │ │ ├── FIRCLSBinaryImage.m │ │ │ │ │ ├── FIRCLSContext.h │ │ │ │ │ ├── FIRCLSContext.m │ │ │ │ │ ├── FIRCLSCrashedMarkerFile.c │ │ │ │ │ ├── FIRCLSCrashedMarkerFile.h │ │ │ │ │ ├── FIRCLSGlobals.h │ │ │ │ │ ├── FIRCLSHost.h │ │ │ │ │ ├── FIRCLSHost.m │ │ │ │ │ ├── FIRCLSProcess.c │ │ │ │ │ ├── FIRCLSProcess.h │ │ │ │ │ ├── FIRCLSUserLogging.h │ │ │ │ │ └── FIRCLSUserLogging.m │ │ │ │ ├── Controllers │ │ │ │ │ ├── FIRCLSAnalyticsManager.h │ │ │ │ │ ├── FIRCLSAnalyticsManager.m │ │ │ │ │ ├── FIRCLSContextManager.h │ │ │ │ │ ├── FIRCLSContextManager.m │ │ │ │ │ ├── FIRCLSExistingReportManager.h │ │ │ │ │ ├── FIRCLSExistingReportManager.m │ │ │ │ │ ├── FIRCLSManagerData.h │ │ │ │ │ ├── FIRCLSManagerData.m │ │ │ │ │ ├── FIRCLSMetricKitManager.h │ │ │ │ │ ├── FIRCLSMetricKitManager.m │ │ │ │ │ ├── FIRCLSNotificationManager.h │ │ │ │ │ ├── FIRCLSNotificationManager.m │ │ │ │ │ ├── FIRCLSReportManager.h │ │ │ │ │ ├── FIRCLSReportManager.m │ │ │ │ │ ├── FIRCLSReportManager_Private.h │ │ │ │ │ ├── FIRCLSReportUploader.h │ │ │ │ │ ├── FIRCLSReportUploader.m │ │ │ │ │ ├── FIRCLSReportUploader_Private.h │ │ │ │ │ ├── FIRCLSRolloutsPersistenceManager.h │ │ │ │ │ └── FIRCLSRolloutsPersistenceManager.m │ │ │ │ ├── DataCollection │ │ │ │ │ ├── FIRCLSDataCollectionArbiter.h │ │ │ │ │ ├── FIRCLSDataCollectionArbiter.m │ │ │ │ │ ├── FIRCLSDataCollectionToken.h │ │ │ │ │ └── FIRCLSDataCollectionToken.m │ │ │ │ ├── FIRCLSUserDefaults │ │ │ │ │ ├── FIRCLSUserDefaults.h │ │ │ │ │ ├── FIRCLSUserDefaults.m │ │ │ │ │ └── FIRCLSUserDefaults_private.h │ │ │ │ ├── FIRCrashlytics.m │ │ │ │ ├── FIRCrashlyticsReport.m │ │ │ │ ├── FIRExceptionModel.m │ │ │ │ ├── FIRStackFrame.m │ │ │ │ ├── Handlers │ │ │ │ │ ├── FIRCLSException.h │ │ │ │ │ ├── FIRCLSException.mm │ │ │ │ │ ├── FIRCLSHandler.h │ │ │ │ │ ├── FIRCLSHandler.m │ │ │ │ │ ├── FIRCLSMachException.c │ │ │ │ │ ├── FIRCLSMachException.h │ │ │ │ │ ├── FIRCLSSignal.c │ │ │ │ │ └── FIRCLSSignal.h │ │ │ │ ├── Helpers │ │ │ │ │ ├── FIRCLSAllocate.c │ │ │ │ │ ├── FIRCLSAllocate.h │ │ │ │ │ ├── FIRCLSCallStackTree.h │ │ │ │ │ ├── FIRCLSCallStackTree.m │ │ │ │ │ ├── FIRCLSContextInitData.h │ │ │ │ │ ├── FIRCLSContextInitData.m │ │ │ │ │ ├── FIRCLSDefines.h │ │ │ │ │ ├── FIRCLSFeatures.h │ │ │ │ │ ├── FIRCLSFile.h │ │ │ │ │ ├── FIRCLSFile.m │ │ │ │ │ ├── FIRCLSInternalLogging.c │ │ │ │ │ ├── FIRCLSInternalLogging.h │ │ │ │ │ ├── FIRCLSLogger.h │ │ │ │ │ ├── FIRCLSLogger.m │ │ │ │ │ ├── FIRCLSThreadState.c │ │ │ │ │ ├── FIRCLSThreadState.h │ │ │ │ │ ├── FIRCLSUtility.h │ │ │ │ │ └── FIRCLSUtility.m │ │ │ │ ├── Models │ │ │ │ │ ├── FIRCLSExecutionIdentifierModel.h │ │ │ │ │ ├── FIRCLSExecutionIdentifierModel.m │ │ │ │ │ ├── FIRCLSFileManager.h │ │ │ │ │ ├── FIRCLSFileManager.m │ │ │ │ │ ├── FIRCLSInstallIdentifierModel.h │ │ │ │ │ ├── FIRCLSInstallIdentifierModel.m │ │ │ │ │ ├── FIRCLSInternalReport.h │ │ │ │ │ ├── FIRCLSInternalReport.m │ │ │ │ │ ├── FIRCLSLaunchMarkerModel.h │ │ │ │ │ ├── FIRCLSLaunchMarkerModel.m │ │ │ │ │ ├── FIRCLSOnDemandModel.h │ │ │ │ │ ├── FIRCLSOnDemandModel.m │ │ │ │ │ ├── FIRCLSSettings.h │ │ │ │ │ ├── FIRCLSSettings.m │ │ │ │ │ ├── FIRCLSSymbolResolver.h │ │ │ │ │ ├── FIRCLSSymbolResolver.m │ │ │ │ │ └── Record │ │ │ │ │ │ ├── FIRCLSRecordApplication.h │ │ │ │ │ │ ├── FIRCLSRecordApplication.m │ │ │ │ │ │ ├── FIRCLSRecordBase.h │ │ │ │ │ │ ├── FIRCLSRecordBase.m │ │ │ │ │ │ ├── FIRCLSRecordHost.h │ │ │ │ │ │ ├── FIRCLSRecordHost.m │ │ │ │ │ │ ├── FIRCLSRecordIdentity.h │ │ │ │ │ │ ├── FIRCLSRecordIdentity.m │ │ │ │ │ │ ├── FIRCLSReportAdapter.h │ │ │ │ │ │ ├── FIRCLSReportAdapter.m │ │ │ │ │ │ └── FIRCLSReportAdapter_Private.h │ │ │ │ ├── Operations │ │ │ │ │ ├── FIRCLSAsyncOperation.h │ │ │ │ │ ├── FIRCLSAsyncOperation.m │ │ │ │ │ ├── FIRCLSAsyncOperation_Private.h │ │ │ │ │ ├── Reports │ │ │ │ │ │ ├── FIRCLSProcessReportOperation.h │ │ │ │ │ │ └── FIRCLSProcessReportOperation.m │ │ │ │ │ └── Symbolication │ │ │ │ │ │ ├── FIRCLSDemangleOperation.h │ │ │ │ │ │ ├── FIRCLSDemangleOperation.mm │ │ │ │ │ │ ├── FIRCLSSerializeSymbolicatedFramesOperation.h │ │ │ │ │ │ ├── FIRCLSSerializeSymbolicatedFramesOperation.m │ │ │ │ │ │ ├── FIRCLSSymbolicationOperation.h │ │ │ │ │ │ ├── FIRCLSSymbolicationOperation.m │ │ │ │ │ │ ├── FIRCLSThreadArrayOperation.h │ │ │ │ │ │ └── FIRCLSThreadArrayOperation.m │ │ │ │ ├── Private │ │ │ │ │ ├── FIRCLSExistingReportManager_Private.h │ │ │ │ │ ├── FIRCLSOnDemandModel_Private.h │ │ │ │ │ ├── FIRCrashlyticsReport_Private.h │ │ │ │ │ ├── FIRExceptionModel_Private.h │ │ │ │ │ └── FIRStackFrame_Private.h │ │ │ │ ├── Public │ │ │ │ │ └── FirebaseCrashlytics │ │ │ │ │ │ ├── FIRCrashlytics.h │ │ │ │ │ │ ├── FIRCrashlyticsReport.h │ │ │ │ │ │ ├── FIRExceptionModel.h │ │ │ │ │ │ ├── FIRStackFrame.h │ │ │ │ │ │ └── FirebaseCrashlytics.h │ │ │ │ ├── Rollouts │ │ │ │ │ ├── CrashlyticsRemoteConfigManager.swift │ │ │ │ │ ├── EncodedRolloutAssignment.swift │ │ │ │ │ └── StringToHexConverter.swift │ │ │ │ ├── Settings │ │ │ │ │ ├── FIRCLSSettingsManager.h │ │ │ │ │ ├── FIRCLSSettingsManager.m │ │ │ │ │ ├── Models │ │ │ │ │ │ ├── FIRCLSApplicationIdentifierModel.h │ │ │ │ │ │ └── FIRCLSApplicationIdentifierModel.m │ │ │ │ │ └── Operations │ │ │ │ │ │ ├── FIRCLSDownloadAndSaveSettingsOperation.h │ │ │ │ │ │ ├── FIRCLSDownloadAndSaveSettingsOperation.m │ │ │ │ │ │ ├── FIRCLSNetworkOperation.h │ │ │ │ │ │ └── FIRCLSNetworkOperation.m │ │ │ │ └── Unwind │ │ │ │ │ ├── Compact │ │ │ │ │ ├── FIRCLSCompactUnwind.c │ │ │ │ │ ├── FIRCLSCompactUnwind.h │ │ │ │ │ └── FIRCLSCompactUnwind_Private.h │ │ │ │ │ ├── Dwarf │ │ │ │ │ ├── FIRCLSDataParsing.c │ │ │ │ │ ├── FIRCLSDataParsing.h │ │ │ │ │ ├── FIRCLSDwarfExpressionMachine.c │ │ │ │ │ ├── FIRCLSDwarfExpressionMachine.h │ │ │ │ │ ├── FIRCLSDwarfUnwind.c │ │ │ │ │ ├── FIRCLSDwarfUnwind.h │ │ │ │ │ └── FIRCLSDwarfUnwindRegisters.h │ │ │ │ │ ├── FIRCLSUnwind.c │ │ │ │ │ ├── FIRCLSUnwind.h │ │ │ │ │ ├── FIRCLSUnwind_arch.h │ │ │ │ │ ├── FIRCLSUnwind_arm.c │ │ │ │ │ ├── FIRCLSUnwind_x86.c │ │ │ │ │ └── FIRCLSUnwind_x86.h │ │ │ ├── LICENSE │ │ │ ├── Protogen │ │ │ │ └── nanopb │ │ │ │ │ ├── crashlytics.nanopb.c │ │ │ │ │ └── crashlytics.nanopb.h │ │ │ ├── README.md │ │ │ ├── Resources │ │ │ │ └── PrivacyInfo.xcprivacy │ │ │ ├── Shared │ │ │ │ ├── FIRCLSByteUtility.h │ │ │ │ ├── FIRCLSByteUtility.m │ │ │ │ ├── FIRCLSConstants.h │ │ │ │ ├── FIRCLSConstants.m │ │ │ │ ├── FIRCLSFABHost.h │ │ │ │ ├── FIRCLSFABHost.m │ │ │ │ ├── FIRCLSMachO │ │ │ │ │ ├── FIRCLSCodeMapping.h │ │ │ │ │ ├── FIRCLSCodeMapping.m │ │ │ │ │ ├── FIRCLSMachO.h │ │ │ │ │ ├── FIRCLSMachO.m │ │ │ │ │ ├── FIRCLSMachOBinary.h │ │ │ │ │ ├── FIRCLSMachOBinary.m │ │ │ │ │ ├── FIRCLSMachOSlice.h │ │ │ │ │ ├── FIRCLSMachOSlice.m │ │ │ │ │ ├── FIRCLSdSYM.h │ │ │ │ │ └── FIRCLSdSYM.m │ │ │ │ ├── FIRCLSNetworking │ │ │ │ │ ├── FIRCLSFABNetworkClient.h │ │ │ │ │ ├── FIRCLSFABNetworkClient.m │ │ │ │ │ ├── FIRCLSMultipartMimeStreamEncoder.h │ │ │ │ │ ├── FIRCLSMultipartMimeStreamEncoder.m │ │ │ │ │ ├── FIRCLSNetworkResponseHandler.h │ │ │ │ │ ├── FIRCLSNetworkResponseHandler.m │ │ │ │ │ ├── FIRCLSURLBuilder.h │ │ │ │ │ └── FIRCLSURLBuilder.m │ │ │ │ ├── FIRCLSOperation │ │ │ │ │ ├── FIRCLSCompoundOperation.h │ │ │ │ │ ├── FIRCLSCompoundOperation.m │ │ │ │ │ ├── FIRCLSFABAsyncOperation.h │ │ │ │ │ ├── FIRCLSFABAsyncOperation.m │ │ │ │ │ ├── FIRCLSFABAsyncOperation_Private.h │ │ │ │ │ └── FIRCLSOperation.h │ │ │ │ ├── FIRCLSUUID.h │ │ │ │ └── FIRCLSUUID.m │ │ │ └── third_party │ │ │ │ └── libunwind │ │ │ │ └── dwarf.h │ │ ├── CrashlyticsInputFiles.xcfilelist │ │ ├── FirebaseCore │ │ │ └── Extension │ │ │ │ ├── FIRAppInternal.h │ │ │ │ ├── FIRComponent.h │ │ │ │ ├── FIRComponentContainer.h │ │ │ │ ├── FIRComponentType.h │ │ │ │ ├── FIRDependency.h │ │ │ │ ├── FIRHeartbeatLogger.h │ │ │ │ ├── FIRLibrary.h │ │ │ │ ├── FIRLogger.h │ │ │ │ ├── FIROptionsInternal.h │ │ │ │ └── FirebaseCoreInternal.h │ │ ├── FirebaseInstallations │ │ │ └── Source │ │ │ │ └── Library │ │ │ │ └── Private │ │ │ │ └── FirebaseInstallationsInternal.h │ │ ├── Interop │ │ │ └── Analytics │ │ │ │ └── Public │ │ │ │ ├── FIRAnalyticsInterop.h │ │ │ │ ├── FIRAnalyticsInteropListener.h │ │ │ │ ├── FIRInteropEventNames.h │ │ │ │ └── FIRInteropParameterNames.h │ │ ├── README.md │ │ ├── run │ │ └── upload-symbols │ ├── FirebaseInstallations.xcodeproj │ │ └── project.pbxproj │ ├── FirebaseInstallations │ │ ├── FirebaseCore │ │ │ └── Extension │ │ │ │ ├── FIRAppInternal.h │ │ │ │ ├── FIRComponent.h │ │ │ │ ├── FIRComponentContainer.h │ │ │ │ ├── FIRComponentType.h │ │ │ │ ├── FIRDependency.h │ │ │ │ ├── FIRHeartbeatLogger.h │ │ │ │ ├── FIRLibrary.h │ │ │ │ ├── FIRLogger.h │ │ │ │ ├── FIROptionsInternal.h │ │ │ │ └── FirebaseCoreInternal.h │ │ ├── FirebaseInstallations │ │ │ └── Source │ │ │ │ └── Library │ │ │ │ ├── Errors │ │ │ │ ├── FIRInstallationsErrorUtil.h │ │ │ │ ├── FIRInstallationsErrorUtil.m │ │ │ │ ├── FIRInstallationsHTTPError.h │ │ │ │ └── FIRInstallationsHTTPError.m │ │ │ │ ├── FIRInstallations.m │ │ │ │ ├── FIRInstallationsAuthTokenResult.m │ │ │ │ ├── FIRInstallationsAuthTokenResultInternal.h │ │ │ │ ├── FIRInstallationsItem.h │ │ │ │ ├── FIRInstallationsItem.m │ │ │ │ ├── FIRInstallationsLogger.h │ │ │ │ ├── FIRInstallationsLogger.m │ │ │ │ ├── IIDMigration │ │ │ │ ├── FIRInstallationsIIDStore.h │ │ │ │ ├── FIRInstallationsIIDStore.m │ │ │ │ ├── FIRInstallationsIIDTokenStore.h │ │ │ │ └── FIRInstallationsIIDTokenStore.m │ │ │ │ ├── InstallationsAPI │ │ │ │ ├── FIRInstallationsAPIService.h │ │ │ │ ├── FIRInstallationsAPIService.m │ │ │ │ ├── FIRInstallationsItem+RegisterInstallationAPI.h │ │ │ │ └── FIRInstallationsItem+RegisterInstallationAPI.m │ │ │ │ ├── InstallationsIDController │ │ │ │ ├── FIRCurrentDateProvider.h │ │ │ │ ├── FIRCurrentDateProvider.m │ │ │ │ ├── FIRInstallationsBackoffController.h │ │ │ │ ├── FIRInstallationsBackoffController.m │ │ │ │ ├── FIRInstallationsIDController.h │ │ │ │ ├── FIRInstallationsIDController.m │ │ │ │ ├── FIRInstallationsSingleOperationPromiseCache.h │ │ │ │ ├── FIRInstallationsSingleOperationPromiseCache.m │ │ │ │ └── FIRInstallationsStatus.h │ │ │ │ ├── InstallationsStore │ │ │ │ ├── FIRInstallationsStore.h │ │ │ │ ├── FIRInstallationsStore.m │ │ │ │ ├── FIRInstallationsStoredAuthToken.h │ │ │ │ ├── FIRInstallationsStoredAuthToken.m │ │ │ │ ├── FIRInstallationsStoredItem.h │ │ │ │ └── FIRInstallationsStoredItem.m │ │ │ │ ├── Private │ │ │ │ └── FirebaseInstallationsInternal.h │ │ │ │ ├── Public │ │ │ │ └── FirebaseInstallations │ │ │ │ │ ├── FIRInstallations.h │ │ │ │ │ ├── FIRInstallationsAuthTokenResult.h │ │ │ │ │ ├── FIRInstallationsErrors.h │ │ │ │ │ └── FirebaseInstallations.h │ │ │ │ └── Resources │ │ │ │ └── PrivacyInfo.xcprivacy │ │ ├── LICENSE │ │ └── README.md │ ├── FirebaseMessaging.xcodeproj │ │ └── project.pbxproj │ ├── FirebaseMessaging │ │ ├── FirebaseCore │ │ │ └── Extension │ │ │ │ ├── FIRAppInternal.h │ │ │ │ ├── FIRComponent.h │ │ │ │ ├── FIRComponentContainer.h │ │ │ │ ├── FIRComponentType.h │ │ │ │ ├── FIRDependency.h │ │ │ │ ├── FIRHeartbeatLogger.h │ │ │ │ ├── FIRLibrary.h │ │ │ │ ├── FIRLogger.h │ │ │ │ ├── FIROptionsInternal.h │ │ │ │ └── FirebaseCoreInternal.h │ │ ├── FirebaseInstallations │ │ │ └── Source │ │ │ │ └── Library │ │ │ │ └── Private │ │ │ │ └── FirebaseInstallationsInternal.h │ │ ├── FirebaseMessaging │ │ │ ├── Interop │ │ │ │ └── FIRMessagingInterop.h │ │ │ └── Sources │ │ │ │ ├── FIRMessaging.m │ │ │ │ ├── FIRMessagingAnalytics.h │ │ │ │ ├── FIRMessagingAnalytics.m │ │ │ │ ├── FIRMessagingCode.h │ │ │ │ ├── FIRMessagingConstants.h │ │ │ │ ├── FIRMessagingConstants.m │ │ │ │ ├── FIRMessagingContextManagerService.h │ │ │ │ ├── FIRMessagingContextManagerService.m │ │ │ │ ├── FIRMessagingDefines.h │ │ │ │ ├── FIRMessagingExtensionHelper.m │ │ │ │ ├── FIRMessagingLogger.h │ │ │ │ ├── FIRMessagingLogger.m │ │ │ │ ├── FIRMessagingPendingTopicsList.h │ │ │ │ ├── FIRMessagingPendingTopicsList.m │ │ │ │ ├── FIRMessagingPersistentSyncMessage.h │ │ │ │ ├── FIRMessagingPersistentSyncMessage.m │ │ │ │ ├── FIRMessagingPubSub.h │ │ │ │ ├── FIRMessagingPubSub.m │ │ │ │ ├── FIRMessagingRemoteNotificationsProxy.h │ │ │ │ ├── FIRMessagingRemoteNotificationsProxy.m │ │ │ │ ├── FIRMessagingRmqManager.h │ │ │ │ ├── FIRMessagingRmqManager.m │ │ │ │ ├── FIRMessagingSyncMessageManager.h │ │ │ │ ├── FIRMessagingSyncMessageManager.m │ │ │ │ ├── FIRMessagingTopicOperation.h │ │ │ │ ├── FIRMessagingTopicOperation.m │ │ │ │ ├── FIRMessagingTopicsCommon.h │ │ │ │ ├── FIRMessagingUtilities.h │ │ │ │ ├── FIRMessagingUtilities.m │ │ │ │ ├── FIRMessaging_Private.h │ │ │ │ ├── FirebaseMessaging.h │ │ │ │ ├── NSDictionary+FIRMessaging.h │ │ │ │ ├── NSDictionary+FIRMessaging.m │ │ │ │ ├── NSError+FIRMessaging.h │ │ │ │ ├── NSError+FIRMessaging.m │ │ │ │ ├── Protogen │ │ │ │ └── nanopb │ │ │ │ │ ├── me.nanopb.c │ │ │ │ │ └── me.nanopb.h │ │ │ │ ├── Public │ │ │ │ └── FirebaseMessaging │ │ │ │ │ ├── FIRMessaging.h │ │ │ │ │ ├── FIRMessagingExtensionHelper.h │ │ │ │ │ └── FirebaseMessaging.h │ │ │ │ ├── Resources │ │ │ │ └── PrivacyInfo.xcprivacy │ │ │ │ └── Token │ │ │ │ ├── FIRMessagingAPNSInfo.h │ │ │ │ ├── FIRMessagingAPNSInfo.m │ │ │ │ ├── FIRMessagingAuthKeychain.h │ │ │ │ ├── FIRMessagingAuthKeychain.m │ │ │ │ ├── FIRMessagingAuthService.h │ │ │ │ ├── FIRMessagingAuthService.m │ │ │ │ ├── FIRMessagingBackupExcludedPlist.h │ │ │ │ ├── FIRMessagingBackupExcludedPlist.m │ │ │ │ ├── FIRMessagingCheckinPreferences.h │ │ │ │ ├── FIRMessagingCheckinPreferences.m │ │ │ │ ├── FIRMessagingCheckinService.h │ │ │ │ ├── FIRMessagingCheckinService.m │ │ │ │ ├── FIRMessagingCheckinStore.h │ │ │ │ ├── FIRMessagingCheckinStore.m │ │ │ │ ├── FIRMessagingKeychain.h │ │ │ │ ├── FIRMessagingKeychain.m │ │ │ │ ├── FIRMessagingTokenDeleteOperation.h │ │ │ │ ├── FIRMessagingTokenDeleteOperation.m │ │ │ │ ├── FIRMessagingTokenFetchOperation.h │ │ │ │ ├── FIRMessagingTokenFetchOperation.m │ │ │ │ ├── FIRMessagingTokenInfo.h │ │ │ │ ├── FIRMessagingTokenInfo.m │ │ │ │ ├── FIRMessagingTokenManager.h │ │ │ │ ├── FIRMessagingTokenManager.m │ │ │ │ ├── FIRMessagingTokenOperation.h │ │ │ │ ├── FIRMessagingTokenOperation.m │ │ │ │ ├── FIRMessagingTokenStore.h │ │ │ │ └── FIRMessagingTokenStore.m │ │ ├── Interop │ │ │ └── Analytics │ │ │ │ └── Public │ │ │ │ ├── FIRAnalyticsInterop.h │ │ │ │ ├── FIRAnalyticsInteropListener.h │ │ │ │ ├── FIRInteropEventNames.h │ │ │ │ └── FIRInteropParameterNames.h │ │ ├── LICENSE │ │ └── README.md │ ├── FirebaseRemoteConfigInterop.xcodeproj │ │ └── project.pbxproj │ ├── FirebaseRemoteConfigInterop │ │ ├── FirebaseRemoteConfig │ │ │ └── Interop │ │ │ │ ├── RemoteConfigConstants.swift │ │ │ │ ├── RemoteConfigInterop.swift │ │ │ │ ├── RolloutAssignment.swift │ │ │ │ └── RolloutsStateSubscriber.swift │ │ ├── LICENSE │ │ └── README.md │ ├── FirebaseSessions.xcodeproj │ │ └── project.pbxproj │ ├── FirebaseSessions │ │ ├── FirebaseSessions │ │ │ ├── Sources │ │ │ │ ├── ApplicationInfo.swift │ │ │ │ ├── Development │ │ │ │ │ ├── DevEventConsoleLogger.swift │ │ │ │ │ └── NanoPB+CustomStringConvertible.swift │ │ │ │ ├── EventGDTLogger.swift │ │ │ │ ├── FirebaseSessions.swift │ │ │ │ ├── FirebaseSessionsError.swift │ │ │ │ ├── GoogleDataTransport+GoogleDataTransportProtocol.swift │ │ │ │ ├── Installations+InstallationsProtocol.swift │ │ │ │ ├── Logger.swift │ │ │ │ ├── NetworkInfo.swift │ │ │ │ ├── Public │ │ │ │ │ ├── SessionsDependencies.swift │ │ │ │ │ ├── SessionsProvider.swift │ │ │ │ │ └── SessionsSubscriber.swift │ │ │ │ ├── SessionCoordinator.swift │ │ │ │ ├── SessionGenerator.swift │ │ │ │ ├── SessionInitiator.swift │ │ │ │ ├── SessionStartEvent.swift │ │ │ │ ├── Settings │ │ │ │ │ ├── LocalOverrideSettings.swift │ │ │ │ │ ├── RemoteSettings.swift │ │ │ │ │ ├── SDKDefaultSettings.swift │ │ │ │ │ ├── SessionsSettings.swift │ │ │ │ │ ├── SettingsCacheClient.swift │ │ │ │ │ ├── SettingsDownloadClient.swift │ │ │ │ │ ├── SettingsProtocol.swift │ │ │ │ │ └── SettingsProvider.swift │ │ │ │ └── Time.swift │ │ │ └── SourcesObjC │ │ │ │ ├── NanoPB │ │ │ │ ├── FIRSESNanoPBHelpers.h │ │ │ │ └── FIRSESNanoPBHelpers.m │ │ │ │ └── Protogen │ │ │ │ └── nanopb │ │ │ │ ├── sessions.nanopb.c │ │ │ │ └── sessions.nanopb.h │ │ ├── LICENSE │ │ └── README.md │ ├── GRDB.swift.xcodeproj │ │ └── project.pbxproj │ ├── GRDB.swift │ │ ├── GRDB │ │ │ ├── Core │ │ │ │ ├── Configuration.swift │ │ │ │ ├── Cursor.swift │ │ │ │ ├── Database+Schema.swift │ │ │ │ ├── Database+Statements.swift │ │ │ │ ├── Database.swift │ │ │ │ ├── DatabaseCollation.swift │ │ │ │ ├── DatabaseError.swift │ │ │ │ ├── DatabaseFunction.swift │ │ │ │ ├── DatabasePool.swift │ │ │ │ ├── DatabaseQueue.swift │ │ │ │ ├── DatabaseReader.swift │ │ │ │ ├── DatabaseRegion.swift │ │ │ │ ├── DatabaseRegionObservation.swift │ │ │ │ ├── DatabaseSchemaCache.swift │ │ │ │ ├── DatabaseSnapshot.swift │ │ │ │ ├── DatabaseValue.swift │ │ │ │ ├── DatabaseValueConversion.swift │ │ │ │ ├── DatabaseValueConvertible.swift │ │ │ │ ├── DatabaseWriter.swift │ │ │ │ ├── FetchRequest.swift │ │ │ │ ├── Row.swift │ │ │ │ ├── RowAdapter.swift │ │ │ │ ├── SQLInterpolation.swift │ │ │ │ ├── SQLLiteral.swift │ │ │ │ ├── SQLRequest.swift │ │ │ │ ├── SchedulingWatchdog.swift │ │ │ │ ├── SerializedDatabase.swift │ │ │ │ ├── Statement.swift │ │ │ │ ├── StatementAuthorizer.swift │ │ │ │ ├── StatementColumnConvertible.swift │ │ │ │ ├── Support │ │ │ │ │ ├── CoreGraphics │ │ │ │ │ │ └── CGFloat.swift │ │ │ │ │ ├── Foundation │ │ │ │ │ │ ├── Data.swift │ │ │ │ │ │ ├── DatabaseDateComponents.swift │ │ │ │ │ │ ├── DatabaseValueConvertible+ReferenceConvertible.swift │ │ │ │ │ │ ├── Date.swift │ │ │ │ │ │ ├── NSData.swift │ │ │ │ │ │ ├── NSNull.swift │ │ │ │ │ │ ├── NSNumber.swift │ │ │ │ │ │ ├── NSString.swift │ │ │ │ │ │ ├── SQLiteDateParser.swift │ │ │ │ │ │ ├── URL.swift │ │ │ │ │ │ └── UUID.swift │ │ │ │ │ └── StandardLibrary │ │ │ │ │ │ ├── DatabaseValueConvertible+Decodable.swift │ │ │ │ │ │ ├── DatabaseValueConvertible+Encodable.swift │ │ │ │ │ │ ├── DatabaseValueConvertible+RawRepresentable.swift │ │ │ │ │ │ └── StandardLibrary.swift │ │ │ │ └── TransactionObserver.swift │ │ │ ├── FTS │ │ │ │ ├── FTS3.swift │ │ │ │ ├── FTS3Pattern.swift │ │ │ │ ├── FTS3TokenizerDescriptor.swift │ │ │ │ ├── FTS4.swift │ │ │ │ ├── FTS5.swift │ │ │ │ ├── FTS5CustomTokenizer.swift │ │ │ │ ├── FTS5Pattern.swift │ │ │ │ ├── FTS5Tokenizer.swift │ │ │ │ ├── FTS5TokenizerDescriptor.swift │ │ │ │ └── FTS5WrapperTokenizer.swift │ │ │ ├── Fixit │ │ │ │ └── GRDB-4.0.swift │ │ │ ├── Migration │ │ │ │ ├── DatabaseMigrator.swift │ │ │ │ └── Migration.swift │ │ │ ├── QueryInterface │ │ │ │ ├── FTS3+QueryInterface.swift │ │ │ │ ├── FTS5+QueryInterface.swift │ │ │ │ ├── Request │ │ │ │ │ ├── Association │ │ │ │ │ │ ├── Association.swift │ │ │ │ │ │ ├── AssociationAggregate.swift │ │ │ │ │ │ ├── BelongsToAssociation.swift │ │ │ │ │ │ ├── HasManyAssociation.swift │ │ │ │ │ │ ├── HasManyThroughAssociation.swift │ │ │ │ │ │ ├── HasOneAssociation.swift │ │ │ │ │ │ └── HasOneThroughAssociation.swift │ │ │ │ │ ├── QueryInterfaceRequest+Association.swift │ │ │ │ │ ├── QueryInterfaceRequest.swift │ │ │ │ │ └── RequestProtocols.swift │ │ │ │ ├── SQL │ │ │ │ │ ├── Column.swift │ │ │ │ │ ├── DatabasePromise.swift │ │ │ │ │ ├── SQLAssociation.swift │ │ │ │ │ ├── SQLCollatedExpression.swift │ │ │ │ │ ├── SQLCollection.swift │ │ │ │ │ ├── SQLExpressible.swift │ │ │ │ │ ├── SQLExpression+QueryInterface.swift │ │ │ │ │ ├── SQLExpression.swift │ │ │ │ │ ├── SQLForeignKeyRequest.swift │ │ │ │ │ ├── SQLFunctions.swift │ │ │ │ │ ├── SQLOperators.swift │ │ │ │ │ ├── SQLOrdering.swift │ │ │ │ │ ├── SQLQuery.swift │ │ │ │ │ ├── SQLRelation.swift │ │ │ │ │ ├── SQLSelectable+QueryInterface.swift │ │ │ │ │ ├── SQLSelectable.swift │ │ │ │ │ └── SQLSpecificExpressible+QueryInterface.swift │ │ │ │ ├── SQLGeneration │ │ │ │ │ ├── SQLGenerationContext.swift │ │ │ │ │ └── SQLQueryGenerator.swift │ │ │ │ ├── SQLInterpolation+QueryInterface.swift │ │ │ │ ├── Schema │ │ │ │ │ ├── TableDefinition.swift │ │ │ │ │ └── VirtualTableModule.swift │ │ │ │ ├── TableRecord+Association.swift │ │ │ │ └── TableRecord+QueryInterfaceRequest.swift │ │ │ ├── Record │ │ │ │ ├── EncodableRecord+Encodable.swift │ │ │ │ ├── EncodableRecord.swift │ │ │ │ ├── FetchableRecord+Decodable.swift │ │ │ │ ├── FetchableRecord+TableRecord.swift │ │ │ │ ├── FetchableRecord.swift │ │ │ │ ├── FetchedRecordsController.swift │ │ │ │ ├── PersistableRecord.swift │ │ │ │ ├── Record.swift │ │ │ │ └── TableRecord.swift │ │ │ ├── Utils │ │ │ │ ├── DatabaseResult.swift │ │ │ │ ├── Inflections+English.swift │ │ │ │ ├── Inflections.swift │ │ │ │ ├── KeyPathRefining.swift │ │ │ │ ├── LockedBox.swift │ │ │ │ ├── OrderedDictionary.swift │ │ │ │ ├── Pool.swift │ │ │ │ ├── ReadWriteBox.swift │ │ │ │ └── Utils.swift │ │ │ └── ValueObservation │ │ │ │ ├── ValueObservation+Count.swift │ │ │ │ ├── ValueObservation+DatabaseValueConvertible.swift │ │ │ │ ├── ValueObservation+FetchableRecord.swift │ │ │ │ ├── ValueObservation+MapReducer.swift │ │ │ │ ├── ValueObservation+Row.swift │ │ │ │ ├── ValueObservation.swift │ │ │ │ ├── ValueObserver.swift │ │ │ │ └── ValueReducer │ │ │ │ ├── Combine.swift │ │ │ │ ├── CompactMap.swift │ │ │ │ ├── Fetch.swift │ │ │ │ ├── Map.swift │ │ │ │ ├── RemoveDuplicates.swift │ │ │ │ └── ValueReducer.swift │ │ ├── LICENSE │ │ ├── README.md │ │ └── Support │ │ │ └── grdb_config.h │ ├── GTMAppAuth.xcodeproj │ │ └── project.pbxproj │ ├── GTMAppAuth │ │ ├── GTMAppAuth │ │ │ └── Sources │ │ │ │ ├── AuthSession.swift │ │ │ │ ├── AuthSessionDelegate.swift │ │ │ │ ├── AuthSessionStore.swift │ │ │ │ ├── KeychainStore │ │ │ │ ├── GTMOAuth2Compatibility.swift │ │ │ │ ├── KeychainAttribute.swift │ │ │ │ ├── KeychainHelper.swift │ │ │ │ └── KeychainStore.swift │ │ │ │ └── Resources │ │ │ │ └── PrivacyInfo.xcprivacy │ │ ├── LICENSE │ │ └── README.md │ ├── GTMSessionFetcher.xcodeproj │ │ └── project.pbxproj │ ├── GTMSessionFetcher │ │ ├── LICENSE │ │ ├── README.md │ │ └── Sources │ │ │ ├── Core │ │ │ ├── GTMSessionFetcher.m │ │ │ ├── GTMSessionFetcherLogging.m │ │ │ ├── GTMSessionFetcherService+Internal.h │ │ │ ├── GTMSessionFetcherService.m │ │ │ ├── GTMSessionUploadFetcher.m │ │ │ ├── Public │ │ │ │ └── GTMSessionFetcher │ │ │ │ │ ├── GTMSessionFetcher.h │ │ │ │ │ ├── GTMSessionFetcherLogging.h │ │ │ │ │ ├── GTMSessionFetcherService.h │ │ │ │ │ └── GTMSessionUploadFetcher.h │ │ │ └── Resources │ │ │ │ └── PrivacyInfo.xcprivacy │ │ │ └── Full │ │ │ ├── GTMGatherInputStream.m │ │ │ ├── GTMMIMEDocument.m │ │ │ ├── GTMReadMonitorInputStream.m │ │ │ ├── Public │ │ │ └── GTMSessionFetcher │ │ │ │ ├── GTMGatherInputStream.h │ │ │ │ ├── GTMMIMEDocument.h │ │ │ │ └── GTMReadMonitorInputStream.h │ │ │ └── Resources │ │ │ └── PrivacyInfo.xcprivacy │ ├── GoogleAPIClientForREST.xcodeproj │ │ └── project.pbxproj │ ├── GoogleAPIClientForREST │ │ ├── LICENSE │ │ ├── README.md │ │ └── Sources │ │ │ ├── Core │ │ │ ├── GTLRBase64.m │ │ │ ├── GTLRBatchQuery.m │ │ │ ├── GTLRBatchResult.m │ │ │ ├── GTLRDateTime.m │ │ │ ├── GTLRDefines.h │ │ │ ├── GTLRDuration.m │ │ │ ├── GTLRErrorObject.m │ │ │ ├── GTLRFramework.m │ │ │ ├── GTLRObject.m │ │ │ ├── GTLRQuery.m │ │ │ ├── GTLRRuntimeCommon.m │ │ │ ├── GTLRService.m │ │ │ ├── GTLRURITemplate.m │ │ │ ├── GTLRUploadParameters.m │ │ │ ├── GTLRUtilities.m │ │ │ ├── Public │ │ │ │ └── GoogleAPIClientForREST │ │ │ │ │ ├── GTLRBase64.h │ │ │ │ │ ├── GTLRBatchQuery.h │ │ │ │ │ ├── GTLRBatchResult.h │ │ │ │ │ ├── GTLRDateTime.h │ │ │ │ │ ├── GTLRDuration.h │ │ │ │ │ ├── GTLRErrorObject.h │ │ │ │ │ ├── GTLRFramework.h │ │ │ │ │ ├── GTLRObject.h │ │ │ │ │ ├── GTLRQuery.h │ │ │ │ │ ├── GTLRRuntimeCommon.h │ │ │ │ │ ├── GTLRService.h │ │ │ │ │ ├── GTLRURITemplate.h │ │ │ │ │ ├── GTLRUploadParameters.h │ │ │ │ │ └── GTLRUtilities.h │ │ │ └── Resources │ │ │ │ └── PrivacyInfo.xcprivacy │ │ │ └── GeneratedServices │ │ │ └── Drive │ │ │ ├── GTLRDriveObjects.m │ │ │ ├── GTLRDriveQuery.m │ │ │ ├── GTLRDriveService.m │ │ │ └── Public │ │ │ └── GoogleAPIClientForREST │ │ │ ├── GTLRDrive.h │ │ │ ├── GTLRDriveObjects.h │ │ │ ├── GTLRDriveQuery.h │ │ │ └── GTLRDriveService.h │ ├── GoogleAppMeasurement.xcodeproj │ │ └── project.pbxproj │ ├── GoogleAppMeasurement │ │ └── Frameworks │ │ │ ├── GoogleAppMeasurement.xcframework │ │ │ ├── Info.plist │ │ │ ├── _CodeSignature │ │ │ │ ├── CodeDirectory │ │ │ │ ├── CodeRequirements │ │ │ │ ├── CodeRequirements-1 │ │ │ │ ├── CodeResources │ │ │ │ └── CodeSignature │ │ │ ├── ios-arm64 │ │ │ │ └── GoogleAppMeasurement.framework │ │ │ │ │ ├── GoogleAppMeasurement │ │ │ │ │ ├── Info.plist │ │ │ │ │ └── Modules │ │ │ │ │ └── module.modulemap │ │ │ ├── ios-arm64_x86_64-maccatalyst │ │ │ │ └── GoogleAppMeasurement.framework │ │ │ │ │ ├── GoogleAppMeasurement │ │ │ │ │ ├── Modules │ │ │ │ │ ├── Resources │ │ │ │ │ └── Versions │ │ │ │ │ ├── A │ │ │ │ │ ├── GoogleAppMeasurement │ │ │ │ │ ├── Modules │ │ │ │ │ │ └── module.modulemap │ │ │ │ │ └── Resources │ │ │ │ │ │ └── Info.plist │ │ │ │ │ └── Current │ │ │ ├── ios-arm64_x86_64-simulator │ │ │ │ └── GoogleAppMeasurement.framework │ │ │ │ │ ├── GoogleAppMeasurement │ │ │ │ │ ├── Info.plist │ │ │ │ │ └── Modules │ │ │ │ │ └── module.modulemap │ │ │ ├── macos-arm64_x86_64 │ │ │ │ └── GoogleAppMeasurement.framework │ │ │ │ │ ├── GoogleAppMeasurement │ │ │ │ │ ├── Modules │ │ │ │ │ ├── Resources │ │ │ │ │ └── Versions │ │ │ │ │ ├── A │ │ │ │ │ ├── GoogleAppMeasurement │ │ │ │ │ ├── Modules │ │ │ │ │ │ └── module.modulemap │ │ │ │ │ └── Resources │ │ │ │ │ │ └── Info.plist │ │ │ │ │ └── Current │ │ │ ├── tvos-arm64 │ │ │ │ └── GoogleAppMeasurement.framework │ │ │ │ │ ├── GoogleAppMeasurement │ │ │ │ │ ├── Info.plist │ │ │ │ │ └── Modules │ │ │ │ │ └── module.modulemap │ │ │ └── tvos-arm64_x86_64-simulator │ │ │ │ └── GoogleAppMeasurement.framework │ │ │ │ ├── GoogleAppMeasurement │ │ │ │ ├── Info.plist │ │ │ │ └── Modules │ │ │ │ └── module.modulemap │ │ │ └── GoogleAppMeasurementIdentitySupport.xcframework │ │ │ ├── Info.plist │ │ │ ├── _CodeSignature │ │ │ ├── CodeDirectory │ │ │ ├── CodeRequirements │ │ │ ├── CodeRequirements-1 │ │ │ ├── CodeResources │ │ │ └── CodeSignature │ │ │ ├── ios-arm64 │ │ │ └── GoogleAppMeasurementIdentitySupport.framework │ │ │ │ ├── GoogleAppMeasurementIdentitySupport │ │ │ │ ├── Info.plist │ │ │ │ └── Modules │ │ │ │ └── module.modulemap │ │ │ ├── ios-arm64_x86_64-maccatalyst │ │ │ └── GoogleAppMeasurementIdentitySupport.framework │ │ │ │ ├── GoogleAppMeasurementIdentitySupport │ │ │ │ ├── Modules │ │ │ │ ├── Resources │ │ │ │ └── Versions │ │ │ │ ├── A │ │ │ │ ├── GoogleAppMeasurementIdentitySupport │ │ │ │ ├── Modules │ │ │ │ │ └── module.modulemap │ │ │ │ └── Resources │ │ │ │ │ └── Info.plist │ │ │ │ └── Current │ │ │ ├── ios-arm64_x86_64-simulator │ │ │ └── GoogleAppMeasurementIdentitySupport.framework │ │ │ │ ├── GoogleAppMeasurementIdentitySupport │ │ │ │ ├── Info.plist │ │ │ │ └── Modules │ │ │ │ └── module.modulemap │ │ │ ├── macos-arm64_x86_64 │ │ │ └── GoogleAppMeasurementIdentitySupport.framework │ │ │ │ ├── GoogleAppMeasurementIdentitySupport │ │ │ │ ├── Modules │ │ │ │ ├── Resources │ │ │ │ └── Versions │ │ │ │ ├── A │ │ │ │ ├── GoogleAppMeasurementIdentitySupport │ │ │ │ ├── Modules │ │ │ │ │ └── module.modulemap │ │ │ │ └── Resources │ │ │ │ │ └── Info.plist │ │ │ │ └── Current │ │ │ ├── tvos-arm64 │ │ │ └── GoogleAppMeasurementIdentitySupport.framework │ │ │ │ ├── GoogleAppMeasurementIdentitySupport │ │ │ │ ├── Info.plist │ │ │ │ └── Modules │ │ │ │ └── module.modulemap │ │ │ └── tvos-arm64_x86_64-simulator │ │ │ └── GoogleAppMeasurementIdentitySupport.framework │ │ │ ├── GoogleAppMeasurementIdentitySupport │ │ │ ├── Info.plist │ │ │ └── Modules │ │ │ └── module.modulemap │ ├── GoogleDataTransport.xcodeproj │ │ └── project.pbxproj │ ├── GoogleDataTransport │ │ ├── GoogleDataTransport │ │ │ ├── GDTCCTLibrary │ │ │ │ ├── GDTCCTCompressionHelper.m │ │ │ │ ├── GDTCCTNanopbHelpers.m │ │ │ │ ├── GDTCCTUploadOperation.m │ │ │ │ ├── GDTCCTUploader.m │ │ │ │ ├── GDTCOREvent+GDTCCTSupport.m │ │ │ │ ├── GDTCOREvent+GDTMetricsSupport.m │ │ │ │ ├── GDTCORMetrics+GDTCCTSupport.m │ │ │ │ ├── Private │ │ │ │ │ ├── GDTCCTCompressionHelper.h │ │ │ │ │ ├── GDTCCTNanopbHelpers.h │ │ │ │ │ ├── GDTCCTUploadOperation.h │ │ │ │ │ ├── GDTCCTUploader.h │ │ │ │ │ ├── GDTCOREvent+GDTMetricsSupport.h │ │ │ │ │ └── GDTCORMetrics+GDTCCTSupport.h │ │ │ │ ├── Protogen │ │ │ │ │ └── nanopb │ │ │ │ │ │ ├── cct.nanopb.c │ │ │ │ │ │ ├── cct.nanopb.h │ │ │ │ │ │ ├── client_metrics.nanopb.c │ │ │ │ │ │ ├── client_metrics.nanopb.h │ │ │ │ │ │ ├── compliance.nanopb.c │ │ │ │ │ │ ├── compliance.nanopb.h │ │ │ │ │ │ ├── external_prequest_context.nanopb.c │ │ │ │ │ │ ├── external_prequest_context.nanopb.h │ │ │ │ │ │ ├── external_privacy_context.nanopb.c │ │ │ │ │ │ └── external_privacy_context.nanopb.h │ │ │ │ └── Public │ │ │ │ │ └── GDTCOREvent+GDTCCTSupport.h │ │ │ ├── GDTCORLibrary │ │ │ │ ├── GDTCORAssert.m │ │ │ │ ├── GDTCORClock.m │ │ │ │ ├── GDTCORConsoleLogger.m │ │ │ │ ├── GDTCORDirectorySizeTracker.m │ │ │ │ ├── GDTCOREndpoints.m │ │ │ │ ├── GDTCOREvent.m │ │ │ │ ├── GDTCORFlatFileStorage+Promises.m │ │ │ │ ├── GDTCORFlatFileStorage.m │ │ │ │ ├── GDTCORLifecycle.m │ │ │ │ ├── GDTCORLogSourceMetrics.m │ │ │ │ ├── GDTCORMetrics.m │ │ │ │ ├── GDTCORMetricsController.m │ │ │ │ ├── GDTCORMetricsMetadata.m │ │ │ │ ├── GDTCORPlatform.m │ │ │ │ ├── GDTCORProductData.m │ │ │ │ ├── GDTCORReachability.m │ │ │ │ ├── GDTCORRegistrar.m │ │ │ │ ├── GDTCORStorageEventSelector.m │ │ │ │ ├── GDTCORStorageMetadata.m │ │ │ │ ├── GDTCORTransformer.m │ │ │ │ ├── GDTCORTransport.m │ │ │ │ ├── GDTCORUploadBatch.m │ │ │ │ ├── GDTCORUploadCoordinator.m │ │ │ │ ├── Internal │ │ │ │ │ ├── GDTCORAssert.h │ │ │ │ │ ├── GDTCORDirectorySizeTracker.h │ │ │ │ │ ├── GDTCOREventDropReason.h │ │ │ │ │ ├── GDTCORLifecycle.h │ │ │ │ │ ├── GDTCORMetricsControllerProtocol.h │ │ │ │ │ ├── GDTCORPlatform.h │ │ │ │ │ ├── GDTCORReachability.h │ │ │ │ │ ├── GDTCORRegistrar.h │ │ │ │ │ ├── GDTCORStorageEventSelector.h │ │ │ │ │ ├── GDTCORStorageProtocol.h │ │ │ │ │ ├── GDTCORStorageSizeBytes.h │ │ │ │ │ └── GDTCORUploader.h │ │ │ │ ├── Private │ │ │ │ │ ├── GDTCOREndpoints_Private.h │ │ │ │ │ ├── GDTCOREvent_Private.h │ │ │ │ │ ├── GDTCORFlatFileStorage+Promises.h │ │ │ │ │ ├── GDTCORFlatFileStorage.h │ │ │ │ │ ├── GDTCORLogSourceMetrics.h │ │ │ │ │ ├── GDTCORMetrics.h │ │ │ │ │ ├── GDTCORMetricsController.h │ │ │ │ │ ├── GDTCORMetricsMetadata.h │ │ │ │ │ ├── GDTCORReachability_Private.h │ │ │ │ │ ├── GDTCORRegistrar_Private.h │ │ │ │ │ ├── GDTCORStorageMetadata.h │ │ │ │ │ ├── GDTCORTransformer.h │ │ │ │ │ ├── GDTCORTransformer_Private.h │ │ │ │ │ ├── GDTCORTransport_Private.h │ │ │ │ │ ├── GDTCORUploadBatch.h │ │ │ │ │ └── GDTCORUploadCoordinator.h │ │ │ │ └── Public │ │ │ │ │ └── GoogleDataTransport │ │ │ │ │ ├── GDTCORClock.h │ │ │ │ │ ├── GDTCORConsoleLogger.h │ │ │ │ │ ├── GDTCOREndpoints.h │ │ │ │ │ ├── GDTCOREvent.h │ │ │ │ │ ├── GDTCOREventDataObject.h │ │ │ │ │ ├── GDTCOREventTransformer.h │ │ │ │ │ ├── GDTCORProductData.h │ │ │ │ │ ├── GDTCORTargets.h │ │ │ │ │ ├── GDTCORTransport.h │ │ │ │ │ └── GoogleDataTransport.h │ │ │ └── Resources │ │ │ │ └── PrivacyInfo.xcprivacy │ │ ├── LICENSE │ │ └── README.md │ ├── GoogleSignIn.xcodeproj │ │ └── project.pbxproj │ ├── GoogleSignIn │ │ ├── GoogleSignIn │ │ │ └── Sources │ │ │ │ ├── GIDAuthStateMigration.h │ │ │ │ ├── GIDAuthStateMigration.m │ │ │ │ ├── GIDAuthentication.h │ │ │ │ ├── GIDAuthentication.m │ │ │ │ ├── GIDCallbackQueue.h │ │ │ │ ├── GIDCallbackQueue.m │ │ │ │ ├── GIDConfiguration.m │ │ │ │ ├── GIDEMMErrorHandler.h │ │ │ │ ├── GIDEMMErrorHandler.m │ │ │ │ ├── GIDEMMSupport.h │ │ │ │ ├── GIDEMMSupport.m │ │ │ │ ├── GIDGoogleUser.m │ │ │ │ ├── GIDGoogleUser_Private.h │ │ │ │ ├── GIDMDMPasscodeCache.h │ │ │ │ ├── GIDMDMPasscodeCache.m │ │ │ │ ├── GIDMDMPasscodeState.h │ │ │ │ ├── GIDMDMPasscodeState.m │ │ │ │ ├── GIDMDMPasscodeState_Private.h │ │ │ │ ├── GIDProfileData.m │ │ │ │ ├── GIDProfileData_Private.h │ │ │ │ ├── GIDScopes.h │ │ │ │ ├── GIDScopes.m │ │ │ │ ├── GIDSignIn.m │ │ │ │ ├── GIDSignInButton.m │ │ │ │ ├── GIDSignInCallbackSchemes.h │ │ │ │ ├── GIDSignInCallbackSchemes.m │ │ │ │ ├── GIDSignInInternalOptions.h │ │ │ │ ├── GIDSignInInternalOptions.m │ │ │ │ ├── GIDSignInPreferences.h │ │ │ │ ├── GIDSignInPreferences.m │ │ │ │ ├── GIDSignInResult.m │ │ │ │ ├── GIDSignInResult_Private.h │ │ │ │ ├── GIDSignInStrings.h │ │ │ │ ├── GIDSignInStrings.m │ │ │ │ ├── GIDSignIn_Private.h │ │ │ │ ├── GIDToken.m │ │ │ │ ├── GIDToken_Private.h │ │ │ │ ├── NSBundle+GID3PAdditions.h │ │ │ │ ├── NSBundle+GID3PAdditions.m │ │ │ │ ├── Public │ │ │ │ └── GoogleSignIn │ │ │ │ │ ├── GIDConfiguration.h │ │ │ │ │ ├── GIDGoogleUser.h │ │ │ │ │ ├── GIDProfileData.h │ │ │ │ │ ├── GIDSignIn.h │ │ │ │ │ ├── GIDSignInButton.h │ │ │ │ │ ├── GIDSignInResult.h │ │ │ │ │ ├── GIDToken.h │ │ │ │ │ └── GoogleSignIn.h │ │ │ │ ├── Resources │ │ │ │ ├── PrivacyInfo.xcprivacy │ │ │ │ ├── Roboto-Bold.ttf │ │ │ │ ├── google.png │ │ │ │ ├── google@2x.png │ │ │ │ └── google@3x.png │ │ │ │ └── Strings │ │ │ │ ├── ar.lproj │ │ │ │ └── GoogleSignIn.strings │ │ │ │ ├── ca.lproj │ │ │ │ └── GoogleSignIn.strings │ │ │ │ ├── cs.lproj │ │ │ │ └── GoogleSignIn.strings │ │ │ │ ├── da.lproj │ │ │ │ └── GoogleSignIn.strings │ │ │ │ ├── de.lproj │ │ │ │ └── GoogleSignIn.strings │ │ │ │ ├── el.lproj │ │ │ │ └── GoogleSignIn.strings │ │ │ │ ├── en.lproj │ │ │ │ └── GoogleSignIn.strings │ │ │ │ ├── en_GB.lproj │ │ │ │ └── GoogleSignIn.strings │ │ │ │ ├── es.lproj │ │ │ │ └── GoogleSignIn.strings │ │ │ │ ├── es_MX.lproj │ │ │ │ └── GoogleSignIn.strings │ │ │ │ ├── fi.lproj │ │ │ │ └── GoogleSignIn.strings │ │ │ │ ├── fr.lproj │ │ │ │ └── GoogleSignIn.strings │ │ │ │ ├── fr_CA.lproj │ │ │ │ └── GoogleSignIn.strings │ │ │ │ ├── he.lproj │ │ │ │ └── GoogleSignIn.strings │ │ │ │ ├── hi.lproj │ │ │ │ └── GoogleSignIn.strings │ │ │ │ ├── hr.lproj │ │ │ │ └── GoogleSignIn.strings │ │ │ │ ├── hu.lproj │ │ │ │ └── GoogleSignIn.strings │ │ │ │ ├── id.lproj │ │ │ │ └── GoogleSignIn.strings │ │ │ │ ├── it.lproj │ │ │ │ └── GoogleSignIn.strings │ │ │ │ ├── ja.lproj │ │ │ │ └── GoogleSignIn.strings │ │ │ │ ├── ko.lproj │ │ │ │ └── GoogleSignIn.strings │ │ │ │ ├── ms.lproj │ │ │ │ └── GoogleSignIn.strings │ │ │ │ ├── nb.lproj │ │ │ │ └── GoogleSignIn.strings │ │ │ │ ├── nl.lproj │ │ │ │ └── GoogleSignIn.strings │ │ │ │ ├── pl.lproj │ │ │ │ └── GoogleSignIn.strings │ │ │ │ ├── pt.lproj │ │ │ │ └── GoogleSignIn.strings │ │ │ │ ├── pt_BR.lproj │ │ │ │ └── GoogleSignIn.strings │ │ │ │ ├── pt_PT.lproj │ │ │ │ └── GoogleSignIn.strings │ │ │ │ ├── ro.lproj │ │ │ │ └── GoogleSignIn.strings │ │ │ │ ├── ru.lproj │ │ │ │ └── GoogleSignIn.strings │ │ │ │ ├── sk.lproj │ │ │ │ └── GoogleSignIn.strings │ │ │ │ ├── sv.lproj │ │ │ │ └── GoogleSignIn.strings │ │ │ │ ├── th.lproj │ │ │ │ └── GoogleSignIn.strings │ │ │ │ ├── tr.lproj │ │ │ │ └── GoogleSignIn.strings │ │ │ │ ├── uk.lproj │ │ │ │ └── GoogleSignIn.strings │ │ │ │ ├── vi.lproj │ │ │ │ └── GoogleSignIn.strings │ │ │ │ ├── zh_CN.lproj │ │ │ │ └── GoogleSignIn.strings │ │ │ │ └── zh_TW.lproj │ │ │ │ └── GoogleSignIn.strings │ │ ├── LICENSE │ │ └── README.md │ ├── GoogleUtilities.xcodeproj │ │ └── project.pbxproj │ ├── GoogleUtilities │ │ ├── GoogleUtilities │ │ │ ├── AppDelegateSwizzler │ │ │ │ ├── GULAppDelegateSwizzler.m │ │ │ │ ├── GULSceneDelegateSwizzler.m │ │ │ │ ├── Internal │ │ │ │ │ ├── GULAppDelegateSwizzler_Private.h │ │ │ │ │ └── GULSceneDelegateSwizzler_Private.h │ │ │ │ └── Public │ │ │ │ │ └── GoogleUtilities │ │ │ │ │ ├── GULAppDelegateSwizzler.h │ │ │ │ │ ├── GULApplication.h │ │ │ │ │ └── GULSceneDelegateSwizzler.h │ │ │ ├── Common │ │ │ │ └── GULLoggerCodes.h │ │ │ ├── Environment │ │ │ │ ├── GULAppEnvironmentUtil.m │ │ │ │ ├── GULHeartbeatDateStorage.m │ │ │ │ ├── GULHeartbeatDateStorageUserDefaults.m │ │ │ │ ├── GULSecureCoding.m │ │ │ │ ├── NetworkInfo │ │ │ │ │ └── GULNetworkInfo.m │ │ │ │ ├── Public │ │ │ │ │ └── GoogleUtilities │ │ │ │ │ │ ├── GULAppEnvironmentUtil.h │ │ │ │ │ │ ├── GULHeartbeatDateStorable.h │ │ │ │ │ │ ├── GULHeartbeatDateStorage.h │ │ │ │ │ │ ├── GULHeartbeatDateStorageUserDefaults.h │ │ │ │ │ │ ├── GULKeychainStorage.h │ │ │ │ │ │ ├── GULKeychainUtils.h │ │ │ │ │ │ ├── GULNetworkInfo.h │ │ │ │ │ │ ├── GULSecureCoding.h │ │ │ │ │ │ ├── GULURLSessionDataResponse.h │ │ │ │ │ │ └── NSURLSession+GULPromises.h │ │ │ │ ├── SecureStorage │ │ │ │ │ ├── GULKeychainStorage.m │ │ │ │ │ └── GULKeychainUtils.m │ │ │ │ └── URLSessionPromiseWrapper │ │ │ │ │ ├── GULURLSessionDataResponse.m │ │ │ │ │ └── NSURLSession+GULPromises.m │ │ │ ├── Logger │ │ │ │ ├── GULLogger.m │ │ │ │ └── Public │ │ │ │ │ └── GoogleUtilities │ │ │ │ │ ├── GULLogger.h │ │ │ │ │ └── GULLoggerLevel.h │ │ │ ├── MethodSwizzler │ │ │ │ ├── GULSwizzler.m │ │ │ │ └── Public │ │ │ │ │ └── GoogleUtilities │ │ │ │ │ ├── GULOriginalIMPConvenienceMacros.h │ │ │ │ │ └── GULSwizzler.h │ │ │ ├── NSData+zlib │ │ │ │ ├── GULNSData+zlib.m │ │ │ │ └── Public │ │ │ │ │ └── GoogleUtilities │ │ │ │ │ └── GULNSData+zlib.h │ │ │ ├── Network │ │ │ │ ├── GULMutableDictionary.m │ │ │ │ ├── GULNetwork.m │ │ │ │ ├── GULNetworkConstants.m │ │ │ │ ├── GULNetworkInternal.h │ │ │ │ ├── GULNetworkURLSession.m │ │ │ │ └── Public │ │ │ │ │ └── GoogleUtilities │ │ │ │ │ ├── GULMutableDictionary.h │ │ │ │ │ ├── GULNetwork.h │ │ │ │ │ ├── GULNetworkConstants.h │ │ │ │ │ ├── GULNetworkLoggerProtocol.h │ │ │ │ │ ├── GULNetworkMessageCode.h │ │ │ │ │ └── GULNetworkURLSession.h │ │ │ ├── Privacy │ │ │ │ └── Resources │ │ │ │ │ └── PrivacyInfo.xcprivacy │ │ │ ├── Reachability │ │ │ │ ├── GULReachabilityChecker+Internal.h │ │ │ │ ├── GULReachabilityChecker.m │ │ │ │ ├── GULReachabilityMessageCode.h │ │ │ │ └── Public │ │ │ │ │ └── GoogleUtilities │ │ │ │ │ └── GULReachabilityChecker.h │ │ │ └── UserDefaults │ │ │ │ ├── GULUserDefaults.m │ │ │ │ └── Public │ │ │ │ └── GoogleUtilities │ │ │ │ └── GULUserDefaults.h │ │ ├── LICENSE │ │ ├── README.md │ │ └── third_party │ │ │ └── IsAppEncrypted │ │ │ ├── IsAppEncrypted.m │ │ │ └── Public │ │ │ └── IsAppEncrypted.h │ ├── Headers │ │ ├── Private │ │ │ └── Firebase │ │ │ │ └── Firebase.h │ │ └── Public │ │ │ └── Firebase │ │ │ └── Firebase.h │ ├── Manifest.lock │ ├── Pods.xcodeproj │ │ └── project.pbxproj │ ├── PromisesObjC.xcodeproj │ │ └── project.pbxproj │ ├── PromisesObjC │ │ ├── LICENSE │ │ ├── README.md │ │ └── Sources │ │ │ └── FBLPromises │ │ │ ├── FBLPromise+All.m │ │ │ ├── FBLPromise+Always.m │ │ │ ├── FBLPromise+Any.m │ │ │ ├── FBLPromise+Async.m │ │ │ ├── FBLPromise+Await.m │ │ │ ├── FBLPromise+Catch.m │ │ │ ├── FBLPromise+Delay.m │ │ │ ├── FBLPromise+Do.m │ │ │ ├── FBLPromise+Race.m │ │ │ ├── FBLPromise+Recover.m │ │ │ ├── FBLPromise+Reduce.m │ │ │ ├── FBLPromise+Retry.m │ │ │ ├── FBLPromise+Testing.m │ │ │ ├── FBLPromise+Then.m │ │ │ ├── FBLPromise+Timeout.m │ │ │ ├── FBLPromise+Validate.m │ │ │ ├── FBLPromise+Wrap.m │ │ │ ├── FBLPromise.m │ │ │ ├── FBLPromiseError.m │ │ │ ├── Resources │ │ │ └── PrivacyInfo.xcprivacy │ │ │ └── include │ │ │ ├── FBLPromise+All.h │ │ │ ├── FBLPromise+Always.h │ │ │ ├── FBLPromise+Any.h │ │ │ ├── FBLPromise+Async.h │ │ │ ├── FBLPromise+Await.h │ │ │ ├── FBLPromise+Catch.h │ │ │ ├── FBLPromise+Delay.h │ │ │ ├── FBLPromise+Do.h │ │ │ ├── FBLPromise+Race.h │ │ │ ├── FBLPromise+Recover.h │ │ │ ├── FBLPromise+Reduce.h │ │ │ ├── FBLPromise+Retry.h │ │ │ ├── FBLPromise+Testing.h │ │ │ ├── FBLPromise+Then.h │ │ │ ├── FBLPromise+Timeout.h │ │ │ ├── FBLPromise+Validate.h │ │ │ ├── FBLPromise+Wrap.h │ │ │ ├── FBLPromise.h │ │ │ ├── FBLPromiseError.h │ │ │ ├── FBLPromisePrivate.h │ │ │ └── FBLPromises.h │ ├── PromisesSwift.xcodeproj │ │ └── project.pbxproj │ ├── PromisesSwift │ │ ├── LICENSE │ │ ├── README.md │ │ └── Sources │ │ │ └── Promises │ │ │ ├── Promise+All.swift │ │ │ ├── Promise+Always.swift │ │ │ ├── Promise+Any.swift │ │ │ ├── Promise+Async.swift │ │ │ ├── Promise+Await.swift │ │ │ ├── Promise+Catch.swift │ │ │ ├── Promise+Delay.swift │ │ │ ├── Promise+Do.swift │ │ │ ├── Promise+Race.swift │ │ │ ├── Promise+Recover.swift │ │ │ ├── Promise+Reduce.swift │ │ │ ├── Promise+Retry.swift │ │ │ ├── Promise+Testing.swift │ │ │ ├── Promise+Then.swift │ │ │ ├── Promise+Timeout.swift │ │ │ ├── Promise+Validate.swift │ │ │ ├── Promise+Wrap.swift │ │ │ ├── Promise.swift │ │ │ ├── PromiseError.swift │ │ │ └── Resources │ │ │ └── PrivacyInfo.xcprivacy │ ├── RxBlocking.xcodeproj │ │ └── project.pbxproj │ ├── RxBlocking │ │ ├── LICENSE.md │ │ ├── Platform │ │ │ ├── AtomicInt.swift │ │ │ ├── DataStructures │ │ │ │ ├── Bag.swift │ │ │ │ ├── InfiniteSequence.swift │ │ │ │ ├── PriorityQueue.swift │ │ │ │ └── Queue.swift │ │ │ ├── DispatchQueue+Extensions.swift │ │ │ ├── Platform.Darwin.swift │ │ │ ├── Platform.Linux.swift │ │ │ └── RecursiveLock.swift │ │ ├── README.md │ │ └── RxBlocking │ │ │ ├── BlockingObservable+Operators.swift │ │ │ ├── BlockingObservable.swift │ │ │ ├── ObservableConvertibleType+Blocking.swift │ │ │ ├── Resources.swift │ │ │ └── RunLoopLock.swift │ ├── RxGRDB.xcodeproj │ │ └── project.pbxproj │ ├── RxGRDB │ │ ├── LICENSE │ │ ├── README.md │ │ └── RxGRDB │ │ │ ├── DatabaseReader+Rx.swift │ │ │ ├── DatabaseRegionConvertible+Rx.swift │ │ │ ├── DatabaseRegionObservation+Rx.swift │ │ │ ├── DatabaseWriter+Rx.swift │ │ │ ├── DiffSupport.swift │ │ │ ├── FetchRequest+Rx.swift │ │ │ ├── PrimaryKeyDiffScanner.swift │ │ │ ├── RxGRDB.h │ │ │ └── ValueObservation+Rx.swift │ ├── RxSwift.xcodeproj │ │ └── project.pbxproj │ ├── RxSwift │ │ ├── LICENSE.md │ │ ├── Platform │ │ │ ├── AtomicInt.swift │ │ │ ├── DataStructures │ │ │ │ ├── Bag.swift │ │ │ │ ├── InfiniteSequence.swift │ │ │ │ ├── PriorityQueue.swift │ │ │ │ └── Queue.swift │ │ │ ├── DispatchQueue+Extensions.swift │ │ │ ├── Platform.Darwin.swift │ │ │ ├── Platform.Linux.swift │ │ │ └── RecursiveLock.swift │ │ ├── README.md │ │ └── RxSwift │ │ │ ├── AnyObserver.swift │ │ │ ├── Cancelable.swift │ │ │ ├── Concurrency │ │ │ ├── AsyncLock.swift │ │ │ ├── Lock.swift │ │ │ ├── LockOwnerType.swift │ │ │ ├── SynchronizedDisposeType.swift │ │ │ ├── SynchronizedOnType.swift │ │ │ └── SynchronizedUnsubscribeType.swift │ │ │ ├── ConnectableObservableType.swift │ │ │ ├── Date+Dispatch.swift │ │ │ ├── Deprecated.swift │ │ │ ├── Disposable.swift │ │ │ ├── Disposables │ │ │ ├── AnonymousDisposable.swift │ │ │ ├── BinaryDisposable.swift │ │ │ ├── BooleanDisposable.swift │ │ │ ├── CompositeDisposable.swift │ │ │ ├── Disposables.swift │ │ │ ├── DisposeBag.swift │ │ │ ├── DisposeBase.swift │ │ │ ├── NopDisposable.swift │ │ │ ├── RefCountDisposable.swift │ │ │ ├── ScheduledDisposable.swift │ │ │ ├── SerialDisposable.swift │ │ │ ├── SingleAssignmentDisposable.swift │ │ │ └── SubscriptionDisposable.swift │ │ │ ├── Errors.swift │ │ │ ├── Event.swift │ │ │ ├── Extensions │ │ │ ├── Bag+Rx.swift │ │ │ └── String+Rx.swift │ │ │ ├── GroupedObservable.swift │ │ │ ├── ImmediateSchedulerType.swift │ │ │ ├── Observable.swift │ │ │ ├── ObservableConvertibleType.swift │ │ │ ├── ObservableType+Extensions.swift │ │ │ ├── ObservableType.swift │ │ │ ├── Observables │ │ │ ├── AddRef.swift │ │ │ ├── Amb.swift │ │ │ ├── AsMaybe.swift │ │ │ ├── AsSingle.swift │ │ │ ├── Buffer.swift │ │ │ ├── Catch.swift │ │ │ ├── CombineLatest+Collection.swift │ │ │ ├── CombineLatest+arity.swift │ │ │ ├── CombineLatest.swift │ │ │ ├── CompactMap.swift │ │ │ ├── Concat.swift │ │ │ ├── Create.swift │ │ │ ├── Debounce.swift │ │ │ ├── Debug.swift │ │ │ ├── DefaultIfEmpty.swift │ │ │ ├── Deferred.swift │ │ │ ├── Delay.swift │ │ │ ├── DelaySubscription.swift │ │ │ ├── Dematerialize.swift │ │ │ ├── DistinctUntilChanged.swift │ │ │ ├── Do.swift │ │ │ ├── ElementAt.swift │ │ │ ├── Empty.swift │ │ │ ├── Enumerated.swift │ │ │ ├── Error.swift │ │ │ ├── Filter.swift │ │ │ ├── First.swift │ │ │ ├── Generate.swift │ │ │ ├── GroupBy.swift │ │ │ ├── Just.swift │ │ │ ├── Map.swift │ │ │ ├── Materialize.swift │ │ │ ├── Merge.swift │ │ │ ├── Multicast.swift │ │ │ ├── Never.swift │ │ │ ├── ObserveOn.swift │ │ │ ├── Optional.swift │ │ │ ├── Producer.swift │ │ │ ├── Range.swift │ │ │ ├── Reduce.swift │ │ │ ├── Repeat.swift │ │ │ ├── RetryWhen.swift │ │ │ ├── Sample.swift │ │ │ ├── Scan.swift │ │ │ ├── Sequence.swift │ │ │ ├── ShareReplayScope.swift │ │ │ ├── SingleAsync.swift │ │ │ ├── Sink.swift │ │ │ ├── Skip.swift │ │ │ ├── SkipUntil.swift │ │ │ ├── SkipWhile.swift │ │ │ ├── StartWith.swift │ │ │ ├── SubscribeOn.swift │ │ │ ├── Switch.swift │ │ │ ├── SwitchIfEmpty.swift │ │ │ ├── Take.swift │ │ │ ├── TakeLast.swift │ │ │ ├── TakeUntil.swift │ │ │ ├── TakeWhile.swift │ │ │ ├── Throttle.swift │ │ │ ├── Timeout.swift │ │ │ ├── Timer.swift │ │ │ ├── ToArray.swift │ │ │ ├── Using.swift │ │ │ ├── Window.swift │ │ │ ├── WithLatestFrom.swift │ │ │ ├── Zip+Collection.swift │ │ │ ├── Zip+arity.swift │ │ │ └── Zip.swift │ │ │ ├── ObserverType.swift │ │ │ ├── Observers │ │ │ ├── AnonymousObserver.swift │ │ │ ├── ObserverBase.swift │ │ │ └── TailRecursiveSink.swift │ │ │ ├── Reactive.swift │ │ │ ├── Rx.swift │ │ │ ├── RxMutableBox.swift │ │ │ ├── SchedulerType.swift │ │ │ ├── Schedulers │ │ │ ├── ConcurrentDispatchQueueScheduler.swift │ │ │ ├── ConcurrentMainScheduler.swift │ │ │ ├── CurrentThreadScheduler.swift │ │ │ ├── HistoricalScheduler.swift │ │ │ ├── HistoricalSchedulerTimeConverter.swift │ │ │ ├── Internal │ │ │ │ ├── DispatchQueueConfiguration.swift │ │ │ │ ├── InvocableScheduledItem.swift │ │ │ │ ├── InvocableType.swift │ │ │ │ ├── ScheduledItem.swift │ │ │ │ └── ScheduledItemType.swift │ │ │ ├── MainScheduler.swift │ │ │ ├── OperationQueueScheduler.swift │ │ │ ├── RecursiveScheduler.swift │ │ │ ├── SchedulerServices+Emulation.swift │ │ │ ├── SerialDispatchQueueScheduler.swift │ │ │ ├── VirtualTimeConverterType.swift │ │ │ └── VirtualTimeScheduler.swift │ │ │ ├── Subjects │ │ │ ├── AsyncSubject.swift │ │ │ ├── BehaviorSubject.swift │ │ │ ├── PublishSubject.swift │ │ │ ├── ReplaySubject.swift │ │ │ └── SubjectType.swift │ │ │ ├── SwiftSupport │ │ │ └── SwiftSupport.swift │ │ │ └── Traits │ │ │ ├── Completable+AndThen.swift │ │ │ ├── Completable.swift │ │ │ ├── Maybe.swift │ │ │ ├── ObservableType+PrimitiveSequence.swift │ │ │ ├── PrimitiveSequence+Zip+arity.swift │ │ │ ├── PrimitiveSequence.swift │ │ │ └── Single.swift │ ├── SwiftGen.xcodeproj │ │ └── project.pbxproj │ ├── SwiftGen │ │ ├── CHANGELOG.md │ │ ├── LICENCE │ │ ├── README.md │ │ ├── bin │ │ │ └── swiftgen │ │ ├── lib │ │ │ ├── Commander.framework │ │ │ │ ├── Commander │ │ │ │ ├── Resources │ │ │ │ │ └── Info.plist │ │ │ │ └── Versions │ │ │ │ │ ├── A │ │ │ │ │ ├── Commander │ │ │ │ │ ├── Resources │ │ │ │ │ │ └── Info.plist │ │ │ │ │ └── _CodeSignature │ │ │ │ │ │ └── CodeResources │ │ │ │ │ └── Current │ │ │ │ │ ├── Commander │ │ │ │ │ ├── Resources │ │ │ │ │ └── Info.plist │ │ │ │ │ └── _CodeSignature │ │ │ │ │ └── CodeResources │ │ │ ├── Kanna.framework │ │ │ │ ├── Kanna │ │ │ │ ├── Resources │ │ │ │ │ └── Info.plist │ │ │ │ └── Versions │ │ │ │ │ ├── A │ │ │ │ │ ├── Kanna │ │ │ │ │ ├── Resources │ │ │ │ │ │ └── Info.plist │ │ │ │ │ └── _CodeSignature │ │ │ │ │ │ └── CodeResources │ │ │ │ │ └── Current │ │ │ │ │ ├── Kanna │ │ │ │ │ ├── Resources │ │ │ │ │ └── Info.plist │ │ │ │ │ └── _CodeSignature │ │ │ │ │ └── CodeResources │ │ │ ├── PathKit.framework │ │ │ │ ├── PathKit │ │ │ │ ├── Resources │ │ │ │ │ └── Info.plist │ │ │ │ └── Versions │ │ │ │ │ ├── A │ │ │ │ │ ├── PathKit │ │ │ │ │ ├── Resources │ │ │ │ │ │ └── Info.plist │ │ │ │ │ └── _CodeSignature │ │ │ │ │ │ └── CodeResources │ │ │ │ │ └── Current │ │ │ │ │ ├── PathKit │ │ │ │ │ ├── Resources │ │ │ │ │ └── Info.plist │ │ │ │ │ └── _CodeSignature │ │ │ │ │ └── CodeResources │ │ │ ├── Stencil.framework │ │ │ │ ├── Resources │ │ │ │ │ └── Info.plist │ │ │ │ ├── Stencil │ │ │ │ └── Versions │ │ │ │ │ ├── A │ │ │ │ │ ├── Resources │ │ │ │ │ │ └── Info.plist │ │ │ │ │ ├── Stencil │ │ │ │ │ └── _CodeSignature │ │ │ │ │ │ └── CodeResources │ │ │ │ │ └── Current │ │ │ │ │ ├── Resources │ │ │ │ │ └── Info.plist │ │ │ │ │ ├── Stencil │ │ │ │ │ └── _CodeSignature │ │ │ │ │ └── CodeResources │ │ │ ├── StencilSwiftKit.framework │ │ │ │ ├── Resources │ │ │ │ │ └── Info.plist │ │ │ │ ├── StencilSwiftKit │ │ │ │ └── Versions │ │ │ │ │ ├── A │ │ │ │ │ ├── Resources │ │ │ │ │ │ └── Info.plist │ │ │ │ │ ├── StencilSwiftKit │ │ │ │ │ └── _CodeSignature │ │ │ │ │ │ └── CodeResources │ │ │ │ │ └── Current │ │ │ │ │ ├── Resources │ │ │ │ │ └── Info.plist │ │ │ │ │ ├── StencilSwiftKit │ │ │ │ │ └── _CodeSignature │ │ │ │ │ └── CodeResources │ │ │ ├── SwiftGenKit.framework │ │ │ │ ├── Resources │ │ │ │ │ └── Info.plist │ │ │ │ ├── SwiftGenKit │ │ │ │ └── Versions │ │ │ │ │ ├── A │ │ │ │ │ ├── Resources │ │ │ │ │ │ └── Info.plist │ │ │ │ │ ├── SwiftGenKit │ │ │ │ │ └── _CodeSignature │ │ │ │ │ │ └── CodeResources │ │ │ │ │ └── Current │ │ │ │ │ ├── Resources │ │ │ │ │ └── Info.plist │ │ │ │ │ ├── SwiftGenKit │ │ │ │ │ └── _CodeSignature │ │ │ │ │ └── CodeResources │ │ │ └── Yams.framework │ │ │ │ ├── Resources │ │ │ │ └── Info.plist │ │ │ │ ├── Versions │ │ │ │ ├── A │ │ │ │ │ ├── Resources │ │ │ │ │ │ └── Info.plist │ │ │ │ │ ├── Yams │ │ │ │ │ └── _CodeSignature │ │ │ │ │ │ └── CodeResources │ │ │ │ └── Current │ │ │ │ │ ├── Resources │ │ │ │ │ └── Info.plist │ │ │ │ │ ├── Yams │ │ │ │ │ └── _CodeSignature │ │ │ │ │ └── CodeResources │ │ │ │ └── Yams │ │ └── templates │ │ │ ├── colors │ │ │ ├── literals-swift4.stencil │ │ │ ├── literals-swift5.stencil │ │ │ ├── swift4.stencil │ │ │ └── swift5.stencil │ │ │ ├── coredata │ │ │ ├── swift4.stencil │ │ │ └── swift5.stencil │ │ │ ├── fonts │ │ │ ├── swift4.stencil │ │ │ └── swift5.stencil │ │ │ ├── ib │ │ │ ├── scenes-swift4.stencil │ │ │ ├── scenes-swift5.stencil │ │ │ ├── segues-swift4.stencil │ │ │ └── segues-swift5.stencil │ │ │ ├── json │ │ │ ├── inline-swift4.stencil │ │ │ ├── inline-swift5.stencil │ │ │ ├── runtime-swift4.stencil │ │ │ └── runtime-swift5.stencil │ │ │ ├── plist │ │ │ ├── inline-swift4.stencil │ │ │ ├── inline-swift5.stencil │ │ │ ├── runtime-swift4.stencil │ │ │ └── runtime-swift5.stencil │ │ │ ├── strings │ │ │ ├── flat-swift4.stencil │ │ │ ├── flat-swift5.stencil │ │ │ ├── objc-h.stencil │ │ │ ├── objc-m.stencil │ │ │ ├── structured-swift4.stencil │ │ │ └── structured-swift5.stencil │ │ │ ├── xcassets │ │ │ ├── swift4.stencil │ │ │ └── swift5.stencil │ │ │ └── yaml │ │ │ ├── inline-swift4.stencil │ │ │ └── inline-swift5.stencil │ ├── SwiftLint.xcodeproj │ │ └── project.pbxproj │ ├── SwiftLint │ │ ├── LICENSE │ │ └── swiftlint │ ├── Target Support Files │ │ ├── AppAuth │ │ │ ├── AppAuth-Info.plist │ │ │ ├── AppAuth-dummy.m │ │ │ ├── AppAuth-prefix.pch │ │ │ ├── AppAuth-umbrella.h │ │ │ ├── AppAuth.debug.xcconfig │ │ │ ├── AppAuth.modulemap │ │ │ ├── AppAuth.release.xcconfig │ │ │ └── ResourceBundle-AppAuthCore_Privacy-AppAuth-Info.plist │ │ ├── Dip │ │ │ ├── Dip-Info.plist │ │ │ ├── Dip-dummy.m │ │ │ ├── Dip-prefix.pch │ │ │ ├── Dip-umbrella.h │ │ │ ├── Dip.debug.xcconfig │ │ │ ├── Dip.modulemap │ │ │ └── Dip.release.xcconfig │ │ ├── Firebase-Analytics-Core-CoreOnly-Crashlytics-Messaging │ │ │ ├── Firebase-Analytics-Core-CoreOnly-Crashlytics-Messaging.debug.xcconfig │ │ │ └── Firebase-Analytics-Core-CoreOnly-Crashlytics-Messaging.release.xcconfig │ │ ├── Firebase.default-CoreOnly │ │ │ ├── Firebase.default-CoreOnly.debug.xcconfig │ │ │ └── Firebase.default-CoreOnly.release.xcconfig │ │ ├── FirebaseAnalytics │ │ │ ├── FirebaseAnalytics-xcframeworks-input-files.xcfilelist │ │ │ ├── FirebaseAnalytics-xcframeworks-output-files.xcfilelist │ │ │ ├── FirebaseAnalytics-xcframeworks.sh │ │ │ ├── FirebaseAnalytics.debug.xcconfig │ │ │ └── FirebaseAnalytics.release.xcconfig │ │ ├── FirebaseCore │ │ │ ├── FirebaseCore-Info.plist │ │ │ ├── FirebaseCore-dummy.m │ │ │ ├── FirebaseCore-umbrella.h │ │ │ ├── FirebaseCore.debug.xcconfig │ │ │ ├── FirebaseCore.modulemap │ │ │ ├── FirebaseCore.release.xcconfig │ │ │ └── ResourceBundle-FirebaseCore_Privacy-FirebaseCore-Info.plist │ │ ├── FirebaseCoreExtension │ │ │ ├── FirebaseCoreExtension-Info.plist │ │ │ ├── FirebaseCoreExtension-dummy.m │ │ │ ├── FirebaseCoreExtension-prefix.pch │ │ │ ├── FirebaseCoreExtension-umbrella.h │ │ │ ├── FirebaseCoreExtension.debug.xcconfig │ │ │ ├── FirebaseCoreExtension.modulemap │ │ │ ├── FirebaseCoreExtension.release.xcconfig │ │ │ └── ResourceBundle-FirebaseCoreExtension_Privacy-FirebaseCoreExtension-Info.plist │ │ ├── FirebaseCoreInternal │ │ │ ├── FirebaseCoreInternal-Info.plist │ │ │ ├── FirebaseCoreInternal-dummy.m │ │ │ ├── FirebaseCoreInternal-prefix.pch │ │ │ ├── FirebaseCoreInternal-umbrella.h │ │ │ ├── FirebaseCoreInternal.debug.xcconfig │ │ │ ├── FirebaseCoreInternal.modulemap │ │ │ ├── FirebaseCoreInternal.release.xcconfig │ │ │ └── ResourceBundle-FirebaseCoreInternal_Privacy-FirebaseCoreInternal-Info.plist │ │ ├── FirebaseCrashlytics │ │ │ ├── FirebaseCrashlytics-Info.plist │ │ │ ├── FirebaseCrashlytics-dummy.m │ │ │ ├── FirebaseCrashlytics-umbrella.h │ │ │ ├── FirebaseCrashlytics.debug.xcconfig │ │ │ ├── FirebaseCrashlytics.modulemap │ │ │ ├── FirebaseCrashlytics.release.xcconfig │ │ │ └── ResourceBundle-FirebaseCrashlytics_Privacy-FirebaseCrashlytics-Info.plist │ │ ├── FirebaseInstallations │ │ │ ├── FirebaseInstallations-Info.plist │ │ │ ├── FirebaseInstallations-dummy.m │ │ │ ├── FirebaseInstallations-umbrella.h │ │ │ ├── FirebaseInstallations.debug.xcconfig │ │ │ ├── FirebaseInstallations.modulemap │ │ │ ├── FirebaseInstallations.release.xcconfig │ │ │ └── ResourceBundle-FirebaseInstallations_Privacy-FirebaseInstallations-Info.plist │ │ ├── FirebaseMessaging │ │ │ ├── FirebaseMessaging-Info.plist │ │ │ ├── FirebaseMessaging-dummy.m │ │ │ ├── FirebaseMessaging-umbrella.h │ │ │ ├── FirebaseMessaging.debug.xcconfig │ │ │ ├── FirebaseMessaging.modulemap │ │ │ ├── FirebaseMessaging.release.xcconfig │ │ │ └── ResourceBundle-FirebaseMessaging_Privacy-FirebaseMessaging-Info.plist │ │ ├── FirebaseRemoteConfigInterop │ │ │ ├── FirebaseRemoteConfigInterop-Info.plist │ │ │ ├── FirebaseRemoteConfigInterop-dummy.m │ │ │ ├── FirebaseRemoteConfigInterop-umbrella.h │ │ │ ├── FirebaseRemoteConfigInterop.debug.xcconfig │ │ │ ├── FirebaseRemoteConfigInterop.modulemap │ │ │ └── FirebaseRemoteConfigInterop.release.xcconfig │ │ ├── FirebaseSessions │ │ │ ├── FirebaseSessions-Info.plist │ │ │ ├── FirebaseSessions-dummy.m │ │ │ ├── FirebaseSessions-umbrella.h │ │ │ ├── FirebaseSessions.debug.xcconfig │ │ │ ├── FirebaseSessions.modulemap │ │ │ └── FirebaseSessions.release.xcconfig │ │ ├── GRDB.swift │ │ │ ├── GRDB.swift-Info.plist │ │ │ ├── GRDB.swift-dummy.m │ │ │ ├── GRDB.swift-prefix.pch │ │ │ ├── GRDB.swift-umbrella.h │ │ │ ├── GRDB.swift.debug.xcconfig │ │ │ ├── GRDB.swift.modulemap │ │ │ └── GRDB.swift.release.xcconfig │ │ ├── GTMAppAuth │ │ │ ├── GTMAppAuth-Info.plist │ │ │ ├── GTMAppAuth-dummy.m │ │ │ ├── GTMAppAuth-umbrella.h │ │ │ ├── GTMAppAuth.debug.xcconfig │ │ │ ├── GTMAppAuth.modulemap │ │ │ ├── GTMAppAuth.release.xcconfig │ │ │ └── ResourceBundle-GTMAppAuth_Privacy-GTMAppAuth-Info.plist │ │ ├── GTMSessionFetcher │ │ │ ├── GTMSessionFetcher-Info.plist │ │ │ ├── GTMSessionFetcher-dummy.m │ │ │ ├── GTMSessionFetcher-prefix.pch │ │ │ ├── GTMSessionFetcher-umbrella.h │ │ │ ├── GTMSessionFetcher.debug.xcconfig │ │ │ ├── GTMSessionFetcher.modulemap │ │ │ ├── GTMSessionFetcher.release.xcconfig │ │ │ ├── ResourceBundle-GTMSessionFetcher_Core_Privacy-GTMSessionFetcher-Info.plist │ │ │ └── ResourceBundle-GTMSessionFetcher_Full_Privacy-GTMSessionFetcher-Info.plist │ │ ├── GoogleAPIClientForREST │ │ │ ├── GoogleAPIClientForREST-Info.plist │ │ │ ├── GoogleAPIClientForREST-dummy.m │ │ │ ├── GoogleAPIClientForREST-prefix.pch │ │ │ ├── GoogleAPIClientForREST-umbrella.h │ │ │ ├── GoogleAPIClientForREST.debug.xcconfig │ │ │ ├── GoogleAPIClientForREST.modulemap │ │ │ ├── GoogleAPIClientForREST.release.xcconfig │ │ │ └── ResourceBundle-GoogleAPIClientForREST_Privacy-GoogleAPIClientForREST-Info.plist │ │ ├── GoogleAppMeasurement │ │ │ ├── GoogleAppMeasurement-xcframeworks-input-files.xcfilelist │ │ │ ├── GoogleAppMeasurement-xcframeworks-output-files.xcfilelist │ │ │ ├── GoogleAppMeasurement-xcframeworks.sh │ │ │ ├── GoogleAppMeasurement.debug.xcconfig │ │ │ └── GoogleAppMeasurement.release.xcconfig │ │ ├── GoogleDataTransport │ │ │ ├── GoogleDataTransport-Info.plist │ │ │ ├── GoogleDataTransport-dummy.m │ │ │ ├── GoogleDataTransport-umbrella.h │ │ │ ├── GoogleDataTransport.debug.xcconfig │ │ │ ├── GoogleDataTransport.modulemap │ │ │ ├── GoogleDataTransport.release.xcconfig │ │ │ └── ResourceBundle-GoogleDataTransport_Privacy-GoogleDataTransport-Info.plist │ │ ├── GoogleSignIn │ │ │ ├── GoogleSignIn-Info.plist │ │ │ ├── GoogleSignIn-dummy.m │ │ │ ├── GoogleSignIn-umbrella.h │ │ │ ├── GoogleSignIn.debug.xcconfig │ │ │ ├── GoogleSignIn.modulemap │ │ │ ├── GoogleSignIn.release.xcconfig │ │ │ └── ResourceBundle-GoogleSignIn-GoogleSignIn-Info.plist │ │ ├── GoogleUtilities │ │ │ ├── GoogleUtilities-Info.plist │ │ │ ├── GoogleUtilities-dummy.m │ │ │ ├── GoogleUtilities-umbrella.h │ │ │ ├── GoogleUtilities.debug.xcconfig │ │ │ ├── GoogleUtilities.modulemap │ │ │ ├── GoogleUtilities.release.xcconfig │ │ │ └── ResourceBundle-GoogleUtilities_Privacy-GoogleUtilities-Info.plist │ │ ├── Pods-Muun │ │ │ ├── Pods-Muun-Info.plist │ │ │ ├── Pods-Muun-acknowledgements.markdown │ │ │ ├── Pods-Muun-acknowledgements.plist │ │ │ ├── Pods-Muun-dummy.m │ │ │ ├── Pods-Muun-resources-Debug-input-files.xcfilelist │ │ │ ├── Pods-Muun-resources-Debug-output-files.xcfilelist │ │ │ ├── Pods-Muun-resources-Release-Dogfood-input-files.xcfilelist │ │ │ ├── Pods-Muun-resources-Release-Dogfood-output-files.xcfilelist │ │ │ ├── Pods-Muun-resources-Release-input-files.xcfilelist │ │ │ ├── Pods-Muun-resources-Release-output-files.xcfilelist │ │ │ ├── Pods-Muun-resources.sh │ │ │ ├── Pods-Muun-umbrella.h │ │ │ ├── Pods-Muun.debug.xcconfig │ │ │ ├── Pods-Muun.modulemap │ │ │ ├── Pods-Muun.release-dogfood.xcconfig │ │ │ └── Pods-Muun.release.xcconfig │ │ ├── Pods-falconPushNotifications │ │ │ ├── Pods-falconPushNotifications-Info.plist │ │ │ ├── Pods-falconPushNotifications-acknowledgements.markdown │ │ │ ├── Pods-falconPushNotifications-acknowledgements.plist │ │ │ ├── Pods-falconPushNotifications-dummy.m │ │ │ ├── Pods-falconPushNotifications-resources-Debug-input-files.xcfilelist │ │ │ ├── Pods-falconPushNotifications-resources-Debug-output-files.xcfilelist │ │ │ ├── Pods-falconPushNotifications-resources-Release-Dogfood-input-files.xcfilelist │ │ │ ├── Pods-falconPushNotifications-resources-Release-Dogfood-output-files.xcfilelist │ │ │ ├── Pods-falconPushNotifications-resources-Release-input-files.xcfilelist │ │ │ ├── Pods-falconPushNotifications-resources-Release-output-files.xcfilelist │ │ │ ├── Pods-falconPushNotifications-resources.sh │ │ │ ├── Pods-falconPushNotifications-umbrella.h │ │ │ ├── Pods-falconPushNotifications.debug.xcconfig │ │ │ ├── Pods-falconPushNotifications.modulemap │ │ │ ├── Pods-falconPushNotifications.release-dogfood.xcconfig │ │ │ └── Pods-falconPushNotifications.release.xcconfig │ │ ├── Pods-falconTests │ │ │ ├── Pods-falconTests-Info.plist │ │ │ ├── Pods-falconTests-acknowledgements.markdown │ │ │ ├── Pods-falconTests-acknowledgements.plist │ │ │ ├── Pods-falconTests-dummy.m │ │ │ ├── Pods-falconTests-umbrella.h │ │ │ ├── Pods-falconTests.debug.xcconfig │ │ │ ├── Pods-falconTests.modulemap │ │ │ ├── Pods-falconTests.release-dogfood.xcconfig │ │ │ └── Pods-falconTests.release.xcconfig │ │ ├── Pods-falconUITests │ │ │ ├── Pods-falconUITests-Info.plist │ │ │ ├── Pods-falconUITests-acknowledgements.markdown │ │ │ ├── Pods-falconUITests-acknowledgements.plist │ │ │ ├── Pods-falconUITests-dummy.m │ │ │ ├── Pods-falconUITests-resources-Debug-input-files.xcfilelist │ │ │ ├── Pods-falconUITests-resources-Debug-output-files.xcfilelist │ │ │ ├── Pods-falconUITests-resources-Release-Dogfood-input-files.xcfilelist │ │ │ ├── Pods-falconUITests-resources-Release-Dogfood-output-files.xcfilelist │ │ │ ├── Pods-falconUITests-resources-Release-input-files.xcfilelist │ │ │ ├── Pods-falconUITests-resources-Release-output-files.xcfilelist │ │ │ ├── Pods-falconUITests-resources.sh │ │ │ ├── Pods-falconUITests-umbrella.h │ │ │ ├── Pods-falconUITests.debug.xcconfig │ │ │ ├── Pods-falconUITests.modulemap │ │ │ ├── Pods-falconUITests.release-dogfood.xcconfig │ │ │ └── Pods-falconUITests.release.xcconfig │ │ ├── PromisesObjC │ │ │ ├── PromisesObjC-Info.plist │ │ │ ├── PromisesObjC-dummy.m │ │ │ ├── PromisesObjC-umbrella.h │ │ │ ├── PromisesObjC.debug.xcconfig │ │ │ ├── PromisesObjC.modulemap │ │ │ ├── PromisesObjC.release.xcconfig │ │ │ └── ResourceBundle-FBLPromises_Privacy-PromisesObjC-Info.plist │ │ ├── PromisesSwift │ │ │ ├── PromisesSwift-Info.plist │ │ │ ├── PromisesSwift-dummy.m │ │ │ ├── PromisesSwift-prefix.pch │ │ │ ├── PromisesSwift-umbrella.h │ │ │ ├── PromisesSwift.debug.xcconfig │ │ │ ├── PromisesSwift.modulemap │ │ │ ├── PromisesSwift.release.xcconfig │ │ │ └── ResourceBundle-Promises_Privacy-PromisesSwift-Info.plist │ │ ├── RxBlocking │ │ │ ├── RxBlocking-Info.plist │ │ │ ├── RxBlocking-dummy.m │ │ │ ├── RxBlocking-prefix.pch │ │ │ ├── RxBlocking-umbrella.h │ │ │ ├── RxBlocking.debug.xcconfig │ │ │ ├── RxBlocking.modulemap │ │ │ └── RxBlocking.release.xcconfig │ │ ├── RxGRDB │ │ │ ├── RxGRDB-Info.plist │ │ │ ├── RxGRDB-dummy.m │ │ │ ├── RxGRDB-prefix.pch │ │ │ ├── RxGRDB-umbrella.h │ │ │ ├── RxGRDB.debug.xcconfig │ │ │ ├── RxGRDB.modulemap │ │ │ └── RxGRDB.release.xcconfig │ │ ├── RxSwift │ │ │ ├── RxSwift-Info.plist │ │ │ ├── RxSwift-dummy.m │ │ │ ├── RxSwift-prefix.pch │ │ │ ├── RxSwift-umbrella.h │ │ │ ├── RxSwift.debug.xcconfig │ │ │ ├── RxSwift.modulemap │ │ │ └── RxSwift.release.xcconfig │ │ ├── SwiftGen │ │ │ ├── SwiftGen.debug.xcconfig │ │ │ └── SwiftGen.release.xcconfig │ │ ├── SwiftLint │ │ │ ├── SwiftLint.debug.xcconfig │ │ │ └── SwiftLint.release.xcconfig │ │ └── nanopb │ │ │ ├── ResourceBundle-nanopb_Privacy-nanopb-Info.plist │ │ │ ├── nanopb-Info.plist │ │ │ ├── nanopb-dummy.m │ │ │ ├── nanopb-prefix.pch │ │ │ ├── nanopb-umbrella.h │ │ │ ├── nanopb.debug.xcconfig │ │ │ ├── nanopb.modulemap │ │ │ └── nanopb.release.xcconfig │ ├── nanopb.xcodeproj │ │ └── project.pbxproj │ └── nanopb │ │ ├── LICENSE.txt │ │ ├── README.md │ │ ├── pb.h │ │ ├── pb_common.c │ │ ├── pb_common.h │ │ ├── pb_decode.c │ │ ├── pb_decode.h │ │ ├── pb_encode.c │ │ ├── pb_encode.h │ │ └── spm_resources │ │ └── PrivacyInfo.xcprivacy │ ├── PrivacyInfo.xcprivacy │ ├── SPM │ ├── Package.swift │ └── Sources │ │ └── Dummy.swift │ ├── UnitTests.xctestplan │ ├── falcon.xcodeproj │ ├── project.pbxproj │ └── xcshareddata │ │ └── xcschemes │ │ ├── FalconUITestsScheme.xcscheme │ │ ├── Muun.xcscheme │ │ ├── falconPushNotifications.xcscheme │ │ └── falconTests.xcscheme │ ├── falcon │ ├── AppDelegate.swift │ ├── DependencyContainer.swift │ ├── Extension │ │ ├── AnalyticsHelper.swift │ │ ├── AppDelegate │ │ │ ├── AppDelegate+Debug.swift │ │ │ ├── AppDelegate+Extension.swift │ │ │ ├── AppDelegate+Firebase.swift │ │ │ ├── AppDelegate+Notification.swift │ │ │ ├── AppDelegate+Pin.swift │ │ │ └── LibwalletLogHelper.swift │ │ ├── BitcoinAmount+Extension.swift │ │ ├── CGFloat+Extension.swift │ │ ├── Date+Extension.swift │ │ ├── MonetaryAmount+Extension.swift │ │ ├── NSLayoutConstraint+Extension.swift │ │ ├── NotificationsFetcher.swift │ │ ├── Optional+Extension.swift │ │ ├── PushNotificationsHelper.swift │ │ ├── ScanQRViewController+Camera.swift │ │ ├── String+Extension.swift │ │ ├── UIApplication+Extension.swift │ │ ├── UIBarButtonItem+Extension.swift │ │ ├── UIButton+Extension.swift │ │ ├── UIColor+Extension.swift │ │ ├── UIEdgeInsets+Extension.swift │ │ ├── UIImage+Extension.swift │ │ ├── UILabel+Extension.swift │ │ ├── UINavigationController+Extension.swift │ │ ├── UIResponder+Extension.swift │ │ ├── UIStackView+Extension.swift │ │ ├── UITableView+Extension.swift │ │ ├── UITableViewCell+Extension.swift │ │ ├── UITapGestureRecognizer+Extension.swift │ │ ├── UIView+Extension.swift │ │ └── UIViewController+Extension.swift │ ├── GoogleService-Info-debug.plist │ ├── GoogleService-Info-dev.plist │ ├── GoogleService-Info-dogfood.plist │ ├── GoogleService-Info-prod.plist │ ├── GoogleService-Info-regtest.plist │ ├── GoogleService-Info-stg.plist │ ├── Info.plist │ ├── Presentation │ │ ├── Actions │ │ │ ├── GetBTCDefaultSelectedUnit.swift │ │ │ └── GetCurrencyForCode.swift │ │ ├── Component │ │ │ ├── ActionCard │ │ │ │ ├── ActionCardModel.swift │ │ │ │ ├── ActionCardView.swift │ │ │ │ └── ActionCardView.xib │ │ │ ├── AmountInput │ │ │ │ └── AmountInputView.swift │ │ │ ├── AmountLabel │ │ │ │ └── AmountLabel.swift │ │ │ ├── Balance │ │ │ │ └── BalanceView.swift │ │ │ ├── Base │ │ │ │ ├── MUActionSheetView │ │ │ │ │ ├── MUActionSheetCard.swift │ │ │ │ │ └── MUActionSheetView.swift │ │ │ │ ├── MUBottomSheetViewContainer.swift │ │ │ │ ├── MUDetailRowView.swift │ │ │ │ ├── MUView.swift │ │ │ │ └── RequestCloudFeedbackView.swift │ │ │ ├── Blockclock │ │ │ │ └── BlockClockView.swift │ │ │ ├── Button │ │ │ │ ├── ButtonView │ │ │ │ │ ├── ButtonView.swift │ │ │ │ │ └── ButtonView.xib │ │ │ │ ├── LightButtonView │ │ │ │ │ ├── LightButtonView.swift │ │ │ │ │ └── LightButtonView.xib │ │ │ │ ├── LinkButtonView │ │ │ │ │ ├── LinkButtonView.swift │ │ │ │ │ └── LinkButtonView.xib │ │ │ │ └── SmallButtonView │ │ │ │ │ ├── SmallButtonView.swift │ │ │ │ │ └── SmallButtonView.xib │ │ │ ├── CameraPermission │ │ │ │ ├── CameraPermissionView.swift │ │ │ │ └── CameraPermissionView.xib │ │ │ ├── Check │ │ │ │ ├── CheckView.swift │ │ │ │ └── CheckView.xib │ │ │ ├── Chevron │ │ │ │ └── ChevronView.swift │ │ │ ├── ErrorView │ │ │ │ └── ErrorView.swift │ │ │ ├── Hairline │ │ │ │ └── HairlineView.swift │ │ │ ├── Keyboard │ │ │ │ ├── KeyboardView.swift │ │ │ │ └── KeyboardView.xib │ │ │ ├── LargeTextInput │ │ │ │ ├── LargeTextInputView.swift │ │ │ │ └── LargeTextInputView.xib │ │ │ ├── Loading │ │ │ │ ├── LoadingView.swift │ │ │ │ └── LoadingView.xib │ │ │ ├── MuunImageView │ │ │ │ └── MuunImageView.swift │ │ │ ├── Notice │ │ │ │ └── NoticeView.swift │ │ │ ├── OperationBadge │ │ │ │ └── OperationBadgeView.swift │ │ │ ├── Pin │ │ │ │ ├── PinView.swift │ │ │ │ └── PinView.xib │ │ │ ├── PopUp │ │ │ │ ├── LoadingPopUpView.swift │ │ │ │ ├── PopUp.swift │ │ │ │ ├── TaprootActivatedPopup.swift │ │ │ │ └── WelcomePopUpView.swift │ │ │ ├── RadioGroupView │ │ │ │ └── RadioGroupView.swift │ │ │ ├── Receive │ │ │ │ ├── AmountOptionView.swift │ │ │ │ ├── CreateInvoiceView.swift │ │ │ │ ├── Lightning │ │ │ │ │ ├── ExpirationTimeOptionView.swift │ │ │ │ │ ├── LightningAdvancedOptionsView.swift │ │ │ │ │ └── ReceiveInLightningView.swift │ │ │ │ ├── NotificationsPrimingView.swift │ │ │ │ ├── OnChain │ │ │ │ │ ├── MultiOptionPickerCard.swift │ │ │ │ │ ├── MultiOptionPickerView.swift │ │ │ │ │ ├── OnChainAdvancedOptionsView.swift │ │ │ │ │ ├── ReceiveOnChainView.swift │ │ │ │ │ └── SelectAddressTypeOptionView.swift │ │ │ │ ├── QRCodeView.swift │ │ │ │ ├── QRCodeWithActionsView.swift │ │ │ │ ├── QRLoadingView.swift │ │ │ │ └── Unified │ │ │ │ │ ├── DetailedUnifiedURIView.swift │ │ │ │ │ ├── ReceiveUnifiedView.swift │ │ │ │ │ └── UnifiedAdvancedOptionsView.swift │ │ │ ├── Recovery │ │ │ │ ├── DeletableTextField.swift │ │ │ │ ├── RecoveryView.swift │ │ │ │ └── RecoveryView.xib │ │ │ ├── TextInput │ │ │ │ ├── TextInputView.swift │ │ │ │ └── TextInputView.xib │ │ │ ├── TitleAndDescription │ │ │ │ ├── Cell │ │ │ │ │ ├── TitleAndDescriptionTableViewCell.swift │ │ │ │ │ └── TitleAndDescriptionTableViewCell.xib │ │ │ │ ├── TitleAndDescriptionView.swift │ │ │ │ └── TitleAndDescriptionView.xib │ │ │ ├── Toast │ │ │ │ ├── DisplayableToast.swift │ │ │ │ ├── ToastView.swift │ │ │ │ └── ToastView.xib │ │ │ └── Tooltip │ │ │ │ ├── TooltipView.swift │ │ │ │ └── TriangleView.swift │ │ ├── Launch │ │ │ ├── Base.lproj │ │ │ │ └── LaunchScreen.storyboard │ │ │ └── es.lproj │ │ │ │ └── LaunchScreen.strings │ │ ├── LocaleNumberFormatter.swift │ │ ├── ModalAnimationController.swift │ │ ├── Models │ │ │ ├── BitcoinAmountWithSelectedCurrency.swift │ │ │ ├── Currencies │ │ │ │ ├── BitcoinCurrency.swift │ │ │ │ ├── Currency.swift │ │ │ │ ├── FiatCurrency.swift │ │ │ │ └── VisualCurrency.swift │ │ │ └── MonetaryAmountWithCompleteDataOfCurrency.swift │ │ ├── OperationFormatter.swift │ │ ├── PDFGenerator.swift │ │ ├── PageObject │ │ │ ├── UIElement.swift │ │ │ └── UITestablePage.swift │ │ ├── RepresentableView.swift │ │ ├── Screen │ │ │ ├── ApiMigrations │ │ │ │ ├── ApiMigrationsPresenter.swift │ │ │ │ └── ApiMigrationsViewController.swift │ │ │ ├── Base │ │ │ │ ├── BasePresenter.swift │ │ │ │ └── MUViewController.swift │ │ │ ├── Debug │ │ │ │ ├── DebugAnalyticsPresenter.swift │ │ │ │ ├── DebugAnalyticsViewController.swift │ │ │ │ ├── DebugListPresenter.swift │ │ │ │ ├── DebugMenuViewController.swift │ │ │ │ ├── DebugModeDisplayer.swift │ │ │ │ ├── DebugModePresenter.swift │ │ │ │ ├── DebugRequestDetail.swift │ │ │ │ ├── DebugRequestsPresenter.swift │ │ │ │ ├── DebugRequestsViewController.swift │ │ │ │ └── DebugTableView.swift │ │ │ ├── Detail │ │ │ │ ├── Detail+MoreInfo.swift │ │ │ │ ├── DetailPresenter.swift │ │ │ │ ├── DetailViewController.swift │ │ │ │ └── DetailViewController.xib │ │ │ ├── Feedback │ │ │ │ ├── FeedbackModel.swift │ │ │ │ ├── FeedbackViewController.swift │ │ │ │ └── FeedbackViewController.xib │ │ │ ├── GetStarted │ │ │ │ ├── GetStartedViewController.swift │ │ │ │ └── GetStartedViewController.xib │ │ │ ├── Home │ │ │ │ ├── Help │ │ │ │ │ ├── SupportPresenter.swift │ │ │ │ │ ├── SupportViewController.swift │ │ │ │ │ └── SupportViewController.xib │ │ │ │ ├── Home+ActionCard.swift │ │ │ │ ├── HomePresenter.swift │ │ │ │ ├── HomeView.swift │ │ │ │ └── HomeViewController.swift │ │ │ ├── LNURL │ │ │ │ ├── FirstTime │ │ │ │ │ ├── LNURLFirstTimePresenter.swift │ │ │ │ │ └── LNURLFirstTimeViewController.swift │ │ │ │ ├── FromSend │ │ │ │ │ └── LNURLFromSendViewController.swift │ │ │ │ ├── Loading │ │ │ │ │ └── LNURLLoadingView.swift │ │ │ │ ├── ScanQR │ │ │ │ │ ├── LNURLScanQRPresenter.swift │ │ │ │ │ ├── LNURLScanQRViewController+Camera.swift │ │ │ │ │ ├── LNURLScanQRViewController.swift │ │ │ │ │ ├── LNURLScanQRViewController.xib │ │ │ │ │ └── ManuallyEnter │ │ │ │ │ │ ├── LNURLManuallyEnterQRViewController.swift │ │ │ │ │ │ └── LNURLManuallyEnterQRViewController.xib │ │ │ │ └── Withdraw │ │ │ │ │ ├── LNURLWithdrawPresenter.swift │ │ │ │ │ └── LNURLWithdrawViewController.swift │ │ │ ├── NewOperation │ │ │ │ ├── ChildViews │ │ │ │ │ ├── Amount │ │ │ │ │ │ ├── NewOpAmountPresenter.swift │ │ │ │ │ │ ├── NewOpAmountView.swift │ │ │ │ │ │ └── NewOpAmountView.xib │ │ │ │ │ ├── Confirm │ │ │ │ │ │ ├── NewOpConfirmPresenter.swift │ │ │ │ │ │ ├── NewOpConfirmView.swift │ │ │ │ │ │ └── NewOpConfirmView.xib │ │ │ │ │ ├── Description │ │ │ │ │ │ ├── NewOpDescriptionPresenter.swift │ │ │ │ │ │ ├── NewOpDescriptionView.swift │ │ │ │ │ │ └── NewOpDescriptionView.xib │ │ │ │ │ ├── EditFee │ │ │ │ │ │ ├── BlockHelper.swift │ │ │ │ │ │ ├── FeeEditorPresenter.swift │ │ │ │ │ │ ├── ManuallyEnterFee │ │ │ │ │ │ │ ├── ManuallyEnterFeePresenter.swift │ │ │ │ │ │ │ ├── ManuallyEnterFeeViewController.swift │ │ │ │ │ │ │ └── ManuallyEnterFeeViewController.xib │ │ │ │ │ │ └── SelectFee │ │ │ │ │ │ │ ├── Cell │ │ │ │ │ │ │ ├── EnterFeeManuallyTableViewCell.swift │ │ │ │ │ │ │ ├── EnterFeeManuallyTableViewCell.xib │ │ │ │ │ │ │ ├── TargetedFeeTableViewCell.swift │ │ │ │ │ │ │ ├── TargetedFeeTableViewCell.xib │ │ │ │ │ │ │ ├── TitleTableViewCell.swift │ │ │ │ │ │ │ └── TitleTableViewCell.xib │ │ │ │ │ │ │ ├── SelectFeePresenter.swift │ │ │ │ │ │ │ ├── SelectFeeViewController.swift │ │ │ │ │ │ │ └── SelectFeeViewController.xib │ │ │ │ │ ├── FilledData │ │ │ │ │ │ ├── NewOpAmountFilledDataView.swift │ │ │ │ │ │ ├── NewOpAmountFilledDataView.xib │ │ │ │ │ │ ├── NewOpDescriptionFilledDataView.swift │ │ │ │ │ │ ├── NewOpDescriptionFilledDataView.xib │ │ │ │ │ │ ├── NewOpDestinationFilledDataView.swift │ │ │ │ │ │ └── NewOpDestinationFilledDataView.xib │ │ │ │ │ └── Loading │ │ │ │ │ │ ├── NewOpLoadingPresenter.swift │ │ │ │ │ │ ├── NewOpLoadingView.swift │ │ │ │ │ │ └── NewOpLoadingView.xib │ │ │ │ ├── ConfirmStateViewModel.swift │ │ │ │ ├── FeeHelper.swift │ │ │ │ ├── NewOp+MoreInfo.swift │ │ │ │ ├── NewOpError.swift │ │ │ │ ├── NewOpStates.swift │ │ │ │ ├── NewOperationPresenter.swift │ │ │ │ ├── NewOperationStateMachine.swift │ │ │ │ ├── NewOperationView.swift │ │ │ │ ├── NewOperationView.xib │ │ │ │ ├── NewOperationViewController.swift │ │ │ │ ├── OpStateMachine.swift │ │ │ │ ├── ScanQR │ │ │ │ │ ├── AddressInputPresenter.swift │ │ │ │ │ ├── EnterManually │ │ │ │ │ │ ├── ManuallyEnterQRViewController.swift │ │ │ │ │ │ └── ManuallyEnterQRViewController.xib │ │ │ │ │ ├── ScanQRViewController.swift │ │ │ │ │ └── ScanQRViewController.xib │ │ │ │ ├── SubmarineSwaps │ │ │ │ │ └── OpSubmarineSwapViewBuilder.swift │ │ │ │ └── ToAddress │ │ │ │ │ ├── NewOpToAddressData.swift │ │ │ │ │ └── OpToAddressViewBuilder.swift │ │ │ ├── Overlay │ │ │ │ ├── BottomDrawerOverlayViewController.swift │ │ │ │ └── BottomDrawerOverlayViewController.xib │ │ │ ├── Pin │ │ │ │ ├── AuthMethod.swift │ │ │ │ ├── PinPresenter.swift │ │ │ │ ├── PinViewController.swift │ │ │ │ └── PinViewController.xib │ │ │ ├── Receive │ │ │ │ ├── BitcoinURIViewModel.swift │ │ │ │ ├── Receive+MoreInfo.swift │ │ │ │ ├── ReceiveAddressTypeSelectPresenter.swift │ │ │ │ ├── ReceiveAmountInputPresenter.swift │ │ │ │ ├── ReceiveAmountInputViewController.swift │ │ │ │ ├── ReceivePresenter.swift │ │ │ │ └── ReceiveViewController.swift │ │ │ ├── RecoverWallet │ │ │ │ ├── Email │ │ │ │ │ ├── SignInEmailPresenter.swift │ │ │ │ │ ├── SignInEmailViewController.swift │ │ │ │ │ └── SignInEmailViewController.xib │ │ │ │ ├── Password │ │ │ │ │ ├── SignInPasswordPresenter.swift │ │ │ │ │ ├── SignInPasswordViewController.swift │ │ │ │ │ └── SignInPasswordViewController.xib │ │ │ │ ├── Recover+MoreInfo.swift │ │ │ │ ├── RecoveryCode │ │ │ │ │ ├── SignInEmailAndRCPresenter.swift │ │ │ │ │ ├── SignInEmailAndRCViewController.swift │ │ │ │ │ └── SignInEmailAndRCViewController.xib │ │ │ │ └── VerifyEmail │ │ │ │ │ ├── SignInAuthorizeEmailPresenter.swift │ │ │ │ │ └── SignInAuthorizeEmailViewController.swift │ │ │ ├── RecoverWithRC │ │ │ │ ├── InputRC │ │ │ │ │ ├── SignInWithRCPresenter.swift │ │ │ │ │ ├── SignInWithRCView.swift │ │ │ │ │ └── SignInWithRCViewController.swift │ │ │ │ └── VerifyEmail │ │ │ │ │ ├── SignInWithRCVerifyEmailPresenter.swift │ │ │ │ │ └── SignInWithRCVerifyEmailViewController.swift │ │ │ ├── ReusableGenericViews │ │ │ │ └── MUPlainInfoDisplayerViewController.swift │ │ │ ├── SecurityCenter │ │ │ │ ├── EmergencyKit │ │ │ │ │ ├── Activate │ │ │ │ │ │ ├── ActivateEmergencyKitPresenter.swift │ │ │ │ │ │ ├── ActivateEmergencyKitView.swift │ │ │ │ │ │ └── ActivateEmergencyKitViewController.swift │ │ │ │ │ ├── EmergencyKit.swift │ │ │ │ │ ├── EmergencyKitFlow.swift │ │ │ │ │ ├── Help │ │ │ │ │ │ ├── HelpEmergencyKitView.swift │ │ │ │ │ │ └── HelpEmergencyKitViewController.swift │ │ │ │ │ ├── RecoveryTool │ │ │ │ │ │ ├── RecoveryToolViewController.swift │ │ │ │ │ │ └── RecoveryToolViewController.xib │ │ │ │ │ ├── Share │ │ │ │ │ │ ├── EmergencyKitSavingOptions.swift │ │ │ │ │ │ ├── ManualSaveEmergencyKitView.swift │ │ │ │ │ │ ├── RequestCloudView.swift │ │ │ │ │ │ ├── SaveEmergencyKitOptionView.swift │ │ │ │ │ │ ├── ShareEmergencyKitPresenter.swift │ │ │ │ │ │ ├── ShareEmergencyKitView.swift │ │ │ │ │ │ └── ShareEmergencyKitViewController.swift │ │ │ │ │ ├── Slides │ │ │ │ │ │ ├── SlideView.swift │ │ │ │ │ │ ├── SlideView.xib │ │ │ │ │ │ ├── SlidesViewConfiguration.swift │ │ │ │ │ │ ├── SlidesViewController.swift │ │ │ │ │ │ └── SlidesViewController.xib │ │ │ │ │ └── Verify │ │ │ │ │ │ ├── VerifyEmergencyKitView.swift │ │ │ │ │ │ └── VerifyEmergencyKitViewController.swift │ │ │ │ ├── SecurityCenter+ActionCard.swift │ │ │ │ ├── SecurityCenter+Feedback.swift │ │ │ │ ├── SecurityCenter+MoreInfo.swift │ │ │ │ ├── SecurityCenterPresenter.swift │ │ │ │ ├── SecurityCenterViewController.swift │ │ │ │ ├── SecurityCenterViewController.xib │ │ │ │ ├── SetupEmail │ │ │ │ │ ├── Email │ │ │ │ │ │ ├── EmailAlreadyUsedView.swift │ │ │ │ │ │ ├── EmailAlreadyUsedViewController.swift │ │ │ │ │ │ ├── SignUpEmailPresenter.swift │ │ │ │ │ │ ├── SignUpEmailViewController.swift │ │ │ │ │ │ └── SignUpEmailViewController.xib │ │ │ │ │ ├── FinishEmailSetup │ │ │ │ │ │ ├── FinishEmailSetupPresenter.swift │ │ │ │ │ │ ├── FinishEmailSetupViewController.swift │ │ │ │ │ │ └── FinishEmailSetupViewController.xib │ │ │ │ │ ├── Password │ │ │ │ │ │ ├── SignUpPasswordPresenter.swift │ │ │ │ │ │ ├── SignUpPasswordViewController.swift │ │ │ │ │ │ └── SignUpPasswordViewController.xib │ │ │ │ │ ├── Priming │ │ │ │ │ │ ├── EmailPrimingPresenter.swift │ │ │ │ │ │ ├── EmailPrimingViewController.swift │ │ │ │ │ │ └── EmailPrimingViewController.xib │ │ │ │ │ ├── SetupEmailWording.swift │ │ │ │ │ └── VerifyEmail │ │ │ │ │ │ ├── EmailClientsPicker.swift │ │ │ │ │ │ ├── SignUpVerifyEmailPresenter.swift │ │ │ │ │ │ └── SignUpVerifyEmailViewController.swift │ │ │ │ └── SetupRecoveryCode │ │ │ │ │ ├── Confirm │ │ │ │ │ ├── FinishRecoveryCodeSetupPresenter.swift │ │ │ │ │ ├── FinishRecoveryCodeSetupViewController.swift │ │ │ │ │ └── FinishRecoveryCodeSetupViewController.xib │ │ │ │ │ ├── Generate │ │ │ │ │ ├── GenerateRecoveryCodePresenter.swift │ │ │ │ │ ├── GenerateRecoveryCodeViewController.swift │ │ │ │ │ └── GenerateRecoveryCodeViewController.xib │ │ │ │ │ ├── Priming │ │ │ │ │ ├── RecoveryCodePrimingPresenter.swift │ │ │ │ │ ├── RecoveryCodePrimingViewController.swift │ │ │ │ │ └── RecoveryCodePrimingViewController.xib │ │ │ │ │ ├── SetUpRecoveryCodeWording.swift │ │ │ │ │ ├── SetupRecoveryCodeError.swift │ │ │ │ │ └── Verify │ │ │ │ │ ├── VerifyRecoveryCodeViewController.swift │ │ │ │ │ └── VerifyRecoveryCodeViewController.xib │ │ │ ├── SessionExpired │ │ │ │ ├── SessionExpiredPresenter.swift │ │ │ │ ├── SessionExpiredViewController.swift │ │ │ │ └── SessionExpiredViewController.xib │ │ │ ├── Settings │ │ │ │ ├── ChangePassword │ │ │ │ │ ├── EnterCurrent │ │ │ │ │ │ ├── ChangePasswordEnterCurrentPresenter.swift │ │ │ │ │ │ ├── ChangePasswordEnterCurrentView.swift │ │ │ │ │ │ └── ChangePasswordEnterCurrentViewController.swift │ │ │ │ │ ├── EnterNew │ │ │ │ │ │ ├── ChangePasswordEnterNewPresenter.swift │ │ │ │ │ │ ├── ChangePasswordEnterNewView.swift │ │ │ │ │ │ ├── ChangePasswordEnterNewViewController.swift │ │ │ │ │ │ └── ChangePasswordNewViewPresenter.swift │ │ │ │ │ ├── EnterRecoveryCode │ │ │ │ │ │ ├── ChangePasswordEnterRecoveryCodePresenter.swift │ │ │ │ │ │ ├── ChangePasswordEnterRecoveryCodeView.swift │ │ │ │ │ │ └── ChangePasswordEnterRecoveryCodeViewController.swift │ │ │ │ │ ├── Priming │ │ │ │ │ │ ├── ChangePasswordPrimingView.swift │ │ │ │ │ │ └── ChangePasswordPrimingViewController.swift │ │ │ │ │ ├── RecoveryCodeMissing │ │ │ │ │ │ ├── RecoveryCodeMissingView.swift │ │ │ │ │ │ └── RecoveryCodeMissingViewController.swift │ │ │ │ │ └── VerifyEmail │ │ │ │ │ │ ├── ChangePasswordVerifyPresenter.swift │ │ │ │ │ │ ├── ChangePasswordVerifyViewController.swift │ │ │ │ │ │ └── WaitForEmailView.swift │ │ │ │ ├── CurrencyPicker │ │ │ │ │ ├── BitcoinUnitPicker │ │ │ │ │ │ ├── BitcoinUnitPickerPresenter.swift │ │ │ │ │ │ ├── BitcoinUnitPickerViewController.swift │ │ │ │ │ │ └── BitcoinUnitPickerViewController.xib │ │ │ │ │ ├── Cell │ │ │ │ │ │ ├── CurrencyTableViewCell.swift │ │ │ │ │ │ └── CurrencyTableViewCell.xib │ │ │ │ │ ├── CurrencyHelper.swift │ │ │ │ │ ├── CurrencyPickerPresenter.swift │ │ │ │ │ ├── CurrencyPickerViewController.swift │ │ │ │ │ └── CurrencyPickerViewController.xib │ │ │ │ ├── LightningNetwork │ │ │ │ │ ├── LightningNetworkSettingsPresenter.swift │ │ │ │ │ ├── LightningNetworkSettingsViewController.swift │ │ │ │ │ └── Toggles │ │ │ │ │ │ └── TurboChannelSettingsTogglePresenter.swift │ │ │ │ ├── LogOut │ │ │ │ │ ├── LogOutViewController.swift │ │ │ │ │ └── LogOutViewController.xib │ │ │ │ ├── Onchain │ │ │ │ │ ├── OnchainSettingsPresenter.swift │ │ │ │ │ ├── OnchainSettingsView.swift │ │ │ │ │ └── OnchainSettingsViewController.swift │ │ │ │ ├── Settings+Feedback.swift │ │ │ │ ├── SettingsCell │ │ │ │ │ ├── SettingsTableViewCell.swift │ │ │ │ │ └── SettingsTableViewCell.xib │ │ │ │ ├── SettingsPresenter.swift │ │ │ │ ├── SettingsToggleView │ │ │ │ │ ├── ReceiveFormatPreferenceDropdownPresenter.swift │ │ │ │ │ ├── ReceiveFormatPreferenceMUActionSheetPresenter.swift │ │ │ │ │ ├── ReceiveFormatSettingDropdownView.swift │ │ │ │ │ ├── SettingToggleUserPreferenciesResolver.swift │ │ │ │ │ ├── SettingsTogglePresenter.swift │ │ │ │ │ ├── SettingsTogglePresenterDelegate.swift │ │ │ │ │ └── SettingsToggleView.swift │ │ │ │ ├── SettingsViewController.swift │ │ │ │ ├── SettingsViewController.xib │ │ │ │ └── TwoLinesSettingsCell │ │ │ │ │ ├── TwoLinesSettingsTableViewCell.swift │ │ │ │ │ └── TwoLinesSettingsTableViewCell.xib │ │ │ ├── Sync │ │ │ │ ├── SyncPresenter.swift │ │ │ │ ├── SyncViewController.swift │ │ │ │ ├── UnverifiedRcWarningViewController.swift │ │ │ │ └── UnverifiedRcWarningViewController.xib │ │ │ ├── TabBar │ │ │ │ └── MuunTabBarController.swift │ │ │ ├── TransactionList │ │ │ │ ├── Cell │ │ │ │ │ └── Operation │ │ │ │ │ │ ├── OperationTableViewCell.swift │ │ │ │ │ │ └── OperationTableViewCell.xib │ │ │ │ ├── TransactionListEmptyView.swift │ │ │ │ ├── TransactionListPresenter.swift │ │ │ │ ├── TransactionListView.swift │ │ │ │ └── TransactionListViewController.swift │ │ │ └── UpdateApp │ │ │ │ ├── UpdateAppViewController.swift │ │ │ │ └── UpdateAppViewController.xib │ │ └── Services │ │ │ └── CurrenciesForPickerRetriever.swift │ ├── Resource │ │ ├── Assets.xcassets │ │ │ ├── AppIcon.appiconset │ │ │ │ ├── Contents.json │ │ │ │ ├── Icon-1024.png │ │ │ │ ├── Icon-120.png │ │ │ │ ├── Icon-121.png │ │ │ │ ├── Icon-152.png │ │ │ │ ├── Icon-167.png │ │ │ │ ├── Icon-180.png │ │ │ │ ├── Icon-20.png │ │ │ │ ├── Icon-29.png │ │ │ │ ├── Icon-40.png │ │ │ │ ├── Icon-41.png │ │ │ │ ├── Icon-42.png │ │ │ │ ├── Icon-58.png │ │ │ │ ├── Icon-59.png │ │ │ │ ├── Icon-60.png │ │ │ │ ├── Icon-76.png │ │ │ │ ├── Icon-80.png │ │ │ │ ├── Icon-81.png │ │ │ │ └── Icon-87.png │ │ │ ├── AppIconDogfood.appiconset │ │ │ │ ├── Contents.json │ │ │ │ ├── app_icon_dogfood 1.png │ │ │ │ ├── app_icon_dogfood 2.png │ │ │ │ └── app_icon_dogfood.png │ │ │ ├── Contents.json │ │ │ ├── action_card_back_up.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── baseline-lock-24px_black.pdf │ │ │ ├── action_card_receive.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── account_balance_wallet-24px-3 1.pdf │ │ │ ├── btc_logo.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── Group.pdf │ │ │ ├── camera.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── img-camera.pdf │ │ │ ├── camera_priming.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── QR-ilustration.png │ │ │ │ └── enable_camera.pdf │ │ │ ├── change_password.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── change-password.pdf │ │ │ │ └── change_password.pdf │ │ │ ├── check.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── ic_check_black_24px.pdf │ │ │ ├── chevron.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── Fw.pdf │ │ │ ├── chevron_alt.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── ic_chevron_down-dm.pdf │ │ │ │ └── ic_chevron_down-lm.pdf │ │ │ ├── clock.imageset │ │ │ │ ├── 16.pdf │ │ │ │ ├── Contents.json │ │ │ │ └── d_16.pdf │ │ │ ├── clock_0.imageset │ │ │ │ ├── 0.pdf │ │ │ │ └── Contents.json │ │ │ ├── clock_1.imageset │ │ │ │ ├── 1.pdf │ │ │ │ └── Contents.json │ │ │ ├── clock_2.imageset │ │ │ │ ├── 2.pdf │ │ │ │ └── Contents.json │ │ │ ├── clock_3.imageset │ │ │ │ ├── 3.pdf │ │ │ │ └── Contents.json │ │ │ ├── clock_4.imageset │ │ │ │ ├── 4.pdf │ │ │ │ └── Contents.json │ │ │ ├── clock_5.imageset │ │ │ │ ├── 5.pdf │ │ │ │ └── Contents.json │ │ │ ├── clock_6.imageset │ │ │ │ ├── 6.pdf │ │ │ │ └── Contents.json │ │ │ ├── clock_7.imageset │ │ │ │ ├── 7.pdf │ │ │ │ └── Contents.json │ │ │ ├── clock_8.imageset │ │ │ │ ├── 8.pdf │ │ │ │ └── Contents.json │ │ │ ├── clock_9.imageset │ │ │ │ ├── 9.pdf │ │ │ │ └── Contents.json │ │ │ ├── clock_coinkite.imageset │ │ │ │ ├── Coinkite.pdf │ │ │ │ └── Contents.json │ │ │ ├── clock_taproot.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── TAPROOT.pdf │ │ │ ├── copy.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── content-copy.pdf │ │ │ │ └── d_content-copy.pdf │ │ │ ├── default_flag.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── Group 4.5.pdf │ │ │ ├── edit_pencil.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── d_edit.pdf │ │ │ │ └── edit.pdf │ │ │ ├── edit_pencil_alt.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── ic_edit_dm.pdf │ │ │ │ └── ic_edit_lm.pdf │ │ │ ├── ek_activation_code.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── dark-en.pdf │ │ │ │ ├── dark-es.pdf │ │ │ │ ├── light-en.pdf │ │ │ │ └── light-s.pdf │ │ │ ├── ek_option_another_cloud.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── ek_another_cloud.pdf │ │ │ ├── ek_option_drive.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── Google_Drive_logo 1.pdf │ │ │ ├── ek_option_icloud.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── ic_icloud-final 1.pdf │ │ │ ├── ek_verify_drive.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── drivedark.pdf │ │ │ │ ├── drivelight.pdf │ │ │ │ ├── ek_drive_l.pdf │ │ │ │ └── ek_drive_n.pdf │ │ │ ├── ek_verify_icloud.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── iclouddark.pdf │ │ │ │ ├── icloudlight.pdf │ │ │ │ ├── l.pdf │ │ │ │ └── n.pdf │ │ │ ├── email_expired.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── Group 25.pdf │ │ │ ├── emergency_kit_1.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── ekit1.pdf │ │ │ │ └── one_document.pdf │ │ │ ├── emergency_kit_2.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── ek2.pdf │ │ │ │ └── stored_online.pdf │ │ │ ├── emergency_kit_3.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── complete_ownership.pdf │ │ │ │ └── ek3.pdf │ │ │ ├── empty_transactions.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── Group 238.pdf │ │ │ │ └── tx_history.pdf │ │ │ ├── envelope.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── final-versions-13.pdf │ │ │ ├── envelope_with_lock.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── env_lock.pdf │ │ │ ├── erase.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── backspace.pdf │ │ │ │ └── d_backspace.pdf │ │ │ ├── feedback.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── d_feedback.pdf │ │ │ │ └── feedback.pdf │ │ │ ├── help.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── ic_help_dm.pdf │ │ │ │ └── ic_help_lm.pdf │ │ │ ├── info.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── d_holis.pdf │ │ │ │ └── holis.pdf │ │ │ ├── information_icon.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── d_information (1).pdf │ │ │ │ └── information (1).pdf │ │ │ ├── level_up.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── level_up.pdf │ │ │ ├── m_logo.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── wordmark_1.png │ │ │ ├── nav_back.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── back.pdf │ │ │ │ └── d_back.pdf │ │ │ ├── nav_close.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── close.pdf │ │ │ │ └── d_close.pdf │ │ │ ├── notice.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── baseline-warning-24px.pdf │ │ │ ├── notifications_priming.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── Group 138.pdf │ │ │ ├── open_arrow.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── Rectangle.pdf │ │ │ │ └── d_rectangle.pdf │ │ │ ├── password_hide.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── d_hidepass.pdf │ │ │ │ └── hidepass.pdf │ │ │ ├── password_show.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── d_hide.pdf │ │ │ │ └── hide.pdf │ │ │ ├── pending_clock.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── ic_clock.pdf │ │ │ ├── qr_lnurl.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── qr-lnurl.pdf │ │ │ ├── radio_option.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── radio-empty-dm.pdf │ │ │ │ └── radio-empty-lm.pdf │ │ │ ├── radio_option_selected.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── radio-selected-dm.pdf │ │ │ │ └── radio-selected-lm.pdf │ │ │ ├── rbf_notice.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── ic_error_black_24px.pdf │ │ │ ├── recovery_code_missing.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── missing_recovery_code.pdf │ │ │ ├── scan.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── icon-scan-dark.pdf │ │ │ │ └── icon-scan.pdf │ │ │ ├── security_center.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── security-24px 1.pdf │ │ │ ├── settings.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── d_settings.pdf │ │ │ │ └── settings.pdf │ │ │ ├── share.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── d_share.pdf │ │ │ │ └── share.pdf │ │ │ ├── shield.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── shield.pdf │ │ │ ├── shortcut_receive.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── Receive.pdf │ │ │ ├── shortcut_send.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── Send.pdf │ │ │ ├── state_error.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── state_error.pdf │ │ │ ├── success.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── d_success.pdf │ │ │ │ └── success.pdf │ │ │ ├── taproot_activated.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── taproot_activated_dark.pdf │ │ │ │ └── taproot_activated_light.pdf │ │ │ ├── taproot_countdown.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── taproot_countdown_dark.pdf │ │ │ │ └── taproot_countdown_light.pdf │ │ │ ├── taproot_preactivated.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── taproot_preactivated_dark.pdf │ │ │ │ └── taproot_preactivated_light.pdf │ │ │ ├── taproot_slides_1.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── taproot_slides_1_dark.pdf │ │ │ │ └── taproot_slides_1_light.pdf │ │ │ ├── taproot_slides_2.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── taproot_slides_2_dark.pdf │ │ │ │ └── taproot_slides_2_light.pdf │ │ │ ├── taproot_slides_3.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── taproot_slides_3_dark.pdf │ │ │ │ └── taproot_slides_3_light.pdf │ │ │ ├── tick.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── d_icon.pdf │ │ │ │ └── icon.pdf │ │ │ ├── toggle_balance.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── d_hidebalance.pdf │ │ │ │ └── hidebalance.pdf │ │ │ ├── warning_high.imageset │ │ │ │ ├── 16.pdf │ │ │ │ ├── Contents.json │ │ │ │ └── d_16.pdf │ │ │ ├── warning_low.imageset │ │ │ │ ├── 16.png │ │ │ │ ├── Contents.json │ │ │ │ └── d_16.pdf │ │ │ └── welcome_astronaut.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── astronaut_dark.pdf │ │ │ │ └── astronaut_light.pdf │ │ ├── Colors.xcassets │ │ │ ├── Contents.json │ │ │ ├── background.colorset │ │ │ │ └── Contents.json │ │ │ ├── black.colorset │ │ │ │ └── Contents.json │ │ │ ├── blueDisabled.colorset │ │ │ │ └── Contents.json │ │ │ ├── blueLighttest.colorset │ │ │ │ └── Contents.json │ │ │ ├── cardViewBorder.colorset │ │ │ │ └── Contents.json │ │ │ ├── cellBackground.colorset │ │ │ │ └── Contents.json │ │ │ ├── grayDarkest.colorset │ │ │ │ └── Contents.json │ │ │ ├── muunAlmostWhite.colorset │ │ │ │ └── Contents.json │ │ │ ├── muunBlue.colorset │ │ │ │ └── Contents.json │ │ │ ├── muunBlueLight.colorset │ │ │ │ └── Contents.json │ │ │ ├── muunBluePale.colorset │ │ │ │ └── Contents.json │ │ │ ├── muunButtonLeft.colorset │ │ │ │ └── Contents.json │ │ │ ├── muunButtonRight.colorset │ │ │ │ └── Contents.json │ │ │ ├── muunDisabled.colorset │ │ │ │ └── Contents.json │ │ │ ├── muunGrayDark.colorset │ │ │ │ └── Contents.json │ │ │ ├── muunGrayLight.colorset │ │ │ │ └── Contents.json │ │ │ ├── muunGreen.colorset │ │ │ │ └── Contents.json │ │ │ ├── muunGreenOpsBadgeBackground.colorset │ │ │ │ └── Contents.json │ │ │ ├── muunGreenOpsBadgeText.colorset │ │ │ │ └── Contents.json │ │ │ ├── muunGreenPale.colorset │ │ │ │ └── Contents.json │ │ │ ├── muunHomeBackgroundColor.colorset │ │ │ │ └── Contents.json │ │ │ ├── muunOverlay.colorset │ │ │ │ └── Contents.json │ │ │ ├── muunRed.colorset │ │ │ │ └── Contents.json │ │ │ ├── muunWarning.colorset │ │ │ │ └── Contents.json │ │ │ ├── muunWarningRBF.colorset │ │ │ │ └── Contents.json │ │ │ ├── noticeBackground.colorset │ │ │ │ └── Contents.json │ │ │ ├── noticeBorder.colorset │ │ │ │ └── Contents.json │ │ │ ├── oddKeyRowBackground.colorset │ │ │ │ └── Contents.json │ │ │ ├── operationOutgoing.colorset │ │ │ │ └── Contents.json │ │ │ ├── separator.colorset │ │ │ │ └── Contents.json │ │ │ ├── title.colorset │ │ │ │ └── Contents.json │ │ │ ├── toastLeft.colorset │ │ │ │ └── Contents.json │ │ │ ├── toastRight.colorset │ │ │ │ └── Contents.json │ │ │ └── white.colorset │ │ │ │ └── Contents.json │ │ ├── Constant │ │ │ └── Constant.swift │ │ ├── Environment+Extension.swift │ │ ├── Identifiers.swift │ │ ├── Localization │ │ │ ├── Strings+Generated.swift │ │ │ ├── en.lproj │ │ │ │ └── Localizable.strings │ │ │ └── es.lproj │ │ │ │ └── Localizable.strings │ │ ├── Lottie │ │ │ ├── animation.json │ │ │ └── chevron │ │ │ │ ├── dm_chevron-pending.json │ │ │ │ ├── dm_chevron-rbf.json │ │ │ │ ├── dm_chevron-regular.json │ │ │ │ ├── lm_chevron-pending.json │ │ │ │ ├── lm_chevron-rbf.json │ │ │ │ └── lm_chevron-regular.json │ │ └── XCAssets+Generated.swift │ ├── core │ │ ├── Data │ │ │ ├── Component │ │ │ │ └── MUTimer.swift │ │ │ ├── DataDependencyContainer.swift │ │ │ ├── Database │ │ │ │ ├── DatabaseCoordinator.swift │ │ │ │ ├── Operation │ │ │ │ │ ├── IncomingSwapDB.swift │ │ │ │ │ ├── IncomingSwapHtlcDB.swift │ │ │ │ │ ├── OperationDB.swift │ │ │ │ │ └── SubmarineSwapDB.swift │ │ │ │ └── PublicProfile │ │ │ │ │ └── PublicProfileDB.swift │ │ │ ├── Errors │ │ │ │ ├── DeviceTokenErrorValues.swift │ │ │ │ ├── ErrorReporter.swift │ │ │ │ ├── Logger.swift │ │ │ │ └── MuunError.swift │ │ │ ├── KeychainRepository.swift │ │ │ ├── LazyLoadedList.swift │ │ │ ├── Libwallet │ │ │ │ ├── HttpClientSessionProvider.swift │ │ │ │ └── KeyProvider.swift │ │ │ ├── LibwalletStorageHelper.swift │ │ │ ├── Notification │ │ │ │ └── NotificationScheduler.swift │ │ │ ├── Repository │ │ │ │ ├── ApiMigrationsVersionRepository.swift │ │ │ │ ├── BackgroundTimesRepository.swift │ │ │ │ ├── BaseDatabaseRepository.swift │ │ │ │ ├── BlockchainHeightRepository.swift │ │ │ │ ├── DebugAnalyticsEventsRepository.swift │ │ │ │ ├── DebugRequestsRepository.swift │ │ │ │ ├── EmergencyKitRepository.swift │ │ │ │ ├── ExchangeRateWindowRepository.swift │ │ │ │ ├── FeatureFlagsRepository.swift │ │ │ │ ├── FeeWindowRepository.swift │ │ │ │ ├── ForwardingPolicyRepository.swift │ │ │ │ ├── IncomingSwapRepository.swift │ │ │ │ ├── KeysRepository.swift │ │ │ │ ├── MinFeeRateRepository.swift │ │ │ │ ├── NextTransactionSizeRepository.swift │ │ │ │ ├── OperationRepository.swift │ │ │ │ ├── PublicProfileRepository.swift │ │ │ │ ├── ReachabilityStatusRepository.swift │ │ │ │ ├── SessionRepository.swift │ │ │ │ ├── SubmarineSwapRepository.swift │ │ │ │ ├── UserPreferencesRepository.swift │ │ │ │ └── UserRepository.swift │ │ │ ├── Scheduler │ │ │ │ ├── Scheduler.swift │ │ │ │ └── TaskRunner.swift │ │ │ ├── SecureStorage.swift │ │ │ ├── Service │ │ │ │ ├── AppleDeviceCheckAdapter.swift │ │ │ │ ├── Base │ │ │ │ │ ├── BaseError.swift │ │ │ │ │ ├── BaseRequest.swift │ │ │ │ │ └── BaseService.swift │ │ │ │ ├── CapabilitiesProvider │ │ │ │ │ ├── AppInfoProvider.swift │ │ │ │ │ ├── ConectivityCapabilitiesProvider.swift │ │ │ │ │ ├── HardwareCapabilitiesProvider.swift │ │ │ │ │ ├── ICloudCapabilitiesProvider.swift │ │ │ │ │ ├── LocaleTimeZoneProvider.swift │ │ │ │ │ └── StoreKitCapabilitiesProvider.swift │ │ │ │ ├── CloudConstants.swift │ │ │ │ ├── DTO │ │ │ │ │ ├── AuthAndSessions │ │ │ │ │ │ ├── Challenge │ │ │ │ │ │ │ └── ChallengeJson.swift │ │ │ │ │ │ ├── EncryptedKey │ │ │ │ │ │ │ └── SendEncryptedKeysJson.swift │ │ │ │ │ │ ├── LinkAction │ │ │ │ │ │ │ └── LinkActionJson.swift │ │ │ │ │ │ ├── Notification │ │ │ │ │ │ │ ├── NotificationJson.swift │ │ │ │ │ │ │ └── NotificationReportJson.swift │ │ │ │ │ │ ├── PhoneConfirmation │ │ │ │ │ │ │ └── PhoneConfirmationJson.swift │ │ │ │ │ │ ├── Session │ │ │ │ │ │ │ ├── CreateFirstSessionJson.swift │ │ │ │ │ │ │ ├── CreateLoginSessionJson.swift │ │ │ │ │ │ │ └── CreateRcLoginSessionJson.swift │ │ │ │ │ │ └── Signup │ │ │ │ │ │ │ ├── PasswordSetupJson.swift │ │ │ │ │ │ │ └── StartEmailSetupJson.swift │ │ │ │ │ ├── Contacts │ │ │ │ │ │ └── ContactJson.swift │ │ │ │ │ ├── Empty │ │ │ │ │ │ └── EmptyJson.swift │ │ │ │ │ ├── IncomingSwap │ │ │ │ │ │ ├── FulfillmentPushedJson.swift │ │ │ │ │ │ ├── IncomingSwapFulfillmentDataJson.swift │ │ │ │ │ │ ├── IncomingSwapJson.swift │ │ │ │ │ │ └── PreimageJson.swift │ │ │ │ │ ├── Integrity │ │ │ │ │ │ └── IntegrityJson.swift │ │ │ │ │ ├── Migrations │ │ │ │ │ │ └── KeyFingerprintMigrationJson.swift │ │ │ │ │ ├── Muun │ │ │ │ │ │ └── MuunModelJson.swift │ │ │ │ │ ├── Operations │ │ │ │ │ │ ├── AmountJson.swift │ │ │ │ │ │ ├── OperationCreatedJson.swift │ │ │ │ │ │ ├── OperationJson.swift │ │ │ │ │ │ └── SubmarineSwapJson.swift │ │ │ │ │ ├── RealTimeData │ │ │ │ │ │ └── RealTimeDataJson.swift │ │ │ │ │ ├── RealTimeFeesJson.swift │ │ │ │ │ ├── Transaction │ │ │ │ │ │ └── TransactionJson.swift │ │ │ │ │ └── UserAndProfile │ │ │ │ │ │ ├── KeySet │ │ │ │ │ │ ├── KeySetJson.swift │ │ │ │ │ │ └── PublicKeySetJson.swift │ │ │ │ │ │ ├── Profile │ │ │ │ │ │ └── ProfileJson.swift │ │ │ │ │ │ └── User │ │ │ │ │ │ └── UserJson.swift │ │ │ │ ├── DefaultCardNfcService.swift │ │ │ │ ├── GoogleDriveHelper.swift │ │ │ │ ├── Houston │ │ │ │ │ └── HoustonService.swift │ │ │ │ ├── ICloudHelper.swift │ │ │ │ ├── LibwalletNfcBridge.swift │ │ │ │ ├── Mapper.swift │ │ │ │ ├── PingURLService.swift │ │ │ │ ├── RealTimeFees │ │ │ │ │ ├── FeeBumpFunctionsJson.swift │ │ │ │ │ └── RealTimeFeesJson.swift │ │ │ │ ├── TestLapp.swift │ │ │ │ └── WalletService.swift │ │ │ └── UserDefaults │ │ │ │ └── Preferences.swift │ │ ├── Domain │ │ │ ├── Action │ │ │ │ ├── Address │ │ │ │ │ ├── AddressActions.swift │ │ │ │ │ └── SyncExternalAddresses.swift │ │ │ │ ├── ApiMigration │ │ │ │ │ ├── ApiMigrationAction.swift │ │ │ │ │ ├── FetchSwapServerKeyAction.swift │ │ │ │ │ ├── MigrateFingerprintsAction.swift │ │ │ │ │ └── MigrateUserSkippedEmailAction.swift │ │ │ │ ├── Base │ │ │ │ │ ├── ActionState.swift │ │ │ │ │ └── AsyncAction.swift │ │ │ │ ├── CurrencyActions.swift │ │ │ │ ├── DebugExecutablesGroup │ │ │ │ │ ├── AddressGeneration │ │ │ │ │ │ ├── AddressGenerationGroup.swift │ │ │ │ │ │ ├── CopyRandomAddressDebugExecutable.swift │ │ │ │ │ │ └── CopyRandomInvoiceDebugExecutable.swift │ │ │ │ │ ├── AppSyncingGroup │ │ │ │ │ │ ├── AppSyncingGroup.swift │ │ │ │ │ │ ├── ShowAnalyticsDebugExecutable.swift │ │ │ │ │ │ ├── ShowRequestsDebugExecutable.swift │ │ │ │ │ │ └── SyncRealtimeDataDebugExecutable.swift │ │ │ │ │ ├── BaseDebugExecutablesGroup.swift │ │ │ │ │ ├── DebugExecutablesGroup.swift │ │ │ │ │ ├── NfcCard │ │ │ │ │ │ ├── CardPairingDebugExecutable.swift │ │ │ │ │ │ ├── CardUnpairingDebugExecutable.swift │ │ │ │ │ │ ├── NfcCardGroup.swift │ │ │ │ │ │ └── SignMessageDebugExecutable.swift │ │ │ │ │ ├── NodeHandling │ │ │ │ │ │ ├── DropLastTxDebugExecutable.swift │ │ │ │ │ │ ├── DropTxByIdDebugExecutable.swift │ │ │ │ │ │ ├── GenerateBlockDebugExecutable.swift │ │ │ │ │ │ ├── NodeHandlingGroup.swift │ │ │ │ │ │ └── UndropTxByIdDebugExecutable.swift │ │ │ │ │ ├── UserAccountManagement │ │ │ │ │ │ ├── CreateVerifiedRcV1Executable.swift │ │ │ │ │ │ └── UserAccountManagementGroup.swift │ │ │ │ │ └── WalletFunding │ │ │ │ │ │ ├── FundWalletOffchainDebugExecutable.swift │ │ │ │ │ │ ├── FundWalletOnchainDebugExecutable.swift │ │ │ │ │ │ └── WalletFundingGroup.swift │ │ │ │ ├── FeatureFlagsSelector.swift │ │ │ │ ├── FetchNotificationsAction.swift │ │ │ │ ├── IncomingSwap │ │ │ │ │ ├── CreateBitcoinuriAction.swift │ │ │ │ │ ├── CreateInvoiceAction.swift │ │ │ │ │ ├── FulfillIncomingSwapAction.swift │ │ │ │ │ ├── RefreshInvoicesAction.swift │ │ │ │ │ └── VerifyFulfillableAction.swift │ │ │ │ ├── LNURL │ │ │ │ │ └── LNURLWithdrawAction.swift │ │ │ │ ├── Nfc │ │ │ │ │ ├── PairNfcCardAction.swift │ │ │ │ │ ├── SignMessageAction.swift │ │ │ │ │ └── UnpairNfcCardAction.swift │ │ │ │ ├── OperationMetadataDecrypter.swift │ │ │ │ ├── Operations │ │ │ │ │ ├── BIP70Action.swift │ │ │ │ │ ├── BalanceActions.swift │ │ │ │ │ ├── BuildOperationAction.swift │ │ │ │ │ ├── FeeCalculatorAction.swift │ │ │ │ │ ├── OperationActions.swift │ │ │ │ │ └── SubmarineSwapAction.swift │ │ │ │ ├── RealTime │ │ │ │ │ ├── PreloadFeeDataAction.swift │ │ │ │ │ └── RealTimeDataAction.swift │ │ │ │ ├── Session │ │ │ │ │ ├── AuthorizeRCLoginAction.swift │ │ │ │ │ ├── BeginPasswordChangeAction.swift │ │ │ │ │ ├── BuildChallengeSetupAction.swift │ │ │ │ │ ├── ChangeCurrencyAction.swift │ │ │ │ │ ├── ClientSelector.swift │ │ │ │ │ ├── CompatLogInAction.swift │ │ │ │ │ ├── CreateFirstSessionAction.swift │ │ │ │ │ ├── CreateRCLoginSessionAction.swift │ │ │ │ │ ├── CreateSessionAction.swift │ │ │ │ │ ├── FCMTokenAction.swift │ │ │ │ │ ├── FinishPasswordChangeAction.swift │ │ │ │ │ ├── FinishRecoverCodeSetupAction.swift │ │ │ │ │ ├── GetKeySetAction.swift │ │ │ │ │ ├── LogInAction.swift │ │ │ │ │ ├── LogInWithRCAction.swift │ │ │ │ │ ├── LogoutAction.swift │ │ │ │ │ ├── ReportEmergencyKitExportedAction.swift │ │ │ │ │ ├── RequestChallengeAction.swift │ │ │ │ │ ├── SessionActions.swift │ │ │ │ │ ├── SetUpPasswordAction.swift │ │ │ │ │ ├── SetupChallengeAction.swift │ │ │ │ │ ├── SignChallengeWithUserKeyAction.swift │ │ │ │ │ ├── StartEmailSetupAction.swift │ │ │ │ │ ├── StartRecoveryCodeSetupAction.swift │ │ │ │ │ ├── StoreKeySetAction.swift │ │ │ │ │ ├── SyncAction.swift │ │ │ │ │ ├── VerifyAuthorizeAction.swift │ │ │ │ │ └── VerifyEmailSetupAction.swift │ │ │ │ ├── SupportAction.swift │ │ │ │ └── UserPreferences │ │ │ │ │ └── UpdateUserPreferencesAction.swift │ │ │ ├── ApiMigrationsManager.swift │ │ │ ├── ApplicationLockManager.swift │ │ │ ├── Crypto │ │ │ │ ├── DerivationSchema.swift │ │ │ │ ├── KeyCrypter.swift │ │ │ │ ├── SecureRandom.swift │ │ │ │ └── hd │ │ │ │ │ ├── WalletPrivateKey.swift │ │ │ │ │ └── WalletPublicKey.swift │ │ │ ├── DomainDependencyContainer.swift │ │ │ ├── Model │ │ │ │ ├── AuthAndSessions │ │ │ │ │ ├── Challenge │ │ │ │ │ │ ├── Challenge.swift │ │ │ │ │ │ └── RecoveryCode.swift │ │ │ │ │ ├── LinkAction │ │ │ │ │ │ ├── LinkAction.swift │ │ │ │ │ │ └── SendEncryptedKeys.swift │ │ │ │ │ ├── Notification │ │ │ │ │ │ ├── Notification.swift │ │ │ │ │ │ └── NotificationReport.swift │ │ │ │ │ ├── PhoneConfirmation │ │ │ │ │ │ └── PhoneConfirmation.swift │ │ │ │ │ ├── Session │ │ │ │ │ │ ├── CreateFirstSession.swift │ │ │ │ │ │ ├── CreateRcLoginSession.swift │ │ │ │ │ │ └── Session.swift │ │ │ │ │ └── Signup │ │ │ │ │ │ ├── PasswrodSetup.swift │ │ │ │ │ │ └── StartEmailSetup.swift │ │ │ │ ├── Contacts │ │ │ │ │ └── Contact.swift │ │ │ │ ├── Crypto │ │ │ │ │ ├── Address │ │ │ │ │ │ └── AddressHelper.swift │ │ │ │ │ ├── AddressType.swift │ │ │ │ │ └── ReceiveFormatPreference.swift │ │ │ │ ├── Debug │ │ │ │ │ ├── DebugRequest.swift │ │ │ │ │ └── DebugRequestResponse.swift │ │ │ │ ├── DeviceCheck │ │ │ │ │ └── ReachabilityStatus.swift │ │ │ │ ├── IncomingSwap │ │ │ │ │ ├── ForwardingPolicy.swift │ │ │ │ │ ├── FulfillmentData.swift │ │ │ │ │ └── IncomingSwap.swift │ │ │ │ ├── Integrity │ │ │ │ │ └── Integrity.swift │ │ │ │ ├── Muun │ │ │ │ │ ├── DomainError.swift │ │ │ │ │ └── MuunModel.swift │ │ │ │ ├── Operations │ │ │ │ │ ├── Amount.swift │ │ │ │ │ ├── Debt.swift │ │ │ │ │ ├── MonetaryAmount.swift │ │ │ │ │ ├── Operation.swift │ │ │ │ │ ├── OperationCreated.swift │ │ │ │ │ └── SubmarineSwap.swift │ │ │ │ ├── PaymentRequest │ │ │ │ │ └── PaymentRequest.swift │ │ │ │ ├── RealTimeData │ │ │ │ │ └── RealTimeData.swift │ │ │ │ ├── RealTimeFees │ │ │ │ │ ├── FeeBumpFunctions.swift │ │ │ │ │ └── RealTimeFees.swift │ │ │ │ ├── Transaction │ │ │ │ │ ├── PartiallySignedTransaction.swift │ │ │ │ │ └── Transaction.swift │ │ │ │ └── UserAndProfile │ │ │ │ │ ├── KeySet │ │ │ │ │ ├── KeySet.swift │ │ │ │ │ └── PublicKeySet.swift │ │ │ │ │ ├── Profile │ │ │ │ │ └── Profile.swift │ │ │ │ │ └── User │ │ │ │ │ └── User.swift │ │ │ ├── Notifications │ │ │ │ ├── BackgroundExecutionMetricsProvider.swift │ │ │ │ ├── NotificationHandler.swift │ │ │ │ ├── NotificationParser.swift │ │ │ │ └── NotificationProcessor.swift │ │ │ ├── Selector │ │ │ │ ├── BaseOptionalSelector.swift │ │ │ │ ├── BaseSelector.swift │ │ │ │ ├── ExportKeys │ │ │ │ │ └── EmergencyKitDataSelector.swift │ │ │ │ ├── UserActivatedFeatureSelector.swift │ │ │ │ ├── UserPreferencesSelector.swift │ │ │ │ └── UserSelector.swift │ │ │ ├── Service │ │ │ │ ├── ApiReachabilityService.swift │ │ │ │ ├── BackgroundTimesService.swift │ │ │ │ ├── CardNfcService.swift │ │ │ │ ├── DeviceCheckAdapter.swift │ │ │ │ ├── DeviceCheckTokenProvider.swift │ │ │ │ ├── LibwalletService.swift │ │ │ │ └── ReachabilityService.swift │ │ │ ├── Sync │ │ │ │ └── FeeDataSyncer.swift │ │ │ └── Utils │ │ │ │ ├── AsciiUtils.swift │ │ │ │ └── DeviceUtils.swift │ │ ├── Environment.swift │ │ ├── Extension │ │ │ ├── Array+Extension.swift │ │ │ ├── Data+Extension.swift │ │ │ ├── DateFormatter+Extension.swift │ │ │ ├── Decimal+Extension.swift │ │ │ ├── Environment+Net.swift │ │ │ ├── Error+Extension.swift │ │ │ ├── JSONDecoder+Extension.swift │ │ │ ├── Libwallet+Extension.swift │ │ │ ├── NSErrorHelper.swift │ │ │ ├── PrimitiveSequence+Extension.swift │ │ │ └── URL+Extension.swift │ │ ├── Persistence.swift │ │ ├── Protobuf │ │ │ ├── google │ │ │ │ └── rpc │ │ │ │ │ └── status.pb.swift │ │ │ ├── wallet_service.grpc.swift │ │ │ └── wallet_service.pb.swift │ │ └── TestUtils.swift │ └── falcon.entitlements │ ├── falconPushNotifications │ ├── DuplicatedDTOs │ │ └── DTO │ │ │ ├── AuthAndSessions │ │ │ └── Notification │ │ │ │ ├── NotificationJson.swift │ │ │ │ └── NotificationReportJson.swift │ │ │ ├── Operations │ │ │ ├── AmountJson.swift │ │ │ └── OperationJson.swift │ │ │ └── UserAndProfile │ │ │ └── Profile │ │ │ └── ProfileJson.swift │ ├── DuplicatedExtensions │ │ └── JSONDecoder+Extension.swift │ ├── Environment.swift │ ├── Info.plist │ ├── LocaleNumberFormatter.swift │ ├── NotificationService.swift │ └── falconPushNotifications.entitlements │ ├── falconTests │ ├── DTO │ │ └── RealTimeFeeJsonTests.swift │ ├── Domain │ │ ├── Action │ │ │ ├── Operations │ │ │ │ └── BalanceActionsTests.swift │ │ │ └── PreloadFeeDataActionTests.swift │ │ ├── AddressActionsTests.swift │ │ ├── Crypto │ │ │ ├── KeyCrypterTests.swift │ │ │ ├── Keys │ │ │ │ ├── KeyDerivationTests.swift │ │ │ │ └── WalletPrivateKeyTests.swift │ │ │ ├── SatoshisTests.swift │ │ │ └── TransactionSchemeV2Tests.swift │ │ ├── DataExtensionTests.swift │ │ ├── ErrorExtensionTests.swift │ │ ├── FCMTokenActionTest.swift │ │ ├── FinishRecoveryCodeSetupActionTest.swift │ │ ├── FulfillincomingSwapActionTest.swift │ │ ├── IncomingSwapRepositoryTests.swift │ │ ├── JSON.swift │ │ ├── Model │ │ │ └── UserTests.swift │ │ ├── NotificationProcessorTests.swift │ │ ├── OperationRepositoryTests.swift │ │ ├── OperationTests.swift │ │ ├── Services │ │ │ ├── ApiReachabiltiyServiceTest.swift │ │ │ └── DeviceCheckTokenProviderTest.swift │ │ ├── StartRecoverCodeSetupActionTests.swift │ │ ├── Sync │ │ │ └── FeeDataSyncerTests.swift │ │ ├── UpdateUserPreferencesActionTest.swift │ │ └── Utils │ │ │ └── AsciiUtilsTests.swift │ ├── ExpectationUtils.swift │ ├── Extension │ │ └── StringExtensionTests.swift │ ├── Factories │ │ ├── Factory+Operation.swift │ │ ├── Factory+User.swift │ │ └── Factory.swift │ ├── Info.plist │ ├── Mocking │ │ ├── Action │ │ │ └── FakePreloadFeeDataAction.swift │ │ ├── Infrastructure │ │ │ ├── BuildChallengeSetupActionFake.swift │ │ │ ├── FakeHoustonService.swift │ │ │ ├── FakeKeysRepository.swift │ │ │ ├── FakeLibwalletService.swift │ │ │ └── FakePingURLService.swift │ │ └── SecurityCenter │ │ │ ├── FinishRecoveryCodeSetupActionStub.swift │ │ │ ├── FinishRecoveryCodeSetupPresenterDelegateSpy.swift │ │ │ ├── RecoveryCodePrimingPresenterDelegateSpy.swift │ │ │ └── StartRecoverySetupActionStub.swift │ ├── MuunTestCase.swift │ ├── Presentation │ │ ├── AmountLabelTests.swift │ │ ├── BlockHelperTests.swift │ │ ├── HomePresenterTests.swift │ │ ├── LocaleNumberFormatterTests.swift │ │ ├── Models │ │ │ ├── BitcoinCurrencyTests.swift │ │ │ └── FiatCurrencyTests.swift │ │ ├── NewOpAmountPresenterTest.swift │ │ └── SecurityCenter │ │ │ ├── FinishRecoveryCodeSetupPresenterTest.swift │ │ │ └── RecoveryCodePrimingPresenterTest.swift │ └── Repositories │ │ ├── KeychainRepositoryTest.swift │ │ └── UserPreferencesRepositoryTest.swift │ ├── falconUITests │ ├── All.xctestplan │ ├── Bitrise.xctestplan │ ├── CreateWalletTests.swift │ ├── FalconUITests.swift │ ├── IncomingSwapUITests.swift │ ├── Info.plist │ ├── NewOperationUITest.swift │ ├── Page │ │ ├── CustomViews │ │ │ ├── AmountInputPage.swift │ │ │ ├── ButtonView │ │ │ │ └── ButtonViewPage.swift │ │ │ ├── CameraPermissionPage.swift │ │ │ ├── CheckViewPage.swift │ │ │ ├── KeyboardView │ │ │ │ └── KeyboardViewPage.swift │ │ │ ├── LinkButtonPage.swift │ │ │ ├── QRCodeWithActions.swift │ │ │ ├── RecoveryViewPage.swift │ │ │ ├── SmallButtonView │ │ │ │ └── SmallButtonViewPage.swift │ │ │ └── TextInputView │ │ │ │ ├── LargeTextInputViewPage.swift │ │ │ │ └── TextInputViewPage.swift │ │ ├── Page.swift │ │ ├── UIElementPage.swift │ │ └── ViewControllers │ │ │ ├── ChangePassword │ │ │ ├── ChangePasswordEnterCurrentPage.swift │ │ │ ├── ChangePasswordEnterNewPage.swift │ │ │ ├── ChangePasswordEnterRecoveryCodePage.swift │ │ │ └── ChangePasswordPrimingPage.swift │ │ │ ├── Detail │ │ │ └── DetailPage.swift │ │ │ ├── FeeEditor │ │ │ ├── ManuallyEnterFeePage.swift │ │ │ └── SelectFeePage.swift │ │ │ ├── FeedbackPage.swift │ │ │ ├── GetStarted │ │ │ └── GetStartedPage.swift │ │ │ ├── Home │ │ │ ├── HomePage.swift │ │ │ └── Operation │ │ │ │ └── OperationCellPage.swift │ │ │ ├── LNURL │ │ │ ├── LNURLFirstTimePage.swift │ │ │ ├── LNURLManuallyEnterQRPage.swift │ │ │ ├── LNURLScanQRPage.swift │ │ │ └── LNURLWithdrawErrorPage.swift │ │ │ ├── LogOut │ │ │ └── LogOutPage.swift │ │ │ ├── NewOp │ │ │ ├── CurrencyPickerPage.swift │ │ │ ├── ManuallyEnterQRPage.swift │ │ │ ├── NewOpAmountPage.swift │ │ │ ├── NewOpDescriptionPage.swift │ │ │ ├── NewOpErrorPage.swift │ │ │ ├── NewOperationPage.swift │ │ │ └── ScanQRPage.swift │ │ │ ├── Pin │ │ │ └── PinPage.swift │ │ │ ├── ReceivePage.swift │ │ │ ├── SecurityCenter │ │ │ ├── EmailBackup │ │ │ │ ├── FinishEmailSetupPage.swift │ │ │ │ ├── PrimingEmailPage.swift │ │ │ │ ├── SetEmailBackUpPage.swift │ │ │ │ └── SetUpPasswordPage.swift │ │ │ ├── EmergencyKit │ │ │ │ ├── ActivateEmergencyKitPage.swift │ │ │ │ ├── EmergencyKitSlidesPage.swift │ │ │ │ ├── RecoveryToolPage.swift │ │ │ │ └── ShareEmergencyKitPage.swift │ │ │ ├── RecoveryCodeSetup │ │ │ │ ├── ConfirmRecoveryCodePage.swift │ │ │ │ ├── GenerateRecoveryCodePage.swift │ │ │ │ ├── PrimingRecoveryCodePage.swift │ │ │ │ └── VerifyRecoveryCodePage.swift │ │ │ └── SecurityCenterPage.swift │ │ │ ├── Settings │ │ │ ├── LightningNetworkSettingsPage.swift │ │ │ └── SettingsPage.swift │ │ │ ├── SignIn │ │ │ ├── RecoveryCodePage.swift │ │ │ ├── SignInEmailPage.swift │ │ │ ├── SignInPasswordPage.swift │ │ │ ├── SignInWithRCPage.swift │ │ │ └── VerifyEmailPage.swift │ │ │ └── TransactionList │ │ │ └── TransactionListPage.swift │ ├── PinUITestinTest.swift │ ├── Regtest.swift │ ├── SettingsUITest.swift │ ├── SignInUITests.swift │ ├── Tests │ │ ├── ChangePasswordTests.swift │ │ ├── LNURLWithdrawTests.swift │ │ └── SecurityCenter │ │ │ ├── EmailSetupUITests.swift │ │ │ ├── EmergencyKitUITest.swift │ │ │ ├── RecoveryCodeUITest.swift │ │ │ └── SecurityCenterTests.swift │ └── XCUIElement+Extension.swift │ ├── fastlane │ ├── Appfile │ ├── Fastfile │ └── README.md │ ├── pods_dependency_registry.txt │ └── swiftgen.yml ├── libwallet ├── .gitignore ├── LICENSE ├── README.md ├── V1.go ├── V2.go ├── V3.go ├── V4.go ├── V5.go ├── V6.go ├── address.go ├── address_test.go ├── addresses │ ├── addresses.go │ ├── addresses_test.go │ ├── v1.go │ ├── v2.go │ ├── v2_test.go │ ├── v3.go │ ├── v3_test.go │ ├── v4.go │ ├── v4_test.go │ ├── v5.go │ ├── v5_test.go │ ├── v6.go │ └── v6_test.go ├── aescbc │ ├── aescbc.go │ └── aescbc_test.go ├── app_provided_data │ ├── config.go │ ├── feature_flag.go │ ├── keys.go │ ├── log.go │ ├── nfc_bridge.go │ └── service_request.go ├── bip21.go ├── bip21_test.go ├── bip70.pb.go ├── bip70.proto ├── bridge.go ├── btcsuitew │ ├── bech32m │ │ ├── bech32m.go │ │ └── bech32m_test.go │ ├── btcutilw │ │ ├── address.go │ │ └── segwit.go │ ├── chainhashw │ │ └── chainhashw.go │ └── txscriptw │ │ ├── hashcache.go │ │ ├── script.go │ │ ├── script_test.go │ │ └── standard.go ├── challenge_keys.go ├── challenge_keys_test.go ├── challenge_public_key.go ├── cryptography │ └── bitcoin_hpke │ │ ├── bitcoin_hpke.go │ │ ├── bitcoin_hpke_test.go │ │ ├── encrypted_message.go │ │ ├── i2osp.go │ │ ├── kem.go │ │ └── labeled_hkdf.go ├── data │ └── keys │ │ └── provider.go ├── docker │ └── builder.Dockerfile ├── domain │ ├── action │ │ ├── challenge_keys │ │ │ ├── finish_challenge_setup_action.go │ │ │ └── start_challenge_setup_action.go │ │ ├── diagnostic_mode_reports │ │ │ └── submit_diagnostic_action.go │ │ ├── nfc │ │ │ ├── pair_security_card_action.go │ │ │ ├── pair_security_card_action_v2.go │ │ │ ├── reset_security_card_action.go │ │ │ └── sign_message_security_card_action.go │ │ └── recovery │ │ │ ├── broadcast_recovery_tx_action.go │ │ │ ├── build_recovery_tx_action.go │ │ │ ├── compute_and_store_encrypted_muun_key_action.go │ │ │ ├── get_encrypted_user_key_action.go │ │ │ ├── may_retrieve_encrypted_muun_key_action.go │ │ │ ├── populate_encrypted_muun_key_action.go │ │ │ ├── scan_for_funds_action.go │ │ │ └── sign_recovery_tx_action.go │ ├── diagnostic_mode │ │ └── diagnostic_session_data.go │ ├── model │ │ ├── encrypted_key_v3 │ │ │ ├── domain_separation.go │ │ │ ├── encrypted_key.go │ │ │ └── encrypted_key_test.go │ │ ├── security_card │ │ │ ├── security_card_metadata.go │ │ │ └── security_card_paired.go │ │ └── verifiable_muun_key │ │ │ ├── verifiable_muun_key.go │ │ │ └── verifiable_muun_key_test.go │ └── nfc │ │ ├── apdu.go │ │ ├── javacard.go │ │ ├── mock_nfc_bridge.go │ │ ├── mock_nfc_bridge_test.go │ │ ├── muuncard.go │ │ ├── muuncard_secure_channel.go │ │ ├── muuncard_test.go │ │ └── muuncard_v2.go ├── electrum │ ├── client.go │ ├── pool.go │ └── servers.go ├── emergency_kit.go ├── emergency_kit_test.go ├── emergencykit │ ├── content.go │ ├── css.go │ ├── descriptors.go │ ├── descriptors_test.go │ ├── emergencykit.go │ ├── emergencykit_test.go │ ├── metadata.go │ └── metadata_test.go ├── encrypt.go ├── encrypt_test.go ├── encryption │ ├── cypher.go │ ├── cypher_test.go │ ├── encodings.go │ ├── encodings_test.go │ └── secret.go ├── errors.go ├── errors │ ├── api_errors.go │ └── errors.go ├── features.go ├── features_test.go ├── fees │ ├── fees.go │ └── fees_test.go ├── go.mod ├── go.sum ├── hashes.go ├── hdpath │ ├── hdpath.go │ └── hdpath_test.go ├── hdprivatekey.go ├── hdprivatekey_test.go ├── hdpublickey.go ├── hdpublickey_test.go ├── incoming_swap.go ├── incoming_swap_test.go ├── init.go ├── init_test.go ├── invoice.go ├── invoice_test.go ├── invoices.go ├── invoices_test.go ├── keycrypt │ ├── keycrypt.go │ └── keycrypt_test.go ├── keycrypter.go ├── keycrypter_test.go ├── librs │ ├── Cargo.lock │ ├── Cargo.toml │ ├── README.md │ ├── bindings │ │ ├── Cargo.toml │ │ └── src │ │ │ └── lib.rs │ ├── generate │ │ ├── Cargo.toml │ │ └── src │ │ │ └── main.rs │ ├── librs.go │ ├── librs.h │ ├── librs_test.go │ ├── libs.Dockerfile │ └── makelibs.sh ├── libwallet_init │ └── init.go ├── lnurl.go ├── lnurl │ ├── lnurl.go │ └── lnurl_test.go ├── lnurl_test.go ├── log │ └── log.go ├── musig │ ├── impl.go │ ├── musig2.go │ ├── musig2_bip32.go │ ├── musig2_bip32_test.go │ ├── musig2_test.go │ ├── tapscript_test.go │ └── tweaks.go ├── musig2v040 │ ├── README.md │ ├── context.go │ ├── keys.go │ ├── nonces.go │ ├── sign.go │ └── upstream-patch.patch ├── network.go ├── network_test.go ├── newop │ ├── bridge_persistence_fee_bump_functions.go │ ├── bridge_persistence_fee_bump_functions_test.go │ ├── context.go │ ├── context_test.go │ ├── exchange_rates.go │ ├── exchange_rates_test.go │ ├── fee_state.go │ ├── fee_window.go │ ├── money.go │ ├── money_test.go │ ├── nts.go │ ├── state.go │ ├── state_test.go │ └── swaps.go ├── nonces.go ├── operation │ ├── fee_bump.go │ ├── fee_bump_test.go │ ├── fee_window.go │ ├── fee_window_test.go │ ├── fees.go │ ├── fees_test.go │ ├── payment_analyzer.go │ └── payment_analyzer_test.go ├── partiallysignedtransaction.go ├── partiallysignedtransaction_test.go ├── presentation │ ├── api │ │ ├── google │ │ │ └── rpc │ │ │ │ └── status.proto │ │ ├── wallet_service.pb.go │ │ ├── wallet_service.proto │ │ └── wallet_service_grpc.pb.go │ ├── grpc_errors.go │ ├── interceptors.go │ ├── muun_key_verification_test.go │ ├── wallet_server.go │ └── wallet_server_test.go ├── publickey.go ├── recoverycode.go ├── recoverycode │ ├── recoverycode.go │ └── recoverycode_test.go ├── recoverycode_test.go ├── ripemd160.go ├── ripemd160_test.go ├── scanner │ ├── address_generator.go │ ├── scanner.go │ └── task.go ├── scrypt.go ├── segwit.go ├── service │ ├── client.go │ ├── houston.go │ ├── houston_test.go │ ├── mock_houston.go │ ├── model │ │ ├── challenge_security_card_pair_json.go │ │ ├── challenge_security_card_sign_json.go │ │ ├── challenge_setup_json.go │ │ ├── challenge_setup_verify_json.go │ │ ├── client_json.go │ │ ├── create_first_session_json.go │ │ ├── create_first_session_ok_json.go │ │ ├── diagnostic_scan_data_json.go │ │ ├── fee_window_json.go │ │ ├── public_key_json.go │ │ ├── register_security_card_json.go │ │ ├── register_security_card_ok_json.go │ │ ├── security_card_metadata.go │ │ ├── setup_challenge_response_json.go │ │ ├── solve_security_card_challenge_json.go │ │ └── verifiable_muun_key_json.go │ ├── model_objects_mapper.go │ └── test_provider.go ├── sphinx │ └── sphinx.go ├── storage │ ├── schema.go │ ├── storage.go │ └── storage_test.go ├── submarineSwap.go ├── submarineSwapV1.go ├── submarineSwapV2.go ├── swaps │ ├── swaps.go │ ├── v1.go │ ├── v1_test.go │ ├── v2.go │ └── v2_test.go ├── utils_test.go └── walletdb │ ├── fee_bump_repository.go │ ├── fee_bump_repository_test.go │ ├── key_value_repository.go │ ├── walletdb.go │ └── walletdb_test.go ├── prover └── libs │ ├── builder.Dockerfile │ ├── plonky2-bitcoin-hpke │ ├── Cargo.lock │ ├── Cargo.toml │ ├── README.md │ └── src │ │ ├── chacha20_poly1305_bytes.rs │ │ ├── constants.rs │ │ ├── encoding.rs │ │ ├── hpke.rs │ │ ├── kem.rs │ │ ├── labeled_hkdf.rs │ │ ├── lib.rs │ │ └── utils.rs │ ├── plonky2-bytes │ ├── Cargo.lock │ ├── Cargo.toml │ └── src │ │ └── lib.rs │ ├── plonky2-chacha20-poly1305 │ ├── Cargo.lock │ ├── Cargo.toml │ └── src │ │ ├── chacha20 │ │ ├── block.rs │ │ ├── encrypt.rs │ │ ├── keystream.rs │ │ └── mod.rs │ │ ├── chacha20_poly1305.rs │ │ ├── lib.rs │ │ ├── poly1305 │ │ ├── mac.rs │ │ └── mod.rs │ │ └── u32_bits.rs │ ├── plonky2-cosigning-key-validation │ ├── .cargo │ │ └── config.toml │ ├── Cargo.lock │ ├── Cargo.toml │ ├── Makefile │ ├── README.md │ └── src │ │ ├── circuit.rs │ │ ├── inputs.rs │ │ ├── interface.rs │ │ ├── lib.rs │ │ └── testing.rs │ ├── plonky2-ecdsa │ ├── .gitignore │ ├── Cargo.toml │ ├── LICENSE-APACHE │ ├── LICENSE-MIT │ ├── README.md │ └── src │ │ ├── curve │ │ ├── curve_adds.rs │ │ ├── curve_msm.rs │ │ ├── curve_multiplication.rs │ │ ├── curve_summation.rs │ │ ├── curve_types.rs │ │ ├── ecdsa.rs │ │ ├── glv.rs │ │ ├── mod.rs │ │ └── secp256k1.rs │ │ ├── gadgets │ │ ├── biguint.rs │ │ ├── curve.rs │ │ ├── curve_fixed_base.rs │ │ ├── curve_msm.rs │ │ ├── curve_windowed_mul.rs │ │ ├── ecdsa.rs │ │ ├── glv.rs │ │ ├── mod.rs │ │ ├── nonnative.rs │ │ └── split_nonnative.rs │ │ └── lib.rs │ ├── plonky2-hkdf-sha256 │ ├── Cargo.lock │ ├── Cargo.toml │ ├── README.md │ └── src │ │ ├── hkdf.rs │ │ ├── hmac.rs │ │ ├── lib.rs │ │ └── sha256_bytes.rs │ ├── plonky2-precomputed-windowed-mul │ ├── Cargo.lock │ ├── Cargo.toml │ └── src │ │ ├── lib.rs │ │ ├── mul.rs │ │ └── utils.rs │ ├── plonky2-sha256 │ ├── Cargo.lock │ ├── Cargo.toml │ ├── LICENSE │ ├── README.md │ └── src │ │ ├── circuit.rs │ │ └── lib.rs │ └── plonky2-u32 │ ├── Cargo.lock │ ├── Cargo.toml │ ├── LICENSE-APACHE │ ├── LICENSE-MIT │ ├── README.md │ └── src │ ├── gadgets │ ├── arithmetic_u32.rs │ ├── mod.rs │ ├── multiple_comparison.rs │ └── range_check.rs │ ├── gates │ ├── add_many_u32.rs │ ├── arithmetic_u32.rs │ ├── comparison.rs │ ├── mod.rs │ ├── range_check_u32.rs │ └── subtraction_u32.rs │ ├── lib.rs │ ├── serialization.rs │ └── witness.rs └── tools ├── bootstrap-gomobile.sh ├── ios-assign-localhost-ip-for-debug.sh ├── ios-update-pods-registry.sh ├── libwallet-ios.sh └── patch-go.sh /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/README.md -------------------------------------------------------------------------------- /falcon/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/falcon/.gitignore -------------------------------------------------------------------------------- /falcon/0001-align-to-ptrsize.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/falcon/0001-align-to-ptrsize.patch -------------------------------------------------------------------------------- /falcon/CHANGELOG.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /falcon/app/.swiftlint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/falcon/app/.swiftlint.yml -------------------------------------------------------------------------------- /falcon/app/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/falcon/app/Gemfile -------------------------------------------------------------------------------- /falcon/app/Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/falcon/app/Gemfile.lock -------------------------------------------------------------------------------- /falcon/app/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/falcon/app/Podfile -------------------------------------------------------------------------------- /falcon/app/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/falcon/app/Podfile.lock -------------------------------------------------------------------------------- /falcon/app/Pods/AppAuth.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/falcon/app/Pods/AppAuth.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /falcon/app/Pods/AppAuth/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/falcon/app/Pods/AppAuth/LICENSE -------------------------------------------------------------------------------- /falcon/app/Pods/AppAuth/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/falcon/app/Pods/AppAuth/README.md -------------------------------------------------------------------------------- /falcon/app/Pods/AppAuth/Sources/AppAuth.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/falcon/app/Pods/AppAuth/Sources/AppAuth.h -------------------------------------------------------------------------------- /falcon/app/Pods/AppAuth/Sources/AppAuthCore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/falcon/app/Pods/AppAuth/Sources/AppAuthCore.h -------------------------------------------------------------------------------- /falcon/app/Pods/AppAuth/Sources/AppAuthCore/OIDAuthState.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/falcon/app/Pods/AppAuth/Sources/AppAuthCore/OIDAuthState.h -------------------------------------------------------------------------------- /falcon/app/Pods/AppAuth/Sources/AppAuthCore/OIDAuthState.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/falcon/app/Pods/AppAuth/Sources/AppAuthCore/OIDAuthState.m -------------------------------------------------------------------------------- /falcon/app/Pods/AppAuth/Sources/AppAuthCore/OIDDefines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/falcon/app/Pods/AppAuth/Sources/AppAuthCore/OIDDefines.h -------------------------------------------------------------------------------- /falcon/app/Pods/AppAuth/Sources/AppAuthCore/OIDError.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/falcon/app/Pods/AppAuth/Sources/AppAuthCore/OIDError.h -------------------------------------------------------------------------------- /falcon/app/Pods/AppAuth/Sources/AppAuthCore/OIDError.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/falcon/app/Pods/AppAuth/Sources/AppAuthCore/OIDError.m -------------------------------------------------------------------------------- /falcon/app/Pods/AppAuth/Sources/AppAuthCore/OIDGrantTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/falcon/app/Pods/AppAuth/Sources/AppAuthCore/OIDGrantTypes.h -------------------------------------------------------------------------------- /falcon/app/Pods/AppAuth/Sources/AppAuthCore/OIDGrantTypes.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/falcon/app/Pods/AppAuth/Sources/AppAuthCore/OIDGrantTypes.m -------------------------------------------------------------------------------- /falcon/app/Pods/AppAuth/Sources/AppAuthCore/OIDIDToken.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/falcon/app/Pods/AppAuth/Sources/AppAuthCore/OIDIDToken.h -------------------------------------------------------------------------------- /falcon/app/Pods/AppAuth/Sources/AppAuthCore/OIDIDToken.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/falcon/app/Pods/AppAuth/Sources/AppAuthCore/OIDIDToken.m -------------------------------------------------------------------------------- /falcon/app/Pods/AppAuth/Sources/AppAuthCore/OIDScopes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/falcon/app/Pods/AppAuth/Sources/AppAuthCore/OIDScopes.h -------------------------------------------------------------------------------- /falcon/app/Pods/AppAuth/Sources/AppAuthCore/OIDScopes.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/falcon/app/Pods/AppAuth/Sources/AppAuthCore/OIDScopes.m -------------------------------------------------------------------------------- /falcon/app/Pods/Dip.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/falcon/app/Pods/Dip.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /falcon/app/Pods/Dip/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/falcon/app/Pods/Dip/LICENSE -------------------------------------------------------------------------------- /falcon/app/Pods/Dip/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/falcon/app/Pods/Dip/README.md -------------------------------------------------------------------------------- /falcon/app/Pods/Dip/Sources/AutoInjection.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/falcon/app/Pods/Dip/Sources/AutoInjection.swift -------------------------------------------------------------------------------- /falcon/app/Pods/Dip/Sources/AutoWiring.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/falcon/app/Pods/Dip/Sources/AutoWiring.swift -------------------------------------------------------------------------------- /falcon/app/Pods/Dip/Sources/Compatibility.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/falcon/app/Pods/Dip/Sources/Compatibility.swift -------------------------------------------------------------------------------- /falcon/app/Pods/Dip/Sources/ComponentScope.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/falcon/app/Pods/Dip/Sources/ComponentScope.swift -------------------------------------------------------------------------------- /falcon/app/Pods/Dip/Sources/Definition.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/falcon/app/Pods/Dip/Sources/Definition.swift -------------------------------------------------------------------------------- /falcon/app/Pods/Dip/Sources/Dip.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/falcon/app/Pods/Dip/Sources/Dip.swift -------------------------------------------------------------------------------- /falcon/app/Pods/Dip/Sources/DipError.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/falcon/app/Pods/Dip/Sources/DipError.swift -------------------------------------------------------------------------------- /falcon/app/Pods/Dip/Sources/Register.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/falcon/app/Pods/Dip/Sources/Register.swift -------------------------------------------------------------------------------- /falcon/app/Pods/Dip/Sources/Resolve.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/falcon/app/Pods/Dip/Sources/Resolve.swift -------------------------------------------------------------------------------- /falcon/app/Pods/Dip/Sources/RuntimeArguments.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/falcon/app/Pods/Dip/Sources/RuntimeArguments.swift -------------------------------------------------------------------------------- /falcon/app/Pods/Dip/Sources/StoryboardInstantiatable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/falcon/app/Pods/Dip/Sources/StoryboardInstantiatable.swift -------------------------------------------------------------------------------- /falcon/app/Pods/Dip/Sources/TypeForwarding.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/falcon/app/Pods/Dip/Sources/TypeForwarding.swift -------------------------------------------------------------------------------- /falcon/app/Pods/Dip/Sources/Utils.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/falcon/app/Pods/Dip/Sources/Utils.swift -------------------------------------------------------------------------------- /falcon/app/Pods/Firebase.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/falcon/app/Pods/Firebase.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /falcon/app/Pods/Firebase/CoreOnly/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/falcon/app/Pods/Firebase/CoreOnly/CHANGELOG.md -------------------------------------------------------------------------------- /falcon/app/Pods/Firebase/CoreOnly/NOTICES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/falcon/app/Pods/Firebase/CoreOnly/NOTICES -------------------------------------------------------------------------------- /falcon/app/Pods/Firebase/CoreOnly/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/falcon/app/Pods/Firebase/CoreOnly/README.md -------------------------------------------------------------------------------- /falcon/app/Pods/Firebase/CoreOnly/Sources/Firebase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/falcon/app/Pods/Firebase/CoreOnly/Sources/Firebase.h -------------------------------------------------------------------------------- /falcon/app/Pods/Firebase/CoreOnly/Sources/module.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/falcon/app/Pods/Firebase/CoreOnly/Sources/module.modulemap -------------------------------------------------------------------------------- /falcon/app/Pods/Firebase/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/falcon/app/Pods/Firebase/LICENSE -------------------------------------------------------------------------------- /falcon/app/Pods/Firebase/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/falcon/app/Pods/Firebase/README.md -------------------------------------------------------------------------------- /falcon/app/Pods/FirebaseAnalytics.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/falcon/app/Pods/FirebaseAnalytics.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /falcon/app/Pods/FirebaseAnalytics/Frameworks/FirebaseAnalytics.xcframework/ios-arm64_x86_64-maccatalyst/FirebaseAnalytics.framework/Headers: -------------------------------------------------------------------------------- 1 | Versions/Current/Headers -------------------------------------------------------------------------------- /falcon/app/Pods/FirebaseAnalytics/Frameworks/FirebaseAnalytics.xcframework/ios-arm64_x86_64-maccatalyst/FirebaseAnalytics.framework/Modules: -------------------------------------------------------------------------------- 1 | Versions/Current/Modules -------------------------------------------------------------------------------- /falcon/app/Pods/FirebaseAnalytics/Frameworks/FirebaseAnalytics.xcframework/ios-arm64_x86_64-maccatalyst/FirebaseAnalytics.framework/Resources: -------------------------------------------------------------------------------- 1 | Versions/Current/Resources -------------------------------------------------------------------------------- /falcon/app/Pods/FirebaseAnalytics/Frameworks/FirebaseAnalytics.xcframework/ios-arm64_x86_64-maccatalyst/FirebaseAnalytics.framework/Versions/Current: -------------------------------------------------------------------------------- 1 | A -------------------------------------------------------------------------------- /falcon/app/Pods/FirebaseAnalytics/Frameworks/FirebaseAnalytics.xcframework/macos-arm64_x86_64/FirebaseAnalytics.framework/Headers: -------------------------------------------------------------------------------- 1 | Versions/Current/Headers -------------------------------------------------------------------------------- /falcon/app/Pods/FirebaseAnalytics/Frameworks/FirebaseAnalytics.xcframework/macos-arm64_x86_64/FirebaseAnalytics.framework/Modules: -------------------------------------------------------------------------------- 1 | Versions/Current/Modules -------------------------------------------------------------------------------- /falcon/app/Pods/FirebaseAnalytics/Frameworks/FirebaseAnalytics.xcframework/macos-arm64_x86_64/FirebaseAnalytics.framework/Resources: -------------------------------------------------------------------------------- 1 | Versions/Current/Resources -------------------------------------------------------------------------------- /falcon/app/Pods/FirebaseAnalytics/Frameworks/FirebaseAnalytics.xcframework/macos-arm64_x86_64/FirebaseAnalytics.framework/Versions/Current: -------------------------------------------------------------------------------- 1 | A -------------------------------------------------------------------------------- /falcon/app/Pods/FirebaseCore.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/falcon/app/Pods/FirebaseCore.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /falcon/app/Pods/FirebaseCore/FirebaseCore/Sources/FIRApp.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/falcon/app/Pods/FirebaseCore/FirebaseCore/Sources/FIRApp.m -------------------------------------------------------------------------------- /falcon/app/Pods/FirebaseCore/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/falcon/app/Pods/FirebaseCore/LICENSE -------------------------------------------------------------------------------- /falcon/app/Pods/FirebaseCore/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/falcon/app/Pods/FirebaseCore/README.md -------------------------------------------------------------------------------- /falcon/app/Pods/FirebaseCoreExtension/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/falcon/app/Pods/FirebaseCoreExtension/LICENSE -------------------------------------------------------------------------------- /falcon/app/Pods/FirebaseCoreExtension/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/falcon/app/Pods/FirebaseCoreExtension/README.md -------------------------------------------------------------------------------- /falcon/app/Pods/FirebaseCoreInternal/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/falcon/app/Pods/FirebaseCoreInternal/LICENSE -------------------------------------------------------------------------------- /falcon/app/Pods/FirebaseCoreInternal/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/falcon/app/Pods/FirebaseCoreInternal/README.md -------------------------------------------------------------------------------- /falcon/app/Pods/FirebaseCrashlytics/Crashlytics/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/falcon/app/Pods/FirebaseCrashlytics/Crashlytics/LICENSE -------------------------------------------------------------------------------- /falcon/app/Pods/FirebaseCrashlytics/Crashlytics/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/falcon/app/Pods/FirebaseCrashlytics/Crashlytics/README.md -------------------------------------------------------------------------------- /falcon/app/Pods/FirebaseCrashlytics/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/falcon/app/Pods/FirebaseCrashlytics/README.md -------------------------------------------------------------------------------- /falcon/app/Pods/FirebaseCrashlytics/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/falcon/app/Pods/FirebaseCrashlytics/run -------------------------------------------------------------------------------- /falcon/app/Pods/FirebaseCrashlytics/upload-symbols: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/falcon/app/Pods/FirebaseCrashlytics/upload-symbols -------------------------------------------------------------------------------- /falcon/app/Pods/FirebaseInstallations/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/falcon/app/Pods/FirebaseInstallations/LICENSE -------------------------------------------------------------------------------- /falcon/app/Pods/FirebaseInstallations/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/falcon/app/Pods/FirebaseInstallations/README.md -------------------------------------------------------------------------------- /falcon/app/Pods/FirebaseMessaging.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/falcon/app/Pods/FirebaseMessaging.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /falcon/app/Pods/FirebaseMessaging/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/falcon/app/Pods/FirebaseMessaging/LICENSE -------------------------------------------------------------------------------- /falcon/app/Pods/FirebaseMessaging/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/falcon/app/Pods/FirebaseMessaging/README.md -------------------------------------------------------------------------------- /falcon/app/Pods/FirebaseRemoteConfigInterop/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/falcon/app/Pods/FirebaseRemoteConfigInterop/LICENSE -------------------------------------------------------------------------------- /falcon/app/Pods/FirebaseRemoteConfigInterop/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/falcon/app/Pods/FirebaseRemoteConfigInterop/README.md -------------------------------------------------------------------------------- /falcon/app/Pods/FirebaseSessions.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/falcon/app/Pods/FirebaseSessions.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /falcon/app/Pods/FirebaseSessions/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/falcon/app/Pods/FirebaseSessions/LICENSE -------------------------------------------------------------------------------- /falcon/app/Pods/FirebaseSessions/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/falcon/app/Pods/FirebaseSessions/README.md -------------------------------------------------------------------------------- /falcon/app/Pods/GRDB.swift.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/falcon/app/Pods/GRDB.swift.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /falcon/app/Pods/GRDB.swift/GRDB/Core/Configuration.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/falcon/app/Pods/GRDB.swift/GRDB/Core/Configuration.swift -------------------------------------------------------------------------------- /falcon/app/Pods/GRDB.swift/GRDB/Core/Cursor.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/falcon/app/Pods/GRDB.swift/GRDB/Core/Cursor.swift -------------------------------------------------------------------------------- /falcon/app/Pods/GRDB.swift/GRDB/Core/Database+Schema.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/falcon/app/Pods/GRDB.swift/GRDB/Core/Database+Schema.swift -------------------------------------------------------------------------------- /falcon/app/Pods/GRDB.swift/GRDB/Core/Database.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/falcon/app/Pods/GRDB.swift/GRDB/Core/Database.swift -------------------------------------------------------------------------------- /falcon/app/Pods/GRDB.swift/GRDB/Core/DatabaseCollation.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/falcon/app/Pods/GRDB.swift/GRDB/Core/DatabaseCollation.swift -------------------------------------------------------------------------------- /falcon/app/Pods/GRDB.swift/GRDB/Core/DatabaseError.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/falcon/app/Pods/GRDB.swift/GRDB/Core/DatabaseError.swift -------------------------------------------------------------------------------- /falcon/app/Pods/GRDB.swift/GRDB/Core/DatabaseFunction.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/falcon/app/Pods/GRDB.swift/GRDB/Core/DatabaseFunction.swift -------------------------------------------------------------------------------- /falcon/app/Pods/GRDB.swift/GRDB/Core/DatabasePool.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/falcon/app/Pods/GRDB.swift/GRDB/Core/DatabasePool.swift -------------------------------------------------------------------------------- /falcon/app/Pods/GRDB.swift/GRDB/Core/DatabaseQueue.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/falcon/app/Pods/GRDB.swift/GRDB/Core/DatabaseQueue.swift -------------------------------------------------------------------------------- /falcon/app/Pods/GRDB.swift/GRDB/Core/DatabaseReader.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/falcon/app/Pods/GRDB.swift/GRDB/Core/DatabaseReader.swift -------------------------------------------------------------------------------- /falcon/app/Pods/GRDB.swift/GRDB/Core/DatabaseRegion.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/falcon/app/Pods/GRDB.swift/GRDB/Core/DatabaseRegion.swift -------------------------------------------------------------------------------- /falcon/app/Pods/GRDB.swift/GRDB/Core/DatabaseSnapshot.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/falcon/app/Pods/GRDB.swift/GRDB/Core/DatabaseSnapshot.swift -------------------------------------------------------------------------------- /falcon/app/Pods/GRDB.swift/GRDB/Core/DatabaseValue.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/falcon/app/Pods/GRDB.swift/GRDB/Core/DatabaseValue.swift -------------------------------------------------------------------------------- /falcon/app/Pods/GRDB.swift/GRDB/Core/DatabaseWriter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/falcon/app/Pods/GRDB.swift/GRDB/Core/DatabaseWriter.swift -------------------------------------------------------------------------------- /falcon/app/Pods/GRDB.swift/GRDB/Core/FetchRequest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/falcon/app/Pods/GRDB.swift/GRDB/Core/FetchRequest.swift -------------------------------------------------------------------------------- /falcon/app/Pods/GRDB.swift/GRDB/Core/Row.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/falcon/app/Pods/GRDB.swift/GRDB/Core/Row.swift -------------------------------------------------------------------------------- /falcon/app/Pods/GRDB.swift/GRDB/Core/RowAdapter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/falcon/app/Pods/GRDB.swift/GRDB/Core/RowAdapter.swift -------------------------------------------------------------------------------- /falcon/app/Pods/GRDB.swift/GRDB/Core/SQLInterpolation.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/falcon/app/Pods/GRDB.swift/GRDB/Core/SQLInterpolation.swift -------------------------------------------------------------------------------- /falcon/app/Pods/GRDB.swift/GRDB/Core/SQLLiteral.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/falcon/app/Pods/GRDB.swift/GRDB/Core/SQLLiteral.swift -------------------------------------------------------------------------------- /falcon/app/Pods/GRDB.swift/GRDB/Core/SQLRequest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/falcon/app/Pods/GRDB.swift/GRDB/Core/SQLRequest.swift -------------------------------------------------------------------------------- /falcon/app/Pods/GRDB.swift/GRDB/Core/Statement.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/falcon/app/Pods/GRDB.swift/GRDB/Core/Statement.swift -------------------------------------------------------------------------------- /falcon/app/Pods/GRDB.swift/GRDB/FTS/FTS3.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/falcon/app/Pods/GRDB.swift/GRDB/FTS/FTS3.swift -------------------------------------------------------------------------------- /falcon/app/Pods/GRDB.swift/GRDB/FTS/FTS3Pattern.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/falcon/app/Pods/GRDB.swift/GRDB/FTS/FTS3Pattern.swift -------------------------------------------------------------------------------- /falcon/app/Pods/GRDB.swift/GRDB/FTS/FTS4.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/falcon/app/Pods/GRDB.swift/GRDB/FTS/FTS4.swift -------------------------------------------------------------------------------- /falcon/app/Pods/GRDB.swift/GRDB/FTS/FTS5.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/falcon/app/Pods/GRDB.swift/GRDB/FTS/FTS5.swift -------------------------------------------------------------------------------- /falcon/app/Pods/GRDB.swift/GRDB/FTS/FTS5Pattern.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/falcon/app/Pods/GRDB.swift/GRDB/FTS/FTS5Pattern.swift -------------------------------------------------------------------------------- /falcon/app/Pods/GRDB.swift/GRDB/FTS/FTS5Tokenizer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/falcon/app/Pods/GRDB.swift/GRDB/FTS/FTS5Tokenizer.swift -------------------------------------------------------------------------------- /falcon/app/Pods/GRDB.swift/GRDB/Fixit/GRDB-4.0.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/falcon/app/Pods/GRDB.swift/GRDB/Fixit/GRDB-4.0.swift -------------------------------------------------------------------------------- /falcon/app/Pods/GRDB.swift/GRDB/Migration/Migration.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/falcon/app/Pods/GRDB.swift/GRDB/Migration/Migration.swift -------------------------------------------------------------------------------- /falcon/app/Pods/GRDB.swift/GRDB/Record/EncodableRecord.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/falcon/app/Pods/GRDB.swift/GRDB/Record/EncodableRecord.swift -------------------------------------------------------------------------------- /falcon/app/Pods/GRDB.swift/GRDB/Record/FetchableRecord.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/falcon/app/Pods/GRDB.swift/GRDB/Record/FetchableRecord.swift -------------------------------------------------------------------------------- /falcon/app/Pods/GRDB.swift/GRDB/Record/Record.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/falcon/app/Pods/GRDB.swift/GRDB/Record/Record.swift -------------------------------------------------------------------------------- /falcon/app/Pods/GRDB.swift/GRDB/Record/TableRecord.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/falcon/app/Pods/GRDB.swift/GRDB/Record/TableRecord.swift -------------------------------------------------------------------------------- /falcon/app/Pods/GRDB.swift/GRDB/Utils/DatabaseResult.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/falcon/app/Pods/GRDB.swift/GRDB/Utils/DatabaseResult.swift -------------------------------------------------------------------------------- /falcon/app/Pods/GRDB.swift/GRDB/Utils/Inflections.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/falcon/app/Pods/GRDB.swift/GRDB/Utils/Inflections.swift -------------------------------------------------------------------------------- /falcon/app/Pods/GRDB.swift/GRDB/Utils/KeyPathRefining.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/falcon/app/Pods/GRDB.swift/GRDB/Utils/KeyPathRefining.swift -------------------------------------------------------------------------------- /falcon/app/Pods/GRDB.swift/GRDB/Utils/LockedBox.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/falcon/app/Pods/GRDB.swift/GRDB/Utils/LockedBox.swift -------------------------------------------------------------------------------- /falcon/app/Pods/GRDB.swift/GRDB/Utils/Pool.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/falcon/app/Pods/GRDB.swift/GRDB/Utils/Pool.swift -------------------------------------------------------------------------------- /falcon/app/Pods/GRDB.swift/GRDB/Utils/ReadWriteBox.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/falcon/app/Pods/GRDB.swift/GRDB/Utils/ReadWriteBox.swift -------------------------------------------------------------------------------- /falcon/app/Pods/GRDB.swift/GRDB/Utils/Utils.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/falcon/app/Pods/GRDB.swift/GRDB/Utils/Utils.swift -------------------------------------------------------------------------------- /falcon/app/Pods/GRDB.swift/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/falcon/app/Pods/GRDB.swift/LICENSE -------------------------------------------------------------------------------- /falcon/app/Pods/GRDB.swift/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/falcon/app/Pods/GRDB.swift/README.md -------------------------------------------------------------------------------- /falcon/app/Pods/GRDB.swift/Support/grdb_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/falcon/app/Pods/GRDB.swift/Support/grdb_config.h -------------------------------------------------------------------------------- /falcon/app/Pods/GTMAppAuth.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/falcon/app/Pods/GTMAppAuth.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /falcon/app/Pods/GTMAppAuth/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/falcon/app/Pods/GTMAppAuth/LICENSE -------------------------------------------------------------------------------- /falcon/app/Pods/GTMAppAuth/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/falcon/app/Pods/GTMAppAuth/README.md -------------------------------------------------------------------------------- /falcon/app/Pods/GTMSessionFetcher.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/falcon/app/Pods/GTMSessionFetcher.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /falcon/app/Pods/GTMSessionFetcher/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/falcon/app/Pods/GTMSessionFetcher/LICENSE -------------------------------------------------------------------------------- /falcon/app/Pods/GTMSessionFetcher/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/falcon/app/Pods/GTMSessionFetcher/README.md -------------------------------------------------------------------------------- /falcon/app/Pods/GoogleAPIClientForREST/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/falcon/app/Pods/GoogleAPIClientForREST/LICENSE -------------------------------------------------------------------------------- /falcon/app/Pods/GoogleAPIClientForREST/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/falcon/app/Pods/GoogleAPIClientForREST/README.md -------------------------------------------------------------------------------- /falcon/app/Pods/GoogleAppMeasurement/Frameworks/GoogleAppMeasurement.xcframework/ios-arm64_x86_64-maccatalyst/GoogleAppMeasurement.framework/Versions/Current: -------------------------------------------------------------------------------- 1 | A -------------------------------------------------------------------------------- /falcon/app/Pods/GoogleAppMeasurement/Frameworks/GoogleAppMeasurement.xcframework/macos-arm64_x86_64/GoogleAppMeasurement.framework/Modules: -------------------------------------------------------------------------------- 1 | Versions/Current/Modules -------------------------------------------------------------------------------- /falcon/app/Pods/GoogleAppMeasurement/Frameworks/GoogleAppMeasurement.xcframework/macos-arm64_x86_64/GoogleAppMeasurement.framework/Resources: -------------------------------------------------------------------------------- 1 | Versions/Current/Resources -------------------------------------------------------------------------------- /falcon/app/Pods/GoogleAppMeasurement/Frameworks/GoogleAppMeasurement.xcframework/macos-arm64_x86_64/GoogleAppMeasurement.framework/Versions/Current: -------------------------------------------------------------------------------- 1 | A -------------------------------------------------------------------------------- /falcon/app/Pods/GoogleDataTransport/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/falcon/app/Pods/GoogleDataTransport/LICENSE -------------------------------------------------------------------------------- /falcon/app/Pods/GoogleDataTransport/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/falcon/app/Pods/GoogleDataTransport/README.md -------------------------------------------------------------------------------- /falcon/app/Pods/GoogleSignIn.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/falcon/app/Pods/GoogleSignIn.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /falcon/app/Pods/GoogleSignIn/GoogleSignIn/Sources/GIDToken.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/falcon/app/Pods/GoogleSignIn/GoogleSignIn/Sources/GIDToken.m -------------------------------------------------------------------------------- /falcon/app/Pods/GoogleSignIn/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/falcon/app/Pods/GoogleSignIn/LICENSE -------------------------------------------------------------------------------- /falcon/app/Pods/GoogleSignIn/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/falcon/app/Pods/GoogleSignIn/README.md -------------------------------------------------------------------------------- /falcon/app/Pods/GoogleUtilities.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/falcon/app/Pods/GoogleUtilities.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /falcon/app/Pods/GoogleUtilities/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/falcon/app/Pods/GoogleUtilities/LICENSE -------------------------------------------------------------------------------- /falcon/app/Pods/GoogleUtilities/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/falcon/app/Pods/GoogleUtilities/README.md -------------------------------------------------------------------------------- /falcon/app/Pods/Headers/Private/Firebase/Firebase.h: -------------------------------------------------------------------------------- 1 | ../../../Firebase/CoreOnly/Sources/Firebase.h -------------------------------------------------------------------------------- /falcon/app/Pods/Headers/Public/Firebase/Firebase.h: -------------------------------------------------------------------------------- 1 | ../../../Firebase/CoreOnly/Sources/Firebase.h -------------------------------------------------------------------------------- /falcon/app/Pods/Manifest.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/falcon/app/Pods/Manifest.lock -------------------------------------------------------------------------------- /falcon/app/Pods/Pods.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/falcon/app/Pods/Pods.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /falcon/app/Pods/PromisesObjC.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/falcon/app/Pods/PromisesObjC.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /falcon/app/Pods/PromisesObjC/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/falcon/app/Pods/PromisesObjC/LICENSE -------------------------------------------------------------------------------- /falcon/app/Pods/PromisesObjC/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/falcon/app/Pods/PromisesObjC/README.md -------------------------------------------------------------------------------- /falcon/app/Pods/PromisesSwift.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/falcon/app/Pods/PromisesSwift.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /falcon/app/Pods/PromisesSwift/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/falcon/app/Pods/PromisesSwift/LICENSE -------------------------------------------------------------------------------- /falcon/app/Pods/PromisesSwift/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/falcon/app/Pods/PromisesSwift/README.md -------------------------------------------------------------------------------- /falcon/app/Pods/PromisesSwift/Sources/Promises/Promise.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/falcon/app/Pods/PromisesSwift/Sources/Promises/Promise.swift -------------------------------------------------------------------------------- /falcon/app/Pods/RxBlocking.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/falcon/app/Pods/RxBlocking.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /falcon/app/Pods/RxBlocking/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/falcon/app/Pods/RxBlocking/LICENSE.md -------------------------------------------------------------------------------- /falcon/app/Pods/RxBlocking/Platform/AtomicInt.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/falcon/app/Pods/RxBlocking/Platform/AtomicInt.swift -------------------------------------------------------------------------------- /falcon/app/Pods/RxBlocking/Platform/DataStructures/Bag.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/falcon/app/Pods/RxBlocking/Platform/DataStructures/Bag.swift -------------------------------------------------------------------------------- /falcon/app/Pods/RxBlocking/Platform/Platform.Darwin.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/falcon/app/Pods/RxBlocking/Platform/Platform.Darwin.swift -------------------------------------------------------------------------------- /falcon/app/Pods/RxBlocking/Platform/Platform.Linux.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/falcon/app/Pods/RxBlocking/Platform/Platform.Linux.swift -------------------------------------------------------------------------------- /falcon/app/Pods/RxBlocking/Platform/RecursiveLock.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/falcon/app/Pods/RxBlocking/Platform/RecursiveLock.swift -------------------------------------------------------------------------------- /falcon/app/Pods/RxBlocking/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/falcon/app/Pods/RxBlocking/README.md -------------------------------------------------------------------------------- /falcon/app/Pods/RxBlocking/RxBlocking/Resources.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/falcon/app/Pods/RxBlocking/RxBlocking/Resources.swift -------------------------------------------------------------------------------- /falcon/app/Pods/RxBlocking/RxBlocking/RunLoopLock.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/falcon/app/Pods/RxBlocking/RxBlocking/RunLoopLock.swift -------------------------------------------------------------------------------- /falcon/app/Pods/RxGRDB.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/falcon/app/Pods/RxGRDB.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /falcon/app/Pods/RxGRDB/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/falcon/app/Pods/RxGRDB/LICENSE -------------------------------------------------------------------------------- /falcon/app/Pods/RxGRDB/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/falcon/app/Pods/RxGRDB/README.md -------------------------------------------------------------------------------- /falcon/app/Pods/RxGRDB/RxGRDB/DatabaseReader+Rx.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/falcon/app/Pods/RxGRDB/RxGRDB/DatabaseReader+Rx.swift -------------------------------------------------------------------------------- /falcon/app/Pods/RxGRDB/RxGRDB/DatabaseWriter+Rx.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/falcon/app/Pods/RxGRDB/RxGRDB/DatabaseWriter+Rx.swift -------------------------------------------------------------------------------- /falcon/app/Pods/RxGRDB/RxGRDB/DiffSupport.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/falcon/app/Pods/RxGRDB/RxGRDB/DiffSupport.swift -------------------------------------------------------------------------------- /falcon/app/Pods/RxGRDB/RxGRDB/FetchRequest+Rx.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/falcon/app/Pods/RxGRDB/RxGRDB/FetchRequest+Rx.swift -------------------------------------------------------------------------------- /falcon/app/Pods/RxGRDB/RxGRDB/PrimaryKeyDiffScanner.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/falcon/app/Pods/RxGRDB/RxGRDB/PrimaryKeyDiffScanner.swift -------------------------------------------------------------------------------- /falcon/app/Pods/RxGRDB/RxGRDB/RxGRDB.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/falcon/app/Pods/RxGRDB/RxGRDB/RxGRDB.h -------------------------------------------------------------------------------- /falcon/app/Pods/RxGRDB/RxGRDB/ValueObservation+Rx.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/falcon/app/Pods/RxGRDB/RxGRDB/ValueObservation+Rx.swift -------------------------------------------------------------------------------- /falcon/app/Pods/RxSwift.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/falcon/app/Pods/RxSwift.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /falcon/app/Pods/RxSwift/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/falcon/app/Pods/RxSwift/LICENSE.md -------------------------------------------------------------------------------- /falcon/app/Pods/RxSwift/Platform/AtomicInt.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/falcon/app/Pods/RxSwift/Platform/AtomicInt.swift -------------------------------------------------------------------------------- /falcon/app/Pods/RxSwift/Platform/DataStructures/Bag.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/falcon/app/Pods/RxSwift/Platform/DataStructures/Bag.swift -------------------------------------------------------------------------------- /falcon/app/Pods/RxSwift/Platform/DataStructures/Queue.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/falcon/app/Pods/RxSwift/Platform/DataStructures/Queue.swift -------------------------------------------------------------------------------- /falcon/app/Pods/RxSwift/Platform/Platform.Darwin.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/falcon/app/Pods/RxSwift/Platform/Platform.Darwin.swift -------------------------------------------------------------------------------- /falcon/app/Pods/RxSwift/Platform/Platform.Linux.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/falcon/app/Pods/RxSwift/Platform/Platform.Linux.swift -------------------------------------------------------------------------------- /falcon/app/Pods/RxSwift/Platform/RecursiveLock.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/falcon/app/Pods/RxSwift/Platform/RecursiveLock.swift -------------------------------------------------------------------------------- /falcon/app/Pods/RxSwift/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/falcon/app/Pods/RxSwift/README.md -------------------------------------------------------------------------------- /falcon/app/Pods/RxSwift/RxSwift/AnyObserver.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/falcon/app/Pods/RxSwift/RxSwift/AnyObserver.swift -------------------------------------------------------------------------------- /falcon/app/Pods/RxSwift/RxSwift/Cancelable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/falcon/app/Pods/RxSwift/RxSwift/Cancelable.swift -------------------------------------------------------------------------------- /falcon/app/Pods/RxSwift/RxSwift/Concurrency/AsyncLock.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/falcon/app/Pods/RxSwift/RxSwift/Concurrency/AsyncLock.swift -------------------------------------------------------------------------------- /falcon/app/Pods/RxSwift/RxSwift/Concurrency/Lock.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/falcon/app/Pods/RxSwift/RxSwift/Concurrency/Lock.swift -------------------------------------------------------------------------------- /falcon/app/Pods/RxSwift/RxSwift/Date+Dispatch.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/falcon/app/Pods/RxSwift/RxSwift/Date+Dispatch.swift -------------------------------------------------------------------------------- /falcon/app/Pods/RxSwift/RxSwift/Deprecated.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/falcon/app/Pods/RxSwift/RxSwift/Deprecated.swift -------------------------------------------------------------------------------- /falcon/app/Pods/RxSwift/RxSwift/Disposable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/falcon/app/Pods/RxSwift/RxSwift/Disposable.swift -------------------------------------------------------------------------------- /falcon/app/Pods/RxSwift/RxSwift/Disposables/DisposeBag.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/falcon/app/Pods/RxSwift/RxSwift/Disposables/DisposeBag.swift -------------------------------------------------------------------------------- /falcon/app/Pods/RxSwift/RxSwift/Errors.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/falcon/app/Pods/RxSwift/RxSwift/Errors.swift -------------------------------------------------------------------------------- /falcon/app/Pods/RxSwift/RxSwift/Event.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/falcon/app/Pods/RxSwift/RxSwift/Event.swift -------------------------------------------------------------------------------- /falcon/app/Pods/RxSwift/RxSwift/Extensions/Bag+Rx.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/falcon/app/Pods/RxSwift/RxSwift/Extensions/Bag+Rx.swift -------------------------------------------------------------------------------- /falcon/app/Pods/RxSwift/RxSwift/Extensions/String+Rx.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/falcon/app/Pods/RxSwift/RxSwift/Extensions/String+Rx.swift -------------------------------------------------------------------------------- /falcon/app/Pods/RxSwift/RxSwift/GroupedObservable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/falcon/app/Pods/RxSwift/RxSwift/GroupedObservable.swift -------------------------------------------------------------------------------- /falcon/app/Pods/RxSwift/RxSwift/ImmediateSchedulerType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/falcon/app/Pods/RxSwift/RxSwift/ImmediateSchedulerType.swift -------------------------------------------------------------------------------- /falcon/app/Pods/RxSwift/RxSwift/Observable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/falcon/app/Pods/RxSwift/RxSwift/Observable.swift -------------------------------------------------------------------------------- /falcon/app/Pods/RxSwift/RxSwift/ObservableType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/falcon/app/Pods/RxSwift/RxSwift/ObservableType.swift -------------------------------------------------------------------------------- /falcon/app/Pods/RxSwift/RxSwift/Observables/AddRef.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/falcon/app/Pods/RxSwift/RxSwift/Observables/AddRef.swift -------------------------------------------------------------------------------- /falcon/app/Pods/RxSwift/RxSwift/Observables/Amb.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/falcon/app/Pods/RxSwift/RxSwift/Observables/Amb.swift -------------------------------------------------------------------------------- /falcon/app/Pods/RxSwift/RxSwift/Observables/AsMaybe.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/falcon/app/Pods/RxSwift/RxSwift/Observables/AsMaybe.swift -------------------------------------------------------------------------------- /falcon/app/Pods/RxSwift/RxSwift/Observables/AsSingle.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/falcon/app/Pods/RxSwift/RxSwift/Observables/AsSingle.swift -------------------------------------------------------------------------------- /falcon/app/Pods/RxSwift/RxSwift/Observables/Buffer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/falcon/app/Pods/RxSwift/RxSwift/Observables/Buffer.swift -------------------------------------------------------------------------------- /falcon/app/Pods/RxSwift/RxSwift/Observables/Catch.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/falcon/app/Pods/RxSwift/RxSwift/Observables/Catch.swift -------------------------------------------------------------------------------- /falcon/app/Pods/RxSwift/RxSwift/Observables/CompactMap.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/falcon/app/Pods/RxSwift/RxSwift/Observables/CompactMap.swift -------------------------------------------------------------------------------- /falcon/app/Pods/RxSwift/RxSwift/Observables/Concat.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/falcon/app/Pods/RxSwift/RxSwift/Observables/Concat.swift -------------------------------------------------------------------------------- /falcon/app/Pods/RxSwift/RxSwift/Observables/Create.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/falcon/app/Pods/RxSwift/RxSwift/Observables/Create.swift -------------------------------------------------------------------------------- /falcon/app/Pods/RxSwift/RxSwift/Observables/Debounce.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/falcon/app/Pods/RxSwift/RxSwift/Observables/Debounce.swift -------------------------------------------------------------------------------- /falcon/app/Pods/RxSwift/RxSwift/Observables/Debug.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/falcon/app/Pods/RxSwift/RxSwift/Observables/Debug.swift -------------------------------------------------------------------------------- /falcon/app/Pods/RxSwift/RxSwift/Observables/Deferred.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/falcon/app/Pods/RxSwift/RxSwift/Observables/Deferred.swift -------------------------------------------------------------------------------- /falcon/app/Pods/RxSwift/RxSwift/Observables/Delay.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/falcon/app/Pods/RxSwift/RxSwift/Observables/Delay.swift -------------------------------------------------------------------------------- /falcon/app/Pods/RxSwift/RxSwift/Observables/Do.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/falcon/app/Pods/RxSwift/RxSwift/Observables/Do.swift -------------------------------------------------------------------------------- /falcon/app/Pods/RxSwift/RxSwift/Observables/ElementAt.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/falcon/app/Pods/RxSwift/RxSwift/Observables/ElementAt.swift -------------------------------------------------------------------------------- /falcon/app/Pods/RxSwift/RxSwift/Observables/Empty.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/falcon/app/Pods/RxSwift/RxSwift/Observables/Empty.swift -------------------------------------------------------------------------------- /falcon/app/Pods/RxSwift/RxSwift/Observables/Enumerated.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/falcon/app/Pods/RxSwift/RxSwift/Observables/Enumerated.swift -------------------------------------------------------------------------------- /falcon/app/Pods/RxSwift/RxSwift/Observables/Error.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/falcon/app/Pods/RxSwift/RxSwift/Observables/Error.swift -------------------------------------------------------------------------------- /falcon/app/Pods/RxSwift/RxSwift/Observables/Filter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/falcon/app/Pods/RxSwift/RxSwift/Observables/Filter.swift -------------------------------------------------------------------------------- /falcon/app/Pods/RxSwift/RxSwift/Observables/First.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/falcon/app/Pods/RxSwift/RxSwift/Observables/First.swift -------------------------------------------------------------------------------- /falcon/app/Pods/RxSwift/RxSwift/Observables/Generate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/falcon/app/Pods/RxSwift/RxSwift/Observables/Generate.swift -------------------------------------------------------------------------------- /falcon/app/Pods/RxSwift/RxSwift/Observables/GroupBy.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/falcon/app/Pods/RxSwift/RxSwift/Observables/GroupBy.swift -------------------------------------------------------------------------------- /falcon/app/Pods/RxSwift/RxSwift/Observables/Just.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/falcon/app/Pods/RxSwift/RxSwift/Observables/Just.swift -------------------------------------------------------------------------------- /falcon/app/Pods/RxSwift/RxSwift/Observables/Map.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/falcon/app/Pods/RxSwift/RxSwift/Observables/Map.swift -------------------------------------------------------------------------------- /falcon/app/Pods/RxSwift/RxSwift/Observables/Merge.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/falcon/app/Pods/RxSwift/RxSwift/Observables/Merge.swift -------------------------------------------------------------------------------- /falcon/app/Pods/RxSwift/RxSwift/Observables/Multicast.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/falcon/app/Pods/RxSwift/RxSwift/Observables/Multicast.swift -------------------------------------------------------------------------------- /falcon/app/Pods/RxSwift/RxSwift/Observables/Never.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/falcon/app/Pods/RxSwift/RxSwift/Observables/Never.swift -------------------------------------------------------------------------------- /falcon/app/Pods/RxSwift/RxSwift/Observables/ObserveOn.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/falcon/app/Pods/RxSwift/RxSwift/Observables/ObserveOn.swift -------------------------------------------------------------------------------- /falcon/app/Pods/RxSwift/RxSwift/Observables/Optional.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/falcon/app/Pods/RxSwift/RxSwift/Observables/Optional.swift -------------------------------------------------------------------------------- /falcon/app/Pods/RxSwift/RxSwift/Observables/Producer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/falcon/app/Pods/RxSwift/RxSwift/Observables/Producer.swift -------------------------------------------------------------------------------- /falcon/app/Pods/RxSwift/RxSwift/Observables/Range.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/falcon/app/Pods/RxSwift/RxSwift/Observables/Range.swift -------------------------------------------------------------------------------- /falcon/app/Pods/RxSwift/RxSwift/Observables/Reduce.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/falcon/app/Pods/RxSwift/RxSwift/Observables/Reduce.swift -------------------------------------------------------------------------------- /falcon/app/Pods/RxSwift/RxSwift/Observables/Repeat.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/falcon/app/Pods/RxSwift/RxSwift/Observables/Repeat.swift -------------------------------------------------------------------------------- /falcon/app/Pods/RxSwift/RxSwift/Observables/RetryWhen.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/falcon/app/Pods/RxSwift/RxSwift/Observables/RetryWhen.swift -------------------------------------------------------------------------------- /falcon/app/Pods/RxSwift/RxSwift/Observables/Sample.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/falcon/app/Pods/RxSwift/RxSwift/Observables/Sample.swift -------------------------------------------------------------------------------- /falcon/app/Pods/RxSwift/RxSwift/Observables/Scan.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/falcon/app/Pods/RxSwift/RxSwift/Observables/Scan.swift -------------------------------------------------------------------------------- /falcon/app/Pods/RxSwift/RxSwift/Observables/Sequence.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/falcon/app/Pods/RxSwift/RxSwift/Observables/Sequence.swift -------------------------------------------------------------------------------- /falcon/app/Pods/RxSwift/RxSwift/Observables/Sink.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/falcon/app/Pods/RxSwift/RxSwift/Observables/Sink.swift -------------------------------------------------------------------------------- /falcon/app/Pods/RxSwift/RxSwift/Observables/Skip.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/falcon/app/Pods/RxSwift/RxSwift/Observables/Skip.swift -------------------------------------------------------------------------------- /falcon/app/Pods/RxSwift/RxSwift/Observables/SkipUntil.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/falcon/app/Pods/RxSwift/RxSwift/Observables/SkipUntil.swift -------------------------------------------------------------------------------- /falcon/app/Pods/RxSwift/RxSwift/Observables/SkipWhile.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/falcon/app/Pods/RxSwift/RxSwift/Observables/SkipWhile.swift -------------------------------------------------------------------------------- /falcon/app/Pods/RxSwift/RxSwift/Observables/StartWith.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/falcon/app/Pods/RxSwift/RxSwift/Observables/StartWith.swift -------------------------------------------------------------------------------- /falcon/app/Pods/RxSwift/RxSwift/Observables/Switch.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/falcon/app/Pods/RxSwift/RxSwift/Observables/Switch.swift -------------------------------------------------------------------------------- /falcon/app/Pods/RxSwift/RxSwift/Observables/Take.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/falcon/app/Pods/RxSwift/RxSwift/Observables/Take.swift -------------------------------------------------------------------------------- /falcon/app/Pods/RxSwift/RxSwift/Observables/TakeLast.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/falcon/app/Pods/RxSwift/RxSwift/Observables/TakeLast.swift -------------------------------------------------------------------------------- /falcon/app/Pods/RxSwift/RxSwift/Observables/TakeUntil.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/falcon/app/Pods/RxSwift/RxSwift/Observables/TakeUntil.swift -------------------------------------------------------------------------------- /falcon/app/Pods/RxSwift/RxSwift/Observables/TakeWhile.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/falcon/app/Pods/RxSwift/RxSwift/Observables/TakeWhile.swift -------------------------------------------------------------------------------- /falcon/app/Pods/RxSwift/RxSwift/Observables/Throttle.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/falcon/app/Pods/RxSwift/RxSwift/Observables/Throttle.swift -------------------------------------------------------------------------------- /falcon/app/Pods/RxSwift/RxSwift/Observables/Timeout.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/falcon/app/Pods/RxSwift/RxSwift/Observables/Timeout.swift -------------------------------------------------------------------------------- /falcon/app/Pods/RxSwift/RxSwift/Observables/Timer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/falcon/app/Pods/RxSwift/RxSwift/Observables/Timer.swift -------------------------------------------------------------------------------- /falcon/app/Pods/RxSwift/RxSwift/Observables/ToArray.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/falcon/app/Pods/RxSwift/RxSwift/Observables/ToArray.swift -------------------------------------------------------------------------------- /falcon/app/Pods/RxSwift/RxSwift/Observables/Using.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/falcon/app/Pods/RxSwift/RxSwift/Observables/Using.swift -------------------------------------------------------------------------------- /falcon/app/Pods/RxSwift/RxSwift/Observables/Window.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/falcon/app/Pods/RxSwift/RxSwift/Observables/Window.swift -------------------------------------------------------------------------------- /falcon/app/Pods/RxSwift/RxSwift/Observables/Zip+arity.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/falcon/app/Pods/RxSwift/RxSwift/Observables/Zip+arity.swift -------------------------------------------------------------------------------- /falcon/app/Pods/RxSwift/RxSwift/Observables/Zip.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/falcon/app/Pods/RxSwift/RxSwift/Observables/Zip.swift -------------------------------------------------------------------------------- /falcon/app/Pods/RxSwift/RxSwift/ObserverType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/falcon/app/Pods/RxSwift/RxSwift/ObserverType.swift -------------------------------------------------------------------------------- /falcon/app/Pods/RxSwift/RxSwift/Observers/ObserverBase.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/falcon/app/Pods/RxSwift/RxSwift/Observers/ObserverBase.swift -------------------------------------------------------------------------------- /falcon/app/Pods/RxSwift/RxSwift/Reactive.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/falcon/app/Pods/RxSwift/RxSwift/Reactive.swift -------------------------------------------------------------------------------- /falcon/app/Pods/RxSwift/RxSwift/Rx.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/falcon/app/Pods/RxSwift/RxSwift/Rx.swift -------------------------------------------------------------------------------- /falcon/app/Pods/RxSwift/RxSwift/RxMutableBox.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/falcon/app/Pods/RxSwift/RxSwift/RxMutableBox.swift -------------------------------------------------------------------------------- /falcon/app/Pods/RxSwift/RxSwift/SchedulerType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/falcon/app/Pods/RxSwift/RxSwift/SchedulerType.swift -------------------------------------------------------------------------------- /falcon/app/Pods/RxSwift/RxSwift/Subjects/AsyncSubject.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/falcon/app/Pods/RxSwift/RxSwift/Subjects/AsyncSubject.swift -------------------------------------------------------------------------------- /falcon/app/Pods/RxSwift/RxSwift/Subjects/ReplaySubject.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/falcon/app/Pods/RxSwift/RxSwift/Subjects/ReplaySubject.swift -------------------------------------------------------------------------------- /falcon/app/Pods/RxSwift/RxSwift/Subjects/SubjectType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/falcon/app/Pods/RxSwift/RxSwift/Subjects/SubjectType.swift -------------------------------------------------------------------------------- /falcon/app/Pods/RxSwift/RxSwift/Traits/Completable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/falcon/app/Pods/RxSwift/RxSwift/Traits/Completable.swift -------------------------------------------------------------------------------- /falcon/app/Pods/RxSwift/RxSwift/Traits/Maybe.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/falcon/app/Pods/RxSwift/RxSwift/Traits/Maybe.swift -------------------------------------------------------------------------------- /falcon/app/Pods/RxSwift/RxSwift/Traits/Single.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/falcon/app/Pods/RxSwift/RxSwift/Traits/Single.swift -------------------------------------------------------------------------------- /falcon/app/Pods/SwiftGen.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/falcon/app/Pods/SwiftGen.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /falcon/app/Pods/SwiftGen/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/falcon/app/Pods/SwiftGen/CHANGELOG.md -------------------------------------------------------------------------------- /falcon/app/Pods/SwiftGen/LICENCE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/falcon/app/Pods/SwiftGen/LICENCE -------------------------------------------------------------------------------- /falcon/app/Pods/SwiftGen/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/falcon/app/Pods/SwiftGen/README.md -------------------------------------------------------------------------------- /falcon/app/Pods/SwiftGen/bin/swiftgen: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/falcon/app/Pods/SwiftGen/bin/swiftgen -------------------------------------------------------------------------------- /falcon/app/Pods/SwiftGen/lib/Commander.framework/Commander: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/falcon/app/Pods/SwiftGen/lib/Commander.framework/Commander -------------------------------------------------------------------------------- /falcon/app/Pods/SwiftGen/lib/Kanna.framework/Kanna: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/falcon/app/Pods/SwiftGen/lib/Kanna.framework/Kanna -------------------------------------------------------------------------------- /falcon/app/Pods/SwiftGen/lib/PathKit.framework/PathKit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/falcon/app/Pods/SwiftGen/lib/PathKit.framework/PathKit -------------------------------------------------------------------------------- /falcon/app/Pods/SwiftGen/lib/Stencil.framework/Stencil: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/falcon/app/Pods/SwiftGen/lib/Stencil.framework/Stencil -------------------------------------------------------------------------------- /falcon/app/Pods/SwiftGen/lib/Yams.framework/Versions/A/Yams: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/falcon/app/Pods/SwiftGen/lib/Yams.framework/Versions/A/Yams -------------------------------------------------------------------------------- /falcon/app/Pods/SwiftGen/lib/Yams.framework/Yams: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/falcon/app/Pods/SwiftGen/lib/Yams.framework/Yams -------------------------------------------------------------------------------- /falcon/app/Pods/SwiftGen/templates/colors/swift4.stencil: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/falcon/app/Pods/SwiftGen/templates/colors/swift4.stencil -------------------------------------------------------------------------------- /falcon/app/Pods/SwiftGen/templates/colors/swift5.stencil: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/falcon/app/Pods/SwiftGen/templates/colors/swift5.stencil -------------------------------------------------------------------------------- /falcon/app/Pods/SwiftGen/templates/coredata/swift4.stencil: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/falcon/app/Pods/SwiftGen/templates/coredata/swift4.stencil -------------------------------------------------------------------------------- /falcon/app/Pods/SwiftGen/templates/coredata/swift5.stencil: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/falcon/app/Pods/SwiftGen/templates/coredata/swift5.stencil -------------------------------------------------------------------------------- /falcon/app/Pods/SwiftGen/templates/fonts/swift4.stencil: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/falcon/app/Pods/SwiftGen/templates/fonts/swift4.stencil -------------------------------------------------------------------------------- /falcon/app/Pods/SwiftGen/templates/fonts/swift5.stencil: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/falcon/app/Pods/SwiftGen/templates/fonts/swift5.stencil -------------------------------------------------------------------------------- /falcon/app/Pods/SwiftGen/templates/ib/scenes-swift4.stencil: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/falcon/app/Pods/SwiftGen/templates/ib/scenes-swift4.stencil -------------------------------------------------------------------------------- /falcon/app/Pods/SwiftGen/templates/ib/scenes-swift5.stencil: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/falcon/app/Pods/SwiftGen/templates/ib/scenes-swift5.stencil -------------------------------------------------------------------------------- /falcon/app/Pods/SwiftGen/templates/ib/segues-swift4.stencil: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/falcon/app/Pods/SwiftGen/templates/ib/segues-swift4.stencil -------------------------------------------------------------------------------- /falcon/app/Pods/SwiftGen/templates/ib/segues-swift5.stencil: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/falcon/app/Pods/SwiftGen/templates/ib/segues-swift5.stencil -------------------------------------------------------------------------------- /falcon/app/Pods/SwiftGen/templates/strings/objc-h.stencil: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/falcon/app/Pods/SwiftGen/templates/strings/objc-h.stencil -------------------------------------------------------------------------------- /falcon/app/Pods/SwiftGen/templates/strings/objc-m.stencil: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/falcon/app/Pods/SwiftGen/templates/strings/objc-m.stencil -------------------------------------------------------------------------------- /falcon/app/Pods/SwiftGen/templates/xcassets/swift4.stencil: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/falcon/app/Pods/SwiftGen/templates/xcassets/swift4.stencil -------------------------------------------------------------------------------- /falcon/app/Pods/SwiftGen/templates/xcassets/swift5.stencil: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/falcon/app/Pods/SwiftGen/templates/xcassets/swift5.stencil -------------------------------------------------------------------------------- /falcon/app/Pods/SwiftLint.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/falcon/app/Pods/SwiftLint.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /falcon/app/Pods/SwiftLint/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/falcon/app/Pods/SwiftLint/LICENSE -------------------------------------------------------------------------------- /falcon/app/Pods/SwiftLint/swiftlint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/falcon/app/Pods/SwiftLint/swiftlint -------------------------------------------------------------------------------- /falcon/app/Pods/Target Support Files/AppAuth/AppAuth-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/falcon/app/Pods/Target Support Files/AppAuth/AppAuth-dummy.m -------------------------------------------------------------------------------- /falcon/app/Pods/Target Support Files/Dip/Dip-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/falcon/app/Pods/Target Support Files/Dip/Dip-Info.plist -------------------------------------------------------------------------------- /falcon/app/Pods/Target Support Files/Dip/Dip-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/falcon/app/Pods/Target Support Files/Dip/Dip-dummy.m -------------------------------------------------------------------------------- /falcon/app/Pods/Target Support Files/Dip/Dip-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/falcon/app/Pods/Target Support Files/Dip/Dip-prefix.pch -------------------------------------------------------------------------------- /falcon/app/Pods/Target Support Files/Dip/Dip-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/falcon/app/Pods/Target Support Files/Dip/Dip-umbrella.h -------------------------------------------------------------------------------- /falcon/app/Pods/Target Support Files/Dip/Dip.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/falcon/app/Pods/Target Support Files/Dip/Dip.debug.xcconfig -------------------------------------------------------------------------------- /falcon/app/Pods/Target Support Files/Dip/Dip.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/falcon/app/Pods/Target Support Files/Dip/Dip.modulemap -------------------------------------------------------------------------------- /falcon/app/Pods/Target Support Files/RxGRDB/RxGRDB-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/falcon/app/Pods/Target Support Files/RxGRDB/RxGRDB-dummy.m -------------------------------------------------------------------------------- /falcon/app/Pods/Target Support Files/RxGRDB/RxGRDB.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/falcon/app/Pods/Target Support Files/RxGRDB/RxGRDB.modulemap -------------------------------------------------------------------------------- /falcon/app/Pods/Target Support Files/RxSwift/RxSwift-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/falcon/app/Pods/Target Support Files/RxSwift/RxSwift-dummy.m -------------------------------------------------------------------------------- /falcon/app/Pods/Target Support Files/nanopb/nanopb-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/falcon/app/Pods/Target Support Files/nanopb/nanopb-dummy.m -------------------------------------------------------------------------------- /falcon/app/Pods/Target Support Files/nanopb/nanopb.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/falcon/app/Pods/Target Support Files/nanopb/nanopb.modulemap -------------------------------------------------------------------------------- /falcon/app/Pods/nanopb.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/falcon/app/Pods/nanopb.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /falcon/app/Pods/nanopb/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/falcon/app/Pods/nanopb/LICENSE.txt -------------------------------------------------------------------------------- /falcon/app/Pods/nanopb/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/falcon/app/Pods/nanopb/README.md -------------------------------------------------------------------------------- /falcon/app/Pods/nanopb/pb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/falcon/app/Pods/nanopb/pb.h -------------------------------------------------------------------------------- /falcon/app/Pods/nanopb/pb_common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/falcon/app/Pods/nanopb/pb_common.c -------------------------------------------------------------------------------- /falcon/app/Pods/nanopb/pb_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/falcon/app/Pods/nanopb/pb_common.h -------------------------------------------------------------------------------- /falcon/app/Pods/nanopb/pb_decode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/falcon/app/Pods/nanopb/pb_decode.c -------------------------------------------------------------------------------- /falcon/app/Pods/nanopb/pb_decode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/falcon/app/Pods/nanopb/pb_decode.h -------------------------------------------------------------------------------- /falcon/app/Pods/nanopb/pb_encode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/falcon/app/Pods/nanopb/pb_encode.c -------------------------------------------------------------------------------- /falcon/app/Pods/nanopb/pb_encode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/falcon/app/Pods/nanopb/pb_encode.h -------------------------------------------------------------------------------- /falcon/app/Pods/nanopb/spm_resources/PrivacyInfo.xcprivacy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/falcon/app/Pods/nanopb/spm_resources/PrivacyInfo.xcprivacy -------------------------------------------------------------------------------- /falcon/app/PrivacyInfo.xcprivacy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/falcon/app/PrivacyInfo.xcprivacy -------------------------------------------------------------------------------- /falcon/app/SPM/Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/falcon/app/SPM/Package.swift -------------------------------------------------------------------------------- /falcon/app/SPM/Sources/Dummy.swift: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /falcon/app/UnitTests.xctestplan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/falcon/app/UnitTests.xctestplan -------------------------------------------------------------------------------- /falcon/app/falcon.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/falcon/app/falcon.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /falcon/app/falcon/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/falcon/app/falcon/AppDelegate.swift -------------------------------------------------------------------------------- /falcon/app/falcon/DependencyContainer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/falcon/app/falcon/DependencyContainer.swift -------------------------------------------------------------------------------- /falcon/app/falcon/Extension/AnalyticsHelper.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/falcon/app/falcon/Extension/AnalyticsHelper.swift -------------------------------------------------------------------------------- /falcon/app/falcon/Extension/BitcoinAmount+Extension.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/falcon/app/falcon/Extension/BitcoinAmount+Extension.swift -------------------------------------------------------------------------------- /falcon/app/falcon/Extension/CGFloat+Extension.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/falcon/app/falcon/Extension/CGFloat+Extension.swift -------------------------------------------------------------------------------- /falcon/app/falcon/Extension/Date+Extension.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/falcon/app/falcon/Extension/Date+Extension.swift -------------------------------------------------------------------------------- /falcon/app/falcon/Extension/MonetaryAmount+Extension.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/falcon/app/falcon/Extension/MonetaryAmount+Extension.swift -------------------------------------------------------------------------------- /falcon/app/falcon/Extension/NotificationsFetcher.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/falcon/app/falcon/Extension/NotificationsFetcher.swift -------------------------------------------------------------------------------- /falcon/app/falcon/Extension/Optional+Extension.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/falcon/app/falcon/Extension/Optional+Extension.swift -------------------------------------------------------------------------------- /falcon/app/falcon/Extension/PushNotificationsHelper.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/falcon/app/falcon/Extension/PushNotificationsHelper.swift -------------------------------------------------------------------------------- /falcon/app/falcon/Extension/String+Extension.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/falcon/app/falcon/Extension/String+Extension.swift -------------------------------------------------------------------------------- /falcon/app/falcon/Extension/UIApplication+Extension.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/falcon/app/falcon/Extension/UIApplication+Extension.swift -------------------------------------------------------------------------------- /falcon/app/falcon/Extension/UIBarButtonItem+Extension.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/falcon/app/falcon/Extension/UIBarButtonItem+Extension.swift -------------------------------------------------------------------------------- /falcon/app/falcon/Extension/UIButton+Extension.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/falcon/app/falcon/Extension/UIButton+Extension.swift -------------------------------------------------------------------------------- /falcon/app/falcon/Extension/UIColor+Extension.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/falcon/app/falcon/Extension/UIColor+Extension.swift -------------------------------------------------------------------------------- /falcon/app/falcon/Extension/UIEdgeInsets+Extension.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/falcon/app/falcon/Extension/UIEdgeInsets+Extension.swift -------------------------------------------------------------------------------- /falcon/app/falcon/Extension/UIImage+Extension.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/falcon/app/falcon/Extension/UIImage+Extension.swift -------------------------------------------------------------------------------- /falcon/app/falcon/Extension/UILabel+Extension.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/falcon/app/falcon/Extension/UILabel+Extension.swift -------------------------------------------------------------------------------- /falcon/app/falcon/Extension/UIResponder+Extension.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/falcon/app/falcon/Extension/UIResponder+Extension.swift -------------------------------------------------------------------------------- /falcon/app/falcon/Extension/UIStackView+Extension.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/falcon/app/falcon/Extension/UIStackView+Extension.swift -------------------------------------------------------------------------------- /falcon/app/falcon/Extension/UITableView+Extension.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/falcon/app/falcon/Extension/UITableView+Extension.swift -------------------------------------------------------------------------------- /falcon/app/falcon/Extension/UITableViewCell+Extension.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/falcon/app/falcon/Extension/UITableViewCell+Extension.swift -------------------------------------------------------------------------------- /falcon/app/falcon/Extension/UIView+Extension.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/falcon/app/falcon/Extension/UIView+Extension.swift -------------------------------------------------------------------------------- /falcon/app/falcon/Extension/UIViewController+Extension.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/falcon/app/falcon/Extension/UIViewController+Extension.swift -------------------------------------------------------------------------------- /falcon/app/falcon/GoogleService-Info-debug.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/falcon/app/falcon/GoogleService-Info-debug.plist -------------------------------------------------------------------------------- /falcon/app/falcon/GoogleService-Info-dev.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/falcon/app/falcon/GoogleService-Info-dev.plist -------------------------------------------------------------------------------- /falcon/app/falcon/GoogleService-Info-dogfood.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/falcon/app/falcon/GoogleService-Info-dogfood.plist -------------------------------------------------------------------------------- /falcon/app/falcon/GoogleService-Info-prod.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/falcon/app/falcon/GoogleService-Info-prod.plist -------------------------------------------------------------------------------- /falcon/app/falcon/GoogleService-Info-regtest.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/falcon/app/falcon/GoogleService-Info-regtest.plist -------------------------------------------------------------------------------- /falcon/app/falcon/GoogleService-Info-stg.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/falcon/app/falcon/GoogleService-Info-stg.plist -------------------------------------------------------------------------------- /falcon/app/falcon/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/falcon/app/falcon/Info.plist -------------------------------------------------------------------------------- /falcon/app/falcon/Presentation/Component/Base/MUView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/falcon/app/falcon/Presentation/Component/Base/MUView.swift -------------------------------------------------------------------------------- /falcon/app/falcon/Presentation/Component/Check/CheckView.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/falcon/app/falcon/Presentation/Component/Check/CheckView.xib -------------------------------------------------------------------------------- /falcon/app/falcon/Presentation/Component/Pin/PinView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/falcon/app/falcon/Presentation/Component/Pin/PinView.swift -------------------------------------------------------------------------------- /falcon/app/falcon/Presentation/Component/Pin/PinView.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/falcon/app/falcon/Presentation/Component/Pin/PinView.xib -------------------------------------------------------------------------------- /falcon/app/falcon/Presentation/Component/PopUp/PopUp.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/falcon/app/falcon/Presentation/Component/PopUp/PopUp.swift -------------------------------------------------------------------------------- /falcon/app/falcon/Presentation/Component/Toast/ToastView.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/falcon/app/falcon/Presentation/Component/Toast/ToastView.xib -------------------------------------------------------------------------------- /falcon/app/falcon/Presentation/LocaleNumberFormatter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/falcon/app/falcon/Presentation/LocaleNumberFormatter.swift -------------------------------------------------------------------------------- /falcon/app/falcon/Presentation/OperationFormatter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/falcon/app/falcon/Presentation/OperationFormatter.swift -------------------------------------------------------------------------------- /falcon/app/falcon/Presentation/PDFGenerator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/falcon/app/falcon/Presentation/PDFGenerator.swift -------------------------------------------------------------------------------- /falcon/app/falcon/Presentation/PageObject/UIElement.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/falcon/app/falcon/Presentation/PageObject/UIElement.swift -------------------------------------------------------------------------------- /falcon/app/falcon/Presentation/RepresentableView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/falcon/app/falcon/Presentation/RepresentableView.swift -------------------------------------------------------------------------------- /falcon/app/falcon/Presentation/Screen/Home/HomeView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/falcon/app/falcon/Presentation/Screen/Home/HomeView.swift -------------------------------------------------------------------------------- /falcon/app/falcon/Presentation/Screen/Pin/AuthMethod.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/falcon/app/falcon/Presentation/Screen/Pin/AuthMethod.swift -------------------------------------------------------------------------------- /falcon/app/falcon/Presentation/Screen/Pin/PinPresenter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/falcon/app/falcon/Presentation/Screen/Pin/PinPresenter.swift -------------------------------------------------------------------------------- /falcon/app/falcon/Resource/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/falcon/app/falcon/Resource/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /falcon/app/falcon/Resource/Colors.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/falcon/app/falcon/Resource/Colors.xcassets/Contents.json -------------------------------------------------------------------------------- /falcon/app/falcon/Resource/Constant/Constant.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/falcon/app/falcon/Resource/Constant/Constant.swift -------------------------------------------------------------------------------- /falcon/app/falcon/Resource/Environment+Extension.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/falcon/app/falcon/Resource/Environment+Extension.swift -------------------------------------------------------------------------------- /falcon/app/falcon/Resource/Identifiers.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/falcon/app/falcon/Resource/Identifiers.swift -------------------------------------------------------------------------------- /falcon/app/falcon/Resource/Lottie/animation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/falcon/app/falcon/Resource/Lottie/animation.json -------------------------------------------------------------------------------- /falcon/app/falcon/Resource/XCAssets+Generated.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/falcon/app/falcon/Resource/XCAssets+Generated.swift -------------------------------------------------------------------------------- /falcon/app/falcon/core/Data/Component/MUTimer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/falcon/app/falcon/core/Data/Component/MUTimer.swift -------------------------------------------------------------------------------- /falcon/app/falcon/core/Data/DataDependencyContainer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/falcon/app/falcon/core/Data/DataDependencyContainer.swift -------------------------------------------------------------------------------- /falcon/app/falcon/core/Data/Errors/ErrorReporter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/falcon/app/falcon/core/Data/Errors/ErrorReporter.swift -------------------------------------------------------------------------------- /falcon/app/falcon/core/Data/Errors/Logger.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/falcon/app/falcon/core/Data/Errors/Logger.swift -------------------------------------------------------------------------------- /falcon/app/falcon/core/Data/Errors/MuunError.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/falcon/app/falcon/core/Data/Errors/MuunError.swift -------------------------------------------------------------------------------- /falcon/app/falcon/core/Data/KeychainRepository.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/falcon/app/falcon/core/Data/KeychainRepository.swift -------------------------------------------------------------------------------- /falcon/app/falcon/core/Data/LazyLoadedList.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/falcon/app/falcon/core/Data/LazyLoadedList.swift -------------------------------------------------------------------------------- /falcon/app/falcon/core/Data/Libwallet/KeyProvider.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/falcon/app/falcon/core/Data/Libwallet/KeyProvider.swift -------------------------------------------------------------------------------- /falcon/app/falcon/core/Data/LibwalletStorageHelper.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/falcon/app/falcon/core/Data/LibwalletStorageHelper.swift -------------------------------------------------------------------------------- /falcon/app/falcon/core/Data/Repository/KeysRepository.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/falcon/app/falcon/core/Data/Repository/KeysRepository.swift -------------------------------------------------------------------------------- /falcon/app/falcon/core/Data/Repository/UserRepository.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/falcon/app/falcon/core/Data/Repository/UserRepository.swift -------------------------------------------------------------------------------- /falcon/app/falcon/core/Data/Scheduler/Scheduler.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/falcon/app/falcon/core/Data/Scheduler/Scheduler.swift -------------------------------------------------------------------------------- /falcon/app/falcon/core/Data/Scheduler/TaskRunner.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/falcon/app/falcon/core/Data/Scheduler/TaskRunner.swift -------------------------------------------------------------------------------- /falcon/app/falcon/core/Data/SecureStorage.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/falcon/app/falcon/core/Data/SecureStorage.swift -------------------------------------------------------------------------------- /falcon/app/falcon/core/Data/Service/Base/BaseError.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/falcon/app/falcon/core/Data/Service/Base/BaseError.swift -------------------------------------------------------------------------------- /falcon/app/falcon/core/Data/Service/Base/BaseRequest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/falcon/app/falcon/core/Data/Service/Base/BaseRequest.swift -------------------------------------------------------------------------------- /falcon/app/falcon/core/Data/Service/Base/BaseService.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/falcon/app/falcon/core/Data/Service/Base/BaseService.swift -------------------------------------------------------------------------------- /falcon/app/falcon/core/Data/Service/CloudConstants.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/falcon/app/falcon/core/Data/Service/CloudConstants.swift -------------------------------------------------------------------------------- /falcon/app/falcon/core/Data/Service/GoogleDriveHelper.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/falcon/app/falcon/core/Data/Service/GoogleDriveHelper.swift -------------------------------------------------------------------------------- /falcon/app/falcon/core/Data/Service/ICloudHelper.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/falcon/app/falcon/core/Data/Service/ICloudHelper.swift -------------------------------------------------------------------------------- /falcon/app/falcon/core/Data/Service/LibwalletNfcBridge.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/falcon/app/falcon/core/Data/Service/LibwalletNfcBridge.swift -------------------------------------------------------------------------------- /falcon/app/falcon/core/Data/Service/Mapper.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/falcon/app/falcon/core/Data/Service/Mapper.swift -------------------------------------------------------------------------------- /falcon/app/falcon/core/Data/Service/PingURLService.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/falcon/app/falcon/core/Data/Service/PingURLService.swift -------------------------------------------------------------------------------- /falcon/app/falcon/core/Data/Service/TestLapp.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/falcon/app/falcon/core/Data/Service/TestLapp.swift -------------------------------------------------------------------------------- /falcon/app/falcon/core/Data/Service/WalletService.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/falcon/app/falcon/core/Data/Service/WalletService.swift -------------------------------------------------------------------------------- /falcon/app/falcon/core/Data/UserDefaults/Preferences.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/falcon/app/falcon/core/Data/UserDefaults/Preferences.swift -------------------------------------------------------------------------------- /falcon/app/falcon/core/Domain/Action/Base/ActionState.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/falcon/app/falcon/core/Domain/Action/Base/ActionState.swift -------------------------------------------------------------------------------- /falcon/app/falcon/core/Domain/Action/Base/AsyncAction.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/falcon/app/falcon/core/Domain/Action/Base/AsyncAction.swift -------------------------------------------------------------------------------- /falcon/app/falcon/core/Domain/Action/CurrencyActions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/falcon/app/falcon/core/Domain/Action/CurrencyActions.swift -------------------------------------------------------------------------------- /falcon/app/falcon/core/Domain/Action/SupportAction.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/falcon/app/falcon/core/Domain/Action/SupportAction.swift -------------------------------------------------------------------------------- /falcon/app/falcon/core/Domain/ApiMigrationsManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/falcon/app/falcon/core/Domain/ApiMigrationsManager.swift -------------------------------------------------------------------------------- /falcon/app/falcon/core/Domain/ApplicationLockManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/falcon/app/falcon/core/Domain/ApplicationLockManager.swift -------------------------------------------------------------------------------- /falcon/app/falcon/core/Domain/Crypto/DerivationSchema.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/falcon/app/falcon/core/Domain/Crypto/DerivationSchema.swift -------------------------------------------------------------------------------- /falcon/app/falcon/core/Domain/Crypto/KeyCrypter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/falcon/app/falcon/core/Domain/Crypto/KeyCrypter.swift -------------------------------------------------------------------------------- /falcon/app/falcon/core/Domain/Crypto/SecureRandom.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/falcon/app/falcon/core/Domain/Crypto/SecureRandom.swift -------------------------------------------------------------------------------- /falcon/app/falcon/core/Domain/Model/Contacts/Contact.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/falcon/app/falcon/core/Domain/Model/Contacts/Contact.swift -------------------------------------------------------------------------------- /falcon/app/falcon/core/Domain/Model/Crypto/AddressType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/falcon/app/falcon/core/Domain/Model/Crypto/AddressType.swift -------------------------------------------------------------------------------- /falcon/app/falcon/core/Domain/Model/Debug/DebugRequest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/falcon/app/falcon/core/Domain/Model/Debug/DebugRequest.swift -------------------------------------------------------------------------------- /falcon/app/falcon/core/Domain/Model/Muun/DomainError.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/falcon/app/falcon/core/Domain/Model/Muun/DomainError.swift -------------------------------------------------------------------------------- /falcon/app/falcon/core/Domain/Model/Muun/MuunModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/falcon/app/falcon/core/Domain/Model/Muun/MuunModel.swift -------------------------------------------------------------------------------- /falcon/app/falcon/core/Domain/Model/Operations/Amount.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/falcon/app/falcon/core/Domain/Model/Operations/Amount.swift -------------------------------------------------------------------------------- /falcon/app/falcon/core/Domain/Model/Operations/Debt.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/falcon/app/falcon/core/Domain/Model/Operations/Debt.swift -------------------------------------------------------------------------------- /falcon/app/falcon/core/Domain/Selector/BaseSelector.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/falcon/app/falcon/core/Domain/Selector/BaseSelector.swift -------------------------------------------------------------------------------- /falcon/app/falcon/core/Domain/Selector/UserSelector.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/falcon/app/falcon/core/Domain/Selector/UserSelector.swift -------------------------------------------------------------------------------- /falcon/app/falcon/core/Domain/Service/CardNfcService.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/falcon/app/falcon/core/Domain/Service/CardNfcService.swift -------------------------------------------------------------------------------- /falcon/app/falcon/core/Domain/Service/LibwalletService.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/falcon/app/falcon/core/Domain/Service/LibwalletService.swift -------------------------------------------------------------------------------- /falcon/app/falcon/core/Domain/Sync/FeeDataSyncer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/falcon/app/falcon/core/Domain/Sync/FeeDataSyncer.swift -------------------------------------------------------------------------------- /falcon/app/falcon/core/Domain/Utils/AsciiUtils.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/falcon/app/falcon/core/Domain/Utils/AsciiUtils.swift -------------------------------------------------------------------------------- /falcon/app/falcon/core/Domain/Utils/DeviceUtils.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/falcon/app/falcon/core/Domain/Utils/DeviceUtils.swift -------------------------------------------------------------------------------- /falcon/app/falcon/core/Environment.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/falcon/app/falcon/core/Environment.swift -------------------------------------------------------------------------------- /falcon/app/falcon/core/Extension/Array+Extension.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/falcon/app/falcon/core/Extension/Array+Extension.swift -------------------------------------------------------------------------------- /falcon/app/falcon/core/Extension/Data+Extension.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/falcon/app/falcon/core/Extension/Data+Extension.swift -------------------------------------------------------------------------------- /falcon/app/falcon/core/Extension/Decimal+Extension.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/falcon/app/falcon/core/Extension/Decimal+Extension.swift -------------------------------------------------------------------------------- /falcon/app/falcon/core/Extension/Environment+Net.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/falcon/app/falcon/core/Extension/Environment+Net.swift -------------------------------------------------------------------------------- /falcon/app/falcon/core/Extension/Error+Extension.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/falcon/app/falcon/core/Extension/Error+Extension.swift -------------------------------------------------------------------------------- /falcon/app/falcon/core/Extension/Libwallet+Extension.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/falcon/app/falcon/core/Extension/Libwallet+Extension.swift -------------------------------------------------------------------------------- /falcon/app/falcon/core/Extension/NSErrorHelper.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/falcon/app/falcon/core/Extension/NSErrorHelper.swift -------------------------------------------------------------------------------- /falcon/app/falcon/core/Extension/URL+Extension.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/falcon/app/falcon/core/Extension/URL+Extension.swift -------------------------------------------------------------------------------- /falcon/app/falcon/core/Persistence.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/falcon/app/falcon/core/Persistence.swift -------------------------------------------------------------------------------- /falcon/app/falcon/core/Protobuf/google/rpc/status.pb.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/falcon/app/falcon/core/Protobuf/google/rpc/status.pb.swift -------------------------------------------------------------------------------- /falcon/app/falcon/core/Protobuf/wallet_service.grpc.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/falcon/app/falcon/core/Protobuf/wallet_service.grpc.swift -------------------------------------------------------------------------------- /falcon/app/falcon/core/Protobuf/wallet_service.pb.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/falcon/app/falcon/core/Protobuf/wallet_service.pb.swift -------------------------------------------------------------------------------- /falcon/app/falcon/core/TestUtils.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/falcon/app/falcon/core/TestUtils.swift -------------------------------------------------------------------------------- /falcon/app/falcon/falcon.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/falcon/app/falcon/falcon.entitlements -------------------------------------------------------------------------------- /falcon/app/falconPushNotifications/Environment.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/falcon/app/falconPushNotifications/Environment.swift -------------------------------------------------------------------------------- /falcon/app/falconPushNotifications/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/falcon/app/falconPushNotifications/Info.plist -------------------------------------------------------------------------------- /falcon/app/falconTests/DTO/RealTimeFeeJsonTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/falcon/app/falconTests/DTO/RealTimeFeeJsonTests.swift -------------------------------------------------------------------------------- /falcon/app/falconTests/Domain/AddressActionsTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/falcon/app/falconTests/Domain/AddressActionsTests.swift -------------------------------------------------------------------------------- /falcon/app/falconTests/Domain/Crypto/KeyCrypterTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/falcon/app/falconTests/Domain/Crypto/KeyCrypterTests.swift -------------------------------------------------------------------------------- /falcon/app/falconTests/Domain/Crypto/SatoshisTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/falcon/app/falconTests/Domain/Crypto/SatoshisTests.swift -------------------------------------------------------------------------------- /falcon/app/falconTests/Domain/DataExtensionTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/falcon/app/falconTests/Domain/DataExtensionTests.swift -------------------------------------------------------------------------------- /falcon/app/falconTests/Domain/ErrorExtensionTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/falcon/app/falconTests/Domain/ErrorExtensionTests.swift -------------------------------------------------------------------------------- /falcon/app/falconTests/Domain/FCMTokenActionTest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/falcon/app/falconTests/Domain/FCMTokenActionTest.swift -------------------------------------------------------------------------------- /falcon/app/falconTests/Domain/JSON.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/falcon/app/falconTests/Domain/JSON.swift -------------------------------------------------------------------------------- /falcon/app/falconTests/Domain/Model/UserTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/falcon/app/falconTests/Domain/Model/UserTests.swift -------------------------------------------------------------------------------- /falcon/app/falconTests/Domain/OperationTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/falcon/app/falconTests/Domain/OperationTests.swift -------------------------------------------------------------------------------- /falcon/app/falconTests/Domain/Utils/AsciiUtilsTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/falcon/app/falconTests/Domain/Utils/AsciiUtilsTests.swift -------------------------------------------------------------------------------- /falcon/app/falconTests/ExpectationUtils.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/falcon/app/falconTests/ExpectationUtils.swift -------------------------------------------------------------------------------- /falcon/app/falconTests/Factories/Factory+Operation.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/falcon/app/falconTests/Factories/Factory+Operation.swift -------------------------------------------------------------------------------- /falcon/app/falconTests/Factories/Factory+User.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/falcon/app/falconTests/Factories/Factory+User.swift -------------------------------------------------------------------------------- /falcon/app/falconTests/Factories/Factory.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/falcon/app/falconTests/Factories/Factory.swift -------------------------------------------------------------------------------- /falcon/app/falconTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/falcon/app/falconTests/Info.plist -------------------------------------------------------------------------------- /falcon/app/falconTests/MuunTestCase.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/falcon/app/falconTests/MuunTestCase.swift -------------------------------------------------------------------------------- /falcon/app/falconTests/Presentation/AmountLabelTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/falcon/app/falconTests/Presentation/AmountLabelTests.swift -------------------------------------------------------------------------------- /falcon/app/falconTests/Presentation/BlockHelperTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/falcon/app/falconTests/Presentation/BlockHelperTests.swift -------------------------------------------------------------------------------- /falcon/app/falconUITests/All.xctestplan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/falcon/app/falconUITests/All.xctestplan -------------------------------------------------------------------------------- /falcon/app/falconUITests/Bitrise.xctestplan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/falcon/app/falconUITests/Bitrise.xctestplan -------------------------------------------------------------------------------- /falcon/app/falconUITests/CreateWalletTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/falcon/app/falconUITests/CreateWalletTests.swift -------------------------------------------------------------------------------- /falcon/app/falconUITests/FalconUITests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/falcon/app/falconUITests/FalconUITests.swift -------------------------------------------------------------------------------- /falcon/app/falconUITests/IncomingSwapUITests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/falcon/app/falconUITests/IncomingSwapUITests.swift -------------------------------------------------------------------------------- /falcon/app/falconUITests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/falcon/app/falconUITests/Info.plist -------------------------------------------------------------------------------- /falcon/app/falconUITests/NewOperationUITest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/falcon/app/falconUITests/NewOperationUITest.swift -------------------------------------------------------------------------------- /falcon/app/falconUITests/Page/Page.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/falcon/app/falconUITests/Page/Page.swift -------------------------------------------------------------------------------- /falcon/app/falconUITests/Page/UIElementPage.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/falcon/app/falconUITests/Page/UIElementPage.swift -------------------------------------------------------------------------------- /falcon/app/falconUITests/PinUITestinTest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/falcon/app/falconUITests/PinUITestinTest.swift -------------------------------------------------------------------------------- /falcon/app/falconUITests/Regtest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/falcon/app/falconUITests/Regtest.swift -------------------------------------------------------------------------------- /falcon/app/falconUITests/SettingsUITest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/falcon/app/falconUITests/SettingsUITest.swift -------------------------------------------------------------------------------- /falcon/app/falconUITests/SignInUITests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/falcon/app/falconUITests/SignInUITests.swift -------------------------------------------------------------------------------- /falcon/app/falconUITests/Tests/ChangePasswordTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/falcon/app/falconUITests/Tests/ChangePasswordTests.swift -------------------------------------------------------------------------------- /falcon/app/falconUITests/Tests/LNURLWithdrawTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/falcon/app/falconUITests/Tests/LNURLWithdrawTests.swift -------------------------------------------------------------------------------- /falcon/app/falconUITests/XCUIElement+Extension.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/falcon/app/falconUITests/XCUIElement+Extension.swift -------------------------------------------------------------------------------- /falcon/app/fastlane/Appfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/falcon/app/fastlane/Appfile -------------------------------------------------------------------------------- /falcon/app/fastlane/Fastfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/falcon/app/fastlane/Fastfile -------------------------------------------------------------------------------- /falcon/app/fastlane/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/falcon/app/fastlane/README.md -------------------------------------------------------------------------------- /falcon/app/pods_dependency_registry.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/falcon/app/pods_dependency_registry.txt -------------------------------------------------------------------------------- /falcon/app/swiftgen.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/falcon/app/swiftgen.yml -------------------------------------------------------------------------------- /libwallet/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/libwallet/.gitignore -------------------------------------------------------------------------------- /libwallet/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/libwallet/LICENSE -------------------------------------------------------------------------------- /libwallet/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/libwallet/README.md -------------------------------------------------------------------------------- /libwallet/V1.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/libwallet/V1.go -------------------------------------------------------------------------------- /libwallet/V2.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/libwallet/V2.go -------------------------------------------------------------------------------- /libwallet/V3.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/libwallet/V3.go -------------------------------------------------------------------------------- /libwallet/V4.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/libwallet/V4.go -------------------------------------------------------------------------------- /libwallet/V5.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/libwallet/V5.go -------------------------------------------------------------------------------- /libwallet/V6.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/libwallet/V6.go -------------------------------------------------------------------------------- /libwallet/address.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/libwallet/address.go -------------------------------------------------------------------------------- /libwallet/address_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/libwallet/address_test.go -------------------------------------------------------------------------------- /libwallet/addresses/addresses.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/libwallet/addresses/addresses.go -------------------------------------------------------------------------------- /libwallet/addresses/addresses_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/libwallet/addresses/addresses_test.go -------------------------------------------------------------------------------- /libwallet/addresses/v1.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/libwallet/addresses/v1.go -------------------------------------------------------------------------------- /libwallet/addresses/v2.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/libwallet/addresses/v2.go -------------------------------------------------------------------------------- /libwallet/addresses/v2_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/libwallet/addresses/v2_test.go -------------------------------------------------------------------------------- /libwallet/addresses/v3.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/libwallet/addresses/v3.go -------------------------------------------------------------------------------- /libwallet/addresses/v3_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/libwallet/addresses/v3_test.go -------------------------------------------------------------------------------- /libwallet/addresses/v4.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/libwallet/addresses/v4.go -------------------------------------------------------------------------------- /libwallet/addresses/v4_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/libwallet/addresses/v4_test.go -------------------------------------------------------------------------------- /libwallet/addresses/v5.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/libwallet/addresses/v5.go -------------------------------------------------------------------------------- /libwallet/addresses/v5_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/libwallet/addresses/v5_test.go -------------------------------------------------------------------------------- /libwallet/addresses/v6.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/libwallet/addresses/v6.go -------------------------------------------------------------------------------- /libwallet/addresses/v6_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/libwallet/addresses/v6_test.go -------------------------------------------------------------------------------- /libwallet/aescbc/aescbc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/libwallet/aescbc/aescbc.go -------------------------------------------------------------------------------- /libwallet/aescbc/aescbc_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/libwallet/aescbc/aescbc_test.go -------------------------------------------------------------------------------- /libwallet/app_provided_data/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/libwallet/app_provided_data/config.go -------------------------------------------------------------------------------- /libwallet/app_provided_data/feature_flag.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/libwallet/app_provided_data/feature_flag.go -------------------------------------------------------------------------------- /libwallet/app_provided_data/keys.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/libwallet/app_provided_data/keys.go -------------------------------------------------------------------------------- /libwallet/app_provided_data/log.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/libwallet/app_provided_data/log.go -------------------------------------------------------------------------------- /libwallet/app_provided_data/nfc_bridge.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/libwallet/app_provided_data/nfc_bridge.go -------------------------------------------------------------------------------- /libwallet/app_provided_data/service_request.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/libwallet/app_provided_data/service_request.go -------------------------------------------------------------------------------- /libwallet/bip21.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/libwallet/bip21.go -------------------------------------------------------------------------------- /libwallet/bip21_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/libwallet/bip21_test.go -------------------------------------------------------------------------------- /libwallet/bip70.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/libwallet/bip70.pb.go -------------------------------------------------------------------------------- /libwallet/bip70.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/libwallet/bip70.proto -------------------------------------------------------------------------------- /libwallet/bridge.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/libwallet/bridge.go -------------------------------------------------------------------------------- /libwallet/btcsuitew/bech32m/bech32m.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/libwallet/btcsuitew/bech32m/bech32m.go -------------------------------------------------------------------------------- /libwallet/btcsuitew/bech32m/bech32m_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/libwallet/btcsuitew/bech32m/bech32m_test.go -------------------------------------------------------------------------------- /libwallet/btcsuitew/btcutilw/address.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/libwallet/btcsuitew/btcutilw/address.go -------------------------------------------------------------------------------- /libwallet/btcsuitew/btcutilw/segwit.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/libwallet/btcsuitew/btcutilw/segwit.go -------------------------------------------------------------------------------- /libwallet/btcsuitew/chainhashw/chainhashw.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/libwallet/btcsuitew/chainhashw/chainhashw.go -------------------------------------------------------------------------------- /libwallet/btcsuitew/txscriptw/hashcache.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/libwallet/btcsuitew/txscriptw/hashcache.go -------------------------------------------------------------------------------- /libwallet/btcsuitew/txscriptw/script.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/libwallet/btcsuitew/txscriptw/script.go -------------------------------------------------------------------------------- /libwallet/btcsuitew/txscriptw/script_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/libwallet/btcsuitew/txscriptw/script_test.go -------------------------------------------------------------------------------- /libwallet/btcsuitew/txscriptw/standard.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/libwallet/btcsuitew/txscriptw/standard.go -------------------------------------------------------------------------------- /libwallet/challenge_keys.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/libwallet/challenge_keys.go -------------------------------------------------------------------------------- /libwallet/challenge_keys_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/libwallet/challenge_keys_test.go -------------------------------------------------------------------------------- /libwallet/challenge_public_key.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/libwallet/challenge_public_key.go -------------------------------------------------------------------------------- /libwallet/cryptography/bitcoin_hpke/bitcoin_hpke.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/libwallet/cryptography/bitcoin_hpke/bitcoin_hpke.go -------------------------------------------------------------------------------- /libwallet/cryptography/bitcoin_hpke/bitcoin_hpke_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/libwallet/cryptography/bitcoin_hpke/bitcoin_hpke_test.go -------------------------------------------------------------------------------- /libwallet/cryptography/bitcoin_hpke/encrypted_message.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/libwallet/cryptography/bitcoin_hpke/encrypted_message.go -------------------------------------------------------------------------------- /libwallet/cryptography/bitcoin_hpke/i2osp.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/libwallet/cryptography/bitcoin_hpke/i2osp.go -------------------------------------------------------------------------------- /libwallet/cryptography/bitcoin_hpke/kem.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/libwallet/cryptography/bitcoin_hpke/kem.go -------------------------------------------------------------------------------- /libwallet/cryptography/bitcoin_hpke/labeled_hkdf.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/libwallet/cryptography/bitcoin_hpke/labeled_hkdf.go -------------------------------------------------------------------------------- /libwallet/data/keys/provider.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/libwallet/data/keys/provider.go -------------------------------------------------------------------------------- /libwallet/docker/builder.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/libwallet/docker/builder.Dockerfile -------------------------------------------------------------------------------- /libwallet/domain/action/nfc/pair_security_card_action.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/libwallet/domain/action/nfc/pair_security_card_action.go -------------------------------------------------------------------------------- /libwallet/domain/action/nfc/reset_security_card_action.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/libwallet/domain/action/nfc/reset_security_card_action.go -------------------------------------------------------------------------------- /libwallet/domain/action/recovery/scan_for_funds_action.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/libwallet/domain/action/recovery/scan_for_funds_action.go -------------------------------------------------------------------------------- /libwallet/domain/model/encrypted_key_v3/encrypted_key.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/libwallet/domain/model/encrypted_key_v3/encrypted_key.go -------------------------------------------------------------------------------- /libwallet/domain/nfc/apdu.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/libwallet/domain/nfc/apdu.go -------------------------------------------------------------------------------- /libwallet/domain/nfc/javacard.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/libwallet/domain/nfc/javacard.go -------------------------------------------------------------------------------- /libwallet/domain/nfc/mock_nfc_bridge.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/libwallet/domain/nfc/mock_nfc_bridge.go -------------------------------------------------------------------------------- /libwallet/domain/nfc/mock_nfc_bridge_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/libwallet/domain/nfc/mock_nfc_bridge_test.go -------------------------------------------------------------------------------- /libwallet/domain/nfc/muuncard.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/libwallet/domain/nfc/muuncard.go -------------------------------------------------------------------------------- /libwallet/domain/nfc/muuncard_secure_channel.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/libwallet/domain/nfc/muuncard_secure_channel.go -------------------------------------------------------------------------------- /libwallet/domain/nfc/muuncard_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/libwallet/domain/nfc/muuncard_test.go -------------------------------------------------------------------------------- /libwallet/domain/nfc/muuncard_v2.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/libwallet/domain/nfc/muuncard_v2.go -------------------------------------------------------------------------------- /libwallet/electrum/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/libwallet/electrum/client.go -------------------------------------------------------------------------------- /libwallet/electrum/pool.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/libwallet/electrum/pool.go -------------------------------------------------------------------------------- /libwallet/electrum/servers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/libwallet/electrum/servers.go -------------------------------------------------------------------------------- /libwallet/emergency_kit.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/libwallet/emergency_kit.go -------------------------------------------------------------------------------- /libwallet/emergency_kit_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/libwallet/emergency_kit_test.go -------------------------------------------------------------------------------- /libwallet/emergencykit/content.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/libwallet/emergencykit/content.go -------------------------------------------------------------------------------- /libwallet/emergencykit/css.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/libwallet/emergencykit/css.go -------------------------------------------------------------------------------- /libwallet/emergencykit/descriptors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/libwallet/emergencykit/descriptors.go -------------------------------------------------------------------------------- /libwallet/emergencykit/descriptors_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/libwallet/emergencykit/descriptors_test.go -------------------------------------------------------------------------------- /libwallet/emergencykit/emergencykit.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/libwallet/emergencykit/emergencykit.go -------------------------------------------------------------------------------- /libwallet/emergencykit/emergencykit_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/libwallet/emergencykit/emergencykit_test.go -------------------------------------------------------------------------------- /libwallet/emergencykit/metadata.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/libwallet/emergencykit/metadata.go -------------------------------------------------------------------------------- /libwallet/emergencykit/metadata_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/libwallet/emergencykit/metadata_test.go -------------------------------------------------------------------------------- /libwallet/encrypt.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/libwallet/encrypt.go -------------------------------------------------------------------------------- /libwallet/encrypt_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/libwallet/encrypt_test.go -------------------------------------------------------------------------------- /libwallet/encryption/cypher.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/libwallet/encryption/cypher.go -------------------------------------------------------------------------------- /libwallet/encryption/cypher_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/libwallet/encryption/cypher_test.go -------------------------------------------------------------------------------- /libwallet/encryption/encodings.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/libwallet/encryption/encodings.go -------------------------------------------------------------------------------- /libwallet/encryption/encodings_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/libwallet/encryption/encodings_test.go -------------------------------------------------------------------------------- /libwallet/encryption/secret.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/libwallet/encryption/secret.go -------------------------------------------------------------------------------- /libwallet/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/libwallet/errors.go -------------------------------------------------------------------------------- /libwallet/errors/api_errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/libwallet/errors/api_errors.go -------------------------------------------------------------------------------- /libwallet/errors/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/libwallet/errors/errors.go -------------------------------------------------------------------------------- /libwallet/features.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/libwallet/features.go -------------------------------------------------------------------------------- /libwallet/features_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/libwallet/features_test.go -------------------------------------------------------------------------------- /libwallet/fees/fees.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/libwallet/fees/fees.go -------------------------------------------------------------------------------- /libwallet/fees/fees_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/libwallet/fees/fees_test.go -------------------------------------------------------------------------------- /libwallet/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/libwallet/go.mod -------------------------------------------------------------------------------- /libwallet/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/libwallet/go.sum -------------------------------------------------------------------------------- /libwallet/hashes.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/libwallet/hashes.go -------------------------------------------------------------------------------- /libwallet/hdpath/hdpath.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/libwallet/hdpath/hdpath.go -------------------------------------------------------------------------------- /libwallet/hdpath/hdpath_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/libwallet/hdpath/hdpath_test.go -------------------------------------------------------------------------------- /libwallet/hdprivatekey.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/libwallet/hdprivatekey.go -------------------------------------------------------------------------------- /libwallet/hdprivatekey_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/libwallet/hdprivatekey_test.go -------------------------------------------------------------------------------- /libwallet/hdpublickey.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/libwallet/hdpublickey.go -------------------------------------------------------------------------------- /libwallet/hdpublickey_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/libwallet/hdpublickey_test.go -------------------------------------------------------------------------------- /libwallet/incoming_swap.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/libwallet/incoming_swap.go -------------------------------------------------------------------------------- /libwallet/incoming_swap_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/libwallet/incoming_swap_test.go -------------------------------------------------------------------------------- /libwallet/init.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/libwallet/init.go -------------------------------------------------------------------------------- /libwallet/init_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/libwallet/init_test.go -------------------------------------------------------------------------------- /libwallet/invoice.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/libwallet/invoice.go -------------------------------------------------------------------------------- /libwallet/invoice_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/libwallet/invoice_test.go -------------------------------------------------------------------------------- /libwallet/invoices.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/libwallet/invoices.go -------------------------------------------------------------------------------- /libwallet/invoices_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/libwallet/invoices_test.go -------------------------------------------------------------------------------- /libwallet/keycrypt/keycrypt.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/libwallet/keycrypt/keycrypt.go -------------------------------------------------------------------------------- /libwallet/keycrypt/keycrypt_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/libwallet/keycrypt/keycrypt_test.go -------------------------------------------------------------------------------- /libwallet/keycrypter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/libwallet/keycrypter.go -------------------------------------------------------------------------------- /libwallet/keycrypter_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/libwallet/keycrypter_test.go -------------------------------------------------------------------------------- /libwallet/librs/Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/libwallet/librs/Cargo.lock -------------------------------------------------------------------------------- /libwallet/librs/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/libwallet/librs/Cargo.toml -------------------------------------------------------------------------------- /libwallet/librs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/libwallet/librs/README.md -------------------------------------------------------------------------------- /libwallet/librs/bindings/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/libwallet/librs/bindings/Cargo.toml -------------------------------------------------------------------------------- /libwallet/librs/bindings/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/libwallet/librs/bindings/src/lib.rs -------------------------------------------------------------------------------- /libwallet/librs/generate/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/libwallet/librs/generate/Cargo.toml -------------------------------------------------------------------------------- /libwallet/librs/generate/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/libwallet/librs/generate/src/main.rs -------------------------------------------------------------------------------- /libwallet/librs/librs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/libwallet/librs/librs.go -------------------------------------------------------------------------------- /libwallet/librs/librs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/libwallet/librs/librs.h -------------------------------------------------------------------------------- /libwallet/librs/librs_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/libwallet/librs/librs_test.go -------------------------------------------------------------------------------- /libwallet/librs/libs.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/libwallet/librs/libs.Dockerfile -------------------------------------------------------------------------------- /libwallet/librs/makelibs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/libwallet/librs/makelibs.sh -------------------------------------------------------------------------------- /libwallet/libwallet_init/init.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/libwallet/libwallet_init/init.go -------------------------------------------------------------------------------- /libwallet/lnurl.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/libwallet/lnurl.go -------------------------------------------------------------------------------- /libwallet/lnurl/lnurl.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/libwallet/lnurl/lnurl.go -------------------------------------------------------------------------------- /libwallet/lnurl/lnurl_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/libwallet/lnurl/lnurl_test.go -------------------------------------------------------------------------------- /libwallet/lnurl_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/libwallet/lnurl_test.go -------------------------------------------------------------------------------- /libwallet/log/log.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/libwallet/log/log.go -------------------------------------------------------------------------------- /libwallet/musig/impl.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/libwallet/musig/impl.go -------------------------------------------------------------------------------- /libwallet/musig/musig2.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/libwallet/musig/musig2.go -------------------------------------------------------------------------------- /libwallet/musig/musig2_bip32.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/libwallet/musig/musig2_bip32.go -------------------------------------------------------------------------------- /libwallet/musig/musig2_bip32_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/libwallet/musig/musig2_bip32_test.go -------------------------------------------------------------------------------- /libwallet/musig/musig2_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/libwallet/musig/musig2_test.go -------------------------------------------------------------------------------- /libwallet/musig/tapscript_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/libwallet/musig/tapscript_test.go -------------------------------------------------------------------------------- /libwallet/musig/tweaks.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/libwallet/musig/tweaks.go -------------------------------------------------------------------------------- /libwallet/musig2v040/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/libwallet/musig2v040/README.md -------------------------------------------------------------------------------- /libwallet/musig2v040/context.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/libwallet/musig2v040/context.go -------------------------------------------------------------------------------- /libwallet/musig2v040/keys.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/libwallet/musig2v040/keys.go -------------------------------------------------------------------------------- /libwallet/musig2v040/nonces.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/libwallet/musig2v040/nonces.go -------------------------------------------------------------------------------- /libwallet/musig2v040/sign.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/libwallet/musig2v040/sign.go -------------------------------------------------------------------------------- /libwallet/musig2v040/upstream-patch.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/libwallet/musig2v040/upstream-patch.patch -------------------------------------------------------------------------------- /libwallet/network.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/libwallet/network.go -------------------------------------------------------------------------------- /libwallet/network_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/libwallet/network_test.go -------------------------------------------------------------------------------- /libwallet/newop/bridge_persistence_fee_bump_functions.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/libwallet/newop/bridge_persistence_fee_bump_functions.go -------------------------------------------------------------------------------- /libwallet/newop/context.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/libwallet/newop/context.go -------------------------------------------------------------------------------- /libwallet/newop/context_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/libwallet/newop/context_test.go -------------------------------------------------------------------------------- /libwallet/newop/exchange_rates.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/libwallet/newop/exchange_rates.go -------------------------------------------------------------------------------- /libwallet/newop/exchange_rates_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/libwallet/newop/exchange_rates_test.go -------------------------------------------------------------------------------- /libwallet/newop/fee_state.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/libwallet/newop/fee_state.go -------------------------------------------------------------------------------- /libwallet/newop/fee_window.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/libwallet/newop/fee_window.go -------------------------------------------------------------------------------- /libwallet/newop/money.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/libwallet/newop/money.go -------------------------------------------------------------------------------- /libwallet/newop/money_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/libwallet/newop/money_test.go -------------------------------------------------------------------------------- /libwallet/newop/nts.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/libwallet/newop/nts.go -------------------------------------------------------------------------------- /libwallet/newop/state.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/libwallet/newop/state.go -------------------------------------------------------------------------------- /libwallet/newop/state_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/libwallet/newop/state_test.go -------------------------------------------------------------------------------- /libwallet/newop/swaps.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/libwallet/newop/swaps.go -------------------------------------------------------------------------------- /libwallet/nonces.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/libwallet/nonces.go -------------------------------------------------------------------------------- /libwallet/operation/fee_bump.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/libwallet/operation/fee_bump.go -------------------------------------------------------------------------------- /libwallet/operation/fee_bump_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/libwallet/operation/fee_bump_test.go -------------------------------------------------------------------------------- /libwallet/operation/fee_window.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/libwallet/operation/fee_window.go -------------------------------------------------------------------------------- /libwallet/operation/fee_window_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/libwallet/operation/fee_window_test.go -------------------------------------------------------------------------------- /libwallet/operation/fees.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/libwallet/operation/fees.go -------------------------------------------------------------------------------- /libwallet/operation/fees_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/libwallet/operation/fees_test.go -------------------------------------------------------------------------------- /libwallet/operation/payment_analyzer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/libwallet/operation/payment_analyzer.go -------------------------------------------------------------------------------- /libwallet/operation/payment_analyzer_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/libwallet/operation/payment_analyzer_test.go -------------------------------------------------------------------------------- /libwallet/partiallysignedtransaction.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/libwallet/partiallysignedtransaction.go -------------------------------------------------------------------------------- /libwallet/partiallysignedtransaction_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/libwallet/partiallysignedtransaction_test.go -------------------------------------------------------------------------------- /libwallet/presentation/api/google/rpc/status.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/libwallet/presentation/api/google/rpc/status.proto -------------------------------------------------------------------------------- /libwallet/presentation/api/wallet_service.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/libwallet/presentation/api/wallet_service.pb.go -------------------------------------------------------------------------------- /libwallet/presentation/api/wallet_service.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/libwallet/presentation/api/wallet_service.proto -------------------------------------------------------------------------------- /libwallet/presentation/api/wallet_service_grpc.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/libwallet/presentation/api/wallet_service_grpc.pb.go -------------------------------------------------------------------------------- /libwallet/presentation/grpc_errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/libwallet/presentation/grpc_errors.go -------------------------------------------------------------------------------- /libwallet/presentation/interceptors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/libwallet/presentation/interceptors.go -------------------------------------------------------------------------------- /libwallet/presentation/muun_key_verification_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/libwallet/presentation/muun_key_verification_test.go -------------------------------------------------------------------------------- /libwallet/presentation/wallet_server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/libwallet/presentation/wallet_server.go -------------------------------------------------------------------------------- /libwallet/presentation/wallet_server_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/libwallet/presentation/wallet_server_test.go -------------------------------------------------------------------------------- /libwallet/publickey.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/libwallet/publickey.go -------------------------------------------------------------------------------- /libwallet/recoverycode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/libwallet/recoverycode.go -------------------------------------------------------------------------------- /libwallet/recoverycode/recoverycode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/libwallet/recoverycode/recoverycode.go -------------------------------------------------------------------------------- /libwallet/recoverycode/recoverycode_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/libwallet/recoverycode/recoverycode_test.go -------------------------------------------------------------------------------- /libwallet/recoverycode_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/libwallet/recoverycode_test.go -------------------------------------------------------------------------------- /libwallet/ripemd160.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/libwallet/ripemd160.go -------------------------------------------------------------------------------- /libwallet/ripemd160_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/libwallet/ripemd160_test.go -------------------------------------------------------------------------------- /libwallet/scanner/address_generator.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/libwallet/scanner/address_generator.go -------------------------------------------------------------------------------- /libwallet/scanner/scanner.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/libwallet/scanner/scanner.go -------------------------------------------------------------------------------- /libwallet/scanner/task.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/libwallet/scanner/task.go -------------------------------------------------------------------------------- /libwallet/scrypt.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/libwallet/scrypt.go -------------------------------------------------------------------------------- /libwallet/segwit.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/libwallet/segwit.go -------------------------------------------------------------------------------- /libwallet/service/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/libwallet/service/client.go -------------------------------------------------------------------------------- /libwallet/service/houston.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/libwallet/service/houston.go -------------------------------------------------------------------------------- /libwallet/service/houston_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/libwallet/service/houston_test.go -------------------------------------------------------------------------------- /libwallet/service/mock_houston.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/libwallet/service/mock_houston.go -------------------------------------------------------------------------------- /libwallet/service/model/challenge_setup_json.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/libwallet/service/model/challenge_setup_json.go -------------------------------------------------------------------------------- /libwallet/service/model/challenge_setup_verify_json.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/libwallet/service/model/challenge_setup_verify_json.go -------------------------------------------------------------------------------- /libwallet/service/model/client_json.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/libwallet/service/model/client_json.go -------------------------------------------------------------------------------- /libwallet/service/model/create_first_session_json.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/libwallet/service/model/create_first_session_json.go -------------------------------------------------------------------------------- /libwallet/service/model/create_first_session_ok_json.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/libwallet/service/model/create_first_session_ok_json.go -------------------------------------------------------------------------------- /libwallet/service/model/diagnostic_scan_data_json.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/libwallet/service/model/diagnostic_scan_data_json.go -------------------------------------------------------------------------------- /libwallet/service/model/fee_window_json.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/libwallet/service/model/fee_window_json.go -------------------------------------------------------------------------------- /libwallet/service/model/public_key_json.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/libwallet/service/model/public_key_json.go -------------------------------------------------------------------------------- /libwallet/service/model/register_security_card_json.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/libwallet/service/model/register_security_card_json.go -------------------------------------------------------------------------------- /libwallet/service/model/register_security_card_ok_json.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/libwallet/service/model/register_security_card_ok_json.go -------------------------------------------------------------------------------- /libwallet/service/model/security_card_metadata.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/libwallet/service/model/security_card_metadata.go -------------------------------------------------------------------------------- /libwallet/service/model/setup_challenge_response_json.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/libwallet/service/model/setup_challenge_response_json.go -------------------------------------------------------------------------------- /libwallet/service/model/verifiable_muun_key_json.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/libwallet/service/model/verifiable_muun_key_json.go -------------------------------------------------------------------------------- /libwallet/service/model_objects_mapper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/libwallet/service/model_objects_mapper.go -------------------------------------------------------------------------------- /libwallet/service/test_provider.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/libwallet/service/test_provider.go -------------------------------------------------------------------------------- /libwallet/sphinx/sphinx.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/libwallet/sphinx/sphinx.go -------------------------------------------------------------------------------- /libwallet/storage/schema.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/libwallet/storage/schema.go -------------------------------------------------------------------------------- /libwallet/storage/storage.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/libwallet/storage/storage.go -------------------------------------------------------------------------------- /libwallet/storage/storage_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/libwallet/storage/storage_test.go -------------------------------------------------------------------------------- /libwallet/submarineSwap.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/libwallet/submarineSwap.go -------------------------------------------------------------------------------- /libwallet/submarineSwapV1.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/libwallet/submarineSwapV1.go -------------------------------------------------------------------------------- /libwallet/submarineSwapV2.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/libwallet/submarineSwapV2.go -------------------------------------------------------------------------------- /libwallet/swaps/swaps.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/libwallet/swaps/swaps.go -------------------------------------------------------------------------------- /libwallet/swaps/v1.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/libwallet/swaps/v1.go -------------------------------------------------------------------------------- /libwallet/swaps/v1_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/libwallet/swaps/v1_test.go -------------------------------------------------------------------------------- /libwallet/swaps/v2.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/libwallet/swaps/v2.go -------------------------------------------------------------------------------- /libwallet/swaps/v2_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/libwallet/swaps/v2_test.go -------------------------------------------------------------------------------- /libwallet/utils_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/libwallet/utils_test.go -------------------------------------------------------------------------------- /libwallet/walletdb/fee_bump_repository.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/libwallet/walletdb/fee_bump_repository.go -------------------------------------------------------------------------------- /libwallet/walletdb/fee_bump_repository_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/libwallet/walletdb/fee_bump_repository_test.go -------------------------------------------------------------------------------- /libwallet/walletdb/key_value_repository.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/libwallet/walletdb/key_value_repository.go -------------------------------------------------------------------------------- /libwallet/walletdb/walletdb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/libwallet/walletdb/walletdb.go -------------------------------------------------------------------------------- /libwallet/walletdb/walletdb_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/libwallet/walletdb/walletdb_test.go -------------------------------------------------------------------------------- /prover/libs/builder.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/prover/libs/builder.Dockerfile -------------------------------------------------------------------------------- /prover/libs/plonky2-bitcoin-hpke/Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/prover/libs/plonky2-bitcoin-hpke/Cargo.lock -------------------------------------------------------------------------------- /prover/libs/plonky2-bitcoin-hpke/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/prover/libs/plonky2-bitcoin-hpke/Cargo.toml -------------------------------------------------------------------------------- /prover/libs/plonky2-bitcoin-hpke/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/prover/libs/plonky2-bitcoin-hpke/README.md -------------------------------------------------------------------------------- /prover/libs/plonky2-bitcoin-hpke/src/constants.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/prover/libs/plonky2-bitcoin-hpke/src/constants.rs -------------------------------------------------------------------------------- /prover/libs/plonky2-bitcoin-hpke/src/encoding.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/prover/libs/plonky2-bitcoin-hpke/src/encoding.rs -------------------------------------------------------------------------------- /prover/libs/plonky2-bitcoin-hpke/src/hpke.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/prover/libs/plonky2-bitcoin-hpke/src/hpke.rs -------------------------------------------------------------------------------- /prover/libs/plonky2-bitcoin-hpke/src/kem.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/prover/libs/plonky2-bitcoin-hpke/src/kem.rs -------------------------------------------------------------------------------- /prover/libs/plonky2-bitcoin-hpke/src/labeled_hkdf.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/prover/libs/plonky2-bitcoin-hpke/src/labeled_hkdf.rs -------------------------------------------------------------------------------- /prover/libs/plonky2-bitcoin-hpke/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/prover/libs/plonky2-bitcoin-hpke/src/lib.rs -------------------------------------------------------------------------------- /prover/libs/plonky2-bitcoin-hpke/src/utils.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/prover/libs/plonky2-bitcoin-hpke/src/utils.rs -------------------------------------------------------------------------------- /prover/libs/plonky2-bytes/Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/prover/libs/plonky2-bytes/Cargo.lock -------------------------------------------------------------------------------- /prover/libs/plonky2-bytes/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/prover/libs/plonky2-bytes/Cargo.toml -------------------------------------------------------------------------------- /prover/libs/plonky2-bytes/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/prover/libs/plonky2-bytes/src/lib.rs -------------------------------------------------------------------------------- /prover/libs/plonky2-chacha20-poly1305/Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/prover/libs/plonky2-chacha20-poly1305/Cargo.lock -------------------------------------------------------------------------------- /prover/libs/plonky2-chacha20-poly1305/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/prover/libs/plonky2-chacha20-poly1305/Cargo.toml -------------------------------------------------------------------------------- /prover/libs/plonky2-chacha20-poly1305/src/chacha20/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/prover/libs/plonky2-chacha20-poly1305/src/chacha20/mod.rs -------------------------------------------------------------------------------- /prover/libs/plonky2-chacha20-poly1305/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/prover/libs/plonky2-chacha20-poly1305/src/lib.rs -------------------------------------------------------------------------------- /prover/libs/plonky2-chacha20-poly1305/src/poly1305/mac.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/prover/libs/plonky2-chacha20-poly1305/src/poly1305/mac.rs -------------------------------------------------------------------------------- /prover/libs/plonky2-chacha20-poly1305/src/poly1305/mod.rs: -------------------------------------------------------------------------------- 1 | pub(crate) mod mac; 2 | -------------------------------------------------------------------------------- /prover/libs/plonky2-chacha20-poly1305/src/u32_bits.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/prover/libs/plonky2-chacha20-poly1305/src/u32_bits.rs -------------------------------------------------------------------------------- /prover/libs/plonky2-cosigning-key-validation/Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/prover/libs/plonky2-cosigning-key-validation/Cargo.lock -------------------------------------------------------------------------------- /prover/libs/plonky2-cosigning-key-validation/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/prover/libs/plonky2-cosigning-key-validation/Cargo.toml -------------------------------------------------------------------------------- /prover/libs/plonky2-cosigning-key-validation/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/prover/libs/plonky2-cosigning-key-validation/Makefile -------------------------------------------------------------------------------- /prover/libs/plonky2-cosigning-key-validation/README.md: -------------------------------------------------------------------------------- 1 | # Muun's server cosigning key validation library 2 | -------------------------------------------------------------------------------- /prover/libs/plonky2-cosigning-key-validation/src/inputs.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/prover/libs/plonky2-cosigning-key-validation/src/inputs.rs -------------------------------------------------------------------------------- /prover/libs/plonky2-cosigning-key-validation/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/prover/libs/plonky2-cosigning-key-validation/src/lib.rs -------------------------------------------------------------------------------- /prover/libs/plonky2-ecdsa/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/prover/libs/plonky2-ecdsa/.gitignore -------------------------------------------------------------------------------- /prover/libs/plonky2-ecdsa/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/prover/libs/plonky2-ecdsa/Cargo.toml -------------------------------------------------------------------------------- /prover/libs/plonky2-ecdsa/LICENSE-APACHE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/prover/libs/plonky2-ecdsa/LICENSE-APACHE -------------------------------------------------------------------------------- /prover/libs/plonky2-ecdsa/LICENSE-MIT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/prover/libs/plonky2-ecdsa/LICENSE-MIT -------------------------------------------------------------------------------- /prover/libs/plonky2-ecdsa/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/prover/libs/plonky2-ecdsa/README.md -------------------------------------------------------------------------------- /prover/libs/plonky2-ecdsa/src/curve/curve_adds.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/prover/libs/plonky2-ecdsa/src/curve/curve_adds.rs -------------------------------------------------------------------------------- /prover/libs/plonky2-ecdsa/src/curve/curve_msm.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/prover/libs/plonky2-ecdsa/src/curve/curve_msm.rs -------------------------------------------------------------------------------- /prover/libs/plonky2-ecdsa/src/curve/curve_summation.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/prover/libs/plonky2-ecdsa/src/curve/curve_summation.rs -------------------------------------------------------------------------------- /prover/libs/plonky2-ecdsa/src/curve/curve_types.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/prover/libs/plonky2-ecdsa/src/curve/curve_types.rs -------------------------------------------------------------------------------- /prover/libs/plonky2-ecdsa/src/curve/ecdsa.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/prover/libs/plonky2-ecdsa/src/curve/ecdsa.rs -------------------------------------------------------------------------------- /prover/libs/plonky2-ecdsa/src/curve/glv.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/prover/libs/plonky2-ecdsa/src/curve/glv.rs -------------------------------------------------------------------------------- /prover/libs/plonky2-ecdsa/src/curve/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/prover/libs/plonky2-ecdsa/src/curve/mod.rs -------------------------------------------------------------------------------- /prover/libs/plonky2-ecdsa/src/curve/secp256k1.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/prover/libs/plonky2-ecdsa/src/curve/secp256k1.rs -------------------------------------------------------------------------------- /prover/libs/plonky2-ecdsa/src/gadgets/biguint.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/prover/libs/plonky2-ecdsa/src/gadgets/biguint.rs -------------------------------------------------------------------------------- /prover/libs/plonky2-ecdsa/src/gadgets/curve.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/prover/libs/plonky2-ecdsa/src/gadgets/curve.rs -------------------------------------------------------------------------------- /prover/libs/plonky2-ecdsa/src/gadgets/curve_fixed_base.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/prover/libs/plonky2-ecdsa/src/gadgets/curve_fixed_base.rs -------------------------------------------------------------------------------- /prover/libs/plonky2-ecdsa/src/gadgets/curve_msm.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/prover/libs/plonky2-ecdsa/src/gadgets/curve_msm.rs -------------------------------------------------------------------------------- /prover/libs/plonky2-ecdsa/src/gadgets/ecdsa.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/prover/libs/plonky2-ecdsa/src/gadgets/ecdsa.rs -------------------------------------------------------------------------------- /prover/libs/plonky2-ecdsa/src/gadgets/glv.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/prover/libs/plonky2-ecdsa/src/gadgets/glv.rs -------------------------------------------------------------------------------- /prover/libs/plonky2-ecdsa/src/gadgets/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/prover/libs/plonky2-ecdsa/src/gadgets/mod.rs -------------------------------------------------------------------------------- /prover/libs/plonky2-ecdsa/src/gadgets/nonnative.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/prover/libs/plonky2-ecdsa/src/gadgets/nonnative.rs -------------------------------------------------------------------------------- /prover/libs/plonky2-ecdsa/src/gadgets/split_nonnative.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/prover/libs/plonky2-ecdsa/src/gadgets/split_nonnative.rs -------------------------------------------------------------------------------- /prover/libs/plonky2-ecdsa/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/prover/libs/plonky2-ecdsa/src/lib.rs -------------------------------------------------------------------------------- /prover/libs/plonky2-hkdf-sha256/Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/prover/libs/plonky2-hkdf-sha256/Cargo.lock -------------------------------------------------------------------------------- /prover/libs/plonky2-hkdf-sha256/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/prover/libs/plonky2-hkdf-sha256/Cargo.toml -------------------------------------------------------------------------------- /prover/libs/plonky2-hkdf-sha256/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/prover/libs/plonky2-hkdf-sha256/README.md -------------------------------------------------------------------------------- /prover/libs/plonky2-hkdf-sha256/src/hkdf.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/prover/libs/plonky2-hkdf-sha256/src/hkdf.rs -------------------------------------------------------------------------------- /prover/libs/plonky2-hkdf-sha256/src/hmac.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/prover/libs/plonky2-hkdf-sha256/src/hmac.rs -------------------------------------------------------------------------------- /prover/libs/plonky2-hkdf-sha256/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/prover/libs/plonky2-hkdf-sha256/src/lib.rs -------------------------------------------------------------------------------- /prover/libs/plonky2-hkdf-sha256/src/sha256_bytes.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/prover/libs/plonky2-hkdf-sha256/src/sha256_bytes.rs -------------------------------------------------------------------------------- /prover/libs/plonky2-precomputed-windowed-mul/Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/prover/libs/plonky2-precomputed-windowed-mul/Cargo.lock -------------------------------------------------------------------------------- /prover/libs/plonky2-precomputed-windowed-mul/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/prover/libs/plonky2-precomputed-windowed-mul/Cargo.toml -------------------------------------------------------------------------------- /prover/libs/plonky2-precomputed-windowed-mul/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/prover/libs/plonky2-precomputed-windowed-mul/src/lib.rs -------------------------------------------------------------------------------- /prover/libs/plonky2-precomputed-windowed-mul/src/mul.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/prover/libs/plonky2-precomputed-windowed-mul/src/mul.rs -------------------------------------------------------------------------------- /prover/libs/plonky2-precomputed-windowed-mul/src/utils.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/prover/libs/plonky2-precomputed-windowed-mul/src/utils.rs -------------------------------------------------------------------------------- /prover/libs/plonky2-sha256/Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/prover/libs/plonky2-sha256/Cargo.lock -------------------------------------------------------------------------------- /prover/libs/plonky2-sha256/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/prover/libs/plonky2-sha256/Cargo.toml -------------------------------------------------------------------------------- /prover/libs/plonky2-sha256/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/prover/libs/plonky2-sha256/LICENSE -------------------------------------------------------------------------------- /prover/libs/plonky2-sha256/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/prover/libs/plonky2-sha256/README.md -------------------------------------------------------------------------------- /prover/libs/plonky2-sha256/src/circuit.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/prover/libs/plonky2-sha256/src/circuit.rs -------------------------------------------------------------------------------- /prover/libs/plonky2-sha256/src/lib.rs: -------------------------------------------------------------------------------- 1 | pub mod circuit; 2 | -------------------------------------------------------------------------------- /prover/libs/plonky2-u32/Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/prover/libs/plonky2-u32/Cargo.lock -------------------------------------------------------------------------------- /prover/libs/plonky2-u32/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/prover/libs/plonky2-u32/Cargo.toml -------------------------------------------------------------------------------- /prover/libs/plonky2-u32/LICENSE-APACHE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/prover/libs/plonky2-u32/LICENSE-APACHE -------------------------------------------------------------------------------- /prover/libs/plonky2-u32/LICENSE-MIT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/prover/libs/plonky2-u32/LICENSE-MIT -------------------------------------------------------------------------------- /prover/libs/plonky2-u32/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/prover/libs/plonky2-u32/README.md -------------------------------------------------------------------------------- /prover/libs/plonky2-u32/src/gadgets/arithmetic_u32.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/prover/libs/plonky2-u32/src/gadgets/arithmetic_u32.rs -------------------------------------------------------------------------------- /prover/libs/plonky2-u32/src/gadgets/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/prover/libs/plonky2-u32/src/gadgets/mod.rs -------------------------------------------------------------------------------- /prover/libs/plonky2-u32/src/gadgets/multiple_comparison.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/prover/libs/plonky2-u32/src/gadgets/multiple_comparison.rs -------------------------------------------------------------------------------- /prover/libs/plonky2-u32/src/gadgets/range_check.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/prover/libs/plonky2-u32/src/gadgets/range_check.rs -------------------------------------------------------------------------------- /prover/libs/plonky2-u32/src/gates/add_many_u32.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/prover/libs/plonky2-u32/src/gates/add_many_u32.rs -------------------------------------------------------------------------------- /prover/libs/plonky2-u32/src/gates/arithmetic_u32.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/prover/libs/plonky2-u32/src/gates/arithmetic_u32.rs -------------------------------------------------------------------------------- /prover/libs/plonky2-u32/src/gates/comparison.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/prover/libs/plonky2-u32/src/gates/comparison.rs -------------------------------------------------------------------------------- /prover/libs/plonky2-u32/src/gates/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/prover/libs/plonky2-u32/src/gates/mod.rs -------------------------------------------------------------------------------- /prover/libs/plonky2-u32/src/gates/range_check_u32.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/prover/libs/plonky2-u32/src/gates/range_check_u32.rs -------------------------------------------------------------------------------- /prover/libs/plonky2-u32/src/gates/subtraction_u32.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/prover/libs/plonky2-u32/src/gates/subtraction_u32.rs -------------------------------------------------------------------------------- /prover/libs/plonky2-u32/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/prover/libs/plonky2-u32/src/lib.rs -------------------------------------------------------------------------------- /prover/libs/plonky2-u32/src/serialization.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/prover/libs/plonky2-u32/src/serialization.rs -------------------------------------------------------------------------------- /prover/libs/plonky2-u32/src/witness.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/prover/libs/plonky2-u32/src/witness.rs -------------------------------------------------------------------------------- /tools/bootstrap-gomobile.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/tools/bootstrap-gomobile.sh -------------------------------------------------------------------------------- /tools/ios-assign-localhost-ip-for-debug.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/tools/ios-assign-localhost-ip-for-debug.sh -------------------------------------------------------------------------------- /tools/ios-update-pods-registry.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/tools/ios-update-pods-registry.sh -------------------------------------------------------------------------------- /tools/libwallet-ios.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/tools/libwallet-ios.sh -------------------------------------------------------------------------------- /tools/patch-go.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muun/falcon/HEAD/tools/patch-go.sh --------------------------------------------------------------------------------