├── .gitignore ├── LICENSE ├── OCRApp.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ ├── xcshareddata │ │ ├── IDEWorkspaceChecks.plist │ │ └── swiftpm │ │ │ └── Package.resolved │ └── xcuserdata │ │ └── Salmik.xcuserdatad │ │ └── UserInterfaceState.xcuserstate └── xcuserdata │ └── Salmik.xcuserdatad │ ├── xcdebugger │ └── Breakpoints_v2.xcbkptlist │ └── xcschemes │ └── xcschememanagement.plist ├── OCRApp.xcworkspace ├── contents.xcworkspacedata ├── xcshareddata │ └── IDEWorkspaceChecks.plist └── xcuserdata │ └── Salmik.xcuserdatad │ ├── UserInterfaceState.xcuserstate │ └── xcdebugger │ └── Breakpoints_v2.xcbkptlist ├── OCRApp ├── Additional │ ├── AppDelegate.swift │ ├── Info.plist │ ├── SPPermissions │ │ ├── Data │ │ │ ├── SPPermissionsColor.swift │ │ │ ├── SPPermissionsDelay.swift │ │ │ ├── SPPermissionsDraw.swift │ │ │ ├── SPPermissionsHaptic.swift │ │ │ ├── SPPermissionsOpener.swift │ │ │ └── SPPermissionsText.swift │ │ ├── Interface │ │ │ ├── Dialog │ │ │ │ ├── Controllers │ │ │ │ │ └── SPPermissionsDialogController.swift │ │ │ │ └── Views │ │ │ │ │ ├── SPPermissionsDialogFooterCommentView.swift │ │ │ │ │ └── SPPermissionsDialogView.swift │ │ │ ├── List │ │ │ │ ├── Controllers │ │ │ │ │ └── SPPermissionsListController.swift │ │ │ │ └── Views │ │ │ │ │ ├── SPPermissionsListFooterCommentView.swift │ │ │ │ │ └── SPPermissionsListHeaderView.swift │ │ │ ├── Native │ │ │ │ └── SPPermissionsNativeController.swift │ │ │ └── Shared │ │ │ │ ├── Buttons │ │ │ │ ├── SPPermissionActionButton.swift │ │ │ │ └── SPPermissionsCloseButton.swift │ │ │ │ ├── Labels │ │ │ │ └── SPPermissionsLabel.swift │ │ │ │ ├── Other │ │ │ │ ├── SPPermissionIconView.swift │ │ │ │ └── SPPermissionsGradeBlurView.swift │ │ │ │ └── Tables │ │ │ │ └── SPPermissionTableViewCell.swift │ │ ├── Models │ │ │ ├── SPPermission.swift │ │ │ └── SPPermissionDeniedAlertData.swift │ │ ├── Permissions │ │ │ ├── Handlers │ │ │ │ └── SPRequestPermissionLocationHandler.swift │ │ │ ├── SPBluetoothPermission.swift │ │ │ ├── SPCalendarPermission.swift │ │ │ ├── SPCameraPermission.swift │ │ │ ├── SPContactsPermission.swift │ │ │ ├── SPLocationPermission.swift │ │ │ ├── SPMediaLibraryPermission.swift │ │ │ ├── SPMicrophonePermission.swift │ │ │ ├── SPMotionPermission.swift │ │ │ ├── SPNotificationPermission.swift │ │ │ ├── SPPhotoLibraryPermission.swift │ │ │ ├── SPRemindersPermission.swift │ │ │ └── SPSpeechPermission.swift │ │ ├── Protocols │ │ │ ├── SPPermissionProtocol.swift │ │ │ ├── SPPermissionsControllerProtocol.swift │ │ │ ├── SPPermissionsDataSource.swift │ │ │ └── SPPermissionsDelegate.swift │ │ └── SPPermissions.swift │ └── SceneDelegate.swift ├── Assests │ └── Assets.xcassets │ │ ├── AppIcon.appiconset │ │ ├── Contents.json │ │ ├── Icon-40@2x.png │ │ ├── Icon-40@3x.png │ │ ├── Icon-60@2x.png │ │ └── Icon-60@3x.png │ │ ├── Contacts.imageset │ │ ├── Contacts.png │ │ └── Contents.json │ │ ├── Contents.json │ │ ├── Icon-3.imageset │ │ ├── Contents.json │ │ └── Icon-3.png │ │ ├── Launch.imageset │ │ ├── Contents.json │ │ └── Launch.png │ │ ├── Menu.imageset │ │ ├── Contents.json │ │ └── Menu.png │ │ ├── Profile.imageset │ │ ├── Contents.json │ │ └── Profile.png │ │ ├── Settings.imageset │ │ ├── Contents.json │ │ └── Settings.png │ │ ├── general-ocr-100.imageset │ │ ├── Contents.json │ │ └── general-ocr-100.png │ │ ├── general-ocr-50.imageset │ │ ├── Contents.json │ │ └── general-ocr-50.png │ │ ├── heart.imageset │ │ ├── Contents.json │ │ └── heart@2x.png │ │ ├── ic_done_all_dark_48pt.imageset │ │ ├── Contents.json │ │ ├── ic_done_all_48pt.png │ │ ├── ic_done_all_48pt_2x.png │ │ └── ic_done_all_48pt_3x.png │ │ ├── icon2-1.imageset │ │ ├── Contents.json │ │ └── icon2.png │ │ ├── icon2.imageset │ │ ├── Contents.json │ │ └── icon2.png │ │ ├── image1.imageset │ │ ├── Contents.json │ │ └── reece_Houses_Fortress_Corfu_Old_Fortress_Cities_5760x3840.jpg │ │ ├── photos.imageset │ │ ├── Contents.json │ │ └── photos@2x.png │ │ └── sort-button-with-three-lines.imageset │ │ ├── Contents.json │ │ └── sort-button-with-three-lines.png ├── Auth │ ├── Auth Helpers │ │ ├── AuthError.swift │ │ ├── AuthResult.swift │ │ └── Validators.swift │ ├── CheckCodeViewController.swift │ ├── MainAuthViewController.swift │ ├── SMSAuthViewController.swift │ ├── SignInViewController.swift │ └── SignUpViewController.swift ├── Controller │ ├── Detail Screen │ │ ├── DetailScreenMethods.swift │ │ └── ImageDetailViewController.swift │ ├── Future TO-DO │ │ ├── GenerateBarCodeViewController.swift │ │ ├── GenerateQRViewController.swift │ │ ├── Main Future Screen │ │ │ ├── CollectionView.swift │ │ │ ├── FunctionsViewController.swift │ │ │ ├── FutureModel.swift │ │ │ ├── MethodsExtension.swift │ │ │ ├── NotificationExtension.swift │ │ │ └── SwiftEntryKitExtension.swift │ │ ├── QuestionsTableViewController.swift │ │ ├── ScanBarCodeViewController.swift │ │ ├── ScanQRViewController.swift │ │ └── SpeechViewController.swift │ ├── Main Screen │ │ ├── CollectionVIewExtension.swift │ │ ├── ImagePicker.swift │ │ ├── MainViewController.swift │ │ ├── Menu │ │ │ ├── MenuTableViewCell.swift │ │ │ └── MenuTableViewController.swift │ │ ├── NavigationCustomize.swift │ │ ├── SaveMethods.swift │ │ ├── ScannerExtension.swift │ │ └── SearchResults.swift │ ├── OCR Screen │ │ └── OCRViewController.swift │ └── Profile Screen │ │ └── ProfileViewController.swift ├── Managers │ ├── Album.swift │ ├── RateManager.swift │ └── Utilities.swift ├── Model │ ├── MenuModel.swift │ └── Section.swift └── View │ ├── AdditionalCollectionViewCell.swift │ ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard │ ├── ExpandableHeaderView.swift │ ├── ImageScrollView.swift │ ├── MainImageCollectionViewCell.swift │ ├── MyPopView.swift │ └── UIView+Message.swift ├── OCRAppTests ├── Info.plist └── OCRAppTests.swift ├── OCRAppUITests ├── Info.plist └── OCRAppUITests.swift ├── Podfile ├── Podfile.lock ├── Pods ├── BoringSSL-GRPC │ ├── LICENSE │ ├── err_data.c │ ├── err_data.c.grpc_back │ └── src │ │ ├── crypto │ │ ├── asn1 │ │ │ ├── a_bitstr.c │ │ │ ├── a_bitstr.c.grpc_back │ │ │ ├── a_bool.c │ │ │ ├── a_bool.c.grpc_back │ │ │ ├── a_d2i_fp.c │ │ │ ├── a_d2i_fp.c.grpc_back │ │ │ ├── a_dup.c │ │ │ ├── a_dup.c.grpc_back │ │ │ ├── a_enum.c │ │ │ ├── a_enum.c.grpc_back │ │ │ ├── a_gentm.c │ │ │ ├── a_gentm.c.grpc_back │ │ │ ├── a_i2d_fp.c │ │ │ ├── a_i2d_fp.c.grpc_back │ │ │ ├── a_int.c │ │ │ ├── a_int.c.grpc_back │ │ │ ├── a_mbstr.c │ │ │ ├── a_mbstr.c.grpc_back │ │ │ ├── a_object.c │ │ │ ├── a_object.c.grpc_back │ │ │ ├── a_octet.c │ │ │ ├── a_octet.c.grpc_back │ │ │ ├── a_print.c │ │ │ ├── a_print.c.grpc_back │ │ │ ├── a_strnid.c │ │ │ ├── a_strnid.c.grpc_back │ │ │ ├── a_time.c │ │ │ ├── a_time.c.grpc_back │ │ │ ├── a_type.c │ │ │ ├── a_type.c.grpc_back │ │ │ ├── a_utctm.c │ │ │ ├── a_utctm.c.grpc_back │ │ │ ├── a_utf8.c │ │ │ ├── a_utf8.c.grpc_back │ │ │ ├── asn1_lib.c │ │ │ ├── asn1_lib.c.grpc_back │ │ │ ├── asn1_locl.h │ │ │ ├── asn1_locl.h.grpc_back │ │ │ ├── asn1_par.c │ │ │ ├── asn1_par.c.grpc_back │ │ │ ├── asn_pack.c │ │ │ ├── asn_pack.c.grpc_back │ │ │ ├── f_enum.c │ │ │ ├── f_enum.c.grpc_back │ │ │ ├── f_int.c │ │ │ ├── f_int.c.grpc_back │ │ │ ├── f_string.c │ │ │ ├── f_string.c.grpc_back │ │ │ ├── tasn_dec.c │ │ │ ├── tasn_dec.c.grpc_back │ │ │ ├── tasn_enc.c │ │ │ ├── tasn_enc.c.grpc_back │ │ │ ├── tasn_fre.c │ │ │ ├── tasn_fre.c.grpc_back │ │ │ ├── tasn_new.c │ │ │ ├── tasn_new.c.grpc_back │ │ │ ├── tasn_typ.c │ │ │ ├── tasn_typ.c.grpc_back │ │ │ ├── tasn_utl.c │ │ │ ├── tasn_utl.c.grpc_back │ │ │ ├── time_support.c │ │ │ └── time_support.c.grpc_back │ │ ├── base64 │ │ │ ├── base64.c │ │ │ └── base64.c.grpc_back │ │ ├── bio │ │ │ ├── bio.c │ │ │ ├── bio.c.grpc_back │ │ │ ├── bio_mem.c │ │ │ ├── bio_mem.c.grpc_back │ │ │ ├── connect.c │ │ │ ├── connect.c.grpc_back │ │ │ ├── fd.c │ │ │ ├── fd.c.grpc_back │ │ │ ├── file.c │ │ │ ├── file.c.grpc_back │ │ │ ├── hexdump.c │ │ │ ├── hexdump.c.grpc_back │ │ │ ├── internal.h │ │ │ ├── internal.h.grpc_back │ │ │ ├── pair.c │ │ │ ├── pair.c.grpc_back │ │ │ ├── printf.c │ │ │ ├── printf.c.grpc_back │ │ │ ├── socket.c │ │ │ ├── socket.c.grpc_back │ │ │ ├── socket_helper.c │ │ │ └── socket_helper.c.grpc_back │ │ ├── bn_extra │ │ │ ├── bn_asn1.c │ │ │ ├── bn_asn1.c.grpc_back │ │ │ ├── convert.c │ │ │ └── convert.c.grpc_back │ │ ├── buf │ │ │ ├── buf.c │ │ │ └── buf.c.grpc_back │ │ ├── bytestring │ │ │ ├── asn1_compat.c │ │ │ ├── asn1_compat.c.grpc_back │ │ │ ├── ber.c │ │ │ ├── ber.c.grpc_back │ │ │ ├── cbb.c │ │ │ ├── cbb.c.grpc_back │ │ │ ├── cbs.c │ │ │ ├── cbs.c.grpc_back │ │ │ ├── internal.h │ │ │ ├── internal.h.grpc_back │ │ │ ├── unicode.c │ │ │ └── unicode.c.grpc_back │ │ ├── chacha │ │ │ ├── chacha.c │ │ │ ├── chacha.c.grpc_back │ │ │ ├── internal.h │ │ │ └── internal.h.grpc_back │ │ ├── cipher_extra │ │ │ ├── cipher_extra.c │ │ │ ├── cipher_extra.c.grpc_back │ │ │ ├── derive_key.c │ │ │ ├── derive_key.c.grpc_back │ │ │ ├── e_aesccm.c │ │ │ ├── e_aesccm.c.grpc_back │ │ │ ├── e_aesctrhmac.c │ │ │ ├── e_aesctrhmac.c.grpc_back │ │ │ ├── e_aesgcmsiv.c │ │ │ ├── e_aesgcmsiv.c.grpc_back │ │ │ ├── e_chacha20poly1305.c │ │ │ ├── e_chacha20poly1305.c.grpc_back │ │ │ ├── e_null.c │ │ │ ├── e_null.c.grpc_back │ │ │ ├── e_rc2.c │ │ │ ├── e_rc2.c.grpc_back │ │ │ ├── e_rc4.c │ │ │ ├── e_rc4.c.grpc_back │ │ │ ├── e_tls.c │ │ │ ├── e_tls.c.grpc_back │ │ │ ├── internal.h │ │ │ ├── internal.h.grpc_back │ │ │ ├── tls_cbc.c │ │ │ └── tls_cbc.c.grpc_back │ │ ├── cmac │ │ │ ├── cmac.c │ │ │ └── cmac.c.grpc_back │ │ ├── conf │ │ │ ├── conf.c │ │ │ ├── conf.c.grpc_back │ │ │ ├── conf_def.h │ │ │ ├── conf_def.h.grpc_back │ │ │ ├── internal.h │ │ │ └── internal.h.grpc_back │ │ ├── cpu-aarch64-fuchsia.c │ │ ├── cpu-aarch64-fuchsia.c.grpc_back │ │ ├── cpu-aarch64-linux.c │ │ ├── cpu-aarch64-linux.c.grpc_back │ │ ├── cpu-arm-linux.c │ │ ├── cpu-arm-linux.c.grpc_back │ │ ├── cpu-arm-linux.h │ │ ├── cpu-arm-linux.h.grpc_back │ │ ├── cpu-arm.c │ │ ├── cpu-arm.c.grpc_back │ │ ├── cpu-intel.c │ │ ├── cpu-intel.c.grpc_back │ │ ├── cpu-ppc64le.c │ │ ├── cpu-ppc64le.c.grpc_back │ │ ├── crypto.c │ │ ├── crypto.c.grpc_back │ │ ├── curve25519 │ │ │ ├── spake25519.c │ │ │ └── spake25519.c.grpc_back │ │ ├── dh │ │ │ ├── check.c │ │ │ ├── check.c.grpc_back │ │ │ ├── dh.c │ │ │ ├── dh.c.grpc_back │ │ │ ├── dh_asn1.c │ │ │ ├── dh_asn1.c.grpc_back │ │ │ ├── params.c │ │ │ └── params.c.grpc_back │ │ ├── digest_extra │ │ │ ├── digest_extra.c │ │ │ └── digest_extra.c.grpc_back │ │ ├── dsa │ │ │ ├── dsa.c │ │ │ ├── dsa.c.grpc_back │ │ │ ├── dsa_asn1.c │ │ │ └── dsa_asn1.c.grpc_back │ │ ├── ec_extra │ │ │ ├── ec_asn1.c │ │ │ ├── ec_asn1.c.grpc_back │ │ │ ├── ec_derive.c │ │ │ └── ec_derive.c.grpc_back │ │ ├── ecdh_extra │ │ │ ├── ecdh_extra.c │ │ │ └── ecdh_extra.c.grpc_back │ │ ├── ecdsa_extra │ │ │ ├── ecdsa_asn1.c │ │ │ └── ecdsa_asn1.c.grpc_back │ │ ├── engine │ │ │ ├── engine.c │ │ │ └── engine.c.grpc_back │ │ ├── err │ │ │ ├── err.c │ │ │ ├── err.c.grpc_back │ │ │ ├── internal.h │ │ │ └── internal.h.grpc_back │ │ ├── evp │ │ │ ├── digestsign.c │ │ │ ├── digestsign.c.grpc_back │ │ │ ├── evp.c │ │ │ ├── evp.c.grpc_back │ │ │ ├── evp_asn1.c │ │ │ ├── evp_asn1.c.grpc_back │ │ │ ├── evp_ctx.c │ │ │ ├── evp_ctx.c.grpc_back │ │ │ ├── internal.h │ │ │ ├── internal.h.grpc_back │ │ │ ├── p_dsa_asn1.c │ │ │ ├── p_dsa_asn1.c.grpc_back │ │ │ ├── p_ec.c │ │ │ ├── p_ec.c.grpc_back │ │ │ ├── p_ec_asn1.c │ │ │ ├── p_ec_asn1.c.grpc_back │ │ │ ├── p_ed25519.c │ │ │ ├── p_ed25519.c.grpc_back │ │ │ ├── p_ed25519_asn1.c │ │ │ ├── p_ed25519_asn1.c.grpc_back │ │ │ ├── p_rsa.c │ │ │ ├── p_rsa.c.grpc_back │ │ │ ├── p_rsa_asn1.c │ │ │ ├── p_rsa_asn1.c.grpc_back │ │ │ ├── p_x25519.c │ │ │ ├── p_x25519.c.grpc_back │ │ │ ├── p_x25519_asn1.c │ │ │ ├── p_x25519_asn1.c.grpc_back │ │ │ ├── pbkdf.c │ │ │ ├── pbkdf.c.grpc_back │ │ │ ├── print.c │ │ │ ├── print.c.grpc_back │ │ │ ├── scrypt.c │ │ │ ├── scrypt.c.grpc_back │ │ │ ├── sign.c │ │ │ └── sign.c.grpc_back │ │ ├── ex_data.c │ │ ├── ex_data.c.grpc_back │ │ ├── fipsmodule │ │ │ ├── aes │ │ │ │ ├── aes.c │ │ │ │ ├── aes.c.grpc_back │ │ │ │ ├── aes_nohw.c │ │ │ │ ├── aes_nohw.c.grpc_back │ │ │ │ ├── internal.h │ │ │ │ ├── internal.h.grpc_back │ │ │ │ ├── key_wrap.c │ │ │ │ ├── key_wrap.c.grpc_back │ │ │ │ ├── mode_wrappers.c │ │ │ │ └── mode_wrappers.c.grpc_back │ │ │ ├── bn │ │ │ │ ├── add.c │ │ │ │ ├── add.c.grpc_back │ │ │ │ ├── asm │ │ │ │ │ ├── x86_64-gcc.c │ │ │ │ │ └── x86_64-gcc.c.grpc_back │ │ │ │ ├── bn.c │ │ │ │ ├── bn.c.grpc_back │ │ │ │ ├── bytes.c │ │ │ │ ├── bytes.c.grpc_back │ │ │ │ ├── cmp.c │ │ │ │ ├── cmp.c.grpc_back │ │ │ │ ├── ctx.c │ │ │ │ ├── ctx.c.grpc_back │ │ │ │ ├── div.c │ │ │ │ ├── div.c.grpc_back │ │ │ │ ├── div_extra.c │ │ │ │ ├── div_extra.c.grpc_back │ │ │ │ ├── exponentiation.c │ │ │ │ ├── exponentiation.c.grpc_back │ │ │ │ ├── gcd.c │ │ │ │ ├── gcd.c.grpc_back │ │ │ │ ├── gcd_extra.c │ │ │ │ ├── gcd_extra.c.grpc_back │ │ │ │ ├── generic.c │ │ │ │ ├── generic.c.grpc_back │ │ │ │ ├── internal.h │ │ │ │ ├── internal.h.grpc_back │ │ │ │ ├── jacobi.c │ │ │ │ ├── jacobi.c.grpc_back │ │ │ │ ├── montgomery.c │ │ │ │ ├── montgomery.c.grpc_back │ │ │ │ ├── montgomery_inv.c │ │ │ │ ├── montgomery_inv.c.grpc_back │ │ │ │ ├── mul.c │ │ │ │ ├── mul.c.grpc_back │ │ │ │ ├── prime.c │ │ │ │ ├── prime.c.grpc_back │ │ │ │ ├── random.c │ │ │ │ ├── random.c.grpc_back │ │ │ │ ├── rsaz_exp.c │ │ │ │ ├── rsaz_exp.c.grpc_back │ │ │ │ ├── rsaz_exp.h │ │ │ │ ├── rsaz_exp.h.grpc_back │ │ │ │ ├── shift.c │ │ │ │ ├── shift.c.grpc_back │ │ │ │ ├── sqrt.c │ │ │ │ └── sqrt.c.grpc_back │ │ │ ├── cipher │ │ │ │ ├── aead.c │ │ │ │ ├── aead.c.grpc_back │ │ │ │ ├── cipher.c │ │ │ │ ├── cipher.c.grpc_back │ │ │ │ ├── e_aes.c │ │ │ │ ├── e_aes.c.grpc_back │ │ │ │ ├── e_des.c │ │ │ │ ├── e_des.c.grpc_back │ │ │ │ ├── internal.h │ │ │ │ └── internal.h.grpc_back │ │ │ ├── delocate.h │ │ │ ├── delocate.h.grpc_back │ │ │ ├── des │ │ │ │ ├── des.c │ │ │ │ ├── des.c.grpc_back │ │ │ │ ├── internal.h │ │ │ │ └── internal.h.grpc_back │ │ │ ├── digest │ │ │ │ ├── digest.c │ │ │ │ ├── digest.c.grpc_back │ │ │ │ ├── digests.c │ │ │ │ ├── digests.c.grpc_back │ │ │ │ ├── internal.h │ │ │ │ ├── internal.h.grpc_back │ │ │ │ ├── md32_common.h │ │ │ │ └── md32_common.h.grpc_back │ │ │ ├── ec │ │ │ │ ├── ec.c │ │ │ │ ├── ec.c.grpc_back │ │ │ │ ├── ec_key.c │ │ │ │ ├── ec_key.c.grpc_back │ │ │ │ ├── ec_montgomery.c │ │ │ │ ├── ec_montgomery.c.grpc_back │ │ │ │ ├── felem.c │ │ │ │ ├── felem.c.grpc_back │ │ │ │ ├── internal.h │ │ │ │ ├── internal.h.grpc_back │ │ │ │ ├── oct.c │ │ │ │ ├── oct.c.grpc_back │ │ │ │ ├── p224-64.c │ │ │ │ ├── p224-64.c.grpc_back │ │ │ │ ├── p256-x86_64-table.h │ │ │ │ ├── p256-x86_64-table.h.grpc_back │ │ │ │ ├── p256-x86_64.c │ │ │ │ ├── p256-x86_64.c.grpc_back │ │ │ │ ├── p256-x86_64.h │ │ │ │ ├── p256-x86_64.h.grpc_back │ │ │ │ ├── scalar.c │ │ │ │ ├── scalar.c.grpc_back │ │ │ │ ├── simple.c │ │ │ │ ├── simple.c.grpc_back │ │ │ │ ├── simple_mul.c │ │ │ │ ├── simple_mul.c.grpc_back │ │ │ │ ├── util.c │ │ │ │ ├── util.c.grpc_back │ │ │ │ ├── wnaf.c │ │ │ │ └── wnaf.c.grpc_back │ │ │ ├── ecdh │ │ │ │ ├── ecdh.c │ │ │ │ └── ecdh.c.grpc_back │ │ │ ├── ecdsa │ │ │ │ ├── ecdsa.c │ │ │ │ └── ecdsa.c.grpc_back │ │ │ ├── fips_shared_support.c │ │ │ ├── fips_shared_support.c.grpc_back │ │ │ ├── hmac │ │ │ │ ├── hmac.c │ │ │ │ └── hmac.c.grpc_back │ │ │ ├── is_fips.c │ │ │ ├── is_fips.c.grpc_back │ │ │ ├── md4 │ │ │ │ ├── md4.c │ │ │ │ └── md4.c.grpc_back │ │ │ ├── md5 │ │ │ │ ├── internal.h │ │ │ │ ├── internal.h.grpc_back │ │ │ │ ├── md5.c │ │ │ │ └── md5.c.grpc_back │ │ │ ├── modes │ │ │ │ ├── cbc.c │ │ │ │ ├── cbc.c.grpc_back │ │ │ │ ├── cfb.c │ │ │ │ ├── cfb.c.grpc_back │ │ │ │ ├── ctr.c │ │ │ │ ├── ctr.c.grpc_back │ │ │ │ ├── gcm.c │ │ │ │ ├── gcm.c.grpc_back │ │ │ │ ├── gcm_nohw.c │ │ │ │ ├── gcm_nohw.c.grpc_back │ │ │ │ ├── internal.h │ │ │ │ ├── internal.h.grpc_back │ │ │ │ ├── ofb.c │ │ │ │ ├── ofb.c.grpc_back │ │ │ │ ├── polyval.c │ │ │ │ └── polyval.c.grpc_back │ │ │ ├── rand │ │ │ │ ├── ctrdrbg.c │ │ │ │ ├── ctrdrbg.c.grpc_back │ │ │ │ ├── internal.h │ │ │ │ ├── internal.h.grpc_back │ │ │ │ ├── rand.c │ │ │ │ ├── rand.c.grpc_back │ │ │ │ ├── urandom.c │ │ │ │ └── urandom.c.grpc_back │ │ │ ├── rsa │ │ │ │ ├── blinding.c │ │ │ │ ├── blinding.c.grpc_back │ │ │ │ ├── internal.h │ │ │ │ ├── internal.h.grpc_back │ │ │ │ ├── padding.c │ │ │ │ ├── padding.c.grpc_back │ │ │ │ ├── rsa.c │ │ │ │ ├── rsa.c.grpc_back │ │ │ │ ├── rsa_impl.c │ │ │ │ └── rsa_impl.c.grpc_back │ │ │ ├── self_check │ │ │ │ ├── self_check.c │ │ │ │ └── self_check.c.grpc_back │ │ │ ├── sha │ │ │ │ ├── internal.h │ │ │ │ ├── internal.h.grpc_back │ │ │ │ ├── sha1-altivec.c │ │ │ │ ├── sha1-altivec.c.grpc_back │ │ │ │ ├── sha1.c │ │ │ │ ├── sha1.c.grpc_back │ │ │ │ ├── sha256.c │ │ │ │ ├── sha256.c.grpc_back │ │ │ │ ├── sha512.c │ │ │ │ └── sha512.c.grpc_back │ │ │ └── tls │ │ │ │ ├── internal.h │ │ │ │ ├── internal.h.grpc_back │ │ │ │ ├── kdf.c │ │ │ │ └── kdf.c.grpc_back │ │ ├── hkdf │ │ │ ├── hkdf.c │ │ │ └── hkdf.c.grpc_back │ │ ├── hrss │ │ │ ├── hrss.c │ │ │ ├── hrss.c.grpc_back │ │ │ ├── internal.h │ │ │ └── internal.h.grpc_back │ │ ├── internal.h │ │ ├── internal.h.grpc_back │ │ ├── lhash │ │ │ ├── lhash.c │ │ │ └── lhash.c.grpc_back │ │ ├── mem.c │ │ ├── mem.c.grpc_back │ │ ├── obj │ │ │ ├── obj.c │ │ │ ├── obj.c.grpc_back │ │ │ ├── obj_dat.h │ │ │ ├── obj_dat.h.grpc_back │ │ │ ├── obj_xref.c │ │ │ └── obj_xref.c.grpc_back │ │ ├── pem │ │ │ ├── pem_all.c │ │ │ ├── pem_all.c.grpc_back │ │ │ ├── pem_info.c │ │ │ ├── pem_info.c.grpc_back │ │ │ ├── pem_lib.c │ │ │ ├── pem_lib.c.grpc_back │ │ │ ├── pem_oth.c │ │ │ ├── pem_oth.c.grpc_back │ │ │ ├── pem_pk8.c │ │ │ ├── pem_pk8.c.grpc_back │ │ │ ├── pem_pkey.c │ │ │ ├── pem_pkey.c.grpc_back │ │ │ ├── pem_x509.c │ │ │ ├── pem_x509.c.grpc_back │ │ │ ├── pem_xaux.c │ │ │ └── pem_xaux.c.grpc_back │ │ ├── pkcs7 │ │ │ ├── internal.h │ │ │ ├── internal.h.grpc_back │ │ │ ├── pkcs7.c │ │ │ ├── pkcs7.c.grpc_back │ │ │ ├── pkcs7_x509.c │ │ │ └── pkcs7_x509.c.grpc_back │ │ ├── pkcs8 │ │ │ ├── internal.h │ │ │ ├── internal.h.grpc_back │ │ │ ├── p5_pbev2.c │ │ │ ├── p5_pbev2.c.grpc_back │ │ │ ├── pkcs8.c │ │ │ ├── pkcs8.c.grpc_back │ │ │ ├── pkcs8_x509.c │ │ │ └── pkcs8_x509.c.grpc_back │ │ ├── poly1305 │ │ │ ├── internal.h │ │ │ ├── internal.h.grpc_back │ │ │ ├── poly1305.c │ │ │ ├── poly1305.c.grpc_back │ │ │ ├── poly1305_arm.c │ │ │ ├── poly1305_arm.c.grpc_back │ │ │ ├── poly1305_vec.c │ │ │ └── poly1305_vec.c.grpc_back │ │ ├── pool │ │ │ ├── internal.h │ │ │ ├── internal.h.grpc_back │ │ │ ├── pool.c │ │ │ └── pool.c.grpc_back │ │ ├── rand_extra │ │ │ ├── deterministic.c │ │ │ ├── deterministic.c.grpc_back │ │ │ ├── forkunsafe.c │ │ │ ├── forkunsafe.c.grpc_back │ │ │ ├── fuchsia.c │ │ │ ├── fuchsia.c.grpc_back │ │ │ ├── rand_extra.c │ │ │ ├── rand_extra.c.grpc_back │ │ │ ├── windows.c │ │ │ └── windows.c.grpc_back │ │ ├── rc4 │ │ │ ├── rc4.c │ │ │ └── rc4.c.grpc_back │ │ ├── refcount_c11.c │ │ ├── refcount_c11.c.grpc_back │ │ ├── refcount_lock.c │ │ ├── refcount_lock.c.grpc_back │ │ ├── rsa_extra │ │ │ ├── rsa_asn1.c │ │ │ ├── rsa_asn1.c.grpc_back │ │ │ ├── rsa_print.c │ │ │ └── rsa_print.c.grpc_back │ │ ├── siphash │ │ │ ├── siphash.c │ │ │ └── siphash.c.grpc_back │ │ ├── stack │ │ │ ├── stack.c │ │ │ └── stack.c.grpc_back │ │ ├── thread.c │ │ ├── thread.c.grpc_back │ │ ├── thread_none.c │ │ ├── thread_none.c.grpc_back │ │ ├── thread_pthread.c │ │ ├── thread_pthread.c.grpc_back │ │ ├── thread_win.c │ │ ├── thread_win.c.grpc_back │ │ ├── x509 │ │ │ ├── a_digest.c │ │ │ ├── a_digest.c.grpc_back │ │ │ ├── a_sign.c │ │ │ ├── a_sign.c.grpc_back │ │ │ ├── a_strex.c │ │ │ ├── a_strex.c.grpc_back │ │ │ ├── a_verify.c │ │ │ ├── a_verify.c.grpc_back │ │ │ ├── algorithm.c │ │ │ ├── algorithm.c.grpc_back │ │ │ ├── asn1_gen.c │ │ │ ├── asn1_gen.c.grpc_back │ │ │ ├── by_dir.c │ │ │ ├── by_dir.c.grpc_back │ │ │ ├── by_file.c │ │ │ ├── by_file.c.grpc_back │ │ │ ├── charmap.h │ │ │ ├── charmap.h.grpc_back │ │ │ ├── i2d_pr.c │ │ │ ├── i2d_pr.c.grpc_back │ │ │ ├── internal.h │ │ │ ├── internal.h.grpc_back │ │ │ ├── rsa_pss.c │ │ │ ├── rsa_pss.c.grpc_back │ │ │ ├── t_crl.c │ │ │ ├── t_crl.c.grpc_back │ │ │ ├── t_req.c │ │ │ ├── t_req.c.grpc_back │ │ │ ├── t_x509.c │ │ │ ├── t_x509.c.grpc_back │ │ │ ├── t_x509a.c │ │ │ ├── t_x509a.c.grpc_back │ │ │ ├── vpm_int.h │ │ │ ├── vpm_int.h.grpc_back │ │ │ ├── x509.c │ │ │ ├── x509.c.grpc_back │ │ │ ├── x509_att.c │ │ │ ├── x509_att.c.grpc_back │ │ │ ├── x509_cmp.c │ │ │ ├── x509_cmp.c.grpc_back │ │ │ ├── x509_d2.c │ │ │ ├── x509_d2.c.grpc_back │ │ │ ├── x509_def.c │ │ │ ├── x509_def.c.grpc_back │ │ │ ├── x509_ext.c │ │ │ ├── x509_ext.c.grpc_back │ │ │ ├── x509_lu.c │ │ │ ├── x509_lu.c.grpc_back │ │ │ ├── x509_obj.c │ │ │ ├── x509_obj.c.grpc_back │ │ │ ├── x509_r2x.c │ │ │ ├── x509_r2x.c.grpc_back │ │ │ ├── x509_req.c │ │ │ ├── x509_req.c.grpc_back │ │ │ ├── x509_set.c │ │ │ ├── x509_set.c.grpc_back │ │ │ ├── x509_trs.c │ │ │ ├── x509_trs.c.grpc_back │ │ │ ├── x509_txt.c │ │ │ ├── x509_txt.c.grpc_back │ │ │ ├── x509_v3.c │ │ │ ├── x509_v3.c.grpc_back │ │ │ ├── x509_vfy.c │ │ │ ├── x509_vfy.c.grpc_back │ │ │ ├── x509_vpm.c │ │ │ ├── x509_vpm.c.grpc_back │ │ │ ├── x509cset.c │ │ │ ├── x509cset.c.grpc_back │ │ │ ├── x509name.c │ │ │ ├── x509name.c.grpc_back │ │ │ ├── x509rset.c │ │ │ ├── x509rset.c.grpc_back │ │ │ ├── x509spki.c │ │ │ ├── x509spki.c.grpc_back │ │ │ ├── x_algor.c │ │ │ ├── x_algor.c.grpc_back │ │ │ ├── x_all.c │ │ │ ├── x_all.c.grpc_back │ │ │ ├── x_attrib.c │ │ │ ├── x_attrib.c.grpc_back │ │ │ ├── x_crl.c │ │ │ ├── x_crl.c.grpc_back │ │ │ ├── x_exten.c │ │ │ ├── x_exten.c.grpc_back │ │ │ ├── x_info.c │ │ │ ├── x_info.c.grpc_back │ │ │ ├── x_name.c │ │ │ ├── x_name.c.grpc_back │ │ │ ├── x_pkey.c │ │ │ ├── x_pkey.c.grpc_back │ │ │ ├── x_pubkey.c │ │ │ ├── x_pubkey.c.grpc_back │ │ │ ├── x_req.c │ │ │ ├── x_req.c.grpc_back │ │ │ ├── x_sig.c │ │ │ ├── x_sig.c.grpc_back │ │ │ ├── x_spki.c │ │ │ ├── x_spki.c.grpc_back │ │ │ ├── x_val.c │ │ │ ├── x_val.c.grpc_back │ │ │ ├── x_x509.c │ │ │ ├── x_x509.c.grpc_back │ │ │ ├── x_x509a.c │ │ │ └── x_x509a.c.grpc_back │ │ └── x509v3 │ │ │ ├── ext_dat.h │ │ │ ├── ext_dat.h.grpc_back │ │ │ ├── internal.h │ │ │ ├── internal.h.grpc_back │ │ │ ├── pcy_cache.c │ │ │ ├── pcy_cache.c.grpc_back │ │ │ ├── pcy_data.c │ │ │ ├── pcy_data.c.grpc_back │ │ │ ├── pcy_int.h │ │ │ ├── pcy_int.h.grpc_back │ │ │ ├── pcy_lib.c │ │ │ ├── pcy_lib.c.grpc_back │ │ │ ├── pcy_map.c │ │ │ ├── pcy_map.c.grpc_back │ │ │ ├── pcy_node.c │ │ │ ├── pcy_node.c.grpc_back │ │ │ ├── pcy_tree.c │ │ │ ├── pcy_tree.c.grpc_back │ │ │ ├── v3_akey.c │ │ │ ├── v3_akey.c.grpc_back │ │ │ ├── v3_akeya.c │ │ │ ├── v3_akeya.c.grpc_back │ │ │ ├── v3_alt.c │ │ │ ├── v3_alt.c.grpc_back │ │ │ ├── v3_bcons.c │ │ │ ├── v3_bcons.c.grpc_back │ │ │ ├── v3_bitst.c │ │ │ ├── v3_bitst.c.grpc_back │ │ │ ├── v3_conf.c │ │ │ ├── v3_conf.c.grpc_back │ │ │ ├── v3_cpols.c │ │ │ ├── v3_cpols.c.grpc_back │ │ │ ├── v3_crld.c │ │ │ ├── v3_crld.c.grpc_back │ │ │ ├── v3_enum.c │ │ │ ├── v3_enum.c.grpc_back │ │ │ ├── v3_extku.c │ │ │ ├── v3_extku.c.grpc_back │ │ │ ├── v3_genn.c │ │ │ ├── v3_genn.c.grpc_back │ │ │ ├── v3_ia5.c │ │ │ ├── v3_ia5.c.grpc_back │ │ │ ├── v3_info.c │ │ │ ├── v3_info.c.grpc_back │ │ │ ├── v3_int.c │ │ │ ├── v3_int.c.grpc_back │ │ │ ├── v3_lib.c │ │ │ ├── v3_lib.c.grpc_back │ │ │ ├── v3_ncons.c │ │ │ ├── v3_ncons.c.grpc_back │ │ │ ├── v3_ocsp.c │ │ │ ├── v3_ocsp.c.grpc_back │ │ │ ├── v3_pci.c │ │ │ ├── v3_pci.c.grpc_back │ │ │ ├── v3_pcia.c │ │ │ ├── v3_pcia.c.grpc_back │ │ │ ├── v3_pcons.c │ │ │ ├── v3_pcons.c.grpc_back │ │ │ ├── v3_pku.c │ │ │ ├── v3_pku.c.grpc_back │ │ │ ├── v3_pmaps.c │ │ │ ├── v3_pmaps.c.grpc_back │ │ │ ├── v3_prn.c │ │ │ ├── v3_prn.c.grpc_back │ │ │ ├── v3_purp.c │ │ │ ├── v3_purp.c.grpc_back │ │ │ ├── v3_skey.c │ │ │ ├── v3_skey.c.grpc_back │ │ │ ├── v3_sxnet.c │ │ │ ├── v3_sxnet.c.grpc_back │ │ │ ├── v3_utl.c │ │ │ └── v3_utl.c.grpc_back │ │ ├── include │ │ └── openssl │ │ │ ├── BoringSSL.modulemap │ │ │ ├── aead.h │ │ │ ├── aead.h.back │ │ │ ├── aead.h.grpc_back │ │ │ ├── aes.h │ │ │ ├── aes.h.back │ │ │ ├── aes.h.grpc_back │ │ │ ├── arm_arch.h │ │ │ ├── arm_arch.h.back │ │ │ ├── arm_arch.h.grpc_back │ │ │ ├── asn1.h │ │ │ ├── asn1.h.back │ │ │ ├── asn1.h.grpc_back │ │ │ ├── asn1_mac.h │ │ │ ├── asn1_mac.h.back │ │ │ ├── asn1_mac.h.grpc_back │ │ │ ├── asn1t.h │ │ │ ├── asn1t.h.back │ │ │ ├── asn1t.h.grpc_back │ │ │ ├── base.h │ │ │ ├── base.h.back │ │ │ ├── base.h.grpc_back │ │ │ ├── base64.h │ │ │ ├── base64.h.back │ │ │ ├── base64.h.grpc_back │ │ │ ├── bio.h │ │ │ ├── bio.h.back │ │ │ ├── bio.h.grpc_back │ │ │ ├── blowfish.h │ │ │ ├── blowfish.h.back │ │ │ ├── blowfish.h.grpc_back │ │ │ ├── bn.h │ │ │ ├── bn.h.back │ │ │ ├── bn.h.grpc_back │ │ │ ├── buf.h │ │ │ ├── buf.h.back │ │ │ ├── buf.h.grpc_back │ │ │ ├── buffer.h │ │ │ ├── buffer.h.back │ │ │ ├── buffer.h.grpc_back │ │ │ ├── bytestring.h │ │ │ ├── bytestring.h.back │ │ │ ├── bytestring.h.grpc_back │ │ │ ├── cast.h │ │ │ ├── cast.h.back │ │ │ ├── cast.h.grpc_back │ │ │ ├── chacha.h │ │ │ ├── chacha.h.back │ │ │ ├── chacha.h.grpc_back │ │ │ ├── cipher.h │ │ │ ├── cipher.h.back │ │ │ ├── cipher.h.grpc_back │ │ │ ├── cmac.h │ │ │ ├── cmac.h.back │ │ │ ├── cmac.h.grpc_back │ │ │ ├── conf.h │ │ │ ├── conf.h.back │ │ │ ├── conf.h.grpc_back │ │ │ ├── cpu.h │ │ │ ├── cpu.h.back │ │ │ ├── cpu.h.grpc_back │ │ │ ├── crypto.h │ │ │ ├── crypto.h.back │ │ │ ├── crypto.h.grpc_back │ │ │ ├── curve25519.h │ │ │ ├── curve25519.h.back │ │ │ ├── curve25519.h.grpc_back │ │ │ ├── des.h │ │ │ ├── des.h.back │ │ │ ├── des.h.grpc_back │ │ │ ├── dh.h │ │ │ ├── dh.h.back │ │ │ ├── dh.h.grpc_back │ │ │ ├── digest.h │ │ │ ├── digest.h.back │ │ │ ├── digest.h.grpc_back │ │ │ ├── dsa.h │ │ │ ├── dsa.h.back │ │ │ ├── dsa.h.grpc_back │ │ │ ├── dtls1.h │ │ │ ├── dtls1.h.back │ │ │ ├── dtls1.h.grpc_back │ │ │ ├── e_os2.h │ │ │ ├── e_os2.h.back │ │ │ ├── e_os2.h.grpc_back │ │ │ ├── ec.h │ │ │ ├── ec.h.back │ │ │ ├── ec.h.grpc_back │ │ │ ├── ec_key.h │ │ │ ├── ec_key.h.back │ │ │ ├── ec_key.h.grpc_back │ │ │ ├── ecdh.h │ │ │ ├── ecdh.h.back │ │ │ ├── ecdh.h.grpc_back │ │ │ ├── ecdsa.h │ │ │ ├── ecdsa.h.back │ │ │ ├── ecdsa.h.grpc_back │ │ │ ├── engine.h │ │ │ ├── engine.h.back │ │ │ ├── engine.h.grpc_back │ │ │ ├── err.h │ │ │ ├── err.h.back │ │ │ ├── err.h.grpc_back │ │ │ ├── evp.h │ │ │ ├── evp.h.back │ │ │ ├── evp.h.grpc_back │ │ │ ├── ex_data.h │ │ │ ├── ex_data.h.back │ │ │ ├── ex_data.h.grpc_back │ │ │ ├── hkdf.h │ │ │ ├── hkdf.h.back │ │ │ ├── hkdf.h.grpc_back │ │ │ ├── hmac.h │ │ │ ├── hmac.h.back │ │ │ ├── hmac.h.grpc_back │ │ │ ├── hrss.h │ │ │ ├── hrss.h.back │ │ │ ├── hrss.h.grpc_back │ │ │ ├── is_boringssl.h │ │ │ ├── is_boringssl.h.back │ │ │ ├── is_boringssl.h.grpc_back │ │ │ ├── lhash.h │ │ │ ├── lhash.h.back │ │ │ ├── lhash.h.grpc_back │ │ │ ├── md4.h │ │ │ ├── md4.h.back │ │ │ ├── md4.h.grpc_back │ │ │ ├── md5.h │ │ │ ├── md5.h.back │ │ │ ├── md5.h.grpc_back │ │ │ ├── mem.h │ │ │ ├── mem.h.back │ │ │ ├── mem.h.grpc_back │ │ │ ├── nid.h │ │ │ ├── nid.h.back │ │ │ ├── nid.h.grpc_back │ │ │ ├── obj.h │ │ │ ├── obj.h.back │ │ │ ├── obj.h.grpc_back │ │ │ ├── obj_mac.h │ │ │ ├── obj_mac.h.back │ │ │ ├── obj_mac.h.grpc_back │ │ │ ├── objects.h │ │ │ ├── objects.h.back │ │ │ ├── objects.h.grpc_back │ │ │ ├── opensslconf.h │ │ │ ├── opensslconf.h.back │ │ │ ├── opensslconf.h.grpc_back │ │ │ ├── opensslv.h │ │ │ ├── opensslv.h.back │ │ │ ├── opensslv.h.grpc_back │ │ │ ├── ossl_typ.h │ │ │ ├── ossl_typ.h.back │ │ │ ├── ossl_typ.h.grpc_back │ │ │ ├── pem.h │ │ │ ├── pem.h.back │ │ │ ├── pem.h.grpc_back │ │ │ ├── pkcs12.h │ │ │ ├── pkcs12.h.back │ │ │ ├── pkcs12.h.grpc_back │ │ │ ├── pkcs7.h │ │ │ ├── pkcs7.h.back │ │ │ ├── pkcs7.h.grpc_back │ │ │ ├── pkcs8.h │ │ │ ├── pkcs8.h.back │ │ │ ├── pkcs8.h.grpc_back │ │ │ ├── poly1305.h │ │ │ ├── poly1305.h.back │ │ │ ├── poly1305.h.grpc_back │ │ │ ├── pool.h │ │ │ ├── pool.h.back │ │ │ ├── pool.h.grpc_back │ │ │ ├── rand.h │ │ │ ├── rand.h.back │ │ │ ├── rand.h.grpc_back │ │ │ ├── rc4.h │ │ │ ├── rc4.h.back │ │ │ ├── rc4.h.grpc_back │ │ │ ├── ripemd.h │ │ │ ├── ripemd.h.back │ │ │ ├── ripemd.h.grpc_back │ │ │ ├── rsa.h │ │ │ ├── rsa.h.back │ │ │ ├── rsa.h.grpc_back │ │ │ ├── safestack.h │ │ │ ├── safestack.h.back │ │ │ ├── safestack.h.grpc_back │ │ │ ├── sha.h │ │ │ ├── sha.h.back │ │ │ ├── sha.h.grpc_back │ │ │ ├── siphash.h │ │ │ ├── siphash.h.back │ │ │ ├── siphash.h.grpc_back │ │ │ ├── span.h │ │ │ ├── span.h.back │ │ │ ├── span.h.grpc_back │ │ │ ├── srtp.h │ │ │ ├── srtp.h.back │ │ │ ├── srtp.h.grpc_back │ │ │ ├── ssl.h │ │ │ ├── ssl.h.back │ │ │ ├── ssl.h.grpc_back │ │ │ ├── ssl3.h │ │ │ ├── ssl3.h.back │ │ │ ├── ssl3.h.grpc_back │ │ │ ├── stack.h │ │ │ ├── stack.h.back │ │ │ ├── stack.h.grpc_back │ │ │ ├── thread.h │ │ │ ├── thread.h.back │ │ │ ├── thread.h.grpc_back │ │ │ ├── tls1.h │ │ │ ├── tls1.h.back │ │ │ ├── tls1.h.grpc_back │ │ │ ├── type_check.h │ │ │ ├── type_check.h.back │ │ │ ├── type_check.h.grpc_back │ │ │ ├── umbrella.h │ │ │ ├── umbrella.h.back │ │ │ ├── umbrella.h.grpc_back │ │ │ ├── x509.h │ │ │ ├── x509.h.back │ │ │ ├── x509.h.grpc_back │ │ │ ├── x509_vfy.h │ │ │ ├── x509_vfy.h.back │ │ │ ├── x509_vfy.h.grpc_back │ │ │ ├── x509v3.h │ │ │ ├── x509v3.h.back │ │ │ └── x509v3.h.grpc_back │ │ ├── ssl │ │ ├── bio_ssl.cc │ │ ├── bio_ssl.cc.grpc_back │ │ ├── d1_both.cc │ │ ├── d1_both.cc.grpc_back │ │ ├── d1_lib.cc │ │ ├── d1_lib.cc.grpc_back │ │ ├── d1_pkt.cc │ │ ├── d1_pkt.cc.grpc_back │ │ ├── d1_srtp.cc │ │ ├── d1_srtp.cc.grpc_back │ │ ├── dtls_method.cc │ │ ├── dtls_method.cc.grpc_back │ │ ├── dtls_record.cc │ │ ├── dtls_record.cc.grpc_back │ │ ├── handoff.cc │ │ ├── handoff.cc.grpc_back │ │ ├── handshake.cc │ │ ├── handshake.cc.grpc_back │ │ ├── handshake_client.cc │ │ ├── handshake_client.cc.grpc_back │ │ ├── handshake_server.cc │ │ ├── handshake_server.cc.grpc_back │ │ ├── internal.h │ │ ├── internal.h.grpc_back │ │ ├── s3_both.cc │ │ ├── s3_both.cc.grpc_back │ │ ├── s3_lib.cc │ │ ├── s3_lib.cc.grpc_back │ │ ├── s3_pkt.cc │ │ ├── s3_pkt.cc.grpc_back │ │ ├── ssl_aead_ctx.cc │ │ ├── ssl_aead_ctx.cc.grpc_back │ │ ├── ssl_asn1.cc │ │ ├── ssl_asn1.cc.grpc_back │ │ ├── ssl_buffer.cc │ │ ├── ssl_buffer.cc.grpc_back │ │ ├── ssl_cert.cc │ │ ├── ssl_cert.cc.grpc_back │ │ ├── ssl_cipher.cc │ │ ├── ssl_cipher.cc.grpc_back │ │ ├── ssl_file.cc │ │ ├── ssl_file.cc.grpc_back │ │ ├── ssl_key_share.cc │ │ ├── ssl_key_share.cc.grpc_back │ │ ├── ssl_lib.cc │ │ ├── ssl_lib.cc.grpc_back │ │ ├── ssl_privkey.cc │ │ ├── ssl_privkey.cc.grpc_back │ │ ├── ssl_session.cc │ │ ├── ssl_session.cc.grpc_back │ │ ├── ssl_stat.cc │ │ ├── ssl_stat.cc.grpc_back │ │ ├── ssl_transcript.cc │ │ ├── ssl_transcript.cc.grpc_back │ │ ├── ssl_versions.cc │ │ ├── ssl_versions.cc.grpc_back │ │ ├── ssl_x509.cc │ │ ├── ssl_x509.cc.grpc_back │ │ ├── t1_enc.cc │ │ ├── t1_enc.cc.grpc_back │ │ ├── t1_lib.cc │ │ ├── t1_lib.cc.grpc_back │ │ ├── test │ │ │ └── runner │ │ │ │ └── curve25519 │ │ │ │ ├── const_amd64.h │ │ │ │ └── const_amd64.h.grpc_back │ │ ├── tls13_both.cc │ │ ├── tls13_both.cc.grpc_back │ │ ├── tls13_client.cc │ │ ├── tls13_client.cc.grpc_back │ │ ├── tls13_enc.cc │ │ ├── tls13_enc.cc.grpc_back │ │ ├── tls13_server.cc │ │ ├── tls13_server.cc.grpc_back │ │ ├── tls_method.cc │ │ ├── tls_method.cc.grpc_back │ │ ├── tls_record.cc │ │ └── tls_record.cc.grpc_back │ │ └── third_party │ │ └── fiat │ │ ├── curve25519.c │ │ ├── curve25519.c.grpc_back │ │ ├── curve25519_32.h │ │ ├── curve25519_32.h.grpc_back │ │ ├── curve25519_64.h │ │ ├── curve25519_64.h.grpc_back │ │ ├── curve25519_tables.h │ │ ├── curve25519_tables.h.grpc_back │ │ ├── internal.h │ │ ├── internal.h.grpc_back │ │ ├── p256.c │ │ ├── p256.c.grpc_back │ │ ├── p256_32.h │ │ ├── p256_32.h.grpc_back │ │ ├── p256_64.h │ │ └── p256_64.h.grpc_back ├── Firebase │ ├── CoreOnly │ │ └── Sources │ │ │ ├── Firebase.h │ │ │ └── module.modulemap │ ├── LICENSE │ └── README.md ├── FirebaseAnalytics │ └── Frameworks │ │ ├── FIRAnalyticsConnector.framework │ │ ├── FIRAnalyticsConnector │ │ └── Modules │ │ │ └── module.modulemap │ │ └── FirebaseAnalytics.framework │ │ ├── FirebaseAnalytics │ │ ├── Headers │ │ ├── FIRAnalytics+AppDelegate.h │ │ ├── FIRAnalytics.h │ │ ├── FIREventNames.h │ │ ├── FIRParameterNames.h │ │ ├── FIRUserPropertyNames.h │ │ └── FirebaseAnalytics.h │ │ └── Modules │ │ └── module.modulemap ├── FirebaseAuth │ ├── FirebaseAuth │ │ ├── CHANGELOG.md │ │ ├── README.md │ │ └── Sources │ │ │ ├── Auth │ │ │ ├── FIRActionCodeSettings.m │ │ │ ├── FIRAuth.m │ │ │ ├── FIRAuthDataResult.m │ │ │ ├── FIRAuthDataResult_Internal.h │ │ │ ├── FIRAuthDispatcher.h │ │ │ ├── FIRAuthDispatcher.m │ │ │ ├── FIRAuthGlobalWorkQueue.h │ │ │ ├── FIRAuthGlobalWorkQueue.m │ │ │ ├── FIRAuthOperationType.h │ │ │ ├── FIRAuthSerialTaskQueue.h │ │ │ ├── FIRAuthSerialTaskQueue.m │ │ │ ├── FIRAuthSettings.m │ │ │ ├── FIRAuthTokenResult.m │ │ │ ├── FIRAuthTokenResult_Internal.h │ │ │ └── FIRAuth_Internal.h │ │ │ ├── AuthProvider │ │ │ ├── Email │ │ │ │ ├── FIREmailAuthProvider.m │ │ │ │ ├── FIREmailPasswordAuthCredential.h │ │ │ │ └── FIREmailPasswordAuthCredential.m │ │ │ ├── FIRAuthCredential.m │ │ │ ├── FIRAuthCredential_Internal.h │ │ │ ├── FIRAuthProvider.m │ │ │ ├── Facebook │ │ │ │ ├── FIRFacebookAuthCredential.h │ │ │ │ ├── FIRFacebookAuthCredential.m │ │ │ │ └── FIRFacebookAuthProvider.m │ │ │ ├── GameCenter │ │ │ │ ├── FIRGameCenterAuthCredential.h │ │ │ │ ├── FIRGameCenterAuthCredential.m │ │ │ │ └── FIRGameCenterAuthProvider.m │ │ │ ├── GitHub │ │ │ │ ├── FIRGitHubAuthCredential.h │ │ │ │ ├── FIRGitHubAuthCredential.m │ │ │ │ └── FIRGitHubAuthProvider.m │ │ │ ├── Google │ │ │ │ ├── FIRGoogleAuthCredential.h │ │ │ │ ├── FIRGoogleAuthCredential.m │ │ │ │ └── FIRGoogleAuthProvider.m │ │ │ ├── OAuth │ │ │ │ ├── FIROAuthCredential.m │ │ │ │ ├── FIROAuthCredential_Internal.h │ │ │ │ └── FIROAuthProvider.m │ │ │ ├── Phone │ │ │ │ ├── FIRPhoneAuthCredential.m │ │ │ │ ├── FIRPhoneAuthCredential_Internal.h │ │ │ │ └── FIRPhoneAuthProvider.m │ │ │ └── Twitter │ │ │ │ ├── FIRTwitterAuthCredential.h │ │ │ │ ├── FIRTwitterAuthCredential.m │ │ │ │ └── FIRTwitterAuthProvider.m │ │ │ ├── Backend │ │ │ ├── FIRAuthBackend+MultiFactor.h │ │ │ ├── FIRAuthBackend+MultiFactor.m │ │ │ ├── FIRAuthBackend.h │ │ │ ├── FIRAuthBackend.m │ │ │ ├── FIRAuthRPCRequest.h │ │ │ ├── FIRAuthRPCResponse.h │ │ │ ├── FIRAuthRequestConfiguration.h │ │ │ ├── FIRAuthRequestConfiguration.m │ │ │ ├── FIRIdentityToolkitRequest.h │ │ │ ├── FIRIdentityToolkitRequest.m │ │ │ └── RPC │ │ │ │ ├── FIRCreateAuthURIRequest.h │ │ │ │ ├── FIRCreateAuthURIRequest.m │ │ │ │ ├── FIRCreateAuthURIResponse.h │ │ │ │ ├── FIRCreateAuthURIResponse.m │ │ │ │ ├── FIRDeleteAccountRequest.h │ │ │ │ ├── FIRDeleteAccountRequest.m │ │ │ │ ├── FIRDeleteAccountResponse.h │ │ │ │ ├── FIRDeleteAccountResponse.m │ │ │ │ ├── FIREmailLinkSignInRequest.h │ │ │ │ ├── FIREmailLinkSignInRequest.m │ │ │ │ ├── FIREmailLinkSignInResponse.h │ │ │ │ ├── FIREmailLinkSignInResponse.m │ │ │ │ ├── FIRGetAccountInfoRequest.h │ │ │ │ ├── FIRGetAccountInfoRequest.m │ │ │ │ ├── FIRGetAccountInfoResponse.h │ │ │ │ ├── FIRGetAccountInfoResponse.m │ │ │ │ ├── FIRGetOOBConfirmationCodeRequest.h │ │ │ │ ├── FIRGetOOBConfirmationCodeRequest.m │ │ │ │ ├── FIRGetOOBConfirmationCodeResponse.h │ │ │ │ ├── FIRGetOOBConfirmationCodeResponse.m │ │ │ │ ├── FIRGetProjectConfigRequest.h │ │ │ │ ├── FIRGetProjectConfigRequest.m │ │ │ │ ├── FIRGetProjectConfigResponse.h │ │ │ │ ├── FIRGetProjectConfigResponse.m │ │ │ │ ├── FIRResetPasswordRequest.h │ │ │ │ ├── FIRResetPasswordRequest.m │ │ │ │ ├── FIRResetPasswordResponse.h │ │ │ │ ├── FIRResetPasswordResponse.m │ │ │ │ ├── FIRSecureTokenRequest.h │ │ │ │ ├── FIRSecureTokenRequest.m │ │ │ │ ├── FIRSecureTokenResponse.h │ │ │ │ ├── FIRSecureTokenResponse.m │ │ │ │ ├── FIRSendVerificationCodeRequest.h │ │ │ │ ├── FIRSendVerificationCodeRequest.m │ │ │ │ ├── FIRSendVerificationCodeResponse.h │ │ │ │ ├── FIRSendVerificationCodeResponse.m │ │ │ │ ├── FIRSetAccountInfoRequest.h │ │ │ │ ├── FIRSetAccountInfoRequest.m │ │ │ │ ├── FIRSetAccountInfoResponse.h │ │ │ │ ├── FIRSetAccountInfoResponse.m │ │ │ │ ├── FIRSignInWithGameCenterRequest.h │ │ │ │ ├── FIRSignInWithGameCenterRequest.m │ │ │ │ ├── FIRSignInWithGameCenterResponse.h │ │ │ │ ├── FIRSignInWithGameCenterResponse.m │ │ │ │ ├── FIRSignUpNewUserRequest.h │ │ │ │ ├── FIRSignUpNewUserRequest.m │ │ │ │ ├── FIRSignUpNewUserResponse.h │ │ │ │ ├── FIRSignUpNewUserResponse.m │ │ │ │ ├── FIRVerifyAssertionRequest.h │ │ │ │ ├── FIRVerifyAssertionRequest.m │ │ │ │ ├── FIRVerifyAssertionResponse.h │ │ │ │ ├── FIRVerifyAssertionResponse.m │ │ │ │ ├── FIRVerifyClientRequest.h │ │ │ │ ├── FIRVerifyClientRequest.m │ │ │ │ ├── FIRVerifyClientResponse.h │ │ │ │ ├── FIRVerifyClientResponse.m │ │ │ │ ├── FIRVerifyCustomTokenRequest.h │ │ │ │ ├── FIRVerifyCustomTokenRequest.m │ │ │ │ ├── FIRVerifyCustomTokenResponse.h │ │ │ │ ├── FIRVerifyCustomTokenResponse.m │ │ │ │ ├── FIRVerifyPasswordRequest.h │ │ │ │ ├── FIRVerifyPasswordRequest.m │ │ │ │ ├── FIRVerifyPasswordResponse.h │ │ │ │ ├── FIRVerifyPasswordResponse.m │ │ │ │ ├── FIRVerifyPhoneNumberRequest.h │ │ │ │ ├── FIRVerifyPhoneNumberRequest.m │ │ │ │ ├── FIRVerifyPhoneNumberResponse.h │ │ │ │ ├── FIRVerifyPhoneNumberResponse.m │ │ │ │ ├── MultiFactor │ │ │ │ ├── Enroll │ │ │ │ │ ├── FIRFinalizeMFAEnrollmentRequest.h │ │ │ │ │ ├── FIRFinalizeMFAEnrollmentRequest.m │ │ │ │ │ ├── FIRFinalizeMFAEnrollmentResponse.h │ │ │ │ │ ├── FIRFinalizeMFAEnrollmentResponse.m │ │ │ │ │ ├── FIRStartMFAEnrollmentRequest.h │ │ │ │ │ ├── FIRStartMFAEnrollmentRequest.m │ │ │ │ │ ├── FIRStartMFAEnrollmentResponse.h │ │ │ │ │ └── FIRStartMFAEnrollmentResponse.m │ │ │ │ ├── SignIn │ │ │ │ │ ├── FIRFinalizeMFASignInRequest.h │ │ │ │ │ ├── FIRFinalizeMFASignInRequest.m │ │ │ │ │ ├── FIRFinalizeMFASignInResponse.h │ │ │ │ │ ├── FIRFinalizeMFASignInResponse.m │ │ │ │ │ ├── FIRStartMFASignInRequest.h │ │ │ │ │ ├── FIRStartMFASignInRequest.m │ │ │ │ │ ├── FIRStartMFASignInResponse.h │ │ │ │ │ └── FIRStartMFASignInResponse.m │ │ │ │ └── Unenroll │ │ │ │ │ ├── FIRWithdrawMFARequest.h │ │ │ │ │ ├── FIRWithdrawMFARequest.m │ │ │ │ │ ├── FIRWithdrawMFAResponse.h │ │ │ │ │ └── FIRWithdrawMFAResponse.m │ │ │ │ └── Proto │ │ │ │ ├── FIRAuthProto.h │ │ │ │ ├── FIRAuthProtoMFAEnrollment.h │ │ │ │ ├── FIRAuthProtoMFAEnrollment.m │ │ │ │ └── Phone │ │ │ │ ├── FIRAuthProtoFinalizeMFAPhoneRequestInfo.h │ │ │ │ ├── FIRAuthProtoFinalizeMFAPhoneRequestInfo.m │ │ │ │ ├── FIRAuthProtoFinalizeMFAPhoneResponseInfo.h │ │ │ │ ├── FIRAuthProtoFinalizeMFAPhoneResponseInfo.m │ │ │ │ ├── FIRAuthProtoStartMFAPhoneRequestInfo.h │ │ │ │ ├── FIRAuthProtoStartMFAPhoneRequestInfo.m │ │ │ │ ├── FIRAuthProtoStartMFAPhoneResponseInfo.h │ │ │ │ └── FIRAuthProtoStartMFAPhoneResponseInfo.m │ │ │ ├── FirebaseAuthVersion.m │ │ │ ├── MultiFactor │ │ │ ├── FIRMultiFactor+Internal.h │ │ │ ├── FIRMultiFactor.m │ │ │ ├── FIRMultiFactorAssertion+Internal.h │ │ │ ├── FIRMultiFactorAssertion.m │ │ │ ├── FIRMultiFactorConstants.m │ │ │ ├── FIRMultiFactorInfo+Internal.h │ │ │ ├── FIRMultiFactorInfo.m │ │ │ ├── FIRMultiFactorResolver+Internal.h │ │ │ ├── FIRMultiFactorResolver.m │ │ │ ├── FIRMultiFactorSession+Internal.h │ │ │ ├── FIRMultiFactorSession.m │ │ │ └── Phone │ │ │ │ ├── FIRPhoneMultiFactorAssertion+Internal.h │ │ │ │ ├── FIRPhoneMultiFactorAssertion.m │ │ │ │ ├── FIRPhoneMultiFactorGenerator.m │ │ │ │ ├── FIRPhoneMultiFactorInfo+Internal.h │ │ │ │ └── FIRPhoneMultiFactorInfo.m │ │ │ ├── Public │ │ │ ├── FIRActionCodeSettings.h │ │ │ ├── FIRAdditionalUserInfo.h │ │ │ ├── FIRAuth.h │ │ │ ├── FIRAuthAPNSTokenType.h │ │ │ ├── FIRAuthCredential.h │ │ │ ├── FIRAuthDataResult.h │ │ │ ├── FIRAuthErrors.h │ │ │ ├── FIRAuthSettings.h │ │ │ ├── FIRAuthTokenResult.h │ │ │ ├── FIRAuthUIDelegate.h │ │ │ ├── FIREmailAuthProvider.h │ │ │ ├── FIRFacebookAuthProvider.h │ │ │ ├── FIRFederatedAuthProvider.h │ │ │ ├── FIRGameCenterAuthProvider.h │ │ │ ├── FIRGitHubAuthProvider.h │ │ │ ├── FIRGoogleAuthProvider.h │ │ │ ├── FIRMultiFactor.h │ │ │ ├── FIRMultiFactorAssertion.h │ │ │ ├── FIRMultiFactorInfo.h │ │ │ ├── FIRMultiFactorResolver.h │ │ │ ├── FIRMultiFactorSession.h │ │ │ ├── FIROAuthCredential.h │ │ │ ├── FIROAuthProvider.h │ │ │ ├── FIRPhoneAuthCredential.h │ │ │ ├── FIRPhoneAuthProvider.h │ │ │ ├── FIRPhoneMultiFactorAssertion.h │ │ │ ├── FIRPhoneMultiFactorGenerator.h │ │ │ ├── FIRPhoneMultiFactorInfo.h │ │ │ ├── FIRTwitterAuthProvider.h │ │ │ ├── FIRUser.h │ │ │ ├── FIRUserInfo.h │ │ │ ├── FIRUserMetadata.h │ │ │ ├── FirebaseAuth.h │ │ │ └── FirebaseAuthVersion.h │ │ │ ├── Storage │ │ │ ├── FIRAuthKeychainServices.h │ │ │ ├── FIRAuthKeychainServices.m │ │ │ ├── FIRAuthUserDefaults.h │ │ │ └── FIRAuthUserDefaults.m │ │ │ ├── SystemService │ │ │ ├── FIRAuthAPNSToken.h │ │ │ ├── FIRAuthAPNSToken.m │ │ │ ├── FIRAuthAPNSTokenManager.h │ │ │ ├── FIRAuthAPNSTokenManager.m │ │ │ ├── FIRAuthAppCredential.h │ │ │ ├── FIRAuthAppCredential.m │ │ │ ├── FIRAuthAppCredentialManager.h │ │ │ ├── FIRAuthAppCredentialManager.m │ │ │ ├── FIRAuthNotificationManager.h │ │ │ ├── FIRAuthNotificationManager.m │ │ │ ├── FIRAuthStoredUserManager.h │ │ │ ├── FIRAuthStoredUserManager.m │ │ │ ├── FIRSecureTokenService.h │ │ │ └── FIRSecureTokenService.m │ │ │ ├── User │ │ │ ├── FIRAdditionalUserInfo.m │ │ │ ├── FIRAdditionalUserInfo_Internal.h │ │ │ ├── FIRUser.m │ │ │ ├── FIRUserInfoImpl.h │ │ │ ├── FIRUserInfoImpl.m │ │ │ ├── FIRUserMetadata.m │ │ │ ├── FIRUserMetadata_Internal.h │ │ │ └── FIRUser_Internal.h │ │ │ └── Utilities │ │ │ ├── FIRAuthDefaultUIDelegate.h │ │ │ ├── FIRAuthDefaultUIDelegate.m │ │ │ ├── FIRAuthErrorUtils.h │ │ │ ├── FIRAuthErrorUtils.m │ │ │ ├── FIRAuthExceptionUtils.h │ │ │ ├── FIRAuthExceptionUtils.m │ │ │ ├── FIRAuthInternalErrors.h │ │ │ ├── FIRAuthURLPresenter.h │ │ │ ├── FIRAuthURLPresenter.m │ │ │ ├── FIRAuthWebUtils.h │ │ │ ├── FIRAuthWebUtils.m │ │ │ ├── FIRAuthWebView.h │ │ │ ├── FIRAuthWebView.m │ │ │ ├── FIRAuthWebViewController.h │ │ │ ├── FIRAuthWebViewController.m │ │ │ ├── NSData+FIRBase64.h │ │ │ └── NSData+FIRBase64.m │ ├── LICENSE │ └── README.md ├── FirebaseAuthInterop │ ├── Interop │ │ └── Auth │ │ │ └── Public │ │ │ └── FIRAuthInterop.h │ ├── LICENSE │ └── README.md ├── FirebaseCore │ ├── FirebaseCore │ │ └── Sources │ │ │ ├── FIRAnalyticsConfiguration.m │ │ │ ├── FIRApp.m │ │ │ ├── FIRAppAssociationRegistration.m │ │ │ ├── FIRBundleUtil.h │ │ │ ├── FIRBundleUtil.m │ │ │ ├── FIRComponent.m │ │ │ ├── FIRComponentContainer.m │ │ │ ├── FIRComponentType.m │ │ │ ├── FIRConfiguration.m │ │ │ ├── FIRCoreDiagnosticsConnector.m │ │ │ ├── FIRDependency.m │ │ │ ├── FIRDiagnosticsData.m │ │ │ ├── FIRErrors.m │ │ │ ├── FIRHeartbeatInfo.m │ │ │ ├── FIRLogger.m │ │ │ ├── FIROptions.m │ │ │ ├── FIRVersion.h │ │ │ ├── FIRVersion.m │ │ │ ├── Private │ │ │ ├── FIRAnalyticsConfiguration.h │ │ │ ├── FIRAppAssociationRegistration.h │ │ │ ├── FIRAppInternal.h │ │ │ ├── FIRComponent.h │ │ │ ├── FIRComponentContainer.h │ │ │ ├── FIRComponentContainerInternal.h │ │ │ ├── FIRComponentType.h │ │ │ ├── FIRConfigurationInternal.h │ │ │ ├── FIRCoreDiagnosticsConnector.h │ │ │ ├── FIRDependency.h │ │ │ ├── FIRDiagnosticsData.h │ │ │ ├── FIRErrorCode.h │ │ │ ├── FIRErrors.h │ │ │ ├── FIRHeartbeatInfo.h │ │ │ ├── FIRLibrary.h │ │ │ ├── FIRLogger.h │ │ │ └── FIROptionsInternal.h │ │ │ └── Public │ │ │ ├── FIRApp.h │ │ │ ├── FIRConfiguration.h │ │ │ ├── FIRLoggerLevel.h │ │ │ ├── FIROptions.h │ │ │ └── FirebaseCore.h │ ├── LICENSE │ └── README.md ├── FirebaseCoreDiagnostics │ ├── Firebase │ │ └── CoreDiagnostics │ │ │ └── FIRCDLibrary │ │ │ ├── FIRCoreDiagnostics.m │ │ │ └── Protogen │ │ │ └── nanopb │ │ │ ├── firebasecore.nanopb.c │ │ │ └── firebasecore.nanopb.h │ ├── LICENSE │ └── README.md ├── FirebaseCoreDiagnosticsInterop │ ├── Interop │ │ └── CoreDiagnostics │ │ │ └── Public │ │ │ ├── FIRCoreDiagnosticsData.h │ │ │ └── FIRCoreDiagnosticsInterop.h │ ├── LICENSE │ └── README.md ├── FirebaseDatabase │ ├── Firebase │ │ └── Database │ │ │ ├── Api │ │ │ ├── FIRDataSnapshot.m │ │ │ ├── FIRDatabase.m │ │ │ ├── FIRDatabaseComponent.h │ │ │ ├── FIRDatabaseComponent.m │ │ │ ├── FIRDatabaseConfig.h │ │ │ ├── FIRDatabaseConfig.m │ │ │ ├── FIRDatabaseQuery.m │ │ │ ├── FIRMutableData.m │ │ │ ├── FIRServerValue.m │ │ │ ├── FIRTransactionResult.m │ │ │ └── Private │ │ │ │ ├── FIRDataSnapshot_Private.h │ │ │ │ ├── FIRDatabaseQuery_Private.h │ │ │ │ ├── FIRDatabaseReference_Private.h │ │ │ │ ├── FIRDatabase_Private.h │ │ │ │ ├── FIRMutableData_Private.h │ │ │ │ ├── FIRTransactionResult_Private.h │ │ │ │ └── FTypedefs_Private.h │ │ │ ├── Constants │ │ │ ├── FConstants.h │ │ │ └── FConstants.m │ │ │ ├── Core │ │ │ ├── FCompoundHash.h │ │ │ ├── FCompoundHash.m │ │ │ ├── FListenProvider.h │ │ │ ├── FListenProvider.m │ │ │ ├── FPersistentConnection.h │ │ │ ├── FPersistentConnection.m │ │ │ ├── FQueryParams.h │ │ │ ├── FQueryParams.m │ │ │ ├── FQuerySpec.h │ │ │ ├── FQuerySpec.m │ │ │ ├── FRangeMerge.h │ │ │ ├── FRangeMerge.m │ │ │ ├── FRepo.h │ │ │ ├── FRepo.m │ │ │ ├── FRepoInfo.h │ │ │ ├── FRepoInfo.m │ │ │ ├── FRepoManager.h │ │ │ ├── FRepoManager.m │ │ │ ├── FRepo_Private.h │ │ │ ├── FServerValues.h │ │ │ ├── FServerValues.m │ │ │ ├── FSnapshotHolder.h │ │ │ ├── FSnapshotHolder.m │ │ │ ├── FSparseSnapshotTree.h │ │ │ ├── FSparseSnapshotTree.m │ │ │ ├── FSyncPoint.h │ │ │ ├── FSyncPoint.m │ │ │ ├── FSyncTree.h │ │ │ ├── FSyncTree.m │ │ │ ├── FWriteRecord.h │ │ │ ├── FWriteRecord.m │ │ │ ├── FWriteTree.h │ │ │ ├── FWriteTree.m │ │ │ ├── FWriteTreeRef.h │ │ │ ├── FWriteTreeRef.m │ │ │ ├── Operation │ │ │ │ ├── FAckUserWrite.h │ │ │ │ ├── FAckUserWrite.m │ │ │ │ ├── FMerge.h │ │ │ │ ├── FMerge.m │ │ │ │ ├── FOperation.h │ │ │ │ ├── FOperationSource.h │ │ │ │ ├── FOperationSource.m │ │ │ │ ├── FOverwrite.h │ │ │ │ └── FOverwrite.m │ │ │ ├── Utilities │ │ │ │ ├── FIRRetryHelper.h │ │ │ │ ├── FIRRetryHelper.m │ │ │ │ ├── FImmutableTree.h │ │ │ │ ├── FImmutableTree.m │ │ │ │ ├── FPath.h │ │ │ │ ├── FPath.m │ │ │ │ ├── FTree.h │ │ │ │ ├── FTree.m │ │ │ │ ├── FTreeNode.h │ │ │ │ └── FTreeNode.m │ │ │ └── View │ │ │ │ ├── FCacheNode.h │ │ │ │ ├── FCacheNode.m │ │ │ │ ├── FCancelEvent.h │ │ │ │ ├── FCancelEvent.m │ │ │ │ ├── FChange.h │ │ │ │ ├── FChange.m │ │ │ │ ├── FChildEventRegistration.h │ │ │ │ ├── FChildEventRegistration.m │ │ │ │ ├── FDataEvent.h │ │ │ │ ├── FDataEvent.m │ │ │ │ ├── FEvent.h │ │ │ │ ├── FEventRaiser.h │ │ │ │ ├── FEventRaiser.m │ │ │ │ ├── FEventRegistration.h │ │ │ │ ├── FKeepSyncedEventRegistration.h │ │ │ │ ├── FKeepSyncedEventRegistration.m │ │ │ │ ├── FValueEventRegistration.h │ │ │ │ ├── FValueEventRegistration.m │ │ │ │ ├── FView.h │ │ │ │ ├── FView.m │ │ │ │ ├── FViewCache.h │ │ │ │ ├── FViewCache.m │ │ │ │ └── Filter │ │ │ │ ├── FChildChangeAccumulator.h │ │ │ │ ├── FChildChangeAccumulator.m │ │ │ │ ├── FCompleteChildSource.h │ │ │ │ ├── FIndexedFilter.h │ │ │ │ ├── FIndexedFilter.m │ │ │ │ ├── FLimitedFilter.h │ │ │ │ ├── FLimitedFilter.m │ │ │ │ └── FNodeFilter.h │ │ │ ├── FClock.h │ │ │ ├── FClock.m │ │ │ ├── FEventGenerator.h │ │ │ ├── FEventGenerator.m │ │ │ ├── FIRDatabaseConfig_Private.h │ │ │ ├── FIRDatabaseReference.m │ │ │ ├── FIndex.h │ │ │ ├── FIndex.m │ │ │ ├── FKeyIndex.h │ │ │ ├── FKeyIndex.m │ │ │ ├── FListenComplete.h │ │ │ ├── FListenComplete.m │ │ │ ├── FMaxNode.h │ │ │ ├── FMaxNode.m │ │ │ ├── FNamedNode.h │ │ │ ├── FNamedNode.m │ │ │ ├── FPathIndex.h │ │ │ ├── FPathIndex.m │ │ │ ├── FPriorityIndex.h │ │ │ ├── FPriorityIndex.m │ │ │ ├── FRangedFilter.h │ │ │ ├── FRangedFilter.m │ │ │ ├── FTransformedEnumerator.h │ │ │ ├── FTransformedEnumerator.m │ │ │ ├── FValueIndex.h │ │ │ ├── FValueIndex.m │ │ │ ├── FViewProcessor.h │ │ │ ├── FViewProcessor.m │ │ │ ├── FViewProcessorResult.h │ │ │ ├── FViewProcessorResult.m │ │ │ ├── Login │ │ │ ├── FAuthTokenProvider.h │ │ │ ├── FAuthTokenProvider.m │ │ │ ├── FIRNoopAuthTokenProvider.h │ │ │ └── FIRNoopAuthTokenProvider.m │ │ │ ├── Persistence │ │ │ ├── FCachePolicy.h │ │ │ ├── FCachePolicy.m │ │ │ ├── FLevelDBStorageEngine.h │ │ │ ├── FLevelDBStorageEngine.m │ │ │ ├── FPendingPut.h │ │ │ ├── FPendingPut.m │ │ │ ├── FPersistenceManager.h │ │ │ ├── FPersistenceManager.m │ │ │ ├── FPruneForest.h │ │ │ ├── FPruneForest.m │ │ │ ├── FStorageEngine.h │ │ │ ├── FTrackedQuery.h │ │ │ ├── FTrackedQuery.m │ │ │ ├── FTrackedQueryManager.h │ │ │ └── FTrackedQueryManager.m │ │ │ ├── Public │ │ │ ├── FIRDataEventType.h │ │ │ ├── FIRDataSnapshot.h │ │ │ ├── FIRDatabase.h │ │ │ ├── FIRDatabaseQuery.h │ │ │ ├── FIRDatabaseReference.h │ │ │ ├── FIRMutableData.h │ │ │ ├── FIRServerValue.h │ │ │ ├── FIRTransactionResult.h │ │ │ └── FirebaseDatabase.h │ │ │ ├── Realtime │ │ │ ├── FConnection.h │ │ │ ├── FConnection.m │ │ │ ├── FWebSocketConnection.h │ │ │ └── FWebSocketConnection.m │ │ │ ├── Snapshot │ │ │ ├── FChildrenNode.h │ │ │ ├── FChildrenNode.m │ │ │ ├── FCompoundWrite.h │ │ │ ├── FCompoundWrite.m │ │ │ ├── FEmptyNode.h │ │ │ ├── FEmptyNode.m │ │ │ ├── FIndexedNode.h │ │ │ ├── FIndexedNode.m │ │ │ ├── FLeafNode.h │ │ │ ├── FLeafNode.m │ │ │ ├── FNode.h │ │ │ ├── FSnapshotUtilities.h │ │ │ └── FSnapshotUtilities.m │ │ │ ├── Utilities │ │ │ ├── FAtomicNumber.h │ │ │ ├── FAtomicNumber.m │ │ │ ├── FEventEmitter.h │ │ │ ├── FEventEmitter.m │ │ │ ├── FNextPushId.h │ │ │ ├── FNextPushId.m │ │ │ ├── FParsedUrl.h │ │ │ ├── FParsedUrl.m │ │ │ ├── FStringUtilities.h │ │ │ ├── FStringUtilities.m │ │ │ ├── FTypedefs.h │ │ │ ├── FUtilities.h │ │ │ ├── FUtilities.m │ │ │ ├── FValidation.h │ │ │ ├── FValidation.m │ │ │ └── Tuples │ │ │ │ ├── FTupleBoolBlock.h │ │ │ │ ├── FTupleBoolBlock.m │ │ │ │ ├── FTupleCallbackStatus.h │ │ │ │ ├── FTupleCallbackStatus.m │ │ │ │ ├── FTupleFirebase.h │ │ │ │ ├── FTupleFirebase.m │ │ │ │ ├── FTupleNodePath.h │ │ │ │ ├── FTupleNodePath.m │ │ │ │ ├── FTupleObjectNode.h │ │ │ │ ├── FTupleObjectNode.m │ │ │ │ ├── FTupleObjects.h │ │ │ │ ├── FTupleObjects.m │ │ │ │ ├── FTupleOnDisconnect.h │ │ │ │ ├── FTupleOnDisconnect.m │ │ │ │ ├── FTuplePathValue.h │ │ │ │ ├── FTuplePathValue.m │ │ │ │ ├── FTupleRemovedQueriesEvents.h │ │ │ │ ├── FTupleRemovedQueriesEvents.m │ │ │ │ ├── FTupleSetIdPath.h │ │ │ │ ├── FTupleSetIdPath.m │ │ │ │ ├── FTupleStringNode.h │ │ │ │ ├── FTupleStringNode.m │ │ │ │ ├── FTupleTSN.h │ │ │ │ ├── FTupleTSN.m │ │ │ │ ├── FTupleTransaction.h │ │ │ │ ├── FTupleTransaction.m │ │ │ │ ├── FTupleUserCallback.h │ │ │ │ └── FTupleUserCallback.m │ │ │ └── third_party │ │ │ ├── FImmutableSortedDictionary │ │ │ └── FImmutableSortedDictionary │ │ │ │ ├── FArraySortedDictionary.h │ │ │ │ ├── FArraySortedDictionary.m │ │ │ │ ├── FImmutableSortedDictionary.h │ │ │ │ ├── FImmutableSortedDictionary.m │ │ │ │ ├── FImmutableSortedSet.h │ │ │ │ ├── FImmutableSortedSet.m │ │ │ │ ├── FLLRBEmptyNode.h │ │ │ │ ├── FLLRBEmptyNode.m │ │ │ │ ├── FLLRBNode.h │ │ │ │ ├── FLLRBValueNode.h │ │ │ │ ├── FLLRBValueNode.m │ │ │ │ ├── FTreeSortedDictionary.h │ │ │ │ ├── FTreeSortedDictionary.m │ │ │ │ ├── FTreeSortedDictionaryEnumerator.h │ │ │ │ └── FTreeSortedDictionaryEnumerator.m │ │ │ ├── SocketRocket │ │ │ ├── FSRWebSocket.h │ │ │ ├── FSRWebSocket.m │ │ │ ├── NSData+SRB64Additions.h │ │ │ ├── NSData+SRB64Additions.m │ │ │ ├── fbase64.c │ │ │ └── fbase64.h │ │ │ └── Wrap-leveldb │ │ │ ├── APLevelDB.h │ │ │ └── APLevelDB.mm │ ├── LICENSE │ └── README.md ├── FirebaseFirestore │ ├── Firestore │ │ ├── Protos │ │ │ └── nanopb │ │ │ │ ├── firestore │ │ │ │ └── local │ │ │ │ │ ├── maybe_document.nanopb.cc │ │ │ │ │ ├── maybe_document.nanopb.h │ │ │ │ │ ├── mutation.nanopb.cc │ │ │ │ │ ├── mutation.nanopb.h │ │ │ │ │ ├── target.nanopb.cc │ │ │ │ │ └── target.nanopb.h │ │ │ │ └── google │ │ │ │ ├── api │ │ │ │ ├── annotations.nanopb.cc │ │ │ │ ├── annotations.nanopb.h │ │ │ │ ├── http.nanopb.cc │ │ │ │ └── http.nanopb.h │ │ │ │ ├── firestore │ │ │ │ └── v1 │ │ │ │ │ ├── common.nanopb.cc │ │ │ │ │ ├── common.nanopb.h │ │ │ │ │ ├── document.nanopb.cc │ │ │ │ │ ├── document.nanopb.h │ │ │ │ │ ├── firestore.nanopb.cc │ │ │ │ │ ├── firestore.nanopb.h │ │ │ │ │ ├── query.nanopb.cc │ │ │ │ │ ├── query.nanopb.h │ │ │ │ │ ├── write.nanopb.cc │ │ │ │ │ └── write.nanopb.h │ │ │ │ ├── protobuf │ │ │ │ ├── any.nanopb.cc │ │ │ │ ├── any.nanopb.h │ │ │ │ ├── empty.nanopb.cc │ │ │ │ ├── empty.nanopb.h │ │ │ │ ├── struct.nanopb.cc │ │ │ │ ├── struct.nanopb.h │ │ │ │ ├── timestamp.nanopb.cc │ │ │ │ ├── timestamp.nanopb.h │ │ │ │ ├── wrappers.nanopb.cc │ │ │ │ └── wrappers.nanopb.h │ │ │ │ ├── rpc │ │ │ │ ├── status.nanopb.cc │ │ │ │ └── status.nanopb.h │ │ │ │ └── type │ │ │ │ ├── latlng.nanopb.cc │ │ │ │ └── latlng.nanopb.h │ │ ├── Source │ │ │ ├── API │ │ │ │ ├── FIRCollectionReference+Internal.h │ │ │ │ ├── FIRCollectionReference.mm │ │ │ │ ├── FIRDocumentChange+Internal.h │ │ │ │ ├── FIRDocumentChange.mm │ │ │ │ ├── FIRDocumentReference+Internal.h │ │ │ │ ├── FIRDocumentReference.mm │ │ │ │ ├── FIRDocumentSnapshot+Internal.h │ │ │ │ ├── FIRDocumentSnapshot.mm │ │ │ │ ├── FIRFieldPath+Internal.h │ │ │ │ ├── FIRFieldPath.mm │ │ │ │ ├── FIRFieldValue+Internal.h │ │ │ │ ├── FIRFieldValue.mm │ │ │ │ ├── FIRFirestore+Internal.h │ │ │ │ ├── FIRFirestore.mm │ │ │ │ ├── FIRFirestoreSettings+Internal.h │ │ │ │ ├── FIRFirestoreSettings.mm │ │ │ │ ├── FIRFirestoreSource+Internal.h │ │ │ │ ├── FIRFirestoreSource.mm │ │ │ │ ├── FIRFirestoreVersion.h │ │ │ │ ├── FIRFirestoreVersion.mm │ │ │ │ ├── FIRGeoPoint+Internal.h │ │ │ │ ├── FIRGeoPoint.mm │ │ │ │ ├── FIRListenerRegistration+Internal.h │ │ │ │ ├── FIRListenerRegistration.mm │ │ │ │ ├── FIRQuery+Internal.h │ │ │ │ ├── FIRQuery.mm │ │ │ │ ├── FIRQuerySnapshot+Internal.h │ │ │ │ ├── FIRQuerySnapshot.mm │ │ │ │ ├── FIRSnapshotMetadata+Internal.h │ │ │ │ ├── FIRSnapshotMetadata.mm │ │ │ │ ├── FIRTimestamp+Internal.h │ │ │ │ ├── FIRTimestamp.m │ │ │ │ ├── FIRTransaction+Internal.h │ │ │ │ ├── FIRTransaction.mm │ │ │ │ ├── FIRWriteBatch+Internal.h │ │ │ │ ├── FIRWriteBatch.mm │ │ │ │ ├── FSTFirestoreComponent.h │ │ │ │ ├── FSTFirestoreComponent.mm │ │ │ │ ├── FSTUserDataConverter.h │ │ │ │ ├── FSTUserDataConverter.mm │ │ │ │ ├── converters.h │ │ │ │ └── converters.mm │ │ │ └── Public │ │ │ │ ├── FIRCollectionReference.h │ │ │ │ ├── FIRDocumentChange.h │ │ │ │ ├── FIRDocumentReference.h │ │ │ │ ├── FIRDocumentSnapshot.h │ │ │ │ ├── FIRFieldPath.h │ │ │ │ ├── FIRFieldValue.h │ │ │ │ ├── FIRFirestore.h │ │ │ │ ├── FIRFirestoreErrors.h │ │ │ │ ├── FIRFirestoreSettings.h │ │ │ │ ├── FIRFirestoreSource.h │ │ │ │ ├── FIRGeoPoint.h │ │ │ │ ├── FIRListenerRegistration.h │ │ │ │ ├── FIRQuery.h │ │ │ │ ├── FIRQuerySnapshot.h │ │ │ │ ├── FIRSnapshotMetadata.h │ │ │ │ ├── FIRTimestamp.h │ │ │ │ ├── FIRTransaction.h │ │ │ │ ├── FIRWriteBatch.h │ │ │ │ └── FirebaseFirestore.h │ │ └── core │ │ │ ├── include │ │ │ └── firebase │ │ │ │ └── firestore │ │ │ │ ├── firestore_errors.h │ │ │ │ ├── firestore_version.h │ │ │ │ ├── geo_point.h │ │ │ │ └── timestamp.h │ │ │ └── src │ │ │ ├── api │ │ │ ├── api_fwd.h │ │ │ ├── collection_reference.cc │ │ │ ├── collection_reference.h │ │ │ ├── document_change.cc │ │ │ ├── document_change.h │ │ │ ├── document_reference.cc │ │ │ ├── document_reference.h │ │ │ ├── document_snapshot.cc │ │ │ ├── document_snapshot.h │ │ │ ├── firestore.cc │ │ │ ├── firestore.h │ │ │ ├── listener_registration.h │ │ │ ├── query_core.cc │ │ │ ├── query_core.h │ │ │ ├── query_listener_registration.cc │ │ │ ├── query_listener_registration.h │ │ │ ├── query_snapshot.cc │ │ │ ├── query_snapshot.h │ │ │ ├── settings.cc │ │ │ ├── settings.h │ │ │ ├── snapshot_metadata.cc │ │ │ ├── snapshot_metadata.h │ │ │ ├── snapshots_in_sync_listener_registration.cc │ │ │ ├── snapshots_in_sync_listener_registration.h │ │ │ ├── source.h │ │ │ ├── write_batch.cc │ │ │ └── write_batch.h │ │ │ ├── auth │ │ │ ├── credentials_provider.cc │ │ │ ├── credentials_provider.h │ │ │ ├── empty_credentials_provider.cc │ │ │ ├── empty_credentials_provider.h │ │ │ ├── firebase_credentials_provider_apple.h │ │ │ ├── firebase_credentials_provider_apple.mm │ │ │ ├── token.cc │ │ │ ├── token.h │ │ │ ├── user.cc │ │ │ └── user.h │ │ │ ├── core │ │ │ ├── array_contains_any_filter.cc │ │ │ ├── array_contains_any_filter.h │ │ │ ├── array_contains_filter.cc │ │ │ ├── array_contains_filter.h │ │ │ ├── bound.cc │ │ │ ├── bound.h │ │ │ ├── core_fwd.h │ │ │ ├── database_info.cc │ │ │ ├── database_info.h │ │ │ ├── direction.cc │ │ │ ├── direction.h │ │ │ ├── event_listener.h │ │ │ ├── event_manager.cc │ │ │ ├── event_manager.h │ │ │ ├── field_filter.cc │ │ │ ├── field_filter.h │ │ │ ├── filter.cc │ │ │ ├── filter.h │ │ │ ├── firestore_client.cc │ │ │ ├── firestore_client.h │ │ │ ├── in_filter.cc │ │ │ ├── in_filter.h │ │ │ ├── key_field_filter.cc │ │ │ ├── key_field_filter.h │ │ │ ├── key_field_in_filter.cc │ │ │ ├── key_field_in_filter.h │ │ │ ├── listen_options.h │ │ │ ├── operator.h │ │ │ ├── order_by.cc │ │ │ ├── order_by.h │ │ │ ├── query.cc │ │ │ ├── query.h │ │ │ ├── query_listener.cc │ │ │ ├── query_listener.h │ │ │ ├── sync_engine.cc │ │ │ ├── sync_engine.h │ │ │ ├── sync_engine_callback.h │ │ │ ├── target.cc │ │ │ ├── target.h │ │ │ ├── target_id_generator.cc │ │ │ ├── target_id_generator.h │ │ │ ├── transaction.cc │ │ │ ├── transaction.h │ │ │ ├── transaction_runner.cc │ │ │ ├── transaction_runner.h │ │ │ ├── user_data.cc │ │ │ ├── user_data.h │ │ │ ├── view.cc │ │ │ ├── view.h │ │ │ ├── view_snapshot.cc │ │ │ └── view_snapshot.h │ │ │ ├── firestore_version.cc │ │ │ ├── geo_point.cc │ │ │ ├── immutable │ │ │ ├── append_only_list.h │ │ │ ├── array_sorted_map.h │ │ │ ├── keys_view.h │ │ │ ├── llrb_node.h │ │ │ ├── llrb_node_iterator.h │ │ │ ├── sorted_container.cc │ │ │ ├── sorted_container.h │ │ │ ├── sorted_map.h │ │ │ ├── sorted_map_iterator.h │ │ │ ├── sorted_set.h │ │ │ └── tree_sorted_map.h │ │ │ ├── local │ │ │ ├── document_key_reference.cc │ │ │ ├── document_key_reference.h │ │ │ ├── index_free_query_engine.cc │ │ │ ├── index_free_query_engine.h │ │ │ ├── index_manager.h │ │ │ ├── leveldb_index_manager.cc │ │ │ ├── leveldb_index_manager.h │ │ │ ├── leveldb_key.cc │ │ │ ├── leveldb_key.h │ │ │ ├── leveldb_lru_reference_delegate.cc │ │ │ ├── leveldb_lru_reference_delegate.h │ │ │ ├── leveldb_migrations.cc │ │ │ ├── leveldb_migrations.h │ │ │ ├── leveldb_mutation_queue.cc │ │ │ ├── leveldb_mutation_queue.h │ │ │ ├── leveldb_opener.cc │ │ │ ├── leveldb_opener.h │ │ │ ├── leveldb_persistence.cc │ │ │ ├── leveldb_persistence.h │ │ │ ├── leveldb_remote_document_cache.cc │ │ │ ├── leveldb_remote_document_cache.h │ │ │ ├── leveldb_target_cache.cc │ │ │ ├── leveldb_target_cache.h │ │ │ ├── leveldb_transaction.cc │ │ │ ├── leveldb_transaction.h │ │ │ ├── leveldb_util.cc │ │ │ ├── leveldb_util.h │ │ │ ├── listen_sequence.h │ │ │ ├── local_documents_view.cc │ │ │ ├── local_documents_view.h │ │ │ ├── local_serializer.cc │ │ │ ├── local_serializer.h │ │ │ ├── local_store.cc │ │ │ ├── local_store.h │ │ │ ├── local_view_changes.cc │ │ │ ├── local_view_changes.h │ │ │ ├── local_write_result.h │ │ │ ├── lru_garbage_collector.cc │ │ │ ├── lru_garbage_collector.h │ │ │ ├── memory_eager_reference_delegate.cc │ │ │ ├── memory_eager_reference_delegate.h │ │ │ ├── memory_index_manager.cc │ │ │ ├── memory_index_manager.h │ │ │ ├── memory_lru_reference_delegate.cc │ │ │ ├── memory_lru_reference_delegate.h │ │ │ ├── memory_mutation_queue.cc │ │ │ ├── memory_mutation_queue.h │ │ │ ├── memory_persistence.cc │ │ │ ├── memory_persistence.h │ │ │ ├── memory_remote_document_cache.cc │ │ │ ├── memory_remote_document_cache.h │ │ │ ├── memory_target_cache.cc │ │ │ ├── memory_target_cache.h │ │ │ ├── mutation_queue.h │ │ │ ├── persistence.h │ │ │ ├── proto_sizer.cc │ │ │ ├── proto_sizer.h │ │ │ ├── query_engine.h │ │ │ ├── query_result.h │ │ │ ├── reference_delegate.h │ │ │ ├── reference_set.cc │ │ │ ├── reference_set.h │ │ │ ├── remote_document_cache.h │ │ │ ├── simple_query_engine.cc │ │ │ ├── simple_query_engine.h │ │ │ ├── sizer.h │ │ │ ├── target_cache.h │ │ │ ├── target_data.cc │ │ │ └── target_data.h │ │ │ ├── model │ │ │ ├── base_path.h │ │ │ ├── database_id.cc │ │ │ ├── database_id.h │ │ │ ├── delete_mutation.cc │ │ │ ├── delete_mutation.h │ │ │ ├── document.cc │ │ │ ├── document.h │ │ │ ├── document_key.cc │ │ │ ├── document_key.h │ │ │ ├── document_key_set.h │ │ │ ├── document_map.cc │ │ │ ├── document_map.h │ │ │ ├── document_set.cc │ │ │ ├── document_set.h │ │ │ ├── field_mask.cc │ │ │ ├── field_mask.h │ │ │ ├── field_path.cc │ │ │ ├── field_path.h │ │ │ ├── field_transform.cc │ │ │ ├── field_transform.h │ │ │ ├── field_value.cc │ │ │ ├── field_value.h │ │ │ ├── field_value_options.h │ │ │ ├── maybe_document.cc │ │ │ ├── maybe_document.h │ │ │ ├── model_fwd.h │ │ │ ├── mutation.cc │ │ │ ├── mutation.h │ │ │ ├── mutation_batch.cc │ │ │ ├── mutation_batch.h │ │ │ ├── mutation_batch_result.cc │ │ │ ├── mutation_batch_result.h │ │ │ ├── no_document.cc │ │ │ ├── no_document.h │ │ │ ├── patch_mutation.cc │ │ │ ├── patch_mutation.h │ │ │ ├── precondition.cc │ │ │ ├── precondition.h │ │ │ ├── resource_path.cc │ │ │ ├── resource_path.h │ │ │ ├── set_mutation.cc │ │ │ ├── set_mutation.h │ │ │ ├── snapshot_version.cc │ │ │ ├── snapshot_version.h │ │ │ ├── transform_mutation.cc │ │ │ ├── transform_mutation.h │ │ │ ├── transform_operation.cc │ │ │ ├── transform_operation.h │ │ │ ├── types.h │ │ │ ├── unknown_document.cc │ │ │ ├── unknown_document.h │ │ │ ├── verify_mutation.cc │ │ │ └── verify_mutation.h │ │ │ ├── nanopb │ │ │ ├── byte_string.cc │ │ │ ├── byte_string.h │ │ │ ├── fields_array.h │ │ │ ├── message.cc │ │ │ ├── message.h │ │ │ ├── nanopb_util.cc │ │ │ ├── nanopb_util.h │ │ │ ├── pretty_printing.cc │ │ │ ├── pretty_printing.h │ │ │ ├── reader.cc │ │ │ ├── reader.h │ │ │ ├── writer.cc │ │ │ └── writer.h │ │ │ ├── objc │ │ │ └── objc_type_traits.h │ │ │ ├── remote │ │ │ ├── connectivity_monitor.cc │ │ │ ├── connectivity_monitor.h │ │ │ ├── connectivity_monitor_apple.mm │ │ │ ├── datastore.cc │ │ │ ├── datastore.h │ │ │ ├── existence_filter.h │ │ │ ├── exponential_backoff.cc │ │ │ ├── exponential_backoff.h │ │ │ ├── grpc_call.h │ │ │ ├── grpc_completion.cc │ │ │ ├── grpc_completion.h │ │ │ ├── grpc_connection.cc │ │ │ ├── grpc_connection.h │ │ │ ├── grpc_nanopb.cc │ │ │ ├── grpc_nanopb.h │ │ │ ├── grpc_root_certificate_finder.h │ │ │ ├── grpc_root_certificate_finder_generated.cc │ │ │ ├── grpc_root_certificates_generated.cc │ │ │ ├── grpc_root_certificates_generated.h │ │ │ ├── grpc_stream.cc │ │ │ ├── grpc_stream.h │ │ │ ├── grpc_stream_observer.h │ │ │ ├── grpc_streaming_reader.cc │ │ │ ├── grpc_streaming_reader.h │ │ │ ├── grpc_unary_call.cc │ │ │ ├── grpc_unary_call.h │ │ │ ├── grpc_util.cc │ │ │ ├── grpc_util.h │ │ │ ├── online_state_tracker.cc │ │ │ ├── online_state_tracker.h │ │ │ ├── remote_event.cc │ │ │ ├── remote_event.h │ │ │ ├── remote_objc_bridge.cc │ │ │ ├── remote_objc_bridge.h │ │ │ ├── remote_store.cc │ │ │ ├── remote_store.h │ │ │ ├── serializer.cc │ │ │ ├── serializer.h │ │ │ ├── stream.cc │ │ │ ├── stream.h │ │ │ ├── watch_change.cc │ │ │ ├── watch_change.h │ │ │ ├── watch_stream.cc │ │ │ ├── watch_stream.h │ │ │ ├── write_stream.cc │ │ │ └── write_stream.h │ │ │ ├── timestamp.cc │ │ │ ├── timestamp_internal.cc │ │ │ ├── timestamp_internal.h │ │ │ └── util │ │ │ ├── async_queue.cc │ │ │ ├── async_queue.h │ │ │ ├── autoid.cc │ │ │ ├── autoid.h │ │ │ ├── background_queue.cc │ │ │ ├── background_queue.h │ │ │ ├── bits.cc │ │ │ ├── bits.h │ │ │ ├── comparison.cc │ │ │ ├── comparison.h │ │ │ ├── compressed_member.h │ │ │ ├── config.h │ │ │ ├── config.h.in │ │ │ ├── defer.h │ │ │ ├── delayed_constructor.h │ │ │ ├── empty.h │ │ │ ├── equality.h │ │ │ ├── error_apple.h │ │ │ ├── error_apple.mm │ │ │ ├── exception.cc │ │ │ ├── exception.h │ │ │ ├── exception_apple.h │ │ │ ├── exception_apple.mm │ │ │ ├── executor.h │ │ │ ├── executor_libdispatch.h │ │ │ ├── executor_libdispatch.mm │ │ │ ├── executor_std.cc │ │ │ ├── executor_std.h │ │ │ ├── filesystem.h │ │ │ ├── filesystem_apple.mm │ │ │ ├── filesystem_common.cc │ │ │ ├── filesystem_posix.cc │ │ │ ├── hard_assert.cc │ │ │ ├── hard_assert.h │ │ │ ├── hashing.h │ │ │ ├── iterator_adaptors.h │ │ │ ├── log.h │ │ │ ├── log_apple.mm │ │ │ ├── nullability.h │ │ │ ├── ordered_code.cc │ │ │ ├── ordered_code.h │ │ │ ├── path.cc │ │ │ ├── path.h │ │ │ ├── range.h │ │ │ ├── sanitizers.h │ │ │ ├── schedule.cc │ │ │ ├── schedule.h │ │ │ ├── secure_random.h │ │ │ ├── secure_random_arc4random.cc │ │ │ ├── status.cc │ │ │ ├── status.h │ │ │ ├── status_apple.mm │ │ │ ├── status_errno.cc │ │ │ ├── status_fwd.h │ │ │ ├── status_win.cc │ │ │ ├── statusor.cc │ │ │ ├── statusor.h │ │ │ ├── statusor_internals.h │ │ │ ├── strerror.cc │ │ │ ├── strerror.h │ │ │ ├── string_apple.cc │ │ │ ├── string_apple.h │ │ │ ├── string_format.cc │ │ │ ├── string_format.h │ │ │ ├── string_util.cc │ │ │ ├── string_util.h │ │ │ ├── string_win.cc │ │ │ ├── string_win.h │ │ │ ├── task.cc │ │ │ ├── task.h │ │ │ ├── to_string.h │ │ │ ├── type_traits.h │ │ │ └── warnings.h │ ├── LICENSE │ └── README.md ├── FirebaseInstallations │ ├── 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 │ │ │ ├── FIRInstallationsVersion.m │ │ │ ├── IIDMigration │ │ │ ├── FIRInstallationsIIDStore.h │ │ │ ├── FIRInstallationsIIDStore.m │ │ │ ├── FIRInstallationsIIDTokenStore.h │ │ │ └── FIRInstallationsIIDTokenStore.m │ │ │ ├── InstallationsAPI │ │ │ ├── FIRInstallationsAPIService.h │ │ │ ├── FIRInstallationsAPIService.m │ │ │ ├── FIRInstallationsItem+RegisterInstallationAPI.h │ │ │ └── FIRInstallationsItem+RegisterInstallationAPI.m │ │ │ ├── InstallationsIDController │ │ │ ├── FIRInstallationsIDController.h │ │ │ ├── FIRInstallationsIDController.m │ │ │ ├── FIRInstallationsSingleOperationPromiseCache.h │ │ │ ├── FIRInstallationsSingleOperationPromiseCache.m │ │ │ └── FIRInstallationsStatus.h │ │ │ ├── InstallationsStore │ │ │ ├── FIRInstallationsStore.h │ │ │ ├── FIRInstallationsStore.m │ │ │ ├── FIRInstallationsStoredAuthToken.h │ │ │ ├── FIRInstallationsStoredAuthToken.m │ │ │ ├── FIRInstallationsStoredItem.h │ │ │ └── FIRInstallationsStoredItem.m │ │ │ └── Public │ │ │ ├── FIRInstallations.h │ │ │ ├── FIRInstallationsAuthTokenResult.h │ │ │ ├── FIRInstallationsErrors.h │ │ │ ├── FIRInstallationsVersion.h │ │ │ └── FirebaseInstallations.h │ ├── LICENSE │ └── README.md ├── FlagPhoneNumber │ ├── LICENSE │ ├── README.md │ └── Sources │ │ ├── FPNCountry.swift │ │ ├── FPNCountryListViewController.swift │ │ ├── FPNCountryPicker │ │ ├── FPNCountryPicker.swift │ │ ├── FPNCountryView.swift │ │ └── FPNNibLoadingView.swift │ │ ├── FPNCountryRepository.swift │ │ ├── FPNTextField.swift │ │ ├── Helpers │ │ ├── Bundle+Extension.swift │ │ ├── FPNCountryCode.swift │ │ ├── FPNFormat.swift │ │ ├── FPNOBJCCountryKey.swift │ │ ├── FPNTextFieldDelegate.swift │ │ └── FPNUtils.swift │ │ ├── Resources │ │ ├── FPNCountryView.xib │ │ ├── FlagKit.xcassets │ │ │ ├── AD.imageset │ │ │ │ ├── AD.png │ │ │ │ ├── AD@2x.png │ │ │ │ ├── AD@3x.png │ │ │ │ └── Contents.json │ │ │ ├── AE.imageset │ │ │ │ ├── AE.png │ │ │ │ ├── AE@2x.png │ │ │ │ ├── AE@3x.png │ │ │ │ └── Contents.json │ │ │ ├── AF.imageset │ │ │ │ ├── AF.png │ │ │ │ ├── AF@2x.png │ │ │ │ ├── AF@3x.png │ │ │ │ └── Contents.json │ │ │ ├── AG.imageset │ │ │ │ ├── AG.png │ │ │ │ ├── AG@2x.png │ │ │ │ ├── AG@3x.png │ │ │ │ └── Contents.json │ │ │ ├── AI.imageset │ │ │ │ ├── AI.png │ │ │ │ ├── AI@2x.png │ │ │ │ ├── AI@3x.png │ │ │ │ └── Contents.json │ │ │ ├── AL.imageset │ │ │ │ ├── AL.png │ │ │ │ ├── AL@2x.png │ │ │ │ ├── AL@3x.png │ │ │ │ └── Contents.json │ │ │ ├── AM.imageset │ │ │ │ ├── AM.png │ │ │ │ ├── AM@2x.png │ │ │ │ ├── AM@3x.png │ │ │ │ └── Contents.json │ │ │ ├── AO.imageset │ │ │ │ ├── AO.png │ │ │ │ ├── AO@2x.png │ │ │ │ ├── AO@3x.png │ │ │ │ └── Contents.json │ │ │ ├── AR.imageset │ │ │ │ ├── AR.png │ │ │ │ ├── AR@2x.png │ │ │ │ ├── AR@3x.png │ │ │ │ └── Contents.json │ │ │ ├── AS.imageset │ │ │ │ ├── AS.png │ │ │ │ ├── AS@2x.png │ │ │ │ ├── AS@3x.png │ │ │ │ └── Contents.json │ │ │ ├── AT.imageset │ │ │ │ ├── AT.png │ │ │ │ ├── AT@2x.png │ │ │ │ ├── AT@3x.png │ │ │ │ └── Contents.json │ │ │ ├── AU.imageset │ │ │ │ ├── AU.png │ │ │ │ ├── AU@2x.png │ │ │ │ ├── AU@3x.png │ │ │ │ └── Contents.json │ │ │ ├── AW.imageset │ │ │ │ ├── AW.png │ │ │ │ ├── AW@2x.png │ │ │ │ ├── AW@3x.png │ │ │ │ └── Contents.json │ │ │ ├── AX.imageset │ │ │ │ ├── AX.png │ │ │ │ ├── AX@2x.png │ │ │ │ ├── AX@3x.png │ │ │ │ └── Contents.json │ │ │ ├── AZ.imageset │ │ │ │ ├── AZ.png │ │ │ │ ├── AZ@2x.png │ │ │ │ ├── AZ@3x.png │ │ │ │ └── Contents.json │ │ │ ├── BA.imageset │ │ │ │ ├── BA.png │ │ │ │ ├── BA@2x.png │ │ │ │ ├── BA@3x.png │ │ │ │ └── Contents.json │ │ │ ├── BB.imageset │ │ │ │ ├── BB.png │ │ │ │ ├── BB@2x.png │ │ │ │ ├── BB@3x.png │ │ │ │ └── Contents.json │ │ │ ├── BD.imageset │ │ │ │ ├── BD.png │ │ │ │ ├── BD@2x.png │ │ │ │ ├── BD@3x.png │ │ │ │ └── Contents.json │ │ │ ├── BE.imageset │ │ │ │ ├── BE.png │ │ │ │ ├── BE@2x.png │ │ │ │ ├── BE@3x.png │ │ │ │ └── Contents.json │ │ │ ├── BF.imageset │ │ │ │ ├── BF.png │ │ │ │ ├── BF@2x.png │ │ │ │ ├── BF@3x.png │ │ │ │ └── Contents.json │ │ │ ├── BG.imageset │ │ │ │ ├── BG.png │ │ │ │ ├── BG@2x.png │ │ │ │ ├── BG@3x.png │ │ │ │ └── Contents.json │ │ │ ├── BH.imageset │ │ │ │ ├── BH.png │ │ │ │ ├── BH@2x.png │ │ │ │ ├── BH@3x.png │ │ │ │ └── Contents.json │ │ │ ├── BI.imageset │ │ │ │ ├── BI.png │ │ │ │ ├── BI@2x.png │ │ │ │ ├── BI@3x.png │ │ │ │ └── Contents.json │ │ │ ├── BJ.imageset │ │ │ │ ├── BJ.png │ │ │ │ ├── BJ@2x.png │ │ │ │ ├── BJ@3x.png │ │ │ │ └── Contents.json │ │ │ ├── BL.imageset │ │ │ │ ├── BL.png │ │ │ │ ├── BL@2x.png │ │ │ │ ├── BL@3x.png │ │ │ │ └── Contents.json │ │ │ ├── BM.imageset │ │ │ │ ├── BM.png │ │ │ │ ├── BM@2x.png │ │ │ │ ├── BM@3x.png │ │ │ │ └── Contents.json │ │ │ ├── BN.imageset │ │ │ │ ├── BN.png │ │ │ │ ├── BN@2x.png │ │ │ │ ├── BN@3x.png │ │ │ │ └── Contents.json │ │ │ ├── BO.imageset │ │ │ │ ├── BO.png │ │ │ │ ├── BO@2x.png │ │ │ │ ├── BO@3x.png │ │ │ │ └── Contents.json │ │ │ ├── BR.imageset │ │ │ │ ├── BR.png │ │ │ │ ├── BR@2x.png │ │ │ │ ├── BR@3x.png │ │ │ │ └── Contents.json │ │ │ ├── BS.imageset │ │ │ │ ├── BS.png │ │ │ │ ├── BS@2x.png │ │ │ │ ├── BS@3x.png │ │ │ │ └── Contents.json │ │ │ ├── BT.imageset │ │ │ │ ├── BT.png │ │ │ │ ├── BT@2x.png │ │ │ │ ├── BT@3x.png │ │ │ │ └── Contents.json │ │ │ ├── BV.imageset │ │ │ │ ├── BV.png │ │ │ │ ├── BV@2x.png │ │ │ │ ├── BV@3x.png │ │ │ │ └── Contents.json │ │ │ ├── BW.imageset │ │ │ │ ├── BW.png │ │ │ │ ├── BW@2x.png │ │ │ │ ├── BW@3x.png │ │ │ │ └── Contents.json │ │ │ ├── BY.imageset │ │ │ │ ├── BY.png │ │ │ │ ├── BY@2x.png │ │ │ │ ├── BY@3x.png │ │ │ │ └── Contents.json │ │ │ ├── BZ.imageset │ │ │ │ ├── BZ.png │ │ │ │ ├── BZ@2x.png │ │ │ │ ├── BZ@3x.png │ │ │ │ └── Contents.json │ │ │ ├── CA.imageset │ │ │ │ ├── CA.png │ │ │ │ ├── CA@2x.png │ │ │ │ ├── CA@3x.png │ │ │ │ └── Contents.json │ │ │ ├── CC.imageset │ │ │ │ ├── CC.png │ │ │ │ ├── CC@2x.png │ │ │ │ ├── CC@3x.png │ │ │ │ └── Contents.json │ │ │ ├── CD.imageset │ │ │ │ ├── CD.png │ │ │ │ ├── CD@2x.png │ │ │ │ ├── CD@3x.png │ │ │ │ └── Contents.json │ │ │ ├── CF.imageset │ │ │ │ ├── CF.png │ │ │ │ ├── CF@2x.png │ │ │ │ ├── CF@3x.png │ │ │ │ └── Contents.json │ │ │ ├── CG.imageset │ │ │ │ ├── CG.png │ │ │ │ ├── CG@2x.png │ │ │ │ ├── CG@3x.png │ │ │ │ └── Contents.json │ │ │ ├── CH.imageset │ │ │ │ ├── CH.png │ │ │ │ ├── CH@2x.png │ │ │ │ ├── CH@3x.png │ │ │ │ └── Contents.json │ │ │ ├── CI.imageset │ │ │ │ ├── CI.png │ │ │ │ ├── CI@2x.png │ │ │ │ ├── CI@3x.png │ │ │ │ └── Contents.json │ │ │ ├── CK.imageset │ │ │ │ ├── CK.png │ │ │ │ ├── CK@2x.png │ │ │ │ ├── CK@3x.png │ │ │ │ └── Contents.json │ │ │ ├── CL.imageset │ │ │ │ ├── CL.png │ │ │ │ ├── CL@2x.png │ │ │ │ ├── CL@3x.png │ │ │ │ └── Contents.json │ │ │ ├── CM.imageset │ │ │ │ ├── CM.png │ │ │ │ ├── CM@2x.png │ │ │ │ ├── CM@3x.png │ │ │ │ └── Contents.json │ │ │ ├── CN.imageset │ │ │ │ ├── CN.png │ │ │ │ ├── CN@2x.png │ │ │ │ ├── CN@3x.png │ │ │ │ └── Contents.json │ │ │ ├── CO.imageset │ │ │ │ ├── CO.png │ │ │ │ ├── CO@2x.png │ │ │ │ ├── CO@3x.png │ │ │ │ └── Contents.json │ │ │ ├── CR.imageset │ │ │ │ ├── CR.png │ │ │ │ ├── CR@2x.png │ │ │ │ ├── CR@3x.png │ │ │ │ └── Contents.json │ │ │ ├── CU.imageset │ │ │ │ ├── CU.png │ │ │ │ ├── CU@2x.png │ │ │ │ ├── CU@3x.png │ │ │ │ └── Contents.json │ │ │ ├── CV.imageset │ │ │ │ ├── CV.png │ │ │ │ ├── CV@2x.png │ │ │ │ ├── CV@3x.png │ │ │ │ └── Contents.json │ │ │ ├── CW.imageset │ │ │ │ ├── CW.png │ │ │ │ ├── CW@2x.png │ │ │ │ ├── CW@3x.png │ │ │ │ └── Contents.json │ │ │ ├── CX.imageset │ │ │ │ ├── CX.png │ │ │ │ ├── CX@2x.png │ │ │ │ ├── CX@3x.png │ │ │ │ └── Contents.json │ │ │ ├── CY.imageset │ │ │ │ ├── CY.png │ │ │ │ ├── CY@2x.png │ │ │ │ ├── CY@3x.png │ │ │ │ └── Contents.json │ │ │ ├── CZ.imageset │ │ │ │ ├── CZ.png │ │ │ │ ├── CZ@2x.png │ │ │ │ ├── CZ@3x.png │ │ │ │ └── Contents.json │ │ │ ├── Contents.json │ │ │ ├── DE.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── DE.png │ │ │ │ ├── DE@2x.png │ │ │ │ └── DE@3x.png │ │ │ ├── DJ.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── DJ.png │ │ │ │ ├── DJ@2x.png │ │ │ │ └── DJ@3x.png │ │ │ ├── DK.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── DK.png │ │ │ │ ├── DK@2x.png │ │ │ │ └── DK@3x.png │ │ │ ├── DM.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── DM.png │ │ │ │ ├── DM@2x.png │ │ │ │ └── DM@3x.png │ │ │ ├── DO.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── DO.png │ │ │ │ ├── DO@2x.png │ │ │ │ └── DO@3x.png │ │ │ ├── DZ.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── DZ.png │ │ │ │ ├── DZ@2x.png │ │ │ │ └── DZ@3x.png │ │ │ ├── EC.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── EC.png │ │ │ │ ├── EC@2x.png │ │ │ │ └── EC@3x.png │ │ │ ├── EE.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── EE.png │ │ │ │ ├── EE@2x.png │ │ │ │ └── EE@3x.png │ │ │ ├── EG.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── EG.png │ │ │ │ ├── EG@2x.png │ │ │ │ └── EG@3x.png │ │ │ ├── ER.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── ER.png │ │ │ │ ├── ER@2x.png │ │ │ │ └── ER@3x.png │ │ │ ├── ES.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── ES.png │ │ │ │ ├── ES@2x.png │ │ │ │ └── ES@3x.png │ │ │ ├── ET.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── ET.png │ │ │ │ ├── ET@2x.png │ │ │ │ └── ET@3x.png │ │ │ ├── EU.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── EU.png │ │ │ │ ├── EU@2x.png │ │ │ │ └── EU@3x.png │ │ │ ├── FI.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── FI.png │ │ │ │ ├── FI@2x.png │ │ │ │ └── FI@3x.png │ │ │ ├── FJ.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── FJ.png │ │ │ │ ├── FJ@2x.png │ │ │ │ └── FJ@3x.png │ │ │ ├── FK.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── FK.png │ │ │ │ ├── FK@2x.png │ │ │ │ └── FK@3x.png │ │ │ ├── FM.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── FM.png │ │ │ │ ├── FM@2x.png │ │ │ │ └── FM@3x.png │ │ │ ├── FO.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── FO.png │ │ │ │ ├── FO@2x.png │ │ │ │ └── FO@3x.png │ │ │ ├── FR.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── FR.png │ │ │ │ ├── FR@2x.png │ │ │ │ └── FR@3x.png │ │ │ ├── GA.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── GA.png │ │ │ │ ├── GA@2x.png │ │ │ │ └── GA@3x.png │ │ │ ├── GB-ENG.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── GB-ENG.png │ │ │ │ ├── GB-ENG@2x.png │ │ │ │ └── GB-ENG@3x.png │ │ │ ├── GB-NIR.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── GB-NIR.png │ │ │ │ ├── GB-NIR@2x.png │ │ │ │ └── GB-NIR@3x.png │ │ │ ├── GB-SCT.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── GB-SCT.png │ │ │ │ ├── GB-SCT@2x.png │ │ │ │ └── GB-SCT@3x.png │ │ │ ├── GB-WLS.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── GB-WLS.png │ │ │ │ ├── GB-WLS@2x.png │ │ │ │ └── GB-WLS@3x.png │ │ │ ├── GB-ZET.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── GB-ZET.png │ │ │ │ ├── GB-ZET@2x.png │ │ │ │ └── GB-ZET@3x.png │ │ │ ├── GB.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── GB.png │ │ │ │ ├── GB@2x.png │ │ │ │ └── GB@3x.png │ │ │ ├── GD.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── GD.png │ │ │ │ ├── GD@2x.png │ │ │ │ └── GD@3x.png │ │ │ ├── GE.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── GE.png │ │ │ │ ├── GE@2x.png │ │ │ │ └── GE@3x.png │ │ │ ├── GF.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── GF.png │ │ │ │ ├── GF@2x.png │ │ │ │ └── GF@3x.png │ │ │ ├── GG.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── GG.png │ │ │ │ ├── GG@2x.png │ │ │ │ └── GG@3x.png │ │ │ ├── GH.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── GH.png │ │ │ │ ├── GH@2x.png │ │ │ │ └── GH@3x.png │ │ │ ├── GI.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── GI.png │ │ │ │ ├── GI@2x.png │ │ │ │ └── GI@3x.png │ │ │ ├── GL.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── GL.png │ │ │ │ ├── GL@2x.png │ │ │ │ └── GL@3x.png │ │ │ ├── GM.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── GM.png │ │ │ │ ├── GM@2x.png │ │ │ │ └── GM@3x.png │ │ │ ├── GN.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── GN.png │ │ │ │ ├── GN@2x.png │ │ │ │ └── GN@3x.png │ │ │ ├── GP.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── GP.png │ │ │ │ ├── GP@2x.png │ │ │ │ └── GP@3x.png │ │ │ ├── GQ.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── GQ.png │ │ │ │ ├── GQ@2x.png │ │ │ │ └── GQ@3x.png │ │ │ ├── GR.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── GR.png │ │ │ │ ├── GR@2x.png │ │ │ │ └── GR@3x.png │ │ │ ├── GS.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── GS.png │ │ │ │ ├── GS@2x.png │ │ │ │ └── GS@3x.png │ │ │ ├── GT.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── GT.png │ │ │ │ ├── GT@2x.png │ │ │ │ └── GT@3x.png │ │ │ ├── GU.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── GU.png │ │ │ │ ├── GU@2x.png │ │ │ │ └── GU@3x.png │ │ │ ├── GW.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── GW.png │ │ │ │ ├── GW@2x.png │ │ │ │ └── GW@3x.png │ │ │ ├── GY.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── GY.png │ │ │ │ ├── GY@2x.png │ │ │ │ └── GY@3x.png │ │ │ ├── HK.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── HK.png │ │ │ │ ├── HK@2x.png │ │ │ │ └── HK@3x.png │ │ │ ├── HM.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── HM.png │ │ │ │ ├── HM@2x.png │ │ │ │ └── HM@3x.png │ │ │ ├── HN.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── HN.png │ │ │ │ ├── HN@2x.png │ │ │ │ └── HN@3x.png │ │ │ ├── HR.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── HR.png │ │ │ │ ├── HR@2x.png │ │ │ │ └── HR@3x.png │ │ │ ├── HT.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── HT.png │ │ │ │ ├── HT@2x.png │ │ │ │ └── HT@3x.png │ │ │ ├── HU.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── HU.png │ │ │ │ ├── HU@2x.png │ │ │ │ └── HU@3x.png │ │ │ ├── ID.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── ID.png │ │ │ │ ├── ID@2x.png │ │ │ │ └── ID@3x.png │ │ │ ├── IE.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── IE.png │ │ │ │ ├── IE@2x.png │ │ │ │ └── IE@3x.png │ │ │ ├── IL.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── IL.png │ │ │ │ ├── IL@2x.png │ │ │ │ └── IL@3x.png │ │ │ ├── IM.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── IM.png │ │ │ │ ├── IM@2x.png │ │ │ │ └── IM@3x.png │ │ │ ├── IN.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── IN.png │ │ │ │ ├── IN@2x.png │ │ │ │ └── IN@3x.png │ │ │ ├── IO.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── IO.png │ │ │ │ ├── IO@2x.png │ │ │ │ └── IO@3x.png │ │ │ ├── IQ.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── IQ.png │ │ │ │ ├── IQ@2x.png │ │ │ │ └── IQ@3x.png │ │ │ ├── IR.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── IR.png │ │ │ │ ├── IR@2x.png │ │ │ │ └── IR@3x.png │ │ │ ├── IS.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── IS.png │ │ │ │ ├── IS@2x.png │ │ │ │ └── IS@3x.png │ │ │ ├── IT.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── IT.png │ │ │ │ ├── IT@2x.png │ │ │ │ └── IT@3x.png │ │ │ ├── JE.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── JE.png │ │ │ │ ├── JE@2x.png │ │ │ │ └── JE@3x.png │ │ │ ├── JM.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── JM.png │ │ │ │ ├── JM@2x.png │ │ │ │ └── JM@3x.png │ │ │ ├── JO.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── JO.png │ │ │ │ ├── JO@2x.png │ │ │ │ └── JO@3x.png │ │ │ ├── JP.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── JP.png │ │ │ │ ├── JP@2x.png │ │ │ │ └── JP@3x.png │ │ │ ├── KE.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── KE.png │ │ │ │ ├── KE@2x.png │ │ │ │ └── KE@3x.png │ │ │ ├── KG.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── KG.png │ │ │ │ ├── KG@2x.png │ │ │ │ └── KG@3x.png │ │ │ ├── KH.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── KH.png │ │ │ │ ├── KH@2x.png │ │ │ │ └── KH@3x.png │ │ │ ├── KI.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── KI.png │ │ │ │ ├── KI@2x.png │ │ │ │ └── KI@3x.png │ │ │ ├── KM.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── KM.png │ │ │ │ ├── KM@2x.png │ │ │ │ └── KM@3x.png │ │ │ ├── KN.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── KN.png │ │ │ │ ├── KN@2x.png │ │ │ │ └── KN@3x.png │ │ │ ├── KP.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── KP.png │ │ │ │ ├── KP@2x.png │ │ │ │ └── KP@3x.png │ │ │ ├── KR.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── KR.png │ │ │ │ ├── KR@2x.png │ │ │ │ └── KR@3x.png │ │ │ ├── KW.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── KW.png │ │ │ │ ├── KW@2x.png │ │ │ │ └── KW@3x.png │ │ │ ├── KY.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── KY.png │ │ │ │ ├── KY@2x.png │ │ │ │ └── KY@3x.png │ │ │ ├── KZ.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── KZ.png │ │ │ │ ├── KZ@2x.png │ │ │ │ └── KZ@3x.png │ │ │ ├── LA.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── LA.png │ │ │ │ ├── LA@2x.png │ │ │ │ └── LA@3x.png │ │ │ ├── LB.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── LB.png │ │ │ │ ├── LB@2x.png │ │ │ │ └── LB@3x.png │ │ │ ├── LC.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── LC.png │ │ │ │ ├── LC@2x.png │ │ │ │ └── LC@3x.png │ │ │ ├── LGBT.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── LGBT.png │ │ │ │ ├── LGBT@2x.png │ │ │ │ └── LGBT@3x.png │ │ │ ├── LI.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── LI.png │ │ │ │ ├── LI@2x.png │ │ │ │ └── LI@3x.png │ │ │ ├── LK.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── LK.png │ │ │ │ ├── LK@2x.png │ │ │ │ └── LK@3x.png │ │ │ ├── LR.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── LR.png │ │ │ │ ├── LR@2x.png │ │ │ │ └── LR@3x.png │ │ │ ├── LS.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── LS.png │ │ │ │ ├── LS@2x.png │ │ │ │ └── LS@3x.png │ │ │ ├── LT.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── LT.png │ │ │ │ ├── LT@2x.png │ │ │ │ └── LT@3x.png │ │ │ ├── LU.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── LU.png │ │ │ │ ├── LU@2x.png │ │ │ │ └── LU@3x.png │ │ │ ├── LV.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── LV.png │ │ │ │ ├── LV@2x.png │ │ │ │ └── LV@3x.png │ │ │ ├── LY.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── LY.png │ │ │ │ ├── LY@2x.png │ │ │ │ └── LY@3x.png │ │ │ ├── MA.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── MA.png │ │ │ │ ├── MA@2x.png │ │ │ │ └── MA@3x.png │ │ │ ├── MC.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── MC.png │ │ │ │ ├── MC@2x.png │ │ │ │ └── MC@3x.png │ │ │ ├── MD.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── MD.png │ │ │ │ ├── MD@2x.png │ │ │ │ └── MD@3x.png │ │ │ ├── ME.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── ME.png │ │ │ │ ├── ME@2x.png │ │ │ │ └── ME@3x.png │ │ │ ├── MF.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── MF.png │ │ │ │ ├── MF@2x.png │ │ │ │ └── MF@3x.png │ │ │ ├── MG.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── MG.png │ │ │ │ ├── MG@2x.png │ │ │ │ └── MG@3x.png │ │ │ ├── MH.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── MH.png │ │ │ │ ├── MH@2x.png │ │ │ │ └── MH@3x.png │ │ │ ├── MK.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── MK.png │ │ │ │ ├── MK@2x.png │ │ │ │ └── MK@3x.png │ │ │ ├── ML.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── ML.png │ │ │ │ ├── ML@2x.png │ │ │ │ └── ML@3x.png │ │ │ ├── MM.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── MM.png │ │ │ │ ├── MM@2x.png │ │ │ │ └── MM@3x.png │ │ │ ├── MN.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── MN.png │ │ │ │ ├── MN@2x.png │ │ │ │ └── MN@3x.png │ │ │ ├── MO.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── MO.png │ │ │ │ ├── MO@2x.png │ │ │ │ └── MO@3x.png │ │ │ ├── MP.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── MP.png │ │ │ │ ├── MP@2x.png │ │ │ │ └── MP@3x.png │ │ │ ├── MQ.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── MQ.png │ │ │ │ ├── MQ@2x.png │ │ │ │ └── MQ@3x.png │ │ │ ├── MR.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── MR.png │ │ │ │ ├── MR@2x.png │ │ │ │ └── MR@3x.png │ │ │ ├── MS.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── MS.png │ │ │ │ ├── MS@2x.png │ │ │ │ └── MS@3x.png │ │ │ ├── MT.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── MT.png │ │ │ │ ├── MT@2x.png │ │ │ │ └── MT@3x.png │ │ │ ├── MU.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── MU.png │ │ │ │ ├── MU@2x.png │ │ │ │ └── MU@3x.png │ │ │ ├── MV.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── MV.png │ │ │ │ ├── MV@2x.png │ │ │ │ └── MV@3x.png │ │ │ ├── MW.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── MW.png │ │ │ │ ├── MW@2x.png │ │ │ │ └── MW@3x.png │ │ │ ├── MX.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── MX.png │ │ │ │ ├── MX@2x.png │ │ │ │ └── MX@3x.png │ │ │ ├── MY.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── MY.png │ │ │ │ ├── MY@2x.png │ │ │ │ └── MY@3x.png │ │ │ ├── MZ.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── MZ.png │ │ │ │ ├── MZ@2x.png │ │ │ │ └── MZ@3x.png │ │ │ ├── NA.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── NA.png │ │ │ │ ├── NA@2x.png │ │ │ │ └── NA@3x.png │ │ │ ├── NC.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── NC.png │ │ │ │ ├── NC@2x.png │ │ │ │ └── NC@3x.png │ │ │ ├── NE.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── NE.png │ │ │ │ ├── NE@2x.png │ │ │ │ └── NE@3x.png │ │ │ ├── NF.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── NF.png │ │ │ │ ├── NF@2x.png │ │ │ │ └── NF@3x.png │ │ │ ├── NG.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── NG.png │ │ │ │ ├── NG@2x.png │ │ │ │ └── NG@3x.png │ │ │ ├── NI.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── NI.png │ │ │ │ ├── NI@2x.png │ │ │ │ └── NI@3x.png │ │ │ ├── NL.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── NL.png │ │ │ │ ├── NL@2x.png │ │ │ │ └── NL@3x.png │ │ │ ├── NO.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── NO.png │ │ │ │ ├── NO@2x.png │ │ │ │ └── NO@3x.png │ │ │ ├── NP.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── NP.png │ │ │ │ ├── NP@2x.png │ │ │ │ └── NP@3x.png │ │ │ ├── NR.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── NR.png │ │ │ │ ├── NR@2x.png │ │ │ │ └── NR@3x.png │ │ │ ├── NU.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── NU.png │ │ │ │ ├── NU@2x.png │ │ │ │ └── NU@3x.png │ │ │ ├── NZ.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── NZ.png │ │ │ │ ├── NZ@2x.png │ │ │ │ └── NZ@3x.png │ │ │ ├── OM.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── OM.png │ │ │ │ ├── OM@2x.png │ │ │ │ └── OM@3x.png │ │ │ ├── PA.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── PA.png │ │ │ │ ├── PA@2x.png │ │ │ │ └── PA@3x.png │ │ │ ├── PE.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── PE.png │ │ │ │ ├── PE@2x.png │ │ │ │ └── PE@3x.png │ │ │ ├── PF.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── PF.png │ │ │ │ ├── PF@2x.png │ │ │ │ └── PF@3x.png │ │ │ ├── PG.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── PG.png │ │ │ │ ├── PG@2x.png │ │ │ │ └── PG@3x.png │ │ │ ├── PH.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── PH.png │ │ │ │ ├── PH@2x.png │ │ │ │ └── PH@3x.png │ │ │ ├── PK.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── PK.png │ │ │ │ ├── PK@2x.png │ │ │ │ └── PK@3x.png │ │ │ ├── PL.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── PL.png │ │ │ │ ├── PL@2x.png │ │ │ │ └── PL@3x.png │ │ │ ├── PM.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── PM.png │ │ │ │ ├── PM@2x.png │ │ │ │ └── PM@3x.png │ │ │ ├── PN.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── PN.png │ │ │ │ ├── PN@2x.png │ │ │ │ └── PN@3x.png │ │ │ ├── PR.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── PR.png │ │ │ │ ├── PR@2x.png │ │ │ │ └── PR@3x.png │ │ │ ├── PS.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── PS.png │ │ │ │ ├── PS@2x.png │ │ │ │ └── PS@3x.png │ │ │ ├── PT.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── PT.png │ │ │ │ ├── PT@2x.png │ │ │ │ └── PT@3x.png │ │ │ ├── PW.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── PW.png │ │ │ │ ├── PW@2x.png │ │ │ │ └── PW@3x.png │ │ │ ├── PY.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── PY.png │ │ │ │ ├── PY@2x.png │ │ │ │ └── PY@3x.png │ │ │ ├── QA.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── QA.png │ │ │ │ ├── QA@2x.png │ │ │ │ └── QA@3x.png │ │ │ ├── RE.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── RE.png │ │ │ │ ├── RE@2x.png │ │ │ │ └── RE@3x.png │ │ │ ├── RO.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── RO.png │ │ │ │ ├── RO@2x.png │ │ │ │ └── RO@3x.png │ │ │ ├── RS.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── RS.png │ │ │ │ ├── RS@2x.png │ │ │ │ └── RS@3x.png │ │ │ ├── RU.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── RU.png │ │ │ │ ├── RU@2x.png │ │ │ │ └── RU@3x.png │ │ │ ├── RW.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── RW.png │ │ │ │ ├── RW@2x.png │ │ │ │ └── RW@3x.png │ │ │ ├── SA.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── SA.png │ │ │ │ ├── SA@2x.png │ │ │ │ └── SA@3x.png │ │ │ ├── SB.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── SB.png │ │ │ │ ├── SB@2x.png │ │ │ │ └── SB@3x.png │ │ │ ├── SC.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── SC.png │ │ │ │ ├── SC@2x.png │ │ │ │ └── SC@3x.png │ │ │ ├── SD.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── SD.png │ │ │ │ ├── SD@2x.png │ │ │ │ └── SD@3x.png │ │ │ ├── SE.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── SE.png │ │ │ │ ├── SE@2x.png │ │ │ │ └── SE@3x.png │ │ │ ├── SG.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── SG.png │ │ │ │ ├── SG@2x.png │ │ │ │ └── SG@3x.png │ │ │ ├── SH.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── SH.png │ │ │ │ ├── SH@2x.png │ │ │ │ └── SH@3x.png │ │ │ ├── SI.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── SI.png │ │ │ │ ├── SI@2x.png │ │ │ │ └── SI@3x.png │ │ │ ├── SJ.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── SJ.png │ │ │ │ ├── SJ@2x.png │ │ │ │ └── SJ@3x.png │ │ │ ├── SK.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── SK.png │ │ │ │ ├── SK@2x.png │ │ │ │ └── SK@3x.png │ │ │ ├── SL.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── SL.png │ │ │ │ ├── SL@2x.png │ │ │ │ └── SL@3x.png │ │ │ ├── SM.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── SM.png │ │ │ │ ├── SM@2x.png │ │ │ │ └── SM@3x.png │ │ │ ├── SN.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── SN.png │ │ │ │ ├── SN@2x.png │ │ │ │ └── SN@3x.png │ │ │ ├── SO.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── SO.png │ │ │ │ ├── SO@2x.png │ │ │ │ └── SO@3x.png │ │ │ ├── SR.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── SR.png │ │ │ │ ├── SR@2x.png │ │ │ │ └── SR@3x.png │ │ │ ├── SS.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── SS.png │ │ │ │ ├── SS@2x.png │ │ │ │ └── SS@3x.png │ │ │ ├── ST.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── ST.png │ │ │ │ ├── ST@2x.png │ │ │ │ └── ST@3x.png │ │ │ ├── SV.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── SV.png │ │ │ │ ├── SV@2x.png │ │ │ │ └── SV@3x.png │ │ │ ├── SX.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── SX.png │ │ │ │ ├── SX@2x.png │ │ │ │ └── SX@3x.png │ │ │ ├── SY.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── SY.png │ │ │ │ ├── SY@2x.png │ │ │ │ └── SY@3x.png │ │ │ ├── SZ.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── SZ.png │ │ │ │ ├── SZ@2x.png │ │ │ │ └── SZ@3x.png │ │ │ ├── TC.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── TC.png │ │ │ │ ├── TC@2x.png │ │ │ │ └── TC@3x.png │ │ │ ├── TD.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── TD.png │ │ │ │ ├── TD@2x.png │ │ │ │ └── TD@3x.png │ │ │ ├── TF.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── TF.png │ │ │ │ ├── TF@2x.png │ │ │ │ └── TF@3x.png │ │ │ ├── TG.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── TG.png │ │ │ │ ├── TG@2x.png │ │ │ │ └── TG@3x.png │ │ │ ├── TH.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── TH.png │ │ │ │ ├── TH@2x.png │ │ │ │ └── TH@3x.png │ │ │ ├── TJ.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── TJ.png │ │ │ │ ├── TJ@2x.png │ │ │ │ └── TJ@3x.png │ │ │ ├── TK.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── TK.png │ │ │ │ ├── TK@2x.png │ │ │ │ └── TK@3x.png │ │ │ ├── TL.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── TL.png │ │ │ │ ├── TL@2x.png │ │ │ │ └── TL@3x.png │ │ │ ├── TM.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── TM.png │ │ │ │ ├── TM@2x.png │ │ │ │ └── TM@3x.png │ │ │ ├── TN.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── TN.png │ │ │ │ ├── TN@2x.png │ │ │ │ └── TN@3x.png │ │ │ ├── TO.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── TO.png │ │ │ │ ├── TO@2x.png │ │ │ │ └── TO@3x.png │ │ │ ├── TR.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── TR.png │ │ │ │ ├── TR@2x.png │ │ │ │ └── TR@3x.png │ │ │ ├── TT.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── TT.png │ │ │ │ ├── TT@2x.png │ │ │ │ └── TT@3x.png │ │ │ ├── TV.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── TV.png │ │ │ │ ├── TV@2x.png │ │ │ │ └── TV@3x.png │ │ │ ├── TW.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── TW.png │ │ │ │ ├── TW@2x.png │ │ │ │ └── TW@3x.png │ │ │ ├── TZ.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── TZ.png │ │ │ │ ├── TZ@2x.png │ │ │ │ └── TZ@3x.png │ │ │ ├── UA.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── UA.png │ │ │ │ ├── UA@2x.png │ │ │ │ └── UA@3x.png │ │ │ ├── UG.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── UG.png │ │ │ │ ├── UG@2x.png │ │ │ │ └── UG@3x.png │ │ │ ├── UM.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── UM.png │ │ │ │ ├── UM@2x.png │ │ │ │ └── UM@3x.png │ │ │ ├── US-CA.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── US-CA.png │ │ │ │ ├── US-CA@2x.png │ │ │ │ └── US-CA@3x.png │ │ │ ├── US.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── US.png │ │ │ │ ├── US@2x.png │ │ │ │ └── US@3x.png │ │ │ ├── UY.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── UY.png │ │ │ │ ├── UY@2x.png │ │ │ │ └── UY@3x.png │ │ │ ├── UZ.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── UZ.png │ │ │ │ ├── UZ@2x.png │ │ │ │ └── UZ@3x.png │ │ │ ├── VA.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── VA.png │ │ │ │ ├── VA@2x.png │ │ │ │ └── VA@3x.png │ │ │ ├── VC.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── VC.png │ │ │ │ ├── VC@2x.png │ │ │ │ └── VC@3x.png │ │ │ ├── VE.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── VE.png │ │ │ │ ├── VE@2x.png │ │ │ │ └── VE@3x.png │ │ │ ├── VG.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── VG.png │ │ │ │ ├── VG@2x.png │ │ │ │ └── VG@3x.png │ │ │ ├── VI.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── VI.png │ │ │ │ ├── VI@2x.png │ │ │ │ └── VI@3x.png │ │ │ ├── VN.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── VN.png │ │ │ │ ├── VN@2x.png │ │ │ │ └── VN@3x.png │ │ │ ├── VU.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── VU.png │ │ │ │ ├── VU@2x.png │ │ │ │ └── VU@3x.png │ │ │ ├── WF.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── WF.png │ │ │ │ ├── WF@2x.png │ │ │ │ └── WF@3x.png │ │ │ ├── WS.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── WS.png │ │ │ │ ├── WS@2x.png │ │ │ │ └── WS@3x.png │ │ │ ├── XK.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── XK.png │ │ │ │ ├── XK@2x.png │ │ │ │ └── XK@3x.png │ │ │ ├── YE.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── YE.png │ │ │ │ ├── YE@2x.png │ │ │ │ └── YE@3x.png │ │ │ ├── YT.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── YT.png │ │ │ │ ├── YT@2x.png │ │ │ │ └── YT@3x.png │ │ │ ├── ZA.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── ZA.png │ │ │ │ ├── ZA@2x.png │ │ │ │ └── ZA@3x.png │ │ │ ├── ZM.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── ZM.png │ │ │ │ ├── ZM@2x.png │ │ │ │ └── ZM@3x.png │ │ │ ├── ZW.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── ZW.png │ │ │ │ ├── ZW@2x.png │ │ │ │ └── ZW@3x.png │ │ │ └── unknown.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── unknown.png │ │ │ │ ├── unknown@2x.png │ │ │ │ └── unknown@3x.png │ │ └── countryCodes.json │ │ └── libPhoneNumber │ │ ├── Internal │ │ ├── NBRegExMatcher.h │ │ ├── NBRegExMatcher.m │ │ ├── NBRegularExpressionCache.h │ │ └── NBRegularExpressionCache.m │ │ ├── NBAsYouTypeFormatter.h │ │ ├── NBAsYouTypeFormatter.m │ │ ├── NBGeneratedPhoneNumberMetaData.h │ │ ├── NBMetadataHelper.h │ │ ├── NBMetadataHelper.m │ │ ├── NBNumberFormat.h │ │ ├── NBNumberFormat.m │ │ ├── NBPhoneMetaData.h │ │ ├── NBPhoneMetaData.m │ │ ├── NBPhoneNumber.h │ │ ├── NBPhoneNumber.m │ │ ├── NBPhoneNumberDefines.h │ │ ├── NBPhoneNumberDefines.m │ │ ├── NBPhoneNumberDesc.h │ │ ├── NBPhoneNumberDesc.m │ │ ├── NBPhoneNumberUtil+ShortNumber.h │ │ ├── NBPhoneNumberUtil+ShortNumber.m │ │ ├── NBPhoneNumberUtil.h │ │ ├── NBPhoneNumberUtil.m │ │ ├── NSArray+NBAdditions.h │ │ └── NSArray+NBAdditions.m ├── GTMSessionFetcher │ ├── LICENSE │ ├── README.md │ └── Source │ │ ├── GTMSessionFetcher.h │ │ ├── GTMSessionFetcher.m │ │ ├── GTMSessionFetcherLogging.h │ │ ├── GTMSessionFetcherLogging.m │ │ ├── GTMSessionFetcherService.h │ │ ├── GTMSessionFetcherService.m │ │ ├── GTMSessionUploadFetcher.h │ │ └── GTMSessionUploadFetcher.m ├── GoogleAppMeasurement │ └── Frameworks │ │ └── GoogleAppMeasurement.framework │ │ ├── GoogleAppMeasurement │ │ └── Modules │ │ └── module.modulemap ├── GoogleDataTransport │ ├── GoogleDataTransport │ │ └── GDTCORLibrary │ │ │ ├── GDTCORAssert.m │ │ │ ├── GDTCORClock.m │ │ │ ├── GDTCORConsoleLogger.m │ │ │ ├── GDTCORDataFuture.m │ │ │ ├── GDTCOREvent.m │ │ │ ├── GDTCORFlatFileStorage.m │ │ │ ├── GDTCORLifecycle.m │ │ │ ├── GDTCORPlatform.m │ │ │ ├── GDTCORReachability.m │ │ │ ├── GDTCORRegistrar.m │ │ │ ├── GDTCORTransformer.m │ │ │ ├── GDTCORTransport.m │ │ │ ├── GDTCORUploadCoordinator.m │ │ │ ├── GDTCORUploadPackage.m │ │ │ ├── Private │ │ │ ├── GDTCORDataFuture.h │ │ │ ├── GDTCOREvent_Private.h │ │ │ ├── GDTCORFlatFileStorage.h │ │ │ ├── GDTCORReachability_Private.h │ │ │ ├── GDTCORRegistrar_Private.h │ │ │ ├── GDTCORTransformer.h │ │ │ ├── GDTCORTransformer_Private.h │ │ │ ├── GDTCORTransport_Private.h │ │ │ ├── GDTCORUploadCoordinator.h │ │ │ └── GDTCORUploadPackage_Private.h │ │ │ └── Public │ │ │ ├── GDTCORAssert.h │ │ │ ├── GDTCORClock.h │ │ │ ├── GDTCORConsoleLogger.h │ │ │ ├── GDTCOREvent.h │ │ │ ├── GDTCOREventDataObject.h │ │ │ ├── GDTCOREventTransformer.h │ │ │ ├── GDTCORLifecycle.h │ │ │ ├── GDTCORPlatform.h │ │ │ ├── GDTCORPrioritizer.h │ │ │ ├── GDTCORReachability.h │ │ │ ├── GDTCORRegistrar.h │ │ │ ├── GDTCORStorageProtocol.h │ │ │ ├── GDTCORTargets.h │ │ │ ├── GDTCORTransport.h │ │ │ ├── GDTCORUploadPackage.h │ │ │ ├── GDTCORUploader.h │ │ │ └── GoogleDataTransport.h │ ├── LICENSE │ └── README.md ├── GoogleDataTransportCCTSupport │ ├── GoogleDataTransportCCTSupport │ │ └── GDTCCTLibrary │ │ │ ├── GDTCCTCompressionHelper.m │ │ │ ├── GDTCCTNanopbHelpers.m │ │ │ ├── GDTCCTPrioritizer.m │ │ │ ├── GDTCCTUploader.m │ │ │ ├── GDTCOREvent+NetworkConnectionInfo.m │ │ │ ├── Private │ │ │ ├── GDTCCTCompressionHelper.h │ │ │ ├── GDTCCTNanopbHelpers.h │ │ │ ├── GDTCCTPrioritizer.h │ │ │ ├── GDTCCTUploader.h │ │ │ └── GDTCOREvent+NetworkConnectionInfo.h │ │ │ └── Protogen │ │ │ └── nanopb │ │ │ ├── cct.nanopb.c │ │ │ └── cct.nanopb.h │ ├── LICENSE │ └── README.md ├── GoogleUtilities │ ├── GoogleUtilities │ │ ├── AppDelegateSwizzler │ │ │ ├── GULAppDelegateSwizzler.m │ │ │ ├── Internal │ │ │ │ └── GULAppDelegateSwizzler_Private.h │ │ │ └── Private │ │ │ │ ├── GULAppDelegateSwizzler.h │ │ │ │ └── GULApplication.h │ │ ├── Common │ │ │ └── GULLoggerCodes.h │ │ ├── Environment │ │ │ ├── GULHeartbeatDateStorage.m │ │ │ ├── GULSecureCoding.m │ │ │ ├── Public │ │ │ │ ├── GULHeartbeatDateStorage.h │ │ │ │ ├── GULKeychainStorage.h │ │ │ │ ├── GULKeychainUtils.h │ │ │ │ └── GULSecureCoding.h │ │ │ ├── SecureStorage │ │ │ │ ├── GULKeychainStorage.m │ │ │ │ └── GULKeychainUtils.m │ │ │ └── third_party │ │ │ │ ├── GULAppEnvironmentUtil.h │ │ │ │ └── GULAppEnvironmentUtil.m │ │ ├── LICENSE │ │ ├── Logger │ │ │ ├── GULLogger.m │ │ │ ├── Private │ │ │ │ └── GULLogger.h │ │ │ └── Public │ │ │ │ └── GULLoggerLevel.h │ │ ├── MethodSwizzler │ │ │ ├── GULSwizzler.m │ │ │ └── Private │ │ │ │ ├── GULOriginalIMPConvenienceMacros.h │ │ │ │ └── GULSwizzler.h │ │ ├── NSData+zlib │ │ │ ├── GULNSData+zlib.h │ │ │ └── GULNSData+zlib.m │ │ ├── Network │ │ │ ├── GULMutableDictionary.m │ │ │ ├── GULNetwork.m │ │ │ ├── GULNetworkConstants.m │ │ │ ├── GULNetworkURLSession.m │ │ │ └── Private │ │ │ │ ├── GULMutableDictionary.h │ │ │ │ ├── GULNetwork.h │ │ │ │ ├── GULNetworkConstants.h │ │ │ │ ├── GULNetworkLoggerProtocol.h │ │ │ │ ├── GULNetworkMessageCode.h │ │ │ │ └── GULNetworkURLSession.h │ │ ├── Reachability │ │ │ ├── GULReachabilityChecker+Internal.h │ │ │ ├── GULReachabilityChecker.m │ │ │ └── Private │ │ │ │ ├── GULReachabilityChecker.h │ │ │ │ └── GULReachabilityMessageCode.h │ │ ├── SceneDelegateSwizzler │ │ │ ├── GULSceneDelegateSwizzler.m │ │ │ ├── Internal │ │ │ │ └── GULSceneDelegateSwizzler_Private.h │ │ │ └── Private │ │ │ │ └── GULSceneDelegateSwizzler.h │ │ └── UserDefaults │ │ │ ├── GULUserDefaults.m │ │ │ └── Private │ │ │ └── GULUserDefaults.h │ └── README.md ├── Headers │ ├── Private │ │ ├── Firebase │ │ │ └── Firebase.h │ │ ├── FirebaseAuthInterop │ │ │ └── FIRAuthInterop.h │ │ └── FirebaseCoreDiagnosticsInterop │ │ │ ├── FIRCoreDiagnosticsData.h │ │ │ └── FIRCoreDiagnosticsInterop.h │ └── Public │ │ ├── Firebase │ │ └── Firebase.h │ │ ├── FirebaseAuthInterop │ │ └── FIRAuthInterop.h │ │ └── FirebaseCoreDiagnosticsInterop │ │ ├── FIRCoreDiagnosticsData.h │ │ └── FIRCoreDiagnosticsInterop.h ├── Manifest.lock ├── Pods.xcodeproj │ ├── project.pbxproj │ └── xcuserdata │ │ └── Salmik.xcuserdatad │ │ └── xcschemes │ │ ├── BoringSSL-GRPC.xcscheme │ │ ├── Firebase.xcscheme │ │ ├── FirebaseAnalytics.xcscheme │ │ ├── FirebaseAuth.xcscheme │ │ ├── FirebaseAuthInterop.xcscheme │ │ ├── FirebaseCore.xcscheme │ │ ├── FirebaseCoreDiagnostics.xcscheme │ │ ├── FirebaseCoreDiagnosticsInterop.xcscheme │ │ ├── FirebaseDatabase.xcscheme │ │ ├── FirebaseFirestore.xcscheme │ │ ├── FirebaseInstallations.xcscheme │ │ ├── FlagPhoneNumber-FlagPhoneNumber.xcscheme │ │ ├── FlagPhoneNumber.xcscheme │ │ ├── GTMSessionFetcher.xcscheme │ │ ├── GoogleAppMeasurement.xcscheme │ │ ├── GoogleDataTransport.xcscheme │ │ ├── GoogleDataTransportCCTSupport.xcscheme │ │ ├── GoogleUtilities.xcscheme │ │ ├── Pods-OCRApp-OCRAppUITests.xcscheme │ │ ├── Pods-OCRApp.xcscheme │ │ ├── Pods-OCRAppTests.xcscheme │ │ ├── PromisesObjC.xcscheme │ │ ├── QuickLayout.xcscheme │ │ ├── SideMenu.xcscheme │ │ ├── SwiftEntryKit.xcscheme │ │ ├── WeScan.xcscheme │ │ ├── abseil.xcscheme │ │ ├── gRPC-C++-gRPCCertificates-Cpp.xcscheme │ │ ├── gRPC-C++.xcscheme │ │ ├── gRPC-Core.xcscheme │ │ ├── leveldb-library.xcscheme │ │ ├── nanopb.xcscheme │ │ └── xcschememanagement.plist ├── 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 │ │ └── 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 ├── QuickLayout │ ├── LICENSE │ ├── QuickLayout │ │ ├── QLCompatibility.swift │ │ ├── QLUtils.swift │ │ ├── UIView+QLContentWrap.swift │ │ ├── UIView+QuickLayout.swift │ │ └── UIViewArray+QuickLayout.swift │ └── README.md ├── SideMenu │ ├── LICENSE │ ├── Pod │ │ └── Classes │ │ │ ├── Deprecations.swift │ │ │ ├── Extensions.swift │ │ │ ├── Initializable.swift │ │ │ ├── Print.swift │ │ │ ├── Protected.swift │ │ │ ├── SideMenuAnimationController.swift │ │ │ ├── SideMenuInteractionController.swift │ │ │ ├── SideMenuManager.swift │ │ │ ├── SideMenuNavigationController.swift │ │ │ ├── SideMenuPresentationController.swift │ │ │ ├── SideMenuPresentationStyle.swift │ │ │ ├── SideMenuPushCoordinator.swift │ │ │ ├── SideMenuTransitionController.swift │ │ │ └── UITableViewVibrantCell.swift │ └── README.md ├── SwiftEntryKit │ ├── LICENSE │ ├── README.md │ └── Source │ │ ├── Extensions │ │ ├── UIApplication+EKAppearance.swift │ │ ├── UIColor+Utils.swift │ │ ├── UIEdgeInsets+Utils.swift │ │ ├── UIRectCorner+Short.swift │ │ ├── UIView+Shadow.swift │ │ └── UIView+Utils.swift │ │ ├── Infra │ │ ├── EKBackgroundView.swift │ │ ├── EKContentView.swift │ │ ├── EKEntryView.swift │ │ ├── EKRootViewController.swift │ │ ├── EKStyleView.swift │ │ ├── EKWindow.swift │ │ ├── EKWindowProvider.swift │ │ ├── EKWrapperView.swift │ │ └── EntryCachingHeuristic.swift │ │ ├── MessageViews │ │ ├── EKAlertMessageView.swift │ │ ├── EKFormMessageView.swift │ │ ├── EKMessageContentView.swift │ │ ├── EKNotificationMessageView.swift │ │ ├── EKPopUpMessageView.swift │ │ ├── EKRatingMessageView.swift │ │ ├── EKSimpleMessageView.swift │ │ ├── MessagesUtils │ │ │ ├── EKButtonBarView.swift │ │ │ ├── EKButtonView.swift │ │ │ ├── EKRatingSymbolView.swift │ │ │ ├── EKRatingSymbolsContainerView.swift │ │ │ ├── EKTextField.swift │ │ │ └── EntryAppearanceDescriptor.swift │ │ └── Notes │ │ │ ├── EKAccessoryNoteMessageView.swift │ │ │ ├── EKImageNoteMessageView.swift │ │ │ ├── EKNoteMessageView.swift │ │ │ ├── EKProcessingNoteMessageView.swift │ │ │ └── EKXStatusBarMessageView.swift │ │ ├── Model │ │ ├── EKAlertMessage.swift │ │ ├── EKColor.swift │ │ ├── EKNotificationMessage.swift │ │ ├── EKPopUpMessage.swift │ │ ├── EKProperty.swift │ │ ├── EKRatingMessage.swift │ │ ├── EKSimpleMessage.swift │ │ └── EntryAttributes │ │ │ ├── EKAttributes+Animation.swift │ │ │ ├── EKAttributes+BackgroundStyle.swift │ │ │ ├── EKAttributes+DisplayMode.swift │ │ │ ├── EKAttributes+Duration.swift │ │ │ ├── EKAttributes+FrameStyle.swift │ │ │ ├── EKAttributes+HapticFeedback.swift │ │ │ ├── EKAttributes+LifecycleActions.swift │ │ │ ├── EKAttributes+PopBehavior.swift │ │ │ ├── EKAttributes+Position.swift │ │ │ ├── EKAttributes+PositionConstraints.swift │ │ │ ├── EKAttributes+Precedence.swift │ │ │ ├── EKAttributes+Presets.swift │ │ │ ├── EKAttributes+Scroll.swift │ │ │ ├── EKAttributes+Shadow.swift │ │ │ ├── EKAttributes+StatusBar.swift │ │ │ ├── EKAttributes+UserInteraction.swift │ │ │ ├── EKAttributes+Validations.swift │ │ │ ├── EKAttributes+WindowLevel.swift │ │ │ └── EKAttributes.swift │ │ ├── SwiftEntryKit.swift │ │ └── Utils │ │ ├── GradientView.swift │ │ ├── HapticFeedbackGenerator.swift │ │ └── UIView+Responder.swift ├── Target Support Files │ ├── BoringSSL-GRPC │ │ ├── BoringSSL-GRPC-Info.plist │ │ ├── BoringSSL-GRPC-dummy.m │ │ ├── BoringSSL-GRPC-prefix.pch │ │ ├── BoringSSL-GRPC.debug.xcconfig │ │ ├── BoringSSL-GRPC.modulemap │ │ └── BoringSSL-GRPC.release.xcconfig │ ├── Firebase │ │ ├── Firebase.debug.xcconfig │ │ └── Firebase.release.xcconfig │ ├── FirebaseAnalytics │ │ ├── FirebaseAnalytics.debug.xcconfig │ │ └── FirebaseAnalytics.release.xcconfig │ ├── FirebaseAuth │ │ ├── FirebaseAuth-Info.plist │ │ ├── FirebaseAuth-dummy.m │ │ ├── FirebaseAuth-umbrella.h │ │ ├── FirebaseAuth.debug.xcconfig │ │ ├── FirebaseAuth.modulemap │ │ └── FirebaseAuth.release.xcconfig │ ├── FirebaseAuthInterop │ │ ├── FirebaseAuthInterop.debug.xcconfig │ │ └── FirebaseAuthInterop.release.xcconfig │ ├── FirebaseCore │ │ ├── FirebaseCore-Info.plist │ │ ├── FirebaseCore-dummy.m │ │ ├── FirebaseCore-umbrella.h │ │ ├── FirebaseCore.debug.xcconfig │ │ ├── FirebaseCore.modulemap │ │ └── FirebaseCore.release.xcconfig │ ├── FirebaseCoreDiagnostics │ │ ├── FirebaseCoreDiagnostics-Info.plist │ │ ├── FirebaseCoreDiagnostics-dummy.m │ │ ├── FirebaseCoreDiagnostics-umbrella.h │ │ ├── FirebaseCoreDiagnostics.debug.xcconfig │ │ ├── FirebaseCoreDiagnostics.modulemap │ │ └── FirebaseCoreDiagnostics.release.xcconfig │ ├── FirebaseCoreDiagnosticsInterop │ │ ├── FirebaseCoreDiagnosticsInterop.debug.xcconfig │ │ └── FirebaseCoreDiagnosticsInterop.release.xcconfig │ ├── FirebaseDatabase │ │ ├── FirebaseDatabase-Info.plist │ │ ├── FirebaseDatabase-dummy.m │ │ ├── FirebaseDatabase-umbrella.h │ │ ├── FirebaseDatabase.debug.xcconfig │ │ ├── FirebaseDatabase.modulemap │ │ └── FirebaseDatabase.release.xcconfig │ ├── FirebaseFirestore │ │ ├── FirebaseFirestore-Info.plist │ │ ├── FirebaseFirestore-dummy.m │ │ ├── FirebaseFirestore-umbrella.h │ │ ├── FirebaseFirestore.debug.xcconfig │ │ ├── FirebaseFirestore.modulemap │ │ └── FirebaseFirestore.release.xcconfig │ ├── FirebaseInstallations │ │ ├── FirebaseInstallations-Info.plist │ │ ├── FirebaseInstallations-dummy.m │ │ ├── FirebaseInstallations-umbrella.h │ │ ├── FirebaseInstallations.debug.xcconfig │ │ ├── FirebaseInstallations.modulemap │ │ └── FirebaseInstallations.release.xcconfig │ ├── FlagPhoneNumber │ │ ├── FlagPhoneNumber-Info.plist │ │ ├── FlagPhoneNumber-dummy.m │ │ ├── FlagPhoneNumber-prefix.pch │ │ ├── FlagPhoneNumber-umbrella.h │ │ ├── FlagPhoneNumber.debug.xcconfig │ │ ├── FlagPhoneNumber.modulemap │ │ ├── FlagPhoneNumber.release.xcconfig │ │ └── ResourceBundle-FlagPhoneNumber-FlagPhoneNumber-Info.plist │ ├── GTMSessionFetcher │ │ ├── GTMSessionFetcher-Info.plist │ │ ├── GTMSessionFetcher-dummy.m │ │ ├── GTMSessionFetcher-prefix.pch │ │ ├── GTMSessionFetcher-umbrella.h │ │ ├── GTMSessionFetcher.debug.xcconfig │ │ ├── GTMSessionFetcher.modulemap │ │ └── GTMSessionFetcher.release.xcconfig │ ├── GoogleAppMeasurement │ │ ├── GoogleAppMeasurement.debug.xcconfig │ │ └── GoogleAppMeasurement.release.xcconfig │ ├── GoogleDataTransport │ │ ├── GoogleDataTransport-Info.plist │ │ ├── GoogleDataTransport-dummy.m │ │ ├── GoogleDataTransport-umbrella.h │ │ ├── GoogleDataTransport.debug.xcconfig │ │ ├── GoogleDataTransport.modulemap │ │ └── GoogleDataTransport.release.xcconfig │ ├── GoogleDataTransportCCTSupport │ │ ├── GoogleDataTransportCCTSupport-Info.plist │ │ ├── GoogleDataTransportCCTSupport-dummy.m │ │ ├── GoogleDataTransportCCTSupport-umbrella.h │ │ ├── GoogleDataTransportCCTSupport.debug.xcconfig │ │ ├── GoogleDataTransportCCTSupport.modulemap │ │ └── GoogleDataTransportCCTSupport.release.xcconfig │ ├── GoogleUtilities │ │ ├── GoogleUtilities-Info.plist │ │ ├── GoogleUtilities-dummy.m │ │ ├── GoogleUtilities-prefix.pch │ │ ├── GoogleUtilities-umbrella.h │ │ ├── GoogleUtilities.debug.xcconfig │ │ ├── GoogleUtilities.modulemap │ │ └── GoogleUtilities.release.xcconfig │ ├── Pods-OCRApp-OCRAppUITests │ │ ├── Pods-OCRApp-OCRAppUITests-Info.plist │ │ ├── Pods-OCRApp-OCRAppUITests-acknowledgements.markdown │ │ ├── Pods-OCRApp-OCRAppUITests-acknowledgements.plist │ │ ├── Pods-OCRApp-OCRAppUITests-dummy.m │ │ ├── Pods-OCRApp-OCRAppUITests-frameworks-Debug-input-files.xcfilelist │ │ ├── Pods-OCRApp-OCRAppUITests-frameworks-Debug-output-files.xcfilelist │ │ ├── Pods-OCRApp-OCRAppUITests-frameworks-Release-input-files.xcfilelist │ │ ├── Pods-OCRApp-OCRAppUITests-frameworks-Release-output-files.xcfilelist │ │ ├── Pods-OCRApp-OCRAppUITests-frameworks.sh │ │ ├── Pods-OCRApp-OCRAppUITests-umbrella.h │ │ ├── Pods-OCRApp-OCRAppUITests.debug.xcconfig │ │ ├── Pods-OCRApp-OCRAppUITests.modulemap │ │ └── Pods-OCRApp-OCRAppUITests.release.xcconfig │ ├── Pods-OCRApp │ │ ├── Pods-OCRApp-Info.plist │ │ ├── Pods-OCRApp-acknowledgements.markdown │ │ ├── Pods-OCRApp-acknowledgements.plist │ │ ├── Pods-OCRApp-dummy.m │ │ ├── Pods-OCRApp-frameworks-Debug-input-files.xcfilelist │ │ ├── Pods-OCRApp-frameworks-Debug-output-files.xcfilelist │ │ ├── Pods-OCRApp-frameworks-Release-input-files.xcfilelist │ │ ├── Pods-OCRApp-frameworks-Release-output-files.xcfilelist │ │ ├── Pods-OCRApp-frameworks.sh │ │ ├── Pods-OCRApp-umbrella.h │ │ ├── Pods-OCRApp.debug.xcconfig │ │ ├── Pods-OCRApp.modulemap │ │ └── Pods-OCRApp.release.xcconfig │ ├── Pods-OCRAppTests │ │ ├── Pods-OCRAppTests-Info.plist │ │ ├── Pods-OCRAppTests-acknowledgements.markdown │ │ ├── Pods-OCRAppTests-acknowledgements.plist │ │ ├── Pods-OCRAppTests-dummy.m │ │ ├── Pods-OCRAppTests-umbrella.h │ │ ├── Pods-OCRAppTests.debug.xcconfig │ │ ├── Pods-OCRAppTests.modulemap │ │ └── Pods-OCRAppTests.release.xcconfig │ ├── PromisesObjC │ │ ├── PromisesObjC-Info.plist │ │ ├── PromisesObjC-dummy.m │ │ ├── PromisesObjC-umbrella.h │ │ ├── PromisesObjC.debug.xcconfig │ │ ├── PromisesObjC.modulemap │ │ └── PromisesObjC.release.xcconfig │ ├── QuickLayout │ │ ├── QuickLayout-Info.plist │ │ ├── QuickLayout-dummy.m │ │ ├── QuickLayout-prefix.pch │ │ ├── QuickLayout-umbrella.h │ │ ├── QuickLayout.debug.xcconfig │ │ ├── QuickLayout.modulemap │ │ └── QuickLayout.release.xcconfig │ ├── SideMenu │ │ ├── SideMenu-Info.plist │ │ ├── SideMenu-dummy.m │ │ ├── SideMenu-prefix.pch │ │ ├── SideMenu-umbrella.h │ │ ├── SideMenu.debug.xcconfig │ │ ├── SideMenu.modulemap │ │ └── SideMenu.release.xcconfig │ ├── SwiftEntryKit │ │ ├── SwiftEntryKit-Info.plist │ │ ├── SwiftEntryKit-dummy.m │ │ ├── SwiftEntryKit-prefix.pch │ │ ├── SwiftEntryKit-umbrella.h │ │ ├── SwiftEntryKit.debug.xcconfig │ │ ├── SwiftEntryKit.modulemap │ │ └── SwiftEntryKit.release.xcconfig │ ├── WeScan │ │ ├── WeScan-Info.plist │ │ ├── WeScan-dummy.m │ │ ├── WeScan-prefix.pch │ │ ├── WeScan-umbrella.h │ │ ├── WeScan.debug.xcconfig │ │ ├── WeScan.modulemap │ │ └── WeScan.release.xcconfig │ ├── abseil │ │ ├── abseil-Info.plist │ │ ├── abseil-dummy.m │ │ ├── abseil-prefix.pch │ │ ├── abseil-umbrella.h │ │ ├── abseil.debug.xcconfig │ │ ├── abseil.modulemap │ │ └── abseil.release.xcconfig │ ├── gRPC-C++ │ │ ├── ResourceBundle-gRPCCertificates-Cpp-gRPC-C++-Info.plist │ │ ├── gRPC-C++-Info.plist │ │ ├── gRPC-C++-dummy.m │ │ ├── gRPC-C++-prefix.pch │ │ ├── gRPC-C++-umbrella.h │ │ ├── gRPC-C++.debug.xcconfig │ │ ├── gRPC-C++.modulemap │ │ └── gRPC-C++.release.xcconfig │ ├── gRPC-Core │ │ ├── gRPC-Core-Info.plist │ │ ├── gRPC-Core-dummy.m │ │ ├── gRPC-Core-prefix.pch │ │ ├── gRPC-Core.debug.xcconfig │ │ ├── gRPC-Core.modulemap │ │ └── gRPC-Core.release.xcconfig │ ├── leveldb-library │ │ ├── leveldb-library-Info.plist │ │ ├── leveldb-library-dummy.m │ │ ├── leveldb-library-prefix.pch │ │ ├── leveldb-library-umbrella.h │ │ ├── leveldb-library.debug.xcconfig │ │ ├── leveldb-library.modulemap │ │ └── leveldb-library.release.xcconfig │ └── nanopb │ │ ├── nanopb-Info.plist │ │ ├── nanopb-dummy.m │ │ ├── nanopb-prefix.pch │ │ ├── nanopb-umbrella.h │ │ ├── nanopb.debug.xcconfig │ │ ├── nanopb.modulemap │ │ └── nanopb.release.xcconfig ├── WeScan │ ├── LICENSE │ ├── README.md │ └── WeScan │ │ ├── Assets │ │ ├── enhance.png │ │ ├── enhance@2x.png │ │ ├── enhance@3x.png │ │ ├── flash.png │ │ ├── flash@2x.png │ │ ├── flash@3x.png │ │ ├── flashUnavailable.png │ │ ├── flashUnavailable@2x.png │ │ ├── flashUnavailable@3x.png │ │ ├── rotate.png │ │ ├── rotate@2x.png │ │ └── rotate@3x.png │ │ ├── Common │ │ ├── CIRectangleDetector.swift │ │ ├── EditScanCornerView.swift │ │ ├── Error.swift │ │ ├── Quadrilateral.swift │ │ ├── QuadrilateralView.swift │ │ └── VisionRectangleDetector.swift │ │ ├── Edit │ │ ├── EditScanViewController.swift │ │ └── ZoomGestureController.swift │ │ ├── Extensions │ │ ├── AVCaptureVideoOrientation+Utils.swift │ │ ├── Array+Utils.swift │ │ ├── CGAffineTransform+Utils.swift │ │ ├── CGImagePropertyOrientation.swift │ │ ├── CGPoint+Utils.swift │ │ ├── CGRect+Utils.swift │ │ ├── CGSize+Utils.swift │ │ ├── CIImage+Utils.swift │ │ ├── UIImage+Orientation.swift │ │ └── UIImage+Utils.swift │ │ ├── ImageScannerController.swift │ │ ├── Protocols │ │ ├── CaptureDevice.swift │ │ └── Transformable.swift │ │ ├── Review │ │ └── ReviewViewController.swift │ │ ├── Scan │ │ ├── CaptureSessionManager.swift │ │ ├── FocusRectangleView.swift │ │ ├── RectangleFeaturesFunnel.swift │ │ ├── ScannerViewController.swift │ │ └── ShutterButton.swift │ │ ├── Session │ │ ├── CaptureSession+Flash.swift │ │ ├── CaptureSession+Focus.swift │ │ ├── CaptureSession+Orientation.swift │ │ └── CaptureSession.swift │ │ ├── WeScan.h │ │ ├── de.lproj │ │ └── Localizable.strings │ │ ├── en.lproj │ │ └── Localizable.strings │ │ ├── es-419.lproj │ │ └── Localizable.strings │ │ ├── es.lproj │ │ └── Localizable.strings │ │ ├── fr.lproj │ │ └── Localizable.strings │ │ ├── hu.lproj │ │ └── Localizable.strings │ │ ├── it.lproj │ │ └── Localizable.strings │ │ ├── pl.lproj │ │ └── Localizable.strings │ │ ├── pt-BR.lproj │ │ └── Localizable.strings │ │ ├── pt-PT.lproj │ │ └── Localizable.strings │ │ ├── zh-Hans.lproj │ │ └── Localizable.strings │ │ └── zh-Hant.lproj │ │ └── Localizable.strings ├── abseil │ ├── LICENSE │ ├── README.md │ └── absl │ │ ├── algorithm │ │ ├── algorithm.h │ │ └── container.h │ │ ├── base │ │ ├── attributes.h │ │ ├── call_once.h │ │ ├── casts.h │ │ ├── config.h │ │ ├── const_init.h │ │ ├── dynamic_annotations.cc │ │ ├── dynamic_annotations.h │ │ ├── internal │ │ │ ├── atomic_hook.h │ │ │ ├── bits.h │ │ │ ├── cycleclock.cc │ │ │ ├── cycleclock.h │ │ │ ├── direct_mmap.h │ │ │ ├── endian.h │ │ │ ├── errno_saver.h │ │ │ ├── exponential_biased.cc │ │ │ ├── exponential_biased.h │ │ │ ├── hide_ptr.h │ │ │ ├── identity.h │ │ │ ├── inline_variable.h │ │ │ ├── invoke.h │ │ │ ├── low_level_alloc.cc │ │ │ ├── low_level_alloc.h │ │ │ ├── low_level_scheduling.h │ │ │ ├── per_thread_tls.h │ │ │ ├── periodic_sampler.cc │ │ │ ├── periodic_sampler.h │ │ │ ├── pretty_function.h │ │ │ ├── raw_logging.cc │ │ │ ├── raw_logging.h │ │ │ ├── scheduling_mode.h │ │ │ ├── spinlock.cc │ │ │ ├── spinlock.h │ │ │ ├── spinlock_akaros.inc │ │ │ ├── spinlock_linux.inc │ │ │ ├── spinlock_posix.inc │ │ │ ├── spinlock_wait.cc │ │ │ ├── spinlock_wait.h │ │ │ ├── spinlock_win32.inc │ │ │ ├── sysinfo.cc │ │ │ ├── sysinfo.h │ │ │ ├── thread_annotations.h │ │ │ ├── thread_identity.cc │ │ │ ├── thread_identity.h │ │ │ ├── throw_delegate.cc │ │ │ ├── throw_delegate.h │ │ │ ├── tsan_mutex_interface.h │ │ │ ├── unaligned_access.h │ │ │ ├── unscaledcycleclock.cc │ │ │ └── unscaledcycleclock.h │ │ ├── log_severity.cc │ │ ├── log_severity.h │ │ ├── macros.h │ │ ├── optimization.h │ │ ├── options.h │ │ ├── policy_checks.h │ │ ├── port.h │ │ └── thread_annotations.h │ │ ├── container │ │ ├── inlined_vector.h │ │ └── internal │ │ │ ├── compressed_tuple.h │ │ │ └── inlined_vector.h │ │ ├── memory │ │ └── memory.h │ │ ├── meta │ │ └── type_traits.h │ │ ├── numeric │ │ ├── int128.cc │ │ ├── int128.h │ │ ├── int128_have_intrinsic.inc │ │ └── int128_no_intrinsic.inc │ │ ├── strings │ │ ├── ascii.cc │ │ ├── ascii.h │ │ ├── charconv.cc │ │ ├── charconv.h │ │ ├── escaping.cc │ │ ├── escaping.h │ │ ├── internal │ │ │ ├── char_map.h │ │ │ ├── charconv_bigint.cc │ │ │ ├── charconv_bigint.h │ │ │ ├── charconv_parse.cc │ │ │ ├── charconv_parse.h │ │ │ ├── escaping.cc │ │ │ ├── escaping.h │ │ │ ├── memutil.cc │ │ │ ├── memutil.h │ │ │ ├── ostringstream.cc │ │ │ ├── ostringstream.h │ │ │ ├── resize_uninitialized.h │ │ │ ├── stl_type_traits.h │ │ │ ├── str_format │ │ │ │ ├── arg.cc │ │ │ │ ├── arg.h │ │ │ │ ├── bind.cc │ │ │ │ ├── bind.h │ │ │ │ ├── checker.h │ │ │ │ ├── extension.cc │ │ │ │ ├── extension.h │ │ │ │ ├── float_conversion.cc │ │ │ │ ├── float_conversion.h │ │ │ │ ├── output.cc │ │ │ │ ├── output.h │ │ │ │ ├── parser.cc │ │ │ │ └── parser.h │ │ │ ├── str_join_internal.h │ │ │ ├── str_split_internal.h │ │ │ ├── utf8.cc │ │ │ └── utf8.h │ │ ├── match.cc │ │ ├── match.h │ │ ├── numbers.cc │ │ ├── numbers.h │ │ ├── str_cat.cc │ │ ├── str_cat.h │ │ ├── str_format.h │ │ ├── str_join.h │ │ ├── str_replace.cc │ │ ├── str_replace.h │ │ ├── str_split.cc │ │ ├── str_split.h │ │ ├── string_view.cc │ │ ├── string_view.h │ │ ├── strip.h │ │ ├── substitute.cc │ │ └── substitute.h │ │ ├── time │ │ ├── civil_time.cc │ │ ├── civil_time.h │ │ ├── clock.cc │ │ ├── clock.h │ │ ├── duration.cc │ │ ├── format.cc │ │ ├── internal │ │ │ ├── cctz │ │ │ │ ├── include │ │ │ │ │ └── cctz │ │ │ │ │ │ ├── civil_time.h │ │ │ │ │ │ ├── civil_time_detail.h │ │ │ │ │ │ ├── time_zone.h │ │ │ │ │ │ └── zone_info_source.h │ │ │ │ └── src │ │ │ │ │ ├── civil_time_detail.cc │ │ │ │ │ ├── time_zone_fixed.cc │ │ │ │ │ ├── time_zone_fixed.h │ │ │ │ │ ├── time_zone_format.cc │ │ │ │ │ ├── time_zone_if.cc │ │ │ │ │ ├── time_zone_if.h │ │ │ │ │ ├── time_zone_impl.cc │ │ │ │ │ ├── time_zone_impl.h │ │ │ │ │ ├── time_zone_info.cc │ │ │ │ │ ├── time_zone_info.h │ │ │ │ │ ├── time_zone_libc.cc │ │ │ │ │ ├── time_zone_libc.h │ │ │ │ │ ├── time_zone_lookup.cc │ │ │ │ │ ├── time_zone_posix.cc │ │ │ │ │ ├── time_zone_posix.h │ │ │ │ │ ├── tzfile.h │ │ │ │ │ └── zone_info_source.cc │ │ │ ├── get_current_time_chrono.inc │ │ │ └── get_current_time_posix.inc │ │ ├── time.cc │ │ └── time.h │ │ ├── types │ │ ├── any.h │ │ ├── bad_any_cast.cc │ │ ├── bad_any_cast.h │ │ ├── bad_optional_access.cc │ │ ├── bad_optional_access.h │ │ ├── bad_variant_access.cc │ │ ├── bad_variant_access.h │ │ ├── compare.h │ │ ├── internal │ │ │ ├── optional.h │ │ │ ├── span.h │ │ │ └── variant.h │ │ ├── optional.h │ │ ├── span.h │ │ └── variant.h │ │ └── utility │ │ └── utility.h ├── gRPC-C++ │ ├── LICENSE │ ├── README.md │ ├── etc │ │ └── roots.pem │ ├── include │ │ └── grpcpp │ │ │ ├── alarm.h │ │ │ ├── alarm_impl.h │ │ │ ├── channel.h │ │ │ ├── channel_impl.h │ │ │ ├── client_context.h │ │ │ ├── completion_queue.h │ │ │ ├── completion_queue_impl.h │ │ │ ├── create_channel.h │ │ │ ├── create_channel_impl.h │ │ │ ├── create_channel_posix.h │ │ │ ├── create_channel_posix_impl.h │ │ │ ├── ext │ │ │ └── health_check_service_server_builder_option.h │ │ │ ├── generic │ │ │ ├── async_generic_service.h │ │ │ ├── generic_stub.h │ │ │ └── generic_stub_impl.h │ │ │ ├── grpcpp.h │ │ │ ├── health_check_service_interface.h │ │ │ ├── health_check_service_interface_impl.h │ │ │ ├── impl │ │ │ ├── call.h │ │ │ ├── channel_argument_option.h │ │ │ ├── client_unary_call.h │ │ │ ├── codegen │ │ │ │ ├── async_generic_service.h │ │ │ │ ├── async_stream.h │ │ │ │ ├── async_stream_impl.h │ │ │ │ ├── async_unary_call.h │ │ │ │ ├── async_unary_call_impl.h │ │ │ │ ├── byte_buffer.h │ │ │ │ ├── call.h │ │ │ │ ├── call_hook.h │ │ │ │ ├── call_op_set.h │ │ │ │ ├── call_op_set_interface.h │ │ │ │ ├── callback_common.h │ │ │ │ ├── channel_interface.h │ │ │ │ ├── client_callback.h │ │ │ │ ├── client_callback_impl.h │ │ │ │ ├── client_context.h │ │ │ │ ├── client_context_impl.h │ │ │ │ ├── client_interceptor.h │ │ │ │ ├── client_unary_call.h │ │ │ │ ├── completion_queue.h │ │ │ │ ├── completion_queue_impl.h │ │ │ │ ├── completion_queue_tag.h │ │ │ │ ├── config.h │ │ │ │ ├── core_codegen.h │ │ │ │ ├── core_codegen_interface.h │ │ │ │ ├── create_auth_context.h │ │ │ │ ├── delegating_channel.h │ │ │ │ ├── grpc_library.h │ │ │ │ ├── intercepted_channel.h │ │ │ │ ├── interceptor.h │ │ │ │ ├── interceptor_common.h │ │ │ │ ├── message_allocator.h │ │ │ │ ├── metadata_map.h │ │ │ │ ├── method_handler.h │ │ │ │ ├── method_handler_impl.h │ │ │ │ ├── rpc_method.h │ │ │ │ ├── rpc_service_method.h │ │ │ │ ├── security │ │ │ │ │ └── auth_context.h │ │ │ │ ├── serialization_traits.h │ │ │ │ ├── server_callback.h │ │ │ │ ├── server_callback_handlers.h │ │ │ │ ├── server_callback_impl.h │ │ │ │ ├── server_context.h │ │ │ │ ├── server_context_impl.h │ │ │ │ ├── server_interceptor.h │ │ │ │ ├── server_interface.h │ │ │ │ ├── service_type.h │ │ │ │ ├── slice.h │ │ │ │ ├── status.h │ │ │ │ ├── status_code_enum.h │ │ │ │ ├── string_ref.h │ │ │ │ ├── stub_options.h │ │ │ │ ├── sync.h │ │ │ │ ├── sync_stream.h │ │ │ │ ├── sync_stream_impl.h │ │ │ │ └── time.h │ │ │ ├── grpc_library.h │ │ │ ├── method_handler_impl.h │ │ │ ├── rpc_method.h │ │ │ ├── rpc_service_method.h │ │ │ ├── serialization_traits.h │ │ │ ├── server_builder_option.h │ │ │ ├── server_builder_option_impl.h │ │ │ ├── server_builder_plugin.h │ │ │ ├── server_initializer.h │ │ │ ├── server_initializer_impl.h │ │ │ └── service_type.h │ │ │ ├── resource_quota.h │ │ │ ├── resource_quota_impl.h │ │ │ ├── security │ │ │ ├── auth_context.h │ │ │ ├── auth_metadata_processor.h │ │ │ ├── auth_metadata_processor_impl.h │ │ │ ├── credentials.h │ │ │ ├── credentials_impl.h │ │ │ ├── server_credentials.h │ │ │ ├── server_credentials_impl.h │ │ │ └── tls_credentials_options.h │ │ │ ├── server.h │ │ │ ├── server_builder.h │ │ │ ├── server_builder_impl.h │ │ │ ├── server_context.h │ │ │ ├── server_impl.h │ │ │ ├── server_posix.h │ │ │ ├── server_posix_impl.h │ │ │ └── support │ │ │ ├── async_stream.h │ │ │ ├── async_stream_impl.h │ │ │ ├── async_unary_call.h │ │ │ ├── async_unary_call_impl.h │ │ │ ├── byte_buffer.h │ │ │ ├── channel_arguments.h │ │ │ ├── channel_arguments_impl.h │ │ │ ├── client_callback.h │ │ │ ├── client_callback_impl.h │ │ │ ├── client_interceptor.h │ │ │ ├── config.h │ │ │ ├── interceptor.h │ │ │ ├── message_allocator.h │ │ │ ├── proto_buffer_reader.h │ │ │ ├── proto_buffer_writer.h │ │ │ ├── server_callback.h │ │ │ ├── server_callback_impl.h │ │ │ ├── server_interceptor.h │ │ │ ├── slice.h │ │ │ ├── status.h │ │ │ ├── status_code_enum.h │ │ │ ├── string_ref.h │ │ │ ├── stub_options.h │ │ │ ├── sync_stream.h │ │ │ ├── sync_stream_impl.h │ │ │ ├── time.h │ │ │ └── validate_service_config.h │ ├── src │ │ ├── core │ │ │ ├── ext │ │ │ │ ├── filters │ │ │ │ │ ├── client_channel │ │ │ │ │ │ ├── backend_metric.h │ │ │ │ │ │ ├── backup_poller.h │ │ │ │ │ │ ├── client_channel.h │ │ │ │ │ │ ├── client_channel_channelz.h │ │ │ │ │ │ ├── client_channel_factory.h │ │ │ │ │ │ ├── connector.h │ │ │ │ │ │ ├── global_subchannel_pool.h │ │ │ │ │ │ ├── health │ │ │ │ │ │ │ └── health_check_client.h │ │ │ │ │ │ ├── http_connect_handshaker.h │ │ │ │ │ │ ├── http_proxy.h │ │ │ │ │ │ ├── lb_policy.h │ │ │ │ │ │ ├── lb_policy │ │ │ │ │ │ │ ├── child_policy_handler.h │ │ │ │ │ │ │ ├── grpclb │ │ │ │ │ │ │ │ ├── client_load_reporting_filter.h │ │ │ │ │ │ │ │ ├── grpclb.h │ │ │ │ │ │ │ │ ├── grpclb_channel.h │ │ │ │ │ │ │ │ ├── grpclb_client_stats.h │ │ │ │ │ │ │ │ └── load_balancer_api.h │ │ │ │ │ │ │ ├── subchannel_list.h │ │ │ │ │ │ │ └── xds │ │ │ │ │ │ │ │ └── xds.h │ │ │ │ │ │ ├── lb_policy_factory.h │ │ │ │ │ │ ├── lb_policy_registry.h │ │ │ │ │ │ ├── local_subchannel_pool.h │ │ │ │ │ │ ├── parse_address.h │ │ │ │ │ │ ├── proxy_mapper.h │ │ │ │ │ │ ├── proxy_mapper_registry.h │ │ │ │ │ │ ├── resolver.h │ │ │ │ │ │ ├── resolver │ │ │ │ │ │ │ ├── dns │ │ │ │ │ │ │ │ ├── c_ares │ │ │ │ │ │ │ │ │ ├── grpc_ares_ev_driver.h │ │ │ │ │ │ │ │ │ └── grpc_ares_wrapper.h │ │ │ │ │ │ │ │ └── dns_resolver_selection.h │ │ │ │ │ │ │ └── fake │ │ │ │ │ │ │ │ └── fake_resolver.h │ │ │ │ │ │ ├── resolver_factory.h │ │ │ │ │ │ ├── resolver_registry.h │ │ │ │ │ │ ├── resolver_result_parsing.h │ │ │ │ │ │ ├── resolving_lb_policy.h │ │ │ │ │ │ ├── retry_throttle.h │ │ │ │ │ │ ├── server_address.h │ │ │ │ │ │ ├── service_config.h │ │ │ │ │ │ ├── subchannel.h │ │ │ │ │ │ ├── subchannel_interface.h │ │ │ │ │ │ ├── subchannel_pool_interface.h │ │ │ │ │ │ └── xds │ │ │ │ │ │ │ ├── xds_api.h │ │ │ │ │ │ │ ├── xds_bootstrap.h │ │ │ │ │ │ │ ├── xds_channel.h │ │ │ │ │ │ │ ├── xds_channel_args.h │ │ │ │ │ │ │ ├── xds_client.h │ │ │ │ │ │ │ └── xds_client_stats.h │ │ │ │ │ ├── deadline │ │ │ │ │ │ └── deadline_filter.h │ │ │ │ │ ├── http │ │ │ │ │ │ ├── client │ │ │ │ │ │ │ └── http_client_filter.h │ │ │ │ │ │ ├── client_authority_filter.h │ │ │ │ │ │ ├── message_compress │ │ │ │ │ │ │ └── message_compress_filter.h │ │ │ │ │ │ └── server │ │ │ │ │ │ │ └── http_server_filter.h │ │ │ │ │ ├── max_age │ │ │ │ │ │ └── max_age_filter.h │ │ │ │ │ ├── message_size │ │ │ │ │ │ └── message_size_filter.h │ │ │ │ │ └── workarounds │ │ │ │ │ │ ├── workaround_cronet_compression_filter.h │ │ │ │ │ │ └── workaround_utils.h │ │ │ │ ├── transport │ │ │ │ │ ├── chttp2 │ │ │ │ │ │ ├── alpn │ │ │ │ │ │ │ └── alpn.h │ │ │ │ │ │ ├── client │ │ │ │ │ │ │ ├── authority.h │ │ │ │ │ │ │ └── chttp2_connector.h │ │ │ │ │ │ ├── server │ │ │ │ │ │ │ └── chttp2_server.h │ │ │ │ │ │ └── transport │ │ │ │ │ │ │ ├── bin_decoder.h │ │ │ │ │ │ │ ├── bin_encoder.h │ │ │ │ │ │ │ ├── chttp2_transport.h │ │ │ │ │ │ │ ├── context_list.h │ │ │ │ │ │ │ ├── flow_control.h │ │ │ │ │ │ │ ├── frame.h │ │ │ │ │ │ │ ├── frame_data.h │ │ │ │ │ │ │ ├── frame_goaway.h │ │ │ │ │ │ │ ├── frame_ping.h │ │ │ │ │ │ │ ├── frame_rst_stream.h │ │ │ │ │ │ │ ├── frame_settings.h │ │ │ │ │ │ │ ├── frame_window_update.h │ │ │ │ │ │ │ ├── hpack_encoder.h │ │ │ │ │ │ │ ├── hpack_parser.h │ │ │ │ │ │ │ ├── hpack_table.h │ │ │ │ │ │ │ ├── http2_settings.h │ │ │ │ │ │ │ ├── huffsyms.h │ │ │ │ │ │ │ ├── incoming_metadata.h │ │ │ │ │ │ │ ├── internal.h │ │ │ │ │ │ │ ├── stream_map.h │ │ │ │ │ │ │ └── varint.h │ │ │ │ │ └── inproc │ │ │ │ │ │ └── inproc_transport.h │ │ │ │ └── upb-generated │ │ │ │ │ ├── envoy │ │ │ │ │ ├── annotations │ │ │ │ │ │ ├── deprecation.upb.h │ │ │ │ │ │ └── resource.upb.h │ │ │ │ │ ├── api │ │ │ │ │ │ └── v2 │ │ │ │ │ │ │ ├── auth │ │ │ │ │ │ │ └── cert.upb.h │ │ │ │ │ │ │ ├── cds.upb.h │ │ │ │ │ │ │ ├── cluster.upb.h │ │ │ │ │ │ │ ├── cluster │ │ │ │ │ │ │ ├── circuit_breaker.upb.h │ │ │ │ │ │ │ ├── filter.upb.h │ │ │ │ │ │ │ └── outlier_detection.upb.h │ │ │ │ │ │ │ ├── core │ │ │ │ │ │ │ ├── address.upb.h │ │ │ │ │ │ │ ├── base.upb.h │ │ │ │ │ │ │ ├── config_source.upb.h │ │ │ │ │ │ │ ├── grpc_service.upb.h │ │ │ │ │ │ │ ├── health_check.upb.h │ │ │ │ │ │ │ ├── http_uri.upb.h │ │ │ │ │ │ │ └── protocol.upb.h │ │ │ │ │ │ │ ├── discovery.upb.h │ │ │ │ │ │ │ ├── eds.upb.h │ │ │ │ │ │ │ ├── endpoint.upb.h │ │ │ │ │ │ │ ├── endpoint │ │ │ │ │ │ │ ├── endpoint.upb.h │ │ │ │ │ │ │ ├── endpoint_components.upb.h │ │ │ │ │ │ │ └── load_report.upb.h │ │ │ │ │ │ │ ├── lds.upb.h │ │ │ │ │ │ │ ├── listener.upb.h │ │ │ │ │ │ │ ├── listener │ │ │ │ │ │ │ ├── listener.upb.h │ │ │ │ │ │ │ ├── listener_components.upb.h │ │ │ │ │ │ │ └── udp_listener_config.upb.h │ │ │ │ │ │ │ ├── rds.upb.h │ │ │ │ │ │ │ ├── route.upb.h │ │ │ │ │ │ │ ├── route │ │ │ │ │ │ │ ├── route.upb.h │ │ │ │ │ │ │ └── route_components.upb.h │ │ │ │ │ │ │ ├── scoped_route.upb.h │ │ │ │ │ │ │ └── srds.upb.h │ │ │ │ │ ├── config │ │ │ │ │ │ ├── filter │ │ │ │ │ │ │ ├── accesslog │ │ │ │ │ │ │ │ └── v2 │ │ │ │ │ │ │ │ │ └── accesslog.upb.h │ │ │ │ │ │ │ └── network │ │ │ │ │ │ │ │ └── http_connection_manager │ │ │ │ │ │ │ │ └── v2 │ │ │ │ │ │ │ │ └── http_connection_manager.upb.h │ │ │ │ │ │ └── listener │ │ │ │ │ │ │ └── v2 │ │ │ │ │ │ │ └── api_listener.upb.h │ │ │ │ │ ├── service │ │ │ │ │ │ ├── discovery │ │ │ │ │ │ │ └── v2 │ │ │ │ │ │ │ │ └── ads.upb.h │ │ │ │ │ │ └── load_stats │ │ │ │ │ │ │ └── v2 │ │ │ │ │ │ │ └── lrs.upb.h │ │ │ │ │ └── type │ │ │ │ │ │ ├── http.upb.h │ │ │ │ │ │ ├── matcher │ │ │ │ │ │ ├── regex.upb.h │ │ │ │ │ │ └── string.upb.h │ │ │ │ │ │ ├── metadata │ │ │ │ │ │ └── v2 │ │ │ │ │ │ │ └── metadata.upb.h │ │ │ │ │ │ ├── percent.upb.h │ │ │ │ │ │ ├── range.upb.h │ │ │ │ │ │ ├── semantic_version.upb.h │ │ │ │ │ │ └── tracing │ │ │ │ │ │ └── v2 │ │ │ │ │ │ └── custom_tag.upb.h │ │ │ │ │ ├── gogoproto │ │ │ │ │ └── gogo.upb.h │ │ │ │ │ ├── google │ │ │ │ │ ├── api │ │ │ │ │ │ ├── annotations.upb.h │ │ │ │ │ │ └── http.upb.h │ │ │ │ │ ├── protobuf │ │ │ │ │ │ ├── any.upb.h │ │ │ │ │ │ ├── descriptor.upb.h │ │ │ │ │ │ ├── duration.upb.h │ │ │ │ │ │ ├── empty.upb.h │ │ │ │ │ │ ├── struct.upb.h │ │ │ │ │ │ ├── timestamp.upb.h │ │ │ │ │ │ └── wrappers.upb.h │ │ │ │ │ └── rpc │ │ │ │ │ │ └── status.upb.h │ │ │ │ │ ├── src │ │ │ │ │ └── proto │ │ │ │ │ │ └── grpc │ │ │ │ │ │ ├── gcp │ │ │ │ │ │ ├── altscontext.upb.h │ │ │ │ │ │ ├── handshaker.upb.h │ │ │ │ │ │ └── transport_security_common.upb.h │ │ │ │ │ │ ├── health │ │ │ │ │ │ └── v1 │ │ │ │ │ │ │ └── health.upb.h │ │ │ │ │ │ └── lb │ │ │ │ │ │ └── v1 │ │ │ │ │ │ └── load_balancer.upb.h │ │ │ │ │ ├── udpa │ │ │ │ │ ├── annotations │ │ │ │ │ │ ├── migrate.upb.h │ │ │ │ │ │ └── sensitive.upb.h │ │ │ │ │ └── data │ │ │ │ │ │ └── orca │ │ │ │ │ │ └── v1 │ │ │ │ │ │ └── orca_load_report.upb.h │ │ │ │ │ └── validate │ │ │ │ │ └── validate.upb.h │ │ │ ├── lib │ │ │ │ ├── avl │ │ │ │ │ └── avl.h │ │ │ │ ├── backoff │ │ │ │ │ └── backoff.h │ │ │ │ ├── channel │ │ │ │ │ ├── channel_args.h │ │ │ │ │ ├── channel_stack.h │ │ │ │ │ ├── channel_stack_builder.h │ │ │ │ │ ├── channel_trace.h │ │ │ │ │ ├── channelz.h │ │ │ │ │ ├── channelz_registry.h │ │ │ │ │ ├── connected_channel.h │ │ │ │ │ ├── context.h │ │ │ │ │ ├── handshaker.h │ │ │ │ │ ├── handshaker_factory.h │ │ │ │ │ ├── handshaker_registry.h │ │ │ │ │ └── status_util.h │ │ │ │ ├── compression │ │ │ │ │ ├── algorithm_metadata.h │ │ │ │ │ ├── compression_args.h │ │ │ │ │ ├── compression_internal.h │ │ │ │ │ ├── message_compress.h │ │ │ │ │ ├── stream_compression.h │ │ │ │ │ ├── stream_compression_gzip.h │ │ │ │ │ └── stream_compression_identity.h │ │ │ │ ├── debug │ │ │ │ │ ├── stats.h │ │ │ │ │ ├── stats_data.h │ │ │ │ │ └── trace.h │ │ │ │ ├── gpr │ │ │ │ │ ├── alloc.h │ │ │ │ │ ├── arena.h │ │ │ │ │ ├── env.h │ │ │ │ │ ├── murmur_hash.h │ │ │ │ │ ├── spinlock.h │ │ │ │ │ ├── string.h │ │ │ │ │ ├── string_windows.h │ │ │ │ │ ├── time_precise.h │ │ │ │ │ ├── tls.h │ │ │ │ │ ├── tls_gcc.h │ │ │ │ │ ├── tls_msvc.h │ │ │ │ │ ├── tls_pthread.h │ │ │ │ │ ├── tmpfile.h │ │ │ │ │ └── useful.h │ │ │ │ ├── gprpp │ │ │ │ │ ├── arena.h │ │ │ │ │ ├── atomic.h │ │ │ │ │ ├── debug_location.h │ │ │ │ │ ├── fork.h │ │ │ │ │ ├── global_config.h │ │ │ │ │ ├── global_config_custom.h │ │ │ │ │ ├── global_config_env.h │ │ │ │ │ ├── global_config_generic.h │ │ │ │ │ ├── host_port.h │ │ │ │ │ ├── inlined_vector.h │ │ │ │ │ ├── manual_constructor.h │ │ │ │ │ ├── map.h │ │ │ │ │ ├── memory.h │ │ │ │ │ ├── mpscq.h │ │ │ │ │ ├── optional.h │ │ │ │ │ ├── orphanable.h │ │ │ │ │ ├── ref_counted.h │ │ │ │ │ ├── ref_counted_ptr.h │ │ │ │ │ ├── string_view.h │ │ │ │ │ ├── sync.h │ │ │ │ │ └── thd.h │ │ │ │ ├── http │ │ │ │ │ ├── format_request.h │ │ │ │ │ ├── httpcli.h │ │ │ │ │ └── parser.h │ │ │ │ ├── iomgr │ │ │ │ │ ├── block_annotate.h │ │ │ │ │ ├── buffer_list.h │ │ │ │ │ ├── call_combiner.h │ │ │ │ │ ├── cfstream_handle.h │ │ │ │ │ ├── closure.h │ │ │ │ │ ├── combiner.h │ │ │ │ │ ├── dynamic_annotations.h │ │ │ │ │ ├── endpoint.h │ │ │ │ │ ├── endpoint_cfstream.h │ │ │ │ │ ├── endpoint_pair.h │ │ │ │ │ ├── error.h │ │ │ │ │ ├── error_cfstream.h │ │ │ │ │ ├── error_internal.h │ │ │ │ │ ├── ev_epoll1_linux.h │ │ │ │ │ ├── ev_epollex_linux.h │ │ │ │ │ ├── ev_poll_posix.h │ │ │ │ │ ├── ev_posix.h │ │ │ │ │ ├── exec_ctx.h │ │ │ │ │ ├── executor.h │ │ │ │ │ ├── executor │ │ │ │ │ │ ├── mpmcqueue.h │ │ │ │ │ │ └── threadpool.h │ │ │ │ │ ├── gethostname.h │ │ │ │ │ ├── grpc_if_nametoindex.h │ │ │ │ │ ├── internal_errqueue.h │ │ │ │ │ ├── iocp_windows.h │ │ │ │ │ ├── iomgr.h │ │ │ │ │ ├── iomgr_custom.h │ │ │ │ │ ├── iomgr_internal.h │ │ │ │ │ ├── iomgr_posix.h │ │ │ │ │ ├── is_epollexclusive_available.h │ │ │ │ │ ├── load_file.h │ │ │ │ │ ├── lockfree_event.h │ │ │ │ │ ├── nameser.h │ │ │ │ │ ├── poller │ │ │ │ │ │ └── eventmanager_libuv.h │ │ │ │ │ ├── polling_entity.h │ │ │ │ │ ├── pollset.h │ │ │ │ │ ├── pollset_custom.h │ │ │ │ │ ├── pollset_set.h │ │ │ │ │ ├── pollset_set_custom.h │ │ │ │ │ ├── pollset_set_windows.h │ │ │ │ │ ├── pollset_windows.h │ │ │ │ │ ├── port.h │ │ │ │ │ ├── resolve_address.h │ │ │ │ │ ├── resolve_address_custom.h │ │ │ │ │ ├── resource_quota.h │ │ │ │ │ ├── sockaddr.h │ │ │ │ │ ├── sockaddr_custom.h │ │ │ │ │ ├── sockaddr_posix.h │ │ │ │ │ ├── sockaddr_utils.h │ │ │ │ │ ├── sockaddr_windows.h │ │ │ │ │ ├── socket_factory_posix.h │ │ │ │ │ ├── socket_mutator.h │ │ │ │ │ ├── socket_utils.h │ │ │ │ │ ├── socket_utils_posix.h │ │ │ │ │ ├── socket_windows.h │ │ │ │ │ ├── sys_epoll_wrapper.h │ │ │ │ │ ├── tcp_client.h │ │ │ │ │ ├── tcp_client_posix.h │ │ │ │ │ ├── tcp_custom.h │ │ │ │ │ ├── tcp_posix.h │ │ │ │ │ ├── tcp_server.h │ │ │ │ │ ├── tcp_server_utils_posix.h │ │ │ │ │ ├── tcp_windows.h │ │ │ │ │ ├── time_averaged_stats.h │ │ │ │ │ ├── timer.h │ │ │ │ │ ├── timer_custom.h │ │ │ │ │ ├── timer_heap.h │ │ │ │ │ ├── timer_manager.h │ │ │ │ │ ├── udp_server.h │ │ │ │ │ ├── unix_sockets_posix.h │ │ │ │ │ ├── wakeup_fd_pipe.h │ │ │ │ │ ├── wakeup_fd_posix.h │ │ │ │ │ └── work_serializer.h │ │ │ │ ├── json │ │ │ │ │ └── json.h │ │ │ │ ├── profiling │ │ │ │ │ └── timers.h │ │ │ │ ├── security │ │ │ │ │ ├── context │ │ │ │ │ │ └── security_context.h │ │ │ │ │ ├── credentials │ │ │ │ │ │ ├── alts │ │ │ │ │ │ │ ├── alts_credentials.h │ │ │ │ │ │ │ ├── check_gcp_environment.h │ │ │ │ │ │ │ └── grpc_alts_credentials_options.h │ │ │ │ │ │ ├── composite │ │ │ │ │ │ │ └── composite_credentials.h │ │ │ │ │ │ ├── credentials.h │ │ │ │ │ │ ├── fake │ │ │ │ │ │ │ └── fake_credentials.h │ │ │ │ │ │ ├── google_default │ │ │ │ │ │ │ └── google_default_credentials.h │ │ │ │ │ │ ├── iam │ │ │ │ │ │ │ └── iam_credentials.h │ │ │ │ │ │ ├── jwt │ │ │ │ │ │ │ ├── json_token.h │ │ │ │ │ │ │ ├── jwt_credentials.h │ │ │ │ │ │ │ └── jwt_verifier.h │ │ │ │ │ │ ├── local │ │ │ │ │ │ │ └── local_credentials.h │ │ │ │ │ │ ├── oauth2 │ │ │ │ │ │ │ └── oauth2_credentials.h │ │ │ │ │ │ ├── plugin │ │ │ │ │ │ │ └── plugin_credentials.h │ │ │ │ │ │ ├── ssl │ │ │ │ │ │ │ └── ssl_credentials.h │ │ │ │ │ │ └── tls │ │ │ │ │ │ │ ├── grpc_tls_credentials_options.h │ │ │ │ │ │ │ └── tls_credentials.h │ │ │ │ │ ├── security_connector │ │ │ │ │ │ ├── alts │ │ │ │ │ │ │ └── alts_security_connector.h │ │ │ │ │ │ ├── fake │ │ │ │ │ │ │ └── fake_security_connector.h │ │ │ │ │ │ ├── load_system_roots.h │ │ │ │ │ │ ├── load_system_roots_linux.h │ │ │ │ │ │ ├── local │ │ │ │ │ │ │ └── local_security_connector.h │ │ │ │ │ │ ├── security_connector.h │ │ │ │ │ │ ├── ssl │ │ │ │ │ │ │ └── ssl_security_connector.h │ │ │ │ │ │ ├── ssl_utils.h │ │ │ │ │ │ ├── ssl_utils_config.h │ │ │ │ │ │ └── tls │ │ │ │ │ │ │ └── tls_security_connector.h │ │ │ │ │ ├── transport │ │ │ │ │ │ ├── auth_filters.h │ │ │ │ │ │ ├── secure_endpoint.h │ │ │ │ │ │ ├── security_handshaker.h │ │ │ │ │ │ ├── target_authority_table.h │ │ │ │ │ │ └── tsi_error.h │ │ │ │ │ └── util │ │ │ │ │ │ └── json_util.h │ │ │ │ ├── slice │ │ │ │ │ ├── b64.h │ │ │ │ │ ├── percent_encoding.h │ │ │ │ │ ├── slice_hash_table.h │ │ │ │ │ ├── slice_internal.h │ │ │ │ │ ├── slice_string_helpers.h │ │ │ │ │ ├── slice_utils.h │ │ │ │ │ └── slice_weak_hash_table.h │ │ │ │ ├── surface │ │ │ │ │ ├── api_trace.h │ │ │ │ │ ├── call.h │ │ │ │ │ ├── call_test_only.h │ │ │ │ │ ├── channel.h │ │ │ │ │ ├── channel_init.h │ │ │ │ │ ├── channel_stack_type.h │ │ │ │ │ ├── completion_queue.h │ │ │ │ │ ├── completion_queue_factory.h │ │ │ │ │ ├── event_string.h │ │ │ │ │ ├── init.h │ │ │ │ │ ├── lame_client.h │ │ │ │ │ ├── server.h │ │ │ │ │ └── validate_metadata.h │ │ │ │ ├── transport │ │ │ │ │ ├── bdp_estimator.h │ │ │ │ │ ├── byte_stream.h │ │ │ │ │ ├── connectivity_state.h │ │ │ │ │ ├── error_utils.h │ │ │ │ │ ├── http2_errors.h │ │ │ │ │ ├── metadata.h │ │ │ │ │ ├── metadata_batch.h │ │ │ │ │ ├── pid_controller.h │ │ │ │ │ ├── static_metadata.h │ │ │ │ │ ├── status_conversion.h │ │ │ │ │ ├── status_metadata.h │ │ │ │ │ ├── timeout_encoding.h │ │ │ │ │ ├── transport.h │ │ │ │ │ └── transport_impl.h │ │ │ │ └── uri │ │ │ │ │ └── uri_parser.h │ │ │ └── tsi │ │ │ │ ├── alts │ │ │ │ ├── crypt │ │ │ │ │ └── gsec.h │ │ │ │ ├── frame_protector │ │ │ │ │ ├── alts_counter.h │ │ │ │ │ ├── alts_crypter.h │ │ │ │ │ ├── alts_frame_protector.h │ │ │ │ │ ├── alts_record_protocol_crypter_common.h │ │ │ │ │ └── frame_handler.h │ │ │ │ ├── handshaker │ │ │ │ │ ├── alts_handshaker_client.h │ │ │ │ │ ├── alts_shared_resource.h │ │ │ │ │ ├── alts_tsi_handshaker.h │ │ │ │ │ ├── alts_tsi_handshaker_private.h │ │ │ │ │ ├── alts_tsi_utils.h │ │ │ │ │ └── transport_security_common_api.h │ │ │ │ └── zero_copy_frame_protector │ │ │ │ │ ├── alts_grpc_integrity_only_record_protocol.h │ │ │ │ │ ├── alts_grpc_privacy_integrity_record_protocol.h │ │ │ │ │ ├── alts_grpc_record_protocol.h │ │ │ │ │ ├── alts_grpc_record_protocol_common.h │ │ │ │ │ ├── alts_iovec_record_protocol.h │ │ │ │ │ └── alts_zero_copy_grpc_protector.h │ │ │ │ ├── fake_transport_security.h │ │ │ │ ├── grpc_shadow_boringssl.h │ │ │ │ ├── local_transport_security.h │ │ │ │ ├── ssl │ │ │ │ └── session_cache │ │ │ │ │ ├── ssl_session.h │ │ │ │ │ └── ssl_session_cache.h │ │ │ │ ├── ssl_transport_security.h │ │ │ │ ├── ssl_types.h │ │ │ │ ├── transport_security.h │ │ │ │ ├── transport_security_grpc.h │ │ │ │ └── transport_security_interface.h │ │ └── cpp │ │ │ ├── client │ │ │ ├── channel_cc.cc │ │ │ ├── client_context.cc │ │ │ ├── client_interceptor.cc │ │ │ ├── create_channel.cc │ │ │ ├── create_channel_internal.cc │ │ │ ├── create_channel_internal.h │ │ │ ├── create_channel_posix.cc │ │ │ ├── credentials_cc.cc │ │ │ ├── insecure_credentials.cc │ │ │ ├── secure_credentials.cc │ │ │ └── secure_credentials.h │ │ │ ├── codegen │ │ │ └── codegen_init.cc │ │ │ ├── common │ │ │ ├── alarm.cc │ │ │ ├── auth_property_iterator.cc │ │ │ ├── channel_arguments.cc │ │ │ ├── channel_filter.cc │ │ │ ├── channel_filter.h │ │ │ ├── completion_queue_cc.cc │ │ │ ├── core_codegen.cc │ │ │ ├── resource_quota_cc.cc │ │ │ ├── rpc_method.cc │ │ │ ├── secure_auth_context.cc │ │ │ ├── secure_auth_context.h │ │ │ ├── secure_channel_arguments.cc │ │ │ ├── secure_create_auth_context.cc │ │ │ ├── tls_credentials_options.cc │ │ │ ├── tls_credentials_options_util.cc │ │ │ ├── tls_credentials_options_util.h │ │ │ ├── validate_service_config.cc │ │ │ └── version_cc.cc │ │ │ ├── server │ │ │ ├── async_generic_service.cc │ │ │ ├── channel_argument_option.cc │ │ │ ├── create_default_thread_pool.cc │ │ │ ├── dynamic_thread_pool.cc │ │ │ ├── dynamic_thread_pool.h │ │ │ ├── external_connection_acceptor_impl.cc │ │ │ ├── external_connection_acceptor_impl.h │ │ │ ├── health │ │ │ │ ├── default_health_check_service.cc │ │ │ │ ├── default_health_check_service.h │ │ │ │ ├── health_check_service.cc │ │ │ │ └── health_check_service_server_builder_option.cc │ │ │ ├── insecure_server_credentials.cc │ │ │ ├── secure_server_credentials.cc │ │ │ ├── secure_server_credentials.h │ │ │ ├── server_builder.cc │ │ │ ├── server_callback.cc │ │ │ ├── server_cc.cc │ │ │ ├── server_context.cc │ │ │ ├── server_credentials.cc │ │ │ ├── server_posix.cc │ │ │ └── thread_pool_interface.h │ │ │ ├── thread_manager │ │ │ ├── thread_manager.cc │ │ │ └── thread_manager.h │ │ │ └── util │ │ │ ├── byte_buffer_cc.cc │ │ │ ├── status.cc │ │ │ ├── string_ref.cc │ │ │ └── time_cc.cc │ └── third_party │ │ └── upb │ │ └── upb │ │ ├── decode.h │ │ ├── encode.h │ │ ├── generated_util.h │ │ ├── msg.h │ │ ├── port_def.inc │ │ ├── port_undef.inc │ │ ├── table.int.h │ │ └── upb.h ├── gRPC-Core │ ├── LICENSE │ ├── README.md │ ├── include │ │ └── grpc │ │ │ ├── byte_buffer.h │ │ │ ├── byte_buffer_reader.h │ │ │ ├── census.h │ │ │ ├── compression.h │ │ │ ├── fork.h │ │ │ ├── grpc.h │ │ │ ├── grpc_posix.h │ │ │ ├── grpc_security.h │ │ │ ├── grpc_security_constants.h │ │ │ ├── impl │ │ │ └── codegen │ │ │ │ ├── atm.h │ │ │ │ ├── atm_gcc_atomic.h │ │ │ │ ├── atm_gcc_sync.h │ │ │ │ ├── atm_windows.h │ │ │ │ ├── byte_buffer.h │ │ │ │ ├── byte_buffer_reader.h │ │ │ │ ├── compression_types.h │ │ │ │ ├── connectivity_state.h │ │ │ │ ├── fork.h │ │ │ │ ├── gpr_slice.h │ │ │ │ ├── gpr_types.h │ │ │ │ ├── grpc_types.h │ │ │ │ ├── log.h │ │ │ │ ├── port_platform.h │ │ │ │ ├── propagation_bits.h │ │ │ │ ├── slice.h │ │ │ │ ├── status.h │ │ │ │ ├── sync.h │ │ │ │ ├── sync_abseil.h │ │ │ │ ├── sync_custom.h │ │ │ │ ├── sync_generic.h │ │ │ │ ├── sync_posix.h │ │ │ │ └── sync_windows.h │ │ │ ├── load_reporting.h │ │ │ ├── module.modulemap │ │ │ ├── slice.h │ │ │ ├── slice_buffer.h │ │ │ ├── status.h │ │ │ └── support │ │ │ ├── alloc.h │ │ │ ├── atm.h │ │ │ ├── atm_gcc_atomic.h │ │ │ ├── atm_gcc_sync.h │ │ │ ├── atm_windows.h │ │ │ ├── cpu.h │ │ │ ├── log.h │ │ │ ├── log_windows.h │ │ │ ├── port_platform.h │ │ │ ├── string_util.h │ │ │ ├── sync.h │ │ │ ├── sync_abseil.h │ │ │ ├── sync_custom.h │ │ │ ├── sync_generic.h │ │ │ ├── sync_posix.h │ │ │ ├── sync_windows.h │ │ │ ├── thd_id.h │ │ │ ├── time.h │ │ │ └── workaround_list.h │ ├── src │ │ └── core │ │ │ ├── ext │ │ │ ├── filters │ │ │ │ ├── census │ │ │ │ │ └── grpc_context.cc │ │ │ │ ├── client_channel │ │ │ │ │ ├── backend_metric.cc │ │ │ │ │ ├── backend_metric.h │ │ │ │ │ ├── backup_poller.cc │ │ │ │ │ ├── backup_poller.h │ │ │ │ │ ├── channel_connectivity.cc │ │ │ │ │ ├── client_channel.cc │ │ │ │ │ ├── client_channel.h │ │ │ │ │ ├── client_channel_channelz.cc │ │ │ │ │ ├── client_channel_channelz.h │ │ │ │ │ ├── client_channel_factory.cc │ │ │ │ │ ├── client_channel_factory.h │ │ │ │ │ ├── client_channel_plugin.cc │ │ │ │ │ ├── connector.h │ │ │ │ │ ├── global_subchannel_pool.cc │ │ │ │ │ ├── global_subchannel_pool.h │ │ │ │ │ ├── health │ │ │ │ │ │ ├── health_check_client.cc │ │ │ │ │ │ └── health_check_client.h │ │ │ │ │ ├── http_connect_handshaker.cc │ │ │ │ │ ├── http_connect_handshaker.h │ │ │ │ │ ├── http_proxy.cc │ │ │ │ │ ├── http_proxy.h │ │ │ │ │ ├── lb_policy.cc │ │ │ │ │ ├── lb_policy.h │ │ │ │ │ ├── lb_policy │ │ │ │ │ │ ├── child_policy_handler.cc │ │ │ │ │ │ ├── child_policy_handler.h │ │ │ │ │ │ ├── grpclb │ │ │ │ │ │ │ ├── client_load_reporting_filter.cc │ │ │ │ │ │ │ ├── client_load_reporting_filter.h │ │ │ │ │ │ │ ├── grpclb.cc │ │ │ │ │ │ │ ├── grpclb.h │ │ │ │ │ │ │ ├── grpclb_channel.h │ │ │ │ │ │ │ ├── grpclb_channel_secure.cc │ │ │ │ │ │ │ ├── grpclb_client_stats.cc │ │ │ │ │ │ │ ├── grpclb_client_stats.h │ │ │ │ │ │ │ ├── load_balancer_api.cc │ │ │ │ │ │ │ └── load_balancer_api.h │ │ │ │ │ │ ├── pick_first │ │ │ │ │ │ │ └── pick_first.cc │ │ │ │ │ │ ├── round_robin │ │ │ │ │ │ │ └── round_robin.cc │ │ │ │ │ │ ├── subchannel_list.h │ │ │ │ │ │ └── xds │ │ │ │ │ │ │ ├── cds.cc │ │ │ │ │ │ │ ├── xds.cc │ │ │ │ │ │ │ └── xds.h │ │ │ │ │ ├── lb_policy_factory.h │ │ │ │ │ ├── lb_policy_registry.cc │ │ │ │ │ ├── lb_policy_registry.h │ │ │ │ │ ├── local_subchannel_pool.cc │ │ │ │ │ ├── local_subchannel_pool.h │ │ │ │ │ ├── parse_address.cc │ │ │ │ │ ├── parse_address.h │ │ │ │ │ ├── proxy_mapper.h │ │ │ │ │ ├── proxy_mapper_registry.cc │ │ │ │ │ ├── proxy_mapper_registry.h │ │ │ │ │ ├── resolver.cc │ │ │ │ │ ├── resolver.h │ │ │ │ │ ├── resolver │ │ │ │ │ │ ├── dns │ │ │ │ │ │ │ ├── c_ares │ │ │ │ │ │ │ │ ├── dns_resolver_ares.cc │ │ │ │ │ │ │ │ ├── grpc_ares_ev_driver.cc │ │ │ │ │ │ │ │ ├── grpc_ares_ev_driver.h │ │ │ │ │ │ │ │ ├── grpc_ares_ev_driver_libuv.cc │ │ │ │ │ │ │ │ ├── grpc_ares_ev_driver_posix.cc │ │ │ │ │ │ │ │ ├── grpc_ares_ev_driver_windows.cc │ │ │ │ │ │ │ │ ├── grpc_ares_wrapper.cc │ │ │ │ │ │ │ │ ├── grpc_ares_wrapper.h │ │ │ │ │ │ │ │ ├── grpc_ares_wrapper_fallback.cc │ │ │ │ │ │ │ │ ├── grpc_ares_wrapper_libuv.cc │ │ │ │ │ │ │ │ ├── grpc_ares_wrapper_posix.cc │ │ │ │ │ │ │ │ └── grpc_ares_wrapper_windows.cc │ │ │ │ │ │ │ ├── dns_resolver_selection.cc │ │ │ │ │ │ │ ├── dns_resolver_selection.h │ │ │ │ │ │ │ └── native │ │ │ │ │ │ │ │ └── dns_resolver.cc │ │ │ │ │ │ ├── fake │ │ │ │ │ │ │ ├── fake_resolver.cc │ │ │ │ │ │ │ └── fake_resolver.h │ │ │ │ │ │ ├── sockaddr │ │ │ │ │ │ │ └── sockaddr_resolver.cc │ │ │ │ │ │ └── xds │ │ │ │ │ │ │ └── xds_resolver.cc │ │ │ │ │ ├── resolver_factory.h │ │ │ │ │ ├── resolver_registry.cc │ │ │ │ │ ├── resolver_registry.h │ │ │ │ │ ├── resolver_result_parsing.cc │ │ │ │ │ ├── resolver_result_parsing.h │ │ │ │ │ ├── resolving_lb_policy.cc │ │ │ │ │ ├── resolving_lb_policy.h │ │ │ │ │ ├── retry_throttle.cc │ │ │ │ │ ├── retry_throttle.h │ │ │ │ │ ├── server_address.cc │ │ │ │ │ ├── server_address.h │ │ │ │ │ ├── service_config.cc │ │ │ │ │ ├── service_config.h │ │ │ │ │ ├── subchannel.cc │ │ │ │ │ ├── subchannel.h │ │ │ │ │ ├── subchannel_interface.h │ │ │ │ │ ├── subchannel_pool_interface.cc │ │ │ │ │ ├── subchannel_pool_interface.h │ │ │ │ │ └── xds │ │ │ │ │ │ ├── xds_api.cc │ │ │ │ │ │ ├── xds_api.h │ │ │ │ │ │ ├── xds_bootstrap.cc │ │ │ │ │ │ ├── xds_bootstrap.h │ │ │ │ │ │ ├── xds_channel.h │ │ │ │ │ │ ├── xds_channel_args.h │ │ │ │ │ │ ├── xds_channel_secure.cc │ │ │ │ │ │ ├── xds_client.cc │ │ │ │ │ │ ├── xds_client.h │ │ │ │ │ │ ├── xds_client_stats.cc │ │ │ │ │ │ └── xds_client_stats.h │ │ │ │ ├── client_idle │ │ │ │ │ └── client_idle_filter.cc │ │ │ │ ├── deadline │ │ │ │ │ ├── deadline_filter.cc │ │ │ │ │ └── deadline_filter.h │ │ │ │ ├── http │ │ │ │ │ ├── client │ │ │ │ │ │ ├── http_client_filter.cc │ │ │ │ │ │ └── http_client_filter.h │ │ │ │ │ ├── client_authority_filter.cc │ │ │ │ │ ├── client_authority_filter.h │ │ │ │ │ ├── http_filters_plugin.cc │ │ │ │ │ ├── message_compress │ │ │ │ │ │ ├── message_compress_filter.cc │ │ │ │ │ │ └── message_compress_filter.h │ │ │ │ │ └── server │ │ │ │ │ │ ├── http_server_filter.cc │ │ │ │ │ │ └── http_server_filter.h │ │ │ │ ├── max_age │ │ │ │ │ ├── max_age_filter.cc │ │ │ │ │ └── max_age_filter.h │ │ │ │ ├── message_size │ │ │ │ │ ├── message_size_filter.cc │ │ │ │ │ └── message_size_filter.h │ │ │ │ └── workarounds │ │ │ │ │ ├── workaround_cronet_compression_filter.cc │ │ │ │ │ ├── workaround_cronet_compression_filter.h │ │ │ │ │ ├── workaround_utils.cc │ │ │ │ │ └── workaround_utils.h │ │ │ ├── transport │ │ │ │ ├── chttp2 │ │ │ │ │ ├── alpn │ │ │ │ │ │ ├── alpn.cc │ │ │ │ │ │ └── alpn.h │ │ │ │ │ ├── client │ │ │ │ │ │ ├── authority.cc │ │ │ │ │ │ ├── authority.h │ │ │ │ │ │ ├── chttp2_connector.cc │ │ │ │ │ │ ├── chttp2_connector.h │ │ │ │ │ │ ├── insecure │ │ │ │ │ │ │ ├── channel_create.cc │ │ │ │ │ │ │ └── channel_create_posix.cc │ │ │ │ │ │ └── secure │ │ │ │ │ │ │ └── secure_channel_create.cc │ │ │ │ │ ├── server │ │ │ │ │ │ ├── chttp2_server.cc │ │ │ │ │ │ ├── chttp2_server.h │ │ │ │ │ │ ├── insecure │ │ │ │ │ │ │ ├── server_chttp2.cc │ │ │ │ │ │ │ └── server_chttp2_posix.cc │ │ │ │ │ │ └── secure │ │ │ │ │ │ │ └── server_secure_chttp2.cc │ │ │ │ │ └── transport │ │ │ │ │ │ ├── bin_decoder.cc │ │ │ │ │ │ ├── bin_decoder.h │ │ │ │ │ │ ├── bin_encoder.cc │ │ │ │ │ │ ├── bin_encoder.h │ │ │ │ │ │ ├── chttp2_plugin.cc │ │ │ │ │ │ ├── chttp2_transport.cc │ │ │ │ │ │ ├── chttp2_transport.h │ │ │ │ │ │ ├── context_list.cc │ │ │ │ │ │ ├── context_list.h │ │ │ │ │ │ ├── flow_control.cc │ │ │ │ │ │ ├── flow_control.h │ │ │ │ │ │ ├── frame.h │ │ │ │ │ │ ├── frame_data.cc │ │ │ │ │ │ ├── frame_data.h │ │ │ │ │ │ ├── frame_goaway.cc │ │ │ │ │ │ ├── frame_goaway.h │ │ │ │ │ │ ├── frame_ping.cc │ │ │ │ │ │ ├── frame_ping.h │ │ │ │ │ │ ├── frame_rst_stream.cc │ │ │ │ │ │ ├── frame_rst_stream.h │ │ │ │ │ │ ├── frame_settings.cc │ │ │ │ │ │ ├── frame_settings.h │ │ │ │ │ │ ├── frame_window_update.cc │ │ │ │ │ │ ├── frame_window_update.h │ │ │ │ │ │ ├── hpack_encoder.cc │ │ │ │ │ │ ├── hpack_encoder.h │ │ │ │ │ │ ├── hpack_parser.cc │ │ │ │ │ │ ├── hpack_parser.h │ │ │ │ │ │ ├── hpack_table.cc │ │ │ │ │ │ ├── hpack_table.h │ │ │ │ │ │ ├── http2_settings.cc │ │ │ │ │ │ ├── http2_settings.h │ │ │ │ │ │ ├── huffsyms.cc │ │ │ │ │ │ ├── huffsyms.h │ │ │ │ │ │ ├── incoming_metadata.cc │ │ │ │ │ │ ├── incoming_metadata.h │ │ │ │ │ │ ├── internal.h │ │ │ │ │ │ ├── parsing.cc │ │ │ │ │ │ ├── stream_lists.cc │ │ │ │ │ │ ├── stream_map.cc │ │ │ │ │ │ ├── stream_map.h │ │ │ │ │ │ ├── varint.cc │ │ │ │ │ │ ├── varint.h │ │ │ │ │ │ └── writing.cc │ │ │ │ └── inproc │ │ │ │ │ ├── inproc_plugin.cc │ │ │ │ │ ├── inproc_transport.cc │ │ │ │ │ └── inproc_transport.h │ │ │ └── upb-generated │ │ │ │ ├── envoy │ │ │ │ ├── annotations │ │ │ │ │ ├── deprecation.upb.c │ │ │ │ │ ├── deprecation.upb.h │ │ │ │ │ ├── resource.upb.c │ │ │ │ │ └── resource.upb.h │ │ │ │ ├── api │ │ │ │ │ └── v2 │ │ │ │ │ │ ├── auth │ │ │ │ │ │ ├── cert.upb.c │ │ │ │ │ │ └── cert.upb.h │ │ │ │ │ │ ├── cds.upb.c │ │ │ │ │ │ ├── cds.upb.h │ │ │ │ │ │ ├── cluster.upb.c │ │ │ │ │ │ ├── cluster.upb.h │ │ │ │ │ │ ├── cluster │ │ │ │ │ │ ├── circuit_breaker.upb.c │ │ │ │ │ │ ├── circuit_breaker.upb.h │ │ │ │ │ │ ├── filter.upb.c │ │ │ │ │ │ ├── filter.upb.h │ │ │ │ │ │ ├── outlier_detection.upb.c │ │ │ │ │ │ └── outlier_detection.upb.h │ │ │ │ │ │ ├── core │ │ │ │ │ │ ├── address.upb.c │ │ │ │ │ │ ├── address.upb.h │ │ │ │ │ │ ├── base.upb.c │ │ │ │ │ │ ├── base.upb.h │ │ │ │ │ │ ├── config_source.upb.c │ │ │ │ │ │ ├── config_source.upb.h │ │ │ │ │ │ ├── grpc_service.upb.c │ │ │ │ │ │ ├── grpc_service.upb.h │ │ │ │ │ │ ├── health_check.upb.c │ │ │ │ │ │ ├── health_check.upb.h │ │ │ │ │ │ ├── http_uri.upb.c │ │ │ │ │ │ ├── http_uri.upb.h │ │ │ │ │ │ ├── protocol.upb.c │ │ │ │ │ │ └── protocol.upb.h │ │ │ │ │ │ ├── discovery.upb.c │ │ │ │ │ │ ├── discovery.upb.h │ │ │ │ │ │ ├── eds.upb.c │ │ │ │ │ │ ├── eds.upb.h │ │ │ │ │ │ ├── endpoint.upb.c │ │ │ │ │ │ ├── endpoint.upb.h │ │ │ │ │ │ ├── endpoint │ │ │ │ │ │ ├── endpoint.upb.c │ │ │ │ │ │ ├── endpoint.upb.h │ │ │ │ │ │ ├── endpoint_components.upb.c │ │ │ │ │ │ ├── endpoint_components.upb.h │ │ │ │ │ │ ├── load_report.upb.c │ │ │ │ │ │ └── load_report.upb.h │ │ │ │ │ │ ├── lds.upb.c │ │ │ │ │ │ ├── lds.upb.h │ │ │ │ │ │ ├── listener.upb.c │ │ │ │ │ │ ├── listener.upb.h │ │ │ │ │ │ ├── listener │ │ │ │ │ │ ├── listener.upb.c │ │ │ │ │ │ ├── listener.upb.h │ │ │ │ │ │ ├── listener_components.upb.c │ │ │ │ │ │ ├── listener_components.upb.h │ │ │ │ │ │ ├── udp_listener_config.upb.c │ │ │ │ │ │ └── udp_listener_config.upb.h │ │ │ │ │ │ ├── rds.upb.c │ │ │ │ │ │ ├── rds.upb.h │ │ │ │ │ │ ├── route.upb.c │ │ │ │ │ │ ├── route.upb.h │ │ │ │ │ │ ├── route │ │ │ │ │ │ ├── route.upb.c │ │ │ │ │ │ ├── route.upb.h │ │ │ │ │ │ ├── route_components.upb.c │ │ │ │ │ │ └── route_components.upb.h │ │ │ │ │ │ ├── scoped_route.upb.c │ │ │ │ │ │ ├── scoped_route.upb.h │ │ │ │ │ │ ├── srds.upb.c │ │ │ │ │ │ └── srds.upb.h │ │ │ │ ├── config │ │ │ │ │ ├── filter │ │ │ │ │ │ ├── accesslog │ │ │ │ │ │ │ └── v2 │ │ │ │ │ │ │ │ ├── accesslog.upb.c │ │ │ │ │ │ │ │ └── accesslog.upb.h │ │ │ │ │ │ └── network │ │ │ │ │ │ │ └── http_connection_manager │ │ │ │ │ │ │ └── v2 │ │ │ │ │ │ │ ├── http_connection_manager.upb.c │ │ │ │ │ │ │ └── http_connection_manager.upb.h │ │ │ │ │ └── listener │ │ │ │ │ │ └── v2 │ │ │ │ │ │ ├── api_listener.upb.c │ │ │ │ │ │ └── api_listener.upb.h │ │ │ │ ├── service │ │ │ │ │ ├── discovery │ │ │ │ │ │ └── v2 │ │ │ │ │ │ │ ├── ads.upb.c │ │ │ │ │ │ │ └── ads.upb.h │ │ │ │ │ └── load_stats │ │ │ │ │ │ └── v2 │ │ │ │ │ │ ├── lrs.upb.c │ │ │ │ │ │ └── lrs.upb.h │ │ │ │ └── type │ │ │ │ │ ├── http.upb.c │ │ │ │ │ ├── http.upb.h │ │ │ │ │ ├── matcher │ │ │ │ │ ├── regex.upb.c │ │ │ │ │ ├── regex.upb.h │ │ │ │ │ ├── string.upb.c │ │ │ │ │ └── string.upb.h │ │ │ │ │ ├── metadata │ │ │ │ │ └── v2 │ │ │ │ │ │ ├── metadata.upb.c │ │ │ │ │ │ └── metadata.upb.h │ │ │ │ │ ├── percent.upb.c │ │ │ │ │ ├── percent.upb.h │ │ │ │ │ ├── range.upb.c │ │ │ │ │ ├── range.upb.h │ │ │ │ │ ├── semantic_version.upb.c │ │ │ │ │ ├── semantic_version.upb.h │ │ │ │ │ └── tracing │ │ │ │ │ └── v2 │ │ │ │ │ ├── custom_tag.upb.c │ │ │ │ │ └── custom_tag.upb.h │ │ │ │ ├── gogoproto │ │ │ │ ├── gogo.upb.c │ │ │ │ └── gogo.upb.h │ │ │ │ ├── google │ │ │ │ ├── api │ │ │ │ │ ├── annotations.upb.c │ │ │ │ │ ├── annotations.upb.h │ │ │ │ │ ├── http.upb.c │ │ │ │ │ └── http.upb.h │ │ │ │ ├── protobuf │ │ │ │ │ ├── any.upb.c │ │ │ │ │ ├── any.upb.h │ │ │ │ │ ├── descriptor.upb.c │ │ │ │ │ ├── descriptor.upb.h │ │ │ │ │ ├── duration.upb.c │ │ │ │ │ ├── duration.upb.h │ │ │ │ │ ├── empty.upb.c │ │ │ │ │ ├── empty.upb.h │ │ │ │ │ ├── struct.upb.c │ │ │ │ │ ├── struct.upb.h │ │ │ │ │ ├── timestamp.upb.c │ │ │ │ │ ├── timestamp.upb.h │ │ │ │ │ ├── wrappers.upb.c │ │ │ │ │ └── wrappers.upb.h │ │ │ │ └── rpc │ │ │ │ │ ├── status.upb.c │ │ │ │ │ └── status.upb.h │ │ │ │ ├── src │ │ │ │ └── proto │ │ │ │ │ └── grpc │ │ │ │ │ ├── gcp │ │ │ │ │ ├── altscontext.upb.c │ │ │ │ │ ├── altscontext.upb.h │ │ │ │ │ ├── handshaker.upb.c │ │ │ │ │ ├── handshaker.upb.h │ │ │ │ │ ├── transport_security_common.upb.c │ │ │ │ │ └── transport_security_common.upb.h │ │ │ │ │ ├── health │ │ │ │ │ └── v1 │ │ │ │ │ │ ├── health.upb.c │ │ │ │ │ │ └── health.upb.h │ │ │ │ │ └── lb │ │ │ │ │ └── v1 │ │ │ │ │ ├── load_balancer.upb.c │ │ │ │ │ └── load_balancer.upb.h │ │ │ │ ├── udpa │ │ │ │ ├── annotations │ │ │ │ │ ├── migrate.upb.c │ │ │ │ │ ├── migrate.upb.h │ │ │ │ │ ├── sensitive.upb.c │ │ │ │ │ └── sensitive.upb.h │ │ │ │ └── data │ │ │ │ │ └── orca │ │ │ │ │ └── v1 │ │ │ │ │ ├── orca_load_report.upb.c │ │ │ │ │ └── orca_load_report.upb.h │ │ │ │ └── validate │ │ │ │ ├── validate.upb.c │ │ │ │ └── validate.upb.h │ │ │ ├── lib │ │ │ ├── avl │ │ │ │ ├── avl.cc │ │ │ │ └── avl.h │ │ │ ├── backoff │ │ │ │ ├── backoff.cc │ │ │ │ └── backoff.h │ │ │ ├── channel │ │ │ │ ├── channel_args.cc │ │ │ │ ├── channel_args.h │ │ │ │ ├── channel_stack.cc │ │ │ │ ├── channel_stack.h │ │ │ │ ├── channel_stack_builder.cc │ │ │ │ ├── channel_stack_builder.h │ │ │ │ ├── channel_trace.cc │ │ │ │ ├── channel_trace.h │ │ │ │ ├── channelz.cc │ │ │ │ ├── channelz.h │ │ │ │ ├── channelz_registry.cc │ │ │ │ ├── channelz_registry.h │ │ │ │ ├── connected_channel.cc │ │ │ │ ├── connected_channel.h │ │ │ │ ├── context.h │ │ │ │ ├── handshaker.cc │ │ │ │ ├── handshaker.h │ │ │ │ ├── handshaker_factory.h │ │ │ │ ├── handshaker_registry.cc │ │ │ │ ├── handshaker_registry.h │ │ │ │ ├── status_util.cc │ │ │ │ └── status_util.h │ │ │ ├── compression │ │ │ │ ├── algorithm_metadata.h │ │ │ │ ├── compression.cc │ │ │ │ ├── compression_args.cc │ │ │ │ ├── compression_args.h │ │ │ │ ├── compression_internal.cc │ │ │ │ ├── compression_internal.h │ │ │ │ ├── message_compress.cc │ │ │ │ ├── message_compress.h │ │ │ │ ├── stream_compression.cc │ │ │ │ ├── stream_compression.h │ │ │ │ ├── stream_compression_gzip.cc │ │ │ │ ├── stream_compression_gzip.h │ │ │ │ ├── stream_compression_identity.cc │ │ │ │ └── stream_compression_identity.h │ │ │ ├── debug │ │ │ │ ├── stats.cc │ │ │ │ ├── stats.h │ │ │ │ ├── stats_data.cc │ │ │ │ ├── stats_data.h │ │ │ │ ├── trace.cc │ │ │ │ └── trace.h │ │ │ ├── gpr │ │ │ │ ├── alloc.cc │ │ │ │ ├── alloc.h │ │ │ │ ├── arena.h │ │ │ │ ├── atm.cc │ │ │ │ ├── cpu_iphone.cc │ │ │ │ ├── cpu_linux.cc │ │ │ │ ├── cpu_posix.cc │ │ │ │ ├── cpu_windows.cc │ │ │ │ ├── env.h │ │ │ │ ├── env_linux.cc │ │ │ │ ├── env_posix.cc │ │ │ │ ├── env_windows.cc │ │ │ │ ├── log.cc │ │ │ │ ├── log_android.cc │ │ │ │ ├── log_linux.cc │ │ │ │ ├── log_posix.cc │ │ │ │ ├── log_windows.cc │ │ │ │ ├── murmur_hash.cc │ │ │ │ ├── murmur_hash.h │ │ │ │ ├── spinlock.h │ │ │ │ ├── string.cc │ │ │ │ ├── string.h │ │ │ │ ├── string_posix.cc │ │ │ │ ├── string_util_windows.cc │ │ │ │ ├── string_windows.cc │ │ │ │ ├── string_windows.h │ │ │ │ ├── sync.cc │ │ │ │ ├── sync_abseil.cc │ │ │ │ ├── sync_posix.cc │ │ │ │ ├── sync_windows.cc │ │ │ │ ├── time.cc │ │ │ │ ├── time_posix.cc │ │ │ │ ├── time_precise.cc │ │ │ │ ├── time_precise.h │ │ │ │ ├── time_windows.cc │ │ │ │ ├── tls.h │ │ │ │ ├── tls_gcc.h │ │ │ │ ├── tls_msvc.h │ │ │ │ ├── tls_pthread.cc │ │ │ │ ├── tls_pthread.h │ │ │ │ ├── tmpfile.h │ │ │ │ ├── tmpfile_msys.cc │ │ │ │ ├── tmpfile_posix.cc │ │ │ │ ├── tmpfile_windows.cc │ │ │ │ ├── useful.h │ │ │ │ └── wrap_memcpy.cc │ │ │ ├── gprpp │ │ │ │ ├── arena.cc │ │ │ │ ├── arena.h │ │ │ │ ├── atomic.h │ │ │ │ ├── debug_location.h │ │ │ │ ├── fork.cc │ │ │ │ ├── fork.h │ │ │ │ ├── global_config.h │ │ │ │ ├── global_config_custom.h │ │ │ │ ├── global_config_env.cc │ │ │ │ ├── global_config_env.h │ │ │ │ ├── global_config_generic.h │ │ │ │ ├── host_port.cc │ │ │ │ ├── host_port.h │ │ │ │ ├── inlined_vector.h │ │ │ │ ├── manual_constructor.h │ │ │ │ ├── map.h │ │ │ │ ├── memory.h │ │ │ │ ├── mpscq.cc │ │ │ │ ├── mpscq.h │ │ │ │ ├── optional.h │ │ │ │ ├── orphanable.h │ │ │ │ ├── ref_counted.h │ │ │ │ ├── ref_counted_ptr.h │ │ │ │ ├── string_view.h │ │ │ │ ├── sync.h │ │ │ │ ├── thd.h │ │ │ │ ├── thd_posix.cc │ │ │ │ └── thd_windows.cc │ │ │ ├── http │ │ │ │ ├── format_request.cc │ │ │ │ ├── format_request.h │ │ │ │ ├── httpcli.cc │ │ │ │ ├── httpcli.h │ │ │ │ ├── httpcli_security_connector.cc │ │ │ │ ├── parser.cc │ │ │ │ └── parser.h │ │ │ ├── iomgr │ │ │ │ ├── block_annotate.h │ │ │ │ ├── buffer_list.cc │ │ │ │ ├── buffer_list.h │ │ │ │ ├── call_combiner.cc │ │ │ │ ├── call_combiner.h │ │ │ │ ├── cfstream_handle.cc │ │ │ │ ├── cfstream_handle.h │ │ │ │ ├── closure.h │ │ │ │ ├── combiner.cc │ │ │ │ ├── combiner.h │ │ │ │ ├── dynamic_annotations.h │ │ │ │ ├── endpoint.cc │ │ │ │ ├── endpoint.h │ │ │ │ ├── endpoint_cfstream.cc │ │ │ │ ├── endpoint_cfstream.h │ │ │ │ ├── endpoint_pair.h │ │ │ │ ├── endpoint_pair_posix.cc │ │ │ │ ├── endpoint_pair_uv.cc │ │ │ │ ├── endpoint_pair_windows.cc │ │ │ │ ├── error.cc │ │ │ │ ├── error.h │ │ │ │ ├── error_cfstream.cc │ │ │ │ ├── error_cfstream.h │ │ │ │ ├── error_internal.h │ │ │ │ ├── ev_epoll1_linux.cc │ │ │ │ ├── ev_epoll1_linux.h │ │ │ │ ├── ev_epollex_linux.cc │ │ │ │ ├── ev_epollex_linux.h │ │ │ │ ├── ev_poll_posix.cc │ │ │ │ ├── ev_poll_posix.h │ │ │ │ ├── ev_posix.cc │ │ │ │ ├── ev_posix.h │ │ │ │ ├── ev_windows.cc │ │ │ │ ├── exec_ctx.cc │ │ │ │ ├── exec_ctx.h │ │ │ │ ├── executor.cc │ │ │ │ ├── executor.h │ │ │ │ ├── executor │ │ │ │ │ ├── mpmcqueue.cc │ │ │ │ │ ├── mpmcqueue.h │ │ │ │ │ ├── threadpool.cc │ │ │ │ │ └── threadpool.h │ │ │ │ ├── fork_posix.cc │ │ │ │ ├── fork_windows.cc │ │ │ │ ├── gethostname.h │ │ │ │ ├── gethostname_fallback.cc │ │ │ │ ├── gethostname_host_name_max.cc │ │ │ │ ├── gethostname_sysconf.cc │ │ │ │ ├── grpc_if_nametoindex.h │ │ │ │ ├── grpc_if_nametoindex_posix.cc │ │ │ │ ├── grpc_if_nametoindex_unsupported.cc │ │ │ │ ├── internal_errqueue.cc │ │ │ │ ├── internal_errqueue.h │ │ │ │ ├── iocp_windows.cc │ │ │ │ ├── iocp_windows.h │ │ │ │ ├── iomgr.cc │ │ │ │ ├── iomgr.h │ │ │ │ ├── iomgr_custom.cc │ │ │ │ ├── iomgr_custom.h │ │ │ │ ├── iomgr_internal.cc │ │ │ │ ├── iomgr_internal.h │ │ │ │ ├── iomgr_posix.cc │ │ │ │ ├── iomgr_posix.h │ │ │ │ ├── iomgr_posix_cfstream.cc │ │ │ │ ├── iomgr_uv.cc │ │ │ │ ├── iomgr_windows.cc │ │ │ │ ├── is_epollexclusive_available.cc │ │ │ │ ├── is_epollexclusive_available.h │ │ │ │ ├── load_file.cc │ │ │ │ ├── load_file.h │ │ │ │ ├── lockfree_event.cc │ │ │ │ ├── lockfree_event.h │ │ │ │ ├── nameser.h │ │ │ │ ├── poller │ │ │ │ │ ├── eventmanager_libuv.cc │ │ │ │ │ └── eventmanager_libuv.h │ │ │ │ ├── polling_entity.cc │ │ │ │ ├── polling_entity.h │ │ │ │ ├── pollset.cc │ │ │ │ ├── pollset.h │ │ │ │ ├── pollset_custom.cc │ │ │ │ ├── pollset_custom.h │ │ │ │ ├── pollset_set.cc │ │ │ │ ├── pollset_set.h │ │ │ │ ├── pollset_set_custom.cc │ │ │ │ ├── pollset_set_custom.h │ │ │ │ ├── pollset_set_windows.cc │ │ │ │ ├── pollset_set_windows.h │ │ │ │ ├── pollset_uv.cc │ │ │ │ ├── pollset_windows.cc │ │ │ │ ├── pollset_windows.h │ │ │ │ ├── port.h │ │ │ │ ├── resolve_address.cc │ │ │ │ ├── resolve_address.h │ │ │ │ ├── resolve_address_custom.cc │ │ │ │ ├── resolve_address_custom.h │ │ │ │ ├── resolve_address_posix.cc │ │ │ │ ├── resolve_address_windows.cc │ │ │ │ ├── resource_quota.cc │ │ │ │ ├── resource_quota.h │ │ │ │ ├── sockaddr.h │ │ │ │ ├── sockaddr_custom.h │ │ │ │ ├── sockaddr_posix.h │ │ │ │ ├── sockaddr_utils.cc │ │ │ │ ├── sockaddr_utils.h │ │ │ │ ├── sockaddr_windows.h │ │ │ │ ├── socket_factory_posix.cc │ │ │ │ ├── socket_factory_posix.h │ │ │ │ ├── socket_mutator.cc │ │ │ │ ├── socket_mutator.h │ │ │ │ ├── socket_utils.h │ │ │ │ ├── socket_utils_common_posix.cc │ │ │ │ ├── socket_utils_linux.cc │ │ │ │ ├── socket_utils_posix.cc │ │ │ │ ├── socket_utils_posix.h │ │ │ │ ├── socket_utils_uv.cc │ │ │ │ ├── socket_utils_windows.cc │ │ │ │ ├── socket_windows.cc │ │ │ │ ├── socket_windows.h │ │ │ │ ├── sys_epoll_wrapper.h │ │ │ │ ├── tcp_client.cc │ │ │ │ ├── tcp_client.h │ │ │ │ ├── tcp_client_cfstream.cc │ │ │ │ ├── tcp_client_custom.cc │ │ │ │ ├── tcp_client_posix.cc │ │ │ │ ├── tcp_client_posix.h │ │ │ │ ├── tcp_client_windows.cc │ │ │ │ ├── tcp_custom.cc │ │ │ │ ├── tcp_custom.h │ │ │ │ ├── tcp_posix.cc │ │ │ │ ├── tcp_posix.h │ │ │ │ ├── tcp_server.cc │ │ │ │ ├── tcp_server.h │ │ │ │ ├── tcp_server_custom.cc │ │ │ │ ├── tcp_server_posix.cc │ │ │ │ ├── tcp_server_utils_posix.h │ │ │ │ ├── tcp_server_utils_posix_common.cc │ │ │ │ ├── tcp_server_utils_posix_ifaddrs.cc │ │ │ │ ├── tcp_server_utils_posix_noifaddrs.cc │ │ │ │ ├── tcp_server_windows.cc │ │ │ │ ├── tcp_uv.cc │ │ │ │ ├── tcp_windows.cc │ │ │ │ ├── tcp_windows.h │ │ │ │ ├── time_averaged_stats.cc │ │ │ │ ├── time_averaged_stats.h │ │ │ │ ├── timer.cc │ │ │ │ ├── timer.h │ │ │ │ ├── timer_custom.cc │ │ │ │ ├── timer_custom.h │ │ │ │ ├── timer_generic.cc │ │ │ │ ├── timer_heap.cc │ │ │ │ ├── timer_heap.h │ │ │ │ ├── timer_manager.cc │ │ │ │ ├── timer_manager.h │ │ │ │ ├── timer_uv.cc │ │ │ │ ├── udp_server.cc │ │ │ │ ├── udp_server.h │ │ │ │ ├── unix_sockets_posix.cc │ │ │ │ ├── unix_sockets_posix.h │ │ │ │ ├── unix_sockets_posix_noop.cc │ │ │ │ ├── wakeup_fd_eventfd.cc │ │ │ │ ├── wakeup_fd_nospecial.cc │ │ │ │ ├── wakeup_fd_pipe.cc │ │ │ │ ├── wakeup_fd_pipe.h │ │ │ │ ├── wakeup_fd_posix.cc │ │ │ │ ├── wakeup_fd_posix.h │ │ │ │ ├── work_serializer.cc │ │ │ │ └── work_serializer.h │ │ │ ├── json │ │ │ │ ├── json.h │ │ │ │ ├── json_reader.cc │ │ │ │ └── json_writer.cc │ │ │ ├── profiling │ │ │ │ ├── basic_timers.cc │ │ │ │ ├── stap_timers.cc │ │ │ │ └── timers.h │ │ │ ├── security │ │ │ │ ├── context │ │ │ │ │ ├── security_context.cc │ │ │ │ │ └── security_context.h │ │ │ │ ├── credentials │ │ │ │ │ ├── alts │ │ │ │ │ │ ├── alts_credentials.cc │ │ │ │ │ │ ├── alts_credentials.h │ │ │ │ │ │ ├── check_gcp_environment.cc │ │ │ │ │ │ ├── check_gcp_environment.h │ │ │ │ │ │ ├── check_gcp_environment_linux.cc │ │ │ │ │ │ ├── check_gcp_environment_no_op.cc │ │ │ │ │ │ ├── check_gcp_environment_windows.cc │ │ │ │ │ │ ├── grpc_alts_credentials_client_options.cc │ │ │ │ │ │ ├── grpc_alts_credentials_options.cc │ │ │ │ │ │ ├── grpc_alts_credentials_options.h │ │ │ │ │ │ └── grpc_alts_credentials_server_options.cc │ │ │ │ │ ├── composite │ │ │ │ │ │ ├── composite_credentials.cc │ │ │ │ │ │ └── composite_credentials.h │ │ │ │ │ ├── credentials.cc │ │ │ │ │ ├── credentials.h │ │ │ │ │ ├── credentials_metadata.cc │ │ │ │ │ ├── fake │ │ │ │ │ │ ├── fake_credentials.cc │ │ │ │ │ │ └── fake_credentials.h │ │ │ │ │ ├── google_default │ │ │ │ │ │ ├── credentials_generic.cc │ │ │ │ │ │ ├── google_default_credentials.cc │ │ │ │ │ │ └── google_default_credentials.h │ │ │ │ │ ├── iam │ │ │ │ │ │ ├── iam_credentials.cc │ │ │ │ │ │ └── iam_credentials.h │ │ │ │ │ ├── jwt │ │ │ │ │ │ ├── json_token.cc │ │ │ │ │ │ ├── json_token.h │ │ │ │ │ │ ├── jwt_credentials.cc │ │ │ │ │ │ ├── jwt_credentials.h │ │ │ │ │ │ ├── jwt_verifier.cc │ │ │ │ │ │ └── jwt_verifier.h │ │ │ │ │ ├── local │ │ │ │ │ │ ├── local_credentials.cc │ │ │ │ │ │ └── local_credentials.h │ │ │ │ │ ├── oauth2 │ │ │ │ │ │ ├── oauth2_credentials.cc │ │ │ │ │ │ └── oauth2_credentials.h │ │ │ │ │ ├── plugin │ │ │ │ │ │ ├── plugin_credentials.cc │ │ │ │ │ │ └── plugin_credentials.h │ │ │ │ │ ├── ssl │ │ │ │ │ │ ├── ssl_credentials.cc │ │ │ │ │ │ └── ssl_credentials.h │ │ │ │ │ └── tls │ │ │ │ │ │ ├── grpc_tls_credentials_options.cc │ │ │ │ │ │ ├── grpc_tls_credentials_options.h │ │ │ │ │ │ ├── tls_credentials.cc │ │ │ │ │ │ └── tls_credentials.h │ │ │ │ ├── security_connector │ │ │ │ │ ├── alts │ │ │ │ │ │ ├── alts_security_connector.cc │ │ │ │ │ │ └── alts_security_connector.h │ │ │ │ │ ├── fake │ │ │ │ │ │ ├── fake_security_connector.cc │ │ │ │ │ │ └── fake_security_connector.h │ │ │ │ │ ├── load_system_roots.h │ │ │ │ │ ├── load_system_roots_fallback.cc │ │ │ │ │ ├── load_system_roots_linux.cc │ │ │ │ │ ├── load_system_roots_linux.h │ │ │ │ │ ├── local │ │ │ │ │ │ ├── local_security_connector.cc │ │ │ │ │ │ └── local_security_connector.h │ │ │ │ │ ├── security_connector.cc │ │ │ │ │ ├── security_connector.h │ │ │ │ │ ├── ssl │ │ │ │ │ │ ├── ssl_security_connector.cc │ │ │ │ │ │ └── ssl_security_connector.h │ │ │ │ │ ├── ssl_utils.cc │ │ │ │ │ ├── ssl_utils.h │ │ │ │ │ ├── ssl_utils_config.cc │ │ │ │ │ ├── ssl_utils_config.h │ │ │ │ │ └── tls │ │ │ │ │ │ ├── tls_security_connector.cc │ │ │ │ │ │ └── tls_security_connector.h │ │ │ │ ├── transport │ │ │ │ │ ├── auth_filters.h │ │ │ │ │ ├── client_auth_filter.cc │ │ │ │ │ ├── secure_endpoint.cc │ │ │ │ │ ├── secure_endpoint.h │ │ │ │ │ ├── security_handshaker.cc │ │ │ │ │ ├── security_handshaker.h │ │ │ │ │ ├── server_auth_filter.cc │ │ │ │ │ ├── target_authority_table.cc │ │ │ │ │ ├── target_authority_table.h │ │ │ │ │ ├── tsi_error.cc │ │ │ │ │ └── tsi_error.h │ │ │ │ └── util │ │ │ │ │ ├── json_util.cc │ │ │ │ │ └── json_util.h │ │ │ ├── slice │ │ │ │ ├── b64.cc │ │ │ │ ├── b64.h │ │ │ │ ├── percent_encoding.cc │ │ │ │ ├── percent_encoding.h │ │ │ │ ├── slice.cc │ │ │ │ ├── slice_buffer.cc │ │ │ │ ├── slice_hash_table.h │ │ │ │ ├── slice_intern.cc │ │ │ │ ├── slice_internal.h │ │ │ │ ├── slice_string_helpers.cc │ │ │ │ ├── slice_string_helpers.h │ │ │ │ ├── slice_utils.h │ │ │ │ └── slice_weak_hash_table.h │ │ │ ├── surface │ │ │ │ ├── api_trace.cc │ │ │ │ ├── api_trace.h │ │ │ │ ├── byte_buffer.cc │ │ │ │ ├── byte_buffer_reader.cc │ │ │ │ ├── call.cc │ │ │ │ ├── call.h │ │ │ │ ├── call_details.cc │ │ │ │ ├── call_log_batch.cc │ │ │ │ ├── call_test_only.h │ │ │ │ ├── channel.cc │ │ │ │ ├── channel.h │ │ │ │ ├── channel_init.cc │ │ │ │ ├── channel_init.h │ │ │ │ ├── channel_ping.cc │ │ │ │ ├── channel_stack_type.cc │ │ │ │ ├── channel_stack_type.h │ │ │ │ ├── completion_queue.cc │ │ │ │ ├── completion_queue.h │ │ │ │ ├── completion_queue_factory.cc │ │ │ │ ├── completion_queue_factory.h │ │ │ │ ├── event_string.cc │ │ │ │ ├── event_string.h │ │ │ │ ├── init.cc │ │ │ │ ├── init.h │ │ │ │ ├── init_secure.cc │ │ │ │ ├── lame_client.cc │ │ │ │ ├── lame_client.h │ │ │ │ ├── metadata_array.cc │ │ │ │ ├── server.cc │ │ │ │ ├── server.h │ │ │ │ ├── validate_metadata.cc │ │ │ │ ├── validate_metadata.h │ │ │ │ └── version.cc │ │ │ ├── transport │ │ │ │ ├── bdp_estimator.cc │ │ │ │ ├── bdp_estimator.h │ │ │ │ ├── byte_stream.cc │ │ │ │ ├── byte_stream.h │ │ │ │ ├── connectivity_state.cc │ │ │ │ ├── connectivity_state.h │ │ │ │ ├── error_utils.cc │ │ │ │ ├── error_utils.h │ │ │ │ ├── http2_errors.h │ │ │ │ ├── metadata.cc │ │ │ │ ├── metadata.h │ │ │ │ ├── metadata_batch.cc │ │ │ │ ├── metadata_batch.h │ │ │ │ ├── pid_controller.cc │ │ │ │ ├── pid_controller.h │ │ │ │ ├── static_metadata.cc │ │ │ │ ├── static_metadata.h │ │ │ │ ├── status_conversion.cc │ │ │ │ ├── status_conversion.h │ │ │ │ ├── status_metadata.cc │ │ │ │ ├── status_metadata.h │ │ │ │ ├── timeout_encoding.cc │ │ │ │ ├── timeout_encoding.h │ │ │ │ ├── transport.cc │ │ │ │ ├── transport.h │ │ │ │ ├── transport_impl.h │ │ │ │ └── transport_op_string.cc │ │ │ └── uri │ │ │ │ ├── uri_parser.cc │ │ │ │ └── uri_parser.h │ │ │ ├── plugin_registry │ │ │ └── grpc_plugin_registry.cc │ │ │ └── tsi │ │ │ ├── alts │ │ │ ├── crypt │ │ │ │ ├── aes_gcm.cc │ │ │ │ ├── gsec.cc │ │ │ │ └── gsec.h │ │ │ ├── frame_protector │ │ │ │ ├── alts_counter.cc │ │ │ │ ├── alts_counter.h │ │ │ │ ├── alts_crypter.cc │ │ │ │ ├── alts_crypter.h │ │ │ │ ├── alts_frame_protector.cc │ │ │ │ ├── alts_frame_protector.h │ │ │ │ ├── alts_record_protocol_crypter_common.cc │ │ │ │ ├── alts_record_protocol_crypter_common.h │ │ │ │ ├── alts_seal_privacy_integrity_crypter.cc │ │ │ │ ├── alts_unseal_privacy_integrity_crypter.cc │ │ │ │ ├── frame_handler.cc │ │ │ │ └── frame_handler.h │ │ │ ├── handshaker │ │ │ │ ├── alts_handshaker_client.cc │ │ │ │ ├── alts_handshaker_client.h │ │ │ │ ├── alts_shared_resource.cc │ │ │ │ ├── alts_shared_resource.h │ │ │ │ ├── alts_tsi_handshaker.cc │ │ │ │ ├── alts_tsi_handshaker.h │ │ │ │ ├── alts_tsi_handshaker_private.h │ │ │ │ ├── alts_tsi_utils.cc │ │ │ │ ├── alts_tsi_utils.h │ │ │ │ ├── transport_security_common_api.cc │ │ │ │ └── transport_security_common_api.h │ │ │ └── zero_copy_frame_protector │ │ │ │ ├── alts_grpc_integrity_only_record_protocol.cc │ │ │ │ ├── alts_grpc_integrity_only_record_protocol.h │ │ │ │ ├── alts_grpc_privacy_integrity_record_protocol.cc │ │ │ │ ├── alts_grpc_privacy_integrity_record_protocol.h │ │ │ │ ├── alts_grpc_record_protocol.h │ │ │ │ ├── alts_grpc_record_protocol_common.cc │ │ │ │ ├── alts_grpc_record_protocol_common.h │ │ │ │ ├── alts_iovec_record_protocol.cc │ │ │ │ ├── alts_iovec_record_protocol.h │ │ │ │ ├── alts_zero_copy_grpc_protector.cc │ │ │ │ └── alts_zero_copy_grpc_protector.h │ │ │ ├── fake_transport_security.cc │ │ │ ├── fake_transport_security.h │ │ │ ├── grpc_shadow_boringssl.h │ │ │ ├── local_transport_security.cc │ │ │ ├── local_transport_security.h │ │ │ ├── ssl │ │ │ └── session_cache │ │ │ │ ├── ssl_session.h │ │ │ │ ├── ssl_session_boringssl.cc │ │ │ │ ├── ssl_session_cache.cc │ │ │ │ ├── ssl_session_cache.h │ │ │ │ └── ssl_session_openssl.cc │ │ │ ├── ssl_transport_security.cc │ │ │ ├── ssl_transport_security.h │ │ │ ├── ssl_types.h │ │ │ ├── transport_security.cc │ │ │ ├── transport_security.h │ │ │ ├── transport_security_grpc.cc │ │ │ ├── transport_security_grpc.h │ │ │ └── transport_security_interface.h │ └── third_party │ │ └── upb │ │ └── upb │ │ ├── decode.c │ │ ├── decode.h │ │ ├── encode.c │ │ ├── encode.h │ │ ├── generated_util.h │ │ ├── msg.c │ │ ├── msg.h │ │ ├── port.c │ │ ├── port_def.inc │ │ ├── port_undef.inc │ │ ├── table.c │ │ ├── table.int.h │ │ ├── upb.c │ │ └── upb.h ├── leveldb-library │ ├── LICENSE │ ├── README.md │ ├── db │ │ ├── builder.cc │ │ ├── builder.h │ │ ├── c.cc │ │ ├── db_impl.cc │ │ ├── db_impl.h │ │ ├── db_iter.cc │ │ ├── db_iter.h │ │ ├── dbformat.cc │ │ ├── dbformat.h │ │ ├── dumpfile.cc │ │ ├── filename.cc │ │ ├── filename.h │ │ ├── log_format.h │ │ ├── log_reader.cc │ │ ├── log_reader.h │ │ ├── log_writer.cc │ │ ├── log_writer.h │ │ ├── memtable.cc │ │ ├── memtable.h │ │ ├── repair.cc │ │ ├── skiplist.h │ │ ├── snapshot.h │ │ ├── table_cache.cc │ │ ├── table_cache.h │ │ ├── version_edit.cc │ │ ├── version_edit.h │ │ ├── version_set.cc │ │ ├── version_set.h │ │ ├── write_batch.cc │ │ └── write_batch_internal.h │ ├── include │ │ └── leveldb │ │ │ ├── c.h │ │ │ ├── cache.h │ │ │ ├── comparator.h │ │ │ ├── db.h │ │ │ ├── dumpfile.h │ │ │ ├── env.h │ │ │ ├── export.h │ │ │ ├── filter_policy.h │ │ │ ├── iterator.h │ │ │ ├── options.h │ │ │ ├── slice.h │ │ │ ├── status.h │ │ │ ├── table.h │ │ │ ├── table_builder.h │ │ │ └── write_batch.h │ ├── port │ │ ├── port.h │ │ ├── port_example.h │ │ ├── port_stdcxx.h │ │ └── thread_annotations.h │ ├── table │ │ ├── block.cc │ │ ├── block.h │ │ ├── block_builder.cc │ │ ├── block_builder.h │ │ ├── filter_block.cc │ │ ├── filter_block.h │ │ ├── format.cc │ │ ├── format.h │ │ ├── iterator.cc │ │ ├── iterator_wrapper.h │ │ ├── merger.cc │ │ ├── merger.h │ │ ├── table.cc │ │ ├── table_builder.cc │ │ ├── two_level_iterator.cc │ │ └── two_level_iterator.h │ └── util │ │ ├── arena.cc │ │ ├── arena.h │ │ ├── bloom.cc │ │ ├── cache.cc │ │ ├── coding.cc │ │ ├── coding.h │ │ ├── comparator.cc │ │ ├── crc32c.cc │ │ ├── crc32c.h │ │ ├── env.cc │ │ ├── env_posix.cc │ │ ├── env_posix_test_helper.h │ │ ├── env_windows_test_helper.h │ │ ├── filter_policy.cc │ │ ├── hash.cc │ │ ├── hash.h │ │ ├── histogram.cc │ │ ├── histogram.h │ │ ├── logging.cc │ │ ├── logging.h │ │ ├── mutexlock.h │ │ ├── no_destructor.h │ │ ├── options.cc │ │ ├── posix_logger.h │ │ ├── random.h │ │ ├── status.cc │ │ ├── testharness.cc │ │ ├── testharness.h │ │ ├── testutil.h │ │ └── windows_logger.h └── 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 └── README.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/LICENSE -------------------------------------------------------------------------------- /OCRApp.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/OCRApp.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /OCRApp.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/OCRApp.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /OCRApp/Additional/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/OCRApp/Additional/AppDelegate.swift -------------------------------------------------------------------------------- /OCRApp/Additional/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/OCRApp/Additional/Info.plist -------------------------------------------------------------------------------- /OCRApp/Additional/SceneDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/OCRApp/Additional/SceneDelegate.swift -------------------------------------------------------------------------------- /OCRApp/Assests/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/OCRApp/Assests/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /OCRApp/Auth/Auth Helpers/AuthError.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/OCRApp/Auth/Auth Helpers/AuthError.swift -------------------------------------------------------------------------------- /OCRApp/Auth/Auth Helpers/AuthResult.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/OCRApp/Auth/Auth Helpers/AuthResult.swift -------------------------------------------------------------------------------- /OCRApp/Auth/Auth Helpers/Validators.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/OCRApp/Auth/Auth Helpers/Validators.swift -------------------------------------------------------------------------------- /OCRApp/Auth/CheckCodeViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/OCRApp/Auth/CheckCodeViewController.swift -------------------------------------------------------------------------------- /OCRApp/Auth/MainAuthViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/OCRApp/Auth/MainAuthViewController.swift -------------------------------------------------------------------------------- /OCRApp/Auth/SMSAuthViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/OCRApp/Auth/SMSAuthViewController.swift -------------------------------------------------------------------------------- /OCRApp/Auth/SignInViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/OCRApp/Auth/SignInViewController.swift -------------------------------------------------------------------------------- /OCRApp/Auth/SignUpViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/OCRApp/Auth/SignUpViewController.swift -------------------------------------------------------------------------------- /OCRApp/Controller/Main Screen/ImagePicker.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/OCRApp/Controller/Main Screen/ImagePicker.swift -------------------------------------------------------------------------------- /OCRApp/Controller/Main Screen/SaveMethods.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/OCRApp/Controller/Main Screen/SaveMethods.swift -------------------------------------------------------------------------------- /OCRApp/Managers/Album.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/OCRApp/Managers/Album.swift -------------------------------------------------------------------------------- /OCRApp/Managers/RateManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/OCRApp/Managers/RateManager.swift -------------------------------------------------------------------------------- /OCRApp/Managers/Utilities.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/OCRApp/Managers/Utilities.swift -------------------------------------------------------------------------------- /OCRApp/Model/MenuModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/OCRApp/Model/MenuModel.swift -------------------------------------------------------------------------------- /OCRApp/Model/Section.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/OCRApp/Model/Section.swift -------------------------------------------------------------------------------- /OCRApp/View/AdditionalCollectionViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/OCRApp/View/AdditionalCollectionViewCell.swift -------------------------------------------------------------------------------- /OCRApp/View/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/OCRApp/View/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /OCRApp/View/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/OCRApp/View/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /OCRApp/View/ExpandableHeaderView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/OCRApp/View/ExpandableHeaderView.swift -------------------------------------------------------------------------------- /OCRApp/View/ImageScrollView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/OCRApp/View/ImageScrollView.swift -------------------------------------------------------------------------------- /OCRApp/View/MainImageCollectionViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/OCRApp/View/MainImageCollectionViewCell.swift -------------------------------------------------------------------------------- /OCRApp/View/MyPopView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/OCRApp/View/MyPopView.swift -------------------------------------------------------------------------------- /OCRApp/View/UIView+Message.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/OCRApp/View/UIView+Message.swift -------------------------------------------------------------------------------- /OCRAppTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/OCRAppTests/Info.plist -------------------------------------------------------------------------------- /OCRAppTests/OCRAppTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/OCRAppTests/OCRAppTests.swift -------------------------------------------------------------------------------- /OCRAppUITests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/OCRAppUITests/Info.plist -------------------------------------------------------------------------------- /OCRAppUITests/OCRAppUITests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/OCRAppUITests/OCRAppUITests.swift -------------------------------------------------------------------------------- /Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Podfile -------------------------------------------------------------------------------- /Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Podfile.lock -------------------------------------------------------------------------------- /Pods/BoringSSL-GRPC/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/BoringSSL-GRPC/LICENSE -------------------------------------------------------------------------------- /Pods/BoringSSL-GRPC/err_data.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/BoringSSL-GRPC/err_data.c -------------------------------------------------------------------------------- /Pods/BoringSSL-GRPC/err_data.c.grpc_back: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/BoringSSL-GRPC/err_data.c.grpc_back -------------------------------------------------------------------------------- /Pods/BoringSSL-GRPC/src/crypto/asn1/a_bitstr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/BoringSSL-GRPC/src/crypto/asn1/a_bitstr.c -------------------------------------------------------------------------------- /Pods/BoringSSL-GRPC/src/crypto/asn1/a_bool.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/BoringSSL-GRPC/src/crypto/asn1/a_bool.c -------------------------------------------------------------------------------- /Pods/BoringSSL-GRPC/src/crypto/asn1/a_d2i_fp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/BoringSSL-GRPC/src/crypto/asn1/a_d2i_fp.c -------------------------------------------------------------------------------- /Pods/BoringSSL-GRPC/src/crypto/asn1/a_dup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/BoringSSL-GRPC/src/crypto/asn1/a_dup.c -------------------------------------------------------------------------------- /Pods/BoringSSL-GRPC/src/crypto/asn1/a_enum.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/BoringSSL-GRPC/src/crypto/asn1/a_enum.c -------------------------------------------------------------------------------- /Pods/BoringSSL-GRPC/src/crypto/asn1/a_gentm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/BoringSSL-GRPC/src/crypto/asn1/a_gentm.c -------------------------------------------------------------------------------- /Pods/BoringSSL-GRPC/src/crypto/asn1/a_i2d_fp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/BoringSSL-GRPC/src/crypto/asn1/a_i2d_fp.c -------------------------------------------------------------------------------- /Pods/BoringSSL-GRPC/src/crypto/asn1/a_int.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/BoringSSL-GRPC/src/crypto/asn1/a_int.c -------------------------------------------------------------------------------- /Pods/BoringSSL-GRPC/src/crypto/asn1/a_mbstr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/BoringSSL-GRPC/src/crypto/asn1/a_mbstr.c -------------------------------------------------------------------------------- /Pods/BoringSSL-GRPC/src/crypto/asn1/a_object.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/BoringSSL-GRPC/src/crypto/asn1/a_object.c -------------------------------------------------------------------------------- /Pods/BoringSSL-GRPC/src/crypto/asn1/a_octet.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/BoringSSL-GRPC/src/crypto/asn1/a_octet.c -------------------------------------------------------------------------------- /Pods/BoringSSL-GRPC/src/crypto/asn1/a_print.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/BoringSSL-GRPC/src/crypto/asn1/a_print.c -------------------------------------------------------------------------------- /Pods/BoringSSL-GRPC/src/crypto/asn1/a_strnid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/BoringSSL-GRPC/src/crypto/asn1/a_strnid.c -------------------------------------------------------------------------------- /Pods/BoringSSL-GRPC/src/crypto/asn1/a_time.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/BoringSSL-GRPC/src/crypto/asn1/a_time.c -------------------------------------------------------------------------------- /Pods/BoringSSL-GRPC/src/crypto/asn1/a_type.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/BoringSSL-GRPC/src/crypto/asn1/a_type.c -------------------------------------------------------------------------------- /Pods/BoringSSL-GRPC/src/crypto/asn1/a_utctm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/BoringSSL-GRPC/src/crypto/asn1/a_utctm.c -------------------------------------------------------------------------------- /Pods/BoringSSL-GRPC/src/crypto/asn1/a_utf8.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/BoringSSL-GRPC/src/crypto/asn1/a_utf8.c -------------------------------------------------------------------------------- /Pods/BoringSSL-GRPC/src/crypto/asn1/asn1_lib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/BoringSSL-GRPC/src/crypto/asn1/asn1_lib.c -------------------------------------------------------------------------------- /Pods/BoringSSL-GRPC/src/crypto/asn1/asn1_locl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/BoringSSL-GRPC/src/crypto/asn1/asn1_locl.h -------------------------------------------------------------------------------- /Pods/BoringSSL-GRPC/src/crypto/asn1/asn1_par.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/BoringSSL-GRPC/src/crypto/asn1/asn1_par.c -------------------------------------------------------------------------------- /Pods/BoringSSL-GRPC/src/crypto/asn1/asn_pack.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/BoringSSL-GRPC/src/crypto/asn1/asn_pack.c -------------------------------------------------------------------------------- /Pods/BoringSSL-GRPC/src/crypto/asn1/f_enum.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/BoringSSL-GRPC/src/crypto/asn1/f_enum.c -------------------------------------------------------------------------------- /Pods/BoringSSL-GRPC/src/crypto/asn1/f_int.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/BoringSSL-GRPC/src/crypto/asn1/f_int.c -------------------------------------------------------------------------------- /Pods/BoringSSL-GRPC/src/crypto/asn1/f_string.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/BoringSSL-GRPC/src/crypto/asn1/f_string.c -------------------------------------------------------------------------------- /Pods/BoringSSL-GRPC/src/crypto/asn1/tasn_dec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/BoringSSL-GRPC/src/crypto/asn1/tasn_dec.c -------------------------------------------------------------------------------- /Pods/BoringSSL-GRPC/src/crypto/asn1/tasn_enc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/BoringSSL-GRPC/src/crypto/asn1/tasn_enc.c -------------------------------------------------------------------------------- /Pods/BoringSSL-GRPC/src/crypto/asn1/tasn_fre.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/BoringSSL-GRPC/src/crypto/asn1/tasn_fre.c -------------------------------------------------------------------------------- /Pods/BoringSSL-GRPC/src/crypto/asn1/tasn_new.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/BoringSSL-GRPC/src/crypto/asn1/tasn_new.c -------------------------------------------------------------------------------- /Pods/BoringSSL-GRPC/src/crypto/asn1/tasn_typ.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/BoringSSL-GRPC/src/crypto/asn1/tasn_typ.c -------------------------------------------------------------------------------- /Pods/BoringSSL-GRPC/src/crypto/asn1/tasn_utl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/BoringSSL-GRPC/src/crypto/asn1/tasn_utl.c -------------------------------------------------------------------------------- /Pods/BoringSSL-GRPC/src/crypto/base64/base64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/BoringSSL-GRPC/src/crypto/base64/base64.c -------------------------------------------------------------------------------- /Pods/BoringSSL-GRPC/src/crypto/bio/bio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/BoringSSL-GRPC/src/crypto/bio/bio.c -------------------------------------------------------------------------------- /Pods/BoringSSL-GRPC/src/crypto/bio/bio_mem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/BoringSSL-GRPC/src/crypto/bio/bio_mem.c -------------------------------------------------------------------------------- /Pods/BoringSSL-GRPC/src/crypto/bio/connect.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/BoringSSL-GRPC/src/crypto/bio/connect.c -------------------------------------------------------------------------------- /Pods/BoringSSL-GRPC/src/crypto/bio/fd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/BoringSSL-GRPC/src/crypto/bio/fd.c -------------------------------------------------------------------------------- /Pods/BoringSSL-GRPC/src/crypto/bio/file.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/BoringSSL-GRPC/src/crypto/bio/file.c -------------------------------------------------------------------------------- /Pods/BoringSSL-GRPC/src/crypto/bio/hexdump.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/BoringSSL-GRPC/src/crypto/bio/hexdump.c -------------------------------------------------------------------------------- /Pods/BoringSSL-GRPC/src/crypto/bio/internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/BoringSSL-GRPC/src/crypto/bio/internal.h -------------------------------------------------------------------------------- /Pods/BoringSSL-GRPC/src/crypto/bio/pair.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/BoringSSL-GRPC/src/crypto/bio/pair.c -------------------------------------------------------------------------------- /Pods/BoringSSL-GRPC/src/crypto/bio/printf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/BoringSSL-GRPC/src/crypto/bio/printf.c -------------------------------------------------------------------------------- /Pods/BoringSSL-GRPC/src/crypto/bio/socket.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/BoringSSL-GRPC/src/crypto/bio/socket.c -------------------------------------------------------------------------------- /Pods/BoringSSL-GRPC/src/crypto/buf/buf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/BoringSSL-GRPC/src/crypto/buf/buf.c -------------------------------------------------------------------------------- /Pods/BoringSSL-GRPC/src/crypto/bytestring/ber.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/BoringSSL-GRPC/src/crypto/bytestring/ber.c -------------------------------------------------------------------------------- /Pods/BoringSSL-GRPC/src/crypto/bytestring/cbb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/BoringSSL-GRPC/src/crypto/bytestring/cbb.c -------------------------------------------------------------------------------- /Pods/BoringSSL-GRPC/src/crypto/bytestring/cbs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/BoringSSL-GRPC/src/crypto/bytestring/cbs.c -------------------------------------------------------------------------------- /Pods/BoringSSL-GRPC/src/crypto/chacha/chacha.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/BoringSSL-GRPC/src/crypto/chacha/chacha.c -------------------------------------------------------------------------------- /Pods/BoringSSL-GRPC/src/crypto/cmac/cmac.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/BoringSSL-GRPC/src/crypto/cmac/cmac.c -------------------------------------------------------------------------------- /Pods/BoringSSL-GRPC/src/crypto/conf/conf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/BoringSSL-GRPC/src/crypto/conf/conf.c -------------------------------------------------------------------------------- /Pods/BoringSSL-GRPC/src/crypto/conf/conf_def.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/BoringSSL-GRPC/src/crypto/conf/conf_def.h -------------------------------------------------------------------------------- /Pods/BoringSSL-GRPC/src/crypto/conf/internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/BoringSSL-GRPC/src/crypto/conf/internal.h -------------------------------------------------------------------------------- /Pods/BoringSSL-GRPC/src/crypto/cpu-arm-linux.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/BoringSSL-GRPC/src/crypto/cpu-arm-linux.c -------------------------------------------------------------------------------- /Pods/BoringSSL-GRPC/src/crypto/cpu-arm-linux.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/BoringSSL-GRPC/src/crypto/cpu-arm-linux.h -------------------------------------------------------------------------------- /Pods/BoringSSL-GRPC/src/crypto/cpu-arm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/BoringSSL-GRPC/src/crypto/cpu-arm.c -------------------------------------------------------------------------------- /Pods/BoringSSL-GRPC/src/crypto/cpu-intel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/BoringSSL-GRPC/src/crypto/cpu-intel.c -------------------------------------------------------------------------------- /Pods/BoringSSL-GRPC/src/crypto/cpu-ppc64le.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/BoringSSL-GRPC/src/crypto/cpu-ppc64le.c -------------------------------------------------------------------------------- /Pods/BoringSSL-GRPC/src/crypto/crypto.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/BoringSSL-GRPC/src/crypto/crypto.c -------------------------------------------------------------------------------- /Pods/BoringSSL-GRPC/src/crypto/dh/check.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/BoringSSL-GRPC/src/crypto/dh/check.c -------------------------------------------------------------------------------- /Pods/BoringSSL-GRPC/src/crypto/dh/dh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/BoringSSL-GRPC/src/crypto/dh/dh.c -------------------------------------------------------------------------------- /Pods/BoringSSL-GRPC/src/crypto/dh/dh_asn1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/BoringSSL-GRPC/src/crypto/dh/dh_asn1.c -------------------------------------------------------------------------------- /Pods/BoringSSL-GRPC/src/crypto/dh/params.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/BoringSSL-GRPC/src/crypto/dh/params.c -------------------------------------------------------------------------------- /Pods/BoringSSL-GRPC/src/crypto/dsa/dsa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/BoringSSL-GRPC/src/crypto/dsa/dsa.c -------------------------------------------------------------------------------- /Pods/BoringSSL-GRPC/src/crypto/dsa/dsa_asn1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/BoringSSL-GRPC/src/crypto/dsa/dsa_asn1.c -------------------------------------------------------------------------------- /Pods/BoringSSL-GRPC/src/crypto/engine/engine.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/BoringSSL-GRPC/src/crypto/engine/engine.c -------------------------------------------------------------------------------- /Pods/BoringSSL-GRPC/src/crypto/err/err.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/BoringSSL-GRPC/src/crypto/err/err.c -------------------------------------------------------------------------------- /Pods/BoringSSL-GRPC/src/crypto/err/internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/BoringSSL-GRPC/src/crypto/err/internal.h -------------------------------------------------------------------------------- /Pods/BoringSSL-GRPC/src/crypto/evp/digestsign.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/BoringSSL-GRPC/src/crypto/evp/digestsign.c -------------------------------------------------------------------------------- /Pods/BoringSSL-GRPC/src/crypto/evp/evp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/BoringSSL-GRPC/src/crypto/evp/evp.c -------------------------------------------------------------------------------- /Pods/BoringSSL-GRPC/src/crypto/evp/evp_asn1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/BoringSSL-GRPC/src/crypto/evp/evp_asn1.c -------------------------------------------------------------------------------- /Pods/BoringSSL-GRPC/src/crypto/evp/evp_ctx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/BoringSSL-GRPC/src/crypto/evp/evp_ctx.c -------------------------------------------------------------------------------- /Pods/BoringSSL-GRPC/src/crypto/evp/internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/BoringSSL-GRPC/src/crypto/evp/internal.h -------------------------------------------------------------------------------- /Pods/BoringSSL-GRPC/src/crypto/evp/p_dsa_asn1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/BoringSSL-GRPC/src/crypto/evp/p_dsa_asn1.c -------------------------------------------------------------------------------- /Pods/BoringSSL-GRPC/src/crypto/evp/p_ec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/BoringSSL-GRPC/src/crypto/evp/p_ec.c -------------------------------------------------------------------------------- /Pods/BoringSSL-GRPC/src/crypto/evp/p_ec_asn1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/BoringSSL-GRPC/src/crypto/evp/p_ec_asn1.c -------------------------------------------------------------------------------- /Pods/BoringSSL-GRPC/src/crypto/evp/p_ed25519.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/BoringSSL-GRPC/src/crypto/evp/p_ed25519.c -------------------------------------------------------------------------------- /Pods/BoringSSL-GRPC/src/crypto/evp/p_rsa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/BoringSSL-GRPC/src/crypto/evp/p_rsa.c -------------------------------------------------------------------------------- /Pods/BoringSSL-GRPC/src/crypto/evp/p_rsa_asn1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/BoringSSL-GRPC/src/crypto/evp/p_rsa_asn1.c -------------------------------------------------------------------------------- /Pods/BoringSSL-GRPC/src/crypto/evp/p_x25519.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/BoringSSL-GRPC/src/crypto/evp/p_x25519.c -------------------------------------------------------------------------------- /Pods/BoringSSL-GRPC/src/crypto/evp/pbkdf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/BoringSSL-GRPC/src/crypto/evp/pbkdf.c -------------------------------------------------------------------------------- /Pods/BoringSSL-GRPC/src/crypto/evp/print.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/BoringSSL-GRPC/src/crypto/evp/print.c -------------------------------------------------------------------------------- /Pods/BoringSSL-GRPC/src/crypto/evp/scrypt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/BoringSSL-GRPC/src/crypto/evp/scrypt.c -------------------------------------------------------------------------------- /Pods/BoringSSL-GRPC/src/crypto/evp/sign.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/BoringSSL-GRPC/src/crypto/evp/sign.c -------------------------------------------------------------------------------- /Pods/BoringSSL-GRPC/src/crypto/ex_data.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/BoringSSL-GRPC/src/crypto/ex_data.c -------------------------------------------------------------------------------- /Pods/BoringSSL-GRPC/src/crypto/hkdf/hkdf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/BoringSSL-GRPC/src/crypto/hkdf/hkdf.c -------------------------------------------------------------------------------- /Pods/BoringSSL-GRPC/src/crypto/hrss/hrss.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/BoringSSL-GRPC/src/crypto/hrss/hrss.c -------------------------------------------------------------------------------- /Pods/BoringSSL-GRPC/src/crypto/hrss/internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/BoringSSL-GRPC/src/crypto/hrss/internal.h -------------------------------------------------------------------------------- /Pods/BoringSSL-GRPC/src/crypto/internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/BoringSSL-GRPC/src/crypto/internal.h -------------------------------------------------------------------------------- /Pods/BoringSSL-GRPC/src/crypto/lhash/lhash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/BoringSSL-GRPC/src/crypto/lhash/lhash.c -------------------------------------------------------------------------------- /Pods/BoringSSL-GRPC/src/crypto/mem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/BoringSSL-GRPC/src/crypto/mem.c -------------------------------------------------------------------------------- /Pods/BoringSSL-GRPC/src/crypto/mem.c.grpc_back: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/BoringSSL-GRPC/src/crypto/mem.c.grpc_back -------------------------------------------------------------------------------- /Pods/BoringSSL-GRPC/src/crypto/obj/obj.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/BoringSSL-GRPC/src/crypto/obj/obj.c -------------------------------------------------------------------------------- /Pods/BoringSSL-GRPC/src/crypto/obj/obj_dat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/BoringSSL-GRPC/src/crypto/obj/obj_dat.h -------------------------------------------------------------------------------- /Pods/BoringSSL-GRPC/src/crypto/obj/obj_xref.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/BoringSSL-GRPC/src/crypto/obj/obj_xref.c -------------------------------------------------------------------------------- /Pods/BoringSSL-GRPC/src/crypto/pem/pem_all.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/BoringSSL-GRPC/src/crypto/pem/pem_all.c -------------------------------------------------------------------------------- /Pods/BoringSSL-GRPC/src/crypto/pem/pem_info.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/BoringSSL-GRPC/src/crypto/pem/pem_info.c -------------------------------------------------------------------------------- /Pods/BoringSSL-GRPC/src/crypto/pem/pem_lib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/BoringSSL-GRPC/src/crypto/pem/pem_lib.c -------------------------------------------------------------------------------- /Pods/BoringSSL-GRPC/src/crypto/pem/pem_oth.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/BoringSSL-GRPC/src/crypto/pem/pem_oth.c -------------------------------------------------------------------------------- /Pods/BoringSSL-GRPC/src/crypto/pem/pem_pk8.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/BoringSSL-GRPC/src/crypto/pem/pem_pk8.c -------------------------------------------------------------------------------- /Pods/BoringSSL-GRPC/src/crypto/pem/pem_pkey.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/BoringSSL-GRPC/src/crypto/pem/pem_pkey.c -------------------------------------------------------------------------------- /Pods/BoringSSL-GRPC/src/crypto/pem/pem_x509.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/BoringSSL-GRPC/src/crypto/pem/pem_x509.c -------------------------------------------------------------------------------- /Pods/BoringSSL-GRPC/src/crypto/pem/pem_xaux.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/BoringSSL-GRPC/src/crypto/pem/pem_xaux.c -------------------------------------------------------------------------------- /Pods/BoringSSL-GRPC/src/crypto/pkcs7/internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/BoringSSL-GRPC/src/crypto/pkcs7/internal.h -------------------------------------------------------------------------------- /Pods/BoringSSL-GRPC/src/crypto/pkcs7/pkcs7.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/BoringSSL-GRPC/src/crypto/pkcs7/pkcs7.c -------------------------------------------------------------------------------- /Pods/BoringSSL-GRPC/src/crypto/pkcs8/internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/BoringSSL-GRPC/src/crypto/pkcs8/internal.h -------------------------------------------------------------------------------- /Pods/BoringSSL-GRPC/src/crypto/pkcs8/p5_pbev2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/BoringSSL-GRPC/src/crypto/pkcs8/p5_pbev2.c -------------------------------------------------------------------------------- /Pods/BoringSSL-GRPC/src/crypto/pkcs8/pkcs8.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/BoringSSL-GRPC/src/crypto/pkcs8/pkcs8.c -------------------------------------------------------------------------------- /Pods/BoringSSL-GRPC/src/crypto/pool/internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/BoringSSL-GRPC/src/crypto/pool/internal.h -------------------------------------------------------------------------------- /Pods/BoringSSL-GRPC/src/crypto/pool/pool.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/BoringSSL-GRPC/src/crypto/pool/pool.c -------------------------------------------------------------------------------- /Pods/BoringSSL-GRPC/src/crypto/rc4/rc4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/BoringSSL-GRPC/src/crypto/rc4/rc4.c -------------------------------------------------------------------------------- /Pods/BoringSSL-GRPC/src/crypto/refcount_c11.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/BoringSSL-GRPC/src/crypto/refcount_c11.c -------------------------------------------------------------------------------- /Pods/BoringSSL-GRPC/src/crypto/refcount_lock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/BoringSSL-GRPC/src/crypto/refcount_lock.c -------------------------------------------------------------------------------- /Pods/BoringSSL-GRPC/src/crypto/stack/stack.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/BoringSSL-GRPC/src/crypto/stack/stack.c -------------------------------------------------------------------------------- /Pods/BoringSSL-GRPC/src/crypto/thread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/BoringSSL-GRPC/src/crypto/thread.c -------------------------------------------------------------------------------- /Pods/BoringSSL-GRPC/src/crypto/thread_none.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/BoringSSL-GRPC/src/crypto/thread_none.c -------------------------------------------------------------------------------- /Pods/BoringSSL-GRPC/src/crypto/thread_pthread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/BoringSSL-GRPC/src/crypto/thread_pthread.c -------------------------------------------------------------------------------- /Pods/BoringSSL-GRPC/src/crypto/thread_win.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/BoringSSL-GRPC/src/crypto/thread_win.c -------------------------------------------------------------------------------- /Pods/BoringSSL-GRPC/src/crypto/x509/a_digest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/BoringSSL-GRPC/src/crypto/x509/a_digest.c -------------------------------------------------------------------------------- /Pods/BoringSSL-GRPC/src/crypto/x509/a_sign.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/BoringSSL-GRPC/src/crypto/x509/a_sign.c -------------------------------------------------------------------------------- /Pods/BoringSSL-GRPC/src/crypto/x509/a_strex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/BoringSSL-GRPC/src/crypto/x509/a_strex.c -------------------------------------------------------------------------------- /Pods/BoringSSL-GRPC/src/crypto/x509/a_verify.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/BoringSSL-GRPC/src/crypto/x509/a_verify.c -------------------------------------------------------------------------------- /Pods/BoringSSL-GRPC/src/crypto/x509/algorithm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/BoringSSL-GRPC/src/crypto/x509/algorithm.c -------------------------------------------------------------------------------- /Pods/BoringSSL-GRPC/src/crypto/x509/asn1_gen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/BoringSSL-GRPC/src/crypto/x509/asn1_gen.c -------------------------------------------------------------------------------- /Pods/BoringSSL-GRPC/src/crypto/x509/by_dir.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/BoringSSL-GRPC/src/crypto/x509/by_dir.c -------------------------------------------------------------------------------- /Pods/BoringSSL-GRPC/src/crypto/x509/by_file.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/BoringSSL-GRPC/src/crypto/x509/by_file.c -------------------------------------------------------------------------------- /Pods/BoringSSL-GRPC/src/crypto/x509/charmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/BoringSSL-GRPC/src/crypto/x509/charmap.h -------------------------------------------------------------------------------- /Pods/BoringSSL-GRPC/src/crypto/x509/i2d_pr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/BoringSSL-GRPC/src/crypto/x509/i2d_pr.c -------------------------------------------------------------------------------- /Pods/BoringSSL-GRPC/src/crypto/x509/internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/BoringSSL-GRPC/src/crypto/x509/internal.h -------------------------------------------------------------------------------- /Pods/BoringSSL-GRPC/src/crypto/x509/rsa_pss.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/BoringSSL-GRPC/src/crypto/x509/rsa_pss.c -------------------------------------------------------------------------------- /Pods/BoringSSL-GRPC/src/crypto/x509/t_crl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/BoringSSL-GRPC/src/crypto/x509/t_crl.c -------------------------------------------------------------------------------- /Pods/BoringSSL-GRPC/src/crypto/x509/t_req.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/BoringSSL-GRPC/src/crypto/x509/t_req.c -------------------------------------------------------------------------------- /Pods/BoringSSL-GRPC/src/crypto/x509/t_x509.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/BoringSSL-GRPC/src/crypto/x509/t_x509.c -------------------------------------------------------------------------------- /Pods/BoringSSL-GRPC/src/crypto/x509/t_x509a.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/BoringSSL-GRPC/src/crypto/x509/t_x509a.c -------------------------------------------------------------------------------- /Pods/BoringSSL-GRPC/src/crypto/x509/vpm_int.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/BoringSSL-GRPC/src/crypto/x509/vpm_int.h -------------------------------------------------------------------------------- /Pods/BoringSSL-GRPC/src/crypto/x509/x509.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/BoringSSL-GRPC/src/crypto/x509/x509.c -------------------------------------------------------------------------------- /Pods/BoringSSL-GRPC/src/crypto/x509/x509_att.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/BoringSSL-GRPC/src/crypto/x509/x509_att.c -------------------------------------------------------------------------------- /Pods/BoringSSL-GRPC/src/crypto/x509/x509_cmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/BoringSSL-GRPC/src/crypto/x509/x509_cmp.c -------------------------------------------------------------------------------- /Pods/BoringSSL-GRPC/src/crypto/x509/x509_d2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/BoringSSL-GRPC/src/crypto/x509/x509_d2.c -------------------------------------------------------------------------------- /Pods/BoringSSL-GRPC/src/crypto/x509/x509_def.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/BoringSSL-GRPC/src/crypto/x509/x509_def.c -------------------------------------------------------------------------------- /Pods/BoringSSL-GRPC/src/crypto/x509/x509_ext.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/BoringSSL-GRPC/src/crypto/x509/x509_ext.c -------------------------------------------------------------------------------- /Pods/BoringSSL-GRPC/src/crypto/x509/x509_lu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/BoringSSL-GRPC/src/crypto/x509/x509_lu.c -------------------------------------------------------------------------------- /Pods/BoringSSL-GRPC/src/crypto/x509/x509_obj.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/BoringSSL-GRPC/src/crypto/x509/x509_obj.c -------------------------------------------------------------------------------- /Pods/BoringSSL-GRPC/src/crypto/x509/x509_r2x.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/BoringSSL-GRPC/src/crypto/x509/x509_r2x.c -------------------------------------------------------------------------------- /Pods/BoringSSL-GRPC/src/crypto/x509/x509_req.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/BoringSSL-GRPC/src/crypto/x509/x509_req.c -------------------------------------------------------------------------------- /Pods/BoringSSL-GRPC/src/crypto/x509/x509_set.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/BoringSSL-GRPC/src/crypto/x509/x509_set.c -------------------------------------------------------------------------------- /Pods/BoringSSL-GRPC/src/crypto/x509/x509_trs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/BoringSSL-GRPC/src/crypto/x509/x509_trs.c -------------------------------------------------------------------------------- /Pods/BoringSSL-GRPC/src/crypto/x509/x509_txt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/BoringSSL-GRPC/src/crypto/x509/x509_txt.c -------------------------------------------------------------------------------- /Pods/BoringSSL-GRPC/src/crypto/x509/x509_v3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/BoringSSL-GRPC/src/crypto/x509/x509_v3.c -------------------------------------------------------------------------------- /Pods/BoringSSL-GRPC/src/crypto/x509/x509_vfy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/BoringSSL-GRPC/src/crypto/x509/x509_vfy.c -------------------------------------------------------------------------------- /Pods/BoringSSL-GRPC/src/crypto/x509/x509_vpm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/BoringSSL-GRPC/src/crypto/x509/x509_vpm.c -------------------------------------------------------------------------------- /Pods/BoringSSL-GRPC/src/crypto/x509/x509cset.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/BoringSSL-GRPC/src/crypto/x509/x509cset.c -------------------------------------------------------------------------------- /Pods/BoringSSL-GRPC/src/crypto/x509/x509name.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/BoringSSL-GRPC/src/crypto/x509/x509name.c -------------------------------------------------------------------------------- /Pods/BoringSSL-GRPC/src/crypto/x509/x509rset.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/BoringSSL-GRPC/src/crypto/x509/x509rset.c -------------------------------------------------------------------------------- /Pods/BoringSSL-GRPC/src/crypto/x509/x509spki.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/BoringSSL-GRPC/src/crypto/x509/x509spki.c -------------------------------------------------------------------------------- /Pods/BoringSSL-GRPC/src/crypto/x509/x_algor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/BoringSSL-GRPC/src/crypto/x509/x_algor.c -------------------------------------------------------------------------------- /Pods/BoringSSL-GRPC/src/crypto/x509/x_all.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/BoringSSL-GRPC/src/crypto/x509/x_all.c -------------------------------------------------------------------------------- /Pods/BoringSSL-GRPC/src/crypto/x509/x_attrib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/BoringSSL-GRPC/src/crypto/x509/x_attrib.c -------------------------------------------------------------------------------- /Pods/BoringSSL-GRPC/src/crypto/x509/x_crl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/BoringSSL-GRPC/src/crypto/x509/x_crl.c -------------------------------------------------------------------------------- /Pods/BoringSSL-GRPC/src/crypto/x509/x_exten.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/BoringSSL-GRPC/src/crypto/x509/x_exten.c -------------------------------------------------------------------------------- /Pods/BoringSSL-GRPC/src/crypto/x509/x_info.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/BoringSSL-GRPC/src/crypto/x509/x_info.c -------------------------------------------------------------------------------- /Pods/BoringSSL-GRPC/src/crypto/x509/x_name.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/BoringSSL-GRPC/src/crypto/x509/x_name.c -------------------------------------------------------------------------------- /Pods/BoringSSL-GRPC/src/crypto/x509/x_pkey.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/BoringSSL-GRPC/src/crypto/x509/x_pkey.c -------------------------------------------------------------------------------- /Pods/BoringSSL-GRPC/src/crypto/x509/x_pubkey.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/BoringSSL-GRPC/src/crypto/x509/x_pubkey.c -------------------------------------------------------------------------------- /Pods/BoringSSL-GRPC/src/crypto/x509/x_req.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/BoringSSL-GRPC/src/crypto/x509/x_req.c -------------------------------------------------------------------------------- /Pods/BoringSSL-GRPC/src/crypto/x509/x_sig.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/BoringSSL-GRPC/src/crypto/x509/x_sig.c -------------------------------------------------------------------------------- /Pods/BoringSSL-GRPC/src/crypto/x509/x_spki.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/BoringSSL-GRPC/src/crypto/x509/x_spki.c -------------------------------------------------------------------------------- /Pods/BoringSSL-GRPC/src/crypto/x509/x_val.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/BoringSSL-GRPC/src/crypto/x509/x_val.c -------------------------------------------------------------------------------- /Pods/BoringSSL-GRPC/src/crypto/x509/x_x509.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/BoringSSL-GRPC/src/crypto/x509/x_x509.c -------------------------------------------------------------------------------- /Pods/BoringSSL-GRPC/src/crypto/x509/x_x509a.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/BoringSSL-GRPC/src/crypto/x509/x_x509a.c -------------------------------------------------------------------------------- /Pods/BoringSSL-GRPC/src/crypto/x509v3/ext_dat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/BoringSSL-GRPC/src/crypto/x509v3/ext_dat.h -------------------------------------------------------------------------------- /Pods/BoringSSL-GRPC/src/crypto/x509v3/pcy_int.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/BoringSSL-GRPC/src/crypto/x509v3/pcy_int.h -------------------------------------------------------------------------------- /Pods/BoringSSL-GRPC/src/crypto/x509v3/pcy_lib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/BoringSSL-GRPC/src/crypto/x509v3/pcy_lib.c -------------------------------------------------------------------------------- /Pods/BoringSSL-GRPC/src/crypto/x509v3/pcy_map.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/BoringSSL-GRPC/src/crypto/x509v3/pcy_map.c -------------------------------------------------------------------------------- /Pods/BoringSSL-GRPC/src/crypto/x509v3/v3_akey.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/BoringSSL-GRPC/src/crypto/x509v3/v3_akey.c -------------------------------------------------------------------------------- /Pods/BoringSSL-GRPC/src/crypto/x509v3/v3_alt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/BoringSSL-GRPC/src/crypto/x509v3/v3_alt.c -------------------------------------------------------------------------------- /Pods/BoringSSL-GRPC/src/crypto/x509v3/v3_conf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/BoringSSL-GRPC/src/crypto/x509v3/v3_conf.c -------------------------------------------------------------------------------- /Pods/BoringSSL-GRPC/src/crypto/x509v3/v3_crld.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/BoringSSL-GRPC/src/crypto/x509v3/v3_crld.c -------------------------------------------------------------------------------- /Pods/BoringSSL-GRPC/src/crypto/x509v3/v3_enum.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/BoringSSL-GRPC/src/crypto/x509v3/v3_enum.c -------------------------------------------------------------------------------- /Pods/BoringSSL-GRPC/src/crypto/x509v3/v3_genn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/BoringSSL-GRPC/src/crypto/x509v3/v3_genn.c -------------------------------------------------------------------------------- /Pods/BoringSSL-GRPC/src/crypto/x509v3/v3_ia5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/BoringSSL-GRPC/src/crypto/x509v3/v3_ia5.c -------------------------------------------------------------------------------- /Pods/BoringSSL-GRPC/src/crypto/x509v3/v3_info.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/BoringSSL-GRPC/src/crypto/x509v3/v3_info.c -------------------------------------------------------------------------------- /Pods/BoringSSL-GRPC/src/crypto/x509v3/v3_int.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/BoringSSL-GRPC/src/crypto/x509v3/v3_int.c -------------------------------------------------------------------------------- /Pods/BoringSSL-GRPC/src/crypto/x509v3/v3_lib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/BoringSSL-GRPC/src/crypto/x509v3/v3_lib.c -------------------------------------------------------------------------------- /Pods/BoringSSL-GRPC/src/crypto/x509v3/v3_ocsp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/BoringSSL-GRPC/src/crypto/x509v3/v3_ocsp.c -------------------------------------------------------------------------------- /Pods/BoringSSL-GRPC/src/crypto/x509v3/v3_pci.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/BoringSSL-GRPC/src/crypto/x509v3/v3_pci.c -------------------------------------------------------------------------------- /Pods/BoringSSL-GRPC/src/crypto/x509v3/v3_pcia.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/BoringSSL-GRPC/src/crypto/x509v3/v3_pcia.c -------------------------------------------------------------------------------- /Pods/BoringSSL-GRPC/src/crypto/x509v3/v3_pku.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/BoringSSL-GRPC/src/crypto/x509v3/v3_pku.c -------------------------------------------------------------------------------- /Pods/BoringSSL-GRPC/src/crypto/x509v3/v3_prn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/BoringSSL-GRPC/src/crypto/x509v3/v3_prn.c -------------------------------------------------------------------------------- /Pods/BoringSSL-GRPC/src/crypto/x509v3/v3_purp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/BoringSSL-GRPC/src/crypto/x509v3/v3_purp.c -------------------------------------------------------------------------------- /Pods/BoringSSL-GRPC/src/crypto/x509v3/v3_skey.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/BoringSSL-GRPC/src/crypto/x509v3/v3_skey.c -------------------------------------------------------------------------------- /Pods/BoringSSL-GRPC/src/crypto/x509v3/v3_utl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/BoringSSL-GRPC/src/crypto/x509v3/v3_utl.c -------------------------------------------------------------------------------- /Pods/BoringSSL-GRPC/src/include/openssl/aead.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/BoringSSL-GRPC/src/include/openssl/aead.h -------------------------------------------------------------------------------- /Pods/BoringSSL-GRPC/src/include/openssl/aes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/BoringSSL-GRPC/src/include/openssl/aes.h -------------------------------------------------------------------------------- /Pods/BoringSSL-GRPC/src/include/openssl/asn1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/BoringSSL-GRPC/src/include/openssl/asn1.h -------------------------------------------------------------------------------- /Pods/BoringSSL-GRPC/src/include/openssl/asn1t.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/BoringSSL-GRPC/src/include/openssl/asn1t.h -------------------------------------------------------------------------------- /Pods/BoringSSL-GRPC/src/include/openssl/base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/BoringSSL-GRPC/src/include/openssl/base.h -------------------------------------------------------------------------------- /Pods/BoringSSL-GRPC/src/include/openssl/bio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/BoringSSL-GRPC/src/include/openssl/bio.h -------------------------------------------------------------------------------- /Pods/BoringSSL-GRPC/src/include/openssl/bn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/BoringSSL-GRPC/src/include/openssl/bn.h -------------------------------------------------------------------------------- /Pods/BoringSSL-GRPC/src/include/openssl/buf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/BoringSSL-GRPC/src/include/openssl/buf.h -------------------------------------------------------------------------------- /Pods/BoringSSL-GRPC/src/include/openssl/cast.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/BoringSSL-GRPC/src/include/openssl/cast.h -------------------------------------------------------------------------------- /Pods/BoringSSL-GRPC/src/include/openssl/cmac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/BoringSSL-GRPC/src/include/openssl/cmac.h -------------------------------------------------------------------------------- /Pods/BoringSSL-GRPC/src/include/openssl/conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/BoringSSL-GRPC/src/include/openssl/conf.h -------------------------------------------------------------------------------- /Pods/BoringSSL-GRPC/src/include/openssl/cpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/BoringSSL-GRPC/src/include/openssl/cpu.h -------------------------------------------------------------------------------- /Pods/BoringSSL-GRPC/src/include/openssl/des.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/BoringSSL-GRPC/src/include/openssl/des.h -------------------------------------------------------------------------------- /Pods/BoringSSL-GRPC/src/include/openssl/dh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/BoringSSL-GRPC/src/include/openssl/dh.h -------------------------------------------------------------------------------- /Pods/BoringSSL-GRPC/src/include/openssl/dsa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/BoringSSL-GRPC/src/include/openssl/dsa.h -------------------------------------------------------------------------------- /Pods/BoringSSL-GRPC/src/include/openssl/dtls1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/BoringSSL-GRPC/src/include/openssl/dtls1.h -------------------------------------------------------------------------------- /Pods/BoringSSL-GRPC/src/include/openssl/e_os2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/BoringSSL-GRPC/src/include/openssl/e_os2.h -------------------------------------------------------------------------------- /Pods/BoringSSL-GRPC/src/include/openssl/ec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/BoringSSL-GRPC/src/include/openssl/ec.h -------------------------------------------------------------------------------- /Pods/BoringSSL-GRPC/src/include/openssl/ecdh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/BoringSSL-GRPC/src/include/openssl/ecdh.h -------------------------------------------------------------------------------- /Pods/BoringSSL-GRPC/src/include/openssl/ecdsa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/BoringSSL-GRPC/src/include/openssl/ecdsa.h -------------------------------------------------------------------------------- /Pods/BoringSSL-GRPC/src/include/openssl/err.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/BoringSSL-GRPC/src/include/openssl/err.h -------------------------------------------------------------------------------- /Pods/BoringSSL-GRPC/src/include/openssl/evp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/BoringSSL-GRPC/src/include/openssl/evp.h -------------------------------------------------------------------------------- /Pods/BoringSSL-GRPC/src/include/openssl/hkdf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/BoringSSL-GRPC/src/include/openssl/hkdf.h -------------------------------------------------------------------------------- /Pods/BoringSSL-GRPC/src/include/openssl/hmac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/BoringSSL-GRPC/src/include/openssl/hmac.h -------------------------------------------------------------------------------- /Pods/BoringSSL-GRPC/src/include/openssl/hrss.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/BoringSSL-GRPC/src/include/openssl/hrss.h -------------------------------------------------------------------------------- /Pods/BoringSSL-GRPC/src/include/openssl/lhash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/BoringSSL-GRPC/src/include/openssl/lhash.h -------------------------------------------------------------------------------- /Pods/BoringSSL-GRPC/src/include/openssl/md4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/BoringSSL-GRPC/src/include/openssl/md4.h -------------------------------------------------------------------------------- /Pods/BoringSSL-GRPC/src/include/openssl/md5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/BoringSSL-GRPC/src/include/openssl/md5.h -------------------------------------------------------------------------------- /Pods/BoringSSL-GRPC/src/include/openssl/mem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/BoringSSL-GRPC/src/include/openssl/mem.h -------------------------------------------------------------------------------- /Pods/BoringSSL-GRPC/src/include/openssl/nid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/BoringSSL-GRPC/src/include/openssl/nid.h -------------------------------------------------------------------------------- /Pods/BoringSSL-GRPC/src/include/openssl/obj.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/BoringSSL-GRPC/src/include/openssl/obj.h -------------------------------------------------------------------------------- /Pods/BoringSSL-GRPC/src/include/openssl/pem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/BoringSSL-GRPC/src/include/openssl/pem.h -------------------------------------------------------------------------------- /Pods/BoringSSL-GRPC/src/include/openssl/pkcs7.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/BoringSSL-GRPC/src/include/openssl/pkcs7.h -------------------------------------------------------------------------------- /Pods/BoringSSL-GRPC/src/include/openssl/pkcs8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/BoringSSL-GRPC/src/include/openssl/pkcs8.h -------------------------------------------------------------------------------- /Pods/BoringSSL-GRPC/src/include/openssl/pool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/BoringSSL-GRPC/src/include/openssl/pool.h -------------------------------------------------------------------------------- /Pods/BoringSSL-GRPC/src/include/openssl/rand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/BoringSSL-GRPC/src/include/openssl/rand.h -------------------------------------------------------------------------------- /Pods/BoringSSL-GRPC/src/include/openssl/rc4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/BoringSSL-GRPC/src/include/openssl/rc4.h -------------------------------------------------------------------------------- /Pods/BoringSSL-GRPC/src/include/openssl/rsa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/BoringSSL-GRPC/src/include/openssl/rsa.h -------------------------------------------------------------------------------- /Pods/BoringSSL-GRPC/src/include/openssl/sha.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/BoringSSL-GRPC/src/include/openssl/sha.h -------------------------------------------------------------------------------- /Pods/BoringSSL-GRPC/src/include/openssl/span.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/BoringSSL-GRPC/src/include/openssl/span.h -------------------------------------------------------------------------------- /Pods/BoringSSL-GRPC/src/include/openssl/srtp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/BoringSSL-GRPC/src/include/openssl/srtp.h -------------------------------------------------------------------------------- /Pods/BoringSSL-GRPC/src/include/openssl/ssl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/BoringSSL-GRPC/src/include/openssl/ssl.h -------------------------------------------------------------------------------- /Pods/BoringSSL-GRPC/src/include/openssl/ssl3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/BoringSSL-GRPC/src/include/openssl/ssl3.h -------------------------------------------------------------------------------- /Pods/BoringSSL-GRPC/src/include/openssl/stack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/BoringSSL-GRPC/src/include/openssl/stack.h -------------------------------------------------------------------------------- /Pods/BoringSSL-GRPC/src/include/openssl/tls1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/BoringSSL-GRPC/src/include/openssl/tls1.h -------------------------------------------------------------------------------- /Pods/BoringSSL-GRPC/src/include/openssl/x509.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/BoringSSL-GRPC/src/include/openssl/x509.h -------------------------------------------------------------------------------- /Pods/BoringSSL-GRPC/src/ssl/bio_ssl.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/BoringSSL-GRPC/src/ssl/bio_ssl.cc -------------------------------------------------------------------------------- /Pods/BoringSSL-GRPC/src/ssl/d1_both.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/BoringSSL-GRPC/src/ssl/d1_both.cc -------------------------------------------------------------------------------- /Pods/BoringSSL-GRPC/src/ssl/d1_lib.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/BoringSSL-GRPC/src/ssl/d1_lib.cc -------------------------------------------------------------------------------- /Pods/BoringSSL-GRPC/src/ssl/d1_lib.cc.grpc_back: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/BoringSSL-GRPC/src/ssl/d1_lib.cc.grpc_back -------------------------------------------------------------------------------- /Pods/BoringSSL-GRPC/src/ssl/d1_pkt.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/BoringSSL-GRPC/src/ssl/d1_pkt.cc -------------------------------------------------------------------------------- /Pods/BoringSSL-GRPC/src/ssl/d1_pkt.cc.grpc_back: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/BoringSSL-GRPC/src/ssl/d1_pkt.cc.grpc_back -------------------------------------------------------------------------------- /Pods/BoringSSL-GRPC/src/ssl/d1_srtp.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/BoringSSL-GRPC/src/ssl/d1_srtp.cc -------------------------------------------------------------------------------- /Pods/BoringSSL-GRPC/src/ssl/dtls_method.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/BoringSSL-GRPC/src/ssl/dtls_method.cc -------------------------------------------------------------------------------- /Pods/BoringSSL-GRPC/src/ssl/dtls_record.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/BoringSSL-GRPC/src/ssl/dtls_record.cc -------------------------------------------------------------------------------- /Pods/BoringSSL-GRPC/src/ssl/handoff.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/BoringSSL-GRPC/src/ssl/handoff.cc -------------------------------------------------------------------------------- /Pods/BoringSSL-GRPC/src/ssl/handshake.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/BoringSSL-GRPC/src/ssl/handshake.cc -------------------------------------------------------------------------------- /Pods/BoringSSL-GRPC/src/ssl/handshake_client.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/BoringSSL-GRPC/src/ssl/handshake_client.cc -------------------------------------------------------------------------------- /Pods/BoringSSL-GRPC/src/ssl/handshake_server.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/BoringSSL-GRPC/src/ssl/handshake_server.cc -------------------------------------------------------------------------------- /Pods/BoringSSL-GRPC/src/ssl/internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/BoringSSL-GRPC/src/ssl/internal.h -------------------------------------------------------------------------------- /Pods/BoringSSL-GRPC/src/ssl/s3_both.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/BoringSSL-GRPC/src/ssl/s3_both.cc -------------------------------------------------------------------------------- /Pods/BoringSSL-GRPC/src/ssl/s3_lib.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/BoringSSL-GRPC/src/ssl/s3_lib.cc -------------------------------------------------------------------------------- /Pods/BoringSSL-GRPC/src/ssl/s3_lib.cc.grpc_back: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/BoringSSL-GRPC/src/ssl/s3_lib.cc.grpc_back -------------------------------------------------------------------------------- /Pods/BoringSSL-GRPC/src/ssl/s3_pkt.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/BoringSSL-GRPC/src/ssl/s3_pkt.cc -------------------------------------------------------------------------------- /Pods/BoringSSL-GRPC/src/ssl/s3_pkt.cc.grpc_back: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/BoringSSL-GRPC/src/ssl/s3_pkt.cc.grpc_back -------------------------------------------------------------------------------- /Pods/BoringSSL-GRPC/src/ssl/ssl_aead_ctx.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/BoringSSL-GRPC/src/ssl/ssl_aead_ctx.cc -------------------------------------------------------------------------------- /Pods/BoringSSL-GRPC/src/ssl/ssl_asn1.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/BoringSSL-GRPC/src/ssl/ssl_asn1.cc -------------------------------------------------------------------------------- /Pods/BoringSSL-GRPC/src/ssl/ssl_buffer.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/BoringSSL-GRPC/src/ssl/ssl_buffer.cc -------------------------------------------------------------------------------- /Pods/BoringSSL-GRPC/src/ssl/ssl_cert.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/BoringSSL-GRPC/src/ssl/ssl_cert.cc -------------------------------------------------------------------------------- /Pods/BoringSSL-GRPC/src/ssl/ssl_cipher.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/BoringSSL-GRPC/src/ssl/ssl_cipher.cc -------------------------------------------------------------------------------- /Pods/BoringSSL-GRPC/src/ssl/ssl_file.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/BoringSSL-GRPC/src/ssl/ssl_file.cc -------------------------------------------------------------------------------- /Pods/BoringSSL-GRPC/src/ssl/ssl_key_share.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/BoringSSL-GRPC/src/ssl/ssl_key_share.cc -------------------------------------------------------------------------------- /Pods/BoringSSL-GRPC/src/ssl/ssl_lib.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/BoringSSL-GRPC/src/ssl/ssl_lib.cc -------------------------------------------------------------------------------- /Pods/BoringSSL-GRPC/src/ssl/ssl_privkey.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/BoringSSL-GRPC/src/ssl/ssl_privkey.cc -------------------------------------------------------------------------------- /Pods/BoringSSL-GRPC/src/ssl/ssl_session.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/BoringSSL-GRPC/src/ssl/ssl_session.cc -------------------------------------------------------------------------------- /Pods/BoringSSL-GRPC/src/ssl/ssl_stat.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/BoringSSL-GRPC/src/ssl/ssl_stat.cc -------------------------------------------------------------------------------- /Pods/BoringSSL-GRPC/src/ssl/ssl_transcript.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/BoringSSL-GRPC/src/ssl/ssl_transcript.cc -------------------------------------------------------------------------------- /Pods/BoringSSL-GRPC/src/ssl/ssl_versions.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/BoringSSL-GRPC/src/ssl/ssl_versions.cc -------------------------------------------------------------------------------- /Pods/BoringSSL-GRPC/src/ssl/ssl_x509.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/BoringSSL-GRPC/src/ssl/ssl_x509.cc -------------------------------------------------------------------------------- /Pods/BoringSSL-GRPC/src/ssl/t1_enc.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/BoringSSL-GRPC/src/ssl/t1_enc.cc -------------------------------------------------------------------------------- /Pods/BoringSSL-GRPC/src/ssl/t1_enc.cc.grpc_back: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/BoringSSL-GRPC/src/ssl/t1_enc.cc.grpc_back -------------------------------------------------------------------------------- /Pods/BoringSSL-GRPC/src/ssl/t1_lib.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/BoringSSL-GRPC/src/ssl/t1_lib.cc -------------------------------------------------------------------------------- /Pods/BoringSSL-GRPC/src/ssl/t1_lib.cc.grpc_back: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/BoringSSL-GRPC/src/ssl/t1_lib.cc.grpc_back -------------------------------------------------------------------------------- /Pods/BoringSSL-GRPC/src/ssl/tls13_both.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/BoringSSL-GRPC/src/ssl/tls13_both.cc -------------------------------------------------------------------------------- /Pods/BoringSSL-GRPC/src/ssl/tls13_client.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/BoringSSL-GRPC/src/ssl/tls13_client.cc -------------------------------------------------------------------------------- /Pods/BoringSSL-GRPC/src/ssl/tls13_enc.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/BoringSSL-GRPC/src/ssl/tls13_enc.cc -------------------------------------------------------------------------------- /Pods/BoringSSL-GRPC/src/ssl/tls13_server.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/BoringSSL-GRPC/src/ssl/tls13_server.cc -------------------------------------------------------------------------------- /Pods/BoringSSL-GRPC/src/ssl/tls_method.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/BoringSSL-GRPC/src/ssl/tls_method.cc -------------------------------------------------------------------------------- /Pods/BoringSSL-GRPC/src/ssl/tls_record.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/BoringSSL-GRPC/src/ssl/tls_record.cc -------------------------------------------------------------------------------- /Pods/Firebase/CoreOnly/Sources/Firebase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/Firebase/CoreOnly/Sources/Firebase.h -------------------------------------------------------------------------------- /Pods/Firebase/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/Firebase/LICENSE -------------------------------------------------------------------------------- /Pods/Firebase/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/Firebase/README.md -------------------------------------------------------------------------------- /Pods/FirebaseAuth/FirebaseAuth/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/FirebaseAuth/FirebaseAuth/CHANGELOG.md -------------------------------------------------------------------------------- /Pods/FirebaseAuth/FirebaseAuth/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/FirebaseAuth/FirebaseAuth/README.md -------------------------------------------------------------------------------- /Pods/FirebaseAuth/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/FirebaseAuth/LICENSE -------------------------------------------------------------------------------- /Pods/FirebaseAuth/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/FirebaseAuth/README.md -------------------------------------------------------------------------------- /Pods/FirebaseAuthInterop/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/FirebaseAuthInterop/LICENSE -------------------------------------------------------------------------------- /Pods/FirebaseAuthInterop/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/FirebaseAuthInterop/README.md -------------------------------------------------------------------------------- /Pods/FirebaseCore/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/FirebaseCore/LICENSE -------------------------------------------------------------------------------- /Pods/FirebaseCore/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/FirebaseCore/README.md -------------------------------------------------------------------------------- /Pods/FirebaseCoreDiagnostics/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/FirebaseCoreDiagnostics/LICENSE -------------------------------------------------------------------------------- /Pods/FirebaseCoreDiagnostics/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/FirebaseCoreDiagnostics/README.md -------------------------------------------------------------------------------- /Pods/FirebaseCoreDiagnosticsInterop/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/FirebaseCoreDiagnosticsInterop/LICENSE -------------------------------------------------------------------------------- /Pods/FirebaseCoreDiagnosticsInterop/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/FirebaseCoreDiagnosticsInterop/README.md -------------------------------------------------------------------------------- /Pods/FirebaseDatabase/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/FirebaseDatabase/LICENSE -------------------------------------------------------------------------------- /Pods/FirebaseDatabase/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/FirebaseDatabase/README.md -------------------------------------------------------------------------------- /Pods/FirebaseFirestore/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/FirebaseFirestore/LICENSE -------------------------------------------------------------------------------- /Pods/FirebaseFirestore/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/FirebaseFirestore/README.md -------------------------------------------------------------------------------- /Pods/FirebaseInstallations/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/FirebaseInstallations/LICENSE -------------------------------------------------------------------------------- /Pods/FirebaseInstallations/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/FirebaseInstallations/README.md -------------------------------------------------------------------------------- /Pods/FlagPhoneNumber/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/FlagPhoneNumber/LICENSE -------------------------------------------------------------------------------- /Pods/FlagPhoneNumber/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/FlagPhoneNumber/README.md -------------------------------------------------------------------------------- /Pods/FlagPhoneNumber/Sources/FPNCountry.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/FlagPhoneNumber/Sources/FPNCountry.swift -------------------------------------------------------------------------------- /Pods/GTMSessionFetcher/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/GTMSessionFetcher/LICENSE -------------------------------------------------------------------------------- /Pods/GTMSessionFetcher/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/GTMSessionFetcher/README.md -------------------------------------------------------------------------------- /Pods/GoogleDataTransport/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/GoogleDataTransport/LICENSE -------------------------------------------------------------------------------- /Pods/GoogleDataTransport/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/GoogleDataTransport/README.md -------------------------------------------------------------------------------- /Pods/GoogleDataTransportCCTSupport/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/GoogleDataTransportCCTSupport/LICENSE -------------------------------------------------------------------------------- /Pods/GoogleDataTransportCCTSupport/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/GoogleDataTransportCCTSupport/README.md -------------------------------------------------------------------------------- /Pods/GoogleUtilities/GoogleUtilities/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/GoogleUtilities/GoogleUtilities/LICENSE -------------------------------------------------------------------------------- /Pods/GoogleUtilities/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/GoogleUtilities/README.md -------------------------------------------------------------------------------- /Pods/Headers/Private/Firebase/Firebase.h: -------------------------------------------------------------------------------- 1 | ../../../Firebase/CoreOnly/Sources/Firebase.h -------------------------------------------------------------------------------- /Pods/Headers/Private/FirebaseAuthInterop/FIRAuthInterop.h: -------------------------------------------------------------------------------- 1 | ../../../FirebaseAuthInterop/Interop/Auth/Public/FIRAuthInterop.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Firebase/Firebase.h: -------------------------------------------------------------------------------- 1 | ../../../Firebase/CoreOnly/Sources/Firebase.h -------------------------------------------------------------------------------- /Pods/Headers/Public/FirebaseAuthInterop/FIRAuthInterop.h: -------------------------------------------------------------------------------- 1 | ../../../FirebaseAuthInterop/Interop/Auth/Public/FIRAuthInterop.h -------------------------------------------------------------------------------- /Pods/Manifest.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/Manifest.lock -------------------------------------------------------------------------------- /Pods/Pods.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/Pods.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Pods/PromisesObjC/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/PromisesObjC/LICENSE -------------------------------------------------------------------------------- /Pods/PromisesObjC/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/PromisesObjC/README.md -------------------------------------------------------------------------------- /Pods/QuickLayout/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/QuickLayout/LICENSE -------------------------------------------------------------------------------- /Pods/QuickLayout/QuickLayout/QLUtils.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/QuickLayout/QuickLayout/QLUtils.swift -------------------------------------------------------------------------------- /Pods/QuickLayout/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/QuickLayout/README.md -------------------------------------------------------------------------------- /Pods/SideMenu/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/SideMenu/LICENSE -------------------------------------------------------------------------------- /Pods/SideMenu/Pod/Classes/Deprecations.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/SideMenu/Pod/Classes/Deprecations.swift -------------------------------------------------------------------------------- /Pods/SideMenu/Pod/Classes/Extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/SideMenu/Pod/Classes/Extensions.swift -------------------------------------------------------------------------------- /Pods/SideMenu/Pod/Classes/Initializable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/SideMenu/Pod/Classes/Initializable.swift -------------------------------------------------------------------------------- /Pods/SideMenu/Pod/Classes/Print.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/SideMenu/Pod/Classes/Print.swift -------------------------------------------------------------------------------- /Pods/SideMenu/Pod/Classes/Protected.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/SideMenu/Pod/Classes/Protected.swift -------------------------------------------------------------------------------- /Pods/SideMenu/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/SideMenu/README.md -------------------------------------------------------------------------------- /Pods/SwiftEntryKit/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/SwiftEntryKit/LICENSE -------------------------------------------------------------------------------- /Pods/SwiftEntryKit/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/SwiftEntryKit/README.md -------------------------------------------------------------------------------- /Pods/SwiftEntryKit/Source/Model/EKColor.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/SwiftEntryKit/Source/Model/EKColor.swift -------------------------------------------------------------------------------- /Pods/SwiftEntryKit/Source/SwiftEntryKit.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/SwiftEntryKit/Source/SwiftEntryKit.swift -------------------------------------------------------------------------------- /Pods/WeScan/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/WeScan/LICENSE -------------------------------------------------------------------------------- /Pods/WeScan/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/WeScan/README.md -------------------------------------------------------------------------------- /Pods/WeScan/WeScan/Assets/enhance.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/WeScan/WeScan/Assets/enhance.png -------------------------------------------------------------------------------- /Pods/WeScan/WeScan/Assets/enhance@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/WeScan/WeScan/Assets/enhance@2x.png -------------------------------------------------------------------------------- /Pods/WeScan/WeScan/Assets/enhance@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/WeScan/WeScan/Assets/enhance@3x.png -------------------------------------------------------------------------------- /Pods/WeScan/WeScan/Assets/flash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/WeScan/WeScan/Assets/flash.png -------------------------------------------------------------------------------- /Pods/WeScan/WeScan/Assets/flash@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/WeScan/WeScan/Assets/flash@2x.png -------------------------------------------------------------------------------- /Pods/WeScan/WeScan/Assets/flash@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/WeScan/WeScan/Assets/flash@3x.png -------------------------------------------------------------------------------- /Pods/WeScan/WeScan/Assets/rotate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/WeScan/WeScan/Assets/rotate.png -------------------------------------------------------------------------------- /Pods/WeScan/WeScan/Assets/rotate@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/WeScan/WeScan/Assets/rotate@2x.png -------------------------------------------------------------------------------- /Pods/WeScan/WeScan/Assets/rotate@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/WeScan/WeScan/Assets/rotate@3x.png -------------------------------------------------------------------------------- /Pods/WeScan/WeScan/Common/Error.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/WeScan/WeScan/Common/Error.swift -------------------------------------------------------------------------------- /Pods/WeScan/WeScan/Common/Quadrilateral.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/WeScan/WeScan/Common/Quadrilateral.swift -------------------------------------------------------------------------------- /Pods/WeScan/WeScan/Scan/ShutterButton.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/WeScan/WeScan/Scan/ShutterButton.swift -------------------------------------------------------------------------------- /Pods/WeScan/WeScan/WeScan.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/WeScan/WeScan/WeScan.h -------------------------------------------------------------------------------- /Pods/abseil/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/abseil/LICENSE -------------------------------------------------------------------------------- /Pods/abseil/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/abseil/README.md -------------------------------------------------------------------------------- /Pods/abseil/absl/algorithm/algorithm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/abseil/absl/algorithm/algorithm.h -------------------------------------------------------------------------------- /Pods/abseil/absl/algorithm/container.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/abseil/absl/algorithm/container.h -------------------------------------------------------------------------------- /Pods/abseil/absl/base/attributes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/abseil/absl/base/attributes.h -------------------------------------------------------------------------------- /Pods/abseil/absl/base/call_once.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/abseil/absl/base/call_once.h -------------------------------------------------------------------------------- /Pods/abseil/absl/base/casts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/abseil/absl/base/casts.h -------------------------------------------------------------------------------- /Pods/abseil/absl/base/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/abseil/absl/base/config.h -------------------------------------------------------------------------------- /Pods/abseil/absl/base/const_init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/abseil/absl/base/const_init.h -------------------------------------------------------------------------------- /Pods/abseil/absl/base/dynamic_annotations.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/abseil/absl/base/dynamic_annotations.cc -------------------------------------------------------------------------------- /Pods/abseil/absl/base/dynamic_annotations.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/abseil/absl/base/dynamic_annotations.h -------------------------------------------------------------------------------- /Pods/abseil/absl/base/internal/atomic_hook.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/abseil/absl/base/internal/atomic_hook.h -------------------------------------------------------------------------------- /Pods/abseil/absl/base/internal/bits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/abseil/absl/base/internal/bits.h -------------------------------------------------------------------------------- /Pods/abseil/absl/base/internal/cycleclock.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/abseil/absl/base/internal/cycleclock.cc -------------------------------------------------------------------------------- /Pods/abseil/absl/base/internal/cycleclock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/abseil/absl/base/internal/cycleclock.h -------------------------------------------------------------------------------- /Pods/abseil/absl/base/internal/direct_mmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/abseil/absl/base/internal/direct_mmap.h -------------------------------------------------------------------------------- /Pods/abseil/absl/base/internal/endian.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/abseil/absl/base/internal/endian.h -------------------------------------------------------------------------------- /Pods/abseil/absl/base/internal/errno_saver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/abseil/absl/base/internal/errno_saver.h -------------------------------------------------------------------------------- /Pods/abseil/absl/base/internal/hide_ptr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/abseil/absl/base/internal/hide_ptr.h -------------------------------------------------------------------------------- /Pods/abseil/absl/base/internal/identity.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/abseil/absl/base/internal/identity.h -------------------------------------------------------------------------------- /Pods/abseil/absl/base/internal/invoke.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/abseil/absl/base/internal/invoke.h -------------------------------------------------------------------------------- /Pods/abseil/absl/base/internal/raw_logging.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/abseil/absl/base/internal/raw_logging.cc -------------------------------------------------------------------------------- /Pods/abseil/absl/base/internal/raw_logging.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/abseil/absl/base/internal/raw_logging.h -------------------------------------------------------------------------------- /Pods/abseil/absl/base/internal/spinlock.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/abseil/absl/base/internal/spinlock.cc -------------------------------------------------------------------------------- /Pods/abseil/absl/base/internal/spinlock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/abseil/absl/base/internal/spinlock.h -------------------------------------------------------------------------------- /Pods/abseil/absl/base/internal/sysinfo.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/abseil/absl/base/internal/sysinfo.cc -------------------------------------------------------------------------------- /Pods/abseil/absl/base/internal/sysinfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/abseil/absl/base/internal/sysinfo.h -------------------------------------------------------------------------------- /Pods/abseil/absl/base/log_severity.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/abseil/absl/base/log_severity.cc -------------------------------------------------------------------------------- /Pods/abseil/absl/base/log_severity.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/abseil/absl/base/log_severity.h -------------------------------------------------------------------------------- /Pods/abseil/absl/base/macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/abseil/absl/base/macros.h -------------------------------------------------------------------------------- /Pods/abseil/absl/base/optimization.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/abseil/absl/base/optimization.h -------------------------------------------------------------------------------- /Pods/abseil/absl/base/options.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/abseil/absl/base/options.h -------------------------------------------------------------------------------- /Pods/abseil/absl/base/policy_checks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/abseil/absl/base/policy_checks.h -------------------------------------------------------------------------------- /Pods/abseil/absl/base/port.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/abseil/absl/base/port.h -------------------------------------------------------------------------------- /Pods/abseil/absl/base/thread_annotations.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/abseil/absl/base/thread_annotations.h -------------------------------------------------------------------------------- /Pods/abseil/absl/container/inlined_vector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/abseil/absl/container/inlined_vector.h -------------------------------------------------------------------------------- /Pods/abseil/absl/memory/memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/abseil/absl/memory/memory.h -------------------------------------------------------------------------------- /Pods/abseil/absl/meta/type_traits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/abseil/absl/meta/type_traits.h -------------------------------------------------------------------------------- /Pods/abseil/absl/numeric/int128.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/abseil/absl/numeric/int128.cc -------------------------------------------------------------------------------- /Pods/abseil/absl/numeric/int128.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/abseil/absl/numeric/int128.h -------------------------------------------------------------------------------- /Pods/abseil/absl/strings/ascii.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/abseil/absl/strings/ascii.cc -------------------------------------------------------------------------------- /Pods/abseil/absl/strings/ascii.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/abseil/absl/strings/ascii.h -------------------------------------------------------------------------------- /Pods/abseil/absl/strings/charconv.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/abseil/absl/strings/charconv.cc -------------------------------------------------------------------------------- /Pods/abseil/absl/strings/charconv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/abseil/absl/strings/charconv.h -------------------------------------------------------------------------------- /Pods/abseil/absl/strings/escaping.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/abseil/absl/strings/escaping.cc -------------------------------------------------------------------------------- /Pods/abseil/absl/strings/escaping.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/abseil/absl/strings/escaping.h -------------------------------------------------------------------------------- /Pods/abseil/absl/strings/internal/char_map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/abseil/absl/strings/internal/char_map.h -------------------------------------------------------------------------------- /Pods/abseil/absl/strings/internal/escaping.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/abseil/absl/strings/internal/escaping.cc -------------------------------------------------------------------------------- /Pods/abseil/absl/strings/internal/escaping.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/abseil/absl/strings/internal/escaping.h -------------------------------------------------------------------------------- /Pods/abseil/absl/strings/internal/memutil.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/abseil/absl/strings/internal/memutil.cc -------------------------------------------------------------------------------- /Pods/abseil/absl/strings/internal/memutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/abseil/absl/strings/internal/memutil.h -------------------------------------------------------------------------------- /Pods/abseil/absl/strings/internal/utf8.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/abseil/absl/strings/internal/utf8.cc -------------------------------------------------------------------------------- /Pods/abseil/absl/strings/internal/utf8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/abseil/absl/strings/internal/utf8.h -------------------------------------------------------------------------------- /Pods/abseil/absl/strings/match.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/abseil/absl/strings/match.cc -------------------------------------------------------------------------------- /Pods/abseil/absl/strings/match.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/abseil/absl/strings/match.h -------------------------------------------------------------------------------- /Pods/abseil/absl/strings/numbers.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/abseil/absl/strings/numbers.cc -------------------------------------------------------------------------------- /Pods/abseil/absl/strings/numbers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/abseil/absl/strings/numbers.h -------------------------------------------------------------------------------- /Pods/abseil/absl/strings/str_cat.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/abseil/absl/strings/str_cat.cc -------------------------------------------------------------------------------- /Pods/abseil/absl/strings/str_cat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/abseil/absl/strings/str_cat.h -------------------------------------------------------------------------------- /Pods/abseil/absl/strings/str_format.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/abseil/absl/strings/str_format.h -------------------------------------------------------------------------------- /Pods/abseil/absl/strings/str_join.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/abseil/absl/strings/str_join.h -------------------------------------------------------------------------------- /Pods/abseil/absl/strings/str_replace.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/abseil/absl/strings/str_replace.cc -------------------------------------------------------------------------------- /Pods/abseil/absl/strings/str_replace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/abseil/absl/strings/str_replace.h -------------------------------------------------------------------------------- /Pods/abseil/absl/strings/str_split.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/abseil/absl/strings/str_split.cc -------------------------------------------------------------------------------- /Pods/abseil/absl/strings/str_split.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/abseil/absl/strings/str_split.h -------------------------------------------------------------------------------- /Pods/abseil/absl/strings/string_view.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/abseil/absl/strings/string_view.cc -------------------------------------------------------------------------------- /Pods/abseil/absl/strings/string_view.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/abseil/absl/strings/string_view.h -------------------------------------------------------------------------------- /Pods/abseil/absl/strings/strip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/abseil/absl/strings/strip.h -------------------------------------------------------------------------------- /Pods/abseil/absl/strings/substitute.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/abseil/absl/strings/substitute.cc -------------------------------------------------------------------------------- /Pods/abseil/absl/strings/substitute.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/abseil/absl/strings/substitute.h -------------------------------------------------------------------------------- /Pods/abseil/absl/time/civil_time.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/abseil/absl/time/civil_time.cc -------------------------------------------------------------------------------- /Pods/abseil/absl/time/civil_time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/abseil/absl/time/civil_time.h -------------------------------------------------------------------------------- /Pods/abseil/absl/time/clock.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/abseil/absl/time/clock.cc -------------------------------------------------------------------------------- /Pods/abseil/absl/time/clock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/abseil/absl/time/clock.h -------------------------------------------------------------------------------- /Pods/abseil/absl/time/duration.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/abseil/absl/time/duration.cc -------------------------------------------------------------------------------- /Pods/abseil/absl/time/format.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/abseil/absl/time/format.cc -------------------------------------------------------------------------------- /Pods/abseil/absl/time/time.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/abseil/absl/time/time.cc -------------------------------------------------------------------------------- /Pods/abseil/absl/time/time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/abseil/absl/time/time.h -------------------------------------------------------------------------------- /Pods/abseil/absl/types/any.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/abseil/absl/types/any.h -------------------------------------------------------------------------------- /Pods/abseil/absl/types/bad_any_cast.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/abseil/absl/types/bad_any_cast.cc -------------------------------------------------------------------------------- /Pods/abseil/absl/types/bad_any_cast.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/abseil/absl/types/bad_any_cast.h -------------------------------------------------------------------------------- /Pods/abseil/absl/types/bad_optional_access.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/abseil/absl/types/bad_optional_access.cc -------------------------------------------------------------------------------- /Pods/abseil/absl/types/bad_optional_access.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/abseil/absl/types/bad_optional_access.h -------------------------------------------------------------------------------- /Pods/abseil/absl/types/bad_variant_access.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/abseil/absl/types/bad_variant_access.cc -------------------------------------------------------------------------------- /Pods/abseil/absl/types/bad_variant_access.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/abseil/absl/types/bad_variant_access.h -------------------------------------------------------------------------------- /Pods/abseil/absl/types/compare.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/abseil/absl/types/compare.h -------------------------------------------------------------------------------- /Pods/abseil/absl/types/internal/optional.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/abseil/absl/types/internal/optional.h -------------------------------------------------------------------------------- /Pods/abseil/absl/types/internal/span.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/abseil/absl/types/internal/span.h -------------------------------------------------------------------------------- /Pods/abseil/absl/types/internal/variant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/abseil/absl/types/internal/variant.h -------------------------------------------------------------------------------- /Pods/abseil/absl/types/optional.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/abseil/absl/types/optional.h -------------------------------------------------------------------------------- /Pods/abseil/absl/types/span.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/abseil/absl/types/span.h -------------------------------------------------------------------------------- /Pods/abseil/absl/types/variant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/abseil/absl/types/variant.h -------------------------------------------------------------------------------- /Pods/abseil/absl/utility/utility.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/abseil/absl/utility/utility.h -------------------------------------------------------------------------------- /Pods/gRPC-C++/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/gRPC-C++/LICENSE -------------------------------------------------------------------------------- /Pods/gRPC-C++/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/gRPC-C++/README.md -------------------------------------------------------------------------------- /Pods/gRPC-C++/etc/roots.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/gRPC-C++/etc/roots.pem -------------------------------------------------------------------------------- /Pods/gRPC-C++/include/grpcpp/alarm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/gRPC-C++/include/grpcpp/alarm.h -------------------------------------------------------------------------------- /Pods/gRPC-C++/include/grpcpp/alarm_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/gRPC-C++/include/grpcpp/alarm_impl.h -------------------------------------------------------------------------------- /Pods/gRPC-C++/include/grpcpp/channel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/gRPC-C++/include/grpcpp/channel.h -------------------------------------------------------------------------------- /Pods/gRPC-C++/include/grpcpp/channel_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/gRPC-C++/include/grpcpp/channel_impl.h -------------------------------------------------------------------------------- /Pods/gRPC-C++/include/grpcpp/client_context.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/gRPC-C++/include/grpcpp/client_context.h -------------------------------------------------------------------------------- /Pods/gRPC-C++/include/grpcpp/create_channel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/gRPC-C++/include/grpcpp/create_channel.h -------------------------------------------------------------------------------- /Pods/gRPC-C++/include/grpcpp/grpcpp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/gRPC-C++/include/grpcpp/grpcpp.h -------------------------------------------------------------------------------- /Pods/gRPC-C++/include/grpcpp/impl/call.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/gRPC-C++/include/grpcpp/impl/call.h -------------------------------------------------------------------------------- /Pods/gRPC-C++/include/grpcpp/resource_quota.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/gRPC-C++/include/grpcpp/resource_quota.h -------------------------------------------------------------------------------- /Pods/gRPC-C++/include/grpcpp/server.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/gRPC-C++/include/grpcpp/server.h -------------------------------------------------------------------------------- /Pods/gRPC-C++/include/grpcpp/server_builder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/gRPC-C++/include/grpcpp/server_builder.h -------------------------------------------------------------------------------- /Pods/gRPC-C++/include/grpcpp/server_context.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/gRPC-C++/include/grpcpp/server_context.h -------------------------------------------------------------------------------- /Pods/gRPC-C++/include/grpcpp/server_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/gRPC-C++/include/grpcpp/server_impl.h -------------------------------------------------------------------------------- /Pods/gRPC-C++/include/grpcpp/server_posix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/gRPC-C++/include/grpcpp/server_posix.h -------------------------------------------------------------------------------- /Pods/gRPC-C++/include/grpcpp/support/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/gRPC-C++/include/grpcpp/support/config.h -------------------------------------------------------------------------------- /Pods/gRPC-C++/include/grpcpp/support/slice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/gRPC-C++/include/grpcpp/support/slice.h -------------------------------------------------------------------------------- /Pods/gRPC-C++/include/grpcpp/support/status.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/gRPC-C++/include/grpcpp/support/status.h -------------------------------------------------------------------------------- /Pods/gRPC-C++/include/grpcpp/support/time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/gRPC-C++/include/grpcpp/support/time.h -------------------------------------------------------------------------------- /Pods/gRPC-C++/src/core/lib/avl/avl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/gRPC-C++/src/core/lib/avl/avl.h -------------------------------------------------------------------------------- /Pods/gRPC-C++/src/core/lib/backoff/backoff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/gRPC-C++/src/core/lib/backoff/backoff.h -------------------------------------------------------------------------------- /Pods/gRPC-C++/src/core/lib/channel/channelz.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/gRPC-C++/src/core/lib/channel/channelz.h -------------------------------------------------------------------------------- /Pods/gRPC-C++/src/core/lib/channel/context.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/gRPC-C++/src/core/lib/channel/context.h -------------------------------------------------------------------------------- /Pods/gRPC-C++/src/core/lib/debug/stats.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/gRPC-C++/src/core/lib/debug/stats.h -------------------------------------------------------------------------------- /Pods/gRPC-C++/src/core/lib/debug/stats_data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/gRPC-C++/src/core/lib/debug/stats_data.h -------------------------------------------------------------------------------- /Pods/gRPC-C++/src/core/lib/debug/trace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/gRPC-C++/src/core/lib/debug/trace.h -------------------------------------------------------------------------------- /Pods/gRPC-C++/src/core/lib/gpr/alloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/gRPC-C++/src/core/lib/gpr/alloc.h -------------------------------------------------------------------------------- /Pods/gRPC-C++/src/core/lib/gpr/arena.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/gRPC-C++/src/core/lib/gpr/arena.h -------------------------------------------------------------------------------- /Pods/gRPC-C++/src/core/lib/gpr/env.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/gRPC-C++/src/core/lib/gpr/env.h -------------------------------------------------------------------------------- /Pods/gRPC-C++/src/core/lib/gpr/murmur_hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/gRPC-C++/src/core/lib/gpr/murmur_hash.h -------------------------------------------------------------------------------- /Pods/gRPC-C++/src/core/lib/gpr/spinlock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/gRPC-C++/src/core/lib/gpr/spinlock.h -------------------------------------------------------------------------------- /Pods/gRPC-C++/src/core/lib/gpr/string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/gRPC-C++/src/core/lib/gpr/string.h -------------------------------------------------------------------------------- /Pods/gRPC-C++/src/core/lib/gpr/time_precise.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/gRPC-C++/src/core/lib/gpr/time_precise.h -------------------------------------------------------------------------------- /Pods/gRPC-C++/src/core/lib/gpr/tls.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/gRPC-C++/src/core/lib/gpr/tls.h -------------------------------------------------------------------------------- /Pods/gRPC-C++/src/core/lib/gpr/tls_gcc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/gRPC-C++/src/core/lib/gpr/tls_gcc.h -------------------------------------------------------------------------------- /Pods/gRPC-C++/src/core/lib/gpr/tls_msvc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/gRPC-C++/src/core/lib/gpr/tls_msvc.h -------------------------------------------------------------------------------- /Pods/gRPC-C++/src/core/lib/gpr/tls_pthread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/gRPC-C++/src/core/lib/gpr/tls_pthread.h -------------------------------------------------------------------------------- /Pods/gRPC-C++/src/core/lib/gpr/tmpfile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/gRPC-C++/src/core/lib/gpr/tmpfile.h -------------------------------------------------------------------------------- /Pods/gRPC-C++/src/core/lib/gpr/useful.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/gRPC-C++/src/core/lib/gpr/useful.h -------------------------------------------------------------------------------- /Pods/gRPC-C++/src/core/lib/gprpp/arena.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/gRPC-C++/src/core/lib/gprpp/arena.h -------------------------------------------------------------------------------- /Pods/gRPC-C++/src/core/lib/gprpp/atomic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/gRPC-C++/src/core/lib/gprpp/atomic.h -------------------------------------------------------------------------------- /Pods/gRPC-C++/src/core/lib/gprpp/fork.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/gRPC-C++/src/core/lib/gprpp/fork.h -------------------------------------------------------------------------------- /Pods/gRPC-C++/src/core/lib/gprpp/host_port.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/gRPC-C++/src/core/lib/gprpp/host_port.h -------------------------------------------------------------------------------- /Pods/gRPC-C++/src/core/lib/gprpp/map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/gRPC-C++/src/core/lib/gprpp/map.h -------------------------------------------------------------------------------- /Pods/gRPC-C++/src/core/lib/gprpp/memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/gRPC-C++/src/core/lib/gprpp/memory.h -------------------------------------------------------------------------------- /Pods/gRPC-C++/src/core/lib/gprpp/mpscq.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/gRPC-C++/src/core/lib/gprpp/mpscq.h -------------------------------------------------------------------------------- /Pods/gRPC-C++/src/core/lib/gprpp/optional.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/gRPC-C++/src/core/lib/gprpp/optional.h -------------------------------------------------------------------------------- /Pods/gRPC-C++/src/core/lib/gprpp/orphanable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/gRPC-C++/src/core/lib/gprpp/orphanable.h -------------------------------------------------------------------------------- /Pods/gRPC-C++/src/core/lib/gprpp/sync.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/gRPC-C++/src/core/lib/gprpp/sync.h -------------------------------------------------------------------------------- /Pods/gRPC-C++/src/core/lib/gprpp/thd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/gRPC-C++/src/core/lib/gprpp/thd.h -------------------------------------------------------------------------------- /Pods/gRPC-C++/src/core/lib/http/httpcli.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/gRPC-C++/src/core/lib/http/httpcli.h -------------------------------------------------------------------------------- /Pods/gRPC-C++/src/core/lib/http/parser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/gRPC-C++/src/core/lib/http/parser.h -------------------------------------------------------------------------------- /Pods/gRPC-C++/src/core/lib/iomgr/closure.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/gRPC-C++/src/core/lib/iomgr/closure.h -------------------------------------------------------------------------------- /Pods/gRPC-C++/src/core/lib/iomgr/combiner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/gRPC-C++/src/core/lib/iomgr/combiner.h -------------------------------------------------------------------------------- /Pods/gRPC-C++/src/core/lib/iomgr/endpoint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/gRPC-C++/src/core/lib/iomgr/endpoint.h -------------------------------------------------------------------------------- /Pods/gRPC-C++/src/core/lib/iomgr/error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/gRPC-C++/src/core/lib/iomgr/error.h -------------------------------------------------------------------------------- /Pods/gRPC-C++/src/core/lib/iomgr/ev_posix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/gRPC-C++/src/core/lib/iomgr/ev_posix.h -------------------------------------------------------------------------------- /Pods/gRPC-C++/src/core/lib/iomgr/exec_ctx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/gRPC-C++/src/core/lib/iomgr/exec_ctx.h -------------------------------------------------------------------------------- /Pods/gRPC-C++/src/core/lib/iomgr/executor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/gRPC-C++/src/core/lib/iomgr/executor.h -------------------------------------------------------------------------------- /Pods/gRPC-C++/src/core/lib/iomgr/iomgr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/gRPC-C++/src/core/lib/iomgr/iomgr.h -------------------------------------------------------------------------------- /Pods/gRPC-C++/src/core/lib/iomgr/load_file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/gRPC-C++/src/core/lib/iomgr/load_file.h -------------------------------------------------------------------------------- /Pods/gRPC-C++/src/core/lib/iomgr/nameser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/gRPC-C++/src/core/lib/iomgr/nameser.h -------------------------------------------------------------------------------- /Pods/gRPC-C++/src/core/lib/iomgr/pollset.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/gRPC-C++/src/core/lib/iomgr/pollset.h -------------------------------------------------------------------------------- /Pods/gRPC-C++/src/core/lib/iomgr/port.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/gRPC-C++/src/core/lib/iomgr/port.h -------------------------------------------------------------------------------- /Pods/gRPC-C++/src/core/lib/iomgr/sockaddr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/gRPC-C++/src/core/lib/iomgr/sockaddr.h -------------------------------------------------------------------------------- /Pods/gRPC-C++/src/core/lib/iomgr/tcp_client.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/gRPC-C++/src/core/lib/iomgr/tcp_client.h -------------------------------------------------------------------------------- /Pods/gRPC-C++/src/core/lib/iomgr/tcp_custom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/gRPC-C++/src/core/lib/iomgr/tcp_custom.h -------------------------------------------------------------------------------- /Pods/gRPC-C++/src/core/lib/iomgr/tcp_posix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/gRPC-C++/src/core/lib/iomgr/tcp_posix.h -------------------------------------------------------------------------------- /Pods/gRPC-C++/src/core/lib/iomgr/tcp_server.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/gRPC-C++/src/core/lib/iomgr/tcp_server.h -------------------------------------------------------------------------------- /Pods/gRPC-C++/src/core/lib/iomgr/timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/gRPC-C++/src/core/lib/iomgr/timer.h -------------------------------------------------------------------------------- /Pods/gRPC-C++/src/core/lib/iomgr/timer_heap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/gRPC-C++/src/core/lib/iomgr/timer_heap.h -------------------------------------------------------------------------------- /Pods/gRPC-C++/src/core/lib/iomgr/udp_server.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/gRPC-C++/src/core/lib/iomgr/udp_server.h -------------------------------------------------------------------------------- /Pods/gRPC-C++/src/core/lib/json/json.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/gRPC-C++/src/core/lib/json/json.h -------------------------------------------------------------------------------- /Pods/gRPC-C++/src/core/lib/profiling/timers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/gRPC-C++/src/core/lib/profiling/timers.h -------------------------------------------------------------------------------- /Pods/gRPC-C++/src/core/lib/slice/b64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/gRPC-C++/src/core/lib/slice/b64.h -------------------------------------------------------------------------------- /Pods/gRPC-C++/src/core/lib/surface/call.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/gRPC-C++/src/core/lib/surface/call.h -------------------------------------------------------------------------------- /Pods/gRPC-C++/src/core/lib/surface/channel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/gRPC-C++/src/core/lib/surface/channel.h -------------------------------------------------------------------------------- /Pods/gRPC-C++/src/core/lib/surface/init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/gRPC-C++/src/core/lib/surface/init.h -------------------------------------------------------------------------------- /Pods/gRPC-C++/src/core/lib/surface/server.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/gRPC-C++/src/core/lib/surface/server.h -------------------------------------------------------------------------------- /Pods/gRPC-C++/src/core/lib/uri/uri_parser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/gRPC-C++/src/core/lib/uri/uri_parser.h -------------------------------------------------------------------------------- /Pods/gRPC-C++/src/core/tsi/alts/crypt/gsec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/gRPC-C++/src/core/tsi/alts/crypt/gsec.h -------------------------------------------------------------------------------- /Pods/gRPC-C++/src/core/tsi/ssl_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/gRPC-C++/src/core/tsi/ssl_types.h -------------------------------------------------------------------------------- /Pods/gRPC-C++/src/cpp/client/channel_cc.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/gRPC-C++/src/cpp/client/channel_cc.cc -------------------------------------------------------------------------------- /Pods/gRPC-C++/src/cpp/codegen/codegen_init.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/gRPC-C++/src/cpp/codegen/codegen_init.cc -------------------------------------------------------------------------------- /Pods/gRPC-C++/src/cpp/common/alarm.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/gRPC-C++/src/cpp/common/alarm.cc -------------------------------------------------------------------------------- /Pods/gRPC-C++/src/cpp/common/channel_filter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/gRPC-C++/src/cpp/common/channel_filter.h -------------------------------------------------------------------------------- /Pods/gRPC-C++/src/cpp/common/core_codegen.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/gRPC-C++/src/cpp/common/core_codegen.cc -------------------------------------------------------------------------------- /Pods/gRPC-C++/src/cpp/common/rpc_method.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/gRPC-C++/src/cpp/common/rpc_method.cc -------------------------------------------------------------------------------- /Pods/gRPC-C++/src/cpp/common/version_cc.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/gRPC-C++/src/cpp/common/version_cc.cc -------------------------------------------------------------------------------- /Pods/gRPC-C++/src/cpp/server/server_cc.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/gRPC-C++/src/cpp/server/server_cc.cc -------------------------------------------------------------------------------- /Pods/gRPC-C++/src/cpp/server/server_posix.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/gRPC-C++/src/cpp/server/server_posix.cc -------------------------------------------------------------------------------- /Pods/gRPC-C++/src/cpp/util/byte_buffer_cc.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/gRPC-C++/src/cpp/util/byte_buffer_cc.cc -------------------------------------------------------------------------------- /Pods/gRPC-C++/src/cpp/util/status.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/gRPC-C++/src/cpp/util/status.cc -------------------------------------------------------------------------------- /Pods/gRPC-C++/src/cpp/util/string_ref.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/gRPC-C++/src/cpp/util/string_ref.cc -------------------------------------------------------------------------------- /Pods/gRPC-C++/src/cpp/util/time_cc.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/gRPC-C++/src/cpp/util/time_cc.cc -------------------------------------------------------------------------------- /Pods/gRPC-C++/third_party/upb/upb/decode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/gRPC-C++/third_party/upb/upb/decode.h -------------------------------------------------------------------------------- /Pods/gRPC-C++/third_party/upb/upb/encode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/gRPC-C++/third_party/upb/upb/encode.h -------------------------------------------------------------------------------- /Pods/gRPC-C++/third_party/upb/upb/msg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/gRPC-C++/third_party/upb/upb/msg.h -------------------------------------------------------------------------------- /Pods/gRPC-C++/third_party/upb/upb/table.int.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/gRPC-C++/third_party/upb/upb/table.int.h -------------------------------------------------------------------------------- /Pods/gRPC-C++/third_party/upb/upb/upb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/gRPC-C++/third_party/upb/upb/upb.h -------------------------------------------------------------------------------- /Pods/gRPC-Core/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/gRPC-Core/LICENSE -------------------------------------------------------------------------------- /Pods/gRPC-Core/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/gRPC-Core/README.md -------------------------------------------------------------------------------- /Pods/gRPC-Core/include/grpc/byte_buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/gRPC-Core/include/grpc/byte_buffer.h -------------------------------------------------------------------------------- /Pods/gRPC-Core/include/grpc/census.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/gRPC-Core/include/grpc/census.h -------------------------------------------------------------------------------- /Pods/gRPC-Core/include/grpc/compression.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/gRPC-Core/include/grpc/compression.h -------------------------------------------------------------------------------- /Pods/gRPC-Core/include/grpc/fork.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/gRPC-Core/include/grpc/fork.h -------------------------------------------------------------------------------- /Pods/gRPC-Core/include/grpc/grpc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/gRPC-Core/include/grpc/grpc.h -------------------------------------------------------------------------------- /Pods/gRPC-Core/include/grpc/grpc_posix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/gRPC-Core/include/grpc/grpc_posix.h -------------------------------------------------------------------------------- /Pods/gRPC-Core/include/grpc/grpc_security.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/gRPC-Core/include/grpc/grpc_security.h -------------------------------------------------------------------------------- /Pods/gRPC-Core/include/grpc/load_reporting.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/gRPC-Core/include/grpc/load_reporting.h -------------------------------------------------------------------------------- /Pods/gRPC-Core/include/grpc/module.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/gRPC-Core/include/grpc/module.modulemap -------------------------------------------------------------------------------- /Pods/gRPC-Core/include/grpc/slice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/gRPC-Core/include/grpc/slice.h -------------------------------------------------------------------------------- /Pods/gRPC-Core/include/grpc/slice_buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/gRPC-Core/include/grpc/slice_buffer.h -------------------------------------------------------------------------------- /Pods/gRPC-Core/include/grpc/status.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/gRPC-Core/include/grpc/status.h -------------------------------------------------------------------------------- /Pods/gRPC-Core/include/grpc/support/alloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/gRPC-Core/include/grpc/support/alloc.h -------------------------------------------------------------------------------- /Pods/gRPC-Core/include/grpc/support/atm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/gRPC-Core/include/grpc/support/atm.h -------------------------------------------------------------------------------- /Pods/gRPC-Core/include/grpc/support/cpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/gRPC-Core/include/grpc/support/cpu.h -------------------------------------------------------------------------------- /Pods/gRPC-Core/include/grpc/support/log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/gRPC-Core/include/grpc/support/log.h -------------------------------------------------------------------------------- /Pods/gRPC-Core/include/grpc/support/sync.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/gRPC-Core/include/grpc/support/sync.h -------------------------------------------------------------------------------- /Pods/gRPC-Core/include/grpc/support/thd_id.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/gRPC-Core/include/grpc/support/thd_id.h -------------------------------------------------------------------------------- /Pods/gRPC-Core/include/grpc/support/time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/gRPC-Core/include/grpc/support/time.h -------------------------------------------------------------------------------- /Pods/gRPC-Core/src/core/lib/avl/avl.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/gRPC-Core/src/core/lib/avl/avl.cc -------------------------------------------------------------------------------- /Pods/gRPC-Core/src/core/lib/avl/avl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/gRPC-Core/src/core/lib/avl/avl.h -------------------------------------------------------------------------------- /Pods/gRPC-Core/src/core/lib/backoff/backoff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/gRPC-Core/src/core/lib/backoff/backoff.h -------------------------------------------------------------------------------- /Pods/gRPC-Core/src/core/lib/channel/context.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/gRPC-Core/src/core/lib/channel/context.h -------------------------------------------------------------------------------- /Pods/gRPC-Core/src/core/lib/debug/stats.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/gRPC-Core/src/core/lib/debug/stats.cc -------------------------------------------------------------------------------- /Pods/gRPC-Core/src/core/lib/debug/stats.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/gRPC-Core/src/core/lib/debug/stats.h -------------------------------------------------------------------------------- /Pods/gRPC-Core/src/core/lib/debug/trace.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/gRPC-Core/src/core/lib/debug/trace.cc -------------------------------------------------------------------------------- /Pods/gRPC-Core/src/core/lib/debug/trace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/gRPC-Core/src/core/lib/debug/trace.h -------------------------------------------------------------------------------- /Pods/gRPC-Core/src/core/lib/gpr/alloc.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/gRPC-Core/src/core/lib/gpr/alloc.cc -------------------------------------------------------------------------------- /Pods/gRPC-Core/src/core/lib/gpr/alloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/gRPC-Core/src/core/lib/gpr/alloc.h -------------------------------------------------------------------------------- /Pods/gRPC-Core/src/core/lib/gpr/arena.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/gRPC-Core/src/core/lib/gpr/arena.h -------------------------------------------------------------------------------- /Pods/gRPC-Core/src/core/lib/gpr/atm.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/gRPC-Core/src/core/lib/gpr/atm.cc -------------------------------------------------------------------------------- /Pods/gRPC-Core/src/core/lib/gpr/cpu_iphone.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/gRPC-Core/src/core/lib/gpr/cpu_iphone.cc -------------------------------------------------------------------------------- /Pods/gRPC-Core/src/core/lib/gpr/cpu_linux.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/gRPC-Core/src/core/lib/gpr/cpu_linux.cc -------------------------------------------------------------------------------- /Pods/gRPC-Core/src/core/lib/gpr/cpu_posix.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/gRPC-Core/src/core/lib/gpr/cpu_posix.cc -------------------------------------------------------------------------------- /Pods/gRPC-Core/src/core/lib/gpr/env.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/gRPC-Core/src/core/lib/gpr/env.h -------------------------------------------------------------------------------- /Pods/gRPC-Core/src/core/lib/gpr/env_linux.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/gRPC-Core/src/core/lib/gpr/env_linux.cc -------------------------------------------------------------------------------- /Pods/gRPC-Core/src/core/lib/gpr/env_posix.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/gRPC-Core/src/core/lib/gpr/env_posix.cc -------------------------------------------------------------------------------- /Pods/gRPC-Core/src/core/lib/gpr/log.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/gRPC-Core/src/core/lib/gpr/log.cc -------------------------------------------------------------------------------- /Pods/gRPC-Core/src/core/lib/gpr/log_linux.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/gRPC-Core/src/core/lib/gpr/log_linux.cc -------------------------------------------------------------------------------- /Pods/gRPC-Core/src/core/lib/gpr/log_posix.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/gRPC-Core/src/core/lib/gpr/log_posix.cc -------------------------------------------------------------------------------- /Pods/gRPC-Core/src/core/lib/gpr/murmur_hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/gRPC-Core/src/core/lib/gpr/murmur_hash.h -------------------------------------------------------------------------------- /Pods/gRPC-Core/src/core/lib/gpr/spinlock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/gRPC-Core/src/core/lib/gpr/spinlock.h -------------------------------------------------------------------------------- /Pods/gRPC-Core/src/core/lib/gpr/string.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/gRPC-Core/src/core/lib/gpr/string.cc -------------------------------------------------------------------------------- /Pods/gRPC-Core/src/core/lib/gpr/string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/gRPC-Core/src/core/lib/gpr/string.h -------------------------------------------------------------------------------- /Pods/gRPC-Core/src/core/lib/gpr/sync.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/gRPC-Core/src/core/lib/gpr/sync.cc -------------------------------------------------------------------------------- /Pods/gRPC-Core/src/core/lib/gpr/sync_posix.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/gRPC-Core/src/core/lib/gpr/sync_posix.cc -------------------------------------------------------------------------------- /Pods/gRPC-Core/src/core/lib/gpr/time.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/gRPC-Core/src/core/lib/gpr/time.cc -------------------------------------------------------------------------------- /Pods/gRPC-Core/src/core/lib/gpr/time_posix.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/gRPC-Core/src/core/lib/gpr/time_posix.cc -------------------------------------------------------------------------------- /Pods/gRPC-Core/src/core/lib/gpr/tls.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/gRPC-Core/src/core/lib/gpr/tls.h -------------------------------------------------------------------------------- /Pods/gRPC-Core/src/core/lib/gpr/tls_gcc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/gRPC-Core/src/core/lib/gpr/tls_gcc.h -------------------------------------------------------------------------------- /Pods/gRPC-Core/src/core/lib/gpr/tls_msvc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/gRPC-Core/src/core/lib/gpr/tls_msvc.h -------------------------------------------------------------------------------- /Pods/gRPC-Core/src/core/lib/gpr/tls_pthread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/gRPC-Core/src/core/lib/gpr/tls_pthread.h -------------------------------------------------------------------------------- /Pods/gRPC-Core/src/core/lib/gpr/tmpfile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/gRPC-Core/src/core/lib/gpr/tmpfile.h -------------------------------------------------------------------------------- /Pods/gRPC-Core/src/core/lib/gpr/useful.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/gRPC-Core/src/core/lib/gpr/useful.h -------------------------------------------------------------------------------- /Pods/gRPC-Core/src/core/lib/gprpp/arena.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/gRPC-Core/src/core/lib/gprpp/arena.cc -------------------------------------------------------------------------------- /Pods/gRPC-Core/src/core/lib/gprpp/arena.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/gRPC-Core/src/core/lib/gprpp/arena.h -------------------------------------------------------------------------------- /Pods/gRPC-Core/src/core/lib/gprpp/atomic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/gRPC-Core/src/core/lib/gprpp/atomic.h -------------------------------------------------------------------------------- /Pods/gRPC-Core/src/core/lib/gprpp/fork.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/gRPC-Core/src/core/lib/gprpp/fork.cc -------------------------------------------------------------------------------- /Pods/gRPC-Core/src/core/lib/gprpp/fork.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/gRPC-Core/src/core/lib/gprpp/fork.h -------------------------------------------------------------------------------- /Pods/gRPC-Core/src/core/lib/gprpp/host_port.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/gRPC-Core/src/core/lib/gprpp/host_port.h -------------------------------------------------------------------------------- /Pods/gRPC-Core/src/core/lib/gprpp/map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/gRPC-Core/src/core/lib/gprpp/map.h -------------------------------------------------------------------------------- /Pods/gRPC-Core/src/core/lib/gprpp/memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/gRPC-Core/src/core/lib/gprpp/memory.h -------------------------------------------------------------------------------- /Pods/gRPC-Core/src/core/lib/gprpp/mpscq.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/gRPC-Core/src/core/lib/gprpp/mpscq.cc -------------------------------------------------------------------------------- /Pods/gRPC-Core/src/core/lib/gprpp/mpscq.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/gRPC-Core/src/core/lib/gprpp/mpscq.h -------------------------------------------------------------------------------- /Pods/gRPC-Core/src/core/lib/gprpp/optional.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/gRPC-Core/src/core/lib/gprpp/optional.h -------------------------------------------------------------------------------- /Pods/gRPC-Core/src/core/lib/gprpp/sync.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/gRPC-Core/src/core/lib/gprpp/sync.h -------------------------------------------------------------------------------- /Pods/gRPC-Core/src/core/lib/gprpp/thd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/gRPC-Core/src/core/lib/gprpp/thd.h -------------------------------------------------------------------------------- /Pods/gRPC-Core/src/core/lib/http/httpcli.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/gRPC-Core/src/core/lib/http/httpcli.cc -------------------------------------------------------------------------------- /Pods/gRPC-Core/src/core/lib/http/httpcli.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/gRPC-Core/src/core/lib/http/httpcli.h -------------------------------------------------------------------------------- /Pods/gRPC-Core/src/core/lib/http/parser.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/gRPC-Core/src/core/lib/http/parser.cc -------------------------------------------------------------------------------- /Pods/gRPC-Core/src/core/lib/http/parser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/gRPC-Core/src/core/lib/http/parser.h -------------------------------------------------------------------------------- /Pods/gRPC-Core/src/core/lib/iomgr/closure.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/gRPC-Core/src/core/lib/iomgr/closure.h -------------------------------------------------------------------------------- /Pods/gRPC-Core/src/core/lib/iomgr/combiner.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/gRPC-Core/src/core/lib/iomgr/combiner.cc -------------------------------------------------------------------------------- /Pods/gRPC-Core/src/core/lib/iomgr/combiner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/gRPC-Core/src/core/lib/iomgr/combiner.h -------------------------------------------------------------------------------- /Pods/gRPC-Core/src/core/lib/iomgr/endpoint.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/gRPC-Core/src/core/lib/iomgr/endpoint.cc -------------------------------------------------------------------------------- /Pods/gRPC-Core/src/core/lib/iomgr/endpoint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/gRPC-Core/src/core/lib/iomgr/endpoint.h -------------------------------------------------------------------------------- /Pods/gRPC-Core/src/core/lib/iomgr/error.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/gRPC-Core/src/core/lib/iomgr/error.cc -------------------------------------------------------------------------------- /Pods/gRPC-Core/src/core/lib/iomgr/error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/gRPC-Core/src/core/lib/iomgr/error.h -------------------------------------------------------------------------------- /Pods/gRPC-Core/src/core/lib/iomgr/ev_posix.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/gRPC-Core/src/core/lib/iomgr/ev_posix.cc -------------------------------------------------------------------------------- /Pods/gRPC-Core/src/core/lib/iomgr/ev_posix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/gRPC-Core/src/core/lib/iomgr/ev_posix.h -------------------------------------------------------------------------------- /Pods/gRPC-Core/src/core/lib/iomgr/exec_ctx.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/gRPC-Core/src/core/lib/iomgr/exec_ctx.cc -------------------------------------------------------------------------------- /Pods/gRPC-Core/src/core/lib/iomgr/exec_ctx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/gRPC-Core/src/core/lib/iomgr/exec_ctx.h -------------------------------------------------------------------------------- /Pods/gRPC-Core/src/core/lib/iomgr/executor.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/gRPC-Core/src/core/lib/iomgr/executor.cc -------------------------------------------------------------------------------- /Pods/gRPC-Core/src/core/lib/iomgr/executor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/gRPC-Core/src/core/lib/iomgr/executor.h -------------------------------------------------------------------------------- /Pods/gRPC-Core/src/core/lib/iomgr/iomgr.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/gRPC-Core/src/core/lib/iomgr/iomgr.cc -------------------------------------------------------------------------------- /Pods/gRPC-Core/src/core/lib/iomgr/iomgr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/gRPC-Core/src/core/lib/iomgr/iomgr.h -------------------------------------------------------------------------------- /Pods/gRPC-Core/src/core/lib/iomgr/iomgr_uv.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/gRPC-Core/src/core/lib/iomgr/iomgr_uv.cc -------------------------------------------------------------------------------- /Pods/gRPC-Core/src/core/lib/iomgr/load_file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/gRPC-Core/src/core/lib/iomgr/load_file.h -------------------------------------------------------------------------------- /Pods/gRPC-Core/src/core/lib/iomgr/nameser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/gRPC-Core/src/core/lib/iomgr/nameser.h -------------------------------------------------------------------------------- /Pods/gRPC-Core/src/core/lib/iomgr/pollset.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/gRPC-Core/src/core/lib/iomgr/pollset.cc -------------------------------------------------------------------------------- /Pods/gRPC-Core/src/core/lib/iomgr/pollset.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/gRPC-Core/src/core/lib/iomgr/pollset.h -------------------------------------------------------------------------------- /Pods/gRPC-Core/src/core/lib/iomgr/port.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/gRPC-Core/src/core/lib/iomgr/port.h -------------------------------------------------------------------------------- /Pods/gRPC-Core/src/core/lib/iomgr/sockaddr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/gRPC-Core/src/core/lib/iomgr/sockaddr.h -------------------------------------------------------------------------------- /Pods/gRPC-Core/src/core/lib/iomgr/tcp_posix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/gRPC-Core/src/core/lib/iomgr/tcp_posix.h -------------------------------------------------------------------------------- /Pods/gRPC-Core/src/core/lib/iomgr/tcp_uv.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/gRPC-Core/src/core/lib/iomgr/tcp_uv.cc -------------------------------------------------------------------------------- /Pods/gRPC-Core/src/core/lib/iomgr/timer.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/gRPC-Core/src/core/lib/iomgr/timer.cc -------------------------------------------------------------------------------- /Pods/gRPC-Core/src/core/lib/iomgr/timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/gRPC-Core/src/core/lib/iomgr/timer.h -------------------------------------------------------------------------------- /Pods/gRPC-Core/src/core/lib/iomgr/timer_uv.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/gRPC-Core/src/core/lib/iomgr/timer_uv.cc -------------------------------------------------------------------------------- /Pods/gRPC-Core/src/core/lib/json/json.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/gRPC-Core/src/core/lib/json/json.h -------------------------------------------------------------------------------- /Pods/gRPC-Core/src/core/lib/slice/b64.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/gRPC-Core/src/core/lib/slice/b64.cc -------------------------------------------------------------------------------- /Pods/gRPC-Core/src/core/lib/slice/b64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/gRPC-Core/src/core/lib/slice/b64.h -------------------------------------------------------------------------------- /Pods/gRPC-Core/src/core/lib/slice/slice.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/gRPC-Core/src/core/lib/slice/slice.cc -------------------------------------------------------------------------------- /Pods/gRPC-Core/src/core/lib/surface/call.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/gRPC-Core/src/core/lib/surface/call.cc -------------------------------------------------------------------------------- /Pods/gRPC-Core/src/core/lib/surface/call.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/gRPC-Core/src/core/lib/surface/call.h -------------------------------------------------------------------------------- /Pods/gRPC-Core/src/core/lib/surface/channel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/gRPC-Core/src/core/lib/surface/channel.h -------------------------------------------------------------------------------- /Pods/gRPC-Core/src/core/lib/surface/init.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/gRPC-Core/src/core/lib/surface/init.cc -------------------------------------------------------------------------------- /Pods/gRPC-Core/src/core/lib/surface/init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/gRPC-Core/src/core/lib/surface/init.h -------------------------------------------------------------------------------- /Pods/gRPC-Core/src/core/lib/surface/server.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/gRPC-Core/src/core/lib/surface/server.cc -------------------------------------------------------------------------------- /Pods/gRPC-Core/src/core/lib/surface/server.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/gRPC-Core/src/core/lib/surface/server.h -------------------------------------------------------------------------------- /Pods/gRPC-Core/src/core/lib/uri/uri_parser.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/gRPC-Core/src/core/lib/uri/uri_parser.cc -------------------------------------------------------------------------------- /Pods/gRPC-Core/src/core/lib/uri/uri_parser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/gRPC-Core/src/core/lib/uri/uri_parser.h -------------------------------------------------------------------------------- /Pods/gRPC-Core/src/core/tsi/alts/crypt/gsec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/gRPC-Core/src/core/tsi/alts/crypt/gsec.h -------------------------------------------------------------------------------- /Pods/gRPC-Core/src/core/tsi/ssl_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/gRPC-Core/src/core/tsi/ssl_types.h -------------------------------------------------------------------------------- /Pods/gRPC-Core/third_party/upb/upb/decode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/gRPC-Core/third_party/upb/upb/decode.c -------------------------------------------------------------------------------- /Pods/gRPC-Core/third_party/upb/upb/decode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/gRPC-Core/third_party/upb/upb/decode.h -------------------------------------------------------------------------------- /Pods/gRPC-Core/third_party/upb/upb/encode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/gRPC-Core/third_party/upb/upb/encode.c -------------------------------------------------------------------------------- /Pods/gRPC-Core/third_party/upb/upb/encode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/gRPC-Core/third_party/upb/upb/encode.h -------------------------------------------------------------------------------- /Pods/gRPC-Core/third_party/upb/upb/msg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/gRPC-Core/third_party/upb/upb/msg.c -------------------------------------------------------------------------------- /Pods/gRPC-Core/third_party/upb/upb/msg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/gRPC-Core/third_party/upb/upb/msg.h -------------------------------------------------------------------------------- /Pods/gRPC-Core/third_party/upb/upb/port.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/gRPC-Core/third_party/upb/upb/port.c -------------------------------------------------------------------------------- /Pods/gRPC-Core/third_party/upb/upb/table.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/gRPC-Core/third_party/upb/upb/table.c -------------------------------------------------------------------------------- /Pods/gRPC-Core/third_party/upb/upb/upb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/gRPC-Core/third_party/upb/upb/upb.c -------------------------------------------------------------------------------- /Pods/gRPC-Core/third_party/upb/upb/upb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/gRPC-Core/third_party/upb/upb/upb.h -------------------------------------------------------------------------------- /Pods/leveldb-library/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/leveldb-library/LICENSE -------------------------------------------------------------------------------- /Pods/leveldb-library/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/leveldb-library/README.md -------------------------------------------------------------------------------- /Pods/leveldb-library/db/builder.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/leveldb-library/db/builder.cc -------------------------------------------------------------------------------- /Pods/leveldb-library/db/builder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/leveldb-library/db/builder.h -------------------------------------------------------------------------------- /Pods/leveldb-library/db/c.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/leveldb-library/db/c.cc -------------------------------------------------------------------------------- /Pods/leveldb-library/db/db_impl.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/leveldb-library/db/db_impl.cc -------------------------------------------------------------------------------- /Pods/leveldb-library/db/db_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/leveldb-library/db/db_impl.h -------------------------------------------------------------------------------- /Pods/leveldb-library/db/db_iter.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/leveldb-library/db/db_iter.cc -------------------------------------------------------------------------------- /Pods/leveldb-library/db/db_iter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/leveldb-library/db/db_iter.h -------------------------------------------------------------------------------- /Pods/leveldb-library/db/dbformat.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/leveldb-library/db/dbformat.cc -------------------------------------------------------------------------------- /Pods/leveldb-library/db/dbformat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/leveldb-library/db/dbformat.h -------------------------------------------------------------------------------- /Pods/leveldb-library/db/dumpfile.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/leveldb-library/db/dumpfile.cc -------------------------------------------------------------------------------- /Pods/leveldb-library/db/filename.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/leveldb-library/db/filename.cc -------------------------------------------------------------------------------- /Pods/leveldb-library/db/filename.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/leveldb-library/db/filename.h -------------------------------------------------------------------------------- /Pods/leveldb-library/db/log_format.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/leveldb-library/db/log_format.h -------------------------------------------------------------------------------- /Pods/leveldb-library/db/log_reader.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/leveldb-library/db/log_reader.cc -------------------------------------------------------------------------------- /Pods/leveldb-library/db/log_reader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/leveldb-library/db/log_reader.h -------------------------------------------------------------------------------- /Pods/leveldb-library/db/log_writer.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/leveldb-library/db/log_writer.cc -------------------------------------------------------------------------------- /Pods/leveldb-library/db/log_writer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/leveldb-library/db/log_writer.h -------------------------------------------------------------------------------- /Pods/leveldb-library/db/memtable.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/leveldb-library/db/memtable.cc -------------------------------------------------------------------------------- /Pods/leveldb-library/db/memtable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/leveldb-library/db/memtable.h -------------------------------------------------------------------------------- /Pods/leveldb-library/db/repair.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/leveldb-library/db/repair.cc -------------------------------------------------------------------------------- /Pods/leveldb-library/db/skiplist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/leveldb-library/db/skiplist.h -------------------------------------------------------------------------------- /Pods/leveldb-library/db/snapshot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/leveldb-library/db/snapshot.h -------------------------------------------------------------------------------- /Pods/leveldb-library/db/table_cache.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/leveldb-library/db/table_cache.cc -------------------------------------------------------------------------------- /Pods/leveldb-library/db/table_cache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/leveldb-library/db/table_cache.h -------------------------------------------------------------------------------- /Pods/leveldb-library/db/version_edit.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/leveldb-library/db/version_edit.cc -------------------------------------------------------------------------------- /Pods/leveldb-library/db/version_edit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/leveldb-library/db/version_edit.h -------------------------------------------------------------------------------- /Pods/leveldb-library/db/version_set.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/leveldb-library/db/version_set.cc -------------------------------------------------------------------------------- /Pods/leveldb-library/db/version_set.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/leveldb-library/db/version_set.h -------------------------------------------------------------------------------- /Pods/leveldb-library/db/write_batch.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/leveldb-library/db/write_batch.cc -------------------------------------------------------------------------------- /Pods/leveldb-library/include/leveldb/c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/leveldb-library/include/leveldb/c.h -------------------------------------------------------------------------------- /Pods/leveldb-library/include/leveldb/cache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/leveldb-library/include/leveldb/cache.h -------------------------------------------------------------------------------- /Pods/leveldb-library/include/leveldb/db.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/leveldb-library/include/leveldb/db.h -------------------------------------------------------------------------------- /Pods/leveldb-library/include/leveldb/env.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/leveldb-library/include/leveldb/env.h -------------------------------------------------------------------------------- /Pods/leveldb-library/include/leveldb/export.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/leveldb-library/include/leveldb/export.h -------------------------------------------------------------------------------- /Pods/leveldb-library/include/leveldb/slice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/leveldb-library/include/leveldb/slice.h -------------------------------------------------------------------------------- /Pods/leveldb-library/include/leveldb/status.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/leveldb-library/include/leveldb/status.h -------------------------------------------------------------------------------- /Pods/leveldb-library/include/leveldb/table.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/leveldb-library/include/leveldb/table.h -------------------------------------------------------------------------------- /Pods/leveldb-library/port/port.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/leveldb-library/port/port.h -------------------------------------------------------------------------------- /Pods/leveldb-library/port/port_example.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/leveldb-library/port/port_example.h -------------------------------------------------------------------------------- /Pods/leveldb-library/port/port_stdcxx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/leveldb-library/port/port_stdcxx.h -------------------------------------------------------------------------------- /Pods/leveldb-library/table/block.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/leveldb-library/table/block.cc -------------------------------------------------------------------------------- /Pods/leveldb-library/table/block.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/leveldb-library/table/block.h -------------------------------------------------------------------------------- /Pods/leveldb-library/table/block_builder.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/leveldb-library/table/block_builder.cc -------------------------------------------------------------------------------- /Pods/leveldb-library/table/block_builder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/leveldb-library/table/block_builder.h -------------------------------------------------------------------------------- /Pods/leveldb-library/table/filter_block.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/leveldb-library/table/filter_block.cc -------------------------------------------------------------------------------- /Pods/leveldb-library/table/filter_block.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/leveldb-library/table/filter_block.h -------------------------------------------------------------------------------- /Pods/leveldb-library/table/format.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/leveldb-library/table/format.cc -------------------------------------------------------------------------------- /Pods/leveldb-library/table/format.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/leveldb-library/table/format.h -------------------------------------------------------------------------------- /Pods/leveldb-library/table/iterator.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/leveldb-library/table/iterator.cc -------------------------------------------------------------------------------- /Pods/leveldb-library/table/iterator_wrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/leveldb-library/table/iterator_wrapper.h -------------------------------------------------------------------------------- /Pods/leveldb-library/table/merger.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/leveldb-library/table/merger.cc -------------------------------------------------------------------------------- /Pods/leveldb-library/table/merger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/leveldb-library/table/merger.h -------------------------------------------------------------------------------- /Pods/leveldb-library/table/table.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/leveldb-library/table/table.cc -------------------------------------------------------------------------------- /Pods/leveldb-library/table/table_builder.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/leveldb-library/table/table_builder.cc -------------------------------------------------------------------------------- /Pods/leveldb-library/util/arena.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/leveldb-library/util/arena.cc -------------------------------------------------------------------------------- /Pods/leveldb-library/util/arena.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/leveldb-library/util/arena.h -------------------------------------------------------------------------------- /Pods/leveldb-library/util/bloom.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/leveldb-library/util/bloom.cc -------------------------------------------------------------------------------- /Pods/leveldb-library/util/cache.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/leveldb-library/util/cache.cc -------------------------------------------------------------------------------- /Pods/leveldb-library/util/coding.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/leveldb-library/util/coding.cc -------------------------------------------------------------------------------- /Pods/leveldb-library/util/coding.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/leveldb-library/util/coding.h -------------------------------------------------------------------------------- /Pods/leveldb-library/util/comparator.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/leveldb-library/util/comparator.cc -------------------------------------------------------------------------------- /Pods/leveldb-library/util/crc32c.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/leveldb-library/util/crc32c.cc -------------------------------------------------------------------------------- /Pods/leveldb-library/util/crc32c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/leveldb-library/util/crc32c.h -------------------------------------------------------------------------------- /Pods/leveldb-library/util/env.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/leveldb-library/util/env.cc -------------------------------------------------------------------------------- /Pods/leveldb-library/util/env_posix.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/leveldb-library/util/env_posix.cc -------------------------------------------------------------------------------- /Pods/leveldb-library/util/filter_policy.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/leveldb-library/util/filter_policy.cc -------------------------------------------------------------------------------- /Pods/leveldb-library/util/hash.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/leveldb-library/util/hash.cc -------------------------------------------------------------------------------- /Pods/leveldb-library/util/hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/leveldb-library/util/hash.h -------------------------------------------------------------------------------- /Pods/leveldb-library/util/histogram.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/leveldb-library/util/histogram.cc -------------------------------------------------------------------------------- /Pods/leveldb-library/util/histogram.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/leveldb-library/util/histogram.h -------------------------------------------------------------------------------- /Pods/leveldb-library/util/logging.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/leveldb-library/util/logging.cc -------------------------------------------------------------------------------- /Pods/leveldb-library/util/logging.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/leveldb-library/util/logging.h -------------------------------------------------------------------------------- /Pods/leveldb-library/util/mutexlock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/leveldb-library/util/mutexlock.h -------------------------------------------------------------------------------- /Pods/leveldb-library/util/no_destructor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/leveldb-library/util/no_destructor.h -------------------------------------------------------------------------------- /Pods/leveldb-library/util/options.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/leveldb-library/util/options.cc -------------------------------------------------------------------------------- /Pods/leveldb-library/util/posix_logger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/leveldb-library/util/posix_logger.h -------------------------------------------------------------------------------- /Pods/leveldb-library/util/random.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/leveldb-library/util/random.h -------------------------------------------------------------------------------- /Pods/leveldb-library/util/status.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/leveldb-library/util/status.cc -------------------------------------------------------------------------------- /Pods/leveldb-library/util/testharness.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/leveldb-library/util/testharness.cc -------------------------------------------------------------------------------- /Pods/leveldb-library/util/testharness.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/leveldb-library/util/testharness.h -------------------------------------------------------------------------------- /Pods/leveldb-library/util/testutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/leveldb-library/util/testutil.h -------------------------------------------------------------------------------- /Pods/leveldb-library/util/windows_logger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/leveldb-library/util/windows_logger.h -------------------------------------------------------------------------------- /Pods/nanopb/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/nanopb/LICENSE.txt -------------------------------------------------------------------------------- /Pods/nanopb/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/nanopb/README.md -------------------------------------------------------------------------------- /Pods/nanopb/pb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/nanopb/pb.h -------------------------------------------------------------------------------- /Pods/nanopb/pb_common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/nanopb/pb_common.c -------------------------------------------------------------------------------- /Pods/nanopb/pb_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/nanopb/pb_common.h -------------------------------------------------------------------------------- /Pods/nanopb/pb_decode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/nanopb/pb_decode.c -------------------------------------------------------------------------------- /Pods/nanopb/pb_decode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/nanopb/pb_decode.h -------------------------------------------------------------------------------- /Pods/nanopb/pb_encode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/nanopb/pb_encode.c -------------------------------------------------------------------------------- /Pods/nanopb/pb_encode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/Pods/nanopb/pb_encode.h -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salmik/OCR-Scanner-app/HEAD/README.md --------------------------------------------------------------------------------