From 4e33a8e2d37fd5486361df8c35e1032e426b52e6 Mon Sep 17 00:00:00 2001 From: tisfeng Date: Sun, 31 Dec 2023 11:34:50 +0800 Subject: [PATCH] chore: replace ZipArchive pod with SPM --- Easydict.xcodeproj/project.pbxproj | 17 + .../xcshareddata/swiftpm/Package.resolved | 9 + .../Feature/StatusItem/EZMenuItemManager.m | 2 +- Podfile | 2 - Podfile.lock | 6 +- Pods/Manifest.lock | 6 +- Pods/Pods.xcodeproj/project.pbxproj | 3298 ++++++++--------- Pods/SSZipArchive/LICENSE.txt | 20 - Pods/SSZipArchive/README.md | 78 - Pods/SSZipArchive/SSZipArchive/SSZipArchive.h | 150 - Pods/SSZipArchive/SSZipArchive/SSZipArchive.m | 1284 ------- Pods/SSZipArchive/SSZipArchive/SSZipCommon.h | 68 - Pods/SSZipArchive/SSZipArchive/ZipArchive.h | 19 - Pods/SSZipArchive/SSZipArchive/minizip/mz.h | 252 -- .../SSZipArchive/minizip/mz_compat.c | 991 ----- .../SSZipArchive/minizip/mz_compat.h | 250 -- .../SSZipArchive/minizip/mz_crypt.c | 195 - .../SSZipArchive/minizip/mz_crypt.h | 66 - .../SSZipArchive/minizip/mz_crypt_apple.c | 532 --- .../SSZipArchive/SSZipArchive/minizip/mz_os.c | 401 -- .../SSZipArchive/SSZipArchive/minizip/mz_os.h | 176 - .../SSZipArchive/minizip/mz_os_posix.c | 329 -- .../SSZipArchive/minizip/mz_strm.c | 623 ---- .../SSZipArchive/minizip/mz_strm.h | 134 - .../SSZipArchive/minizip/mz_strm_buf.c | 416 --- .../SSZipArchive/minizip/mz_strm_buf.h | 43 - .../SSZipArchive/minizip/mz_strm_mem.c | 303 -- .../SSZipArchive/minizip/mz_strm_mem.h | 49 - .../SSZipArchive/minizip/mz_strm_os.h | 41 - .../SSZipArchive/minizip/mz_strm_os_posix.c | 228 -- .../SSZipArchive/minizip/mz_strm_pkcrypt.c | 384 -- .../SSZipArchive/minizip/mz_strm_pkcrypt.h | 47 - .../SSZipArchive/minizip/mz_strm_split.c | 489 --- .../SSZipArchive/minizip/mz_strm_split.h | 44 - .../SSZipArchive/minizip/mz_strm_wzaes.c | 405 -- .../SSZipArchive/minizip/mz_strm_wzaes.h | 47 - .../SSZipArchive/minizip/mz_strm_zlib.c | 425 --- .../SSZipArchive/minizip/mz_strm_zlib.h | 44 - .../SSZipArchive/minizip/mz_zip.c | 2917 --------------- .../SSZipArchive/minizip/mz_zip.h | 251 -- .../SSZipArchive/minizip/mz_zip_rw.c | 2103 ----------- .../SSZipArchive/minizip/mz_zip_rw.h | 283 -- .../Pods-Easydict-acknowledgements.markdown | 24 - .../Pods-Easydict-acknowledgements.plist | 30 - ...ct-frameworks-Debug-input-files.xcfilelist | 3 +- ...t-frameworks-Debug-output-files.xcfilelist | 3 +- ...-frameworks-Release-input-files.xcfilelist | 3 +- ...frameworks-Release-output-files.xcfilelist | 3 +- .../Pods-Easydict/Pods-Easydict-frameworks.sh | 2 - .../Pods-Easydict.debug.xcconfig | 8 +- .../Pods-Easydict.release.xcconfig | 8 +- ...ds-EasydictTests-acknowledgements.markdown | 24 - .../Pods-EasydictTests-acknowledgements.plist | 30 - ...ts-frameworks-Debug-input-files.xcfilelist | 3 +- ...s-frameworks-Debug-output-files.xcfilelist | 3 +- ...-frameworks-Release-input-files.xcfilelist | 3 +- ...frameworks-Release-output-files.xcfilelist | 3 +- .../Pods-EasydictTests-frameworks.sh | 2 - .../Pods-EasydictTests.debug.xcconfig | 8 +- .../Pods-EasydictTests.release.xcconfig | 8 +- .../SSZipArchive/SSZipArchive-Info.plist | 26 - .../SSZipArchive/SSZipArchive-dummy.m | 5 - .../SSZipArchive/SSZipArchive-prefix.pch | 12 - .../SSZipArchive/SSZipArchive-umbrella.h | 19 - .../SSZipArchive/SSZipArchive.debug.xcconfig | 15 - .../SSZipArchive/SSZipArchive.modulemap | 6 - .../SSZipArchive.release.xcconfig | 15 - .../SSZipArchive/SSZipArchive.xcconfig | 11 - 68 files changed, 1539 insertions(+), 16165 deletions(-) delete mode 100644 Pods/SSZipArchive/LICENSE.txt delete mode 100644 Pods/SSZipArchive/README.md delete mode 100644 Pods/SSZipArchive/SSZipArchive/SSZipArchive.h delete mode 100644 Pods/SSZipArchive/SSZipArchive/SSZipArchive.m delete mode 100644 Pods/SSZipArchive/SSZipArchive/SSZipCommon.h delete mode 100644 Pods/SSZipArchive/SSZipArchive/ZipArchive.h delete mode 100644 Pods/SSZipArchive/SSZipArchive/minizip/mz.h delete mode 100644 Pods/SSZipArchive/SSZipArchive/minizip/mz_compat.c delete mode 100644 Pods/SSZipArchive/SSZipArchive/minizip/mz_compat.h delete mode 100644 Pods/SSZipArchive/SSZipArchive/minizip/mz_crypt.c delete mode 100644 Pods/SSZipArchive/SSZipArchive/minizip/mz_crypt.h delete mode 100644 Pods/SSZipArchive/SSZipArchive/minizip/mz_crypt_apple.c delete mode 100644 Pods/SSZipArchive/SSZipArchive/minizip/mz_os.c delete mode 100644 Pods/SSZipArchive/SSZipArchive/minizip/mz_os.h delete mode 100644 Pods/SSZipArchive/SSZipArchive/minizip/mz_os_posix.c delete mode 100644 Pods/SSZipArchive/SSZipArchive/minizip/mz_strm.c delete mode 100644 Pods/SSZipArchive/SSZipArchive/minizip/mz_strm.h delete mode 100644 Pods/SSZipArchive/SSZipArchive/minizip/mz_strm_buf.c delete mode 100644 Pods/SSZipArchive/SSZipArchive/minizip/mz_strm_buf.h delete mode 100644 Pods/SSZipArchive/SSZipArchive/minizip/mz_strm_mem.c delete mode 100644 Pods/SSZipArchive/SSZipArchive/minizip/mz_strm_mem.h delete mode 100644 Pods/SSZipArchive/SSZipArchive/minizip/mz_strm_os.h delete mode 100644 Pods/SSZipArchive/SSZipArchive/minizip/mz_strm_os_posix.c delete mode 100644 Pods/SSZipArchive/SSZipArchive/minizip/mz_strm_pkcrypt.c delete mode 100644 Pods/SSZipArchive/SSZipArchive/minizip/mz_strm_pkcrypt.h delete mode 100644 Pods/SSZipArchive/SSZipArchive/minizip/mz_strm_split.c delete mode 100644 Pods/SSZipArchive/SSZipArchive/minizip/mz_strm_split.h delete mode 100644 Pods/SSZipArchive/SSZipArchive/minizip/mz_strm_wzaes.c delete mode 100644 Pods/SSZipArchive/SSZipArchive/minizip/mz_strm_wzaes.h delete mode 100644 Pods/SSZipArchive/SSZipArchive/minizip/mz_strm_zlib.c delete mode 100644 Pods/SSZipArchive/SSZipArchive/minizip/mz_strm_zlib.h delete mode 100644 Pods/SSZipArchive/SSZipArchive/minizip/mz_zip.c delete mode 100644 Pods/SSZipArchive/SSZipArchive/minizip/mz_zip.h delete mode 100644 Pods/SSZipArchive/SSZipArchive/minizip/mz_zip_rw.c delete mode 100644 Pods/SSZipArchive/SSZipArchive/minizip/mz_zip_rw.h delete mode 100644 Pods/Target Support Files/SSZipArchive/SSZipArchive-Info.plist delete mode 100644 Pods/Target Support Files/SSZipArchive/SSZipArchive-dummy.m delete mode 100644 Pods/Target Support Files/SSZipArchive/SSZipArchive-prefix.pch delete mode 100644 Pods/Target Support Files/SSZipArchive/SSZipArchive-umbrella.h delete mode 100644 Pods/Target Support Files/SSZipArchive/SSZipArchive.debug.xcconfig delete mode 100644 Pods/Target Support Files/SSZipArchive/SSZipArchive.modulemap delete mode 100644 Pods/Target Support Files/SSZipArchive/SSZipArchive.release.xcconfig delete mode 100644 Pods/Target Support Files/SSZipArchive/SSZipArchive.xcconfig diff --git a/Easydict.xcodeproj/project.pbxproj b/Easydict.xcodeproj/project.pbxproj index fbb0bd2ad..dd1fdf0a7 100644 --- a/Easydict.xcodeproj/project.pbxproj +++ b/Easydict.xcodeproj/project.pbxproj @@ -82,6 +82,7 @@ 03882F9029D95044005B5A52 /* ToastWindowController.xib in Resources */ = {isa = PBXBuildFile; fileRef = 03882F8829D95044005B5A52 /* ToastWindowController.xib */; }; 03882F9129D95044005B5A52 /* CTCommon.m in Sources */ = {isa = PBXBuildFile; fileRef = 03882F8929D95044005B5A52 /* CTCommon.m */; }; 03882F9229D95044005B5A52 /* Info.plist in Resources */ = {isa = PBXBuildFile; fileRef = 03882F8C29D95044005B5A52 /* Info.plist */; }; + 038EA1AA2B41169C008A6DD1 /* ZipArchive in Frameworks */ = {isa = PBXBuildFile; productRef = 038EA1A92B41169C008A6DD1 /* ZipArchive */; }; 0396D611292C932F006A11D9 /* EZSelectLanguageCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 0396D610292C932F006A11D9 /* EZSelectLanguageCell.m */; }; 0396D615292CC4C3006A11D9 /* EZLocalStorage.m in Sources */ = {isa = PBXBuildFile; fileRef = 0396D614292CC4C3006A11D9 /* EZLocalStorage.m */; }; 03991158292927E000E1B06D /* EZTitlebar.m in Sources */ = {isa = PBXBuildFile; fileRef = 03991157292927E000E1B06D /* EZTitlebar.m */; }; @@ -773,6 +774,7 @@ 03A830902B4073E700112834 /* AppCenterAnalytics in Frameworks */, 03B63ABF2A86967800E155ED /* CoreServices.framework in Frameworks */, 038030972B4106800009230C /* CocoaLumberjackSwift in Frameworks */, + 038EA1AA2B41169C008A6DD1 /* ZipArchive in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -2211,6 +2213,7 @@ 03A830942B4076FC00112834 /* FirebaseAnalyticsSwift */, 038030942B4106800009230C /* CocoaLumberjack */, 038030962B4106800009230C /* CocoaLumberjackSwift */, + 038EA1A92B41169C008A6DD1 /* ZipArchive */, ); productName = Bob; productReference = C99EEB182385796700FEE666 /* Easydict-debug.app */; @@ -2267,6 +2270,7 @@ 03A8308E2B4073E700112834 /* XCRemoteSwiftPackageReference "appcenter-sdk-apple" */, 03A830932B4076FC00112834 /* XCRemoteSwiftPackageReference "firebase-ios-sdk" */, 038030932B4106800009230C /* XCRemoteSwiftPackageReference "CocoaLumberjack" */, + 038EA1A82B41169C008A6DD1 /* XCRemoteSwiftPackageReference "ZipArchive" */, ); productRefGroup = C99EEB192385796700FEE666 /* Products */; projectDirPath = ""; @@ -3151,6 +3155,14 @@ minimumVersion = 3.7.1; }; }; + 038EA1A82B41169C008A6DD1 /* XCRemoteSwiftPackageReference "ZipArchive" */ = { + isa = XCRemoteSwiftPackageReference; + repositoryURL = "https://github.com/ZipArchive/ZipArchive.git"; + requirement = { + kind = upToNextMajorVersion; + minimumVersion = 2.5.5; + }; + }; 03A8308B2B405F8E00112834 /* XCRemoteSwiftPackageReference "Sparkle" */ = { isa = XCRemoteSwiftPackageReference; repositoryURL = "https://github.com/sparkle-project/Sparkle"; @@ -3227,6 +3239,11 @@ package = 038030932B4106800009230C /* XCRemoteSwiftPackageReference "CocoaLumberjack" */; productName = CocoaLumberjackSwift; }; + 038EA1A92B41169C008A6DD1 /* ZipArchive */ = { + isa = XCSwiftPackageProductDependency; + package = 038EA1A82B41169C008A6DD1 /* XCRemoteSwiftPackageReference "ZipArchive" */; + productName = ZipArchive; + }; 03A8308C2B405F8E00112834 /* Sparkle */ = { isa = XCSwiftPackageProductDependency; package = 03A8308B2B405F8E00112834 /* XCRemoteSwiftPackageReference "Sparkle" */; diff --git a/Easydict.xcworkspace/xcshareddata/swiftpm/Package.resolved b/Easydict.xcworkspace/xcshareddata/swiftpm/Package.resolved index ac59cc59e..54d5cf499 100644 --- a/Easydict.xcworkspace/xcshareddata/swiftpm/Package.resolved +++ b/Easydict.xcworkspace/xcshareddata/swiftpm/Package.resolved @@ -224,6 +224,15 @@ "revision" : "99680b2efc7c7dbcace1da0b3979d266f02e213c", "version" : "5.1.0" } + }, + { + "identity" : "ziparchive", + "kind" : "remoteSourceControl", + "location" : "https://github.com/ZipArchive/ZipArchive.git", + "state" : { + "revision" : "79d4dc9729096c6ad83dd3cee2b9f354d1b4ab7b", + "version" : "2.5.5" + } } ], "version" : 2 diff --git a/Easydict/Feature/StatusItem/EZMenuItemManager.m b/Easydict/Feature/StatusItem/EZMenuItemManager.m index 12cbb9942..80a2ba965 100644 --- a/Easydict/Feature/StatusItem/EZMenuItemManager.m +++ b/Easydict/Feature/StatusItem/EZMenuItemManager.m @@ -11,7 +11,7 @@ #import "EZWindowManager.h" #import "Snip.h" #import "EZShortcut.h" -#import +#import #import "EZRightClickDetector.h" #import "EZConfiguration.h" #import "Easydict-Swift.h" diff --git a/Podfile b/Podfile index 66fe64cc8..eeabdb982 100644 --- a/Podfile +++ b/Podfile @@ -12,7 +12,6 @@ target 'Easydict' do pod 'ReactiveObjC', '~> 3.1.1' pod 'MASShortcut', :git => 'git@github.com:AkaShark/MASShortcut.git', :branch => 'double_click_modifier' pod 'MASPreferences', '~> 1.4.1' - pod 'SSZipArchive', '~> 2.2.2' pod 'KVOController', '~> 1.2.0' pod 'JLRoutes', '~> 2.1' @@ -30,7 +29,6 @@ target 'EasydictTests' do pod 'ReactiveObjC', '~> 3.1.1' pod 'MASShortcut', :git => 'git@github.com:AkaShark/MASShortcut.git', :branch => 'double_click_modifier' pod 'MASPreferences', '~> 1.4.1' - pod 'SSZipArchive', '~> 2.2.2' pod 'KVOController', '~> 1.2.0' pod 'JLRoutes', '~> 2.1' diff --git a/Podfile.lock b/Podfile.lock index bc4a3bdf7..0737ed874 100644 --- a/Podfile.lock +++ b/Podfile.lock @@ -19,7 +19,6 @@ PODS: - MASShortcut (2.4.0) - MJExtension (3.2.4) - ReactiveObjC (3.1.1) - - SSZipArchive (2.2.3) - SwiftFormat/CLI (0.52.11) DEPENDENCIES: @@ -31,7 +30,6 @@ DEPENDENCIES: - "MASShortcut (from `git@github.com:AkaShark/MASShortcut.git`, branch `double_click_modifier`)" - MJExtension (~> 3.2.1) - ReactiveObjC (~> 3.1.1) - - SSZipArchive (~> 2.2.2) - SwiftFormat/CLI (~> 0.52.11) SPEC REPOS: @@ -43,7 +41,6 @@ SPEC REPOS: - MASPreferences - MJExtension - ReactiveObjC - - SSZipArchive - SwiftFormat EXTERNAL SOURCES: @@ -65,9 +62,8 @@ SPEC CHECKSUMS: MASShortcut: d9e4909e878661cc42877cc9d6efbe638273ab57 MJExtension: 88e0900751b6cac8de1cf724ca9838a0b28d5acb ReactiveObjC: 011caa393aa0383245f2dcf9bf02e86b80b36040 - SSZipArchive: 62d4947b08730e4cda640473b0066d209ff033c9 SwiftFormat: 2ca3d0b75754193f0f3ba532291f25ae08dd1e42 -PODFILE CHECKSUM: a2f28231837dae0e5fda551e03e6e303cd214e41 +PODFILE CHECKSUM: e9bdddca2d7cf15e00b0d57cb178bbfc2b1f43f9 COCOAPODS: 1.14.2 diff --git a/Pods/Manifest.lock b/Pods/Manifest.lock index bc4a3bdf7..0737ed874 100644 --- a/Pods/Manifest.lock +++ b/Pods/Manifest.lock @@ -19,7 +19,6 @@ PODS: - MASShortcut (2.4.0) - MJExtension (3.2.4) - ReactiveObjC (3.1.1) - - SSZipArchive (2.2.3) - SwiftFormat/CLI (0.52.11) DEPENDENCIES: @@ -31,7 +30,6 @@ DEPENDENCIES: - "MASShortcut (from `git@github.com:AkaShark/MASShortcut.git`, branch `double_click_modifier`)" - MJExtension (~> 3.2.1) - ReactiveObjC (~> 3.1.1) - - SSZipArchive (~> 2.2.2) - SwiftFormat/CLI (~> 0.52.11) SPEC REPOS: @@ -43,7 +41,6 @@ SPEC REPOS: - MASPreferences - MJExtension - ReactiveObjC - - SSZipArchive - SwiftFormat EXTERNAL SOURCES: @@ -65,9 +62,8 @@ SPEC CHECKSUMS: MASShortcut: d9e4909e878661cc42877cc9d6efbe638273ab57 MJExtension: 88e0900751b6cac8de1cf724ca9838a0b28d5acb ReactiveObjC: 011caa393aa0383245f2dcf9bf02e86b80b36040 - SSZipArchive: 62d4947b08730e4cda640473b0066d209ff033c9 SwiftFormat: 2ca3d0b75754193f0f3ba532291f25ae08dd1e42 -PODFILE CHECKSUM: a2f28231837dae0e5fda551e03e6e303cd214e41 +PODFILE CHECKSUM: e9bdddca2d7cf15e00b0d57cb178bbfc2b1f43f9 COCOAPODS: 1.14.2 diff --git a/Pods/Pods.xcodeproj/project.pbxproj b/Pods/Pods.xcodeproj/project.pbxproj index 21ff41eaf..e6d63debe 100644 --- a/Pods/Pods.xcodeproj/project.pbxproj +++ b/Pods/Pods.xcodeproj/project.pbxproj @@ -19,503 +19,452 @@ /* End PBXAggregateTarget section */ /* Begin PBXBuildFile section */ - 0141E916DBB77A535B3C8DDA3A1152EB /* MASDictionaryTransformer.m in Sources */ = {isa = PBXBuildFile; fileRef = 041022E56B2E6CE30EA6F6A5D52B5A3E /* MASDictionaryTransformer.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; - 0288BE9F2193466D8D03AD6C782D2159 /* JLRRouteDefinition.h in Headers */ = {isa = PBXBuildFile; fileRef = 7D333D5A4F4400AD68E94D037D504E85 /* JLRRouteDefinition.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 02AD91C5250ED7D91B06BEAC91A5E507 /* mz_os.h in Headers */ = {isa = PBXBuildFile; fileRef = DF81C577AA2FB69ACD97CB0392C1884E /* mz_os.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 02FA3CE6E4354729F82AB52059990D58 /* AFURLRequestSerialization.h in Headers */ = {isa = PBXBuildFile; fileRef = EA550EBEB29BE5893F989047454933E7 /* AFURLRequestSerialization.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 0386399A2F9E2A44401AE722E4332003 /* MASLayoutConstraint.m in Sources */ = {isa = PBXBuildFile; fileRef = 7D3F86A8F2D57F8606278049DE83F00A /* MASLayoutConstraint.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0 -w -Xanalyzer -analyzer-disable-all-checks"; }; }; - 03B132EEABF3E250EF8C829C08D93C51 /* sv.lproj in Resources */ = {isa = PBXBuildFile; fileRef = BF7799ADC8A1EA2B08F6137BEBFFEFE2 /* sv.lproj */; }; - 0514DD3B26BEFD1C17E3173DFE0B30AF /* NSControl+RACCommandSupport.h in Headers */ = {isa = PBXBuildFile; fileRef = 9FAB6BE5623F38101A4A192F11372815 /* NSControl+RACCommandSupport.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 059332136CAAB8014F2099D6AC105162 /* mz_strm_split.h in Headers */ = {isa = PBXBuildFile; fileRef = 98AE1369D5B868B839FE465A7F7A3198 /* mz_strm_split.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 05C2890E40EEBB079D0785AC83BE82CA /* NSObject+RACLifting.h in Headers */ = {isa = PBXBuildFile; fileRef = F4024BA27768E2FA4A05BDFEB7FA2E21 /* NSObject+RACLifting.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 06CF692382AEC9089DAFF0D2458AD3DB /* ja.lproj in Resources */ = {isa = PBXBuildFile; fileRef = 807FFB03585B98FB46A28AC13CD21D38 /* ja.lproj */; }; + 0141E916DBB77A535B3C8DDA3A1152EB /* MASDictionaryTransformer.m in Sources */ = {isa = PBXBuildFile; fileRef = FC05261157A6770DC8DC45EE8BD81D15 /* MASDictionaryTransformer.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; + 01D3BF84B08B81B14FBA4618356582D5 /* nl.lproj in Resources */ = {isa = PBXBuildFile; fileRef = 510C558AA6065604533EC385D51A1F5C /* nl.lproj */; }; + 0288BE9F2193466D8D03AD6C782D2159 /* JLRRouteDefinition.h in Headers */ = {isa = PBXBuildFile; fileRef = 08B59A0A08856F6C5B55CDDBEF28F1A0 /* JLRRouteDefinition.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 02FA3CE6E4354729F82AB52059990D58 /* AFURLRequestSerialization.h in Headers */ = {isa = PBXBuildFile; fileRef = 1B29CD54E1DC81DB4702C7694C66884A /* AFURLRequestSerialization.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 0386399A2F9E2A44401AE722E4332003 /* MASLayoutConstraint.m in Sources */ = {isa = PBXBuildFile; fileRef = D72FB6A3CADB88F94E8E8791D2D91F89 /* MASLayoutConstraint.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0 -w -Xanalyzer -analyzer-disable-all-checks"; }; }; + 0514DD3B26BEFD1C17E3173DFE0B30AF /* NSControl+RACCommandSupport.h in Headers */ = {isa = PBXBuildFile; fileRef = 6457B693FEC91A0A8E86EB7105C8B31E /* NSControl+RACCommandSupport.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 052F36F52D181BCD11BECD191576B4DE /* ja.lproj in Resources */ = {isa = PBXBuildFile; fileRef = 5A27DE015DF1CF703475F9B58BA32B42 /* ja.lproj */; }; + 05C2890E40EEBB079D0785AC83BE82CA /* NSObject+RACLifting.h in Headers */ = {isa = PBXBuildFile; fileRef = D261865E1BC139CC9E4898E2CDD2C99B /* NSObject+RACLifting.h */; settings = {ATTRIBUTES = (Public, ); }; }; 06E689EAE82BAFB010CD741C40221167 /* Carbon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = A45F11F0883FE4EE3264F359CBB240FC /* Carbon.framework */; }; - 071549FA70DFD91BA41883B77DD8A6F0 /* MASPreferences-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 90E9858D85A96D9EE07817FE11174AB8 /* MASPreferences-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 07749D3EB0084B5809E8C18D705ACF21 /* MASPreferencesWindowController.m in Sources */ = {isa = PBXBuildFile; fileRef = 9BFDA2A5BEF38BE0228CC474310507B0 /* MASPreferencesWindowController.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; - 07E22C0626B43F18D2A05AEDDB55C040 /* MASConstraint+Private.h in Headers */ = {isa = PBXBuildFile; fileRef = 47293174CFFA7DE0C93EE6038B195E8B /* MASConstraint+Private.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 083AB6A254BE09E57EAADE2D5FDF22FC /* NSObject+RACSelectorSignal.h in Headers */ = {isa = PBXBuildFile; fileRef = 0927DDA197EAA9517404DCE3F9FC1BB4 /* NSObject+RACSelectorSignal.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 09A3A629E8DF45AEA0166BD30804D45A /* RACStream.m in Sources */ = {isa = PBXBuildFile; fileRef = C806C9D801F16D2612D14F22845229B5 /* RACStream.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; - 09A9DEA7E3AAC943E5833496B024A58E /* JLRoutes-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 2DAB501BAA75AD54774FECC4BC43453E /* JLRoutes-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 09BB49C68986BB73BBC138D20EBCAADB /* NSText+RACSignalSupport.h in Headers */ = {isa = PBXBuildFile; fileRef = F9CBADA7B977C09CA7A0A53DAE181C44 /* NSText+RACSignalSupport.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 09BCDC4C9F70510ACFB082B108BC1A07 /* NSObject+RACPropertySubscribing.m in Sources */ = {isa = PBXBuildFile; fileRef = BC831D4EEEA510743A34AF6E410CB3A9 /* NSObject+RACPropertySubscribing.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; - 0A5BB43C9613B4A00D6CDA434171C161 /* ReactiveObjC.h in Headers */ = {isa = PBXBuildFile; fileRef = 321088BF767682C75C70EF0F3BEE7668 /* ReactiveObjC.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 0B0FB646E7BCCA90A67CFBA885360B35 /* Masonry-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 05DB5A567FF4B9249C3D86F209C6AC30 /* Masonry-dummy.m */; }; - 0B37493732E3125036CA21C2EBF8B4D7 /* RACStringSequence.m in Sources */ = {isa = PBXBuildFile; fileRef = 645BF69E5102E129016883BAF405EDA2 /* RACStringSequence.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; - 0B5019666EF74D963C418D0E11CCAA49 /* NSSet+RACSequenceAdditions.m in Sources */ = {isa = PBXBuildFile; fileRef = C9455860880D0480926C8BC03BF634CE /* NSSet+RACSequenceAdditions.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; - 0B9E20E8BA6351A1D8BA47041736EE59 /* mz_strm_buf.c in Sources */ = {isa = PBXBuildFile; fileRef = CA2A2F8F4D8F147EA5B8D1FCA2A8F038 /* mz_strm_buf.c */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; - 0BB508DB89EC77E72AE38194BD58153E /* RACKVOProxy.h in Headers */ = {isa = PBXBuildFile; fileRef = 744DFBEAFEE55078C8D10A0183E0BFF6 /* RACKVOProxy.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 0BF18B665E2ADAFC886CBBAE9F11E32E /* MJProperty.m in Sources */ = {isa = PBXBuildFile; fileRef = 5B2896B7A7A6F33ECEFF7D2783910B7E /* MJProperty.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; - 0D89050821354AA779E9CE9E0C3C254C /* Pods-Easydict-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = B845C2ACCFEF00A5B6C2314BC9ACE0DD /* Pods-Easydict-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 0EF3774AC45C05C24674C6F390E4B571 /* mz_strm_os.h in Headers */ = {isa = PBXBuildFile; fileRef = DAEBF9208860BC90A86BA5602C5D555F /* mz_strm_os.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0F20999DB2E6867904A912A5F83573F5 /* NSUserDefaults+RACSupport.m in Sources */ = {isa = PBXBuildFile; fileRef = 30C249FC028AE786EA89586DD7014BFA /* NSUserDefaults+RACSupport.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; + 071549FA70DFD91BA41883B77DD8A6F0 /* MASPreferences-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 87ECC3154393B00641A86D3A2E1AB6CC /* MASPreferences-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 07749D3EB0084B5809E8C18D705ACF21 /* MASPreferencesWindowController.m in Sources */ = {isa = PBXBuildFile; fileRef = 5F5718D7E1740397D6531E52D2DAF58B /* MASPreferencesWindowController.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; + 07E22C0626B43F18D2A05AEDDB55C040 /* MASConstraint+Private.h in Headers */ = {isa = PBXBuildFile; fileRef = EE8D1293977B5D316394DEB6852BF119 /* MASConstraint+Private.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 083AB6A254BE09E57EAADE2D5FDF22FC /* NSObject+RACSelectorSignal.h in Headers */ = {isa = PBXBuildFile; fileRef = AE7DC45DD4F3FAA78571056EAFEFF7D0 /* NSObject+RACSelectorSignal.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 09A3A629E8DF45AEA0166BD30804D45A /* RACStream.m in Sources */ = {isa = PBXBuildFile; fileRef = D3D03E95A00FC71403911E73FD79421C /* RACStream.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; + 09A9DEA7E3AAC943E5833496B024A58E /* JLRoutes-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = B3F8309E025C840E128F79AB415B5380 /* JLRoutes-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 09BB49C68986BB73BBC138D20EBCAADB /* NSText+RACSignalSupport.h in Headers */ = {isa = PBXBuildFile; fileRef = F981AFE80DF851730886D2BEFBE589FD /* NSText+RACSignalSupport.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 09BCDC4C9F70510ACFB082B108BC1A07 /* NSObject+RACPropertySubscribing.m in Sources */ = {isa = PBXBuildFile; fileRef = 22F03052B67FA7832C853528B5834FCF /* NSObject+RACPropertySubscribing.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; + 0A5BB43C9613B4A00D6CDA434171C161 /* ReactiveObjC.h in Headers */ = {isa = PBXBuildFile; fileRef = 87EC75ECC2B55AD31C743F0A985F8650 /* ReactiveObjC.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 0B0FB646E7BCCA90A67CFBA885360B35 /* Masonry-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 6A40475940FC344B025307A0C518A4EF /* Masonry-dummy.m */; }; + 0B37493732E3125036CA21C2EBF8B4D7 /* RACStringSequence.m in Sources */ = {isa = PBXBuildFile; fileRef = 82A4ED31D7A854EC028871D0B7D7DFC3 /* RACStringSequence.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; + 0B5019666EF74D963C418D0E11CCAA49 /* NSSet+RACSequenceAdditions.m in Sources */ = {isa = PBXBuildFile; fileRef = CE8427593DE5AE690F89E787312AA80D /* NSSet+RACSequenceAdditions.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; + 0BB508DB89EC77E72AE38194BD58153E /* RACKVOProxy.h in Headers */ = {isa = PBXBuildFile; fileRef = 969B21DC4461E2E59E371E5AEB3FD09D /* RACKVOProxy.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 0BF18B665E2ADAFC886CBBAE9F11E32E /* MJProperty.m in Sources */ = {isa = PBXBuildFile; fileRef = 81E7C3389E95A8A52FAE406FBFED7396 /* MJProperty.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; + 0E897D05ACDC04C15C03CFE53CE544F8 /* Pods-Easydict-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = B845C2ACCFEF00A5B6C2314BC9ACE0DD /* Pods-Easydict-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 0F20999DB2E6867904A912A5F83573F5 /* NSUserDefaults+RACSupport.m in Sources */ = {isa = PBXBuildFile; fileRef = 4A5F265622E22C0EEEAB94750EBE6134 /* NSUserDefaults+RACSupport.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; 1013EC126D12375A685BC607F93626F3 /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 0F323AD32ECF8E3A45048665333843F7 /* Cocoa.framework */; }; - 102528BAF30B937EE8CD06E109F5A1A3 /* JLRoutes.m in Sources */ = {isa = PBXBuildFile; fileRef = 225050059ACEC165C38FE6B1DEC6F856 /* JLRoutes.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; - 117E6FBDF33EB74E967000B9848B6821 /* NSObject+FBKVOController.m in Sources */ = {isa = PBXBuildFile; fileRef = 7B327524DED4BFCBBDC98824D6D7DA24 /* NSObject+FBKVOController.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0 -w -Xanalyzer -analyzer-disable-all-checks"; }; }; - 11D6B62A4B1BF3471A84A9F8C69CFF2F /* NSEnumerator+RACSequenceAdditions.h in Headers */ = {isa = PBXBuildFile; fileRef = C7715DEBDDCD4137ECAA611E973B3EF6 /* NSEnumerator+RACSequenceAdditions.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 1339E6C9911F6C3F413CF37B1DB1207A /* MJFoundation.h in Headers */ = {isa = PBXBuildFile; fileRef = 2E0379394CA908AD381F048CF84349EE /* MJFoundation.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 13B6DCF366BC1D9ADEA240F12B7F6C99 /* NSArray+RACSequenceAdditions.h in Headers */ = {isa = PBXBuildFile; fileRef = CC7E2DD02D18A05789B04B88ADF6AD70 /* NSArray+RACSequenceAdditions.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 14D54F5B48619E8523FBD57CDE224325 /* RACMulticastConnection.h in Headers */ = {isa = PBXBuildFile; fileRef = 2A7DE58C726038DC9C1EF4A1D4090652 /* RACMulticastConnection.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 16429745F190530B8B9F0384805AEF0F /* RACBehaviorSubject.h in Headers */ = {isa = PBXBuildFile; fileRef = 6E544E579AE685D89B4380083187FBBB /* RACBehaviorSubject.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 167EE6824B8B34885CDABFEC9912FE6D /* RACEXTRuntimeExtensions.m in Sources */ = {isa = PBXBuildFile; fileRef = FEFA44652DA3E59BFC952039C0414422 /* RACEXTRuntimeExtensions.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; - 16DA1E0753881A8D6C6B6914182B109D /* NSObject+RACSelectorSignal.m in Sources */ = {isa = PBXBuildFile; fileRef = 20EDCB5BF5FFE443FA2636AED44520FF /* NSObject+RACSelectorSignal.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; - 171E0D7B4276864E03B745324F99A4E0 /* JLRRouteDefinition.m in Sources */ = {isa = PBXBuildFile; fileRef = 69FDF156A1E3B19D0B4442BBEC799AF7 /* JLRRouteDefinition.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; - 184DD69E04094297A9FEE0BA04218F3D /* AFURLSessionManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 022F66C651F439BF5F11EC684F6A895E /* AFURLSessionManager.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 1A3A48510F5EADB9FB14E0DF45B3AD2F /* MASShortcut.h in Headers */ = {isa = PBXBuildFile; fileRef = EAF17CAAFD20762770479837C19D1F0B /* MASShortcut.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 1ABD3DA2DE56DBF1B91D47EE8511B71D /* JLRRouteRequest.h in Headers */ = {isa = PBXBuildFile; fileRef = 3B2CB11E5FAF23028A150212F00FB168 /* JLRRouteRequest.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 1B4FD2B2A0D9782BEF15B55D41729A76 /* MASPreferencesWindow.xib in Resources */ = {isa = PBXBuildFile; fileRef = D4FB6C51DECB6512FC308716C52D72A0 /* MASPreferencesWindow.xib */; }; - 1BC5207ED5AA2B6956BB9CD10C71C1AA /* mz_strm_pkcrypt.h in Headers */ = {isa = PBXBuildFile; fileRef = 3877E5BE9DCC5EE76A7D9B554DE34170 /* mz_strm_pkcrypt.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1BCA1F0342BB6AB6AADF3A8319E8537C /* NSObject+RACDescription.m in Sources */ = {isa = PBXBuildFile; fileRef = C223917676275A4808FE237B3204FF16 /* NSObject+RACDescription.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; - 1C2DA2FFED3F4B8B580AF311F7EC7B7C /* Shortcut.h in Headers */ = {isa = PBXBuildFile; fileRef = F5B052778EEF0F5A6E38F4AC67922B3B /* Shortcut.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 1C59E23513E8D9E53FB5C11507133D5D /* MASKeyMasks.h in Headers */ = {isa = PBXBuildFile; fileRef = 57EFB984FDB25EEAD1A0A213E41C577E /* MASKeyMasks.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 1C789E086190CB49AD3473DD4B26450B /* mz.h in Headers */ = {isa = PBXBuildFile; fileRef = 52B46F6C5B2313273CB6D176CB3129CA /* mz.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1D61EC66FF509EE11FD3844B3DD966E9 /* RACTuple.h in Headers */ = {isa = PBXBuildFile; fileRef = 2F8B62B60659F54715AAA1927C62347A /* RACTuple.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 1E3D006F9735A3432DE863DF1D3EBE3C /* AFCompatibilityMacros.h in Headers */ = {isa = PBXBuildFile; fileRef = 55366949C8826B0A40E60026B72293B8 /* AFCompatibilityMacros.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 1F4432060B2C404E90F912576F2A65D9 /* RACValueTransformer.h in Headers */ = {isa = PBXBuildFile; fileRef = C1968CE4FFBEEF49BF4125BAF08F8892 /* RACValueTransformer.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 1F609B958FF08B165ED0228D2CD8C95B /* RACUnit.h in Headers */ = {isa = PBXBuildFile; fileRef = 5078066D21E6AA05FEAD56BB03AA7A07 /* RACUnit.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 1F9D460616DC9526B323BC29E7F14CC8 /* RACTupleSequence.h in Headers */ = {isa = PBXBuildFile; fileRef = F9C85F9CE11A37ACE16B6A8D8735EA69 /* RACTupleSequence.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 102528BAF30B937EE8CD06E109F5A1A3 /* JLRoutes.m in Sources */ = {isa = PBXBuildFile; fileRef = 6D614C5FC34AA34451C2BDA1C0E421EA /* JLRoutes.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; + 117E6FBDF33EB74E967000B9848B6821 /* NSObject+FBKVOController.m in Sources */ = {isa = PBXBuildFile; fileRef = 04B49437CB66B3443A88EC92E3181351 /* NSObject+FBKVOController.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0 -w -Xanalyzer -analyzer-disable-all-checks"; }; }; + 11D6B62A4B1BF3471A84A9F8C69CFF2F /* NSEnumerator+RACSequenceAdditions.h in Headers */ = {isa = PBXBuildFile; fileRef = 88A8A5463ED57DE4C56D0FEF06D6800D /* NSEnumerator+RACSequenceAdditions.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 1339E6C9911F6C3F413CF37B1DB1207A /* MJFoundation.h in Headers */ = {isa = PBXBuildFile; fileRef = A63729F7512EA740FEE0EA195AC9361A /* MJFoundation.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 13B6DCF366BC1D9ADEA240F12B7F6C99 /* NSArray+RACSequenceAdditions.h in Headers */ = {isa = PBXBuildFile; fileRef = 55BC3D33A9542584D8C808926741A47B /* NSArray+RACSequenceAdditions.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 14D54F5B48619E8523FBD57CDE224325 /* RACMulticastConnection.h in Headers */ = {isa = PBXBuildFile; fileRef = 8D2FE85C7430AFD024C0474EFB247B76 /* RACMulticastConnection.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 16429745F190530B8B9F0384805AEF0F /* RACBehaviorSubject.h in Headers */ = {isa = PBXBuildFile; fileRef = 18B731F1037B0714D5F9AB49621C9361 /* RACBehaviorSubject.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 167EE6824B8B34885CDABFEC9912FE6D /* RACEXTRuntimeExtensions.m in Sources */ = {isa = PBXBuildFile; fileRef = C696A284FFC6A1D10C0BEAF361EE1412 /* RACEXTRuntimeExtensions.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; + 16DA1E0753881A8D6C6B6914182B109D /* NSObject+RACSelectorSignal.m in Sources */ = {isa = PBXBuildFile; fileRef = 47AD2D8CAE0CCE18C3B1F113990A5E44 /* NSObject+RACSelectorSignal.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; + 171E0D7B4276864E03B745324F99A4E0 /* JLRRouteDefinition.m in Sources */ = {isa = PBXBuildFile; fileRef = 788B21A2A553AA362A1CB6577CFA6B5A /* JLRRouteDefinition.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; + 184DD69E04094297A9FEE0BA04218F3D /* AFURLSessionManager.h in Headers */ = {isa = PBXBuildFile; fileRef = F1FCDBDE14CF2854E67D545901E9017E /* AFURLSessionManager.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 1A3A48510F5EADB9FB14E0DF45B3AD2F /* MASShortcut.h in Headers */ = {isa = PBXBuildFile; fileRef = B4AB5D4A028F9B0DD563F829B71C3FBD /* MASShortcut.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 1ABD3DA2DE56DBF1B91D47EE8511B71D /* JLRRouteRequest.h in Headers */ = {isa = PBXBuildFile; fileRef = B0C6205B6AF7C1FC53FE473EA2C5A44B /* JLRRouteRequest.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 1BCA1F0342BB6AB6AADF3A8319E8537C /* NSObject+RACDescription.m in Sources */ = {isa = PBXBuildFile; fileRef = 9431131D924F8FACC0BDBAC0DA230A7A /* NSObject+RACDescription.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; + 1C2DA2FFED3F4B8B580AF311F7EC7B7C /* Shortcut.h in Headers */ = {isa = PBXBuildFile; fileRef = A68020C63AED43D2F02B016D1172F0A9 /* Shortcut.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 1C59E23513E8D9E53FB5C11507133D5D /* MASKeyMasks.h in Headers */ = {isa = PBXBuildFile; fileRef = 901C1A6C5DCC4331CFF8AEAE18A879F0 /* MASKeyMasks.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 1D61EC66FF509EE11FD3844B3DD966E9 /* RACTuple.h in Headers */ = {isa = PBXBuildFile; fileRef = 277835F63879EBA8DF4FC6D65C94A9EC /* RACTuple.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 1E1A4A726494A11CA6958D7599DC515B /* zh-Hant.lproj in Resources */ = {isa = PBXBuildFile; fileRef = 45B3F5BF28538E134CB9DE0D6480C890 /* zh-Hant.lproj */; }; + 1E3D006F9735A3432DE863DF1D3EBE3C /* AFCompatibilityMacros.h in Headers */ = {isa = PBXBuildFile; fileRef = A363F2177CFFF6EC8F77C912287ABC05 /* AFCompatibilityMacros.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 1F4432060B2C404E90F912576F2A65D9 /* RACValueTransformer.h in Headers */ = {isa = PBXBuildFile; fileRef = 1A4463E98CFB316D6FAAD670E109C075 /* RACValueTransformer.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 1F609B958FF08B165ED0228D2CD8C95B /* RACUnit.h in Headers */ = {isa = PBXBuildFile; fileRef = 489E2FE8DB39A7FD4640428096AD329D /* RACUnit.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 1F9D460616DC9526B323BC29E7F14CC8 /* RACTupleSequence.h in Headers */ = {isa = PBXBuildFile; fileRef = B2A5892D5CC07F46A2693982D4EBFD43 /* RACTupleSequence.h */; settings = {ATTRIBUTES = (Public, ); }; }; 1FA3A6F0773C5D86C7DFEF86BCF54070 /* AppKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = B86B4AAB47DFB9C73D2476D317BE774E /* AppKit.framework */; }; - 200E7C29E35EDDB6AFC2F22B1CA06D93 /* MASConstraint.m in Sources */ = {isa = PBXBuildFile; fileRef = 1924A881688F3FCA77F8C7FB3FFF78E1 /* MASConstraint.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0 -w -Xanalyzer -analyzer-disable-all-checks"; }; }; - 20AB9F4381BB0EDC1192D067954C4C01 /* RACReplaySubject.m in Sources */ = {isa = PBXBuildFile; fileRef = C388FEC0CF3262533E1B88B635566DDE /* RACReplaySubject.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; - 210AFADA837228041C9B8D5F6EEBD66E /* zh-Hans.lproj in Resources */ = {isa = PBXBuildFile; fileRef = F8115DF922C9AE671C9D9DA51817D3D9 /* zh-Hans.lproj */; }; - 23DB848C71B3729BEA9156A4EAE6BB99 /* RACDynamicSignal.m in Sources */ = {isa = PBXBuildFile; fileRef = FD32DD3DA35B36DA50EFBDDE9F3AA2AD /* RACDynamicSignal.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; - 241AA443CD8914CAFB3D02607CAA1A02 /* RACBehaviorSubject.m in Sources */ = {isa = PBXBuildFile; fileRef = 71180F4A1852F33F28B14CC8D66E30EA /* RACBehaviorSubject.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; - 243D5679D072C7AE7FC011852575392E /* NSObject+MJCoding.m in Sources */ = {isa = PBXBuildFile; fileRef = 33174D60B5C61DA955B7C79CF2507EE1 /* NSObject+MJCoding.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; - 24B2F36AABCA815294B79288994BB954 /* JLRoutes.h in Headers */ = {isa = PBXBuildFile; fileRef = 844E2C31F1FCA38BB2AB8252F33294DD /* JLRoutes.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 26754C506C5038F24FC6E53FC0490C2A /* RACTuple.m in Sources */ = {isa = PBXBuildFile; fileRef = E85BE5E7AE4BFE87901D126612D09EC2 /* RACTuple.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; + 200E7C29E35EDDB6AFC2F22B1CA06D93 /* MASConstraint.m in Sources */ = {isa = PBXBuildFile; fileRef = F13C6E61E99E202B56300F56A3034112 /* MASConstraint.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0 -w -Xanalyzer -analyzer-disable-all-checks"; }; }; + 20AB9F4381BB0EDC1192D067954C4C01 /* RACReplaySubject.m in Sources */ = {isa = PBXBuildFile; fileRef = 71F236E38605D856EA8099E70D35452C /* RACReplaySubject.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; + 23DB848C71B3729BEA9156A4EAE6BB99 /* RACDynamicSignal.m in Sources */ = {isa = PBXBuildFile; fileRef = 8D2B0003F49FC9EDC7590321AC6BFB88 /* RACDynamicSignal.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; + 241AA443CD8914CAFB3D02607CAA1A02 /* RACBehaviorSubject.m in Sources */ = {isa = PBXBuildFile; fileRef = 251FBBC73D5EF330DFA2C3CC7100E5C0 /* RACBehaviorSubject.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; + 243D5679D072C7AE7FC011852575392E /* NSObject+MJCoding.m in Sources */ = {isa = PBXBuildFile; fileRef = 8AC754C18E4EBD564FF0BE9BDD9D73B3 /* NSObject+MJCoding.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; + 24B2F36AABCA815294B79288994BB954 /* JLRoutes.h in Headers */ = {isa = PBXBuildFile; fileRef = E1FBA4265FA607A57D44F29A0B238DC2 /* JLRoutes.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 26754C506C5038F24FC6E53FC0490C2A /* RACTuple.m in Sources */ = {isa = PBXBuildFile; fileRef = 4AC3286DD6B6CD4CF2D1971F091E558B /* RACTuple.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; 27ED8CB48F36ED56E14F00110449A184 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = A2D2EDD4A1DFEE11C6B812AE906708F7 /* Foundation.framework */; }; - 287A7A7F92D4586945DFE45BC81DC609 /* KVOController.h in Headers */ = {isa = PBXBuildFile; fileRef = 211FCFC7D6C886CF1E71E1C1F41B81C4 /* KVOController.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 2889203BB35EBE6B01E6540E08999938 /* RACCommand.h in Headers */ = {isa = PBXBuildFile; fileRef = 42BDF4ADEF556B8F54906E83BCFE79CB /* RACCommand.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 28F6C290B055D8D3C8FFBB94D8ADDC3A /* MASKeyCodes.h in Headers */ = {isa = PBXBuildFile; fileRef = 1124DA5B0A43A58A0BB8C58817A9F880 /* MASKeyCodes.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 2916A7C0B224EA2FE0992DD8FE6E24CB /* NSLayoutConstraint+MASDebugAdditions.m in Sources */ = {isa = PBXBuildFile; fileRef = 4E4E758311E57182055F7D1DC8A3C628 /* NSLayoutConstraint+MASDebugAdditions.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0 -w -Xanalyzer -analyzer-disable-all-checks"; }; }; - 294F1C3D0C34FF15F97993D067DE3ECC /* MASLocalization.m in Sources */ = {isa = PBXBuildFile; fileRef = 465313CF2DF8ED134FD5C8736921C54A /* MASLocalization.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; - 2BA5EE588F31DE62B27A2B2EA07E0B1F /* RACCompoundDisposable.m in Sources */ = {isa = PBXBuildFile; fileRef = D448EB83567595962AE51EA5A4D080BB /* RACCompoundDisposable.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; - 2BBCD37212013DAD4CE01E215440C39A /* RACUnarySequence.h in Headers */ = {isa = PBXBuildFile; fileRef = E5291A5457F48710003447059151AED6 /* RACUnarySequence.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 2BE7DC932756FAF205163806526AFBEA /* RACBlockTrampoline.m in Sources */ = {isa = PBXBuildFile; fileRef = D44D0767FBB9E8D337246B5EB3D5B1B8 /* RACBlockTrampoline.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; - 2C65D301E09FF2BD41AF536C8C112F69 /* RACKVOProxy.m in Sources */ = {isa = PBXBuildFile; fileRef = 8A3F20C39E7B979DC833EB8EAB079FD1 /* RACKVOProxy.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; - 2C961AEF650D863A47374754D25C755D /* mz_os.c in Sources */ = {isa = PBXBuildFile; fileRef = 60C40D93D96D37025F44E89DEBF31E5A /* mz_os.c */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; - 2EDD49432CBD28F16DF76E75CC70B5BD /* FBKVOController.m in Sources */ = {isa = PBXBuildFile; fileRef = 42DB4AD3D14FA1B7B5B7C8C9AFCA2DC9 /* FBKVOController.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0 -w -Xanalyzer -analyzer-disable-all-checks"; }; }; - 2F7F06BDB4D937BC9A457495EA2CD7A4 /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 0F323AD32ECF8E3A45048665333843F7 /* Cocoa.framework */; }; - 2F991149B70E82A39A5DC711A3C9C15C /* RACUnit.m in Sources */ = {isa = PBXBuildFile; fileRef = 85A27B6C38518B0DBA47F58FF9FD03AB /* RACUnit.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; - 2FF332350AF2EB8C13983D021E5137AB /* MASShortcut-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 2257E2DA3B4858919460A9624BCAE2A9 /* MASShortcut-dummy.m */; }; - 306986657C6E91084481E801295EB005 /* RACSerialDisposable.h in Headers */ = {isa = PBXBuildFile; fileRef = C700D47BA5BA6221B058E5D0FF4A66C2 /* RACSerialDisposable.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 30D23C352773401AE1389972956969C4 /* SSZipArchive.h in Headers */ = {isa = PBXBuildFile; fileRef = 2E732DAC741FEA51AD905AA4E3C61DCB /* SSZipArchive.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 287A7A7F92D4586945DFE45BC81DC609 /* KVOController.h in Headers */ = {isa = PBXBuildFile; fileRef = 8732412B937B54EE325D65A55733DE4F /* KVOController.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 2889203BB35EBE6B01E6540E08999938 /* RACCommand.h in Headers */ = {isa = PBXBuildFile; fileRef = EA47250AC7DC8A0ED211DF2944D660E7 /* RACCommand.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 28F6C290B055D8D3C8FFBB94D8ADDC3A /* MASKeyCodes.h in Headers */ = {isa = PBXBuildFile; fileRef = 326CD7D1E6876C681A11EA3A448B22C6 /* MASKeyCodes.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 2916A7C0B224EA2FE0992DD8FE6E24CB /* NSLayoutConstraint+MASDebugAdditions.m in Sources */ = {isa = PBXBuildFile; fileRef = DDE5352C18521D46523F24C8848FCA5C /* NSLayoutConstraint+MASDebugAdditions.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0 -w -Xanalyzer -analyzer-disable-all-checks"; }; }; + 294F1C3D0C34FF15F97993D067DE3ECC /* MASLocalization.m in Sources */ = {isa = PBXBuildFile; fileRef = 64CC83238DB7C833833C937D8D1721B2 /* MASLocalization.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; + 2BA5EE588F31DE62B27A2B2EA07E0B1F /* RACCompoundDisposable.m in Sources */ = {isa = PBXBuildFile; fileRef = 68A1AE4033446A00B9B658009304A320 /* RACCompoundDisposable.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; + 2BAFE84A2806F2C57C358858858B34B4 /* de.lproj in Resources */ = {isa = PBXBuildFile; fileRef = 34AAF569E806D3602F701C9682E5C305 /* de.lproj */; }; + 2BBCD37212013DAD4CE01E215440C39A /* RACUnarySequence.h in Headers */ = {isa = PBXBuildFile; fileRef = 3504A868701069CEC6DC85A1F0999986 /* RACUnarySequence.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 2BE7DC932756FAF205163806526AFBEA /* RACBlockTrampoline.m in Sources */ = {isa = PBXBuildFile; fileRef = 054E09A0D2ED3DDEE3600C793BC1A762 /* RACBlockTrampoline.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; + 2C65D301E09FF2BD41AF536C8C112F69 /* RACKVOProxy.m in Sources */ = {isa = PBXBuildFile; fileRef = C3DB5301428F8A0955C03BDE9F62A181 /* RACKVOProxy.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; + 2EDD49432CBD28F16DF76E75CC70B5BD /* FBKVOController.m in Sources */ = {isa = PBXBuildFile; fileRef = DFE1DBD7301E01B5E3A39F1686D42F00 /* FBKVOController.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0 -w -Xanalyzer -analyzer-disable-all-checks"; }; }; + 2F991149B70E82A39A5DC711A3C9C15C /* RACUnit.m in Sources */ = {isa = PBXBuildFile; fileRef = 89C15C0B172E1FBF5B29DE5DAF45BE18 /* RACUnit.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; + 2FF332350AF2EB8C13983D021E5137AB /* MASShortcut-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = ACDFA4F3C1F306F3AFD355D748B780E4 /* MASShortcut-dummy.m */; }; + 306986657C6E91084481E801295EB005 /* RACSerialDisposable.h in Headers */ = {isa = PBXBuildFile; fileRef = 95E168FCAECAB4B00D2398F200EE92D8 /* RACSerialDisposable.h */; settings = {ATTRIBUTES = (Public, ); }; }; 328005DE69E91B4FD87B69BEA01DC8D1 /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 0F323AD32ECF8E3A45048665333843F7 /* Cocoa.framework */; }; 32E250C367D40DFE6A365F8AE7A55AF1 /* CoreServices.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 96D7824CF9886D89981192488F3F0108 /* CoreServices.framework */; }; - 332E3754A8F370333ADF20E3B5AC62AE /* RACEXTRuntimeExtensions.h in Headers */ = {isa = PBXBuildFile; fileRef = 2F1FB593D45F4877B33B950945F545D5 /* RACEXTRuntimeExtensions.h */; settings = {ATTRIBUTES = (Private, ); }; }; - 333888D1F6052AE89725994E87DEAF61 /* NSString+RACKeyPathUtilities.h in Headers */ = {isa = PBXBuildFile; fileRef = 8382FA1718DA80EF598F3F90510253BF /* NSString+RACKeyPathUtilities.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 3341A4FD296669238CA7682890CB574E /* NSUserDefaults+RACSupport.h in Headers */ = {isa = PBXBuildFile; fileRef = 223A589AA8255E9FD24154E8C1AFC1FB /* NSUserDefaults+RACSupport.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 334BC5CE21B72A5A7D5BD0AA6C77B89C /* RACDynamicSequence.h in Headers */ = {isa = PBXBuildFile; fileRef = 036AAE8F2AC0468364E05CCB5E3ACB1E /* RACDynamicSequence.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 3355B8D221BF86265D6F9558952DE40F /* NSObject+RACKVOWrapper.h in Headers */ = {isa = PBXBuildFile; fileRef = 218752AE28625E3A53098ED2195C764C /* NSObject+RACKVOWrapper.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 336B781E5AF19CF4F84DA9462E41429D /* RACStream+Private.h in Headers */ = {isa = PBXBuildFile; fileRef = A91F248BA674BDF97B04C8EF197C2E8D /* RACStream+Private.h */; settings = {ATTRIBUTES = (Private, ); }; }; - 33DC154CACD614244DE45A53CE08EF0D /* MJExtension.h in Headers */ = {isa = PBXBuildFile; fileRef = 228AECE1B6488143FBC7D512F00C77FD /* MJExtension.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 340497E83F9DF147F7354194E48F9A2C /* RACEmptySequence.h in Headers */ = {isa = PBXBuildFile; fileRef = 0C88B4564AF65391F5702BA84BA60745 /* RACEmptySequence.h */; settings = {ATTRIBUTES = (Private, ); }; }; - 35B8EEF818BC5B8190F182868D50305F /* NSData+RACSupport.m in Sources */ = {isa = PBXBuildFile; fileRef = DAA54686991789D0BA5BB1419C7972B7 /* NSData+RACSupport.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; - 35C7EA5B31465C4197892CE66A24D9AB /* NSArray+MASAdditions.m in Sources */ = {isa = PBXBuildFile; fileRef = 8178A8803ABDE831D9F6888A7B0FD504 /* NSArray+MASAdditions.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0 -w -Xanalyzer -analyzer-disable-all-checks"; }; }; - 37F6A3BECF37C125152A3BBA232AD7DC /* NSObject+MJKeyValue.h in Headers */ = {isa = PBXBuildFile; fileRef = D75B2B545A8BE6697B2F906339080A91 /* NSObject+MJKeyValue.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 3867CC4ABC7A37211B3CAC46C6967377 /* AFURLRequestSerialization.m in Sources */ = {isa = PBXBuildFile; fileRef = 997943020D204A40C368CF454D3E7F26 /* AFURLRequestSerialization.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; - 38C6AFD5844D9504C94AC5B704AF043D /* NSString+RACSequenceAdditions.m in Sources */ = {isa = PBXBuildFile; fileRef = A74FC1C4C39C89935A5C8CEBA606ED73 /* NSString+RACSequenceAdditions.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; - 3A1F5D39AD202F3AA9EDFB10477999BA /* RACPassthroughSubscriber.h in Headers */ = {isa = PBXBuildFile; fileRef = 33F34F573BF4F3D7BBD5C0CF929725E6 /* RACPassthroughSubscriber.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 3B416856EA2CD1BE345BE4DB01F5ED94 /* JLRParsingUtilities.m in Sources */ = {isa = PBXBuildFile; fileRef = B449CB3F896B1C6219AA38340CB77E00 /* JLRParsingUtilities.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; - 3F82BBF2CDF3E3DDFAC2AA3CF830B0C7 /* pt.lproj in Resources */ = {isa = PBXBuildFile; fileRef = 2FB0959A01A3EA824D21BE512DA9462B /* pt.lproj */; }; - 428F28195C11E0207B4555399B679FE1 /* RACReturnSignal.m in Sources */ = {isa = PBXBuildFile; fileRef = FD49B098150097D8ABD629858FA92144 /* RACReturnSignal.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; - 431FB07EAC4D2F7030C851DE20C3A1C4 /* SSZipArchive-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 75386950DD5F25918BB1EEF742C7D9AA /* SSZipArchive-dummy.m */; }; - 44283063B529551289C111E42AEA7487 /* JLRRouteHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = A883EA16AD24338A1F9DC8A976C80656 /* JLRRouteHandler.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; - 4454EEE74707A4645C03835CBED33F97 /* NSControl+RACCommandSupport.m in Sources */ = {isa = PBXBuildFile; fileRef = 5173F242B096F8CD44D4872436961B4C /* NSControl+RACCommandSupport.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; - 44A145033020E857348F2CF287D18EBB /* RACScheduler.h in Headers */ = {isa = PBXBuildFile; fileRef = 09D0F978F3D7DE2433E679029D8BB115 /* RACScheduler.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 45B0F1C3F3965E69C8F71044B1397D54 /* RACQueueScheduler.h in Headers */ = {isa = PBXBuildFile; fileRef = C32421053EE6C5CCA667FAD950FF91A6 /* RACQueueScheduler.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 46D6446DA8450AF0B1C24CA52C55D9BA /* NSIndexSet+RACSequenceAdditions.h in Headers */ = {isa = PBXBuildFile; fileRef = 1A120C8AFF8C19758FEB8C7C1614B5DE /* NSIndexSet+RACSequenceAdditions.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 332E3754A8F370333ADF20E3B5AC62AE /* RACEXTRuntimeExtensions.h in Headers */ = {isa = PBXBuildFile; fileRef = FA917799E98A1E768A7093FB39CA50CE /* RACEXTRuntimeExtensions.h */; settings = {ATTRIBUTES = (Private, ); }; }; + 333888D1F6052AE89725994E87DEAF61 /* NSString+RACKeyPathUtilities.h in Headers */ = {isa = PBXBuildFile; fileRef = C1B2819C042811649674BE814D7311E0 /* NSString+RACKeyPathUtilities.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 3341A4FD296669238CA7682890CB574E /* NSUserDefaults+RACSupport.h in Headers */ = {isa = PBXBuildFile; fileRef = 3125A95116695F297C4B988185A37F4F /* NSUserDefaults+RACSupport.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 334BC5CE21B72A5A7D5BD0AA6C77B89C /* RACDynamicSequence.h in Headers */ = {isa = PBXBuildFile; fileRef = 1BCC53E6F0D51446F5F9AD5B4A804CED /* RACDynamicSequence.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 3355B8D221BF86265D6F9558952DE40F /* NSObject+RACKVOWrapper.h in Headers */ = {isa = PBXBuildFile; fileRef = A895C70FC205D4C828BDDA9B32AA8C25 /* NSObject+RACKVOWrapper.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 336B781E5AF19CF4F84DA9462E41429D /* RACStream+Private.h in Headers */ = {isa = PBXBuildFile; fileRef = 739BB29D7F24D25CC4FD1FF3C3A1446C /* RACStream+Private.h */; settings = {ATTRIBUTES = (Private, ); }; }; + 33DC154CACD614244DE45A53CE08EF0D /* MJExtension.h in Headers */ = {isa = PBXBuildFile; fileRef = 77F669F680AB719763FA6289A8D3C6DC /* MJExtension.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 340497E83F9DF147F7354194E48F9A2C /* RACEmptySequence.h in Headers */ = {isa = PBXBuildFile; fileRef = 6F3C6B8BD03A7EA869C7EA4FAFA9FBD0 /* RACEmptySequence.h */; settings = {ATTRIBUTES = (Private, ); }; }; + 35B8EEF818BC5B8190F182868D50305F /* NSData+RACSupport.m in Sources */ = {isa = PBXBuildFile; fileRef = F52071790C899E157EDF80FF63545ACF /* NSData+RACSupport.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; + 35C7EA5B31465C4197892CE66A24D9AB /* NSArray+MASAdditions.m in Sources */ = {isa = PBXBuildFile; fileRef = 67D6FF948119298A85C2A5D2E687B50D /* NSArray+MASAdditions.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0 -w -Xanalyzer -analyzer-disable-all-checks"; }; }; + 37F6A3BECF37C125152A3BBA232AD7DC /* NSObject+MJKeyValue.h in Headers */ = {isa = PBXBuildFile; fileRef = C0832D0AF0A7F2AF4A7F43BFB4EBD18B /* NSObject+MJKeyValue.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 3867CC4ABC7A37211B3CAC46C6967377 /* AFURLRequestSerialization.m in Sources */ = {isa = PBXBuildFile; fileRef = 6CCFC8929A42FFCEAA406A5C537FEF4B /* AFURLRequestSerialization.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; + 38C6AFD5844D9504C94AC5B704AF043D /* NSString+RACSequenceAdditions.m in Sources */ = {isa = PBXBuildFile; fileRef = AA502F6F3E15635A61A28C7BD0527845 /* NSString+RACSequenceAdditions.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; + 3A1F5D39AD202F3AA9EDFB10477999BA /* RACPassthroughSubscriber.h in Headers */ = {isa = PBXBuildFile; fileRef = E767D844B2691C5FD65E7551044C2048 /* RACPassthroughSubscriber.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 3B416856EA2CD1BE345BE4DB01F5ED94 /* JLRParsingUtilities.m in Sources */ = {isa = PBXBuildFile; fileRef = 5F5BF928F82A886C8E3388230ED79B39 /* JLRParsingUtilities.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; + 3B54F4738380D2CCDB9160683BB65E0E /* Pods-EasydictTests-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 9557017CFFCCA6BDFC4839A96EFD0115 /* Pods-EasydictTests-dummy.m */; }; + 428F28195C11E0207B4555399B679FE1 /* RACReturnSignal.m in Sources */ = {isa = PBXBuildFile; fileRef = E7C5EE6FF6E65A797C4DD72A754BC231 /* RACReturnSignal.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; + 44283063B529551289C111E42AEA7487 /* JLRRouteHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = FF381107CB36EC9C8A57BCA65E77EB05 /* JLRRouteHandler.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; + 4454EEE74707A4645C03835CBED33F97 /* NSControl+RACCommandSupport.m in Sources */ = {isa = PBXBuildFile; fileRef = 253FCA858D5F0219F5921EA261F5F006 /* NSControl+RACCommandSupport.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; + 44A145033020E857348F2CF287D18EBB /* RACScheduler.h in Headers */ = {isa = PBXBuildFile; fileRef = 5D7F0A9546B9AEB5A6625473E776137E /* RACScheduler.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 45B0F1C3F3965E69C8F71044B1397D54 /* RACQueueScheduler.h in Headers */ = {isa = PBXBuildFile; fileRef = 54C2F839D3238DCC6675AC9449A91A09 /* RACQueueScheduler.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 46D6446DA8450AF0B1C24CA52C55D9BA /* NSIndexSet+RACSequenceAdditions.h in Headers */ = {isa = PBXBuildFile; fileRef = 0133444D217A20710819BF36151B2DE4 /* NSIndexSet+RACSequenceAdditions.h */; settings = {ATTRIBUTES = (Public, ); }; }; 4716131F729BB859DCD543139D113C84 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = A2D2EDD4A1DFEE11C6B812AE906708F7 /* Foundation.framework */; }; - 47E95FA96773D3D032F040F9D8082243 /* mz_strm_wzaes.c in Sources */ = {isa = PBXBuildFile; fileRef = A13EE6D970B84BE4B94742C98318B83E /* mz_strm_wzaes.c */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; - 48A66702255B568AACB57D13353ABFF4 /* NSControl+RACTextSignalSupport.m in Sources */ = {isa = PBXBuildFile; fileRef = F81155F7B73577C9E0F516DFCCECCDAF /* NSControl+RACTextSignalSupport.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; - 48D9F44019301DE62D6B9FC24BD8234D /* Pods-EasydictTests-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 9557017CFFCCA6BDFC4839A96EFD0115 /* Pods-EasydictTests-dummy.m */; }; - 49715D36952B12A19E0F7DFD258674AA /* mz_strm.c in Sources */ = {isa = PBXBuildFile; fileRef = A6055A9BBEDA2BAB9499959FCBCB1053 /* mz_strm.c */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; - 49950BD77895F5F6F6CD80DE9C30E805 /* NSFileHandle+RACSupport.m in Sources */ = {isa = PBXBuildFile; fileRef = 51DD729B8B8EFA11DCAD51FCDEE90CDB /* NSFileHandle+RACSupport.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; + 48A66702255B568AACB57D13353ABFF4 /* NSControl+RACTextSignalSupport.m in Sources */ = {isa = PBXBuildFile; fileRef = 406F8228457D5CB0D921813E21FE946D /* NSControl+RACTextSignalSupport.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; + 49950BD77895F5F6F6CD80DE9C30E805 /* NSFileHandle+RACSupport.m in Sources */ = {isa = PBXBuildFile; fileRef = EBA76980BAEFE095A7DE076F41D1363F /* NSFileHandle+RACSupport.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; 49B8FBDE96C9DCE54EEA80A427E400C7 /* SystemConfiguration.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 855AAEC987B11544B8EA8FABF064A20E /* SystemConfiguration.framework */; }; - 49F1B4350A7592A60D8775649C9D3128 /* NSObject+MJKeyValue.m in Sources */ = {isa = PBXBuildFile; fileRef = 77D940AC94A6CA6836E942AE9814EFD6 /* NSObject+MJKeyValue.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; + 49F1B4350A7592A60D8775649C9D3128 /* NSObject+MJKeyValue.m in Sources */ = {isa = PBXBuildFile; fileRef = 148E666FDFB3D3BF2F71CED30853AACB /* NSObject+MJKeyValue.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; 4A085767EC07957D09C7A6A16F17F399 /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 0F323AD32ECF8E3A45048665333843F7 /* Cocoa.framework */; }; - 4A62422B6748C90B540D628CC75BB411 /* JLRRouteRequest.m in Sources */ = {isa = PBXBuildFile; fileRef = C8E33CB0E88481D68AFD1672C21074FB /* JLRRouteRequest.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; - 4C4C76D60BD561ECF267C9E1C9799046 /* RACSubscriptingAssignmentTrampoline.h in Headers */ = {isa = PBXBuildFile; fileRef = 99352309739B320EB7496FF4CB86B26A /* RACSubscriptingAssignmentTrampoline.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 4CD15A7B893829FBD76453E3916364C1 /* MASLayoutConstraint.h in Headers */ = {isa = PBXBuildFile; fileRef = 6F3E208E9CF3434FE64F41B362132B8A /* MASLayoutConstraint.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 4D1A7F6A852677BCE5A9995AA0E1BAE0 /* RACEvent.h in Headers */ = {isa = PBXBuildFile; fileRef = EE33C9934212D73A1AAA3AC4B0718D9E /* RACEvent.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 4F30642E4F2109DE340494AAB2FAB993 /* MASShortcutMonitor.h in Headers */ = {isa = PBXBuildFile; fileRef = BC4426125B9D2CFBA4C9D3F1B36D5A13 /* MASShortcutMonitor.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 4F43B089EC8607826E774F861AEA7BD7 /* es.lproj in Resources */ = {isa = PBXBuildFile; fileRef = DFECCE0FD032B74427B77ED1730B633B /* es.lproj */; }; - 4F4B2E680C0F15245B9F1FAEA47CC55B /* AFURLSessionManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 7F188F814183CF510B546FF7091D959B /* AFURLSessionManager.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; - 4F5E782016B36C23D3C8E1A72C4E89F1 /* RACStream.h in Headers */ = {isa = PBXBuildFile; fileRef = 80798FE6FF9EAEB0A37A82FF359D9304 /* RACStream.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 5111C01D7F30C56F8B068FCDB2EF0F17 /* mz_zip_rw.c in Sources */ = {isa = PBXBuildFile; fileRef = 7914E31A5D70C045D11F24B3F87640BB /* mz_zip_rw.c */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; - 512EF163DFB5960605C314D95C3A26C9 /* RACSubscriber+Private.h in Headers */ = {isa = PBXBuildFile; fileRef = D722B26F6C2BB3EF4DAA4DCC0B5E30EE /* RACSubscriber+Private.h */; settings = {ATTRIBUTES = (Private, ); }; }; - 5175CE9F4B3A893304218D99403D93ED /* AFNetworking.h in Headers */ = {isa = PBXBuildFile; fileRef = AEEC2342BD702605C7726D54D4B613A8 /* AFNetworking.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 5269125E3DB0BD186DB3AE857B3C9E62 /* MASHotKey.h in Headers */ = {isa = PBXBuildFile; fileRef = 1AED3FA2DC652F1CFEF0FE85B1208FE2 /* MASHotKey.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 534EDA976CDBE519C377D315BA3FD183 /* SSZipCommon.h in Headers */ = {isa = PBXBuildFile; fileRef = A48CA6A29F07CA173086A8C99A40B118 /* SSZipCommon.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 539B49D90AD05A7116B36547E948190E /* SSZipArchive.m in Sources */ = {isa = PBXBuildFile; fileRef = 86CCF1AC31D756E8B116E91AF0503357 /* SSZipArchive.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; - 54E0065B88A69879DE8F65A73B9E0204 /* RACSignalSequence.h in Headers */ = {isa = PBXBuildFile; fileRef = 7BE2D8C6F394B6798FB84B891673CD89 /* RACSignalSequence.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 559B7E07FA1B3835D7C39FE52EFA7B4C /* NSIndexSet+RACSequenceAdditions.m in Sources */ = {isa = PBXBuildFile; fileRef = 3F0A9EA0BBC99DB1BABE8D2FDC1EE33C /* NSIndexSet+RACSequenceAdditions.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; - 561168BDE155FA7E57A48961E0DF8D51 /* KVOController-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 16E504191031D04051A89EFBF022406D /* KVOController-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 56DBD44404488F15CE0AD26708AECCA3 /* MASViewAttribute.h in Headers */ = {isa = PBXBuildFile; fileRef = ED6550CFD6C0502542EF4FC530E721C8 /* MASViewAttribute.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 58052DFA57FA2569F3D7720EA7A744F1 /* MASConstraintMaker.m in Sources */ = {isa = PBXBuildFile; fileRef = DC4EC7382D92D7B397FDA4F3573065CF /* MASConstraintMaker.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0 -w -Xanalyzer -analyzer-disable-all-checks"; }; }; - 5807E0632368B365308B44C5AE6973BD /* MJExtensionConst.h in Headers */ = {isa = PBXBuildFile; fileRef = BD1A54D3054DC406C7C8846D7D1A1138 /* MJExtensionConst.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 582575125BD55FDF6B022C83E6D57414 /* RACSubject.h in Headers */ = {isa = PBXBuildFile; fileRef = 272F2550ACC673F51EE6E20E8890A690 /* RACSubject.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 5857D7331F535E55BE0260651348CEC3 /* RACEvent.m in Sources */ = {isa = PBXBuildFile; fileRef = 38AE517DD1DC43BECF5DD049940EF47E /* RACEvent.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; - 5864A26625028DA54B66904E1F3CB559 /* RACQueueScheduler+Subclass.h in Headers */ = {isa = PBXBuildFile; fileRef = F2038A3094FB7B1D28B6C6838D0CE28C /* RACQueueScheduler+Subclass.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 586B1D7E92AEC3C2462B5BA36B2D413B /* RACSequence.h in Headers */ = {isa = PBXBuildFile; fileRef = 66F85BF92F64672B841333EB55939856 /* RACSequence.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 5943324F179C6C962816A4712A889E0C /* AFHTTPSessionManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 6383C08957A7FBA9CDED665C4D17011C /* AFHTTPSessionManager.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; - 5991FB507FDD0F6C4D2EA204337EF426 /* RACTargetQueueScheduler.m in Sources */ = {isa = PBXBuildFile; fileRef = D42B8329E0A4F1755CE4F64BC038883A /* RACTargetQueueScheduler.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; - 59C5DEA34359323178DC4924BFEDF256 /* MASShortcutView+Bindings.h in Headers */ = {isa = PBXBuildFile; fileRef = 23754905496FB8C7035BF810288D4F0E /* MASShortcutView+Bindings.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 5C4E3BEC68F14D2154A75E65160409AC /* MASPreferencesViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = 478B17AC77063096F4A3028A7AAB9846 /* MASPreferencesViewController.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 5CB0D9FA9418E1F8C6D5BB116C78DB6F /* NSControl+RACTextSignalSupport.h in Headers */ = {isa = PBXBuildFile; fileRef = 4B1AFD9BA66C3A4A9ECC39DD5D13AA16 /* NSControl+RACTextSignalSupport.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 5CC33C209A24FB60D978CC2D233A89FD /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 0F323AD32ECF8E3A45048665333843F7 /* Cocoa.framework */; }; - 5D05F6424F79DA9D40EDE9A54766378B /* mz_strm_pkcrypt.c in Sources */ = {isa = PBXBuildFile; fileRef = 40DA43EFC5AC763D2DBD408B641F230E /* mz_strm_pkcrypt.c */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; - 5EF9CEBC53E00075A9DA6DA100DB48C6 /* AFSecurityPolicy.m in Sources */ = {isa = PBXBuildFile; fileRef = AB666613F83F855C2113B9BD8290FF69 /* AFSecurityPolicy.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; + 4A62422B6748C90B540D628CC75BB411 /* JLRRouteRequest.m in Sources */ = {isa = PBXBuildFile; fileRef = DFEAFC95BA525C7E233427D5820D0C01 /* JLRRouteRequest.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; + 4C4C76D60BD561ECF267C9E1C9799046 /* RACSubscriptingAssignmentTrampoline.h in Headers */ = {isa = PBXBuildFile; fileRef = 8C47AD376829AC1E98C2387B2ED5149D /* RACSubscriptingAssignmentTrampoline.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 4CD15A7B893829FBD76453E3916364C1 /* MASLayoutConstraint.h in Headers */ = {isa = PBXBuildFile; fileRef = D146F011303B1C83593CEABF179537E2 /* MASLayoutConstraint.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 4D1A7F6A852677BCE5A9995AA0E1BAE0 /* RACEvent.h in Headers */ = {isa = PBXBuildFile; fileRef = 28219A7DAFE0AC6DF6CCE34E8C591E00 /* RACEvent.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 4E196744FE4AB51C8ECFCE7FFF1E8E66 /* it.lproj in Resources */ = {isa = PBXBuildFile; fileRef = 604C599F9DB7356D975D61A7A4A4B102 /* it.lproj */; }; + 4F30642E4F2109DE340494AAB2FAB993 /* MASShortcutMonitor.h in Headers */ = {isa = PBXBuildFile; fileRef = DAA0E1E553E4FFF8010FC1E15C64834F /* MASShortcutMonitor.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 4F4B2E680C0F15245B9F1FAEA47CC55B /* AFURLSessionManager.m in Sources */ = {isa = PBXBuildFile; fileRef = F387F3547F7723B133F6EB622868C05E /* AFURLSessionManager.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; + 4F5E782016B36C23D3C8E1A72C4E89F1 /* RACStream.h in Headers */ = {isa = PBXBuildFile; fileRef = 7CE37FA4A2F489645A1017746EC0CA0D /* RACStream.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 512EF163DFB5960605C314D95C3A26C9 /* RACSubscriber+Private.h in Headers */ = {isa = PBXBuildFile; fileRef = 591DB7CE7DE6D4E2827BC73612B65B20 /* RACSubscriber+Private.h */; settings = {ATTRIBUTES = (Private, ); }; }; + 5175CE9F4B3A893304218D99403D93ED /* AFNetworking.h in Headers */ = {isa = PBXBuildFile; fileRef = E8A491921DCFC162EB2A938076F782B3 /* AFNetworking.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 5269125E3DB0BD186DB3AE857B3C9E62 /* MASHotKey.h in Headers */ = {isa = PBXBuildFile; fileRef = DF5D7576CB5ECA11321E060997DF2279 /* MASHotKey.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 54E0065B88A69879DE8F65A73B9E0204 /* RACSignalSequence.h in Headers */ = {isa = PBXBuildFile; fileRef = 2B8DC497D2256FF535AF9649B43C3C3F /* RACSignalSequence.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 559B7E07FA1B3835D7C39FE52EFA7B4C /* NSIndexSet+RACSequenceAdditions.m in Sources */ = {isa = PBXBuildFile; fileRef = 63770CC527BB6F6D848F71FA5B3825CD /* NSIndexSet+RACSequenceAdditions.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; + 55D00552A59AD27200549B9979163B51 /* pl.lproj in Resources */ = {isa = PBXBuildFile; fileRef = 7397CEDA777130C0129CCE6E1C63624B /* pl.lproj */; }; + 561168BDE155FA7E57A48961E0DF8D51 /* KVOController-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = F3A375CD22E0FCA8C79DE532D1CCA411 /* KVOController-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 56DBD44404488F15CE0AD26708AECCA3 /* MASViewAttribute.h in Headers */ = {isa = PBXBuildFile; fileRef = 95A397D2F5C88626A6774905D8DBBAB4 /* MASViewAttribute.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 58052DFA57FA2569F3D7720EA7A744F1 /* MASConstraintMaker.m in Sources */ = {isa = PBXBuildFile; fileRef = 998369D782732EA87BD493C1D0B05A33 /* MASConstraintMaker.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0 -w -Xanalyzer -analyzer-disable-all-checks"; }; }; + 5807E0632368B365308B44C5AE6973BD /* MJExtensionConst.h in Headers */ = {isa = PBXBuildFile; fileRef = CAA886A17877F13CACC362267C18975D /* MJExtensionConst.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 582575125BD55FDF6B022C83E6D57414 /* RACSubject.h in Headers */ = {isa = PBXBuildFile; fileRef = 90D47D004B261B10EB65D9F403336742 /* RACSubject.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 5857D7331F535E55BE0260651348CEC3 /* RACEvent.m in Sources */ = {isa = PBXBuildFile; fileRef = A09DBA0292F567D6F52AAAD9C6430526 /* RACEvent.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; + 5864A26625028DA54B66904E1F3CB559 /* RACQueueScheduler+Subclass.h in Headers */ = {isa = PBXBuildFile; fileRef = 11ADA566099A0C86F81BCC2034C0DE15 /* RACQueueScheduler+Subclass.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 586B1D7E92AEC3C2462B5BA36B2D413B /* RACSequence.h in Headers */ = {isa = PBXBuildFile; fileRef = 33D1A9E562E03C58892F3B45AB3E946E /* RACSequence.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 5943324F179C6C962816A4712A889E0C /* AFHTTPSessionManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 2C6B606655F9CFAC168E519400032517 /* AFHTTPSessionManager.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; + 5991FB507FDD0F6C4D2EA204337EF426 /* RACTargetQueueScheduler.m in Sources */ = {isa = PBXBuildFile; fileRef = F0FCCF1F53756B076591F1B9385D7AFD /* RACTargetQueueScheduler.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; + 59C5DEA34359323178DC4924BFEDF256 /* MASShortcutView+Bindings.h in Headers */ = {isa = PBXBuildFile; fileRef = 9EE1DD698E397FDA3CAF658795EEB61F /* MASShortcutView+Bindings.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 5C4E3BEC68F14D2154A75E65160409AC /* MASPreferencesViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = AD36416299FD1BBB5C0715988BCAE464 /* MASPreferencesViewController.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 5CB0D9FA9418E1F8C6D5BB116C78DB6F /* NSControl+RACTextSignalSupport.h in Headers */ = {isa = PBXBuildFile; fileRef = 8B06FA4447823AF0F6F97B8E96B719A4 /* NSControl+RACTextSignalSupport.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 5EF9CEBC53E00075A9DA6DA100DB48C6 /* AFSecurityPolicy.m in Sources */ = {isa = PBXBuildFile; fileRef = 68073F3A5385DAF3DF77757ABF121769 /* AFSecurityPolicy.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; 603C9389FA7851613185C94F3D5661DD /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 0F323AD32ECF8E3A45048665333843F7 /* Cocoa.framework */; }; - 6057AA30197F38E7470EB7A7883C7F2A /* RACEmptySignal.h in Headers */ = {isa = PBXBuildFile; fileRef = CD0CE8091F29DA514128737230C612CC /* RACEmptySignal.h */; settings = {ATTRIBUTES = (Private, ); }; }; - 611C794AA62B56961EF8A4F24DF9755B /* Pods-EasydictTests-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 91595758B02C3B624DAEBA1FA94E413B /* Pods-EasydictTests-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 6130390A28FACC2AAB743924489049C0 /* MJProperty.h in Headers */ = {isa = PBXBuildFile; fileRef = 49D333909A2C5F4CF5744E9826782279 /* MJProperty.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 616261015BA6EAFD7A64CDF635586BE9 /* MASViewConstraint.m in Sources */ = {isa = PBXBuildFile; fileRef = B46735B6AD9CFD485F2F36966814C465 /* MASViewConstraint.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0 -w -Xanalyzer -analyzer-disable-all-checks"; }; }; - 620C987092D89C947D6D7D4B25437EC8 /* NSText+RACSignalSupport.m in Sources */ = {isa = PBXBuildFile; fileRef = 0A48CFE8CA54209405A5E197BDFF44E8 /* NSText+RACSignalSupport.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; - 621A85EEC558E827589BA680DE3CAC95 /* RACValueTransformer.m in Sources */ = {isa = PBXBuildFile; fileRef = 8E6579B862297A3105F758028C4CE24A /* RACValueTransformer.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; - 6255E01AD848E216F970969B14F11C8B /* NSObject+RACLifting.m in Sources */ = {isa = PBXBuildFile; fileRef = E442F06C25D8B6B426CBB6C89C886BCA /* NSObject+RACLifting.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; - 62A0A45228800D371EC22C888600851E /* NSInvocation+RACTypeParsing.h in Headers */ = {isa = PBXBuildFile; fileRef = E4F1541BDB16F27BA6F0C2688F2476FF /* NSInvocation+RACTypeParsing.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 65886C3F4D2DE9256A673D0C8320222A /* MJExtensionConst.m in Sources */ = {isa = PBXBuildFile; fileRef = D81D7B948909BEB85DD770ED751C4243 /* MJExtensionConst.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; - 662FA58BFBA87239B5EDAC3BF981D4A5 /* MASUtilities.h in Headers */ = {isa = PBXBuildFile; fileRef = 7C08299169CA9BD83017B7B59F68CF16 /* MASUtilities.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 6758F4C7DCD713527DBB69B197F5E1E3 /* MASShortcutView+Bindings.m in Sources */ = {isa = PBXBuildFile; fileRef = D53BD41AA0045629F9E21AED8248BD98 /* MASShortcutView+Bindings.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; - 67926EEACC4290F238C9C48C6C2D13B6 /* KVOController-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = AD7999B0B2CA11659D051ADD77667FC3 /* KVOController-dummy.m */; }; - 67AEE626250489F63A0BBE4D3C98855C /* NSLayoutConstraint+MASDebugAdditions.h in Headers */ = {isa = PBXBuildFile; fileRef = 926A1CC6C9257E0C7EC772049C078605 /* NSLayoutConstraint+MASDebugAdditions.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 68C57367CBE929943971836F2F6C4297 /* RACArraySequence.h in Headers */ = {isa = PBXBuildFile; fileRef = 7A058982E19B35D9A30A1DB2F438537F /* RACArraySequence.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 68DF57F8D5E78A535CB8C7143CAF7809 /* NSData+RACSupport.h in Headers */ = {isa = PBXBuildFile; fileRef = A5EC362E1F2C50AAB63BE616FF75E540 /* NSData+RACSupport.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 699F22C683CA2D29123075ED20D36F58 /* AFHTTPSessionManager.h in Headers */ = {isa = PBXBuildFile; fileRef = A19D78F3098F5DCD7B4D38F361578A3D /* AFHTTPSessionManager.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 6A7EDEB3C7193F1D6B7070A5CE21D6B3 /* RACImmediateScheduler.h in Headers */ = {isa = PBXBuildFile; fileRef = 235768C9B6D2BB036AA260D316EEEA23 /* RACImmediateScheduler.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 6AAB57091A8680E7F9C22AD25F70300B /* RACGroupedSignal.m in Sources */ = {isa = PBXBuildFile; fileRef = 36A1820562D6EB518F9F8E9C44FCEB26 /* RACGroupedSignal.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; - 6D819C516A1ED58B10AD4110F944A6C0 /* NSString+RACSupport.m in Sources */ = {isa = PBXBuildFile; fileRef = DDAB600F22ACF879AF6970A864283D94 /* NSString+RACSupport.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; - 6DD5D1A933244769CC0504FE934A68CA /* MASLocalization.h in Headers */ = {isa = PBXBuildFile; fileRef = 7F59BDF122A9F42050214141FFAB2B4D /* MASLocalization.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 6E4EC8B8ED1F08438208A9537C18FDB5 /* RACDynamicSignal.h in Headers */ = {isa = PBXBuildFile; fileRef = 413EE741F36EC72BA95233EC24BB57A5 /* RACDynamicSignal.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 6E5BA38F45C9B904BAA86970852F0A9E /* NSString+MJExtension.h in Headers */ = {isa = PBXBuildFile; fileRef = FD041E202696285EA282ACA120450EEC /* NSString+MJExtension.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 6E7E57D178AB07637DCE13FD1CC1D253 /* RACAnnotations.h in Headers */ = {isa = PBXBuildFile; fileRef = 81BB4D34E921252A4B804C3EEF36D80D /* RACAnnotations.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 6F06687AD781B41A7AFA0D88D2CB7E82 /* mz_strm_mem.c in Sources */ = {isa = PBXBuildFile; fileRef = 4D0C1E2DF96AF87CD082403955D63D61 /* mz_strm_mem.c */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; - 6FFF5D225862928BBE3242F61D2FFD6D /* MASConstraintMaker.h in Headers */ = {isa = PBXBuildFile; fileRef = 128C575834B7AF641488A4B7D14BDE25 /* MASConstraintMaker.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 7098D7E4487E9DA9B7ACBAEB1CE9E20C /* RACTupleSequence.m in Sources */ = {isa = PBXBuildFile; fileRef = 7AF76A72EDACF76B83A987300F16AB69 /* RACTupleSequence.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; - 710C42636E795A793DE3E99C42A95080 /* RACScheduler+Subclass.h in Headers */ = {isa = PBXBuildFile; fileRef = 2E1A79A15216D154086380AB33D0A16B /* RACScheduler+Subclass.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 71314239929D8F0CB31DD755C3F4187E /* JLRParsingUtilities.h in Headers */ = {isa = PBXBuildFile; fileRef = E8A5552D9DF3691F11882ABC9326C6AE /* JLRParsingUtilities.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 717704BD9C6A7612D0709A634AF70097 /* RACSignal+Operations.h in Headers */ = {isa = PBXBuildFile; fileRef = 94C6826C2F4F57056B6928E96D780AB0 /* RACSignal+Operations.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 7189A1BF2FC68A735BC4A983AAFF0A95 /* JLRRouteHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = CBEF9AE751BE99BBC6C80741A363B1A3 /* JLRRouteHandler.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 72022B481CDC49826D8692D64C090F95 /* Masonry-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 4881A1551F1A07AD17C3884F9AE45043 /* Masonry-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 76CDE97AAF5D3E001525455B10A407F0 /* NSEnumerator+RACSequenceAdditions.m in Sources */ = {isa = PBXBuildFile; fileRef = 035891E82881980F3859255DE4A9C50A /* NSEnumerator+RACSequenceAdditions.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; - 77116A50197ADFC6613300A7E187C4AE /* NSOrderedSet+RACSequenceAdditions.h in Headers */ = {isa = PBXBuildFile; fileRef = 846F179F49DCC7EB13A56ACA952123CD /* NSOrderedSet+RACSequenceAdditions.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 7729C11A2558C2471A8B8D58A874EE6A /* JLRRouteResponse.h in Headers */ = {isa = PBXBuildFile; fileRef = 5A04F5564F27D9A3D99A164E3DFD006C /* JLRRouteResponse.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 77E89ABBF0B14D029D55072153F36336 /* NSArray+MASShorthandAdditions.h in Headers */ = {isa = PBXBuildFile; fileRef = 340A35B02115D9632AB915465DE5C9AB /* NSArray+MASShorthandAdditions.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 79CAC0A0F92732E566C161D4E4EE7B14 /* NSNotificationCenter+RACSupport.m in Sources */ = {isa = PBXBuildFile; fileRef = 82692790B933698A73067C5495610CE0 /* NSNotificationCenter+RACSupport.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; - 7B835D47DE258886D4DE32448092B2E0 /* MASShortcutView.h in Headers */ = {isa = PBXBuildFile; fileRef = D6C3A70F2345025A640476CC65325F3B /* MASShortcutView.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 7C029376ECFAAF6EE34B547B6A8F98FD /* MASShortcutValidator.h in Headers */ = {isa = PBXBuildFile; fileRef = CDC4E2858F4AE0A39372DEF9328DE0C6 /* MASShortcutValidator.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 7DB2C0596405DB863CF2B2A489AE2636 /* mz_zip.h in Headers */ = {isa = PBXBuildFile; fileRef = 23A683C62A872F97EE9884056B8E8F25 /* mz_zip.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7EF822A9C4C636B72A8D8A75743B7BA1 /* MASShortcutMonitor.m in Sources */ = {isa = PBXBuildFile; fileRef = BCE7C4F1FC4DF03D0EB6E2BFB474A835 /* MASShortcutMonitor.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; - 7F37C2304C7B4695B6E155E75C6C2F35 /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 0F323AD32ECF8E3A45048665333843F7 /* Cocoa.framework */; }; - 7F58BE8838D03B2D5B30E68952FF1E4D /* SSZipArchive-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 57073B39F59577D7C24F2C8C9BC07FCB /* SSZipArchive-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 6057AA30197F38E7470EB7A7883C7F2A /* RACEmptySignal.h in Headers */ = {isa = PBXBuildFile; fileRef = 13A3C94CE26E870553A8A3C07CA30B57 /* RACEmptySignal.h */; settings = {ATTRIBUTES = (Private, ); }; }; + 60F7D8253F359283B31BC58A73AA70AD /* ru.lproj in Resources */ = {isa = PBXBuildFile; fileRef = 684929ACE56AE3580624ACE30CC449FA /* ru.lproj */; }; + 6130390A28FACC2AAB743924489049C0 /* MJProperty.h in Headers */ = {isa = PBXBuildFile; fileRef = 600DDBAD99DE6B05BE64FBF58452AFC6 /* MJProperty.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 616261015BA6EAFD7A64CDF635586BE9 /* MASViewConstraint.m in Sources */ = {isa = PBXBuildFile; fileRef = 65F6B1F59FB75CA17AF3F2A69F4B39CB /* MASViewConstraint.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0 -w -Xanalyzer -analyzer-disable-all-checks"; }; }; + 620C987092D89C947D6D7D4B25437EC8 /* NSText+RACSignalSupport.m in Sources */ = {isa = PBXBuildFile; fileRef = 7EF47CB28463C586B26B2991DB5B8480 /* NSText+RACSignalSupport.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; + 621A85EEC558E827589BA680DE3CAC95 /* RACValueTransformer.m in Sources */ = {isa = PBXBuildFile; fileRef = 99E497B8E5B34A08E9B954F44EFA8EA6 /* RACValueTransformer.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; + 6255E01AD848E216F970969B14F11C8B /* NSObject+RACLifting.m in Sources */ = {isa = PBXBuildFile; fileRef = 47CC1777B7155CF036F83A3AF8B6BB22 /* NSObject+RACLifting.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; + 62A0A45228800D371EC22C888600851E /* NSInvocation+RACTypeParsing.h in Headers */ = {isa = PBXBuildFile; fileRef = 5FDFC78F08EBC020DBD1C6D8C4A0C55A /* NSInvocation+RACTypeParsing.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 65886C3F4D2DE9256A673D0C8320222A /* MJExtensionConst.m in Sources */ = {isa = PBXBuildFile; fileRef = E4E5BBD9F6262ACB2685A9A0B6BA63CF /* MJExtensionConst.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; + 662FA58BFBA87239B5EDAC3BF981D4A5 /* MASUtilities.h in Headers */ = {isa = PBXBuildFile; fileRef = 67AC21D8CEFD70F19580760DB46C52F3 /* MASUtilities.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 6758F4C7DCD713527DBB69B197F5E1E3 /* MASShortcutView+Bindings.m in Sources */ = {isa = PBXBuildFile; fileRef = 98DA7C31845B11E5E9EBD831F28190FF /* MASShortcutView+Bindings.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; + 67926EEACC4290F238C9C48C6C2D13B6 /* KVOController-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 1AA4A61BEE93277F6D81303E6AA2487E /* KVOController-dummy.m */; }; + 67AEE626250489F63A0BBE4D3C98855C /* NSLayoutConstraint+MASDebugAdditions.h in Headers */ = {isa = PBXBuildFile; fileRef = B71D33A8AB4126FCB0ADA296093911BF /* NSLayoutConstraint+MASDebugAdditions.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 68C57367CBE929943971836F2F6C4297 /* RACArraySequence.h in Headers */ = {isa = PBXBuildFile; fileRef = 637CF36B361FC92C13AB4A54A4328CA4 /* RACArraySequence.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 68DF57F8D5E78A535CB8C7143CAF7809 /* NSData+RACSupport.h in Headers */ = {isa = PBXBuildFile; fileRef = E8CC0F06D34E00AD8B317D99FD7F01F9 /* NSData+RACSupport.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 699F22C683CA2D29123075ED20D36F58 /* AFHTTPSessionManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 38EC48346056ADBA21FD4503D6825E8B /* AFHTTPSessionManager.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 6A7EDEB3C7193F1D6B7070A5CE21D6B3 /* RACImmediateScheduler.h in Headers */ = {isa = PBXBuildFile; fileRef = 721DC296B9673576570113B47B8C4095 /* RACImmediateScheduler.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 6AAB57091A8680E7F9C22AD25F70300B /* RACGroupedSignal.m in Sources */ = {isa = PBXBuildFile; fileRef = DFB09FBA9611715413E83EF84786C7D9 /* RACGroupedSignal.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; + 6CCDDE6469F1EA9A57235BF0D9DE5774 /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 0F323AD32ECF8E3A45048665333843F7 /* Cocoa.framework */; }; + 6D819C516A1ED58B10AD4110F944A6C0 /* NSString+RACSupport.m in Sources */ = {isa = PBXBuildFile; fileRef = 6A8F378C18103DCA850A05EBFCE4E72D /* NSString+RACSupport.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; + 6DD5D1A933244769CC0504FE934A68CA /* MASLocalization.h in Headers */ = {isa = PBXBuildFile; fileRef = B9B75FA5CC7BE798947804D7024634AA /* MASLocalization.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 6E4EC8B8ED1F08438208A9537C18FDB5 /* RACDynamicSignal.h in Headers */ = {isa = PBXBuildFile; fileRef = C5221D021795CA36BD5947FC0168EE65 /* RACDynamicSignal.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 6E5BA38F45C9B904BAA86970852F0A9E /* NSString+MJExtension.h in Headers */ = {isa = PBXBuildFile; fileRef = C04939DBE13B5A909F833EFA2E579926 /* NSString+MJExtension.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 6E7E57D178AB07637DCE13FD1CC1D253 /* RACAnnotations.h in Headers */ = {isa = PBXBuildFile; fileRef = 0175E2A27E40ECB93F6CE0B80E0FA51C /* RACAnnotations.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 6FFF5D225862928BBE3242F61D2FFD6D /* MASConstraintMaker.h in Headers */ = {isa = PBXBuildFile; fileRef = 5625F93AE851A424B622A7AE18538527 /* MASConstraintMaker.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 7098D7E4487E9DA9B7ACBAEB1CE9E20C /* RACTupleSequence.m in Sources */ = {isa = PBXBuildFile; fileRef = D3A7AA25FCD790A199EEC597E269F9E1 /* RACTupleSequence.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; + 710C42636E795A793DE3E99C42A95080 /* RACScheduler+Subclass.h in Headers */ = {isa = PBXBuildFile; fileRef = AFED17BB38CF542660A6D3381ABBE5C0 /* RACScheduler+Subclass.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 71314239929D8F0CB31DD755C3F4187E /* JLRParsingUtilities.h in Headers */ = {isa = PBXBuildFile; fileRef = DA14B0FFEB38306B2D54B1626D742F3B /* JLRParsingUtilities.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 717704BD9C6A7612D0709A634AF70097 /* RACSignal+Operations.h in Headers */ = {isa = PBXBuildFile; fileRef = A057CDE29E056CE8AF865D1B8F7A7ADE /* RACSignal+Operations.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 7189A1BF2FC68A735BC4A983AAFF0A95 /* JLRRouteHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 7D4F58C235F070C7997D182C3ABB1E38 /* JLRRouteHandler.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 72022B481CDC49826D8692D64C090F95 /* Masonry-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = DD80013E393CE7349EA0CEAEFADB0437 /* Masonry-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 7484C7803CF324FB12F27C0C3AAC0C3B /* Pods-EasydictTests-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 91595758B02C3B624DAEBA1FA94E413B /* Pods-EasydictTests-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 76CDE97AAF5D3E001525455B10A407F0 /* NSEnumerator+RACSequenceAdditions.m in Sources */ = {isa = PBXBuildFile; fileRef = 41EADBE38E92458F65B7405E077B05B6 /* NSEnumerator+RACSequenceAdditions.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; + 77116A50197ADFC6613300A7E187C4AE /* NSOrderedSet+RACSequenceAdditions.h in Headers */ = {isa = PBXBuildFile; fileRef = B01D19A83232C1E4D8400AB254C4BB47 /* NSOrderedSet+RACSequenceAdditions.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 7729C11A2558C2471A8B8D58A874EE6A /* JLRRouteResponse.h in Headers */ = {isa = PBXBuildFile; fileRef = B2AEDEF7C9586A7261C207549FA53B92 /* JLRRouteResponse.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 77E89ABBF0B14D029D55072153F36336 /* NSArray+MASShorthandAdditions.h in Headers */ = {isa = PBXBuildFile; fileRef = 88CADD68D050BE1261C07FE417DD8F5B /* NSArray+MASShorthandAdditions.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 79CAC0A0F92732E566C161D4E4EE7B14 /* NSNotificationCenter+RACSupport.m in Sources */ = {isa = PBXBuildFile; fileRef = ABD9ABE326EC7D0AC6E288CA1EEF8983 /* NSNotificationCenter+RACSupport.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; + 7B835D47DE258886D4DE32448092B2E0 /* MASShortcutView.h in Headers */ = {isa = PBXBuildFile; fileRef = 2BA8DDD6894772E67D509F8D625D8578 /* MASShortcutView.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 7C029376ECFAAF6EE34B547B6A8F98FD /* MASShortcutValidator.h in Headers */ = {isa = PBXBuildFile; fileRef = BC40127846A28F86F1EC4CDCD51FD5D2 /* MASShortcutValidator.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 7EF822A9C4C636B72A8D8A75743B7BA1 /* MASShortcutMonitor.m in Sources */ = {isa = PBXBuildFile; fileRef = 1741DDBD8CCD946C9E079F964513420C /* MASShortcutMonitor.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; 7F59999179584A86DC8922AF1D751E96 /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 0F323AD32ECF8E3A45048665333843F7 /* Cocoa.framework */; }; - 81B0A880263E42B4A7682B8D656E9433 /* MJExtension-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = CFE7521AFD2F9FFA83E614CF7F297ADD /* MJExtension-dummy.m */; }; - 822C5A15A16A7B73568F2B5AA5DF8C19 /* RACMulticastConnection+Private.h in Headers */ = {isa = PBXBuildFile; fileRef = 295B643B3B451094875ED6572B069286 /* RACMulticastConnection+Private.h */; settings = {ATTRIBUTES = (Private, ); }; }; - 834348F0132529F12B348C26A4B3C46A /* RACBlockTrampoline.h in Headers */ = {isa = PBXBuildFile; fileRef = 0607129141DFB4E0910DC55B4B472AB2 /* RACBlockTrampoline.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 83F1B5B477C366CEB687307042F60FD3 /* RACReturnSignal.h in Headers */ = {isa = PBXBuildFile; fileRef = D29C5CE22070A151C7590227714FAA3D /* RACReturnSignal.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 8590AC8670A3A6156B48C56C3C2C9A8E /* View+MASAdditions.m in Sources */ = {isa = PBXBuildFile; fileRef = 38501F6013BF8A684B914F04E4A6ECD2 /* View+MASAdditions.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0 -w -Xanalyzer -analyzer-disable-all-checks"; }; }; - 865AF9D290E6170F37B1EFC3D530B9C9 /* MASViewConstraint.h in Headers */ = {isa = PBXBuildFile; fileRef = 25FB52B222431C8F3951EE96B92831FA /* MASViewConstraint.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 81B0A880263E42B4A7682B8D656E9433 /* MJExtension-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 6E6E01872C9281ADD015A35037ECEF69 /* MJExtension-dummy.m */; }; + 822C5A15A16A7B73568F2B5AA5DF8C19 /* RACMulticastConnection+Private.h in Headers */ = {isa = PBXBuildFile; fileRef = 703A69CB76ECF4F69270F3B3DD1F9EE1 /* RACMulticastConnection+Private.h */; settings = {ATTRIBUTES = (Private, ); }; }; + 834348F0132529F12B348C26A4B3C46A /* RACBlockTrampoline.h in Headers */ = {isa = PBXBuildFile; fileRef = ACD836DF5991AC95BA07C0B0A37FD771 /* RACBlockTrampoline.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 83F1B5B477C366CEB687307042F60FD3 /* RACReturnSignal.h in Headers */ = {isa = PBXBuildFile; fileRef = 196A53B1CFC100F355DF6945BFEF8AA2 /* RACReturnSignal.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 8590AC8670A3A6156B48C56C3C2C9A8E /* View+MASAdditions.m in Sources */ = {isa = PBXBuildFile; fileRef = AD20BF87C3E8D0A70DE4247BA7286001 /* View+MASAdditions.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0 -w -Xanalyzer -analyzer-disable-all-checks"; }; }; + 865AF9D290E6170F37B1EFC3D530B9C9 /* MASViewConstraint.h in Headers */ = {isa = PBXBuildFile; fileRef = D178922C21826738E65BAEBAEDF12E6C /* MASViewConstraint.h */; settings = {ATTRIBUTES = (Public, ); }; }; 8677BB28A889433C2632F2C1829F2F3A /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 0F323AD32ECF8E3A45048665333843F7 /* Cocoa.framework */; }; - 881F1FEB1A7C73462643B5E5B3F732CD /* AFURLResponseSerialization.h in Headers */ = {isa = PBXBuildFile; fileRef = D4F3365F25B91F31F507E495274F0564 /* AFURLResponseSerialization.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 886B4AC9B1FE36EFF7CD38820E10BFAD /* MJPropertyType.h in Headers */ = {isa = PBXBuildFile; fileRef = FECF3891D910C5D46B9078DBF08E5750 /* MJPropertyType.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 892AD72AE8798E957105491D1824792E /* RACGroupedSignal.h in Headers */ = {isa = PBXBuildFile; fileRef = F83D4A2B6988D0E617924122C02BBCA4 /* RACGroupedSignal.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 89C4A852D0FE33715E54587D9974FF59 /* Security.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 48B09F156C30EB6AFE10D8B6F39CD41A /* Security.framework */; }; - 8A0307588E78B40E788D91E74AB060B3 /* RACDynamicSequence.m in Sources */ = {isa = PBXBuildFile; fileRef = 29968854ADEEC081E416FCD95CA82C6F /* RACDynamicSequence.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; - 8AB091199F99F1C2E9E67030DAC50F6E /* mz_strm_mem.h in Headers */ = {isa = PBXBuildFile; fileRef = B688CAFCC80EE3E89C29BC388D85ACF9 /* mz_strm_mem.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8AFFCCF815D5B2928A26CFFCA51EBA4B /* RACStringSequence.h in Headers */ = {isa = PBXBuildFile; fileRef = CA59CA75D23229DAE15AC83EC856D1A7 /* RACStringSequence.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 8B52D38719C57490297531FC9E292934 /* RACSignalProvider.d in Sources */ = {isa = PBXBuildFile; fileRef = 70B2C3D2670844BC03CC32D6C32DBE75 /* RACSignalProvider.d */; }; + 881F1FEB1A7C73462643B5E5B3F732CD /* AFURLResponseSerialization.h in Headers */ = {isa = PBXBuildFile; fileRef = F403493C0E51FB0DFC829E48064496E3 /* AFURLResponseSerialization.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 886B4AC9B1FE36EFF7CD38820E10BFAD /* MJPropertyType.h in Headers */ = {isa = PBXBuildFile; fileRef = 693BCC41CA6AE081DCD74851DF36DD8A /* MJPropertyType.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 88E47D775FC3CD3D7E309D8C6742EC69 /* zh-Hans.lproj in Resources */ = {isa = PBXBuildFile; fileRef = 38435F790DF285E2BD4696B60E31EED7 /* zh-Hans.lproj */; }; + 892AD72AE8798E957105491D1824792E /* RACGroupedSignal.h in Headers */ = {isa = PBXBuildFile; fileRef = 0B2DA95C83C5CA0AD515305E0B4B5D5D /* RACGroupedSignal.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 8A0307588E78B40E788D91E74AB060B3 /* RACDynamicSequence.m in Sources */ = {isa = PBXBuildFile; fileRef = 0B3A24D332D9DF6EEF896D9724574BC9 /* RACDynamicSequence.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; + 8AFFCCF815D5B2928A26CFFCA51EBA4B /* RACStringSequence.h in Headers */ = {isa = PBXBuildFile; fileRef = 948964A755759E5C30E07FDB640F6070 /* RACStringSequence.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 8B52D38719C57490297531FC9E292934 /* RACSignalProvider.d in Sources */ = {isa = PBXBuildFile; fileRef = DA288F12EE641D34B1FA163FDFD0B1FA /* RACSignalProvider.d */; }; 8D1041565BCC3CD7C38D565F0AF0C746 /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 0F323AD32ECF8E3A45048665333843F7 /* Cocoa.framework */; }; - 8D215B9F6A2D5684D6AEA6A74DB0C471 /* RACErrorSignal.h in Headers */ = {isa = PBXBuildFile; fileRef = A478DDCC345699A1D673637E900F8876 /* RACErrorSignal.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 8D44796A8C9452BF189DDC32C423FA30 /* mz_zip.c in Sources */ = {isa = PBXBuildFile; fileRef = 226CB5E1CA301F90B10FD9CC776F7109 /* mz_zip.c */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; - 8D8BBB7738F7262E2634CB26FD06BE0A /* RACScheduler+Private.h in Headers */ = {isa = PBXBuildFile; fileRef = 08D3A36D9C7B46F61ACBF8611ECC2FDF /* RACScheduler+Private.h */; settings = {ATTRIBUTES = (Private, ); }; }; - 8E4E3DE7EA18A7E21A11AE50CFD47981 /* MASPreferences-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 2F670E262F0E26ABE059FAE3916C3832 /* MASPreferences-dummy.m */; }; - 8F4FEF0B88CCF7080DFED57647D91E18 /* AFSecurityPolicy.h in Headers */ = {isa = PBXBuildFile; fileRef = B2FD0BC98C622B100A8F6D8F7CD3E0BA /* AFSecurityPolicy.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 8FFAEC748E582309A35E1B2723DA9448 /* MASShortcutBinder.h in Headers */ = {isa = PBXBuildFile; fileRef = 06A54269231F4B308F60296D63548EE5 /* MASShortcutBinder.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 90DF670DC21B9EFD8DFEFC5081073963 /* mz_strm_buf.h in Headers */ = {isa = PBXBuildFile; fileRef = 61286529209102EE737D468F7983842F /* mz_strm_buf.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 93D8E710B07B1C24714594FB530E1FA4 /* RACSignalSequence.m in Sources */ = {isa = PBXBuildFile; fileRef = F3AE64F187FC7BFC5C519836528388CB /* RACSignalSequence.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; - 94040927102D7FFDE941DEA49AD6AF4D /* NSDictionary+RACSequenceAdditions.h in Headers */ = {isa = PBXBuildFile; fileRef = BD32A88F77BE0758015FA7AF56689478 /* NSDictionary+RACSequenceAdditions.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 9412894A7260A55BFDD408C03A81C3EF /* AFNetworkReachabilityManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 6615B856C726D9285A4B6E28EC715E3D /* AFNetworkReachabilityManager.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; - 95C652BC001664DA2FE8064F1EC6448C /* Pods-Easydict-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 0D610BCDDE18DC2909FCA3135208FAB9 /* Pods-Easydict-dummy.m */; }; - 9637BF06CC07088A0CC3D7757D1A6EE8 /* en.lproj in Resources */ = {isa = PBXBuildFile; fileRef = D3A9ADDAA5993DD679325321C8B3B15F /* en.lproj */; }; - 97244E3B5FF4E21DC23909491BEF2A18 /* NSObject+MJProperty.m in Sources */ = {isa = PBXBuildFile; fileRef = 151DCA05A362C7D04DA6A4EFD81422B6 /* NSObject+MJProperty.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; - 97AE4FB93C2E5F42EE079A132EE7F1D4 /* MASShortcutView.m in Sources */ = {isa = PBXBuildFile; fileRef = 459E3F873B837641B3177A57540015F5 /* MASShortcutView.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; - 98D7016BD808889A12E8F9E705A9EAFA /* RACSerialDisposable.m in Sources */ = {isa = PBXBuildFile; fileRef = 98FDD148C617A9476B89F9E78FD31C0E /* RACSerialDisposable.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; - 99C3157D6C24B6313766D8AC358CEAE4 /* MASShortcut-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 68A5FF61B74B2BB00EC1603A05425CBD /* MASShortcut-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 9A597A653561E72D78F469066B2895F1 /* AFNetworking-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 6D381FEE44416F6049833374438D085E /* AFNetworking-dummy.m */; }; - 9ABB1EE03E16CEA317C94740FA1E42D0 /* RACEmptySignal.m in Sources */ = {isa = PBXBuildFile; fileRef = 716E3308E33CDC048B309A9F4E435B11 /* RACEmptySignal.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; - 9BA289B9A97387364A7B455D8E6452B8 /* RACEXTKeyPathCoding.h in Headers */ = {isa = PBXBuildFile; fileRef = 43507C8D3ABAFC473084D1FB7428E2D4 /* RACEXTKeyPathCoding.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 8D215B9F6A2D5684D6AEA6A74DB0C471 /* RACErrorSignal.h in Headers */ = {isa = PBXBuildFile; fileRef = E977CF4DD4DC0D16BD175FAF40106B48 /* RACErrorSignal.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 8D8BBB7738F7262E2634CB26FD06BE0A /* RACScheduler+Private.h in Headers */ = {isa = PBXBuildFile; fileRef = E5C3C6580EE6475513CDADA12A1D56B8 /* RACScheduler+Private.h */; settings = {ATTRIBUTES = (Private, ); }; }; + 8E4E3DE7EA18A7E21A11AE50CFD47981 /* MASPreferences-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = D651BE9C05BA9013554CCDE43680CE87 /* MASPreferences-dummy.m */; }; + 8F4FEF0B88CCF7080DFED57647D91E18 /* AFSecurityPolicy.h in Headers */ = {isa = PBXBuildFile; fileRef = D24F0B1C0005B76FF49DA21B2D9A673E /* AFSecurityPolicy.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 8FFAEC748E582309A35E1B2723DA9448 /* MASShortcutBinder.h in Headers */ = {isa = PBXBuildFile; fileRef = B4FFE4D8F4F7A71CE950B4E92395913D /* MASShortcutBinder.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 928265A6EFF9056246732CBB45311D9D /* pt.lproj in Resources */ = {isa = PBXBuildFile; fileRef = 934BDB24FA9C8A92FBA878383A672CF4 /* pt.lproj */; }; + 92D044D57D3E990695C6AABD6D7969C4 /* es.lproj in Resources */ = {isa = PBXBuildFile; fileRef = 91A7DD4172A033191FD66C63275D0DF8 /* es.lproj */; }; + 93D8E710B07B1C24714594FB530E1FA4 /* RACSignalSequence.m in Sources */ = {isa = PBXBuildFile; fileRef = D0584BA0761EEB3C48E3013C17111CBF /* RACSignalSequence.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; + 94040927102D7FFDE941DEA49AD6AF4D /* NSDictionary+RACSequenceAdditions.h in Headers */ = {isa = PBXBuildFile; fileRef = 5FB67B384497FD2084C365BEF63C8041 /* NSDictionary+RACSequenceAdditions.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 9412894A7260A55BFDD408C03A81C3EF /* AFNetworkReachabilityManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 045F7038CBFE8E86B42AF4ABEB1497D9 /* AFNetworkReachabilityManager.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; + 97244E3B5FF4E21DC23909491BEF2A18 /* NSObject+MJProperty.m in Sources */ = {isa = PBXBuildFile; fileRef = 99AA657F879F25B6FC467E19D0F77123 /* NSObject+MJProperty.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; + 97AE4FB93C2E5F42EE079A132EE7F1D4 /* MASShortcutView.m in Sources */ = {isa = PBXBuildFile; fileRef = 521ED242874317D9E20EC77CCA09ED73 /* MASShortcutView.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; + 98D7016BD808889A12E8F9E705A9EAFA /* RACSerialDisposable.m in Sources */ = {isa = PBXBuildFile; fileRef = D945988E2461D8A7A1AAFD0DC7B36714 /* RACSerialDisposable.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; + 99C3157D6C24B6313766D8AC358CEAE4 /* MASShortcut-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 93DF1638CD2F8B386BDC015BF9818839 /* MASShortcut-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 9A597A653561E72D78F469066B2895F1 /* AFNetworking-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 9900F43FA4AC6CE9C5F6E70AC70DA0A4 /* AFNetworking-dummy.m */; }; + 9ABB1EE03E16CEA317C94740FA1E42D0 /* RACEmptySignal.m in Sources */ = {isa = PBXBuildFile; fileRef = 2EE79DFB54C2C8C73B2BD37E27B171B8 /* RACEmptySignal.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; + 9BA289B9A97387364A7B455D8E6452B8 /* RACEXTKeyPathCoding.h in Headers */ = {isa = PBXBuildFile; fileRef = DB34F13FFE77DA49C8C0734D0689FAFE /* RACEXTKeyPathCoding.h */; settings = {ATTRIBUTES = (Public, ); }; }; 9C833CC525D852B80C82F3F4CFC7E889 /* Security.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 48B09F156C30EB6AFE10D8B6F39CD41A /* Security.framework */; }; - 9E0F4BFEB3736B96D2E36B0E31B37F5B /* MASConstraint.h in Headers */ = {isa = PBXBuildFile; fileRef = 29592FC3A405A65EBCC5AECC54D4BE7E /* MASConstraint.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 9E75571BABA8A9EF2AA615B065BEF700 /* RACScheduler.m in Sources */ = {isa = PBXBuildFile; fileRef = 01B8CBD83AAD15DE764E70D5AB6BDDAE /* RACScheduler.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; - 9EC0C540EC73C9BBEFEE86715ECFBB53 /* Masonry.h in Headers */ = {isa = PBXBuildFile; fileRef = 620144C2AA25D3F3D017917BFA686CC4 /* Masonry.h */; settings = {ATTRIBUTES = (Public, ); }; }; - A0301AED7E0391CEDD4C30D8DF6A1B1C /* NSString+MJExtension.m in Sources */ = {isa = PBXBuildFile; fileRef = 3385FA273DD81AEB562BD1B53EF077E0 /* NSString+MJExtension.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; - A05DB2FB1D83C0D2421A24F161B885AA /* FBKVOController.h in Headers */ = {isa = PBXBuildFile; fileRef = C00AB13CB375F7D0794451AB9060A98D /* FBKVOController.h */; settings = {ATTRIBUTES = (Public, ); }; }; - A0C286BD41AE2F2CC527F45DFCD4A2E6 /* MASViewAttribute.m in Sources */ = {isa = PBXBuildFile; fileRef = BC74694C5096865EBBDBD58285005F78 /* MASViewAttribute.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0 -w -Xanalyzer -analyzer-disable-all-checks"; }; }; - A22F05D6BA16470C55E1012F26456DDC /* RACDelegateProxy.m in Sources */ = {isa = PBXBuildFile; fileRef = CDFA99DD1AD6EC7F5072DEC4D7F787A8 /* RACDelegateProxy.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; - A2EC812DC322E4BDDC772EA662DB0A87 /* RACDisposable.m in Sources */ = {isa = PBXBuildFile; fileRef = B7E6E289148DCAA48BC8D8BF5C4FE76E /* RACDisposable.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; - A36B349F4F080AAA4038E80CBFCD0140 /* NSObject+MJClass.h in Headers */ = {isa = PBXBuildFile; fileRef = 6645A0CE1E3C5478AA7982BAF791BDCF /* NSObject+MJClass.h */; settings = {ATTRIBUTES = (Public, ); }; }; - A3DC32B52A76CF168FE0D0171CD7ED45 /* mz_strm_zlib.c in Sources */ = {isa = PBXBuildFile; fileRef = 38C6264B258FF2892BA9D346FD2711E5 /* mz_strm_zlib.c */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; - A3EB36BC1B7ADA57B83261D66743A1F6 /* NSObject+RACDeallocating.h in Headers */ = {isa = PBXBuildFile; fileRef = 875F719626D7F2DF25BD26359B4FA87B /* NSObject+RACDeallocating.h */; settings = {ATTRIBUTES = (Public, ); }; }; - A4387C455B8DFBCC22948EB90FD613C8 /* RACSubject.m in Sources */ = {isa = PBXBuildFile; fileRef = C1A042E79D77332C13D6C666D653725E /* RACSubject.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; - A4E0666FA7CB73704AFAE5A087AD02B6 /* RACIndexSetSequence.h in Headers */ = {isa = PBXBuildFile; fileRef = BC8A04E7111611A5468D1454BBDB8220 /* RACIndexSetSequence.h */; settings = {ATTRIBUTES = (Public, ); }; }; - A4F447FA7122B13300BD80CE080444F7 /* mz_strm.h in Headers */ = {isa = PBXBuildFile; fileRef = 23C28DFCB6E8C23632EE8F43E49780DA /* mz_strm.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A60BCBFD6EABE3B6D02BB8C7C26E97EC /* RACIndexSetSequence.m in Sources */ = {isa = PBXBuildFile; fileRef = F92CAE3E54A2473FE0662CC4BBF3E748 /* RACIndexSetSequence.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; - A60C18305C35802FCC00D5E69B018D95 /* mz_strm_split.c in Sources */ = {isa = PBXBuildFile; fileRef = 72C81751CF5581713501BEC1246357D2 /* mz_strm_split.c */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; - A6A6DD308EF1383CF3739A4431B6BC99 /* RACSubscriber.m in Sources */ = {isa = PBXBuildFile; fileRef = BA59FC60786FF05E81B0337B81408529 /* RACSubscriber.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; - A938F21CAC87C5F8AADEF955F9127E3A /* MASPreferencesWindowController.h in Headers */ = {isa = PBXBuildFile; fileRef = 4BCFE3AA9E307F6B095BC638B94A50D1 /* MASPreferencesWindowController.h */; settings = {ATTRIBUTES = (Public, ); }; }; - A9B6C5BB3BBDA9138B560342263FC7B8 /* AFNetworking-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = B7E6D464AFD4D38BAAC9340D7EBD59B9 /* AFNetworking-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; - AA931561A4727F3976D057564447B2D1 /* mz_strm_os_posix.c in Sources */ = {isa = PBXBuildFile; fileRef = 368A2D3BE7237BA2678CF5510612D6F4 /* mz_strm_os_posix.c */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; - AAB0384853C90088036B7501CA8ACFE0 /* mz_crypt.h in Headers */ = {isa = PBXBuildFile; fileRef = 26906DA0496FD418D57C840FA0EF93FA /* mz_crypt.h */; settings = {ATTRIBUTES = (Project, ); }; }; - AC437AB3F30FD2D50B2F02256A50BC22 /* NSObject+MJProperty.h in Headers */ = {isa = PBXBuildFile; fileRef = 37024FBC697C96FBF720F5C5BB214F9F /* NSObject+MJProperty.h */; settings = {ATTRIBUTES = (Public, ); }; }; - AF68A38290AA2FA3DAFAD968E4E06B1F /* RACQueueScheduler.m in Sources */ = {isa = PBXBuildFile; fileRef = 5D5A65DD3ED6D5DA0339CEA9AF3A51C4 /* RACQueueScheduler.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; - AF961BC9B2EE1D8F1CE78A2EF19FFF59 /* RACEmptySequence.m in Sources */ = {isa = PBXBuildFile; fileRef = 30E5A78FBC414D88E9F3199D4D8A6F0A /* RACEmptySequence.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; - B015C7268EA03D4122EDBA6E58F857A9 /* it.lproj in Resources */ = {isa = PBXBuildFile; fileRef = EB668F1847CE9D5D3354021964AEA33D /* it.lproj */; }; - B01D0C7640BCE16285879367A57428D0 /* ViewController+MASAdditions.h in Headers */ = {isa = PBXBuildFile; fileRef = DD4C820CA44D4CCB8F3993123BC088F1 /* ViewController+MASAdditions.h */; settings = {ATTRIBUTES = (Public, ); }; }; - B2C4971593724BBCC6DA58B5D01D1102 /* RACTargetQueueScheduler.h in Headers */ = {isa = PBXBuildFile; fileRef = 02FB62328B696434E56607ADF9A188BC /* RACTargetQueueScheduler.h */; settings = {ATTRIBUTES = (Public, ); }; }; - B2D767077E12511712E5AAF1783BFDB1 /* View+MASShorthandAdditions.h in Headers */ = {isa = PBXBuildFile; fileRef = 51943BCC23D2FBAD2734442837DCEEE5 /* View+MASShorthandAdditions.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 9C9BBEE903057FBB0A560B0D752C43F6 /* en.lproj in Resources */ = {isa = PBXBuildFile; fileRef = CCCFE646EAFC5D1508BF29DC58EF2F45 /* en.lproj */; }; + 9E0F4BFEB3736B96D2E36B0E31B37F5B /* MASConstraint.h in Headers */ = {isa = PBXBuildFile; fileRef = 35F2945E22A96ED6C55B5A9BB42A4CB2 /* MASConstraint.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 9E75571BABA8A9EF2AA615B065BEF700 /* RACScheduler.m in Sources */ = {isa = PBXBuildFile; fileRef = 8A5B2722E81669D7E064E8258636315D /* RACScheduler.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; + 9EC0C540EC73C9BBEFEE86715ECFBB53 /* Masonry.h in Headers */ = {isa = PBXBuildFile; fileRef = 7EB44E29D432DEF742D5E4B088F7211E /* Masonry.h */; settings = {ATTRIBUTES = (Public, ); }; }; + A0301AED7E0391CEDD4C30D8DF6A1B1C /* NSString+MJExtension.m in Sources */ = {isa = PBXBuildFile; fileRef = CFF0DDC9C9A1595390EE7D1074CF59EC /* NSString+MJExtension.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; + A05DB2FB1D83C0D2421A24F161B885AA /* FBKVOController.h in Headers */ = {isa = PBXBuildFile; fileRef = 9E564116F17AF80AE09123FBF77646E4 /* FBKVOController.h */; settings = {ATTRIBUTES = (Public, ); }; }; + A0C286BD41AE2F2CC527F45DFCD4A2E6 /* MASViewAttribute.m in Sources */ = {isa = PBXBuildFile; fileRef = 6746F16048E61E9228198C90B125454C /* MASViewAttribute.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0 -w -Xanalyzer -analyzer-disable-all-checks"; }; }; + A22F05D6BA16470C55E1012F26456DDC /* RACDelegateProxy.m in Sources */ = {isa = PBXBuildFile; fileRef = 327D5C19692CFE8D5019828621A7C75E /* RACDelegateProxy.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; + A2EC812DC322E4BDDC772EA662DB0A87 /* RACDisposable.m in Sources */ = {isa = PBXBuildFile; fileRef = 64FC5B89973A9BBA2E34B86493690D6E /* RACDisposable.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; + A36B349F4F080AAA4038E80CBFCD0140 /* NSObject+MJClass.h in Headers */ = {isa = PBXBuildFile; fileRef = 2899D6AB3E186AC9F9F070EEF648B279 /* NSObject+MJClass.h */; settings = {ATTRIBUTES = (Public, ); }; }; + A3EB36BC1B7ADA57B83261D66743A1F6 /* NSObject+RACDeallocating.h in Headers */ = {isa = PBXBuildFile; fileRef = 4D2E4C3D2273815903523951768C1EB5 /* NSObject+RACDeallocating.h */; settings = {ATTRIBUTES = (Public, ); }; }; + A4387C455B8DFBCC22948EB90FD613C8 /* RACSubject.m in Sources */ = {isa = PBXBuildFile; fileRef = 0F12A6A6708A56022FC8CADA2707E730 /* RACSubject.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; + A4E0666FA7CB73704AFAE5A087AD02B6 /* RACIndexSetSequence.h in Headers */ = {isa = PBXBuildFile; fileRef = D596C7C7A1ADCBD775547A10BCB57046 /* RACIndexSetSequence.h */; settings = {ATTRIBUTES = (Public, ); }; }; + A60BCBFD6EABE3B6D02BB8C7C26E97EC /* RACIndexSetSequence.m in Sources */ = {isa = PBXBuildFile; fileRef = 3B81FE1A497A608EDF5A5DA65E3F2CFA /* RACIndexSetSequence.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; + A6A6DD308EF1383CF3739A4431B6BC99 /* RACSubscriber.m in Sources */ = {isa = PBXBuildFile; fileRef = 3192BF46419BDAAF9DE20D46F683F244 /* RACSubscriber.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; + A938F21CAC87C5F8AADEF955F9127E3A /* MASPreferencesWindowController.h in Headers */ = {isa = PBXBuildFile; fileRef = 50AEE34E616CCE18C9AF677539B4954E /* MASPreferencesWindowController.h */; settings = {ATTRIBUTES = (Public, ); }; }; + A9B6C5BB3BBDA9138B560342263FC7B8 /* AFNetworking-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 6E89CCDD82841225308C2BE76B785C66 /* AFNetworking-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; + AC437AB3F30FD2D50B2F02256A50BC22 /* NSObject+MJProperty.h in Headers */ = {isa = PBXBuildFile; fileRef = F8EF09C7490DF0F896C3C93D42AB6E55 /* NSObject+MJProperty.h */; settings = {ATTRIBUTES = (Public, ); }; }; + AF68A38290AA2FA3DAFAD968E4E06B1F /* RACQueueScheduler.m in Sources */ = {isa = PBXBuildFile; fileRef = B629F9A2136903DCADF4EE76CCFB076D /* RACQueueScheduler.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; + AF961BC9B2EE1D8F1CE78A2EF19FFF59 /* RACEmptySequence.m in Sources */ = {isa = PBXBuildFile; fileRef = F6D6705C49D1560E5CE8C34ECB7DAAAB /* RACEmptySequence.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; + B01D0C7640BCE16285879367A57428D0 /* ViewController+MASAdditions.h in Headers */ = {isa = PBXBuildFile; fileRef = E634CF76AABF8CB7B9A7E048DD956E87 /* ViewController+MASAdditions.h */; settings = {ATTRIBUTES = (Public, ); }; }; + B18164010E8FD712C57DD0585257FE75 /* MASPreferencesWindow.xib in Resources */ = {isa = PBXBuildFile; fileRef = CA857A6B18656D3B59DE5A526792F775 /* MASPreferencesWindow.xib */; }; + B2C4971593724BBCC6DA58B5D01D1102 /* RACTargetQueueScheduler.h in Headers */ = {isa = PBXBuildFile; fileRef = 123B1CEAB1F94CCF67D0A975CD375F8C /* RACTargetQueueScheduler.h */; settings = {ATTRIBUTES = (Public, ); }; }; + B2D767077E12511712E5AAF1783BFDB1 /* View+MASShorthandAdditions.h in Headers */ = {isa = PBXBuildFile; fileRef = DD65E7CAED8DD43572BFE54E4AAD3FE2 /* View+MASShorthandAdditions.h */; settings = {ATTRIBUTES = (Public, ); }; }; B43CC37C065E2EAAACF54568F9271A81 /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 0F323AD32ECF8E3A45048665333843F7 /* Cocoa.framework */; }; - B445F07005215B37980C2A024EEC2A2E /* JLRRouteResponse.m in Sources */ = {isa = PBXBuildFile; fileRef = A93B6DB6579CD1E4E9664A3F268C2DD4 /* JLRRouteResponse.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; - B621412F4D9B7E8AC1F0ACF90BAFF505 /* pl.lproj in Resources */ = {isa = PBXBuildFile; fileRef = A208E5B876E66872B70583BEAFCBE6C8 /* pl.lproj */; }; - B73EBD50A470C45CC087FB7F6C1FFEEF /* cs.lproj in Resources */ = {isa = PBXBuildFile; fileRef = 52719F8460A684A76AC0C5B5988E5621 /* cs.lproj */; }; - B79696D30B3F5191904052EAF05C2151 /* NSObject+RACAppKitBindings.m in Sources */ = {isa = PBXBuildFile; fileRef = 5F8027EC1C0D5375041AD2A137EEB57F /* NSObject+RACAppKitBindings.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; + B445F07005215B37980C2A024EEC2A2E /* JLRRouteResponse.m in Sources */ = {isa = PBXBuildFile; fileRef = D9F48EF2A4F07A1C694E759F94C2AE73 /* JLRRouteResponse.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; + B50DC151AB020394FE7F96FF6093B05C /* sv.lproj in Resources */ = {isa = PBXBuildFile; fileRef = 46635DC58FF9895EC898A65F2FBB1EF5 /* sv.lproj */; }; + B79696D30B3F5191904052EAF05C2151 /* NSObject+RACAppKitBindings.m in Sources */ = {isa = PBXBuildFile; fileRef = 4504265EE89A55949D98E758BFA4D542 /* NSObject+RACAppKitBindings.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; B7FE21CBE9E55AAB77769EF33369909B /* MASPreferences-MASPreferences in Resources */ = {isa = PBXBuildFile; fileRef = 9D635ACBDB58BEC168F692A7F0132B89 /* MASPreferences-MASPreferences */; }; - B843C29FE9D5BCCD42B4DC51141173B4 /* RACChannel.m in Sources */ = {isa = PBXBuildFile; fileRef = 5FFAB8FF179D88F4422219940A99BA2A /* RACChannel.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; - B9081AED27E3F943F19570A6153FC4BE /* RACmetamacros.h in Headers */ = {isa = PBXBuildFile; fileRef = B5F839408F6CAC9C4C6F7FE64AB25811 /* RACmetamacros.h */; settings = {ATTRIBUTES = (Public, ); }; }; - BBC91B120FC65DB57C4DDAD9C9A57F79 /* zh-Hant.lproj in Resources */ = {isa = PBXBuildFile; fileRef = 6B6E56C0C5CAA3DC7F9D53957B4AA419 /* zh-Hant.lproj */; }; + B843C29FE9D5BCCD42B4DC51141173B4 /* RACChannel.m in Sources */ = {isa = PBXBuildFile; fileRef = 9ACC057F3DF81B44862CA6FEA49DD1AC /* RACChannel.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; + B9081AED27E3F943F19570A6153FC4BE /* RACmetamacros.h in Headers */ = {isa = PBXBuildFile; fileRef = 57332336D3C571B3F1628C476FA358CA /* RACmetamacros.h */; settings = {ATTRIBUTES = (Public, ); }; }; BC37334FECA38F44C28F422B0364387A /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = A2D2EDD4A1DFEE11C6B812AE906708F7 /* Foundation.framework */; }; BD227A88D50B87748A8DB3C7D5C73656 /* MASShortcut-MASShortcut in Resources */ = {isa = PBXBuildFile; fileRef = 230F8208BE63C052A548A7D41A1158B2 /* MASShortcut-MASShortcut */; }; - BDEA39690C9B32888031D9507233D855 /* NSURLConnection+RACSupport.h in Headers */ = {isa = PBXBuildFile; fileRef = 72EF521FA8383B6F1C1CBDFA52EE7950 /* NSURLConnection+RACSupport.h */; settings = {ATTRIBUTES = (Public, ); }; }; - BED8E888D106997872D17351EDCAD07D /* NSString+RACKeyPathUtilities.m in Sources */ = {isa = PBXBuildFile; fileRef = 17D98B957F144340F389E104ABCA1D56 /* NSString+RACKeyPathUtilities.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; - BEF4CC97D88ADCD73B93AA179F7E1802 /* mz_compat.h in Headers */ = {isa = PBXBuildFile; fileRef = 594C5095125F7E5658E5C02A20CF9733 /* mz_compat.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C045F6A0277C6F70BFF8A833F50D7572 /* RACTestScheduler.h in Headers */ = {isa = PBXBuildFile; fileRef = B66C7DC87A617EA53576577061FA5D94 /* RACTestScheduler.h */; settings = {ATTRIBUTES = (Public, ); }; }; - C29320E20783BC40176A01DAD5E4EDAC /* RACCommand.m in Sources */ = {isa = PBXBuildFile; fileRef = C60E24E3F12C817C3790D45198FD6822 /* RACCommand.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; - C30DB8F46569FBD4D1C7D7DA0E4B67EC /* mz_zip_rw.h in Headers */ = {isa = PBXBuildFile; fileRef = FDC03639C313753B54F2142A36AB8858 /* mz_zip_rw.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C3D87040A83EA6075D62B4CDB7652116 /* NSObject+MJClass.m in Sources */ = {isa = PBXBuildFile; fileRef = B073007D5FFAA6E7ADF88B33629692E3 /* NSObject+MJClass.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; - C404C936161582DD236AC6C32EB0A44E /* RACDisposable.h in Headers */ = {isa = PBXBuildFile; fileRef = 422A5D9CCCC36853D97C2AED5183B961 /* RACDisposable.h */; settings = {ATTRIBUTES = (Public, ); }; }; - C4ACA2B5F2401FB69256E2538A2CDA61 /* de.lproj in Resources */ = {isa = PBXBuildFile; fileRef = 219BC9071C938B548B27D56CCCD25A10 /* de.lproj */; }; - C50E4AEAA79D1607A1303F7A63AA4392 /* RACSignal.m in Sources */ = {isa = PBXBuildFile; fileRef = CFDE6039672EB53E2E683BD443AB497E /* RACSignal.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; - C633E62BE35A79083D0CFAD950438D06 /* MJFoundation.m in Sources */ = {isa = PBXBuildFile; fileRef = BECF1683BCF91A2D3E887F10837EEFD2 /* MJFoundation.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; - C6A6D25BCCBF4F4781E49D0C676F9818 /* ReactiveObjC-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 3ECACE3802917EAC82D240F725FA72B2 /* ReactiveObjC-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; - C6FB12795146624A3745348B3897939B /* RACTestScheduler.m in Sources */ = {isa = PBXBuildFile; fileRef = 9BDF24E978E474E8A122626EF734A512 /* RACTestScheduler.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; - CB96DD5B6FCE2C32103DFB6178837A93 /* AFURLResponseSerialization.m in Sources */ = {isa = PBXBuildFile; fileRef = BC51DC635DD1FD5B5F28C51BEA7619CB /* AFURLResponseSerialization.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; - CC98B80E4E01EEE45C3DE01882693891 /* RACKVOTrampoline.m in Sources */ = {isa = PBXBuildFile; fileRef = 0A880ACBAD29187737609905B745C564 /* RACKVOTrampoline.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; - CCD4362E8522B5BC2820666098E91B93 /* NSObject+MJCoding.h in Headers */ = {isa = PBXBuildFile; fileRef = 3EB2470CCE5F2258FDD2C06B099A3B5F /* NSObject+MJCoding.h */; settings = {ATTRIBUTES = (Public, ); }; }; - CD48B797D8CD59CF9DFD83DD38EF93A0 /* MASShortcut.m in Sources */ = {isa = PBXBuildFile; fileRef = 9D5F87FEF30CFCDCEFE8C8715AC22428 /* MASShortcut.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; - CD88789CEEB96BE0A419250A0CBD0636 /* mz_compat.c in Sources */ = {isa = PBXBuildFile; fileRef = 8E951F8C0F789EE8E400BECFC1B94DA1 /* mz_compat.c */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; - CE01329411A643C3D8BEBF2CDF7F4AD3 /* NSObject+RACPropertySubscribing.h in Headers */ = {isa = PBXBuildFile; fileRef = DE02345D983EF1A5407DE960D1953F0E /* NSObject+RACPropertySubscribing.h */; settings = {ATTRIBUTES = (Public, ); }; }; - CE61BE07A118F709EAAFD0B1890FBD2F /* ZipArchive.h in Headers */ = {isa = PBXBuildFile; fileRef = 7D13721FF857EAF2519382E9447F2C6E /* ZipArchive.h */; settings = {ATTRIBUTES = (Public, ); }; }; - CE9F398B1DAD84FEA79B6E830A05E852 /* MJExtension-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = EC87567D30217F5DDE75A0588A061023 /* MJExtension-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; - CEA22B67F1AC2CA252B0FFA43C429B90 /* RACSubscriber.h in Headers */ = {isa = PBXBuildFile; fileRef = 7CB6C6457F9821C840ECFDF00986E0A2 /* RACSubscriber.h */; settings = {ATTRIBUTES = (Public, ); }; }; - D2B90BAE847AE8FEC37D87D24E324863 /* View+MASAdditions.h in Headers */ = {isa = PBXBuildFile; fileRef = D81C916B1D3B8E2803F7AEDF2B2010D8 /* View+MASAdditions.h */; settings = {ATTRIBUTES = (Public, ); }; }; - D3BE1FD3043309DAF610AC08ACE160D2 /* MASPreferences.h in Headers */ = {isa = PBXBuildFile; fileRef = 603433905598D812A7478E82564BF21F /* MASPreferences.h */; settings = {ATTRIBUTES = (Public, ); }; }; - D49FEE7B31C8EE134E0A15331DF86564 /* NSFileHandle+RACSupport.h in Headers */ = {isa = PBXBuildFile; fileRef = FEAA8C98B55D87008F5FA84C499879B3 /* NSFileHandle+RACSupport.h */; settings = {ATTRIBUTES = (Public, ); }; }; - D4C959ABE1AF2C19B1CCE80E18A4D8C3 /* NSSet+RACSequenceAdditions.h in Headers */ = {isa = PBXBuildFile; fileRef = 37CB2D561A3965EE329526B28CB60C6B /* NSSet+RACSequenceAdditions.h */; settings = {ATTRIBUTES = (Public, ); }; }; - D6B9216743757D8CCF0DC1BAFAAEFBE6 /* MJPropertyKey.h in Headers */ = {isa = PBXBuildFile; fileRef = B959E0305FF3B067E46E24340728FAE8 /* MJPropertyKey.h */; settings = {ATTRIBUTES = (Public, ); }; }; - D6DFB6F5115E9971FCD81C378255F6A7 /* RACErrorSignal.m in Sources */ = {isa = PBXBuildFile; fileRef = 83DDB72A11FC177EF9AEC13773F147C1 /* RACErrorSignal.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; - D75921CECF780F790933BD025E2811C0 /* RACScopedDisposable.h in Headers */ = {isa = PBXBuildFile; fileRef = 99DF50C0D71D7A7943C3E00F3DAD0366 /* RACScopedDisposable.h */; settings = {ATTRIBUTES = (Public, ); }; }; + BDEA39690C9B32888031D9507233D855 /* NSURLConnection+RACSupport.h in Headers */ = {isa = PBXBuildFile; fileRef = FADE81D60C709CEB8F78AF3CFFEDBB13 /* NSURLConnection+RACSupport.h */; settings = {ATTRIBUTES = (Public, ); }; }; + BED8E888D106997872D17351EDCAD07D /* NSString+RACKeyPathUtilities.m in Sources */ = {isa = PBXBuildFile; fileRef = 2854A514B6E210ADBAE3D2DD47C43532 /* NSString+RACKeyPathUtilities.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; + C045F6A0277C6F70BFF8A833F50D7572 /* RACTestScheduler.h in Headers */ = {isa = PBXBuildFile; fileRef = 8D090957A33F33D4EACE904ABCD322E6 /* RACTestScheduler.h */; settings = {ATTRIBUTES = (Public, ); }; }; + C29320E20783BC40176A01DAD5E4EDAC /* RACCommand.m in Sources */ = {isa = PBXBuildFile; fileRef = C338BC8F6C32D66BE1110D7C20EF815C /* RACCommand.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; + C3D87040A83EA6075D62B4CDB7652116 /* NSObject+MJClass.m in Sources */ = {isa = PBXBuildFile; fileRef = 928C0B77481831CA04347484C68D1646 /* NSObject+MJClass.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; + C404C936161582DD236AC6C32EB0A44E /* RACDisposable.h in Headers */ = {isa = PBXBuildFile; fileRef = 90FBE6CB793F698D6B87D4432831BD99 /* RACDisposable.h */; settings = {ATTRIBUTES = (Public, ); }; }; + C4B3C1DEC971329465B12B3D1F07C39B /* fr.lproj in Resources */ = {isa = PBXBuildFile; fileRef = 871782758F1BDABA53844F5B77A1BB8F /* fr.lproj */; }; + C50E4AEAA79D1607A1303F7A63AA4392 /* RACSignal.m in Sources */ = {isa = PBXBuildFile; fileRef = 51B7E8EDE24955CC93FED246F4F9C0EE /* RACSignal.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; + C633E62BE35A79083D0CFAD950438D06 /* MJFoundation.m in Sources */ = {isa = PBXBuildFile; fileRef = ADDF104BB27C1F5E1498DA5687684824 /* MJFoundation.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; + C6A6D25BCCBF4F4781E49D0C676F9818 /* ReactiveObjC-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 04E837A3F5A899D7092E76AB85A05AF3 /* ReactiveObjC-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; + C6FB12795146624A3745348B3897939B /* RACTestScheduler.m in Sources */ = {isa = PBXBuildFile; fileRef = 14F74B08DC54FBC3238B20FDADF379C9 /* RACTestScheduler.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; + CB96DD5B6FCE2C32103DFB6178837A93 /* AFURLResponseSerialization.m in Sources */ = {isa = PBXBuildFile; fileRef = 8662EE39A070B79BE42A8A22983F4264 /* AFURLResponseSerialization.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; + CC98B80E4E01EEE45C3DE01882693891 /* RACKVOTrampoline.m in Sources */ = {isa = PBXBuildFile; fileRef = FC5FB37020588032709C66F2BC2D09D7 /* RACKVOTrampoline.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; + CCD4362E8522B5BC2820666098E91B93 /* NSObject+MJCoding.h in Headers */ = {isa = PBXBuildFile; fileRef = 0FF1AB2D7D8B6CBF97BB08C490C07ADD /* NSObject+MJCoding.h */; settings = {ATTRIBUTES = (Public, ); }; }; + CD48B797D8CD59CF9DFD83DD38EF93A0 /* MASShortcut.m in Sources */ = {isa = PBXBuildFile; fileRef = 7F129CA0BA48EE1F0F7FAEA3ECF98D46 /* MASShortcut.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; + CE01329411A643C3D8BEBF2CDF7F4AD3 /* NSObject+RACPropertySubscribing.h in Headers */ = {isa = PBXBuildFile; fileRef = 1B3B791EBC92A4566237409A8D97AC8C /* NSObject+RACPropertySubscribing.h */; settings = {ATTRIBUTES = (Public, ); }; }; + CE07980C3F99005358185E37A2EACBCA /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 0F323AD32ECF8E3A45048665333843F7 /* Cocoa.framework */; }; + CE9F398B1DAD84FEA79B6E830A05E852 /* MJExtension-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 2EEB7B9084C6354B53A5A5E8FBFA97F8 /* MJExtension-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; + CEA22B67F1AC2CA252B0FFA43C429B90 /* RACSubscriber.h in Headers */ = {isa = PBXBuildFile; fileRef = 900B502DEA493BB0F4F6121E3F8056D5 /* RACSubscriber.h */; settings = {ATTRIBUTES = (Public, ); }; }; + D2B90BAE847AE8FEC37D87D24E324863 /* View+MASAdditions.h in Headers */ = {isa = PBXBuildFile; fileRef = 39D4344CE5E0E310C702692275620010 /* View+MASAdditions.h */; settings = {ATTRIBUTES = (Public, ); }; }; + D361321BA59712264BE6128FC92D64AF /* Pods-Easydict-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 0D610BCDDE18DC2909FCA3135208FAB9 /* Pods-Easydict-dummy.m */; }; + D3BE1FD3043309DAF610AC08ACE160D2 /* MASPreferences.h in Headers */ = {isa = PBXBuildFile; fileRef = 6919C37C6B26F4098D0EA1B61962FBBB /* MASPreferences.h */; settings = {ATTRIBUTES = (Public, ); }; }; + D49FEE7B31C8EE134E0A15331DF86564 /* NSFileHandle+RACSupport.h in Headers */ = {isa = PBXBuildFile; fileRef = DE4624DEDC5ABCF8C3C5CB949A5D66D6 /* NSFileHandle+RACSupport.h */; settings = {ATTRIBUTES = (Public, ); }; }; + D4C959ABE1AF2C19B1CCE80E18A4D8C3 /* NSSet+RACSequenceAdditions.h in Headers */ = {isa = PBXBuildFile; fileRef = 9F18674DE256462BEE4BAD5D24D3372F /* NSSet+RACSequenceAdditions.h */; settings = {ATTRIBUTES = (Public, ); }; }; + D6B9216743757D8CCF0DC1BAFAAEFBE6 /* MJPropertyKey.h in Headers */ = {isa = PBXBuildFile; fileRef = 67615EAD637B6A48F4AA51D5890AC031 /* MJPropertyKey.h */; settings = {ATTRIBUTES = (Public, ); }; }; + D6DFB6F5115E9971FCD81C378255F6A7 /* RACErrorSignal.m in Sources */ = {isa = PBXBuildFile; fileRef = 5010C9BAE5EDD1145C624DF635CA270D /* RACErrorSignal.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; + D75921CECF780F790933BD025E2811C0 /* RACScopedDisposable.h in Headers */ = {isa = PBXBuildFile; fileRef = 23B30D39C016E53021A70A320CBD096F /* RACScopedDisposable.h */; settings = {ATTRIBUTES = (Public, ); }; }; D7BACCDBCFD6D790639E01FF764A13F8 /* AppKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = B86B4AAB47DFB9C73D2476D317BE774E /* AppKit.framework */; }; - D9DDF2E4C525EF8F639E0CDBB52B3F56 /* NSNotificationCenter+RACSupport.h in Headers */ = {isa = PBXBuildFile; fileRef = 114209894C52F020DC7C8FCF582B083F /* NSNotificationCenter+RACSupport.h */; settings = {ATTRIBUTES = (Public, ); }; }; - DABBB1262760EFBA785B17EA8E96F5FB /* RACImmediateScheduler.m in Sources */ = {isa = PBXBuildFile; fileRef = B661655404CB8E189F490FB600C604DF /* RACImmediateScheduler.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; - DBCB1765DFDC20AB77F6AE438F66F66F /* fr.lproj in Resources */ = {isa = PBXBuildFile; fileRef = 976EE6319BA16DFFDB11904E218A0971 /* fr.lproj */; }; - DC19322E1AC76B4FC16A52406F726CDD /* MASShortcutValidator.m in Sources */ = {isa = PBXBuildFile; fileRef = 28AAA8C71C0CE16E8E2BCAC77D3D146E /* MASShortcutValidator.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; - DC6574A1DE9A65A3B12977B1B865CFC1 /* nl.lproj in Resources */ = {isa = PBXBuildFile; fileRef = 2CFA2A1F061F6A985F28210DCFCFA48B /* nl.lproj */; }; - DC6BD38EAAEDFDE949D984D9E1A54E5E /* NSString+RACSequenceAdditions.h in Headers */ = {isa = PBXBuildFile; fileRef = 905FDAE730F581CE925C71558032A138 /* NSString+RACSequenceAdditions.h */; settings = {ATTRIBUTES = (Public, ); }; }; - DCFA26EA11F8C99F507E2F4A3C895715 /* MASShortcutBinder.m in Sources */ = {isa = PBXBuildFile; fileRef = 0D0DEB2344CAE8C071CE1EC2738BF53D /* MASShortcutBinder.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; - DD60B6F0A6F57A3203F89A83DB9DA28E /* RACKVOChannel.h in Headers */ = {isa = PBXBuildFile; fileRef = 53BDAD7D42254ACE95452707C9D179F9 /* RACKVOChannel.h */; settings = {ATTRIBUTES = (Public, ); }; }; - DD8FFF67D74BD3A0B33676226E7B9074 /* RACSignal+Operations.m in Sources */ = {isa = PBXBuildFile; fileRef = 38D39A2F6B2308ED30A913086CF34294 /* RACSignal+Operations.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; - DDC8C594BD51FBBA9B1E9BF903917365 /* mz_crypt_apple.c in Sources */ = {isa = PBXBuildFile; fileRef = D0E0ECDF0B2D597CD16E41C8E64E0A8D /* mz_crypt_apple.c */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; - DDF903E13EFEC9DF34DA4931E25CAD57 /* mz_crypt.c in Sources */ = {isa = PBXBuildFile; fileRef = 3E03E90C9162EEB666A38879BDF4FA62 /* mz_crypt.c */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; - DE5C95EBE816F475F7876F086A81D37B /* RACMulticastConnection.m in Sources */ = {isa = PBXBuildFile; fileRef = 541D6E7A6DFB2A9E6049A06DB116D505 /* RACMulticastConnection.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; - DF34BBCA918FCCB145A912997E7C1700 /* mz_os_posix.c in Sources */ = {isa = PBXBuildFile; fileRef = D3CC72B6E5F246DC03686F2D7A4E4522 /* mz_os_posix.c */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; - DF3995875E0A180CA609AC93011CFE0A /* RACScopedDisposable.m in Sources */ = {isa = PBXBuildFile; fileRef = 4B4A676D729A876C23031A40C68D085D /* RACScopedDisposable.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; - DFA0CE53A18E1B10D1FF48D14E2BCE03 /* RACKVOChannel.m in Sources */ = {isa = PBXBuildFile; fileRef = 9ADAFD07CED1221E6FE93F48DFBE1B87 /* RACKVOChannel.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; - DFD3D7741356C89A72808D72BB3B7298 /* NSDictionary+RACSequenceAdditions.m in Sources */ = {isa = PBXBuildFile; fileRef = 0DBF3AB8857FDA969414E4F3721D8161 /* NSDictionary+RACSequenceAdditions.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; - E00C87C2F3A77AF33D8D18761E440BE0 /* RACEagerSequence.m in Sources */ = {isa = PBXBuildFile; fileRef = 6830755AEAB3C4B9F24ED198BA3061E9 /* RACEagerSequence.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; - E04EF19B8D61D83DFE848F3C441C9E48 /* MASCompositeConstraint.h in Headers */ = {isa = PBXBuildFile; fileRef = 1FB00AB1E51A7475E6CB099A97C1D7FF /* MASCompositeConstraint.h */; settings = {ATTRIBUTES = (Public, ); }; }; - E0599F5B16B5FEAFE22991A67B2A03B3 /* RACChannel.h in Headers */ = {isa = PBXBuildFile; fileRef = AFFEAEC329EA8E2D64FD3F87865D4461 /* RACChannel.h */; settings = {ATTRIBUTES = (Public, ); }; }; - E15140790FAE035434C8995CF5FB75D4 /* RACSignal.h in Headers */ = {isa = PBXBuildFile; fileRef = 9C908FBBF10B28FBE3D50676D6D35F70 /* RACSignal.h */; settings = {ATTRIBUTES = (Public, ); }; }; - E15CA15970D3B85AE90E3AD925D411EA /* RACCompoundDisposableProvider.d in Sources */ = {isa = PBXBuildFile; fileRef = 532D961038406DCC93759B1174E064E4 /* RACCompoundDisposableProvider.d */; }; - E1A65E122DDC1E06FAC465C08F5807A2 /* NSString+RACSupport.h in Headers */ = {isa = PBXBuildFile; fileRef = FFA1757DDFC9F96D0D4770D8F96ECAA6 /* NSString+RACSupport.h */; settings = {ATTRIBUTES = (Public, ); }; }; - E3075471866A5050A2B318398C8E2890 /* RACSubscriptingAssignmentTrampoline.m in Sources */ = {isa = PBXBuildFile; fileRef = 6B8C236F36DDA1AF6BF6AD557926AC6D /* RACSubscriptingAssignmentTrampoline.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; - E369D09C64733430A7227B9612CC03F5 /* RACKVOTrampoline.h in Headers */ = {isa = PBXBuildFile; fileRef = C0EE83CF2891EC53E26EF136ADDBB0B0 /* RACKVOTrampoline.h */; settings = {ATTRIBUTES = (Public, ); }; }; - E445F72759F8EFA05DEE8D36320188C9 /* NSObject+RACKVOWrapper.m in Sources */ = {isa = PBXBuildFile; fileRef = 26989BE9089C02C1F48ADD9236C4FF02 /* NSObject+RACKVOWrapper.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; - E4C6CA66822B8958F08B7BBFA27E4E03 /* RACSequence.m in Sources */ = {isa = PBXBuildFile; fileRef = DE84ABCEC64C2FBAA4A29506E50578E3 /* RACSequence.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; - E65D60E3597E4A17834AEA20872F1094 /* AFNetworkReachabilityManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 6593D5EDCB13F136174E99F5E12048CC /* AFNetworkReachabilityManager.h */; settings = {ATTRIBUTES = (Public, ); }; }; - E8905332E322AA8C20CF95B0FD2FC6F3 /* NSObject+RACDescription.h in Headers */ = {isa = PBXBuildFile; fileRef = D8C5266A7795936FC2ABDA6419253ED2 /* NSObject+RACDescription.h */; settings = {ATTRIBUTES = (Public, ); }; }; - E915F2E1B315C91CD81CE7D06883DF77 /* NSArray+MASAdditions.h in Headers */ = {isa = PBXBuildFile; fileRef = E1B7AFD2BF0E18FAB1E5208F735EE889 /* NSArray+MASAdditions.h */; settings = {ATTRIBUTES = (Public, ); }; }; - E9AE0C8455FB34BD22F122828231B916 /* NSObject+RACAppKitBindings.h in Headers */ = {isa = PBXBuildFile; fileRef = B7D18444CAB2B1E347D53B8B87F615B7 /* NSObject+RACAppKitBindings.h */; settings = {ATTRIBUTES = (Public, ); }; }; - EA819967C6E6F1B5E07557BF9328CCCC /* RACCompoundDisposable.h in Headers */ = {isa = PBXBuildFile; fileRef = 59FC902A343F5155921CAABD6DCD2671 /* RACCompoundDisposable.h */; settings = {ATTRIBUTES = (Public, ); }; }; - EB169FE87BA2FADF91380AAAC6D8FFB2 /* RACReplaySubject.h in Headers */ = {isa = PBXBuildFile; fileRef = 6E8D488559531890750964D8C257BD1A /* RACReplaySubject.h */; settings = {ATTRIBUTES = (Public, ); }; }; - EC3217E01954C6A48347C1F07CD72C95 /* RACEagerSequence.h in Headers */ = {isa = PBXBuildFile; fileRef = C171AAC3BFD283F2E4ABACEB5CD031D2 /* RACEagerSequence.h */; settings = {ATTRIBUTES = (Public, ); }; }; - ECF8E0036E1A866A16E85FF223EDDFE5 /* MASHotKey.m in Sources */ = {isa = PBXBuildFile; fileRef = 2D1A6AD55FCFFA5E76AE28DC8E6CEB88 /* MASHotKey.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; - EDDCD019E5779C305C822EFB5FBD146C /* MJPropertyType.m in Sources */ = {isa = PBXBuildFile; fileRef = 44A9A579784DAB866D2396F828AAE196 /* MJPropertyType.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; - EE424ECE443C88A654B2CC271E9F4874 /* mz_strm_wzaes.h in Headers */ = {isa = PBXBuildFile; fileRef = 4E10F2019D1B6F1EC645735ACCB1D59E /* mz_strm_wzaes.h */; settings = {ATTRIBUTES = (Project, ); }; }; - EF6C63832640E6C32C8AD925D66B8164 /* RACPassthroughSubscriber.m in Sources */ = {isa = PBXBuildFile; fileRef = D1BDA97F236D9E25B1FA570E5197A630 /* RACPassthroughSubscriber.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; - EF9522478C1F9C1AE2B79C8E4B875675 /* RACSubscriptionScheduler.h in Headers */ = {isa = PBXBuildFile; fileRef = C82CB4C2EB6A2469577883F504416321 /* RACSubscriptionScheduler.h */; settings = {ATTRIBUTES = (Public, ); }; }; - EF97DAD218C088FBED655073542DD1AE /* NSOrderedSet+RACSequenceAdditions.m in Sources */ = {isa = PBXBuildFile; fileRef = EFF10C92646B4AE3D30072839D124918 /* NSOrderedSet+RACSequenceAdditions.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; - EF9C00E340B33BA67D9CEF5A2262D15E /* mz_strm_zlib.h in Headers */ = {isa = PBXBuildFile; fileRef = B32BAD8B8091125D7EBD4E85DA8521F1 /* mz_strm_zlib.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F04000A157F4A60BBE08879421963D9E /* MASDictionaryTransformer.h in Headers */ = {isa = PBXBuildFile; fileRef = 0D252A150EA52BBF8907094720AD854F /* MASDictionaryTransformer.h */; settings = {ATTRIBUTES = (Public, ); }; }; - F160F6622F6705018E6DF5DEE37EA0F3 /* RACSubscriptionScheduler.m in Sources */ = {isa = PBXBuildFile; fileRef = 7437ED283C689AAFE1837B32CBCA100E /* RACSubscriptionScheduler.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; - F17D1F48BF71EA3D56458F9E65D3822A /* RACDelegateProxy.h in Headers */ = {isa = PBXBuildFile; fileRef = 5337AF1230B27AD55042E8F54EB4322D /* RACDelegateProxy.h */; settings = {ATTRIBUTES = (Public, ); }; }; - F22CB23F2A73D5DA5ED851D94EA97285 /* RACArraySequence.m in Sources */ = {isa = PBXBuildFile; fileRef = 25FA016241A57BC6F443AB19A14D49DD /* RACArraySequence.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; - F25C250EBE865764D2B4C8A712DCB307 /* NSURLConnection+RACSupport.m in Sources */ = {isa = PBXBuildFile; fileRef = 50332DDE3583088217D95BFC7E7DE7E7 /* NSURLConnection+RACSupport.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; - F29AA39F3F4459869F0AB48F05C20C7E /* RACEXTScope.h in Headers */ = {isa = PBXBuildFile; fileRef = 12AA4C0EEB4CB355D2B801FF7C6F8873 /* RACEXTScope.h */; settings = {ATTRIBUTES = (Public, ); }; }; - F7295E4D4983C0D962723B503C802062 /* ru.lproj in Resources */ = {isa = PBXBuildFile; fileRef = 0018B3ED0302F8582D997D2438F3DAE3 /* ru.lproj */; }; - F8C49CDE272D461C160CB0CDFF3FD6D8 /* RACUnarySequence.m in Sources */ = {isa = PBXBuildFile; fileRef = FBE833A8980F5754EDDD2F6B805FD721 /* RACUnarySequence.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; - F8E9BF0C1950BF6C2F1065A5A5B1FA25 /* ko.lproj in Resources */ = {isa = PBXBuildFile; fileRef = 2414DDFA14D171603C2492D0A7917F99 /* ko.lproj */; }; - F968724F52CDF671F14C391CDAFDF4D8 /* NSObject+RACDeallocating.m in Sources */ = {isa = PBXBuildFile; fileRef = AC962840EB19D578F8C63D776C5ADC06 /* NSObject+RACDeallocating.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; - FB01A21AFF27B369AD27C4F56DD69A44 /* NSObject+FBKVOController.h in Headers */ = {isa = PBXBuildFile; fileRef = 1EB3D8CDCB8A8C441C1BC0CA8DFCB6ED /* NSObject+FBKVOController.h */; settings = {ATTRIBUTES = (Public, ); }; }; - FB47863E0EB625ACB20647FA758ABFB9 /* MJPropertyKey.m in Sources */ = {isa = PBXBuildFile; fileRef = BF222B53CAF0AC4C71E8BA40783C6F27 /* MJPropertyKey.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; - FB8AFC91637879CDC139F8453DE87F29 /* MASCompositeConstraint.m in Sources */ = {isa = PBXBuildFile; fileRef = D2935C2B8BA0E20E269E9F945235CB58 /* MASCompositeConstraint.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0 -w -Xanalyzer -analyzer-disable-all-checks"; }; }; - FBD272BE5EA05F5FF4553A864B196C78 /* JLRoutes-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = FC9C946F281F13E69199872A8322D620 /* JLRoutes-dummy.m */; }; - FD68516225C24EB2327FB1AD595B4DAF /* NSInvocation+RACTypeParsing.m in Sources */ = {isa = PBXBuildFile; fileRef = 8D20F677C414C5AE3C31FBFCD2A586D8 /* NSInvocation+RACTypeParsing.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; - FDE9F7D0CF7E9A3B28E12BF7F210E1F1 /* ViewController+MASAdditions.m in Sources */ = {isa = PBXBuildFile; fileRef = 5C7C92E426A7C5316EAD96E604FBD493 /* ViewController+MASAdditions.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0 -w -Xanalyzer -analyzer-disable-all-checks"; }; }; - FED65D6D50F9ECAC2D12C98932742DCE /* ReactiveObjC-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = EF09616BE93C6AF0B9072758CB9ECEC7 /* ReactiveObjC-dummy.m */; }; - FF097723176FF0B345A5E0C2615B0B61 /* NSArray+RACSequenceAdditions.m in Sources */ = {isa = PBXBuildFile; fileRef = AEC732DDA1B10AA3DE36ACF87B6B3876 /* NSArray+RACSequenceAdditions.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; + D9DDF2E4C525EF8F639E0CDBB52B3F56 /* NSNotificationCenter+RACSupport.h in Headers */ = {isa = PBXBuildFile; fileRef = ED307F72D76E573A9F55CEFAFDA27722 /* NSNotificationCenter+RACSupport.h */; settings = {ATTRIBUTES = (Public, ); }; }; + DABBB1262760EFBA785B17EA8E96F5FB /* RACImmediateScheduler.m in Sources */ = {isa = PBXBuildFile; fileRef = 325101FA5CF228941A48D8130C849BE5 /* RACImmediateScheduler.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; + DC19322E1AC76B4FC16A52406F726CDD /* MASShortcutValidator.m in Sources */ = {isa = PBXBuildFile; fileRef = B16533960BBE208985AFFF951CB11B5E /* MASShortcutValidator.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; + DC6BD38EAAEDFDE949D984D9E1A54E5E /* NSString+RACSequenceAdditions.h in Headers */ = {isa = PBXBuildFile; fileRef = E5EEC8A028C140600D19544981AE13A1 /* NSString+RACSequenceAdditions.h */; settings = {ATTRIBUTES = (Public, ); }; }; + DCFA26EA11F8C99F507E2F4A3C895715 /* MASShortcutBinder.m in Sources */ = {isa = PBXBuildFile; fileRef = 5E118A1F80BB1B215ECBBE9F8F5950C6 /* MASShortcutBinder.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; + DD60B6F0A6F57A3203F89A83DB9DA28E /* RACKVOChannel.h in Headers */ = {isa = PBXBuildFile; fileRef = 9CCA2E16F2CA5AB3968EBBBC56D59388 /* RACKVOChannel.h */; settings = {ATTRIBUTES = (Public, ); }; }; + DD8FFF67D74BD3A0B33676226E7B9074 /* RACSignal+Operations.m in Sources */ = {isa = PBXBuildFile; fileRef = 0F88E3987A0B33C045CB16C4D69514DD /* RACSignal+Operations.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; + DE5C95EBE816F475F7876F086A81D37B /* RACMulticastConnection.m in Sources */ = {isa = PBXBuildFile; fileRef = 25DCCB7CB0629E9D4F24E3F7F60FBE99 /* RACMulticastConnection.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; + DF3995875E0A180CA609AC93011CFE0A /* RACScopedDisposable.m in Sources */ = {isa = PBXBuildFile; fileRef = BAC04264E593BA1DAD6C7055BB10788B /* RACScopedDisposable.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; + DFA0CE53A18E1B10D1FF48D14E2BCE03 /* RACKVOChannel.m in Sources */ = {isa = PBXBuildFile; fileRef = 222C339170B2627B8066C6AB909E2946 /* RACKVOChannel.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; + DFD3D7741356C89A72808D72BB3B7298 /* NSDictionary+RACSequenceAdditions.m in Sources */ = {isa = PBXBuildFile; fileRef = 1C04B75999FE12F2028A24A1F8A03DB8 /* NSDictionary+RACSequenceAdditions.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; + E00C87C2F3A77AF33D8D18761E440BE0 /* RACEagerSequence.m in Sources */ = {isa = PBXBuildFile; fileRef = CD6919B88EB9F73E006736E7499E76E1 /* RACEagerSequence.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; + E04EF19B8D61D83DFE848F3C441C9E48 /* MASCompositeConstraint.h in Headers */ = {isa = PBXBuildFile; fileRef = A67450CD504F7DF1BA53A80F3C84D4FD /* MASCompositeConstraint.h */; settings = {ATTRIBUTES = (Public, ); }; }; + E0599F5B16B5FEAFE22991A67B2A03B3 /* RACChannel.h in Headers */ = {isa = PBXBuildFile; fileRef = C64CDE42C3C53F35696255E603CB79F3 /* RACChannel.h */; settings = {ATTRIBUTES = (Public, ); }; }; + E15140790FAE035434C8995CF5FB75D4 /* RACSignal.h in Headers */ = {isa = PBXBuildFile; fileRef = 3F72CA14E30E63F2051E46A4A3F474B2 /* RACSignal.h */; settings = {ATTRIBUTES = (Public, ); }; }; + E15CA15970D3B85AE90E3AD925D411EA /* RACCompoundDisposableProvider.d in Sources */ = {isa = PBXBuildFile; fileRef = 050D0F75E3F0C03C3115162F83B7DAB5 /* RACCompoundDisposableProvider.d */; }; + E1A65E122DDC1E06FAC465C08F5807A2 /* NSString+RACSupport.h in Headers */ = {isa = PBXBuildFile; fileRef = 4055A730DD7487EBAAA97AA7670F09BC /* NSString+RACSupport.h */; settings = {ATTRIBUTES = (Public, ); }; }; + E3075471866A5050A2B318398C8E2890 /* RACSubscriptingAssignmentTrampoline.m in Sources */ = {isa = PBXBuildFile; fileRef = 03839DE82107BA6BAC3D53AB9E1E9219 /* RACSubscriptingAssignmentTrampoline.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; + E369D09C64733430A7227B9612CC03F5 /* RACKVOTrampoline.h in Headers */ = {isa = PBXBuildFile; fileRef = 09FE8D7DF983AB72D7DB52D7BE5C72C0 /* RACKVOTrampoline.h */; settings = {ATTRIBUTES = (Public, ); }; }; + E445F72759F8EFA05DEE8D36320188C9 /* NSObject+RACKVOWrapper.m in Sources */ = {isa = PBXBuildFile; fileRef = 9C044071E44947DB5A6EC1C8E3295F78 /* NSObject+RACKVOWrapper.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; + E4C6CA66822B8958F08B7BBFA27E4E03 /* RACSequence.m in Sources */ = {isa = PBXBuildFile; fileRef = A80A588A1F8D437D283EE06EC52A1306 /* RACSequence.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; + E65D60E3597E4A17834AEA20872F1094 /* AFNetworkReachabilityManager.h in Headers */ = {isa = PBXBuildFile; fileRef = B4DDE5DB3802282C2554D266594130C3 /* AFNetworkReachabilityManager.h */; settings = {ATTRIBUTES = (Public, ); }; }; + E8905332E322AA8C20CF95B0FD2FC6F3 /* NSObject+RACDescription.h in Headers */ = {isa = PBXBuildFile; fileRef = D77C5430C3CFD14BCCA81F321744D9C6 /* NSObject+RACDescription.h */; settings = {ATTRIBUTES = (Public, ); }; }; + E915F2E1B315C91CD81CE7D06883DF77 /* NSArray+MASAdditions.h in Headers */ = {isa = PBXBuildFile; fileRef = 88EBF7349FB1E511A56DD59B085384D5 /* NSArray+MASAdditions.h */; settings = {ATTRIBUTES = (Public, ); }; }; + E9AE0C8455FB34BD22F122828231B916 /* NSObject+RACAppKitBindings.h in Headers */ = {isa = PBXBuildFile; fileRef = 99BBDF8E148692F49C6D547D5B4D01EE /* NSObject+RACAppKitBindings.h */; settings = {ATTRIBUTES = (Public, ); }; }; + EA819967C6E6F1B5E07557BF9328CCCC /* RACCompoundDisposable.h in Headers */ = {isa = PBXBuildFile; fileRef = 24C49E3ACBD8E47C0928E69BE5481DEB /* RACCompoundDisposable.h */; settings = {ATTRIBUTES = (Public, ); }; }; + EB169FE87BA2FADF91380AAAC6D8FFB2 /* RACReplaySubject.h in Headers */ = {isa = PBXBuildFile; fileRef = 4E24B128CC2A210E76A83A4D999ABDAC /* RACReplaySubject.h */; settings = {ATTRIBUTES = (Public, ); }; }; + EB7727BEC7F1C00A4EF184D5730D8437 /* ko.lproj in Resources */ = {isa = PBXBuildFile; fileRef = 730E2CA15BE47396A84B9D738C378F64 /* ko.lproj */; }; + EBEF759128AD2CBB1059D3FA93DD8CFD /* cs.lproj in Resources */ = {isa = PBXBuildFile; fileRef = 3856FB9950A3ACB5D8D21A1281D26A84 /* cs.lproj */; }; + EC3217E01954C6A48347C1F07CD72C95 /* RACEagerSequence.h in Headers */ = {isa = PBXBuildFile; fileRef = 9243E79BAE39ABF95CAF568F2FFF2A04 /* RACEagerSequence.h */; settings = {ATTRIBUTES = (Public, ); }; }; + ECF8E0036E1A866A16E85FF223EDDFE5 /* MASHotKey.m in Sources */ = {isa = PBXBuildFile; fileRef = 24F43A655E291C554E574873ABE31858 /* MASHotKey.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; + EDDCD019E5779C305C822EFB5FBD146C /* MJPropertyType.m in Sources */ = {isa = PBXBuildFile; fileRef = DEEC875830573012E783B7FB8DAEEC06 /* MJPropertyType.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; + EF6C63832640E6C32C8AD925D66B8164 /* RACPassthroughSubscriber.m in Sources */ = {isa = PBXBuildFile; fileRef = 121F5210DEA3A3A2A224DEF5E0EE5683 /* RACPassthroughSubscriber.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; + EF9522478C1F9C1AE2B79C8E4B875675 /* RACSubscriptionScheduler.h in Headers */ = {isa = PBXBuildFile; fileRef = 87170DD51F5D2459662B6DF0F82C60BD /* RACSubscriptionScheduler.h */; settings = {ATTRIBUTES = (Public, ); }; }; + EF97DAD218C088FBED655073542DD1AE /* NSOrderedSet+RACSequenceAdditions.m in Sources */ = {isa = PBXBuildFile; fileRef = 8F8B93E05CB12A7E45793451C01DA161 /* NSOrderedSet+RACSequenceAdditions.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; + F04000A157F4A60BBE08879421963D9E /* MASDictionaryTransformer.h in Headers */ = {isa = PBXBuildFile; fileRef = 1F0E09962A346D3210ED3FDF83AC2047 /* MASDictionaryTransformer.h */; settings = {ATTRIBUTES = (Public, ); }; }; + F160F6622F6705018E6DF5DEE37EA0F3 /* RACSubscriptionScheduler.m in Sources */ = {isa = PBXBuildFile; fileRef = A525C8B7A0E4DE2E6249F8E85445EDB0 /* RACSubscriptionScheduler.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; + F17D1F48BF71EA3D56458F9E65D3822A /* RACDelegateProxy.h in Headers */ = {isa = PBXBuildFile; fileRef = 1DEBF7AD59351A81DE554B0F7965CCEB /* RACDelegateProxy.h */; settings = {ATTRIBUTES = (Public, ); }; }; + F22CB23F2A73D5DA5ED851D94EA97285 /* RACArraySequence.m in Sources */ = {isa = PBXBuildFile; fileRef = 4A91090C7AC1F11A62E4F88F17AA7888 /* RACArraySequence.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; + F25C250EBE865764D2B4C8A712DCB307 /* NSURLConnection+RACSupport.m in Sources */ = {isa = PBXBuildFile; fileRef = F691BFCC43D6861134C5851121076FC3 /* NSURLConnection+RACSupport.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; + F29AA39F3F4459869F0AB48F05C20C7E /* RACEXTScope.h in Headers */ = {isa = PBXBuildFile; fileRef = ABE88F7BB5D4B4B81693E91DD9F04F16 /* RACEXTScope.h */; settings = {ATTRIBUTES = (Public, ); }; }; + F8C49CDE272D461C160CB0CDFF3FD6D8 /* RACUnarySequence.m in Sources */ = {isa = PBXBuildFile; fileRef = DF69E65723E7E5AC49610DE725855BD6 /* RACUnarySequence.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; + F968724F52CDF671F14C391CDAFDF4D8 /* NSObject+RACDeallocating.m in Sources */ = {isa = PBXBuildFile; fileRef = 86CBCF2CC9084A4B4ECA0A9B13DC6F2A /* NSObject+RACDeallocating.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; + FB01A21AFF27B369AD27C4F56DD69A44 /* NSObject+FBKVOController.h in Headers */ = {isa = PBXBuildFile; fileRef = 93456C1C7C8084B69D5DC9D2005E009E /* NSObject+FBKVOController.h */; settings = {ATTRIBUTES = (Public, ); }; }; + FB47863E0EB625ACB20647FA758ABFB9 /* MJPropertyKey.m in Sources */ = {isa = PBXBuildFile; fileRef = C172333F44A46FDA52229990392C2BEA /* MJPropertyKey.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; + FB8AFC91637879CDC139F8453DE87F29 /* MASCompositeConstraint.m in Sources */ = {isa = PBXBuildFile; fileRef = CBBF4B9205D7D1E430C6D76523D6C54A /* MASCompositeConstraint.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0 -w -Xanalyzer -analyzer-disable-all-checks"; }; }; + FBD272BE5EA05F5FF4553A864B196C78 /* JLRoutes-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 770525F5992933EA6AA843E871896267 /* JLRoutes-dummy.m */; }; + FD68516225C24EB2327FB1AD595B4DAF /* NSInvocation+RACTypeParsing.m in Sources */ = {isa = PBXBuildFile; fileRef = 85136B76D7FEF75ACD42AD2E2D895FBC /* NSInvocation+RACTypeParsing.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; + FDE9F7D0CF7E9A3B28E12BF7F210E1F1 /* ViewController+MASAdditions.m in Sources */ = {isa = PBXBuildFile; fileRef = F30694DEB38967E802B5D53C1F73AB42 /* ViewController+MASAdditions.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0 -w -Xanalyzer -analyzer-disable-all-checks"; }; }; + FED65D6D50F9ECAC2D12C98932742DCE /* ReactiveObjC-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 03032F224B7664C333A022CC4E74C680 /* ReactiveObjC-dummy.m */; }; + FF097723176FF0B345A5E0C2615B0B61 /* NSArray+RACSequenceAdditions.m in Sources */ = {isa = PBXBuildFile; fileRef = 188F20AB3B320AEC7B8C267470943015 /* NSArray+RACSequenceAdditions.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; /* End PBXBuildFile section */ /* Begin PBXContainerItemProxy section */ - 00ED4ECF34AFE07284447A549646ABF6 /* PBXContainerItemProxy */ = { + 0559980FCA78B504B87D8F2D6D785902 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 55AF53E6C77A10ED4985E04D74A8878E; - remoteInfo = Masonry; - }; - 07DDE8956023A72B9E5B88DF3D744525 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 0130B3724283586C0E9D2A112D4F2AA1; - remoteInfo = AFNetworking; + remoteGlobalIDString = 94C1BAA17BCEBC27586488A205D2E0CB; + remoteInfo = JLRoutes; }; - 42FEF2231E9A0514C671B483A8EF1017 /* PBXContainerItemProxy */ = { + 45377EE7B0E33310C4CABB76CB0C2088 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 438B238ACC7DF1178D1BCE1A31983146; - remoteInfo = ReactiveObjC; + remoteGlobalIDString = 2B2B481A164695722839BD581D442457; + remoteInfo = MASShortcut; }; - 452BFB4ED8BEF2DB2E7C216BBB7CC99C /* PBXContainerItemProxy */ = { + 4EC3F997951193744D953BD1430C3F03 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 94C1BAA17BCEBC27586488A205D2E0CB; - remoteInfo = JLRoutes; + remoteGlobalIDString = 73C37A16ECCEAD845651DCDEE95675BE; + remoteInfo = "MASShortcut-MASShortcut"; }; - 4DE1432D682FC4D2EB68749B4C8C68E9 /* PBXContainerItemProxy */ = { + 5CB01B18C07E466DF252F27538E8CA8C /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; remoteGlobalIDString = CCE0F64E83CEAFEE20D04DC7BD57303E; remoteInfo = MASPreferences; }; - 508A50F640C84F50D004B2EF05C285DE /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 438B238ACC7DF1178D1BCE1A31983146; - remoteInfo = ReactiveObjC; - }; - 56A1D029E081570055DE389A17B98322 /* PBXContainerItemProxy */ = { + 66316E968043422C960CFB9B83699B6E /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 2568F753F09C4DFFD8770DCC78EDAEAE; - remoteInfo = KVOController; + remoteGlobalIDString = 0A273FF147C6C1A3B504E3652CD01233; + remoteInfo = "MASPreferences-MASPreferences"; }; - 714E4947E9CE980D4AB1F93227D51F9F /* PBXContainerItemProxy */ = { + 6EA571EAC95CA65D27B6F24E5D0DB5A8 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 4D3BA58D0583DF37575CACAB3DDADC85; - remoteInfo = MJExtension; + remoteGlobalIDString = 1CD0618C486973D5588EF20D2E8C0AEA; + remoteInfo = SwiftFormat; }; - 77085BF96419B150D07BD19487BF53F7 /* PBXContainerItemProxy */ = { + 8CFFC92306784A2F511B7809EC7AEC44 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = F60E38364AFF5E1349FF07415B944396; - remoteInfo = SSZipArchive; + remoteGlobalIDString = 0130B3724283586C0E9D2A112D4F2AA1; + remoteInfo = AFNetworking; }; - 7CF31224F11420C840149C82712EF676 /* PBXContainerItemProxy */ = { + 9AE8350A0201C8299D38BDE5CA18053D /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 2568F753F09C4DFFD8770DCC78EDAEAE; - remoteInfo = KVOController; + remoteGlobalIDString = 94C1BAA17BCEBC27586488A205D2E0CB; + remoteInfo = JLRoutes; }; - 842263F5CFB5B77F6FC212C92191A536 /* PBXContainerItemProxy */ = { + A094FC8F3E7ED4FC5E156EF58F5EE7AE /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = F60E38364AFF5E1349FF07415B944396; - remoteInfo = SSZipArchive; + remoteGlobalIDString = 4D3BA58D0583DF37575CACAB3DDADC85; + remoteInfo = MJExtension; }; - 8DDF755F2CC02C3312140B821C8F36C0 /* PBXContainerItemProxy */ = { + AC64FA19D74DB21324708E116C84DEAA /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 1CD0618C486973D5588EF20D2E8C0AEA; - remoteInfo = SwiftFormat; + remoteGlobalIDString = 438B238ACC7DF1178D1BCE1A31983146; + remoteInfo = ReactiveObjC; }; - 93BD3C5B93EA4C733257C5FECE46AB22 /* PBXContainerItemProxy */ = { + B18C7A33C138BAFEACF84A43D17F74CA /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 4D3BA58D0583DF37575CACAB3DDADC85; - remoteInfo = MJExtension; + remoteGlobalIDString = 2568F753F09C4DFFD8770DCC78EDAEAE; + remoteInfo = KVOController; }; - CA650157B59414CA6590BB1A795163A9 /* PBXContainerItemProxy */ = { + D3F34EB807D90020C997E3F5A739CB38 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 0A273FF147C6C1A3B504E3652CD01233; - remoteInfo = "MASPreferences-MASPreferences"; + remoteGlobalIDString = 2568F753F09C4DFFD8770DCC78EDAEAE; + remoteInfo = KVOController; }; - D20E4C5D1ED1266A8E8988888242A7C9 /* PBXContainerItemProxy */ = { + D5919134FB5E722D388489805965D4E5 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; remoteGlobalIDString = 2B2B481A164695722839BD581D442457; remoteInfo = MASShortcut; }; - D7349D9B53AAB4430B63392E1260420A /* PBXContainerItemProxy */ = { + D9348FC3BF47216915CF774FD159A123 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 0130B3724283586C0E9D2A112D4F2AA1; - remoteInfo = AFNetworking; + remoteGlobalIDString = 438B238ACC7DF1178D1BCE1A31983146; + remoteInfo = ReactiveObjC; }; - D90570868022EAEAADEABCE66A4F778C /* PBXContainerItemProxy */ = { + E69DE2810F74D7DB7768791D8D0DDFE4 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 2B2B481A164695722839BD581D442457; - remoteInfo = MASShortcut; + remoteGlobalIDString = 0130B3724283586C0E9D2A112D4F2AA1; + remoteInfo = AFNetworking; }; - E668A528BD6862DE68CA07293AADEBC8 /* PBXContainerItemProxy */ = { + F4F55D9E1CA6BBF94FE48974512CC5C7 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 73C37A16ECCEAD845651DCDEE95675BE; - remoteInfo = "MASShortcut-MASShortcut"; + remoteGlobalIDString = CCE0F64E83CEAFEE20D04DC7BD57303E; + remoteInfo = MASPreferences; }; - EB2F73D7E4204EF464368C29A0A2AD3E /* PBXContainerItemProxy */ = { + F891921D097D760FAB5DCC07512EEB49 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = CCE0F64E83CEAFEE20D04DC7BD57303E; - remoteInfo = MASPreferences; + remoteGlobalIDString = 55AF53E6C77A10ED4985E04D74A8878E; + remoteInfo = Masonry; }; - F3424D73A42C5AD7C2EF735BBB2B591D /* PBXContainerItemProxy */ = { + F930E8177A4A6FAE839A88C477CACBD7 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 94C1BAA17BCEBC27586488A205D2E0CB; - remoteInfo = JLRoutes; + remoteGlobalIDString = 4D3BA58D0583DF37575CACAB3DDADC85; + remoteInfo = MJExtension; }; - F6D80E345284475EEF720E922EE9DAF3 /* PBXContainerItemProxy */ = { + FFF0DA685B895C7828D0ABECDBCA0FE6 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; @@ -525,420 +474,379 @@ /* End PBXContainerItemProxy section */ /* Begin PBXFileReference section */ - 0018B3ED0302F8582D997D2438F3DAE3 /* ru.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = ru.lproj; path = Resources/ru.lproj; sourceTree = ""; }; - 01B8CBD83AAD15DE764E70D5AB6BDDAE /* RACScheduler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RACScheduler.m; path = ReactiveObjC/RACScheduler.m; sourceTree = ""; }; - 01F9CD460420B97F6EAE6BE64E1BDDD6 /* MASPreferences-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "MASPreferences-prefix.pch"; sourceTree = ""; }; - 022F66C651F439BF5F11EC684F6A895E /* AFURLSessionManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AFURLSessionManager.h; path = AFNetworking/AFURLSessionManager.h; sourceTree = ""; }; - 02FB62328B696434E56607ADF9A188BC /* RACTargetQueueScheduler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RACTargetQueueScheduler.h; path = ReactiveObjC/RACTargetQueueScheduler.h; sourceTree = ""; }; - 035891E82881980F3859255DE4A9C50A /* NSEnumerator+RACSequenceAdditions.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSEnumerator+RACSequenceAdditions.m"; path = "ReactiveObjC/NSEnumerator+RACSequenceAdditions.m"; sourceTree = ""; }; - 036AAE8F2AC0468364E05CCB5E3ACB1E /* RACDynamicSequence.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RACDynamicSequence.h; path = ReactiveObjC/RACDynamicSequence.h; sourceTree = ""; }; - 041022E56B2E6CE30EA6F6A5D52B5A3E /* MASDictionaryTransformer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MASDictionaryTransformer.m; path = "Framework/User Defaults Storage/MASDictionaryTransformer.m"; sourceTree = ""; }; - 05DB5A567FF4B9249C3D86F209C6AC30 /* Masonry-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Masonry-dummy.m"; sourceTree = ""; }; - 0607129141DFB4E0910DC55B4B472AB2 /* RACBlockTrampoline.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RACBlockTrampoline.h; path = ReactiveObjC/RACBlockTrampoline.h; sourceTree = ""; }; - 06A54269231F4B308F60296D63548EE5 /* MASShortcutBinder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MASShortcutBinder.h; path = "Framework/User Defaults Storage/MASShortcutBinder.h"; sourceTree = ""; }; + 0133444D217A20710819BF36151B2DE4 /* NSIndexSet+RACSequenceAdditions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSIndexSet+RACSequenceAdditions.h"; path = "ReactiveObjC/NSIndexSet+RACSequenceAdditions.h"; sourceTree = ""; }; + 0175E2A27E40ECB93F6CE0B80E0FA51C /* RACAnnotations.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RACAnnotations.h; path = ReactiveObjC/RACAnnotations.h; sourceTree = ""; }; + 03032F224B7664C333A022CC4E74C680 /* ReactiveObjC-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "ReactiveObjC-dummy.m"; sourceTree = ""; }; + 03839DE82107BA6BAC3D53AB9E1E9219 /* RACSubscriptingAssignmentTrampoline.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RACSubscriptingAssignmentTrampoline.m; path = ReactiveObjC/RACSubscriptingAssignmentTrampoline.m; sourceTree = ""; }; + 045F7038CBFE8E86B42AF4ABEB1497D9 /* AFNetworkReachabilityManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = AFNetworkReachabilityManager.m; path = AFNetworking/AFNetworkReachabilityManager.m; sourceTree = ""; }; + 04B49437CB66B3443A88EC92E3181351 /* NSObject+FBKVOController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSObject+FBKVOController.m"; path = "FBKVOController/NSObject+FBKVOController.m"; sourceTree = ""; }; + 04E837A3F5A899D7092E76AB85A05AF3 /* ReactiveObjC-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "ReactiveObjC-umbrella.h"; sourceTree = ""; }; + 050D0F75E3F0C03C3115162F83B7DAB5 /* RACCompoundDisposableProvider.d */ = {isa = PBXFileReference; includeInIndex = 1; name = RACCompoundDisposableProvider.d; path = ReactiveObjC/RACCompoundDisposableProvider.d; sourceTree = ""; }; + 054E09A0D2ED3DDEE3600C793BC1A762 /* RACBlockTrampoline.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RACBlockTrampoline.m; path = ReactiveObjC/RACBlockTrampoline.m; sourceTree = ""; }; + 057B615D84F5758C9B338A734FB6A3D9 /* MJExtension-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "MJExtension-Info.plist"; sourceTree = ""; }; 075B59E91BF3BF5ABD9620878E2DB30F /* Pods-EasydictTests-acknowledgements.markdown */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = "Pods-EasydictTests-acknowledgements.markdown"; sourceTree = ""; }; 077721F948898091D9B33938E5F2054E /* Pods-Easydict-acknowledgements.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-Easydict-acknowledgements.plist"; sourceTree = ""; }; - 0867D2DCCEFF9DC0B1F4A149240B8001 /* SSZipArchive-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "SSZipArchive-prefix.pch"; sourceTree = ""; }; - 08D3A36D9C7B46F61ACBF8611ECC2FDF /* RACScheduler+Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "RACScheduler+Private.h"; path = "ReactiveObjC/RACScheduler+Private.h"; sourceTree = ""; }; - 0927DDA197EAA9517404DCE3F9FC1BB4 /* NSObject+RACSelectorSignal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSObject+RACSelectorSignal.h"; path = "ReactiveObjC/NSObject+RACSelectorSignal.h"; sourceTree = ""; }; - 09D0F978F3D7DE2433E679029D8BB115 /* RACScheduler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RACScheduler.h; path = ReactiveObjC/RACScheduler.h; sourceTree = ""; }; - 09F02C84E03E64AAED812EC3FB56DDD7 /* MASPreferencesWindow.xib */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = file.xib; name = MASPreferencesWindow.xib; path = en.lproj/MASPreferencesWindow.xib; sourceTree = ""; }; - 0A48CFE8CA54209405A5E197BDFF44E8 /* NSText+RACSignalSupport.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSText+RACSignalSupport.m"; path = "ReactiveObjC/NSText+RACSignalSupport.m"; sourceTree = ""; }; - 0A880ACBAD29187737609905B745C564 /* RACKVOTrampoline.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RACKVOTrampoline.m; path = ReactiveObjC/RACKVOTrampoline.m; sourceTree = ""; }; - 0C88B4564AF65391F5702BA84BA60745 /* RACEmptySequence.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RACEmptySequence.h; path = ReactiveObjC/RACEmptySequence.h; sourceTree = ""; }; - 0D0DEB2344CAE8C071CE1EC2738BF53D /* MASShortcutBinder.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MASShortcutBinder.m; path = "Framework/User Defaults Storage/MASShortcutBinder.m"; sourceTree = ""; }; - 0D252A150EA52BBF8907094720AD854F /* MASDictionaryTransformer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MASDictionaryTransformer.h; path = "Framework/User Defaults Storage/MASDictionaryTransformer.h"; sourceTree = ""; }; + 084A271996074B79A788318D8325ABEF /* MASPreferences.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = MASPreferences.debug.xcconfig; sourceTree = ""; }; + 08B59A0A08856F6C5B55CDDBEF28F1A0 /* JLRRouteDefinition.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JLRRouteDefinition.h; path = JLRoutes/Classes/JLRRouteDefinition.h; sourceTree = ""; }; + 09FE8D7DF983AB72D7DB52D7BE5C72C0 /* RACKVOTrampoline.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RACKVOTrampoline.h; path = ReactiveObjC/RACKVOTrampoline.h; sourceTree = ""; }; + 0B2DA95C83C5CA0AD515305E0B4B5D5D /* RACGroupedSignal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RACGroupedSignal.h; path = ReactiveObjC/RACGroupedSignal.h; sourceTree = ""; }; + 0B3A24D332D9DF6EEF896D9724574BC9 /* RACDynamicSequence.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RACDynamicSequence.m; path = ReactiveObjC/RACDynamicSequence.m; sourceTree = ""; }; 0D610BCDDE18DC2909FCA3135208FAB9 /* Pods-Easydict-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-Easydict-dummy.m"; sourceTree = ""; }; - 0DBF3AB8857FDA969414E4F3721D8161 /* NSDictionary+RACSequenceAdditions.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSDictionary+RACSequenceAdditions.m"; path = "ReactiveObjC/NSDictionary+RACSequenceAdditions.m"; sourceTree = ""; }; + 0F12A6A6708A56022FC8CADA2707E730 /* RACSubject.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RACSubject.m; path = ReactiveObjC/RACSubject.m; sourceTree = ""; }; 0F1C25F44128BF7424E93AA5262DC85E /* Pods-Easydict.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-Easydict.release.xcconfig"; sourceTree = ""; }; 0F323AD32ECF8E3A45048665333843F7 /* Cocoa.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Cocoa.framework; path = Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk/System/Library/Frameworks/Cocoa.framework; sourceTree = DEVELOPER_DIR; }; - 105DB0D0CF2811EDBEE761BE9FC097DB /* ReactiveObjC.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = ReactiveObjC.debug.xcconfig; sourceTree = ""; }; - 1124DA5B0A43A58A0BB8C58817A9F880 /* MASKeyCodes.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MASKeyCodes.h; path = Framework/Model/MASKeyCodes.h; sourceTree = ""; }; - 114209894C52F020DC7C8FCF582B083F /* NSNotificationCenter+RACSupport.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSNotificationCenter+RACSupport.h"; path = "ReactiveObjC/NSNotificationCenter+RACSupport.h"; sourceTree = ""; }; - 128C575834B7AF641488A4B7D14BDE25 /* MASConstraintMaker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MASConstraintMaker.h; path = Masonry/MASConstraintMaker.h; sourceTree = ""; }; - 12AA4C0EEB4CB355D2B801FF7C6F8873 /* RACEXTScope.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RACEXTScope.h; path = ReactiveObjC/extobjc/RACEXTScope.h; sourceTree = ""; }; - 151DCA05A362C7D04DA6A4EFD81422B6 /* NSObject+MJProperty.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSObject+MJProperty.m"; path = "MJExtension/NSObject+MJProperty.m"; sourceTree = ""; }; - 16E504191031D04051A89EFBF022406D /* KVOController-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "KVOController-umbrella.h"; sourceTree = ""; }; - 17D98B957F144340F389E104ABCA1D56 /* NSString+RACKeyPathUtilities.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSString+RACKeyPathUtilities.m"; path = "ReactiveObjC/NSString+RACKeyPathUtilities.m"; sourceTree = ""; }; - 1924A881688F3FCA77F8C7FB3FFF78E1 /* MASConstraint.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MASConstraint.m; path = Masonry/MASConstraint.m; sourceTree = ""; }; - 192EAFEBB6AA471F68477576B21D097E /* AFNetworking.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = AFNetworking.modulemap; sourceTree = ""; }; - 1A120C8AFF8C19758FEB8C7C1614B5DE /* NSIndexSet+RACSequenceAdditions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSIndexSet+RACSequenceAdditions.h"; path = "ReactiveObjC/NSIndexSet+RACSequenceAdditions.h"; sourceTree = ""; }; - 1AED3FA2DC652F1CFEF0FE85B1208FE2 /* MASHotKey.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MASHotKey.h; path = Framework/Monitoring/MASHotKey.h; sourceTree = ""; }; - 1CD1A1B593DC2D2B2D20A0DCC03ABD5E /* SSZipArchive.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = SSZipArchive.modulemap; sourceTree = ""; }; - 1E3C6299D7C4237ED3281EF847EDC140 /* Masonry.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = Masonry.release.xcconfig; sourceTree = ""; }; - 1EB3D8CDCB8A8C441C1BC0CA8DFCB6ED /* NSObject+FBKVOController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSObject+FBKVOController.h"; path = "FBKVOController/NSObject+FBKVOController.h"; sourceTree = ""; }; - 1FB00AB1E51A7475E6CB099A97C1D7FF /* MASCompositeConstraint.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MASCompositeConstraint.h; path = Masonry/MASCompositeConstraint.h; sourceTree = ""; }; + 0F88E3987A0B33C045CB16C4D69514DD /* RACSignal+Operations.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "RACSignal+Operations.m"; path = "ReactiveObjC/RACSignal+Operations.m"; sourceTree = ""; }; + 0FF1AB2D7D8B6CBF97BB08C490C07ADD /* NSObject+MJCoding.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSObject+MJCoding.h"; path = "MJExtension/NSObject+MJCoding.h"; sourceTree = ""; }; + 11A0BB4CD62028B856E79841C7AAFFC7 /* MASPreferencesWindow.xib */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = file.xib; name = MASPreferencesWindow.xib; path = en.lproj/MASPreferencesWindow.xib; sourceTree = ""; }; + 11ADA566099A0C86F81BCC2034C0DE15 /* RACQueueScheduler+Subclass.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "RACQueueScheduler+Subclass.h"; path = "ReactiveObjC/RACQueueScheduler+Subclass.h"; sourceTree = ""; }; + 121F5210DEA3A3A2A224DEF5E0EE5683 /* RACPassthroughSubscriber.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RACPassthroughSubscriber.m; path = ReactiveObjC/RACPassthroughSubscriber.m; sourceTree = ""; }; + 123B1CEAB1F94CCF67D0A975CD375F8C /* RACTargetQueueScheduler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RACTargetQueueScheduler.h; path = ReactiveObjC/RACTargetQueueScheduler.h; sourceTree = ""; }; + 124F572A4AF3C094D228E0480E207BBB /* ResourceBundle-MASShortcut-MASShortcut-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "ResourceBundle-MASShortcut-MASShortcut-Info.plist"; sourceTree = ""; }; + 13A3C94CE26E870553A8A3C07CA30B57 /* RACEmptySignal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RACEmptySignal.h; path = ReactiveObjC/RACEmptySignal.h; sourceTree = ""; }; + 148E666FDFB3D3BF2F71CED30853AACB /* NSObject+MJKeyValue.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSObject+MJKeyValue.m"; path = "MJExtension/NSObject+MJKeyValue.m"; sourceTree = ""; }; + 14DD101AFE77558C08E826AD863F79D6 /* AFNetworking-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "AFNetworking-prefix.pch"; sourceTree = ""; }; + 14F74B08DC54FBC3238B20FDADF379C9 /* RACTestScheduler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RACTestScheduler.m; path = ReactiveObjC/RACTestScheduler.m; sourceTree = ""; }; + 157A8FE995BAEAFD617C141EECFE0C5C /* KVOController.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = KVOController.modulemap; sourceTree = ""; }; + 16933E06DABABD65B6013D957A54C838 /* AFNetworking.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = AFNetworking.debug.xcconfig; sourceTree = ""; }; + 1741DDBD8CCD946C9E079F964513420C /* MASShortcutMonitor.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MASShortcutMonitor.m; path = Framework/Monitoring/MASShortcutMonitor.m; sourceTree = ""; }; + 1815ECA03D253EB0C5C731F09E1B2FDD /* ReactiveObjC.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = ReactiveObjC.modulemap; sourceTree = ""; }; + 188F20AB3B320AEC7B8C267470943015 /* NSArray+RACSequenceAdditions.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSArray+RACSequenceAdditions.m"; path = "ReactiveObjC/NSArray+RACSequenceAdditions.m"; sourceTree = ""; }; + 18B731F1037B0714D5F9AB49621C9361 /* RACBehaviorSubject.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RACBehaviorSubject.h; path = ReactiveObjC/RACBehaviorSubject.h; sourceTree = ""; }; + 196A53B1CFC100F355DF6945BFEF8AA2 /* RACReturnSignal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RACReturnSignal.h; path = ReactiveObjC/RACReturnSignal.h; sourceTree = ""; }; + 1A4463E98CFB316D6FAAD670E109C075 /* RACValueTransformer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RACValueTransformer.h; path = ReactiveObjC/RACValueTransformer.h; sourceTree = ""; }; + 1AA4A61BEE93277F6D81303E6AA2487E /* KVOController-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "KVOController-dummy.m"; sourceTree = ""; }; + 1B0540801E5F6C452A7B5E447BD1EDA3 /* SwiftFormat.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = SwiftFormat.debug.xcconfig; sourceTree = ""; }; + 1B29CD54E1DC81DB4702C7694C66884A /* AFURLRequestSerialization.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AFURLRequestSerialization.h; path = AFNetworking/AFURLRequestSerialization.h; sourceTree = ""; }; + 1B3B791EBC92A4566237409A8D97AC8C /* NSObject+RACPropertySubscribing.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSObject+RACPropertySubscribing.h"; path = "ReactiveObjC/NSObject+RACPropertySubscribing.h"; sourceTree = ""; }; + 1BCC53E6F0D51446F5F9AD5B4A804CED /* RACDynamicSequence.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RACDynamicSequence.h; path = ReactiveObjC/RACDynamicSequence.h; sourceTree = ""; }; + 1C04B75999FE12F2028A24A1F8A03DB8 /* NSDictionary+RACSequenceAdditions.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSDictionary+RACSequenceAdditions.m"; path = "ReactiveObjC/NSDictionary+RACSequenceAdditions.m"; sourceTree = ""; }; + 1DEBF7AD59351A81DE554B0F7965CCEB /* RACDelegateProxy.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RACDelegateProxy.h; path = ReactiveObjC/RACDelegateProxy.h; sourceTree = ""; }; + 1E74FC70604E8E1B292CD2ED1E381BDB /* Masonry-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Masonry-prefix.pch"; sourceTree = ""; }; + 1F0E09962A346D3210ED3FDF83AC2047 /* MASDictionaryTransformer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MASDictionaryTransformer.h; path = "Framework/User Defaults Storage/MASDictionaryTransformer.h"; sourceTree = ""; }; 1FFED36A657123030ABB700256D73F15 /* Masonry */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = Masonry; path = Masonry.framework; sourceTree = BUILT_PRODUCTS_DIR; }; - 20EDCB5BF5FFE443FA2636AED44520FF /* NSObject+RACSelectorSignal.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSObject+RACSelectorSignal.m"; path = "ReactiveObjC/NSObject+RACSelectorSignal.m"; sourceTree = ""; }; - 211FCFC7D6C886CF1E71E1C1F41B81C4 /* KVOController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = KVOController.h; path = FBKVOController/KVOController.h; sourceTree = ""; }; - 218752AE28625E3A53098ED2195C764C /* NSObject+RACKVOWrapper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSObject+RACKVOWrapper.h"; path = "ReactiveObjC/NSObject+RACKVOWrapper.h"; sourceTree = ""; }; - 219BC9071C938B548B27D56CCCD25A10 /* de.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = de.lproj; path = Resources/de.lproj; sourceTree = ""; }; - 223A589AA8255E9FD24154E8C1AFC1FB /* NSUserDefaults+RACSupport.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSUserDefaults+RACSupport.h"; path = "ReactiveObjC/NSUserDefaults+RACSupport.h"; sourceTree = ""; }; - 225050059ACEC165C38FE6B1DEC6F856 /* JLRoutes.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = JLRoutes.m; path = JLRoutes/JLRoutes.m; sourceTree = ""; }; + 222C339170B2627B8066C6AB909E2946 /* RACKVOChannel.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RACKVOChannel.m; path = ReactiveObjC/RACKVOChannel.m; sourceTree = ""; }; 225198CE18CF6D457A07FFA8E1635FD6 /* Pods-EasydictTests.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-EasydictTests.debug.xcconfig"; sourceTree = ""; }; - 2257E2DA3B4858919460A9624BCAE2A9 /* MASShortcut-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "MASShortcut-dummy.m"; sourceTree = ""; }; - 226CB5E1CA301F90B10FD9CC776F7109 /* mz_zip.c */ = {isa = PBXFileReference; includeInIndex = 1; name = mz_zip.c; path = SSZipArchive/minizip/mz_zip.c; sourceTree = ""; }; - 228AECE1B6488143FBC7D512F00C77FD /* MJExtension.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MJExtension.h; path = MJExtension/MJExtension.h; sourceTree = ""; }; + 22F03052B67FA7832C853528B5834FCF /* NSObject+RACPropertySubscribing.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSObject+RACPropertySubscribing.m"; path = "ReactiveObjC/NSObject+RACPropertySubscribing.m"; sourceTree = ""; }; 230F8208BE63C052A548A7D41A1158B2 /* MASShortcut-MASShortcut */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; name = "MASShortcut-MASShortcut"; path = MASShortcut.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; - 235768C9B6D2BB036AA260D316EEEA23 /* RACImmediateScheduler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RACImmediateScheduler.h; path = ReactiveObjC/RACImmediateScheduler.h; sourceTree = ""; }; - 23754905496FB8C7035BF810288D4F0E /* MASShortcutView+Bindings.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "MASShortcutView+Bindings.h"; path = "Framework/UI/MASShortcutView+Bindings.h"; sourceTree = ""; }; - 23A683C62A872F97EE9884056B8E8F25 /* mz_zip.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = mz_zip.h; path = SSZipArchive/minizip/mz_zip.h; sourceTree = ""; }; - 23C28DFCB6E8C23632EE8F43E49780DA /* mz_strm.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = mz_strm.h; path = SSZipArchive/minizip/mz_strm.h; sourceTree = ""; }; - 2414DDFA14D171603C2492D0A7917F99 /* ko.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = ko.lproj; path = Resources/ko.lproj; sourceTree = ""; }; - 25D5443CD5FE7AF94948B3FA89DB91E9 /* MJExtension.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = MJExtension.modulemap; sourceTree = ""; }; - 25FA016241A57BC6F443AB19A14D49DD /* RACArraySequence.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RACArraySequence.m; path = ReactiveObjC/RACArraySequence.m; sourceTree = ""; }; - 25FB52B222431C8F3951EE96B92831FA /* MASViewConstraint.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MASViewConstraint.h; path = Masonry/MASViewConstraint.h; sourceTree = ""; }; - 26906DA0496FD418D57C840FA0EF93FA /* mz_crypt.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = mz_crypt.h; path = SSZipArchive/minizip/mz_crypt.h; sourceTree = ""; }; - 26989BE9089C02C1F48ADD9236C4FF02 /* NSObject+RACKVOWrapper.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSObject+RACKVOWrapper.m"; path = "ReactiveObjC/NSObject+RACKVOWrapper.m"; sourceTree = ""; }; + 23B30D39C016E53021A70A320CBD096F /* RACScopedDisposable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RACScopedDisposable.h; path = ReactiveObjC/RACScopedDisposable.h; sourceTree = ""; }; + 24C49E3ACBD8E47C0928E69BE5481DEB /* RACCompoundDisposable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RACCompoundDisposable.h; path = ReactiveObjC/RACCompoundDisposable.h; sourceTree = ""; }; + 24F43A655E291C554E574873ABE31858 /* MASHotKey.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MASHotKey.m; path = Framework/Monitoring/MASHotKey.m; sourceTree = ""; }; + 251FBBC73D5EF330DFA2C3CC7100E5C0 /* RACBehaviorSubject.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RACBehaviorSubject.m; path = ReactiveObjC/RACBehaviorSubject.m; sourceTree = ""; }; + 253FCA858D5F0219F5921EA261F5F006 /* NSControl+RACCommandSupport.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSControl+RACCommandSupport.m"; path = "ReactiveObjC/NSControl+RACCommandSupport.m"; sourceTree = ""; }; + 25DCCB7CB0629E9D4F24E3F7F60FBE99 /* RACMulticastConnection.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RACMulticastConnection.m; path = ReactiveObjC/RACMulticastConnection.m; sourceTree = ""; }; + 262BBB1E323B18142FAA365CCC6F0404 /* Masonry.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = Masonry.debug.xcconfig; sourceTree = ""; }; 26A8810424438A12E7ADBFB3E068C658 /* MASShortcut */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = MASShortcut; path = MASShortcut.framework; sourceTree = BUILT_PRODUCTS_DIR; }; - 272F2550ACC673F51EE6E20E8890A690 /* RACSubject.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RACSubject.h; path = ReactiveObjC/RACSubject.h; sourceTree = ""; }; - 28AAA8C71C0CE16E8E2BCAC77D3D146E /* MASShortcutValidator.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MASShortcutValidator.m; path = Framework/Model/MASShortcutValidator.m; sourceTree = ""; }; - 29592FC3A405A65EBCC5AECC54D4BE7E /* MASConstraint.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MASConstraint.h; path = Masonry/MASConstraint.h; sourceTree = ""; }; - 295B643B3B451094875ED6572B069286 /* RACMulticastConnection+Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "RACMulticastConnection+Private.h"; path = "ReactiveObjC/RACMulticastConnection+Private.h"; sourceTree = ""; }; - 29968854ADEEC081E416FCD95CA82C6F /* RACDynamicSequence.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RACDynamicSequence.m; path = ReactiveObjC/RACDynamicSequence.m; sourceTree = ""; }; - 2A1C7F6DD005006975670D6EBD4B14E5 /* AFNetworking.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = AFNetworking.release.xcconfig; sourceTree = ""; }; - 2A7DE58C726038DC9C1EF4A1D4090652 /* RACMulticastConnection.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RACMulticastConnection.h; path = ReactiveObjC/RACMulticastConnection.h; sourceTree = ""; }; + 277835F63879EBA8DF4FC6D65C94A9EC /* RACTuple.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RACTuple.h; path = ReactiveObjC/RACTuple.h; sourceTree = ""; }; + 28219A7DAFE0AC6DF6CCE34E8C591E00 /* RACEvent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RACEvent.h; path = ReactiveObjC/RACEvent.h; sourceTree = ""; }; + 2854A514B6E210ADBAE3D2DD47C43532 /* NSString+RACKeyPathUtilities.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSString+RACKeyPathUtilities.m"; path = "ReactiveObjC/NSString+RACKeyPathUtilities.m"; sourceTree = ""; }; + 2899D6AB3E186AC9F9F070EEF648B279 /* NSObject+MJClass.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSObject+MJClass.h"; path = "MJExtension/NSObject+MJClass.h"; sourceTree = ""; }; 2B276B0A79173A1D6E83C9B4FB9A4A57 /* MJExtension */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = MJExtension; path = MJExtension.framework; sourceTree = BUILT_PRODUCTS_DIR; }; - 2C1DEF9961F4639CA1E1FE01E9AB7106 /* SSZipArchive.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = SSZipArchive.release.xcconfig; sourceTree = ""; }; - 2CFA2A1F061F6A985F28210DCFCFA48B /* nl.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = nl.lproj; path = Resources/nl.lproj; sourceTree = ""; }; - 2D1A6AD55FCFFA5E76AE28DC8E6CEB88 /* MASHotKey.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MASHotKey.m; path = Framework/Monitoring/MASHotKey.m; sourceTree = ""; }; - 2DAB501BAA75AD54774FECC4BC43453E /* JLRoutes-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "JLRoutes-umbrella.h"; sourceTree = ""; }; - 2E0379394CA908AD381F048CF84349EE /* MJFoundation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MJFoundation.h; path = MJExtension/MJFoundation.h; sourceTree = ""; }; - 2E1A79A15216D154086380AB33D0A16B /* RACScheduler+Subclass.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "RACScheduler+Subclass.h"; path = "ReactiveObjC/RACScheduler+Subclass.h"; sourceTree = ""; }; - 2E732DAC741FEA51AD905AA4E3C61DCB /* SSZipArchive.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SSZipArchive.h; path = SSZipArchive/SSZipArchive.h; sourceTree = ""; }; - 2F1FB593D45F4877B33B950945F545D5 /* RACEXTRuntimeExtensions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RACEXTRuntimeExtensions.h; path = ReactiveObjC/extobjc/RACEXTRuntimeExtensions.h; sourceTree = ""; }; - 2F670E262F0E26ABE059FAE3916C3832 /* MASPreferences-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "MASPreferences-dummy.m"; sourceTree = ""; }; - 2F8B62B60659F54715AAA1927C62347A /* RACTuple.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RACTuple.h; path = ReactiveObjC/RACTuple.h; sourceTree = ""; }; - 2FB0959A01A3EA824D21BE512DA9462B /* pt.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = pt.lproj; path = Resources/pt.lproj; sourceTree = ""; }; - 30C249FC028AE786EA89586DD7014BFA /* NSUserDefaults+RACSupport.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSUserDefaults+RACSupport.m"; path = "ReactiveObjC/NSUserDefaults+RACSupport.m"; sourceTree = ""; }; - 30E5A78FBC414D88E9F3199D4D8A6F0A /* RACEmptySequence.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RACEmptySequence.m; path = ReactiveObjC/RACEmptySequence.m; sourceTree = ""; }; - 321088BF767682C75C70EF0F3BEE7668 /* ReactiveObjC.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ReactiveObjC.h; path = ReactiveObjC/ReactiveObjC.h; sourceTree = ""; }; - 33174D60B5C61DA955B7C79CF2507EE1 /* NSObject+MJCoding.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSObject+MJCoding.m"; path = "MJExtension/NSObject+MJCoding.m"; sourceTree = ""; }; - 3385FA273DD81AEB562BD1B53EF077E0 /* NSString+MJExtension.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSString+MJExtension.m"; path = "MJExtension/NSString+MJExtension.m"; sourceTree = ""; }; - 33F34F573BF4F3D7BBD5C0CF929725E6 /* RACPassthroughSubscriber.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RACPassthroughSubscriber.h; path = ReactiveObjC/RACPassthroughSubscriber.h; sourceTree = ""; }; - 34039AA654914B768646EB33AA39CBE9 /* ReactiveObjC-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "ReactiveObjC-prefix.pch"; sourceTree = ""; }; - 340A35B02115D9632AB915465DE5C9AB /* NSArray+MASShorthandAdditions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSArray+MASShorthandAdditions.h"; path = "Masonry/NSArray+MASShorthandAdditions.h"; sourceTree = ""; }; - 368A2D3BE7237BA2678CF5510612D6F4 /* mz_strm_os_posix.c */ = {isa = PBXFileReference; includeInIndex = 1; name = mz_strm_os_posix.c; path = SSZipArchive/minizip/mz_strm_os_posix.c; sourceTree = ""; }; - 36A1820562D6EB518F9F8E9C44FCEB26 /* RACGroupedSignal.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RACGroupedSignal.m; path = ReactiveObjC/RACGroupedSignal.m; sourceTree = ""; }; + 2B8DC497D2256FF535AF9649B43C3C3F /* RACSignalSequence.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RACSignalSequence.h; path = ReactiveObjC/RACSignalSequence.h; sourceTree = ""; }; + 2BA8DDD6894772E67D509F8D625D8578 /* MASShortcutView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MASShortcutView.h; path = Framework/UI/MASShortcutView.h; sourceTree = ""; }; + 2C6B606655F9CFAC168E519400032517 /* AFHTTPSessionManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = AFHTTPSessionManager.m; path = AFNetworking/AFHTTPSessionManager.m; sourceTree = ""; }; + 2EE79DFB54C2C8C73B2BD37E27B171B8 /* RACEmptySignal.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RACEmptySignal.m; path = ReactiveObjC/RACEmptySignal.m; sourceTree = ""; }; + 2EEB7B9084C6354B53A5A5E8FBFA97F8 /* MJExtension-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "MJExtension-umbrella.h"; sourceTree = ""; }; + 3125A95116695F297C4B988185A37F4F /* NSUserDefaults+RACSupport.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSUserDefaults+RACSupport.h"; path = "ReactiveObjC/NSUserDefaults+RACSupport.h"; sourceTree = ""; }; + 3192BF46419BDAAF9DE20D46F683F244 /* RACSubscriber.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RACSubscriber.m; path = ReactiveObjC/RACSubscriber.m; sourceTree = ""; }; + 325101FA5CF228941A48D8130C849BE5 /* RACImmediateScheduler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RACImmediateScheduler.m; path = ReactiveObjC/RACImmediateScheduler.m; sourceTree = ""; }; + 326CD7D1E6876C681A11EA3A448B22C6 /* MASKeyCodes.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MASKeyCodes.h; path = Framework/Model/MASKeyCodes.h; sourceTree = ""; }; + 327D5C19692CFE8D5019828621A7C75E /* RACDelegateProxy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RACDelegateProxy.m; path = ReactiveObjC/RACDelegateProxy.m; sourceTree = ""; }; + 33D1A9E562E03C58892F3B45AB3E946E /* RACSequence.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RACSequence.h; path = ReactiveObjC/RACSequence.h; sourceTree = ""; }; + 34AAF569E806D3602F701C9682E5C305 /* de.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = de.lproj; path = Resources/de.lproj; sourceTree = ""; }; + 3504A868701069CEC6DC85A1F0999986 /* RACUnarySequence.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RACUnarySequence.h; path = ReactiveObjC/RACUnarySequence.h; sourceTree = ""; }; + 353C2DB990599197DB894FF3EF87C4B3 /* JLRoutes.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = JLRoutes.release.xcconfig; sourceTree = ""; }; + 35F2945E22A96ED6C55B5A9BB42A4CB2 /* MASConstraint.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MASConstraint.h; path = Masonry/MASConstraint.h; sourceTree = ""; }; 36A4A62A1CCA6B9F3C0381439421C36C /* Pods-EasydictTests.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = "Pods-EasydictTests.modulemap"; sourceTree = ""; }; - 37024FBC697C96FBF720F5C5BB214F9F /* NSObject+MJProperty.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSObject+MJProperty.h"; path = "MJExtension/NSObject+MJProperty.h"; sourceTree = ""; }; - 37CB2D561A3965EE329526B28CB60C6B /* NSSet+RACSequenceAdditions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSSet+RACSequenceAdditions.h"; path = "ReactiveObjC/NSSet+RACSequenceAdditions.h"; sourceTree = ""; }; - 38501F6013BF8A684B914F04E4A6ECD2 /* View+MASAdditions.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "View+MASAdditions.m"; path = "Masonry/View+MASAdditions.m"; sourceTree = ""; }; - 3877E5BE9DCC5EE76A7D9B554DE34170 /* mz_strm_pkcrypt.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = mz_strm_pkcrypt.h; path = SSZipArchive/minizip/mz_strm_pkcrypt.h; sourceTree = ""; }; - 38AE517DD1DC43BECF5DD049940EF47E /* RACEvent.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RACEvent.m; path = ReactiveObjC/RACEvent.m; sourceTree = ""; }; - 38C6264B258FF2892BA9D346FD2711E5 /* mz_strm_zlib.c */ = {isa = PBXFileReference; includeInIndex = 1; name = mz_strm_zlib.c; path = SSZipArchive/minizip/mz_strm_zlib.c; sourceTree = ""; }; - 38D39A2F6B2308ED30A913086CF34294 /* RACSignal+Operations.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "RACSignal+Operations.m"; path = "ReactiveObjC/RACSignal+Operations.m"; sourceTree = ""; }; + 38435F790DF285E2BD4696B60E31EED7 /* zh-Hans.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = "zh-Hans.lproj"; path = "Resources/zh-Hans.lproj"; sourceTree = ""; }; + 3856FB9950A3ACB5D8D21A1281D26A84 /* cs.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = cs.lproj; path = Resources/cs.lproj; sourceTree = ""; }; + 38EC48346056ADBA21FD4503D6825E8B /* AFHTTPSessionManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AFHTTPSessionManager.h; path = AFNetworking/AFHTTPSessionManager.h; sourceTree = ""; }; 3906AD4DF1E6F559AA77E8B9CE6C6075 /* Pods-EasydictTests-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-EasydictTests-Info.plist"; sourceTree = ""; }; 399EC9508E73C0D54D9BBD8741FBA137 /* KVOController */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = KVOController; path = KVOController.framework; sourceTree = BUILT_PRODUCTS_DIR; }; - 3B2CB11E5FAF23028A150212F00FB168 /* JLRRouteRequest.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JLRRouteRequest.h; path = JLRoutes/Classes/JLRRouteRequest.h; sourceTree = ""; }; - 3D66BB6F3758A1B698ECDDEE78FC48C8 /* Masonry-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Masonry-Info.plist"; sourceTree = ""; }; - 3E03E90C9162EEB666A38879BDF4FA62 /* mz_crypt.c */ = {isa = PBXFileReference; includeInIndex = 1; name = mz_crypt.c; path = SSZipArchive/minizip/mz_crypt.c; sourceTree = ""; }; - 3EB2470CCE5F2258FDD2C06B099A3B5F /* NSObject+MJCoding.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSObject+MJCoding.h"; path = "MJExtension/NSObject+MJCoding.h"; sourceTree = ""; }; - 3ECACE3802917EAC82D240F725FA72B2 /* ReactiveObjC-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "ReactiveObjC-umbrella.h"; sourceTree = ""; }; - 3F0A9EA0BBC99DB1BABE8D2FDC1EE33C /* NSIndexSet+RACSequenceAdditions.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSIndexSet+RACSequenceAdditions.m"; path = "ReactiveObjC/NSIndexSet+RACSequenceAdditions.m"; sourceTree = ""; }; - 40DA43EFC5AC763D2DBD408B641F230E /* mz_strm_pkcrypt.c */ = {isa = PBXFileReference; includeInIndex = 1; name = mz_strm_pkcrypt.c; path = SSZipArchive/minizip/mz_strm_pkcrypt.c; sourceTree = ""; }; - 413EE741F36EC72BA95233EC24BB57A5 /* RACDynamicSignal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RACDynamicSignal.h; path = ReactiveObjC/RACDynamicSignal.h; sourceTree = ""; }; - 422A5D9CCCC36853D97C2AED5183B961 /* RACDisposable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RACDisposable.h; path = ReactiveObjC/RACDisposable.h; sourceTree = ""; }; - 42BDF4ADEF556B8F54906E83BCFE79CB /* RACCommand.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RACCommand.h; path = ReactiveObjC/RACCommand.h; sourceTree = ""; }; - 42DB4AD3D14FA1B7B5B7C8C9AFCA2DC9 /* FBKVOController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBKVOController.m; path = FBKVOController/FBKVOController.m; sourceTree = ""; }; - 43507C8D3ABAFC473084D1FB7428E2D4 /* RACEXTKeyPathCoding.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RACEXTKeyPathCoding.h; path = ReactiveObjC/extobjc/RACEXTKeyPathCoding.h; sourceTree = ""; }; + 39D4344CE5E0E310C702692275620010 /* View+MASAdditions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "View+MASAdditions.h"; path = "Masonry/View+MASAdditions.h"; sourceTree = ""; }; + 3AF29BA84E32D7948FEEC04EDEE677DE /* AFNetworking.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = AFNetworking.release.xcconfig; sourceTree = ""; }; + 3B81FE1A497A608EDF5A5DA65E3F2CFA /* RACIndexSetSequence.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RACIndexSetSequence.m; path = ReactiveObjC/RACIndexSetSequence.m; sourceTree = ""; }; + 3F72CA14E30E63F2051E46A4A3F474B2 /* RACSignal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RACSignal.h; path = ReactiveObjC/RACSignal.h; sourceTree = ""; }; + 4055A730DD7487EBAAA97AA7670F09BC /* NSString+RACSupport.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSString+RACSupport.h"; path = "ReactiveObjC/NSString+RACSupport.h"; sourceTree = ""; }; + 406F8228457D5CB0D921813E21FE946D /* NSControl+RACTextSignalSupport.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSControl+RACTextSignalSupport.m"; path = "ReactiveObjC/NSControl+RACTextSignalSupport.m"; sourceTree = ""; }; + 41EADBE38E92458F65B7405E077B05B6 /* NSEnumerator+RACSequenceAdditions.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSEnumerator+RACSequenceAdditions.m"; path = "ReactiveObjC/NSEnumerator+RACSequenceAdditions.m"; sourceTree = ""; }; 43F9966E7614888A0CDCFAB2F62F2FDD /* MASPreferences */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = MASPreferences; path = MASPreferences.framework; sourceTree = BUILT_PRODUCTS_DIR; }; - 44A9A579784DAB866D2396F828AAE196 /* MJPropertyType.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MJPropertyType.m; path = MJExtension/MJPropertyType.m; sourceTree = ""; }; - 4551ADA312C894178B8C011B19428573 /* AFNetworking-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "AFNetworking-prefix.pch"; sourceTree = ""; }; - 459E3F873B837641B3177A57540015F5 /* MASShortcutView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MASShortcutView.m; path = Framework/UI/MASShortcutView.m; sourceTree = ""; }; - 465313CF2DF8ED134FD5C8736921C54A /* MASLocalization.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MASLocalization.m; path = Framework/UI/MASLocalization.m; sourceTree = ""; }; - 47293174CFFA7DE0C93EE6038B195E8B /* MASConstraint+Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "MASConstraint+Private.h"; path = "Masonry/MASConstraint+Private.h"; sourceTree = ""; }; - 478B17AC77063096F4A3028A7AAB9846 /* MASPreferencesViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MASPreferencesViewController.h; path = Framework/MASPreferencesViewController.h; sourceTree = ""; }; - 4881A1551F1A07AD17C3884F9AE45043 /* Masonry-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Masonry-umbrella.h"; sourceTree = ""; }; + 4504265EE89A55949D98E758BFA4D542 /* NSObject+RACAppKitBindings.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSObject+RACAppKitBindings.m"; path = "ReactiveObjC/NSObject+RACAppKitBindings.m"; sourceTree = ""; }; + 45A906069D6CDDB1DFEA6FD3D527783E /* MJExtension-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "MJExtension-prefix.pch"; sourceTree = ""; }; + 45B3F5BF28538E134CB9DE0D6480C890 /* zh-Hant.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = "zh-Hant.lproj"; path = "Resources/zh-Hant.lproj"; sourceTree = ""; }; + 46635DC58FF9895EC898A65F2FBB1EF5 /* sv.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = sv.lproj; path = Resources/sv.lproj; sourceTree = ""; }; + 47AD2D8CAE0CCE18C3B1F113990A5E44 /* NSObject+RACSelectorSignal.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSObject+RACSelectorSignal.m"; path = "ReactiveObjC/NSObject+RACSelectorSignal.m"; sourceTree = ""; }; + 47CC1777B7155CF036F83A3AF8B6BB22 /* NSObject+RACLifting.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSObject+RACLifting.m"; path = "ReactiveObjC/NSObject+RACLifting.m"; sourceTree = ""; }; + 489E2FE8DB39A7FD4640428096AD329D /* RACUnit.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RACUnit.h; path = ReactiveObjC/RACUnit.h; sourceTree = ""; }; 48B09F156C30EB6AFE10D8B6F39CD41A /* Security.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Security.framework; path = Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk/System/Library/Frameworks/Security.framework; sourceTree = DEVELOPER_DIR; }; - 49D333909A2C5F4CF5744E9826782279 /* MJProperty.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MJProperty.h; path = MJExtension/MJProperty.h; sourceTree = ""; }; - 4B1AFD9BA66C3A4A9ECC39DD5D13AA16 /* NSControl+RACTextSignalSupport.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSControl+RACTextSignalSupport.h"; path = "ReactiveObjC/NSControl+RACTextSignalSupport.h"; sourceTree = ""; }; - 4B4A676D729A876C23031A40C68D085D /* RACScopedDisposable.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RACScopedDisposable.m; path = ReactiveObjC/RACScopedDisposable.m; sourceTree = ""; }; - 4BCFE3AA9E307F6B095BC638B94A50D1 /* MASPreferencesWindowController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MASPreferencesWindowController.h; path = Framework/MASPreferencesWindowController.h; sourceTree = ""; }; - 4C7D7B2DE634ED0467496A74DDD96E63 /* KVOController-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "KVOController-prefix.pch"; sourceTree = ""; }; - 4D0C1E2DF96AF87CD082403955D63D61 /* mz_strm_mem.c */ = {isa = PBXFileReference; includeInIndex = 1; name = mz_strm_mem.c; path = SSZipArchive/minizip/mz_strm_mem.c; sourceTree = ""; }; - 4E10F2019D1B6F1EC645735ACCB1D59E /* mz_strm_wzaes.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = mz_strm_wzaes.h; path = SSZipArchive/minizip/mz_strm_wzaes.h; sourceTree = ""; }; - 4E4E758311E57182055F7D1DC8A3C628 /* NSLayoutConstraint+MASDebugAdditions.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSLayoutConstraint+MASDebugAdditions.m"; path = "Masonry/NSLayoutConstraint+MASDebugAdditions.m"; sourceTree = ""; }; - 50332DDE3583088217D95BFC7E7DE7E7 /* NSURLConnection+RACSupport.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSURLConnection+RACSupport.m"; path = "ReactiveObjC/NSURLConnection+RACSupport.m"; sourceTree = ""; }; - 5078066D21E6AA05FEAD56BB03AA7A07 /* RACUnit.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RACUnit.h; path = ReactiveObjC/RACUnit.h; sourceTree = ""; }; + 4A5F265622E22C0EEEAB94750EBE6134 /* NSUserDefaults+RACSupport.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSUserDefaults+RACSupport.m"; path = "ReactiveObjC/NSUserDefaults+RACSupport.m"; sourceTree = ""; }; + 4A91090C7AC1F11A62E4F88F17AA7888 /* RACArraySequence.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RACArraySequence.m; path = ReactiveObjC/RACArraySequence.m; sourceTree = ""; }; + 4AC3286DD6B6CD4CF2D1971F091E558B /* RACTuple.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RACTuple.m; path = ReactiveObjC/RACTuple.m; sourceTree = ""; }; + 4D2E4C3D2273815903523951768C1EB5 /* NSObject+RACDeallocating.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSObject+RACDeallocating.h"; path = "ReactiveObjC/NSObject+RACDeallocating.h"; sourceTree = ""; }; + 4E24B128CC2A210E76A83A4D999ABDAC /* RACReplaySubject.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RACReplaySubject.h; path = ReactiveObjC/RACReplaySubject.h; sourceTree = ""; }; + 4F418D61F93C77822FD3AF790AF4FCE7 /* KVOController-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "KVOController-Info.plist"; sourceTree = ""; }; + 5010C9BAE5EDD1145C624DF635CA270D /* RACErrorSignal.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RACErrorSignal.m; path = ReactiveObjC/RACErrorSignal.m; sourceTree = ""; }; + 50AEE34E616CCE18C9AF677539B4954E /* MASPreferencesWindowController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MASPreferencesWindowController.h; path = Framework/MASPreferencesWindowController.h; sourceTree = ""; }; 50FFBAE87DAAA5D19C6D04413ED5E6D3 /* JLRoutes */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = JLRoutes; path = JLRoutes.framework; sourceTree = BUILT_PRODUCTS_DIR; }; - 5173F242B096F8CD44D4872436961B4C /* NSControl+RACCommandSupport.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSControl+RACCommandSupport.m"; path = "ReactiveObjC/NSControl+RACCommandSupport.m"; sourceTree = ""; }; - 51943BCC23D2FBAD2734442837DCEEE5 /* View+MASShorthandAdditions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "View+MASShorthandAdditions.h"; path = "Masonry/View+MASShorthandAdditions.h"; sourceTree = ""; }; - 51DD729B8B8EFA11DCAD51FCDEE90CDB /* NSFileHandle+RACSupport.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSFileHandle+RACSupport.m"; path = "ReactiveObjC/NSFileHandle+RACSupport.m"; sourceTree = ""; }; - 52719F8460A684A76AC0C5B5988E5621 /* cs.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = cs.lproj; path = Resources/cs.lproj; sourceTree = ""; }; - 52B46F6C5B2313273CB6D176CB3129CA /* mz.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = mz.h; path = SSZipArchive/minizip/mz.h; sourceTree = ""; }; - 532D961038406DCC93759B1174E064E4 /* RACCompoundDisposableProvider.d */ = {isa = PBXFileReference; includeInIndex = 1; name = RACCompoundDisposableProvider.d; path = ReactiveObjC/RACCompoundDisposableProvider.d; sourceTree = ""; }; - 5337AF1230B27AD55042E8F54EB4322D /* RACDelegateProxy.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RACDelegateProxy.h; path = ReactiveObjC/RACDelegateProxy.h; sourceTree = ""; }; - 53B1FC0A4381E89109818445B57BAF4F /* Masonry.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = Masonry.debug.xcconfig; sourceTree = ""; }; - 53BDAD7D42254ACE95452707C9D179F9 /* RACKVOChannel.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RACKVOChannel.h; path = ReactiveObjC/RACKVOChannel.h; sourceTree = ""; }; - 541D6E7A6DFB2A9E6049A06DB116D505 /* RACMulticastConnection.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RACMulticastConnection.m; path = ReactiveObjC/RACMulticastConnection.m; sourceTree = ""; }; - 552F97196102557964226D25A9521F77 /* ReactiveObjC-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "ReactiveObjC-Info.plist"; sourceTree = ""; }; - 55366949C8826B0A40E60026B72293B8 /* AFCompatibilityMacros.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AFCompatibilityMacros.h; path = AFNetworking/AFCompatibilityMacros.h; sourceTree = ""; }; - 57073B39F59577D7C24F2C8C9BC07FCB /* SSZipArchive-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "SSZipArchive-umbrella.h"; sourceTree = ""; }; - 57EFB984FDB25EEAD1A0A213E41C577E /* MASKeyMasks.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MASKeyMasks.h; path = Framework/Model/MASKeyMasks.h; sourceTree = ""; }; - 594C5095125F7E5658E5C02A20CF9733 /* mz_compat.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = mz_compat.h; path = SSZipArchive/minizip/mz_compat.h; sourceTree = ""; }; - 59FC902A343F5155921CAABD6DCD2671 /* RACCompoundDisposable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RACCompoundDisposable.h; path = ReactiveObjC/RACCompoundDisposable.h; sourceTree = ""; }; - 5A04F5564F27D9A3D99A164E3DFD006C /* JLRRouteResponse.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JLRRouteResponse.h; path = JLRoutes/Classes/JLRRouteResponse.h; sourceTree = ""; }; - 5B2896B7A7A6F33ECEFF7D2783910B7E /* MJProperty.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MJProperty.m; path = MJExtension/MJProperty.m; sourceTree = ""; }; - 5C7C92E426A7C5316EAD96E604FBD493 /* ViewController+MASAdditions.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "ViewController+MASAdditions.m"; path = "Masonry/ViewController+MASAdditions.m"; sourceTree = ""; }; - 5D5A65DD3ED6D5DA0339CEA9AF3A51C4 /* RACQueueScheduler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RACQueueScheduler.m; path = ReactiveObjC/RACQueueScheduler.m; sourceTree = ""; }; - 5E17F85D4AF4E4857D3EC4639A91BA77 /* KVOController.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = KVOController.release.xcconfig; sourceTree = ""; }; - 5F8027EC1C0D5375041AD2A137EEB57F /* NSObject+RACAppKitBindings.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSObject+RACAppKitBindings.m"; path = "ReactiveObjC/NSObject+RACAppKitBindings.m"; sourceTree = ""; }; - 5FFAB8FF179D88F4422219940A99BA2A /* RACChannel.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RACChannel.m; path = ReactiveObjC/RACChannel.m; sourceTree = ""; }; - 603433905598D812A7478E82564BF21F /* MASPreferences.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MASPreferences.h; path = Framework/MASPreferences.h; sourceTree = ""; }; + 510C558AA6065604533EC385D51A1F5C /* nl.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = nl.lproj; path = Resources/nl.lproj; sourceTree = ""; }; + 51B7E8EDE24955CC93FED246F4F9C0EE /* RACSignal.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RACSignal.m; path = ReactiveObjC/RACSignal.m; sourceTree = ""; }; + 521ED242874317D9E20EC77CCA09ED73 /* MASShortcutView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MASShortcutView.m; path = Framework/UI/MASShortcutView.m; sourceTree = ""; }; + 54C2F839D3238DCC6675AC9449A91A09 /* RACQueueScheduler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RACQueueScheduler.h; path = ReactiveObjC/RACQueueScheduler.h; sourceTree = ""; }; + 55BC3D33A9542584D8C808926741A47B /* NSArray+RACSequenceAdditions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSArray+RACSequenceAdditions.h"; path = "ReactiveObjC/NSArray+RACSequenceAdditions.h"; sourceTree = ""; }; + 5625F93AE851A424B622A7AE18538527 /* MASConstraintMaker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MASConstraintMaker.h; path = Masonry/MASConstraintMaker.h; sourceTree = ""; }; + 57332336D3C571B3F1628C476FA358CA /* RACmetamacros.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RACmetamacros.h; path = ReactiveObjC/extobjc/RACmetamacros.h; sourceTree = ""; }; + 591DB7CE7DE6D4E2827BC73612B65B20 /* RACSubscriber+Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "RACSubscriber+Private.h"; path = "ReactiveObjC/RACSubscriber+Private.h"; sourceTree = ""; }; + 598F8165863EF02A9B983AFB931236BA /* MJExtension.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = MJExtension.debug.xcconfig; sourceTree = ""; }; + 5A27DE015DF1CF703475F9B58BA32B42 /* ja.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = ja.lproj; path = Resources/ja.lproj; sourceTree = ""; }; + 5D7F0A9546B9AEB5A6625473E776137E /* RACScheduler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RACScheduler.h; path = ReactiveObjC/RACScheduler.h; sourceTree = ""; }; + 5E118A1F80BB1B215ECBBE9F8F5950C6 /* MASShortcutBinder.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MASShortcutBinder.m; path = "Framework/User Defaults Storage/MASShortcutBinder.m"; sourceTree = ""; }; + 5F5718D7E1740397D6531E52D2DAF58B /* MASPreferencesWindowController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MASPreferencesWindowController.m; path = Framework/MASPreferencesWindowController.m; sourceTree = ""; }; + 5F5BF928F82A886C8E3388230ED79B39 /* JLRParsingUtilities.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = JLRParsingUtilities.m; path = JLRoutes/Classes/JLRParsingUtilities.m; sourceTree = ""; }; + 5F6C54676F2CD046B3B2E2C1478B60DB /* MASPreferences.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = MASPreferences.modulemap; sourceTree = ""; }; + 5FB67B384497FD2084C365BEF63C8041 /* NSDictionary+RACSequenceAdditions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSDictionary+RACSequenceAdditions.h"; path = "ReactiveObjC/NSDictionary+RACSequenceAdditions.h"; sourceTree = ""; }; + 5FDFC78F08EBC020DBD1C6D8C4A0C55A /* NSInvocation+RACTypeParsing.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSInvocation+RACTypeParsing.h"; path = "ReactiveObjC/NSInvocation+RACTypeParsing.h"; sourceTree = ""; }; + 600DDBAD99DE6B05BE64FBF58452AFC6 /* MJProperty.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MJProperty.h; path = MJExtension/MJProperty.h; sourceTree = ""; }; + 604C599F9DB7356D975D61A7A4A4B102 /* it.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = it.lproj; path = Resources/it.lproj; sourceTree = ""; }; 609FBC631238BFF4067769DA895D7F5D /* Pods-Easydict-frameworks.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-Easydict-frameworks.sh"; sourceTree = ""; }; - 60C40D93D96D37025F44E89DEBF31E5A /* mz_os.c */ = {isa = PBXFileReference; includeInIndex = 1; name = mz_os.c; path = SSZipArchive/minizip/mz_os.c; sourceTree = ""; }; - 61286529209102EE737D468F7983842F /* mz_strm_buf.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = mz_strm_buf.h; path = SSZipArchive/minizip/mz_strm_buf.h; sourceTree = ""; }; - 620144C2AA25D3F3D017917BFA686CC4 /* Masonry.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Masonry.h; path = Masonry/Masonry.h; sourceTree = ""; }; - 62E125E92733A769AF8D2A0F2D786DF4 /* AFNetworking.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = AFNetworking.debug.xcconfig; sourceTree = ""; }; - 6383C08957A7FBA9CDED665C4D17011C /* AFHTTPSessionManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = AFHTTPSessionManager.m; path = AFNetworking/AFHTTPSessionManager.m; sourceTree = ""; }; - 639780F06A7675F06FC52FBB505566E3 /* AFNetworking-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "AFNetworking-Info.plist"; sourceTree = ""; }; - 645BF69E5102E129016883BAF405EDA2 /* RACStringSequence.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RACStringSequence.m; path = ReactiveObjC/RACStringSequence.m; sourceTree = ""; }; - 6593D5EDCB13F136174E99F5E12048CC /* AFNetworkReachabilityManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AFNetworkReachabilityManager.h; path = AFNetworking/AFNetworkReachabilityManager.h; sourceTree = ""; }; - 6615B856C726D9285A4B6E28EC715E3D /* AFNetworkReachabilityManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = AFNetworkReachabilityManager.m; path = AFNetworking/AFNetworkReachabilityManager.m; sourceTree = ""; }; - 6645A0CE1E3C5478AA7982BAF791BDCF /* NSObject+MJClass.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSObject+MJClass.h"; path = "MJExtension/NSObject+MJClass.h"; sourceTree = ""; }; - 66F85BF92F64672B841333EB55939856 /* RACSequence.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RACSequence.h; path = ReactiveObjC/RACSequence.h; sourceTree = ""; }; - 671640F1EFB891F33D3ED5B278726652 /* MASShortcut.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = MASShortcut.release.xcconfig; sourceTree = ""; }; - 6830755AEAB3C4B9F24ED198BA3061E9 /* RACEagerSequence.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RACEagerSequence.m; path = ReactiveObjC/RACEagerSequence.m; sourceTree = ""; }; - 68A5FF61B74B2BB00EC1603A05425CBD /* MASShortcut-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "MASShortcut-umbrella.h"; sourceTree = ""; }; - 69FDF156A1E3B19D0B4442BBEC799AF7 /* JLRRouteDefinition.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = JLRRouteDefinition.m; path = JLRoutes/Classes/JLRRouteDefinition.m; sourceTree = ""; }; - 6B6E56C0C5CAA3DC7F9D53957B4AA419 /* zh-Hant.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = "zh-Hant.lproj"; path = "Resources/zh-Hant.lproj"; sourceTree = ""; }; - 6B8C236F36DDA1AF6BF6AD557926AC6D /* RACSubscriptingAssignmentTrampoline.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RACSubscriptingAssignmentTrampoline.m; path = ReactiveObjC/RACSubscriptingAssignmentTrampoline.m; sourceTree = ""; }; - 6C965ADFA047805DBA2682A0EA6735D8 /* JLRoutes.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = JLRoutes.modulemap; sourceTree = ""; }; - 6D381FEE44416F6049833374438D085E /* AFNetworking-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "AFNetworking-dummy.m"; sourceTree = ""; }; - 6E544E579AE685D89B4380083187FBBB /* RACBehaviorSubject.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RACBehaviorSubject.h; path = ReactiveObjC/RACBehaviorSubject.h; sourceTree = ""; }; - 6E8D488559531890750964D8C257BD1A /* RACReplaySubject.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RACReplaySubject.h; path = ReactiveObjC/RACReplaySubject.h; sourceTree = ""; }; - 6F3E208E9CF3434FE64F41B362132B8A /* MASLayoutConstraint.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MASLayoutConstraint.h; path = Masonry/MASLayoutConstraint.h; sourceTree = ""; }; - 6FB1D078C1B02760D6A76B30DF6ED725 /* MASPreferences.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = MASPreferences.modulemap; sourceTree = ""; }; - 70B2C3D2670844BC03CC32D6C32DBE75 /* RACSignalProvider.d */ = {isa = PBXFileReference; includeInIndex = 1; name = RACSignalProvider.d; path = ReactiveObjC/RACSignalProvider.d; sourceTree = ""; }; - 71180F4A1852F33F28B14CC8D66E30EA /* RACBehaviorSubject.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RACBehaviorSubject.m; path = ReactiveObjC/RACBehaviorSubject.m; sourceTree = ""; }; - 716E3308E33CDC048B309A9F4E435B11 /* RACEmptySignal.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RACEmptySignal.m; path = ReactiveObjC/RACEmptySignal.m; sourceTree = ""; }; - 72C81751CF5581713501BEC1246357D2 /* mz_strm_split.c */ = {isa = PBXFileReference; includeInIndex = 1; name = mz_strm_split.c; path = SSZipArchive/minizip/mz_strm_split.c; sourceTree = ""; }; - 72EF521FA8383B6F1C1CBDFA52EE7950 /* NSURLConnection+RACSupport.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSURLConnection+RACSupport.h"; path = "ReactiveObjC/NSURLConnection+RACSupport.h"; sourceTree = ""; }; - 7437ED283C689AAFE1837B32CBCA100E /* RACSubscriptionScheduler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RACSubscriptionScheduler.m; path = ReactiveObjC/RACSubscriptionScheduler.m; sourceTree = ""; }; - 744DFBEAFEE55078C8D10A0183E0BFF6 /* RACKVOProxy.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RACKVOProxy.h; path = ReactiveObjC/RACKVOProxy.h; sourceTree = ""; }; - 75386950DD5F25918BB1EEF742C7D9AA /* SSZipArchive-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "SSZipArchive-dummy.m"; sourceTree = ""; }; - 76B745883BA036C467C82746EB679861 /* Masonry-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Masonry-prefix.pch"; sourceTree = ""; }; - 76E6CA813E55739CC5BCBDE2079AD514 /* KVOController.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = KVOController.modulemap; sourceTree = ""; }; - 77D940AC94A6CA6836E942AE9814EFD6 /* NSObject+MJKeyValue.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSObject+MJKeyValue.m"; path = "MJExtension/NSObject+MJKeyValue.m"; sourceTree = ""; }; - 7914E31A5D70C045D11F24B3F87640BB /* mz_zip_rw.c */ = {isa = PBXFileReference; includeInIndex = 1; name = mz_zip_rw.c; path = SSZipArchive/minizip/mz_zip_rw.c; sourceTree = ""; }; + 63770CC527BB6F6D848F71FA5B3825CD /* NSIndexSet+RACSequenceAdditions.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSIndexSet+RACSequenceAdditions.m"; path = "ReactiveObjC/NSIndexSet+RACSequenceAdditions.m"; sourceTree = ""; }; + 637CF36B361FC92C13AB4A54A4328CA4 /* RACArraySequence.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RACArraySequence.h; path = ReactiveObjC/RACArraySequence.h; sourceTree = ""; }; + 63EF7037BCC5C6FBC19A441ACC7F619E /* AFNetworking-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "AFNetworking-Info.plist"; sourceTree = ""; }; + 6457B693FEC91A0A8E86EB7105C8B31E /* NSControl+RACCommandSupport.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSControl+RACCommandSupport.h"; path = "ReactiveObjC/NSControl+RACCommandSupport.h"; sourceTree = ""; }; + 64BE225CE299B9A5139450D47403CCAE /* AFNetworking.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = AFNetworking.modulemap; sourceTree = ""; }; + 64CC83238DB7C833833C937D8D1721B2 /* MASLocalization.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MASLocalization.m; path = Framework/UI/MASLocalization.m; sourceTree = ""; }; + 64FC5B89973A9BBA2E34B86493690D6E /* RACDisposable.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RACDisposable.m; path = ReactiveObjC/RACDisposable.m; sourceTree = ""; }; + 65E1C4A2EA40FCAC93DE04DC53CB65F5 /* MASPreferences.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = MASPreferences.release.xcconfig; sourceTree = ""; }; + 65F6B1F59FB75CA17AF3F2A69F4B39CB /* MASViewConstraint.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MASViewConstraint.m; path = Masonry/MASViewConstraint.m; sourceTree = ""; }; + 6746F16048E61E9228198C90B125454C /* MASViewAttribute.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MASViewAttribute.m; path = Masonry/MASViewAttribute.m; sourceTree = ""; }; + 67615EAD637B6A48F4AA51D5890AC031 /* MJPropertyKey.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MJPropertyKey.h; path = MJExtension/MJPropertyKey.h; sourceTree = ""; }; + 67AC21D8CEFD70F19580760DB46C52F3 /* MASUtilities.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MASUtilities.h; path = Masonry/MASUtilities.h; sourceTree = ""; }; + 67D6FF948119298A85C2A5D2E687B50D /* NSArray+MASAdditions.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSArray+MASAdditions.m"; path = "Masonry/NSArray+MASAdditions.m"; sourceTree = ""; }; + 68073F3A5385DAF3DF77757ABF121769 /* AFSecurityPolicy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = AFSecurityPolicy.m; path = AFNetworking/AFSecurityPolicy.m; sourceTree = ""; }; + 684929ACE56AE3580624ACE30CC449FA /* ru.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = ru.lproj; path = Resources/ru.lproj; sourceTree = ""; }; + 68A1AE4033446A00B9B658009304A320 /* RACCompoundDisposable.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RACCompoundDisposable.m; path = ReactiveObjC/RACCompoundDisposable.m; sourceTree = ""; }; + 6919C37C6B26F4098D0EA1B61962FBBB /* MASPreferences.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MASPreferences.h; path = Framework/MASPreferences.h; sourceTree = ""; }; + 693BCC41CA6AE081DCD74851DF36DD8A /* MJPropertyType.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MJPropertyType.h; path = MJExtension/MJPropertyType.h; sourceTree = ""; }; + 6A40475940FC344B025307A0C518A4EF /* Masonry-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Masonry-dummy.m"; sourceTree = ""; }; + 6A8F378C18103DCA850A05EBFCE4E72D /* NSString+RACSupport.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSString+RACSupport.m"; path = "ReactiveObjC/NSString+RACSupport.m"; sourceTree = ""; }; + 6CCFC8929A42FFCEAA406A5C537FEF4B /* AFURLRequestSerialization.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = AFURLRequestSerialization.m; path = AFNetworking/AFURLRequestSerialization.m; sourceTree = ""; }; + 6D614C5FC34AA34451C2BDA1C0E421EA /* JLRoutes.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = JLRoutes.m; path = JLRoutes/JLRoutes.m; sourceTree = ""; }; + 6E6E01872C9281ADD015A35037ECEF69 /* MJExtension-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "MJExtension-dummy.m"; sourceTree = ""; }; + 6E89CCDD82841225308C2BE76B785C66 /* AFNetworking-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "AFNetworking-umbrella.h"; sourceTree = ""; }; + 6F3C6B8BD03A7EA869C7EA4FAFA9FBD0 /* RACEmptySequence.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RACEmptySequence.h; path = ReactiveObjC/RACEmptySequence.h; sourceTree = ""; }; + 703A69CB76ECF4F69270F3B3DD1F9EE1 /* RACMulticastConnection+Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "RACMulticastConnection+Private.h"; path = "ReactiveObjC/RACMulticastConnection+Private.h"; sourceTree = ""; }; + 71CA2A82FC3C54FC57C3BA363945B7C0 /* MASShortcut.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = MASShortcut.modulemap; sourceTree = ""; }; + 71F236E38605D856EA8099E70D35452C /* RACReplaySubject.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RACReplaySubject.m; path = ReactiveObjC/RACReplaySubject.m; sourceTree = ""; }; + 721DC296B9673576570113B47B8C4095 /* RACImmediateScheduler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RACImmediateScheduler.h; path = ReactiveObjC/RACImmediateScheduler.h; sourceTree = ""; }; + 730E2CA15BE47396A84B9D738C378F64 /* ko.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = ko.lproj; path = Resources/ko.lproj; sourceTree = ""; }; + 7397CEDA777130C0129CCE6E1C63624B /* pl.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = pl.lproj; path = Resources/pl.lproj; sourceTree = ""; }; + 739BB29D7F24D25CC4FD1FF3C3A1446C /* RACStream+Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "RACStream+Private.h"; path = "ReactiveObjC/RACStream+Private.h"; sourceTree = ""; }; + 7412C6245E30E86FD6CDD9502444A22F /* KVOController.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = KVOController.release.xcconfig; sourceTree = ""; }; + 770525F5992933EA6AA843E871896267 /* JLRoutes-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "JLRoutes-dummy.m"; sourceTree = ""; }; + 77F669F680AB719763FA6289A8D3C6DC /* MJExtension.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MJExtension.h; path = MJExtension/MJExtension.h; sourceTree = ""; }; + 788B21A2A553AA362A1CB6577CFA6B5A /* JLRRouteDefinition.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = JLRRouteDefinition.m; path = JLRoutes/Classes/JLRRouteDefinition.m; sourceTree = ""; }; 7928E94955D0DC03EACC29A7B0111C9C /* Pods-Easydict.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = "Pods-Easydict.modulemap"; sourceTree = ""; }; - 7A058982E19B35D9A30A1DB2F438537F /* RACArraySequence.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RACArraySequence.h; path = ReactiveObjC/RACArraySequence.h; sourceTree = ""; }; - 7AF76A72EDACF76B83A987300F16AB69 /* RACTupleSequence.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RACTupleSequence.m; path = ReactiveObjC/RACTupleSequence.m; sourceTree = ""; }; - 7B327524DED4BFCBBDC98824D6D7DA24 /* NSObject+FBKVOController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSObject+FBKVOController.m"; path = "FBKVOController/NSObject+FBKVOController.m"; sourceTree = ""; }; - 7BE2D8C6F394B6798FB84B891673CD89 /* RACSignalSequence.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RACSignalSequence.h; path = ReactiveObjC/RACSignalSequence.h; sourceTree = ""; }; - 7C08299169CA9BD83017B7B59F68CF16 /* MASUtilities.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MASUtilities.h; path = Masonry/MASUtilities.h; sourceTree = ""; }; - 7CB6C6457F9821C840ECFDF00986E0A2 /* RACSubscriber.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RACSubscriber.h; path = ReactiveObjC/RACSubscriber.h; sourceTree = ""; }; - 7D13721FF857EAF2519382E9447F2C6E /* ZipArchive.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ZipArchive.h; path = SSZipArchive/ZipArchive.h; sourceTree = ""; }; - 7D333D5A4F4400AD68E94D037D504E85 /* JLRRouteDefinition.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JLRRouteDefinition.h; path = JLRoutes/Classes/JLRRouteDefinition.h; sourceTree = ""; }; - 7D3F86A8F2D57F8606278049DE83F00A /* MASLayoutConstraint.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MASLayoutConstraint.m; path = Masonry/MASLayoutConstraint.m; sourceTree = ""; }; - 7F188F814183CF510B546FF7091D959B /* AFURLSessionManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = AFURLSessionManager.m; path = AFNetworking/AFURLSessionManager.m; sourceTree = ""; }; - 7F59BDF122A9F42050214141FFAB2B4D /* MASLocalization.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MASLocalization.h; path = Framework/UI/MASLocalization.h; sourceTree = ""; }; - 7FA3B1B356975FCDCDE7F135D3032C24 /* ResourceBundle-MASShortcut-MASShortcut-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "ResourceBundle-MASShortcut-MASShortcut-Info.plist"; sourceTree = ""; }; - 80798FE6FF9EAEB0A37A82FF359D9304 /* RACStream.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RACStream.h; path = ReactiveObjC/RACStream.h; sourceTree = ""; }; - 807FFB03585B98FB46A28AC13CD21D38 /* ja.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = ja.lproj; path = Resources/ja.lproj; sourceTree = ""; }; - 8178A8803ABDE831D9F6888A7B0FD504 /* NSArray+MASAdditions.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSArray+MASAdditions.m"; path = "Masonry/NSArray+MASAdditions.m"; sourceTree = ""; }; - 81BB4D34E921252A4B804C3EEF36D80D /* RACAnnotations.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RACAnnotations.h; path = ReactiveObjC/RACAnnotations.h; sourceTree = ""; }; - 82692790B933698A73067C5495610CE0 /* NSNotificationCenter+RACSupport.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSNotificationCenter+RACSupport.m"; path = "ReactiveObjC/NSNotificationCenter+RACSupport.m"; sourceTree = ""; }; - 82BB16DF8AFB4286A8B0E1EBC99FB7CD /* SwiftFormat.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = SwiftFormat.debug.xcconfig; sourceTree = ""; }; - 82D8161DD3E4F70B7FC3A3DA93C50729 /* JLRoutes-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "JLRoutes-Info.plist"; sourceTree = ""; }; - 830AEAC9CFB2F6B2C5EC9FC4A7F6503D /* ReactiveObjC.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = ReactiveObjC.release.xcconfig; sourceTree = ""; }; - 8382FA1718DA80EF598F3F90510253BF /* NSString+RACKeyPathUtilities.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSString+RACKeyPathUtilities.h"; path = "ReactiveObjC/NSString+RACKeyPathUtilities.h"; sourceTree = ""; }; - 83DDB72A11FC177EF9AEC13773F147C1 /* RACErrorSignal.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RACErrorSignal.m; path = ReactiveObjC/RACErrorSignal.m; sourceTree = ""; }; - 844E2C31F1FCA38BB2AB8252F33294DD /* JLRoutes.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JLRoutes.h; path = JLRoutes/JLRoutes.h; sourceTree = ""; }; - 846F179F49DCC7EB13A56ACA952123CD /* NSOrderedSet+RACSequenceAdditions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSOrderedSet+RACSequenceAdditions.h"; path = "ReactiveObjC/NSOrderedSet+RACSequenceAdditions.h"; sourceTree = ""; }; + 7CE37FA4A2F489645A1017746EC0CA0D /* RACStream.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RACStream.h; path = ReactiveObjC/RACStream.h; sourceTree = ""; }; + 7D4F58C235F070C7997D182C3ABB1E38 /* JLRRouteHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JLRRouteHandler.h; path = JLRoutes/Classes/JLRRouteHandler.h; sourceTree = ""; }; + 7EB44E29D432DEF742D5E4B088F7211E /* Masonry.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Masonry.h; path = Masonry/Masonry.h; sourceTree = ""; }; + 7EF47CB28463C586B26B2991DB5B8480 /* NSText+RACSignalSupport.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSText+RACSignalSupport.m"; path = "ReactiveObjC/NSText+RACSignalSupport.m"; sourceTree = ""; }; + 7F129CA0BA48EE1F0F7FAEA3ECF98D46 /* MASShortcut.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MASShortcut.m; path = Framework/Model/MASShortcut.m; sourceTree = ""; }; + 800B51F871BBAE506C7CEB56383D360B /* JLRoutes-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "JLRoutes-Info.plist"; sourceTree = ""; }; + 81E7C3389E95A8A52FAE406FBFED7396 /* MJProperty.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MJProperty.m; path = MJExtension/MJProperty.m; sourceTree = ""; }; + 82A4ED31D7A854EC028871D0B7D7DFC3 /* RACStringSequence.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RACStringSequence.m; path = ReactiveObjC/RACStringSequence.m; sourceTree = ""; }; + 83B58515EF009DAB463A6B5233F53376 /* Masonry-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Masonry-Info.plist"; sourceTree = ""; }; + 85136B76D7FEF75ACD42AD2E2D895FBC /* NSInvocation+RACTypeParsing.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSInvocation+RACTypeParsing.m"; path = "ReactiveObjC/NSInvocation+RACTypeParsing.m"; sourceTree = ""; }; 855AAEC987B11544B8EA8FABF064A20E /* SystemConfiguration.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = SystemConfiguration.framework; path = Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk/System/Library/Frameworks/SystemConfiguration.framework; sourceTree = DEVELOPER_DIR; }; - 85A27B6C38518B0DBA47F58FF9FD03AB /* RACUnit.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RACUnit.m; path = ReactiveObjC/RACUnit.m; sourceTree = ""; }; - 86CCF1AC31D756E8B116E91AF0503357 /* SSZipArchive.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SSZipArchive.m; path = SSZipArchive/SSZipArchive.m; sourceTree = ""; }; - 875F719626D7F2DF25BD26359B4FA87B /* NSObject+RACDeallocating.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSObject+RACDeallocating.h"; path = "ReactiveObjC/NSObject+RACDeallocating.h"; sourceTree = ""; }; - 887DCFE4840BA027C996F87F5C7B8B11 /* MJExtension.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = MJExtension.release.xcconfig; sourceTree = ""; }; - 8A3F20C39E7B979DC833EB8EAB079FD1 /* RACKVOProxy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RACKVOProxy.m; path = ReactiveObjC/RACKVOProxy.m; sourceTree = ""; }; + 8662EE39A070B79BE42A8A22983F4264 /* AFURLResponseSerialization.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = AFURLResponseSerialization.m; path = AFNetworking/AFURLResponseSerialization.m; sourceTree = ""; }; + 86CBCF2CC9084A4B4ECA0A9B13DC6F2A /* NSObject+RACDeallocating.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSObject+RACDeallocating.m"; path = "ReactiveObjC/NSObject+RACDeallocating.m"; sourceTree = ""; }; + 87170DD51F5D2459662B6DF0F82C60BD /* RACSubscriptionScheduler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RACSubscriptionScheduler.h; path = ReactiveObjC/RACSubscriptionScheduler.h; sourceTree = ""; }; + 871782758F1BDABA53844F5B77A1BB8F /* fr.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = fr.lproj; path = Resources/fr.lproj; sourceTree = ""; }; + 8732412B937B54EE325D65A55733DE4F /* KVOController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = KVOController.h; path = FBKVOController/KVOController.h; sourceTree = ""; }; + 87EC75ECC2B55AD31C743F0A985F8650 /* ReactiveObjC.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ReactiveObjC.h; path = ReactiveObjC/ReactiveObjC.h; sourceTree = ""; }; + 87ECC3154393B00641A86D3A2E1AB6CC /* MASPreferences-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "MASPreferences-umbrella.h"; sourceTree = ""; }; + 88A8A5463ED57DE4C56D0FEF06D6800D /* NSEnumerator+RACSequenceAdditions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSEnumerator+RACSequenceAdditions.h"; path = "ReactiveObjC/NSEnumerator+RACSequenceAdditions.h"; sourceTree = ""; }; + 88B3AE0C1AACF41F3110D93A3E54FCAB /* ReactiveObjC-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "ReactiveObjC-Info.plist"; sourceTree = ""; }; + 88CADD68D050BE1261C07FE417DD8F5B /* NSArray+MASShorthandAdditions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSArray+MASShorthandAdditions.h"; path = "Masonry/NSArray+MASShorthandAdditions.h"; sourceTree = ""; }; + 88EBF7349FB1E511A56DD59B085384D5 /* NSArray+MASAdditions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSArray+MASAdditions.h"; path = "Masonry/NSArray+MASAdditions.h"; sourceTree = ""; }; + 898E00ADB6FD7F9375280975FDFEC9F8 /* KVOController-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "KVOController-prefix.pch"; sourceTree = ""; }; + 89C15C0B172E1FBF5B29DE5DAF45BE18 /* RACUnit.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RACUnit.m; path = ReactiveObjC/RACUnit.m; sourceTree = ""; }; + 8A5B2722E81669D7E064E8258636315D /* RACScheduler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RACScheduler.m; path = ReactiveObjC/RACScheduler.m; sourceTree = ""; }; + 8AC754C18E4EBD564FF0BE9BDD9D73B3 /* NSObject+MJCoding.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSObject+MJCoding.m"; path = "MJExtension/NSObject+MJCoding.m"; sourceTree = ""; }; + 8AC873C67EA040B9547FEEE92ED41138 /* ReactiveObjC-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "ReactiveObjC-prefix.pch"; sourceTree = ""; }; 8B00B1A7406B4F5FEEC4C4B39D91D48A /* Pods-Easydict.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-Easydict.debug.xcconfig"; sourceTree = ""; }; - 8D20F677C414C5AE3C31FBFCD2A586D8 /* NSInvocation+RACTypeParsing.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSInvocation+RACTypeParsing.m"; path = "ReactiveObjC/NSInvocation+RACTypeParsing.m"; sourceTree = ""; }; - 8E6579B862297A3105F758028C4CE24A /* RACValueTransformer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RACValueTransformer.m; path = ReactiveObjC/RACValueTransformer.m; sourceTree = ""; }; - 8E951F8C0F789EE8E400BECFC1B94DA1 /* mz_compat.c */ = {isa = PBXFileReference; includeInIndex = 1; name = mz_compat.c; path = SSZipArchive/minizip/mz_compat.c; sourceTree = ""; }; - 905FDAE730F581CE925C71558032A138 /* NSString+RACSequenceAdditions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSString+RACSequenceAdditions.h"; path = "ReactiveObjC/NSString+RACSequenceAdditions.h"; sourceTree = ""; }; - 90E9858D85A96D9EE07817FE11174AB8 /* MASPreferences-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "MASPreferences-umbrella.h"; sourceTree = ""; }; + 8B06FA4447823AF0F6F97B8E96B719A4 /* NSControl+RACTextSignalSupport.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSControl+RACTextSignalSupport.h"; path = "ReactiveObjC/NSControl+RACTextSignalSupport.h"; sourceTree = ""; }; + 8C47AD376829AC1E98C2387B2ED5149D /* RACSubscriptingAssignmentTrampoline.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RACSubscriptingAssignmentTrampoline.h; path = ReactiveObjC/RACSubscriptingAssignmentTrampoline.h; sourceTree = ""; }; + 8D090957A33F33D4EACE904ABCD322E6 /* RACTestScheduler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RACTestScheduler.h; path = ReactiveObjC/RACTestScheduler.h; sourceTree = ""; }; + 8D2B0003F49FC9EDC7590321AC6BFB88 /* RACDynamicSignal.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RACDynamicSignal.m; path = ReactiveObjC/RACDynamicSignal.m; sourceTree = ""; }; + 8D2FE85C7430AFD024C0474EFB247B76 /* RACMulticastConnection.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RACMulticastConnection.h; path = ReactiveObjC/RACMulticastConnection.h; sourceTree = ""; }; + 8F8B93E05CB12A7E45793451C01DA161 /* NSOrderedSet+RACSequenceAdditions.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSOrderedSet+RACSequenceAdditions.m"; path = "ReactiveObjC/NSOrderedSet+RACSequenceAdditions.m"; sourceTree = ""; }; + 900B502DEA493BB0F4F6121E3F8056D5 /* RACSubscriber.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RACSubscriber.h; path = ReactiveObjC/RACSubscriber.h; sourceTree = ""; }; + 901C1A6C5DCC4331CFF8AEAE18A879F0 /* MASKeyMasks.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MASKeyMasks.h; path = Framework/Model/MASKeyMasks.h; sourceTree = ""; }; + 90D47D004B261B10EB65D9F403336742 /* RACSubject.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RACSubject.h; path = ReactiveObjC/RACSubject.h; sourceTree = ""; }; + 90FBE6CB793F698D6B87D4432831BD99 /* RACDisposable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RACDisposable.h; path = ReactiveObjC/RACDisposable.h; sourceTree = ""; }; 91595758B02C3B624DAEBA1FA94E413B /* Pods-EasydictTests-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Pods-EasydictTests-umbrella.h"; sourceTree = ""; }; - 91B23470DEB9A986332BEB5034234BC7 /* SSZipArchive */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = SSZipArchive; path = SSZipArchive.framework; sourceTree = BUILT_PRODUCTS_DIR; }; - 926A1CC6C9257E0C7EC772049C078605 /* NSLayoutConstraint+MASDebugAdditions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSLayoutConstraint+MASDebugAdditions.h"; path = "Masonry/NSLayoutConstraint+MASDebugAdditions.h"; sourceTree = ""; }; + 91A7DD4172A033191FD66C63275D0DF8 /* es.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = es.lproj; path = Resources/es.lproj; sourceTree = ""; }; + 920696354FC7E765F24C5A4A3B3DCE09 /* JLRoutes.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = JLRoutes.modulemap; sourceTree = ""; }; + 9243E79BAE39ABF95CAF568F2FFF2A04 /* RACEagerSequence.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RACEagerSequence.h; path = ReactiveObjC/RACEagerSequence.h; sourceTree = ""; }; + 928C0B77481831CA04347484C68D1646 /* NSObject+MJClass.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSObject+MJClass.m"; path = "MJExtension/NSObject+MJClass.m"; sourceTree = ""; }; 9312CC9A36808D0478AE8052EF3DF43A /* Pods-EasydictTests-acknowledgements.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-EasydictTests-acknowledgements.plist"; sourceTree = ""; }; - 94C6826C2F4F57056B6928E96D780AB0 /* RACSignal+Operations.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "RACSignal+Operations.h"; path = "ReactiveObjC/RACSignal+Operations.h"; sourceTree = ""; }; + 93456C1C7C8084B69D5DC9D2005E009E /* NSObject+FBKVOController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSObject+FBKVOController.h"; path = "FBKVOController/NSObject+FBKVOController.h"; sourceTree = ""; }; + 934BDB24FA9C8A92FBA878383A672CF4 /* pt.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = pt.lproj; path = Resources/pt.lproj; sourceTree = ""; }; + 93DF1638CD2F8B386BDC015BF9818839 /* MASShortcut-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "MASShortcut-umbrella.h"; sourceTree = ""; }; + 9431131D924F8FACC0BDBAC0DA230A7A /* NSObject+RACDescription.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSObject+RACDescription.m"; path = "ReactiveObjC/NSObject+RACDescription.m"; sourceTree = ""; }; + 948964A755759E5C30E07FDB640F6070 /* RACStringSequence.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RACStringSequence.h; path = ReactiveObjC/RACStringSequence.h; sourceTree = ""; }; 9557017CFFCCA6BDFC4839A96EFD0115 /* Pods-EasydictTests-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-EasydictTests-dummy.m"; sourceTree = ""; }; + 95A397D2F5C88626A6774905D8DBBAB4 /* MASViewAttribute.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MASViewAttribute.h; path = Masonry/MASViewAttribute.h; sourceTree = ""; }; + 95E168FCAECAB4B00D2398F200EE92D8 /* RACSerialDisposable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RACSerialDisposable.h; path = ReactiveObjC/RACSerialDisposable.h; sourceTree = ""; }; 9621C6383F5733C35183B2DE886C7EC6 /* ReactiveObjC */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = ReactiveObjC; path = ReactiveObjC.framework; sourceTree = BUILT_PRODUCTS_DIR; }; + 969B21DC4461E2E59E371E5AEB3FD09D /* RACKVOProxy.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RACKVOProxy.h; path = ReactiveObjC/RACKVOProxy.h; sourceTree = ""; }; 96D7824CF9886D89981192488F3F0108 /* CoreServices.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreServices.framework; path = Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk/System/Library/Frameworks/CoreServices.framework; sourceTree = DEVELOPER_DIR; }; - 976EE6319BA16DFFDB11904E218A0971 /* fr.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = fr.lproj; path = Resources/fr.lproj; sourceTree = ""; }; - 98AE1369D5B868B839FE465A7F7A3198 /* mz_strm_split.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = mz_strm_split.h; path = SSZipArchive/minizip/mz_strm_split.h; sourceTree = ""; }; - 98FDD148C617A9476B89F9E78FD31C0E /* RACSerialDisposable.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RACSerialDisposable.m; path = ReactiveObjC/RACSerialDisposable.m; sourceTree = ""; }; - 99352309739B320EB7496FF4CB86B26A /* RACSubscriptingAssignmentTrampoline.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RACSubscriptingAssignmentTrampoline.h; path = ReactiveObjC/RACSubscriptingAssignmentTrampoline.h; sourceTree = ""; }; - 997943020D204A40C368CF454D3E7F26 /* AFURLRequestSerialization.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = AFURLRequestSerialization.m; path = AFNetworking/AFURLRequestSerialization.m; sourceTree = ""; }; - 99DF50C0D71D7A7943C3E00F3DAD0366 /* RACScopedDisposable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RACScopedDisposable.h; path = ReactiveObjC/RACScopedDisposable.h; sourceTree = ""; }; - 9ADAFD07CED1221E6FE93F48DFBE1B87 /* RACKVOChannel.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RACKVOChannel.m; path = ReactiveObjC/RACKVOChannel.m; sourceTree = ""; }; + 97B9F2337913A49C751244AABAEDE23E /* Masonry.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = Masonry.release.xcconfig; sourceTree = ""; }; + 98DA7C31845B11E5E9EBD831F28190FF /* MASShortcutView+Bindings.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "MASShortcutView+Bindings.m"; path = "Framework/UI/MASShortcutView+Bindings.m"; sourceTree = ""; }; + 9900F43FA4AC6CE9C5F6E70AC70DA0A4 /* AFNetworking-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "AFNetworking-dummy.m"; sourceTree = ""; }; + 998369D782732EA87BD493C1D0B05A33 /* MASConstraintMaker.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MASConstraintMaker.m; path = Masonry/MASConstraintMaker.m; sourceTree = ""; }; + 99AA657F879F25B6FC467E19D0F77123 /* NSObject+MJProperty.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSObject+MJProperty.m"; path = "MJExtension/NSObject+MJProperty.m"; sourceTree = ""; }; + 99BBDF8E148692F49C6D547D5B4D01EE /* NSObject+RACAppKitBindings.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSObject+RACAppKitBindings.h"; path = "ReactiveObjC/NSObject+RACAppKitBindings.h"; sourceTree = ""; }; + 99E497B8E5B34A08E9B954F44EFA8EA6 /* RACValueTransformer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RACValueTransformer.m; path = ReactiveObjC/RACValueTransformer.m; sourceTree = ""; }; + 9ACC057F3DF81B44862CA6FEA49DD1AC /* RACChannel.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RACChannel.m; path = ReactiveObjC/RACChannel.m; sourceTree = ""; }; 9B03860033D4E77E2A17C8CEDAA65BA7 /* Pods-EasydictTests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-EasydictTests.release.xcconfig"; sourceTree = ""; }; 9B4352D1CD18BB2BDE8A51479B871C10 /* Pods-Easydict */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = "Pods-Easydict"; path = Pods_Easydict.framework; sourceTree = BUILT_PRODUCTS_DIR; }; - 9BDF24E978E474E8A122626EF734A512 /* RACTestScheduler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RACTestScheduler.m; path = ReactiveObjC/RACTestScheduler.m; sourceTree = ""; }; - 9BFDA2A5BEF38BE0228CC474310507B0 /* MASPreferencesWindowController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MASPreferencesWindowController.m; path = Framework/MASPreferencesWindowController.m; sourceTree = ""; }; - 9C908FBBF10B28FBE3D50676D6D35F70 /* RACSignal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RACSignal.h; path = ReactiveObjC/RACSignal.h; sourceTree = ""; }; - 9D5F87FEF30CFCDCEFE8C8715AC22428 /* MASShortcut.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MASShortcut.m; path = Framework/Model/MASShortcut.m; sourceTree = ""; }; + 9C044071E44947DB5A6EC1C8E3295F78 /* NSObject+RACKVOWrapper.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSObject+RACKVOWrapper.m"; path = "ReactiveObjC/NSObject+RACKVOWrapper.m"; sourceTree = ""; }; + 9C5BBD0242ABA2863F1583168BD00059 /* JLRoutes.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = JLRoutes.debug.xcconfig; sourceTree = ""; }; + 9CCA2E16F2CA5AB3968EBBBC56D59388 /* RACKVOChannel.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RACKVOChannel.h; path = ReactiveObjC/RACKVOChannel.h; sourceTree = ""; }; 9D635ACBDB58BEC168F692A7F0132B89 /* MASPreferences-MASPreferences */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; name = "MASPreferences-MASPreferences"; path = MASPreferences.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; 9D940727FF8FB9C785EB98E56350EF41 /* Podfile */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; name = Podfile; path = ../Podfile; sourceTree = SOURCE_ROOT; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 9FAB6BE5623F38101A4A192F11372815 /* NSControl+RACCommandSupport.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSControl+RACCommandSupport.h"; path = "ReactiveObjC/NSControl+RACCommandSupport.h"; sourceTree = ""; }; - A13EE6D970B84BE4B94742C98318B83E /* mz_strm_wzaes.c */ = {isa = PBXFileReference; includeInIndex = 1; name = mz_strm_wzaes.c; path = SSZipArchive/minizip/mz_strm_wzaes.c; sourceTree = ""; }; - A19D78F3098F5DCD7B4D38F361578A3D /* AFHTTPSessionManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AFHTTPSessionManager.h; path = AFNetworking/AFHTTPSessionManager.h; sourceTree = ""; }; - A208E5B876E66872B70583BEAFCBE6C8 /* pl.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = pl.lproj; path = Resources/pl.lproj; sourceTree = ""; }; + 9E564116F17AF80AE09123FBF77646E4 /* FBKVOController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBKVOController.h; path = FBKVOController/FBKVOController.h; sourceTree = ""; }; + 9EE1DD698E397FDA3CAF658795EEB61F /* MASShortcutView+Bindings.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "MASShortcutView+Bindings.h"; path = "Framework/UI/MASShortcutView+Bindings.h"; sourceTree = ""; }; + 9F18674DE256462BEE4BAD5D24D3372F /* NSSet+RACSequenceAdditions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSSet+RACSequenceAdditions.h"; path = "ReactiveObjC/NSSet+RACSequenceAdditions.h"; sourceTree = ""; }; + A057CDE29E056CE8AF865D1B8F7A7ADE /* RACSignal+Operations.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "RACSignal+Operations.h"; path = "ReactiveObjC/RACSignal+Operations.h"; sourceTree = ""; }; + A09DBA0292F567D6F52AAAD9C6430526 /* RACEvent.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RACEvent.m; path = ReactiveObjC/RACEvent.m; sourceTree = ""; }; A2D2EDD4A1DFEE11C6B812AE906708F7 /* Foundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Foundation.framework; path = Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk/System/Library/Frameworks/Foundation.framework; sourceTree = DEVELOPER_DIR; }; + A363F2177CFFF6EC8F77C912287ABC05 /* AFCompatibilityMacros.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AFCompatibilityMacros.h; path = AFNetworking/AFCompatibilityMacros.h; sourceTree = ""; }; + A3C6CAE6AD059DD07A9EAEC80681A3F6 /* MASShortcut.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = MASShortcut.release.xcconfig; sourceTree = ""; }; A45F11F0883FE4EE3264F359CBB240FC /* Carbon.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Carbon.framework; path = Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk/System/Library/Frameworks/Carbon.framework; sourceTree = DEVELOPER_DIR; }; - A478DDCC345699A1D673637E900F8876 /* RACErrorSignal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RACErrorSignal.h; path = ReactiveObjC/RACErrorSignal.h; sourceTree = ""; }; - A48CA6A29F07CA173086A8C99A40B118 /* SSZipCommon.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SSZipCommon.h; path = SSZipArchive/SSZipCommon.h; sourceTree = ""; }; A4FA15D44DF6BAC7550EDEED10862AA3 /* AFNetworking */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = AFNetworking; path = AFNetworking.framework; sourceTree = BUILT_PRODUCTS_DIR; }; - A5EC362E1F2C50AAB63BE616FF75E540 /* NSData+RACSupport.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSData+RACSupport.h"; path = "ReactiveObjC/NSData+RACSupport.h"; sourceTree = ""; }; - A6055A9BBEDA2BAB9499959FCBCB1053 /* mz_strm.c */ = {isa = PBXFileReference; includeInIndex = 1; name = mz_strm.c; path = SSZipArchive/minizip/mz_strm.c; sourceTree = ""; }; - A74FC1C4C39C89935A5C8CEBA606ED73 /* NSString+RACSequenceAdditions.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSString+RACSequenceAdditions.m"; path = "ReactiveObjC/NSString+RACSequenceAdditions.m"; sourceTree = ""; }; - A883EA16AD24338A1F9DC8A976C80656 /* JLRRouteHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = JLRRouteHandler.m; path = JLRoutes/Classes/JLRRouteHandler.m; sourceTree = ""; }; + A525C8B7A0E4DE2E6249F8E85445EDB0 /* RACSubscriptionScheduler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RACSubscriptionScheduler.m; path = ReactiveObjC/RACSubscriptionScheduler.m; sourceTree = ""; }; + A63729F7512EA740FEE0EA195AC9361A /* MJFoundation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MJFoundation.h; path = MJExtension/MJFoundation.h; sourceTree = ""; }; + A67450CD504F7DF1BA53A80F3C84D4FD /* MASCompositeConstraint.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MASCompositeConstraint.h; path = Masonry/MASCompositeConstraint.h; sourceTree = ""; }; + A68020C63AED43D2F02B016D1172F0A9 /* Shortcut.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Shortcut.h; path = Framework/Shortcut.h; sourceTree = ""; }; + A80A588A1F8D437D283EE06EC52A1306 /* RACSequence.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RACSequence.m; path = ReactiveObjC/RACSequence.m; sourceTree = ""; }; A8855B8F589FC345830C0325F4E7724D /* Pods-Easydict-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-Easydict-Info.plist"; sourceTree = ""; }; - A91F248BA674BDF97B04C8EF197C2E8D /* RACStream+Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "RACStream+Private.h"; path = "ReactiveObjC/RACStream+Private.h"; sourceTree = ""; }; - A93B6DB6579CD1E4E9664A3F268C2DD4 /* JLRRouteResponse.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = JLRRouteResponse.m; path = JLRoutes/Classes/JLRRouteResponse.m; sourceTree = ""; }; - AB666613F83F855C2113B9BD8290FF69 /* AFSecurityPolicy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = AFSecurityPolicy.m; path = AFNetworking/AFSecurityPolicy.m; sourceTree = ""; }; - AC962840EB19D578F8C63D776C5ADC06 /* NSObject+RACDeallocating.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSObject+RACDeallocating.m"; path = "ReactiveObjC/NSObject+RACDeallocating.m"; sourceTree = ""; }; - AD7999B0B2CA11659D051ADD77667FC3 /* KVOController-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "KVOController-dummy.m"; sourceTree = ""; }; - AEC732DDA1B10AA3DE36ACF87B6B3876 /* NSArray+RACSequenceAdditions.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSArray+RACSequenceAdditions.m"; path = "ReactiveObjC/NSArray+RACSequenceAdditions.m"; sourceTree = ""; }; - AEEC2342BD702605C7726D54D4B613A8 /* AFNetworking.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AFNetworking.h; path = AFNetworking/AFNetworking.h; sourceTree = ""; }; - AFFEAEC329EA8E2D64FD3F87865D4461 /* RACChannel.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RACChannel.h; path = ReactiveObjC/RACChannel.h; sourceTree = ""; }; - B073007D5FFAA6E7ADF88B33629692E3 /* NSObject+MJClass.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSObject+MJClass.m"; path = "MJExtension/NSObject+MJClass.m"; sourceTree = ""; }; - B20852AC8475531062C3301FFF7A63FA /* SSZipArchive-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "SSZipArchive-Info.plist"; sourceTree = ""; }; - B2FD0BC98C622B100A8F6D8F7CD3E0BA /* AFSecurityPolicy.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AFSecurityPolicy.h; path = AFNetworking/AFSecurityPolicy.h; sourceTree = ""; }; - B32BAD8B8091125D7EBD4E85DA8521F1 /* mz_strm_zlib.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = mz_strm_zlib.h; path = SSZipArchive/minizip/mz_strm_zlib.h; sourceTree = ""; }; - B449CB3F896B1C6219AA38340CB77E00 /* JLRParsingUtilities.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = JLRParsingUtilities.m; path = JLRoutes/Classes/JLRParsingUtilities.m; sourceTree = ""; }; - B46735B6AD9CFD485F2F36966814C465 /* MASViewConstraint.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MASViewConstraint.m; path = Masonry/MASViewConstraint.m; sourceTree = ""; }; - B5F839408F6CAC9C4C6F7FE64AB25811 /* RACmetamacros.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RACmetamacros.h; path = ReactiveObjC/extobjc/RACmetamacros.h; sourceTree = ""; }; - B661655404CB8E189F490FB600C604DF /* RACImmediateScheduler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RACImmediateScheduler.m; path = ReactiveObjC/RACImmediateScheduler.m; sourceTree = ""; }; - B66C7DC87A617EA53576577061FA5D94 /* RACTestScheduler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RACTestScheduler.h; path = ReactiveObjC/RACTestScheduler.h; sourceTree = ""; }; - B68522837485EE048DAF1085C371F300 /* MJExtension-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "MJExtension-Info.plist"; sourceTree = ""; }; - B688CAFCC80EE3E89C29BC388D85ACF9 /* mz_strm_mem.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = mz_strm_mem.h; path = SSZipArchive/minizip/mz_strm_mem.h; sourceTree = ""; }; - B7D18444CAB2B1E347D53B8B87F615B7 /* NSObject+RACAppKitBindings.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSObject+RACAppKitBindings.h"; path = "ReactiveObjC/NSObject+RACAppKitBindings.h"; sourceTree = ""; }; - B7E6D464AFD4D38BAAC9340D7EBD59B9 /* AFNetworking-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "AFNetworking-umbrella.h"; sourceTree = ""; }; - B7E6E289148DCAA48BC8D8BF5C4FE76E /* RACDisposable.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RACDisposable.m; path = ReactiveObjC/RACDisposable.m; sourceTree = ""; }; + A895C70FC205D4C828BDDA9B32AA8C25 /* NSObject+RACKVOWrapper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSObject+RACKVOWrapper.h"; path = "ReactiveObjC/NSObject+RACKVOWrapper.h"; sourceTree = ""; }; + AA502F6F3E15635A61A28C7BD0527845 /* NSString+RACSequenceAdditions.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSString+RACSequenceAdditions.m"; path = "ReactiveObjC/NSString+RACSequenceAdditions.m"; sourceTree = ""; }; + ABD9ABE326EC7D0AC6E288CA1EEF8983 /* NSNotificationCenter+RACSupport.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSNotificationCenter+RACSupport.m"; path = "ReactiveObjC/NSNotificationCenter+RACSupport.m"; sourceTree = ""; }; + ABE88F7BB5D4B4B81693E91DD9F04F16 /* RACEXTScope.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RACEXTScope.h; path = ReactiveObjC/extobjc/RACEXTScope.h; sourceTree = ""; }; + ACD836DF5991AC95BA07C0B0A37FD771 /* RACBlockTrampoline.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RACBlockTrampoline.h; path = ReactiveObjC/RACBlockTrampoline.h; sourceTree = ""; }; + ACDFA4F3C1F306F3AFD355D748B780E4 /* MASShortcut-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "MASShortcut-dummy.m"; sourceTree = ""; }; + AD20BF87C3E8D0A70DE4247BA7286001 /* View+MASAdditions.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "View+MASAdditions.m"; path = "Masonry/View+MASAdditions.m"; sourceTree = ""; }; + AD36416299FD1BBB5C0715988BCAE464 /* MASPreferencesViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MASPreferencesViewController.h; path = Framework/MASPreferencesViewController.h; sourceTree = ""; }; + ADDF104BB27C1F5E1498DA5687684824 /* MJFoundation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MJFoundation.m; path = MJExtension/MJFoundation.m; sourceTree = ""; }; + AE7DC45DD4F3FAA78571056EAFEFF7D0 /* NSObject+RACSelectorSignal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSObject+RACSelectorSignal.h"; path = "ReactiveObjC/NSObject+RACSelectorSignal.h"; sourceTree = ""; }; + AFED17BB38CF542660A6D3381ABBE5C0 /* RACScheduler+Subclass.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "RACScheduler+Subclass.h"; path = "ReactiveObjC/RACScheduler+Subclass.h"; sourceTree = ""; }; + B01D19A83232C1E4D8400AB254C4BB47 /* NSOrderedSet+RACSequenceAdditions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSOrderedSet+RACSequenceAdditions.h"; path = "ReactiveObjC/NSOrderedSet+RACSequenceAdditions.h"; sourceTree = ""; }; + B0C6205B6AF7C1FC53FE473EA2C5A44B /* JLRRouteRequest.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JLRRouteRequest.h; path = JLRoutes/Classes/JLRRouteRequest.h; sourceTree = ""; }; + B16533960BBE208985AFFF951CB11B5E /* MASShortcutValidator.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MASShortcutValidator.m; path = Framework/Model/MASShortcutValidator.m; sourceTree = ""; }; + B286562038D848BD289E9C7D3C9D222E /* KVOController.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = KVOController.debug.xcconfig; sourceTree = ""; }; + B2A5892D5CC07F46A2693982D4EBFD43 /* RACTupleSequence.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RACTupleSequence.h; path = ReactiveObjC/RACTupleSequence.h; sourceTree = ""; }; + B2AEDEF7C9586A7261C207549FA53B92 /* JLRRouteResponse.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JLRRouteResponse.h; path = JLRoutes/Classes/JLRRouteResponse.h; sourceTree = ""; }; + B3F8309E025C840E128F79AB415B5380 /* JLRoutes-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "JLRoutes-umbrella.h"; sourceTree = ""; }; + B4AB5D4A028F9B0DD563F829B71C3FBD /* MASShortcut.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MASShortcut.h; path = Framework/Model/MASShortcut.h; sourceTree = ""; }; + B4DDE5DB3802282C2554D266594130C3 /* AFNetworkReachabilityManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AFNetworkReachabilityManager.h; path = AFNetworking/AFNetworkReachabilityManager.h; sourceTree = ""; }; + B4FFE4D8F4F7A71CE950B4E92395913D /* MASShortcutBinder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MASShortcutBinder.h; path = "Framework/User Defaults Storage/MASShortcutBinder.h"; sourceTree = ""; }; + B629F9A2136903DCADF4EE76CCFB076D /* RACQueueScheduler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RACQueueScheduler.m; path = ReactiveObjC/RACQueueScheduler.m; sourceTree = ""; }; + B71D33A8AB4126FCB0ADA296093911BF /* NSLayoutConstraint+MASDebugAdditions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSLayoutConstraint+MASDebugAdditions.h"; path = "Masonry/NSLayoutConstraint+MASDebugAdditions.h"; sourceTree = ""; }; + B82599254B9E1827EBA5B44F35FE6FD3 /* MJExtension.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = MJExtension.release.xcconfig; sourceTree = ""; }; B845C2ACCFEF00A5B6C2314BC9ACE0DD /* Pods-Easydict-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Pods-Easydict-umbrella.h"; sourceTree = ""; }; B86B4AAB47DFB9C73D2476D317BE774E /* AppKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = AppKit.framework; path = Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk/System/Library/Frameworks/AppKit.framework; sourceTree = DEVELOPER_DIR; }; - B945D43194E93E7A4CDC8946C4352EC3 /* SSZipArchive.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = SSZipArchive.debug.xcconfig; sourceTree = ""; }; - B959E0305FF3B067E46E24340728FAE8 /* MJPropertyKey.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MJPropertyKey.h; path = MJExtension/MJPropertyKey.h; sourceTree = ""; }; - BA59FC60786FF05E81B0337B81408529 /* RACSubscriber.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RACSubscriber.m; path = ReactiveObjC/RACSubscriber.m; sourceTree = ""; }; - BA9844B90FABE5852C6F93DD8B789633 /* MASShortcut-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "MASShortcut-Info.plist"; sourceTree = ""; }; - BB26E635BB60B2D270BB0B543A1CEF54 /* JLRoutes.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = JLRoutes.debug.xcconfig; sourceTree = ""; }; - BB6A287E3CDAA9F049E60BF46312E382 /* JLRoutes.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = JLRoutes.release.xcconfig; sourceTree = ""; }; - BBE9290D5E17CC0EA5A3AC25568F58EC /* KVOController.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = KVOController.debug.xcconfig; sourceTree = ""; }; - BC4426125B9D2CFBA4C9D3F1B36D5A13 /* MASShortcutMonitor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MASShortcutMonitor.h; path = Framework/Monitoring/MASShortcutMonitor.h; sourceTree = ""; }; - BC51DC635DD1FD5B5F28C51BEA7619CB /* AFURLResponseSerialization.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = AFURLResponseSerialization.m; path = AFNetworking/AFURLResponseSerialization.m; sourceTree = ""; }; - BC74694C5096865EBBDBD58285005F78 /* MASViewAttribute.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MASViewAttribute.m; path = Masonry/MASViewAttribute.m; sourceTree = ""; }; - BC831D4EEEA510743A34AF6E410CB3A9 /* NSObject+RACPropertySubscribing.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSObject+RACPropertySubscribing.m"; path = "ReactiveObjC/NSObject+RACPropertySubscribing.m"; sourceTree = ""; }; - BC8A04E7111611A5468D1454BBDB8220 /* RACIndexSetSequence.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RACIndexSetSequence.h; path = ReactiveObjC/RACIndexSetSequence.h; sourceTree = ""; }; - BCE7C4F1FC4DF03D0EB6E2BFB474A835 /* MASShortcutMonitor.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MASShortcutMonitor.m; path = Framework/Monitoring/MASShortcutMonitor.m; sourceTree = ""; }; - BD1A54D3054DC406C7C8846D7D1A1138 /* MJExtensionConst.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MJExtensionConst.h; path = MJExtension/MJExtensionConst.h; sourceTree = ""; }; - BD32A88F77BE0758015FA7AF56689478 /* NSDictionary+RACSequenceAdditions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSDictionary+RACSequenceAdditions.h"; path = "ReactiveObjC/NSDictionary+RACSequenceAdditions.h"; sourceTree = ""; }; - BEAFCB02EB735528D25F055AC89EE861 /* MASPreferences-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "MASPreferences-Info.plist"; sourceTree = ""; }; - BECF1683BCF91A2D3E887F10837EEFD2 /* MJFoundation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MJFoundation.m; path = MJExtension/MJFoundation.m; sourceTree = ""; }; - BF222B53CAF0AC4C71E8BA40783C6F27 /* MJPropertyKey.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MJPropertyKey.m; path = MJExtension/MJPropertyKey.m; sourceTree = ""; }; - BF7799ADC8A1EA2B08F6137BEBFFEFE2 /* sv.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = sv.lproj; path = Resources/sv.lproj; sourceTree = ""; }; - C00AB13CB375F7D0794451AB9060A98D /* FBKVOController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBKVOController.h; path = FBKVOController/FBKVOController.h; sourceTree = ""; }; - C0EE83CF2891EC53E26EF136ADDBB0B0 /* RACKVOTrampoline.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RACKVOTrampoline.h; path = ReactiveObjC/RACKVOTrampoline.h; sourceTree = ""; }; - C0F4292BB70938D463DEF22CD3887D38 /* MASShortcut.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = MASShortcut.debug.xcconfig; sourceTree = ""; }; - C171AAC3BFD283F2E4ABACEB5CD031D2 /* RACEagerSequence.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RACEagerSequence.h; path = ReactiveObjC/RACEagerSequence.h; sourceTree = ""; }; - C1968CE4FFBEEF49BF4125BAF08F8892 /* RACValueTransformer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RACValueTransformer.h; path = ReactiveObjC/RACValueTransformer.h; sourceTree = ""; }; - C1A042E79D77332C13D6C666D653725E /* RACSubject.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RACSubject.m; path = ReactiveObjC/RACSubject.m; sourceTree = ""; }; - C1A9B69725BD93E06882F79719BDC1BD /* SwiftFormat.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = SwiftFormat.release.xcconfig; sourceTree = ""; }; - C223917676275A4808FE237B3204FF16 /* NSObject+RACDescription.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSObject+RACDescription.m"; path = "ReactiveObjC/NSObject+RACDescription.m"; sourceTree = ""; }; - C32421053EE6C5CCA667FAD950FF91A6 /* RACQueueScheduler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RACQueueScheduler.h; path = ReactiveObjC/RACQueueScheduler.h; sourceTree = ""; }; - C388FEC0CF3262533E1B88B635566DDE /* RACReplaySubject.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RACReplaySubject.m; path = ReactiveObjC/RACReplaySubject.m; sourceTree = ""; }; - C60E24E3F12C817C3790D45198FD6822 /* RACCommand.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RACCommand.m; path = ReactiveObjC/RACCommand.m; sourceTree = ""; }; - C6A604AC86E0E953D1466EE1B2B052B5 /* JLRoutes-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "JLRoutes-prefix.pch"; sourceTree = ""; }; - C700D47BA5BA6221B058E5D0FF4A66C2 /* RACSerialDisposable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RACSerialDisposable.h; path = ReactiveObjC/RACSerialDisposable.h; sourceTree = ""; }; - C7715DEBDDCD4137ECAA611E973B3EF6 /* NSEnumerator+RACSequenceAdditions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSEnumerator+RACSequenceAdditions.h"; path = "ReactiveObjC/NSEnumerator+RACSequenceAdditions.h"; sourceTree = ""; }; - C806C9D801F16D2612D14F22845229B5 /* RACStream.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RACStream.m; path = ReactiveObjC/RACStream.m; sourceTree = ""; }; - C82CB4C2EB6A2469577883F504416321 /* RACSubscriptionScheduler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RACSubscriptionScheduler.h; path = ReactiveObjC/RACSubscriptionScheduler.h; sourceTree = ""; }; - C84A098377D2F620D91C45A070C63629 /* Masonry.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = Masonry.modulemap; sourceTree = ""; }; - C8E33CB0E88481D68AFD1672C21074FB /* JLRRouteRequest.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = JLRRouteRequest.m; path = JLRoutes/Classes/JLRRouteRequest.m; sourceTree = ""; }; - C9455860880D0480926C8BC03BF634CE /* NSSet+RACSequenceAdditions.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSSet+RACSequenceAdditions.m"; path = "ReactiveObjC/NSSet+RACSequenceAdditions.m"; sourceTree = ""; }; - CA2A2F8F4D8F147EA5B8D1FCA2A8F038 /* mz_strm_buf.c */ = {isa = PBXFileReference; includeInIndex = 1; name = mz_strm_buf.c; path = SSZipArchive/minizip/mz_strm_buf.c; sourceTree = ""; }; - CA59CA75D23229DAE15AC83EC856D1A7 /* RACStringSequence.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RACStringSequence.h; path = ReactiveObjC/RACStringSequence.h; sourceTree = ""; }; + B9B75FA5CC7BE798947804D7024634AA /* MASLocalization.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MASLocalization.h; path = Framework/UI/MASLocalization.h; sourceTree = ""; }; + BAC04264E593BA1DAD6C7055BB10788B /* RACScopedDisposable.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RACScopedDisposable.m; path = ReactiveObjC/RACScopedDisposable.m; sourceTree = ""; }; + BC40127846A28F86F1EC4CDCD51FD5D2 /* MASShortcutValidator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MASShortcutValidator.h; path = Framework/Model/MASShortcutValidator.h; sourceTree = ""; }; + C04939DBE13B5A909F833EFA2E579926 /* NSString+MJExtension.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSString+MJExtension.h"; path = "MJExtension/NSString+MJExtension.h"; sourceTree = ""; }; + C0832D0AF0A7F2AF4A7F43BFB4EBD18B /* NSObject+MJKeyValue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSObject+MJKeyValue.h"; path = "MJExtension/NSObject+MJKeyValue.h"; sourceTree = ""; }; + C172333F44A46FDA52229990392C2BEA /* MJPropertyKey.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MJPropertyKey.m; path = MJExtension/MJPropertyKey.m; sourceTree = ""; }; + C1B2819C042811649674BE814D7311E0 /* NSString+RACKeyPathUtilities.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSString+RACKeyPathUtilities.h"; path = "ReactiveObjC/NSString+RACKeyPathUtilities.h"; sourceTree = ""; }; + C338BC8F6C32D66BE1110D7C20EF815C /* RACCommand.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RACCommand.m; path = ReactiveObjC/RACCommand.m; sourceTree = ""; }; + C3DB5301428F8A0955C03BDE9F62A181 /* RACKVOProxy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RACKVOProxy.m; path = ReactiveObjC/RACKVOProxy.m; sourceTree = ""; }; + C3E40362BE502C6658B3CD1E905F5B0A /* MASPreferences-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "MASPreferences-Info.plist"; sourceTree = ""; }; + C5221D021795CA36BD5947FC0168EE65 /* RACDynamicSignal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RACDynamicSignal.h; path = ReactiveObjC/RACDynamicSignal.h; sourceTree = ""; }; + C64CDE42C3C53F35696255E603CB79F3 /* RACChannel.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RACChannel.h; path = ReactiveObjC/RACChannel.h; sourceTree = ""; }; + C696A284FFC6A1D10C0BEAF361EE1412 /* RACEXTRuntimeExtensions.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RACEXTRuntimeExtensions.m; path = ReactiveObjC/extobjc/RACEXTRuntimeExtensions.m; sourceTree = ""; }; CA7E6DB6AFE7635C9077622C743F91CC /* Pods-EasydictTests */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = "Pods-EasydictTests"; path = Pods_EasydictTests.framework; sourceTree = BUILT_PRODUCTS_DIR; }; - CBEF9AE751BE99BBC6C80741A363B1A3 /* JLRRouteHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JLRRouteHandler.h; path = JLRoutes/Classes/JLRRouteHandler.h; sourceTree = ""; }; - CC7E2DD02D18A05789B04B88ADF6AD70 /* NSArray+RACSequenceAdditions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSArray+RACSequenceAdditions.h"; path = "ReactiveObjC/NSArray+RACSequenceAdditions.h"; sourceTree = ""; }; - CD0CE8091F29DA514128737230C612CC /* RACEmptySignal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RACEmptySignal.h; path = ReactiveObjC/RACEmptySignal.h; sourceTree = ""; }; - CDC4E2858F4AE0A39372DEF9328DE0C6 /* MASShortcutValidator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MASShortcutValidator.h; path = Framework/Model/MASShortcutValidator.h; sourceTree = ""; }; - CDFA99DD1AD6EC7F5072DEC4D7F787A8 /* RACDelegateProxy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RACDelegateProxy.m; path = ReactiveObjC/RACDelegateProxy.m; sourceTree = ""; }; - CFDE6039672EB53E2E683BD443AB497E /* RACSignal.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RACSignal.m; path = ReactiveObjC/RACSignal.m; sourceTree = ""; }; - CFE7521AFD2F9FFA83E614CF7F297ADD /* MJExtension-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "MJExtension-dummy.m"; sourceTree = ""; }; - D05B475C18069837472BC1DCF47A1AD4 /* MASPreferences.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = MASPreferences.debug.xcconfig; sourceTree = ""; }; - D0E0ECDF0B2D597CD16E41C8E64E0A8D /* mz_crypt_apple.c */ = {isa = PBXFileReference; includeInIndex = 1; name = mz_crypt_apple.c; path = SSZipArchive/minizip/mz_crypt_apple.c; sourceTree = ""; }; - D0E6771BE3177BB8F6467C7E8DDDF8CB /* MASShortcut-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "MASShortcut-prefix.pch"; sourceTree = ""; }; - D1BDA97F236D9E25B1FA570E5197A630 /* RACPassthroughSubscriber.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RACPassthroughSubscriber.m; path = ReactiveObjC/RACPassthroughSubscriber.m; sourceTree = ""; }; - D2935C2B8BA0E20E269E9F945235CB58 /* MASCompositeConstraint.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MASCompositeConstraint.m; path = Masonry/MASCompositeConstraint.m; sourceTree = ""; }; - D29C5CE22070A151C7590227714FAA3D /* RACReturnSignal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RACReturnSignal.h; path = ReactiveObjC/RACReturnSignal.h; sourceTree = ""; }; - D2E2A718210C8E286E0F7DDC36A27CA0 /* MASPreferences.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = MASPreferences.release.xcconfig; sourceTree = ""; }; - D3A9ADDAA5993DD679325321C8B3B15F /* en.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = en.lproj; path = Resources/en.lproj; sourceTree = ""; }; - D3CC72B6E5F246DC03686F2D7A4E4522 /* mz_os_posix.c */ = {isa = PBXFileReference; includeInIndex = 1; name = mz_os_posix.c; path = SSZipArchive/minizip/mz_os_posix.c; sourceTree = ""; }; - D42B8329E0A4F1755CE4F64BC038883A /* RACTargetQueueScheduler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RACTargetQueueScheduler.m; path = ReactiveObjC/RACTargetQueueScheduler.m; sourceTree = ""; }; - D448EB83567595962AE51EA5A4D080BB /* RACCompoundDisposable.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RACCompoundDisposable.m; path = ReactiveObjC/RACCompoundDisposable.m; sourceTree = ""; }; - D44D0767FBB9E8D337246B5EB3D5B1B8 /* RACBlockTrampoline.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RACBlockTrampoline.m; path = ReactiveObjC/RACBlockTrampoline.m; sourceTree = ""; }; + CAA886A17877F13CACC362267C18975D /* MJExtensionConst.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MJExtensionConst.h; path = MJExtension/MJExtensionConst.h; sourceTree = ""; }; + CBBF4B9205D7D1E430C6D76523D6C54A /* MASCompositeConstraint.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MASCompositeConstraint.m; path = Masonry/MASCompositeConstraint.m; sourceTree = ""; }; + CCCFE646EAFC5D1508BF29DC58EF2F45 /* en.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = en.lproj; path = Resources/en.lproj; sourceTree = ""; }; + CD6919B88EB9F73E006736E7499E76E1 /* RACEagerSequence.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RACEagerSequence.m; path = ReactiveObjC/RACEagerSequence.m; sourceTree = ""; }; + CD7502C68829FB285396FB19B2323CFF /* MASShortcut-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "MASShortcut-prefix.pch"; sourceTree = ""; }; + CE8427593DE5AE690F89E787312AA80D /* NSSet+RACSequenceAdditions.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSSet+RACSequenceAdditions.m"; path = "ReactiveObjC/NSSet+RACSequenceAdditions.m"; sourceTree = ""; }; + CFF0DDC9C9A1595390EE7D1074CF59EC /* NSString+MJExtension.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSString+MJExtension.m"; path = "MJExtension/NSString+MJExtension.m"; sourceTree = ""; }; + D043E1B15997F3DC996E1A3489DA0AA8 /* ReactiveObjC.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = ReactiveObjC.release.xcconfig; sourceTree = ""; }; + D0584BA0761EEB3C48E3013C17111CBF /* RACSignalSequence.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RACSignalSequence.m; path = ReactiveObjC/RACSignalSequence.m; sourceTree = ""; }; + D146F011303B1C83593CEABF179537E2 /* MASLayoutConstraint.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MASLayoutConstraint.h; path = Masonry/MASLayoutConstraint.h; sourceTree = ""; }; + D178922C21826738E65BAEBAEDF12E6C /* MASViewConstraint.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MASViewConstraint.h; path = Masonry/MASViewConstraint.h; sourceTree = ""; }; + D24F0B1C0005B76FF49DA21B2D9A673E /* AFSecurityPolicy.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AFSecurityPolicy.h; path = AFNetworking/AFSecurityPolicy.h; sourceTree = ""; }; + D261865E1BC139CC9E4898E2CDD2C99B /* NSObject+RACLifting.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSObject+RACLifting.h"; path = "ReactiveObjC/NSObject+RACLifting.h"; sourceTree = ""; }; + D3A7AA25FCD790A199EEC597E269F9E1 /* RACTupleSequence.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RACTupleSequence.m; path = ReactiveObjC/RACTupleSequence.m; sourceTree = ""; }; + D3D03E95A00FC71403911E73FD79421C /* RACStream.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RACStream.m; path = ReactiveObjC/RACStream.m; sourceTree = ""; }; D4577EDD80EE21A830A0D562EA93FACB /* Pods-Easydict-acknowledgements.markdown */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = "Pods-Easydict-acknowledgements.markdown"; sourceTree = ""; }; - D4F3365F25B91F31F507E495274F0564 /* AFURLResponseSerialization.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AFURLResponseSerialization.h; path = AFNetworking/AFURLResponseSerialization.h; sourceTree = ""; }; - D53BD41AA0045629F9E21AED8248BD98 /* MASShortcutView+Bindings.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "MASShortcutView+Bindings.m"; path = "Framework/UI/MASShortcutView+Bindings.m"; sourceTree = ""; }; - D5C045644E4819E02332F0BE22F4DBBA /* ResourceBundle-MASPreferences-MASPreferences-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "ResourceBundle-MASPreferences-MASPreferences-Info.plist"; sourceTree = ""; }; - D6C3A70F2345025A640476CC65325F3B /* MASShortcutView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MASShortcutView.h; path = Framework/UI/MASShortcutView.h; sourceTree = ""; }; - D722B26F6C2BB3EF4DAA4DCC0B5E30EE /* RACSubscriber+Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "RACSubscriber+Private.h"; path = "ReactiveObjC/RACSubscriber+Private.h"; sourceTree = ""; }; - D75B2B545A8BE6697B2F906339080A91 /* NSObject+MJKeyValue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSObject+MJKeyValue.h"; path = "MJExtension/NSObject+MJKeyValue.h"; sourceTree = ""; }; - D81C916B1D3B8E2803F7AEDF2B2010D8 /* View+MASAdditions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "View+MASAdditions.h"; path = "Masonry/View+MASAdditions.h"; sourceTree = ""; }; - D81D7B948909BEB85DD770ED751C4243 /* MJExtensionConst.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MJExtensionConst.m; path = MJExtension/MJExtensionConst.m; sourceTree = ""; }; - D8C5266A7795936FC2ABDA6419253ED2 /* NSObject+RACDescription.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSObject+RACDescription.h"; path = "ReactiveObjC/NSObject+RACDescription.h"; sourceTree = ""; }; - D90C121EED46871C916CDCF6D85EB5DF /* MJExtension-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "MJExtension-prefix.pch"; sourceTree = ""; }; - DAA54686991789D0BA5BB1419C7972B7 /* NSData+RACSupport.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSData+RACSupport.m"; path = "ReactiveObjC/NSData+RACSupport.m"; sourceTree = ""; }; - DAEBF9208860BC90A86BA5602C5D555F /* mz_strm_os.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = mz_strm_os.h; path = SSZipArchive/minizip/mz_strm_os.h; sourceTree = ""; }; - DC4EC7382D92D7B397FDA4F3573065CF /* MASConstraintMaker.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MASConstraintMaker.m; path = Masonry/MASConstraintMaker.m; sourceTree = ""; }; - DD4C820CA44D4CCB8F3993123BC088F1 /* ViewController+MASAdditions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "ViewController+MASAdditions.h"; path = "Masonry/ViewController+MASAdditions.h"; sourceTree = ""; }; - DDAB600F22ACF879AF6970A864283D94 /* NSString+RACSupport.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSString+RACSupport.m"; path = "ReactiveObjC/NSString+RACSupport.m"; sourceTree = ""; }; - DE02345D983EF1A5407DE960D1953F0E /* NSObject+RACPropertySubscribing.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSObject+RACPropertySubscribing.h"; path = "ReactiveObjC/NSObject+RACPropertySubscribing.h"; sourceTree = ""; }; - DE84ABCEC64C2FBAA4A29506E50578E3 /* RACSequence.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RACSequence.m; path = ReactiveObjC/RACSequence.m; sourceTree = ""; }; - DE95F0448453D05A628A6949C1DF5AE9 /* MJExtension.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = MJExtension.debug.xcconfig; sourceTree = ""; }; - DF81C577AA2FB69ACD97CB0392C1884E /* mz_os.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = mz_os.h; path = SSZipArchive/minizip/mz_os.h; sourceTree = ""; }; - DFECCE0FD032B74427B77ED1730B633B /* es.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = es.lproj; path = Resources/es.lproj; sourceTree = ""; }; - E08B217900A7BBFD8FE294843574EC6B /* KVOController-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "KVOController-Info.plist"; sourceTree = ""; }; - E1B7AFD2BF0E18FAB1E5208F735EE889 /* NSArray+MASAdditions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSArray+MASAdditions.h"; path = "Masonry/NSArray+MASAdditions.h"; sourceTree = ""; }; - E442F06C25D8B6B426CBB6C89C886BCA /* NSObject+RACLifting.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSObject+RACLifting.m"; path = "ReactiveObjC/NSObject+RACLifting.m"; sourceTree = ""; }; - E4F1541BDB16F27BA6F0C2688F2476FF /* NSInvocation+RACTypeParsing.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSInvocation+RACTypeParsing.h"; path = "ReactiveObjC/NSInvocation+RACTypeParsing.h"; sourceTree = ""; }; - E5291A5457F48710003447059151AED6 /* RACUnarySequence.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RACUnarySequence.h; path = ReactiveObjC/RACUnarySequence.h; sourceTree = ""; }; - E85BE5E7AE4BFE87901D126612D09EC2 /* RACTuple.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RACTuple.m; path = ReactiveObjC/RACTuple.m; sourceTree = ""; }; - E8A5552D9DF3691F11882ABC9326C6AE /* JLRParsingUtilities.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JLRParsingUtilities.h; path = JLRoutes/Classes/JLRParsingUtilities.h; sourceTree = ""; }; - EA550EBEB29BE5893F989047454933E7 /* AFURLRequestSerialization.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AFURLRequestSerialization.h; path = AFNetworking/AFURLRequestSerialization.h; sourceTree = ""; }; - EABF68E1B84B9E055839CEA6F6B6D38F /* MASShortcut.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = MASShortcut.modulemap; sourceTree = ""; }; - EAF17CAAFD20762770479837C19D1F0B /* MASShortcut.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MASShortcut.h; path = Framework/Model/MASShortcut.h; sourceTree = ""; }; - EB668F1847CE9D5D3354021964AEA33D /* it.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = it.lproj; path = Resources/it.lproj; sourceTree = ""; }; - EC87567D30217F5DDE75A0588A061023 /* MJExtension-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "MJExtension-umbrella.h"; sourceTree = ""; }; - ED6550CFD6C0502542EF4FC530E721C8 /* MASViewAttribute.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MASViewAttribute.h; path = Masonry/MASViewAttribute.h; sourceTree = ""; }; - EE33C9934212D73A1AAA3AC4B0718D9E /* RACEvent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RACEvent.h; path = ReactiveObjC/RACEvent.h; sourceTree = ""; }; - EF09616BE93C6AF0B9072758CB9ECEC7 /* ReactiveObjC-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "ReactiveObjC-dummy.m"; sourceTree = ""; }; - EF4B9A3B09E9AEFB4BEAD637D18BFA5F /* ReactiveObjC.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = ReactiveObjC.modulemap; sourceTree = ""; }; - EFF10C92646B4AE3D30072839D124918 /* NSOrderedSet+RACSequenceAdditions.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSOrderedSet+RACSequenceAdditions.m"; path = "ReactiveObjC/NSOrderedSet+RACSequenceAdditions.m"; sourceTree = ""; }; - F2038A3094FB7B1D28B6C6838D0CE28C /* RACQueueScheduler+Subclass.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "RACQueueScheduler+Subclass.h"; path = "ReactiveObjC/RACQueueScheduler+Subclass.h"; sourceTree = ""; }; - F3AE64F187FC7BFC5C519836528388CB /* RACSignalSequence.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RACSignalSequence.m; path = ReactiveObjC/RACSignalSequence.m; sourceTree = ""; }; - F4024BA27768E2FA4A05BDFEB7FA2E21 /* NSObject+RACLifting.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSObject+RACLifting.h"; path = "ReactiveObjC/NSObject+RACLifting.h"; sourceTree = ""; }; - F5B052778EEF0F5A6E38F4AC67922B3B /* Shortcut.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Shortcut.h; path = Framework/Shortcut.h; sourceTree = ""; }; + D596C7C7A1ADCBD775547A10BCB57046 /* RACIndexSetSequence.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RACIndexSetSequence.h; path = ReactiveObjC/RACIndexSetSequence.h; sourceTree = ""; }; + D651BE9C05BA9013554CCDE43680CE87 /* MASPreferences-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "MASPreferences-dummy.m"; sourceTree = ""; }; + D72FB6A3CADB88F94E8E8791D2D91F89 /* MASLayoutConstraint.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MASLayoutConstraint.m; path = Masonry/MASLayoutConstraint.m; sourceTree = ""; }; + D77C5430C3CFD14BCCA81F321744D9C6 /* NSObject+RACDescription.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSObject+RACDescription.h"; path = "ReactiveObjC/NSObject+RACDescription.h"; sourceTree = ""; }; + D945988E2461D8A7A1AAFD0DC7B36714 /* RACSerialDisposable.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RACSerialDisposable.m; path = ReactiveObjC/RACSerialDisposable.m; sourceTree = ""; }; + D9F48EF2A4F07A1C694E759F94C2AE73 /* JLRRouteResponse.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = JLRRouteResponse.m; path = JLRoutes/Classes/JLRRouteResponse.m; sourceTree = ""; }; + DA14B0FFEB38306B2D54B1626D742F3B /* JLRParsingUtilities.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JLRParsingUtilities.h; path = JLRoutes/Classes/JLRParsingUtilities.h; sourceTree = ""; }; + DA288F12EE641D34B1FA163FDFD0B1FA /* RACSignalProvider.d */ = {isa = PBXFileReference; includeInIndex = 1; name = RACSignalProvider.d; path = ReactiveObjC/RACSignalProvider.d; sourceTree = ""; }; + DA399651343E19D25EEC9AD3305C8A99 /* MASPreferences-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "MASPreferences-prefix.pch"; sourceTree = ""; }; + DAA0E1E553E4FFF8010FC1E15C64834F /* MASShortcutMonitor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MASShortcutMonitor.h; path = Framework/Monitoring/MASShortcutMonitor.h; sourceTree = ""; }; + DB34F13FFE77DA49C8C0734D0689FAFE /* RACEXTKeyPathCoding.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RACEXTKeyPathCoding.h; path = ReactiveObjC/extobjc/RACEXTKeyPathCoding.h; sourceTree = ""; }; + DBA43944052A42E1413F5009872D5166 /* SwiftFormat.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = SwiftFormat.release.xcconfig; sourceTree = ""; }; + DBAA192A036915695EB6A269D9D99210 /* ReactiveObjC.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = ReactiveObjC.debug.xcconfig; sourceTree = ""; }; + DD65E7CAED8DD43572BFE54E4AAD3FE2 /* View+MASShorthandAdditions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "View+MASShorthandAdditions.h"; path = "Masonry/View+MASShorthandAdditions.h"; sourceTree = ""; }; + DD80013E393CE7349EA0CEAEFADB0437 /* Masonry-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Masonry-umbrella.h"; sourceTree = ""; }; + DDE5352C18521D46523F24C8848FCA5C /* NSLayoutConstraint+MASDebugAdditions.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSLayoutConstraint+MASDebugAdditions.m"; path = "Masonry/NSLayoutConstraint+MASDebugAdditions.m"; sourceTree = ""; }; + DE4624DEDC5ABCF8C3C5CB949A5D66D6 /* NSFileHandle+RACSupport.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSFileHandle+RACSupport.h"; path = "ReactiveObjC/NSFileHandle+RACSupport.h"; sourceTree = ""; }; + DEEC875830573012E783B7FB8DAEEC06 /* MJPropertyType.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MJPropertyType.m; path = MJExtension/MJPropertyType.m; sourceTree = ""; }; + DF5D7576CB5ECA11321E060997DF2279 /* MASHotKey.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MASHotKey.h; path = Framework/Monitoring/MASHotKey.h; sourceTree = ""; }; + DF69E65723E7E5AC49610DE725855BD6 /* RACUnarySequence.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RACUnarySequence.m; path = ReactiveObjC/RACUnarySequence.m; sourceTree = ""; }; + DFB09FBA9611715413E83EF84786C7D9 /* RACGroupedSignal.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RACGroupedSignal.m; path = ReactiveObjC/RACGroupedSignal.m; sourceTree = ""; }; + DFE1DBD7301E01B5E3A39F1686D42F00 /* FBKVOController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBKVOController.m; path = FBKVOController/FBKVOController.m; sourceTree = ""; }; + DFEAFC95BA525C7E233427D5820D0C01 /* JLRRouteRequest.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = JLRRouteRequest.m; path = JLRoutes/Classes/JLRRouteRequest.m; sourceTree = ""; }; + DFF58D8D51B75C084E47C279D580F597 /* JLRoutes-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "JLRoutes-prefix.pch"; sourceTree = ""; }; + E11FF524A5BEE8418271D653EAF40B6B /* ResourceBundle-MASPreferences-MASPreferences-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "ResourceBundle-MASPreferences-MASPreferences-Info.plist"; sourceTree = ""; }; + E1FBA4265FA607A57D44F29A0B238DC2 /* JLRoutes.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JLRoutes.h; path = JLRoutes/JLRoutes.h; sourceTree = ""; }; + E4E5BBD9F6262ACB2685A9A0B6BA63CF /* MJExtensionConst.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MJExtensionConst.m; path = MJExtension/MJExtensionConst.m; sourceTree = ""; }; + E5C3C6580EE6475513CDADA12A1D56B8 /* RACScheduler+Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "RACScheduler+Private.h"; path = "ReactiveObjC/RACScheduler+Private.h"; sourceTree = ""; }; + E5EEC8A028C140600D19544981AE13A1 /* NSString+RACSequenceAdditions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSString+RACSequenceAdditions.h"; path = "ReactiveObjC/NSString+RACSequenceAdditions.h"; sourceTree = ""; }; + E634CF76AABF8CB7B9A7E048DD956E87 /* ViewController+MASAdditions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "ViewController+MASAdditions.h"; path = "Masonry/ViewController+MASAdditions.h"; sourceTree = ""; }; + E767D844B2691C5FD65E7551044C2048 /* RACPassthroughSubscriber.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RACPassthroughSubscriber.h; path = ReactiveObjC/RACPassthroughSubscriber.h; sourceTree = ""; }; + E7C5EE6FF6E65A797C4DD72A754BC231 /* RACReturnSignal.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RACReturnSignal.m; path = ReactiveObjC/RACReturnSignal.m; sourceTree = ""; }; + E8A491921DCFC162EB2A938076F782B3 /* AFNetworking.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AFNetworking.h; path = AFNetworking/AFNetworking.h; sourceTree = ""; }; + E8CC0F06D34E00AD8B317D99FD7F01F9 /* NSData+RACSupport.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSData+RACSupport.h"; path = "ReactiveObjC/NSData+RACSupport.h"; sourceTree = ""; }; + E977CF4DD4DC0D16BD175FAF40106B48 /* RACErrorSignal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RACErrorSignal.h; path = ReactiveObjC/RACErrorSignal.h; sourceTree = ""; }; + EA47250AC7DC8A0ED211DF2944D660E7 /* RACCommand.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RACCommand.h; path = ReactiveObjC/RACCommand.h; sourceTree = ""; }; + EBA76980BAEFE095A7DE076F41D1363F /* NSFileHandle+RACSupport.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSFileHandle+RACSupport.m"; path = "ReactiveObjC/NSFileHandle+RACSupport.m"; sourceTree = ""; }; + ED307F72D76E573A9F55CEFAFDA27722 /* NSNotificationCenter+RACSupport.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSNotificationCenter+RACSupport.h"; path = "ReactiveObjC/NSNotificationCenter+RACSupport.h"; sourceTree = ""; }; + EE8D1293977B5D316394DEB6852BF119 /* MASConstraint+Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "MASConstraint+Private.h"; path = "Masonry/MASConstraint+Private.h"; sourceTree = ""; }; + F0FCCF1F53756B076591F1B9385D7AFD /* RACTargetQueueScheduler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RACTargetQueueScheduler.m; path = ReactiveObjC/RACTargetQueueScheduler.m; sourceTree = ""; }; + F0FD90812DB015D3994AE3DC4168CD20 /* Masonry.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = Masonry.modulemap; sourceTree = ""; }; + F11C9011F802BEEFFA9202F4CDF25398 /* MJExtension.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = MJExtension.modulemap; sourceTree = ""; }; + F13C6E61E99E202B56300F56A3034112 /* MASConstraint.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MASConstraint.m; path = Masonry/MASConstraint.m; sourceTree = ""; }; + F1FCDBDE14CF2854E67D545901E9017E /* AFURLSessionManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AFURLSessionManager.h; path = AFNetworking/AFURLSessionManager.h; sourceTree = ""; }; + F2CF7ACFFCAE6C8CF3ACEEB59A6C634D /* MASShortcut-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "MASShortcut-Info.plist"; sourceTree = ""; }; + F30694DEB38967E802B5D53C1F73AB42 /* ViewController+MASAdditions.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "ViewController+MASAdditions.m"; path = "Masonry/ViewController+MASAdditions.m"; sourceTree = ""; }; + F387F3547F7723B133F6EB622868C05E /* AFURLSessionManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = AFURLSessionManager.m; path = AFNetworking/AFURLSessionManager.m; sourceTree = ""; }; + F3A375CD22E0FCA8C79DE532D1CCA411 /* KVOController-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "KVOController-umbrella.h"; sourceTree = ""; }; + F403493C0E51FB0DFC829E48064496E3 /* AFURLResponseSerialization.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AFURLResponseSerialization.h; path = AFNetworking/AFURLResponseSerialization.h; sourceTree = ""; }; + F52071790C899E157EDF80FF63545ACF /* NSData+RACSupport.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSData+RACSupport.m"; path = "ReactiveObjC/NSData+RACSupport.m"; sourceTree = ""; }; + F691BFCC43D6861134C5851121076FC3 /* NSURLConnection+RACSupport.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSURLConnection+RACSupport.m"; path = "ReactiveObjC/NSURLConnection+RACSupport.m"; sourceTree = ""; }; F6AC3A4C0F4CF68BC61D5D70CB9B9971 /* Pods-EasydictTests-frameworks.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-EasydictTests-frameworks.sh"; sourceTree = ""; }; - F81155F7B73577C9E0F516DFCCECCDAF /* NSControl+RACTextSignalSupport.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSControl+RACTextSignalSupport.m"; path = "ReactiveObjC/NSControl+RACTextSignalSupport.m"; sourceTree = ""; }; - F8115DF922C9AE671C9D9DA51817D3D9 /* zh-Hans.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = "zh-Hans.lproj"; path = "Resources/zh-Hans.lproj"; sourceTree = ""; }; - F83D4A2B6988D0E617924122C02BBCA4 /* RACGroupedSignal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RACGroupedSignal.h; path = ReactiveObjC/RACGroupedSignal.h; sourceTree = ""; }; - F92CAE3E54A2473FE0662CC4BBF3E748 /* RACIndexSetSequence.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RACIndexSetSequence.m; path = ReactiveObjC/RACIndexSetSequence.m; sourceTree = ""; }; - F9C85F9CE11A37ACE16B6A8D8735EA69 /* RACTupleSequence.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RACTupleSequence.h; path = ReactiveObjC/RACTupleSequence.h; sourceTree = ""; }; - F9CBADA7B977C09CA7A0A53DAE181C44 /* NSText+RACSignalSupport.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSText+RACSignalSupport.h"; path = "ReactiveObjC/NSText+RACSignalSupport.h"; sourceTree = ""; }; - FBE833A8980F5754EDDD2F6B805FD721 /* RACUnarySequence.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RACUnarySequence.m; path = ReactiveObjC/RACUnarySequence.m; sourceTree = ""; }; - FC9C946F281F13E69199872A8322D620 /* JLRoutes-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "JLRoutes-dummy.m"; sourceTree = ""; }; - FD041E202696285EA282ACA120450EEC /* NSString+MJExtension.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSString+MJExtension.h"; path = "MJExtension/NSString+MJExtension.h"; sourceTree = ""; }; - FD32DD3DA35B36DA50EFBDDE9F3AA2AD /* RACDynamicSignal.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RACDynamicSignal.m; path = ReactiveObjC/RACDynamicSignal.m; sourceTree = ""; }; - FD49B098150097D8ABD629858FA92144 /* RACReturnSignal.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RACReturnSignal.m; path = ReactiveObjC/RACReturnSignal.m; sourceTree = ""; }; - FDC03639C313753B54F2142A36AB8858 /* mz_zip_rw.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = mz_zip_rw.h; path = SSZipArchive/minizip/mz_zip_rw.h; sourceTree = ""; }; - FEAA8C98B55D87008F5FA84C499879B3 /* NSFileHandle+RACSupport.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSFileHandle+RACSupport.h"; path = "ReactiveObjC/NSFileHandle+RACSupport.h"; sourceTree = ""; }; - FECF3891D910C5D46B9078DBF08E5750 /* MJPropertyType.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MJPropertyType.h; path = MJExtension/MJPropertyType.h; sourceTree = ""; }; - FEFA44652DA3E59BFC952039C0414422 /* RACEXTRuntimeExtensions.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RACEXTRuntimeExtensions.m; path = ReactiveObjC/extobjc/RACEXTRuntimeExtensions.m; sourceTree = ""; }; - FFA1757DDFC9F96D0D4770D8F96ECAA6 /* NSString+RACSupport.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSString+RACSupport.h"; path = "ReactiveObjC/NSString+RACSupport.h"; sourceTree = ""; }; + F6D6705C49D1560E5CE8C34ECB7DAAAB /* RACEmptySequence.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RACEmptySequence.m; path = ReactiveObjC/RACEmptySequence.m; sourceTree = ""; }; + F8EF09C7490DF0F896C3C93D42AB6E55 /* NSObject+MJProperty.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSObject+MJProperty.h"; path = "MJExtension/NSObject+MJProperty.h"; sourceTree = ""; }; + F981AFE80DF851730886D2BEFBE589FD /* NSText+RACSignalSupport.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSText+RACSignalSupport.h"; path = "ReactiveObjC/NSText+RACSignalSupport.h"; sourceTree = ""; }; + FA917799E98A1E768A7093FB39CA50CE /* RACEXTRuntimeExtensions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RACEXTRuntimeExtensions.h; path = ReactiveObjC/extobjc/RACEXTRuntimeExtensions.h; sourceTree = ""; }; + FADE81D60C709CEB8F78AF3CFFEDBB13 /* NSURLConnection+RACSupport.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSURLConnection+RACSupport.h"; path = "ReactiveObjC/NSURLConnection+RACSupport.h"; sourceTree = ""; }; + FBD7EC3B1C295E5ED2A83F53EAFA3CDA /* MASShortcut.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = MASShortcut.debug.xcconfig; sourceTree = ""; }; + FC05261157A6770DC8DC45EE8BD81D15 /* MASDictionaryTransformer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MASDictionaryTransformer.m; path = "Framework/User Defaults Storage/MASDictionaryTransformer.m"; sourceTree = ""; }; + FC5FB37020588032709C66F2BC2D09D7 /* RACKVOTrampoline.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RACKVOTrampoline.m; path = ReactiveObjC/RACKVOTrampoline.m; sourceTree = ""; }; + FF381107CB36EC9C8A57BCA65E77EB05 /* JLRRouteHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = JLRRouteHandler.m; path = JLRoutes/Classes/JLRRouteHandler.m; sourceTree = ""; }; /* End PBXFileReference section */ /* Begin PBXFrameworksBuildPhase section */ @@ -961,13 +869,6 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 27084ACC4EF9C62041206643AEEF2D55 /* Frameworks */ = { - isa = PBXFrameworksBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; 2BDC5F050C5630881FE4481EA736BA44 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; @@ -979,14 +880,6 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 2C6A7690D727B60CF6FBE1F537A48EC3 /* Frameworks */ = { - isa = PBXFrameworksBuildPhase; - buildActionMask = 2147483647; - files = ( - 2F7F06BDB4D937BC9A457495EA2CD7A4 /* Cocoa.framework in Frameworks */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; 4A8F7B3996BA271F1FA0508948F3E13B /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; @@ -1011,37 +904,43 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - A084F7FDACBE0CEF9283FC54DDF38EC9 /* Frameworks */ = { + 79FBE4AF4E5E2FAA0740460CE0A108B2 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( - D7BACCDBCFD6D790639E01FF764A13F8 /* AppKit.framework in Frameworks */, - B43CC37C065E2EAAACF54568F9271A81 /* Cocoa.framework in Frameworks */, - 27ED8CB48F36ED56E14F00110449A184 /* Foundation.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; - BC08AC94AADB7E6CED46E3110C44E521 /* Frameworks */ = { + 7B18BFC139248DC66ACA3F0D670E1060 /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + 6CCDDE6469F1EA9A57235BF0D9DE5774 /* Cocoa.framework in Frameworks */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 9E2AEAB3A5CAFFF2B40BEEE49255F8AE /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( - 5CC33C209A24FB60D978CC2D233A89FD /* Cocoa.framework in Frameworks */, + CE07980C3F99005358185E37A2EACBCA /* Cocoa.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; - CA36FACC82A42BD5EA1D62A72025E724 /* Frameworks */ = { + A084F7FDACBE0CEF9283FC54DDF38EC9 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( + D7BACCDBCFD6D790639E01FF764A13F8 /* AppKit.framework in Frameworks */, + B43CC37C065E2EAAACF54568F9271A81 /* Cocoa.framework in Frameworks */, + 27ED8CB48F36ED56E14F00110449A184 /* Foundation.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; - D2D2F3D20275848C21C4E03DC145FCA7 /* Frameworks */ = { + CC17EAD51FB2D947C635AEF62719EC0C /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( - 7F37C2304C7B4695B6E155E75C6C2F35 /* Cocoa.framework in Frameworks */, - 89C4A852D0FE33715E54587D9974FF59 /* Security.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -1057,230 +956,59 @@ /* End PBXFrameworksBuildPhase section */ /* Begin PBXGroup section */ - 004890BFC705A8835DDF0F98B454945A /* MJExtension */ = { + 035341FF6B1664B702BA3BC355E56381 /* Support Files */ = { isa = PBXGroup; children = ( - 228AECE1B6488143FBC7D512F00C77FD /* MJExtension.h */, - BD1A54D3054DC406C7C8846D7D1A1138 /* MJExtensionConst.h */, - D81D7B948909BEB85DD770ED751C4243 /* MJExtensionConst.m */, - 2E0379394CA908AD381F048CF84349EE /* MJFoundation.h */, - BECF1683BCF91A2D3E887F10837EEFD2 /* MJFoundation.m */, - 49D333909A2C5F4CF5744E9826782279 /* MJProperty.h */, - 5B2896B7A7A6F33ECEFF7D2783910B7E /* MJProperty.m */, - B959E0305FF3B067E46E24340728FAE8 /* MJPropertyKey.h */, - BF222B53CAF0AC4C71E8BA40783C6F27 /* MJPropertyKey.m */, - FECF3891D910C5D46B9078DBF08E5750 /* MJPropertyType.h */, - 44A9A579784DAB866D2396F828AAE196 /* MJPropertyType.m */, - 6645A0CE1E3C5478AA7982BAF791BDCF /* NSObject+MJClass.h */, - B073007D5FFAA6E7ADF88B33629692E3 /* NSObject+MJClass.m */, - 3EB2470CCE5F2258FDD2C06B099A3B5F /* NSObject+MJCoding.h */, - 33174D60B5C61DA955B7C79CF2507EE1 /* NSObject+MJCoding.m */, - D75B2B545A8BE6697B2F906339080A91 /* NSObject+MJKeyValue.h */, - 77D940AC94A6CA6836E942AE9814EFD6 /* NSObject+MJKeyValue.m */, - 37024FBC697C96FBF720F5C5BB214F9F /* NSObject+MJProperty.h */, - 151DCA05A362C7D04DA6A4EFD81422B6 /* NSObject+MJProperty.m */, - FD041E202696285EA282ACA120450EEC /* NSString+MJExtension.h */, - 3385FA273DD81AEB562BD1B53EF077E0 /* NSString+MJExtension.m */, - 99738995C8E759071950D9B98CEA4659 /* Support Files */, + 157A8FE995BAEAFD617C141EECFE0C5C /* KVOController.modulemap */, + 1AA4A61BEE93277F6D81303E6AA2487E /* KVOController-dummy.m */, + 4F418D61F93C77822FD3AF790AF4FCE7 /* KVOController-Info.plist */, + 898E00ADB6FD7F9375280975FDFEC9F8 /* KVOController-prefix.pch */, + F3A375CD22E0FCA8C79DE532D1CCA411 /* KVOController-umbrella.h */, + B286562038D848BD289E9C7D3C9D222E /* KVOController.debug.xcconfig */, + 7412C6245E30E86FD6CDD9502444A22F /* KVOController.release.xcconfig */, ); - name = MJExtension; - path = MJExtension; - sourceTree = ""; - }; - 00F10B99102C6A88F7D6CAC914DC52D4 /* ReactiveObjC */ = { - isa = PBXGroup; - children = ( - CC7E2DD02D18A05789B04B88ADF6AD70 /* NSArray+RACSequenceAdditions.h */, - AEC732DDA1B10AA3DE36ACF87B6B3876 /* NSArray+RACSequenceAdditions.m */, - 9FAB6BE5623F38101A4A192F11372815 /* NSControl+RACCommandSupport.h */, - 5173F242B096F8CD44D4872436961B4C /* NSControl+RACCommandSupport.m */, - 4B1AFD9BA66C3A4A9ECC39DD5D13AA16 /* NSControl+RACTextSignalSupport.h */, - F81155F7B73577C9E0F516DFCCECCDAF /* NSControl+RACTextSignalSupport.m */, - A5EC362E1F2C50AAB63BE616FF75E540 /* NSData+RACSupport.h */, - DAA54686991789D0BA5BB1419C7972B7 /* NSData+RACSupport.m */, - BD32A88F77BE0758015FA7AF56689478 /* NSDictionary+RACSequenceAdditions.h */, - 0DBF3AB8857FDA969414E4F3721D8161 /* NSDictionary+RACSequenceAdditions.m */, - C7715DEBDDCD4137ECAA611E973B3EF6 /* NSEnumerator+RACSequenceAdditions.h */, - 035891E82881980F3859255DE4A9C50A /* NSEnumerator+RACSequenceAdditions.m */, - FEAA8C98B55D87008F5FA84C499879B3 /* NSFileHandle+RACSupport.h */, - 51DD729B8B8EFA11DCAD51FCDEE90CDB /* NSFileHandle+RACSupport.m */, - 1A120C8AFF8C19758FEB8C7C1614B5DE /* NSIndexSet+RACSequenceAdditions.h */, - 3F0A9EA0BBC99DB1BABE8D2FDC1EE33C /* NSIndexSet+RACSequenceAdditions.m */, - E4F1541BDB16F27BA6F0C2688F2476FF /* NSInvocation+RACTypeParsing.h */, - 8D20F677C414C5AE3C31FBFCD2A586D8 /* NSInvocation+RACTypeParsing.m */, - 114209894C52F020DC7C8FCF582B083F /* NSNotificationCenter+RACSupport.h */, - 82692790B933698A73067C5495610CE0 /* NSNotificationCenter+RACSupport.m */, - B7D18444CAB2B1E347D53B8B87F615B7 /* NSObject+RACAppKitBindings.h */, - 5F8027EC1C0D5375041AD2A137EEB57F /* NSObject+RACAppKitBindings.m */, - 875F719626D7F2DF25BD26359B4FA87B /* NSObject+RACDeallocating.h */, - AC962840EB19D578F8C63D776C5ADC06 /* NSObject+RACDeallocating.m */, - D8C5266A7795936FC2ABDA6419253ED2 /* NSObject+RACDescription.h */, - C223917676275A4808FE237B3204FF16 /* NSObject+RACDescription.m */, - 218752AE28625E3A53098ED2195C764C /* NSObject+RACKVOWrapper.h */, - 26989BE9089C02C1F48ADD9236C4FF02 /* NSObject+RACKVOWrapper.m */, - F4024BA27768E2FA4A05BDFEB7FA2E21 /* NSObject+RACLifting.h */, - E442F06C25D8B6B426CBB6C89C886BCA /* NSObject+RACLifting.m */, - DE02345D983EF1A5407DE960D1953F0E /* NSObject+RACPropertySubscribing.h */, - BC831D4EEEA510743A34AF6E410CB3A9 /* NSObject+RACPropertySubscribing.m */, - 0927DDA197EAA9517404DCE3F9FC1BB4 /* NSObject+RACSelectorSignal.h */, - 20EDCB5BF5FFE443FA2636AED44520FF /* NSObject+RACSelectorSignal.m */, - 846F179F49DCC7EB13A56ACA952123CD /* NSOrderedSet+RACSequenceAdditions.h */, - EFF10C92646B4AE3D30072839D124918 /* NSOrderedSet+RACSequenceAdditions.m */, - 37CB2D561A3965EE329526B28CB60C6B /* NSSet+RACSequenceAdditions.h */, - C9455860880D0480926C8BC03BF634CE /* NSSet+RACSequenceAdditions.m */, - 8382FA1718DA80EF598F3F90510253BF /* NSString+RACKeyPathUtilities.h */, - 17D98B957F144340F389E104ABCA1D56 /* NSString+RACKeyPathUtilities.m */, - 905FDAE730F581CE925C71558032A138 /* NSString+RACSequenceAdditions.h */, - A74FC1C4C39C89935A5C8CEBA606ED73 /* NSString+RACSequenceAdditions.m */, - FFA1757DDFC9F96D0D4770D8F96ECAA6 /* NSString+RACSupport.h */, - DDAB600F22ACF879AF6970A864283D94 /* NSString+RACSupport.m */, - F9CBADA7B977C09CA7A0A53DAE181C44 /* NSText+RACSignalSupport.h */, - 0A48CFE8CA54209405A5E197BDFF44E8 /* NSText+RACSignalSupport.m */, - 72EF521FA8383B6F1C1CBDFA52EE7950 /* NSURLConnection+RACSupport.h */, - 50332DDE3583088217D95BFC7E7DE7E7 /* NSURLConnection+RACSupport.m */, - 223A589AA8255E9FD24154E8C1AFC1FB /* NSUserDefaults+RACSupport.h */, - 30C249FC028AE786EA89586DD7014BFA /* NSUserDefaults+RACSupport.m */, - 81BB4D34E921252A4B804C3EEF36D80D /* RACAnnotations.h */, - 7A058982E19B35D9A30A1DB2F438537F /* RACArraySequence.h */, - 25FA016241A57BC6F443AB19A14D49DD /* RACArraySequence.m */, - 6E544E579AE685D89B4380083187FBBB /* RACBehaviorSubject.h */, - 71180F4A1852F33F28B14CC8D66E30EA /* RACBehaviorSubject.m */, - 0607129141DFB4E0910DC55B4B472AB2 /* RACBlockTrampoline.h */, - D44D0767FBB9E8D337246B5EB3D5B1B8 /* RACBlockTrampoline.m */, - AFFEAEC329EA8E2D64FD3F87865D4461 /* RACChannel.h */, - 5FFAB8FF179D88F4422219940A99BA2A /* RACChannel.m */, - 42BDF4ADEF556B8F54906E83BCFE79CB /* RACCommand.h */, - C60E24E3F12C817C3790D45198FD6822 /* RACCommand.m */, - 59FC902A343F5155921CAABD6DCD2671 /* RACCompoundDisposable.h */, - D448EB83567595962AE51EA5A4D080BB /* RACCompoundDisposable.m */, - 532D961038406DCC93759B1174E064E4 /* RACCompoundDisposableProvider.d */, - 5337AF1230B27AD55042E8F54EB4322D /* RACDelegateProxy.h */, - CDFA99DD1AD6EC7F5072DEC4D7F787A8 /* RACDelegateProxy.m */, - 422A5D9CCCC36853D97C2AED5183B961 /* RACDisposable.h */, - B7E6E289148DCAA48BC8D8BF5C4FE76E /* RACDisposable.m */, - 036AAE8F2AC0468364E05CCB5E3ACB1E /* RACDynamicSequence.h */, - 29968854ADEEC081E416FCD95CA82C6F /* RACDynamicSequence.m */, - 413EE741F36EC72BA95233EC24BB57A5 /* RACDynamicSignal.h */, - FD32DD3DA35B36DA50EFBDDE9F3AA2AD /* RACDynamicSignal.m */, - C171AAC3BFD283F2E4ABACEB5CD031D2 /* RACEagerSequence.h */, - 6830755AEAB3C4B9F24ED198BA3061E9 /* RACEagerSequence.m */, - 0C88B4564AF65391F5702BA84BA60745 /* RACEmptySequence.h */, - 30E5A78FBC414D88E9F3199D4D8A6F0A /* RACEmptySequence.m */, - CD0CE8091F29DA514128737230C612CC /* RACEmptySignal.h */, - 716E3308E33CDC048B309A9F4E435B11 /* RACEmptySignal.m */, - A478DDCC345699A1D673637E900F8876 /* RACErrorSignal.h */, - 83DDB72A11FC177EF9AEC13773F147C1 /* RACErrorSignal.m */, - EE33C9934212D73A1AAA3AC4B0718D9E /* RACEvent.h */, - 38AE517DD1DC43BECF5DD049940EF47E /* RACEvent.m */, - 43507C8D3ABAFC473084D1FB7428E2D4 /* RACEXTKeyPathCoding.h */, - 2F1FB593D45F4877B33B950945F545D5 /* RACEXTRuntimeExtensions.h */, - FEFA44652DA3E59BFC952039C0414422 /* RACEXTRuntimeExtensions.m */, - 12AA4C0EEB4CB355D2B801FF7C6F8873 /* RACEXTScope.h */, - F83D4A2B6988D0E617924122C02BBCA4 /* RACGroupedSignal.h */, - 36A1820562D6EB518F9F8E9C44FCEB26 /* RACGroupedSignal.m */, - 235768C9B6D2BB036AA260D316EEEA23 /* RACImmediateScheduler.h */, - B661655404CB8E189F490FB600C604DF /* RACImmediateScheduler.m */, - BC8A04E7111611A5468D1454BBDB8220 /* RACIndexSetSequence.h */, - F92CAE3E54A2473FE0662CC4BBF3E748 /* RACIndexSetSequence.m */, - 53BDAD7D42254ACE95452707C9D179F9 /* RACKVOChannel.h */, - 9ADAFD07CED1221E6FE93F48DFBE1B87 /* RACKVOChannel.m */, - 744DFBEAFEE55078C8D10A0183E0BFF6 /* RACKVOProxy.h */, - 8A3F20C39E7B979DC833EB8EAB079FD1 /* RACKVOProxy.m */, - C0EE83CF2891EC53E26EF136ADDBB0B0 /* RACKVOTrampoline.h */, - 0A880ACBAD29187737609905B745C564 /* RACKVOTrampoline.m */, - B5F839408F6CAC9C4C6F7FE64AB25811 /* RACmetamacros.h */, - 2A7DE58C726038DC9C1EF4A1D4090652 /* RACMulticastConnection.h */, - 541D6E7A6DFB2A9E6049A06DB116D505 /* RACMulticastConnection.m */, - 295B643B3B451094875ED6572B069286 /* RACMulticastConnection+Private.h */, - 33F34F573BF4F3D7BBD5C0CF929725E6 /* RACPassthroughSubscriber.h */, - D1BDA97F236D9E25B1FA570E5197A630 /* RACPassthroughSubscriber.m */, - C32421053EE6C5CCA667FAD950FF91A6 /* RACQueueScheduler.h */, - 5D5A65DD3ED6D5DA0339CEA9AF3A51C4 /* RACQueueScheduler.m */, - F2038A3094FB7B1D28B6C6838D0CE28C /* RACQueueScheduler+Subclass.h */, - 6E8D488559531890750964D8C257BD1A /* RACReplaySubject.h */, - C388FEC0CF3262533E1B88B635566DDE /* RACReplaySubject.m */, - D29C5CE22070A151C7590227714FAA3D /* RACReturnSignal.h */, - FD49B098150097D8ABD629858FA92144 /* RACReturnSignal.m */, - 09D0F978F3D7DE2433E679029D8BB115 /* RACScheduler.h */, - 01B8CBD83AAD15DE764E70D5AB6BDDAE /* RACScheduler.m */, - 08D3A36D9C7B46F61ACBF8611ECC2FDF /* RACScheduler+Private.h */, - 2E1A79A15216D154086380AB33D0A16B /* RACScheduler+Subclass.h */, - 99DF50C0D71D7A7943C3E00F3DAD0366 /* RACScopedDisposable.h */, - 4B4A676D729A876C23031A40C68D085D /* RACScopedDisposable.m */, - 66F85BF92F64672B841333EB55939856 /* RACSequence.h */, - DE84ABCEC64C2FBAA4A29506E50578E3 /* RACSequence.m */, - C700D47BA5BA6221B058E5D0FF4A66C2 /* RACSerialDisposable.h */, - 98FDD148C617A9476B89F9E78FD31C0E /* RACSerialDisposable.m */, - 9C908FBBF10B28FBE3D50676D6D35F70 /* RACSignal.h */, - CFDE6039672EB53E2E683BD443AB497E /* RACSignal.m */, - 94C6826C2F4F57056B6928E96D780AB0 /* RACSignal+Operations.h */, - 38D39A2F6B2308ED30A913086CF34294 /* RACSignal+Operations.m */, - 70B2C3D2670844BC03CC32D6C32DBE75 /* RACSignalProvider.d */, - 7BE2D8C6F394B6798FB84B891673CD89 /* RACSignalSequence.h */, - F3AE64F187FC7BFC5C519836528388CB /* RACSignalSequence.m */, - 80798FE6FF9EAEB0A37A82FF359D9304 /* RACStream.h */, - C806C9D801F16D2612D14F22845229B5 /* RACStream.m */, - A91F248BA674BDF97B04C8EF197C2E8D /* RACStream+Private.h */, - CA59CA75D23229DAE15AC83EC856D1A7 /* RACStringSequence.h */, - 645BF69E5102E129016883BAF405EDA2 /* RACStringSequence.m */, - 272F2550ACC673F51EE6E20E8890A690 /* RACSubject.h */, - C1A042E79D77332C13D6C666D653725E /* RACSubject.m */, - 7CB6C6457F9821C840ECFDF00986E0A2 /* RACSubscriber.h */, - BA59FC60786FF05E81B0337B81408529 /* RACSubscriber.m */, - D722B26F6C2BB3EF4DAA4DCC0B5E30EE /* RACSubscriber+Private.h */, - 99352309739B320EB7496FF4CB86B26A /* RACSubscriptingAssignmentTrampoline.h */, - 6B8C236F36DDA1AF6BF6AD557926AC6D /* RACSubscriptingAssignmentTrampoline.m */, - C82CB4C2EB6A2469577883F504416321 /* RACSubscriptionScheduler.h */, - 7437ED283C689AAFE1837B32CBCA100E /* RACSubscriptionScheduler.m */, - 02FB62328B696434E56607ADF9A188BC /* RACTargetQueueScheduler.h */, - D42B8329E0A4F1755CE4F64BC038883A /* RACTargetQueueScheduler.m */, - B66C7DC87A617EA53576577061FA5D94 /* RACTestScheduler.h */, - 9BDF24E978E474E8A122626EF734A512 /* RACTestScheduler.m */, - 2F8B62B60659F54715AAA1927C62347A /* RACTuple.h */, - E85BE5E7AE4BFE87901D126612D09EC2 /* RACTuple.m */, - F9C85F9CE11A37ACE16B6A8D8735EA69 /* RACTupleSequence.h */, - 7AF76A72EDACF76B83A987300F16AB69 /* RACTupleSequence.m */, - E5291A5457F48710003447059151AED6 /* RACUnarySequence.h */, - FBE833A8980F5754EDDD2F6B805FD721 /* RACUnarySequence.m */, - 5078066D21E6AA05FEAD56BB03AA7A07 /* RACUnit.h */, - 85A27B6C38518B0DBA47F58FF9FD03AB /* RACUnit.m */, - C1968CE4FFBEEF49BF4125BAF08F8892 /* RACValueTransformer.h */, - 8E6579B862297A3105F758028C4CE24A /* RACValueTransformer.m */, - 321088BF767682C75C70EF0F3BEE7668 /* ReactiveObjC.h */, - 3BF4E775E4149BC481DA039B2C013B10 /* Support Files */, - ); - name = ReactiveObjC; - path = ReactiveObjC; + name = "Support Files"; + path = "../Target Support Files/KVOController"; sourceTree = ""; }; - 0D170CB4FF3F0DAF307101251EF3627E /* Support Files */ = { + 0ADC8771B711D5EBDAFE7D8383BEE957 /* SwiftFormat */ = { isa = PBXGroup; children = ( - 76E6CA813E55739CC5BCBDE2079AD514 /* KVOController.modulemap */, - AD7999B0B2CA11659D051ADD77667FC3 /* KVOController-dummy.m */, - E08B217900A7BBFD8FE294843574EC6B /* KVOController-Info.plist */, - 4C7D7B2DE634ED0467496A74DDD96E63 /* KVOController-prefix.pch */, - 16E504191031D04051A89EFBF022406D /* KVOController-umbrella.h */, - BBE9290D5E17CC0EA5A3AC25568F58EC /* KVOController.debug.xcconfig */, - 5E17F85D4AF4E4857D3EC4639A91BA77 /* KVOController.release.xcconfig */, + B50EBDBFCA231FD91F50398FFD98F731 /* Support Files */, ); - name = "Support Files"; - path = "../Target Support Files/KVOController"; + name = SwiftFormat; + path = SwiftFormat; sourceTree = ""; }; - 15DCCC1A37986837DD25E649C382D5FD /* Support Files */ = { + 0B919615173B4C5BA9F8CF6353BB29A2 /* MASShortcut */ = { isa = PBXGroup; children = ( - 6C965ADFA047805DBA2682A0EA6735D8 /* JLRoutes.modulemap */, - FC9C946F281F13E69199872A8322D620 /* JLRoutes-dummy.m */, - 82D8161DD3E4F70B7FC3A3DA93C50729 /* JLRoutes-Info.plist */, - C6A604AC86E0E953D1466EE1B2B052B5 /* JLRoutes-prefix.pch */, - 2DAB501BAA75AD54774FECC4BC43453E /* JLRoutes-umbrella.h */, - BB26E635BB60B2D270BB0B543A1CEF54 /* JLRoutes.debug.xcconfig */, - BB6A287E3CDAA9F049E60BF46312E382 /* JLRoutes.release.xcconfig */, + 1F0E09962A346D3210ED3FDF83AC2047 /* MASDictionaryTransformer.h */, + FC05261157A6770DC8DC45EE8BD81D15 /* MASDictionaryTransformer.m */, + DF5D7576CB5ECA11321E060997DF2279 /* MASHotKey.h */, + 24F43A655E291C554E574873ABE31858 /* MASHotKey.m */, + 326CD7D1E6876C681A11EA3A448B22C6 /* MASKeyCodes.h */, + 901C1A6C5DCC4331CFF8AEAE18A879F0 /* MASKeyMasks.h */, + B9B75FA5CC7BE798947804D7024634AA /* MASLocalization.h */, + 64CC83238DB7C833833C937D8D1721B2 /* MASLocalization.m */, + B4AB5D4A028F9B0DD563F829B71C3FBD /* MASShortcut.h */, + 7F129CA0BA48EE1F0F7FAEA3ECF98D46 /* MASShortcut.m */, + B4FFE4D8F4F7A71CE950B4E92395913D /* MASShortcutBinder.h */, + 5E118A1F80BB1B215ECBBE9F8F5950C6 /* MASShortcutBinder.m */, + DAA0E1E553E4FFF8010FC1E15C64834F /* MASShortcutMonitor.h */, + 1741DDBD8CCD946C9E079F964513420C /* MASShortcutMonitor.m */, + BC40127846A28F86F1EC4CDCD51FD5D2 /* MASShortcutValidator.h */, + B16533960BBE208985AFFF951CB11B5E /* MASShortcutValidator.m */, + 2BA8DDD6894772E67D509F8D625D8578 /* MASShortcutView.h */, + 521ED242874317D9E20EC77CCA09ED73 /* MASShortcutView.m */, + 9EE1DD698E397FDA3CAF658795EEB61F /* MASShortcutView+Bindings.h */, + 98DA7C31845B11E5E9EBD831F28190FF /* MASShortcutView+Bindings.m */, + A68020C63AED43D2F02B016D1172F0A9 /* Shortcut.h */, + 86BF722FD1F334169CDEA4AD3659D62A /* Resources */, + 485853D7E1F40365552E4ECA796FA8BC /* Support Files */, ); - name = "Support Files"; - path = "../Target Support Files/JLRoutes"; + name = MASShortcut; + path = MASShortcut; sourceTree = ""; }; 17BB3CDB23E505FDA8F1F2B38BFBCB42 /* OS X */ = { @@ -1297,47 +1025,185 @@ name = "OS X"; sourceTree = ""; }; - 1AF015C7C8BC8C9A5C967FB8C823F2BB /* KVOController */ = { - isa = PBXGroup; - children = ( - C00AB13CB375F7D0794451AB9060A98D /* FBKVOController.h */, - 42DB4AD3D14FA1B7B5B7C8C9AFCA2DC9 /* FBKVOController.m */, - 211FCFC7D6C886CF1E71E1C1F41B81C4 /* KVOController.h */, - 1EB3D8CDCB8A8C441C1BC0CA8DFCB6ED /* NSObject+FBKVOController.h */, - 7B327524DED4BFCBBDC98824D6D7DA24 /* NSObject+FBKVOController.m */, - 0D170CB4FF3F0DAF307101251EF3627E /* Support Files */, - ); - name = KVOController; - path = KVOController; - sourceTree = ""; - }; - 1DA15C2D3A32BA51A1D3698B313107ED /* NSURLSession */ = { + 1F9B2FD6B4FAEBD8E79775688295CF21 /* Support Files */ = { isa = PBXGroup; children = ( - 55366949C8826B0A40E60026B72293B8 /* AFCompatibilityMacros.h */, - A19D78F3098F5DCD7B4D38F361578A3D /* AFHTTPSessionManager.h */, - 6383C08957A7FBA9CDED665C4D17011C /* AFHTTPSessionManager.m */, - 022F66C651F439BF5F11EC684F6A895E /* AFURLSessionManager.h */, - 7F188F814183CF510B546FF7091D959B /* AFURLSessionManager.m */, + 920696354FC7E765F24C5A4A3B3DCE09 /* JLRoutes.modulemap */, + 770525F5992933EA6AA843E871896267 /* JLRoutes-dummy.m */, + 800B51F871BBAE506C7CEB56383D360B /* JLRoutes-Info.plist */, + DFF58D8D51B75C084E47C279D580F597 /* JLRoutes-prefix.pch */, + B3F8309E025C840E128F79AB415B5380 /* JLRoutes-umbrella.h */, + 9C5BBD0242ABA2863F1583168BD00059 /* JLRoutes.debug.xcconfig */, + 353C2DB990599197DB894FF3EF87C4B3 /* JLRoutes.release.xcconfig */, ); - name = NSURLSession; + name = "Support Files"; + path = "../Target Support Files/JLRoutes"; sourceTree = ""; }; - 1FB313EBB8438DC6D8079E4A4A9F2809 /* Pods */ = { + 26A78EAF95E558857B1D7DC59625923A /* ReactiveObjC */ = { isa = PBXGroup; children = ( - 3645A1EEBD074F707BE5E13648B7B29C /* AFNetworking */, - D814C53BC5BDBD71632FFF32D99C0A2B /* JLRoutes */, - 1AF015C7C8BC8C9A5C967FB8C823F2BB /* KVOController */, - FA7F2CAAE102E6FC0BDE9E9AE22869A6 /* Masonry */, - 80B017C395E59311E8727AF686A0734E /* MASPreferences */, - EAB77E3C2283384A947D9BAA29B5EC5C /* MASShortcut */, - 004890BFC705A8835DDF0F98B454945A /* MJExtension */, - 00F10B99102C6A88F7D6CAC914DC52D4 /* ReactiveObjC */, - 82DC5363650EC5BC13BCF3DB413431BC /* SSZipArchive */, - 3780990FFA494330DBB01179E7171BAC /* SwiftFormat */, + 55BC3D33A9542584D8C808926741A47B /* NSArray+RACSequenceAdditions.h */, + 188F20AB3B320AEC7B8C267470943015 /* NSArray+RACSequenceAdditions.m */, + 6457B693FEC91A0A8E86EB7105C8B31E /* NSControl+RACCommandSupport.h */, + 253FCA858D5F0219F5921EA261F5F006 /* NSControl+RACCommandSupport.m */, + 8B06FA4447823AF0F6F97B8E96B719A4 /* NSControl+RACTextSignalSupport.h */, + 406F8228457D5CB0D921813E21FE946D /* NSControl+RACTextSignalSupport.m */, + E8CC0F06D34E00AD8B317D99FD7F01F9 /* NSData+RACSupport.h */, + F52071790C899E157EDF80FF63545ACF /* NSData+RACSupport.m */, + 5FB67B384497FD2084C365BEF63C8041 /* NSDictionary+RACSequenceAdditions.h */, + 1C04B75999FE12F2028A24A1F8A03DB8 /* NSDictionary+RACSequenceAdditions.m */, + 88A8A5463ED57DE4C56D0FEF06D6800D /* NSEnumerator+RACSequenceAdditions.h */, + 41EADBE38E92458F65B7405E077B05B6 /* NSEnumerator+RACSequenceAdditions.m */, + DE4624DEDC5ABCF8C3C5CB949A5D66D6 /* NSFileHandle+RACSupport.h */, + EBA76980BAEFE095A7DE076F41D1363F /* NSFileHandle+RACSupport.m */, + 0133444D217A20710819BF36151B2DE4 /* NSIndexSet+RACSequenceAdditions.h */, + 63770CC527BB6F6D848F71FA5B3825CD /* NSIndexSet+RACSequenceAdditions.m */, + 5FDFC78F08EBC020DBD1C6D8C4A0C55A /* NSInvocation+RACTypeParsing.h */, + 85136B76D7FEF75ACD42AD2E2D895FBC /* NSInvocation+RACTypeParsing.m */, + ED307F72D76E573A9F55CEFAFDA27722 /* NSNotificationCenter+RACSupport.h */, + ABD9ABE326EC7D0AC6E288CA1EEF8983 /* NSNotificationCenter+RACSupport.m */, + 99BBDF8E148692F49C6D547D5B4D01EE /* NSObject+RACAppKitBindings.h */, + 4504265EE89A55949D98E758BFA4D542 /* NSObject+RACAppKitBindings.m */, + 4D2E4C3D2273815903523951768C1EB5 /* NSObject+RACDeallocating.h */, + 86CBCF2CC9084A4B4ECA0A9B13DC6F2A /* NSObject+RACDeallocating.m */, + D77C5430C3CFD14BCCA81F321744D9C6 /* NSObject+RACDescription.h */, + 9431131D924F8FACC0BDBAC0DA230A7A /* NSObject+RACDescription.m */, + A895C70FC205D4C828BDDA9B32AA8C25 /* NSObject+RACKVOWrapper.h */, + 9C044071E44947DB5A6EC1C8E3295F78 /* NSObject+RACKVOWrapper.m */, + D261865E1BC139CC9E4898E2CDD2C99B /* NSObject+RACLifting.h */, + 47CC1777B7155CF036F83A3AF8B6BB22 /* NSObject+RACLifting.m */, + 1B3B791EBC92A4566237409A8D97AC8C /* NSObject+RACPropertySubscribing.h */, + 22F03052B67FA7832C853528B5834FCF /* NSObject+RACPropertySubscribing.m */, + AE7DC45DD4F3FAA78571056EAFEFF7D0 /* NSObject+RACSelectorSignal.h */, + 47AD2D8CAE0CCE18C3B1F113990A5E44 /* NSObject+RACSelectorSignal.m */, + B01D19A83232C1E4D8400AB254C4BB47 /* NSOrderedSet+RACSequenceAdditions.h */, + 8F8B93E05CB12A7E45793451C01DA161 /* NSOrderedSet+RACSequenceAdditions.m */, + 9F18674DE256462BEE4BAD5D24D3372F /* NSSet+RACSequenceAdditions.h */, + CE8427593DE5AE690F89E787312AA80D /* NSSet+RACSequenceAdditions.m */, + C1B2819C042811649674BE814D7311E0 /* NSString+RACKeyPathUtilities.h */, + 2854A514B6E210ADBAE3D2DD47C43532 /* NSString+RACKeyPathUtilities.m */, + E5EEC8A028C140600D19544981AE13A1 /* NSString+RACSequenceAdditions.h */, + AA502F6F3E15635A61A28C7BD0527845 /* NSString+RACSequenceAdditions.m */, + 4055A730DD7487EBAAA97AA7670F09BC /* NSString+RACSupport.h */, + 6A8F378C18103DCA850A05EBFCE4E72D /* NSString+RACSupport.m */, + F981AFE80DF851730886D2BEFBE589FD /* NSText+RACSignalSupport.h */, + 7EF47CB28463C586B26B2991DB5B8480 /* NSText+RACSignalSupport.m */, + FADE81D60C709CEB8F78AF3CFFEDBB13 /* NSURLConnection+RACSupport.h */, + F691BFCC43D6861134C5851121076FC3 /* NSURLConnection+RACSupport.m */, + 3125A95116695F297C4B988185A37F4F /* NSUserDefaults+RACSupport.h */, + 4A5F265622E22C0EEEAB94750EBE6134 /* NSUserDefaults+RACSupport.m */, + 0175E2A27E40ECB93F6CE0B80E0FA51C /* RACAnnotations.h */, + 637CF36B361FC92C13AB4A54A4328CA4 /* RACArraySequence.h */, + 4A91090C7AC1F11A62E4F88F17AA7888 /* RACArraySequence.m */, + 18B731F1037B0714D5F9AB49621C9361 /* RACBehaviorSubject.h */, + 251FBBC73D5EF330DFA2C3CC7100E5C0 /* RACBehaviorSubject.m */, + ACD836DF5991AC95BA07C0B0A37FD771 /* RACBlockTrampoline.h */, + 054E09A0D2ED3DDEE3600C793BC1A762 /* RACBlockTrampoline.m */, + C64CDE42C3C53F35696255E603CB79F3 /* RACChannel.h */, + 9ACC057F3DF81B44862CA6FEA49DD1AC /* RACChannel.m */, + EA47250AC7DC8A0ED211DF2944D660E7 /* RACCommand.h */, + C338BC8F6C32D66BE1110D7C20EF815C /* RACCommand.m */, + 24C49E3ACBD8E47C0928E69BE5481DEB /* RACCompoundDisposable.h */, + 68A1AE4033446A00B9B658009304A320 /* RACCompoundDisposable.m */, + 050D0F75E3F0C03C3115162F83B7DAB5 /* RACCompoundDisposableProvider.d */, + 1DEBF7AD59351A81DE554B0F7965CCEB /* RACDelegateProxy.h */, + 327D5C19692CFE8D5019828621A7C75E /* RACDelegateProxy.m */, + 90FBE6CB793F698D6B87D4432831BD99 /* RACDisposable.h */, + 64FC5B89973A9BBA2E34B86493690D6E /* RACDisposable.m */, + 1BCC53E6F0D51446F5F9AD5B4A804CED /* RACDynamicSequence.h */, + 0B3A24D332D9DF6EEF896D9724574BC9 /* RACDynamicSequence.m */, + C5221D021795CA36BD5947FC0168EE65 /* RACDynamicSignal.h */, + 8D2B0003F49FC9EDC7590321AC6BFB88 /* RACDynamicSignal.m */, + 9243E79BAE39ABF95CAF568F2FFF2A04 /* RACEagerSequence.h */, + CD6919B88EB9F73E006736E7499E76E1 /* RACEagerSequence.m */, + 6F3C6B8BD03A7EA869C7EA4FAFA9FBD0 /* RACEmptySequence.h */, + F6D6705C49D1560E5CE8C34ECB7DAAAB /* RACEmptySequence.m */, + 13A3C94CE26E870553A8A3C07CA30B57 /* RACEmptySignal.h */, + 2EE79DFB54C2C8C73B2BD37E27B171B8 /* RACEmptySignal.m */, + E977CF4DD4DC0D16BD175FAF40106B48 /* RACErrorSignal.h */, + 5010C9BAE5EDD1145C624DF635CA270D /* RACErrorSignal.m */, + 28219A7DAFE0AC6DF6CCE34E8C591E00 /* RACEvent.h */, + A09DBA0292F567D6F52AAAD9C6430526 /* RACEvent.m */, + DB34F13FFE77DA49C8C0734D0689FAFE /* RACEXTKeyPathCoding.h */, + FA917799E98A1E768A7093FB39CA50CE /* RACEXTRuntimeExtensions.h */, + C696A284FFC6A1D10C0BEAF361EE1412 /* RACEXTRuntimeExtensions.m */, + ABE88F7BB5D4B4B81693E91DD9F04F16 /* RACEXTScope.h */, + 0B2DA95C83C5CA0AD515305E0B4B5D5D /* RACGroupedSignal.h */, + DFB09FBA9611715413E83EF84786C7D9 /* RACGroupedSignal.m */, + 721DC296B9673576570113B47B8C4095 /* RACImmediateScheduler.h */, + 325101FA5CF228941A48D8130C849BE5 /* RACImmediateScheduler.m */, + D596C7C7A1ADCBD775547A10BCB57046 /* RACIndexSetSequence.h */, + 3B81FE1A497A608EDF5A5DA65E3F2CFA /* RACIndexSetSequence.m */, + 9CCA2E16F2CA5AB3968EBBBC56D59388 /* RACKVOChannel.h */, + 222C339170B2627B8066C6AB909E2946 /* RACKVOChannel.m */, + 969B21DC4461E2E59E371E5AEB3FD09D /* RACKVOProxy.h */, + C3DB5301428F8A0955C03BDE9F62A181 /* RACKVOProxy.m */, + 09FE8D7DF983AB72D7DB52D7BE5C72C0 /* RACKVOTrampoline.h */, + FC5FB37020588032709C66F2BC2D09D7 /* RACKVOTrampoline.m */, + 57332336D3C571B3F1628C476FA358CA /* RACmetamacros.h */, + 8D2FE85C7430AFD024C0474EFB247B76 /* RACMulticastConnection.h */, + 25DCCB7CB0629E9D4F24E3F7F60FBE99 /* RACMulticastConnection.m */, + 703A69CB76ECF4F69270F3B3DD1F9EE1 /* RACMulticastConnection+Private.h */, + E767D844B2691C5FD65E7551044C2048 /* RACPassthroughSubscriber.h */, + 121F5210DEA3A3A2A224DEF5E0EE5683 /* RACPassthroughSubscriber.m */, + 54C2F839D3238DCC6675AC9449A91A09 /* RACQueueScheduler.h */, + B629F9A2136903DCADF4EE76CCFB076D /* RACQueueScheduler.m */, + 11ADA566099A0C86F81BCC2034C0DE15 /* RACQueueScheduler+Subclass.h */, + 4E24B128CC2A210E76A83A4D999ABDAC /* RACReplaySubject.h */, + 71F236E38605D856EA8099E70D35452C /* RACReplaySubject.m */, + 196A53B1CFC100F355DF6945BFEF8AA2 /* RACReturnSignal.h */, + E7C5EE6FF6E65A797C4DD72A754BC231 /* RACReturnSignal.m */, + 5D7F0A9546B9AEB5A6625473E776137E /* RACScheduler.h */, + 8A5B2722E81669D7E064E8258636315D /* RACScheduler.m */, + E5C3C6580EE6475513CDADA12A1D56B8 /* RACScheduler+Private.h */, + AFED17BB38CF542660A6D3381ABBE5C0 /* RACScheduler+Subclass.h */, + 23B30D39C016E53021A70A320CBD096F /* RACScopedDisposable.h */, + BAC04264E593BA1DAD6C7055BB10788B /* RACScopedDisposable.m */, + 33D1A9E562E03C58892F3B45AB3E946E /* RACSequence.h */, + A80A588A1F8D437D283EE06EC52A1306 /* RACSequence.m */, + 95E168FCAECAB4B00D2398F200EE92D8 /* RACSerialDisposable.h */, + D945988E2461D8A7A1AAFD0DC7B36714 /* RACSerialDisposable.m */, + 3F72CA14E30E63F2051E46A4A3F474B2 /* RACSignal.h */, + 51B7E8EDE24955CC93FED246F4F9C0EE /* RACSignal.m */, + A057CDE29E056CE8AF865D1B8F7A7ADE /* RACSignal+Operations.h */, + 0F88E3987A0B33C045CB16C4D69514DD /* RACSignal+Operations.m */, + DA288F12EE641D34B1FA163FDFD0B1FA /* RACSignalProvider.d */, + 2B8DC497D2256FF535AF9649B43C3C3F /* RACSignalSequence.h */, + D0584BA0761EEB3C48E3013C17111CBF /* RACSignalSequence.m */, + 7CE37FA4A2F489645A1017746EC0CA0D /* RACStream.h */, + D3D03E95A00FC71403911E73FD79421C /* RACStream.m */, + 739BB29D7F24D25CC4FD1FF3C3A1446C /* RACStream+Private.h */, + 948964A755759E5C30E07FDB640F6070 /* RACStringSequence.h */, + 82A4ED31D7A854EC028871D0B7D7DFC3 /* RACStringSequence.m */, + 90D47D004B261B10EB65D9F403336742 /* RACSubject.h */, + 0F12A6A6708A56022FC8CADA2707E730 /* RACSubject.m */, + 900B502DEA493BB0F4F6121E3F8056D5 /* RACSubscriber.h */, + 3192BF46419BDAAF9DE20D46F683F244 /* RACSubscriber.m */, + 591DB7CE7DE6D4E2827BC73612B65B20 /* RACSubscriber+Private.h */, + 8C47AD376829AC1E98C2387B2ED5149D /* RACSubscriptingAssignmentTrampoline.h */, + 03839DE82107BA6BAC3D53AB9E1E9219 /* RACSubscriptingAssignmentTrampoline.m */, + 87170DD51F5D2459662B6DF0F82C60BD /* RACSubscriptionScheduler.h */, + A525C8B7A0E4DE2E6249F8E85445EDB0 /* RACSubscriptionScheduler.m */, + 123B1CEAB1F94CCF67D0A975CD375F8C /* RACTargetQueueScheduler.h */, + F0FCCF1F53756B076591F1B9385D7AFD /* RACTargetQueueScheduler.m */, + 8D090957A33F33D4EACE904ABCD322E6 /* RACTestScheduler.h */, + 14F74B08DC54FBC3238B20FDADF379C9 /* RACTestScheduler.m */, + 277835F63879EBA8DF4FC6D65C94A9EC /* RACTuple.h */, + 4AC3286DD6B6CD4CF2D1971F091E558B /* RACTuple.m */, + B2A5892D5CC07F46A2693982D4EBFD43 /* RACTupleSequence.h */, + D3A7AA25FCD790A199EEC597E269F9E1 /* RACTupleSequence.m */, + 3504A868701069CEC6DC85A1F0999986 /* RACUnarySequence.h */, + DF69E65723E7E5AC49610DE725855BD6 /* RACUnarySequence.m */, + 489E2FE8DB39A7FD4640428096AD329D /* RACUnit.h */, + 89C15C0B172E1FBF5B29DE5DAF45BE18 /* RACUnit.m */, + 1A4463E98CFB316D6FAAD670E109C075 /* RACValueTransformer.h */, + 99E497B8E5B34A08E9B954F44EFA8EA6 /* RACValueTransformer.m */, + 87EC75ECC2B55AD31C743F0A985F8650 /* ReactiveObjC.h */, + 4073A8C4CA0025A905BADB2B8780E903 /* Support Files */, ); - name = Pods; + name = ReactiveObjC; + path = ReactiveObjC; sourceTree = ""; }; 277079E64D587828BC84168A65DD46C6 /* Pods-EasydictTests */ = { @@ -1357,120 +1223,156 @@ path = "Target Support Files/Pods-EasydictTests"; sourceTree = ""; }; - 2C8F69AABC473BA4655CEDCB59BA54FC /* Support Files */ = { + 28AB3AF0A387580C55B957F811EAAF13 /* Pods */ = { isa = PBXGroup; children = ( - 6FB1D078C1B02760D6A76B30DF6ED725 /* MASPreferences.modulemap */, - 2F670E262F0E26ABE059FAE3916C3832 /* MASPreferences-dummy.m */, - BEAFCB02EB735528D25F055AC89EE861 /* MASPreferences-Info.plist */, - 01F9CD460420B97F6EAE6BE64E1BDDD6 /* MASPreferences-prefix.pch */, - 90E9858D85A96D9EE07817FE11174AB8 /* MASPreferences-umbrella.h */, - D05B475C18069837472BC1DCF47A1AD4 /* MASPreferences.debug.xcconfig */, - D2E2A718210C8E286E0F7DDC36A27CA0 /* MASPreferences.release.xcconfig */, - D5C045644E4819E02332F0BE22F4DBBA /* ResourceBundle-MASPreferences-MASPreferences-Info.plist */, + 8DA2B5D090B7EA55C75ACD738E6B7BBB /* AFNetworking */, + 2B3C8206F169A6EDDA20448356EF38FB /* JLRoutes */, + 798DF4BCEB7A4A2C4B57373F1A8842EB /* KVOController */, + 44AE25D586C070D413A2495B7E7918B6 /* Masonry */, + 2F0EB9C11C4A2FB6B6BBB72AC94A7870 /* MASPreferences */, + 0B919615173B4C5BA9F8CF6353BB29A2 /* MASShortcut */, + E0571C37A234FF3B2745EEFA3E61901C /* MJExtension */, + 26A78EAF95E558857B1D7DC59625923A /* ReactiveObjC */, + 0ADC8771B711D5EBDAFE7D8383BEE957 /* SwiftFormat */, ); - name = "Support Files"; - path = "../Target Support Files/MASPreferences"; + name = Pods; sourceTree = ""; }; - 2F1D72ABB892716E872905CCF7E3FF98 /* Support Files */ = { + 2B3C8206F169A6EDDA20448356EF38FB /* JLRoutes */ = { isa = PBXGroup; children = ( - 192EAFEBB6AA471F68477576B21D097E /* AFNetworking.modulemap */, - 6D381FEE44416F6049833374438D085E /* AFNetworking-dummy.m */, - 639780F06A7675F06FC52FBB505566E3 /* AFNetworking-Info.plist */, - 4551ADA312C894178B8C011B19428573 /* AFNetworking-prefix.pch */, - B7E6D464AFD4D38BAAC9340D7EBD59B9 /* AFNetworking-umbrella.h */, - 62E125E92733A769AF8D2A0F2D786DF4 /* AFNetworking.debug.xcconfig */, - 2A1C7F6DD005006975670D6EBD4B14E5 /* AFNetworking.release.xcconfig */, + E1FBA4265FA607A57D44F29A0B238DC2 /* JLRoutes.h */, + 6D614C5FC34AA34451C2BDA1C0E421EA /* JLRoutes.m */, + DA14B0FFEB38306B2D54B1626D742F3B /* JLRParsingUtilities.h */, + 5F5BF928F82A886C8E3388230ED79B39 /* JLRParsingUtilities.m */, + 08B59A0A08856F6C5B55CDDBEF28F1A0 /* JLRRouteDefinition.h */, + 788B21A2A553AA362A1CB6577CFA6B5A /* JLRRouteDefinition.m */, + 7D4F58C235F070C7997D182C3ABB1E38 /* JLRRouteHandler.h */, + FF381107CB36EC9C8A57BCA65E77EB05 /* JLRRouteHandler.m */, + B0C6205B6AF7C1FC53FE473EA2C5A44B /* JLRRouteRequest.h */, + DFEAFC95BA525C7E233427D5820D0C01 /* JLRRouteRequest.m */, + B2AEDEF7C9586A7261C207549FA53B92 /* JLRRouteResponse.h */, + D9F48EF2A4F07A1C694E759F94C2AE73 /* JLRRouteResponse.m */, + 1F9B2FD6B4FAEBD8E79775688295CF21 /* Support Files */, ); - name = "Support Files"; - path = "../Target Support Files/AFNetworking"; + name = JLRoutes; + path = JLRoutes; sourceTree = ""; }; - 3645A1EEBD074F707BE5E13648B7B29C /* AFNetworking */ = { + 2F0EB9C11C4A2FB6B6BBB72AC94A7870 /* MASPreferences */ = { isa = PBXGroup; children = ( - AEEC2342BD702605C7726D54D4B613A8 /* AFNetworking.h */, - 1DA15C2D3A32BA51A1D3698B313107ED /* NSURLSession */, - 729D5D3187674FBADDCB73928AC6E89F /* Reachability */, - 904C2959FEA38DE101E97BFB2FF45DA9 /* Security */, - C53D6220C49E060C6F655FE846E9BD02 /* Serialization */, - 2F1D72ABB892716E872905CCF7E3FF98 /* Support Files */, + 6919C37C6B26F4098D0EA1B61962FBBB /* MASPreferences.h */, + AD36416299FD1BBB5C0715988BCAE464 /* MASPreferencesViewController.h */, + 50AEE34E616CCE18C9AF677539B4954E /* MASPreferencesWindowController.h */, + 5F5718D7E1740397D6531E52D2DAF58B /* MASPreferencesWindowController.m */, + 4DA149AB85F42084C396E4D59D45FBA5 /* Resources */, + B333AF1A5AB96D6D2E25ADFC7E32DC8C /* Support Files */, ); - name = AFNetworking; - path = AFNetworking; + name = MASPreferences; + path = MASPreferences; sourceTree = ""; }; - 375F4C4F44221675A81D3FBB0A641ADC /* Support Files */ = { + 3D866075C3D3015C6742E23645E52689 /* Pods-Easydict */ = { isa = PBXGroup; children = ( - C84A098377D2F620D91C45A070C63629 /* Masonry.modulemap */, - 05DB5A567FF4B9249C3D86F209C6AC30 /* Masonry-dummy.m */, - 3D66BB6F3758A1B698ECDDEE78FC48C8 /* Masonry-Info.plist */, - 76B745883BA036C467C82746EB679861 /* Masonry-prefix.pch */, - 4881A1551F1A07AD17C3884F9AE45043 /* Masonry-umbrella.h */, - 53B1FC0A4381E89109818445B57BAF4F /* Masonry.debug.xcconfig */, - 1E3C6299D7C4237ED3281EF847EDC140 /* Masonry.release.xcconfig */, + 7928E94955D0DC03EACC29A7B0111C9C /* Pods-Easydict.modulemap */, + D4577EDD80EE21A830A0D562EA93FACB /* Pods-Easydict-acknowledgements.markdown */, + 077721F948898091D9B33938E5F2054E /* Pods-Easydict-acknowledgements.plist */, + 0D610BCDDE18DC2909FCA3135208FAB9 /* Pods-Easydict-dummy.m */, + 609FBC631238BFF4067769DA895D7F5D /* Pods-Easydict-frameworks.sh */, + A8855B8F589FC345830C0325F4E7724D /* Pods-Easydict-Info.plist */, + B845C2ACCFEF00A5B6C2314BC9ACE0DD /* Pods-Easydict-umbrella.h */, + 8B00B1A7406B4F5FEEC4C4B39D91D48A /* Pods-Easydict.debug.xcconfig */, + 0F1C25F44128BF7424E93AA5262DC85E /* Pods-Easydict.release.xcconfig */, ); - name = "Support Files"; - path = "../Target Support Files/Masonry"; + name = "Pods-Easydict"; + path = "Target Support Files/Pods-Easydict"; sourceTree = ""; }; - 3780990FFA494330DBB01179E7171BAC /* SwiftFormat */ = { + 4073A8C4CA0025A905BADB2B8780E903 /* Support Files */ = { isa = PBXGroup; children = ( - F6A8533B52F1B08A4ECF24CFFBB8DBB4 /* Support Files */, + 1815ECA03D253EB0C5C731F09E1B2FDD /* ReactiveObjC.modulemap */, + 03032F224B7664C333A022CC4E74C680 /* ReactiveObjC-dummy.m */, + 88B3AE0C1AACF41F3110D93A3E54FCAB /* ReactiveObjC-Info.plist */, + 8AC873C67EA040B9547FEEE92ED41138 /* ReactiveObjC-prefix.pch */, + 04E837A3F5A899D7092E76AB85A05AF3 /* ReactiveObjC-umbrella.h */, + DBAA192A036915695EB6A269D9D99210 /* ReactiveObjC.debug.xcconfig */, + D043E1B15997F3DC996E1A3489DA0AA8 /* ReactiveObjC.release.xcconfig */, ); - name = SwiftFormat; - path = SwiftFormat; + name = "Support Files"; + path = "../Target Support Files/ReactiveObjC"; sourceTree = ""; }; - 3BF4E775E4149BC481DA039B2C013B10 /* Support Files */ = { + 44AE25D586C070D413A2495B7E7918B6 /* Masonry */ = { isa = PBXGroup; children = ( - EF4B9A3B09E9AEFB4BEAD637D18BFA5F /* ReactiveObjC.modulemap */, - EF09616BE93C6AF0B9072758CB9ECEC7 /* ReactiveObjC-dummy.m */, - 552F97196102557964226D25A9521F77 /* ReactiveObjC-Info.plist */, - 34039AA654914B768646EB33AA39CBE9 /* ReactiveObjC-prefix.pch */, - 3ECACE3802917EAC82D240F725FA72B2 /* ReactiveObjC-umbrella.h */, - 105DB0D0CF2811EDBEE761BE9FC097DB /* ReactiveObjC.debug.xcconfig */, - 830AEAC9CFB2F6B2C5EC9FC4A7F6503D /* ReactiveObjC.release.xcconfig */, + A67450CD504F7DF1BA53A80F3C84D4FD /* MASCompositeConstraint.h */, + CBBF4B9205D7D1E430C6D76523D6C54A /* MASCompositeConstraint.m */, + 35F2945E22A96ED6C55B5A9BB42A4CB2 /* MASConstraint.h */, + F13C6E61E99E202B56300F56A3034112 /* MASConstraint.m */, + EE8D1293977B5D316394DEB6852BF119 /* MASConstraint+Private.h */, + 5625F93AE851A424B622A7AE18538527 /* MASConstraintMaker.h */, + 998369D782732EA87BD493C1D0B05A33 /* MASConstraintMaker.m */, + D146F011303B1C83593CEABF179537E2 /* MASLayoutConstraint.h */, + D72FB6A3CADB88F94E8E8791D2D91F89 /* MASLayoutConstraint.m */, + 7EB44E29D432DEF742D5E4B088F7211E /* Masonry.h */, + 67AC21D8CEFD70F19580760DB46C52F3 /* MASUtilities.h */, + 95A397D2F5C88626A6774905D8DBBAB4 /* MASViewAttribute.h */, + 6746F16048E61E9228198C90B125454C /* MASViewAttribute.m */, + D178922C21826738E65BAEBAEDF12E6C /* MASViewConstraint.h */, + 65F6B1F59FB75CA17AF3F2A69F4B39CB /* MASViewConstraint.m */, + 88EBF7349FB1E511A56DD59B085384D5 /* NSArray+MASAdditions.h */, + 67D6FF948119298A85C2A5D2E687B50D /* NSArray+MASAdditions.m */, + 88CADD68D050BE1261C07FE417DD8F5B /* NSArray+MASShorthandAdditions.h */, + B71D33A8AB4126FCB0ADA296093911BF /* NSLayoutConstraint+MASDebugAdditions.h */, + DDE5352C18521D46523F24C8848FCA5C /* NSLayoutConstraint+MASDebugAdditions.m */, + 39D4344CE5E0E310C702692275620010 /* View+MASAdditions.h */, + AD20BF87C3E8D0A70DE4247BA7286001 /* View+MASAdditions.m */, + DD65E7CAED8DD43572BFE54E4AAD3FE2 /* View+MASShorthandAdditions.h */, + E634CF76AABF8CB7B9A7E048DD956E87 /* ViewController+MASAdditions.h */, + F30694DEB38967E802B5D53C1F73AB42 /* ViewController+MASAdditions.m */, + DB0EE47EB23FCD11A1B487ADD546EE30 /* Support Files */, ); - name = "Support Files"; - path = "../Target Support Files/ReactiveObjC"; + name = Masonry; + path = Masonry; sourceTree = ""; }; - 3D866075C3D3015C6742E23645E52689 /* Pods-Easydict */ = { + 465C1488993ACCC767977FB1E64B5D73 /* Serialization */ = { isa = PBXGroup; children = ( - 7928E94955D0DC03EACC29A7B0111C9C /* Pods-Easydict.modulemap */, - D4577EDD80EE21A830A0D562EA93FACB /* Pods-Easydict-acknowledgements.markdown */, - 077721F948898091D9B33938E5F2054E /* Pods-Easydict-acknowledgements.plist */, - 0D610BCDDE18DC2909FCA3135208FAB9 /* Pods-Easydict-dummy.m */, - 609FBC631238BFF4067769DA895D7F5D /* Pods-Easydict-frameworks.sh */, - A8855B8F589FC345830C0325F4E7724D /* Pods-Easydict-Info.plist */, - B845C2ACCFEF00A5B6C2314BC9ACE0DD /* Pods-Easydict-umbrella.h */, - 8B00B1A7406B4F5FEEC4C4B39D91D48A /* Pods-Easydict.debug.xcconfig */, - 0F1C25F44128BF7424E93AA5262DC85E /* Pods-Easydict.release.xcconfig */, + 1B29CD54E1DC81DB4702C7694C66884A /* AFURLRequestSerialization.h */, + 6CCFC8929A42FFCEAA406A5C537FEF4B /* AFURLRequestSerialization.m */, + F403493C0E51FB0DFC829E48064496E3 /* AFURLResponseSerialization.h */, + 8662EE39A070B79BE42A8A22983F4264 /* AFURLResponseSerialization.m */, ); - name = "Pods-Easydict"; - path = "Target Support Files/Pods-Easydict"; + name = Serialization; sourceTree = ""; }; - 52AFCF914BE0CF606D1009423C163890 /* Support Files */ = { + 485853D7E1F40365552E4ECA796FA8BC /* Support Files */ = { isa = PBXGroup; children = ( - 1CD1A1B593DC2D2B2D20A0DCC03ABD5E /* SSZipArchive.modulemap */, - 75386950DD5F25918BB1EEF742C7D9AA /* SSZipArchive-dummy.m */, - B20852AC8475531062C3301FFF7A63FA /* SSZipArchive-Info.plist */, - 0867D2DCCEFF9DC0B1F4A149240B8001 /* SSZipArchive-prefix.pch */, - 57073B39F59577D7C24F2C8C9BC07FCB /* SSZipArchive-umbrella.h */, - B945D43194E93E7A4CDC8946C4352EC3 /* SSZipArchive.debug.xcconfig */, - 2C1DEF9961F4639CA1E1FE01E9AB7106 /* SSZipArchive.release.xcconfig */, + 71CA2A82FC3C54FC57C3BA363945B7C0 /* MASShortcut.modulemap */, + ACDFA4F3C1F306F3AFD355D748B780E4 /* MASShortcut-dummy.m */, + F2CF7ACFFCAE6C8CF3ACEEB59A6C634D /* MASShortcut-Info.plist */, + CD7502C68829FB285396FB19B2323CFF /* MASShortcut-prefix.pch */, + 93DF1638CD2F8B386BDC015BF9818839 /* MASShortcut-umbrella.h */, + FBD7EC3B1C295E5ED2A83F53EAFA3CDA /* MASShortcut.debug.xcconfig */, + A3C6CAE6AD059DD07A9EAEC80681A3F6 /* MASShortcut.release.xcconfig */, + 124F572A4AF3C094D228E0480E207BBB /* ResourceBundle-MASShortcut-MASShortcut-Info.plist */, ); name = "Support Files"; - path = "../Target Support Files/SSZipArchive"; + path = "../Target Support Files/MASShortcut"; + sourceTree = ""; + }; + 4DA149AB85F42084C396E4D59D45FBA5 /* Resources */ = { + isa = PBXGroup; + children = ( + CA857A6B18656D3B59DE5A526792F775 /* MASPreferencesWindow.xib */, + ); + name = Resources; sourceTree = ""; }; 7067D651188BC7621BDA2A7C82934B7E /* Frameworks */ = { @@ -1481,142 +1383,128 @@ name = Frameworks; sourceTree = ""; }; - 729D5D3187674FBADDCB73928AC6E89F /* Reachability */ = { + 798DF4BCEB7A4A2C4B57373F1A8842EB /* KVOController */ = { + isa = PBXGroup; + children = ( + 9E564116F17AF80AE09123FBF77646E4 /* FBKVOController.h */, + DFE1DBD7301E01B5E3A39F1686D42F00 /* FBKVOController.m */, + 8732412B937B54EE325D65A55733DE4F /* KVOController.h */, + 93456C1C7C8084B69D5DC9D2005E009E /* NSObject+FBKVOController.h */, + 04B49437CB66B3443A88EC92E3181351 /* NSObject+FBKVOController.m */, + 035341FF6B1664B702BA3BC355E56381 /* Support Files */, + ); + name = KVOController; + path = KVOController; + sourceTree = ""; + }; + 7A1C6513AC38FBBC165A04274933899C /* Reachability */ = { isa = PBXGroup; children = ( - 6593D5EDCB13F136174E99F5E12048CC /* AFNetworkReachabilityManager.h */, - 6615B856C726D9285A4B6E28EC715E3D /* AFNetworkReachabilityManager.m */, + B4DDE5DB3802282C2554D266594130C3 /* AFNetworkReachabilityManager.h */, + 045F7038CBFE8E86B42AF4ABEB1497D9 /* AFNetworkReachabilityManager.m */, ); name = Reachability; sourceTree = ""; }; - 7BE162B9D652178FD1D25409F1FC6F9B /* Support Files */ = { + 86BF722FD1F334169CDEA4AD3659D62A /* Resources */ = { isa = PBXGroup; children = ( - EABF68E1B84B9E055839CEA6F6B6D38F /* MASShortcut.modulemap */, - 2257E2DA3B4858919460A9624BCAE2A9 /* MASShortcut-dummy.m */, - BA9844B90FABE5852C6F93DD8B789633 /* MASShortcut-Info.plist */, - D0E6771BE3177BB8F6467C7E8DDDF8CB /* MASShortcut-prefix.pch */, - 68A5FF61B74B2BB00EC1603A05425CBD /* MASShortcut-umbrella.h */, - C0F4292BB70938D463DEF22CD3887D38 /* MASShortcut.debug.xcconfig */, - 671640F1EFB891F33D3ED5B278726652 /* MASShortcut.release.xcconfig */, - 7FA3B1B356975FCDCDE7F135D3032C24 /* ResourceBundle-MASShortcut-MASShortcut-Info.plist */, + 3856FB9950A3ACB5D8D21A1281D26A84 /* cs.lproj */, + 34AAF569E806D3602F701C9682E5C305 /* de.lproj */, + CCCFE646EAFC5D1508BF29DC58EF2F45 /* en.lproj */, + 91A7DD4172A033191FD66C63275D0DF8 /* es.lproj */, + 871782758F1BDABA53844F5B77A1BB8F /* fr.lproj */, + 604C599F9DB7356D975D61A7A4A4B102 /* it.lproj */, + 5A27DE015DF1CF703475F9B58BA32B42 /* ja.lproj */, + 730E2CA15BE47396A84B9D738C378F64 /* ko.lproj */, + 510C558AA6065604533EC385D51A1F5C /* nl.lproj */, + 7397CEDA777130C0129CCE6E1C63624B /* pl.lproj */, + 934BDB24FA9C8A92FBA878383A672CF4 /* pt.lproj */, + 684929ACE56AE3580624ACE30CC449FA /* ru.lproj */, + 46635DC58FF9895EC898A65F2FBB1EF5 /* sv.lproj */, + 38435F790DF285E2BD4696B60E31EED7 /* zh-Hans.lproj */, + 45B3F5BF28538E134CB9DE0D6480C890 /* zh-Hant.lproj */, ); - name = "Support Files"; - path = "../Target Support Files/MASShortcut"; + name = Resources; sourceTree = ""; }; - 80B017C395E59311E8727AF686A0734E /* MASPreferences */ = { + 8DA2B5D090B7EA55C75ACD738E6B7BBB /* AFNetworking */ = { isa = PBXGroup; children = ( - 603433905598D812A7478E82564BF21F /* MASPreferences.h */, - 478B17AC77063096F4A3028A7AAB9846 /* MASPreferencesViewController.h */, - 4BCFE3AA9E307F6B095BC638B94A50D1 /* MASPreferencesWindowController.h */, - 9BFDA2A5BEF38BE0228CC474310507B0 /* MASPreferencesWindowController.m */, - F6BF98C56B58C763C8F69845BCB2B749 /* Resources */, - 2C8F69AABC473BA4655CEDCB59BA54FC /* Support Files */, + E8A491921DCFC162EB2A938076F782B3 /* AFNetworking.h */, + E115B2EF1AF6A8AFD3624588410B5C05 /* NSURLSession */, + 7A1C6513AC38FBBC165A04274933899C /* Reachability */, + B7892AD6AEB7CB6CFEB3D76E11315D28 /* Security */, + 465C1488993ACCC767977FB1E64B5D73 /* Serialization */, + 9C4DBA7E425450490CA3B1090B843B70 /* Support Files */, ); - name = MASPreferences; - path = MASPreferences; + name = AFNetworking; + path = AFNetworking; sourceTree = ""; }; - 82DC5363650EC5BC13BCF3DB413431BC /* SSZipArchive */ = { + 9B4E6CDD52D9B7D38D173B9A316C2A49 /* Support Files */ = { isa = PBXGroup; children = ( - 52B46F6C5B2313273CB6D176CB3129CA /* mz.h */, - 8E951F8C0F789EE8E400BECFC1B94DA1 /* mz_compat.c */, - 594C5095125F7E5658E5C02A20CF9733 /* mz_compat.h */, - 3E03E90C9162EEB666A38879BDF4FA62 /* mz_crypt.c */, - 26906DA0496FD418D57C840FA0EF93FA /* mz_crypt.h */, - D0E0ECDF0B2D597CD16E41C8E64E0A8D /* mz_crypt_apple.c */, - 60C40D93D96D37025F44E89DEBF31E5A /* mz_os.c */, - DF81C577AA2FB69ACD97CB0392C1884E /* mz_os.h */, - D3CC72B6E5F246DC03686F2D7A4E4522 /* mz_os_posix.c */, - A6055A9BBEDA2BAB9499959FCBCB1053 /* mz_strm.c */, - 23C28DFCB6E8C23632EE8F43E49780DA /* mz_strm.h */, - CA2A2F8F4D8F147EA5B8D1FCA2A8F038 /* mz_strm_buf.c */, - 61286529209102EE737D468F7983842F /* mz_strm_buf.h */, - 4D0C1E2DF96AF87CD082403955D63D61 /* mz_strm_mem.c */, - B688CAFCC80EE3E89C29BC388D85ACF9 /* mz_strm_mem.h */, - DAEBF9208860BC90A86BA5602C5D555F /* mz_strm_os.h */, - 368A2D3BE7237BA2678CF5510612D6F4 /* mz_strm_os_posix.c */, - 40DA43EFC5AC763D2DBD408B641F230E /* mz_strm_pkcrypt.c */, - 3877E5BE9DCC5EE76A7D9B554DE34170 /* mz_strm_pkcrypt.h */, - 72C81751CF5581713501BEC1246357D2 /* mz_strm_split.c */, - 98AE1369D5B868B839FE465A7F7A3198 /* mz_strm_split.h */, - A13EE6D970B84BE4B94742C98318B83E /* mz_strm_wzaes.c */, - 4E10F2019D1B6F1EC645735ACCB1D59E /* mz_strm_wzaes.h */, - 38C6264B258FF2892BA9D346FD2711E5 /* mz_strm_zlib.c */, - B32BAD8B8091125D7EBD4E85DA8521F1 /* mz_strm_zlib.h */, - 226CB5E1CA301F90B10FD9CC776F7109 /* mz_zip.c */, - 23A683C62A872F97EE9884056B8E8F25 /* mz_zip.h */, - 7914E31A5D70C045D11F24B3F87640BB /* mz_zip_rw.c */, - FDC03639C313753B54F2142A36AB8858 /* mz_zip_rw.h */, - 2E732DAC741FEA51AD905AA4E3C61DCB /* SSZipArchive.h */, - 86CCF1AC31D756E8B116E91AF0503357 /* SSZipArchive.m */, - A48CA6A29F07CA173086A8C99A40B118 /* SSZipCommon.h */, - 7D13721FF857EAF2519382E9447F2C6E /* ZipArchive.h */, - 52AFCF914BE0CF606D1009423C163890 /* Support Files */, - ); - name = SSZipArchive; - path = SSZipArchive; + F11C9011F802BEEFFA9202F4CDF25398 /* MJExtension.modulemap */, + 6E6E01872C9281ADD015A35037ECEF69 /* MJExtension-dummy.m */, + 057B615D84F5758C9B338A734FB6A3D9 /* MJExtension-Info.plist */, + 45A906069D6CDDB1DFEA6FD3D527783E /* MJExtension-prefix.pch */, + 2EEB7B9084C6354B53A5A5E8FBFA97F8 /* MJExtension-umbrella.h */, + 598F8165863EF02A9B983AFB931236BA /* MJExtension.debug.xcconfig */, + B82599254B9E1827EBA5B44F35FE6FD3 /* MJExtension.release.xcconfig */, + ); + name = "Support Files"; + path = "../Target Support Files/MJExtension"; sourceTree = ""; }; - 904C2959FEA38DE101E97BFB2FF45DA9 /* Security */ = { + 9C4DBA7E425450490CA3B1090B843B70 /* Support Files */ = { isa = PBXGroup; children = ( - B2FD0BC98C622B100A8F6D8F7CD3E0BA /* AFSecurityPolicy.h */, - AB666613F83F855C2113B9BD8290FF69 /* AFSecurityPolicy.m */, + 64BE225CE299B9A5139450D47403CCAE /* AFNetworking.modulemap */, + 9900F43FA4AC6CE9C5F6E70AC70DA0A4 /* AFNetworking-dummy.m */, + 63EF7037BCC5C6FBC19A441ACC7F619E /* AFNetworking-Info.plist */, + 14DD101AFE77558C08E826AD863F79D6 /* AFNetworking-prefix.pch */, + 6E89CCDD82841225308C2BE76B785C66 /* AFNetworking-umbrella.h */, + 16933E06DABABD65B6013D957A54C838 /* AFNetworking.debug.xcconfig */, + 3AF29BA84E32D7948FEEC04EDEE677DE /* AFNetworking.release.xcconfig */, ); - name = Security; + name = "Support Files"; + path = "../Target Support Files/AFNetworking"; sourceTree = ""; }; - 99738995C8E759071950D9B98CEA4659 /* Support Files */ = { + B333AF1A5AB96D6D2E25ADFC7E32DC8C /* Support Files */ = { isa = PBXGroup; children = ( - 25D5443CD5FE7AF94948B3FA89DB91E9 /* MJExtension.modulemap */, - CFE7521AFD2F9FFA83E614CF7F297ADD /* MJExtension-dummy.m */, - B68522837485EE048DAF1085C371F300 /* MJExtension-Info.plist */, - D90C121EED46871C916CDCF6D85EB5DF /* MJExtension-prefix.pch */, - EC87567D30217F5DDE75A0588A061023 /* MJExtension-umbrella.h */, - DE95F0448453D05A628A6949C1DF5AE9 /* MJExtension.debug.xcconfig */, - 887DCFE4840BA027C996F87F5C7B8B11 /* MJExtension.release.xcconfig */, + 5F6C54676F2CD046B3B2E2C1478B60DB /* MASPreferences.modulemap */, + D651BE9C05BA9013554CCDE43680CE87 /* MASPreferences-dummy.m */, + C3E40362BE502C6658B3CD1E905F5B0A /* MASPreferences-Info.plist */, + DA399651343E19D25EEC9AD3305C8A99 /* MASPreferences-prefix.pch */, + 87ECC3154393B00641A86D3A2E1AB6CC /* MASPreferences-umbrella.h */, + 084A271996074B79A788318D8325ABEF /* MASPreferences.debug.xcconfig */, + 65E1C4A2EA40FCAC93DE04DC53CB65F5 /* MASPreferences.release.xcconfig */, + E11FF524A5BEE8418271D653EAF40B6B /* ResourceBundle-MASPreferences-MASPreferences-Info.plist */, ); name = "Support Files"; - path = "../Target Support Files/MJExtension"; + path = "../Target Support Files/MASPreferences"; sourceTree = ""; }; - A5EE79B454FBC73E6BC8901098FF510D /* Resources */ = { + B50EBDBFCA231FD91F50398FFD98F731 /* Support Files */ = { isa = PBXGroup; children = ( - 52719F8460A684A76AC0C5B5988E5621 /* cs.lproj */, - 219BC9071C938B548B27D56CCCD25A10 /* de.lproj */, - D3A9ADDAA5993DD679325321C8B3B15F /* en.lproj */, - DFECCE0FD032B74427B77ED1730B633B /* es.lproj */, - 976EE6319BA16DFFDB11904E218A0971 /* fr.lproj */, - EB668F1847CE9D5D3354021964AEA33D /* it.lproj */, - 807FFB03585B98FB46A28AC13CD21D38 /* ja.lproj */, - 2414DDFA14D171603C2492D0A7917F99 /* ko.lproj */, - 2CFA2A1F061F6A985F28210DCFCFA48B /* nl.lproj */, - A208E5B876E66872B70583BEAFCBE6C8 /* pl.lproj */, - 2FB0959A01A3EA824D21BE512DA9462B /* pt.lproj */, - 0018B3ED0302F8582D997D2438F3DAE3 /* ru.lproj */, - BF7799ADC8A1EA2B08F6137BEBFFEFE2 /* sv.lproj */, - F8115DF922C9AE671C9D9DA51817D3D9 /* zh-Hans.lproj */, - 6B6E56C0C5CAA3DC7F9D53957B4AA419 /* zh-Hant.lproj */, + 1B0540801E5F6C452A7B5E447BD1EDA3 /* SwiftFormat.debug.xcconfig */, + DBA43944052A42E1413F5009872D5166 /* SwiftFormat.release.xcconfig */, ); - name = Resources; + name = "Support Files"; + path = "../Target Support Files/SwiftFormat"; sourceTree = ""; }; - C53D6220C49E060C6F655FE846E9BD02 /* Serialization */ = { + B7892AD6AEB7CB6CFEB3D76E11315D28 /* Security */ = { isa = PBXGroup; children = ( - EA550EBEB29BE5893F989047454933E7 /* AFURLRequestSerialization.h */, - 997943020D204A40C368CF454D3E7F26 /* AFURLRequestSerialization.m */, - D4F3365F25B91F31F507E495274F0564 /* AFURLResponseSerialization.h */, - BC51DC635DD1FD5B5F28C51BEA7619CB /* AFURLResponseSerialization.m */, + D24F0B1C0005B76FF49DA21B2D9A673E /* AFSecurityPolicy.h */, + 68073F3A5385DAF3DF77757ABF121769 /* AFSecurityPolicy.m */, ); - name = Serialization; + name = Security; sourceTree = ""; }; CF1408CF629C7361332E53B88F7BD30C = { @@ -1624,8 +1512,8 @@ children = ( 9D940727FF8FB9C785EB98E56350EF41 /* Podfile */, 7067D651188BC7621BDA2A7C82934B7E /* Frameworks */, - 1FB313EBB8438DC6D8079E4A4A9F2809 /* Pods */, - D93EB85E214A9982423D507029037C6A /* Products */, + 28AB3AF0A387580C55B957F811EAAF13 /* Pods */, + FB98C3483FEDBEED405A9D573460F773 /* Products */, D1E0CB3188DEDB5AE871914790FAE975 /* Targets Support Files */, ); sourceTree = ""; @@ -1639,28 +1527,64 @@ name = "Targets Support Files"; sourceTree = ""; }; - D814C53BC5BDBD71632FFF32D99C0A2B /* JLRoutes */ = { + DB0EE47EB23FCD11A1B487ADD546EE30 /* Support Files */ = { isa = PBXGroup; children = ( - 844E2C31F1FCA38BB2AB8252F33294DD /* JLRoutes.h */, - 225050059ACEC165C38FE6B1DEC6F856 /* JLRoutes.m */, - E8A5552D9DF3691F11882ABC9326C6AE /* JLRParsingUtilities.h */, - B449CB3F896B1C6219AA38340CB77E00 /* JLRParsingUtilities.m */, - 7D333D5A4F4400AD68E94D037D504E85 /* JLRRouteDefinition.h */, - 69FDF156A1E3B19D0B4442BBEC799AF7 /* JLRRouteDefinition.m */, - CBEF9AE751BE99BBC6C80741A363B1A3 /* JLRRouteHandler.h */, - A883EA16AD24338A1F9DC8A976C80656 /* JLRRouteHandler.m */, - 3B2CB11E5FAF23028A150212F00FB168 /* JLRRouteRequest.h */, - C8E33CB0E88481D68AFD1672C21074FB /* JLRRouteRequest.m */, - 5A04F5564F27D9A3D99A164E3DFD006C /* JLRRouteResponse.h */, - A93B6DB6579CD1E4E9664A3F268C2DD4 /* JLRRouteResponse.m */, - 15DCCC1A37986837DD25E649C382D5FD /* Support Files */, + F0FD90812DB015D3994AE3DC4168CD20 /* Masonry.modulemap */, + 6A40475940FC344B025307A0C518A4EF /* Masonry-dummy.m */, + 83B58515EF009DAB463A6B5233F53376 /* Masonry-Info.plist */, + 1E74FC70604E8E1B292CD2ED1E381BDB /* Masonry-prefix.pch */, + DD80013E393CE7349EA0CEAEFADB0437 /* Masonry-umbrella.h */, + 262BBB1E323B18142FAA365CCC6F0404 /* Masonry.debug.xcconfig */, + 97B9F2337913A49C751244AABAEDE23E /* Masonry.release.xcconfig */, ); - name = JLRoutes; - path = JLRoutes; + name = "Support Files"; + path = "../Target Support Files/Masonry"; sourceTree = ""; }; - D93EB85E214A9982423D507029037C6A /* Products */ = { + E0571C37A234FF3B2745EEFA3E61901C /* MJExtension */ = { + isa = PBXGroup; + children = ( + 77F669F680AB719763FA6289A8D3C6DC /* MJExtension.h */, + CAA886A17877F13CACC362267C18975D /* MJExtensionConst.h */, + E4E5BBD9F6262ACB2685A9A0B6BA63CF /* MJExtensionConst.m */, + A63729F7512EA740FEE0EA195AC9361A /* MJFoundation.h */, + ADDF104BB27C1F5E1498DA5687684824 /* MJFoundation.m */, + 600DDBAD99DE6B05BE64FBF58452AFC6 /* MJProperty.h */, + 81E7C3389E95A8A52FAE406FBFED7396 /* MJProperty.m */, + 67615EAD637B6A48F4AA51D5890AC031 /* MJPropertyKey.h */, + C172333F44A46FDA52229990392C2BEA /* MJPropertyKey.m */, + 693BCC41CA6AE081DCD74851DF36DD8A /* MJPropertyType.h */, + DEEC875830573012E783B7FB8DAEEC06 /* MJPropertyType.m */, + 2899D6AB3E186AC9F9F070EEF648B279 /* NSObject+MJClass.h */, + 928C0B77481831CA04347484C68D1646 /* NSObject+MJClass.m */, + 0FF1AB2D7D8B6CBF97BB08C490C07ADD /* NSObject+MJCoding.h */, + 8AC754C18E4EBD564FF0BE9BDD9D73B3 /* NSObject+MJCoding.m */, + C0832D0AF0A7F2AF4A7F43BFB4EBD18B /* NSObject+MJKeyValue.h */, + 148E666FDFB3D3BF2F71CED30853AACB /* NSObject+MJKeyValue.m */, + F8EF09C7490DF0F896C3C93D42AB6E55 /* NSObject+MJProperty.h */, + 99AA657F879F25B6FC467E19D0F77123 /* NSObject+MJProperty.m */, + C04939DBE13B5A909F833EFA2E579926 /* NSString+MJExtension.h */, + CFF0DDC9C9A1595390EE7D1074CF59EC /* NSString+MJExtension.m */, + 9B4E6CDD52D9B7D38D173B9A316C2A49 /* Support Files */, + ); + name = MJExtension; + path = MJExtension; + sourceTree = ""; + }; + E115B2EF1AF6A8AFD3624588410B5C05 /* NSURLSession */ = { + isa = PBXGroup; + children = ( + A363F2177CFFF6EC8F77C912287ABC05 /* AFCompatibilityMacros.h */, + 38EC48346056ADBA21FD4503D6825E8B /* AFHTTPSessionManager.h */, + 2C6B606655F9CFAC168E519400032517 /* AFHTTPSessionManager.m */, + F1FCDBDE14CF2854E67D545901E9017E /* AFURLSessionManager.h */, + F387F3547F7723B133F6EB622868C05E /* AFURLSessionManager.m */, + ); + name = NSURLSession; + sourceTree = ""; + }; + FB98C3483FEDBEED405A9D573460F773 /* Products */ = { isa = PBXGroup; children = ( A4FA15D44DF6BAC7550EDEED10862AA3 /* AFNetworking */, @@ -1675,94 +1599,10 @@ 9B4352D1CD18BB2BDE8A51479B871C10 /* Pods-Easydict */, CA7E6DB6AFE7635C9077622C743F91CC /* Pods-EasydictTests */, 9621C6383F5733C35183B2DE886C7EC6 /* ReactiveObjC */, - 91B23470DEB9A986332BEB5034234BC7 /* SSZipArchive */, ); name = Products; sourceTree = ""; }; - EAB77E3C2283384A947D9BAA29B5EC5C /* MASShortcut */ = { - isa = PBXGroup; - children = ( - 0D252A150EA52BBF8907094720AD854F /* MASDictionaryTransformer.h */, - 041022E56B2E6CE30EA6F6A5D52B5A3E /* MASDictionaryTransformer.m */, - 1AED3FA2DC652F1CFEF0FE85B1208FE2 /* MASHotKey.h */, - 2D1A6AD55FCFFA5E76AE28DC8E6CEB88 /* MASHotKey.m */, - 1124DA5B0A43A58A0BB8C58817A9F880 /* MASKeyCodes.h */, - 57EFB984FDB25EEAD1A0A213E41C577E /* MASKeyMasks.h */, - 7F59BDF122A9F42050214141FFAB2B4D /* MASLocalization.h */, - 465313CF2DF8ED134FD5C8736921C54A /* MASLocalization.m */, - EAF17CAAFD20762770479837C19D1F0B /* MASShortcut.h */, - 9D5F87FEF30CFCDCEFE8C8715AC22428 /* MASShortcut.m */, - 06A54269231F4B308F60296D63548EE5 /* MASShortcutBinder.h */, - 0D0DEB2344CAE8C071CE1EC2738BF53D /* MASShortcutBinder.m */, - BC4426125B9D2CFBA4C9D3F1B36D5A13 /* MASShortcutMonitor.h */, - BCE7C4F1FC4DF03D0EB6E2BFB474A835 /* MASShortcutMonitor.m */, - CDC4E2858F4AE0A39372DEF9328DE0C6 /* MASShortcutValidator.h */, - 28AAA8C71C0CE16E8E2BCAC77D3D146E /* MASShortcutValidator.m */, - D6C3A70F2345025A640476CC65325F3B /* MASShortcutView.h */, - 459E3F873B837641B3177A57540015F5 /* MASShortcutView.m */, - 23754905496FB8C7035BF810288D4F0E /* MASShortcutView+Bindings.h */, - D53BD41AA0045629F9E21AED8248BD98 /* MASShortcutView+Bindings.m */, - F5B052778EEF0F5A6E38F4AC67922B3B /* Shortcut.h */, - A5EE79B454FBC73E6BC8901098FF510D /* Resources */, - 7BE162B9D652178FD1D25409F1FC6F9B /* Support Files */, - ); - name = MASShortcut; - path = MASShortcut; - sourceTree = ""; - }; - F6A8533B52F1B08A4ECF24CFFBB8DBB4 /* Support Files */ = { - isa = PBXGroup; - children = ( - 82BB16DF8AFB4286A8B0E1EBC99FB7CD /* SwiftFormat.debug.xcconfig */, - C1A9B69725BD93E06882F79719BDC1BD /* SwiftFormat.release.xcconfig */, - ); - name = "Support Files"; - path = "../Target Support Files/SwiftFormat"; - sourceTree = ""; - }; - F6BF98C56B58C763C8F69845BCB2B749 /* Resources */ = { - isa = PBXGroup; - children = ( - D4FB6C51DECB6512FC308716C52D72A0 /* MASPreferencesWindow.xib */, - ); - name = Resources; - sourceTree = ""; - }; - FA7F2CAAE102E6FC0BDE9E9AE22869A6 /* Masonry */ = { - isa = PBXGroup; - children = ( - 1FB00AB1E51A7475E6CB099A97C1D7FF /* MASCompositeConstraint.h */, - D2935C2B8BA0E20E269E9F945235CB58 /* MASCompositeConstraint.m */, - 29592FC3A405A65EBCC5AECC54D4BE7E /* MASConstraint.h */, - 1924A881688F3FCA77F8C7FB3FFF78E1 /* MASConstraint.m */, - 47293174CFFA7DE0C93EE6038B195E8B /* MASConstraint+Private.h */, - 128C575834B7AF641488A4B7D14BDE25 /* MASConstraintMaker.h */, - DC4EC7382D92D7B397FDA4F3573065CF /* MASConstraintMaker.m */, - 6F3E208E9CF3434FE64F41B362132B8A /* MASLayoutConstraint.h */, - 7D3F86A8F2D57F8606278049DE83F00A /* MASLayoutConstraint.m */, - 620144C2AA25D3F3D017917BFA686CC4 /* Masonry.h */, - 7C08299169CA9BD83017B7B59F68CF16 /* MASUtilities.h */, - ED6550CFD6C0502542EF4FC530E721C8 /* MASViewAttribute.h */, - BC74694C5096865EBBDBD58285005F78 /* MASViewAttribute.m */, - 25FB52B222431C8F3951EE96B92831FA /* MASViewConstraint.h */, - B46735B6AD9CFD485F2F36966814C465 /* MASViewConstraint.m */, - E1B7AFD2BF0E18FAB1E5208F735EE889 /* NSArray+MASAdditions.h */, - 8178A8803ABDE831D9F6888A7B0FD504 /* NSArray+MASAdditions.m */, - 340A35B02115D9632AB915465DE5C9AB /* NSArray+MASShorthandAdditions.h */, - 926A1CC6C9257E0C7EC772049C078605 /* NSLayoutConstraint+MASDebugAdditions.h */, - 4E4E758311E57182055F7D1DC8A3C628 /* NSLayoutConstraint+MASDebugAdditions.m */, - D81C916B1D3B8E2803F7AEDF2B2010D8 /* View+MASAdditions.h */, - 38501F6013BF8A684B914F04E4A6ECD2 /* View+MASAdditions.m */, - 51943BCC23D2FBAD2734442837DCEEE5 /* View+MASShorthandAdditions.h */, - DD4C820CA44D4CCB8F3993123BC088F1 /* ViewController+MASAdditions.h */, - 5C7C92E426A7C5316EAD96E604FBD493 /* ViewController+MASAdditions.m */, - 375F4C4F44221675A81D3FBB0A641ADC /* Support Files */, - ); - name = Masonry; - path = Masonry; - sourceTree = ""; - }; /* End PBXGroup section */ /* Begin PBXHeadersBuildPhase section */ @@ -1782,6 +1622,14 @@ ); runOnlyForDeploymentPostprocessing = 0; }; + 20BE4A739D59E00557045C26EDF64399 /* Headers */ = { + isa = PBXHeadersBuildPhase; + buildActionMask = 2147483647; + files = ( + 7484C7803CF324FB12F27C0C3AAC0C3B /* Pods-EasydictTests-umbrella.h in Headers */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; 27FF3BDB330FA77A1EBDA55E2A1656DB /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; @@ -1793,6 +1641,14 @@ ); runOnlyForDeploymentPostprocessing = 0; }; + 2A26D118FF3075C03129E24545814E74 /* Headers */ = { + isa = PBXHeadersBuildPhase; + buildActionMask = 2147483647; + files = ( + 0E897D05ACDC04C15C03CFE53CE544F8 /* Pods-Easydict-umbrella.h in Headers */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; 2D498B2E6C57E97239417375B4E66EF7 /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; @@ -1884,14 +1740,6 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 413CCDD0DAE9B329E65107D13C9E9694 /* Headers */ = { - isa = PBXHeadersBuildPhase; - buildActionMask = 2147483647; - files = ( - 0D89050821354AA779E9CE9E0C3C254C /* Pods-Easydict-umbrella.h in Headers */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; 5CC842F78D1E94341EA5A08C95B66443 /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; @@ -1942,14 +1790,6 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 7DE1149D4AA2735BCFDFC78CAE1A2FB4 /* Headers */ = { - isa = PBXHeadersBuildPhase; - buildActionMask = 2147483647; - files = ( - 611C794AA62B56961EF8A4F24DF9755B /* Pods-EasydictTests-umbrella.h in Headers */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; 92603E22F25B0AFD4D3A021065CD88BE /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; @@ -1987,31 +1827,6 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - B54E98A0F78F689CE4DC8242F7B2A2DE /* Headers */ = { - isa = PBXHeadersBuildPhase; - buildActionMask = 2147483647; - files = ( - 1C789E086190CB49AD3473DD4B26450B /* mz.h in Headers */, - BEF4CC97D88ADCD73B93AA179F7E1802 /* mz_compat.h in Headers */, - AAB0384853C90088036B7501CA8ACFE0 /* mz_crypt.h in Headers */, - 02AD91C5250ED7D91B06BEAC91A5E507 /* mz_os.h in Headers */, - A4F447FA7122B13300BD80CE080444F7 /* mz_strm.h in Headers */, - 90DF670DC21B9EFD8DFEFC5081073963 /* mz_strm_buf.h in Headers */, - 8AB091199F99F1C2E9E67030DAC50F6E /* mz_strm_mem.h in Headers */, - 0EF3774AC45C05C24674C6F390E4B571 /* mz_strm_os.h in Headers */, - 1BC5207ED5AA2B6956BB9CD10C71C1AA /* mz_strm_pkcrypt.h in Headers */, - 059332136CAAB8014F2099D6AC105162 /* mz_strm_split.h in Headers */, - EE424ECE443C88A654B2CC271E9F4874 /* mz_strm_wzaes.h in Headers */, - EF9C00E340B33BA67D9CEF5A2262D15E /* mz_strm_zlib.h in Headers */, - 7DB2C0596405DB863CF2B2A489AE2636 /* mz_zip.h in Headers */, - C30DB8F46569FBD4D1C7D7DA0E4B67EC /* mz_zip_rw.h in Headers */, - 30D23C352773401AE1389972956969C4 /* SSZipArchive.h in Headers */, - 7F58BE8838D03B2D5B30E68952FF1E4D /* SSZipArchive-umbrella.h in Headers */, - 534EDA976CDBE519C377D315BA3FD183 /* SSZipCommon.h in Headers */, - CE61BE07A118F709EAAFD0B1890FBD2F /* ZipArchive.h in Headers */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; /* End PBXHeadersBuildPhase section */ /* Begin PBXNativeTarget section */ @@ -2035,25 +1850,24 @@ }; 0470353E8CC9CF58F0DD2C31E0F3E085 /* Pods-EasydictTests */ = { isa = PBXNativeTarget; - buildConfigurationList = FCCF9A5855FD8C40C3801BD3A611BE88 /* Build configuration list for PBXNativeTarget "Pods-EasydictTests" */; + buildConfigurationList = 10696070B58400BED01FC33D2C9D8BDB /* Build configuration list for PBXNativeTarget "Pods-EasydictTests" */; buildPhases = ( - 7DE1149D4AA2735BCFDFC78CAE1A2FB4 /* Headers */, - AE54BB5EC9FEB7E62BBF62DF7E103B78 /* Sources */, - BC08AC94AADB7E6CED46E3110C44E521 /* Frameworks */, - EE73B21E633C95E8AA2F4D7E6DAA0DB3 /* Resources */, + 20BE4A739D59E00557045C26EDF64399 /* Headers */, + 0DF5C4FE676F051510CF1A5A3AEA79D1 /* Sources */, + 7B18BFC139248DC66ACA3F0D670E1060 /* Frameworks */, + 1E24B7286AF5DDBACF84DDABC1342595 /* Resources */, ); buildRules = ( ); dependencies = ( - 3426673A5E1354D10FB0806A46A03573 /* PBXTargetDependency */, - D4B15E221B86C73BCB1DF8DC73F3A0F8 /* PBXTargetDependency */, - 7242071AE2E71F3B2BD9998895929A44 /* PBXTargetDependency */, - FD6E426B5A95EAD04243978CC62F0B19 /* PBXTargetDependency */, - A9D2B54AB8A82B329669DE7AD2DEC855 /* PBXTargetDependency */, - B0E86B23096467AE8D0D8B17D0B47D4D /* PBXTargetDependency */, - 322927E89DF226470A8E97538E85E962 /* PBXTargetDependency */, - 72E1503DD325F56B3355E82ECECF36EE /* PBXTargetDependency */, - 2E4D255195B8B6450F783BC8F8A37FB1 /* PBXTargetDependency */, + C49CBC52AC7451BC0D8ED20C3BA1FC35 /* PBXTargetDependency */, + 22E4E1E32CD48AF7E93CB2F01F346510 /* PBXTargetDependency */, + 211EC32B8DC10D986E15AB1CAB828951 /* PBXTargetDependency */, + 57CA68EC0A5EDD5E5551BB24259F047F /* PBXTargetDependency */, + 6635B9672D01B5CC8462791F35412B96 /* PBXTargetDependency */, + CEEF9E7C9E1771E697E3973249DC57AF /* PBXTargetDependency */, + 593CF67A81DE339AE5F5248A01274CE0 /* PBXTargetDependency */, + 1F902AA631380B29DA85660B09AA1C98 /* PBXTargetDependency */, ); name = "Pods-EasydictTests"; productName = Pods_EasydictTests; @@ -2062,11 +1876,11 @@ }; 0A273FF147C6C1A3B504E3652CD01233 /* MASPreferences-MASPreferences */ = { isa = PBXNativeTarget; - buildConfigurationList = 090261F64C314B12777A3FFDE1FAD2AE /* Build configuration list for PBXNativeTarget "MASPreferences-MASPreferences" */; + buildConfigurationList = 60C62A6B82AD5FC1B20920A8E3CEEC33 /* Build configuration list for PBXNativeTarget "MASPreferences-MASPreferences" */; buildPhases = ( - 32257ABEAC02FDFE1C2540625C7A302C /* Sources */, - 27084ACC4EF9C62041206643AEEF2D55 /* Frameworks */, - 47BCCF9A456D9AB3BCCE733FA1106D55 /* Resources */, + 2AE8209E9F59A89686A60EDFBB8ADFD1 /* Sources */, + CC17EAD51FB2D947C635AEF62719EC0C /* Frameworks */, + 2844820C1AFB95287F79F74BCADB0216 /* Resources */, ); buildRules = ( ); @@ -2107,7 +1921,7 @@ buildRules = ( ); dependencies = ( - D01AA70BCF98C77AD8C078F111D047A9 /* PBXTargetDependency */, + 67B93F732BA3E5540B1175AF4A9B5919 /* PBXTargetDependency */, ); name = MASShortcut; productName = MASShortcut; @@ -2170,11 +1984,11 @@ }; 73C37A16ECCEAD845651DCDEE95675BE /* MASShortcut-MASShortcut */ = { isa = PBXNativeTarget; - buildConfigurationList = BAFFE1223AD30D2624F460F28E43CF95 /* Build configuration list for PBXNativeTarget "MASShortcut-MASShortcut" */; + buildConfigurationList = D4EE400B4D5E48CF8D06880C56E13427 /* Build configuration list for PBXNativeTarget "MASShortcut-MASShortcut" */; buildPhases = ( - 9AC1A33FC3F403C0AC4634E3698ADEAD /* Sources */, - CA36FACC82A42BD5EA1D62A72025E724 /* Frameworks */, - F2CA9702B0384A587560B75C4FA09E0B /* Resources */, + B48535C97CD70D00FB2C8C63EAF5396C /* Sources */, + 79FBE4AF4E5E2FAA0740460CE0A108B2 /* Frameworks */, + 5B0B3E4C2DB1905FC849886074455A74 /* Resources */, ); buildRules = ( ); @@ -2187,26 +2001,25 @@ }; 85E42DEBB9BFEB455B18B8D5F0F36F65 /* Pods-Easydict */ = { isa = PBXNativeTarget; - buildConfigurationList = B46A3732E78551781765390794248C83 /* Build configuration list for PBXNativeTarget "Pods-Easydict" */; + buildConfigurationList = 13B17F2531864C50ECF5BFB40CD3CDB5 /* Build configuration list for PBXNativeTarget "Pods-Easydict" */; buildPhases = ( - 413CCDD0DAE9B329E65107D13C9E9694 /* Headers */, - 9259476CC6B340FAFB67F77EB7CBF2E1 /* Sources */, - 2C6A7690D727B60CF6FBE1F537A48EC3 /* Frameworks */, - 0DC6AA609B6010CC6CB0D4FA78EF9471 /* Resources */, + 2A26D118FF3075C03129E24545814E74 /* Headers */, + 1CFDF114AC847990A352DE15D3CE5010 /* Sources */, + 9E2AEAB3A5CAFFF2B40BEEE49255F8AE /* Frameworks */, + 0C56339F6E5EB2A1D3F9E2A4406C3BF6 /* Resources */, ); buildRules = ( ); dependencies = ( - 3D8BF25DBB64A9FC4D40E95B14C7263A /* PBXTargetDependency */, - 87BF60C0333F365F229E416D98108400 /* PBXTargetDependency */, - A118869A0E240F653B03923DD224F507 /* PBXTargetDependency */, - 3BEE11BAC46CC0D67E6EFAC3C5E6A593 /* PBXTargetDependency */, - 1EA0EE4027AC03CA317117913523BEA0 /* PBXTargetDependency */, - FAB8D408B552F7C06EEE926EDD89ACB2 /* PBXTargetDependency */, - 29D983B5364F8B966146D6680D7F25B4 /* PBXTargetDependency */, - CA1E25D8792B96F360B2C233C2AEFDC4 /* PBXTargetDependency */, - F1C3FEC758D21CA5C2F6729FFF93459F /* PBXTargetDependency */, - 3C0615752DF54178F2E1C29012DF3EC8 /* PBXTargetDependency */, + 38B5BDB796AECBFBE2E00D8867281ACD /* PBXTargetDependency */, + 7A85F82658C905B280B0D9C9E29C2FD6 /* PBXTargetDependency */, + 20D43FC297C2CE10CCED26C152301265 /* PBXTargetDependency */, + 5542DA81857BD6464B6DA70CCE19E795 /* PBXTargetDependency */, + 41C30387FE9D90C1C5CD29CC8A77A005 /* PBXTargetDependency */, + BC567696E3C7A62EBACFCED22B59CE7A /* PBXTargetDependency */, + 01EB53CE50577283ADFDC2CB80200180 /* PBXTargetDependency */, + BC8C83E4431517CE0E1AB966FDFE19A5 /* PBXTargetDependency */, + 83C30A9287033D864F5E84A87FB0AE1B /* PBXTargetDependency */, ); name = "Pods-Easydict"; productName = Pods_Easydict; @@ -2243,31 +2056,13 @@ buildRules = ( ); dependencies = ( - 350382B0D967669FB565CB46A6E317BE /* PBXTargetDependency */, + 5D536D9530FFDCF907DD2CA6BF455529 /* PBXTargetDependency */, ); name = MASPreferences; productName = MASPreferences; productReference = 43F9966E7614888A0CDCFAB2F62F2FDD /* MASPreferences */; productType = "com.apple.product-type.framework"; }; - F60E38364AFF5E1349FF07415B944396 /* SSZipArchive */ = { - isa = PBXNativeTarget; - buildConfigurationList = 5D0A1C5EC006615C1092F876C06EAF4D /* Build configuration list for PBXNativeTarget "SSZipArchive" */; - buildPhases = ( - B54E98A0F78F689CE4DC8242F7B2A2DE /* Headers */, - B361498D1FAB5FF404561E9A03BCEBC2 /* Sources */, - D2D2F3D20275848C21C4E03DC145FCA7 /* Frameworks */, - A66CA23A56A2FF4A3BDDEDD5B1558478 /* Resources */, - ); - buildRules = ( - ); - dependencies = ( - ); - name = SSZipArchive; - productName = SSZipArchive; - productReference = 91B23470DEB9A986332BEB5034234BC7 /* SSZipArchive */; - productType = "com.apple.product-type.framework"; - }; /* End PBXNativeTarget section */ /* Begin PBXProject section */ @@ -2300,7 +2095,7 @@ "zh-Hant", ); mainGroup = CF1408CF629C7361332E53B88F7BD30C; - productRefGroup = D93EB85E214A9982423D507029037C6A /* Products */; + productRefGroup = FB98C3483FEDBEED405A9D573460F773 /* Products */; projectDirPath = ""; projectRoot = ""; targets = ( @@ -2316,7 +2111,6 @@ 85E42DEBB9BFEB455B18B8D5F0F36F65 /* Pods-Easydict */, 0470353E8CC9CF58F0DD2C31E0F3E085 /* Pods-EasydictTests */, 438B238ACC7DF1178D1BCE1A31983146 /* ReactiveObjC */, - F60E38364AFF5E1349FF07415B944396 /* SSZipArchive */, 1CD0618C486973D5588EF20D2E8C0AEA /* SwiftFormat */, ); }; @@ -2330,7 +2124,7 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 0DC6AA609B6010CC6CB0D4FA78EF9471 /* Resources */ = { + 0C56339F6E5EB2A1D3F9E2A4406C3BF6 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( @@ -2344,97 +2138,98 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 35A04E3D56729C21B2C23D946D3D2936 /* Resources */ = { + 1E24B7286AF5DDBACF84DDABC1342595 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 47BCCF9A456D9AB3BCCE733FA1106D55 /* Resources */ = { + 2844820C1AFB95287F79F74BCADB0216 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( - 1B4FD2B2A0D9782BEF15B55D41729A76 /* MASPreferencesWindow.xib in Resources */, + B18164010E8FD712C57DD0585257FE75 /* MASPreferencesWindow.xib in Resources */, ); runOnlyForDeploymentPostprocessing = 0; }; - 4C01DE77BA52FE917D39D96D38D157F7 /* Resources */ = { + 35A04E3D56729C21B2C23D946D3D2936 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 9A01F4331891131499B095412DD98450 /* Resources */ = { + 4C01DE77BA52FE917D39D96D38D157F7 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( - B7FE21CBE9E55AAB77769EF33369909B /* MASPreferences-MASPreferences in Resources */, ); runOnlyForDeploymentPostprocessing = 0; }; - A66CA23A56A2FF4A3BDDEDD5B1558478 /* Resources */ = { + 5B0B3E4C2DB1905FC849886074455A74 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( + EBEF759128AD2CBB1059D3FA93DD8CFD /* cs.lproj in Resources */, + 2BAFE84A2806F2C57C358858858B34B4 /* de.lproj in Resources */, + 9C9BBEE903057FBB0A560B0D752C43F6 /* en.lproj in Resources */, + 92D044D57D3E990695C6AABD6D7969C4 /* es.lproj in Resources */, + C4B3C1DEC971329465B12B3D1F07C39B /* fr.lproj in Resources */, + 4E196744FE4AB51C8ECFCE7FFF1E8E66 /* it.lproj in Resources */, + 052F36F52D181BCD11BECD191576B4DE /* ja.lproj in Resources */, + EB7727BEC7F1C00A4EF184D5730D8437 /* ko.lproj in Resources */, + 01D3BF84B08B81B14FBA4618356582D5 /* nl.lproj in Resources */, + 55D00552A59AD27200549B9979163B51 /* pl.lproj in Resources */, + 928265A6EFF9056246732CBB45311D9D /* pt.lproj in Resources */, + 60F7D8253F359283B31BC58A73AA70AD /* ru.lproj in Resources */, + B50DC151AB020394FE7F96FF6093B05C /* sv.lproj in Resources */, + 88E47D775FC3CD3D7E309D8C6742EC69 /* zh-Hans.lproj in Resources */, + 1E1A4A726494A11CA6958D7599DC515B /* zh-Hant.lproj in Resources */, ); runOnlyForDeploymentPostprocessing = 0; }; - B8E8D5E5D1ED0D861BF0C3F5228B5E45 /* Resources */ = { + 9A01F4331891131499B095412DD98450 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( + B7FE21CBE9E55AAB77769EF33369909B /* MASPreferences-MASPreferences in Resources */, ); runOnlyForDeploymentPostprocessing = 0; }; - BC665AA86AC9AA7A4AD82F95245A797D /* Resources */ = { + B8E8D5E5D1ED0D861BF0C3F5228B5E45 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - EC9D27D180C0FA7E66832358606C5F56 /* Resources */ = { + BC665AA86AC9AA7A4AD82F95245A797D /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( - BD227A88D50B87748A8DB3C7D5C73656 /* MASShortcut-MASShortcut in Resources */, ); runOnlyForDeploymentPostprocessing = 0; }; - EE73B21E633C95E8AA2F4D7E6DAA0DB3 /* Resources */ = { + EC9D27D180C0FA7E66832358606C5F56 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( + BD227A88D50B87748A8DB3C7D5C73656 /* MASShortcut-MASShortcut in Resources */, ); runOnlyForDeploymentPostprocessing = 0; }; - F2CA9702B0384A587560B75C4FA09E0B /* Resources */ = { - isa = PBXResourcesBuildPhase; +/* End PBXResourcesBuildPhase section */ + +/* Begin PBXSourcesBuildPhase section */ + 0DF5C4FE676F051510CF1A5A3AEA79D1 /* Sources */ = { + isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - B73EBD50A470C45CC087FB7F6C1FFEEF /* cs.lproj in Resources */, - C4ACA2B5F2401FB69256E2538A2CDA61 /* de.lproj in Resources */, - 9637BF06CC07088A0CC3D7757D1A6EE8 /* en.lproj in Resources */, - 4F43B089EC8607826E774F861AEA7BD7 /* es.lproj in Resources */, - DBCB1765DFDC20AB77F6AE438F66F66F /* fr.lproj in Resources */, - B015C7268EA03D4122EDBA6E58F857A9 /* it.lproj in Resources */, - 06CF692382AEC9089DAFF0D2458AD3DB /* ja.lproj in Resources */, - F8E9BF0C1950BF6C2F1065A5A5B1FA25 /* ko.lproj in Resources */, - DC6574A1DE9A65A3B12977B1B865CFC1 /* nl.lproj in Resources */, - B621412F4D9B7E8AC1F0ACF90BAFF505 /* pl.lproj in Resources */, - 3F82BBF2CDF3E3DDFAC2AA3CF830B0C7 /* pt.lproj in Resources */, - F7295E4D4983C0D962723B503C802062 /* ru.lproj in Resources */, - 03B132EEABF3E250EF8C829C08D93C51 /* sv.lproj in Resources */, - 210AFADA837228041C9B8D5F6EEBD66E /* zh-Hans.lproj in Resources */, - BBC91B120FC65DB57C4DDAD9C9A57F79 /* zh-Hant.lproj in Resources */, + 3B54F4738380D2CCDB9160683BB65E0E /* Pods-EasydictTests-dummy.m in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; -/* End PBXResourcesBuildPhase section */ - -/* Begin PBXSourcesBuildPhase section */ 1B3F17B2F61269DA07B7D6872A80D726 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; @@ -2453,7 +2248,15 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 32257ABEAC02FDFE1C2540625C7A302C /* Sources */ = { + 1CFDF114AC847990A352DE15D3CE5010 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + D361321BA59712264BE6128FC92D64AF /* Pods-Easydict-dummy.m in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 2AE8209E9F59A89686A60EDFBB8ADFD1 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( @@ -2501,14 +2304,6 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 9259476CC6B340FAFB67F77EB7CBF2E1 /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - 95C652BC001664DA2FE8064F1EC6448C /* Pods-Easydict-dummy.m in Sources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; 97B2896CCF84E3668832C8689BE0917F /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; @@ -2523,13 +2318,6 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 9AC1A33FC3F403C0AC4634E3698ADEAD /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; A9A4A428411D7908E31BD7DE3790322A /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; @@ -2612,35 +2400,10 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - AE54BB5EC9FEB7E62BBF62DF7E103B78 /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - 48D9F44019301DE62D6B9FC24BD8234D /* Pods-EasydictTests-dummy.m in Sources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - B361498D1FAB5FF404561E9A03BCEBC2 /* Sources */ = { + B48535C97CD70D00FB2C8C63EAF5396C /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - CD88789CEEB96BE0A419250A0CBD0636 /* mz_compat.c in Sources */, - DDF903E13EFEC9DF34DA4931E25CAD57 /* mz_crypt.c in Sources */, - DDC8C594BD51FBBA9B1E9BF903917365 /* mz_crypt_apple.c in Sources */, - 2C961AEF650D863A47374754D25C755D /* mz_os.c in Sources */, - DF34BBCA918FCCB145A912997E7C1700 /* mz_os_posix.c in Sources */, - 49715D36952B12A19E0F7DFD258674AA /* mz_strm.c in Sources */, - 0B9E20E8BA6351A1D8BA47041736EE59 /* mz_strm_buf.c in Sources */, - 6F06687AD781B41A7AFA0D88D2CB7E82 /* mz_strm_mem.c in Sources */, - AA931561A4727F3976D057564447B2D1 /* mz_strm_os_posix.c in Sources */, - 5D05F6424F79DA9D40EDE9A54766378B /* mz_strm_pkcrypt.c in Sources */, - A60C18305C35802FCC00D5E69B018D95 /* mz_strm_split.c in Sources */, - 47E95FA96773D3D032F040F9D8082243 /* mz_strm_wzaes.c in Sources */, - A3DC32B52A76CF168FE0D0171CD7ED45 /* mz_strm_zlib.c in Sources */, - 8D44796A8C9452BF189DDC32C423FA30 /* mz_zip.c in Sources */, - 5111C01D7F30C56F8B068FCDB2EF0F17 /* mz_zip_rw.c in Sources */, - 539B49D90AD05A7116B36547E948190E /* SSZipArchive.m in Sources */, - 431FB07EAC4D2F7030C851DE20C3A1C4 /* SSZipArchive-dummy.m in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -2674,139 +2437,127 @@ /* End PBXSourcesBuildPhase section */ /* Begin PBXTargetDependency section */ - 1EA0EE4027AC03CA317117913523BEA0 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = MASShortcut; - target = 2B2B481A164695722839BD581D442457 /* MASShortcut */; - targetProxy = D20E4C5D1ED1266A8E8988888242A7C9 /* PBXContainerItemProxy */; - }; - 29D983B5364F8B966146D6680D7F25B4 /* PBXTargetDependency */ = { + 01EB53CE50577283ADFDC2CB80200180 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = Masonry; target = 55AF53E6C77A10ED4985E04D74A8878E /* Masonry */; - targetProxy = 00ED4ECF34AFE07284447A549646ABF6 /* PBXContainerItemProxy */; + targetProxy = F891921D097D760FAB5DCC07512EEB49 /* PBXContainerItemProxy */; + }; + 1F902AA631380B29DA85660B09AA1C98 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = ReactiveObjC; + target = 438B238ACC7DF1178D1BCE1A31983146 /* ReactiveObjC */; + targetProxy = AC64FA19D74DB21324708E116C84DEAA /* PBXContainerItemProxy */; }; - 2E4D255195B8B6450F783BC8F8A37FB1 /* PBXTargetDependency */ = { + 20D43FC297C2CE10CCED26C152301265 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = SSZipArchive; - target = F60E38364AFF5E1349FF07415B944396 /* SSZipArchive */; - targetProxy = 842263F5CFB5B77F6FC212C92191A536 /* PBXContainerItemProxy */; + name = KVOController; + target = 2568F753F09C4DFFD8770DCC78EDAEAE /* KVOController */; + targetProxy = D3F34EB807D90020C997E3F5A739CB38 /* PBXContainerItemProxy */; }; - 322927E89DF226470A8E97538E85E962 /* PBXTargetDependency */ = { + 211EC32B8DC10D986E15AB1CAB828951 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = Masonry; - target = 55AF53E6C77A10ED4985E04D74A8878E /* Masonry */; - targetProxy = F6D80E345284475EEF720E922EE9DAF3 /* PBXContainerItemProxy */; + name = KVOController; + target = 2568F753F09C4DFFD8770DCC78EDAEAE /* KVOController */; + targetProxy = B18C7A33C138BAFEACF84A43D17F74CA /* PBXContainerItemProxy */; }; - 3426673A5E1354D10FB0806A46A03573 /* PBXTargetDependency */ = { + 22E4E1E32CD48AF7E93CB2F01F346510 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = JLRoutes; + target = 94C1BAA17BCEBC27586488A205D2E0CB /* JLRoutes */; + targetProxy = 0559980FCA78B504B87D8F2D6D785902 /* PBXContainerItemProxy */; + }; + 38B5BDB796AECBFBE2E00D8867281ACD /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = AFNetworking; target = 0130B3724283586C0E9D2A112D4F2AA1 /* AFNetworking */; - targetProxy = D7349D9B53AAB4430B63392E1260420A /* PBXContainerItemProxy */; + targetProxy = E69DE2810F74D7DB7768791D8D0DDFE4 /* PBXContainerItemProxy */; }; - 350382B0D967669FB565CB46A6E317BE /* PBXTargetDependency */ = { + 41C30387FE9D90C1C5CD29CC8A77A005 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "MASPreferences-MASPreferences"; - target = 0A273FF147C6C1A3B504E3652CD01233 /* MASPreferences-MASPreferences */; - targetProxy = CA650157B59414CA6590BB1A795163A9 /* PBXContainerItemProxy */; + name = MASShortcut; + target = 2B2B481A164695722839BD581D442457 /* MASShortcut */; + targetProxy = D5919134FB5E722D388489805965D4E5 /* PBXContainerItemProxy */; }; - 3BEE11BAC46CC0D67E6EFAC3C5E6A593 /* PBXTargetDependency */ = { + 5542DA81857BD6464B6DA70CCE19E795 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = MASPreferences; target = CCE0F64E83CEAFEE20D04DC7BD57303E /* MASPreferences */; - targetProxy = EB2F73D7E4204EF464368C29A0A2AD3E /* PBXContainerItemProxy */; + targetProxy = 5CB01B18C07E466DF252F27538E8CA8C /* PBXContainerItemProxy */; }; - 3C0615752DF54178F2E1C29012DF3EC8 /* PBXTargetDependency */ = { + 57CA68EC0A5EDD5E5551BB24259F047F /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = SwiftFormat; - target = 1CD0618C486973D5588EF20D2E8C0AEA /* SwiftFormat */; - targetProxy = 8DDF755F2CC02C3312140B821C8F36C0 /* PBXContainerItemProxy */; + name = MASPreferences; + target = CCE0F64E83CEAFEE20D04DC7BD57303E /* MASPreferences */; + targetProxy = F4F55D9E1CA6BBF94FE48974512CC5C7 /* PBXContainerItemProxy */; }; - 3D8BF25DBB64A9FC4D40E95B14C7263A /* PBXTargetDependency */ = { + 593CF67A81DE339AE5F5248A01274CE0 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = AFNetworking; - target = 0130B3724283586C0E9D2A112D4F2AA1 /* AFNetworking */; - targetProxy = 07DDE8956023A72B9E5B88DF3D744525 /* PBXContainerItemProxy */; + name = Masonry; + target = 55AF53E6C77A10ED4985E04D74A8878E /* Masonry */; + targetProxy = FFF0DA685B895C7828D0ABECDBCA0FE6 /* PBXContainerItemProxy */; }; - 7242071AE2E71F3B2BD9998895929A44 /* PBXTargetDependency */ = { + 5D536D9530FFDCF907DD2CA6BF455529 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = KVOController; - target = 2568F753F09C4DFFD8770DCC78EDAEAE /* KVOController */; - targetProxy = 56A1D029E081570055DE389A17B98322 /* PBXContainerItemProxy */; + name = "MASPreferences-MASPreferences"; + target = 0A273FF147C6C1A3B504E3652CD01233 /* MASPreferences-MASPreferences */; + targetProxy = 66316E968043422C960CFB9B83699B6E /* PBXContainerItemProxy */; }; - 72E1503DD325F56B3355E82ECECF36EE /* PBXTargetDependency */ = { + 6635B9672D01B5CC8462791F35412B96 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = ReactiveObjC; - target = 438B238ACC7DF1178D1BCE1A31983146 /* ReactiveObjC */; - targetProxy = 508A50F640C84F50D004B2EF05C285DE /* PBXContainerItemProxy */; + name = MASShortcut; + target = 2B2B481A164695722839BD581D442457 /* MASShortcut */; + targetProxy = 45377EE7B0E33310C4CABB76CB0C2088 /* PBXContainerItemProxy */; }; - 87BF60C0333F365F229E416D98108400 /* PBXTargetDependency */ = { + 67B93F732BA3E5540B1175AF4A9B5919 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = JLRoutes; - target = 94C1BAA17BCEBC27586488A205D2E0CB /* JLRoutes */; - targetProxy = F3424D73A42C5AD7C2EF735BBB2B591D /* PBXContainerItemProxy */; + name = "MASShortcut-MASShortcut"; + target = 73C37A16ECCEAD845651DCDEE95675BE /* MASShortcut-MASShortcut */; + targetProxy = 4EC3F997951193744D953BD1430C3F03 /* PBXContainerItemProxy */; }; - A118869A0E240F653B03923DD224F507 /* PBXTargetDependency */ = { + 7A85F82658C905B280B0D9C9E29C2FD6 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = KVOController; - target = 2568F753F09C4DFFD8770DCC78EDAEAE /* KVOController */; - targetProxy = 7CF31224F11420C840149C82712EF676 /* PBXContainerItemProxy */; + name = JLRoutes; + target = 94C1BAA17BCEBC27586488A205D2E0CB /* JLRoutes */; + targetProxy = 9AE8350A0201C8299D38BDE5CA18053D /* PBXContainerItemProxy */; }; - A9D2B54AB8A82B329669DE7AD2DEC855 /* PBXTargetDependency */ = { + 83C30A9287033D864F5E84A87FB0AE1B /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = MASShortcut; - target = 2B2B481A164695722839BD581D442457 /* MASShortcut */; - targetProxy = D90570868022EAEAADEABCE66A4F778C /* PBXContainerItemProxy */; + name = SwiftFormat; + target = 1CD0618C486973D5588EF20D2E8C0AEA /* SwiftFormat */; + targetProxy = 6EA571EAC95CA65D27B6F24E5D0DB5A8 /* PBXContainerItemProxy */; }; - B0E86B23096467AE8D0D8B17D0B47D4D /* PBXTargetDependency */ = { + BC567696E3C7A62EBACFCED22B59CE7A /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = MJExtension; target = 4D3BA58D0583DF37575CACAB3DDADC85 /* MJExtension */; - targetProxy = 93BD3C5B93EA4C733257C5FECE46AB22 /* PBXContainerItemProxy */; + targetProxy = F930E8177A4A6FAE839A88C477CACBD7 /* PBXContainerItemProxy */; }; - CA1E25D8792B96F360B2C233C2AEFDC4 /* PBXTargetDependency */ = { + BC8C83E4431517CE0E1AB966FDFE19A5 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = ReactiveObjC; target = 438B238ACC7DF1178D1BCE1A31983146 /* ReactiveObjC */; - targetProxy = 42FEF2231E9A0514C671B483A8EF1017 /* PBXContainerItemProxy */; - }; - D01AA70BCF98C77AD8C078F111D047A9 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "MASShortcut-MASShortcut"; - target = 73C37A16ECCEAD845651DCDEE95675BE /* MASShortcut-MASShortcut */; - targetProxy = E668A528BD6862DE68CA07293AADEBC8 /* PBXContainerItemProxy */; + targetProxy = D9348FC3BF47216915CF774FD159A123 /* PBXContainerItemProxy */; }; - D4B15E221B86C73BCB1DF8DC73F3A0F8 /* PBXTargetDependency */ = { + C49CBC52AC7451BC0D8ED20C3BA1FC35 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = JLRoutes; - target = 94C1BAA17BCEBC27586488A205D2E0CB /* JLRoutes */; - targetProxy = 452BFB4ED8BEF2DB2E7C216BBB7CC99C /* PBXContainerItemProxy */; - }; - F1C3FEC758D21CA5C2F6729FFF93459F /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = SSZipArchive; - target = F60E38364AFF5E1349FF07415B944396 /* SSZipArchive */; - targetProxy = 77085BF96419B150D07BD19487BF53F7 /* PBXContainerItemProxy */; + name = AFNetworking; + target = 0130B3724283586C0E9D2A112D4F2AA1 /* AFNetworking */; + targetProxy = 8CFFC92306784A2F511B7809EC7AEC44 /* PBXContainerItemProxy */; }; - FAB8D408B552F7C06EEE926EDD89ACB2 /* PBXTargetDependency */ = { + CEEF9E7C9E1771E697E3973249DC57AF /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = MJExtension; target = 4D3BA58D0583DF37575CACAB3DDADC85 /* MJExtension */; - targetProxy = 714E4947E9CE980D4AB1F93227D51F9F /* PBXContainerItemProxy */; - }; - FD6E426B5A95EAD04243978CC62F0B19 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = MASPreferences; - target = CCE0F64E83CEAFEE20D04DC7BD57303E /* MASPreferences */; - targetProxy = 4DE1432D682FC4D2EB68749B4C8C68E9 /* PBXContainerItemProxy */; + targetProxy = A094FC8F3E7ED4FC5E156EF58F5EE7AE /* PBXContainerItemProxy */; }; /* End PBXTargetDependency section */ /* Begin PBXVariantGroup section */ - D4FB6C51DECB6512FC308716C52D72A0 /* MASPreferencesWindow.xib */ = { + CA857A6B18656D3B59DE5A526792F775 /* MASPreferencesWindow.xib */ = { isa = PBXVariantGroup; children = ( - 09F02C84E03E64AAED812EC3FB56DDD7 /* MASPreferencesWindow.xib */, + 11A0BB4CD62028B856E79841C7AAFFC7 /* MASPreferencesWindow.xib */, ); name = MASPreferencesWindow.xib; path = Framework; @@ -2817,7 +2568,7 @@ /* Begin XCBuildConfiguration section */ 043770A62E4D6E4557524616820F24D9 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 53B1FC0A4381E89109818445B57BAF4F /* Masonry.debug.xcconfig */; + baseConfigurationReference = 262BBB1E323B18142FAA365CCC6F0404 /* Masonry.debug.xcconfig */; buildSettings = { ARCHS = "$(ARCHS_STANDARD_64_BIT)"; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -2838,45 +2589,9 @@ "@loader_path/Frameworks", ); MACOSX_DEPLOYMENT_TARGET = 11.0; - MODULEMAP_FILE = "Target Support Files/Masonry/Masonry.modulemap"; - PRODUCT_MODULE_NAME = Masonry; - PRODUCT_NAME = Masonry; - SDKROOT = macosx; - SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - SWIFT_VERSION = 5.0; - VERSIONING_SYSTEM = "apple-generic"; - VERSION_INFO_PREFIX = ""; - }; - name = Debug; - }; - 0C0FD866D8E471B7918EA49896103C5B /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 671640F1EFB891F33D3ED5B278726652 /* MASShortcut.release.xcconfig */; - buildSettings = { - ARCHS = "$(ARCHS_STANDARD_64_BIT)"; - CLANG_ENABLE_OBJC_WEAK = NO; - "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - COMBINE_HIDPI_IMAGES = YES; - CURRENT_PROJECT_VERSION = 1; - DEFINES_MODULE = YES; - DYLIB_COMPATIBILITY_VERSION = 1; - DYLIB_CURRENT_VERSION = 1; - DYLIB_INSTALL_NAME_BASE = "@rpath"; - GCC_PREFIX_HEADER = "Target Support Files/MASShortcut/MASShortcut-prefix.pch"; - INFOPLIST_FILE = "Target Support Files/MASShortcut/MASShortcut-Info.plist"; - INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; - LD_RUNPATH_SEARCH_PATHS = ( - "$(inherited)", - "@executable_path/../Frameworks", - "@loader_path/Frameworks", - ); - MACOSX_DEPLOYMENT_TARGET = 11.0; - MODULEMAP_FILE = "Target Support Files/MASShortcut/MASShortcut.modulemap"; - PRODUCT_MODULE_NAME = MASShortcut; - PRODUCT_NAME = MASShortcut; + MODULEMAP_FILE = "Target Support Files/Masonry/Masonry.modulemap"; + PRODUCT_MODULE_NAME = Masonry; + PRODUCT_NAME = Masonry; SDKROOT = macosx; SKIP_INSTALL = YES; SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; @@ -2884,14 +2599,14 @@ VERSIONING_SYSTEM = "apple-generic"; VERSION_INFO_PREFIX = ""; }; - name = Release; + name = Debug; }; - 2035C12F0E13871BEA855D2FD8ABFB76 /* Release */ = { + 0C0FD866D8E471B7918EA49896103C5B /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 9B03860033D4E77E2A17C8CEDAA65BA7 /* Pods-EasydictTests.release.xcconfig */; + baseConfigurationReference = A3C6CAE6AD059DD07A9EAEC80681A3F6 /* MASShortcut.release.xcconfig */; buildSettings = { - ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; + CLANG_ENABLE_OBJC_WEAK = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; @@ -2901,23 +2616,22 @@ DYLIB_COMPATIBILITY_VERSION = 1; DYLIB_CURRENT_VERSION = 1; DYLIB_INSTALL_NAME_BASE = "@rpath"; - INFOPLIST_FILE = "Target Support Files/Pods-EasydictTests/Pods-EasydictTests-Info.plist"; + GCC_PREFIX_HEADER = "Target Support Files/MASShortcut/MASShortcut-prefix.pch"; + INFOPLIST_FILE = "Target Support Files/MASShortcut/MASShortcut-Info.plist"; INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; LD_RUNPATH_SEARCH_PATHS = ( "$(inherited)", "@executable_path/../Frameworks", "@loader_path/Frameworks", ); - MACH_O_TYPE = staticlib; MACOSX_DEPLOYMENT_TARGET = 11.0; - MODULEMAP_FILE = "Target Support Files/Pods-EasydictTests/Pods-EasydictTests.modulemap"; - OTHER_LDFLAGS = ""; - OTHER_LIBTOOLFLAGS = ""; - PODS_ROOT = "$(SRCROOT)"; - PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}"; - PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)"; + MODULEMAP_FILE = "Target Support Files/MASShortcut/MASShortcut.modulemap"; + PRODUCT_MODULE_NAME = MASShortcut; + PRODUCT_NAME = MASShortcut; SDKROOT = macosx; SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; + SWIFT_VERSION = 5.0; VERSIONING_SYSTEM = "apple-generic"; VERSION_INFO_PREFIX = ""; }; @@ -2925,7 +2639,7 @@ }; 2F56E83552421DE5781CDF6A7F5E81DE /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = BBE9290D5E17CC0EA5A3AC25568F58EC /* KVOController.debug.xcconfig */; + baseConfigurationReference = B286562038D848BD289E9C7D3C9D222E /* KVOController.debug.xcconfig */; buildSettings = { ARCHS = "$(ARCHS_STANDARD_64_BIT)"; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -2960,7 +2674,7 @@ }; 31CCC3E65C5F3199484421502A03D5C4 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 830AEAC9CFB2F6B2C5EC9FC4A7F6503D /* ReactiveObjC.release.xcconfig */; + baseConfigurationReference = D043E1B15997F3DC996E1A3489DA0AA8 /* ReactiveObjC.release.xcconfig */; buildSettings = { ARCHS = "$(ARCHS_STANDARD_64_BIT)"; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -2993,46 +2707,9 @@ }; name = Release; }; - 3B9488D1DE60627D448065008131000E /* Debug */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 8B00B1A7406B4F5FEEC4C4B39D91D48A /* Pods-Easydict.debug.xcconfig */; - buildSettings = { - ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO; - ARCHS = "$(ARCHS_STANDARD_64_BIT)"; - "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - COMBINE_HIDPI_IMAGES = YES; - CURRENT_PROJECT_VERSION = 1; - DEFINES_MODULE = YES; - DYLIB_COMPATIBILITY_VERSION = 1; - DYLIB_CURRENT_VERSION = 1; - DYLIB_INSTALL_NAME_BASE = "@rpath"; - INFOPLIST_FILE = "Target Support Files/Pods-Easydict/Pods-Easydict-Info.plist"; - INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; - LD_RUNPATH_SEARCH_PATHS = ( - "$(inherited)", - "@executable_path/../Frameworks", - "@loader_path/Frameworks", - ); - MACH_O_TYPE = staticlib; - MACOSX_DEPLOYMENT_TARGET = 11.0; - MODULEMAP_FILE = "Target Support Files/Pods-Easydict/Pods-Easydict.modulemap"; - OTHER_LDFLAGS = ""; - OTHER_LIBTOOLFLAGS = ""; - PODS_ROOT = "$(SRCROOT)"; - PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}"; - PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)"; - SDKROOT = macosx; - SKIP_INSTALL = YES; - VERSIONING_SYSTEM = "apple-generic"; - VERSION_INFO_PREFIX = ""; - }; - name = Debug; - }; 3F7EC0EEDA0FA79BAEEFD18E6B60EC59 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = C0F4292BB70938D463DEF22CD3887D38 /* MASShortcut.debug.xcconfig */; + baseConfigurationReference = FBD7EC3B1C295E5ED2A83F53EAFA3CDA /* MASShortcut.debug.xcconfig */; buildSettings = { ARCHS = "$(ARCHS_STANDARD_64_BIT)"; CLANG_ENABLE_OBJC_WEAK = NO; @@ -3068,7 +2745,7 @@ }; 45F693C9DA8B3438A0F53CB630A06C26 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 1E3C6299D7C4237ED3281EF847EDC140 /* Masonry.release.xcconfig */; + baseConfigurationReference = 97B9F2337913A49C751244AABAEDE23E /* Masonry.release.xcconfig */; buildSettings = { ARCHS = "$(ARCHS_STANDARD_64_BIT)"; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -3101,61 +2778,46 @@ }; name = Release; }; - 49F8208D973FABD9F73891F11AE4E14B /* Debug */ = { + 56A01C920CE533D16B2DE7BC5C19FCB2 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = B945D43194E93E7A4CDC8946C4352EC3 /* SSZipArchive.debug.xcconfig */; + baseConfigurationReference = 225198CE18CF6D457A07FFA8E1635FD6 /* Pods-EasydictTests.debug.xcconfig */; buildSettings = { + ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; COMBINE_HIDPI_IMAGES = YES; CURRENT_PROJECT_VERSION = 1; + DEFINES_MODULE = YES; DYLIB_COMPATIBILITY_VERSION = 1; DYLIB_CURRENT_VERSION = 1; DYLIB_INSTALL_NAME_BASE = "@rpath"; - GCC_PREFIX_HEADER = "Target Support Files/SSZipArchive/SSZipArchive-prefix.pch"; - INFOPLIST_FILE = "Target Support Files/SSZipArchive/SSZipArchive-Info.plist"; + INFOPLIST_FILE = "Target Support Files/Pods-EasydictTests/Pods-EasydictTests-Info.plist"; INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; LD_RUNPATH_SEARCH_PATHS = ( "$(inherited)", "@executable_path/../Frameworks", "@loader_path/Frameworks", ); + MACH_O_TYPE = staticlib; MACOSX_DEPLOYMENT_TARGET = 11.0; - MODULEMAP_FILE = "Target Support Files/SSZipArchive/SSZipArchive.modulemap"; - PRODUCT_MODULE_NAME = SSZipArchive; - PRODUCT_NAME = SSZipArchive; + MODULEMAP_FILE = "Target Support Files/Pods-EasydictTests/Pods-EasydictTests.modulemap"; + OTHER_LDFLAGS = ""; + OTHER_LIBTOOLFLAGS = ""; + PODS_ROOT = "$(SRCROOT)"; + PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}"; + PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)"; SDKROOT = macosx; SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - SWIFT_VERSION = 5.0; VERSIONING_SYSTEM = "apple-generic"; VERSION_INFO_PREFIX = ""; }; name = Debug; }; - 4C2107298CF5F60BD45FF3C0A5CA0084 /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 671640F1EFB891F33D3ED5B278726652 /* MASShortcut.release.xcconfig */; - buildSettings = { - CODE_SIGNING_ALLOWED = NO; - COMBINE_HIDPI_IMAGES = YES; - CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/MASShortcut"; - IBSC_MODULE = MASShortcut; - INFOPLIST_FILE = "Target Support Files/MASShortcut/ResourceBundle-MASShortcut-MASShortcut-Info.plist"; - INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Bundles"; - MACOSX_DEPLOYMENT_TARGET = 11.0; - PRODUCT_NAME = MASShortcut; - SDKROOT = macosx; - SKIP_INSTALL = YES; - WRAPPER_EXTENSION = bundle; - }; - name = Release; - }; 62F6FD063953FA192F4B3A673FE97AFC /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = DE95F0448453D05A628A6949C1DF5AE9 /* MJExtension.debug.xcconfig */; + baseConfigurationReference = 598F8165863EF02A9B983AFB931236BA /* MJExtension.debug.xcconfig */; buildSettings = { ARCHS = "$(ARCHS_STANDARD_64_BIT)"; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -3188,61 +2850,46 @@ }; name = Debug; }; - 6474019BC5D37ED1C67F92B552F1A4E7 /* Release */ = { + 631C6BE48CE9D702D93E75150A3B4300 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 2C1DEF9961F4639CA1E1FE01E9AB7106 /* SSZipArchive.release.xcconfig */; + baseConfigurationReference = 9B03860033D4E77E2A17C8CEDAA65BA7 /* Pods-EasydictTests.release.xcconfig */; buildSettings = { + ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; COMBINE_HIDPI_IMAGES = YES; CURRENT_PROJECT_VERSION = 1; + DEFINES_MODULE = YES; DYLIB_COMPATIBILITY_VERSION = 1; DYLIB_CURRENT_VERSION = 1; DYLIB_INSTALL_NAME_BASE = "@rpath"; - GCC_PREFIX_HEADER = "Target Support Files/SSZipArchive/SSZipArchive-prefix.pch"; - INFOPLIST_FILE = "Target Support Files/SSZipArchive/SSZipArchive-Info.plist"; + INFOPLIST_FILE = "Target Support Files/Pods-EasydictTests/Pods-EasydictTests-Info.plist"; INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; LD_RUNPATH_SEARCH_PATHS = ( "$(inherited)", "@executable_path/../Frameworks", "@loader_path/Frameworks", ); + MACH_O_TYPE = staticlib; MACOSX_DEPLOYMENT_TARGET = 11.0; - MODULEMAP_FILE = "Target Support Files/SSZipArchive/SSZipArchive.modulemap"; - PRODUCT_MODULE_NAME = SSZipArchive; - PRODUCT_NAME = SSZipArchive; + MODULEMAP_FILE = "Target Support Files/Pods-EasydictTests/Pods-EasydictTests.modulemap"; + OTHER_LDFLAGS = ""; + OTHER_LIBTOOLFLAGS = ""; + PODS_ROOT = "$(SRCROOT)"; + PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}"; + PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)"; SDKROOT = macosx; SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - SWIFT_VERSION = 5.0; VERSIONING_SYSTEM = "apple-generic"; VERSION_INFO_PREFIX = ""; }; name = Release; }; - 6A7822A8F7C682DC2F7C76B81A4B1D10 /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = D2E2A718210C8E286E0F7DDC36A27CA0 /* MASPreferences.release.xcconfig */; - buildSettings = { - CODE_SIGNING_ALLOWED = NO; - COMBINE_HIDPI_IMAGES = YES; - CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/MASPreferences"; - IBSC_MODULE = MASPreferences; - INFOPLIST_FILE = "Target Support Files/MASPreferences/ResourceBundle-MASPreferences-MASPreferences-Info.plist"; - INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Bundles"; - MACOSX_DEPLOYMENT_TARGET = 11.0; - PRODUCT_NAME = MASPreferences; - SDKROOT = macosx; - SKIP_INSTALL = YES; - WRAPPER_EXTENSION = bundle; - }; - name = Release; - }; 7198CE043F7549A17243F7D986CC7DE9 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = D05B475C18069837472BC1DCF47A1AD4 /* MASPreferences.debug.xcconfig */; + baseConfigurationReference = 084A271996074B79A788318D8325ABEF /* MASPreferences.debug.xcconfig */; buildSettings = { ARCHS = "$(ARCHS_STANDARD_64_BIT)"; CLANG_ENABLE_OBJC_WEAK = NO; @@ -3278,7 +2925,7 @@ }; 77A9A4C7C0E39F315878AECFE0340C85 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 5E17F85D4AF4E4857D3EC4639A91BA77 /* KVOController.release.xcconfig */; + baseConfigurationReference = 7412C6245E30E86FD6CDD9502444A22F /* KVOController.release.xcconfig */; buildSettings = { ARCHS = "$(ARCHS_STANDARD_64_BIT)"; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -3313,7 +2960,7 @@ }; 7DFA6BE9948EE0D520F94690444EEFF4 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 105DB0D0CF2811EDBEE761BE9FC097DB /* ReactiveObjC.debug.xcconfig */; + baseConfigurationReference = DBAA192A036915695EB6A269D9D99210 /* ReactiveObjC.debug.xcconfig */; buildSettings = { ARCHS = "$(ARCHS_STANDARD_64_BIT)"; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -3346,9 +2993,9 @@ }; name = Debug; }; - 80A46AED22BC97F192DA10ED2460B675 /* Debug */ = { + 7F4BF0C7A0AEC57DE6BE11905CEAA2C2 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 225198CE18CF6D457A07FFA8E1635FD6 /* Pods-EasydictTests.debug.xcconfig */; + baseConfigurationReference = 0F1C25F44128BF7424E93AA5262DC85E /* Pods-Easydict.release.xcconfig */; buildSettings = { ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -3361,7 +3008,7 @@ DYLIB_COMPATIBILITY_VERSION = 1; DYLIB_CURRENT_VERSION = 1; DYLIB_INSTALL_NAME_BASE = "@rpath"; - INFOPLIST_FILE = "Target Support Files/Pods-EasydictTests/Pods-EasydictTests-Info.plist"; + INFOPLIST_FILE = "Target Support Files/Pods-Easydict/Pods-Easydict-Info.plist"; INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; LD_RUNPATH_SEARCH_PATHS = ( "$(inherited)", @@ -3370,7 +3017,7 @@ ); MACH_O_TYPE = staticlib; MACOSX_DEPLOYMENT_TARGET = 11.0; - MODULEMAP_FILE = "Target Support Files/Pods-EasydictTests/Pods-EasydictTests.modulemap"; + MODULEMAP_FILE = "Target Support Files/Pods-Easydict/Pods-Easydict.modulemap"; OTHER_LDFLAGS = ""; OTHER_LIBTOOLFLAGS = ""; PODS_ROOT = "$(SRCROOT)"; @@ -3381,11 +3028,11 @@ VERSIONING_SYSTEM = "apple-generic"; VERSION_INFO_PREFIX = ""; }; - name = Debug; + name = Release; }; 80FE3E30DE35C00EEF289734BD6835A1 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 887DCFE4840BA027C996F87F5C7B8B11 /* MJExtension.release.xcconfig */; + baseConfigurationReference = B82599254B9E1827EBA5B44F35FE6FD3 /* MJExtension.release.xcconfig */; buildSettings = { ARCHS = "$(ARCHS_STANDARD_64_BIT)"; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -3420,7 +3067,7 @@ }; 81598A85C9E566CD3600642CF0AF261D /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 2A1C7F6DD005006975670D6EBD4B14E5 /* AFNetworking.release.xcconfig */; + baseConfigurationReference = 3AF29BA84E32D7948FEEC04EDEE677DE /* AFNetworking.release.xcconfig */; buildSettings = { ARCHS = "$(ARCHS_STANDARD_64_BIT)"; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -3515,9 +3162,27 @@ }; name = Release; }; + 889A0237F5475FAAEF120795EE03AF09 /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 65E1C4A2EA40FCAC93DE04DC53CB65F5 /* MASPreferences.release.xcconfig */; + buildSettings = { + CODE_SIGNING_ALLOWED = NO; + COMBINE_HIDPI_IMAGES = YES; + CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/MASPreferences"; + IBSC_MODULE = MASPreferences; + INFOPLIST_FILE = "Target Support Files/MASPreferences/ResourceBundle-MASPreferences-MASPreferences-Info.plist"; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Bundles"; + MACOSX_DEPLOYMENT_TARGET = 11.0; + PRODUCT_NAME = MASPreferences; + SDKROOT = macosx; + SKIP_INSTALL = YES; + WRAPPER_EXTENSION = bundle; + }; + name = Release; + }; 9D56C7C807BEF554AE693FC1C147A3D6 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = BB26E635BB60B2D270BB0B543A1CEF54 /* JLRoutes.debug.xcconfig */; + baseConfigurationReference = 9C5BBD0242ABA2863F1583168BD00059 /* JLRoutes.debug.xcconfig */; buildSettings = { ARCHS = "$(ARCHS_STANDARD_64_BIT)"; CLANG_ENABLE_OBJC_WEAK = NO; @@ -3553,7 +3218,7 @@ }; 9F6B4AB21290A67737A24D8105A17E76 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = BB6A287E3CDAA9F049E60BF46312E382 /* JLRoutes.release.xcconfig */; + baseConfigurationReference = 353C2DB990599197DB894FF3EF87C4B3 /* JLRoutes.release.xcconfig */; buildSettings = { ARCHS = "$(ARCHS_STANDARD_64_BIT)"; CLANG_ENABLE_OBJC_WEAK = NO; @@ -3589,7 +3254,7 @@ }; A1B8D9C6673EE83E3F80E3B3F66FF70C /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 62E125E92733A769AF8D2A0F2D786DF4 /* AFNetworking.debug.xcconfig */; + baseConfigurationReference = 16933E06DABABD65B6013D957A54C838 /* AFNetworking.debug.xcconfig */; buildSettings = { ARCHS = "$(ARCHS_STANDARD_64_BIT)"; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -3622,9 +3287,46 @@ }; name = Debug; }; + B10260C01BA04DBC8F880359D47C9324 /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 8B00B1A7406B4F5FEEC4C4B39D91D48A /* Pods-Easydict.debug.xcconfig */; + buildSettings = { + ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO; + ARCHS = "$(ARCHS_STANDARD_64_BIT)"; + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + COMBINE_HIDPI_IMAGES = YES; + CURRENT_PROJECT_VERSION = 1; + DEFINES_MODULE = YES; + DYLIB_COMPATIBILITY_VERSION = 1; + DYLIB_CURRENT_VERSION = 1; + DYLIB_INSTALL_NAME_BASE = "@rpath"; + INFOPLIST_FILE = "Target Support Files/Pods-Easydict/Pods-Easydict-Info.plist"; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; + LD_RUNPATH_SEARCH_PATHS = ( + "$(inherited)", + "@executable_path/../Frameworks", + "@loader_path/Frameworks", + ); + MACH_O_TYPE = staticlib; + MACOSX_DEPLOYMENT_TARGET = 11.0; + MODULEMAP_FILE = "Target Support Files/Pods-Easydict/Pods-Easydict.modulemap"; + OTHER_LDFLAGS = ""; + OTHER_LIBTOOLFLAGS = ""; + PODS_ROOT = "$(SRCROOT)"; + PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}"; + PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)"; + SDKROOT = macosx; + SKIP_INSTALL = YES; + VERSIONING_SYSTEM = "apple-generic"; + VERSION_INFO_PREFIX = ""; + }; + name = Debug; + }; B6BA742924E0E5E87AB0C87DB332BA28 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 82BB16DF8AFB4286A8B0E1EBC99FB7CD /* SwiftFormat.debug.xcconfig */; + baseConfigurationReference = 1B0540801E5F6C452A7B5E447BD1EDA3 /* SwiftFormat.debug.xcconfig */; buildSettings = { ARCHS = "$(ARCHS_STANDARD_64_BIT)"; ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; @@ -3640,18 +3342,18 @@ }; name = Debug; }; - C0D25EFB130C2E4A4DB10971F840E025 /* Debug */ = { + BA6E589DC8C76370F633A94AB1F7FDAD /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = C0F4292BB70938D463DEF22CD3887D38 /* MASShortcut.debug.xcconfig */; + baseConfigurationReference = 084A271996074B79A788318D8325ABEF /* MASPreferences.debug.xcconfig */; buildSettings = { CODE_SIGNING_ALLOWED = NO; COMBINE_HIDPI_IMAGES = YES; - CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/MASShortcut"; - IBSC_MODULE = MASShortcut; - INFOPLIST_FILE = "Target Support Files/MASShortcut/ResourceBundle-MASShortcut-MASShortcut-Info.plist"; + CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/MASPreferences"; + IBSC_MODULE = MASPreferences; + INFOPLIST_FILE = "Target Support Files/MASPreferences/ResourceBundle-MASPreferences-MASPreferences-Info.plist"; INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Bundles"; MACOSX_DEPLOYMENT_TARGET = 11.0; - PRODUCT_NAME = MASShortcut; + PRODUCT_NAME = MASPreferences; SDKROOT = macosx; SKIP_INSTALL = YES; WRAPPER_EXTENSION = bundle; @@ -3660,7 +3362,7 @@ }; C0F3506412CA0D28220A8C3FC819CBAE /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = D2E2A718210C8E286E0F7DDC36A27CA0 /* MASPreferences.release.xcconfig */; + baseConfigurationReference = 65E1C4A2EA40FCAC93DE04DC53CB65F5 /* MASPreferences.release.xcconfig */; buildSettings = { ARCHS = "$(ARCHS_STANDARD_64_BIT)"; CLANG_ENABLE_OBJC_WEAK = NO; @@ -3696,7 +3398,7 @@ }; CE466BE2EA36869F615413F9FA519750 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = C1A9B69725BD93E06882F79719BDC1BD /* SwiftFormat.release.xcconfig */; + baseConfigurationReference = DBA43944052A42E1413F5009872D5166 /* SwiftFormat.release.xcconfig */; buildSettings = { ARCHS = "$(ARCHS_STANDARD_64_BIT)"; ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; @@ -3712,42 +3414,23 @@ }; name = Release; }; - CEDC4B0548AC86A2E8B03FA578E60E92 /* Release */ = { + D300F5C03CE6421312EAB6C81819CE43 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 0F1C25F44128BF7424E93AA5262DC85E /* Pods-Easydict.release.xcconfig */; + baseConfigurationReference = FBD7EC3B1C295E5ED2A83F53EAFA3CDA /* MASShortcut.debug.xcconfig */; buildSettings = { - ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO; - ARCHS = "$(ARCHS_STANDARD_64_BIT)"; - "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + CODE_SIGNING_ALLOWED = NO; COMBINE_HIDPI_IMAGES = YES; - CURRENT_PROJECT_VERSION = 1; - DEFINES_MODULE = YES; - DYLIB_COMPATIBILITY_VERSION = 1; - DYLIB_CURRENT_VERSION = 1; - DYLIB_INSTALL_NAME_BASE = "@rpath"; - INFOPLIST_FILE = "Target Support Files/Pods-Easydict/Pods-Easydict-Info.plist"; - INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; - LD_RUNPATH_SEARCH_PATHS = ( - "$(inherited)", - "@executable_path/../Frameworks", - "@loader_path/Frameworks", - ); - MACH_O_TYPE = staticlib; + CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/MASShortcut"; + IBSC_MODULE = MASShortcut; + INFOPLIST_FILE = "Target Support Files/MASShortcut/ResourceBundle-MASShortcut-MASShortcut-Info.plist"; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Bundles"; MACOSX_DEPLOYMENT_TARGET = 11.0; - MODULEMAP_FILE = "Target Support Files/Pods-Easydict/Pods-Easydict.modulemap"; - OTHER_LDFLAGS = ""; - OTHER_LIBTOOLFLAGS = ""; - PODS_ROOT = "$(SRCROOT)"; - PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}"; - PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)"; + PRODUCT_NAME = MASShortcut; SDKROOT = macosx; SKIP_INSTALL = YES; - VERSIONING_SYSTEM = "apple-generic"; - VERSION_INFO_PREFIX = ""; + WRAPPER_EXTENSION = bundle; }; - name = Release; + name = Debug; }; D39E634FC2CFF97419EB3682DD2807FA /* Debug */ = { isa = XCBuildConfiguration; @@ -3815,23 +3498,23 @@ }; name = Debug; }; - E3C29531BDE7303007A3D6C36E224352 /* Debug */ = { + D567197C995D35F449CBCCFBD318099A /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = D05B475C18069837472BC1DCF47A1AD4 /* MASPreferences.debug.xcconfig */; + baseConfigurationReference = A3C6CAE6AD059DD07A9EAEC80681A3F6 /* MASShortcut.release.xcconfig */; buildSettings = { CODE_SIGNING_ALLOWED = NO; COMBINE_HIDPI_IMAGES = YES; - CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/MASPreferences"; - IBSC_MODULE = MASPreferences; - INFOPLIST_FILE = "Target Support Files/MASPreferences/ResourceBundle-MASPreferences-MASPreferences-Info.plist"; + CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/MASShortcut"; + IBSC_MODULE = MASShortcut; + INFOPLIST_FILE = "Target Support Files/MASShortcut/ResourceBundle-MASShortcut-MASShortcut-Info.plist"; INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Bundles"; MACOSX_DEPLOYMENT_TARGET = 11.0; - PRODUCT_NAME = MASPreferences; + PRODUCT_NAME = MASShortcut; SDKROOT = macosx; SKIP_INSTALL = YES; WRAPPER_EXTENSION = bundle; }; - name = Debug; + name = Release; }; /* End XCBuildConfiguration section */ @@ -3845,11 +3528,20 @@ defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 090261F64C314B12777A3FFDE1FAD2AE /* Build configuration list for PBXNativeTarget "MASPreferences-MASPreferences" */ = { + 10696070B58400BED01FC33D2C9D8BDB /* Build configuration list for PBXNativeTarget "Pods-EasydictTests" */ = { isa = XCConfigurationList; buildConfigurations = ( - E3C29531BDE7303007A3D6C36E224352 /* Debug */, - 6A7822A8F7C682DC2F7C76B81A4B1D10 /* Release */, + 56A01C920CE533D16B2DE7BC5C19FCB2 /* Debug */, + 631C6BE48CE9D702D93E75150A3B4300 /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + 13B17F2531864C50ECF5BFB40CD3CDB5 /* Build configuration list for PBXNativeTarget "Pods-Easydict" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + B10260C01BA04DBC8F880359D47C9324 /* Debug */, + 7F4BF0C7A0AEC57DE6BE11905CEAA2C2 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; @@ -3899,20 +3591,20 @@ defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 5D0A1C5EC006615C1092F876C06EAF4D /* Build configuration list for PBXNativeTarget "SSZipArchive" */ = { + 5F6BF3D278A3C9C873968A927045E89B /* Build configuration list for PBXNativeTarget "MASShortcut" */ = { isa = XCConfigurationList; buildConfigurations = ( - 49F8208D973FABD9F73891F11AE4E14B /* Debug */, - 6474019BC5D37ED1C67F92B552F1A4E7 /* Release */, + 3F7EC0EEDA0FA79BAEEFD18E6B60EC59 /* Debug */, + 0C0FD866D8E471B7918EA49896103C5B /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 5F6BF3D278A3C9C873968A927045E89B /* Build configuration list for PBXNativeTarget "MASShortcut" */ = { + 60C62A6B82AD5FC1B20920A8E3CEEC33 /* Build configuration list for PBXNativeTarget "MASPreferences-MASPreferences" */ = { isa = XCConfigurationList; buildConfigurations = ( - 3F7EC0EEDA0FA79BAEEFD18E6B60EC59 /* Debug */, - 0C0FD866D8E471B7918EA49896103C5B /* Release */, + BA6E589DC8C76370F633A94AB1F7FDAD /* Debug */, + 889A0237F5475FAAEF120795EE03AF09 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; @@ -3944,29 +3636,11 @@ defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - B46A3732E78551781765390794248C83 /* Build configuration list for PBXNativeTarget "Pods-Easydict" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - 3B9488D1DE60627D448065008131000E /* Debug */, - CEDC4B0548AC86A2E8B03FA578E60E92 /* Release */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; - }; - BAFFE1223AD30D2624F460F28E43CF95 /* Build configuration list for PBXNativeTarget "MASShortcut-MASShortcut" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - C0D25EFB130C2E4A4DB10971F840E025 /* Debug */, - 4C2107298CF5F60BD45FF3C0A5CA0084 /* Release */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; - }; - FCCF9A5855FD8C40C3801BD3A611BE88 /* Build configuration list for PBXNativeTarget "Pods-EasydictTests" */ = { + D4EE400B4D5E48CF8D06880C56E13427 /* Build configuration list for PBXNativeTarget "MASShortcut-MASShortcut" */ = { isa = XCConfigurationList; buildConfigurations = ( - 80A46AED22BC97F192DA10ED2460B675 /* Debug */, - 2035C12F0E13871BEA855D2FD8ABFB76 /* Release */, + D300F5C03CE6421312EAB6C81819CE43 /* Debug */, + D567197C995D35F449CBCCFBD318099A /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; diff --git a/Pods/SSZipArchive/LICENSE.txt b/Pods/SSZipArchive/LICENSE.txt deleted file mode 100644 index e118fa464..000000000 --- a/Pods/SSZipArchive/LICENSE.txt +++ /dev/null @@ -1,20 +0,0 @@ -Copyright (c) 2010-2015, Sam Soffes, https://soff.es - -Permission is hereby granted, free of charge, to any person obtaining -a copy of this software and associated documentation files (the -"Software"), to deal in the Software without restriction, including -without limitation the rights to use, copy, modify, merge, publish, -distribute, sublicense, and/or sell copies of the Software, and to -permit persons to whom the Software is furnished to do so, subject to -the following conditions: - -The above copyright notice and this permission notice shall be -included in all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE -LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION -OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION -WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. diff --git a/Pods/SSZipArchive/README.md b/Pods/SSZipArchive/README.md deleted file mode 100644 index ff31d5d20..000000000 --- a/Pods/SSZipArchive/README.md +++ /dev/null @@ -1,78 +0,0 @@ - -[![Build Status](https://travis-ci.org/ZipArchive/ZipArchive.svg?branch=master)](https://travis-ci.org/ZipArchive/ZipArchive) - -# SSZipArchive - -ZipArchive is a simple utility class for zipping and unzipping files on iOS, macOS and tvOS. - -- Unzip zip files; -- Unzip password protected zip files; -- Unzip AES encrypted zip files; -- Create zip files; -- Create password protected zip files; -- Create AES encrypted zip files; -- Choose compression level; -- Zip-up NSData instances. (with a filename) - -## Installation and Setup - -*The main release branch is configured to support Objective-C and Swift 3+.* - -SSZipArchive works on Xcode 7-11 and above, iOS 9-13 and above, tvOS 9 and above, macOS 10.8-10.15 and above, watchOS 2 and above. - -### CocoaPods -In your Podfile: -`pod 'SSZipArchive'` - -You should define your minimum deployment target explicitly, like: -`platform :ios, '9.0'` - -Recommended CocoaPods version should be at least CocoaPods 1.7.5. - -### Carthage -In your Cartfile: -`github "ZipArchive/ZipArchive"` - -### Manual - -1. Add the `SSZipArchive` and `minizip` folders to your project. -2. Add the `libz` and `libiconv` libraries to your target. -3. Add the `Security` framework to your target. -4. Add the following GCC_PREPROCESSOR_DEFINITIONS: `HAVE_INTTYPES_H HAVE_PKCRYPT HAVE_STDINT_H HAVE_WZAES HAVE_ZLIB $(inherited)`. - -SSZipArchive requires ARC. - -## Usage - -### Objective-C - -```objective-c -// Create -[SSZipArchive createZipFileAtPath:zipPath withContentsOfDirectory:sampleDataPath]; - -// Unzip -[SSZipArchive unzipFileAtPath:zipPath toDestination:unzipPath]; -``` - -### Swift - -```swift -// Create -SSZipArchive.createZipFileAtPath(zipPath, withContentsOfDirectory: sampleDataPath) - -// Unzip -SSZipArchive.unzipFileAtPath(zipPath, toDestination: unzipPath) -``` - -## License - -SSZipArchive is protected under the [MIT license](https://github.com/samsoffes/ssziparchive/raw/master/LICENSE) and our slightly modified version of [Minizip](https://github.com/nmoinvaz/minizip) 1.2 is licensed under the [Zlib license](https://www.zlib.net/zlib_license.html). - -## Acknowledgments - -* Big thanks to *aish* for creating [ZipArchive](https://code.google.com/archive/p/ziparchive/). The project that inspired SSZipArchive. -* Thank you [@soffes](https://github.com/soffes) for the actual name of SSZipArchive. -* Thank you [@randomsequence](https://github.com/randomsequence) for implementing the creation support tech. -* Thank you [@johnezang](https://github.com/johnezang) for all his amazing help along the way. -* Thank you [@nmoinvaz](https://github.com/nmoinvaz) for minizip, the core of ZipArchive. -* Thank you to [all the contributors](https://github.com/ZipArchive/ZipArchive/graphs/contributors). diff --git a/Pods/SSZipArchive/SSZipArchive/SSZipArchive.h b/Pods/SSZipArchive/SSZipArchive/SSZipArchive.h deleted file mode 100644 index 60770020c..000000000 --- a/Pods/SSZipArchive/SSZipArchive/SSZipArchive.h +++ /dev/null @@ -1,150 +0,0 @@ -// -// SSZipArchive.h -// SSZipArchive -// -// Created by Sam Soffes on 7/21/10. -// Copyright (c) Sam Soffes 2010-2015. All rights reserved. -// - -#ifndef _SSZIPARCHIVE_H -#define _SSZIPARCHIVE_H - -#import -#include "SSZipCommon.h" - -NS_ASSUME_NONNULL_BEGIN - -extern NSString *const SSZipArchiveErrorDomain; -typedef NS_ENUM(NSInteger, SSZipArchiveErrorCode) { - SSZipArchiveErrorCodeFailedOpenZipFile = -1, - SSZipArchiveErrorCodeFailedOpenFileInZip = -2, - SSZipArchiveErrorCodeFileInfoNotLoadable = -3, - SSZipArchiveErrorCodeFileContentNotReadable = -4, - SSZipArchiveErrorCodeFailedToWriteFile = -5, - SSZipArchiveErrorCodeInvalidArguments = -6, -}; - -@protocol SSZipArchiveDelegate; - -@interface SSZipArchive : NSObject - -// Password check -+ (BOOL)isFilePasswordProtectedAtPath:(NSString *)path; -+ (BOOL)isPasswordValidForArchiveAtPath:(NSString *)path password:(NSString *)pw error:(NSError * _Nullable * _Nullable)error NS_SWIFT_NOTHROW; - -// Total payload size -+ (NSNumber *)payloadSizeForArchiveAtPath:(NSString *)path error:(NSError **)error; - -// Unzip -+ (BOOL)unzipFileAtPath:(NSString *)path toDestination:(NSString *)destination; -+ (BOOL)unzipFileAtPath:(NSString *)path toDestination:(NSString *)destination delegate:(nullable id)delegate; - -+ (BOOL)unzipFileAtPath:(NSString *)path - toDestination:(NSString *)destination - overwrite:(BOOL)overwrite - password:(nullable NSString *)password - error:(NSError * *)error; - -+ (BOOL)unzipFileAtPath:(NSString *)path - toDestination:(NSString *)destination - overwrite:(BOOL)overwrite - password:(nullable NSString *)password - error:(NSError * *)error - delegate:(nullable id)delegate NS_REFINED_FOR_SWIFT; - -+ (BOOL)unzipFileAtPath:(NSString *)path - toDestination:(NSString *)destination - preserveAttributes:(BOOL)preserveAttributes - overwrite:(BOOL)overwrite - password:(nullable NSString *)password - error:(NSError * *)error - delegate:(nullable id)delegate; - -+ (BOOL)unzipFileAtPath:(NSString *)path - toDestination:(NSString *)destination - progressHandler:(void (^_Nullable)(NSString *entry, unz_file_info zipInfo, long entryNumber, long total))progressHandler - completionHandler:(void (^_Nullable)(NSString *path, BOOL succeeded, NSError * _Nullable error))completionHandler; - -+ (BOOL)unzipFileAtPath:(NSString *)path - toDestination:(NSString *)destination - overwrite:(BOOL)overwrite - password:(nullable NSString *)password - progressHandler:(void (^_Nullable)(NSString *entry, unz_file_info zipInfo, long entryNumber, long total))progressHandler - completionHandler:(void (^_Nullable)(NSString *path, BOOL succeeded, NSError * _Nullable error))completionHandler; - -+ (BOOL)unzipFileAtPath:(NSString *)path - toDestination:(NSString *)destination - preserveAttributes:(BOOL)preserveAttributes - overwrite:(BOOL)overwrite - nestedZipLevel:(NSInteger)nestedZipLevel - password:(nullable NSString *)password - error:(NSError **)error - delegate:(nullable id)delegate - progressHandler:(void (^_Nullable)(NSString *entry, unz_file_info zipInfo, long entryNumber, long total))progressHandler - completionHandler:(void (^_Nullable)(NSString *path, BOOL succeeded, NSError * _Nullable error))completionHandler; - -// Zip -// default compression level is Z_DEFAULT_COMPRESSION (from "zlib.h") -// keepParentDirectory: if YES, then unzipping will give `directoryName/fileName`. If NO, then unzipping will just give `fileName`. Default is NO. - -// without password -+ (BOOL)createZipFileAtPath:(NSString *)path withFilesAtPaths:(NSArray *)paths; -+ (BOOL)createZipFileAtPath:(NSString *)path withContentsOfDirectory:(NSString *)directoryPath; - -+ (BOOL)createZipFileAtPath:(NSString *)path withContentsOfDirectory:(NSString *)directoryPath keepParentDirectory:(BOOL)keepParentDirectory; - -// with optional password, default encryption is AES -// don't use AES if you need compatibility with native macOS unzip and Archive Utility -+ (BOOL)createZipFileAtPath:(NSString *)path withFilesAtPaths:(NSArray *)paths withPassword:(nullable NSString *)password; -+ (BOOL)createZipFileAtPath:(NSString *)path withContentsOfDirectory:(NSString *)directoryPath withPassword:(nullable NSString *)password; -+ (BOOL)createZipFileAtPath:(NSString *)path withContentsOfDirectory:(NSString *)directoryPath keepParentDirectory:(BOOL)keepParentDirectory withPassword:(nullable NSString *)password; -+ (BOOL)createZipFileAtPath:(NSString *)path - withContentsOfDirectory:(NSString *)directoryPath - keepParentDirectory:(BOOL)keepParentDirectory - withPassword:(nullable NSString *)password - andProgressHandler:(void(^ _Nullable)(NSUInteger entryNumber, NSUInteger total))progressHandler; -+ (BOOL)createZipFileAtPath:(NSString *)path - withContentsOfDirectory:(NSString *)directoryPath - keepParentDirectory:(BOOL)keepParentDirectory - compressionLevel:(int)compressionLevel - password:(nullable NSString *)password - AES:(BOOL)aes - progressHandler:(void(^ _Nullable)(NSUInteger entryNumber, NSUInteger total))progressHandler; - -- (instancetype)init NS_UNAVAILABLE; -- (instancetype)initWithPath:(NSString *)path NS_DESIGNATED_INITIALIZER; -- (BOOL)open; - -/// write empty folder -- (BOOL)writeFolderAtPath:(NSString *)path withFolderName:(NSString *)folderName withPassword:(nullable NSString *)password; -/// write file -- (BOOL)writeFile:(NSString *)path withPassword:(nullable NSString *)password; -- (BOOL)writeFileAtPath:(NSString *)path withFileName:(nullable NSString *)fileName withPassword:(nullable NSString *)password; -- (BOOL)writeFileAtPath:(NSString *)path withFileName:(nullable NSString *)fileName compressionLevel:(int)compressionLevel password:(nullable NSString *)password AES:(BOOL)aes; -/// write data -- (BOOL)writeData:(NSData *)data filename:(nullable NSString *)filename withPassword:(nullable NSString *)password; -- (BOOL)writeData:(NSData *)data filename:(nullable NSString *)filename compressionLevel:(int)compressionLevel password:(nullable NSString *)password AES:(BOOL)aes; - -- (BOOL)close; - -@end - -@protocol SSZipArchiveDelegate - -@optional - -- (void)zipArchiveWillUnzipArchiveAtPath:(NSString *)path zipInfo:(unz_global_info)zipInfo; -- (void)zipArchiveDidUnzipArchiveAtPath:(NSString *)path zipInfo:(unz_global_info)zipInfo unzippedPath:(NSString *)unzippedPath; - -- (BOOL)zipArchiveShouldUnzipFileAtIndex:(NSInteger)fileIndex totalFiles:(NSInteger)totalFiles archivePath:(NSString *)archivePath fileInfo:(unz_file_info)fileInfo; -- (void)zipArchiveWillUnzipFileAtIndex:(NSInteger)fileIndex totalFiles:(NSInteger)totalFiles archivePath:(NSString *)archivePath fileInfo:(unz_file_info)fileInfo; -- (void)zipArchiveDidUnzipFileAtIndex:(NSInteger)fileIndex totalFiles:(NSInteger)totalFiles archivePath:(NSString *)archivePath fileInfo:(unz_file_info)fileInfo; -- (void)zipArchiveDidUnzipFileAtIndex:(NSInteger)fileIndex totalFiles:(NSInteger)totalFiles archivePath:(NSString *)archivePath unzippedFilePath:(NSString *)unzippedFilePath; - -- (void)zipArchiveProgressEvent:(unsigned long long)loaded total:(unsigned long long)total; - -@end - -NS_ASSUME_NONNULL_END - -#endif /* _SSZIPARCHIVE_H */ diff --git a/Pods/SSZipArchive/SSZipArchive/SSZipArchive.m b/Pods/SSZipArchive/SSZipArchive/SSZipArchive.m deleted file mode 100644 index 19f9620af..000000000 --- a/Pods/SSZipArchive/SSZipArchive/SSZipArchive.m +++ /dev/null @@ -1,1284 +0,0 @@ -// -// SSZipArchive.m -// SSZipArchive -// -// Created by Sam Soffes on 7/21/10. -// Copyright (c) Sam Soffes 2010-2015. All rights reserved. -// - -#import "SSZipArchive.h" -#include "minizip/mz_compat.h" -#include "minizip/mz_zip.h" -#include -#include - -NSString *const SSZipArchiveErrorDomain = @"SSZipArchiveErrorDomain"; - -#define CHUNK 16384 - -int _zipOpenEntry(zipFile entry, NSString *name, const zip_fileinfo *zipfi, int level, NSString *password, BOOL aes); -BOOL _fileIsSymbolicLink(const unz_file_info *fileInfo); - -#ifndef API_AVAILABLE -// Xcode 7- compatibility -#define API_AVAILABLE(...) -#endif - -@interface NSData(SSZipArchive) -- (NSString *)_base64RFC4648 API_AVAILABLE(macos(10.9), ios(7.0), watchos(2.0), tvos(9.0)); -- (NSString *)_hexString; -@end - -@interface NSString (SSZipArchive) -- (NSString *)_sanitizedPath; -@end - -@interface SSZipArchive () -- (instancetype)init NS_DESIGNATED_INITIALIZER; -@end - -@implementation SSZipArchive -{ - /// path for zip file - NSString *_path; - zipFile _zip; -} - -#pragma mark - Password check - -+ (BOOL)isFilePasswordProtectedAtPath:(NSString *)path { - // Begin opening - zipFile zip = unzOpen(path.fileSystemRepresentation); - if (zip == NULL) { - return NO; - } - - BOOL passwordProtected = NO; - int ret = unzGoToFirstFile(zip); - if (ret == UNZ_OK) { - do { - ret = unzOpenCurrentFile(zip); - if (ret != UNZ_OK) { - // attempting with an arbitrary password to workaround `unzOpenCurrentFile` limitation on AES encrypted files - ret = unzOpenCurrentFilePassword(zip, ""); - unzCloseCurrentFile(zip); - if (ret == UNZ_OK || ret == MZ_PASSWORD_ERROR) { - passwordProtected = YES; - } - break; - } - unz_file_info fileInfo = {}; - ret = unzGetCurrentFileInfo(zip, &fileInfo, NULL, 0, NULL, 0, NULL, 0); - unzCloseCurrentFile(zip); - if (ret != UNZ_OK) { - break; - } else if ((fileInfo.flag & MZ_ZIP_FLAG_ENCRYPTED) == 1) { - passwordProtected = YES; - break; - } - - ret = unzGoToNextFile(zip); - } while (ret == UNZ_OK); - } - - unzClose(zip); - return passwordProtected; -} - -+ (BOOL)isPasswordValidForArchiveAtPath:(NSString *)path password:(NSString *)pw error:(NSError **)error { - if (error) { - *error = nil; - } - - zipFile zip = unzOpen(path.fileSystemRepresentation); - if (zip == NULL) { - if (error) { - *error = [NSError errorWithDomain:SSZipArchiveErrorDomain - code:SSZipArchiveErrorCodeFailedOpenZipFile - userInfo:@{NSLocalizedDescriptionKey: @"failed to open zip file"}]; - } - return NO; - } - - // Initialize passwordValid to YES (No password required) - BOOL passwordValid = YES; - int ret = unzGoToFirstFile(zip); - if (ret == UNZ_OK) { - do { - if (pw.length == 0) { - ret = unzOpenCurrentFile(zip); - } else { - ret = unzOpenCurrentFilePassword(zip, [pw cStringUsingEncoding:NSUTF8StringEncoding]); - } - if (ret != UNZ_OK) { - if (ret != MZ_PASSWORD_ERROR) { - if (error) { - *error = [NSError errorWithDomain:SSZipArchiveErrorDomain - code:SSZipArchiveErrorCodeFailedOpenFileInZip - userInfo:@{NSLocalizedDescriptionKey: @"failed to open file in zip archive"}]; - } - } - passwordValid = NO; - break; - } - unz_file_info fileInfo = {}; - ret = unzGetCurrentFileInfo(zip, &fileInfo, NULL, 0, NULL, 0, NULL, 0); - if (ret != UNZ_OK) { - if (error) { - *error = [NSError errorWithDomain:SSZipArchiveErrorDomain - code:SSZipArchiveErrorCodeFileInfoNotLoadable - userInfo:@{NSLocalizedDescriptionKey: @"failed to retrieve info for file"}]; - } - passwordValid = NO; - break; - } else if ((fileInfo.flag & 1) == 1) { - unsigned char buffer[10] = {0}; - int readBytes = unzReadCurrentFile(zip, buffer, (unsigned)MIN(10UL,fileInfo.uncompressed_size)); - if (readBytes < 0) { - // Let's assume error Z_DATA_ERROR is caused by an invalid password - // Let's assume other errors are caused by Content Not Readable - if (readBytes != Z_DATA_ERROR) { - if (error) { - *error = [NSError errorWithDomain:SSZipArchiveErrorDomain - code:SSZipArchiveErrorCodeFileContentNotReadable - userInfo:@{NSLocalizedDescriptionKey: @"failed to read contents of file entry"}]; - } - } - passwordValid = NO; - break; - } - passwordValid = YES; - break; - } - - unzCloseCurrentFile(zip); - ret = unzGoToNextFile(zip); - } while (ret == UNZ_OK); - } - - unzClose(zip); - return passwordValid; -} - -+ (NSNumber *)payloadSizeForArchiveAtPath:(NSString *)path error:(NSError **)error { - if (error) { - *error = nil; - } - - zipFile zip = unzOpen(path.fileSystemRepresentation); - if (zip == NULL) { - if (error) { - *error = [NSError errorWithDomain:SSZipArchiveErrorDomain - code:SSZipArchiveErrorCodeFailedOpenZipFile - userInfo:@{NSLocalizedDescriptionKey: @"failed to open zip file"}]; - } - return @0; - } - - unsigned long long totalSize = 0; - int ret = unzGoToFirstFile(zip); - if (ret == UNZ_OK) { - do { - ret = unzOpenCurrentFile(zip); - if (ret != UNZ_OK) { - if (error) { - *error = [NSError errorWithDomain:SSZipArchiveErrorDomain - code:SSZipArchiveErrorCodeFailedOpenFileInZip - userInfo:@{NSLocalizedDescriptionKey: @"failed to open file in zip archive"}]; - } - break; - } - unz_file_info fileInfo = {}; - ret = unzGetCurrentFileInfo(zip, &fileInfo, NULL, 0, NULL, 0, NULL, 0); - if (ret != UNZ_OK) { - if (error) { - *error = [NSError errorWithDomain:SSZipArchiveErrorDomain - code:SSZipArchiveErrorCodeFileInfoNotLoadable - userInfo:@{NSLocalizedDescriptionKey: @"failed to retrieve info for file"}]; - } - break; - } - - totalSize += fileInfo.uncompressed_size; - - unzCloseCurrentFile(zip); - ret = unzGoToNextFile(zip); - } while (ret == UNZ_OK); - } - - unzClose(zip); - - return [NSNumber numberWithUnsignedLongLong:totalSize]; -} - -#pragma mark - Unzipping - -+ (BOOL)unzipFileAtPath:(NSString *)path toDestination:(NSString *)destination -{ - return [self unzipFileAtPath:path toDestination:destination delegate:nil]; -} - -+ (BOOL)unzipFileAtPath:(NSString *)path toDestination:(NSString *)destination overwrite:(BOOL)overwrite password:(nullable NSString *)password error:(NSError **)error -{ - return [self unzipFileAtPath:path toDestination:destination preserveAttributes:YES overwrite:overwrite password:password error:error delegate:nil progressHandler:nil completionHandler:nil]; -} - -+ (BOOL)unzipFileAtPath:(NSString *)path toDestination:(NSString *)destination delegate:(nullable id)delegate -{ - return [self unzipFileAtPath:path toDestination:destination preserveAttributes:YES overwrite:YES password:nil error:nil delegate:delegate progressHandler:nil completionHandler:nil]; -} - -+ (BOOL)unzipFileAtPath:(NSString *)path - toDestination:(NSString *)destination - overwrite:(BOOL)overwrite - password:(nullable NSString *)password - error:(NSError **)error - delegate:(nullable id)delegate -{ - return [self unzipFileAtPath:path toDestination:destination preserveAttributes:YES overwrite:overwrite password:password error:error delegate:delegate progressHandler:nil completionHandler:nil]; -} - -+ (BOOL)unzipFileAtPath:(NSString *)path - toDestination:(NSString *)destination - overwrite:(BOOL)overwrite - password:(NSString *)password - progressHandler:(void (^)(NSString *entry, unz_file_info zipInfo, long entryNumber, long total))progressHandler - completionHandler:(void (^)(NSString *path, BOOL succeeded, NSError * _Nullable error))completionHandler -{ - return [self unzipFileAtPath:path toDestination:destination preserveAttributes:YES overwrite:overwrite password:password error:nil delegate:nil progressHandler:progressHandler completionHandler:completionHandler]; -} - -+ (BOOL)unzipFileAtPath:(NSString *)path - toDestination:(NSString *)destination - progressHandler:(void (^_Nullable)(NSString *entry, unz_file_info zipInfo, long entryNumber, long total))progressHandler - completionHandler:(void (^_Nullable)(NSString *path, BOOL succeeded, NSError * _Nullable error))completionHandler -{ - return [self unzipFileAtPath:path toDestination:destination preserveAttributes:YES overwrite:YES password:nil error:nil delegate:nil progressHandler:progressHandler completionHandler:completionHandler]; -} - -+ (BOOL)unzipFileAtPath:(NSString *)path - toDestination:(NSString *)destination - preserveAttributes:(BOOL)preserveAttributes - overwrite:(BOOL)overwrite - password:(nullable NSString *)password - error:(NSError * *)error - delegate:(nullable id)delegate -{ - return [self unzipFileAtPath:path toDestination:destination preserveAttributes:preserveAttributes overwrite:overwrite password:password error:error delegate:delegate progressHandler:nil completionHandler:nil]; -} - -+ (BOOL)unzipFileAtPath:(NSString *)path - toDestination:(NSString *)destination - preserveAttributes:(BOOL)preserveAttributes - overwrite:(BOOL)overwrite - password:(nullable NSString *)password - error:(NSError **)error - delegate:(nullable id)delegate - progressHandler:(void (^_Nullable)(NSString *entry, unz_file_info zipInfo, long entryNumber, long total))progressHandler - completionHandler:(void (^_Nullable)(NSString *path, BOOL succeeded, NSError * _Nullable error))completionHandler -{ - return [self unzipFileAtPath:path toDestination:destination preserveAttributes:preserveAttributes overwrite:overwrite nestedZipLevel:0 password:password error:error delegate:delegate progressHandler:progressHandler completionHandler:completionHandler]; -} - -+ (BOOL)unzipFileAtPath:(NSString *)path - toDestination:(NSString *)destination - preserveAttributes:(BOOL)preserveAttributes - overwrite:(BOOL)overwrite - nestedZipLevel:(NSInteger)nestedZipLevel - password:(nullable NSString *)password - error:(NSError **)error - delegate:(nullable id)delegate - progressHandler:(void (^_Nullable)(NSString *entry, unz_file_info zipInfo, long entryNumber, long total))progressHandler - completionHandler:(void (^_Nullable)(NSString *path, BOOL succeeded, NSError * _Nullable error))completionHandler -{ - // Guard against empty strings - if (path.length == 0 || destination.length == 0) - { - NSDictionary *userInfo = @{NSLocalizedDescriptionKey: @"received invalid argument(s)"}; - NSError *err = [NSError errorWithDomain:SSZipArchiveErrorDomain code:SSZipArchiveErrorCodeInvalidArguments userInfo:userInfo]; - if (error) - { - *error = err; - } - if (completionHandler) - { - completionHandler(nil, NO, err); - } - return NO; - } - - // Begin opening - zipFile zip = unzOpen(path.fileSystemRepresentation); - if (zip == NULL) - { - NSDictionary *userInfo = @{NSLocalizedDescriptionKey: @"failed to open zip file"}; - NSError *err = [NSError errorWithDomain:SSZipArchiveErrorDomain code:SSZipArchiveErrorCodeFailedOpenZipFile userInfo:userInfo]; - if (error) - { - *error = err; - } - if (completionHandler) - { - completionHandler(nil, NO, err); - } - return NO; - } - - NSDictionary * fileAttributes = [[NSFileManager defaultManager] attributesOfItemAtPath:path error:nil]; - unsigned long long fileSize = [[fileAttributes objectForKey:NSFileSize] unsignedLongLongValue]; - unsigned long long currentPosition = 0; - - unz_global_info globalInfo = {}; - unzGetGlobalInfo(zip, &globalInfo); - - // Begin unzipping - int ret = 0; - ret = unzGoToFirstFile(zip); - if (ret != UNZ_OK && ret != MZ_END_OF_LIST) - { - NSDictionary *userInfo = @{NSLocalizedDescriptionKey: @"failed to open first file in zip file"}; - NSError *err = [NSError errorWithDomain:SSZipArchiveErrorDomain code:SSZipArchiveErrorCodeFailedOpenFileInZip userInfo:userInfo]; - if (error) - { - *error = err; - } - if (completionHandler) - { - completionHandler(nil, NO, err); - } - unzClose(zip); - return NO; - } - - BOOL success = YES; - BOOL canceled = NO; - int crc_ret = 0; - unsigned char buffer[4096] = {0}; - NSFileManager *fileManager = [NSFileManager defaultManager]; - NSMutableArray *directoriesModificationDates = [[NSMutableArray alloc] init]; - - // Message delegate - if ([delegate respondsToSelector:@selector(zipArchiveWillUnzipArchiveAtPath:zipInfo:)]) { - [delegate zipArchiveWillUnzipArchiveAtPath:path zipInfo:globalInfo]; - } - if ([delegate respondsToSelector:@selector(zipArchiveProgressEvent:total:)]) { - [delegate zipArchiveProgressEvent:currentPosition total:fileSize]; - } - - NSInteger currentFileNumber = -1; - NSError *unzippingError; - do { - currentFileNumber++; - if (ret == MZ_END_OF_LIST) { - break; - } - @autoreleasepool { - if (password.length == 0) { - ret = unzOpenCurrentFile(zip); - } else { - ret = unzOpenCurrentFilePassword(zip, [password cStringUsingEncoding:NSUTF8StringEncoding]); - } - - if (ret != UNZ_OK) { - unzippingError = [NSError errorWithDomain:@"SSZipArchiveErrorDomain" code:SSZipArchiveErrorCodeFailedOpenFileInZip userInfo:@{NSLocalizedDescriptionKey: @"failed to open file in zip file"}]; - success = NO; - break; - } - - // Reading data and write to file - unz_file_info fileInfo; - memset(&fileInfo, 0, sizeof(unz_file_info)); - - ret = unzGetCurrentFileInfo(zip, &fileInfo, NULL, 0, NULL, 0, NULL, 0); - if (ret != UNZ_OK) { - unzippingError = [NSError errorWithDomain:@"SSZipArchiveErrorDomain" code:SSZipArchiveErrorCodeFileInfoNotLoadable userInfo:@{NSLocalizedDescriptionKey: @"failed to retrieve info for file"}]; - success = NO; - unzCloseCurrentFile(zip); - break; - } - - currentPosition += fileInfo.compressed_size; - - // Message delegate - if ([delegate respondsToSelector:@selector(zipArchiveShouldUnzipFileAtIndex:totalFiles:archivePath:fileInfo:)]) { - if (![delegate zipArchiveShouldUnzipFileAtIndex:currentFileNumber - totalFiles:(NSInteger)globalInfo.number_entry - archivePath:path - fileInfo:fileInfo]) { - success = NO; - canceled = YES; - break; - } - } - if ([delegate respondsToSelector:@selector(zipArchiveWillUnzipFileAtIndex:totalFiles:archivePath:fileInfo:)]) { - [delegate zipArchiveWillUnzipFileAtIndex:currentFileNumber totalFiles:(NSInteger)globalInfo.number_entry - archivePath:path fileInfo:fileInfo]; - } - if ([delegate respondsToSelector:@selector(zipArchiveProgressEvent:total:)]) { - [delegate zipArchiveProgressEvent:(NSInteger)currentPosition total:(NSInteger)fileSize]; - } - - char *filename = (char *)malloc(fileInfo.size_filename + 1); - if (filename == NULL) - { - success = NO; - break; - } - - unzGetCurrentFileInfo(zip, &fileInfo, filename, fileInfo.size_filename + 1, NULL, 0, NULL, 0); - filename[fileInfo.size_filename] = '\0'; - - BOOL fileIsSymbolicLink = _fileIsSymbolicLink(&fileInfo); - - NSString * strPath = [SSZipArchive _filenameStringWithCString:filename - version_made_by:fileInfo.version - general_purpose_flag:fileInfo.flag - size:fileInfo.size_filename]; - if ([strPath hasPrefix:@"__MACOSX/"]) { - // ignoring resource forks: https://superuser.com/questions/104500/what-is-macosx-folder - unzCloseCurrentFile(zip); - ret = unzGoToNextFile(zip); - free(filename); - continue; - } - - // Check if it contains directory - BOOL isDirectory = NO; - if (filename[fileInfo.size_filename-1] == '/' || filename[fileInfo.size_filename-1] == '\\') { - isDirectory = YES; - } - free(filename); - - // Sanitize paths in the file name. - strPath = [strPath _sanitizedPath]; - if (!strPath.length) { - // if filename data is unsalvageable, we default to currentFileNumber - strPath = @(currentFileNumber).stringValue; - } - - NSString *fullPath = [destination stringByAppendingPathComponent:strPath]; - NSError *err = nil; - NSDictionary *directoryAttr; - if (preserveAttributes) { - NSDate *modDate = [[self class] _dateWithMSDOSFormat:(UInt32)fileInfo.mz_dos_date]; - directoryAttr = @{NSFileCreationDate: modDate, NSFileModificationDate: modDate}; - [directoriesModificationDates addObject: @{@"path": fullPath, @"modDate": modDate}]; - } - if (isDirectory) { - [fileManager createDirectoryAtPath:fullPath withIntermediateDirectories:YES attributes:directoryAttr error:&err]; - } else { - [fileManager createDirectoryAtPath:fullPath.stringByDeletingLastPathComponent withIntermediateDirectories:YES attributes:directoryAttr error:&err]; - } - if (err != nil) { - if ([err.domain isEqualToString:NSCocoaErrorDomain] && - err.code == 640) { - unzippingError = err; - unzCloseCurrentFile(zip); - success = NO; - break; - } - NSLog(@"[SSZipArchive] Error: %@", err.localizedDescription); - } - - if ([fileManager fileExistsAtPath:fullPath] && !isDirectory && !overwrite) { - //FIXME: couldBe CRC Check? - unzCloseCurrentFile(zip); - ret = unzGoToNextFile(zip); - continue; - } - - if (isDirectory && !fileIsSymbolicLink) { - // nothing to read/write for a directory - } else if (!fileIsSymbolicLink) { - // ensure we are not creating stale file entries - int readBytes = unzReadCurrentFile(zip, buffer, 4096); - if (readBytes >= 0) { - FILE *fp = fopen(fullPath.fileSystemRepresentation, "wb"); - while (fp) { - if (readBytes > 0) { - if (0 == fwrite(buffer, readBytes, 1, fp)) { - if (ferror(fp)) { - NSString *message = [NSString stringWithFormat:@"Failed to write file (check your free space)"]; - NSLog(@"[SSZipArchive] %@", message); - success = NO; - unzippingError = [NSError errorWithDomain:@"SSZipArchiveErrorDomain" code:SSZipArchiveErrorCodeFailedToWriteFile userInfo:@{NSLocalizedDescriptionKey: message}]; - break; - } - } - } else { - break; - } - readBytes = unzReadCurrentFile(zip, buffer, 4096); - if (readBytes < 0) { - // Let's assume error Z_DATA_ERROR is caused by an invalid password - // Let's assume other errors are caused by Content Not Readable - success = NO; - } - } - - if (fp) { - fclose(fp); - - if (nestedZipLevel - && [fullPath.pathExtension.lowercaseString isEqualToString:@"zip"] - && [self unzipFileAtPath:fullPath - toDestination:fullPath.stringByDeletingLastPathComponent - preserveAttributes:preserveAttributes - overwrite:overwrite - nestedZipLevel:nestedZipLevel - 1 - password:password - error:nil - delegate:nil - progressHandler:nil - completionHandler:nil]) { - [directoriesModificationDates removeLastObject]; - [[NSFileManager defaultManager] removeItemAtPath:fullPath error:nil]; - } else if (preserveAttributes) { - - // Set the original datetime property - if (fileInfo.mz_dos_date != 0) { - NSDate *orgDate = [[self class] _dateWithMSDOSFormat:(UInt32)fileInfo.mz_dos_date]; - NSDictionary *attr = @{NSFileModificationDate: orgDate}; - - if (attr) { - if (![fileManager setAttributes:attr ofItemAtPath:fullPath error:nil]) { - // Can't set attributes - NSLog(@"[SSZipArchive] Failed to set attributes - whilst setting modification date"); - } - } - } - - // Set the original permissions on the file (+read/write to solve #293) - uLong permissions = fileInfo.external_fa >> 16 | 0b110000000; - if (permissions != 0) { - // Store it into a NSNumber - NSNumber *permissionsValue = @(permissions); - - // Retrieve any existing attributes - NSMutableDictionary *attrs = [[NSMutableDictionary alloc] initWithDictionary:[fileManager attributesOfItemAtPath:fullPath error:nil]]; - - // Set the value in the attributes dict - [attrs setObject:permissionsValue forKey:NSFilePosixPermissions]; - - // Update attributes - if (![fileManager setAttributes:attrs ofItemAtPath:fullPath error:nil]) { - // Unable to set the permissions attribute - NSLog(@"[SSZipArchive] Failed to set attributes - whilst setting permissions"); - } - } - } - } - else - { - // if we couldn't open file descriptor we can validate global errno to see the reason - int errnoSave = errno; - BOOL isSeriousError = NO; - switch (errnoSave) { - case EISDIR: - // Is a directory - // assumed case - break; - - case ENOSPC: - case EMFILE: - // No space left on device - // or - // Too many open files - isSeriousError = YES; - break; - - default: - // ignore case - // Just log the error - { - NSError *errorObject = [NSError errorWithDomain:NSPOSIXErrorDomain - code:errnoSave - userInfo:nil]; - NSLog(@"[SSZipArchive] Failed to open file on unzipping.(%@)", errorObject); - } - break; - } - - if (isSeriousError) { - // serious case - unzippingError = [NSError errorWithDomain:NSPOSIXErrorDomain - code:errnoSave - userInfo:nil]; - unzCloseCurrentFile(zip); - // Log the error - NSLog(@"[SSZipArchive] Failed to open file on unzipping.(%@)", unzippingError); - - // Break unzipping - success = NO; - break; - } - } - } else { - // Let's assume error Z_DATA_ERROR is caused by an invalid password - // Let's assume other errors are caused by Content Not Readable - success = NO; - break; - } - } - else - { - // Assemble the path for the symbolic link - NSMutableString *destinationPath = [NSMutableString string]; - int bytesRead = 0; - while ((bytesRead = unzReadCurrentFile(zip, buffer, 4096)) > 0) - { - buffer[bytesRead] = 0; - [destinationPath appendString:@((const char *)buffer)]; - } - if (bytesRead < 0) { - // Let's assume error Z_DATA_ERROR is caused by an invalid password - // Let's assume other errors are caused by Content Not Readable - success = NO; - break; - } - - // Check if the symlink exists and delete it if we're overwriting - if (overwrite) - { - if ([fileManager fileExistsAtPath:fullPath]) - { - NSError *localError = nil; - BOOL removeSuccess = [fileManager removeItemAtPath:fullPath error:&localError]; - if (!removeSuccess) - { - NSString *message = [NSString stringWithFormat:@"Failed to delete existing symbolic link at \"%@\"", localError.localizedDescription]; - NSLog(@"[SSZipArchive] %@", message); - success = NO; - unzippingError = [NSError errorWithDomain:SSZipArchiveErrorDomain code:localError.code userInfo:@{NSLocalizedDescriptionKey: message}]; - } - } - } - - // Create the symbolic link (making sure it stays relative if it was relative before) - int symlinkError = symlink([destinationPath cStringUsingEncoding:NSUTF8StringEncoding], - [fullPath cStringUsingEncoding:NSUTF8StringEncoding]); - - if (symlinkError != 0) - { - // Bubble the error up to the completion handler - NSString *message = [NSString stringWithFormat:@"Failed to create symbolic link at \"%@\" to \"%@\" - symlink() error code: %d", fullPath, destinationPath, errno]; - NSLog(@"[SSZipArchive] %@", message); - success = NO; - unzippingError = [NSError errorWithDomain:NSPOSIXErrorDomain code:symlinkError userInfo:@{NSLocalizedDescriptionKey: message}]; - } - } - - crc_ret = unzCloseCurrentFile(zip); - if (crc_ret == MZ_CRC_ERROR) { - // CRC ERROR - success = NO; - break; - } - ret = unzGoToNextFile(zip); - - // Message delegate - if ([delegate respondsToSelector:@selector(zipArchiveDidUnzipFileAtIndex:totalFiles:archivePath:fileInfo:)]) { - [delegate zipArchiveDidUnzipFileAtIndex:currentFileNumber totalFiles:(NSInteger)globalInfo.number_entry - archivePath:path fileInfo:fileInfo]; - } else if ([delegate respondsToSelector: @selector(zipArchiveDidUnzipFileAtIndex:totalFiles:archivePath:unzippedFilePath:)]) { - [delegate zipArchiveDidUnzipFileAtIndex: currentFileNumber totalFiles: (NSInteger)globalInfo.number_entry - archivePath:path unzippedFilePath: fullPath]; - } - - if (progressHandler) - { - progressHandler(strPath, fileInfo, currentFileNumber, globalInfo.number_entry); - } - } - } while (ret == UNZ_OK && success); - - // Close - unzClose(zip); - - // The process of decompressing the .zip archive causes the modification times on the folders - // to be set to the present time. So, when we are done, they need to be explicitly set. - // set the modification date on all of the directories. - if (success && preserveAttributes) { - NSError * err = nil; - for (NSDictionary * d in directoriesModificationDates) { - if (![[NSFileManager defaultManager] setAttributes:@{NSFileModificationDate: [d objectForKey:@"modDate"]} ofItemAtPath:[d objectForKey:@"path"] error:&err]) { - NSLog(@"[SSZipArchive] Set attributes failed for directory: %@.", [d objectForKey:@"path"]); - } - if (err) { - NSLog(@"[SSZipArchive] Error setting directory file modification date attribute: %@", err.localizedDescription); - } - } - } - - // Message delegate - if (success && [delegate respondsToSelector:@selector(zipArchiveDidUnzipArchiveAtPath:zipInfo:unzippedPath:)]) { - [delegate zipArchiveDidUnzipArchiveAtPath:path zipInfo:globalInfo unzippedPath:destination]; - } - // final progress event = 100% - if (!canceled && [delegate respondsToSelector:@selector(zipArchiveProgressEvent:total:)]) { - [delegate zipArchiveProgressEvent:fileSize total:fileSize]; - } - - NSError *retErr = nil; - if (crc_ret == MZ_CRC_ERROR) - { - NSDictionary *userInfo = @{NSLocalizedDescriptionKey: @"crc check failed for file"}; - retErr = [NSError errorWithDomain:SSZipArchiveErrorDomain code:SSZipArchiveErrorCodeFileInfoNotLoadable userInfo:userInfo]; - } - - if (error) { - if (unzippingError) { - *error = unzippingError; - } - else { - *error = retErr; - } - } - if (completionHandler) - { - if (unzippingError) { - completionHandler(path, success, unzippingError); - } - else - { - completionHandler(path, success, retErr); - } - } - return success; -} - -#pragma mark - Zipping -+ (BOOL)createZipFileAtPath:(NSString *)path withFilesAtPaths:(NSArray *)paths -{ - return [SSZipArchive createZipFileAtPath:path withFilesAtPaths:paths withPassword:nil]; -} -+ (BOOL)createZipFileAtPath:(NSString *)path withContentsOfDirectory:(NSString *)directoryPath { - return [SSZipArchive createZipFileAtPath:path withContentsOfDirectory:directoryPath withPassword:nil]; -} - -+ (BOOL)createZipFileAtPath:(NSString *)path withContentsOfDirectory:(NSString *)directoryPath keepParentDirectory:(BOOL)keepParentDirectory { - return [SSZipArchive createZipFileAtPath:path withContentsOfDirectory:directoryPath keepParentDirectory:keepParentDirectory withPassword:nil]; -} - -+ (BOOL)createZipFileAtPath:(NSString *)path withFilesAtPaths:(NSArray *)paths withPassword:(NSString *)password -{ - SSZipArchive *zipArchive = [[SSZipArchive alloc] initWithPath:path]; - BOOL success = [zipArchive open]; - if (success) { - for (NSString *filePath in paths) { - success &= [zipArchive writeFile:filePath withPassword:password]; - } - success &= [zipArchive close]; - } - return success; -} - -+ (BOOL)createZipFileAtPath:(NSString *)path withContentsOfDirectory:(NSString *)directoryPath withPassword:(nullable NSString *)password { - return [SSZipArchive createZipFileAtPath:path withContentsOfDirectory:directoryPath keepParentDirectory:NO withPassword:password]; -} - - -+ (BOOL)createZipFileAtPath:(NSString *)path withContentsOfDirectory:(NSString *)directoryPath keepParentDirectory:(BOOL)keepParentDirectory withPassword:(nullable NSString *)password { - return [SSZipArchive createZipFileAtPath:path - withContentsOfDirectory:directoryPath - keepParentDirectory:keepParentDirectory - withPassword:password - andProgressHandler:nil - ]; -} - -+ (BOOL)createZipFileAtPath:(NSString *)path - withContentsOfDirectory:(NSString *)directoryPath - keepParentDirectory:(BOOL)keepParentDirectory - withPassword:(nullable NSString *)password - andProgressHandler:(void(^ _Nullable)(NSUInteger entryNumber, NSUInteger total))progressHandler { - return [self createZipFileAtPath:path withContentsOfDirectory:directoryPath keepParentDirectory:keepParentDirectory compressionLevel:Z_DEFAULT_COMPRESSION password:password AES:YES progressHandler:progressHandler]; -} - -+ (BOOL)createZipFileAtPath:(NSString *)path - withContentsOfDirectory:(NSString *)directoryPath - keepParentDirectory:(BOOL)keepParentDirectory - compressionLevel:(int)compressionLevel - password:(nullable NSString *)password - AES:(BOOL)aes - progressHandler:(void(^ _Nullable)(NSUInteger entryNumber, NSUInteger total))progressHandler { - - SSZipArchive *zipArchive = [[SSZipArchive alloc] initWithPath:path]; - BOOL success = [zipArchive open]; - if (success) { - // use a local fileManager (queue/thread compatibility) - NSFileManager *fileManager = [[NSFileManager alloc] init]; - NSDirectoryEnumerator *dirEnumerator = [fileManager enumeratorAtPath:directoryPath]; - NSArray *allObjects = dirEnumerator.allObjects; - NSUInteger total = allObjects.count, complete = 0; - if (keepParentDirectory && !total) { - allObjects = @[@""]; - total = 1; - } - for (__strong NSString *fileName in allObjects) { - NSString *fullFilePath = [directoryPath stringByAppendingPathComponent:fileName]; - - if (keepParentDirectory) { - fileName = [directoryPath.lastPathComponent stringByAppendingPathComponent:fileName]; - } - - BOOL isDir; - [fileManager fileExistsAtPath:fullFilePath isDirectory:&isDir]; - if (!isDir) { - // file - success &= [zipArchive writeFileAtPath:fullFilePath withFileName:fileName compressionLevel:compressionLevel password:password AES:aes]; - } else { - // directory - if (![fileManager enumeratorAtPath:fullFilePath].nextObject) { - // empty directory - success &= [zipArchive writeFolderAtPath:fullFilePath withFolderName:fileName withPassword:password]; - } - } - if (progressHandler) { - complete++; - progressHandler(complete, total); - } - } - success &= [zipArchive close]; - } - return success; -} - -// disabling `init` because designated initializer is `initWithPath:` -- (instancetype)init { @throw nil; } - -// designated initializer -- (instancetype)initWithPath:(NSString *)path -{ - if ((self = [super init])) { - _path = [path copy]; - } - return self; -} - - -- (BOOL)open -{ - NSAssert((_zip == NULL), @"Attempting to open an archive which is already open"); - _zip = zipOpen(_path.fileSystemRepresentation, APPEND_STATUS_CREATE); - return (NULL != _zip); -} - -- (BOOL)writeFolderAtPath:(NSString *)path withFolderName:(NSString *)folderName withPassword:(nullable NSString *)password -{ - NSAssert((_zip != NULL), @"Attempting to write to an archive which was never opened"); - - zip_fileinfo zipInfo = {}; - - [SSZipArchive zipInfo:&zipInfo setAttributesOfItemAtPath:path]; - - int error = _zipOpenEntry(_zip, [folderName stringByAppendingString:@"/"], &zipInfo, Z_NO_COMPRESSION, password, NO); - const void *buffer = NULL; - zipWriteInFileInZip(_zip, buffer, 0); - zipCloseFileInZip(_zip); - return error == ZIP_OK; -} - -- (BOOL)writeFile:(NSString *)path withPassword:(nullable NSString *)password -{ - return [self writeFileAtPath:path withFileName:nil withPassword:password]; -} - -- (BOOL)writeFileAtPath:(NSString *)path withFileName:(nullable NSString *)fileName withPassword:(nullable NSString *)password -{ - return [self writeFileAtPath:path withFileName:fileName compressionLevel:Z_DEFAULT_COMPRESSION password:password AES:YES]; -} - -// supports writing files with logical folder/directory structure -// *path* is the absolute path of the file that will be compressed -// *fileName* is the relative name of the file how it is stored within the zip e.g. /folder/subfolder/text1.txt -- (BOOL)writeFileAtPath:(NSString *)path withFileName:(nullable NSString *)fileName compressionLevel:(int)compressionLevel password:(nullable NSString *)password AES:(BOOL)aes -{ - NSAssert((_zip != NULL), @"Attempting to write to an archive which was never opened"); - - FILE *input = fopen(path.fileSystemRepresentation, "r"); - if (NULL == input) { - return NO; - } - - if (!fileName) { - fileName = path.lastPathComponent; - } - - zip_fileinfo zipInfo = {}; - - [SSZipArchive zipInfo:&zipInfo setAttributesOfItemAtPath:path]; - - void *buffer = malloc(CHUNK); - if (buffer == NULL) - { - fclose(input); - return NO; - } - - int error = _zipOpenEntry(_zip, fileName, &zipInfo, compressionLevel, password, aes); - - while (!feof(input) && !ferror(input)) - { - unsigned int len = (unsigned int) fread(buffer, 1, CHUNK, input); - zipWriteInFileInZip(_zip, buffer, len); - } - - zipCloseFileInZip(_zip); - free(buffer); - fclose(input); - return error == ZIP_OK; -} - -- (BOOL)writeData:(NSData *)data filename:(nullable NSString *)filename withPassword:(nullable NSString *)password -{ - return [self writeData:data filename:filename compressionLevel:Z_DEFAULT_COMPRESSION password:password AES:YES]; -} - -- (BOOL)writeData:(NSData *)data filename:(nullable NSString *)filename compressionLevel:(int)compressionLevel password:(nullable NSString *)password AES:(BOOL)aes -{ - if (!_zip) { - return NO; - } - if (!data) { - return NO; - } - zip_fileinfo zipInfo = {}; - [SSZipArchive zipInfo:&zipInfo setDate:[NSDate date]]; - - int error = _zipOpenEntry(_zip, filename, &zipInfo, compressionLevel, password, aes); - - zipWriteInFileInZip(_zip, data.bytes, (unsigned int)data.length); - - zipCloseFileInZip(_zip); - return error == ZIP_OK; -} - -- (BOOL)close -{ - NSAssert((_zip != NULL), @"[SSZipArchive] Attempting to close an archive which was never opened"); - int error = zipClose(_zip, NULL); - _zip = nil; - return error == ZIP_OK; -} - -#pragma mark - Private - -+ (NSString *)_filenameStringWithCString:(const char *)filename - version_made_by:(uint16_t)version_made_by - general_purpose_flag:(uint16_t)flag - size:(uint16_t)size_filename { - - // Respect Language encoding flag only reading filename as UTF-8 when this is set - // when file entry created on dos system. - // - // https://pkware.cachefly.net/webdocs/casestudies/APPNOTE.TXT - // Bit 11: Language encoding flag (EFS). If this bit is set, - // the filename and comment fields for this file - // MUST be encoded using UTF-8. (see APPENDIX D) - uint16_t made_by = version_made_by >> 8; - BOOL made_on_dos = made_by == 0; - BOOL languageEncoding = (flag & (1 << 11)) != 0; - if (!languageEncoding && made_on_dos) { - // APPNOTE.TXT D.1: - // D.2 If general purpose bit 11 is unset, the file name and comment should conform - // to the original ZIP character encoding. If general purpose bit 11 is set, the - // filename and comment must support The Unicode Standard, Version 4.1.0 or - // greater using the character encoding form defined by the UTF-8 storage - // specification. The Unicode Standard is published by the The Unicode - // Consortium (www.unicode.org). UTF-8 encoded data stored within ZIP files - // is expected to not include a byte order mark (BOM). - - // Code Page 437 corresponds to kCFStringEncodingDOSLatinUS - NSStringEncoding encoding = CFStringConvertEncodingToNSStringEncoding(kCFStringEncodingDOSLatinUS); - NSString* strPath = [NSString stringWithCString:filename encoding:encoding]; - if (strPath) { - return strPath; - } - } - - // attempting unicode encoding - NSString * strPath = @(filename); - if (strPath) { - return strPath; - } - - // if filename is non-unicode, detect and transform Encoding - NSData *data = [NSData dataWithBytes:(const void *)filename length:sizeof(unsigned char) * size_filename]; -// Testing availability of @available (https://stackoverflow.com/a/46927445/1033581) -#if __clang_major__ < 9 - // Xcode 8- - if (floor(NSFoundationVersionNumber) > NSFoundationVersionNumber10_9_2) { -#else - // Xcode 9+ - if (@available(macOS 10.10, iOS 8.0, watchOS 2.0, tvOS 9.0, *)) { -#endif - // supported encodings are in [NSString availableStringEncodings] - [NSString stringEncodingForData:data encodingOptions:nil convertedString:&strPath usedLossyConversion:nil]; - } else { - // fallback to a simple manual detect for macOS 10.9 or older - NSArray *encodings = @[@(kCFStringEncodingGB_18030_2000), @(kCFStringEncodingShiftJIS)]; - for (NSNumber *encoding in encodings) { - strPath = [NSString stringWithCString:filename encoding:(NSStringEncoding)CFStringConvertEncodingToNSStringEncoding(encoding.unsignedIntValue)]; - if (strPath) { - break; - } - } - } - if (strPath) { - return strPath; - } - - // if filename encoding is non-detected, we default to something based on data - // _hexString is more readable than _base64RFC4648 for debugging unknown encodings - strPath = [data _hexString]; - return strPath; -} - -+ (void)zipInfo:(zip_fileinfo *)zipInfo setAttributesOfItemAtPath:(NSString *)path -{ - NSDictionary *attr = [[NSFileManager defaultManager] attributesOfItemAtPath:path error: nil]; - if (attr) - { - NSDate *fileDate = (NSDate *)[attr objectForKey:NSFileModificationDate]; - if (fileDate) - { - [self zipInfo:zipInfo setDate:fileDate]; - } - - // Write permissions into the external attributes, for details on this see here: https://unix.stackexchange.com/a/14727 - // Get the permissions value from the files attributes - NSNumber *permissionsValue = (NSNumber *)[attr objectForKey:NSFilePosixPermissions]; - if (permissionsValue != nil) { - // Get the short value for the permissions - short permissionsShort = permissionsValue.shortValue; - - // Convert this into an octal by adding 010000, 010000 being the flag for a regular file - NSInteger permissionsOctal = 0100000 + permissionsShort; - - // Convert this into a long value - uLong permissionsLong = @(permissionsOctal).unsignedLongValue; - - // Store this into the external file attributes once it has been shifted 16 places left to form part of the second from last byte - - // Casted back to an unsigned int to match type of external_fa in minizip - zipInfo->external_fa = (unsigned int)(permissionsLong << 16L); - } - } -} - -+ (void)zipInfo:(zip_fileinfo *)zipInfo setDate:(NSDate *)date -{ - NSCalendar *currentCalendar = SSZipArchive._gregorian; - NSCalendarUnit flags = NSCalendarUnitYear | NSCalendarUnitMonth | NSCalendarUnitDay | NSCalendarUnitHour | NSCalendarUnitMinute | NSCalendarUnitSecond; - NSDateComponents *components = [currentCalendar components:flags fromDate:date]; - struct tm tmz_date; - tmz_date.tm_sec = (unsigned int)components.second; - tmz_date.tm_min = (unsigned int)components.minute; - tmz_date.tm_hour = (unsigned int)components.hour; - tmz_date.tm_mday = (unsigned int)components.day; - // ISO/IEC 9899 struct tm is 0-indexed for January but NSDateComponents for gregorianCalendar is 1-indexed for January - tmz_date.tm_mon = (unsigned int)components.month - 1; - // ISO/IEC 9899 struct tm is 0-indexed for AD 1900 but NSDateComponents for gregorianCalendar is 1-indexed for AD 1 - tmz_date.tm_year = (unsigned int)components.year - 1900; - zipInfo->mz_dos_date = mz_zip_tm_to_dosdate(&tmz_date); -} - -+ (NSCalendar *)_gregorian -{ - static NSCalendar *gregorian; - static dispatch_once_t onceToken; - dispatch_once(&onceToken, ^{ - gregorian = [[NSCalendar alloc] initWithCalendarIdentifier:NSCalendarIdentifierGregorian]; - }); - - return gregorian; -} - -// Format from http://newsgroups.derkeiler.com/Archive/Comp/comp.os.msdos.programmer/2009-04/msg00060.html -// Two consecutive words, or a longword, YYYYYYYMMMMDDDDD hhhhhmmmmmmsssss -// YYYYYYY is years from 1980 = 0 -// sssss is (seconds/2). -// -// 3658 = 0011 0110 0101 1000 = 0011011 0010 11000 = 27 2 24 = 2007-02-24 -// 7423 = 0111 0100 0010 0011 - 01110 100001 00011 = 14 33 3 = 14:33:06 -+ (NSDate *)_dateWithMSDOSFormat:(UInt32)msdosDateTime -{ - // the whole `_dateWithMSDOSFormat:` method is equivalent but faster than this one line, - // essentially because `mktime` is slow: - //NSDate *date = [NSDate dateWithTimeIntervalSince1970:dosdate_to_time_t(msdosDateTime)]; - static const UInt32 kYearMask = 0xFE000000; - static const UInt32 kMonthMask = 0x1E00000; - static const UInt32 kDayMask = 0x1F0000; - static const UInt32 kHourMask = 0xF800; - static const UInt32 kMinuteMask = 0x7E0; - static const UInt32 kSecondMask = 0x1F; - - NSAssert(0xFFFFFFFF == (kYearMask | kMonthMask | kDayMask | kHourMask | kMinuteMask | kSecondMask), @"[SSZipArchive] MSDOS date masks don't add up"); - - NSDateComponents *components = [[NSDateComponents alloc] init]; - components.year = 1980 + ((msdosDateTime & kYearMask) >> 25); - components.month = (msdosDateTime & kMonthMask) >> 21; - components.day = (msdosDateTime & kDayMask) >> 16; - components.hour = (msdosDateTime & kHourMask) >> 11; - components.minute = (msdosDateTime & kMinuteMask) >> 5; - components.second = (msdosDateTime & kSecondMask) * 2; - - NSDate *date = [self._gregorian dateFromComponents:components]; - return date; -} - -@end - -int _zipOpenEntry(zipFile entry, NSString *name, const zip_fileinfo *zipfi, int level, NSString *password, BOOL aes) -{ - // https://pkware.cachefly.net/webdocs/casestudies/APPNOTE.TXT - uint16_t made_on_darwin = 19 << 8; - //MZ_ZIP_FLAG_UTF8 - uint16_t flag_base = 1 << 11; - return zipOpenNewFileInZip5(entry, name.fileSystemRepresentation, zipfi, NULL, 0, NULL, 0, NULL, Z_DEFLATED, level, 0, -MAX_WBITS, DEF_MEM_LEVEL, Z_DEFAULT_STRATEGY, password.UTF8String, aes, made_on_darwin, flag_base, 0); -} - -#pragma mark - Private tools for file info - -BOOL _fileIsSymbolicLink(const unz_file_info *fileInfo) -{ - // - // Determine whether this is a symbolic link: - // - File is stored with 'version made by' value of UNIX (3), - // as per https://www.pkware.com/documents/casestudies/APPNOTE.TXT - // in the upper byte of the version field. - // - BSD4.4 st_mode constants are stored in the high 16 bits of the - // external file attributes (defacto standard, verified against libarchive) - // - // The original constants can be found here: - // https://minnie.tuhs.org/cgi-bin/utree.pl?file=4.4BSD/usr/include/sys/stat.h - // - const uLong ZipUNIXVersion = 3; - const uLong BSD_SFMT = 0170000; - const uLong BSD_IFLNK = 0120000; - - BOOL fileIsSymbolicLink = ((fileInfo->version >> 8) == ZipUNIXVersion) && BSD_IFLNK == (BSD_SFMT & (fileInfo->external_fa >> 16)); - return fileIsSymbolicLink; -} - -#pragma mark - Private tools for unreadable encodings - -@implementation NSData (SSZipArchive) - -// `base64EncodedStringWithOptions` uses a base64 alphabet with '+' and '/'. -// we got those alternatives to make it compatible with filenames: https://en.wikipedia.org/wiki/Base64 -// * modified Base64 encoding for IMAP mailbox names (RFC 3501): uses '+' and ',' -// * modified Base64 for URL and filenames (RFC 4648): uses '-' and '_' -- (NSString *)_base64RFC4648 -{ - NSString *strName = [self base64EncodedStringWithOptions:0]; - strName = [strName stringByReplacingOccurrencesOfString:@"+" withString:@"-"]; - strName = [strName stringByReplacingOccurrencesOfString:@"/" withString:@"_"]; - return strName; -} - -// initWithBytesNoCopy from NSProgrammer, Jan 25 '12: https://stackoverflow.com/a/9009321/1033581 -// hexChars from Peter, Aug 19 '14: https://stackoverflow.com/a/25378464/1033581 -// not implemented as too lengthy: a potential mapping improvement from Moose, Nov 3 '15: https://stackoverflow.com/a/33501154/1033581 -- (NSString *)_hexString -{ - const char *hexChars = "0123456789ABCDEF"; - NSUInteger length = self.length; - const unsigned char *bytes = self.bytes; - char *chars = malloc(length * 2); - if (chars == NULL) { - // we directly raise an exception instead of using NSAssert to make sure assertion is not disabled as this is irrecoverable - [NSException raise:@"NSInternalInconsistencyException" format:@"failed malloc" arguments:nil]; - return nil; - } - char *s = chars; - NSUInteger i = length; - while (i--) { - *s++ = hexChars[*bytes >> 4]; - *s++ = hexChars[*bytes & 0xF]; - bytes++; - } - NSString *str = [[NSString alloc] initWithBytesNoCopy:chars - length:length * 2 - encoding:NSASCIIStringEncoding - freeWhenDone:YES]; - return str; -} - -@end - -#pragma mark Private tools for security - -@implementation NSString (SSZipArchive) - -// One implementation alternative would be to use the algorithm found at mz_path_resolve from https://github.com/nmoinvaz/minizip/blob/dev/mz_os.c, -// but making sure to work with unichar values and not ascii values to avoid breaking Unicode characters containing 2E ('.') or 2F ('/') in their decomposition -/// Sanitize path traversal characters to prevent directory backtracking. Ignoring these characters mimicks the default behavior of the Unarchiving tool on macOS. -- (NSString *)_sanitizedPath -{ - // Change Windows paths to Unix paths: https://en.wikipedia.org/wiki/Path_(computing) - // Possible improvement: only do this if the archive was created on a non-Unix system - NSString *strPath = [self stringByReplacingOccurrencesOfString:@"\\" withString:@"/"]; - - // Percent-encode file path (where path is defined by https://tools.ietf.org/html/rfc8089) - // The key part is to allow characters "." and "/" and disallow "%". - // CharacterSet.urlPathAllowed seems to do the job -#if (__MAC_OS_X_VERSION_MIN_REQUIRED >= 1090 || __IPHONE_OS_VERSION_MIN_REQUIRED >= 70000 || __WATCH_OS_VERSION_MIN_REQUIRED >= 20000 || __TV_OS_VERSION_MIN_REQUIRED >= 90000) - strPath = [strPath stringByAddingPercentEncodingWithAllowedCharacters:NSCharacterSet.URLPathAllowedCharacterSet]; -#else - // Testing availability of @available (https://stackoverflow.com/a/46927445/1033581) -#if __clang_major__ < 9 - // Xcode 8- - if (floor(NSFoundationVersionNumber) > NSFoundationVersionNumber10_8_4) { -#else - // Xcode 9+ - if (@available(macOS 10.9, iOS 7.0, watchOS 2.0, tvOS 9.0, *)) { -#endif - strPath = [strPath stringByAddingPercentEncodingWithAllowedCharacters:NSCharacterSet.URLPathAllowedCharacterSet]; - } else { - strPath = [strPath stringByAddingPercentEscapesUsingEncoding:NSUTF8StringEncoding]; - } -#endif - - // `NSString.stringByAddingPercentEncodingWithAllowedCharacters:` may theorically fail: https://stackoverflow.com/questions/33558933/ - // But because we auto-detect encoding using `NSString.stringEncodingForData:encodingOptions:convertedString:usedLossyConversion:`, - // we likely already prevent UTF-16, UTF-32 and invalid Unicode in the form of unpaired surrogate chars: https://stackoverflow.com/questions/53043876/ - // To be on the safe side, we will still perform a guard check. - if (strPath == nil) { - return nil; - } - - // Add scheme "file:///" to support sanitation on names with a colon like "file:a/../../../usr/bin" - strPath = [@"file:///" stringByAppendingString:strPath]; - - // Sanitize path traversal characters to prevent directory backtracking. Ignoring these characters mimicks the default behavior of the Unarchiving tool on macOS. - // "../../../../../../../../../../../tmp/test.txt" -> "tmp/test.txt" - // "a/b/../c.txt" -> "a/c.txt" - strPath = [NSURL URLWithString:strPath].standardizedURL.absoluteString; - - // Remove the "file:///" scheme - strPath = [strPath substringFromIndex:8]; - - // Remove the percent-encoding -#if (__MAC_OS_X_VERSION_MIN_REQUIRED >= 1090 || __IPHONE_OS_VERSION_MIN_REQUIRED >= 70000 || __WATCH_OS_VERSION_MIN_REQUIRED >= 20000 || __TV_OS_VERSION_MIN_REQUIRED >= 90000) - strPath = strPath.stringByRemovingPercentEncoding; -#else - // Testing availability of @available (https://stackoverflow.com/a/46927445/1033581) -#if __clang_major__ < 9 - // Xcode 8- - if (floor(NSFoundationVersionNumber) > NSFoundationVersionNumber10_8_4) { -#else - // Xcode 9+ - if (@available(macOS 10.9, iOS 7.0, watchOS 2.0, tvOS 9.0, *)) { -#endif - strPath = strPath.stringByRemovingPercentEncoding; - } else { - strPath = [strPath stringByReplacingPercentEscapesUsingEncoding:NSUTF8StringEncoding]; - } -#endif - - return strPath; -} - -@end diff --git a/Pods/SSZipArchive/SSZipArchive/SSZipCommon.h b/Pods/SSZipArchive/SSZipArchive/SSZipCommon.h deleted file mode 100644 index 78fa28209..000000000 --- a/Pods/SSZipArchive/SSZipArchive/SSZipCommon.h +++ /dev/null @@ -1,68 +0,0 @@ -#ifndef SSZipCommon -#define SSZipCommon - -// typedefs moved from mz_compat.h to here for public access - -/* unz_global_info structure contain global data about the ZIPfile - These data comes from the end of central dir */ -typedef struct unz_global_info64_s -{ - uint64_t number_entry; /* total number of entries in the central dir on this disk */ - uint32_t number_disk_with_CD; /* number the the disk with central dir, used for spanning ZIP */ - uint16_t size_comment; /* size of the global comment of the zipfile */ -} unz_global_info64; - -typedef struct unz_global_info_s -{ - uint32_t number_entry; /* total number of entries in the central dir on this disk */ - uint32_t number_disk_with_CD; /* number the the disk with central dir, used for spanning ZIP */ - uint16_t size_comment; /* size of the global comment of the zipfile */ -} unz_global_info; - -/* unz_file_info contain information about a file in the zipfile */ -/* https://pkware.cachefly.net/webdocs/casestudies/APPNOTE.TXT */ -typedef struct unz_file_info64_s -{ - uint16_t version; /* version made by 2 bytes */ - uint16_t version_needed; /* version needed to extract 2 bytes */ - uint16_t flag; /* general purpose bit flag 2 bytes */ - uint16_t compression_method; /* compression method 2 bytes */ - uint32_t dos_date; /* last mod file date in Dos fmt 4 bytes */ - uint32_t crc; /* crc-32 4 bytes */ - uint64_t compressed_size; /* compressed size 8 bytes */ - uint64_t uncompressed_size; /* uncompressed size 8 bytes */ - uint16_t size_filename; /* filename length 2 bytes */ - uint16_t size_file_extra; /* extra field length 2 bytes */ - uint16_t size_file_comment; /* file comment length 2 bytes */ - - uint32_t disk_num_start; /* disk number start 4 bytes */ - uint16_t internal_fa; /* internal file attributes 2 bytes */ - uint32_t external_fa; /* external file attributes 4 bytes */ - - uint64_t disk_offset; - - uint16_t size_file_extra_internal; -} unz_file_info64; - -typedef struct unz_file_info_s -{ - uint16_t version; /* version made by 2 bytes */ - uint16_t version_needed; /* version needed to extract 2 bytes */ - uint16_t flag; /* general purpose bit flag 2 bytes */ - uint16_t compression_method; /* compression method 2 bytes */ - uint32_t dos_date; /* last mod file date in Dos fmt 4 bytes */ - uint32_t crc; /* crc-32 4 bytes */ - uint32_t compressed_size; /* compressed size 4 bytes */ - uint32_t uncompressed_size; /* uncompressed size 4 bytes */ - uint16_t size_filename; /* filename length 2 bytes */ - uint16_t size_file_extra; /* extra field length 2 bytes */ - uint16_t size_file_comment; /* file comment length 2 bytes */ - - uint16_t disk_num_start; /* disk number start 2 bytes */ - uint16_t internal_fa; /* internal file attributes 2 bytes */ - uint32_t external_fa; /* external file attributes 4 bytes */ - - uint64_t disk_offset; -} unz_file_info; - -#endif diff --git a/Pods/SSZipArchive/SSZipArchive/ZipArchive.h b/Pods/SSZipArchive/SSZipArchive/ZipArchive.h deleted file mode 100644 index 7a53df8b7..000000000 --- a/Pods/SSZipArchive/SSZipArchive/ZipArchive.h +++ /dev/null @@ -1,19 +0,0 @@ -// -// ZipArchive.h -// ZipArchive -// -// Created by Serhii Mumriak on 12/1/15. -// Copyright © 2015 smumryak. All rights reserved. -// - -#import - -//! Project version number for ZipArchive. -FOUNDATION_EXPORT double ZipArchiveVersionNumber; - -//! Project version string for ZipArchive. -FOUNDATION_EXPORT const unsigned char ZipArchiveVersionString[]; - -// In this header, you should import all the public headers of your framework using statements like #import - -#import "SSZipArchive.h" diff --git a/Pods/SSZipArchive/SSZipArchive/minizip/mz.h b/Pods/SSZipArchive/SSZipArchive/minizip/mz.h deleted file mode 100644 index c0f54a101..000000000 --- a/Pods/SSZipArchive/SSZipArchive/minizip/mz.h +++ /dev/null @@ -1,252 +0,0 @@ -/* mz.h -- Errors codes, zip flags and magic - Version 2.9.2, February 12, 2020 - part of the MiniZip project - - Copyright (C) 2010-2020 Nathan Moinvaziri - https://github.com/nmoinvaz/minizip - - This program is distributed under the terms of the same license as zlib. - See the accompanying LICENSE file for the full text of the license. -*/ - -#ifndef MZ_H -#define MZ_H - -/***************************************************************************/ - -/* MZ_VERSION */ -#define MZ_VERSION ("2.9.2") - -/* MZ_ERROR */ -#define MZ_OK (0) /* zlib */ -#define MZ_STREAM_ERROR (-1) /* zlib */ -#define MZ_DATA_ERROR (-3) /* zlib */ -#define MZ_MEM_ERROR (-4) /* zlib */ -#define MZ_BUF_ERROR (-5) /* zlib */ -#define MZ_VERSION_ERROR (-6) /* zlib */ - -#define MZ_END_OF_LIST (-100) -#define MZ_END_OF_STREAM (-101) - -#define MZ_PARAM_ERROR (-102) -#define MZ_FORMAT_ERROR (-103) -#define MZ_INTERNAL_ERROR (-104) -#define MZ_CRC_ERROR (-105) -#define MZ_CRYPT_ERROR (-106) -#define MZ_EXIST_ERROR (-107) -#define MZ_PASSWORD_ERROR (-108) -#define MZ_SUPPORT_ERROR (-109) -#define MZ_HASH_ERROR (-110) -#define MZ_OPEN_ERROR (-111) -#define MZ_CLOSE_ERROR (-112) -#define MZ_SEEK_ERROR (-113) -#define MZ_TELL_ERROR (-114) -#define MZ_READ_ERROR (-115) -#define MZ_WRITE_ERROR (-116) -#define MZ_SIGN_ERROR (-117) -#define MZ_SYMLINK_ERROR (-118) - -/* MZ_OPEN */ -#define MZ_OPEN_MODE_READ (0x01) -#define MZ_OPEN_MODE_WRITE (0x02) -#define MZ_OPEN_MODE_READWRITE (MZ_OPEN_MODE_READ | MZ_OPEN_MODE_WRITE) -#define MZ_OPEN_MODE_APPEND (0x04) -#define MZ_OPEN_MODE_CREATE (0x08) -#define MZ_OPEN_MODE_EXISTING (0x10) - -/* MZ_SEEK */ -#define MZ_SEEK_SET (0) -#define MZ_SEEK_CUR (1) -#define MZ_SEEK_END (2) - -/* MZ_COMPRESS */ -#define MZ_COMPRESS_METHOD_STORE (0) -#define MZ_COMPRESS_METHOD_DEFLATE (8) -#define MZ_COMPRESS_METHOD_BZIP2 (12) -#define MZ_COMPRESS_METHOD_LZMA (14) -#define MZ_COMPRESS_METHOD_AES (99) - -#define MZ_COMPRESS_LEVEL_DEFAULT (-1) -#define MZ_COMPRESS_LEVEL_FAST (2) -#define MZ_COMPRESS_LEVEL_NORMAL (6) -#define MZ_COMPRESS_LEVEL_BEST (9) - -/* MZ_ZIP_FLAG */ -#define MZ_ZIP_FLAG_ENCRYPTED (1 << 0) -#define MZ_ZIP_FLAG_LZMA_EOS_MARKER (1 << 1) -#define MZ_ZIP_FLAG_DEFLATE_MAX (1 << 1) -#define MZ_ZIP_FLAG_DEFLATE_NORMAL (0) -#define MZ_ZIP_FLAG_DEFLATE_FAST (1 << 2) -#define MZ_ZIP_FLAG_DEFLATE_SUPER_FAST (MZ_ZIP_FLAG_DEFLATE_FAST | \ - MZ_ZIP_FLAG_DEFLATE_MAX) -#define MZ_ZIP_FLAG_DATA_DESCRIPTOR (1 << 3) -#define MZ_ZIP_FLAG_UTF8 (1 << 11) -#define MZ_ZIP_FLAG_MASK_LOCAL_INFO (1 << 13) - -/* MZ_ZIP_EXTENSION */ -#define MZ_ZIP_EXTENSION_ZIP64 (0x0001) -#define MZ_ZIP_EXTENSION_NTFS (0x000a) -#define MZ_ZIP_EXTENSION_AES (0x9901) -#define MZ_ZIP_EXTENSION_UNIX1 (0x000d) -#define MZ_ZIP_EXTENSION_SIGN (0x10c5) -#define MZ_ZIP_EXTENSION_HASH (0x1a51) -#define MZ_ZIP_EXTENSION_CDCD (0xcdcd) - -/* MZ_ZIP64 */ -#define MZ_ZIP64_AUTO (0) -#define MZ_ZIP64_FORCE (1) -#define MZ_ZIP64_DISABLE (2) - -/* MZ_HOST_SYSTEM */ -#define MZ_HOST_SYSTEM(VERSION_MADEBY) ((uint8_t)(VERSION_MADEBY >> 8)) -#define MZ_HOST_SYSTEM_MSDOS (0) -#define MZ_HOST_SYSTEM_UNIX (3) -#define MZ_HOST_SYSTEM_WINDOWS_NTFS (10) -#define MZ_HOST_SYSTEM_RISCOS (13) -#define MZ_HOST_SYSTEM_OSX_DARWIN (19) - -/* MZ_PKCRYPT */ -#define MZ_PKCRYPT_HEADER_SIZE (12) - -/* MZ_AES */ -#define MZ_AES_VERSION (1) -#define MZ_AES_ENCRYPTION_MODE_128 (0x01) -#define MZ_AES_ENCRYPTION_MODE_192 (0x02) -#define MZ_AES_ENCRYPTION_MODE_256 (0x03) -#define MZ_AES_KEY_LENGTH(MODE) (8 * (MODE & 3) + 8) -#define MZ_AES_KEY_LENGTH_MAX (32) -#define MZ_AES_BLOCK_SIZE (16) -#define MZ_AES_HEADER_SIZE(MODE) ((4 * (MODE & 3) + 4) + 2) -#define MZ_AES_FOOTER_SIZE (10) - -/* MZ_HASH */ -#define MZ_HASH_MD5 (10) -#define MZ_HASH_MD5_SIZE (16) -#define MZ_HASH_SHA1 (20) -#define MZ_HASH_SHA1_SIZE (20) -#define MZ_HASH_SHA256 (23) -#define MZ_HASH_SHA256_SIZE (32) -#define MZ_HASH_MAX_SIZE (256) - -/* MZ_ENCODING */ -#define MZ_ENCODING_CODEPAGE_437 (437) -#define MZ_ENCODING_CODEPAGE_932 (932) -#define MZ_ENCODING_CODEPAGE_936 (936) -#define MZ_ENCODING_CODEPAGE_950 (950) -#define MZ_ENCODING_UTF8 (65001) - -/* MZ_UTILITY */ -#define MZ_UNUSED(SYMBOL) ((void)SYMBOL) - -#ifndef MZ_CUSTOM_ALLOC -#define MZ_ALLOC(SIZE) (malloc(SIZE)) -#endif -#ifndef MZ_CUSTOM_FREE -#define MZ_FREE(PTR) (free(PTR)) -#endif - -#if defined(_WINDOWS) && defined(MZ_EXPORTS) -#define MZ_EXPORT __declspec(dllexport) -#else -#define MZ_EXPORT -#endif - -/***************************************************************************/ - -#include /* size_t, NULL, malloc */ -#include /* time_t, time() */ -#include /* memset, strncpy, strlen */ -#include - -#ifdef HAVE_STDINT_H -# include -#endif - -#ifndef __INT8_TYPE__ -typedef signed char int8_t; -#endif -#ifndef __INT16_TYPE__ -typedef short int16_t; -#endif -#ifndef __INT32_TYPE__ -typedef int int32_t; -#endif -#ifndef __INT64_TYPE__ -typedef long long int64_t; -#endif -#ifndef __UINT8_TYPE__ -typedef unsigned char uint8_t; -#endif -#ifndef __UINT16_TYPE__ -typedef unsigned short uint16_t; -#endif -#ifndef __UINT32_TYPE__ -typedef unsigned int uint32_t; -#endif -#ifndef __UINT64_TYPE__ -typedef unsigned long long uint64_t; -#endif - -#ifdef HAVE_INTTYPES_H -# include -#endif - -#ifndef PRId8 -# define PRId8 "hhd" -#endif -#ifndef PRId16 -# define PRId16 "hd" -#endif -#ifndef PRId32 -# define PRId32 "d" -#endif -#ifndef PRIu32 -# define PRIu32 "u" -#endif -#ifndef PRIx32 -# define PRIx32 "x" -#endif -#if ULONG_MAX == 4294967295UL -# ifndef PRId64 -# define PRId64 "lld" -# endif -# ifndef PRIu64 -# define PRIu64 "llu" -# endif -# ifndef PRIx64 -# define PRIx64 "llx" -# endif -#else -# ifndef PRId64 -# define PRId64 "ld" -# endif -# ifndef PRIu64 -# define PRIu64 "lu" -# endif -# ifndef PRIx64 -# define PRIx64 "lx" -# endif -#endif - -#ifndef INT16_MAX -# define INT16_MAX 32767 -#endif -#ifndef INT32_MAX -# define INT32_MAX 2147483647L -#endif -#ifndef INT64_MAX -# define INT64_MAX 9223372036854775807LL -#endif -#ifndef UINT16_MAX -# define UINT16_MAX 65535U -#endif -#ifndef UINT32_MAX -# define UINT32_MAX 4294967295UL -#endif -#ifndef UINT64_MAX -# define UINT64_MAX 18446744073709551615ULL -#endif - -/***************************************************************************/ - -#endif diff --git a/Pods/SSZipArchive/SSZipArchive/minizip/mz_compat.c b/Pods/SSZipArchive/SSZipArchive/minizip/mz_compat.c deleted file mode 100644 index 759e30bd7..000000000 --- a/Pods/SSZipArchive/SSZipArchive/minizip/mz_compat.c +++ /dev/null @@ -1,991 +0,0 @@ -/* mz_compat.c -- Backwards compatible interface for older versions - Version 2.8.9, July 4, 2019 - part of the MiniZip project - - Copyright (C) 2010-2019 Nathan Moinvaziri - https://github.com/nmoinvaz/minizip - Copyright (C) 1998-2010 Gilles Vollant - https://www.winimage.com/zLibDll/minizip.html - - This program is distributed under the terms of the same license as zlib. - See the accompanying LICENSE file for the full text of the license. -*/ - - -#include "mz.h" -#include "mz_os.h" -#include "mz_strm.h" -#include "mz_strm_mem.h" -#include "mz_strm_os.h" -#include "mz_strm_zlib.h" -#include "mz_zip.h" - -#include /* SEEK */ - -#include "mz_compat.h" - -/***************************************************************************/ - -typedef struct mz_compat_s { - void *stream; - void *handle; - uint64_t entry_index; - int64_t entry_pos; - int64_t total_out; -} mz_compat; - -/***************************************************************************/ - -static int32_t zipConvertAppendToStreamMode(int append) -{ - int32_t mode = MZ_OPEN_MODE_WRITE; - switch (append) - { - case APPEND_STATUS_CREATE: - mode |= MZ_OPEN_MODE_CREATE; - break; - case APPEND_STATUS_CREATEAFTER: - mode |= MZ_OPEN_MODE_CREATE | MZ_OPEN_MODE_APPEND; - break; - case APPEND_STATUS_ADDINZIP: - mode |= MZ_OPEN_MODE_READ | MZ_OPEN_MODE_APPEND; - break; - } - return mode; -} - -zipFile zipOpen(const char *path, int append) -{ - zlib_filefunc64_def pzlib = mz_stream_os_get_interface(); - return zipOpen2(path, append, NULL, &pzlib); -} - -zipFile zipOpen64(const void *path, int append) -{ - zlib_filefunc64_def pzlib = mz_stream_os_get_interface(); - return zipOpen2(path, append, NULL, &pzlib); -} - -zipFile zipOpen2(const char *path, int append, const char **globalcomment, - zlib_filefunc_def *pzlib_filefunc_def) -{ - return zipOpen2_64(path, append, globalcomment, pzlib_filefunc_def); -} - -zipFile zipOpen2_64(const void *path, int append, const char **globalcomment, - zlib_filefunc64_def *pzlib_filefunc_def) -{ - zipFile zip = NULL; - int32_t mode = zipConvertAppendToStreamMode(append); - void *stream = NULL; - - if (pzlib_filefunc_def) - { - if (mz_stream_create(&stream, (mz_stream_vtbl *)*pzlib_filefunc_def) == NULL) - return NULL; - } - else - { - if (mz_stream_os_create(&stream) == NULL) - return NULL; - } - - if (mz_stream_open(stream, path, mode) != MZ_OK) - { - mz_stream_delete(&stream); - return NULL; - } - - zip = zipOpen_MZ(stream, append, globalcomment); - - if (zip == NULL) - { - mz_stream_delete(&stream); - return NULL; - } - - return zip; -} - -zipFile zipOpen_MZ(void *stream, int append, const char **globalcomment) -{ - mz_compat *compat = NULL; - int32_t err = MZ_OK; - int32_t mode = zipConvertAppendToStreamMode(append); - void *handle = NULL; - - mz_zip_create(&handle); - err = mz_zip_open(handle, stream, mode); - - if (err != MZ_OK) - { - mz_zip_delete(&handle); - return NULL; - } - - if (globalcomment != NULL) - mz_zip_get_comment(handle, globalcomment); - - compat = (mz_compat *)MZ_ALLOC(sizeof(mz_compat)); - if (compat != NULL) - { - compat->handle = handle; - compat->stream = stream; - } - else - { - mz_zip_delete(&handle); - } - - return (zipFile)compat; -} - -int zipOpenNewFileInZip5(zipFile file, const char *filename, const zip_fileinfo *zipfi, - const void *extrafield_local, uint16_t size_extrafield_local, const void *extrafield_global, - uint16_t size_extrafield_global, const char *comment, uint16_t compression_method, int level, - int raw, int windowBits, int memLevel, int strategy, const char *password, - signed char aes, uint16_t version_madeby, uint16_t flag_base, int zip64) -{ - mz_compat *compat = (mz_compat *)file; - mz_zip_file file_info; - uint64_t dos_date = 0; - - MZ_UNUSED(strategy); - MZ_UNUSED(memLevel); - MZ_UNUSED(windowBits); - MZ_UNUSED(size_extrafield_local); - MZ_UNUSED(extrafield_local); - - if (compat == NULL) - return ZIP_PARAMERROR; - - memset(&file_info, 0, sizeof(file_info)); - - if (zipfi != NULL) - { - if (zipfi->mz_dos_date != 0) - dos_date = zipfi->mz_dos_date; - else - dos_date = mz_zip_tm_to_dosdate(&zipfi->tmz_date); - - file_info.modified_date = mz_zip_dosdate_to_time_t(dos_date); - file_info.external_fa = zipfi->external_fa; - file_info.internal_fa = zipfi->internal_fa; - } - - if (filename == NULL) - filename = "-"; - - file_info.compression_method = compression_method; - file_info.filename = filename; - /* file_info.extrafield_local = extrafield_local; */ - /* file_info.extrafield_local_size = size_extrafield_local; */ - file_info.extrafield = extrafield_global; - file_info.extrafield_size = size_extrafield_global; - file_info.version_madeby = version_madeby; - file_info.comment = comment; - file_info.flag = flag_base; - if (zip64) - file_info.zip64 = MZ_ZIP64_FORCE; - else - file_info.zip64 = MZ_ZIP64_DISABLE; -#ifdef HAVE_WZAES - if ((aes && password != NULL) || (raw && (file_info.flag & MZ_ZIP_FLAG_ENCRYPTED))) - file_info.aes_version = MZ_AES_VERSION; -#endif - - return mz_zip_entry_write_open(compat->handle, &file_info, (int16_t)level, (uint8_t)raw, password); -} - -int zipWriteInFileInZip(zipFile file, const void *buf, uint32_t len) -{ - mz_compat *compat = (mz_compat *)file; - int32_t written = 0; - if (compat == NULL || len >= INT32_MAX) - return ZIP_PARAMERROR; - written = mz_zip_entry_write(compat->handle, buf, (int32_t)len); - if ((written < 0) || ((uint32_t)written != len)) - return ZIP_ERRNO; - return ZIP_OK; -} - -int zipCloseFileInZipRaw(zipFile file, uint32_t uncompressed_size, uint32_t crc32) -{ - return zipCloseFileInZipRaw64(file, uncompressed_size, crc32); -} - -int zipCloseFileInZipRaw64(zipFile file, int64_t uncompressed_size, uint32_t crc32) -{ - mz_compat *compat = (mz_compat *)file; - if (compat == NULL) - return ZIP_PARAMERROR; - return mz_zip_entry_close_raw(compat->handle, uncompressed_size, crc32); -} - -int zipCloseFileInZip(zipFile file) -{ - return zipCloseFileInZip64(file); -} - -int zipCloseFileInZip64(zipFile file) -{ - mz_compat *compat = (mz_compat *)file; - if (compat == NULL) - return ZIP_PARAMERROR; - return mz_zip_entry_close(compat->handle); -} - -int zipClose(zipFile file, const char *global_comment) -{ - return zipClose_64(file, global_comment); -} - -int zipClose_64(zipFile file, const char *global_comment) -{ - return zipClose2_64(file, global_comment, MZ_VERSION_MADEBY); -} - -int zipClose2_64(zipFile file, const char *global_comment, uint16_t version_madeby) -{ - mz_compat *compat = (mz_compat *)file; - int32_t err = MZ_OK; - - if (compat->handle != NULL) - err = zipClose2_MZ(file, global_comment, version_madeby); - - if (compat->stream != NULL) - { - mz_stream_close(compat->stream); - mz_stream_delete(&compat->stream); - } - - MZ_FREE(compat); - - return err; -} - -/* Only closes the zip handle, does not close the stream */ -int zipClose_MZ(zipFile file, const char *global_comment) -{ - return zipClose2_MZ(file, global_comment, MZ_VERSION_MADEBY); -} - -/* Only closes the zip handle, does not close the stream */ -int zipClose2_MZ(zipFile file, const char *global_comment, uint16_t version_madeby) -{ - mz_compat *compat = (mz_compat *)file; - int32_t err = MZ_OK; - - if (compat == NULL) - return ZIP_PARAMERROR; - if (compat->handle == NULL) - return err; - - if (global_comment != NULL) - mz_zip_set_comment(compat->handle, global_comment); - - mz_zip_set_version_madeby(compat->handle, version_madeby); - err = mz_zip_close(compat->handle); - mz_zip_delete(&compat->handle); - - return err; -} - -void* zipGetStream(zipFile file) -{ - mz_compat *compat = (mz_compat *)file; - if (compat == NULL) - return NULL; - return (void *)compat->stream; -} - -/***************************************************************************/ - -unzFile unzOpen(const char *path) -{ - return unzOpen64(path); -} - -unzFile unzOpen64(const void *path) -{ - zlib_filefunc64_def pzlib = mz_stream_os_get_interface(); - return unzOpen2(path, &pzlib); -} - -unzFile unzOpen2(const char *path, zlib_filefunc_def *pzlib_filefunc_def) -{ - return unzOpen2_64(path, pzlib_filefunc_def); -} - -unzFile unzOpen2_64(const void *path, zlib_filefunc64_def *pzlib_filefunc_def) -{ - unzFile unz = NULL; - void *stream = NULL; - - if (pzlib_filefunc_def) - { - if (mz_stream_create(&stream, (mz_stream_vtbl *)*pzlib_filefunc_def) == NULL) - return NULL; - } - else - { - if (mz_stream_os_create(&stream) == NULL) - return NULL; - } - - if (mz_stream_open(stream, path, MZ_OPEN_MODE_READ) != MZ_OK) - { - mz_stream_delete(&stream); - return NULL; - } - - unz = unzOpen_MZ(stream); - if (unz == NULL) - { - mz_stream_delete(&stream); - return NULL; - } - return unz; -} - -unzFile unzOpen_MZ(void *stream) -{ - mz_compat *compat = NULL; - int32_t err = MZ_OK; - void *handle = NULL; - - mz_zip_create(&handle); - err = mz_zip_open(handle, stream, MZ_OPEN_MODE_READ); - - if (err != MZ_OK) - { - mz_zip_delete(&handle); - return NULL; - } - - compat = (mz_compat *)MZ_ALLOC(sizeof(mz_compat)); - if (compat != NULL) - { - compat->handle = handle; - compat->stream = stream; - - mz_zip_goto_first_entry(compat->handle); - } - else - { - mz_zip_delete(&handle); - } - - return (unzFile)compat; -} - -int unzClose(unzFile file) -{ - mz_compat *compat = (mz_compat *)file; - int32_t err = MZ_OK; - - if (compat == NULL) - return UNZ_PARAMERROR; - - if (compat->handle != NULL) - err = unzClose_MZ(file); - - if (compat->stream != NULL) - { - mz_stream_close(compat->stream); - mz_stream_delete(&compat->stream); - } - - MZ_FREE(compat); - - return err; -} - -/* Only closes the zip handle, does not close the stream */ -int unzClose_MZ(unzFile file) -{ - mz_compat *compat = (mz_compat *)file; - int32_t err = MZ_OK; - - if (compat == NULL) - return UNZ_PARAMERROR; - - err = mz_zip_close(compat->handle); - mz_zip_delete(&compat->handle); - - return err; -} - -int unzGetGlobalInfo(unzFile file, unz_global_info* pglobal_info32) -{ - mz_compat *compat = (mz_compat *)file; - unz_global_info64 global_info64; - int32_t err = MZ_OK; - - memset(pglobal_info32, 0, sizeof(unz_global_info)); - if (compat == NULL) - return UNZ_PARAMERROR; - - err = unzGetGlobalInfo64(file, &global_info64); - if (err == MZ_OK) - { - pglobal_info32->number_entry = (uint32_t)global_info64.number_entry; - pglobal_info32->size_comment = global_info64.size_comment; - pglobal_info32->number_disk_with_CD = global_info64.number_disk_with_CD; - } - return err; -} - -int unzGetGlobalInfo64(unzFile file, unz_global_info64 *pglobal_info) -{ - mz_compat *compat = (mz_compat *)file; - const char *comment_ptr = NULL; - int32_t err = MZ_OK; - - memset(pglobal_info, 0, sizeof(unz_global_info64)); - if (compat == NULL) - return UNZ_PARAMERROR; - err = mz_zip_get_comment(compat->handle, &comment_ptr); - if (err == MZ_OK) - pglobal_info->size_comment = (uint16_t)strlen(comment_ptr); - if ((err == MZ_OK) || (err == MZ_EXIST_ERROR)) - err = mz_zip_get_number_entry(compat->handle, &pglobal_info->number_entry); - if (err == MZ_OK) - err = mz_zip_get_disk_number_with_cd(compat->handle, &pglobal_info->number_disk_with_CD); - return err; -} - -int unzGetGlobalComment(unzFile file, char *comment, uint16_t comment_size) -{ - mz_compat *compat = (mz_compat *)file; - const char *comment_ptr = NULL; - int32_t err = MZ_OK; - - if (comment == NULL || comment_size == 0) - return UNZ_PARAMERROR; - err = mz_zip_get_comment(compat->handle, &comment_ptr); - if (err == MZ_OK) - { - strncpy(comment, comment_ptr, comment_size - 1); - comment[comment_size - 1] = 0; - } - return err; -} - -int unzOpenCurrentFile3(unzFile file, int *method, int *level, int raw, const char *password) -{ - mz_compat *compat = (mz_compat *)file; - mz_zip_file *file_info = NULL; - int32_t err = MZ_OK; - void *stream = NULL; - - if (compat == NULL) - return UNZ_PARAMERROR; - if (method != NULL) - *method = 0; - if (level != NULL) - *level = 0; - - compat->total_out = 0; - err = mz_zip_entry_read_open(compat->handle, (uint8_t)raw, password); - if (err == MZ_OK) - err = mz_zip_entry_get_info(compat->handle, &file_info); - if (err == MZ_OK) - { - if (method != NULL) - { - *method = file_info->compression_method; - } - - if (level != NULL) - { - *level = 6; - switch (file_info->flag & 0x06) - { - case MZ_ZIP_FLAG_DEFLATE_SUPER_FAST: - *level = 1; - break; - case MZ_ZIP_FLAG_DEFLATE_FAST: - *level = 2; - break; - case MZ_ZIP_FLAG_DEFLATE_MAX: - *level = 9; - break; - } - } - } - if (err == MZ_OK) - err = mz_zip_get_stream(compat->handle, &stream); - if (err == MZ_OK) - compat->entry_pos = mz_stream_tell(stream); - return err; -} - -int unzOpenCurrentFile(unzFile file) -{ - return unzOpenCurrentFile3(file, NULL, NULL, 0, NULL); -} - -int unzOpenCurrentFilePassword(unzFile file, const char *password) -{ - return unzOpenCurrentFile3(file, NULL, NULL, 0, password); -} - -int unzOpenCurrentFile2(unzFile file, int *method, int *level, int raw) -{ - return unzOpenCurrentFile3(file, method, level, raw, NULL); -} - -int unzReadCurrentFile(unzFile file, void *buf, uint32_t len) -{ - mz_compat *compat = (mz_compat *)file; - int32_t err = MZ_OK; - if (compat == NULL || len >= INT32_MAX) - return UNZ_PARAMERROR; - err = mz_zip_entry_read(compat->handle, buf, (int32_t)len); - if (err > 0) - compat->total_out += (uint32_t)err; - return err; -} - -int unzCloseCurrentFile(unzFile file) -{ - mz_compat *compat = (mz_compat *)file; - int32_t err = MZ_OK; - if (compat == NULL) - return UNZ_PARAMERROR; - err = mz_zip_entry_close(compat->handle); - return err; -} - -int unzGetCurrentFileInfo(unzFile file, unz_file_info *pfile_info, char *filename, - uint16_t filename_size, void *extrafield, uint16_t extrafield_size, char *comment, uint16_t comment_size) -{ - mz_compat *compat = (mz_compat *)file; - mz_zip_file *file_info = NULL; - uint16_t bytes_to_copy = 0; - int32_t err = MZ_OK; - - if (compat == NULL) - return UNZ_PARAMERROR; - - err = mz_zip_entry_get_info(compat->handle, &file_info); - - if ((err == MZ_OK) && (pfile_info != NULL)) - { - pfile_info->version = file_info->version_madeby; - pfile_info->version_needed = file_info->version_needed; - pfile_info->flag = file_info->flag; - pfile_info->compression_method = file_info->compression_method; - pfile_info->mz_dos_date = mz_zip_time_t_to_dos_date(file_info->modified_date); - //mz_zip_time_t_to_tm(file_info->modified_date, &pfile_info->tmu_date); - //pfile_info->tmu_date.tm_year += 1900; - pfile_info->crc = file_info->crc; - - pfile_info->size_filename = file_info->filename_size; - pfile_info->size_file_extra = file_info->extrafield_size; - pfile_info->size_file_comment = file_info->comment_size; - - pfile_info->disk_num_start = (uint16_t)file_info->disk_number; - pfile_info->internal_fa = file_info->internal_fa; - pfile_info->external_fa = file_info->external_fa; - - pfile_info->compressed_size = (uint32_t)file_info->compressed_size; - pfile_info->uncompressed_size = (uint32_t)file_info->uncompressed_size; - - if (filename_size > 0 && filename != NULL && file_info->filename != NULL) - { - bytes_to_copy = filename_size; - if (bytes_to_copy > file_info->filename_size) - bytes_to_copy = file_info->filename_size; - memcpy(filename, file_info->filename, bytes_to_copy); - if (bytes_to_copy < filename_size) - filename[bytes_to_copy] = 0; - } - if (extrafield_size > 0 && extrafield != NULL) - { - bytes_to_copy = extrafield_size; - if (bytes_to_copy > file_info->extrafield_size) - bytes_to_copy = file_info->extrafield_size; - memcpy(extrafield, file_info->extrafield, bytes_to_copy); - } - if (comment_size > 0 && comment != NULL && file_info->comment != NULL) - { - bytes_to_copy = comment_size; - if (bytes_to_copy > file_info->comment_size) - bytes_to_copy = file_info->comment_size; - memcpy(comment, file_info->comment, bytes_to_copy); - if (bytes_to_copy < comment_size) - comment[bytes_to_copy] = 0; - } - } - return err; -} - -int unzGetCurrentFileInfo64(unzFile file, unz_file_info64 * pfile_info, char *filename, - uint16_t filename_size, void *extrafield, uint16_t extrafield_size, char *comment, uint16_t comment_size) -{ - mz_compat *compat = (mz_compat *)file; - mz_zip_file *file_info = NULL; - uint16_t bytes_to_copy = 0; - int32_t err = MZ_OK; - - if (compat == NULL) - return UNZ_PARAMERROR; - - err = mz_zip_entry_get_info(compat->handle, &file_info); - - if ((err == MZ_OK) && (pfile_info != NULL)) - { - pfile_info->version = file_info->version_madeby; - pfile_info->version_needed = file_info->version_needed; - pfile_info->flag = file_info->flag; - pfile_info->compression_method = file_info->compression_method; - pfile_info->mz_dos_date = mz_zip_time_t_to_dos_date(file_info->modified_date); - //mz_zip_time_t_to_tm(file_info->modified_date, &pfile_info->tmu_date); - //pfile_info->tmu_date.tm_year += 1900; - pfile_info->crc = file_info->crc; - - pfile_info->size_filename = file_info->filename_size; - pfile_info->size_file_extra = file_info->extrafield_size; - pfile_info->size_file_comment = file_info->comment_size; - - pfile_info->disk_num_start = file_info->disk_number; - pfile_info->internal_fa = file_info->internal_fa; - pfile_info->external_fa = file_info->external_fa; - - pfile_info->compressed_size = (uint64_t)file_info->compressed_size; - pfile_info->uncompressed_size = (uint64_t)file_info->uncompressed_size; - - if (filename_size > 0 && filename != NULL && file_info->filename != NULL) - { - bytes_to_copy = filename_size; - if (bytes_to_copy > file_info->filename_size) - bytes_to_copy = file_info->filename_size; - memcpy(filename, file_info->filename, bytes_to_copy); - if (bytes_to_copy < filename_size) - filename[bytes_to_copy] = 0; - } - - if (extrafield_size > 0 && extrafield != NULL) - { - bytes_to_copy = extrafield_size; - if (bytes_to_copy > file_info->extrafield_size) - bytes_to_copy = file_info->extrafield_size; - memcpy(extrafield, file_info->extrafield, bytes_to_copy); - } - - if (comment_size > 0 && comment != NULL && file_info->comment != NULL) - { - bytes_to_copy = comment_size; - if (bytes_to_copy > file_info->comment_size) - bytes_to_copy = file_info->comment_size; - memcpy(comment, file_info->comment, bytes_to_copy); - if (bytes_to_copy < comment_size) - comment[bytes_to_copy] = 0; - } - } - return err; -} - -int unzGoToFirstFile(unzFile file) -{ - mz_compat *compat = (mz_compat *)file; - if (compat == NULL) - return UNZ_PARAMERROR; - compat->entry_index = 0; - return mz_zip_goto_first_entry(compat->handle); -} - -int unzGoToNextFile(unzFile file) -{ - mz_compat *compat = (mz_compat *)file; - int32_t err = MZ_OK; - if (compat == NULL) - return UNZ_PARAMERROR; - err = mz_zip_goto_next_entry(compat->handle); - if (err != MZ_END_OF_LIST) - compat->entry_index += 1; - return err; -} - -int unzLocateFile(unzFile file, const char *filename, unzFileNameComparer filename_compare_func) -{ - mz_compat *compat = (mz_compat *)file; - mz_zip_file *file_info = NULL; - uint64_t preserve_index = 0; - int32_t err = MZ_OK; - int32_t result = 0; - - if (compat == NULL) - return UNZ_PARAMERROR; - - preserve_index = compat->entry_index; - - err = mz_zip_goto_first_entry(compat->handle); - while (err == MZ_OK) - { - err = mz_zip_entry_get_info(compat->handle, &file_info); - if (err != MZ_OK) - break; - - if (filename_compare_func != NULL) - result = filename_compare_func(file, filename, file_info->filename); - else - result = strcmp(filename, file_info->filename); - - if (result == 0) - return MZ_OK; - - err = mz_zip_goto_next_entry(compat->handle); - } - - compat->entry_index = preserve_index; - return err; -} - -/***************************************************************************/ - -int unzGetFilePos(unzFile file, unz_file_pos *file_pos) -{ - mz_compat *compat = (mz_compat *)file; - int32_t offset = 0; - - if (compat == NULL || file_pos == NULL) - return UNZ_PARAMERROR; - - offset = unzGetOffset(file); - if (offset < 0) - return offset; - - file_pos->pos_in_zip_directory = (uint32_t)offset; - file_pos->num_of_file = (uint32_t)compat->entry_index; - return MZ_OK; -} - -int unzGoToFilePos(unzFile file, unz_file_pos *file_pos) -{ - mz_compat *compat = (mz_compat *)file; - unz64_file_pos file_pos64; - - if (compat == NULL || file_pos == NULL) - return UNZ_PARAMERROR; - - file_pos64.pos_in_zip_directory = file_pos->pos_in_zip_directory; - file_pos64.num_of_file = file_pos->num_of_file; - - return unzGoToFilePos64(file, &file_pos64); -} - -int unzGetFilePos64(unzFile file, unz64_file_pos *file_pos) -{ - mz_compat *compat = (mz_compat *)file; - int64_t offset = 0; - - if (compat == NULL || file_pos == NULL) - return UNZ_PARAMERROR; - - offset = unzGetOffset64(file); - if (offset < 0) - return (int)offset; - - file_pos->pos_in_zip_directory = offset; - file_pos->num_of_file = compat->entry_index; - return UNZ_OK; -} - -int unzGoToFilePos64(unzFile file, const unz64_file_pos *file_pos) -{ - mz_compat *compat = (mz_compat *)file; - int32_t err = MZ_OK; - - if (compat == NULL || file_pos == NULL) - return UNZ_PARAMERROR; - - err = mz_zip_goto_entry(compat->handle, file_pos->pos_in_zip_directory); - if (err == MZ_OK) - compat->entry_index = file_pos->num_of_file; - return err; -} - -int32_t unzGetOffset(unzFile file) -{ - return (int32_t)unzGetOffset64(file); -} - -int64_t unzGetOffset64(unzFile file) -{ - mz_compat *compat = (mz_compat *)file; - if (compat == NULL) - return UNZ_PARAMERROR; - return mz_zip_get_entry(compat->handle); -} - -int unzSetOffset(unzFile file, uint32_t pos) -{ - return unzSetOffset64(file, pos); -} - -int unzSetOffset64(unzFile file, int64_t pos) -{ - mz_compat *compat = (mz_compat *)file; - if (compat == NULL) - return UNZ_PARAMERROR; - return (int)mz_zip_goto_entry(compat->handle, pos); -} - -int unzGetLocalExtrafield(unzFile file, void *buf, unsigned int len) -{ - mz_compat *compat = (mz_compat *)file; - mz_zip_file *file_info = NULL; - int32_t err = MZ_OK; - int32_t bytes_to_copy = 0; - - if (compat == NULL || buf == NULL || len >= INT32_MAX) - return UNZ_PARAMERROR; - - err = mz_zip_entry_get_local_info(compat->handle, &file_info); - if (err != MZ_OK) - return err; - - bytes_to_copy = (int32_t)len; - if (bytes_to_copy > file_info->extrafield_size) - bytes_to_copy = file_info->extrafield_size; - - memcpy(buf, file_info->extrafield, bytes_to_copy); - return MZ_OK; -} - -int64_t unztell(unzFile file) -{ - mz_compat *compat = (mz_compat *)file; - if (compat == NULL) - return UNZ_PARAMERROR; - return (int64_t)compat->total_out; -} - -int32_t unzTell(unzFile file) -{ - mz_compat *compat = (mz_compat *)file; - if (compat == NULL) - return UNZ_PARAMERROR; - return (int32_t)compat->total_out; -} - -int64_t unzTell64(unzFile file) -{ - mz_compat *compat = (mz_compat *)file; - if (compat == NULL) - return UNZ_PARAMERROR; - return (int64_t)compat->total_out; -} - -int unzSeek(unzFile file, int32_t offset, int origin) -{ - return unzSeek64(file, offset, origin); -} - -int unzSeek64(unzFile file, int64_t offset, int origin) -{ - mz_compat *compat = (mz_compat *)file; - mz_zip_file *file_info = NULL; - int64_t position = 0; - int32_t err = MZ_OK; - void *stream = NULL; - - if (compat == NULL) - return UNZ_PARAMERROR; - err = mz_zip_entry_get_info(compat->handle, &file_info); - if (err != MZ_OK) - return err; - if (file_info->compression_method != MZ_COMPRESS_METHOD_STORE) - return UNZ_ERRNO; - - if (origin == SEEK_SET) - position = offset; - else if (origin == SEEK_CUR) - position = compat->total_out + offset; - else if (origin == SEEK_END) - position = (int64_t)file_info->compressed_size + offset; - else - return UNZ_PARAMERROR; - - if (position > (int64_t)file_info->compressed_size) - return UNZ_PARAMERROR; - - err = mz_zip_get_stream(compat->handle, &stream); - if (err == MZ_OK) - err = mz_stream_seek(stream, compat->entry_pos + position, MZ_SEEK_SET); - if (err == MZ_OK) - compat->total_out = position; - return err; -} - -int unzEndOfFile(unzFile file) -{ - mz_compat *compat = (mz_compat *)file; - mz_zip_file *file_info = NULL; - int32_t err = MZ_OK; - - if (compat == NULL) - return UNZ_PARAMERROR; - err = mz_zip_entry_get_info(compat->handle, &file_info); - if (err != MZ_OK) - return err; - if (compat->total_out == (int64_t)file_info->uncompressed_size) - return 1; - return 0; -} - -void* unzGetStream(unzFile file) -{ - mz_compat *compat = (mz_compat *)file; - if (compat == NULL) - return NULL; - return (void *)compat->stream; -} - -/***************************************************************************/ - -void fill_fopen_filefunc(zlib_filefunc_def *pzlib_filefunc_def) -{ - if (pzlib_filefunc_def != NULL) - *pzlib_filefunc_def = mz_stream_os_get_interface(); -} - -void fill_fopen64_filefunc(zlib_filefunc64_def *pzlib_filefunc_def) -{ - if (pzlib_filefunc_def != NULL) - *pzlib_filefunc_def = mz_stream_os_get_interface(); -} - -void fill_win32_filefunc(zlib_filefunc_def *pzlib_filefunc_def) -{ - if (pzlib_filefunc_def != NULL) - *pzlib_filefunc_def = mz_stream_os_get_interface(); -} - -void fill_win32_filefunc64(zlib_filefunc64_def *pzlib_filefunc_def) -{ - if (pzlib_filefunc_def != NULL) - *pzlib_filefunc_def = mz_stream_os_get_interface(); -} - -void fill_win32_filefunc64A(zlib_filefunc64_def *pzlib_filefunc_def) -{ - if (pzlib_filefunc_def != NULL) - *pzlib_filefunc_def = mz_stream_os_get_interface(); -} - -void fill_win32_filefunc64W(zlib_filefunc64_def *pzlib_filefunc_def) -{ - /* NOTE: You should no longer pass in widechar string to open function */ - if (pzlib_filefunc_def != NULL) - *pzlib_filefunc_def = mz_stream_os_get_interface(); -} - -void fill_memory_filefunc(zlib_filefunc_def *pzlib_filefunc_def) -{ - if (pzlib_filefunc_def != NULL) - *pzlib_filefunc_def = mz_stream_mem_get_interface(); -} diff --git a/Pods/SSZipArchive/SSZipArchive/minizip/mz_compat.h b/Pods/SSZipArchive/SSZipArchive/minizip/mz_compat.h deleted file mode 100644 index 3253eb9e6..000000000 --- a/Pods/SSZipArchive/SSZipArchive/minizip/mz_compat.h +++ /dev/null @@ -1,250 +0,0 @@ -/* mz_compat.h -- Backwards compatible interface for older versions - Version 2.8.6, April 8, 2019 - part of the MiniZip project - - Copyright (C) 2010-2019 Nathan Moinvaziri - https://github.com/nmoinvaz/minizip - Copyright (C) 1998-2010 Gilles Vollant - https://www.winimage.com/zLibDll/minizip.html - - This program is distributed under the terms of the same license as zlib. - See the accompanying LICENSE file for the full text of the license. -*/ - -#ifndef MZ_COMPAT_H -#define MZ_COMPAT_H - -#include "mz.h" -#include "../SSZipCommon.h" - -#ifdef __cplusplus -extern "C" { -#endif - -/***************************************************************************/ - -#if defined(HAVE_ZLIB) && defined(MAX_MEM_LEVEL) -#ifndef DEF_MEM_LEVEL -# if MAX_MEM_LEVEL >= 8 -# define DEF_MEM_LEVEL 8 -# else -# define DEF_MEM_LEVEL MAX_MEM_LEVEL -# endif -#endif -#endif -#ifndef MAX_WBITS -#define MAX_WBITS 15 -#endif -#ifndef DEF_MEM_LEVEL -#define DEF_MEM_LEVEL 8 -#endif - -#ifndef ZEXPORT -# define ZEXPORT MZ_EXPORT -#endif - -/***************************************************************************/ - -#if defined(STRICTZIP) || defined(STRICTZIPUNZIP) -/* like the STRICT of WIN32, we define a pointer that cannot be converted - from (void*) without cast */ -typedef struct TagzipFile__ { int unused; } zip_file__; -typedef zip_file__ *zipFile; -#else -typedef void *zipFile; -#endif - -/***************************************************************************/ - -typedef void *zlib_filefunc_def; -typedef void *zlib_filefunc64_def; -typedef const char *zipcharpc; - -typedef struct tm tm_unz; -typedef struct tm tm_zip; - -typedef uint64_t ZPOS64_T; - -/***************************************************************************/ - -// ZipArchive 2.x uses dos_date -#define MZ_COMPAT_VERSION 120 - -#if MZ_COMPAT_VERSION <= 110 -#define mz_dos_date dosDate -#else -#define mz_dos_date dos_date -#endif - -typedef struct -{ - uint32_t mz_dos_date; - struct tm tmz_date; - uint16_t internal_fa; /* internal file attributes 2 bytes */ - uint32_t external_fa; /* external file attributes 4 bytes */ -} zip_fileinfo; - -/***************************************************************************/ - -#define ZIP_OK (0) -#define ZIP_EOF (0) -#define ZIP_ERRNO (-1) -#define ZIP_PARAMERROR (-102) -#define ZIP_BADZIPFILE (-103) -#define ZIP_INTERNALERROR (-104) - -#define Z_BZIP2ED (12) - -#define APPEND_STATUS_CREATE (0) -#define APPEND_STATUS_CREATEAFTER (1) -#define APPEND_STATUS_ADDINZIP (2) - -/***************************************************************************/ -/* Writing a zip file */ - -ZEXPORT zipFile zipOpen(const char *path, int append); -ZEXPORT zipFile zipOpen64(const void *path, int append); -ZEXPORT zipFile zipOpen2(const char *path, int append, const char **globalcomment, - zlib_filefunc_def *pzlib_filefunc_def); -ZEXPORT zipFile zipOpen2_64(const void *path, int append, const char **globalcomment, - zlib_filefunc64_def *pzlib_filefunc_def); - zipFile zipOpen_MZ(void *stream, int append, const char **globalcomment); - -ZEXPORT int zipOpenNewFileInZip5(zipFile file, const char *filename, const zip_fileinfo *zipfi, - const void *extrafield_local, uint16_t size_extrafield_local, const void *extrafield_global, - uint16_t size_extrafield_global, const char *comment, uint16_t compression_method, int level, - int raw, int windowBits, int memLevel, int strategy, const char *password, - signed char aes, uint16_t version_madeby, uint16_t flag_base, int zip64); - -ZEXPORT int zipWriteInFileInZip(zipFile file, const void *buf, uint32_t len); - -ZEXPORT int zipCloseFileInZipRaw(zipFile file, uint32_t uncompressed_size, uint32_t crc32); -ZEXPORT int zipCloseFileInZipRaw64(zipFile file, int64_t uncompressed_size, uint32_t crc32); -ZEXPORT int zipCloseFileInZip(zipFile file); -ZEXPORT int zipCloseFileInZip64(zipFile file); - -ZEXPORT int zipClose(zipFile file, const char *global_comment); -ZEXPORT int zipClose_64(zipFile file, const char *global_comment); -ZEXPORT int zipClose2_64(zipFile file, const char *global_comment, uint16_t version_madeby); - int zipClose_MZ(zipFile file, const char *global_comment); - int zipClose2_MZ(zipFile file, const char *global_comment, uint16_t version_madeby); -ZEXPORT void* zipGetStream(zipFile file); - -/***************************************************************************/ - -#if defined(STRICTUNZIP) || defined(STRICTZIPUNZIP) -/* like the STRICT of WIN32, we define a pointer that cannot be converted - from (void*) without cast */ -typedef struct TagunzFile__ { int unused; } unz_file__; -typedef unz_file__ *unzFile; -#else -typedef void *unzFile; -#endif - -/***************************************************************************/ - -#define UNZ_OK (0) -#define UNZ_END_OF_LIST_OF_FILE (-100) -#define UNZ_ERRNO (-1) -#define UNZ_EOF (0) -#define UNZ_PARAMERROR (-102) -#define UNZ_BADZIPFILE (-103) -#define UNZ_INTERNALERROR (-104) -#define UNZ_CRCERROR (-105) -#define UNZ_BADPASSWORD (-106) - -/***************************************************************************/ - -typedef int (*unzFileNameComparer)(unzFile file, const char *filename1, const char *filename2); -typedef int (*unzIteratorFunction)(unzFile file); -typedef int (*unzIteratorFunction2)(unzFile file, unz_file_info64 *pfile_info, char *filename, - uint16_t filename_size, void *extrafield, uint16_t extrafield_size, char *comment, - uint16_t comment_size); - -/***************************************************************************/ -/* Reading a zip file */ - -ZEXPORT unzFile unzOpen(const char *path); -ZEXPORT unzFile unzOpen64(const void *path); -ZEXPORT unzFile unzOpen2(const char *path, zlib_filefunc_def *pzlib_filefunc_def); -ZEXPORT unzFile unzOpen2_64(const void *path, zlib_filefunc64_def *pzlib_filefunc_def); - unzFile unzOpen_MZ(void *stream); - -ZEXPORT int unzClose(unzFile file); - int unzClose_MZ(unzFile file); - -ZEXPORT int unzGetGlobalInfo(unzFile file, unz_global_info* pglobal_info32); -ZEXPORT int unzGetGlobalInfo64(unzFile file, unz_global_info64 *pglobal_info); -ZEXPORT int unzGetGlobalComment(unzFile file, char *comment, uint16_t comment_size); - -ZEXPORT int unzOpenCurrentFile(unzFile file); -ZEXPORT int unzOpenCurrentFilePassword(unzFile file, const char *password); -ZEXPORT int unzOpenCurrentFile2(unzFile file, int *method, int *level, int raw); -ZEXPORT int unzOpenCurrentFile3(unzFile file, int *method, int *level, int raw, const char *password); -ZEXPORT int unzReadCurrentFile(unzFile file, void *buf, uint32_t len); -ZEXPORT int unzCloseCurrentFile(unzFile file); - - -ZEXPORT int unzGetCurrentFileInfo(unzFile file, unz_file_info *pfile_info, char *filename, - uint16_t filename_size, void *extrafield, uint16_t extrafield_size, char *comment, - uint16_t comment_size); -ZEXPORT int unzGetCurrentFileInfo64(unzFile file, unz_file_info64 * pfile_info, char *filename, - uint16_t filename_size, void *extrafield, uint16_t extrafield_size, char *comment, - uint16_t comment_size); - -ZEXPORT int unzGoToFirstFile(unzFile file); -ZEXPORT int unzGoToNextFile(unzFile file); -ZEXPORT int unzLocateFile(unzFile file, const char *filename, unzFileNameComparer filename_compare_func); - -ZEXPORT int unzGetLocalExtrafield(unzFile file, void *buf, unsigned int len); - -/***************************************************************************/ -/* Raw access to zip file */ - -typedef struct unz_file_pos_s -{ - uint32_t pos_in_zip_directory; /* offset in zip file directory */ - uint32_t num_of_file; /* # of file */ -} unz_file_pos; - -ZEXPORT int unzGetFilePos(unzFile file, unz_file_pos *file_pos); -ZEXPORT int unzGoToFilePos(unzFile file, unz_file_pos *file_pos); - -typedef struct unz64_file_pos_s -{ - int64_t pos_in_zip_directory; /* offset in zip file directory */ - uint64_t num_of_file; /* # of file */ -} unz64_file_pos; - -ZEXPORT int unzGetFilePos64(unzFile file, unz64_file_pos *file_pos); -ZEXPORT int unzGoToFilePos64(unzFile file, const unz64_file_pos *file_pos); - -ZEXPORT int64_t unzGetOffset64(unzFile file); -ZEXPORT int32_t unzGetOffset(unzFile file); -ZEXPORT int unzSetOffset64(unzFile file, int64_t pos); -ZEXPORT int unzSetOffset(unzFile file, uint32_t pos); -ZEXPORT int64_t unztell(unzFile file); -ZEXPORT int32_t unzTell(unzFile file); -ZEXPORT int64_t unzTell64(unzFile file); -ZEXPORT int unzSeek(unzFile file, int32_t offset, int origin); -ZEXPORT int unzSeek64(unzFile file, int64_t offset, int origin); -ZEXPORT int unzEndOfFile(unzFile file); -ZEXPORT void* unzGetStream(unzFile file); - -/***************************************************************************/ - -ZEXPORT void fill_fopen_filefunc(zlib_filefunc_def *pzlib_filefunc_def); -ZEXPORT void fill_fopen64_filefunc(zlib_filefunc64_def *pzlib_filefunc_def); -ZEXPORT void fill_win32_filefunc(zlib_filefunc_def *pzlib_filefunc_def); -ZEXPORT void fill_win32_filefunc64(zlib_filefunc64_def *pzlib_filefunc_def); -ZEXPORT void fill_win32_filefunc64A(zlib_filefunc64_def *pzlib_filefunc_def); -ZEXPORT void fill_win32_filefunc64W(zlib_filefunc64_def *pzlib_filefunc_def); -ZEXPORT void fill_memory_filefunc(zlib_filefunc_def *pzlib_filefunc_def); - -/***************************************************************************/ - -#ifdef __cplusplus -} -#endif - -#endif diff --git a/Pods/SSZipArchive/SSZipArchive/minizip/mz_crypt.c b/Pods/SSZipArchive/SSZipArchive/minizip/mz_crypt.c deleted file mode 100644 index ed14b38d7..000000000 --- a/Pods/SSZipArchive/SSZipArchive/minizip/mz_crypt.c +++ /dev/null @@ -1,195 +0,0 @@ -/* mz_crypt.c -- Crypto/hash functions - Version 2.9.2, February 12, 2020 - part of the MiniZip project - - Copyright (C) 2010-2020 Nathan Moinvaziri - https://github.com/nmoinvaz/minizip - - This program is distributed under the terms of the same license as zlib. - See the accompanying LICENSE file for the full text of the license. -*/ - - -#include "mz.h" -#include "mz_crypt.h" - -#if defined(HAVE_ZLIB) -# include "zlib.h" -# if defined(ZLIBNG_VERNUM) && !defined(ZLIB_COMPAT) -# include "zlib-ng.h" -# endif -#elif defined(HAVE_LZMA) -# include "lzma.h" -#endif - -/***************************************************************************/ -/* Define z_crc_t in zlib 1.2.5 and less or if using zlib-ng */ - -#if defined(HAVE_ZLIB) && defined(ZLIBNG_VERNUM) -# if defined(ZLIB_COMPAT) -# define ZLIB_PREFIX(x) x -# else -# define ZLIB_PREFIX(x) zng_ ## x -# endif - typedef uint32_t z_crc_t; -#elif defined(HAVE_ZLIB) -# define ZLIB_PREFIX(x) x -# if (ZLIB_VERNUM < 0x1270) - typedef unsigned long z_crc_t; -# endif -#endif - -/***************************************************************************/ - -uint32_t mz_crypt_crc32_update(uint32_t value, const uint8_t *buf, int32_t size) -{ -#if defined(HAVE_ZLIB) - return (uint32_t)ZLIB_PREFIX(crc32)((z_crc_t)value, buf, (uInt)size); -#elif defined(HAVE_LZMA) - return (uint32_t)lzma_crc32(buf, (size_t)size, (uint32_t)value); -#else - static uint32_t crc32_table[256] = { - 0x00000000, 0x77073096, 0xee0e612c, 0x990951ba, 0x076dc419, 0x706af48f, - 0xe963a535, 0x9e6495a3, 0x0edb8832, 0x79dcb8a4, 0xe0d5e91e, 0x97d2d988, - 0x09b64c2b, 0x7eb17cbd, 0xe7b82d07, 0x90bf1d91, 0x1db71064, 0x6ab020f2, - 0xf3b97148, 0x84be41de, 0x1adad47d, 0x6ddde4eb, 0xf4d4b551, 0x83d385c7, - 0x136c9856, 0x646ba8c0, 0xfd62f97a, 0x8a65c9ec, 0x14015c4f, 0x63066cd9, - 0xfa0f3d63, 0x8d080df5, 0x3b6e20c8, 0x4c69105e, 0xd56041e4, 0xa2677172, - 0x3c03e4d1, 0x4b04d447, 0xd20d85fd, 0xa50ab56b, 0x35b5a8fa, 0x42b2986c, - 0xdbbbc9d6, 0xacbcf940, 0x32d86ce3, 0x45df5c75, 0xdcd60dcf, 0xabd13d59, - 0x26d930ac, 0x51de003a, 0xc8d75180, 0xbfd06116, 0x21b4f4b5, 0x56b3c423, - 0xcfba9599, 0xb8bda50f, 0x2802b89e, 0x5f058808, 0xc60cd9b2, 0xb10be924, - 0x2f6f7c87, 0x58684c11, 0xc1611dab, 0xb6662d3d, 0x76dc4190, 0x01db7106, - 0x98d220bc, 0xefd5102a, 0x71b18589, 0x06b6b51f, 0x9fbfe4a5, 0xe8b8d433, - 0x7807c9a2, 0x0f00f934, 0x9609a88e, 0xe10e9818, 0x7f6a0dbb, 0x086d3d2d, - 0x91646c97, 0xe6635c01, 0x6b6b51f4, 0x1c6c6162, 0x856530d8, 0xf262004e, - 0x6c0695ed, 0x1b01a57b, 0x8208f4c1, 0xf50fc457, 0x65b0d9c6, 0x12b7e950, - 0x8bbeb8ea, 0xfcb9887c, 0x62dd1ddf, 0x15da2d49, 0x8cd37cf3, 0xfbd44c65, - 0x4db26158, 0x3ab551ce, 0xa3bc0074, 0xd4bb30e2, 0x4adfa541, 0x3dd895d7, - 0xa4d1c46d, 0xd3d6f4fb, 0x4369e96a, 0x346ed9fc, 0xad678846, 0xda60b8d0, - 0x44042d73, 0x33031de5, 0xaa0a4c5f, 0xdd0d7cc9, 0x5005713c, 0x270241aa, - 0xbe0b1010, 0xc90c2086, 0x5768b525, 0x206f85b3, 0xb966d409, 0xce61e49f, - 0x5edef90e, 0x29d9c998, 0xb0d09822, 0xc7d7a8b4, 0x59b33d17, 0x2eb40d81, - 0xb7bd5c3b, 0xc0ba6cad, 0xedb88320, 0x9abfb3b6, 0x03b6e20c, 0x74b1d29a, - 0xead54739, 0x9dd277af, 0x04db2615, 0x73dc1683, 0xe3630b12, 0x94643b84, - 0x0d6d6a3e, 0x7a6a5aa8, 0xe40ecf0b, 0x9309ff9d, 0x0a00ae27, 0x7d079eb1, - 0xf00f9344, 0x8708a3d2, 0x1e01f268, 0x6906c2fe, 0xf762575d, 0x806567cb, - 0x196c3671, 0x6e6b06e7, 0xfed41b76, 0x89d32be0, 0x10da7a5a, 0x67dd4acc, - 0xf9b9df6f, 0x8ebeeff9, 0x17b7be43, 0x60b08ed5, 0xd6d6a3e8, 0xa1d1937e, - 0x38d8c2c4, 0x4fdff252, 0xd1bb67f1, 0xa6bc5767, 0x3fb506dd, 0x48b2364b, - 0xd80d2bda, 0xaf0a1b4c, 0x36034af6, 0x41047a60, 0xdf60efc3, 0xa867df55, - 0x316e8eef, 0x4669be79, 0xcb61b38c, 0xbc66831a, 0x256fd2a0, 0x5268e236, - 0xcc0c7795, 0xbb0b4703, 0x220216b9, 0x5505262f, 0xc5ba3bbe, 0xb2bd0b28, - 0x2bb45a92, 0x5cb36a04, 0xc2d7ffa7, 0xb5d0cf31, 0x2cd99e8b, 0x5bdeae1d, - 0x9b64c2b0, 0xec63f226, 0x756aa39c, 0x026d930a, 0x9c0906a9, 0xeb0e363f, - 0x72076785, 0x05005713, 0x95bf4a82, 0xe2b87a14, 0x7bb12bae, 0x0cb61b38, - 0x92d28e9b, 0xe5d5be0d, 0x7cdcefb7, 0x0bdbdf21, 0x86d3d2d4, 0xf1d4e242, - 0x68ddb3f8, 0x1fda836e, 0x81be16cd, 0xf6b9265b, 0x6fb077e1, 0x18b74777, - 0x88085ae6, 0xff0f6a70, 0x66063bca, 0x11010b5c, 0x8f659eff, 0xf862ae69, - 0x616bffd3, 0x166ccf45, 0xa00ae278, 0xd70dd2ee, 0x4e048354, 0x3903b3c2, - 0xa7672661, 0xd06016f7, 0x4969474d, 0x3e6e77db, 0xaed16a4a, 0xd9d65adc, - 0x40df0b66, 0x37d83bf0, 0xa9bcae53, 0xdebb9ec5, 0x47b2cf7f, 0x30b5ffe9, - 0xbdbdf21c, 0xcabac28a, 0x53b39330, 0x24b4a3a6, 0xbad03605, 0xcdd70693, - 0x54de5729, 0x23d967bf, 0xb3667a2e, 0xc4614ab8, 0x5d681b02, 0x2a6f2b94, - 0xb40bbe37, 0xc30c8ea1, 0x5a05df1b, 0x2d02ef8d - }; - value = ~value; - - while (size > 0) - { - value = (value >> 8) ^ crc32_table[(value ^ *buf) & 0xFF]; - - buf += 1; - size -= 1; - } - - return ~value; -#endif -} - -#ifndef MZ_ZIP_NO_ENCRYPTION -int32_t mz_crypt_pbkdf2(uint8_t *password, int32_t password_length, uint8_t *salt, - int32_t salt_length, int32_t iteration_count, uint8_t *key, int32_t key_length) -{ - void *hmac1 = NULL; - void *hmac2 = NULL; - void *hmac3 = NULL; - int32_t err = MZ_OK; - uint16_t i = 0; - uint16_t j = 0; - uint16_t k = 0; - uint16_t block_count = 0; - uint8_t uu[MZ_HASH_SHA1_SIZE]; - uint8_t ux[MZ_HASH_SHA1_SIZE]; - - if (password == NULL || salt == NULL || key == NULL) - return MZ_PARAM_ERROR; - - memset(key, 0, key_length); - - mz_crypt_hmac_create(&hmac1); - mz_crypt_hmac_create(&hmac2); - mz_crypt_hmac_create(&hmac3); - - mz_crypt_hmac_set_algorithm(hmac1, MZ_HASH_SHA1); - mz_crypt_hmac_set_algorithm(hmac2, MZ_HASH_SHA1); - mz_crypt_hmac_set_algorithm(hmac3, MZ_HASH_SHA1); - - err = mz_crypt_hmac_init(hmac1, password, password_length); - if (err == MZ_OK) - err = mz_crypt_hmac_init(hmac2, password, password_length); - if (err == MZ_OK) - err = mz_crypt_hmac_update(hmac2, salt, salt_length); - - block_count = 1 + ((uint16_t)key_length - 1) / MZ_HASH_SHA1_SIZE; - - for (i = 0; (err == MZ_OK) && (i < block_count); i += 1) - { - memset(ux, 0, sizeof(ux)); - - err = mz_crypt_hmac_copy(hmac2, hmac3); - if (err != MZ_OK) - break; - - uu[0] = (uint8_t)((i + 1) >> 24); - uu[1] = (uint8_t)((i + 1) >> 16); - uu[2] = (uint8_t)((i + 1) >> 8); - uu[3] = (uint8_t)(i + 1); - - for (j = 0, k = 4; j < iteration_count; j += 1) - { - err = mz_crypt_hmac_update(hmac3, uu, k); - if (err == MZ_OK) - err = mz_crypt_hmac_end(hmac3, uu, sizeof(uu)); - if (err != MZ_OK) - break; - - for(k = 0; k < MZ_HASH_SHA1_SIZE; k += 1) - ux[k] ^= uu[k]; - - err = mz_crypt_hmac_copy(hmac1, hmac3); - if (err != MZ_OK) - break; - } - - if (err != MZ_OK) - break; - - j = 0; - k = i * MZ_HASH_SHA1_SIZE; - - while (j < MZ_HASH_SHA1_SIZE && k < key_length) - key[k++] = ux[j++]; - } - - /* hmac3 uses the same provider as hmac2, so it must be deleted - before the context is destroyed. */ - mz_crypt_hmac_delete(&hmac3); - mz_crypt_hmac_delete(&hmac1); - mz_crypt_hmac_delete(&hmac2); - - return err; -} -#endif - -/***************************************************************************/ diff --git a/Pods/SSZipArchive/SSZipArchive/minizip/mz_crypt.h b/Pods/SSZipArchive/SSZipArchive/minizip/mz_crypt.h deleted file mode 100644 index 1f972e8aa..000000000 --- a/Pods/SSZipArchive/SSZipArchive/minizip/mz_crypt.h +++ /dev/null @@ -1,66 +0,0 @@ -/* mz_crypt.h -- Crypto/hash functions - Version 2.9.2, February 12, 2020 - part of the MiniZip project - - Copyright (C) 2010-2020 Nathan Moinvaziri - https://github.com/nmoinvaz/minizip - - This program is distributed under the terms of the same license as zlib. - See the accompanying LICENSE file for the full text of the license. -*/ - -#ifndef MZ_CRYPT_H -#define MZ_CRYPT_H - -#ifdef __cplusplus -extern "C" { -#endif - -/***************************************************************************/ - -uint32_t mz_crypt_crc32_update(uint32_t value, const uint8_t *buf, int32_t size); - -int32_t mz_crypt_pbkdf2(uint8_t *password, int32_t password_length, uint8_t *salt, - int32_t salt_length, int32_t iteration_count, uint8_t *key, int32_t key_length); - -/***************************************************************************/ - -int32_t mz_crypt_rand(uint8_t *buf, int32_t size); - -void mz_crypt_sha_reset(void *handle); -int32_t mz_crypt_sha_begin(void *handle); -int32_t mz_crypt_sha_update(void *handle, const void *buf, int32_t size); -int32_t mz_crypt_sha_end(void *handle, uint8_t *digest, int32_t digest_size); -void mz_crypt_sha_set_algorithm(void *handle, uint16_t algorithm); -void* mz_crypt_sha_create(void **handle); -void mz_crypt_sha_delete(void **handle); - -void mz_crypt_aes_reset(void *handle); -int32_t mz_crypt_aes_encrypt(void *handle, uint8_t *buf, int32_t size); -int32_t mz_crypt_aes_decrypt(void *handle, uint8_t *buf, int32_t size); -int32_t mz_crypt_aes_set_encrypt_key(void *handle, const void *key, int32_t key_length); -int32_t mz_crypt_aes_set_decrypt_key(void *handle, const void *key, int32_t key_length); -void mz_crypt_aes_set_mode(void *handle, int32_t mode); -void* mz_crypt_aes_create(void **handle); -void mz_crypt_aes_delete(void **handle); - -void mz_crypt_hmac_reset(void *handle); -int32_t mz_crypt_hmac_init(void *handle, const void *key, int32_t key_length); -int32_t mz_crypt_hmac_update(void *handle, const void *buf, int32_t size); -int32_t mz_crypt_hmac_end(void *handle, uint8_t *digest, int32_t digest_size); -int32_t mz_crypt_hmac_copy(void *src_handle, void *target_handle); -void mz_crypt_hmac_set_algorithm(void *handle, uint16_t algorithm); -void* mz_crypt_hmac_create(void **handle); -void mz_crypt_hmac_delete(void **handle); - -int32_t mz_crypt_sign(uint8_t *message, int32_t message_size, uint8_t *cert_data, int32_t cert_data_size, - const char *cert_pwd, uint8_t **signature, int32_t *signature_size); -int32_t mz_crypt_sign_verify(uint8_t *message, int32_t message_size, uint8_t *signature, int32_t signature_size); - -/***************************************************************************/ - -#ifdef __cplusplus -} -#endif - -#endif diff --git a/Pods/SSZipArchive/SSZipArchive/minizip/mz_crypt_apple.c b/Pods/SSZipArchive/SSZipArchive/minizip/mz_crypt_apple.c deleted file mode 100644 index e8fa8978e..000000000 --- a/Pods/SSZipArchive/SSZipArchive/minizip/mz_crypt_apple.c +++ /dev/null @@ -1,532 +0,0 @@ -/* mz_crypt_apple.c -- Crypto/hash functions for Apple - Version 2.9.2, February 12, 2020 - part of the MiniZip project - - Copyright (C) 2010-2020 Nathan Moinvaziri - https://github.com/nmoinvaz/minizip - - This program is distributed under the terms of the same license as zlib. - See the accompanying LICENSE file for the full text of the license. -*/ - - -#include "mz.h" - -#include -#include -#include -#include -#include -#include - -/***************************************************************************/ - -int32_t mz_crypt_rand(uint8_t *buf, int32_t size) -{ - if (SecRandomCopyBytes(kSecRandomDefault, size, buf) != errSecSuccess) - return 0; - return size; -} - -/***************************************************************************/ - -typedef struct mz_crypt_sha_s { - CC_SHA1_CTX ctx1; - CC_SHA256_CTX ctx256; - int32_t error; - int32_t initialized; - uint16_t algorithm; -} mz_crypt_sha; - -/***************************************************************************/ - -void mz_crypt_sha_reset(void *handle) -{ - mz_crypt_sha *sha = (mz_crypt_sha *)handle; - - sha->error = 0; - sha->initialized = 0; -} - -int32_t mz_crypt_sha_begin(void *handle) -{ - mz_crypt_sha *sha = (mz_crypt_sha *)handle; - - if (sha == NULL) - return MZ_PARAM_ERROR; - - mz_crypt_sha_reset(handle); - - if (sha->algorithm == MZ_HASH_SHA1) - sha->error = CC_SHA1_Init(&sha->ctx1); - else if (sha->algorithm == MZ_HASH_SHA256) - sha->error = CC_SHA256_Init(&sha->ctx256); - else - return MZ_PARAM_ERROR; - - if (!sha->error) - return MZ_HASH_ERROR; - - sha->initialized = 1; - return MZ_OK; -} - -int32_t mz_crypt_sha_update(void *handle, const void *buf, int32_t size) -{ - mz_crypt_sha *sha = (mz_crypt_sha *)handle; - - if (sha == NULL || buf == NULL || !sha->initialized) - return MZ_PARAM_ERROR; - - if (sha->algorithm == MZ_HASH_SHA1) - sha->error = CC_SHA1_Update(&sha->ctx1, buf, size); - else - sha->error = CC_SHA256_Update(&sha->ctx256, buf, size); - - if (!sha->error) - return MZ_HASH_ERROR; - - return size; -} - -int32_t mz_crypt_sha_end(void *handle, uint8_t *digest, int32_t digest_size) -{ - mz_crypt_sha *sha = (mz_crypt_sha *)handle; - - if (sha == NULL || digest == NULL || !sha->initialized) - return MZ_PARAM_ERROR; - - if (sha->algorithm == MZ_HASH_SHA1) - { - if (digest_size < MZ_HASH_SHA1_SIZE) - return MZ_BUF_ERROR; - sha->error = CC_SHA1_Final(digest, &sha->ctx1); - } - else - { - if (digest_size < MZ_HASH_SHA256_SIZE) - return MZ_BUF_ERROR; - sha->error = CC_SHA256_Final(digest, &sha->ctx256); - } - - if (!sha->error) - return MZ_HASH_ERROR; - - return MZ_OK; -} - -void mz_crypt_sha_set_algorithm(void *handle, uint16_t algorithm) -{ - mz_crypt_sha *sha = (mz_crypt_sha *)handle; - sha->algorithm = algorithm; -} - -void *mz_crypt_sha_create(void **handle) -{ - mz_crypt_sha *sha = NULL; - - sha = (mz_crypt_sha *)MZ_ALLOC(sizeof(mz_crypt_sha)); - if (sha != NULL) - { - memset(sha, 0, sizeof(mz_crypt_sha)); - sha->algorithm = MZ_HASH_SHA256; - } - if (handle != NULL) - *handle = sha; - - return sha; -} - -void mz_crypt_sha_delete(void **handle) -{ - mz_crypt_sha *sha = NULL; - if (handle == NULL) - return; - sha = (mz_crypt_sha *)*handle; - if (sha != NULL) - { - mz_crypt_sha_reset(*handle); - MZ_FREE(sha); - } - *handle = NULL; -} - -/***************************************************************************/ - -typedef struct mz_crypt_aes_s { - CCCryptorRef crypt; - int32_t mode; - int32_t error; -} mz_crypt_aes; - -/***************************************************************************/ - -void mz_crypt_aes_reset(void *handle) -{ - mz_crypt_aes *aes = (mz_crypt_aes *)handle; - - if (aes->crypt != NULL) - CCCryptorRelease(aes->crypt); - aes->crypt = NULL; -} - -int32_t mz_crypt_aes_encrypt(void *handle, uint8_t *buf, int32_t size) -{ - mz_crypt_aes *aes = (mz_crypt_aes *)handle; - size_t data_moved = 0; - - if (aes == NULL || buf == NULL) - return MZ_PARAM_ERROR; - if (size != MZ_AES_BLOCK_SIZE) - return MZ_PARAM_ERROR; - - aes->error = CCCryptorUpdate(aes->crypt, buf, size, buf, size, &data_moved); - - if (aes->error != kCCSuccess) - return MZ_HASH_ERROR; - - return size; -} - -int32_t mz_crypt_aes_decrypt(void *handle, uint8_t *buf, int32_t size) -{ - mz_crypt_aes *aes = (mz_crypt_aes *)handle; - size_t data_moved = 0; - - if (aes == NULL || buf == NULL) - return MZ_PARAM_ERROR; - if (size != MZ_AES_BLOCK_SIZE) - return MZ_PARAM_ERROR; - - aes->error = CCCryptorUpdate(aes->crypt, buf, size, buf, size, &data_moved); - - if (aes->error != kCCSuccess) - return MZ_HASH_ERROR; - - return size; -} - -int32_t mz_crypt_aes_set_encrypt_key(void *handle, const void *key, int32_t key_length) -{ - mz_crypt_aes *aes = (mz_crypt_aes *)handle; - - - if (aes == NULL || key == NULL || key_length == 0) - return MZ_PARAM_ERROR; - - mz_crypt_aes_reset(handle); - - aes->error = CCCryptorCreate(kCCEncrypt, kCCAlgorithmAES, kCCOptionECBMode, - key, key_length, NULL, &aes->crypt); - - if (aes->error != kCCSuccess) - return MZ_HASH_ERROR; - - return MZ_OK; -} - -int32_t mz_crypt_aes_set_decrypt_key(void *handle, const void *key, int32_t key_length) -{ - mz_crypt_aes *aes = (mz_crypt_aes *)handle; - - - if (aes == NULL || key == NULL || key_length == 0) - return MZ_PARAM_ERROR; - - mz_crypt_aes_reset(handle); - - aes->error = CCCryptorCreate(kCCDecrypt, kCCAlgorithmAES, kCCOptionECBMode, - key, key_length, NULL, &aes->crypt); - - if (aes->error != kCCSuccess) - return MZ_HASH_ERROR; - - return MZ_OK; -} - -void mz_crypt_aes_set_mode(void *handle, int32_t mode) -{ - mz_crypt_aes *aes = (mz_crypt_aes *)handle; - aes->mode = mode; -} - -void *mz_crypt_aes_create(void **handle) -{ - mz_crypt_aes *aes = NULL; - - aes = (mz_crypt_aes *)MZ_ALLOC(sizeof(mz_crypt_aes)); - if (aes != NULL) - memset(aes, 0, sizeof(mz_crypt_aes)); - if (handle != NULL) - *handle = aes; - - return aes; -} - -void mz_crypt_aes_delete(void **handle) -{ - mz_crypt_aes *aes = NULL; - if (handle == NULL) - return; - aes = (mz_crypt_aes *)*handle; - if (aes != NULL) - { - mz_crypt_aes_reset(*handle); - MZ_FREE(aes); - } - *handle = NULL; -} - -/***************************************************************************/ - -typedef struct mz_crypt_hmac_s { - CCHmacContext ctx; - int32_t initialized; - int32_t error; - uint16_t algorithm; -} mz_crypt_hmac; - -/***************************************************************************/ - -static void mz_crypt_hmac_free(void *handle) -{ - mz_crypt_hmac *hmac = (mz_crypt_hmac *)handle; - memset(&hmac->ctx, 0, sizeof(hmac->ctx)); -} - -void mz_crypt_hmac_reset(void *handle) -{ - mz_crypt_hmac *hmac = (mz_crypt_hmac *)handle; - mz_crypt_hmac_free(handle); - hmac->error = 0; -} - -int32_t mz_crypt_hmac_init(void *handle, const void *key, int32_t key_length) -{ - mz_crypt_hmac *hmac = (mz_crypt_hmac *)handle; - CCHmacAlgorithm algorithm = 0; - - if (hmac == NULL || key == NULL) - return MZ_PARAM_ERROR; - - mz_crypt_hmac_reset(handle); - - if (hmac->algorithm == MZ_HASH_SHA1) - algorithm = kCCHmacAlgSHA1; - else if (hmac->algorithm == MZ_HASH_SHA256) - algorithm = kCCHmacAlgSHA256; - else - return MZ_PARAM_ERROR; - - CCHmacInit(&hmac->ctx, algorithm, key, key_length); - return MZ_OK; -} - -int32_t mz_crypt_hmac_update(void *handle, const void *buf, int32_t size) -{ - mz_crypt_hmac *hmac = (mz_crypt_hmac *)handle; - - if (hmac == NULL || buf == NULL) - return MZ_PARAM_ERROR; - - CCHmacUpdate(&hmac->ctx, buf, size); - return MZ_OK; -} - -int32_t mz_crypt_hmac_end(void *handle, uint8_t *digest, int32_t digest_size) -{ - mz_crypt_hmac *hmac = (mz_crypt_hmac *)handle; - - if (hmac == NULL || digest == NULL) - return MZ_PARAM_ERROR; - - if (hmac->algorithm == MZ_HASH_SHA1) - { - if (digest_size < MZ_HASH_SHA1_SIZE) - return MZ_BUF_ERROR; - CCHmacFinal(&hmac->ctx, digest); - } - else - { - if (digest_size < MZ_HASH_SHA256_SIZE) - return MZ_BUF_ERROR; - CCHmacFinal(&hmac->ctx, digest); - } - - return MZ_OK; -} - -void mz_crypt_hmac_set_algorithm(void *handle, uint16_t algorithm) -{ - mz_crypt_hmac *hmac = (mz_crypt_hmac *)handle; - hmac->algorithm = algorithm; -} - -int32_t mz_crypt_hmac_copy(void *src_handle, void *target_handle) -{ - mz_crypt_hmac *source = (mz_crypt_hmac *)src_handle; - mz_crypt_hmac *target = (mz_crypt_hmac *)target_handle; - - if (source == NULL || target == NULL) - return MZ_PARAM_ERROR; - - memcpy(&target->ctx, &source->ctx, sizeof(CCHmacContext)); - return MZ_OK; -} - -void *mz_crypt_hmac_create(void **handle) -{ - mz_crypt_hmac *hmac = NULL; - - hmac = (mz_crypt_hmac *)MZ_ALLOC(sizeof(mz_crypt_hmac)); - if (hmac != NULL) - { - memset(hmac, 0, sizeof(mz_crypt_hmac)); - hmac->algorithm = MZ_HASH_SHA256; - } - if (handle != NULL) - *handle = hmac; - - return hmac; -} - -void mz_crypt_hmac_delete(void **handle) -{ - mz_crypt_hmac *hmac = NULL; - if (handle == NULL) - return; - hmac = (mz_crypt_hmac *)*handle; - if (hmac != NULL) - { - mz_crypt_hmac_free(*handle); - MZ_FREE(hmac); - } - *handle = NULL; -} - -/***************************************************************************/ - -#if defined(MZ_ZIP_SIGNING) -int32_t mz_crypt_sign(uint8_t *message, int32_t message_size, uint8_t *cert_data, int32_t cert_data_size, - const char *cert_pwd, uint8_t **signature, int32_t *signature_size) -{ - CFStringRef password_ref = NULL; - CFDictionaryRef options_dict = NULL; - CFDictionaryRef identity_trust = NULL; - CFDataRef signature_out = NULL; - CFDataRef pkcs12_data = NULL; - CFArrayRef items = 0; - SecIdentityRef identity = NULL; - SecTrustRef trust = NULL; - OSStatus status = noErr; - const void *options_key[2] = { kSecImportExportPassphrase, kSecReturnRef }; - const void *options_values[2] = { 0, kCFBooleanTrue }; - int32_t err = MZ_SIGN_ERROR; - - - if (message == NULL || cert_data == NULL || signature == NULL || signature_size == NULL) - return MZ_PARAM_ERROR; - - *signature = NULL; - *signature_size = 0; - - password_ref = CFStringCreateWithCString(0, cert_pwd, kCFStringEncodingUTF8); - options_values[0] = password_ref; - - options_dict = CFDictionaryCreate(0, options_key, options_values, 2, 0, 0); - if (options_dict) - pkcs12_data = CFDataCreate(0, cert_data, cert_data_size); - if (pkcs12_data) - status = SecPKCS12Import(pkcs12_data, options_dict, &items); - if (status == noErr) - identity_trust = CFArrayGetValueAtIndex(items, 0); - if (identity_trust) - identity = (SecIdentityRef)CFDictionaryGetValue(identity_trust, kSecImportItemIdentity); - if (identity) - trust = (SecTrustRef)CFDictionaryGetValue(identity_trust, kSecImportItemTrust); - if (trust) - { - status = CMSEncodeContent(identity, NULL, NULL, FALSE, 0, message, message_size, &signature_out); - - if (status == errSecSuccess) - { - *signature_size = CFDataGetLength(signature_out); - *signature = (uint8_t *)MZ_ALLOC(*signature_size); - - memcpy(*signature, CFDataGetBytePtr(signature_out), *signature_size); - - err = MZ_OK; - } - } - - if (signature_out) - CFRelease(signature_out); - if (items) - CFRelease(items); - if (pkcs12_data) - CFRelease(pkcs12_data); - if (options_dict) - CFRelease(options_dict); - if (password_ref) - CFRelease(password_ref); - - return err; -} - -int32_t mz_crypt_sign_verify(uint8_t *message, int32_t message_size, uint8_t *signature, int32_t signature_size) -{ - CMSDecoderRef decoder = NULL; - CMSSignerStatus signer_status = 0; - CFDataRef message_out = NULL; - SecPolicyRef trust_policy = NULL; - OSStatus status = noErr; - OSStatus verify_status = noErr; - size_t signer_count = 0; - size_t i = 0; - int32_t err = MZ_SIGN_ERROR; - - if (message == NULL || signature == NULL) - return MZ_PARAM_ERROR; - - status = CMSDecoderCreate(&decoder); - if (status == errSecSuccess) - status = CMSDecoderUpdateMessage(decoder, signature, signature_size); - if (status == errSecSuccess) - status = CMSDecoderFinalizeMessage(decoder); - if (status == errSecSuccess) - trust_policy = SecPolicyCreateBasicX509(); - - if (status == errSecSuccess && trust_policy) - { - CMSDecoderGetNumSigners(decoder, &signer_count); - if (signer_count > 0) - err = MZ_OK; - for (i = 0; i < signer_count; i += 1) - { - status = CMSDecoderCopySignerStatus(decoder, i, trust_policy, TRUE, &signer_status, NULL, &verify_status); - if (status != errSecSuccess || verify_status != 0 || signer_status != kCMSSignerValid) - { - err = MZ_SIGN_ERROR; - break; - } - } - } - - if (err == MZ_OK) - { - status = CMSDecoderCopyContent(decoder, &message_out); - if ((status != errSecSuccess) || - (CFDataGetLength(message_out) != message_size) || - (memcmp(message, CFDataGetBytePtr(message_out), message_size) != 0)) - err = MZ_SIGN_ERROR; - } - - if (trust_policy) - CFRelease(trust_policy); - if (decoder) - CFRelease(decoder); - - return err; -} - -#endif diff --git a/Pods/SSZipArchive/SSZipArchive/minizip/mz_os.c b/Pods/SSZipArchive/SSZipArchive/minizip/mz_os.c deleted file mode 100644 index a36e36785..000000000 --- a/Pods/SSZipArchive/SSZipArchive/minizip/mz_os.c +++ /dev/null @@ -1,401 +0,0 @@ -/* mz_os.c -- System functions - Version 2.9.2, February 12, 2020 - part of the MiniZip project - - Copyright (C) 2010-2020 Nathan Moinvaziri - https://github.com/nmoinvaz/minizip - Copyright (C) 1998-2010 Gilles Vollant - https://www.winimage.com/zLibDll/minizip.html - - This program is distributed under the terms of the same license as zlib. - See the accompanying LICENSE file for the full text of the license. -*/ - -#include "mz.h" -#include "mz_crypt.h" -#include "mz_os.h" -#include "mz_strm.h" -#include "mz_strm_os.h" - -#include /* tolower */ - -/***************************************************************************/ - -int32_t mz_path_combine(char *path, const char *join, int32_t max_path) -{ - int32_t path_len = 0; - - if (path == NULL || join == NULL || max_path == 0) - return MZ_PARAM_ERROR; - - path_len = (int32_t)strlen(path); - - if (path_len == 0) - { - strncpy(path, join, max_path - 1); - path[max_path - 1] = 0; - } - else - { - mz_path_append_slash(path, max_path, MZ_PATH_SLASH_PLATFORM); - strncat(path, join, max_path - path_len); - } - - return MZ_OK; -} - -int32_t mz_path_append_slash(char *path, int32_t max_path, char slash) -{ - int32_t path_len = (int32_t)strlen(path); - if ((path_len + 2) >= max_path) - return MZ_BUF_ERROR; - if (path[path_len - 1] != '\\' && path[path_len - 1] != '/') - { - path[path_len] = slash; - path[path_len + 1] = 0; - } - return MZ_OK; -} - -int32_t mz_path_remove_slash(char *path) -{ - int32_t path_len = (int32_t)strlen(path); - while (path_len > 0) - { - if (path[path_len - 1] == '\\' || path[path_len - 1] == '/') - path[path_len - 1] = 0; - else - break; - - path_len -= 1; - } - return MZ_OK; -} - -int32_t mz_path_has_slash(const char *path) -{ - int32_t path_len = (int32_t)strlen(path); - if (path[path_len - 1] != '\\' && path[path_len - 1] != '/') - return MZ_EXIST_ERROR; - return MZ_OK; -} - -int32_t mz_path_convert_slashes(char *path, char slash) -{ - int32_t i = 0; - - for (i = 0; i < (int32_t)strlen(path); i += 1) - { - if (path[i] == '\\' || path[i] == '/') - path[i] = slash; - } - return MZ_OK; -} - -int32_t mz_path_compare_wc(const char *path, const char *wildcard, uint8_t ignore_case) -{ - while (*path != 0) - { - switch (*wildcard) - { - case '*': - - if (*(wildcard + 1) == 0) - return MZ_OK; - - while (*path != 0) - { - if (mz_path_compare_wc(path, (wildcard + 1), ignore_case) == MZ_OK) - return MZ_OK; - - path += 1; - } - - return MZ_EXIST_ERROR; - - default: - /* Ignore differences in path slashes on platforms */ - if ((*path == '\\' && *wildcard == '/') || (*path == '/' && *wildcard == '\\')) - break; - - if (ignore_case) - { - if (tolower(*path) != tolower(*wildcard)) - return MZ_EXIST_ERROR; - } - else - { - if (*path != *wildcard) - return MZ_EXIST_ERROR; - } - - break; - } - - path += 1; - wildcard += 1; - } - - if ((*wildcard != 0) && (*wildcard != '*')) - return MZ_EXIST_ERROR; - - return MZ_OK; -} - -int32_t mz_path_resolve(const char *path, char *output, int32_t max_output) -{ - const char *source = path; - const char *check = output; - char *target = output; - - - if (max_output <= 0) - return MZ_PARAM_ERROR; - - while (*source != 0 && max_output > 1) - { - check = source; - if ((*check == '\\') || (*check == '/')) - check += 1; - - if ((source == path) || (target == output) || (check != source)) - { - /* Skip double paths */ - if ((*check == '\\') || (*check == '/')) - { - source += 1; - continue; - } - if ((*check != 0) && (*check == '.')) - { - check += 1; - - /* Remove . if at end of string and not at the beginning */ - if ((*check == 0) && (source != path && target != output)) - { - /* Copy last slash */ - *target = *source; - target += 1; - max_output -= 1; - source += (check - source); - continue; - } - /* Remove . if not at end of string */ - else if ((*check == '\\') || (*check == '/')) - { - source += (check - source); - /* Skip slash if at beginning of string */ - if (target == output && *source != 0) - source += 1; - continue; - } - /* Go to parent directory .. */ - else if (*check == '.') - { - check += 1; - if ((*check == 0) || (*check == '\\' || *check == '/')) - { - source += (check - source); - - /* Search backwards for previous slash */ - if (target != output) - { - target -= 1; - do - { - if ((*target == '\\') || (*target == '/')) - break; - - target -= 1; - max_output += 1; - } - while (target > output); - } - - if ((target == output) && (*source != 0)) - source += 1; - if ((*target == '\\' || *target == '/') && (*source == 0)) - target += 1; - - *target = 0; - continue; - } - } - } - } - - *target = *source; - - source += 1; - target += 1; - max_output -= 1; - } - - *target = 0; - - if (*path == 0) - return MZ_INTERNAL_ERROR; - - return MZ_OK; -} - -int32_t mz_path_remove_filename(char *path) -{ - char *path_ptr = NULL; - - if (path == NULL) - return MZ_PARAM_ERROR; - - path_ptr = path + strlen(path) - 1; - - while (path_ptr > path) - { - if ((*path_ptr == '/') || (*path_ptr == '\\')) - { - *path_ptr = 0; - break; - } - - path_ptr -= 1; - } - - if (path_ptr == path) - *path_ptr = 0; - - return MZ_OK; -} - -int32_t mz_path_remove_extension(char *path) -{ - char *path_ptr = NULL; - - if (path == NULL) - return MZ_PARAM_ERROR; - - path_ptr = path + strlen(path) - 1; - - while (path_ptr > path) - { - if ((*path_ptr == '/') || (*path_ptr == '\\')) - break; - if (*path_ptr == '.') - { - *path_ptr = 0; - break; - } - - path_ptr -= 1; - } - - if (path_ptr == path) - *path_ptr = 0; - - return MZ_OK; -} - -int32_t mz_path_get_filename(const char *path, const char **filename) -{ - const char *match = NULL; - - if (path == NULL || filename == NULL) - return MZ_PARAM_ERROR; - - *filename = NULL; - - for (match = path; *match != 0; match += 1) - { - if ((*match == '\\') || (*match == '/')) - *filename = match + 1; - } - - if (*filename == NULL) - return MZ_EXIST_ERROR; - - return MZ_OK; -} - -int32_t mz_dir_make(const char *path) -{ - int32_t err = MZ_OK; - int16_t len = 0; - char *current_dir = NULL; - char *match = NULL; - char hold = 0; - - - len = (int16_t)strlen(path); - if (len <= 0) - return 0; - - current_dir = (char *)MZ_ALLOC((uint16_t)len + 1); - if (current_dir == NULL) - return MZ_MEM_ERROR; - - strcpy(current_dir, path); - mz_path_remove_slash(current_dir); - - err = mz_os_make_dir(current_dir); - if (err != MZ_OK) - { - match = current_dir + 1; - while (1) - { - while (*match != 0 && *match != '\\' && *match != '/') - match += 1; - hold = *match; - *match = 0; - - err = mz_os_make_dir(current_dir); - if (err != MZ_OK) - break; - if (hold == 0) - break; - - *match = hold; - match += 1; - } - } - - MZ_FREE(current_dir); - return err; -} - -int32_t mz_file_get_crc(const char *path, uint32_t *result_crc) -{ - void *stream = NULL; - uint32_t crc32 = 0; - int32_t read = 0; - int32_t err = MZ_OK; - uint8_t buf[16384]; - - mz_stream_os_create(&stream); - - err = mz_stream_os_open(stream, path, MZ_OPEN_MODE_READ); - - if (err == MZ_OK) - { - do - { - read = mz_stream_os_read(stream, buf, sizeof(buf)); - - if (read < 0) - { - err = read; - break; - } - - crc32 = mz_crypt_crc32_update(crc32, buf, read); - } - while ((err == MZ_OK) && (read > 0)); - - mz_stream_os_close(stream); - } - - *result_crc = crc32; - - mz_stream_os_delete(&stream); - - return err; -} - -/***************************************************************************/ diff --git a/Pods/SSZipArchive/SSZipArchive/minizip/mz_os.h b/Pods/SSZipArchive/SSZipArchive/minizip/mz_os.h deleted file mode 100644 index 6065430e3..000000000 --- a/Pods/SSZipArchive/SSZipArchive/minizip/mz_os.h +++ /dev/null @@ -1,176 +0,0 @@ -/* mz_os.h -- System functions - Version 2.9.2, February 12, 2020 - part of the MiniZip project - - Copyright (C) 2010-2020 Nathan Moinvaziri - https://github.com/nmoinvaz/minizip - - This program is distributed under the terms of the same license as zlib. - See the accompanying LICENSE file for the full text of the license. -*/ - -#ifndef MZ_OS_H -#define MZ_OS_H - -#ifdef __cplusplus -extern "C" { -#endif - -/***************************************************************************/ - -#if defined(__APPLE__) -# define MZ_VERSION_MADEBY_HOST_SYSTEM (MZ_HOST_SYSTEM_OSX_DARWIN) -#elif defined(__riscos__) -# define MZ_VERSION_MADEBY_HOST_SYSTEM (MZ_HOST_SYSTEM_RISCOS) -#elif defined(__unix__) -# define MZ_VERSION_MADEBY_HOST_SYSTEM (MZ_HOST_SYSTEM_UNIX) -#elif defined(_WIN32) -# define MZ_VERSION_MADEBY_HOST_SYSTEM (MZ_HOST_SYSTEM_WINDOWS_NTFS) -#endif - -#if defined(HAVE_LZMA) -# define MZ_VERSION_MADEBY_ZIP_VERSION (63) -#elif defined(HAVE_WZAES) -# define MZ_VERSION_MADEBY_ZIP_VERSION (51) -#elif defined(HAVE_BZIP2) -# define MZ_VERSION_MADEBY_ZIP_VERSION (46) -#else -# define MZ_VERSION_MADEBY_ZIP_VERSION (45) -#endif - -#define MZ_VERSION_MADEBY ((MZ_VERSION_MADEBY_HOST_SYSTEM << 8) | \ - (MZ_VERSION_MADEBY_ZIP_VERSION)) - -#define MZ_PATH_SLASH_UNIX ('/') -#if defined(_WIN32) -# define MZ_PATH_SLASH_PLATFORM ('\\') -#else -# define MZ_PATH_SLASH_PLATFORM (MZ_PATH_SLASH_UNIX) -#endif - -/***************************************************************************/ - -#if defined(_WIN32) -struct dirent { - char d_name[256]; -}; -typedef void* DIR; -#else -#include -#endif - -/***************************************************************************/ -/* Shared functions */ - -int32_t mz_path_combine(char *path, const char *join, int32_t max_path); -/* Combines two paths */ - -int32_t mz_path_append_slash(char *path, int32_t max_path, char slash); -/* Appends a path slash on to the end of the path */ - -int32_t mz_path_remove_slash(char *path); -/* Removes a path slash from the end of the path */ - -int32_t mz_path_has_slash(const char *path); -/* Returns whether or not the path ends with slash */ - -int32_t mz_path_convert_slashes(char *path, char slash); -/* Converts the slashes in a path */ - -int32_t mz_path_compare_wc(const char *path, const char *wildcard, uint8_t ignore_case); -/* Compare two paths with wildcard */ - -int32_t mz_path_resolve(const char *path, char *target, int32_t max_target); -/* Resolves path */ - -int32_t mz_path_remove_filename(char *path); -/* Remove the filename from a path */ - -int32_t mz_path_remove_extension(char *path); -/* Remove the extension from a path */ - -int32_t mz_path_get_filename(const char *path, const char **filename); -/* Get the filename from a path */ - -int32_t mz_dir_make(const char *path); -/* Creates a directory recursively */ - -int32_t mz_file_get_crc(const char *path, uint32_t *result_crc); -/* Gets the crc32 hash of a file */ - -/***************************************************************************/ -/* Platform specific functions */ - -wchar_t *mz_os_unicode_string_create(const char *string, int32_t encoding); -/* Create unicode string from a utf8 string */ - -void mz_os_unicode_string_delete(wchar_t **string); -/* Delete a unicode string that was created */ - -uint8_t *mz_os_utf8_string_create(const char *string, int32_t encoding); -/* Create a utf8 string from a string with another encoding */ - -void mz_os_utf8_string_delete(uint8_t **string); -/* Delete a utf8 string that was created */ - -int32_t mz_os_rand(uint8_t *buf, int32_t size); -/* Random number generator (not cryptographically secure) */ - -int32_t mz_os_rename(const char *source_path, const char *target_path); -/* Rename a file */ - -int32_t mz_os_unlink(const char *path); -/* Delete an existing file */ - -int32_t mz_os_file_exists(const char *path); -/* Check to see if a file exists */ - -int64_t mz_os_get_file_size(const char *path); -/* Gets the length of a file */ - -int32_t mz_os_get_file_date(const char *path, time_t *modified_date, time_t *accessed_date, time_t *creation_date); -/* Gets a file's modified, access, and creation dates if supported */ - -int32_t mz_os_set_file_date(const char *path, time_t modified_date, time_t accessed_date, time_t creation_date); -/* Sets a file's modified, access, and creation dates if supported */ - -int32_t mz_os_get_file_attribs(const char *path, uint32_t *attributes); -/* Gets a file's attributes */ - -int32_t mz_os_set_file_attribs(const char *path, uint32_t attributes); -/* Sets a file's attributes */ - -int32_t mz_os_make_dir(const char *path); -/* Recursively creates a directory */ - -DIR* mz_os_open_dir(const char *path); -/* Opens a directory for listing */ -struct -dirent* mz_os_read_dir(DIR *dir); -/* Reads a directory listing entry */ - -int32_t mz_os_close_dir(DIR *dir); -/* Closes a directory that has been opened for listing */ - -int32_t mz_os_is_dir(const char *path); -/* Checks to see if path is a directory */ - -int32_t mz_os_is_symlink(const char *path); -/* Checks to see if path is a symbolic link */ - -int32_t mz_os_make_symlink(const char *path, const char *target_path); -/* Creates a symbolic link pointing to a target */ - -int32_t mz_os_read_symlink(const char *path, char *target_path, int32_t max_target_path); -/* Gets the target path for a symbolic link */ - -uint64_t mz_os_ms_time(void); -/* Gets the time in milliseconds */ - -/***************************************************************************/ - -#ifdef __cplusplus -} -#endif - -#endif diff --git a/Pods/SSZipArchive/SSZipArchive/minizip/mz_os_posix.c b/Pods/SSZipArchive/SSZipArchive/minizip/mz_os_posix.c deleted file mode 100644 index 46c6fc419..000000000 --- a/Pods/SSZipArchive/SSZipArchive/minizip/mz_os_posix.c +++ /dev/null @@ -1,329 +0,0 @@ -/* mz_os_posix.c -- System functions for posix - Version 2.9.2, February 12, 2020 - part of the MiniZip project - - Copyright (C) 2010-2020 Nathan Moinvaziri - https://github.com/nmoinvaz/minizip - - This program is distributed under the terms of the same license as zlib. - See the accompanying LICENSE file for the full text of the license. -*/ - -#include "mz.h" -#include "mz_strm.h" -#include "mz_os.h" - -#include /* rename */ -#include -#include - -#include -#include - -#if defined(__APPLE__) || defined(__unix__) || defined(__riscos__) -# include -# include -#endif -#if defined(__APPLE__) -# include -# include -#endif - -/***************************************************************************/ - -uint8_t *mz_os_utf8_string_create(const char *string, int32_t encoding) -{ - iconv_t cd; - const char *from_encoding = NULL; - size_t result = 0; - size_t string_length = 0; - size_t string_utf8_size = 0; - uint8_t *string_utf8 = NULL; - uint8_t *string_utf8_ptr = NULL; - - if (string == NULL) - return NULL; - - if (encoding == MZ_ENCODING_CODEPAGE_437) - from_encoding = "CP437"; - else if (encoding == MZ_ENCODING_CODEPAGE_932) - from_encoding = "CP932"; - else if (encoding == MZ_ENCODING_CODEPAGE_936) - from_encoding = "CP936"; - else if (encoding == MZ_ENCODING_CODEPAGE_950) - from_encoding = "CP950"; - else if (encoding == MZ_ENCODING_UTF8) - from_encoding = "UTF-8"; - else - return NULL; - - cd = iconv_open("UTF-8", from_encoding); - if (cd == (iconv_t)-1) - return NULL; - - string_length = strlen(string); - string_utf8_size = string_length * 2; - string_utf8 = (uint8_t *)MZ_ALLOC((int32_t)(string_utf8_size + 1)); - string_utf8_ptr = string_utf8; - - if (string_utf8) - { - memset(string_utf8, 0, string_utf8_size + 1); - - result = iconv(cd, (char **)&string, &string_length, - (char **)&string_utf8_ptr, &string_utf8_size); - } - - iconv_close(cd); - - if (result == (size_t)-1) - { - MZ_FREE(string_utf8); - string_utf8 = NULL; - } - - return string_utf8; -} - -void mz_os_utf8_string_delete(uint8_t **string) -{ - if (string != NULL) - { - MZ_FREE(*string); - *string = NULL; - } -} - -/***************************************************************************/ - -int32_t mz_os_rand(uint8_t *buf, int32_t size) -{ - static unsigned calls = 0; - int32_t i = 0; - - /* Ensure different random header each time */ - if (++calls == 1) - { - #define PI_SEED 3141592654UL - srand((unsigned)(time(NULL) ^ PI_SEED)); - } - - while (i < size) - buf[i++] = (rand() >> 7) & 0xff; - - return size; -} - -int32_t mz_os_rename(const char *source_path, const char *target_path) -{ - if (rename(source_path, target_path) == -1) - return MZ_EXIST_ERROR; - - return MZ_OK; -} - -int32_t mz_os_unlink(const char *path) -{ - if (unlink(path) == -1) - return MZ_EXIST_ERROR; - - return MZ_OK; -} - -int32_t mz_os_file_exists(const char *path) -{ - struct stat path_stat; - - memset(&path_stat, 0, sizeof(path_stat)); - if (stat(path, &path_stat) == 0) - return MZ_OK; - return MZ_EXIST_ERROR; -} - -int64_t mz_os_get_file_size(const char *path) -{ - struct stat path_stat; - - memset(&path_stat, 0, sizeof(path_stat)); - if (stat(path, &path_stat) == 0) - { - /* Stat returns size taken up by directory entry, so return 0 */ - if (S_ISDIR(path_stat.st_mode)) - return 0; - - return path_stat.st_size; - } - - return 0; -} - -int32_t mz_os_get_file_date(const char *path, time_t *modified_date, time_t *accessed_date, time_t *creation_date) -{ - struct stat path_stat; - char *name = NULL; - size_t len = 0; - int32_t err = MZ_INTERNAL_ERROR; - - memset(&path_stat, 0, sizeof(path_stat)); - - if (strcmp(path, "-") != 0) - { - /* Not all systems allow stat'ing a file with / appended */ - len = strlen(path); - name = (char *)malloc(len + 1); - strncpy(name, path, len + 1); - mz_path_remove_slash(name); - - if (stat(name, &path_stat) == 0) - { - if (modified_date != NULL) - *modified_date = path_stat.st_mtime; - if (accessed_date != NULL) - *accessed_date = path_stat.st_atime; - /* Creation date not supported */ - if (creation_date != NULL) - *creation_date = 0; - - err = MZ_OK; - } - - free(name); - } - - return err; -} - -int32_t mz_os_set_file_date(const char *path, time_t modified_date, time_t accessed_date, time_t creation_date) -{ - struct utimbuf ut; - - ut.actime = accessed_date; - ut.modtime = modified_date; - - /* Creation date not supported */ - MZ_UNUSED(creation_date); - - if (utime(path, &ut) != 0) - return MZ_INTERNAL_ERROR; - - return MZ_OK; -} - -int32_t mz_os_get_file_attribs(const char *path, uint32_t *attributes) -{ - struct stat path_stat; - int32_t err = MZ_OK; - - memset(&path_stat, 0, sizeof(path_stat)); - if (lstat(path, &path_stat) == -1) - err = MZ_INTERNAL_ERROR; - *attributes = path_stat.st_mode; - return err; -} - -int32_t mz_os_set_file_attribs(const char *path, uint32_t attributes) -{ - int32_t err = MZ_OK; - - if (chmod(path, (mode_t)attributes) == -1) - err = MZ_INTERNAL_ERROR; - - return err; -} - -int32_t mz_os_make_dir(const char *path) -{ - int32_t err = 0; - - err = mkdir(path, 0755); - - if (err != 0 && errno != EEXIST) - return MZ_INTERNAL_ERROR; - - return MZ_OK; -} - -DIR* mz_os_open_dir(const char *path) -{ - return opendir(path); -} - -struct dirent* mz_os_read_dir(DIR *dir) -{ - if (dir == NULL) - return NULL; - return readdir(dir); -} - -int32_t mz_os_close_dir(DIR *dir) -{ - if (dir == NULL) - return MZ_PARAM_ERROR; - if (closedir(dir) == -1) - return MZ_INTERNAL_ERROR; - return MZ_OK; -} - -int32_t mz_os_is_dir(const char *path) -{ - struct stat path_stat; - - memset(&path_stat, 0, sizeof(path_stat)); - stat(path, &path_stat); - if (S_ISDIR(path_stat.st_mode)) - return MZ_OK; - - return MZ_EXIST_ERROR; -} - -int32_t mz_os_is_symlink(const char *path) -{ - struct stat path_stat; - - memset(&path_stat, 0, sizeof(path_stat)); - lstat(path, &path_stat); - if (S_ISLNK(path_stat.st_mode)) - return MZ_OK; - - return MZ_EXIST_ERROR; -} - -int32_t mz_os_make_symlink(const char *path, const char *target_path) -{ - if (symlink(target_path, path) != 0) - return MZ_INTERNAL_ERROR; - return MZ_OK; -} - -int32_t mz_os_read_symlink(const char *path, char *target_path, int32_t max_target_path) -{ - size_t length = 0; - - length = (size_t)readlink(path, target_path, max_target_path - 1); - if (length == (size_t)-1) - return MZ_EXIST_ERROR; - - target_path[length] = 0; - return MZ_OK; -} - -uint64_t mz_os_ms_time(void) -{ - struct timespec ts; - -#if defined(__APPLE__) - clock_serv_t cclock; - mach_timespec_t mts; - - host_get_clock_service(mach_host_self(), CALENDAR_CLOCK, &cclock); - clock_get_time(cclock, &mts); - mach_port_deallocate(mach_task_self(), cclock); - - ts.tv_sec = mts.tv_sec; - ts.tv_nsec = mts.tv_nsec; -#else - clock_gettime(CLOCK_MONOTONIC, &ts); -#endif - - return ((uint64_t)ts.tv_sec * 1000) + ((uint64_t)ts.tv_nsec / 1000000); -} diff --git a/Pods/SSZipArchive/SSZipArchive/minizip/mz_strm.c b/Pods/SSZipArchive/SSZipArchive/minizip/mz_strm.c deleted file mode 100644 index af123ae3c..000000000 --- a/Pods/SSZipArchive/SSZipArchive/minizip/mz_strm.c +++ /dev/null @@ -1,623 +0,0 @@ -/* mz_strm.c -- Stream interface - Version 2.9.2, February 12, 2020 - part of the MiniZip project - - Copyright (C) 2010-2020 Nathan Moinvaziri - https://github.com/nmoinvaz/minizip - - This program is distributed under the terms of the same license as zlib. - See the accompanying LICENSE file for the full text of the license. -*/ - -#include "mz.h" -#include "mz_strm.h" - -/***************************************************************************/ - -#define MZ_STREAM_FIND_SIZE (1024) - -/***************************************************************************/ - -int32_t mz_stream_open(void *stream, const char *path, int32_t mode) -{ - mz_stream *strm = (mz_stream *)stream; - if (strm == NULL || strm->vtbl == NULL || strm->vtbl->open == NULL) - return MZ_STREAM_ERROR; - return strm->vtbl->open(strm, path, mode); -} - -int32_t mz_stream_is_open(void *stream) -{ - mz_stream *strm = (mz_stream *)stream; - if (strm == NULL || strm->vtbl == NULL || strm->vtbl->is_open == NULL) - return MZ_STREAM_ERROR; - return strm->vtbl->is_open(strm); -} - -int32_t mz_stream_read(void *stream, void *buf, int32_t size) -{ - mz_stream *strm = (mz_stream *)stream; - if (strm == NULL || strm->vtbl == NULL || strm->vtbl->read == NULL) - return MZ_PARAM_ERROR; - if (mz_stream_is_open(stream) != MZ_OK) - return MZ_STREAM_ERROR; - return strm->vtbl->read(strm, buf, size); -} - -static int32_t mz_stream_read_value(void *stream, uint64_t *value, int32_t len) -{ - uint8_t buf[8]; - int32_t n = 0; - int32_t i = 0; - - *value = 0; - if (mz_stream_read(stream, buf, len) == len) - { - for (n = 0; n < len; n += 1, i += 8) - *value += ((uint64_t)buf[n]) << i; - } - else if (mz_stream_error(stream)) - return MZ_STREAM_ERROR; - else - return MZ_END_OF_STREAM; - - return MZ_OK; -} - -int32_t mz_stream_read_uint8(void *stream, uint8_t *value) -{ - int32_t err = MZ_OK; - uint64_t value64 = 0; - - *value = 0; - err = mz_stream_read_value(stream, &value64, sizeof(uint8_t)); - if (err == MZ_OK) - *value = (uint8_t)value64; - return err; -} - -int32_t mz_stream_read_uint16(void *stream, uint16_t *value) -{ - int32_t err = MZ_OK; - uint64_t value64 = 0; - - *value = 0; - err = mz_stream_read_value(stream, &value64, sizeof(uint16_t)); - if (err == MZ_OK) - *value = (uint16_t)value64; - return err; -} - -int32_t mz_stream_read_uint32(void *stream, uint32_t *value) -{ - int32_t err = MZ_OK; - uint64_t value64 = 0; - - *value = 0; - err = mz_stream_read_value(stream, &value64, sizeof(uint32_t)); - if (err == MZ_OK) - *value = (uint32_t)value64; - return err; -} - -int32_t mz_stream_read_int64(void *stream, int64_t *value) -{ - return mz_stream_read_value(stream, (uint64_t *)value, sizeof(uint64_t)); -} - -int32_t mz_stream_read_uint64(void *stream, uint64_t *value) -{ - return mz_stream_read_value(stream, value, sizeof(uint64_t)); -} - -int32_t mz_stream_write(void *stream, const void *buf, int32_t size) -{ - mz_stream *strm = (mz_stream *)stream; - if (size == 0) - return size; - if (strm == NULL || strm->vtbl == NULL || strm->vtbl->write == NULL) - return MZ_PARAM_ERROR; - if (mz_stream_is_open(stream) != MZ_OK) - return MZ_STREAM_ERROR; - return strm->vtbl->write(strm, buf, size); -} - -static int32_t mz_stream_write_value(void *stream, uint64_t value, int32_t len) -{ - uint8_t buf[8]; - int32_t n = 0; - - for (n = 0; n < len; n += 1) - { - buf[n] = (uint8_t)(value & 0xff); - value >>= 8; - } - - if (value != 0) - { - /* Data overflow - hack for ZIP64 (X Roche) */ - for (n = 0; n < len; n += 1) - buf[n] = 0xff; - } - - if (mz_stream_write(stream, buf, len) != len) - return MZ_STREAM_ERROR; - - return MZ_OK; -} - -int32_t mz_stream_write_uint8(void *stream, uint8_t value) -{ - return mz_stream_write_value(stream, value, sizeof(uint8_t)); -} - -int32_t mz_stream_write_uint16(void *stream, uint16_t value) -{ - return mz_stream_write_value(stream, value, sizeof(uint16_t)); -} - -int32_t mz_stream_write_uint32(void *stream, uint32_t value) -{ - return mz_stream_write_value(stream, value, sizeof(uint32_t)); -} - -int32_t mz_stream_write_int64(void *stream, int64_t value) -{ - return mz_stream_write_value(stream, (uint64_t)value, sizeof(uint64_t)); -} - -int32_t mz_stream_write_uint64(void *stream, uint64_t value) -{ - return mz_stream_write_value(stream, value, sizeof(uint64_t)); -} - -int32_t mz_stream_copy(void *target, void *source, int32_t len) -{ - return mz_stream_copy_stream(target, NULL, source, NULL, len); -} - -int32_t mz_stream_copy_to_end(void *target, void *source) -{ - return mz_stream_copy_stream_to_end(target, NULL, source, NULL); -} - -int32_t mz_stream_copy_stream(void *target, mz_stream_write_cb write_cb, void *source, - mz_stream_read_cb read_cb, int32_t len) -{ - uint8_t buf[16384]; - int32_t bytes_to_copy = 0; - int32_t read = 0; - int32_t written = 0; - - if (write_cb == NULL) - write_cb = mz_stream_write; - if (read_cb == NULL) - read_cb = mz_stream_read; - - while (len > 0) - { - bytes_to_copy = len; - if (bytes_to_copy > (int32_t)sizeof(buf)) - bytes_to_copy = sizeof(buf); - read = read_cb(source, buf, bytes_to_copy); - if (read <= 0) - return MZ_STREAM_ERROR; - written = write_cb(target, buf, read); - if (written != read) - return MZ_STREAM_ERROR; - len -= read; - } - - return MZ_OK; -} - -int32_t mz_stream_copy_stream_to_end(void *target, mz_stream_write_cb write_cb, void *source, - mz_stream_read_cb read_cb) -{ - uint8_t buf[16384]; - int32_t read = 0; - int32_t written = 0; - - if (write_cb == NULL) - write_cb = mz_stream_write; - if (read_cb == NULL) - read_cb = mz_stream_read; - - read = read_cb(source, buf, sizeof(buf)); - while (read > 0) - { - written = write_cb(target, buf, read); - if (written != read) - return MZ_STREAM_ERROR; - read = read_cb(source, buf, sizeof(buf)); - } - - if (read < 0) - return MZ_STREAM_ERROR; - - return MZ_OK; -} - -int64_t mz_stream_tell(void *stream) -{ - mz_stream *strm = (mz_stream *)stream; - if (strm == NULL || strm->vtbl == NULL || strm->vtbl->tell == NULL) - return MZ_PARAM_ERROR; - if (mz_stream_is_open(stream) != MZ_OK) - return MZ_STREAM_ERROR; - return strm->vtbl->tell(strm); -} - -int32_t mz_stream_seek(void *stream, int64_t offset, int32_t origin) -{ - mz_stream *strm = (mz_stream *)stream; - if (strm == NULL || strm->vtbl == NULL || strm->vtbl->seek == NULL) - return MZ_PARAM_ERROR; - if (mz_stream_is_open(stream) != MZ_OK) - return MZ_STREAM_ERROR; - if (origin == MZ_SEEK_SET && offset < 0) - return MZ_SEEK_ERROR; - return strm->vtbl->seek(strm, offset, origin); -} - -int32_t mz_stream_find(void *stream, const void *find, int32_t find_size, int64_t max_seek, int64_t *position) -{ - uint8_t buf[MZ_STREAM_FIND_SIZE]; - int32_t buf_pos = 0; - int32_t read_size = sizeof(buf); - int32_t read = 0; - int64_t read_pos = 0; - int64_t start_pos = 0; - int64_t disk_pos = 0; - int32_t i = 0; - uint8_t first = 1; - int32_t err = MZ_OK; - - if (stream == NULL || find == NULL || position == NULL) - return MZ_PARAM_ERROR; - if (find_size < 0 || find_size >= (int32_t)sizeof(buf)) - return MZ_PARAM_ERROR; - - *position = -1; - - start_pos = mz_stream_tell(stream); - - while (read_pos < max_seek) - { - if (read_size > (int32_t)(max_seek - read_pos - buf_pos) && (max_seek - read_pos - buf_pos) < (int64_t)sizeof(buf)) - read_size = (int32_t)(max_seek - read_pos - buf_pos); - - read = mz_stream_read(stream, buf + buf_pos, read_size); - if ((read <= 0) || (read + buf_pos < find_size)) - break; - - for (i = 0; i <= read + buf_pos - find_size; i += 1) - { - if (memcmp(&buf[i], find, find_size) != 0) - continue; - - disk_pos = mz_stream_tell(stream); - - /* Seek to position on disk where the data was found */ - err = mz_stream_seek(stream, disk_pos - ((int64_t)read + buf_pos - i), MZ_SEEK_SET); - if (err != MZ_OK) - return MZ_EXIST_ERROR; - - *position = start_pos + read_pos + i; - return MZ_OK; - } - - if (first) - { - read -= find_size; - read_size -= find_size; - buf_pos = find_size; - first = 0; - } - - memmove(buf, buf + read, find_size); - read_pos += read; - } - - return MZ_EXIST_ERROR; -} - -int32_t mz_stream_find_reverse(void *stream, const void *find, int32_t find_size, int64_t max_seek, int64_t *position) -{ - uint8_t buf[MZ_STREAM_FIND_SIZE]; - int32_t buf_pos = 0; - int32_t read_size = MZ_STREAM_FIND_SIZE; - int64_t read_pos = 0; - int32_t read = 0; - int64_t start_pos = 0; - int64_t disk_pos = 0; - uint8_t first = 1; - int32_t i = 0; - int32_t err = MZ_OK; - - if (stream == NULL || find == NULL || position == NULL) - return MZ_PARAM_ERROR; - if (find_size < 0 || find_size >= (int32_t)sizeof(buf)) - return MZ_PARAM_ERROR; - - *position = -1; - - start_pos = mz_stream_tell(stream); - - while (read_pos < max_seek) - { - if (read_size > (int32_t)(max_seek - read_pos) && (max_seek - read_pos) < (int64_t)sizeof(buf)) - read_size = (int32_t)(max_seek - read_pos); - - if (mz_stream_seek(stream, start_pos - (read_pos + read_size), MZ_SEEK_SET) != MZ_OK) - break; - read = mz_stream_read(stream, buf, read_size); - if ((read <= 0) || (read + buf_pos < find_size)) - break; - if (read + buf_pos < MZ_STREAM_FIND_SIZE) - memmove(buf + MZ_STREAM_FIND_SIZE - (read + buf_pos), buf, read); - - for (i = find_size; i <= (read + buf_pos); i += 1) - { - if (memcmp(&buf[MZ_STREAM_FIND_SIZE - i], find, find_size) != 0) - continue; - - disk_pos = mz_stream_tell(stream); - - /* Seek to position on disk where the data was found */ - err = mz_stream_seek(stream, disk_pos + buf_pos - i, MZ_SEEK_SET); - if (err != MZ_OK) - return MZ_EXIST_ERROR; - - *position = start_pos - (read_pos - buf_pos + i); - return MZ_OK; - } - - if (first) - { - read -= find_size; - read_size -= find_size; - buf_pos = find_size; - first = 0; - } - - if (read == 0) - break; - - memmove(buf + read_size, buf, find_size); - read_pos += read; - } - - return MZ_EXIST_ERROR; -} - -int32_t mz_stream_close(void *stream) -{ - mz_stream *strm = (mz_stream *)stream; - if (strm == NULL || strm->vtbl == NULL || strm->vtbl->close == NULL) - return MZ_PARAM_ERROR; - if (mz_stream_is_open(stream) != MZ_OK) - return MZ_STREAM_ERROR; - return strm->vtbl->close(strm); -} - -int32_t mz_stream_error(void *stream) -{ - mz_stream *strm = (mz_stream *)stream; - if (strm == NULL || strm->vtbl == NULL || strm->vtbl->error == NULL) - return MZ_PARAM_ERROR; - return strm->vtbl->error(strm); -} - -int32_t mz_stream_set_base(void *stream, void *base) -{ - mz_stream *strm = (mz_stream *)stream; - strm->base = (mz_stream *)base; - return MZ_OK; -} - -void* mz_stream_get_interface(void *stream) -{ - mz_stream *strm = (mz_stream *)stream; - if (strm == NULL || strm->vtbl == NULL) - return NULL; - return (void *)strm->vtbl; -} - -int32_t mz_stream_get_prop_int64(void *stream, int32_t prop, int64_t *value) -{ - mz_stream *strm = (mz_stream *)stream; - if (strm == NULL || strm->vtbl == NULL || strm->vtbl->get_prop_int64 == NULL) - return MZ_PARAM_ERROR; - return strm->vtbl->get_prop_int64(stream, prop, value); -} - -int32_t mz_stream_set_prop_int64(void *stream, int32_t prop, int64_t value) -{ - mz_stream *strm = (mz_stream *)stream; - if (strm == NULL || strm->vtbl == NULL || strm->vtbl->set_prop_int64 == NULL) - return MZ_PARAM_ERROR; - return strm->vtbl->set_prop_int64(stream, prop, value); -} - -void *mz_stream_create(void **stream, mz_stream_vtbl *vtbl) -{ - if (stream == NULL) - return NULL; - if (vtbl == NULL || vtbl->create == NULL) - return NULL; - return vtbl->create(stream); -} - -void mz_stream_delete(void **stream) -{ - mz_stream *strm = NULL; - if (stream == NULL) - return; - strm = (mz_stream *)*stream; - if (strm != NULL && strm->vtbl != NULL && strm->vtbl->destroy != NULL) - strm->vtbl->destroy(stream); - *stream = NULL; -} - -/***************************************************************************/ - -typedef struct mz_stream_raw_s { - mz_stream stream; - int64_t total_in; - int64_t total_out; - int64_t max_total_in; -} mz_stream_raw; - -/***************************************************************************/ - -int32_t mz_stream_raw_open(void *stream, const char *path, int32_t mode) -{ - MZ_UNUSED(stream); - MZ_UNUSED(path); - MZ_UNUSED(mode); - - return MZ_OK; -} - -int32_t mz_stream_raw_is_open(void *stream) -{ - mz_stream_raw *raw = (mz_stream_raw *)stream; - return mz_stream_is_open(raw->stream.base); -} - -int32_t mz_stream_raw_read(void *stream, void *buf, int32_t size) -{ - mz_stream_raw *raw = (mz_stream_raw *)stream; - int32_t bytes_to_read = size; - int32_t read = 0; - - if (raw->max_total_in > 0) - { - if ((int64_t)bytes_to_read > (raw->max_total_in - raw->total_in)) - bytes_to_read = (int32_t)(raw->max_total_in - raw->total_in); - } - - read = mz_stream_read(raw->stream.base, buf, bytes_to_read); - - if (read > 0) - { - raw->total_in += read; - raw->total_out += read; - } - - return read; -} - -int32_t mz_stream_raw_write(void *stream, const void *buf, int32_t size) -{ - mz_stream_raw *raw = (mz_stream_raw *)stream; - int32_t written = 0; - - written = mz_stream_write(raw->stream.base, buf, size); - - if (written > 0) - { - raw->total_out += written; - raw->total_in += written; - } - - return written; -} - -int64_t mz_stream_raw_tell(void *stream) -{ - mz_stream_raw *raw = (mz_stream_raw *)stream; - return mz_stream_tell(raw->stream.base); -} - -int32_t mz_stream_raw_seek(void *stream, int64_t offset, int32_t origin) -{ - mz_stream_raw *raw = (mz_stream_raw *)stream; - return mz_stream_seek(raw->stream.base, offset, origin); -} - -int32_t mz_stream_raw_close(void *stream) -{ - MZ_UNUSED(stream); - return MZ_OK; -} - -int32_t mz_stream_raw_error(void *stream) -{ - mz_stream_raw *raw = (mz_stream_raw *)stream; - return mz_stream_error(raw->stream.base); -} - -int32_t mz_stream_raw_get_prop_int64(void *stream, int32_t prop, int64_t *value) -{ - mz_stream_raw *raw = (mz_stream_raw *)stream; - switch (prop) - { - case MZ_STREAM_PROP_TOTAL_IN: - *value = raw->total_in; - return MZ_OK; - case MZ_STREAM_PROP_TOTAL_OUT: - *value = raw->total_out; - return MZ_OK; - } - return MZ_EXIST_ERROR; -} - -int32_t mz_stream_raw_set_prop_int64(void *stream, int32_t prop, int64_t value) -{ - mz_stream_raw *raw = (mz_stream_raw *)stream; - switch (prop) - { - case MZ_STREAM_PROP_TOTAL_IN_MAX: - raw->max_total_in = value; - return MZ_OK; - } - return MZ_EXIST_ERROR; -} - -/***************************************************************************/ - -static mz_stream_vtbl mz_stream_raw_vtbl = { - mz_stream_raw_open, - mz_stream_raw_is_open, - mz_stream_raw_read, - mz_stream_raw_write, - mz_stream_raw_tell, - mz_stream_raw_seek, - mz_stream_raw_close, - mz_stream_raw_error, - mz_stream_raw_create, - mz_stream_raw_delete, - mz_stream_raw_get_prop_int64, - mz_stream_raw_set_prop_int64 -}; - -/***************************************************************************/ - -void *mz_stream_raw_create(void **stream) -{ - mz_stream_raw *raw = NULL; - - raw = (mz_stream_raw *)MZ_ALLOC(sizeof(mz_stream_raw)); - if (raw != NULL) - { - memset(raw, 0, sizeof(mz_stream_raw)); - raw->stream.vtbl = &mz_stream_raw_vtbl; - } - if (stream != NULL) - *stream = raw; - - return raw; -} - -void mz_stream_raw_delete(void **stream) -{ - mz_stream_raw *raw = NULL; - if (stream == NULL) - return; - raw = (mz_stream_raw *)*stream; - if (raw != NULL) - MZ_FREE(raw); - *stream = NULL; -} diff --git a/Pods/SSZipArchive/SSZipArchive/minizip/mz_strm.h b/Pods/SSZipArchive/SSZipArchive/minizip/mz_strm.h deleted file mode 100644 index 48535577f..000000000 --- a/Pods/SSZipArchive/SSZipArchive/minizip/mz_strm.h +++ /dev/null @@ -1,134 +0,0 @@ -/* mz_strm.h -- Stream interface - Version 2.9.2, February 12, 2020 - part of the MiniZip project - - Copyright (C) 2010-2020 Nathan Moinvaziri - https://github.com/nmoinvaz/minizip - - This program is distributed under the terms of the same license as zlib. - See the accompanying LICENSE file for the full text of the license. -*/ - -#ifndef MZ_STREAM_H -#define MZ_STREAM_H - -#ifdef __cplusplus -extern "C" { -#endif - -/***************************************************************************/ - -#define MZ_STREAM_PROP_TOTAL_IN (1) -#define MZ_STREAM_PROP_TOTAL_IN_MAX (2) -#define MZ_STREAM_PROP_TOTAL_OUT (3) -#define MZ_STREAM_PROP_TOTAL_OUT_MAX (4) -#define MZ_STREAM_PROP_HEADER_SIZE (5) -#define MZ_STREAM_PROP_FOOTER_SIZE (6) -#define MZ_STREAM_PROP_DISK_SIZE (7) -#define MZ_STREAM_PROP_DISK_NUMBER (8) -#define MZ_STREAM_PROP_COMPRESS_LEVEL (9) -#define MZ_STREAM_PROP_COMPRESS_ALGORITHM (10) -#define MZ_STREAM_PROP_COMPRESS_WINDOW (11) - -/***************************************************************************/ - -typedef int32_t (*mz_stream_open_cb) (void *stream, const char *path, int32_t mode); -typedef int32_t (*mz_stream_is_open_cb) (void *stream); -typedef int32_t (*mz_stream_read_cb) (void *stream, void *buf, int32_t size); -typedef int32_t (*mz_stream_write_cb) (void *stream, const void *buf, int32_t size); -typedef int64_t (*mz_stream_tell_cb) (void *stream); -typedef int32_t (*mz_stream_seek_cb) (void *stream, int64_t offset, int32_t origin); -typedef int32_t (*mz_stream_close_cb) (void *stream); -typedef int32_t (*mz_stream_error_cb) (void *stream); -typedef void* (*mz_stream_create_cb) (void **stream); -typedef void (*mz_stream_destroy_cb) (void **stream); - -typedef int32_t (*mz_stream_get_prop_int64_cb) (void *stream, int32_t prop, int64_t *value); -typedef int32_t (*mz_stream_set_prop_int64_cb) (void *stream, int32_t prop, int64_t value); - -typedef int32_t (*mz_stream_find_cb) (void *stream, const void *find, int32_t find_size, - int64_t max_seek, int64_t *position); - -/***************************************************************************/ - -typedef struct mz_stream_vtbl_s -{ - mz_stream_open_cb open; - mz_stream_is_open_cb is_open; - mz_stream_read_cb read; - mz_stream_write_cb write; - mz_stream_tell_cb tell; - mz_stream_seek_cb seek; - mz_stream_close_cb close; - mz_stream_error_cb error; - mz_stream_create_cb create; - mz_stream_destroy_cb destroy; - - mz_stream_get_prop_int64_cb get_prop_int64; - mz_stream_set_prop_int64_cb set_prop_int64; -} mz_stream_vtbl; - -typedef struct mz_stream_s { - mz_stream_vtbl *vtbl; - struct mz_stream_s *base; -} mz_stream; - -/***************************************************************************/ - -int32_t mz_stream_open(void *stream, const char *path, int32_t mode); -int32_t mz_stream_is_open(void *stream); -int32_t mz_stream_read(void *stream, void *buf, int32_t size); -int32_t mz_stream_read_uint8(void *stream, uint8_t *value); -int32_t mz_stream_read_uint16(void *stream, uint16_t *value); -int32_t mz_stream_read_uint32(void *stream, uint32_t *value); -int32_t mz_stream_read_int64(void *stream, int64_t *value); -int32_t mz_stream_read_uint64(void *stream, uint64_t *value); -int32_t mz_stream_write(void *stream, const void *buf, int32_t size); -int32_t mz_stream_write_uint8(void *stream, uint8_t value); -int32_t mz_stream_write_uint16(void *stream, uint16_t value); -int32_t mz_stream_write_uint32(void *stream, uint32_t value); -int32_t mz_stream_write_int64(void *stream, int64_t value); -int32_t mz_stream_write_uint64(void *stream, uint64_t value); -int32_t mz_stream_copy(void *target, void *source, int32_t len); -int32_t mz_stream_copy_to_end(void *target, void *source); -int32_t mz_stream_copy_stream(void *target, mz_stream_write_cb write_cb, void *source, mz_stream_read_cb read_cb, int32_t len); -int32_t mz_stream_copy_stream_to_end(void *target, mz_stream_write_cb write_cb, void *source, mz_stream_read_cb read_cb); -int64_t mz_stream_tell(void *stream); -int32_t mz_stream_seek(void *stream, int64_t offset, int32_t origin); -int32_t mz_stream_find(void *stream, const void *find, int32_t find_size, int64_t max_seek, int64_t *position); -int32_t mz_stream_find_reverse(void *stream, const void *find, int32_t find_size, int64_t max_seek, int64_t *position); -int32_t mz_stream_close(void *stream); -int32_t mz_stream_error(void *stream); - -int32_t mz_stream_set_base(void *stream, void *base); -void* mz_stream_get_interface(void *stream); -int32_t mz_stream_get_prop_int64(void *stream, int32_t prop, int64_t *value); -int32_t mz_stream_set_prop_int64(void *stream, int32_t prop, int64_t value); - -void* mz_stream_create(void **stream, mz_stream_vtbl *vtbl); -void mz_stream_delete(void **stream); - -/***************************************************************************/ - -int32_t mz_stream_raw_open(void *stream, const char *filename, int32_t mode); -int32_t mz_stream_raw_is_open(void *stream); -int32_t mz_stream_raw_read(void *stream, void *buf, int32_t size); -int32_t mz_stream_raw_write(void *stream, const void *buf, int32_t size); -int64_t mz_stream_raw_tell(void *stream); -int32_t mz_stream_raw_seek(void *stream, int64_t offset, int32_t origin); -int32_t mz_stream_raw_close(void *stream); -int32_t mz_stream_raw_error(void *stream); - -int32_t mz_stream_raw_get_prop_int64(void *stream, int32_t prop, int64_t *value); -int32_t mz_stream_raw_set_prop_int64(void *stream, int32_t prop, int64_t value); - -void* mz_stream_raw_create(void **stream); -void mz_stream_raw_delete(void **stream); - -/***************************************************************************/ - -#ifdef __cplusplus -} -#endif - -#endif diff --git a/Pods/SSZipArchive/SSZipArchive/minizip/mz_strm_buf.c b/Pods/SSZipArchive/SSZipArchive/minizip/mz_strm_buf.c deleted file mode 100644 index 9390b9d39..000000000 --- a/Pods/SSZipArchive/SSZipArchive/minizip/mz_strm_buf.c +++ /dev/null @@ -1,416 +0,0 @@ -/* mz_strm_buf.c -- Stream for buffering reads/writes - Version 2.9.2, February 12, 2020 - part of the MiniZip project - - This version of ioapi is designed to buffer IO. - - Copyright (C) 2010-2020 Nathan Moinvaziri - https://github.com/nmoinvaz/minizip - - This program is distributed under the terms of the same license as zlib. - See the accompanying LICENSE file for the full text of the license. -*/ - -#include "mz.h" -#include "mz_strm.h" -#include "mz_strm_buf.h" - -/***************************************************************************/ - -static mz_stream_vtbl mz_stream_buffered_vtbl = { - mz_stream_buffered_open, - mz_stream_buffered_is_open, - mz_stream_buffered_read, - mz_stream_buffered_write, - mz_stream_buffered_tell, - mz_stream_buffered_seek, - mz_stream_buffered_close, - mz_stream_buffered_error, - mz_stream_buffered_create, - mz_stream_buffered_delete, - NULL, - NULL -}; - -/***************************************************************************/ - -typedef struct mz_stream_buffered_s { - mz_stream stream; - int32_t error; - char readbuf[INT16_MAX]; - int32_t readbuf_len; - int32_t readbuf_pos; - int32_t readbuf_hits; - int32_t readbuf_misses; - char writebuf[INT16_MAX]; - int32_t writebuf_len; - int32_t writebuf_pos; - int32_t writebuf_hits; - int32_t writebuf_misses; - int64_t position; -} mz_stream_buffered; - -/***************************************************************************/ - -#if 0 -# define mz_stream_buffered_print printf -#else -# define mz_stream_buffered_print(fmt,...) -#endif - -/***************************************************************************/ - -static int32_t mz_stream_buffered_reset(void *stream) -{ - mz_stream_buffered *buffered = (mz_stream_buffered *)stream; - - buffered->readbuf_len = 0; - buffered->readbuf_pos = 0; - buffered->writebuf_len = 0; - buffered->writebuf_pos = 0; - buffered->position = 0; - - return MZ_OK; -} - -int32_t mz_stream_buffered_open(void *stream, const char *path, int32_t mode) -{ - mz_stream_buffered *buffered = (mz_stream_buffered *)stream; - mz_stream_buffered_print("Buffered - Open (mode %" PRId32 ")\n", mode); - mz_stream_buffered_reset(buffered); - return mz_stream_open(buffered->stream.base, path, mode); -} - -int32_t mz_stream_buffered_is_open(void *stream) -{ - mz_stream_buffered *buffered = (mz_stream_buffered *)stream; - return mz_stream_is_open(buffered->stream.base); -} - -static int32_t mz_stream_buffered_flush(void *stream, int32_t *written) -{ - mz_stream_buffered *buffered = (mz_stream_buffered *)stream; - int32_t total_bytes_written = 0; - int32_t bytes_to_write = buffered->writebuf_len; - int32_t bytes_left_to_write = buffered->writebuf_len; - int32_t bytes_written = 0; - - *written = 0; - - while (bytes_left_to_write > 0) - { - bytes_written = mz_stream_write(buffered->stream.base, - buffered->writebuf + (bytes_to_write - bytes_left_to_write), bytes_left_to_write); - - if (bytes_written != bytes_left_to_write) - return MZ_WRITE_ERROR; - - buffered->writebuf_misses += 1; - - mz_stream_buffered_print("Buffered - Write flush (%" PRId32 ":%" PRId32 " len %" PRId32 ")\n", - bytes_to_write, bytes_left_to_write, buffered->writebuf_len); - - total_bytes_written += bytes_written; - bytes_left_to_write -= bytes_written; - buffered->position += bytes_written; - } - - buffered->writebuf_len = 0; - buffered->writebuf_pos = 0; - - *written = total_bytes_written; - return MZ_OK; -} - -int32_t mz_stream_buffered_read(void *stream, void *buf, int32_t size) -{ - mz_stream_buffered *buffered = (mz_stream_buffered *)stream; - int32_t buf_len = 0; - int32_t bytes_to_read = 0; - int32_t bytes_to_copy = 0; - int32_t bytes_left_to_read = size; - int32_t bytes_read = 0; - - mz_stream_buffered_print("Buffered - Read (size %" PRId32 " pos %" PRId64 ")\n", size, buffered->position); - - if (buffered->writebuf_len > 0) - { - mz_stream_buffered_print("Buffered - Switch from write to read, not yet supported (pos %" PRId64 ")\n", - buffered->position); - } - - while (bytes_left_to_read > 0) - { - if ((buffered->readbuf_len == 0) || (buffered->readbuf_pos == buffered->readbuf_len)) - { - if (buffered->readbuf_len == sizeof(buffered->readbuf)) - { - buffered->readbuf_pos = 0; - buffered->readbuf_len = 0; - } - - bytes_to_read = (int32_t)sizeof(buffered->readbuf) - (buffered->readbuf_len - buffered->readbuf_pos); - bytes_read = mz_stream_read(buffered->stream.base, buffered->readbuf + buffered->readbuf_pos, bytes_to_read); - if (bytes_read < 0) - return bytes_read; - - buffered->readbuf_misses += 1; - buffered->readbuf_len += bytes_read; - buffered->position += bytes_read; - - mz_stream_buffered_print("Buffered - Filled (read %" PRId32 "/%" PRId32 " buf %" PRId32 ":%" PRId32 " pos %" PRId64 ")\n", - bytes_read, bytes_to_read, buffered->readbuf_pos, buffered->readbuf_len, buffered->position); - - if (bytes_read == 0) - break; - } - - if ((buffered->readbuf_len - buffered->readbuf_pos) > 0) - { - bytes_to_copy = buffered->readbuf_len - buffered->readbuf_pos; - if (bytes_to_copy > bytes_left_to_read) - bytes_to_copy = bytes_left_to_read; - - memcpy((char *)buf + buf_len, buffered->readbuf + buffered->readbuf_pos, bytes_to_copy); - - buf_len += bytes_to_copy; - bytes_left_to_read -= bytes_to_copy; - - buffered->readbuf_hits += 1; - buffered->readbuf_pos += bytes_to_copy; - - mz_stream_buffered_print("Buffered - Emptied (copied %" PRId32 " remaining %" PRId32 " buf %" PRId32 ":%" PRId32 " pos %" PRId64 ")\n", - bytes_to_copy, bytes_left_to_read, buffered->readbuf_pos, buffered->readbuf_len, buffered->position); - } - } - - return size - bytes_left_to_read; -} - -int32_t mz_stream_buffered_write(void *stream, const void *buf, int32_t size) -{ - mz_stream_buffered *buffered = (mz_stream_buffered *)stream; - int32_t bytes_to_write = size; - int32_t bytes_left_to_write = size; - int32_t bytes_to_copy = 0; - int32_t bytes_used = 0; - int32_t bytes_flushed = 0; - int32_t err = MZ_OK; - - - mz_stream_buffered_print("Buffered - Write (size %" PRId32 " len %" PRId32 " pos %" PRId64 ")\n", - size, buffered->writebuf_len, buffered->position); - - if (buffered->readbuf_len > 0) - { - buffered->position -= buffered->readbuf_len; - buffered->position += buffered->readbuf_pos; - - buffered->readbuf_len = 0; - buffered->readbuf_pos = 0; - - mz_stream_buffered_print("Buffered - Switch from read to write (pos %" PRId64 ")\n", buffered->position); - - err = mz_stream_seek(buffered->stream.base, buffered->position, MZ_SEEK_SET); - if (err != MZ_OK) - return err; - } - - while (bytes_left_to_write > 0) - { - bytes_used = buffered->writebuf_len; - if (bytes_used > buffered->writebuf_pos) - bytes_used = buffered->writebuf_pos; - bytes_to_copy = (int32_t)sizeof(buffered->writebuf) - bytes_used; - if (bytes_to_copy > bytes_left_to_write) - bytes_to_copy = bytes_left_to_write; - - if (bytes_to_copy == 0) - { - err = mz_stream_buffered_flush(stream, &bytes_flushed); - if (err != MZ_OK) - return err; - if (bytes_flushed == 0) - return 0; - - continue; - } - - memcpy(buffered->writebuf + buffered->writebuf_pos, - (const char *)buf + (bytes_to_write - bytes_left_to_write), bytes_to_copy); - - mz_stream_buffered_print("Buffered - Write copy (remaining %" PRId32 " write %" PRId32 ":%" PRId32 " len %" PRId32 ")\n", - bytes_to_copy, bytes_to_write, bytes_left_to_write, buffered->writebuf_len); - - bytes_left_to_write -= bytes_to_copy; - - buffered->writebuf_pos += bytes_to_copy; - buffered->writebuf_hits += 1; - if (buffered->writebuf_pos > buffered->writebuf_len) - buffered->writebuf_len += buffered->writebuf_pos - buffered->writebuf_len; - } - - return size - bytes_left_to_write; -} - -int64_t mz_stream_buffered_tell(void *stream) -{ - mz_stream_buffered *buffered = (mz_stream_buffered *)stream; - int64_t position = mz_stream_tell(buffered->stream.base); - - buffered->position = position; - - mz_stream_buffered_print("Buffered - Tell (pos %" PRId64 " readpos %" PRId32 " writepos %" PRId32 ")\n", - buffered->position, buffered->readbuf_pos, buffered->writebuf_pos); - - if (buffered->readbuf_len > 0) - position -= ((int64_t)buffered->readbuf_len - buffered->readbuf_pos); - if (buffered->writebuf_len > 0) - position += buffered->writebuf_pos; - return position; -} - -int32_t mz_stream_buffered_seek(void *stream, int64_t offset, int32_t origin) -{ - mz_stream_buffered *buffered = (mz_stream_buffered *)stream; - int32_t bytes_flushed = 0; - int32_t err = MZ_OK; - - mz_stream_buffered_print("Buffered - Seek (origin %" PRId32 " offset %" PRId64 " pos %" PRId64 ")\n", - origin, offset, buffered->position); - - switch (origin) - { - case MZ_SEEK_SET: - - if (buffered->writebuf_len > 0) - { - if ((offset >= buffered->position) && (offset <= buffered->position + buffered->writebuf_len)) - { - buffered->writebuf_pos = (int32_t)(offset - buffered->position); - return MZ_OK; - } - } - - if ((buffered->readbuf_len > 0) && (offset < buffered->position) && - (offset >= buffered->position - buffered->readbuf_len)) - { - buffered->readbuf_pos = (int32_t)(offset - (buffered->position - buffered->readbuf_len)); - return MZ_OK; - } - - err = mz_stream_buffered_flush(stream, &bytes_flushed); - if (err != MZ_OK) - return err; - - buffered->position = offset; - break; - - case MZ_SEEK_CUR: - - if (buffered->readbuf_len > 0) - { - if (offset <= ((int64_t)buffered->readbuf_len - buffered->readbuf_pos)) - { - buffered->readbuf_pos += (uint32_t)offset; - return MZ_OK; - } - offset -= ((int64_t)buffered->readbuf_len - buffered->readbuf_pos); - buffered->position += offset; - } - if (buffered->writebuf_len > 0) - { - if (offset <= ((int64_t)buffered->writebuf_len - buffered->writebuf_pos)) - { - buffered->writebuf_pos += (uint32_t)offset; - return MZ_OK; - } - /* offset -= (buffered->writebuf_len - buffered->writebuf_pos); */ - } - - err = mz_stream_buffered_flush(stream, &bytes_flushed); - if (err != MZ_OK) - return err; - - break; - - case MZ_SEEK_END: - - if (buffered->writebuf_len > 0) - { - buffered->writebuf_pos = buffered->writebuf_len; - return MZ_OK; - } - break; - } - - buffered->readbuf_len = 0; - buffered->readbuf_pos = 0; - buffered->writebuf_len = 0; - buffered->writebuf_pos = 0; - - return mz_stream_seek(buffered->stream.base, offset, origin); -} - -int32_t mz_stream_buffered_close(void *stream) -{ - mz_stream_buffered *buffered = (mz_stream_buffered *)stream; - int32_t bytes_flushed = 0; - - mz_stream_buffered_flush(stream, &bytes_flushed); - mz_stream_buffered_print("Buffered - Close (flushed %" PRId32 ")\n", bytes_flushed); - - if (buffered->readbuf_hits + buffered->readbuf_misses > 0) - { - mz_stream_buffered_print("Buffered - Read efficiency %.02f%%\n", - (buffered->readbuf_hits / ((float)buffered->readbuf_hits + buffered->readbuf_misses)) * 100); - } - - if (buffered->writebuf_hits + buffered->writebuf_misses > 0) - { - mz_stream_buffered_print("Buffered - Write efficiency %.02f%%\n", - (buffered->writebuf_hits / ((float)buffered->writebuf_hits + buffered->writebuf_misses)) * 100); - } - - mz_stream_buffered_reset(buffered); - - return mz_stream_close(buffered->stream.base); -} - -int32_t mz_stream_buffered_error(void *stream) -{ - mz_stream_buffered *buffered = (mz_stream_buffered *)stream; - return mz_stream_error(buffered->stream.base); -} - -void *mz_stream_buffered_create(void **stream) -{ - mz_stream_buffered *buffered = NULL; - - buffered = (mz_stream_buffered *)MZ_ALLOC(sizeof(mz_stream_buffered)); - if (buffered != NULL) - { - memset(buffered, 0, sizeof(mz_stream_buffered)); - buffered->stream.vtbl = &mz_stream_buffered_vtbl; - } - if (stream != NULL) - *stream = buffered; - - return buffered; -} - -void mz_stream_buffered_delete(void **stream) -{ - mz_stream_buffered *buffered = NULL; - if (stream == NULL) - return; - buffered = (mz_stream_buffered *)*stream; - if (buffered != NULL) - MZ_FREE(buffered); - *stream = NULL; -} - -void *mz_stream_buffered_get_interface(void) -{ - return (void *)&mz_stream_buffered_vtbl; -} diff --git a/Pods/SSZipArchive/SSZipArchive/minizip/mz_strm_buf.h b/Pods/SSZipArchive/SSZipArchive/minizip/mz_strm_buf.h deleted file mode 100644 index 8920acd94..000000000 --- a/Pods/SSZipArchive/SSZipArchive/minizip/mz_strm_buf.h +++ /dev/null @@ -1,43 +0,0 @@ -/* mz_strm_buf.h -- Stream for buffering reads/writes - Version 2.9.2, February 12, 2020 - part of the MiniZip project - - This version of ioapi is designed to buffer IO. - - Copyright (C) 2010-2020 Nathan Moinvaziri - https://github.com/nmoinvaz/minizip - - This program is distributed under the terms of the same license as zlib. - See the accompanying LICENSE file for the full text of the license. -*/ - -#ifndef MZ_STREAM_BUFFERED_H -#define MZ_STREAM_BUFFERED_H - -#ifdef __cplusplus -extern "C" { -#endif - -/***************************************************************************/ - -int32_t mz_stream_buffered_open(void *stream, const char *path, int32_t mode); -int32_t mz_stream_buffered_is_open(void *stream); -int32_t mz_stream_buffered_read(void *stream, void *buf, int32_t size); -int32_t mz_stream_buffered_write(void *stream, const void *buf, int32_t size); -int64_t mz_stream_buffered_tell(void *stream); -int32_t mz_stream_buffered_seek(void *stream, int64_t offset, int32_t origin); -int32_t mz_stream_buffered_close(void *stream); -int32_t mz_stream_buffered_error(void *stream); - -void* mz_stream_buffered_create(void **stream); -void mz_stream_buffered_delete(void **stream); - -void* mz_stream_buffered_get_interface(void); - -/***************************************************************************/ - -#ifdef __cplusplus -} -#endif - -#endif diff --git a/Pods/SSZipArchive/SSZipArchive/minizip/mz_strm_mem.c b/Pods/SSZipArchive/SSZipArchive/minizip/mz_strm_mem.c deleted file mode 100644 index 6f3422565..000000000 --- a/Pods/SSZipArchive/SSZipArchive/minizip/mz_strm_mem.c +++ /dev/null @@ -1,303 +0,0 @@ -/* mz_strm_mem.c -- Stream for memory access - Version 2.9.2, February 12, 2020 - part of the MiniZip project - - This interface is designed to access memory rather than files. - We do use a region of memory to put data in to and take it out of. - - Based on Unzip ioapi.c version 0.22, May 19th, 2003 - - Copyright (C) 2010-2020 Nathan Moinvaziri - https://github.com/nmoinvaz/minizip - Copyright (C) 2003 Justin Fletcher - Copyright (C) 1998-2003 Gilles Vollant - https://www.winimage.com/zLibDll/minizip.html - - This program is distributed under the terms of the same license as zlib. - See the accompanying LICENSE file for the full text of the license. -*/ - - -#include "mz.h" -#include "mz_strm.h" -#include "mz_strm_mem.h" - -/***************************************************************************/ - -static mz_stream_vtbl mz_stream_mem_vtbl = { - mz_stream_mem_open, - mz_stream_mem_is_open, - mz_stream_mem_read, - mz_stream_mem_write, - mz_stream_mem_tell, - mz_stream_mem_seek, - mz_stream_mem_close, - mz_stream_mem_error, - mz_stream_mem_create, - mz_stream_mem_delete, - NULL, - NULL -}; - -/***************************************************************************/ - -typedef struct mz_stream_mem_s { - mz_stream stream; - int32_t mode; - uint8_t *buffer; /* Memory buffer pointer */ - int32_t size; /* Size of the memory buffer */ - int32_t limit; /* Furthest we've written */ - int32_t position; /* Current position in the memory */ - int32_t grow_size; /* Size to grow when full */ -} mz_stream_mem; - -/***************************************************************************/ - -static int32_t mz_stream_mem_set_size(void *stream, int32_t size) -{ - mz_stream_mem *mem = (mz_stream_mem *)stream; - int32_t new_size = size; - uint8_t *new_buf = NULL; - - - new_buf = (uint8_t *)MZ_ALLOC((uint32_t)new_size); - if (new_buf == NULL) - return MZ_BUF_ERROR; - - if (mem->buffer) - { - memcpy(new_buf, mem->buffer, mem->size); - MZ_FREE(mem->buffer); - } - - mem->buffer = new_buf; - mem->size = new_size; - return MZ_OK; -} - -int32_t mz_stream_mem_open(void *stream, const char *path, int32_t mode) -{ - mz_stream_mem *mem = (mz_stream_mem *)stream; - int32_t err = MZ_OK; - - MZ_UNUSED(path); - - mem->mode = mode; - mem->limit = 0; - mem->position = 0; - - if (mem->mode & MZ_OPEN_MODE_CREATE) - err = mz_stream_mem_set_size(stream, mem->grow_size); - else - mem->limit = mem->size; - - return err; -} - -int32_t mz_stream_mem_is_open(void *stream) -{ - mz_stream_mem *mem = (mz_stream_mem *)stream; - if (mem->buffer == NULL) - return MZ_OPEN_ERROR; - return MZ_OK; -} - -int32_t mz_stream_mem_read(void *stream, void *buf, int32_t size) -{ - mz_stream_mem *mem = (mz_stream_mem *)stream; - - if (size > mem->size - mem->position) - size = mem->size - mem->position; - if (mem->position + size > mem->limit) - size = mem->limit - mem->position; - - if (size <= 0) - return 0; - - memcpy(buf, mem->buffer + mem->position, size); - mem->position += size; - - return size; -} - -int32_t mz_stream_mem_write(void *stream, const void *buf, int32_t size) -{ - mz_stream_mem *mem = (mz_stream_mem *)stream; - int32_t new_size = 0; - int32_t err = MZ_OK; - - if (size == 0) - return size; - - if (size > mem->size - mem->position) - { - if (mem->mode & MZ_OPEN_MODE_CREATE) - { - new_size = mem->size; - if (size < mem->grow_size) - new_size += mem->grow_size; - else - new_size += size; - - err = mz_stream_mem_set_size(stream, new_size); - if (err != MZ_OK) - return err; - } - else - { - size = mem->size - mem->position; - } - } - - memcpy(mem->buffer + mem->position, buf, size); - - mem->position += size; - if (mem->position > mem->limit) - mem->limit = mem->position; - - return size; -} - -int64_t mz_stream_mem_tell(void *stream) -{ - mz_stream_mem *mem = (mz_stream_mem *)stream; - return mem->position; -} - -int32_t mz_stream_mem_seek(void *stream, int64_t offset, int32_t origin) -{ - mz_stream_mem *mem = (mz_stream_mem *)stream; - int64_t new_pos = 0; - int32_t err = MZ_OK; - - switch (origin) - { - case MZ_SEEK_CUR: - new_pos = mem->position + offset; - break; - case MZ_SEEK_END: - new_pos = mem->limit + offset; - break; - case MZ_SEEK_SET: - new_pos = offset; - break; - default: - return MZ_SEEK_ERROR; - } - - if (new_pos > mem->size) - { - if ((mem->mode & MZ_OPEN_MODE_CREATE) == 0) - return MZ_SEEK_ERROR; - - err = mz_stream_mem_set_size(stream, (int32_t)new_pos); - if (err != MZ_OK) - return err; - } - else if (new_pos < 0) - { - return MZ_SEEK_ERROR; - } - - mem->position = (int32_t)new_pos; - return MZ_OK; -} - -int32_t mz_stream_mem_close(void *stream) -{ - MZ_UNUSED(stream); - - /* We never return errors */ - return MZ_OK; -} - -int32_t mz_stream_mem_error(void *stream) -{ - MZ_UNUSED(stream); - - /* We never return errors */ - return MZ_OK; -} - -void mz_stream_mem_set_buffer(void *stream, void *buf, int32_t size) -{ - mz_stream_mem *mem = (mz_stream_mem *)stream; - mem->buffer = (uint8_t *)buf; - mem->size = size; - mem->limit = size; -} - -int32_t mz_stream_mem_get_buffer(void *stream, const void **buf) -{ - return mz_stream_mem_get_buffer_at(stream, 0, buf); -} - -int32_t mz_stream_mem_get_buffer_at(void *stream, int64_t position, const void **buf) -{ - mz_stream_mem *mem = (mz_stream_mem *)stream; - if (buf == NULL || position < 0 || mem->size < position || mem->buffer == NULL) - return MZ_SEEK_ERROR; - *buf = mem->buffer + position; - return MZ_OK; -} - -int32_t mz_stream_mem_get_buffer_at_current(void *stream, const void **buf) -{ - mz_stream_mem *mem = (mz_stream_mem *)stream; - return mz_stream_mem_get_buffer_at(stream, mem->position, buf); -} - -void mz_stream_mem_get_buffer_length(void *stream, int32_t *length) -{ - mz_stream_mem *mem = (mz_stream_mem *)stream; - *length = mem->limit; -} - -void mz_stream_mem_set_buffer_limit(void *stream, int32_t limit) -{ - mz_stream_mem *mem = (mz_stream_mem *)stream; - mem->limit = limit; -} - -void mz_stream_mem_set_grow_size(void *stream, int32_t grow_size) -{ - mz_stream_mem *mem = (mz_stream_mem *)stream; - mem->grow_size = grow_size; -} - -void *mz_stream_mem_create(void **stream) -{ - mz_stream_mem *mem = NULL; - - mem = (mz_stream_mem *)MZ_ALLOC(sizeof(mz_stream_mem)); - if (mem != NULL) - { - memset(mem, 0, sizeof(mz_stream_mem)); - mem->stream.vtbl = &mz_stream_mem_vtbl; - mem->grow_size = 4096; - } - if (stream != NULL) - *stream = mem; - - return mem; -} - -void mz_stream_mem_delete(void **stream) -{ - mz_stream_mem *mem = NULL; - if (stream == NULL) - return; - mem = (mz_stream_mem *)*stream; - if (mem != NULL) - { - if ((mem->mode & MZ_OPEN_MODE_CREATE) && (mem->buffer != NULL)) - MZ_FREE(mem->buffer); - MZ_FREE(mem); - } - *stream = NULL; -} - -void *mz_stream_mem_get_interface(void) -{ - return (void *)&mz_stream_mem_vtbl; -} diff --git a/Pods/SSZipArchive/SSZipArchive/minizip/mz_strm_mem.h b/Pods/SSZipArchive/SSZipArchive/minizip/mz_strm_mem.h deleted file mode 100644 index f33ea6577..000000000 --- a/Pods/SSZipArchive/SSZipArchive/minizip/mz_strm_mem.h +++ /dev/null @@ -1,49 +0,0 @@ -/* mz_strm_mem.h -- Stream for memory access - Version 2.9.2, February 12, 2020 - part of MiniZip project - - Copyright (C) 2010-2020 Nathan Moinvaziri - https://github.com/nmoinvaz/minizip - - This program is distributed under the terms of the same license as zlib. - See the accompanying LICENSE file for the full text of the license. -*/ - -#ifndef MZ_STREAM_MEM_H -#define MZ_STREAM_MEM_H - -#ifdef __cplusplus -extern "C" { -#endif - -/***************************************************************************/ - -int32_t mz_stream_mem_open(void *stream, const char *filename, int32_t mode); -int32_t mz_stream_mem_is_open(void *stream); -int32_t mz_stream_mem_read(void *stream, void *buf, int32_t size); -int32_t mz_stream_mem_write(void *stream, const void *buf, int32_t size); -int64_t mz_stream_mem_tell(void *stream); -int32_t mz_stream_mem_seek(void *stream, int64_t offset, int32_t origin); -int32_t mz_stream_mem_close(void *stream); -int32_t mz_stream_mem_error(void *stream); - -void mz_stream_mem_set_buffer(void *stream, void *buf, int32_t size); -int32_t mz_stream_mem_get_buffer(void *stream, const void **buf); -int32_t mz_stream_mem_get_buffer_at(void *stream, int64_t position, const void **buf); -int32_t mz_stream_mem_get_buffer_at_current(void *stream, const void **buf); -void mz_stream_mem_get_buffer_length(void *stream, int32_t *length); -void mz_stream_mem_set_buffer_limit(void *stream, int32_t limit); -void mz_stream_mem_set_grow_size(void *stream, int32_t grow_size); - -void* mz_stream_mem_create(void **stream); -void mz_stream_mem_delete(void **stream); - -void* mz_stream_mem_get_interface(void); - -/***************************************************************************/ - -#ifdef __cplusplus -} -#endif - -#endif diff --git a/Pods/SSZipArchive/SSZipArchive/minizip/mz_strm_os.h b/Pods/SSZipArchive/SSZipArchive/minizip/mz_strm_os.h deleted file mode 100644 index 809585819..000000000 --- a/Pods/SSZipArchive/SSZipArchive/minizip/mz_strm_os.h +++ /dev/null @@ -1,41 +0,0 @@ -/* mz_sstrm_os.h -- Stream for filesystem access - Version 2.9.2, February 12, 2020 - part of the MiniZip project - - Copyright (C) 2010-2020 Nathan Moinvaziri - https://github.com/nmoinvaz/minizip - - This program is distributed under the terms of the same license as zlib. - See the accompanying LICENSE file for the full text of the license. -*/ - -#ifndef MZ_STREAM_OS_H -#define MZ_STREAM_OS_H - -#ifdef __cplusplus -extern "C" { -#endif - -/***************************************************************************/ - -int32_t mz_stream_os_open(void *stream, const char *path, int32_t mode); -int32_t mz_stream_os_is_open(void *stream); -int32_t mz_stream_os_read(void *stream, void *buf, int32_t size); -int32_t mz_stream_os_write(void *stream, const void *buf, int32_t size); -int64_t mz_stream_os_tell(void *stream); -int32_t mz_stream_os_seek(void *stream, int64_t offset, int32_t origin); -int32_t mz_stream_os_close(void *stream); -int32_t mz_stream_os_error(void *stream); - -void* mz_stream_os_create(void **stream); -void mz_stream_os_delete(void **stream); - -void* mz_stream_os_get_interface(void); - -/***************************************************************************/ - -#ifdef __cplusplus -} -#endif - -#endif diff --git a/Pods/SSZipArchive/SSZipArchive/minizip/mz_strm_os_posix.c b/Pods/SSZipArchive/SSZipArchive/minizip/mz_strm_os_posix.c deleted file mode 100644 index fa3f8774e..000000000 --- a/Pods/SSZipArchive/SSZipArchive/minizip/mz_strm_os_posix.c +++ /dev/null @@ -1,228 +0,0 @@ -/* mz_strm_posix.c -- Stream for filesystem access for posix/linux - Version 2.9.2, February 12, 2020 - part of the MiniZip project - - Copyright (C) 2010-2020 Nathan Moinvaziri - https://github.com/nmoinvaz/minizip - Modifications for Zip64 support - Copyright (C) 2009-2010 Mathias Svensson - http://result42.com - Copyright (C) 1998-2010 Gilles Vollant - https://www.winimage.com/zLibDll/minizip.html - - This program is distributed under the terms of the same license as zlib. - See the accompanying LICENSE file for the full text of the license. -*/ - - -#include "mz.h" -#include "mz_strm.h" -#include "mz_strm_os.h" - -#include /* fopen, fread.. */ -#include - -/***************************************************************************/ - -#define fopen64 fopen -#ifndef MZ_FILE32_API -# ifndef NO_FSEEKO -# define ftello64 ftello -# define fseeko64 fseeko -# elif defined(_MSC_VER) && (_MSC_VER >= 1400) -# define ftello64 _ftelli64 -# define fseeko64 _fseeki64 -# endif -#endif -#ifndef ftello64 -# define ftello64 ftell -#endif -#ifndef fseeko64 -# define fseeko64 fseek -#endif - -/***************************************************************************/ - -static mz_stream_vtbl mz_stream_os_vtbl = { - mz_stream_os_open, - mz_stream_os_is_open, - mz_stream_os_read, - mz_stream_os_write, - mz_stream_os_tell, - mz_stream_os_seek, - mz_stream_os_close, - mz_stream_os_error, - mz_stream_os_create, - mz_stream_os_delete, - NULL, - NULL -}; - -/***************************************************************************/ - -typedef struct mz_stream_posix_s -{ - mz_stream stream; - int32_t error; - FILE *handle; -} mz_stream_posix; - -/***************************************************************************/ - -int32_t mz_stream_os_open(void *stream, const char *path, int32_t mode) -{ - mz_stream_posix *posix = (mz_stream_posix *)stream; - const char *mode_fopen = NULL; - - if (path == NULL) - return MZ_PARAM_ERROR; - - if ((mode & MZ_OPEN_MODE_READWRITE) == MZ_OPEN_MODE_READ) - mode_fopen = "rb"; - else if (mode & MZ_OPEN_MODE_APPEND) - mode_fopen = "r+b"; - else if (mode & MZ_OPEN_MODE_CREATE) - mode_fopen = "wb"; - else - return MZ_OPEN_ERROR; - - posix->handle = fopen64(path, mode_fopen); - if (posix->handle == NULL) - { - posix->error = errno; - return MZ_OPEN_ERROR; - } - - if (mode & MZ_OPEN_MODE_APPEND) - return mz_stream_os_seek(stream, 0, MZ_SEEK_END); - - return MZ_OK; -} - -int32_t mz_stream_os_is_open(void *stream) -{ - mz_stream_posix *posix = (mz_stream_posix*)stream; - if (posix->handle == NULL) - return MZ_OPEN_ERROR; - return MZ_OK; -} - -int32_t mz_stream_os_read(void *stream, void *buf, int32_t size) -{ - mz_stream_posix *posix = (mz_stream_posix*)stream; - int32_t read = (int32_t)fread(buf, 1, (size_t)size, posix->handle); - if (read < size && ferror(posix->handle)) - { - posix->error = errno; - return MZ_READ_ERROR; - } - return read; -} - -int32_t mz_stream_os_write(void *stream, const void *buf, int32_t size) -{ - mz_stream_posix *posix = (mz_stream_posix*)stream; - int32_t written = (int32_t)fwrite(buf, 1, (size_t)size, posix->handle); - if (written < size && ferror(posix->handle)) - { - posix->error = errno; - return MZ_WRITE_ERROR; - } - return written; -} - -int64_t mz_stream_os_tell(void *stream) -{ - mz_stream_posix *posix = (mz_stream_posix*)stream; - int64_t position = ftello64(posix->handle); - if (position == -1) - { - posix->error = errno; - return MZ_TELL_ERROR; - } - return position; -} - -int32_t mz_stream_os_seek(void *stream, int64_t offset, int32_t origin) -{ - mz_stream_posix *posix = (mz_stream_posix*)stream; - int32_t fseek_origin = 0; - - switch (origin) - { - case MZ_SEEK_CUR: - fseek_origin = SEEK_CUR; - break; - case MZ_SEEK_END: - fseek_origin = SEEK_END; - break; - case MZ_SEEK_SET: - fseek_origin = SEEK_SET; - break; - default: - return MZ_SEEK_ERROR; - } - - if (fseeko64(posix->handle, offset, fseek_origin) != 0) - { - posix->error = errno; - return MZ_SEEK_ERROR; - } - - return MZ_OK; -} - -int32_t mz_stream_os_close(void *stream) -{ - mz_stream_posix *posix = (mz_stream_posix*)stream; - int32_t closed = 0; - if (posix->handle != NULL) - { - closed = fclose(posix->handle); - posix->handle = NULL; - } - if (closed != 0) - { - posix->error = errno; - return MZ_CLOSE_ERROR; - } - return MZ_OK; -} - -int32_t mz_stream_os_error(void *stream) -{ - mz_stream_posix *posix = (mz_stream_posix*)stream; - return posix->error; -} - -void *mz_stream_os_create(void **stream) -{ - mz_stream_posix *posix = NULL; - - posix = (mz_stream_posix *)MZ_ALLOC(sizeof(mz_stream_posix)); - if (posix != NULL) - { - memset(posix, 0, sizeof(mz_stream_posix)); - posix->stream.vtbl = &mz_stream_os_vtbl; - } - if (stream != NULL) - *stream = posix; - - return posix; -} - -void mz_stream_os_delete(void **stream) -{ - mz_stream_posix *posix = NULL; - if (stream == NULL) - return; - posix = (mz_stream_posix *)*stream; - if (posix != NULL) - MZ_FREE(posix); - *stream = NULL; -} - -void *mz_stream_os_get_interface(void) -{ - return (void *)&mz_stream_os_vtbl; -} diff --git a/Pods/SSZipArchive/SSZipArchive/minizip/mz_strm_pkcrypt.c b/Pods/SSZipArchive/SSZipArchive/minizip/mz_strm_pkcrypt.c deleted file mode 100644 index 114d2b5ea..000000000 --- a/Pods/SSZipArchive/SSZipArchive/minizip/mz_strm_pkcrypt.c +++ /dev/null @@ -1,384 +0,0 @@ -/* mz_strm_pkcrypt.c -- Code for traditional PKWARE encryption - Version 2.9.2, February 12, 2020 - part of the MiniZip project - - Copyright (C) 2010-2020 Nathan Moinvaziri - https://github.com/nmoinvaz/minizip - Copyright (C) 1998-2005 Gilles Vollant - Modifications for Info-ZIP crypting - https://www.winimage.com/zLibDll/minizip.html - Copyright (C) 2003 Terry Thorsen - - This code is a modified version of crypting code in Info-ZIP distribution - - Copyright (C) 1990-2000 Info-ZIP. All rights reserved. - - This program is distributed under the terms of the same license as zlib. - See the accompanying LICENSE file for the full text of the license. - - This encryption code is a direct transcription of the algorithm from - Roger Schlafly, described by Phil Katz in the file appnote.txt. This - file (appnote.txt) is distributed with the PKZIP program (even in the - version without encryption capabilities). -*/ - - -#include "mz.h" -#include "mz_crypt.h" -#include "mz_strm.h" -#include "mz_strm_pkcrypt.h" - -/***************************************************************************/ - -static mz_stream_vtbl mz_stream_pkcrypt_vtbl = { - mz_stream_pkcrypt_open, - mz_stream_pkcrypt_is_open, - mz_stream_pkcrypt_read, - mz_stream_pkcrypt_write, - mz_stream_pkcrypt_tell, - mz_stream_pkcrypt_seek, - mz_stream_pkcrypt_close, - mz_stream_pkcrypt_error, - mz_stream_pkcrypt_create, - mz_stream_pkcrypt_delete, - mz_stream_pkcrypt_get_prop_int64, - mz_stream_pkcrypt_set_prop_int64 -}; - -/***************************************************************************/ - -typedef struct mz_stream_pkcrypt_s { - mz_stream stream; - int32_t error; - int16_t initialized; - uint8_t buffer[UINT16_MAX]; - int64_t total_in; - int64_t max_total_in; - int64_t total_out; - uint32_t keys[3]; /* keys defining the pseudo-random sequence */ - uint8_t verify1; - uint8_t verify2; - const char *password; -} mz_stream_pkcrypt; - -/***************************************************************************/ - -#define mz_stream_pkcrypt_decode(strm, c) \ - (mz_stream_pkcrypt_update_keys(strm, \ - c ^= mz_stream_pkcrypt_decrypt_byte(strm))) - -#define mz_stream_pkcrypt_encode(strm, c, t) \ - (t = mz_stream_pkcrypt_decrypt_byte(strm), \ - mz_stream_pkcrypt_update_keys(strm, (uint8_t)c), (uint8_t)(t^(c))) - -/***************************************************************************/ - -static uint8_t mz_stream_pkcrypt_decrypt_byte(void *stream) -{ - mz_stream_pkcrypt *pkcrypt = (mz_stream_pkcrypt *)stream; - - unsigned temp; /* POTENTIAL BUG: temp*(temp^1) may overflow in an */ - /* unpredictable manner on 16-bit systems; not a problem */ - /* with any known compiler so far, though. */ - - temp = pkcrypt->keys[2] | 2; - return (uint8_t)(((temp * (temp ^ 1)) >> 8) & 0xff); -} - -static uint8_t mz_stream_pkcrypt_update_keys(void *stream, uint8_t c) -{ - mz_stream_pkcrypt *pkcrypt = (mz_stream_pkcrypt *)stream; - uint8_t buf = c; - - pkcrypt->keys[0] = (uint32_t)~mz_crypt_crc32_update(~pkcrypt->keys[0], &buf, 1); - - pkcrypt->keys[1] += pkcrypt->keys[0] & 0xff; - pkcrypt->keys[1] *= 134775813L; - pkcrypt->keys[1] += 1; - - buf = (uint8_t)(pkcrypt->keys[1] >> 24); - pkcrypt->keys[2] = (uint32_t)~mz_crypt_crc32_update(~pkcrypt->keys[2], &buf, 1); - - return (uint8_t)c; -} - -static void mz_stream_pkcrypt_init_keys(void *stream, const char *password) -{ - mz_stream_pkcrypt *pkcrypt = (mz_stream_pkcrypt *)stream; - - pkcrypt->keys[0] = 305419896L; - pkcrypt->keys[1] = 591751049L; - pkcrypt->keys[2] = 878082192L; - - while (*password != 0) - { - mz_stream_pkcrypt_update_keys(stream, (uint8_t)*password); - password += 1; - } -} - -/***************************************************************************/ - -int32_t mz_stream_pkcrypt_open(void *stream, const char *path, int32_t mode) -{ - mz_stream_pkcrypt *pkcrypt = (mz_stream_pkcrypt *)stream; - uint16_t t = 0; - int16_t i = 0; - uint8_t verify1 = 0; - uint8_t verify2 = 0; - uint8_t header[MZ_PKCRYPT_HEADER_SIZE]; - const char *password = path; - - pkcrypt->total_in = 0; - pkcrypt->total_out = 0; - pkcrypt->initialized = 0; - - if (mz_stream_is_open(pkcrypt->stream.base) != MZ_OK) - return MZ_OPEN_ERROR; - - if (password == NULL) - password = pkcrypt->password; - if (password == NULL) - return MZ_PARAM_ERROR; - - mz_stream_pkcrypt_init_keys(stream, password); - - if (mode & MZ_OPEN_MODE_WRITE) - { -#ifdef MZ_ZIP_NO_COMPRESSION - MZ_UNUSED(t); - MZ_UNUSED(i); - - return MZ_SUPPORT_ERROR; -#else - /* First generate RAND_HEAD_LEN - 2 random bytes. */ - mz_crypt_rand(header, MZ_PKCRYPT_HEADER_SIZE - 2); - - /* Encrypt random header (last two bytes is high word of crc) */ - for (i = 0; i < MZ_PKCRYPT_HEADER_SIZE - 2; i++) - header[i] = mz_stream_pkcrypt_encode(stream, header[i], t); - - header[i++] = mz_stream_pkcrypt_encode(stream, pkcrypt->verify1, t); - header[i++] = mz_stream_pkcrypt_encode(stream, pkcrypt->verify2, t); - - if (mz_stream_write(pkcrypt->stream.base, header, sizeof(header)) != sizeof(header)) - return MZ_WRITE_ERROR; - - pkcrypt->total_out += MZ_PKCRYPT_HEADER_SIZE; -#endif - } - else if (mode & MZ_OPEN_MODE_READ) - { -#ifdef MZ_ZIP_NO_DECOMPRESSION - MZ_UNUSED(t); - MZ_UNUSED(i); - MZ_UNUSED(verify1); - MZ_UNUSED(verify2); - - return MZ_SUPPORT_ERROR; -#else - if (mz_stream_read(pkcrypt->stream.base, header, sizeof(header)) != sizeof(header)) - return MZ_READ_ERROR; - - for (i = 0; i < MZ_PKCRYPT_HEADER_SIZE - 2; i++) - header[i] = mz_stream_pkcrypt_decode(stream, header[i]); - - verify1 = mz_stream_pkcrypt_decode(stream, header[i++]); - verify2 = mz_stream_pkcrypt_decode(stream, header[i++]); - - /* Older versions used 2 byte check, newer versions use 1 byte check. */ - MZ_UNUSED(verify1); - if ((verify2 != 0) && (verify2 != pkcrypt->verify2)) - return MZ_PASSWORD_ERROR; - - pkcrypt->total_in += MZ_PKCRYPT_HEADER_SIZE; -#endif - } - - pkcrypt->initialized = 1; - return MZ_OK; -} - -int32_t mz_stream_pkcrypt_is_open(void *stream) -{ - mz_stream_pkcrypt *pkcrypt = (mz_stream_pkcrypt *)stream; - if (pkcrypt->initialized == 0) - return MZ_OPEN_ERROR; - return MZ_OK; -} - -int32_t mz_stream_pkcrypt_read(void *stream, void *buf, int32_t size) -{ - mz_stream_pkcrypt *pkcrypt = (mz_stream_pkcrypt *)stream; - uint8_t *buf_ptr = (uint8_t *)buf; - int32_t bytes_to_read = size; - int32_t read = 0; - int32_t i = 0; - - - if ((int64_t)bytes_to_read > (pkcrypt->max_total_in - pkcrypt->total_in)) - bytes_to_read = (int32_t)(pkcrypt->max_total_in - pkcrypt->total_in); - - read = mz_stream_read(pkcrypt->stream.base, buf, bytes_to_read); - - for (i = 0; i < read; i++) - buf_ptr[i] = mz_stream_pkcrypt_decode(stream, buf_ptr[i]); - - if (read > 0) - pkcrypt->total_in += read; - - return read; -} - -int32_t mz_stream_pkcrypt_write(void *stream, const void *buf, int32_t size) -{ - mz_stream_pkcrypt *pkcrypt = (mz_stream_pkcrypt *)stream; - const uint8_t *buf_ptr = (const uint8_t *)buf; - int32_t bytes_to_write = sizeof(pkcrypt->buffer); - int32_t total_written = 0; - int32_t written = 0; - int32_t i = 0; - uint16_t t = 0; - - if (size < 0) - return MZ_PARAM_ERROR; - - do - { - if (bytes_to_write > (size - total_written)) - bytes_to_write = (size - total_written); - - for (i = 0; i < bytes_to_write; i += 1) - { - pkcrypt->buffer[i] = mz_stream_pkcrypt_encode(stream, *buf_ptr, t); - buf_ptr += 1; - } - - written = mz_stream_write(pkcrypt->stream.base, pkcrypt->buffer, bytes_to_write); - if (written < 0) - return written; - - total_written += written; - } - while (total_written < size && written > 0); - - pkcrypt->total_out += total_written; - return total_written; -} - -int64_t mz_stream_pkcrypt_tell(void *stream) -{ - mz_stream_pkcrypt *pkcrypt = (mz_stream_pkcrypt *)stream; - return mz_stream_tell(pkcrypt->stream.base); -} - -int32_t mz_stream_pkcrypt_seek(void *stream, int64_t offset, int32_t origin) -{ - mz_stream_pkcrypt *pkcrypt = (mz_stream_pkcrypt *)stream; - return mz_stream_seek(pkcrypt->stream.base, offset, origin); -} - -int32_t mz_stream_pkcrypt_close(void *stream) -{ - mz_stream_pkcrypt *pkcrypt = (mz_stream_pkcrypt *)stream; - pkcrypt->initialized = 0; - return MZ_OK; -} - -int32_t mz_stream_pkcrypt_error(void *stream) -{ - mz_stream_pkcrypt *pkcrypt = (mz_stream_pkcrypt *)stream; - return pkcrypt->error; -} - -void mz_stream_pkcrypt_set_password(void *stream, const char *password) -{ - mz_stream_pkcrypt *pkcrypt = (mz_stream_pkcrypt *)stream; - pkcrypt->password = password; -} - -void mz_stream_pkcrypt_set_verify(void *stream, uint8_t verify1, uint8_t verify2) -{ - mz_stream_pkcrypt *pkcrypt = (mz_stream_pkcrypt *)stream; - pkcrypt->verify1 = verify1; - pkcrypt->verify2 = verify2; -} - -void mz_stream_pkcrypt_get_verify(void *stream, uint8_t *verify1, uint8_t *verify2) -{ - mz_stream_pkcrypt *pkcrypt = (mz_stream_pkcrypt *)stream; - *verify1 = pkcrypt->verify1; - *verify2 = pkcrypt->verify2; -} - -int32_t mz_stream_pkcrypt_get_prop_int64(void *stream, int32_t prop, int64_t *value) -{ - mz_stream_pkcrypt *pkcrypt = (mz_stream_pkcrypt *)stream; - switch (prop) - { - case MZ_STREAM_PROP_TOTAL_IN: - *value = pkcrypt->total_in; - break; - case MZ_STREAM_PROP_TOTAL_OUT: - *value = pkcrypt->total_out; - break; - case MZ_STREAM_PROP_TOTAL_IN_MAX: - *value = pkcrypt->max_total_in; - break; - case MZ_STREAM_PROP_HEADER_SIZE: - *value = MZ_PKCRYPT_HEADER_SIZE; - break; - case MZ_STREAM_PROP_FOOTER_SIZE: - *value = 0; - break; - default: - return MZ_EXIST_ERROR; - } - return MZ_OK; -} - -int32_t mz_stream_pkcrypt_set_prop_int64(void *stream, int32_t prop, int64_t value) -{ - mz_stream_pkcrypt *pkcrypt = (mz_stream_pkcrypt *)stream; - switch (prop) - { - case MZ_STREAM_PROP_TOTAL_IN_MAX: - pkcrypt->max_total_in = value; - break; - default: - return MZ_EXIST_ERROR; - } - return MZ_OK; -} - -void *mz_stream_pkcrypt_create(void **stream) -{ - mz_stream_pkcrypt *pkcrypt = NULL; - - pkcrypt = (mz_stream_pkcrypt *)MZ_ALLOC(sizeof(mz_stream_pkcrypt)); - if (pkcrypt != NULL) - { - memset(pkcrypt, 0, sizeof(mz_stream_pkcrypt)); - pkcrypt->stream.vtbl = &mz_stream_pkcrypt_vtbl; - } - - if (stream != NULL) - *stream = pkcrypt; - return pkcrypt; -} - -void mz_stream_pkcrypt_delete(void **stream) -{ - mz_stream_pkcrypt *pkcrypt = NULL; - if (stream == NULL) - return; - pkcrypt = (mz_stream_pkcrypt *)*stream; - if (pkcrypt != NULL) - MZ_FREE(pkcrypt); - *stream = NULL; -} - -void *mz_stream_pkcrypt_get_interface(void) -{ - return (void *)&mz_stream_pkcrypt_vtbl; -} diff --git a/Pods/SSZipArchive/SSZipArchive/minizip/mz_strm_pkcrypt.h b/Pods/SSZipArchive/SSZipArchive/minizip/mz_strm_pkcrypt.h deleted file mode 100644 index 571c70db9..000000000 --- a/Pods/SSZipArchive/SSZipArchive/minizip/mz_strm_pkcrypt.h +++ /dev/null @@ -1,47 +0,0 @@ -/* mz_strm_pkcrypt.h -- Code for traditional PKWARE encryption - Version 2.9.2, February 12, 2020 - part of the MiniZip project - - Copyright (C) 2010-2020 Nathan Moinvaziri - https://github.com/nmoinvaz/minizip - - This program is distributed under the terms of the same license as zlib. - See the accompanying LICENSE file for the full text of the license. -*/ - -#ifndef MZ_STREAM_PKCRYPT_H -#define MZ_STREAM_PKCRYPT_H - -#ifdef __cplusplus -extern "C" { -#endif - -/***************************************************************************/ - -int32_t mz_stream_pkcrypt_open(void *stream, const char *filename, int32_t mode); -int32_t mz_stream_pkcrypt_is_open(void *stream); -int32_t mz_stream_pkcrypt_read(void *stream, void *buf, int32_t size); -int32_t mz_stream_pkcrypt_write(void *stream, const void *buf, int32_t size); -int64_t mz_stream_pkcrypt_tell(void *stream); -int32_t mz_stream_pkcrypt_seek(void *stream, int64_t offset, int32_t origin); -int32_t mz_stream_pkcrypt_close(void *stream); -int32_t mz_stream_pkcrypt_error(void *stream); - -void mz_stream_pkcrypt_set_password(void *stream, const char *password); -void mz_stream_pkcrypt_set_verify(void *stream, uint8_t verify1, uint8_t verify2); -void mz_stream_pkcrypt_get_verify(void *stream, uint8_t *verify1, uint8_t *verify2); -int32_t mz_stream_pkcrypt_get_prop_int64(void *stream, int32_t prop, int64_t *value); -int32_t mz_stream_pkcrypt_set_prop_int64(void *stream, int32_t prop, int64_t value); - -void* mz_stream_pkcrypt_create(void **stream); -void mz_stream_pkcrypt_delete(void **stream); - -void* mz_stream_pkcrypt_get_interface(void); - -/***************************************************************************/ - -#ifdef __cplusplus -} -#endif - -#endif diff --git a/Pods/SSZipArchive/SSZipArchive/minizip/mz_strm_split.c b/Pods/SSZipArchive/SSZipArchive/minizip/mz_strm_split.c deleted file mode 100644 index 8ef11ee39..000000000 --- a/Pods/SSZipArchive/SSZipArchive/minizip/mz_strm_split.c +++ /dev/null @@ -1,489 +0,0 @@ -/* mz_strm_split.c -- Stream for split files - Version 2.9.2, February 12, 2020 - part of the MiniZip project - - Copyright (C) 2010-2020 Nathan Moinvaziri - https://github.com/nmoinvaz/minizip - - This program is distributed under the terms of the same license as zlib. - See the accompanying LICENSE file for the full text of the license. -*/ - - -#include "mz.h" -#include "mz_os.h" -#include "mz_strm.h" -#include "mz_strm_split.h" - -#include /* snprintf */ - -#if defined(_MSC_VER) && (_MSC_VER < 1900) -# define snprintf _snprintf -#endif - -/***************************************************************************/ - -#define MZ_ZIP_MAGIC_DISKHEADER (0x08074b50) - -/***************************************************************************/ - -static mz_stream_vtbl mz_stream_split_vtbl = { - mz_stream_split_open, - mz_stream_split_is_open, - mz_stream_split_read, - mz_stream_split_write, - mz_stream_split_tell, - mz_stream_split_seek, - mz_stream_split_close, - mz_stream_split_error, - mz_stream_split_create, - mz_stream_split_delete, - mz_stream_split_get_prop_int64, - mz_stream_split_set_prop_int64 -}; - -/***************************************************************************/ - -typedef struct mz_stream_split_s { - mz_stream stream; - int32_t is_open; - int64_t disk_size; - int64_t total_in; - int64_t total_in_disk; - int64_t total_out; - int64_t total_out_disk; - int32_t mode; - char *path_cd; - uint32_t path_cd_size; - char *path_disk; - uint32_t path_disk_size; - int32_t number_disk; - int32_t current_disk; - int64_t current_disk_size; - int32_t reached_end; -} mz_stream_split; - -/***************************************************************************/ - -#if 0 -# define mz_stream_split_print printf -#else -# define mz_stream_split_print(fmt,...) -#endif - -/***************************************************************************/ - -static int32_t mz_stream_split_open_disk(void *stream, int32_t number_disk) -{ - mz_stream_split *split = (mz_stream_split *)stream; - uint32_t magic = 0; - int64_t position = 0; - int32_t i = 0; - int32_t err = MZ_OK; - int16_t disk_part = 0; - - - /* Check if we are reading or writing a disk part or the cd disk */ - if (number_disk >= 0) - { - if ((split->mode & MZ_OPEN_MODE_WRITE) == 0) - disk_part = MZ_OPEN_MODE_READ; - else if (split->disk_size > 0) - disk_part = MZ_OPEN_MODE_WRITE; - } - - /* Construct disk path */ - if (disk_part > 0) - { - for (i = (int32_t)strlen(split->path_disk) - 1; i >= 0; i -= 1) - { - if (split->path_disk[i] != '.') - continue; - snprintf(&split->path_disk[i], split->path_disk_size - (uint32_t)i, - ".z%02" PRId32, number_disk + 1); - break; - } - } - else - { - strncpy(split->path_disk, split->path_cd, split->path_disk_size - 1); - split->path_disk[split->path_disk_size - 1] = 0; - } - - mz_stream_split_print("Split - Goto disk - %s (disk %" PRId32 ")\n", split->path_disk, number_disk); - - /* If disk part doesn't exist during reading then return MZ_EXIST_ERROR */ - if (disk_part == MZ_OPEN_MODE_READ) - err = mz_os_file_exists(split->path_disk); - - if (err == MZ_OK) - err = mz_stream_open(split->stream.base, split->path_disk, split->mode); - - if (err == MZ_OK) - { - split->total_in_disk = 0; - split->total_out_disk = 0; - split->current_disk = number_disk; - - if (split->mode & MZ_OPEN_MODE_WRITE) - { - if ((split->current_disk == 0) && (split->disk_size > 0)) - { - err = mz_stream_write_uint32(split->stream.base, MZ_ZIP_MAGIC_DISKHEADER); - - split->total_out_disk += 4; - split->total_out += split->total_out_disk; - } - } - else if (split->mode & MZ_OPEN_MODE_READ) - { - if (split->current_disk == 0) - { - err = mz_stream_read_uint32(split->stream.base, &magic); - if (magic != MZ_ZIP_MAGIC_DISKHEADER) - err = MZ_FORMAT_ERROR; - } - } - } - - if (err == MZ_OK) - { - /* Get the size of the current disk we are on */ - position = mz_stream_tell(split->stream.base); - mz_stream_seek(split->stream.base, 0, MZ_SEEK_END); - split->current_disk_size = mz_stream_tell(split->stream.base); - mz_stream_seek(split->stream.base, position, MZ_SEEK_SET); - - split->is_open = 1; - } - - return err; -} - -static int32_t mz_stream_split_close_disk(void *stream) -{ - mz_stream_split *split = (mz_stream_split *)stream; - - if (mz_stream_is_open(split->stream.base) != MZ_OK) - return MZ_OK; - - mz_stream_split_print("Split - Close disk\n"); - return mz_stream_close(split->stream.base); -} - -static int32_t mz_stream_split_goto_disk(void *stream, int32_t number_disk) -{ - mz_stream_split *split = (mz_stream_split *)stream; - int32_t err = MZ_OK; - int32_t err_is_open = MZ_OK; - - err_is_open = mz_stream_is_open(split->stream.base); - - if ((split->disk_size == 0) && (split->mode & MZ_OPEN_MODE_WRITE)) - { - if (err_is_open != MZ_OK) - err = mz_stream_split_open_disk(stream, number_disk); - } - else if ((number_disk != split->current_disk) || (err_is_open != MZ_OK)) - { - err = mz_stream_split_close_disk(stream); - if (err == MZ_OK) - { - err = mz_stream_split_open_disk(stream, number_disk); - if (err == MZ_OK) - split->number_disk = number_disk; - } - } - - return err; -} - -int32_t mz_stream_split_open(void *stream, const char *path, int32_t mode) -{ - mz_stream_split *split = (mz_stream_split *)stream; - int32_t number_disk = 0; - - split->mode = mode; - - split->path_cd_size = (uint32_t)strlen(path) + 1; - split->path_cd = (char *)MZ_ALLOC(split->path_cd_size); - - if (split->path_cd == NULL) - return MZ_MEM_ERROR; - - strncpy(split->path_cd, path, split->path_cd_size - 1); - split->path_cd[split->path_cd_size - 1] = 0; - - mz_stream_split_print("Split - Open - %s (disk %" PRId32 ")\n", split->path_cd, number_disk); - - split->path_disk_size = (uint32_t)strlen(path) + 10; - split->path_disk = (char *)MZ_ALLOC(split->path_disk_size); - - if (split->path_disk == NULL) - { - MZ_FREE(split->path_cd); - return MZ_MEM_ERROR; - } - - strncpy(split->path_disk, path, split->path_disk_size - 1); - split->path_disk[split->path_disk_size - 1] = 0; - - if ((mode & MZ_OPEN_MODE_WRITE) && ((mode & MZ_OPEN_MODE_APPEND) == 0)) - { - number_disk = 0; - split->current_disk = -1; - } - else - { - number_disk = -1; - split->current_disk = 0; - } - - return mz_stream_split_goto_disk(stream, number_disk); -} - -int32_t mz_stream_split_is_open(void *stream) -{ - mz_stream_split *split = (mz_stream_split *)stream; - if (split->is_open != 1) - return MZ_OPEN_ERROR; - return MZ_OK; -} - -int32_t mz_stream_split_read(void *stream, void *buf, int32_t size) -{ - mz_stream_split *split = (mz_stream_split *)stream; - int32_t bytes_left = size; - int32_t read = 0; - int32_t err = MZ_OK; - uint8_t *buf_ptr = (uint8_t *)buf; - - err = mz_stream_split_goto_disk(stream, split->number_disk); - if (err != MZ_OK) - return err; - - while (bytes_left > 0) - { - read = mz_stream_read(split->stream.base, buf_ptr, bytes_left); - - mz_stream_split_print("Split - Read disk - %" PRId32 "\n", read); - - if (read < 0) - return read; - if (read == 0) - { - if (split->current_disk < 0) /* No more disks to goto */ - break; - err = mz_stream_split_goto_disk(stream, split->current_disk + 1); - if (err == MZ_EXIST_ERROR) - { - split->current_disk = -1; - break; - } - if (err != MZ_OK) - return err; - } - - bytes_left -= read; - buf_ptr += read; - split->total_in += read; - split->total_in_disk += read; - } - return size - bytes_left; -} - -int32_t mz_stream_split_write(void *stream, const void *buf, int32_t size) -{ - mz_stream_split *split = (mz_stream_split *)stream; - int64_t position = 0; - int32_t written = 0; - int32_t bytes_left = size; - int32_t bytes_to_write = 0; - int32_t bytes_avail = 0; - int32_t number_disk = -1; - int32_t err = MZ_OK; - const uint8_t *buf_ptr = (const uint8_t *)buf; - - position = mz_stream_tell(split->stream.base); - - while (bytes_left > 0) - { - bytes_to_write = bytes_left; - - if (split->disk_size > 0) - { - if ((split->total_out_disk == split->disk_size && split->total_out > 0) || - (split->number_disk == -1 && split->number_disk != split->current_disk)) - { - if (split->number_disk != -1) - number_disk = split->current_disk + 1; - - err = mz_stream_split_goto_disk(stream, number_disk); - if (err != MZ_OK) - return err; - } - - if (split->number_disk != -1) - { - bytes_avail = (int32_t)(split->disk_size - split->total_out_disk); - if (bytes_to_write > bytes_avail) - bytes_to_write = bytes_avail; - } - } - - written = mz_stream_write(split->stream.base, buf_ptr, bytes_to_write); - if (written != bytes_to_write) - return MZ_WRITE_ERROR; - - mz_stream_split_print("Split - Write disk - %" PRId32 "\n", written); - - bytes_left -= written; - buf_ptr += written; - - split->total_out += written; - split->total_out_disk += written; - - if (position == split->current_disk_size) - { - split->current_disk_size += written; - position = split->current_disk_size; - } - } - - return size - bytes_left; -} - -int64_t mz_stream_split_tell(void *stream) -{ - mz_stream_split *split = (mz_stream_split *)stream; - int32_t err = MZ_OK; - err = mz_stream_split_goto_disk(stream, split->number_disk); - if (err != MZ_OK) - return err; - return mz_stream_tell(split->stream.base); -} - -int32_t mz_stream_split_seek(void *stream, int64_t offset, int32_t origin) -{ - mz_stream_split *split = (mz_stream_split *)stream; - int64_t disk_left = 0; - int64_t position = 0; - int32_t err = MZ_OK; - - err = mz_stream_split_goto_disk(stream, split->number_disk); - - if (err != MZ_OK) - return err; - - mz_stream_split_print("Split - Seek disk - %" PRId64 " (origin %" PRId32 ")\n", offset, origin); - - if ((origin == MZ_SEEK_CUR) && (split->number_disk != -1)) - { - position = mz_stream_tell(split->stream.base); - disk_left = split->current_disk_size - position; - - while (offset > disk_left) - { - err = mz_stream_split_goto_disk(stream, split->current_disk + 1); - if (err != MZ_OK) - return err; - - offset -= disk_left; - disk_left = split->current_disk_size; - } - } - - return mz_stream_seek(split->stream.base, offset, origin); -} - -int32_t mz_stream_split_close(void *stream) -{ - mz_stream_split *split = (mz_stream_split *)stream; - int32_t err = MZ_OK; - - err = mz_stream_split_close_disk(stream); - split->is_open = 0; - return err; -} - -int32_t mz_stream_split_error(void *stream) -{ - mz_stream_split *split = (mz_stream_split *)stream; - return mz_stream_error(split->stream.base); -} - -int32_t mz_stream_split_get_prop_int64(void *stream, int32_t prop, int64_t *value) -{ - mz_stream_split *split = (mz_stream_split *)stream; - switch (prop) - { - case MZ_STREAM_PROP_TOTAL_OUT: - *value = split->total_out; - break; - case MZ_STREAM_PROP_DISK_NUMBER: - *value = split->number_disk; - break; - case MZ_STREAM_PROP_DISK_SIZE: - *value = split->disk_size; - break; - default: - return MZ_EXIST_ERROR; - } - return MZ_OK; -} - -int32_t mz_stream_split_set_prop_int64(void *stream, int32_t prop, int64_t value) -{ - mz_stream_split *split = (mz_stream_split *)stream; - switch (prop) - { - case MZ_STREAM_PROP_DISK_NUMBER: - split->number_disk = (int32_t)value; - break; - case MZ_STREAM_PROP_DISK_SIZE: - split->disk_size = value; - break; - default: - return MZ_EXIST_ERROR; - } - return MZ_OK; -} - -void *mz_stream_split_create(void **stream) -{ - mz_stream_split *split = NULL; - - split = (mz_stream_split *)MZ_ALLOC(sizeof(mz_stream_split)); - if (split != NULL) - { - memset(split, 0, sizeof(mz_stream_split)); - split->stream.vtbl = &mz_stream_split_vtbl; - } - if (stream != NULL) - *stream = split; - - return split; -} - -void mz_stream_split_delete(void **stream) -{ - mz_stream_split *split = NULL; - if (stream == NULL) - return; - split = (mz_stream_split *)*stream; - if (split != NULL) - { - if (split->path_cd) - MZ_FREE(split->path_cd); - if (split->path_disk) - MZ_FREE(split->path_disk); - - MZ_FREE(split); - } - *stream = NULL; -} - -void *mz_stream_split_get_interface(void) -{ - return (void *)&mz_stream_split_vtbl; -} diff --git a/Pods/SSZipArchive/SSZipArchive/minizip/mz_strm_split.h b/Pods/SSZipArchive/SSZipArchive/minizip/mz_strm_split.h deleted file mode 100644 index 6a6bd5e4c..000000000 --- a/Pods/SSZipArchive/SSZipArchive/minizip/mz_strm_split.h +++ /dev/null @@ -1,44 +0,0 @@ -/* mz_strm_split.h -- Stream for split files - Version 2.9.2, February 12, 2020 - part of MiniZip project - - Copyright (C) 2010-2020 Nathan Moinvaziri - https://github.com/nmoinvaz/minizip - - This program is distributed under the terms of the same license as zlib. - See the accompanying LICENSE file for the full text of the license. -*/ - -#ifndef MZ_STREAM_SPLIT_H -#define MZ_STREAM_SPLIT_H - -#ifdef __cplusplus -extern "C" { -#endif - -/***************************************************************************/ - -int32_t mz_stream_split_open(void *stream, const char *filename, int32_t mode); -int32_t mz_stream_split_is_open(void *stream); -int32_t mz_stream_split_read(void *stream, void *buf, int32_t size); -int32_t mz_stream_split_write(void *stream, const void *buf, int32_t size); -int64_t mz_stream_split_tell(void *stream); -int32_t mz_stream_split_seek(void *stream, int64_t offset, int32_t origin); -int32_t mz_stream_split_close(void *stream); -int32_t mz_stream_split_error(void *stream); - -int32_t mz_stream_split_get_prop_int64(void *stream, int32_t prop, int64_t *value); -int32_t mz_stream_split_set_prop_int64(void *stream, int32_t prop, int64_t value); - -void* mz_stream_split_create(void **stream); -void mz_stream_split_delete(void **stream); - -void* mz_stream_split_get_interface(void); - -/***************************************************************************/ - -#ifdef __cplusplus -} -#endif - -#endif diff --git a/Pods/SSZipArchive/SSZipArchive/minizip/mz_strm_wzaes.c b/Pods/SSZipArchive/SSZipArchive/minizip/mz_strm_wzaes.c deleted file mode 100644 index c44ddc9ef..000000000 --- a/Pods/SSZipArchive/SSZipArchive/minizip/mz_strm_wzaes.c +++ /dev/null @@ -1,405 +0,0 @@ -/* mz_strm_wzaes.c -- Stream for WinZip AES encryption - Version 2.9.2, February 12, 2020 - part of the MiniZip project - - Copyright (C) 2010-2020 Nathan Moinvaziri - https://github.com/nmoinvaz/minizip - Copyright (C) 1998-2010 Brian Gladman, Worcester, UK - - This program is distributed under the terms of the same license as zlib. - See the accompanying LICENSE file for the full text of the license. -*/ - - -#include "mz.h" -#include "mz_crypt.h" -#include "mz_strm.h" -#include "mz_strm_wzaes.h" - -/***************************************************************************/ - -#define MZ_AES_KEYING_ITERATIONS (1000) -#define MZ_AES_SALT_LENGTH(MODE) (4 * (MODE & 3) + 4) -#define MZ_AES_SALT_LENGTH_MAX (16) -#define MZ_AES_PW_LENGTH_MAX (128) -#define MZ_AES_PW_VERIFY_SIZE (2) -#define MZ_AES_AUTHCODE_SIZE (10) - -/***************************************************************************/ - -static mz_stream_vtbl mz_stream_wzaes_vtbl = { - mz_stream_wzaes_open, - mz_stream_wzaes_is_open, - mz_stream_wzaes_read, - mz_stream_wzaes_write, - mz_stream_wzaes_tell, - mz_stream_wzaes_seek, - mz_stream_wzaes_close, - mz_stream_wzaes_error, - mz_stream_wzaes_create, - mz_stream_wzaes_delete, - mz_stream_wzaes_get_prop_int64, - mz_stream_wzaes_set_prop_int64 -}; - -/***************************************************************************/ - -typedef struct mz_stream_wzaes_s { - mz_stream stream; - int32_t mode; - int32_t error; - int16_t initialized; - uint8_t buffer[UINT16_MAX]; - int64_t total_in; - int64_t max_total_in; - int64_t total_out; - int16_t encryption_mode; - const char *password; - void *aes; - uint32_t crypt_pos; - uint8_t crypt_block[MZ_AES_BLOCK_SIZE]; - void *hmac; - uint8_t nonce[MZ_AES_BLOCK_SIZE]; -} mz_stream_wzaes; - -/***************************************************************************/ - -int32_t mz_stream_wzaes_open(void *stream, const char *path, int32_t mode) -{ - mz_stream_wzaes *wzaes = (mz_stream_wzaes *)stream; - uint16_t salt_length = 0; - uint16_t password_length = 0; - uint16_t key_length = 0; - uint8_t kbuf[2 * MZ_AES_KEY_LENGTH_MAX + MZ_AES_PW_VERIFY_SIZE]; - uint8_t verify[MZ_AES_PW_VERIFY_SIZE]; - uint8_t verify_expected[MZ_AES_PW_VERIFY_SIZE]; - uint8_t salt_value[MZ_AES_SALT_LENGTH_MAX]; - const char *password = path; - - wzaes->total_in = 0; - wzaes->total_out = 0; - wzaes->initialized = 0; - - if (mz_stream_is_open(wzaes->stream.base) != MZ_OK) - return MZ_OPEN_ERROR; - - if (password == NULL) - password = wzaes->password; - if (password == NULL) - return MZ_PARAM_ERROR; - password_length = (uint16_t)strlen(password); - if (password_length > MZ_AES_PW_LENGTH_MAX) - return MZ_PARAM_ERROR; - - if (wzaes->encryption_mode < 1 || wzaes->encryption_mode > 3) - return MZ_PARAM_ERROR; - - salt_length = MZ_AES_SALT_LENGTH(wzaes->encryption_mode); - - if (mode & MZ_OPEN_MODE_WRITE) - { -#ifdef MZ_ZIP_NO_COMPRESSION - return MZ_SUPPORT_ERROR; -#else - mz_crypt_rand(salt_value, salt_length); -#endif - } - else if (mode & MZ_OPEN_MODE_READ) - { -#ifdef MZ_ZIP_NO_DECOMPRESSION - return MZ_SUPPORT_ERROR; -#else - if (mz_stream_read(wzaes->stream.base, salt_value, salt_length) != salt_length) - return MZ_READ_ERROR; -#endif - } - - key_length = MZ_AES_KEY_LENGTH(wzaes->encryption_mode); - - /* Derive the encryption and authentication keys and the password verifier */ - mz_crypt_pbkdf2((uint8_t *)password, password_length, salt_value, salt_length, - MZ_AES_KEYING_ITERATIONS, kbuf, 2 * key_length + MZ_AES_PW_VERIFY_SIZE); - - /* Initialize the encryption nonce and buffer pos */ - wzaes->crypt_pos = MZ_AES_BLOCK_SIZE; - memset(wzaes->nonce, 0, sizeof(wzaes->nonce)); - - /* Initialize for encryption using key 1 */ - mz_crypt_aes_reset(wzaes->aes); - mz_crypt_aes_set_mode(wzaes->aes, wzaes->encryption_mode); - mz_crypt_aes_set_encrypt_key(wzaes->aes, kbuf, key_length); - - /* Initialize for authentication using key 2 */ - mz_crypt_hmac_reset(wzaes->hmac); - mz_crypt_hmac_set_algorithm(wzaes->hmac, MZ_HASH_SHA1); - mz_crypt_hmac_init(wzaes->hmac, kbuf + key_length, key_length); - - memcpy(verify, kbuf + (2 * key_length), MZ_AES_PW_VERIFY_SIZE); - - if (mode & MZ_OPEN_MODE_WRITE) - { - if (mz_stream_write(wzaes->stream.base, salt_value, salt_length) != salt_length) - return MZ_WRITE_ERROR; - - wzaes->total_out += salt_length; - - if (mz_stream_write(wzaes->stream.base, verify, MZ_AES_PW_VERIFY_SIZE) != MZ_AES_PW_VERIFY_SIZE) - return MZ_WRITE_ERROR; - - wzaes->total_out += MZ_AES_PW_VERIFY_SIZE; - } - else if (mode & MZ_OPEN_MODE_READ) - { - wzaes->total_in += salt_length; - - if (mz_stream_read(wzaes->stream.base, verify_expected, MZ_AES_PW_VERIFY_SIZE) != MZ_AES_PW_VERIFY_SIZE) - return MZ_READ_ERROR; - - wzaes->total_in += MZ_AES_PW_VERIFY_SIZE; - - if (memcmp(verify_expected, verify, MZ_AES_PW_VERIFY_SIZE) != 0) - return MZ_PASSWORD_ERROR; - } - - wzaes->mode = mode; - wzaes->initialized = 1; - - return MZ_OK; -} - -int32_t mz_stream_wzaes_is_open(void *stream) -{ - mz_stream_wzaes *wzaes = (mz_stream_wzaes *)stream; - if (wzaes->initialized == 0) - return MZ_OPEN_ERROR; - return MZ_OK; -} - -static int32_t mz_stream_wzaes_ctr_encrypt(void *stream, uint8_t *buf, int32_t size) -{ - mz_stream_wzaes *wzaes = (mz_stream_wzaes *)stream; - uint32_t pos = wzaes->crypt_pos; - uint32_t i = 0; - int32_t err = MZ_OK; - - while (i < (uint32_t)size) - { - if (pos == MZ_AES_BLOCK_SIZE) - { - uint32_t j = 0; - - /* Increment encryption nonce */ - while (j < 8 && !++wzaes->nonce[j]) - j += 1; - - /* Encrypt the nonce to form next xor buffer */ - memcpy(wzaes->crypt_block, wzaes->nonce, MZ_AES_BLOCK_SIZE); - mz_crypt_aes_encrypt(wzaes->aes, wzaes->crypt_block, sizeof(wzaes->crypt_block)); - pos = 0; - } - - buf[i++] ^= wzaes->crypt_block[pos++]; - } - - wzaes->crypt_pos = pos; - return err; -} - -int32_t mz_stream_wzaes_read(void *stream, void *buf, int32_t size) -{ - mz_stream_wzaes *wzaes = (mz_stream_wzaes *)stream; - int64_t max_total_in = 0; - int32_t bytes_to_read = size; - int32_t read = 0; - - max_total_in = wzaes->max_total_in - MZ_AES_FOOTER_SIZE; - if ((int64_t)bytes_to_read > (max_total_in - wzaes->total_in)) - bytes_to_read = (int32_t)(max_total_in - wzaes->total_in); - - read = mz_stream_read(wzaes->stream.base, buf, bytes_to_read); - - if (read > 0) - { - mz_crypt_hmac_update(wzaes->hmac, (uint8_t *)buf, read); - mz_stream_wzaes_ctr_encrypt(stream, (uint8_t *)buf, read); - - wzaes->total_in += read; - } - - return read; -} - -int32_t mz_stream_wzaes_write(void *stream, const void *buf, int32_t size) -{ - mz_stream_wzaes *wzaes = (mz_stream_wzaes *)stream; - const uint8_t *buf_ptr = (const uint8_t *)buf; - int32_t bytes_to_write = sizeof(wzaes->buffer); - int32_t total_written = 0; - int32_t written = 0; - - if (size < 0) - return MZ_PARAM_ERROR; - - do - { - if (bytes_to_write > (size - total_written)) - bytes_to_write = (size - total_written); - - memcpy(wzaes->buffer, buf_ptr, bytes_to_write); - buf_ptr += bytes_to_write; - - mz_stream_wzaes_ctr_encrypt(stream, (uint8_t *)wzaes->buffer, bytes_to_write); - mz_crypt_hmac_update(wzaes->hmac, wzaes->buffer, bytes_to_write); - - written = mz_stream_write(wzaes->stream.base, wzaes->buffer, bytes_to_write); - if (written < 0) - return written; - - total_written += written; - } - while (total_written < size && written > 0); - - wzaes->total_out += total_written; - return total_written; -} - -int64_t mz_stream_wzaes_tell(void *stream) -{ - mz_stream_wzaes *wzaes = (mz_stream_wzaes *)stream; - return mz_stream_tell(wzaes->stream.base); -} - -int32_t mz_stream_wzaes_seek(void *stream, int64_t offset, int32_t origin) -{ - mz_stream_wzaes *wzaes = (mz_stream_wzaes *)stream; - return mz_stream_seek(wzaes->stream.base, offset, origin); -} - -int32_t mz_stream_wzaes_close(void *stream) -{ - mz_stream_wzaes *wzaes = (mz_stream_wzaes *)stream; - uint8_t expected_hash[MZ_AES_AUTHCODE_SIZE]; - uint8_t computed_hash[MZ_HASH_SHA1_SIZE]; - - mz_crypt_hmac_end(wzaes->hmac, computed_hash, sizeof(computed_hash)); - - if (wzaes->mode & MZ_OPEN_MODE_WRITE) - { - if (mz_stream_write(wzaes->stream.base, computed_hash, MZ_AES_AUTHCODE_SIZE) != MZ_AES_AUTHCODE_SIZE) - return MZ_WRITE_ERROR; - - wzaes->total_out += MZ_AES_AUTHCODE_SIZE; - } - else if (wzaes->mode & MZ_OPEN_MODE_READ) - { - if (mz_stream_read(wzaes->stream.base, expected_hash, MZ_AES_AUTHCODE_SIZE) != MZ_AES_AUTHCODE_SIZE) - return MZ_READ_ERROR; - - wzaes->total_in += MZ_AES_AUTHCODE_SIZE; - - /* If entire entry was not read this will fail */ - if (memcmp(computed_hash, expected_hash, MZ_AES_AUTHCODE_SIZE) != 0) - return MZ_CRC_ERROR; - } - - wzaes->initialized = 0; - return MZ_OK; -} - -int32_t mz_stream_wzaes_error(void *stream) -{ - mz_stream_wzaes *wzaes = (mz_stream_wzaes *)stream; - return wzaes->error; -} - -void mz_stream_wzaes_set_password(void *stream, const char *password) -{ - mz_stream_wzaes *wzaes = (mz_stream_wzaes *)stream; - wzaes->password = password; -} - -void mz_stream_wzaes_set_encryption_mode(void *stream, int16_t encryption_mode) -{ - mz_stream_wzaes *wzaes = (mz_stream_wzaes *)stream; - wzaes->encryption_mode = encryption_mode; -} - -int32_t mz_stream_wzaes_get_prop_int64(void *stream, int32_t prop, int64_t *value) -{ - mz_stream_wzaes *wzaes = (mz_stream_wzaes *)stream; - switch (prop) - { - case MZ_STREAM_PROP_TOTAL_IN: - *value = wzaes->total_in; - break; - case MZ_STREAM_PROP_TOTAL_OUT: - *value = wzaes->total_out; - break; - case MZ_STREAM_PROP_TOTAL_IN_MAX: - *value = wzaes->max_total_in; - break; - case MZ_STREAM_PROP_HEADER_SIZE: - *value = MZ_AES_SALT_LENGTH((int64_t)wzaes->encryption_mode) + MZ_AES_PW_VERIFY_SIZE; - break; - case MZ_STREAM_PROP_FOOTER_SIZE: - *value = MZ_AES_AUTHCODE_SIZE; - break; - default: - return MZ_EXIST_ERROR; - } - return MZ_OK; -} - -int32_t mz_stream_wzaes_set_prop_int64(void *stream, int32_t prop, int64_t value) -{ - mz_stream_wzaes *wzaes = (mz_stream_wzaes *)stream; - switch (prop) - { - case MZ_STREAM_PROP_TOTAL_IN_MAX: - wzaes->max_total_in = value; - break; - default: - return MZ_EXIST_ERROR; - } - return MZ_OK; -} - -void *mz_stream_wzaes_create(void **stream) -{ - mz_stream_wzaes *wzaes = NULL; - - wzaes = (mz_stream_wzaes *)MZ_ALLOC(sizeof(mz_stream_wzaes)); - if (wzaes != NULL) - { - memset(wzaes, 0, sizeof(mz_stream_wzaes)); - wzaes->stream.vtbl = &mz_stream_wzaes_vtbl; - wzaes->encryption_mode = MZ_AES_ENCRYPTION_MODE_256; - - mz_crypt_hmac_create(&wzaes->hmac); - mz_crypt_aes_create(&wzaes->aes); - } - if (stream != NULL) - *stream = wzaes; - - return wzaes; -} - -void mz_stream_wzaes_delete(void **stream) -{ - mz_stream_wzaes *wzaes = NULL; - if (stream == NULL) - return; - wzaes = (mz_stream_wzaes *)*stream; - if (wzaes != NULL) - { - mz_crypt_aes_delete(&wzaes->aes); - mz_crypt_hmac_delete(&wzaes->hmac); - MZ_FREE(wzaes); - } - *stream = NULL; -} - -void *mz_stream_wzaes_get_interface(void) -{ - return (void *)&mz_stream_wzaes_vtbl; -} diff --git a/Pods/SSZipArchive/SSZipArchive/minizip/mz_strm_wzaes.h b/Pods/SSZipArchive/SSZipArchive/minizip/mz_strm_wzaes.h deleted file mode 100644 index e663a1bdd..000000000 --- a/Pods/SSZipArchive/SSZipArchive/minizip/mz_strm_wzaes.h +++ /dev/null @@ -1,47 +0,0 @@ -/* mz_strm_wzaes.h -- Stream for WinZIP AES encryption - Version 2.9.2, February 12, 2020 - part of the MiniZip project - - Copyright (C) 2010-2020 Nathan Moinvaziri - https://github.com/nmoinvaz/minizip - - This program is distributed under the terms of the same license as zlib. - See the accompanying LICENSE file for the full text of the license. -*/ - -#ifndef MZ_STREAM_WZAES_SHA1_H -#define MZ_STREAM_WZAES_SHA1_H - -#ifdef __cplusplus -extern "C" { -#endif - -/***************************************************************************/ - -int32_t mz_stream_wzaes_open(void *stream, const char *filename, int32_t mode); -int32_t mz_stream_wzaes_is_open(void *stream); -int32_t mz_stream_wzaes_read(void *stream, void *buf, int32_t size); -int32_t mz_stream_wzaes_write(void *stream, const void *buf, int32_t size); -int64_t mz_stream_wzaes_tell(void *stream); -int32_t mz_stream_wzaes_seek(void *stream, int64_t offset, int32_t origin); -int32_t mz_stream_wzaes_close(void *stream); -int32_t mz_stream_wzaes_error(void *stream); - -void mz_stream_wzaes_set_password(void *stream, const char *password); -void mz_stream_wzaes_set_encryption_mode(void *stream, int16_t encryption_mode); - -int32_t mz_stream_wzaes_get_prop_int64(void *stream, int32_t prop, int64_t *value); -int32_t mz_stream_wzaes_set_prop_int64(void *stream, int32_t prop, int64_t value); - -void* mz_stream_wzaes_create(void **stream); -void mz_stream_wzaes_delete(void **stream); - -void* mz_stream_wzaes_get_interface(void); - -/***************************************************************************/ - -#ifdef __cplusplus -} -#endif - -#endif diff --git a/Pods/SSZipArchive/SSZipArchive/minizip/mz_strm_zlib.c b/Pods/SSZipArchive/SSZipArchive/minizip/mz_strm_zlib.c deleted file mode 100644 index c016adf51..000000000 --- a/Pods/SSZipArchive/SSZipArchive/minizip/mz_strm_zlib.c +++ /dev/null @@ -1,425 +0,0 @@ -/* mz_strm_zlib.c -- Stream for zlib inflate/deflate - Version 2.9.2, February 12, 2020 - part of the MiniZip project - - Copyright (C) 2010-2020 Nathan Moinvaziri - https://github.com/nmoinvaz/minizip - - This program is distributed under the terms of the same license as zlib. - See the accompanying LICENSE file for the full text of the license. -*/ - - -#include "mz.h" -#include "mz_strm.h" -#include "mz_strm_zlib.h" - -#include "zlib.h" -#if defined(ZLIBNG_VERNUM) && !defined(ZLIB_COMPAT) -# include "zlib-ng.h" -#endif - -/***************************************************************************/ - -#if defined(ZLIBNG_VERNUM) && !defined(ZLIB_COMPAT) -# define ZLIB_PREFIX(x) zng_ ## x - typedef zng_stream zlib_stream; -#else -# define ZLIB_PREFIX(x) x - typedef z_stream zlib_stream; -#endif - -#if !defined(DEF_MEM_LEVEL) -# if MAX_MEM_LEVEL >= 8 -# define DEF_MEM_LEVEL 8 -# else -# define DEF_MEM_LEVEL MAX_MEM_LEVEL -# endif -#endif - -/***************************************************************************/ - -static mz_stream_vtbl mz_stream_zlib_vtbl = { - mz_stream_zlib_open, - mz_stream_zlib_is_open, - mz_stream_zlib_read, - mz_stream_zlib_write, - mz_stream_zlib_tell, - mz_stream_zlib_seek, - mz_stream_zlib_close, - mz_stream_zlib_error, - mz_stream_zlib_create, - mz_stream_zlib_delete, - mz_stream_zlib_get_prop_int64, - mz_stream_zlib_set_prop_int64 -}; - -/***************************************************************************/ - -typedef struct mz_stream_zlib_s { - mz_stream stream; - zlib_stream zstream; - uint8_t buffer[INT16_MAX]; - int32_t buffer_len; - int64_t total_in; - int64_t total_out; - int64_t max_total_in; - int8_t initialized; - int16_t level; - int32_t window_bits; - int32_t mode; - int32_t error; -} mz_stream_zlib; - -/***************************************************************************/ - -int32_t mz_stream_zlib_open(void *stream, const char *path, int32_t mode) -{ - mz_stream_zlib *zlib = (mz_stream_zlib *)stream; - - MZ_UNUSED(path); - - zlib->zstream.data_type = Z_BINARY; - zlib->zstream.zalloc = Z_NULL; - zlib->zstream.zfree = Z_NULL; - zlib->zstream.opaque = Z_NULL; - zlib->zstream.total_in = 0; - zlib->zstream.total_out = 0; - - zlib->total_in = 0; - zlib->total_out = 0; - - if (mode & MZ_OPEN_MODE_WRITE) - { -#ifdef MZ_ZIP_NO_COMPRESSION - return MZ_SUPPORT_ERROR; -#else - zlib->zstream.next_out = zlib->buffer; - zlib->zstream.avail_out = sizeof(zlib->buffer); - - zlib->error = ZLIB_PREFIX(deflateInit2)(&zlib->zstream, (int8_t)zlib->level, Z_DEFLATED, - zlib->window_bits, DEF_MEM_LEVEL, Z_DEFAULT_STRATEGY); -#endif - } - else if (mode & MZ_OPEN_MODE_READ) - { -#ifdef MZ_ZIP_NO_DECOMPRESSION - return MZ_SUPPORT_ERROR; -#else - zlib->zstream.next_in = zlib->buffer; - zlib->zstream.avail_in = 0; - - zlib->error = ZLIB_PREFIX(inflateInit2)(&zlib->zstream, zlib->window_bits); -#endif - } - - if (zlib->error != Z_OK) - return MZ_OPEN_ERROR; - - zlib->initialized = 1; - zlib->mode = mode; - return MZ_OK; -} - -int32_t mz_stream_zlib_is_open(void *stream) -{ - mz_stream_zlib *zlib = (mz_stream_zlib *)stream; - if (zlib->initialized != 1) - return MZ_OPEN_ERROR; - return MZ_OK; -} - -int32_t mz_stream_zlib_read(void *stream, void *buf, int32_t size) -{ -#ifdef MZ_ZIP_NO_DECOMPRESSION - MZ_UNUSED(stream); - MZ_UNUSED(buf); - MZ_UNUSED(size); - return MZ_SUPPORT_ERROR; -#else - mz_stream_zlib *zlib = (mz_stream_zlib *)stream; - uint64_t total_in_before = 0; - uint64_t total_in_after = 0; - uint64_t total_out_before = 0; - uint64_t total_out_after = 0; - uint32_t total_in = 0; - uint32_t total_out = 0; - uint32_t in_bytes = 0; - uint32_t out_bytes = 0; - int32_t bytes_to_read = sizeof(zlib->buffer); - int32_t read = 0; - int32_t err = Z_OK; - - - zlib->zstream.next_out = (Bytef*)buf; - zlib->zstream.avail_out = (uInt)size; - - do - { - if (zlib->zstream.avail_in == 0) - { - if (zlib->max_total_in > 0) - { - if ((int64_t)bytes_to_read > (zlib->max_total_in - zlib->total_in)) - bytes_to_read = (int32_t)(zlib->max_total_in - zlib->total_in); - } - - read = mz_stream_read(zlib->stream.base, zlib->buffer, bytes_to_read); - - if (read < 0) - return read; - - zlib->zstream.next_in = zlib->buffer; - zlib->zstream.avail_in = read; - } - - total_in_before = zlib->zstream.avail_in; - total_out_before = zlib->zstream.total_out; - - err = ZLIB_PREFIX(inflate)(&zlib->zstream, Z_SYNC_FLUSH); - if ((err >= Z_OK) && (zlib->zstream.msg != NULL)) - { - zlib->error = Z_DATA_ERROR; - break; - } - - total_in_after = zlib->zstream.avail_in; - total_out_after = zlib->zstream.total_out; - - in_bytes = (uint32_t)(total_in_before - total_in_after); - out_bytes = (uint32_t)(total_out_after - total_out_before); - - total_in += in_bytes; - total_out += out_bytes; - - zlib->total_in += in_bytes; - zlib->total_out += out_bytes; - - if (err == Z_STREAM_END) - break; - if (err != Z_OK) - { - zlib->error = err; - break; - } - } - while (zlib->zstream.avail_out > 0); - - if (zlib->error != 0) - { - /* Zlib errors are compatible with MZ */ - return zlib->error; - } - - return total_out; -#endif -} - -#ifndef MZ_ZIP_NO_COMPRESSION -static int32_t mz_stream_zlib_flush(void *stream) -{ - mz_stream_zlib *zlib = (mz_stream_zlib *)stream; - if (mz_stream_write(zlib->stream.base, zlib->buffer, zlib->buffer_len) != zlib->buffer_len) - return MZ_WRITE_ERROR; - return MZ_OK; -} - -static int32_t mz_stream_zlib_deflate(void *stream, int flush) -{ - mz_stream_zlib *zlib = (mz_stream_zlib *)stream; - uint64_t total_out_before = 0; - uint64_t total_out_after = 0; - int32_t out_bytes = 0; - int32_t err = Z_OK; - - - do - { - if (zlib->zstream.avail_out == 0) - { - err = mz_stream_zlib_flush(zlib); - if (err != MZ_OK) - return err; - - zlib->zstream.avail_out = sizeof(zlib->buffer); - zlib->zstream.next_out = zlib->buffer; - - zlib->buffer_len = 0; - } - - total_out_before = zlib->zstream.total_out; - err = ZLIB_PREFIX(deflate)(&zlib->zstream, flush); - total_out_after = zlib->zstream.total_out; - - out_bytes = (uint32_t)(total_out_after - total_out_before); - - zlib->buffer_len += out_bytes; - zlib->total_out += out_bytes; - - if (err == Z_STREAM_END) - break; - if (err != Z_OK) - { - zlib->error = err; - return MZ_DATA_ERROR; - } - } - while ((zlib->zstream.avail_in > 0) || (flush == Z_FINISH && err == Z_OK)); - - return MZ_OK; -} -#endif - -int32_t mz_stream_zlib_write(void *stream, const void *buf, int32_t size) -{ - mz_stream_zlib *zlib = (mz_stream_zlib *)stream; - int32_t err = size; - -#ifdef MZ_ZIP_NO_COMPRESSION - MZ_UNUSED(zlib); - MZ_UNUSED(buf); - err = MZ_SUPPORT_ERROR; -#else - zlib->zstream.next_in = (Bytef*)(intptr_t)buf; - zlib->zstream.avail_in = (uInt)size; - - mz_stream_zlib_deflate(stream, Z_NO_FLUSH); - - zlib->total_in += size; -#endif - return err; -} - -int64_t mz_stream_zlib_tell(void *stream) -{ - MZ_UNUSED(stream); - - return MZ_TELL_ERROR; -} - -int32_t mz_stream_zlib_seek(void *stream, int64_t offset, int32_t origin) -{ - MZ_UNUSED(stream); - MZ_UNUSED(offset); - MZ_UNUSED(origin); - - return MZ_SEEK_ERROR; -} - -int32_t mz_stream_zlib_close(void *stream) -{ - mz_stream_zlib *zlib = (mz_stream_zlib *)stream; - - - if (zlib->mode & MZ_OPEN_MODE_WRITE) - { -#ifdef MZ_ZIP_NO_COMPRESSION - return MZ_SUPPORT_ERROR; -#else - mz_stream_zlib_deflate(stream, Z_FINISH); - mz_stream_zlib_flush(stream); - - ZLIB_PREFIX(deflateEnd)(&zlib->zstream); -#endif - } - else if (zlib->mode & MZ_OPEN_MODE_READ) - { -#ifdef MZ_ZIP_NO_DECOMPRESSION - return MZ_SUPPORT_ERROR; -#else - ZLIB_PREFIX(inflateEnd)(&zlib->zstream); -#endif - } - - zlib->initialized = 0; - - if (zlib->error != Z_OK) - return MZ_CLOSE_ERROR; - return MZ_OK; -} - -int32_t mz_stream_zlib_error(void *stream) -{ - mz_stream_zlib *zlib = (mz_stream_zlib *)stream; - return zlib->error; -} - -int32_t mz_stream_zlib_get_prop_int64(void *stream, int32_t prop, int64_t *value) -{ - mz_stream_zlib *zlib = (mz_stream_zlib *)stream; - switch (prop) - { - case MZ_STREAM_PROP_TOTAL_IN: - *value = zlib->total_in; - break; - case MZ_STREAM_PROP_TOTAL_IN_MAX: - *value = zlib->max_total_in; - break; - case MZ_STREAM_PROP_TOTAL_OUT: - *value = zlib->total_out; - break; - case MZ_STREAM_PROP_HEADER_SIZE: - *value = 0; - break; - case MZ_STREAM_PROP_COMPRESS_WINDOW: - *value = zlib->window_bits; - break; - default: - return MZ_EXIST_ERROR; - } - return MZ_OK; -} - -int32_t mz_stream_zlib_set_prop_int64(void *stream, int32_t prop, int64_t value) -{ - mz_stream_zlib *zlib = (mz_stream_zlib *)stream; - switch (prop) - { - case MZ_STREAM_PROP_COMPRESS_LEVEL: - zlib->level = (int16_t)value; - break; - case MZ_STREAM_PROP_TOTAL_IN_MAX: - zlib->max_total_in = value; - break; - case MZ_STREAM_PROP_COMPRESS_WINDOW: - zlib->window_bits = (int32_t)value; - break; - default: - return MZ_EXIST_ERROR; - } - return MZ_OK; -} - -void *mz_stream_zlib_create(void **stream) -{ - mz_stream_zlib *zlib = NULL; - - zlib = (mz_stream_zlib *)MZ_ALLOC(sizeof(mz_stream_zlib)); - if (zlib != NULL) - { - memset(zlib, 0, sizeof(mz_stream_zlib)); - zlib->stream.vtbl = &mz_stream_zlib_vtbl; - zlib->level = Z_DEFAULT_COMPRESSION; - zlib->window_bits = -MAX_WBITS; - } - if (stream != NULL) - *stream = zlib; - - return zlib; -} - -void mz_stream_zlib_delete(void **stream) -{ - mz_stream_zlib *zlib = NULL; - if (stream == NULL) - return; - zlib = (mz_stream_zlib *)*stream; - if (zlib != NULL) - MZ_FREE(zlib); - *stream = NULL; -} - -void *mz_stream_zlib_get_interface(void) -{ - return (void *)&mz_stream_zlib_vtbl; -} diff --git a/Pods/SSZipArchive/SSZipArchive/minizip/mz_strm_zlib.h b/Pods/SSZipArchive/SSZipArchive/minizip/mz_strm_zlib.h deleted file mode 100644 index ab80ee2ee..000000000 --- a/Pods/SSZipArchive/SSZipArchive/minizip/mz_strm_zlib.h +++ /dev/null @@ -1,44 +0,0 @@ -/* mz_strm_zlib.h -- Stream for zlib inflate/deflate - Version 2.9.2, February 12, 2020 - part of the MiniZip project - - Copyright (C) 2010-2020 Nathan Moinvaziri - https://github.com/nmoinvaz/minizip - - This program is distributed under the terms of the same license as zlib. - See the accompanying LICENSE file for the full text of the license. -*/ - -#ifndef MZ_STREAM_ZLIB_H -#define MZ_STREAM_ZLIB_H - -#ifdef __cplusplus -extern "C" { -#endif - -/***************************************************************************/ - -int32_t mz_stream_zlib_open(void *stream, const char *filename, int32_t mode); -int32_t mz_stream_zlib_is_open(void *stream); -int32_t mz_stream_zlib_read(void *stream, void *buf, int32_t size); -int32_t mz_stream_zlib_write(void *stream, const void *buf, int32_t size); -int64_t mz_stream_zlib_tell(void *stream); -int32_t mz_stream_zlib_seek(void *stream, int64_t offset, int32_t origin); -int32_t mz_stream_zlib_close(void *stream); -int32_t mz_stream_zlib_error(void *stream); - -int32_t mz_stream_zlib_get_prop_int64(void *stream, int32_t prop, int64_t *value); -int32_t mz_stream_zlib_set_prop_int64(void *stream, int32_t prop, int64_t value); - -void* mz_stream_zlib_create(void **stream); -void mz_stream_zlib_delete(void **stream); - -void* mz_stream_zlib_get_interface(void); - -/***************************************************************************/ - -#ifdef __cplusplus -} -#endif - -#endif diff --git a/Pods/SSZipArchive/SSZipArchive/minizip/mz_zip.c b/Pods/SSZipArchive/SSZipArchive/minizip/mz_zip.c deleted file mode 100644 index 266cdd910..000000000 --- a/Pods/SSZipArchive/SSZipArchive/minizip/mz_zip.c +++ /dev/null @@ -1,2917 +0,0 @@ -/* zip.c -- Zip manipulation - Version 2.9.2, February 12, 2020 - part of the MiniZip project - - Copyright (C) 2010-2020 Nathan Moinvaziri - https://github.com/nmoinvaz/minizip - Copyright (C) 2009-2010 Mathias Svensson - Modifications for Zip64 support - http://result42.com - Copyright (C) 2007-2008 Even Rouault - Modifications of Unzip for Zip64 - Copyright (C) 1998-2010 Gilles Vollant - https://www.winimage.com/zLibDll/minizip.html - - This program is distributed under the terms of the same license as zlib. - See the accompanying LICENSE file for the full text of the license. -*/ - - -#include "mz.h" -#include "mz_crypt.h" -#include "mz_strm.h" -#ifdef HAVE_BZIP2 -# include "mz_strm_bzip.h" -#endif -#ifdef HAVE_LIBCOMP -# include "mz_strm_libcomp.h" -#endif -#ifdef HAVE_LZMA -# include "mz_strm_lzma.h" -#endif -#include "mz_strm_mem.h" -#ifdef HAVE_PKCRYPT -# include "mz_strm_pkcrypt.h" -#endif -#ifdef HAVE_WZAES -# include "mz_strm_wzaes.h" -#endif -#ifdef HAVE_ZLIB -# include "mz_strm_zlib.h" -#endif - -#include "mz_zip.h" - -#include /* tolower */ -#include /* snprintf */ - -#if defined(_MSC_VER) || defined(__MINGW32__) -# define localtime_r(t1,t2) (localtime_s(t2,t1) == 0 ? t1 : NULL) -#endif -#if defined(_MSC_VER) && (_MSC_VER < 1900) -# define snprintf _snprintf -#endif - -/***************************************************************************/ - -#define MZ_ZIP_MAGIC_LOCALHEADER (0x04034b50) -#define MZ_ZIP_MAGIC_LOCALHEADERU8 { 0x50, 0x4b, 0x03, 0x04 } -#define MZ_ZIP_MAGIC_CENTRALHEADER (0x02014b50) -#define MZ_ZIP_MAGIC_CENTRALHEADERU8 { 0x50, 0x4b, 0x01, 0x02 } -#define MZ_ZIP_MAGIC_ENDHEADER (0x06054b50) -#define MZ_ZIP_MAGIC_ENDHEADERU8 { 0x50, 0x4b, 0x05, 0x06 } -#define MZ_ZIP_MAGIC_ENDHEADER64 (0x06064b50) -#define MZ_ZIP_MAGIC_ENDLOCHEADER64 (0x07064b50) -#define MZ_ZIP_MAGIC_DATADESCRIPTOR (0x08074b50) -#define MZ_ZIP_MAGIC_DATADESCRIPTORU8 { 0x50, 0x4b, 0x07, 0x08 } - -#define MZ_ZIP_SIZE_LD_ITEM (30) -#define MZ_ZIP_SIZE_CD_ITEM (46) -#define MZ_ZIP_SIZE_CD_LOCATOR64 (20) -#define MZ_ZIP_SIZE_MAX_DATA_DESCRIPTOR (24) - -#define MZ_ZIP_OFFSET_CRC_SIZES (14) - -#ifndef MZ_ZIP_EOCD_MAX_BACK -#define MZ_ZIP_EOCD_MAX_BACK (1 << 20) -#endif - -/***************************************************************************/ - -typedef struct mz_zip_s -{ - mz_zip_file file_info; - mz_zip_file local_file_info; - - void *stream; /* main stream */ - void *cd_stream; /* pointer to the stream with the cd */ - void *cd_mem_stream; /* memory stream for central directory */ - void *compress_stream; /* compression stream */ - void *crypt_stream; /* encryption stream */ - void *file_info_stream; /* memory stream for storing file info */ - void *local_file_info_stream; /* memory stream for storing local file info */ - - int32_t open_mode; - uint8_t recover; - uint8_t data_descriptor; - - uint32_t disk_number_with_cd; /* number of the disk with the central dir */ - int64_t disk_offset_shift; /* correction for zips that have wrong offset start of cd */ - - int64_t cd_start_pos; /* pos of the first file in the central dir stream */ - int64_t cd_current_pos; /* pos of the current file in the central dir */ - int64_t cd_offset; /* offset of start of central directory */ - int64_t cd_size; /* size of the central directory */ - uint32_t cd_signature; /* signature of central directory */ - - uint8_t entry_scanned; /* entry header information read ok */ - uint8_t entry_opened; /* entry is open for read/write */ - uint8_t entry_raw; /* entry opened with raw mode */ - uint32_t entry_crc32; /* entry crc32 */ - - uint64_t number_entry; - - uint16_t version_madeby; - char *comment; -} mz_zip; - -/***************************************************************************/ - -#if 0 -# define mz_zip_print printf -#else -# define mz_zip_print(fmt,...) -#endif - -/***************************************************************************/ - -/* Locate the end of central directory */ -static int32_t mz_zip_search_eocd(void *stream, int64_t *central_pos) -{ - int64_t file_size = 0; - int64_t max_back = MZ_ZIP_EOCD_MAX_BACK; - uint8_t find[4] = MZ_ZIP_MAGIC_ENDHEADERU8; - int32_t err = MZ_OK; - - err = mz_stream_seek(stream, 0, MZ_SEEK_END); - if (err != MZ_OK) - return err; - - file_size = mz_stream_tell(stream); - - if (max_back <= 0 || max_back > file_size) - max_back = file_size; - - return mz_stream_find_reverse(stream, (const void *)find, sizeof(find), max_back, central_pos); -} - -/* Locate the end of central directory 64 of a zip file */ -static int32_t mz_zip_search_zip64_eocd(void *stream, const int64_t end_central_offset, int64_t *central_pos) -{ - int64_t offset = 0; - uint32_t value32 = 0; - int32_t err = MZ_OK; - - - *central_pos = 0; - - /* Zip64 end of central directory locator */ - err = mz_stream_seek(stream, end_central_offset - MZ_ZIP_SIZE_CD_LOCATOR64, MZ_SEEK_SET); - /* Read locator signature */ - if (err == MZ_OK) - { - err = mz_stream_read_uint32(stream, &value32); - if (value32 != MZ_ZIP_MAGIC_ENDLOCHEADER64) - err = MZ_FORMAT_ERROR; - } - /* Number of the disk with the start of the zip64 end of central directory */ - if (err == MZ_OK) - err = mz_stream_read_uint32(stream, &value32); - /* Relative offset of the zip64 end of central directory record8 */ - if (err == MZ_OK) - err = mz_stream_read_uint64(stream, (uint64_t *)&offset); - /* Total number of disks */ - if (err == MZ_OK) - err = mz_stream_read_uint32(stream, &value32); - /* Goto end of central directory record */ - if (err == MZ_OK) - err = mz_stream_seek(stream, (int64_t)offset, MZ_SEEK_SET); - /* The signature */ - if (err == MZ_OK) - { - err = mz_stream_read_uint32(stream, &value32); - if (value32 != MZ_ZIP_MAGIC_ENDHEADER64) - err = MZ_FORMAT_ERROR; - } - - if (err == MZ_OK) - *central_pos = offset; - - return err; -} - -/* Get info about the current file in the zip file */ -static int32_t mz_zip_entry_read_header(void *stream, uint8_t local, mz_zip_file *file_info, void *file_extra_stream) -{ - uint64_t ntfs_time = 0; - uint32_t reserved = 0; - uint32_t magic = 0; - uint32_t dos_date = 0; - uint32_t field_pos = 0; - uint16_t field_type = 0; - uint16_t field_length = 0; - uint32_t field_length_read = 0; - uint16_t ntfs_attrib_id = 0; - uint16_t ntfs_attrib_size = 0; - uint16_t linkname_size; - uint16_t value16 = 0; - uint32_t value32 = 0; - int64_t extrafield_pos = 0; - int64_t comment_pos = 0; - int64_t linkname_pos = 0; - int64_t saved_pos = 0; - int32_t err = MZ_OK; - char *linkname = NULL; - - - memset(file_info, 0, sizeof(mz_zip_file)); - - /* Check the magic */ - err = mz_stream_read_uint32(stream, &magic); - if (err == MZ_END_OF_STREAM) - err = MZ_END_OF_LIST; - else if (magic == MZ_ZIP_MAGIC_ENDHEADER || magic == MZ_ZIP_MAGIC_ENDHEADER64) - err = MZ_END_OF_LIST; - else if ((local) && (magic != MZ_ZIP_MAGIC_LOCALHEADER)) - err = MZ_FORMAT_ERROR; - else if ((!local) && (magic != MZ_ZIP_MAGIC_CENTRALHEADER)) - err = MZ_FORMAT_ERROR; - - /* Read header fields */ - if (err == MZ_OK) - { - if (!local) - err = mz_stream_read_uint16(stream, &file_info->version_madeby); - if (err == MZ_OK) - err = mz_stream_read_uint16(stream, &file_info->version_needed); - if (err == MZ_OK) - err = mz_stream_read_uint16(stream, &file_info->flag); - if (err == MZ_OK) - err = mz_stream_read_uint16(stream, &file_info->compression_method); - if (err == MZ_OK) - { - err = mz_stream_read_uint32(stream, &dos_date); - file_info->modified_date = mz_zip_dosdate_to_time_t(dos_date); - } - if (err == MZ_OK) - err = mz_stream_read_uint32(stream, &file_info->crc); - if (err == MZ_OK) - { - err = mz_stream_read_uint32(stream, &value32); - file_info->compressed_size = value32; - } - if (err == MZ_OK) - { - err = mz_stream_read_uint32(stream, &value32); - file_info->uncompressed_size = value32; - } - if (err == MZ_OK) - err = mz_stream_read_uint16(stream, &file_info->filename_size); - if (err == MZ_OK) - err = mz_stream_read_uint16(stream, &file_info->extrafield_size); - if (!local) - { - if (err == MZ_OK) - err = mz_stream_read_uint16(stream, &file_info->comment_size); - if (err == MZ_OK) - { - err = mz_stream_read_uint16(stream, &value16); - file_info->disk_number = value16; - } - if (err == MZ_OK) - err = mz_stream_read_uint16(stream, &file_info->internal_fa); - if (err == MZ_OK) - err = mz_stream_read_uint32(stream, &file_info->external_fa); - if (err == MZ_OK) - { - err = mz_stream_read_uint32(stream, &value32); - file_info->disk_offset = value32; - } - } - } - - if (err == MZ_OK) - err = mz_stream_seek(file_extra_stream, 0, MZ_SEEK_SET); - - /* Copy variable length data to memory stream for later retrieval */ - if ((err == MZ_OK) && (file_info->filename_size > 0)) - err = mz_stream_copy(file_extra_stream, stream, file_info->filename_size); - mz_stream_write_uint8(file_extra_stream, 0); - extrafield_pos = mz_stream_tell(file_extra_stream); - - if ((err == MZ_OK) && (file_info->extrafield_size > 0)) - err = mz_stream_copy(file_extra_stream, stream, file_info->extrafield_size); - mz_stream_write_uint8(file_extra_stream, 0); - - comment_pos = mz_stream_tell(file_extra_stream); - if ((err == MZ_OK) && (file_info->comment_size > 0)) - err = mz_stream_copy(file_extra_stream, stream, file_info->comment_size); - mz_stream_write_uint8(file_extra_stream, 0); - - linkname_pos = mz_stream_tell(file_extra_stream); - /* Overwrite if we encounter UNIX1 extra block */ - mz_stream_write_uint8(file_extra_stream, 0); - - if ((err == MZ_OK) && (file_info->extrafield_size > 0)) - { - /* Seek to and parse the extra field */ - err = mz_stream_seek(file_extra_stream, extrafield_pos, MZ_SEEK_SET); - - while ((err == MZ_OK) && (field_pos + 4 <= file_info->extrafield_size)) - { - err = mz_zip_extrafield_read(file_extra_stream, &field_type, &field_length); - if (err != MZ_OK) - break; - field_pos += 4; - - /* Don't allow field length to exceed size of remaining extrafield */ - if (field_length > (file_info->extrafield_size - field_pos)) - field_length = (uint16_t)(file_info->extrafield_size - field_pos); - - /* Read ZIP64 extra field */ - if ((field_type == MZ_ZIP_EXTENSION_ZIP64) && (field_length >= 8)) - { - if ((err == MZ_OK) && (file_info->uncompressed_size == UINT32_MAX)) - { - err = mz_stream_read_int64(file_extra_stream, &file_info->uncompressed_size); - if (file_info->uncompressed_size < 0) - err = MZ_FORMAT_ERROR; - } - if ((err == MZ_OK) && (file_info->compressed_size == UINT32_MAX)) - { - err = mz_stream_read_int64(file_extra_stream, &file_info->compressed_size); - if (file_info->compressed_size < 0) - err = MZ_FORMAT_ERROR; - } - if ((err == MZ_OK) && (file_info->disk_offset == UINT32_MAX)) - { - err = mz_stream_read_int64(file_extra_stream, &file_info->disk_offset); - if (file_info->disk_offset < 0) - err = MZ_FORMAT_ERROR; - } - if ((err == MZ_OK) && (file_info->disk_number == UINT16_MAX)) - err = mz_stream_read_uint32(file_extra_stream, &file_info->disk_number); - } - /* Read NTFS extra field */ - else if ((field_type == MZ_ZIP_EXTENSION_NTFS) && (field_length > 4)) - { - if (err == MZ_OK) - err = mz_stream_read_uint32(file_extra_stream, &reserved); - field_length_read = 4; - - while ((err == MZ_OK) && (field_length_read + 4 <= field_length)) - { - err = mz_stream_read_uint16(file_extra_stream, &ntfs_attrib_id); - if (err == MZ_OK) - err = mz_stream_read_uint16(file_extra_stream, &ntfs_attrib_size); - field_length_read += 4; - - if ((err == MZ_OK) && (ntfs_attrib_id == 0x01) && (ntfs_attrib_size == 24)) - { - err = mz_stream_read_uint64(file_extra_stream, &ntfs_time); - mz_zip_ntfs_to_unix_time(ntfs_time, &file_info->modified_date); - - if (err == MZ_OK) - { - err = mz_stream_read_uint64(file_extra_stream, &ntfs_time); - mz_zip_ntfs_to_unix_time(ntfs_time, &file_info->accessed_date); - } - if (err == MZ_OK) - { - err = mz_stream_read_uint64(file_extra_stream, &ntfs_time); - mz_zip_ntfs_to_unix_time(ntfs_time, &file_info->creation_date); - } - } - else if ((err == MZ_OK) && (field_length_read + ntfs_attrib_size <= field_length)) - { - err = mz_stream_seek(file_extra_stream, ntfs_attrib_size, MZ_SEEK_CUR); - } - - field_length_read += ntfs_attrib_size; - } - } - /* Read UNIX1 extra field */ - else if ((field_type == MZ_ZIP_EXTENSION_UNIX1) && (field_length >= 12)) - { - if (err == MZ_OK) - { - err = mz_stream_read_uint32(file_extra_stream, &value32); - if (err == MZ_OK && file_info->accessed_date == 0) - file_info->accessed_date = value32; - } - if (err == MZ_OK) - { - err = mz_stream_read_uint32(file_extra_stream, &value32); - if (err == MZ_OK && file_info->modified_date == 0) - file_info->modified_date = value32; - } - if (err == MZ_OK) - err = mz_stream_read_uint16(file_extra_stream, &value16); /* User id */ - if (err == MZ_OK) - err = mz_stream_read_uint16(file_extra_stream, &value16); /* Group id */ - - /* Copy linkname to end of file extra stream so we can return null - terminated string */ - linkname_size = field_length - 12; - if ((err == MZ_OK) && (linkname_size > 0)) - { - linkname = (char *)MZ_ALLOC(linkname_size); - if (linkname != NULL) - { - if (mz_stream_read(file_extra_stream, linkname, linkname_size) != linkname_size) - err = MZ_READ_ERROR; - if (err == MZ_OK) - { - saved_pos = mz_stream_tell(file_extra_stream); - - mz_stream_seek(file_extra_stream, linkname_pos, MZ_SEEK_SET); - mz_stream_write(file_extra_stream, linkname, linkname_size); - mz_stream_write_uint8(file_extra_stream, 0); - - mz_stream_seek(file_extra_stream, saved_pos, MZ_SEEK_SET); - } - MZ_FREE(linkname); - } - } - } -#ifdef HAVE_WZAES - /* Read AES extra field */ - else if ((field_type == MZ_ZIP_EXTENSION_AES) && (field_length == 7)) - { - uint8_t value8 = 0; - /* Verify version info */ - err = mz_stream_read_uint16(file_extra_stream, &value16); - /* Support AE-1 and AE-2 */ - if (value16 != 1 && value16 != 2) - err = MZ_FORMAT_ERROR; - file_info->aes_version = value16; - if (err == MZ_OK) - err = mz_stream_read_uint8(file_extra_stream, &value8); - if ((char)value8 != 'A') - err = MZ_FORMAT_ERROR; - if (err == MZ_OK) - err = mz_stream_read_uint8(file_extra_stream, &value8); - if ((char)value8 != 'E') - err = MZ_FORMAT_ERROR; - /* Get AES encryption strength and actual compression method */ - if (err == MZ_OK) - { - err = mz_stream_read_uint8(file_extra_stream, &value8); - file_info->aes_encryption_mode = value8; - } - if (err == MZ_OK) - { - err = mz_stream_read_uint16(file_extra_stream, &value16); - file_info->compression_method = value16; - } - } -#endif - else if (field_length > 0) - { - err = mz_stream_seek(file_extra_stream, field_length, MZ_SEEK_CUR); - } - - field_pos += field_length; - } - } - - /* Get pointers to variable length data */ - mz_stream_mem_get_buffer(file_extra_stream, (const void **)&file_info->filename); - mz_stream_mem_get_buffer_at(file_extra_stream, extrafield_pos, (const void **)&file_info->extrafield); - mz_stream_mem_get_buffer_at(file_extra_stream, comment_pos, (const void **)&file_info->comment); - mz_stream_mem_get_buffer_at(file_extra_stream, linkname_pos, (const void **)&file_info->linkname); - - /* Set to empty string just in-case */ - if (file_info->filename == NULL) - file_info->filename = ""; - if (file_info->extrafield == NULL) - file_info->extrafield_size = 0; - if (file_info->comment == NULL) - file_info->comment = ""; - if (file_info->linkname == NULL) - file_info->linkname = ""; - - if (err == MZ_OK) - { - mz_zip_print("Zip - Entry - Read header - %s (local %" PRId8 ")\n", - file_info->filename, local); - mz_zip_print("Zip - Entry - Read header compress (ucs %" PRId64 " cs %" PRId64 " crc 0x%08" PRIx32 ")\n", - file_info->uncompressed_size, file_info->compressed_size, file_info->crc); - if (!local) - { - mz_zip_print("Zip - Entry - Read header disk (disk %" PRIu32 " offset %" PRId64 ")\n", - file_info->disk_number, file_info->disk_offset); - } - mz_zip_print("Zip - Entry - Read header variable (fnl %" PRId32 " efs %" PRId32 " cms %" PRId32 ")\n", - file_info->filename_size, file_info->extrafield_size, file_info->comment_size); - } - - return err; -} - -static int32_t mz_zip_entry_read_descriptor(void *stream, uint8_t zip64, uint32_t *crc32, int64_t *compressed_size, int64_t *uncompressed_size) -{ - uint32_t value32 = 0; - int64_t value64 = 0; - int32_t err = MZ_OK; - - - err = mz_stream_read_uint32(stream, &value32); - if (value32 != MZ_ZIP_MAGIC_DATADESCRIPTOR) - err = MZ_FORMAT_ERROR; - if (err == MZ_OK) - err = mz_stream_read_uint32(stream, &value32); - if ((err == MZ_OK) && (crc32 != NULL)) - *crc32 = value32; - if (err == MZ_OK) - { - /* If zip 64 extension is enabled then read as 8 byte */ - if (!zip64) - { - err = mz_stream_read_uint32(stream, &value32); - value64 = value32; - } - else - { - err = mz_stream_read_int64(stream, &value64); - if (value64 < 0) - err = MZ_FORMAT_ERROR; - } - if ((err == MZ_OK) && (compressed_size != NULL)) - *compressed_size = value64; - } - if (err == MZ_OK) - { - if (!zip64) - { - err = mz_stream_read_uint32(stream, &value32); - value64 = value32; - } - else - { - err = mz_stream_read_int64(stream, &value64); - if (value64 < 0) - err = MZ_FORMAT_ERROR; - } - if ((err == MZ_OK) && (uncompressed_size != NULL)) - *uncompressed_size = value64; - } - - return err; -} - -static int32_t mz_zip_entry_write_crc_sizes(void *stream, uint8_t mask, mz_zip_file *file_info) -{ - int32_t err = MZ_OK; - - if (mask) - err = mz_stream_write_uint32(stream, 0); - else - err = mz_stream_write_uint32(stream, file_info->crc); /* crc */ - - if (err == MZ_OK) - { - if (file_info->compressed_size >= UINT32_MAX) /* compr size */ - err = mz_stream_write_uint32(stream, UINT32_MAX); - else - err = mz_stream_write_uint32(stream, (uint32_t)file_info->compressed_size); - } - if (err == MZ_OK) - { - if (file_info->uncompressed_size >= UINT32_MAX) /* uncompr size */ - err = mz_stream_write_uint32(stream, UINT32_MAX); - else if (mask) - err = mz_stream_write_uint32(stream, 0); - else - err = mz_stream_write_uint32(stream, (uint32_t)file_info->uncompressed_size); - } - return err; -} - -static int32_t mz_zip_entry_write_header(void *stream, uint8_t local, mz_zip_file *file_info) -{ - uint64_t ntfs_time = 0; - uint32_t reserved = 0; - uint32_t dos_date = 0; - uint16_t extrafield_size = 0; - uint16_t field_type = 0; - uint16_t field_length = 0; - uint16_t field_length_zip64 = 0; - uint16_t field_length_ntfs = 0; - uint16_t field_length_aes = 0; - uint16_t field_length_unix1 = 0; - uint16_t filename_size = 0; - uint16_t filename_length = 0; - uint16_t linkname_size = 0; - uint16_t version_needed = 0; - int32_t comment_size = 0; - int32_t err = MZ_OK; - int32_t err_mem = MZ_OK; - uint8_t zip64 = 0; - uint8_t skip_aes = 0; - uint8_t mask = 0; - uint8_t write_end_slash = 0; - const char *filename = NULL; - char masked_name[64]; - void *file_extra_stream = NULL; - - if (file_info == NULL) - return MZ_PARAM_ERROR; - - if ((local) && (file_info->flag & MZ_ZIP_FLAG_MASK_LOCAL_INFO)) - mask = 1; - - /* Calculate extra field sizes */ - if (file_info->uncompressed_size >= UINT32_MAX) - field_length_zip64 += 8; - if (file_info->compressed_size >= UINT32_MAX) - field_length_zip64 += 8; - if (file_info->disk_offset >= UINT32_MAX) - field_length_zip64 += 8; - - if (file_info->zip64 == MZ_ZIP64_AUTO) - { - /* If uncompressed size is unknown, assume zip64 for 64-bit data descriptors */ - zip64 = (local && file_info->uncompressed_size == 0) || (field_length_zip64 > 0); - } - else if (file_info->zip64 == MZ_ZIP64_FORCE) - { - zip64 = 1; - } - else if (file_info->zip64 == MZ_ZIP64_DISABLE) - { - /* Zip64 extension is required to zip file */ - if (field_length_zip64 > 0) - return MZ_PARAM_ERROR; - } - - if (zip64) - { - extrafield_size += 4; - extrafield_size += field_length_zip64; - } - - /* Calculate extra field size and check for duplicates */ - if (file_info->extrafield_size > 0) - { - mz_stream_mem_create(&file_extra_stream); - mz_stream_mem_set_buffer(file_extra_stream, (void *)file_info->extrafield, - file_info->extrafield_size); - - do - { - err_mem = mz_stream_read_uint16(file_extra_stream, &field_type); - if (err_mem == MZ_OK) - err_mem = mz_stream_read_uint16(file_extra_stream, &field_length); - if (err_mem != MZ_OK) - break; - - /* Prefer incoming aes extensions over ours */ - if (field_type == MZ_ZIP_EXTENSION_AES) - skip_aes = 1; - - /* Prefer our zip64, ntfs, unix1 extension over incoming */ - if (field_type != MZ_ZIP_EXTENSION_ZIP64 && field_type != MZ_ZIP_EXTENSION_NTFS && - field_type != MZ_ZIP_EXTENSION_UNIX1) - extrafield_size += 4 + field_length; - - if (err_mem == MZ_OK) - err_mem = mz_stream_seek(file_extra_stream, field_length, MZ_SEEK_CUR); - } - while (err_mem == MZ_OK); - } - -#ifdef HAVE_WZAES - if (!skip_aes) - { - if ((file_info->flag & MZ_ZIP_FLAG_ENCRYPTED) && (file_info->aes_version)) - { - field_length_aes = 1 + 1 + 1 + 2 + 2; - extrafield_size += 4 + field_length_aes; - } - } -#else - MZ_UNUSED(field_length_aes); - MZ_UNUSED(skip_aes); -#endif - /* NTFS timestamps */ - if ((file_info->modified_date != 0) && - (file_info->accessed_date != 0) && - (file_info->creation_date != 0) && (!mask)) - { - field_length_ntfs = 8 + 8 + 8 + 4 + 2 + 2; - extrafield_size += 4 + field_length_ntfs; - } - - /* Unix1 symbolic links */ - if (file_info->linkname != NULL && *file_info->linkname != 0) - { - linkname_size = (uint16_t)strlen(file_info->linkname); - field_length_unix1 = 12 + linkname_size; - extrafield_size += 4 + field_length_unix1; - } - - if (local) - err = mz_stream_write_uint32(stream, MZ_ZIP_MAGIC_LOCALHEADER); - else - { - err = mz_stream_write_uint32(stream, MZ_ZIP_MAGIC_CENTRALHEADER); - if (err == MZ_OK) - err = mz_stream_write_uint16(stream, file_info->version_madeby); - } - - /* Calculate version needed to extract */ - if (err == MZ_OK) - { - version_needed = file_info->version_needed; - if (version_needed == 0) - { - version_needed = 20; - if (zip64) - version_needed = 45; -#ifdef HAVE_WZAES - if ((file_info->flag & MZ_ZIP_FLAG_ENCRYPTED) && (file_info->aes_version)) - version_needed = 51; -#endif -#ifdef HAVE_LZMA - if (file_info->compression_method == MZ_COMPRESS_METHOD_LZMA) - version_needed = 63; -#endif - } - err = mz_stream_write_uint16(stream, version_needed); - } - if (err == MZ_OK) - err = mz_stream_write_uint16(stream, file_info->flag); - if (err == MZ_OK) - { -#ifdef HAVE_WZAES - if ((file_info->flag & MZ_ZIP_FLAG_ENCRYPTED) && (file_info->aes_version)) - err = mz_stream_write_uint16(stream, MZ_COMPRESS_METHOD_AES); - else -#endif - err = mz_stream_write_uint16(stream, file_info->compression_method); - } - if (err == MZ_OK) - { - if (file_info->modified_date != 0 && !mask) - dos_date = mz_zip_time_t_to_dos_date(file_info->modified_date); - err = mz_stream_write_uint32(stream, dos_date); - } - - if (err == MZ_OK) - err = mz_zip_entry_write_crc_sizes(stream, mask, file_info); - - if (mask) - { - snprintf(masked_name, sizeof(masked_name), "%" PRIx32 "_%" PRIx64, - file_info->disk_number, file_info->disk_offset); - filename = masked_name; - } - else - { - filename = file_info->filename; - } - - filename_length = (uint16_t)strlen(filename); - filename_size += filename_length; - - if ((mz_zip_attrib_is_dir(file_info->external_fa, file_info->version_madeby) == MZ_OK) && - ((filename[filename_length - 1] != '/') && (filename[filename_length - 1] != '\\'))) - { - filename_size += 1; - write_end_slash = 1; - } - - if (err == MZ_OK) - err = mz_stream_write_uint16(stream, filename_size); - if (err == MZ_OK) - err = mz_stream_write_uint16(stream, extrafield_size); - - if (!local) - { - if (file_info->comment != NULL) - { - comment_size = (int32_t)strlen(file_info->comment); - if (comment_size > UINT16_MAX) - comment_size = UINT16_MAX; - } - if (err == MZ_OK) - err = mz_stream_write_uint16(stream, (uint16_t)comment_size); - if (err == MZ_OK) - err = mz_stream_write_uint16(stream, (uint16_t)file_info->disk_number); - if (err == MZ_OK) - err = mz_stream_write_uint16(stream, file_info->internal_fa); - if (err == MZ_OK) - err = mz_stream_write_uint32(stream, file_info->external_fa); - if (err == MZ_OK) - { - if (file_info->disk_offset >= UINT32_MAX) - err = mz_stream_write_uint32(stream, UINT32_MAX); - else - err = mz_stream_write_uint32(stream, (uint32_t)file_info->disk_offset); - } - } - - if (err == MZ_OK) - { - if (mz_stream_write(stream, filename, filename_length) != filename_length) - err = MZ_WRITE_ERROR; - - /* Ensure that directories have a slash appended to them for compatibility */ - if (err == MZ_OK && write_end_slash) - err = mz_stream_write_uint8(stream, '/'); - } - - if (file_info->extrafield_size > 0) - { - err_mem = mz_stream_mem_seek(file_extra_stream, 0, MZ_SEEK_SET); - while (err == MZ_OK && err_mem == MZ_OK) - { - err_mem = mz_stream_read_uint16(file_extra_stream, &field_type); - if (err_mem == MZ_OK) - err_mem = mz_stream_read_uint16(file_extra_stream, &field_length); - if (err_mem != MZ_OK) - break; - - /* Prefer our zip 64, ntfs, unix1 extensions over incoming */ - if (field_type == MZ_ZIP_EXTENSION_ZIP64 || field_type == MZ_ZIP_EXTENSION_NTFS || - field_type == MZ_ZIP_EXTENSION_UNIX1) - { - err_mem = mz_stream_seek(file_extra_stream, field_length, MZ_SEEK_CUR); - continue; - } - - err = mz_stream_write_uint16(stream, field_type); - if (err == MZ_OK) - err = mz_stream_write_uint16(stream, field_length); - if (err == MZ_OK) - err = mz_stream_copy(stream, file_extra_stream, field_length); - } - - mz_stream_mem_delete(&file_extra_stream); - } - - /* Write ZIP64 extra field */ - if ((err == MZ_OK) && (zip64)) - { - err = mz_zip_extrafield_write(stream, MZ_ZIP_EXTENSION_ZIP64, field_length_zip64); - if ((err == MZ_OK) && (file_info->uncompressed_size >= UINT32_MAX)) - { - if (mask) - err = mz_stream_write_int64(stream, 0); - else - err = mz_stream_write_int64(stream, file_info->uncompressed_size); - } - if ((err == MZ_OK) && (file_info->compressed_size >= UINT32_MAX)) - err = mz_stream_write_int64(stream, file_info->compressed_size); - if ((err == MZ_OK) && (file_info->disk_offset >= UINT32_MAX)) - err = mz_stream_write_int64(stream, file_info->disk_offset); - } - /* Write NTFS extra field */ - if ((err == MZ_OK) && (field_length_ntfs > 0)) - { - err = mz_zip_extrafield_write(stream, MZ_ZIP_EXTENSION_NTFS, field_length_ntfs); - if (err == MZ_OK) - err = mz_stream_write_uint32(stream, reserved); - if (err == MZ_OK) - err = mz_stream_write_uint16(stream, 0x01); - if (err == MZ_OK) - err = mz_stream_write_uint16(stream, field_length_ntfs - 8); - if (err == MZ_OK) - { - mz_zip_unix_to_ntfs_time(file_info->modified_date, &ntfs_time); - err = mz_stream_write_uint64(stream, ntfs_time); - } - if (err == MZ_OK) - { - mz_zip_unix_to_ntfs_time(file_info->accessed_date, &ntfs_time); - err = mz_stream_write_uint64(stream, ntfs_time); - } - if (err == MZ_OK) - { - mz_zip_unix_to_ntfs_time(file_info->creation_date, &ntfs_time); - err = mz_stream_write_uint64(stream, ntfs_time); - } - } - /* Write UNIX extra block extra field */ - if ((err == MZ_OK) && (field_length_unix1 > 0)) - { - err = mz_zip_extrafield_write(stream, MZ_ZIP_EXTENSION_UNIX1, field_length_unix1); - if (err == MZ_OK) - err = mz_stream_write_uint32(stream, (uint32_t)file_info->accessed_date); - if (err == MZ_OK) - err = mz_stream_write_uint32(stream, (uint32_t)file_info->modified_date); - if (err == MZ_OK) /* User id */ - err = mz_stream_write_uint16(stream, 0); - if (err == MZ_OK) /* Group id */ - err = mz_stream_write_uint16(stream, 0); - if (err == MZ_OK && linkname_size > 0) - { - if (mz_stream_write(stream, file_info->linkname, linkname_size) != linkname_size) - err = MZ_WRITE_ERROR; - } - } -#ifdef HAVE_WZAES - /* Write AES extra field */ - if ((err == MZ_OK) && (!skip_aes) && (file_info->flag & MZ_ZIP_FLAG_ENCRYPTED) && (file_info->aes_version)) - { - err = mz_zip_extrafield_write(stream, MZ_ZIP_EXTENSION_AES, field_length_aes); - if (err == MZ_OK) - err = mz_stream_write_uint16(stream, file_info->aes_version); - if (err == MZ_OK) - err = mz_stream_write_uint8(stream, 'A'); - if (err == MZ_OK) - err = mz_stream_write_uint8(stream, 'E'); - if (err == MZ_OK) - err = mz_stream_write_uint8(stream, file_info->aes_encryption_mode); - if (err == MZ_OK) - err = mz_stream_write_uint16(stream, file_info->compression_method); - } -#endif - if ((err == MZ_OK) && (!local) && (file_info->comment != NULL)) - { - if (mz_stream_write(stream, file_info->comment, file_info->comment_size) != file_info->comment_size) - err = MZ_WRITE_ERROR; - } - - return err; -} - -static int32_t mz_zip_entry_write_descriptor(void *stream, uint8_t zip64, uint32_t crc32, int64_t compressed_size, int64_t uncompressed_size) -{ - int32_t err = MZ_OK; - - err = mz_stream_write_uint32(stream, MZ_ZIP_MAGIC_DATADESCRIPTOR); - if (err == MZ_OK) - err = mz_stream_write_uint32(stream, crc32); - - /* Store data descriptor as 8 bytes if zip 64 extension enabled */ - if (err == MZ_OK) - { - /* Zip 64 extension is enabled when uncompressed size is > UINT32_MAX */ - if (!zip64) - err = mz_stream_write_uint32(stream, (uint32_t)compressed_size); - else - err = mz_stream_write_int64(stream, compressed_size); - } - if (err == MZ_OK) - { - if (!zip64) - err = mz_stream_write_uint32(stream, (uint32_t)uncompressed_size); - else - err = mz_stream_write_int64(stream, uncompressed_size); - } - - return err; -} - -static int32_t mz_zip_read_cd(void *handle) -{ - mz_zip *zip = (mz_zip *)handle; - uint64_t number_entry_cd64 = 0; - uint64_t number_entry = 0; - uint64_t number_entry_cd = 0; - int64_t eocd_pos = 0; - int64_t eocd_pos64 = 0; - int64_t value64i = 0; - uint16_t value16 = 0; - uint32_t value32 = 0; - uint64_t value64 = 0; - uint16_t comment_size = 0; - int32_t comment_read = 0; - int32_t err = MZ_OK; - - - if (zip == NULL) - return MZ_PARAM_ERROR; - - /* Read and cache central directory records */ - err = mz_zip_search_eocd(zip->stream, &eocd_pos); - if (err == MZ_OK) - { - /* The signature, already checked */ - err = mz_stream_read_uint32(zip->stream, &value32); - /* Number of this disk */ - if (err == MZ_OK) - err = mz_stream_read_uint16(zip->stream, &value16); - /* Number of the disk with the start of the central directory */ - if (err == MZ_OK) - err = mz_stream_read_uint16(zip->stream, &value16); - zip->disk_number_with_cd = value16; - /* Total number of entries in the central dir on this disk */ - if (err == MZ_OK) - err = mz_stream_read_uint16(zip->stream, &value16); - zip->number_entry = value16; - /* Total number of entries in the central dir */ - if (err == MZ_OK) - err = mz_stream_read_uint16(zip->stream, &value16); - number_entry_cd = value16; - if (number_entry_cd != zip->number_entry) - err = MZ_FORMAT_ERROR; - /* Size of the central directory */ - if (err == MZ_OK) - err = mz_stream_read_uint32(zip->stream, &value32); - if (err == MZ_OK) - zip->cd_size = value32; - /* Offset of start of central directory with respect to the starting disk number */ - if (err == MZ_OK) - err = mz_stream_read_uint32(zip->stream, &value32); - if (err == MZ_OK) - zip->cd_offset = value32; - /* Zip file global comment length */ - if (err == MZ_OK) - err = mz_stream_read_uint16(zip->stream, &comment_size); - if ((err == MZ_OK) && (comment_size > 0)) - { - zip->comment = (char *)MZ_ALLOC(comment_size + 1); - if (zip->comment != NULL) - { - comment_read = mz_stream_read(zip->stream, zip->comment, comment_size); - /* Don't fail if incorrect comment length read, not critical */ - if (comment_read < 0) - comment_read = 0; - zip->comment[comment_read] = 0; - } - } - - if ((err == MZ_OK) && ((number_entry_cd == UINT16_MAX) || (zip->cd_offset == UINT32_MAX))) - { - /* Format should be Zip64, as the central directory or file size is too large */ - if (mz_zip_search_zip64_eocd(zip->stream, eocd_pos, &eocd_pos64) == MZ_OK) - { - eocd_pos = eocd_pos64; - - err = mz_stream_seek(zip->stream, eocd_pos, MZ_SEEK_SET); - /* The signature, already checked */ - if (err == MZ_OK) - err = mz_stream_read_uint32(zip->stream, &value32); - /* Size of zip64 end of central directory record */ - if (err == MZ_OK) - err = mz_stream_read_uint64(zip->stream, &value64); - /* Version made by */ - if (err == MZ_OK) - err = mz_stream_read_uint16(zip->stream, &zip->version_madeby); - /* Version needed to extract */ - if (err == MZ_OK) - err = mz_stream_read_uint16(zip->stream, &value16); - /* Number of this disk */ - if (err == MZ_OK) - err = mz_stream_read_uint32(zip->stream, &value32); - /* Number of the disk with the start of the central directory */ - if (err == MZ_OK) - err = mz_stream_read_uint32(zip->stream, &zip->disk_number_with_cd); - /* Total number of entries in the central directory on this disk */ - if (err == MZ_OK) - err = mz_stream_read_uint64(zip->stream, &number_entry); - /* Total number of entries in the central directory */ - if (err == MZ_OK) - err = mz_stream_read_uint64(zip->stream, &number_entry_cd64); - if (number_entry == UINT32_MAX) - zip->number_entry = number_entry_cd64; - /* Size of the central directory */ - if (err == MZ_OK) - { - err = mz_stream_read_int64(zip->stream, &zip->cd_size); - if (zip->cd_size < 0) - err = MZ_FORMAT_ERROR; - } - /* Offset of start of central directory with respect to the starting disk number */ - if (err == MZ_OK) - { - err = mz_stream_read_int64(zip->stream, &zip->cd_offset); - if (zip->cd_offset < 0) - err = MZ_FORMAT_ERROR; - } - } - else if ((zip->number_entry == UINT16_MAX) || (number_entry_cd != zip->number_entry) || - (zip->cd_size == UINT16_MAX) || (zip->cd_offset == UINT32_MAX)) - { - err = MZ_FORMAT_ERROR; - } - } - } - - if (err == MZ_OK) - { - mz_zip_print("Zip - Read cd (disk %" PRId32 " entries %" PRId64 " offset %" PRId64 " size %" PRId64 ")\n", - zip->disk_number_with_cd, zip->number_entry, zip->cd_offset, zip->cd_size); - - /* Verify central directory signature exists at offset */ - err = mz_stream_seek(zip->stream, zip->cd_offset, MZ_SEEK_SET); - if (err == MZ_OK) - err = mz_stream_read_uint32(zip->stream, &zip->cd_signature); - if ((err == MZ_OK) && (zip->cd_signature != MZ_ZIP_MAGIC_CENTRALHEADER)) - { - /* If cd exists in large file and no zip-64 support, error for recover */ - if (eocd_pos > UINT32_MAX && eocd_pos64 == 0) - err = MZ_FORMAT_ERROR; - /* If cd not found attempt to seek backward to find it */ - if (err == MZ_OK) - err = mz_stream_seek(zip->stream, eocd_pos - zip->cd_size, MZ_SEEK_SET); - if (err == MZ_OK) - err = mz_stream_read_uint32(zip->stream, &zip->cd_signature); - if ((err == MZ_OK) && (zip->cd_signature == MZ_ZIP_MAGIC_CENTRALHEADER)) - { - - /* If found compensate for incorrect locations */ - value64i = zip->cd_offset; - zip->cd_offset = eocd_pos - zip->cd_size; - /* Assume disk has prepended data */ - zip->disk_offset_shift = zip->cd_offset - value64i; - } - } - } - - if (err == MZ_OK) - { - if (eocd_pos < zip->cd_offset) - { - /* End of central dir should always come after central dir */ - err = MZ_FORMAT_ERROR; - } - else if (eocd_pos < zip->cd_offset + zip->cd_size) - { - /* Truncate size of cd if incorrect size or offset provided */ - zip->cd_size = eocd_pos - zip->cd_offset; - } - } - - return err; -} - -static int32_t mz_zip_write_cd(void *handle) -{ - mz_zip *zip = (mz_zip *)handle; - int64_t zip64_eocd_pos_inzip = 0; - int64_t disk_number = 0; - int64_t disk_size = 0; - int32_t comment_size = 0; - int32_t err = MZ_OK; - - - if (zip == NULL) - return MZ_PARAM_ERROR; - - if (mz_stream_get_prop_int64(zip->stream, MZ_STREAM_PROP_DISK_NUMBER, &disk_number) == MZ_OK) - zip->disk_number_with_cd = (uint32_t)disk_number; - if (mz_stream_get_prop_int64(zip->stream, MZ_STREAM_PROP_DISK_SIZE, &disk_size) == MZ_OK && disk_size > 0) - zip->disk_number_with_cd += 1; - mz_stream_set_prop_int64(zip->stream, MZ_STREAM_PROP_DISK_NUMBER, -1); - if ((zip->disk_number_with_cd > 0) && (zip->open_mode & MZ_OPEN_MODE_APPEND)) - { - // Overwrite existing central directory if using split disks - mz_stream_seek(zip->stream, 0, MZ_SEEK_SET); - } - - zip->cd_offset = mz_stream_tell(zip->stream); - mz_stream_seek(zip->cd_mem_stream, 0, MZ_SEEK_END); - zip->cd_size = (uint32_t)mz_stream_tell(zip->cd_mem_stream); - mz_stream_seek(zip->cd_mem_stream, 0, MZ_SEEK_SET); - - err = mz_stream_copy(zip->stream, zip->cd_mem_stream, (int32_t)zip->cd_size); - - mz_zip_print("Zip - Write cd (disk %" PRId32 " entries %" PRId64 " offset %" PRId64 " size %" PRId64 ")\n", - zip->disk_number_with_cd, zip->number_entry, zip->cd_offset, zip->cd_size); - - if (zip->cd_size == 0 && zip->number_entry > 0) - { - // Zip does not contain central directory, open with recovery option - return MZ_FORMAT_ERROR; - } - - /* Write the ZIP64 central directory header */ - if (zip->cd_offset >= UINT32_MAX || zip->number_entry > UINT16_MAX) - { - zip64_eocd_pos_inzip = mz_stream_tell(zip->stream); - - err = mz_stream_write_uint32(zip->stream, MZ_ZIP_MAGIC_ENDHEADER64); - - /* Size of this 'zip64 end of central directory' */ - if (err == MZ_OK) - err = mz_stream_write_uint64(zip->stream, (uint64_t)44); - /* Version made by */ - if (err == MZ_OK) - err = mz_stream_write_uint16(zip->stream, zip->version_madeby); - /* Version needed */ - if (err == MZ_OK) - err = mz_stream_write_uint16(zip->stream, (uint16_t)45); - /* Number of this disk */ - if (err == MZ_OK) - err = mz_stream_write_uint32(zip->stream, zip->disk_number_with_cd); - /* Number of the disk with the start of the central directory */ - if (err == MZ_OK) - err = mz_stream_write_uint32(zip->stream, zip->disk_number_with_cd); - /* Total number of entries in the central dir on this disk */ - if (err == MZ_OK) - err = mz_stream_write_uint64(zip->stream, zip->number_entry); - /* Total number of entries in the central dir */ - if (err == MZ_OK) - err = mz_stream_write_uint64(zip->stream, zip->number_entry); - /* Size of the central directory */ - if (err == MZ_OK) - err = mz_stream_write_int64(zip->stream, zip->cd_size); - /* Offset of start of central directory with respect to the starting disk number */ - if (err == MZ_OK) - err = mz_stream_write_int64(zip->stream, zip->cd_offset); - if (err == MZ_OK) - err = mz_stream_write_uint32(zip->stream, MZ_ZIP_MAGIC_ENDLOCHEADER64); - - /* Number of the disk with the start of the central directory */ - if (err == MZ_OK) - err = mz_stream_write_uint32(zip->stream, zip->disk_number_with_cd); - /* Relative offset to the end of zip64 central directory */ - if (err == MZ_OK) - err = mz_stream_write_int64(zip->stream, zip64_eocd_pos_inzip); - /* Number of the disk with the start of the central directory */ - if (err == MZ_OK) - err = mz_stream_write_uint32(zip->stream, zip->disk_number_with_cd + 1); - } - - /* Write the central directory header */ - - /* Signature */ - if (err == MZ_OK) - err = mz_stream_write_uint32(zip->stream, MZ_ZIP_MAGIC_ENDHEADER); - /* Number of this disk */ - if (err == MZ_OK) - err = mz_stream_write_uint16(zip->stream, (uint16_t)zip->disk_number_with_cd); - /* Number of the disk with the start of the central directory */ - if (err == MZ_OK) - err = mz_stream_write_uint16(zip->stream, (uint16_t)zip->disk_number_with_cd); - /* Total number of entries in the central dir on this disk */ - if (err == MZ_OK) - { - if (zip->number_entry >= UINT16_MAX) - err = mz_stream_write_uint16(zip->stream, UINT16_MAX); - else - err = mz_stream_write_uint16(zip->stream, (uint16_t)zip->number_entry); - } - /* Total number of entries in the central dir */ - if (err == MZ_OK) - { - if (zip->number_entry >= UINT16_MAX) - err = mz_stream_write_uint16(zip->stream, UINT16_MAX); - else - err = mz_stream_write_uint16(zip->stream, (uint16_t)zip->number_entry); - } - /* Size of the central directory */ - if (err == MZ_OK) - err = mz_stream_write_uint32(zip->stream, (uint32_t)zip->cd_size); - /* Offset of start of central directory with respect to the starting disk number */ - if (err == MZ_OK) - { - if (zip->cd_offset >= UINT32_MAX) - err = mz_stream_write_uint32(zip->stream, UINT32_MAX); - else - err = mz_stream_write_uint32(zip->stream, (uint32_t)zip->cd_offset); - } - - /* Write global comment */ - if (zip->comment != NULL) - { - comment_size = (int32_t)strlen(zip->comment); - if (comment_size > UINT16_MAX) - comment_size = UINT16_MAX; - } - if (err == MZ_OK) - err = mz_stream_write_uint16(zip->stream, (uint16_t)comment_size); - if (err == MZ_OK) - { - if (mz_stream_write(zip->stream, zip->comment, comment_size) != comment_size) - err = MZ_READ_ERROR; - } - return err; -} - -static int32_t mz_zip_recover_cd(void *handle) -{ - mz_zip *zip = (mz_zip *)handle; - mz_zip_file local_file_info; - void *local_file_info_stream = NULL; - void *cd_mem_stream = NULL; - uint64_t number_entry = 0; - int64_t descriptor_pos = 0; - int64_t next_header_pos = 0; - int64_t disk_offset = 0; - int64_t disk_number = 0; - int64_t compressed_pos = 0; - int64_t compressed_end_pos = 0; - int64_t compressed_size = 0; - int64_t uncompressed_size = 0; - uint8_t descriptor_magic[4] = MZ_ZIP_MAGIC_DATADESCRIPTORU8; - uint8_t local_header_magic[4] = MZ_ZIP_MAGIC_LOCALHEADERU8; - uint8_t central_header_magic[4] = MZ_ZIP_MAGIC_CENTRALHEADERU8; - uint32_t crc32 = 0; - int32_t disk_number_with_cd = 0; - int32_t err = MZ_OK; - uint8_t zip64 = 0; - uint8_t eof = 0; - - - mz_zip_print("Zip - Recover - Start\n"); - - mz_zip_get_cd_mem_stream(handle, &cd_mem_stream); - - /* Determine if we are on a split disk or not */ - mz_stream_set_prop_int64(zip->stream, MZ_STREAM_PROP_DISK_NUMBER, 0); - if (mz_stream_tell(zip->stream) < 0) - { - mz_stream_set_prop_int64(zip->stream, MZ_STREAM_PROP_DISK_NUMBER, -1); - mz_stream_seek(zip->stream, 0, MZ_SEEK_SET); - } - else - disk_number_with_cd = 1; - - if (mz_stream_is_open(cd_mem_stream) != MZ_OK) - err = mz_stream_mem_open(cd_mem_stream, NULL, MZ_OPEN_MODE_CREATE); - - mz_stream_mem_create(&local_file_info_stream); - mz_stream_mem_open(local_file_info_stream, NULL, MZ_OPEN_MODE_CREATE); - - if (err == MZ_OK) - { - err = mz_stream_find(zip->stream, (const void *)local_header_magic, sizeof(local_header_magic), - INT64_MAX, &next_header_pos); - } - - while (err == MZ_OK && !eof) - { - /* Get current offset and disk number for central dir record */ - disk_offset = mz_stream_tell(zip->stream); - mz_stream_get_prop_int64(zip->stream, MZ_STREAM_PROP_DISK_NUMBER, &disk_number); - - /* Read local headers */ - memset(&local_file_info, 0, sizeof(local_file_info)); - err = mz_zip_entry_read_header(zip->stream, 1, &local_file_info, local_file_info_stream); - if (err != MZ_OK) - break; - - local_file_info.disk_offset = disk_offset; - if (disk_number < 0) - disk_number = 0; - local_file_info.disk_number = (uint32_t)disk_number; - - compressed_pos = mz_stream_tell(zip->stream); - - if ((err == MZ_OK) && (local_file_info.compressed_size > 0)) - { - mz_stream_seek(zip->stream, local_file_info.compressed_size, MZ_SEEK_CUR); - } - - while (1) - { - /* Search for the next local header */ - err = mz_stream_find(zip->stream, (const void *)local_header_magic, sizeof(local_header_magic), - INT64_MAX, &next_header_pos); - - if (err == MZ_EXIST_ERROR) - { - mz_stream_seek(zip->stream, compressed_pos, MZ_SEEK_SET); - - /* Search for central dir if no local header found */ - err = mz_stream_find(zip->stream, (const void *)central_header_magic, sizeof(central_header_magic), - INT64_MAX, &next_header_pos); - - if (err == MZ_EXIST_ERROR) - { - /* Get end of stream if no central header found */ - mz_stream_seek(zip->stream, 0, MZ_SEEK_END); - next_header_pos = mz_stream_tell(zip->stream); - } - - eof = 1; - } - - if (local_file_info.flag & MZ_ZIP_FLAG_DATA_DESCRIPTOR || local_file_info.compressed_size == 0) - { - /* Search backwards for the descriptor, seeking too far back will be incorrect if compressed size is small */ - err = mz_stream_find_reverse(zip->stream, (const void *)descriptor_magic, sizeof(descriptor_magic), - MZ_ZIP_SIZE_MAX_DATA_DESCRIPTOR, &descriptor_pos); - if (err == MZ_OK) - { - if (mz_zip_extrafield_contains(local_file_info.extrafield, - local_file_info.extrafield_size, MZ_ZIP_EXTENSION_ZIP64, NULL) == MZ_OK) - zip64 = 1; - - err = mz_zip_entry_read_descriptor(zip->stream, zip64, &crc32, - &compressed_size, &uncompressed_size); - - if (err == MZ_OK) - { - if (local_file_info.crc == 0) - local_file_info.crc = crc32; - if (local_file_info.compressed_size == 0) - local_file_info.compressed_size = compressed_size; - if (local_file_info.uncompressed_size == 0) - local_file_info.uncompressed_size = uncompressed_size; - } - - compressed_end_pos = descriptor_pos; - } - else if (local_file_info.flag & MZ_ZIP_FLAG_DATA_DESCRIPTOR) - { - /* Wrong local file entry found, keep searching */ - next_header_pos += 1; - mz_stream_seek(zip->stream, next_header_pos, MZ_SEEK_SET); - continue; - } - } - else - { - compressed_end_pos = next_header_pos; - } - - break; - } - - compressed_size = compressed_end_pos - compressed_pos; - - if (compressed_size > UINT32_MAX) - { - /* Update sizes if 4GB file is written with no ZIP64 support */ - if (local_file_info.uncompressed_size < UINT32_MAX) - { - local_file_info.compressed_size = compressed_size; - local_file_info.uncompressed_size = 0; - } - } - - mz_zip_print("Zip - Recover - Entry %s (csize %" PRId64 " usize %" PRId64 " flags 0x%" PRIx16 ")\n", - local_file_info.filename, local_file_info.compressed_size, local_file_info.uncompressed_size, - local_file_info.flag); - - /* Rewrite central dir with local headers and offsets */ - err = mz_zip_entry_write_header(cd_mem_stream, 0, &local_file_info); - if (err == MZ_OK) - number_entry += 1; - - err = mz_stream_seek(zip->stream, next_header_pos, MZ_SEEK_SET); - } - - mz_stream_mem_delete(&local_file_info_stream); - - mz_zip_print("Zip - Recover - Complete (cddisk %" PRId32 " entries %" PRId64 ")\n", - disk_number_with_cd, number_entry); - - if (number_entry == 0) - return err; - - /* Set new upper seek boundary for central dir mem stream */ - disk_offset = mz_stream_tell(cd_mem_stream); - mz_stream_mem_set_buffer_limit(cd_mem_stream, (int32_t)disk_offset); - - /* Set new central directory info */ - mz_zip_set_cd_stream(handle, 0, cd_mem_stream); - mz_zip_set_number_entry(handle, number_entry); - mz_zip_set_disk_number_with_cd(handle, disk_number_with_cd); - - return MZ_OK; -} - -void *mz_zip_create(void **handle) -{ - mz_zip *zip = NULL; - - zip = (mz_zip *)MZ_ALLOC(sizeof(mz_zip)); - if (zip != NULL) - { - memset(zip, 0, sizeof(mz_zip)); - zip->data_descriptor = 1; - } - if (handle != NULL) - *handle = zip; - - return zip; -} - -void mz_zip_delete(void **handle) -{ - mz_zip *zip = NULL; - if (handle == NULL) - return; - zip = (mz_zip *)*handle; - if (zip != NULL) - { - MZ_FREE(zip); - } - *handle = NULL; -} - -int32_t mz_zip_open(void *handle, void *stream, int32_t mode) -{ - mz_zip *zip = (mz_zip *)handle; - int32_t err = MZ_OK; - - - if (zip == NULL) - return MZ_PARAM_ERROR; - - mz_zip_print("Zip - Open\n"); - - zip->stream = stream; - - mz_stream_mem_create(&zip->cd_mem_stream); - - if (mode & MZ_OPEN_MODE_WRITE) - { - mz_stream_mem_open(zip->cd_mem_stream, NULL, MZ_OPEN_MODE_CREATE); - zip->cd_stream = zip->cd_mem_stream; - } - else - { - zip->cd_stream = stream; - } - - if ((mode & MZ_OPEN_MODE_READ) || (mode & MZ_OPEN_MODE_APPEND)) - { - if ((mode & MZ_OPEN_MODE_CREATE) == 0) - { - err = mz_zip_read_cd(zip); - if (err != MZ_OK) - { - mz_zip_print("Zip - Error detected reading cd (%" PRId32 ")\n", err); - if (zip->recover && mz_zip_recover_cd(zip) == MZ_OK) - err = MZ_OK; - } - } - - if ((err == MZ_OK) && (mode & MZ_OPEN_MODE_APPEND)) - { - if (zip->cd_size > 0) - { - /* Store central directory in memory */ - err = mz_stream_seek(zip->stream, zip->cd_offset, MZ_SEEK_SET); - if (err == MZ_OK) - err = mz_stream_copy(zip->cd_mem_stream, zip->stream, (int32_t)zip->cd_size); - if (err == MZ_OK) - err = mz_stream_seek(zip->stream, zip->cd_offset, MZ_SEEK_SET); - } - else - { - if (zip->cd_signature == MZ_ZIP_MAGIC_ENDHEADER) - { - /* If tiny zip then overwrite end header */ - err = mz_stream_seek(zip->stream, zip->cd_offset, MZ_SEEK_SET); - } - else - { - /* If no central directory, append new zip to end of file */ - err = mz_stream_seek(zip->stream, 0, MZ_SEEK_END); - } - } - - if (zip->disk_number_with_cd > 0) - { - /* Move to last disk to begin appending */ - mz_stream_set_prop_int64(zip->stream, MZ_STREAM_PROP_DISK_NUMBER, zip->disk_number_with_cd - 1); - } - } - else - { - zip->cd_start_pos = zip->cd_offset; - } - } - - if (err != MZ_OK) - { - mz_zip_close(zip); - return err; - } - - /* Memory streams used to store variable length file info data */ - mz_stream_mem_create(&zip->file_info_stream); - mz_stream_mem_open(zip->file_info_stream, NULL, MZ_OPEN_MODE_CREATE); - - mz_stream_mem_create(&zip->local_file_info_stream); - mz_stream_mem_open(zip->local_file_info_stream, NULL, MZ_OPEN_MODE_CREATE); - - zip->open_mode = mode; - - return err; -} - -int32_t mz_zip_close(void *handle) -{ - mz_zip *zip = (mz_zip *)handle; - int32_t err = MZ_OK; - - if (zip == NULL) - return MZ_PARAM_ERROR; - - mz_zip_print("Zip - Close\n"); - - if (mz_zip_entry_is_open(handle) == MZ_OK) - err = mz_zip_entry_close(handle); - - if ((err == MZ_OK) && (zip->open_mode & MZ_OPEN_MODE_WRITE)) - err = mz_zip_write_cd(handle); - - if (zip->cd_mem_stream != NULL) - { - mz_stream_close(zip->cd_mem_stream); - mz_stream_delete(&zip->cd_mem_stream); - } - - if (zip->file_info_stream != NULL) - { - mz_stream_mem_close(zip->file_info_stream); - mz_stream_mem_delete(&zip->file_info_stream); - } - if (zip->local_file_info_stream != NULL) - { - mz_stream_mem_close(zip->local_file_info_stream); - mz_stream_mem_delete(&zip->local_file_info_stream); - } - - if (zip->comment) - { - MZ_FREE(zip->comment); - zip->comment = NULL; - } - - zip->stream = NULL; - zip->cd_stream = NULL; - - return err; -} - -int32_t mz_zip_get_comment(void *handle, const char **comment) -{ - mz_zip *zip = (mz_zip *)handle; - if (zip == NULL || comment == NULL) - return MZ_PARAM_ERROR; - if (zip->comment == NULL) - return MZ_EXIST_ERROR; - *comment = zip->comment; - return MZ_OK; -} - -int32_t mz_zip_set_comment(void *handle, const char *comment) -{ - mz_zip *zip = (mz_zip *)handle; - int32_t comment_size = 0; - if (zip == NULL || comment == NULL) - return MZ_PARAM_ERROR; - if (zip->comment != NULL) - MZ_FREE(zip->comment); - comment_size = (int32_t)strlen(comment); - if (comment_size > UINT16_MAX) - return MZ_PARAM_ERROR; - zip->comment = (char *)MZ_ALLOC(comment_size+1); - if (zip->comment == NULL) - return MZ_MEM_ERROR; - memset(zip->comment, 0, comment_size+1); - strncpy(zip->comment, comment, comment_size); - return MZ_OK; -} - -int32_t mz_zip_get_version_madeby(void *handle, uint16_t *version_madeby) -{ - mz_zip *zip = (mz_zip *)handle; - if (zip == NULL || version_madeby == NULL) - return MZ_PARAM_ERROR; - *version_madeby = zip->version_madeby; - return MZ_OK; -} - -int32_t mz_zip_set_version_madeby(void *handle, uint16_t version_madeby) -{ - mz_zip *zip = (mz_zip *)handle; - if (zip == NULL) - return MZ_PARAM_ERROR; - zip->version_madeby = version_madeby; - return MZ_OK; -} - -int32_t mz_zip_set_recover(void *handle, uint8_t recover) -{ - mz_zip *zip = (mz_zip *)handle; - if (zip == NULL) - return MZ_PARAM_ERROR; - zip->recover = recover; - return MZ_OK; -} - -int32_t mz_zip_set_data_descriptor(void *handle, uint8_t data_descriptor) -{ - mz_zip *zip = (mz_zip *)handle; - if (zip == NULL) - return MZ_PARAM_ERROR; - zip->data_descriptor = data_descriptor; - return MZ_OK; -} - -int32_t mz_zip_get_stream(void *handle, void **stream) -{ - mz_zip *zip = (mz_zip *)handle; - if (zip == NULL || stream == NULL) - return MZ_PARAM_ERROR; - *stream = zip->stream; - if (*stream == NULL) - return MZ_EXIST_ERROR; - return MZ_OK; -} - -int32_t mz_zip_set_cd_stream(void *handle, int64_t cd_start_pos, void *cd_stream) -{ - mz_zip *zip = (mz_zip *)handle; - if (zip == NULL || cd_stream == NULL) - return MZ_PARAM_ERROR; - zip->cd_offset = 0; - zip->cd_stream = cd_stream; - zip->cd_start_pos = cd_start_pos; - return MZ_OK; -} - -int32_t mz_zip_get_cd_mem_stream(void *handle, void **cd_mem_stream) -{ - mz_zip *zip = (mz_zip *)handle; - if (zip == NULL || cd_mem_stream == NULL) - return MZ_PARAM_ERROR; - *cd_mem_stream = zip->cd_mem_stream; - if (*cd_mem_stream == NULL) - return MZ_EXIST_ERROR; - return MZ_OK; -} - -int32_t mz_zip_set_number_entry(void *handle, uint64_t number_entry) -{ - mz_zip *zip = (mz_zip *)handle; - if (zip == NULL) - return MZ_PARAM_ERROR; - zip->number_entry = number_entry; - return MZ_OK; -} - -int32_t mz_zip_get_number_entry(void *handle, uint64_t *number_entry) -{ - mz_zip *zip = (mz_zip *)handle; - if (zip == NULL || number_entry == NULL) - return MZ_PARAM_ERROR; - *number_entry = zip->number_entry; - return MZ_OK; -} - -int32_t mz_zip_set_disk_number_with_cd(void *handle, uint32_t disk_number_with_cd) -{ - mz_zip *zip = (mz_zip *)handle; - if (zip == NULL) - return MZ_PARAM_ERROR; - zip->disk_number_with_cd = disk_number_with_cd; - return MZ_OK; -} - -int32_t mz_zip_get_disk_number_with_cd(void *handle, uint32_t *disk_number_with_cd) -{ - mz_zip *zip = (mz_zip *)handle; - if (zip == NULL || disk_number_with_cd == NULL) - return MZ_PARAM_ERROR; - *disk_number_with_cd = zip->disk_number_with_cd; - return MZ_OK; -} - -static int32_t mz_zip_entry_close_int(void *handle) -{ - mz_zip *zip = (mz_zip *)handle; - - if (zip->crypt_stream != NULL) - mz_stream_delete(&zip->crypt_stream); - zip->crypt_stream = NULL; - if (zip->compress_stream != NULL) - mz_stream_delete(&zip->compress_stream); - zip->compress_stream = NULL; - - zip->entry_opened = 0; - - return MZ_OK; -} - -static int32_t mz_zip_entry_open_int(void *handle, uint8_t raw, int16_t compress_level, const char *password) -{ - mz_zip *zip = (mz_zip *)handle; - int64_t max_total_in = 0; - int64_t header_size = 0; - int64_t footer_size = 0; - int32_t err = MZ_OK; - uint8_t use_crypt = 0; - - if (zip == NULL) - return MZ_PARAM_ERROR; - - switch (zip->file_info.compression_method) - { - case MZ_COMPRESS_METHOD_STORE: - case MZ_COMPRESS_METHOD_DEFLATE: -#ifdef HAVE_BZIP2 - case MZ_COMPRESS_METHOD_BZIP2: -#endif -#ifdef HAVE_LZMA - case MZ_COMPRESS_METHOD_LZMA: -#endif - err = MZ_OK; - break; - default: - return MZ_SUPPORT_ERROR; - } - -#ifndef HAVE_WZAES - if (zip->file_info.aes_version) - return MZ_SUPPORT_ERROR; -#endif - - zip->entry_raw = raw; - - if ((zip->file_info.flag & MZ_ZIP_FLAG_ENCRYPTED) && (password != NULL)) - { - if (zip->open_mode & MZ_OPEN_MODE_WRITE) - { - /* Encrypt only when we are not trying to write raw and password is supplied. */ - if (!zip->entry_raw) - use_crypt = 1; - } - else if (zip->open_mode & MZ_OPEN_MODE_READ) - { - /* Decrypt only when password is supplied. Don't error when password */ - /* is not supplied as we may want to read the raw encrypted data. */ - use_crypt = 1; - } - } - - if ((err == MZ_OK) && (use_crypt)) - { -#ifdef HAVE_WZAES - if (zip->file_info.aes_version) - { - mz_stream_wzaes_create(&zip->crypt_stream); - mz_stream_wzaes_set_password(zip->crypt_stream, password); - mz_stream_wzaes_set_encryption_mode(zip->crypt_stream, zip->file_info.aes_encryption_mode); - } - else -#endif - { -#ifdef HAVE_PKCRYPT - uint8_t verify1 = 0; - uint8_t verify2 = 0; - - /* Info-ZIP modification to ZipCrypto format: */ - /* If bit 3 of the general purpose bit flag is set, it uses high byte of 16-bit File Time. */ - - if (zip->file_info.flag & MZ_ZIP_FLAG_DATA_DESCRIPTOR) - { - uint32_t dos_date = 0; - - dos_date = mz_zip_time_t_to_dos_date(zip->file_info.modified_date); - - verify1 = (uint8_t)((dos_date >> 16) & 0xff); - verify2 = (uint8_t)((dos_date >> 8) & 0xff); - } - else - { - verify1 = (uint8_t)((zip->file_info.crc >> 16) & 0xff); - verify2 = (uint8_t)((zip->file_info.crc >> 24) & 0xff); - } - - mz_stream_pkcrypt_create(&zip->crypt_stream); - mz_stream_pkcrypt_set_password(zip->crypt_stream, password); - mz_stream_pkcrypt_set_verify(zip->crypt_stream, verify1, verify2); -#endif - } - } - - if (err == MZ_OK) - { - if (zip->crypt_stream == NULL) - mz_stream_raw_create(&zip->crypt_stream); - - mz_stream_set_base(zip->crypt_stream, zip->stream); - - err = mz_stream_open(zip->crypt_stream, NULL, zip->open_mode); - } - - if (err == MZ_OK) - { - if (zip->entry_raw || zip->file_info.compression_method == MZ_COMPRESS_METHOD_STORE) - mz_stream_raw_create(&zip->compress_stream); -#if defined(HAVE_ZLIB) || defined(HAVE_LIBCOMP) - else if (zip->file_info.compression_method == MZ_COMPRESS_METHOD_DEFLATE) - mz_stream_zlib_create(&zip->compress_stream); -#endif -#ifdef HAVE_BZIP2 - else if (zip->file_info.compression_method == MZ_COMPRESS_METHOD_BZIP2) - mz_stream_bzip_create(&zip->compress_stream); -#endif -#ifdef HAVE_LZMA - else if (zip->file_info.compression_method == MZ_COMPRESS_METHOD_LZMA) - mz_stream_lzma_create(&zip->compress_stream); -#endif - else - err = MZ_PARAM_ERROR; - } - - if (err == MZ_OK) - { - if (zip->open_mode & MZ_OPEN_MODE_WRITE) - { - mz_stream_set_prop_int64(zip->compress_stream, MZ_STREAM_PROP_COMPRESS_LEVEL, compress_level); - } - else - { -#ifndef HAVE_LIBCOMP - if (zip->entry_raw || zip->file_info.compression_method == MZ_COMPRESS_METHOD_STORE || zip->file_info.flag & MZ_ZIP_FLAG_ENCRYPTED) -#endif - { - max_total_in = zip->file_info.compressed_size; - mz_stream_set_prop_int64(zip->crypt_stream, MZ_STREAM_PROP_TOTAL_IN_MAX, max_total_in); - - if (mz_stream_get_prop_int64(zip->crypt_stream, MZ_STREAM_PROP_HEADER_SIZE, &header_size) == MZ_OK) - max_total_in -= header_size; - if (mz_stream_get_prop_int64(zip->crypt_stream, MZ_STREAM_PROP_FOOTER_SIZE, &footer_size) == MZ_OK) - max_total_in -= footer_size; - - mz_stream_set_prop_int64(zip->compress_stream, MZ_STREAM_PROP_TOTAL_IN_MAX, max_total_in); - } - if ((zip->file_info.compression_method == MZ_COMPRESS_METHOD_LZMA) && (zip->file_info.flag & MZ_ZIP_FLAG_LZMA_EOS_MARKER) == 0) - { - mz_stream_set_prop_int64(zip->compress_stream, MZ_STREAM_PROP_TOTAL_IN_MAX, zip->file_info.compressed_size); - mz_stream_set_prop_int64(zip->compress_stream, MZ_STREAM_PROP_TOTAL_OUT_MAX, zip->file_info.uncompressed_size); - } - } - - mz_stream_set_base(zip->compress_stream, zip->crypt_stream); - - err = mz_stream_open(zip->compress_stream, NULL, zip->open_mode); - } - - if (err == MZ_OK) - { - zip->entry_opened = 1; - zip->entry_crc32 = 0; - } - else - { - mz_zip_entry_close_int(handle); - } - - return err; -} - -int32_t mz_zip_entry_is_open(void *handle) -{ - mz_zip *zip = (mz_zip *)handle; - if (zip == NULL) - return MZ_PARAM_ERROR; - if (zip->entry_opened == 0) - return MZ_EXIST_ERROR; - return MZ_OK; -} - -static int32_t mz_zip_seek_to_local_header(void *handle) -{ - mz_zip *zip = (mz_zip *)handle; - int64_t disk_size = 0; - uint32_t disk_number = zip->file_info.disk_number; - - if (disk_number == zip->disk_number_with_cd) - { - mz_stream_get_prop_int64(zip->stream, MZ_STREAM_PROP_DISK_SIZE, &disk_size); - if ((disk_size == 0) || ((zip->open_mode & MZ_OPEN_MODE_WRITE) == 0)) - disk_number = -1; - } - - mz_stream_set_prop_int64(zip->stream, MZ_STREAM_PROP_DISK_NUMBER, disk_number); - - mz_zip_print("Zip - Entry - Seek local (disk %" PRId32 " offset %" PRId64 ")\n", - disk_number, zip->file_info.disk_offset); - - /* Guard against seek overflows */ - if ((zip->disk_offset_shift > 0) && - (zip->file_info.disk_offset > (INT64_MAX - zip->disk_offset_shift))) - return MZ_FORMAT_ERROR; - - return mz_stream_seek(zip->stream, zip->file_info.disk_offset + zip->disk_offset_shift, MZ_SEEK_SET); -} - -int32_t mz_zip_entry_read_open(void *handle, uint8_t raw, const char *password) -{ - mz_zip *zip = (mz_zip *)handle; - int32_t err = MZ_OK; - int32_t err_shift = MZ_OK; - -#if defined(MZ_ZIP_NO_ENCRYPTION) - if (password != NULL) - return MZ_SUPPORT_ERROR; -#endif - if (zip == NULL) - return MZ_PARAM_ERROR; - if ((zip->open_mode & MZ_OPEN_MODE_READ) == 0) - return MZ_PARAM_ERROR; - if (zip->entry_scanned == 0) - return MZ_PARAM_ERROR; - - mz_zip_print("Zip - Entry - Read open (raw %" PRId32 ")\n", raw); - - err = mz_zip_seek_to_local_header(handle); - if (err == MZ_OK) - err = mz_zip_entry_read_header(zip->stream, 1, &zip->local_file_info, zip->local_file_info_stream); - - if (err == MZ_FORMAT_ERROR && zip->disk_offset_shift > 0) - { - /* Perhaps we didn't compensated correctly for incorrect cd offset */ - err_shift = mz_stream_seek(zip->stream, zip->file_info.disk_offset, MZ_SEEK_SET); - if (err_shift == MZ_OK) - err_shift = mz_zip_entry_read_header(zip->stream, 1, &zip->local_file_info, zip->local_file_info_stream); - if (err_shift == MZ_OK) - { - zip->disk_offset_shift = 0; - err = err_shift; - } - } - -#ifdef MZ_ZIP_NO_DECOMPRESSION - if (!raw && zip->file_info.compression_method != MZ_COMPRESS_METHOD_STORE) - err = MZ_SUPPORT_ERROR; -#endif - if (err == MZ_OK) - err = mz_zip_entry_open_int(handle, raw, 0, password); - - return err; -} - -int32_t mz_zip_entry_write_open(void *handle, const mz_zip_file *file_info, int16_t compress_level, uint8_t raw, const char *password) -{ - mz_zip *zip = (mz_zip *)handle; - int64_t filename_pos = -1; - int64_t extrafield_pos = 0; - int64_t comment_pos = 0; - int64_t linkname_pos = 0; - int64_t disk_number = 0; - uint8_t is_dir = 0; - int32_t err = MZ_OK; - -#if defined(MZ_ZIP_NO_ENCRYPTION) - if (password != NULL) - return MZ_SUPPORT_ERROR; -#endif - if (zip == NULL || file_info == NULL || file_info->filename == NULL) - return MZ_PARAM_ERROR; - - if (mz_zip_entry_is_open(handle) == MZ_OK) - { - err = mz_zip_entry_close(handle); - if (err != MZ_OK) - return err; - } - - memcpy(&zip->file_info, file_info, sizeof(mz_zip_file)); - - mz_zip_print("Zip - Entry - Write open - %s (level %" PRId16 " raw %" PRId8 ")\n", - zip->file_info.filename, compress_level, raw); - - mz_stream_seek(zip->file_info_stream, 0, MZ_SEEK_SET); - mz_stream_write(zip->file_info_stream, file_info, sizeof(mz_zip_file)); - - /* Copy filename, extrafield, and comment internally */ - filename_pos = mz_stream_tell(zip->file_info_stream); - if (file_info->filename != NULL) - mz_stream_write(zip->file_info_stream, file_info->filename, (int32_t)strlen(file_info->filename)); - mz_stream_write_uint8(zip->file_info_stream, 0); - - extrafield_pos = mz_stream_tell(zip->file_info_stream); - if (file_info->extrafield != NULL) - mz_stream_write(zip->file_info_stream, file_info->extrafield, file_info->extrafield_size); - mz_stream_write_uint8(zip->file_info_stream, 0); - - comment_pos = mz_stream_tell(zip->file_info_stream); - if (file_info->comment != NULL) - mz_stream_write(zip->file_info_stream, file_info->comment, file_info->comment_size); - mz_stream_write_uint8(zip->file_info_stream, 0); - - linkname_pos = mz_stream_tell(zip->file_info_stream); - if (file_info->linkname != NULL) - mz_stream_write(zip->file_info_stream, file_info->linkname, (int32_t)strlen(file_info->linkname)); - mz_stream_write_uint8(zip->file_info_stream, 0); - - mz_stream_mem_get_buffer_at(zip->file_info_stream, filename_pos, (const void **)&zip->file_info.filename); - mz_stream_mem_get_buffer_at(zip->file_info_stream, extrafield_pos, (const void **)&zip->file_info.extrafield); - mz_stream_mem_get_buffer_at(zip->file_info_stream, comment_pos, (const void **)&zip->file_info.comment); - mz_stream_mem_get_buffer_at(zip->file_info_stream, linkname_pos, (const void **)&zip->file_info.linkname); - - if (zip->file_info.compression_method == MZ_COMPRESS_METHOD_DEFLATE) - { - if ((compress_level == 8) || (compress_level == 9)) - zip->file_info.flag |= MZ_ZIP_FLAG_DEFLATE_MAX; - if (compress_level == 2) - zip->file_info.flag |= MZ_ZIP_FLAG_DEFLATE_FAST; - if (compress_level == 1) - zip->file_info.flag |= MZ_ZIP_FLAG_DEFLATE_SUPER_FAST; - } -#ifdef HAVE_LZMA - else if (zip->file_info.compression_method == MZ_COMPRESS_METHOD_LZMA) - zip->file_info.flag |= MZ_ZIP_FLAG_LZMA_EOS_MARKER; -#endif - - if (mz_zip_attrib_is_dir(zip->file_info.external_fa, zip->file_info.version_madeby) == MZ_OK) - is_dir = 1; - - if (!is_dir) - { - if (zip->data_descriptor) - zip->file_info.flag |= MZ_ZIP_FLAG_DATA_DESCRIPTOR; - if (password != NULL) - zip->file_info.flag |= MZ_ZIP_FLAG_ENCRYPTED; - } - - mz_stream_get_prop_int64(zip->stream, MZ_STREAM_PROP_DISK_NUMBER, &disk_number); - zip->file_info.disk_number = (uint32_t)disk_number; - - zip->file_info.disk_offset = mz_stream_tell(zip->stream); - zip->file_info.crc = 0; - zip->file_info.compressed_size = 0; - -#ifdef HAVE_WZAES - if (zip->file_info.aes_version && zip->file_info.aes_encryption_mode == 0) - zip->file_info.aes_encryption_mode = MZ_AES_ENCRYPTION_MODE_256; -#endif - - if ((compress_level == 0) || (is_dir)) - zip->file_info.compression_method = MZ_COMPRESS_METHOD_STORE; - -#ifdef MZ_ZIP_NO_COMPRESSION - if (zip->file_info.compression_method != MZ_COMPRESS_METHOD_STORE) - err = MZ_SUPPORT_ERROR; -#endif - if (err == MZ_OK) - err = mz_zip_entry_write_header(zip->stream, 1, &zip->file_info); - if (err == MZ_OK) - err = mz_zip_entry_open_int(handle, raw, compress_level, password); - - return err; -} - -int32_t mz_zip_entry_read(void *handle, void *buf, int32_t len) -{ - mz_zip *zip = (mz_zip *)handle; - int32_t read = 0; - - if (zip == NULL || mz_zip_entry_is_open(handle) != MZ_OK) - return MZ_PARAM_ERROR; - if (UINT_MAX == UINT16_MAX && len > UINT16_MAX) /* zlib limitation */ - return MZ_PARAM_ERROR; - if (len == 0) - return MZ_PARAM_ERROR; - - if (zip->file_info.compressed_size == 0) - return 0; - - /* Read entire entry even if uncompressed_size = 0, otherwise */ - /* aes encryption validation will fail if compressed_size > 0 */ - read = mz_stream_read(zip->compress_stream, buf, len); - if (read > 0) - zip->entry_crc32 = mz_crypt_crc32_update(zip->entry_crc32, buf, read); - - mz_zip_print("Zip - Entry - Read - %" PRId32 " (max %" PRId32 ")\n", read, len); - - return read; -} - -int32_t mz_zip_entry_write(void *handle, const void *buf, int32_t len) -{ - mz_zip *zip = (mz_zip *)handle; - int32_t written = 0; - - if (zip == NULL || mz_zip_entry_is_open(handle) != MZ_OK) - return MZ_PARAM_ERROR; - written = mz_stream_write(zip->compress_stream, buf, len); - if (written > 0) - zip->entry_crc32 = mz_crypt_crc32_update(zip->entry_crc32, buf, written); - - mz_zip_print("Zip - Entry - Write - %" PRId32 " (max %" PRId32 ")\n", written, len); - - return written; -} - -int32_t mz_zip_entry_read_close(void *handle, uint32_t *crc32, int64_t *compressed_size, - int64_t *uncompressed_size) -{ - mz_zip *zip = (mz_zip *)handle; - int64_t total_in = 0; - int32_t err = MZ_OK; - uint8_t zip64 = 0; - - if (zip == NULL || mz_zip_entry_is_open(handle) != MZ_OK) - return MZ_PARAM_ERROR; - - mz_stream_close(zip->compress_stream); - - mz_zip_print("Zip - Entry - Read Close\n"); - - if (crc32 != NULL) - *crc32 = zip->file_info.crc; - if (compressed_size != NULL) - *compressed_size = zip->file_info.compressed_size; - if (uncompressed_size != NULL) - *uncompressed_size = zip->file_info.uncompressed_size; - - mz_stream_get_prop_int64(zip->compress_stream, MZ_STREAM_PROP_TOTAL_IN, &total_in); - - if ((zip->file_info.flag & MZ_ZIP_FLAG_DATA_DESCRIPTOR) && - ((zip->file_info.flag & MZ_ZIP_FLAG_MASK_LOCAL_INFO) == 0) && - (crc32 != NULL || compressed_size != NULL || uncompressed_size != NULL)) - { - /* Check to see if data descriptor is zip64 bit format or not */ - if (mz_zip_extrafield_contains(zip->local_file_info.extrafield, - zip->local_file_info.extrafield_size, MZ_ZIP_EXTENSION_ZIP64, NULL) == MZ_OK) - zip64 = 1; - - err = mz_zip_seek_to_local_header(handle); - - /* Seek to end of compressed stream since we might have over-read during compression */ - if (err == MZ_OK) - err = mz_stream_seek(zip->stream, MZ_ZIP_SIZE_LD_ITEM + - (int64_t)zip->local_file_info.filename_size + - (int64_t)zip->local_file_info.extrafield_size + - total_in, MZ_SEEK_CUR); - - /* Read data descriptor */ - if (err == MZ_OK) - err = mz_zip_entry_read_descriptor(zip->stream, zip64, - crc32, compressed_size, uncompressed_size); - } - - /* If entire entry was not read verification will fail */ - if ((err == MZ_OK) && (total_in > 0) && (!zip->entry_raw)) - { -#ifdef HAVE_WZAES - /* AES zip version AE-1 will expect a valid crc as well */ - if (zip->file_info.aes_version <= 0x0001) -#endif - { - if (zip->entry_crc32 != zip->file_info.crc) - { - mz_zip_print("Zip - Entry - Crc failed (actual 0x%08" PRIx32 " expected 0x%08" PRIx32 ")\n", - zip->entry_crc32, zip->file_info.crc); - - err = MZ_CRC_ERROR; - } - } - } - - mz_zip_entry_close_int(handle); - - return err; -} - -int32_t mz_zip_entry_write_close(void *handle, uint32_t crc32, int64_t compressed_size, - int64_t uncompressed_size) -{ - mz_zip *zip = (mz_zip *)handle; - int64_t end_disk_number = 0; - int32_t err = MZ_OK; - uint8_t zip64 = 0; - - if (zip == NULL || mz_zip_entry_is_open(handle) != MZ_OK) - return MZ_PARAM_ERROR; - - mz_stream_close(zip->compress_stream); - - if (!zip->entry_raw) - crc32 = zip->entry_crc32; - - mz_zip_print("Zip - Entry - Write Close (crc 0x%08" PRIx32 " cs %" PRId64 " ucs %" PRId64 ")\n", - crc32, compressed_size, uncompressed_size); - - /* If sizes are not set, then read them from the compression stream */ - if (compressed_size < 0) - mz_stream_get_prop_int64(zip->compress_stream, MZ_STREAM_PROP_TOTAL_OUT, &compressed_size); - if (uncompressed_size < 0) - mz_stream_get_prop_int64(zip->compress_stream, MZ_STREAM_PROP_TOTAL_IN, &uncompressed_size); - - if (zip->file_info.flag & MZ_ZIP_FLAG_ENCRYPTED) - { - mz_stream_set_base(zip->crypt_stream, zip->stream); - err = mz_stream_close(zip->crypt_stream); - - mz_stream_get_prop_int64(zip->crypt_stream, MZ_STREAM_PROP_TOTAL_OUT, &compressed_size); - } - - if ((err == MZ_OK) && (zip->file_info.flag & MZ_ZIP_FLAG_DATA_DESCRIPTOR)) - { - /* Determine if we need to write data descriptor in zip64 format, - if local extrafield was saved with zip64 extrafield */ - if (zip->file_info.zip64 == MZ_ZIP64_AUTO) - { - if (zip->file_info.uncompressed_size >= UINT32_MAX) - zip64 = 1; - if (zip->file_info.compressed_size >= UINT32_MAX) - zip64 = 1; - if (zip->file_info.disk_offset >= UINT32_MAX) - zip64 = 1; - else if (zip->file_info.uncompressed_size == 0) - zip64 = 1; - } - else if (zip->file_info.zip64 == MZ_ZIP64_FORCE) - { - zip64 = 1; - } - - if (zip->file_info.flag & MZ_ZIP_FLAG_MASK_LOCAL_INFO) - err = mz_zip_entry_write_descriptor(zip->stream, - zip64, 0, compressed_size, 0); - else - err = mz_zip_entry_write_descriptor(zip->stream, - zip64, crc32, compressed_size, uncompressed_size); - } - - /* Write file info to central directory */ - - mz_zip_print("Zip - Entry - Write cd (ucs %" PRId64 " cs %" PRId64 " crc 0x%08" PRIx32 ")\n", - uncompressed_size, compressed_size, crc32); - - zip->file_info.crc = crc32; - zip->file_info.compressed_size = compressed_size; - zip->file_info.uncompressed_size = uncompressed_size; - - if (err == MZ_OK) - err = mz_zip_entry_write_header(zip->cd_mem_stream, 0, &zip->file_info); - - /* Update local header with crc32 and sizes */ - if ((err == MZ_OK) && ((zip->file_info.flag & MZ_ZIP_FLAG_DATA_DESCRIPTOR) == 0) && - ((zip->file_info.flag & MZ_ZIP_FLAG_MASK_LOCAL_INFO) == 0)) - { - /* Save the disk number and position we are to seek back after updating local header */ - int64_t end_pos = mz_stream_tell(zip->stream); - mz_stream_get_prop_int64(zip->stream, MZ_STREAM_PROP_DISK_NUMBER, &end_disk_number); - - err = mz_zip_seek_to_local_header(handle); - - if (err == MZ_OK) - { - /* Seek to crc32 and sizes offset in local header */ - err = mz_stream_seek(zip->stream, MZ_ZIP_OFFSET_CRC_SIZES, MZ_SEEK_CUR); - } - - if (err == MZ_OK) - err = mz_zip_entry_write_crc_sizes(zip->stream, 0, &zip->file_info); - - mz_stream_set_prop_int64(zip->stream, MZ_STREAM_PROP_DISK_NUMBER, end_disk_number); - mz_stream_seek(zip->stream, end_pos, MZ_SEEK_SET); - } - - zip->number_entry += 1; - - mz_zip_entry_close_int(handle); - - return err; -} - -int32_t mz_zip_entry_close(void *handle) -{ - return mz_zip_entry_close_raw(handle, UINT64_MAX, 0); -} - -int32_t mz_zip_entry_close_raw(void *handle, int64_t uncompressed_size, uint32_t crc32) -{ - mz_zip *zip = (mz_zip *)handle; - int32_t err = MZ_OK; - - if (zip == NULL || mz_zip_entry_is_open(handle) != MZ_OK) - return MZ_PARAM_ERROR; - - if (zip->open_mode & MZ_OPEN_MODE_WRITE) - err = mz_zip_entry_write_close(handle, crc32, UINT64_MAX, uncompressed_size); - else - err = mz_zip_entry_read_close(handle, NULL, NULL, NULL); - - return err; -} - -int32_t mz_zip_entry_is_dir(void *handle) -{ - mz_zip *zip = (mz_zip *)handle; - int32_t filename_length = 0; - - if (zip == NULL) - return MZ_PARAM_ERROR; - if (zip->entry_scanned == 0) - return MZ_PARAM_ERROR; - if (mz_zip_attrib_is_dir(zip->file_info.external_fa, zip->file_info.version_madeby) == MZ_OK) - return MZ_OK; - - filename_length = (int32_t)strlen(zip->file_info.filename); - if (filename_length > 0) - { - if ((zip->file_info.filename[filename_length - 1] == '/') || - (zip->file_info.filename[filename_length - 1] == '\\')) - return MZ_OK; - } - return MZ_EXIST_ERROR; -} - -int32_t mz_zip_entry_is_symlink(void *handle) -{ - mz_zip *zip = (mz_zip *)handle; - - if (zip == NULL) - return MZ_PARAM_ERROR; - if (zip->entry_scanned == 0) - return MZ_PARAM_ERROR; - if (mz_zip_attrib_is_symlink(zip->file_info.external_fa, zip->file_info.version_madeby) != MZ_OK) - return MZ_EXIST_ERROR; - if (zip->file_info.linkname == NULL || *zip->file_info.linkname == 0) - return MZ_EXIST_ERROR; - - return MZ_OK; -} - -int32_t mz_zip_entry_get_info(void *handle, mz_zip_file **file_info) -{ - mz_zip *zip = (mz_zip *)handle; - - if (zip == NULL) - return MZ_PARAM_ERROR; - - if ((zip->open_mode & MZ_OPEN_MODE_WRITE) == 0) - { - if (!zip->entry_scanned) - return MZ_PARAM_ERROR; - } - - *file_info = &zip->file_info; - return MZ_OK; -} - -int32_t mz_zip_entry_get_local_info(void *handle, mz_zip_file **local_file_info) -{ - mz_zip *zip = (mz_zip *)handle; - if (zip == NULL || mz_zip_entry_is_open(handle) != MZ_OK) - return MZ_PARAM_ERROR; - *local_file_info = &zip->local_file_info; - return MZ_OK; -} - -int32_t mz_zip_entry_set_extrafield(void *handle, const uint8_t *extrafield, uint16_t extrafield_size) -{ - mz_zip *zip = (mz_zip *)handle; - - if (zip == NULL || mz_zip_entry_is_open(handle) != MZ_OK) - return MZ_PARAM_ERROR; - - zip->file_info.extrafield = extrafield; - zip->file_info.extrafield_size = extrafield_size; - return MZ_OK; -} - -static int32_t mz_zip_goto_next_entry_int(void *handle) -{ - mz_zip *zip = (mz_zip *)handle; - int32_t err = MZ_OK; - - if (zip == NULL) - return MZ_PARAM_ERROR; - - zip->entry_scanned = 0; - - mz_stream_set_prop_int64(zip->cd_stream, MZ_STREAM_PROP_DISK_NUMBER, -1); - - err = mz_stream_seek(zip->cd_stream, zip->cd_current_pos, MZ_SEEK_SET); - if (err == MZ_OK) - err = mz_zip_entry_read_header(zip->cd_stream, 0, &zip->file_info, zip->file_info_stream); - if (err == MZ_OK) - zip->entry_scanned = 1; - return err; -} - -int64_t mz_zip_get_entry(void *handle) -{ - mz_zip *zip = (mz_zip *)handle; - - if (zip == NULL) - return MZ_PARAM_ERROR; - - return zip->cd_current_pos; -} - -int32_t mz_zip_goto_entry(void *handle, int64_t cd_pos) -{ - mz_zip *zip = (mz_zip *)handle; - - if (zip == NULL) - return MZ_PARAM_ERROR; - - if (cd_pos < zip->cd_start_pos || cd_pos > zip->cd_start_pos + zip->cd_size) - return MZ_PARAM_ERROR; - - zip->cd_current_pos = cd_pos; - - return mz_zip_goto_next_entry_int(handle); -} - -int32_t mz_zip_goto_first_entry(void *handle) -{ - mz_zip *zip = (mz_zip *)handle; - - if (zip == NULL) - return MZ_PARAM_ERROR; - - zip->cd_current_pos = zip->cd_start_pos; - - return mz_zip_goto_next_entry_int(handle); -} - -int32_t mz_zip_goto_next_entry(void *handle) -{ - mz_zip *zip = (mz_zip *)handle; - - if (zip == NULL) - return MZ_PARAM_ERROR; - - zip->cd_current_pos += (int64_t)MZ_ZIP_SIZE_CD_ITEM + zip->file_info.filename_size + - zip->file_info.extrafield_size + zip->file_info.comment_size; - - return mz_zip_goto_next_entry_int(handle); -} - -int32_t mz_zip_locate_entry(void *handle, const char *filename, uint8_t ignore_case) -{ - mz_zip *zip = (mz_zip *)handle; - int32_t err = MZ_OK; - int32_t result = 0; - - if (zip == NULL || filename == NULL) - return MZ_PARAM_ERROR; - - /* If we are already on the current entry, no need to search */ - if ((zip->entry_scanned) && (zip->file_info.filename != NULL)) - { - result = mz_zip_path_compare(zip->file_info.filename, filename, ignore_case); - if (result == 0) - return MZ_OK; - } - - /* Search all entries starting at the first */ - err = mz_zip_goto_first_entry(handle); - while (err == MZ_OK) - { - result = mz_zip_path_compare(zip->file_info.filename, filename, ignore_case); - if (result == 0) - return MZ_OK; - - err = mz_zip_goto_next_entry(handle); - } - - return err; -} - -int32_t mz_zip_locate_first_entry(void *handle, void *userdata, mz_zip_locate_entry_cb cb) -{ - mz_zip *zip = (mz_zip *)handle; - int32_t err = MZ_OK; - int32_t result = 0; - - /* Search first entry looking for match */ - err = mz_zip_goto_first_entry(handle); - if (err != MZ_OK) - return err; - - result = cb(handle, userdata, &zip->file_info); - if (result == 0) - return MZ_OK; - - return mz_zip_locate_next_entry(handle, userdata, cb); -} - -int32_t mz_zip_locate_next_entry(void *handle, void *userdata, mz_zip_locate_entry_cb cb) -{ - mz_zip *zip = (mz_zip *)handle; - int32_t err = MZ_OK; - int32_t result = 0; - - /* Search next entries looking for match */ - err = mz_zip_goto_next_entry(handle); - while (err == MZ_OK) - { - result = cb(handle, userdata, &zip->file_info); - if (result == 0) - return MZ_OK; - - err = mz_zip_goto_next_entry(handle); - } - - return err; -} - -/***************************************************************************/ - -int32_t mz_zip_attrib_is_dir(uint32_t attrib, int32_t version_madeby) -{ - uint32_t posix_attrib = 0; - uint8_t system = MZ_HOST_SYSTEM(version_madeby); - int32_t err = MZ_OK; - - err = mz_zip_attrib_convert(system, attrib, MZ_HOST_SYSTEM_UNIX, &posix_attrib); - if (err == MZ_OK) - { - if ((posix_attrib & 0170000) == 0040000) /* S_ISDIR */ - return MZ_OK; - } - - return MZ_EXIST_ERROR; -} - -int32_t mz_zip_attrib_is_symlink(uint32_t attrib, int32_t version_madeby) -{ - uint32_t posix_attrib = 0; - uint8_t system = MZ_HOST_SYSTEM(version_madeby); - int32_t err = MZ_OK; - - err = mz_zip_attrib_convert(system, attrib, MZ_HOST_SYSTEM_UNIX, &posix_attrib); - if (err == MZ_OK) - { - if ((posix_attrib & 0170000) == 0120000) /* S_ISLNK */ - return MZ_OK; - } - - return MZ_EXIST_ERROR; -} - -int32_t mz_zip_attrib_convert(uint8_t src_sys, uint32_t src_attrib, uint8_t target_sys, uint32_t *target_attrib) -{ - if (target_attrib == NULL) - return MZ_PARAM_ERROR; - - *target_attrib = 0; - - if ((src_sys == MZ_HOST_SYSTEM_MSDOS) || (src_sys == MZ_HOST_SYSTEM_WINDOWS_NTFS)) - { - if ((target_sys == MZ_HOST_SYSTEM_MSDOS) || (target_sys == MZ_HOST_SYSTEM_WINDOWS_NTFS)) - { - *target_attrib = src_attrib; - return MZ_OK; - } - if ((target_sys == MZ_HOST_SYSTEM_UNIX) || (target_sys == MZ_HOST_SYSTEM_OSX_DARWIN) || (target_sys == MZ_HOST_SYSTEM_RISCOS)) - return mz_zip_attrib_win32_to_posix(src_attrib, target_attrib); - } - else if ((src_sys == MZ_HOST_SYSTEM_UNIX) || (src_sys == MZ_HOST_SYSTEM_OSX_DARWIN) || (src_sys == MZ_HOST_SYSTEM_RISCOS)) - { - if ((target_sys == MZ_HOST_SYSTEM_UNIX) || (target_sys == MZ_HOST_SYSTEM_OSX_DARWIN) || (target_sys == MZ_HOST_SYSTEM_RISCOS)) - { - /* If high bytes are set, it contains unix specific attributes */ - if ((src_attrib >> 16) != 0) - src_attrib >>= 16; - - *target_attrib = src_attrib; - return MZ_OK; - } - if ((target_sys == MZ_HOST_SYSTEM_MSDOS) || (target_sys == MZ_HOST_SYSTEM_WINDOWS_NTFS)) - return mz_zip_attrib_posix_to_win32(src_attrib, target_attrib); - } - - return MZ_SUPPORT_ERROR; -} - -int32_t mz_zip_attrib_posix_to_win32(uint32_t posix_attrib, uint32_t *win32_attrib) -{ - if (win32_attrib == NULL) - return MZ_PARAM_ERROR; - - *win32_attrib = 0; - - /* S_IWUSR | S_IWGRP | S_IWOTH | S_IXUSR | S_IXGRP | S_IXOTH */ - if ((posix_attrib & 0000333) == 0 && (posix_attrib & 0000444) != 0) - *win32_attrib |= 0x01; /* FILE_ATTRIBUTE_READONLY */ - /* S_IFLNK */ - if ((posix_attrib & 0170000) == 0120000) - *win32_attrib |= 0x400; /* FILE_ATTRIBUTE_REPARSE_POINT */ - /* S_IFDIR */ - else if ((posix_attrib & 0170000) == 0040000) - *win32_attrib |= 0x10; /* FILE_ATTRIBUTE_DIRECTORY */ - /* S_IFREG */ - else - *win32_attrib |= 0x80; /* FILE_ATTRIBUTE_NORMAL */ - - return MZ_OK; -} - -int32_t mz_zip_attrib_win32_to_posix(uint32_t win32_attrib, uint32_t *posix_attrib) -{ - if (posix_attrib == NULL) - return MZ_PARAM_ERROR; - - *posix_attrib = 0000444; /* S_IRUSR | S_IRGRP | S_IROTH */ - /* FILE_ATTRIBUTE_READONLY */ - if ((win32_attrib & 0x01) == 0) - *posix_attrib |= 0000222; /* S_IWUSR | S_IWGRP | S_IWOTH */ - /* FILE_ATTRIBUTE_REPARSE_POINT */ - if ((win32_attrib & 0x400) == 0x400) - *posix_attrib |= 0120000; /* S_IFLNK */ - /* FILE_ATTRIBUTE_DIRECTORY */ - else if ((win32_attrib & 0x10) == 0x10) - *posix_attrib |= 0040111; /* S_IFDIR | S_IXUSR | S_IXGRP | S_IXOTH */ - else - *posix_attrib |= 0100000; /* S_IFREG */ - - return MZ_OK; -} - -/***************************************************************************/ - -int32_t mz_zip_extrafield_find(void *stream, uint16_t type, uint16_t *length) -{ - int32_t err = MZ_OK; - uint16_t field_type = 0; - uint16_t field_length = 0; - - do - { - err = mz_stream_read_uint16(stream, &field_type); - if (err == MZ_OK) - err = mz_stream_read_uint16(stream, &field_length); - if (err != MZ_OK) - break; - - if (type == field_type) - { - if (length != NULL) - *length = field_length; - return MZ_OK; - } - - err = mz_stream_seek(stream, field_length, MZ_SEEK_CUR); - } - while (err == MZ_OK); - - return MZ_EXIST_ERROR; -} - -int32_t mz_zip_extrafield_contains(const uint8_t *extrafield, int32_t extrafield_size, - uint16_t type, uint16_t *length) -{ - void *file_extra_stream = NULL; - int32_t err = MZ_OK; - - if (extrafield == NULL || extrafield_size == 0) - return MZ_PARAM_ERROR; - - mz_stream_mem_create(&file_extra_stream); - mz_stream_mem_set_buffer(file_extra_stream, (void *)extrafield, extrafield_size); - - err = mz_zip_extrafield_find(file_extra_stream, type, length); - - mz_stream_mem_delete(&file_extra_stream); - - return err; -} - -int32_t mz_zip_extrafield_read(void *stream, uint16_t *type, uint16_t *length) -{ - int32_t err = MZ_OK; - if (type == NULL || length == NULL) - return MZ_PARAM_ERROR; - err = mz_stream_read_uint16(stream, type); - if (err == MZ_OK) - err = mz_stream_read_uint16(stream, length); - return err; -} - -int32_t mz_zip_extrafield_write(void *stream, uint16_t type, uint16_t length) -{ - int32_t err = MZ_OK; - err = mz_stream_write_uint16(stream, type); - if (err == MZ_OK) - err = mz_stream_write_uint16(stream, length); - return err; -} - -/***************************************************************************/ - -static int32_t mz_zip_invalid_date(const struct tm *ptm) -{ -#define datevalue_in_range(min, max, value) ((min) <= (value) && (value) <= (max)) - return (!datevalue_in_range(0, 127 + 80, ptm->tm_year) || /* 1980-based year, allow 80 extra */ - !datevalue_in_range(0, 11, ptm->tm_mon) || - !datevalue_in_range(1, 31, ptm->tm_mday) || - !datevalue_in_range(0, 23, ptm->tm_hour) || - !datevalue_in_range(0, 59, ptm->tm_min) || - !datevalue_in_range(0, 59, ptm->tm_sec)); -#undef datevalue_in_range -} - -static void mz_zip_dosdate_to_raw_tm(uint64_t dos_date, struct tm *ptm) -{ - uint64_t date = (uint64_t)(dos_date >> 16); - - ptm->tm_mday = (uint16_t)(date & 0x1f); - ptm->tm_mon = (uint16_t)(((date & 0x1E0) / 0x20) - 1); - ptm->tm_year = (uint16_t)(((date & 0x0FE00) / 0x0200) + 80); - ptm->tm_hour = (uint16_t)((dos_date & 0xF800) / 0x800); - ptm->tm_min = (uint16_t)((dos_date & 0x7E0) / 0x20); - ptm->tm_sec = (uint16_t)(2 * (dos_date & 0x1f)); - ptm->tm_isdst = -1; -} - -int32_t mz_zip_dosdate_to_tm(uint64_t dos_date, struct tm *ptm) -{ - if (ptm == NULL) - return MZ_PARAM_ERROR; - - mz_zip_dosdate_to_raw_tm(dos_date, ptm); - - if (mz_zip_invalid_date(ptm)) - { - /* Invalid date stored, so don't return it */ - memset(ptm, 0, sizeof(struct tm)); - return MZ_FORMAT_ERROR; - } - return MZ_OK; -} - -time_t mz_zip_dosdate_to_time_t(uint64_t dos_date) -{ - struct tm ptm; - mz_zip_dosdate_to_raw_tm(dos_date, &ptm); - return mktime(&ptm); -} - -int32_t mz_zip_time_t_to_tm(time_t unix_time, struct tm *ptm) -{ - struct tm ltm; - if (ptm == NULL) - return MZ_PARAM_ERROR; - if (localtime_r(&unix_time, <m) == NULL) /* Returns a 1900-based year */ - { - /* Invalid date stored, so don't return it */ - memset(ptm, 0, sizeof(struct tm)); - return MZ_INTERNAL_ERROR; - } - memcpy(ptm, <m, sizeof(struct tm)); - return MZ_OK; -} - -uint32_t mz_zip_time_t_to_dos_date(time_t unix_time) -{ - struct tm ptm; - mz_zip_time_t_to_tm(unix_time, &ptm); - return mz_zip_tm_to_dosdate((const struct tm *)&ptm); -} - -uint32_t mz_zip_tm_to_dosdate(const struct tm *ptm) -{ - struct tm fixed_tm; - - /* Years supported: */ - - /* [00, 79] (assumed to be between 2000 and 2079) */ - /* [80, 207] (assumed to be between 1980 and 2107, typical output of old */ - /* software that does 'year-1900' to get a double digit year) */ - /* [1980, 2107] (due to format limitations, only years 1980-2107 can be stored.) */ - - memcpy(&fixed_tm, ptm, sizeof(struct tm)); - if (fixed_tm.tm_year >= 1980) /* range [1980, 2107] */ - fixed_tm.tm_year -= 1980; - else if (fixed_tm.tm_year >= 80) /* range [80, 207] */ - fixed_tm.tm_year -= 80; - else /* range [00, 79] */ - fixed_tm.tm_year += 20; - - if (mz_zip_invalid_date(&fixed_tm)) - return 0; - - return (((uint32_t)fixed_tm.tm_mday + (32 * ((uint32_t)fixed_tm.tm_mon + 1)) + (512 * (uint32_t)fixed_tm.tm_year)) << 16) | - (((uint32_t)fixed_tm.tm_sec / 2) + (32 * (uint32_t)fixed_tm.tm_min) + (2048 * (uint32_t)fixed_tm.tm_hour)); -} - -int32_t mz_zip_ntfs_to_unix_time(uint64_t ntfs_time, time_t *unix_time) -{ - *unix_time = (time_t)((ntfs_time - 116444736000000000LL) / 10000000); - return MZ_OK; -} - -int32_t mz_zip_unix_to_ntfs_time(time_t unix_time, uint64_t *ntfs_time) -{ - *ntfs_time = ((uint64_t)unix_time * 10000000) + 116444736000000000LL; - return MZ_OK; -} - -/***************************************************************************/ - -int32_t mz_zip_path_compare(const char *path1, const char *path2, uint8_t ignore_case) -{ - do - { - if ((*path1 == '\\' && *path2 == '/') || - (*path2 == '\\' && *path1 == '/')) - { - /* Ignore comparison of path slashes */ - } - else if (ignore_case) - { - if (tolower(*path1) != tolower(*path2)) - break; - } - else if (*path1 != *path2) - { - break; - } - - path1 += 1; - path2 += 1; - } - while (*path1 != 0 && *path2 != 0); - - if (ignore_case) - return (int32_t)(tolower(*path1) - tolower(*path2)); - - return (int32_t)(*path1 - *path2); -} - -/***************************************************************************/ diff --git a/Pods/SSZipArchive/SSZipArchive/minizip/mz_zip.h b/Pods/SSZipArchive/SSZipArchive/minizip/mz_zip.h deleted file mode 100644 index c47025e56..000000000 --- a/Pods/SSZipArchive/SSZipArchive/minizip/mz_zip.h +++ /dev/null @@ -1,251 +0,0 @@ -/* mz_zip.h -- Zip manipulation - Version 2.9.2, February 12, 2020 - part of the MiniZip project - - Copyright (C) 2010-2020 Nathan Moinvaziri - https://github.com/nmoinvaz/minizip - Copyright (C) 2009-2010 Mathias Svensson - Modifications for Zip64 support - http://result42.com - Copyright (C) 1998-2010 Gilles Vollant - https://www.winimage.com/zLibDll/minizip.html - - This program is distributed under the terms of the same license as zlib. - See the accompanying LICENSE file for the full text of the license. -*/ - -#ifndef MZ_ZIP_H -#define MZ_ZIP_H - -#ifdef __cplusplus -extern "C" { -#endif - -/***************************************************************************/ - -typedef struct mz_zip_file_s -{ - uint16_t version_madeby; /* version made by */ - uint16_t version_needed; /* version needed to extract */ - uint16_t flag; /* general purpose bit flag */ - uint16_t compression_method; /* compression method */ - time_t modified_date; /* last modified date in unix time */ - time_t accessed_date; /* last accessed date in unix time */ - time_t creation_date; /* creation date in unix time */ - uint32_t crc; /* crc-32 */ - int64_t compressed_size; /* compressed size */ - int64_t uncompressed_size; /* uncompressed size */ - uint16_t filename_size; /* filename length */ - uint16_t extrafield_size; /* extra field length */ - uint16_t comment_size; /* file comment length */ - uint32_t disk_number; /* disk number start */ - int64_t disk_offset; /* relative offset of local header */ - uint16_t internal_fa; /* internal file attributes */ - uint32_t external_fa; /* external file attributes */ - - const char *filename; /* filename utf8 null-terminated string */ - const uint8_t *extrafield; /* extrafield data */ - const char *comment; /* comment utf8 null-terminated string */ - const char *linkname; /* sym-link filename utf8 null-terminated string */ - - uint16_t zip64; /* zip64 extension mode */ - uint16_t aes_version; /* winzip aes extension if not 0 */ - uint8_t aes_encryption_mode; /* winzip aes encryption mode */ - -} mz_zip_file, mz_zip_entry; - -/***************************************************************************/ - -typedef int32_t (*mz_zip_locate_entry_cb)(void *handle, void *userdata, mz_zip_file *file_info); - -/***************************************************************************/ - -void * mz_zip_create(void **handle); -/* Create zip instance for opening */ - -void mz_zip_delete(void **handle); -/* Delete zip object */ - -int32_t mz_zip_open(void *handle, void *stream, int32_t mode); -/* Create a zip file, no delete file in zip functionality */ - -int32_t mz_zip_close(void *handle); -/* Close the zip file */ - -int32_t mz_zip_get_comment(void *handle, const char **comment); -/* Get a pointer to the global comment */ - -int32_t mz_zip_set_comment(void *handle, const char *comment); -/* Set the global comment used for writing zip file */ - -int32_t mz_zip_get_version_madeby(void *handle, uint16_t *version_madeby); -/* Get the version made by */ - -int32_t mz_zip_set_version_madeby(void *handle, uint16_t version_madeby); -/* Set the version made by used for writing zip file */ - -int32_t mz_zip_set_recover(void *handle, uint8_t recover); -/* Set the ability to recover the central dir by reading local file headers */ - -int32_t mz_zip_set_data_descriptor(void *handle, uint8_t data_descriptor); -/* Set the use of data descriptor flag when writing zip entries */ - -int32_t mz_zip_get_stream(void *handle, void **stream); -/* Get a pointer to the stream used to open */ - -int32_t mz_zip_set_cd_stream(void *handle, int64_t cd_start_pos, void *cd_stream); -/* Sets the stream to use for reading the central dir */ - -int32_t mz_zip_get_cd_mem_stream(void *handle, void **cd_mem_stream); -/* Get a pointer to the stream used to store the central dir in memory */ - -int32_t mz_zip_set_number_entry(void *handle, uint64_t number_entry); -/* Sets the total number of entries */ - -int32_t mz_zip_get_number_entry(void *handle, uint64_t *number_entry); -/* Get the total number of entries */ - -int32_t mz_zip_set_disk_number_with_cd(void *handle, uint32_t disk_number_with_cd); -/* Sets the disk number containing the central directory record */ - -int32_t mz_zip_get_disk_number_with_cd(void *handle, uint32_t *disk_number_with_cd); -/* Get the disk number containing the central directory record */ - -/***************************************************************************/ - -int32_t mz_zip_entry_is_open(void *handle); -/* Check to see if entry is open for read/write */ - -int32_t mz_zip_entry_read_open(void *handle, uint8_t raw, const char *password); -/* Open for reading the current file in the zip file */ - -int32_t mz_zip_entry_read(void *handle, void *buf, int32_t len); -/* Read bytes from the current file in the zip file */ - -int32_t mz_zip_entry_read_close(void *handle, uint32_t *crc32, int64_t *compressed_size, - int64_t *uncompressed_size); -/* Close the current file for reading and get data descriptor values */ - -int32_t mz_zip_entry_write_open(void *handle, const mz_zip_file *file_info, - int16_t compress_level, uint8_t raw, const char *password); -/* Open for writing the current file in the zip file */ - -int32_t mz_zip_entry_write(void *handle, const void *buf, int32_t len); -/* Write bytes from the current file in the zip file */ - -int32_t mz_zip_entry_write_close(void *handle, uint32_t crc32, int64_t compressed_size, - int64_t uncompressed_size); -/* Close the current file for writing and set data descriptor values */ - -int32_t mz_zip_entry_close_raw(void *handle, int64_t uncompressed_size, uint32_t crc32); -/* Close the current file in the zip file where raw is compressed data */ - -int32_t mz_zip_entry_close(void *handle); -/* Close the current file in the zip file */ - -/***************************************************************************/ - -int32_t mz_zip_entry_is_dir(void *handle); -/* Checks to see if the entry is a directory */ - -int32_t mz_zip_entry_is_symlink(void *handle); -/* Checks to see if the entry is a symbolic link */ - -int32_t mz_zip_entry_get_info(void *handle, mz_zip_file **file_info); -/* Get info about the current file, only valid while current entry is open */ - -int32_t mz_zip_entry_get_local_info(void *handle, mz_zip_file **local_file_info); -/* Get local info about the current file, only valid while current entry is being read */ - -int32_t mz_zip_entry_set_extrafield(void *handle, const uint8_t *extrafield, uint16_t extrafield_size); -/* Sets or updates the extra field for the entry to be used before writing cd */ - -int64_t mz_zip_get_entry(void *handle); -/* Return offset of the current entry in the zip file */ - -int32_t mz_zip_goto_entry(void *handle, int64_t cd_pos); -/* Go to specified entry in the zip file */ - -int32_t mz_zip_goto_first_entry(void *handle); -/* Go to the first entry in the zip file */ - -int32_t mz_zip_goto_next_entry(void *handle); -/* Go to the next entry in the zip file or MZ_END_OF_LIST if reaching the end */ - -int32_t mz_zip_locate_entry(void *handle, const char *filename, uint8_t ignore_case); -/* Locate the file with the specified name in the zip file or MZ_END_LIST if not found */ - -int32_t mz_zip_locate_first_entry(void *handle, void *userdata, mz_zip_locate_entry_cb cb); -/* Locate the first matching entry based on a match callback */ - -int32_t mz_zip_locate_next_entry(void *handle, void *userdata, mz_zip_locate_entry_cb cb); -/* Locate the next matching entry based on a match callback */ - -/***************************************************************************/ - -int32_t mz_zip_attrib_is_dir(uint32_t attrib, int32_t version_madeby); -/* Checks to see if the attribute is a directory based on platform */ - -int32_t mz_zip_attrib_is_symlink(uint32_t attrib, int32_t version_madeby); -/* Checks to see if the attribute is a symbolic link based on platform */ - -int32_t mz_zip_attrib_convert(uint8_t src_sys, uint32_t src_attrib, uint8_t target_sys, - uint32_t *target_attrib); -/* Converts file attributes from one host system to another */ - -int32_t mz_zip_attrib_posix_to_win32(uint32_t posix_attrib, uint32_t *win32_attrib); -/* Converts posix file attributes to win32 file attributes */ - -int32_t mz_zip_attrib_win32_to_posix(uint32_t win32_attrib, uint32_t *posix_attrib); -/* Converts win32 file attributes to posix file attributes */ - -/***************************************************************************/ - -int32_t mz_zip_extrafield_find(void *stream, uint16_t type, uint16_t *length); -/* Seeks to extra field by its type and returns its length */ - -int32_t mz_zip_extrafield_contains(const uint8_t *extrafield, int32_t extrafield_size, - uint16_t type, uint16_t *length); -/* Gets whether an extrafield exists and its size */ - -int32_t mz_zip_extrafield_read(void *stream, uint16_t *type, uint16_t *length); -/* Reads an extrafield header from a stream */ - -int32_t mz_zip_extrafield_write(void *stream, uint16_t type, uint16_t length); -/* Writes an extrafield header to a stream */ - -/***************************************************************************/ - -int32_t mz_zip_dosdate_to_tm(uint64_t dos_date, struct tm *ptm); -/* Convert dos date/time format to struct tm */ - -time_t mz_zip_dosdate_to_time_t(uint64_t dos_date); -/* Convert dos date/time format to time_t */ - -int32_t mz_zip_time_t_to_tm(time_t unix_time, struct tm *ptm); -/* Convert time_t to time struct */ - -uint32_t mz_zip_time_t_to_dos_date(time_t unix_time); -/* Convert time_t to dos date/time format */ - -uint32_t mz_zip_tm_to_dosdate(const struct tm *ptm); -/* Convert struct tm to dos date/time format */ - -int32_t mz_zip_ntfs_to_unix_time(uint64_t ntfs_time, time_t *unix_time); -/* Convert ntfs time to unix time */ - -int32_t mz_zip_unix_to_ntfs_time(time_t unix_time, uint64_t *ntfs_time); -/* Convert unix time to ntfs time */ - -/***************************************************************************/ - -int32_t mz_zip_path_compare(const char *path1, const char *path2, uint8_t ignore_case); -/* Compare two paths without regard to slashes */ - -/***************************************************************************/ - -#ifdef __cplusplus -} -#endif - -#endif /* _ZIP_H */ diff --git a/Pods/SSZipArchive/SSZipArchive/minizip/mz_zip_rw.c b/Pods/SSZipArchive/SSZipArchive/minizip/mz_zip_rw.c deleted file mode 100644 index 2a9433681..000000000 --- a/Pods/SSZipArchive/SSZipArchive/minizip/mz_zip_rw.c +++ /dev/null @@ -1,2103 +0,0 @@ -/* mz_zip_rw.c -- Zip reader/writer - Version 2.9.2, February 12, 2020 - part of the MiniZip project - - Copyright (C) 2010-2020 Nathan Moinvaziri - https://github.com/nmoinvaz/minizip - - This program is distributed under the terms of the same license as zlib. - See the accompanying LICENSE file for the full text of the license. -*/ - -#include "mz.h" -#include "mz_crypt.h" -#include "mz_os.h" -#include "mz_strm.h" -#include "mz_strm_buf.h" -#include "mz_strm_mem.h" -#include "mz_strm_os.h" -#include "mz_strm_split.h" -#include "mz_strm_wzaes.h" -#include "mz_zip.h" - -#include "mz_zip_rw.h" - -/***************************************************************************/ - -#define MZ_DEFAULT_PROGRESS_INTERVAL (1000u) - -#define MZ_ZIP_CD_FILENAME ("__cdcd__") - -/***************************************************************************/ - -typedef struct mz_zip_reader_s { - void *zip_handle; - void *file_stream; - void *buffered_stream; - void *split_stream; - void *mem_stream; - void *hash; - uint16_t hash_algorithm; - uint16_t hash_digest_size; - mz_zip_file *file_info; - const char *pattern; - uint8_t pattern_ignore_case; - const char *password; - void *overwrite_userdata; - mz_zip_reader_overwrite_cb - overwrite_cb; - void *password_userdata; - mz_zip_reader_password_cb - password_cb; - void *progress_userdata; - mz_zip_reader_progress_cb - progress_cb; - uint32_t progress_cb_interval_ms; - void *entry_userdata; - mz_zip_reader_entry_cb - entry_cb; - uint8_t raw; - uint8_t buffer[UINT16_MAX]; - int32_t encoding; - uint8_t sign_required; - uint8_t cd_verified; - uint8_t cd_zipped; - uint8_t entry_verified; -} mz_zip_reader; - -/***************************************************************************/ - -int32_t mz_zip_reader_is_open(void *handle) -{ - mz_zip_reader *reader = (mz_zip_reader *)handle; - if (reader == NULL) - return MZ_PARAM_ERROR; - if (reader->zip_handle == NULL) - return MZ_PARAM_ERROR; - return MZ_OK; -} - -int32_t mz_zip_reader_open(void *handle, void *stream) -{ - mz_zip_reader *reader = (mz_zip_reader *)handle; - int32_t err = MZ_OK; - - reader->cd_verified = 0; - reader->cd_zipped = 0; - - mz_zip_create(&reader->zip_handle); - mz_zip_set_recover(reader->zip_handle, 1); - - err = mz_zip_open(reader->zip_handle, stream, MZ_OPEN_MODE_READ); - - if (err != MZ_OK) - { - mz_zip_reader_close(handle); - return err; - } - - mz_zip_reader_unzip_cd(reader); - return MZ_OK; -} - -int32_t mz_zip_reader_open_file(void *handle, const char *path) -{ - mz_zip_reader *reader = (mz_zip_reader *)handle; - int32_t err = MZ_OK; - - - mz_zip_reader_close(handle); - - mz_stream_os_create(&reader->file_stream); - mz_stream_buffered_create(&reader->buffered_stream); - mz_stream_split_create(&reader->split_stream); - - mz_stream_set_base(reader->buffered_stream, reader->file_stream); - mz_stream_set_base(reader->split_stream, reader->buffered_stream); - - err = mz_stream_open(reader->split_stream, path, MZ_OPEN_MODE_READ); - if (err == MZ_OK) - err = mz_zip_reader_open(handle, reader->split_stream); - return err; -} - -int32_t mz_zip_reader_open_file_in_memory(void *handle, const char *path) -{ - mz_zip_reader *reader = (mz_zip_reader *)handle; - void *file_stream = NULL; - int64_t file_size = 0; - int32_t err = 0; - - - mz_zip_reader_close(handle); - - mz_stream_os_create(&file_stream); - - err = mz_stream_os_open(file_stream, path, MZ_OPEN_MODE_READ); - - if (err != MZ_OK) - { - mz_stream_os_delete(&file_stream); - mz_zip_reader_close(handle); - return err; - } - - mz_stream_os_seek(file_stream, 0, MZ_SEEK_END); - file_size = mz_stream_os_tell(file_stream); - mz_stream_os_seek(file_stream, 0, MZ_SEEK_SET); - - if ((file_size <= 0) || (file_size > UINT32_MAX)) - { - /* Memory size is too large or too small */ - - mz_stream_os_close(file_stream); - mz_stream_os_delete(&file_stream); - mz_zip_reader_close(handle); - return MZ_MEM_ERROR; - } - - mz_stream_mem_create(&reader->mem_stream); - mz_stream_mem_set_grow_size(reader->mem_stream, (int32_t)file_size); - mz_stream_mem_open(reader->mem_stream, NULL, MZ_OPEN_MODE_CREATE); - - err = mz_stream_copy(reader->mem_stream, file_stream, (int32_t)file_size); - - mz_stream_os_close(file_stream); - mz_stream_os_delete(&file_stream); - - if (err == MZ_OK) - err = mz_zip_reader_open(handle, reader->mem_stream); - if (err != MZ_OK) - mz_zip_reader_close(handle); - - return err; -} - -int32_t mz_zip_reader_open_buffer(void *handle, uint8_t *buf, int32_t len, uint8_t copy) -{ - mz_zip_reader *reader = (mz_zip_reader *)handle; - int32_t err = MZ_OK; - - mz_zip_reader_close(handle); - - mz_stream_mem_create(&reader->mem_stream); - - if (copy) - { - mz_stream_mem_set_grow_size(reader->mem_stream, len); - mz_stream_mem_open(reader->mem_stream, NULL, MZ_OPEN_MODE_CREATE); - mz_stream_mem_write(reader->mem_stream, buf, len); - mz_stream_mem_seek(reader->mem_stream, 0, MZ_SEEK_SET); - } - else - { - mz_stream_mem_open(reader->mem_stream, NULL, MZ_OPEN_MODE_READ); - mz_stream_mem_set_buffer(reader->mem_stream, buf, len); - } - - if (err == MZ_OK) - err = mz_zip_reader_open(handle, reader->mem_stream); - - return err; -} - -int32_t mz_zip_reader_close(void *handle) -{ - mz_zip_reader *reader = (mz_zip_reader *)handle; - int32_t err = MZ_OK; - - if (reader->zip_handle != NULL) - { - err = mz_zip_close(reader->zip_handle); - mz_zip_delete(&reader->zip_handle); - } - - if (reader->split_stream != NULL) - { - mz_stream_split_close(reader->split_stream); - mz_stream_split_delete(&reader->split_stream); - } - - if (reader->buffered_stream != NULL) - mz_stream_buffered_delete(&reader->buffered_stream); - - if (reader->file_stream != NULL) - mz_stream_os_delete(&reader->file_stream); - - if (reader->mem_stream != NULL) - { - mz_stream_mem_close(reader->mem_stream); - mz_stream_mem_delete(&reader->mem_stream); - } - - return err; -} - -/***************************************************************************/ - -int32_t mz_zip_reader_unzip_cd(void *handle) -{ - mz_zip_reader *reader = (mz_zip_reader *)handle; - mz_zip_file *cd_info = NULL; - void *cd_mem_stream = NULL; - void *new_cd_stream = NULL; - void *file_extra_stream = NULL; - uint64_t number_entry = 0; - int32_t err = MZ_OK; - - - err = mz_zip_reader_goto_first_entry(handle); - if (err != MZ_OK) - return err; - err = mz_zip_reader_entry_get_info(handle, &cd_info); - if (err != MZ_OK) - return err; - - if (strcmp(cd_info->filename, MZ_ZIP_CD_FILENAME) != 0) - return mz_zip_reader_goto_first_entry(handle); - - err = mz_zip_reader_entry_open(handle); - if (err != MZ_OK) - return err; - - mz_stream_mem_create(&file_extra_stream); - mz_stream_mem_set_buffer(file_extra_stream, (void *)cd_info->extrafield, cd_info->extrafield_size); - - err = mz_zip_extrafield_find(file_extra_stream, MZ_ZIP_EXTENSION_CDCD, NULL); - if (err == MZ_OK) - err = mz_stream_read_uint64(file_extra_stream, &number_entry); - - mz_stream_mem_delete(&file_extra_stream); - - if (err != MZ_OK) - return err; - - mz_zip_get_cd_mem_stream(reader->zip_handle, &cd_mem_stream); - if (mz_stream_mem_is_open(cd_mem_stream) != MZ_OK) - mz_stream_mem_open(cd_mem_stream, NULL, MZ_OPEN_MODE_CREATE); - - err = mz_stream_seek(cd_mem_stream, 0, MZ_SEEK_SET); - if (err == MZ_OK) - err = mz_stream_copy_stream(cd_mem_stream, NULL, handle, mz_zip_reader_entry_read, - (int32_t)cd_info->uncompressed_size); - - if (err == MZ_OK) - { - reader->cd_zipped = 1; - - mz_zip_set_cd_stream(reader->zip_handle, 0, cd_mem_stream); - mz_zip_set_number_entry(reader->zip_handle, number_entry); - - err = mz_zip_reader_goto_first_entry(handle); - } - - reader->cd_verified = reader->entry_verified; - - mz_stream_mem_delete(&new_cd_stream); - return err; -} - -/***************************************************************************/ - -static int32_t mz_zip_reader_locate_entry_cb(void *handle, void *userdata, mz_zip_file *file_info) -{ - mz_zip_reader *reader = (mz_zip_reader *)userdata; - int32_t result = 0; - MZ_UNUSED(handle); - result = mz_path_compare_wc(file_info->filename, reader->pattern, reader->pattern_ignore_case); - return result; -} - -int32_t mz_zip_reader_goto_first_entry(void *handle) -{ - mz_zip_reader *reader = (mz_zip_reader *)handle; - int32_t err = MZ_OK; - - if (mz_zip_reader_is_open(handle) != MZ_OK) - return MZ_PARAM_ERROR; - - if (mz_zip_entry_is_open(reader->zip_handle) == MZ_OK) - mz_zip_reader_entry_close(handle); - - if (reader->pattern == NULL) - err = mz_zip_goto_first_entry(reader->zip_handle); - else - err = mz_zip_locate_first_entry(reader->zip_handle, reader, mz_zip_reader_locate_entry_cb); - - reader->file_info = NULL; - if (err == MZ_OK) - err = mz_zip_entry_get_info(reader->zip_handle, &reader->file_info); - - return err; -} - -int32_t mz_zip_reader_goto_next_entry(void *handle) -{ - mz_zip_reader *reader = (mz_zip_reader *)handle; - int32_t err = MZ_OK; - - if (mz_zip_reader_is_open(handle) != MZ_OK) - return MZ_PARAM_ERROR; - - if (mz_zip_entry_is_open(reader->zip_handle) == MZ_OK) - mz_zip_reader_entry_close(handle); - - if (reader->pattern == NULL) - err = mz_zip_goto_next_entry(reader->zip_handle); - else - err = mz_zip_locate_next_entry(reader->zip_handle, reader, mz_zip_reader_locate_entry_cb); - - reader->file_info = NULL; - if (err == MZ_OK) - err = mz_zip_entry_get_info(reader->zip_handle, &reader->file_info); - - return err; -} - -int32_t mz_zip_reader_locate_entry(void *handle, const char *filename, uint8_t ignore_case) -{ - mz_zip_reader *reader = (mz_zip_reader *)handle; - int32_t err = MZ_OK; - - if (mz_zip_entry_is_open(reader->zip_handle) == MZ_OK) - mz_zip_reader_entry_close(handle); - - err = mz_zip_locate_entry(reader->zip_handle, filename, ignore_case); - - reader->file_info = NULL; - if (err == MZ_OK) - err = mz_zip_entry_get_info(reader->zip_handle, &reader->file_info); - - return err; -} - -/***************************************************************************/ - -int32_t mz_zip_reader_entry_open(void *handle) -{ - mz_zip_reader *reader = (mz_zip_reader *)handle; - int32_t err = MZ_OK; - const char *password = NULL; - char password_buf[120]; - - - reader->entry_verified = 0; - - if (mz_zip_reader_is_open(reader) != MZ_OK) - return MZ_PARAM_ERROR; - if (reader->file_info == NULL) - return MZ_PARAM_ERROR; - - /* If the entry isn't open for reading, open it */ - if (mz_zip_entry_is_open(reader->zip_handle) == MZ_OK) - return MZ_OK; - - password = reader->password; - - /* Check if we need a password and ask for it if we need to */ - if ((reader->file_info->flag & MZ_ZIP_FLAG_ENCRYPTED) && (password == NULL) && - (reader->password_cb != NULL)) - { - reader->password_cb(handle, reader->password_userdata, reader->file_info, - password_buf, sizeof(password_buf)); - - password = password_buf; - } - - err = mz_zip_entry_read_open(reader->zip_handle, reader->raw, password); -#ifndef MZ_ZIP_NO_ENCRYPTION - if (err != MZ_OK) - return err; - - if (mz_zip_reader_entry_get_first_hash(handle, &reader->hash_algorithm, &reader->hash_digest_size) == MZ_OK) - { - mz_crypt_sha_create(&reader->hash); - if (reader->hash_algorithm == MZ_HASH_SHA1) - mz_crypt_sha_set_algorithm(reader->hash, MZ_HASH_SHA1); - else if (reader->hash_algorithm == MZ_HASH_SHA256) - mz_crypt_sha_set_algorithm(reader->hash, MZ_HASH_SHA256); - else - err = MZ_SUPPORT_ERROR; - - if (err == MZ_OK) - mz_crypt_sha_begin(reader->hash); -#ifdef MZ_ZIP_SIGNING - if (err == MZ_OK) - { - if (mz_zip_reader_entry_has_sign(handle) == MZ_OK) - { - err = mz_zip_reader_entry_sign_verify(handle); - if (err == MZ_OK) - reader->entry_verified = 1; - } - else if (reader->sign_required && !reader->cd_verified) - err = MZ_SIGN_ERROR; - } -#endif - } - else if (reader->sign_required && !reader->cd_verified) - err = MZ_SIGN_ERROR; -#endif - - return err; -} - -int32_t mz_zip_reader_entry_close(void *handle) -{ - mz_zip_reader *reader = (mz_zip_reader *)handle; - int32_t err = MZ_OK; - int32_t err_close = MZ_OK; -#ifndef MZ_ZIP_NO_ENCRYPTION - int32_t err_hash = MZ_OK; - uint8_t computed_hash[MZ_HASH_MAX_SIZE]; - uint8_t expected_hash[MZ_HASH_MAX_SIZE]; - - if (reader->hash != NULL) - { - mz_crypt_sha_end(reader->hash, computed_hash, sizeof(computed_hash)); - mz_crypt_sha_delete(&reader->hash); - - err_hash = mz_zip_reader_entry_get_hash(handle, reader->hash_algorithm, expected_hash, - reader->hash_digest_size); - - if (err_hash == MZ_OK) - { - /* Verify expected hash against computed hash */ - if (memcmp(computed_hash, expected_hash, reader->hash_digest_size) != 0) - err = MZ_CRC_ERROR; - } - } -#endif - - err_close = mz_zip_entry_close(reader->zip_handle); - if (err == MZ_OK) - err = err_close; - return err; -} - -int32_t mz_zip_reader_entry_read(void *handle, void *buf, int32_t len) -{ - mz_zip_reader *reader = (mz_zip_reader *)handle; - int32_t read = 0; - read = mz_zip_entry_read(reader->zip_handle, buf, len); -#ifndef MZ_ZIP_NO_ENCRYPTION - if ((read > 0) && (reader->hash != NULL)) - mz_crypt_sha_update(reader->hash, buf, read); -#endif - return read; -} - -int32_t mz_zip_reader_entry_has_sign(void *handle) -{ - mz_zip_reader *reader = (mz_zip_reader *)handle; - - if (reader == NULL || mz_zip_entry_is_open(reader->zip_handle) != MZ_OK) - return MZ_PARAM_ERROR; - - return mz_zip_extrafield_contains(reader->file_info->extrafield, - reader->file_info->extrafield_size, MZ_ZIP_EXTENSION_SIGN, NULL); -} - -#if !defined(MZ_ZIP_NO_ENCRYPTION) && defined(MZ_ZIP_SIGNING) -int32_t mz_zip_reader_entry_sign_verify(void *handle) -{ - mz_zip_reader *reader = (mz_zip_reader *)handle; - void *file_extra_stream = NULL; - int32_t err = MZ_OK; - uint8_t *signature = NULL; - uint16_t signature_size = 0; - uint8_t hash[MZ_HASH_MAX_SIZE]; - - if (reader == NULL || mz_zip_entry_is_open(reader->zip_handle) != MZ_OK) - return MZ_PARAM_ERROR; - - mz_stream_mem_create(&file_extra_stream); - mz_stream_mem_set_buffer(file_extra_stream, (void *)reader->file_info->extrafield, - reader->file_info->extrafield_size); - - err = mz_zip_extrafield_find(file_extra_stream, MZ_ZIP_EXTENSION_SIGN, &signature_size); - if ((err == MZ_OK) && (signature_size > 0)) - { - signature = (uint8_t *)MZ_ALLOC(signature_size); - if (mz_stream_read(file_extra_stream, signature, signature_size) != signature_size) - err = MZ_READ_ERROR; - } - - mz_stream_mem_delete(&file_extra_stream); - - if (err == MZ_OK) - { - /* Get most secure hash to verify signature against */ - err = mz_zip_reader_entry_get_hash(handle, reader->hash_algorithm, hash, reader->hash_digest_size); - } - - if (err == MZ_OK) - { - /* Verify the pkcs signature */ - err = mz_crypt_sign_verify(hash, reader->hash_digest_size, signature, signature_size); - } - - if (signature != NULL) - MZ_FREE(signature); - - return err; -} -#endif - -int32_t mz_zip_reader_entry_get_hash(void *handle, uint16_t algorithm, uint8_t *digest, int32_t digest_size) -{ - mz_zip_reader *reader = (mz_zip_reader *)handle; - void *file_extra_stream = NULL; - int32_t err = MZ_OK; - int32_t return_err = MZ_EXIST_ERROR; - uint16_t cur_algorithm = 0; - uint16_t cur_digest_size = 0; - - mz_stream_mem_create(&file_extra_stream); - mz_stream_mem_set_buffer(file_extra_stream, (void *)reader->file_info->extrafield, - reader->file_info->extrafield_size); - - do - { - err = mz_zip_extrafield_find(file_extra_stream, MZ_ZIP_EXTENSION_HASH, NULL); - if (err != MZ_OK) - break; - - err = mz_stream_read_uint16(file_extra_stream, &cur_algorithm); - if (err == MZ_OK) - err = mz_stream_read_uint16(file_extra_stream, &cur_digest_size); - if ((err == MZ_OK) && (cur_algorithm == algorithm) && (cur_digest_size <= digest_size) && - (cur_digest_size <= MZ_HASH_MAX_SIZE)) - { - /* Read hash digest */ - if (mz_stream_read(file_extra_stream, digest, digest_size) == cur_digest_size) - return_err = MZ_OK; - break; - } - else - { - err = mz_stream_seek(file_extra_stream, cur_digest_size, MZ_SEEK_CUR); - } - } - while (err == MZ_OK); - - mz_stream_mem_delete(&file_extra_stream); - - return return_err; -} - -int32_t mz_zip_reader_entry_get_first_hash(void *handle, uint16_t *algorithm, uint16_t *digest_size) -{ - mz_zip_reader *reader = (mz_zip_reader *)handle; - void *file_extra_stream = NULL; - int32_t err = MZ_OK; - uint16_t cur_algorithm = 0; - uint16_t cur_digest_size = 0; - - if (reader == NULL || algorithm == NULL) - return MZ_PARAM_ERROR; - - mz_stream_mem_create(&file_extra_stream); - mz_stream_mem_set_buffer(file_extra_stream, (void *)reader->file_info->extrafield, - reader->file_info->extrafield_size); - - err = mz_zip_extrafield_find(file_extra_stream, MZ_ZIP_EXTENSION_HASH, NULL); - if (err == MZ_OK) - err = mz_stream_read_uint16(file_extra_stream, &cur_algorithm); - if (err == MZ_OK) - err = mz_stream_read_uint16(file_extra_stream, &cur_digest_size); - - if (algorithm != NULL) - *algorithm = cur_algorithm; - if (digest_size != NULL) - *digest_size = cur_digest_size; - - mz_stream_mem_delete(&file_extra_stream); - - return err; -} - -int32_t mz_zip_reader_entry_get_info(void *handle, mz_zip_file **file_info) -{ - mz_zip_reader *reader = (mz_zip_reader *)handle; - int32_t err = MZ_OK; - if (file_info == NULL || mz_zip_reader_is_open(handle) != MZ_OK) - return MZ_PARAM_ERROR; - *file_info = reader->file_info; - if (*file_info == NULL) - return MZ_EXIST_ERROR; - return err; -} - -int32_t mz_zip_reader_entry_is_dir(void *handle) -{ - mz_zip_reader *reader = (mz_zip_reader *)handle; - if (mz_zip_reader_is_open(handle) != MZ_OK) - return MZ_PARAM_ERROR; - return mz_zip_entry_is_dir(reader->zip_handle); -} - -int32_t mz_zip_reader_entry_save_process(void *handle, void *stream, mz_stream_write_cb write_cb) -{ - mz_zip_reader *reader = (mz_zip_reader *)handle; - int32_t err = MZ_OK; - int32_t read = 0; - int32_t written = 0; - - - if (mz_zip_reader_is_open(reader) != MZ_OK) - return MZ_PARAM_ERROR; - if (reader->file_info == NULL) - return MZ_PARAM_ERROR; - if (write_cb == NULL) - return MZ_PARAM_ERROR; - - /* If the entry isn't open for reading, open it */ - if (mz_zip_entry_is_open(reader->zip_handle) != MZ_OK) - err = mz_zip_reader_entry_open(handle); - - if (err != MZ_OK) - return err; - - /* Unzip entry in zip file */ - read = mz_zip_reader_entry_read(handle, reader->buffer, sizeof(reader->buffer)); - - if (read == 0) - { - /* If we are done close the entry */ - err = mz_zip_reader_entry_close(handle); - if (err != MZ_OK) - return err; - - return MZ_END_OF_STREAM; - } - - if (read > 0) - { - /* Write the data to the specified stream */ - written = write_cb(stream, reader->buffer, read); - if (written != read) - return MZ_WRITE_ERROR; - } - - return read; -} - -int32_t mz_zip_reader_entry_save(void *handle, void *stream, mz_stream_write_cb write_cb) -{ - mz_zip_reader *reader = (mz_zip_reader *)handle; - uint64_t current_time = 0; - uint64_t update_time = 0; - int64_t current_pos = 0; - int64_t update_pos = 0; - int32_t err = MZ_OK; - int32_t written = 0; - - if (mz_zip_reader_is_open(reader) != MZ_OK) - return MZ_PARAM_ERROR; - if (reader->file_info == NULL) - return MZ_PARAM_ERROR; - - /* Update the progress at the beginning */ - if (reader->progress_cb != NULL) - reader->progress_cb(handle, reader->progress_userdata, reader->file_info, current_pos); - - /* Write data to stream until done */ - while (err == MZ_OK) - { - written = mz_zip_reader_entry_save_process(handle, stream, write_cb); - if (written == MZ_END_OF_STREAM) - break; - if (written > 0) - current_pos += written; - if (written < 0) - err = written; - - /* Update progress if enough time have passed */ - current_time = mz_os_ms_time(); - if ((current_time - update_time) > reader->progress_cb_interval_ms) - { - if (reader->progress_cb != NULL) - reader->progress_cb(handle, reader->progress_userdata, reader->file_info, current_pos); - - update_pos = current_pos; - update_time = current_time; - } - } - - /* Update the progress at the end */ - if (reader->progress_cb != NULL && update_pos != current_pos) - reader->progress_cb(handle, reader->progress_userdata, reader->file_info, current_pos); - - return err; -} - -int32_t mz_zip_reader_entry_save_file(void *handle, const char *path) -{ - mz_zip_reader *reader = (mz_zip_reader *)handle; - void *stream = NULL; - uint32_t target_attrib = 0; - int32_t err_attrib = 0; - int32_t err = MZ_OK; - int32_t err_cb = MZ_OK; - char pathwfs[512]; - char directory[512]; - - if (mz_zip_reader_is_open(reader) != MZ_OK) - return MZ_PARAM_ERROR; - if (reader->file_info == NULL || path == NULL) - return MZ_PARAM_ERROR; - - /* Convert to forward slashes for unix which doesn't like backslashes */ - strncpy(pathwfs, path, sizeof(pathwfs) - 1); - pathwfs[sizeof(pathwfs) - 1] = 0; - mz_path_convert_slashes(pathwfs, MZ_PATH_SLASH_UNIX); - - if (reader->entry_cb != NULL) - reader->entry_cb(handle, reader->entry_userdata, reader->file_info, pathwfs); - - strncpy(directory, pathwfs, sizeof(directory) - 1); - directory[sizeof(directory) - 1] = 0; - mz_path_remove_filename(directory); - - /* If it is a directory entry then create a directory instead of writing file */ - if ((mz_zip_entry_is_dir(reader->zip_handle) == MZ_OK) && - (mz_zip_entry_is_symlink(reader->zip_handle) != MZ_OK)) - { - err = mz_dir_make(directory); - return err; - } - - /* Check if file exists and ask if we want to overwrite */ - if ((mz_os_file_exists(pathwfs) == MZ_OK) && (reader->overwrite_cb != NULL)) - { - err_cb = reader->overwrite_cb(handle, reader->overwrite_userdata, reader->file_info, pathwfs); - if (err_cb != MZ_OK) - return err; - /* We want to overwrite the file so we delete the existing one */ - mz_os_unlink(pathwfs); - } - - /* If symbolic link then properly construct destination path and link path */ - if (mz_zip_entry_is_symlink(reader->zip_handle) == MZ_OK) - { - mz_path_remove_slash(pathwfs); - mz_path_remove_filename(directory); - } - - /* Create the output directory if it doesn't already exist */ - if (mz_os_is_dir(directory) != MZ_OK) - { - err = mz_dir_make(directory); - if (err != MZ_OK) - return err; - } - - /* If it is a symbolic link then create symbolic link instead of writing file */ - if (mz_zip_entry_is_symlink(reader->zip_handle) == MZ_OK) - { - mz_os_make_symlink(pathwfs, reader->file_info->linkname); - /* Don't check return value because we aren't validating symbolic link target */ - return err; - } - - /* Create the file on disk so we can save to it */ - mz_stream_os_create(&stream); - err = mz_stream_os_open(stream, pathwfs, MZ_OPEN_MODE_CREATE); - - if (err == MZ_OK) - err = mz_zip_reader_entry_save(handle, stream, mz_stream_write); - - mz_stream_close(stream); - mz_stream_delete(&stream); - - if (err == MZ_OK) - { - /* Set the time of the file that has been created */ - mz_os_set_file_date(pathwfs, reader->file_info->modified_date, - reader->file_info->accessed_date, reader->file_info->creation_date); - } - - if (err == MZ_OK) - { - /* Set file attributes for the correct system */ - err_attrib = mz_zip_attrib_convert(MZ_HOST_SYSTEM(reader->file_info->version_madeby), - reader->file_info->external_fa, MZ_VERSION_MADEBY_HOST_SYSTEM, &target_attrib); - - if (err_attrib == MZ_OK) - mz_os_set_file_attribs(pathwfs, target_attrib); - } - - return err; -} - -int32_t mz_zip_reader_entry_save_buffer(void *handle, void *buf, int32_t len) -{ - mz_zip_reader *reader = (mz_zip_reader *)handle; - void *mem_stream = NULL; - int32_t err = MZ_OK; - - if (mz_zip_reader_is_open(reader) != MZ_OK) - return MZ_PARAM_ERROR; - if (reader->file_info == NULL) - return MZ_PARAM_ERROR; - if (reader->file_info->uncompressed_size > INT32_MAX) - return MZ_PARAM_ERROR; - if (len != (int32_t)reader->file_info->uncompressed_size) - return MZ_BUF_ERROR; - - /* Create a memory stream backed by our buffer and save to it */ - mz_stream_mem_create(&mem_stream); - mz_stream_mem_set_buffer(mem_stream, buf, len); - - err = mz_stream_mem_open(mem_stream, NULL, MZ_OPEN_MODE_READ); - if (err == MZ_OK) - err = mz_zip_reader_entry_save(handle, mem_stream, mz_stream_mem_write); - - mz_stream_mem_delete(&mem_stream); - return err; -} - -int32_t mz_zip_reader_entry_save_buffer_length(void *handle) -{ - mz_zip_reader *reader = (mz_zip_reader *)handle; - - if (mz_zip_reader_is_open(reader) != MZ_OK) - return MZ_PARAM_ERROR; - if (reader->file_info == NULL) - return MZ_PARAM_ERROR; - if (reader->file_info->uncompressed_size > INT32_MAX) - return MZ_PARAM_ERROR; - - /* Get the maximum size required for the save buffer */ - return (int32_t)reader->file_info->uncompressed_size; -} - -/***************************************************************************/ - -int32_t mz_zip_reader_save_all(void *handle, const char *destination_dir) -{ - mz_zip_reader *reader = (mz_zip_reader *)handle; - int32_t err = MZ_OK; - uint8_t *utf8_string = NULL; - char path[512]; - char utf8_name[256]; - char resolved_name[256]; - - err = mz_zip_reader_goto_first_entry(handle); - - if (err == MZ_END_OF_LIST) - return err; - - while (err == MZ_OK) - { - /* Construct output path */ - path[0] = 0; - - strncpy(utf8_name, reader->file_info->filename, sizeof(utf8_name) - 1); - utf8_name[sizeof(utf8_name) - 1] = 0; - - if ((reader->encoding > 0) && (reader->file_info->flag & MZ_ZIP_FLAG_UTF8) == 0) - { - utf8_string = mz_os_utf8_string_create(reader->file_info->filename, reader->encoding); - if (utf8_string) - { - strncpy(utf8_name, (char *)utf8_string, sizeof(utf8_name) - 1); - utf8_name[sizeof(utf8_name) - 1] = 0; - mz_os_utf8_string_delete(&utf8_string); - } - } - - err = mz_path_resolve(utf8_name, resolved_name, sizeof(resolved_name)); - if (err != MZ_OK) - break; - - if (destination_dir != NULL) - mz_path_combine(path, destination_dir, sizeof(path)); - - mz_path_combine(path, resolved_name, sizeof(path)); - - /* Save file to disk */ - err = mz_zip_reader_entry_save_file(handle, path); - - if (err == MZ_OK) - err = mz_zip_reader_goto_next_entry(handle); - } - - if (err == MZ_END_OF_LIST) - return MZ_OK; - - return err; -} - -/***************************************************************************/ - -void mz_zip_reader_set_pattern(void *handle, const char *pattern, uint8_t ignore_case) -{ - mz_zip_reader *reader = (mz_zip_reader *)handle; - reader->pattern = pattern; - reader->pattern_ignore_case = ignore_case; -} - -void mz_zip_reader_set_password(void *handle, const char *password) -{ - mz_zip_reader *reader = (mz_zip_reader *)handle; - reader->password = password; -} - -void mz_zip_reader_set_raw(void *handle, uint8_t raw) -{ - mz_zip_reader *reader = (mz_zip_reader *)handle; - reader->raw = raw; -} - -int32_t mz_zip_reader_get_raw(void *handle, uint8_t *raw) -{ - mz_zip_reader *reader = (mz_zip_reader *)handle; - if (raw == NULL) - return MZ_PARAM_ERROR; - *raw = reader->raw; - return MZ_OK; -} - -int32_t mz_zip_reader_get_zip_cd(void *handle, uint8_t *zip_cd) -{ - mz_zip_reader *reader = (mz_zip_reader *)handle; - if (zip_cd == NULL) - return MZ_PARAM_ERROR; - *zip_cd = reader->cd_zipped; - return MZ_OK; -} - -int32_t mz_zip_reader_get_comment(void *handle, const char **comment) -{ - mz_zip_reader *reader = (mz_zip_reader *)handle; - if (mz_zip_reader_is_open(reader) != MZ_OK) - return MZ_PARAM_ERROR; - if (comment == NULL) - return MZ_PARAM_ERROR; - return mz_zip_get_comment(reader->zip_handle, comment); -} - -void mz_zip_reader_set_encoding(void *handle, int32_t encoding) -{ - mz_zip_reader *reader = (mz_zip_reader *)handle; - reader->encoding = encoding; -} - -void mz_zip_reader_set_sign_required(void *handle, uint8_t sign_required) -{ - mz_zip_reader *reader = (mz_zip_reader *)handle; - reader->sign_required = sign_required; -} - -void mz_zip_reader_set_overwrite_cb(void *handle, void *userdata, mz_zip_reader_overwrite_cb cb) -{ - mz_zip_reader *reader = (mz_zip_reader *)handle; - reader->overwrite_cb = cb; - reader->overwrite_userdata = userdata; -} - -void mz_zip_reader_set_password_cb(void *handle, void *userdata, mz_zip_reader_password_cb cb) -{ - mz_zip_reader *reader = (mz_zip_reader *)handle; - reader->password_cb = cb; - reader->password_userdata = userdata; -} - -void mz_zip_reader_set_progress_cb(void *handle, void *userdata, mz_zip_reader_progress_cb cb) -{ - mz_zip_reader *reader = (mz_zip_reader *)handle; - reader->progress_cb = cb; - reader->progress_userdata = userdata; -} - -void mz_zip_reader_set_progress_interval(void *handle, uint32_t milliseconds) -{ - mz_zip_reader *reader = (mz_zip_reader *)handle; - reader->progress_cb_interval_ms = milliseconds; -} - -void mz_zip_reader_set_entry_cb(void *handle, void *userdata, mz_zip_reader_entry_cb cb) -{ - mz_zip_reader *reader = (mz_zip_reader *)handle; - reader->entry_cb = cb; - reader->entry_userdata = userdata; -} - -int32_t mz_zip_reader_get_zip_handle(void *handle, void **zip_handle) -{ - mz_zip_reader *reader = (mz_zip_reader *)handle; - if (zip_handle == NULL) - return MZ_PARAM_ERROR; - *zip_handle = reader->zip_handle; - if (*zip_handle == NULL) - return MZ_EXIST_ERROR; - return MZ_OK; -} - -/***************************************************************************/ - -void *mz_zip_reader_create(void **handle) -{ - mz_zip_reader *reader = NULL; - - reader = (mz_zip_reader *)MZ_ALLOC(sizeof(mz_zip_reader)); - if (reader != NULL) - { - memset(reader, 0, sizeof(mz_zip_reader)); - reader->progress_cb_interval_ms = MZ_DEFAULT_PROGRESS_INTERVAL; - *handle = reader; - } - - return reader; -} - -void mz_zip_reader_delete(void **handle) -{ - mz_zip_reader *reader = NULL; - if (handle == NULL) - return; - reader = (mz_zip_reader *)*handle; - if (reader != NULL) - { - mz_zip_reader_close(reader); - MZ_FREE(reader); - } - *handle = NULL; -} - -/***************************************************************************/ - -typedef struct mz_zip_writer_s { - void *zip_handle; - void *file_stream; - void *buffered_stream; - void *split_stream; - void *sha256; - void *mem_stream; - void *file_extra_stream; - mz_zip_file file_info; - void *overwrite_userdata; - mz_zip_writer_overwrite_cb - overwrite_cb; - void *password_userdata; - mz_zip_writer_password_cb - password_cb; - void *progress_userdata; - mz_zip_writer_progress_cb - progress_cb; - uint32_t progress_cb_interval_ms; - void *entry_userdata; - mz_zip_writer_entry_cb - entry_cb; - const char *password; - const char *comment; - uint8_t *cert_data; - int32_t cert_data_size; - const char *cert_pwd; - uint16_t compress_method; - int16_t compress_level; - uint8_t follow_links; - uint8_t store_links; - uint8_t zip_cd; - uint8_t aes; - uint8_t raw; - uint8_t buffer[UINT16_MAX]; -} mz_zip_writer; - -/***************************************************************************/ - -int32_t mz_zip_writer_zip_cd(void *handle) -{ - mz_zip_writer *writer = (mz_zip_writer *)handle; - mz_zip_file cd_file; - uint64_t number_entry = 0; - int64_t cd_mem_length = 0; - int32_t err = MZ_OK; - int32_t extrafield_size = 0; - void *file_extra_stream = NULL; - void *cd_mem_stream = NULL; - - - memset(&cd_file, 0, sizeof(cd_file)); - - mz_zip_get_number_entry(writer->zip_handle, &number_entry); - mz_zip_get_cd_mem_stream(writer->zip_handle, &cd_mem_stream); - mz_stream_seek(cd_mem_stream, 0, MZ_SEEK_END); - cd_mem_length = (uint32_t)mz_stream_tell(cd_mem_stream); - mz_stream_seek(cd_mem_stream, 0, MZ_SEEK_SET); - - cd_file.filename = MZ_ZIP_CD_FILENAME; - cd_file.modified_date = time(NULL); - cd_file.version_madeby = MZ_VERSION_MADEBY; - cd_file.compression_method = writer->compress_method; - cd_file.uncompressed_size = (int32_t)cd_mem_length; - cd_file.flag = MZ_ZIP_FLAG_UTF8; - - if (writer->password != NULL) - cd_file.flag |= MZ_ZIP_FLAG_ENCRYPTED; - - mz_stream_mem_create(&file_extra_stream); - mz_stream_mem_open(file_extra_stream, NULL, MZ_OPEN_MODE_CREATE); - - mz_zip_extrafield_write(file_extra_stream, MZ_ZIP_EXTENSION_CDCD, 8); - - mz_stream_write_uint64(file_extra_stream, number_entry); - - mz_stream_mem_get_buffer(file_extra_stream, (const void **)&cd_file.extrafield); - mz_stream_mem_get_buffer_length(file_extra_stream, &extrafield_size); - cd_file.extrafield_size = (uint16_t)extrafield_size; - - err = mz_zip_writer_entry_open(handle, &cd_file); - if (err == MZ_OK) - { - mz_stream_copy_stream(handle, mz_zip_writer_entry_write, cd_mem_stream, - NULL, (int32_t)cd_mem_length); - - mz_stream_seek(cd_mem_stream, 0, MZ_SEEK_SET); - mz_stream_mem_set_buffer_limit(cd_mem_stream, 0); - - err = mz_zip_writer_entry_close(writer); - } - - mz_stream_mem_delete(&file_extra_stream); - - return err; -} - -/***************************************************************************/ - -int32_t mz_zip_writer_is_open(void *handle) -{ - mz_zip_writer *writer = (mz_zip_writer *)handle; - if (writer == NULL) - return MZ_PARAM_ERROR; - if (writer->zip_handle == NULL) - return MZ_PARAM_ERROR; - return MZ_OK; -} - -static int32_t mz_zip_writer_open_int(void *handle, void *stream, int32_t mode) -{ - mz_zip_writer *writer = (mz_zip_writer *)handle; - int32_t err = MZ_OK; - - mz_zip_create(&writer->zip_handle); - err = mz_zip_open(writer->zip_handle, stream, mode); - - if (err != MZ_OK) - { - mz_zip_writer_close(handle); - return err; - } - - return MZ_OK; -} - -int32_t mz_zip_writer_open(void *handle, void *stream) -{ - return mz_zip_writer_open_int(handle, stream, MZ_OPEN_MODE_WRITE); -} - -int32_t mz_zip_writer_open_file(void *handle, const char *path, int64_t disk_size, uint8_t append) -{ - mz_zip_writer *writer = (mz_zip_writer *)handle; - int32_t mode = MZ_OPEN_MODE_READWRITE; - int32_t err = MZ_OK; - int32_t err_cb = 0; - char directory[320]; - - mz_zip_writer_close(handle); - - if (mz_os_file_exists(path) != MZ_OK) - { - /* If the file doesn't exist, we don't append file */ - mode |= MZ_OPEN_MODE_CREATE; - - /* Create destination directory if it doesn't already exist */ - if (strchr(path, '/') != NULL || strrchr(path, '\\') != NULL) - { - strncpy(directory, path, sizeof(directory)); - mz_path_remove_filename(directory); - if (mz_os_file_exists(directory) != MZ_OK) - mz_dir_make(directory); - } - } - else if (append) - { - mode |= MZ_OPEN_MODE_APPEND; - } - else - { - if (writer->overwrite_cb != NULL) - err_cb = writer->overwrite_cb(handle, writer->overwrite_userdata, path); - - if (err_cb == MZ_INTERNAL_ERROR) - return err; - - if (err_cb == MZ_OK) - mode |= MZ_OPEN_MODE_CREATE; - else - mode |= MZ_OPEN_MODE_APPEND; - } - - mz_stream_os_create(&writer->file_stream); - mz_stream_buffered_create(&writer->buffered_stream); - mz_stream_split_create(&writer->split_stream); - - mz_stream_set_base(writer->buffered_stream, writer->file_stream); - mz_stream_set_base(writer->split_stream, writer->buffered_stream); - - mz_stream_split_set_prop_int64(writer->split_stream, MZ_STREAM_PROP_DISK_SIZE, disk_size); - - err = mz_stream_open(writer->split_stream, path, mode); - if (err == MZ_OK) - err = mz_zip_writer_open_int(handle, writer->split_stream, mode); - - return err; -} - -int32_t mz_zip_writer_open_file_in_memory(void *handle, const char *path) -{ - mz_zip_writer *writer = (mz_zip_writer *)handle; - void *file_stream = NULL; - int64_t file_size = 0; - int32_t err = 0; - - - mz_zip_writer_close(handle); - - mz_stream_os_create(&file_stream); - - err = mz_stream_os_open(file_stream, path, MZ_OPEN_MODE_READ); - - if (err != MZ_OK) - { - mz_stream_os_delete(&file_stream); - mz_zip_writer_close(handle); - return err; - } - - mz_stream_os_seek(file_stream, 0, MZ_SEEK_END); - file_size = mz_stream_os_tell(file_stream); - mz_stream_os_seek(file_stream, 0, MZ_SEEK_SET); - - if ((file_size <= 0) || (file_size > UINT32_MAX)) - { - /* Memory size is too large or too small */ - - mz_stream_os_close(file_stream); - mz_stream_os_delete(&file_stream); - mz_zip_writer_close(handle); - return MZ_MEM_ERROR; - } - - mz_stream_mem_create(&writer->mem_stream); - mz_stream_mem_set_grow_size(writer->mem_stream, (int32_t)file_size); - mz_stream_mem_open(writer->mem_stream, NULL, MZ_OPEN_MODE_CREATE); - - err = mz_stream_copy(writer->mem_stream, file_stream, (int32_t)file_size); - - mz_stream_os_close(file_stream); - mz_stream_os_delete(&file_stream); - - if (err == MZ_OK) - err = mz_zip_writer_open(handle, writer->mem_stream); - if (err != MZ_OK) - mz_zip_writer_close(handle); - - return err; -} - -int32_t mz_zip_writer_close(void *handle) -{ - mz_zip_writer *writer = (mz_zip_writer *)handle; - int32_t err = MZ_OK; - - - if (writer->zip_handle != NULL) - { - mz_zip_set_version_madeby(writer->zip_handle, MZ_VERSION_MADEBY); - if (writer->comment) - mz_zip_set_comment(writer->zip_handle, writer->comment); - if (writer->zip_cd) - mz_zip_writer_zip_cd(writer); - - err = mz_zip_close(writer->zip_handle); - mz_zip_delete(&writer->zip_handle); - } - - if (writer->split_stream != NULL) - { - mz_stream_split_close(writer->split_stream); - mz_stream_split_delete(&writer->split_stream); - } - - if (writer->buffered_stream != NULL) - mz_stream_buffered_delete(&writer->buffered_stream); - - if (writer->file_stream != NULL) - mz_stream_os_delete(&writer->file_stream); - - if (writer->mem_stream != NULL) - { - mz_stream_mem_close(writer->mem_stream); - mz_stream_mem_delete(&writer->mem_stream); - } - - return err; -} - -/***************************************************************************/ - -int32_t mz_zip_writer_entry_open(void *handle, mz_zip_file *file_info) -{ - mz_zip_writer *writer = (mz_zip_writer *)handle; - int32_t err = MZ_OK; - const char *password = NULL; - char password_buf[120]; - - /* Copy file info to access data upon close */ - memcpy(&writer->file_info, file_info, sizeof(mz_zip_file)); - - if (writer->entry_cb != NULL) - writer->entry_cb(handle, writer->entry_userdata, &writer->file_info); - - password = writer->password; - - /* Check if we need a password and ask for it if we need to */ - if ((writer->file_info.flag & MZ_ZIP_FLAG_ENCRYPTED) && (password == NULL) && - (writer->password_cb != NULL)) - { - writer->password_cb(handle, writer->password_userdata, &writer->file_info, - password_buf, sizeof(password_buf)); - password = password_buf; - } - -#ifndef MZ_ZIP_NO_ENCRYPTION - if (mz_zip_attrib_is_dir(writer->file_info.external_fa, writer->file_info.version_madeby) != MZ_OK) - { - /* Start calculating sha256 */ - mz_crypt_sha_create(&writer->sha256); - mz_crypt_sha_set_algorithm(writer->sha256, MZ_HASH_SHA256); - mz_crypt_sha_begin(writer->sha256); - } -#endif - - /* Open entry in zip */ - err = mz_zip_entry_write_open(writer->zip_handle, &writer->file_info, writer->compress_level, - writer->raw, password); - - return err; -} - - -#if !defined(MZ_ZIP_NO_ENCRYPTION) && defined(MZ_ZIP_SIGNING) -int32_t mz_zip_writer_entry_sign(void *handle, uint8_t *message, int32_t message_size, - uint8_t *cert_data, int32_t cert_data_size, const char *cert_pwd) -{ - mz_zip_writer *writer = (mz_zip_writer *)handle; - int32_t err = MZ_OK; - int32_t signature_size = 0; - uint8_t *signature = NULL; - - - if (writer == NULL || cert_data == NULL || cert_data_size <= 0) - return MZ_PARAM_ERROR; - if (mz_zip_entry_is_open(writer->zip_handle) != MZ_OK) - return MZ_PARAM_ERROR; - - /* Sign message with certificate */ - err = mz_crypt_sign(message, message_size, cert_data, cert_data_size, cert_pwd, - &signature, &signature_size); - - if ((err == MZ_OK) && (signature != NULL)) - { - /* Write signature zip extra field */ - err = mz_zip_extrafield_write(writer->file_extra_stream, MZ_ZIP_EXTENSION_SIGN, - (uint16_t)signature_size); - - if (err == MZ_OK) - { - if (mz_stream_write(writer->file_extra_stream, signature, signature_size) != signature_size) - err = MZ_WRITE_ERROR; - } - - MZ_FREE(signature); - } - - return err; -} -#endif - -int32_t mz_zip_writer_entry_close(void *handle) -{ - mz_zip_writer *writer = (mz_zip_writer *)handle; - int32_t err = MZ_OK; -#ifndef MZ_ZIP_NO_ENCRYPTION - const uint8_t *extrafield = NULL; - int32_t extrafield_size = 0; - int16_t field_length_hash = 0; - uint8_t sha256[MZ_HASH_SHA256_SIZE]; - - - if (writer->sha256 != NULL) - { - mz_crypt_sha_end(writer->sha256, sha256, sizeof(sha256)); - mz_crypt_sha_delete(&writer->sha256); - - /* Copy extrafield so we can append our own fields before close */ - mz_stream_mem_create(&writer->file_extra_stream); - mz_stream_mem_open(writer->file_extra_stream, NULL, MZ_OPEN_MODE_CREATE); - - /* Write sha256 hash to extrafield */ - field_length_hash = 4 + MZ_HASH_SHA256_SIZE; - err = mz_zip_extrafield_write(writer->file_extra_stream, MZ_ZIP_EXTENSION_HASH, field_length_hash); - if (err == MZ_OK) - err = mz_stream_write_uint16(writer->file_extra_stream, MZ_HASH_SHA256); - if (err == MZ_OK) - err = mz_stream_write_uint16(writer->file_extra_stream, MZ_HASH_SHA256_SIZE); - if (err == MZ_OK) - { - if (mz_stream_write(writer->file_extra_stream, sha256, sizeof(sha256)) != MZ_HASH_SHA256_SIZE) - err = MZ_WRITE_ERROR; - } - -#ifdef MZ_ZIP_SIGNING - if ((err == MZ_OK) && (writer->cert_data != NULL) && (writer->cert_data_size > 0)) - { - /* Sign entry if not zipping cd or if it is cd being zipped */ - if (!writer->zip_cd || strcmp(writer->file_info.filename, MZ_ZIP_CD_FILENAME) == 0) - { - err = mz_zip_writer_entry_sign(handle, sha256, sizeof(sha256), - writer->cert_data, writer->cert_data_size, writer->cert_pwd); - } - } -#endif - - if ((writer->file_info.extrafield != NULL) && (writer->file_info.extrafield_size > 0)) - mz_stream_mem_write(writer->file_extra_stream, writer->file_info.extrafield, - writer->file_info.extrafield_size); - - /* Update extra field for central directory after adding extra fields */ - mz_stream_mem_get_buffer(writer->file_extra_stream, (const void **)&extrafield); - mz_stream_mem_get_buffer_length(writer->file_extra_stream, &extrafield_size); - - mz_zip_entry_set_extrafield(writer->zip_handle, extrafield, (uint16_t)extrafield_size); - } -#endif - - if (err == MZ_OK) - { - if (writer->raw) - err = mz_zip_entry_close_raw(writer->zip_handle, writer->file_info.uncompressed_size, - writer->file_info.crc); - else - err = mz_zip_entry_close(writer->zip_handle); - } - - if (writer->file_extra_stream != NULL) - mz_stream_mem_delete(&writer->file_extra_stream); - - return err; -} - -int32_t mz_zip_writer_entry_write(void *handle, const void *buf, int32_t len) -{ - mz_zip_writer *writer = (mz_zip_writer *)handle; - int32_t written = 0; - written = mz_zip_entry_write(writer->zip_handle, buf, len); -#ifndef MZ_ZIP_NO_ENCRYPTION - if ((written > 0) && (writer->sha256 != NULL)) - mz_crypt_sha_update(writer->sha256, buf, written); -#endif - return written; -} -/***************************************************************************/ - -int32_t mz_zip_writer_add_process(void *handle, void *stream, mz_stream_read_cb read_cb) -{ - mz_zip_writer *writer = (mz_zip_writer *)handle; - int32_t read = 0; - int32_t written = 0; - int32_t err = MZ_OK; - - if (mz_zip_writer_is_open(writer) != MZ_OK) - return MZ_PARAM_ERROR; - /* If the entry isn't open for writing, open it */ - if (mz_zip_entry_is_open(writer->zip_handle) != MZ_OK) - return MZ_PARAM_ERROR; - if (read_cb == NULL) - return MZ_PARAM_ERROR; - - read = read_cb(stream, writer->buffer, sizeof(writer->buffer)); - if (read == 0) - return MZ_END_OF_STREAM; - if (read < 0) - { - err = read; - return err; - } - - written = mz_zip_writer_entry_write(handle, writer->buffer, read); - if (written != read) - return MZ_WRITE_ERROR; - - return written; -} - -int32_t mz_zip_writer_add(void *handle, void *stream, mz_stream_read_cb read_cb) -{ - mz_zip_writer *writer = (mz_zip_writer *)handle; - uint64_t current_time = 0; - uint64_t update_time = 0; - int64_t current_pos = 0; - int64_t update_pos = 0; - int32_t err = MZ_OK; - int32_t written = 0; - - /* Update the progress at the beginning */ - if (writer->progress_cb != NULL) - writer->progress_cb(handle, writer->progress_userdata, &writer->file_info, current_pos); - - /* Write data to stream until done */ - while (err == MZ_OK) - { - written = mz_zip_writer_add_process(handle, stream, read_cb); - if (written == MZ_END_OF_STREAM) - break; - if (written > 0) - current_pos += written; - if (written < 0) - err = written; - - /* Update progress if enough time have passed */ - current_time = mz_os_ms_time(); - if ((current_time - update_time) > writer->progress_cb_interval_ms) - { - if (writer->progress_cb != NULL) - writer->progress_cb(handle, writer->progress_userdata, &writer->file_info, current_pos); - - update_pos = current_pos; - update_time = current_time; - } - } - - /* Update the progress at the end */ - if (writer->progress_cb != NULL && update_pos != current_pos) - writer->progress_cb(handle, writer->progress_userdata, &writer->file_info, current_pos); - - return err; -} - -int32_t mz_zip_writer_add_info(void *handle, void *stream, mz_stream_read_cb read_cb, mz_zip_file *file_info) -{ - mz_zip_writer *writer = (mz_zip_writer *)handle; - int32_t err = MZ_OK; - - - if (mz_zip_writer_is_open(handle) != MZ_OK) - return MZ_PARAM_ERROR; - if (file_info == NULL) - return MZ_PARAM_ERROR; - - /* Add to zip */ - err = mz_zip_writer_entry_open(handle, file_info); - if (err != MZ_OK) - return err; - - if (stream != NULL) - { - if (mz_zip_attrib_is_dir(writer->file_info.external_fa, writer->file_info.version_madeby) != MZ_OK) - { - err = mz_zip_writer_add(handle, stream, read_cb); - if (err != MZ_OK) - return err; - } - } - - err = mz_zip_writer_entry_close(handle); - - return err; -} - -int32_t mz_zip_writer_add_buffer(void *handle, void *buf, int32_t len, mz_zip_file *file_info) -{ - void *mem_stream = NULL; - int32_t err = MZ_OK; - - if (mz_zip_writer_is_open(handle) != MZ_OK) - return MZ_PARAM_ERROR; - if (buf == NULL) - return MZ_PARAM_ERROR; - - /* Create a memory stream backed by our buffer and add from it */ - mz_stream_mem_create(&mem_stream); - mz_stream_mem_set_buffer(mem_stream, buf, len); - - err = mz_stream_mem_open(mem_stream, NULL, MZ_OPEN_MODE_READ); - if (err == MZ_OK) - err = mz_zip_writer_add_info(handle, mem_stream, mz_stream_mem_read, file_info); - - mz_stream_mem_delete(&mem_stream); - return err; -} - -int32_t mz_zip_writer_add_file(void *handle, const char *path, const char *filename_in_zip) -{ - mz_zip_writer *writer = (mz_zip_writer *)handle; - mz_zip_file file_info; - uint32_t target_attrib = 0; - uint32_t src_attrib = 0; - int32_t err = MZ_OK; - uint8_t src_sys = 0; - void *stream = NULL; - char link_path[1024]; - const char *filename = filename_in_zip; - - - if (mz_zip_writer_is_open(handle) != MZ_OK) - return MZ_PARAM_ERROR; - if (path == NULL) - return MZ_PARAM_ERROR; - - if (filename == NULL) - { - err = mz_path_get_filename(path, &filename); - if (err != MZ_OK) - return err; - } - - memset(&file_info, 0, sizeof(file_info)); - - /* The path name saved, should not include a leading slash. */ - /* If it did, windows/xp and dynazip couldn't read the zip file. */ - - while (filename[0] == '\\' || filename[0] == '/') - filename += 1; - - /* Get information about the file on disk so we can store it in zip */ - - file_info.version_madeby = MZ_VERSION_MADEBY; - file_info.compression_method = writer->compress_method; - file_info.filename = filename; - file_info.uncompressed_size = mz_os_get_file_size(path); - file_info.flag = MZ_ZIP_FLAG_UTF8; - - if (writer->zip_cd) - file_info.flag |= MZ_ZIP_FLAG_MASK_LOCAL_INFO; - if (writer->aes) - file_info.aes_version = MZ_AES_VERSION; - - mz_os_get_file_date(path, &file_info.modified_date, &file_info.accessed_date, - &file_info.creation_date); - mz_os_get_file_attribs(path, &src_attrib); - - src_sys = MZ_HOST_SYSTEM(file_info.version_madeby); - - if ((src_sys != MZ_HOST_SYSTEM_MSDOS) && (src_sys != MZ_HOST_SYSTEM_WINDOWS_NTFS)) - { - /* High bytes are OS specific attributes, low byte is always DOS attributes */ - if (mz_zip_attrib_convert(src_sys, src_attrib, MZ_HOST_SYSTEM_MSDOS, &target_attrib) == MZ_OK) - file_info.external_fa = target_attrib; - file_info.external_fa |= (src_attrib << 16); - } - else - { - file_info.external_fa = src_attrib; - } - - if (writer->store_links && mz_os_is_symlink(path) == MZ_OK) - { - err = mz_os_read_symlink(path, link_path, sizeof(link_path)); - if (err == MZ_OK) - file_info.linkname = link_path; - } - - if (mz_os_is_dir(path) != MZ_OK) - { - mz_stream_os_create(&stream); - err = mz_stream_os_open(stream, path, MZ_OPEN_MODE_READ); - } - - if (err == MZ_OK) - err = mz_zip_writer_add_info(handle, stream, mz_stream_read, &file_info); - - if (stream != NULL) - { - mz_stream_close(stream); - mz_stream_delete(&stream); - } - - return err; -} - -int32_t mz_zip_writer_add_path(void *handle, const char *path, const char *root_path, - uint8_t include_path, uint8_t recursive) -{ - mz_zip_writer *writer = (mz_zip_writer *)handle; - DIR *dir = NULL; - struct dirent *entry = NULL; - int32_t err = MZ_OK; - int16_t is_dir = 0; - const char *filename = NULL; - const char *filenameinzip = path; - char *wildcard_ptr = NULL; - char full_path[1024]; - char path_dir[1024]; - - - if (strrchr(path, '*') != NULL) - { - strncpy(path_dir, path, sizeof(path_dir) - 1); - path_dir[sizeof(path_dir) - 1] = 0; - mz_path_remove_filename(path_dir); - wildcard_ptr = path_dir + strlen(path_dir) + 1; - root_path = path = path_dir; - } - else - { - if (mz_os_is_dir(path) == MZ_OK) - is_dir = 1; - - /* Construct the filename that our file will be stored in the zip as */ - if (root_path == NULL) - root_path = path; - - /* Should the file be stored with any path info at all? */ - if (!include_path) - { - if (!is_dir && root_path == path) - { - if (mz_path_get_filename(filenameinzip, &filename) == MZ_OK) - filenameinzip = filename; - } - else - { - filenameinzip += strlen(root_path); - } - } - - if (!writer->store_links && !writer->follow_links) - { - if (mz_os_is_symlink(path) == MZ_OK) - return err; - } - - if (*filenameinzip != 0) - err = mz_zip_writer_add_file(handle, path, filenameinzip); - - if (!is_dir) - return err; - - if (writer->store_links) - { - if (mz_os_is_symlink(path) == MZ_OK) - return err; - } - } - - dir = mz_os_open_dir(path); - - if (dir == NULL) - return MZ_EXIST_ERROR; - - while ((entry = mz_os_read_dir(dir)) != NULL) - { - if (strcmp(entry->d_name, ".") == 0 || strcmp(entry->d_name, "..") == 0) - continue; - - full_path[0] = 0; - mz_path_combine(full_path, path, sizeof(full_path)); - mz_path_combine(full_path, entry->d_name, sizeof(full_path)); - - if (!recursive && mz_os_is_dir(full_path) == MZ_OK) - continue; - - if ((wildcard_ptr != NULL) && (mz_path_compare_wc(entry->d_name, wildcard_ptr, 1) != MZ_OK)) - continue; - - err = mz_zip_writer_add_path(handle, full_path, root_path, include_path, recursive); - if (err != MZ_OK) - return err; - } - - mz_os_close_dir(dir); - return MZ_OK; -} - -int32_t mz_zip_writer_copy_from_reader(void *handle, void *reader) -{ - mz_zip_writer *writer = (mz_zip_writer *)handle; - mz_zip_file *file_info = NULL; - int64_t compressed_size = 0; - int64_t uncompressed_size = 0; - uint32_t crc32 = 0; - int32_t err = MZ_OK; - uint8_t original_raw = 0; - void *reader_zip_handle = NULL; - void *writer_zip_handle = NULL; - - - if (mz_zip_reader_is_open(reader) != MZ_OK) - return MZ_PARAM_ERROR; - if (mz_zip_writer_is_open(writer) != MZ_OK) - return MZ_PARAM_ERROR; - - err = mz_zip_reader_entry_get_info(reader, &file_info); - - if (err != MZ_OK) - return err; - - mz_zip_reader_get_zip_handle(reader, &reader_zip_handle); - mz_zip_writer_get_zip_handle(writer, &writer_zip_handle); - - /* Open entry for raw reading */ - err = mz_zip_entry_read_open(reader_zip_handle, 1, NULL); - - if (err == MZ_OK) - { - /* Write entry raw, save original raw value */ - original_raw = writer->raw; - writer->raw = 1; - - err = mz_zip_writer_entry_open(writer, file_info); - - if ((err == MZ_OK) && - (mz_zip_attrib_is_dir(writer->file_info.external_fa, writer->file_info.version_madeby) != MZ_OK)) - { - err = mz_zip_writer_add(writer, reader_zip_handle, mz_zip_entry_read); - } - - if (err == MZ_OK) - { - err = mz_zip_entry_read_close(reader_zip_handle, &crc32, &compressed_size, &uncompressed_size); - if (err == MZ_OK) - err = mz_zip_entry_write_close(writer_zip_handle, crc32, compressed_size, uncompressed_size); - } - - if (mz_zip_entry_is_open(reader_zip_handle) == MZ_OK) - mz_zip_entry_close(reader_zip_handle); - - if (mz_zip_entry_is_open(writer_zip_handle) == MZ_OK) - mz_zip_entry_close(writer_zip_handle); - - writer->raw = original_raw; - } - - return err; -} - -/***************************************************************************/ - -void mz_zip_writer_set_password(void *handle, const char *password) -{ - mz_zip_writer *writer = (mz_zip_writer *)handle; - writer->password = password; -} - -void mz_zip_writer_set_comment(void *handle, const char *comment) -{ - mz_zip_writer *writer = (mz_zip_writer *)handle; - writer->comment = comment; -} - -void mz_zip_writer_set_raw(void *handle, uint8_t raw) -{ - mz_zip_writer *writer = (mz_zip_writer *)handle; - writer->raw = raw; -} - -int32_t mz_zip_writer_get_raw(void *handle, uint8_t *raw) -{ - mz_zip_writer *writer = (mz_zip_writer *)handle; - if (raw == NULL) - return MZ_PARAM_ERROR; - *raw = writer->raw; - return MZ_OK; -} - -void mz_zip_writer_set_aes(void *handle, uint8_t aes) -{ - mz_zip_writer *writer = (mz_zip_writer *)handle; - writer->aes = aes; -} - -void mz_zip_writer_set_compress_method(void *handle, uint16_t compress_method) -{ - mz_zip_writer *writer = (mz_zip_writer *)handle; - writer->compress_method = compress_method; -} - -void mz_zip_writer_set_compress_level(void *handle, int16_t compress_level) -{ - mz_zip_writer *writer = (mz_zip_writer *)handle; - writer->compress_level = compress_level; -} - -void mz_zip_writer_set_follow_links(void *handle, uint8_t follow_links) -{ - mz_zip_writer *writer = (mz_zip_writer *)handle; - writer->follow_links = follow_links; -} - -void mz_zip_writer_set_store_links(void *handle, uint8_t store_links) -{ - mz_zip_writer *writer = (mz_zip_writer *)handle; - writer->store_links = store_links; -} - -void mz_zip_writer_set_zip_cd(void *handle, uint8_t zip_cd) -{ - mz_zip_writer *writer = (mz_zip_writer *)handle; - writer->zip_cd = zip_cd; -} - -int32_t mz_zip_writer_set_certificate(void *handle, const char *cert_path, const char *cert_pwd) -{ - mz_zip_writer *writer = (mz_zip_writer *)handle; - void *cert_stream = NULL; - uint8_t *cert_data = NULL; - int32_t cert_data_size = 0; - int32_t err = MZ_OK; - - if (cert_path == NULL) - return MZ_PARAM_ERROR; - - cert_data_size = (int32_t)mz_os_get_file_size(cert_path); - - if (cert_data_size == 0) - return MZ_PARAM_ERROR; - - if (writer->cert_data != NULL) - { - MZ_FREE(writer->cert_data); - writer->cert_data = NULL; - } - - cert_data = (uint8_t *)MZ_ALLOC(cert_data_size); - - /* Read pkcs12 certificate from disk */ - mz_stream_os_create(&cert_stream); - err = mz_stream_os_open(cert_stream, cert_path, MZ_OPEN_MODE_READ); - if (err == MZ_OK) - { - if (mz_stream_os_read(cert_stream, cert_data, cert_data_size) != cert_data_size) - err = MZ_READ_ERROR; - mz_stream_os_close(cert_stream); - } - mz_stream_os_delete(&cert_stream); - - if (err == MZ_OK) - { - writer->cert_data = cert_data; - writer->cert_data_size = cert_data_size; - writer->cert_pwd = cert_pwd; - } - else - { - MZ_FREE(cert_data); - } - - return err; -} - -void mz_zip_writer_set_overwrite_cb(void *handle, void *userdata, mz_zip_writer_overwrite_cb cb) -{ - mz_zip_writer *writer = (mz_zip_writer *)handle; - writer->overwrite_cb = cb; - writer->overwrite_userdata = userdata; -} - -void mz_zip_writer_set_password_cb(void *handle, void *userdata, mz_zip_writer_password_cb cb) -{ - mz_zip_writer *writer = (mz_zip_writer *)handle; - writer->password_cb = cb; - writer->password_userdata = userdata; -} - -void mz_zip_writer_set_progress_cb(void *handle, void *userdata, mz_zip_writer_progress_cb cb) -{ - mz_zip_writer *writer = (mz_zip_writer *)handle; - writer->progress_cb = cb; - writer->progress_userdata = userdata; -} - -void mz_zip_writer_set_progress_interval(void *handle, uint32_t milliseconds) -{ - mz_zip_writer *writer = (mz_zip_writer *)handle; - writer->progress_cb_interval_ms = milliseconds; -} - -void mz_zip_writer_set_entry_cb(void *handle, void *userdata, mz_zip_writer_entry_cb cb) -{ - mz_zip_writer *writer = (mz_zip_writer *)handle; - writer->entry_cb = cb; - writer->entry_userdata = userdata; -} - -int32_t mz_zip_writer_get_zip_handle(void *handle, void **zip_handle) -{ - mz_zip_writer *writer = (mz_zip_writer *)handle; - if (zip_handle == NULL) - return MZ_PARAM_ERROR; - *zip_handle = writer->zip_handle; - if (*zip_handle == NULL) - return MZ_EXIST_ERROR; - return MZ_OK; -} - -/***************************************************************************/ - -void *mz_zip_writer_create(void **handle) -{ - mz_zip_writer *writer = NULL; - - writer = (mz_zip_writer *)MZ_ALLOC(sizeof(mz_zip_writer)); - if (writer != NULL) - { - memset(writer, 0, sizeof(mz_zip_writer)); -#if defined(HAVE_WZAES) - writer->aes = 1; -#endif -#if defined(HAVE_ZLIB) || defined(HAVE_LIBCOMP) - writer->compress_method = MZ_COMPRESS_METHOD_DEFLATE; -#elif defined(HAVE_BZIP2) - writer->compress_method = MZ_COMPRESS_METHOD_BZIP2; -#elif defined(HAVE_LZMA) - writer->compress_method = MZ_COMPRESS_METHOD_LZMA; -#else - writer->compress_method = MZ_COMPRESS_METHOD_STORE; -#endif - writer->compress_level = MZ_COMPRESS_LEVEL_BEST; - writer->progress_cb_interval_ms = MZ_DEFAULT_PROGRESS_INTERVAL; - - *handle = writer; - } - - return writer; -} - -void mz_zip_writer_delete(void **handle) -{ - mz_zip_writer *writer = NULL; - if (handle == NULL) - return; - writer = (mz_zip_writer *)*handle; - if (writer != NULL) - { - mz_zip_writer_close(writer); - - if (writer->cert_data != NULL) - MZ_FREE(writer->cert_data); - - writer->cert_data = NULL; - writer->cert_data_size = 0; - - MZ_FREE(writer); - } - *handle = NULL; -} - -/***************************************************************************/ diff --git a/Pods/SSZipArchive/SSZipArchive/minizip/mz_zip_rw.h b/Pods/SSZipArchive/SSZipArchive/minizip/mz_zip_rw.h deleted file mode 100644 index 1998b17a6..000000000 --- a/Pods/SSZipArchive/SSZipArchive/minizip/mz_zip_rw.h +++ /dev/null @@ -1,283 +0,0 @@ -/* mz_zip_rw.h -- Zip reader/writer - Version 2.9.2, February 12, 2020 - part of the MiniZip project - - Copyright (C) 2010-2020 Nathan Moinvaziri - https://github.com/nmoinvaz/minizip - - This program is distributed under the terms of the same license as zlib. - See the accompanying LICENSE file for the full text of the license. -*/ - -#ifndef MZ_ZIP_RW_H -#define MZ_ZIP_RW_H - -#ifdef __cplusplus -extern "C" { -#endif - -/***************************************************************************/ - -typedef int32_t (*mz_zip_reader_overwrite_cb)(void *handle, void *userdata, mz_zip_file *file_info, const char *path); -typedef int32_t (*mz_zip_reader_password_cb)(void *handle, void *userdata, mz_zip_file *file_info, char *password, int32_t max_password); -typedef int32_t (*mz_zip_reader_progress_cb)(void *handle, void *userdata, mz_zip_file *file_info, int64_t position); -typedef int32_t (*mz_zip_reader_entry_cb)(void *handle, void *userdata, mz_zip_file *file_info, const char *path); - -/***************************************************************************/ - -int32_t mz_zip_reader_is_open(void *handle); -/* Checks to see if the zip file is open */ - -int32_t mz_zip_reader_open(void *handle, void *stream); -/* Opens zip file from stream */ - -int32_t mz_zip_reader_open_file(void *handle, const char *path); -/* Opens zip file from a file path */ - -int32_t mz_zip_reader_open_file_in_memory(void *handle, const char *path); -/* Opens zip file from a file path into memory for faster access */ - -int32_t mz_zip_reader_open_buffer(void *handle, uint8_t *buf, int32_t len, uint8_t copy); -/* Opens zip file from memory buffer */ - -int32_t mz_zip_reader_close(void *handle); -/* Closes the zip file */ - -/***************************************************************************/ - -int32_t mz_zip_reader_unzip_cd(void *handle); -/* Unzip the central directory */ - -/***************************************************************************/ - -int32_t mz_zip_reader_goto_first_entry(void *handle); -/* Goto the first entry in the zip file that matches the pattern */ - -int32_t mz_zip_reader_goto_next_entry(void *handle); -/* Goto the next entry in the zip file that matches the pattern */ - -int32_t mz_zip_reader_locate_entry(void *handle, const char *filename, uint8_t ignore_case); -/* Locates an entry by filename */ - -int32_t mz_zip_reader_entry_open(void *handle); -/* Opens an entry for reading */ - -int32_t mz_zip_reader_entry_close(void *handle); -/* Closes an entry */ - -int32_t mz_zip_reader_entry_read(void *handle, void *buf, int32_t len); -/* Reads and entry after being opened */ - -int32_t mz_zip_reader_entry_has_sign(void *handle); -/* Checks to see if the entry has a signature */ - -int32_t mz_zip_reader_entry_sign_verify(void *handle); -/* Verifies a signature stored with the entry */ - -int32_t mz_zip_reader_entry_get_hash(void *handle, uint16_t algorithm, uint8_t *digest, int32_t digest_size); -/* Gets a hash algorithm from the entry's extra field */ - -int32_t mz_zip_reader_entry_get_first_hash(void *handle, uint16_t *algorithm, uint16_t *digest_size); -/* Gets the most secure hash algorithm from the entry's extra field */ - -int32_t mz_zip_reader_entry_get_info(void *handle, mz_zip_file **file_info); -/* Gets the current entry file info */ - -int32_t mz_zip_reader_entry_is_dir(void *handle); -/* Gets the current entry is a directory */ - -int32_t mz_zip_reader_entry_save(void *handle, void *stream, mz_stream_write_cb write_cb); -/* Save the current entry to a steam */ - -int32_t mz_zip_reader_entry_save_process(void *handle, void *stream, mz_stream_write_cb write_cb); -/* Saves a portion of the current entry to a stream callback */ - -int32_t mz_zip_reader_entry_save_file(void *handle, const char *path); -/* Save the current entry to a file */ - -int32_t mz_zip_reader_entry_save_buffer(void *handle, void *buf, int32_t len); -/* Save the current entry to a memory buffer */ - -int32_t mz_zip_reader_entry_save_buffer_length(void *handle); -/* Gets the length of the buffer required to save */ - -/***************************************************************************/ - -int32_t mz_zip_reader_save_all(void *handle, const char *destination_dir); -/* Save all files into a directory */ - -/***************************************************************************/ - -void mz_zip_reader_set_pattern(void *handle, const char *pattern, uint8_t ignore_case); -/* Sets the match pattern for entries in the zip file, if null all entries are matched */ - -void mz_zip_reader_set_password(void *handle, const char *password); -/* Sets the password required for extraction */ - -void mz_zip_reader_set_raw(void *handle, uint8_t raw); -/* Sets whether or not it should save the entry raw */ - -int32_t mz_zip_reader_get_raw(void *handle, uint8_t *raw); -/* Gets whether or not it should save the entry raw */ - -int32_t mz_zip_reader_get_zip_cd(void *handle, uint8_t *zip_cd); -/* Gets whether or not the archive has a zipped central directory */ - -int32_t mz_zip_reader_get_comment(void *handle, const char **comment); -/* Gets the comment for the central directory */ - -void mz_zip_reader_set_encoding(void *handle, int32_t encoding); -/* Sets whether or not it should support a special character encoding in zip file names. */ - -void mz_zip_reader_set_sign_required(void *handle, uint8_t sign_required); -/* Sets whether or not it a signature is required */ - -void mz_zip_reader_set_overwrite_cb(void *handle, void *userdata, mz_zip_reader_overwrite_cb cb); -/* Callback for what to do when a file is being overwritten */ - -void mz_zip_reader_set_password_cb(void *handle, void *userdata, mz_zip_reader_password_cb cb); -/* Callback for when a password is required and hasn't been set */ - -void mz_zip_reader_set_progress_cb(void *handle, void *userdata, mz_zip_reader_progress_cb cb); -/* Callback for extraction progress */ - -void mz_zip_reader_set_progress_interval(void *handle, uint32_t milliseconds); -/* Let at least milliseconds pass between calls to progress callback */ - -void mz_zip_reader_set_entry_cb(void *handle, void *userdata, mz_zip_reader_entry_cb cb); -/* Callback for zip file entries */ - -int32_t mz_zip_reader_get_zip_handle(void *handle, void **zip_handle); -/* Gets the underlying zip instance handle */ - -void* mz_zip_reader_create(void **handle); -/* Create new instance of zip reader */ - -void mz_zip_reader_delete(void **handle); -/* Delete instance of zip reader */ - -/***************************************************************************/ - -typedef int32_t (*mz_zip_writer_overwrite_cb)(void *handle, void *userdata, const char *path); -typedef int32_t (*mz_zip_writer_password_cb)(void *handle, void *userdata, mz_zip_file *file_info, char *password, int32_t max_password); -typedef int32_t (*mz_zip_writer_progress_cb)(void *handle, void *userdata, mz_zip_file *file_info, int64_t position); -typedef int32_t (*mz_zip_writer_entry_cb)(void *handle, void *userdata, mz_zip_file *file_info); - -/***************************************************************************/ - -int32_t mz_zip_writer_is_open(void *handle); -/* Checks to see if the zip file is open */ - -int32_t mz_zip_writer_open(void *handle, void *stream); -/* Opens zip file from stream */ - -int32_t mz_zip_writer_open_file(void *handle, const char *path, int64_t disk_size, uint8_t append); -/* Opens zip file from a file path */ - -int32_t mz_zip_writer_open_file_in_memory(void *handle, const char *path); -/* Opens zip file from a file path into memory for faster access */ - -int32_t mz_zip_writer_close(void *handle); -/* Closes the zip file */ - -/***************************************************************************/ - -int32_t mz_zip_writer_entry_open(void *handle, mz_zip_file *file_info); -/* Opens an entry in the zip file for writing */ - -int32_t mz_zip_writer_entry_close(void *handle); -/* Closes entry in zip file */ - -int32_t mz_zip_writer_entry_write(void *handle, const void *buf, int32_t len); -/* Writes data into entry for zip */ - -/***************************************************************************/ - -int32_t mz_zip_writer_add(void *handle, void *stream, mz_stream_read_cb read_cb); -/* Writes all data to the currently open entry in the zip */ - -int32_t mz_zip_writer_add_process(void *handle, void *stream, mz_stream_read_cb read_cb); -/* Writes a portion of data to the currently open entry in the zip */ - -int32_t mz_zip_writer_add_info(void *handle, void *stream, mz_stream_read_cb read_cb, mz_zip_file *file_info); -/* Adds an entry to the zip based on the info */ - -int32_t mz_zip_writer_add_buffer(void *handle, void *buf, int32_t len, mz_zip_file *file_info); -/* Adds an entry to the zip with a memory buffer */ - -int32_t mz_zip_writer_add_file(void *handle, const char *path, const char *filename_in_zip); -/* Adds an entry to the zip from a file */ - -int32_t mz_zip_writer_add_path(void *handle, const char *path, const char *root_path, uint8_t include_path, - uint8_t recursive); -/* Enumerates a directory or pattern and adds entries to the zip */ - -int32_t mz_zip_writer_copy_from_reader(void *handle, void *reader); -/* Adds an entry from a zip reader instance */ - -/***************************************************************************/ - -void mz_zip_writer_set_password(void *handle, const char *password); -/* Password to use for encrypting files in the zip */ - -void mz_zip_writer_set_comment(void *handle, const char *comment); -/* Comment to use for the archive */ - -void mz_zip_writer_set_raw(void *handle, uint8_t raw); -/* Sets whether or not we should write the entry raw */ - -int32_t mz_zip_writer_get_raw(void *handle, uint8_t *raw); -/* Gets whether or not we should write the entry raw */ - -void mz_zip_writer_set_aes(void *handle, uint8_t aes); -/* Use aes encryption when adding files in zip */ - -void mz_zip_writer_set_compress_method(void *handle, uint16_t compress_method); -/* Sets the compression method when adding files in zip */ - -void mz_zip_writer_set_compress_level(void *handle, int16_t compress_level); -/* Sets the compression level when adding files in zip */ - -void mz_zip_writer_set_follow_links(void *handle, uint8_t follow_links); -/* Follow symbolic links when traversing directories and files to add */ - -void mz_zip_writer_set_store_links(void *handle, uint8_t store_links); -/* Store symbolic links in zip file */ - -void mz_zip_writer_set_zip_cd(void *handle, uint8_t zip_cd); -/* Sets whether or not central directory should be zipped */ - -int32_t mz_zip_writer_set_certificate(void *handle, const char *cert_path, const char *cert_pwd); -/* Sets the certificate and timestamp url to use for signing when adding files in zip */ - -void mz_zip_writer_set_overwrite_cb(void *handle, void *userdata, mz_zip_writer_overwrite_cb cb); -/* Callback for what to do when zip file already exists */ - -void mz_zip_writer_set_password_cb(void *handle, void *userdata, mz_zip_writer_password_cb cb); -/* Callback for ask if a password is required for adding */ - -void mz_zip_writer_set_progress_cb(void *handle, void *userdata, mz_zip_writer_progress_cb cb); -/* Callback for compression progress */ - -void mz_zip_writer_set_progress_interval(void *handle, uint32_t milliseconds); -/* Let at least milliseconds pass between calls to progress callback */ - -void mz_zip_writer_set_entry_cb(void *handle, void *userdata, mz_zip_writer_entry_cb cb); -/* Callback for zip file entries */ - -int32_t mz_zip_writer_get_zip_handle(void *handle, void **zip_handle); -/* Gets the underlying zip handle */ - -void* mz_zip_writer_create(void **handle); -/* Create new instance of zip writer */ - -void mz_zip_writer_delete(void **handle); -/* Delete instance of zip writer */ - -/***************************************************************************/ - -#ifdef __cplusplus -} -#endif - -#endif diff --git a/Pods/Target Support Files/Pods-Easydict/Pods-Easydict-acknowledgements.markdown b/Pods/Target Support Files/Pods-Easydict/Pods-Easydict-acknowledgements.markdown index df5be1557..d7e829992 100644 --- a/Pods/Target Support Files/Pods-Easydict/Pods-Easydict-acknowledgements.markdown +++ b/Pods/Target Support Files/Pods-Easydict/Pods-Easydict-acknowledgements.markdown @@ -192,30 +192,6 @@ IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. -## SSZipArchive - -Copyright (c) 2010-2015, Sam Soffes, https://soff.es - -Permission is hereby granted, free of charge, to any person obtaining -a copy of this software and associated documentation files (the -"Software"), to deal in the Software without restriction, including -without limitation the rights to use, copy, modify, merge, publish, -distribute, sublicense, and/or sell copies of the Software, and to -permit persons to whom the Software is furnished to do so, subject to -the following conditions: - -The above copyright notice and this permission notice shall be -included in all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE -LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION -OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION -WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. - - ## SwiftFormat MIT License diff --git a/Pods/Target Support Files/Pods-Easydict/Pods-Easydict-acknowledgements.plist b/Pods/Target Support Files/Pods-Easydict/Pods-Easydict-acknowledgements.plist index 51a5fd36e..42c9a96de 100644 --- a/Pods/Target Support Files/Pods-Easydict/Pods-Easydict-acknowledgements.plist +++ b/Pods/Target Support Files/Pods-Easydict/Pods-Easydict-acknowledgements.plist @@ -251,36 +251,6 @@ CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. Type PSGroupSpecifier - - FooterText - Copyright (c) 2010-2015, Sam Soffes, https://soff.es - -Permission is hereby granted, free of charge, to any person obtaining -a copy of this software and associated documentation files (the -"Software"), to deal in the Software without restriction, including -without limitation the rights to use, copy, modify, merge, publish, -distribute, sublicense, and/or sell copies of the Software, and to -permit persons to whom the Software is furnished to do so, subject to -the following conditions: - -The above copyright notice and this permission notice shall be -included in all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE -LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION -OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION -WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. - - License - MIT - Title - SSZipArchive - Type - PSGroupSpecifier - FooterText MIT License diff --git a/Pods/Target Support Files/Pods-Easydict/Pods-Easydict-frameworks-Debug-input-files.xcfilelist b/Pods/Target Support Files/Pods-Easydict/Pods-Easydict-frameworks-Debug-input-files.xcfilelist index 96f2dd565..e0a7907dc 100644 --- a/Pods/Target Support Files/Pods-Easydict/Pods-Easydict-frameworks-Debug-input-files.xcfilelist +++ b/Pods/Target Support Files/Pods-Easydict/Pods-Easydict-frameworks-Debug-input-files.xcfilelist @@ -6,5 +6,4 @@ ${BUILT_PRODUCTS_DIR}/MASPreferences/MASPreferences.framework ${BUILT_PRODUCTS_DIR}/MASShortcut/MASShortcut.framework ${BUILT_PRODUCTS_DIR}/MJExtension/MJExtension.framework ${BUILT_PRODUCTS_DIR}/Masonry/Masonry.framework -${BUILT_PRODUCTS_DIR}/ReactiveObjC/ReactiveObjC.framework -${BUILT_PRODUCTS_DIR}/SSZipArchive/SSZipArchive.framework \ No newline at end of file +${BUILT_PRODUCTS_DIR}/ReactiveObjC/ReactiveObjC.framework \ No newline at end of file diff --git a/Pods/Target Support Files/Pods-Easydict/Pods-Easydict-frameworks-Debug-output-files.xcfilelist b/Pods/Target Support Files/Pods-Easydict/Pods-Easydict-frameworks-Debug-output-files.xcfilelist index a749c237d..3db1bbc69 100644 --- a/Pods/Target Support Files/Pods-Easydict/Pods-Easydict-frameworks-Debug-output-files.xcfilelist +++ b/Pods/Target Support Files/Pods-Easydict/Pods-Easydict-frameworks-Debug-output-files.xcfilelist @@ -5,5 +5,4 @@ ${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/MASPreferences.framework ${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/MASShortcut.framework ${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/MJExtension.framework ${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/Masonry.framework -${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/ReactiveObjC.framework -${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/SSZipArchive.framework \ No newline at end of file +${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/ReactiveObjC.framework \ No newline at end of file diff --git a/Pods/Target Support Files/Pods-Easydict/Pods-Easydict-frameworks-Release-input-files.xcfilelist b/Pods/Target Support Files/Pods-Easydict/Pods-Easydict-frameworks-Release-input-files.xcfilelist index 96f2dd565..e0a7907dc 100644 --- a/Pods/Target Support Files/Pods-Easydict/Pods-Easydict-frameworks-Release-input-files.xcfilelist +++ b/Pods/Target Support Files/Pods-Easydict/Pods-Easydict-frameworks-Release-input-files.xcfilelist @@ -6,5 +6,4 @@ ${BUILT_PRODUCTS_DIR}/MASPreferences/MASPreferences.framework ${BUILT_PRODUCTS_DIR}/MASShortcut/MASShortcut.framework ${BUILT_PRODUCTS_DIR}/MJExtension/MJExtension.framework ${BUILT_PRODUCTS_DIR}/Masonry/Masonry.framework -${BUILT_PRODUCTS_DIR}/ReactiveObjC/ReactiveObjC.framework -${BUILT_PRODUCTS_DIR}/SSZipArchive/SSZipArchive.framework \ No newline at end of file +${BUILT_PRODUCTS_DIR}/ReactiveObjC/ReactiveObjC.framework \ No newline at end of file diff --git a/Pods/Target Support Files/Pods-Easydict/Pods-Easydict-frameworks-Release-output-files.xcfilelist b/Pods/Target Support Files/Pods-Easydict/Pods-Easydict-frameworks-Release-output-files.xcfilelist index a749c237d..3db1bbc69 100644 --- a/Pods/Target Support Files/Pods-Easydict/Pods-Easydict-frameworks-Release-output-files.xcfilelist +++ b/Pods/Target Support Files/Pods-Easydict/Pods-Easydict-frameworks-Release-output-files.xcfilelist @@ -5,5 +5,4 @@ ${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/MASPreferences.framework ${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/MASShortcut.framework ${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/MJExtension.framework ${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/Masonry.framework -${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/ReactiveObjC.framework -${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/SSZipArchive.framework \ No newline at end of file +${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/ReactiveObjC.framework \ No newline at end of file diff --git a/Pods/Target Support Files/Pods-Easydict/Pods-Easydict-frameworks.sh b/Pods/Target Support Files/Pods-Easydict/Pods-Easydict-frameworks.sh index 4b78f241c..1486d8105 100755 --- a/Pods/Target Support Files/Pods-Easydict/Pods-Easydict-frameworks.sh +++ b/Pods/Target Support Files/Pods-Easydict/Pods-Easydict-frameworks.sh @@ -184,7 +184,6 @@ if [[ "$CONFIGURATION" == "Debug" ]]; then install_framework "${BUILT_PRODUCTS_DIR}/MJExtension/MJExtension.framework" install_framework "${BUILT_PRODUCTS_DIR}/Masonry/Masonry.framework" install_framework "${BUILT_PRODUCTS_DIR}/ReactiveObjC/ReactiveObjC.framework" - install_framework "${BUILT_PRODUCTS_DIR}/SSZipArchive/SSZipArchive.framework" fi if [[ "$CONFIGURATION" == "Release" ]]; then install_framework "${BUILT_PRODUCTS_DIR}/AFNetworking/AFNetworking.framework" @@ -195,7 +194,6 @@ if [[ "$CONFIGURATION" == "Release" ]]; then install_framework "${BUILT_PRODUCTS_DIR}/MJExtension/MJExtension.framework" install_framework "${BUILT_PRODUCTS_DIR}/Masonry/Masonry.framework" install_framework "${BUILT_PRODUCTS_DIR}/ReactiveObjC/ReactiveObjC.framework" - install_framework "${BUILT_PRODUCTS_DIR}/SSZipArchive/SSZipArchive.framework" fi if [ "${COCOAPODS_PARALLEL_CODE_SIGN}" == "true" ]; then wait diff --git a/Pods/Target Support Files/Pods-Easydict/Pods-Easydict.debug.xcconfig b/Pods/Target Support Files/Pods-Easydict/Pods-Easydict.debug.xcconfig index ec117cd28..72f7b67c1 100644 --- a/Pods/Target Support Files/Pods-Easydict/Pods-Easydict.debug.xcconfig +++ b/Pods/Target Support Files/Pods-Easydict/Pods-Easydict.debug.xcconfig @@ -1,12 +1,12 @@ ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO -FRAMEWORK_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/AFNetworking" "${PODS_CONFIGURATION_BUILD_DIR}/JLRoutes" "${PODS_CONFIGURATION_BUILD_DIR}/KVOController" "${PODS_CONFIGURATION_BUILD_DIR}/MASPreferences" "${PODS_CONFIGURATION_BUILD_DIR}/MASShortcut" "${PODS_CONFIGURATION_BUILD_DIR}/MJExtension" "${PODS_CONFIGURATION_BUILD_DIR}/Masonry" "${PODS_CONFIGURATION_BUILD_DIR}/ReactiveObjC" "${PODS_CONFIGURATION_BUILD_DIR}/SSZipArchive" +FRAMEWORK_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/AFNetworking" "${PODS_CONFIGURATION_BUILD_DIR}/JLRoutes" "${PODS_CONFIGURATION_BUILD_DIR}/KVOController" "${PODS_CONFIGURATION_BUILD_DIR}/MASPreferences" "${PODS_CONFIGURATION_BUILD_DIR}/MASShortcut" "${PODS_CONFIGURATION_BUILD_DIR}/MJExtension" "${PODS_CONFIGURATION_BUILD_DIR}/Masonry" "${PODS_CONFIGURATION_BUILD_DIR}/ReactiveObjC" GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 -HEADER_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/AFNetworking/AFNetworking.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/JLRoutes/JLRoutes.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/KVOController/KVOController.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/MASPreferences/MASPreferences.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/MASShortcut/MASShortcut.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/MJExtension/MJExtension.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/Masonry/Masonry.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/ReactiveObjC/ReactiveObjC.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/SSZipArchive/SSZipArchive.framework/Headers" +HEADER_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/AFNetworking/AFNetworking.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/JLRoutes/JLRoutes.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/KVOController/KVOController.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/MASPreferences/MASPreferences.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/MASShortcut/MASShortcut.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/MJExtension/MJExtension.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/Masonry/Masonry.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/ReactiveObjC/ReactiveObjC.framework/Headers" LD_RUNPATH_SEARCH_PATHS = $(inherited) /usr/lib/swift '@executable_path/../Frameworks' '@loader_path/Frameworks' "${TOOLCHAIN_DIR}/usr/lib/swift/${PLATFORM_NAME}" LIBRARY_SEARCH_PATHS = $(inherited) "${TOOLCHAIN_DIR}/usr/lib/swift/${PLATFORM_NAME}" /usr/lib/swift -OTHER_CFLAGS = $(inherited) -isystem "${PODS_CONFIGURATION_BUILD_DIR}/AFNetworking/AFNetworking.framework/Headers" -isystem "${PODS_CONFIGURATION_BUILD_DIR}/JLRoutes/JLRoutes.framework/Headers" -isystem "${PODS_CONFIGURATION_BUILD_DIR}/KVOController/KVOController.framework/Headers" -isystem "${PODS_CONFIGURATION_BUILD_DIR}/MASPreferences/MASPreferences.framework/Headers" -isystem "${PODS_CONFIGURATION_BUILD_DIR}/MASShortcut/MASShortcut.framework/Headers" -isystem "${PODS_CONFIGURATION_BUILD_DIR}/MJExtension/MJExtension.framework/Headers" -isystem "${PODS_CONFIGURATION_BUILD_DIR}/Masonry/Masonry.framework/Headers" -isystem "${PODS_CONFIGURATION_BUILD_DIR}/ReactiveObjC/ReactiveObjC.framework/Headers" -isystem "${PODS_CONFIGURATION_BUILD_DIR}/SSZipArchive/SSZipArchive.framework/Headers" -iframework "${PODS_CONFIGURATION_BUILD_DIR}/AFNetworking" -iframework "${PODS_CONFIGURATION_BUILD_DIR}/JLRoutes" -iframework "${PODS_CONFIGURATION_BUILD_DIR}/KVOController" -iframework "${PODS_CONFIGURATION_BUILD_DIR}/MASPreferences" -iframework "${PODS_CONFIGURATION_BUILD_DIR}/MASShortcut" -iframework "${PODS_CONFIGURATION_BUILD_DIR}/MJExtension" -iframework "${PODS_CONFIGURATION_BUILD_DIR}/Masonry" -iframework "${PODS_CONFIGURATION_BUILD_DIR}/ReactiveObjC" -iframework "${PODS_CONFIGURATION_BUILD_DIR}/SSZipArchive" -OTHER_LDFLAGS = $(inherited) -l"iconv" -l"z" -framework "AFNetworking" -framework "AppKit" -framework "Carbon" -framework "CoreServices" -framework "Foundation" -framework "JLRoutes" -framework "KVOController" -framework "MASPreferences" -framework "MASShortcut" -framework "MJExtension" -framework "Masonry" -framework "ReactiveObjC" -framework "SSZipArchive" -framework "Security" -framework "SystemConfiguration" +OTHER_CFLAGS = $(inherited) -isystem "${PODS_CONFIGURATION_BUILD_DIR}/AFNetworking/AFNetworking.framework/Headers" -isystem "${PODS_CONFIGURATION_BUILD_DIR}/JLRoutes/JLRoutes.framework/Headers" -isystem "${PODS_CONFIGURATION_BUILD_DIR}/KVOController/KVOController.framework/Headers" -isystem "${PODS_CONFIGURATION_BUILD_DIR}/MASPreferences/MASPreferences.framework/Headers" -isystem "${PODS_CONFIGURATION_BUILD_DIR}/MASShortcut/MASShortcut.framework/Headers" -isystem "${PODS_CONFIGURATION_BUILD_DIR}/MJExtension/MJExtension.framework/Headers" -isystem "${PODS_CONFIGURATION_BUILD_DIR}/Masonry/Masonry.framework/Headers" -isystem "${PODS_CONFIGURATION_BUILD_DIR}/ReactiveObjC/ReactiveObjC.framework/Headers" -iframework "${PODS_CONFIGURATION_BUILD_DIR}/AFNetworking" -iframework "${PODS_CONFIGURATION_BUILD_DIR}/JLRoutes" -iframework "${PODS_CONFIGURATION_BUILD_DIR}/KVOController" -iframework "${PODS_CONFIGURATION_BUILD_DIR}/MASPreferences" -iframework "${PODS_CONFIGURATION_BUILD_DIR}/MASShortcut" -iframework "${PODS_CONFIGURATION_BUILD_DIR}/MJExtension" -iframework "${PODS_CONFIGURATION_BUILD_DIR}/Masonry" -iframework "${PODS_CONFIGURATION_BUILD_DIR}/ReactiveObjC" +OTHER_LDFLAGS = $(inherited) -framework "AFNetworking" -framework "AppKit" -framework "Carbon" -framework "CoreServices" -framework "Foundation" -framework "JLRoutes" -framework "KVOController" -framework "MASPreferences" -framework "MASShortcut" -framework "MJExtension" -framework "Masonry" -framework "ReactiveObjC" -framework "Security" -framework "SystemConfiguration" OTHER_SWIFT_FLAGS = $(inherited) -D COCOAPODS PODS_BUILD_DIR = ${BUILD_DIR} PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) diff --git a/Pods/Target Support Files/Pods-Easydict/Pods-Easydict.release.xcconfig b/Pods/Target Support Files/Pods-Easydict/Pods-Easydict.release.xcconfig index ec117cd28..72f7b67c1 100644 --- a/Pods/Target Support Files/Pods-Easydict/Pods-Easydict.release.xcconfig +++ b/Pods/Target Support Files/Pods-Easydict/Pods-Easydict.release.xcconfig @@ -1,12 +1,12 @@ ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO -FRAMEWORK_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/AFNetworking" "${PODS_CONFIGURATION_BUILD_DIR}/JLRoutes" "${PODS_CONFIGURATION_BUILD_DIR}/KVOController" "${PODS_CONFIGURATION_BUILD_DIR}/MASPreferences" "${PODS_CONFIGURATION_BUILD_DIR}/MASShortcut" "${PODS_CONFIGURATION_BUILD_DIR}/MJExtension" "${PODS_CONFIGURATION_BUILD_DIR}/Masonry" "${PODS_CONFIGURATION_BUILD_DIR}/ReactiveObjC" "${PODS_CONFIGURATION_BUILD_DIR}/SSZipArchive" +FRAMEWORK_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/AFNetworking" "${PODS_CONFIGURATION_BUILD_DIR}/JLRoutes" "${PODS_CONFIGURATION_BUILD_DIR}/KVOController" "${PODS_CONFIGURATION_BUILD_DIR}/MASPreferences" "${PODS_CONFIGURATION_BUILD_DIR}/MASShortcut" "${PODS_CONFIGURATION_BUILD_DIR}/MJExtension" "${PODS_CONFIGURATION_BUILD_DIR}/Masonry" "${PODS_CONFIGURATION_BUILD_DIR}/ReactiveObjC" GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 -HEADER_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/AFNetworking/AFNetworking.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/JLRoutes/JLRoutes.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/KVOController/KVOController.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/MASPreferences/MASPreferences.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/MASShortcut/MASShortcut.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/MJExtension/MJExtension.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/Masonry/Masonry.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/ReactiveObjC/ReactiveObjC.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/SSZipArchive/SSZipArchive.framework/Headers" +HEADER_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/AFNetworking/AFNetworking.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/JLRoutes/JLRoutes.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/KVOController/KVOController.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/MASPreferences/MASPreferences.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/MASShortcut/MASShortcut.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/MJExtension/MJExtension.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/Masonry/Masonry.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/ReactiveObjC/ReactiveObjC.framework/Headers" LD_RUNPATH_SEARCH_PATHS = $(inherited) /usr/lib/swift '@executable_path/../Frameworks' '@loader_path/Frameworks' "${TOOLCHAIN_DIR}/usr/lib/swift/${PLATFORM_NAME}" LIBRARY_SEARCH_PATHS = $(inherited) "${TOOLCHAIN_DIR}/usr/lib/swift/${PLATFORM_NAME}" /usr/lib/swift -OTHER_CFLAGS = $(inherited) -isystem "${PODS_CONFIGURATION_BUILD_DIR}/AFNetworking/AFNetworking.framework/Headers" -isystem "${PODS_CONFIGURATION_BUILD_DIR}/JLRoutes/JLRoutes.framework/Headers" -isystem "${PODS_CONFIGURATION_BUILD_DIR}/KVOController/KVOController.framework/Headers" -isystem "${PODS_CONFIGURATION_BUILD_DIR}/MASPreferences/MASPreferences.framework/Headers" -isystem "${PODS_CONFIGURATION_BUILD_DIR}/MASShortcut/MASShortcut.framework/Headers" -isystem "${PODS_CONFIGURATION_BUILD_DIR}/MJExtension/MJExtension.framework/Headers" -isystem "${PODS_CONFIGURATION_BUILD_DIR}/Masonry/Masonry.framework/Headers" -isystem "${PODS_CONFIGURATION_BUILD_DIR}/ReactiveObjC/ReactiveObjC.framework/Headers" -isystem "${PODS_CONFIGURATION_BUILD_DIR}/SSZipArchive/SSZipArchive.framework/Headers" -iframework "${PODS_CONFIGURATION_BUILD_DIR}/AFNetworking" -iframework "${PODS_CONFIGURATION_BUILD_DIR}/JLRoutes" -iframework "${PODS_CONFIGURATION_BUILD_DIR}/KVOController" -iframework "${PODS_CONFIGURATION_BUILD_DIR}/MASPreferences" -iframework "${PODS_CONFIGURATION_BUILD_DIR}/MASShortcut" -iframework "${PODS_CONFIGURATION_BUILD_DIR}/MJExtension" -iframework "${PODS_CONFIGURATION_BUILD_DIR}/Masonry" -iframework "${PODS_CONFIGURATION_BUILD_DIR}/ReactiveObjC" -iframework "${PODS_CONFIGURATION_BUILD_DIR}/SSZipArchive" -OTHER_LDFLAGS = $(inherited) -l"iconv" -l"z" -framework "AFNetworking" -framework "AppKit" -framework "Carbon" -framework "CoreServices" -framework "Foundation" -framework "JLRoutes" -framework "KVOController" -framework "MASPreferences" -framework "MASShortcut" -framework "MJExtension" -framework "Masonry" -framework "ReactiveObjC" -framework "SSZipArchive" -framework "Security" -framework "SystemConfiguration" +OTHER_CFLAGS = $(inherited) -isystem "${PODS_CONFIGURATION_BUILD_DIR}/AFNetworking/AFNetworking.framework/Headers" -isystem "${PODS_CONFIGURATION_BUILD_DIR}/JLRoutes/JLRoutes.framework/Headers" -isystem "${PODS_CONFIGURATION_BUILD_DIR}/KVOController/KVOController.framework/Headers" -isystem "${PODS_CONFIGURATION_BUILD_DIR}/MASPreferences/MASPreferences.framework/Headers" -isystem "${PODS_CONFIGURATION_BUILD_DIR}/MASShortcut/MASShortcut.framework/Headers" -isystem "${PODS_CONFIGURATION_BUILD_DIR}/MJExtension/MJExtension.framework/Headers" -isystem "${PODS_CONFIGURATION_BUILD_DIR}/Masonry/Masonry.framework/Headers" -isystem "${PODS_CONFIGURATION_BUILD_DIR}/ReactiveObjC/ReactiveObjC.framework/Headers" -iframework "${PODS_CONFIGURATION_BUILD_DIR}/AFNetworking" -iframework "${PODS_CONFIGURATION_BUILD_DIR}/JLRoutes" -iframework "${PODS_CONFIGURATION_BUILD_DIR}/KVOController" -iframework "${PODS_CONFIGURATION_BUILD_DIR}/MASPreferences" -iframework "${PODS_CONFIGURATION_BUILD_DIR}/MASShortcut" -iframework "${PODS_CONFIGURATION_BUILD_DIR}/MJExtension" -iframework "${PODS_CONFIGURATION_BUILD_DIR}/Masonry" -iframework "${PODS_CONFIGURATION_BUILD_DIR}/ReactiveObjC" +OTHER_LDFLAGS = $(inherited) -framework "AFNetworking" -framework "AppKit" -framework "Carbon" -framework "CoreServices" -framework "Foundation" -framework "JLRoutes" -framework "KVOController" -framework "MASPreferences" -framework "MASShortcut" -framework "MJExtension" -framework "Masonry" -framework "ReactiveObjC" -framework "Security" -framework "SystemConfiguration" OTHER_SWIFT_FLAGS = $(inherited) -D COCOAPODS PODS_BUILD_DIR = ${BUILD_DIR} PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) diff --git a/Pods/Target Support Files/Pods-EasydictTests/Pods-EasydictTests-acknowledgements.markdown b/Pods/Target Support Files/Pods-EasydictTests/Pods-EasydictTests-acknowledgements.markdown index d32c54738..3dba21e98 100644 --- a/Pods/Target Support Files/Pods-EasydictTests/Pods-EasydictTests-acknowledgements.markdown +++ b/Pods/Target Support Files/Pods-EasydictTests/Pods-EasydictTests-acknowledgements.markdown @@ -191,28 +191,4 @@ COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. - -## SSZipArchive - -Copyright (c) 2010-2015, Sam Soffes, https://soff.es - -Permission is hereby granted, free of charge, to any person obtaining -a copy of this software and associated documentation files (the -"Software"), to deal in the Software without restriction, including -without limitation the rights to use, copy, modify, merge, publish, -distribute, sublicense, and/or sell copies of the Software, and to -permit persons to whom the Software is furnished to do so, subject to -the following conditions: - -The above copyright notice and this permission notice shall be -included in all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE -LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION -OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION -WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. - Generated by CocoaPods - https://cocoapods.org diff --git a/Pods/Target Support Files/Pods-EasydictTests/Pods-EasydictTests-acknowledgements.plist b/Pods/Target Support Files/Pods-EasydictTests/Pods-EasydictTests-acknowledgements.plist index 86601afc8..093feffea 100644 --- a/Pods/Target Support Files/Pods-EasydictTests/Pods-EasydictTests-acknowledgements.plist +++ b/Pods/Target Support Files/Pods-EasydictTests/Pods-EasydictTests-acknowledgements.plist @@ -251,36 +251,6 @@ CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. Type PSGroupSpecifier - - FooterText - Copyright (c) 2010-2015, Sam Soffes, https://soff.es - -Permission is hereby granted, free of charge, to any person obtaining -a copy of this software and associated documentation files (the -"Software"), to deal in the Software without restriction, including -without limitation the rights to use, copy, modify, merge, publish, -distribute, sublicense, and/or sell copies of the Software, and to -permit persons to whom the Software is furnished to do so, subject to -the following conditions: - -The above copyright notice and this permission notice shall be -included in all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE -LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION -OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION -WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. - - License - MIT - Title - SSZipArchive - Type - PSGroupSpecifier - FooterText Generated by CocoaPods - https://cocoapods.org diff --git a/Pods/Target Support Files/Pods-EasydictTests/Pods-EasydictTests-frameworks-Debug-input-files.xcfilelist b/Pods/Target Support Files/Pods-EasydictTests/Pods-EasydictTests-frameworks-Debug-input-files.xcfilelist index a494a143f..fb795f7b9 100644 --- a/Pods/Target Support Files/Pods-EasydictTests/Pods-EasydictTests-frameworks-Debug-input-files.xcfilelist +++ b/Pods/Target Support Files/Pods-EasydictTests/Pods-EasydictTests-frameworks-Debug-input-files.xcfilelist @@ -6,5 +6,4 @@ ${BUILT_PRODUCTS_DIR}/MASPreferences/MASPreferences.framework ${BUILT_PRODUCTS_DIR}/MASShortcut/MASShortcut.framework ${BUILT_PRODUCTS_DIR}/MJExtension/MJExtension.framework ${BUILT_PRODUCTS_DIR}/Masonry/Masonry.framework -${BUILT_PRODUCTS_DIR}/ReactiveObjC/ReactiveObjC.framework -${BUILT_PRODUCTS_DIR}/SSZipArchive/SSZipArchive.framework \ No newline at end of file +${BUILT_PRODUCTS_DIR}/ReactiveObjC/ReactiveObjC.framework \ No newline at end of file diff --git a/Pods/Target Support Files/Pods-EasydictTests/Pods-EasydictTests-frameworks-Debug-output-files.xcfilelist b/Pods/Target Support Files/Pods-EasydictTests/Pods-EasydictTests-frameworks-Debug-output-files.xcfilelist index a749c237d..3db1bbc69 100644 --- a/Pods/Target Support Files/Pods-EasydictTests/Pods-EasydictTests-frameworks-Debug-output-files.xcfilelist +++ b/Pods/Target Support Files/Pods-EasydictTests/Pods-EasydictTests-frameworks-Debug-output-files.xcfilelist @@ -5,5 +5,4 @@ ${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/MASPreferences.framework ${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/MASShortcut.framework ${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/MJExtension.framework ${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/Masonry.framework -${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/ReactiveObjC.framework -${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/SSZipArchive.framework \ No newline at end of file +${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/ReactiveObjC.framework \ No newline at end of file diff --git a/Pods/Target Support Files/Pods-EasydictTests/Pods-EasydictTests-frameworks-Release-input-files.xcfilelist b/Pods/Target Support Files/Pods-EasydictTests/Pods-EasydictTests-frameworks-Release-input-files.xcfilelist index a494a143f..fb795f7b9 100644 --- a/Pods/Target Support Files/Pods-EasydictTests/Pods-EasydictTests-frameworks-Release-input-files.xcfilelist +++ b/Pods/Target Support Files/Pods-EasydictTests/Pods-EasydictTests-frameworks-Release-input-files.xcfilelist @@ -6,5 +6,4 @@ ${BUILT_PRODUCTS_DIR}/MASPreferences/MASPreferences.framework ${BUILT_PRODUCTS_DIR}/MASShortcut/MASShortcut.framework ${BUILT_PRODUCTS_DIR}/MJExtension/MJExtension.framework ${BUILT_PRODUCTS_DIR}/Masonry/Masonry.framework -${BUILT_PRODUCTS_DIR}/ReactiveObjC/ReactiveObjC.framework -${BUILT_PRODUCTS_DIR}/SSZipArchive/SSZipArchive.framework \ No newline at end of file +${BUILT_PRODUCTS_DIR}/ReactiveObjC/ReactiveObjC.framework \ No newline at end of file diff --git a/Pods/Target Support Files/Pods-EasydictTests/Pods-EasydictTests-frameworks-Release-output-files.xcfilelist b/Pods/Target Support Files/Pods-EasydictTests/Pods-EasydictTests-frameworks-Release-output-files.xcfilelist index a749c237d..3db1bbc69 100644 --- a/Pods/Target Support Files/Pods-EasydictTests/Pods-EasydictTests-frameworks-Release-output-files.xcfilelist +++ b/Pods/Target Support Files/Pods-EasydictTests/Pods-EasydictTests-frameworks-Release-output-files.xcfilelist @@ -5,5 +5,4 @@ ${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/MASPreferences.framework ${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/MASShortcut.framework ${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/MJExtension.framework ${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/Masonry.framework -${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/ReactiveObjC.framework -${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/SSZipArchive.framework \ No newline at end of file +${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/ReactiveObjC.framework \ No newline at end of file diff --git a/Pods/Target Support Files/Pods-EasydictTests/Pods-EasydictTests-frameworks.sh b/Pods/Target Support Files/Pods-EasydictTests/Pods-EasydictTests-frameworks.sh index 4b78f241c..1486d8105 100755 --- a/Pods/Target Support Files/Pods-EasydictTests/Pods-EasydictTests-frameworks.sh +++ b/Pods/Target Support Files/Pods-EasydictTests/Pods-EasydictTests-frameworks.sh @@ -184,7 +184,6 @@ if [[ "$CONFIGURATION" == "Debug" ]]; then install_framework "${BUILT_PRODUCTS_DIR}/MJExtension/MJExtension.framework" install_framework "${BUILT_PRODUCTS_DIR}/Masonry/Masonry.framework" install_framework "${BUILT_PRODUCTS_DIR}/ReactiveObjC/ReactiveObjC.framework" - install_framework "${BUILT_PRODUCTS_DIR}/SSZipArchive/SSZipArchive.framework" fi if [[ "$CONFIGURATION" == "Release" ]]; then install_framework "${BUILT_PRODUCTS_DIR}/AFNetworking/AFNetworking.framework" @@ -195,7 +194,6 @@ if [[ "$CONFIGURATION" == "Release" ]]; then install_framework "${BUILT_PRODUCTS_DIR}/MJExtension/MJExtension.framework" install_framework "${BUILT_PRODUCTS_DIR}/Masonry/Masonry.framework" install_framework "${BUILT_PRODUCTS_DIR}/ReactiveObjC/ReactiveObjC.framework" - install_framework "${BUILT_PRODUCTS_DIR}/SSZipArchive/SSZipArchive.framework" fi if [ "${COCOAPODS_PARALLEL_CODE_SIGN}" == "true" ]; then wait diff --git a/Pods/Target Support Files/Pods-EasydictTests/Pods-EasydictTests.debug.xcconfig b/Pods/Target Support Files/Pods-EasydictTests/Pods-EasydictTests.debug.xcconfig index f691dfa0f..e5a6c3598 100644 --- a/Pods/Target Support Files/Pods-EasydictTests/Pods-EasydictTests.debug.xcconfig +++ b/Pods/Target Support Files/Pods-EasydictTests/Pods-EasydictTests.debug.xcconfig @@ -1,10 +1,10 @@ CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO -FRAMEWORK_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/AFNetworking" "${PODS_CONFIGURATION_BUILD_DIR}/JLRoutes" "${PODS_CONFIGURATION_BUILD_DIR}/KVOController" "${PODS_CONFIGURATION_BUILD_DIR}/MASPreferences" "${PODS_CONFIGURATION_BUILD_DIR}/MASShortcut" "${PODS_CONFIGURATION_BUILD_DIR}/MJExtension" "${PODS_CONFIGURATION_BUILD_DIR}/Masonry" "${PODS_CONFIGURATION_BUILD_DIR}/ReactiveObjC" "${PODS_CONFIGURATION_BUILD_DIR}/SSZipArchive" +FRAMEWORK_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/AFNetworking" "${PODS_CONFIGURATION_BUILD_DIR}/JLRoutes" "${PODS_CONFIGURATION_BUILD_DIR}/KVOController" "${PODS_CONFIGURATION_BUILD_DIR}/MASPreferences" "${PODS_CONFIGURATION_BUILD_DIR}/MASShortcut" "${PODS_CONFIGURATION_BUILD_DIR}/MJExtension" "${PODS_CONFIGURATION_BUILD_DIR}/Masonry" "${PODS_CONFIGURATION_BUILD_DIR}/ReactiveObjC" GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 -HEADER_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/AFNetworking/AFNetworking.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/JLRoutes/JLRoutes.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/KVOController/KVOController.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/MASPreferences/MASPreferences.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/MASShortcut/MASShortcut.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/MJExtension/MJExtension.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/Masonry/Masonry.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/ReactiveObjC/ReactiveObjC.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/SSZipArchive/SSZipArchive.framework/Headers" +HEADER_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/AFNetworking/AFNetworking.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/JLRoutes/JLRoutes.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/KVOController/KVOController.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/MASPreferences/MASPreferences.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/MASShortcut/MASShortcut.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/MJExtension/MJExtension.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/Masonry/Masonry.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/ReactiveObjC/ReactiveObjC.framework/Headers" LD_RUNPATH_SEARCH_PATHS = $(inherited) '@executable_path/../Frameworks' '@loader_path/../Frameworks' -OTHER_CFLAGS = $(inherited) -isystem "${PODS_CONFIGURATION_BUILD_DIR}/AFNetworking/AFNetworking.framework/Headers" -isystem "${PODS_CONFIGURATION_BUILD_DIR}/JLRoutes/JLRoutes.framework/Headers" -isystem "${PODS_CONFIGURATION_BUILD_DIR}/KVOController/KVOController.framework/Headers" -isystem "${PODS_CONFIGURATION_BUILD_DIR}/MASPreferences/MASPreferences.framework/Headers" -isystem "${PODS_CONFIGURATION_BUILD_DIR}/MASShortcut/MASShortcut.framework/Headers" -isystem "${PODS_CONFIGURATION_BUILD_DIR}/MJExtension/MJExtension.framework/Headers" -isystem "${PODS_CONFIGURATION_BUILD_DIR}/Masonry/Masonry.framework/Headers" -isystem "${PODS_CONFIGURATION_BUILD_DIR}/ReactiveObjC/ReactiveObjC.framework/Headers" -isystem "${PODS_CONFIGURATION_BUILD_DIR}/SSZipArchive/SSZipArchive.framework/Headers" -iframework "${PODS_CONFIGURATION_BUILD_DIR}/AFNetworking" -iframework "${PODS_CONFIGURATION_BUILD_DIR}/JLRoutes" -iframework "${PODS_CONFIGURATION_BUILD_DIR}/KVOController" -iframework "${PODS_CONFIGURATION_BUILD_DIR}/MASPreferences" -iframework "${PODS_CONFIGURATION_BUILD_DIR}/MASShortcut" -iframework "${PODS_CONFIGURATION_BUILD_DIR}/MJExtension" -iframework "${PODS_CONFIGURATION_BUILD_DIR}/Masonry" -iframework "${PODS_CONFIGURATION_BUILD_DIR}/ReactiveObjC" -iframework "${PODS_CONFIGURATION_BUILD_DIR}/SSZipArchive" -OTHER_LDFLAGS = $(inherited) -l"iconv" -l"z" -framework "AFNetworking" -framework "AppKit" -framework "Carbon" -framework "CoreServices" -framework "Foundation" -framework "JLRoutes" -framework "KVOController" -framework "MASPreferences" -framework "MASShortcut" -framework "MJExtension" -framework "Masonry" -framework "ReactiveObjC" -framework "SSZipArchive" -framework "Security" -framework "SystemConfiguration" +OTHER_CFLAGS = $(inherited) -isystem "${PODS_CONFIGURATION_BUILD_DIR}/AFNetworking/AFNetworking.framework/Headers" -isystem "${PODS_CONFIGURATION_BUILD_DIR}/JLRoutes/JLRoutes.framework/Headers" -isystem "${PODS_CONFIGURATION_BUILD_DIR}/KVOController/KVOController.framework/Headers" -isystem "${PODS_CONFIGURATION_BUILD_DIR}/MASPreferences/MASPreferences.framework/Headers" -isystem "${PODS_CONFIGURATION_BUILD_DIR}/MASShortcut/MASShortcut.framework/Headers" -isystem "${PODS_CONFIGURATION_BUILD_DIR}/MJExtension/MJExtension.framework/Headers" -isystem "${PODS_CONFIGURATION_BUILD_DIR}/Masonry/Masonry.framework/Headers" -isystem "${PODS_CONFIGURATION_BUILD_DIR}/ReactiveObjC/ReactiveObjC.framework/Headers" -iframework "${PODS_CONFIGURATION_BUILD_DIR}/AFNetworking" -iframework "${PODS_CONFIGURATION_BUILD_DIR}/JLRoutes" -iframework "${PODS_CONFIGURATION_BUILD_DIR}/KVOController" -iframework "${PODS_CONFIGURATION_BUILD_DIR}/MASPreferences" -iframework "${PODS_CONFIGURATION_BUILD_DIR}/MASShortcut" -iframework "${PODS_CONFIGURATION_BUILD_DIR}/MJExtension" -iframework "${PODS_CONFIGURATION_BUILD_DIR}/Masonry" -iframework "${PODS_CONFIGURATION_BUILD_DIR}/ReactiveObjC" +OTHER_LDFLAGS = $(inherited) -framework "AFNetworking" -framework "AppKit" -framework "Carbon" -framework "CoreServices" -framework "Foundation" -framework "JLRoutes" -framework "KVOController" -framework "MASPreferences" -framework "MASShortcut" -framework "MJExtension" -framework "Masonry" -framework "ReactiveObjC" -framework "Security" -framework "SystemConfiguration" PODS_BUILD_DIR = ${BUILD_DIR} PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) PODS_PODFILE_DIR_PATH = ${SRCROOT}/. diff --git a/Pods/Target Support Files/Pods-EasydictTests/Pods-EasydictTests.release.xcconfig b/Pods/Target Support Files/Pods-EasydictTests/Pods-EasydictTests.release.xcconfig index f691dfa0f..e5a6c3598 100644 --- a/Pods/Target Support Files/Pods-EasydictTests/Pods-EasydictTests.release.xcconfig +++ b/Pods/Target Support Files/Pods-EasydictTests/Pods-EasydictTests.release.xcconfig @@ -1,10 +1,10 @@ CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO -FRAMEWORK_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/AFNetworking" "${PODS_CONFIGURATION_BUILD_DIR}/JLRoutes" "${PODS_CONFIGURATION_BUILD_DIR}/KVOController" "${PODS_CONFIGURATION_BUILD_DIR}/MASPreferences" "${PODS_CONFIGURATION_BUILD_DIR}/MASShortcut" "${PODS_CONFIGURATION_BUILD_DIR}/MJExtension" "${PODS_CONFIGURATION_BUILD_DIR}/Masonry" "${PODS_CONFIGURATION_BUILD_DIR}/ReactiveObjC" "${PODS_CONFIGURATION_BUILD_DIR}/SSZipArchive" +FRAMEWORK_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/AFNetworking" "${PODS_CONFIGURATION_BUILD_DIR}/JLRoutes" "${PODS_CONFIGURATION_BUILD_DIR}/KVOController" "${PODS_CONFIGURATION_BUILD_DIR}/MASPreferences" "${PODS_CONFIGURATION_BUILD_DIR}/MASShortcut" "${PODS_CONFIGURATION_BUILD_DIR}/MJExtension" "${PODS_CONFIGURATION_BUILD_DIR}/Masonry" "${PODS_CONFIGURATION_BUILD_DIR}/ReactiveObjC" GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 -HEADER_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/AFNetworking/AFNetworking.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/JLRoutes/JLRoutes.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/KVOController/KVOController.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/MASPreferences/MASPreferences.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/MASShortcut/MASShortcut.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/MJExtension/MJExtension.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/Masonry/Masonry.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/ReactiveObjC/ReactiveObjC.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/SSZipArchive/SSZipArchive.framework/Headers" +HEADER_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/AFNetworking/AFNetworking.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/JLRoutes/JLRoutes.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/KVOController/KVOController.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/MASPreferences/MASPreferences.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/MASShortcut/MASShortcut.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/MJExtension/MJExtension.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/Masonry/Masonry.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/ReactiveObjC/ReactiveObjC.framework/Headers" LD_RUNPATH_SEARCH_PATHS = $(inherited) '@executable_path/../Frameworks' '@loader_path/../Frameworks' -OTHER_CFLAGS = $(inherited) -isystem "${PODS_CONFIGURATION_BUILD_DIR}/AFNetworking/AFNetworking.framework/Headers" -isystem "${PODS_CONFIGURATION_BUILD_DIR}/JLRoutes/JLRoutes.framework/Headers" -isystem "${PODS_CONFIGURATION_BUILD_DIR}/KVOController/KVOController.framework/Headers" -isystem "${PODS_CONFIGURATION_BUILD_DIR}/MASPreferences/MASPreferences.framework/Headers" -isystem "${PODS_CONFIGURATION_BUILD_DIR}/MASShortcut/MASShortcut.framework/Headers" -isystem "${PODS_CONFIGURATION_BUILD_DIR}/MJExtension/MJExtension.framework/Headers" -isystem "${PODS_CONFIGURATION_BUILD_DIR}/Masonry/Masonry.framework/Headers" -isystem "${PODS_CONFIGURATION_BUILD_DIR}/ReactiveObjC/ReactiveObjC.framework/Headers" -isystem "${PODS_CONFIGURATION_BUILD_DIR}/SSZipArchive/SSZipArchive.framework/Headers" -iframework "${PODS_CONFIGURATION_BUILD_DIR}/AFNetworking" -iframework "${PODS_CONFIGURATION_BUILD_DIR}/JLRoutes" -iframework "${PODS_CONFIGURATION_BUILD_DIR}/KVOController" -iframework "${PODS_CONFIGURATION_BUILD_DIR}/MASPreferences" -iframework "${PODS_CONFIGURATION_BUILD_DIR}/MASShortcut" -iframework "${PODS_CONFIGURATION_BUILD_DIR}/MJExtension" -iframework "${PODS_CONFIGURATION_BUILD_DIR}/Masonry" -iframework "${PODS_CONFIGURATION_BUILD_DIR}/ReactiveObjC" -iframework "${PODS_CONFIGURATION_BUILD_DIR}/SSZipArchive" -OTHER_LDFLAGS = $(inherited) -l"iconv" -l"z" -framework "AFNetworking" -framework "AppKit" -framework "Carbon" -framework "CoreServices" -framework "Foundation" -framework "JLRoutes" -framework "KVOController" -framework "MASPreferences" -framework "MASShortcut" -framework "MJExtension" -framework "Masonry" -framework "ReactiveObjC" -framework "SSZipArchive" -framework "Security" -framework "SystemConfiguration" +OTHER_CFLAGS = $(inherited) -isystem "${PODS_CONFIGURATION_BUILD_DIR}/AFNetworking/AFNetworking.framework/Headers" -isystem "${PODS_CONFIGURATION_BUILD_DIR}/JLRoutes/JLRoutes.framework/Headers" -isystem "${PODS_CONFIGURATION_BUILD_DIR}/KVOController/KVOController.framework/Headers" -isystem "${PODS_CONFIGURATION_BUILD_DIR}/MASPreferences/MASPreferences.framework/Headers" -isystem "${PODS_CONFIGURATION_BUILD_DIR}/MASShortcut/MASShortcut.framework/Headers" -isystem "${PODS_CONFIGURATION_BUILD_DIR}/MJExtension/MJExtension.framework/Headers" -isystem "${PODS_CONFIGURATION_BUILD_DIR}/Masonry/Masonry.framework/Headers" -isystem "${PODS_CONFIGURATION_BUILD_DIR}/ReactiveObjC/ReactiveObjC.framework/Headers" -iframework "${PODS_CONFIGURATION_BUILD_DIR}/AFNetworking" -iframework "${PODS_CONFIGURATION_BUILD_DIR}/JLRoutes" -iframework "${PODS_CONFIGURATION_BUILD_DIR}/KVOController" -iframework "${PODS_CONFIGURATION_BUILD_DIR}/MASPreferences" -iframework "${PODS_CONFIGURATION_BUILD_DIR}/MASShortcut" -iframework "${PODS_CONFIGURATION_BUILD_DIR}/MJExtension" -iframework "${PODS_CONFIGURATION_BUILD_DIR}/Masonry" -iframework "${PODS_CONFIGURATION_BUILD_DIR}/ReactiveObjC" +OTHER_LDFLAGS = $(inherited) -framework "AFNetworking" -framework "AppKit" -framework "Carbon" -framework "CoreServices" -framework "Foundation" -framework "JLRoutes" -framework "KVOController" -framework "MASPreferences" -framework "MASShortcut" -framework "MJExtension" -framework "Masonry" -framework "ReactiveObjC" -framework "Security" -framework "SystemConfiguration" PODS_BUILD_DIR = ${BUILD_DIR} PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) PODS_PODFILE_DIR_PATH = ${SRCROOT}/. diff --git a/Pods/Target Support Files/SSZipArchive/SSZipArchive-Info.plist b/Pods/Target Support Files/SSZipArchive/SSZipArchive-Info.plist deleted file mode 100644 index 55a168983..000000000 --- a/Pods/Target Support Files/SSZipArchive/SSZipArchive-Info.plist +++ /dev/null @@ -1,26 +0,0 @@ - - - - - CFBundleDevelopmentRegion - ${PODS_DEVELOPMENT_LANGUAGE} - CFBundleExecutable - ${EXECUTABLE_NAME} - CFBundleIdentifier - ${PRODUCT_BUNDLE_IDENTIFIER} - CFBundleInfoDictionaryVersion - 6.0 - CFBundleName - ${PRODUCT_NAME} - CFBundlePackageType - FMWK - CFBundleShortVersionString - 2.2.3 - CFBundleSignature - ???? - CFBundleVersion - ${CURRENT_PROJECT_VERSION} - NSPrincipalClass - - - diff --git a/Pods/Target Support Files/SSZipArchive/SSZipArchive-dummy.m b/Pods/Target Support Files/SSZipArchive/SSZipArchive-dummy.m deleted file mode 100644 index 9fabf7927..000000000 --- a/Pods/Target Support Files/SSZipArchive/SSZipArchive-dummy.m +++ /dev/null @@ -1,5 +0,0 @@ -#import -@interface PodsDummy_SSZipArchive : NSObject -@end -@implementation PodsDummy_SSZipArchive -@end diff --git a/Pods/Target Support Files/SSZipArchive/SSZipArchive-prefix.pch b/Pods/Target Support Files/SSZipArchive/SSZipArchive-prefix.pch deleted file mode 100644 index 082f8af22..000000000 --- a/Pods/Target Support Files/SSZipArchive/SSZipArchive-prefix.pch +++ /dev/null @@ -1,12 +0,0 @@ -#ifdef __OBJC__ -#import -#else -#ifndef FOUNDATION_EXPORT -#if defined(__cplusplus) -#define FOUNDATION_EXPORT extern "C" -#else -#define FOUNDATION_EXPORT extern -#endif -#endif -#endif - diff --git a/Pods/Target Support Files/SSZipArchive/SSZipArchive-umbrella.h b/Pods/Target Support Files/SSZipArchive/SSZipArchive-umbrella.h deleted file mode 100644 index 91910128a..000000000 --- a/Pods/Target Support Files/SSZipArchive/SSZipArchive-umbrella.h +++ /dev/null @@ -1,19 +0,0 @@ -#ifdef __OBJC__ -#import -#else -#ifndef FOUNDATION_EXPORT -#if defined(__cplusplus) -#define FOUNDATION_EXPORT extern "C" -#else -#define FOUNDATION_EXPORT extern -#endif -#endif -#endif - -#import "SSZipArchive.h" -#import "SSZipCommon.h" -#import "ZipArchive.h" - -FOUNDATION_EXPORT double SSZipArchiveVersionNumber; -FOUNDATION_EXPORT const unsigned char SSZipArchiveVersionString[]; - diff --git a/Pods/Target Support Files/SSZipArchive/SSZipArchive.debug.xcconfig b/Pods/Target Support Files/SSZipArchive/SSZipArchive.debug.xcconfig deleted file mode 100644 index f3ed384fc..000000000 --- a/Pods/Target Support Files/SSZipArchive/SSZipArchive.debug.xcconfig +++ /dev/null @@ -1,15 +0,0 @@ -CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO -CODE_SIGN_IDENTITY = -CONFIGURATION_BUILD_DIR = ${PODS_CONFIGURATION_BUILD_DIR}/SSZipArchive -DEFINES_MODULE = YES -GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 HAVE_INTTYPES_H HAVE_PKCRYPT HAVE_STDINT_H HAVE_WZAES HAVE_ZLIB -OTHER_LDFLAGS = $(inherited) -l"iconv" -l"z" -framework "Security" -PODS_BUILD_DIR = ${BUILD_DIR} -PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) -PODS_DEVELOPMENT_LANGUAGE = ${DEVELOPMENT_LANGUAGE} -PODS_ROOT = ${SRCROOT} -PODS_TARGET_SRCROOT = ${PODS_ROOT}/SSZipArchive -PODS_XCFRAMEWORKS_BUILD_DIR = $(PODS_CONFIGURATION_BUILD_DIR)/XCFrameworkIntermediates -PRODUCT_BUNDLE_IDENTIFIER = org.cocoapods.${PRODUCT_NAME:rfc1034identifier} -SKIP_INSTALL = YES -USE_RECURSIVE_SCRIPT_INPUTS_IN_SCRIPT_PHASES = YES diff --git a/Pods/Target Support Files/SSZipArchive/SSZipArchive.modulemap b/Pods/Target Support Files/SSZipArchive/SSZipArchive.modulemap deleted file mode 100644 index c30b5197c..000000000 --- a/Pods/Target Support Files/SSZipArchive/SSZipArchive.modulemap +++ /dev/null @@ -1,6 +0,0 @@ -framework module SSZipArchive { - umbrella header "SSZipArchive-umbrella.h" - - export * - module * { export * } -} diff --git a/Pods/Target Support Files/SSZipArchive/SSZipArchive.release.xcconfig b/Pods/Target Support Files/SSZipArchive/SSZipArchive.release.xcconfig deleted file mode 100644 index f3ed384fc..000000000 --- a/Pods/Target Support Files/SSZipArchive/SSZipArchive.release.xcconfig +++ /dev/null @@ -1,15 +0,0 @@ -CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO -CODE_SIGN_IDENTITY = -CONFIGURATION_BUILD_DIR = ${PODS_CONFIGURATION_BUILD_DIR}/SSZipArchive -DEFINES_MODULE = YES -GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 HAVE_INTTYPES_H HAVE_PKCRYPT HAVE_STDINT_H HAVE_WZAES HAVE_ZLIB -OTHER_LDFLAGS = $(inherited) -l"iconv" -l"z" -framework "Security" -PODS_BUILD_DIR = ${BUILD_DIR} -PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) -PODS_DEVELOPMENT_LANGUAGE = ${DEVELOPMENT_LANGUAGE} -PODS_ROOT = ${SRCROOT} -PODS_TARGET_SRCROOT = ${PODS_ROOT}/SSZipArchive -PODS_XCFRAMEWORKS_BUILD_DIR = $(PODS_CONFIGURATION_BUILD_DIR)/XCFrameworkIntermediates -PRODUCT_BUNDLE_IDENTIFIER = org.cocoapods.${PRODUCT_NAME:rfc1034identifier} -SKIP_INSTALL = YES -USE_RECURSIVE_SCRIPT_INPUTS_IN_SCRIPT_PHASES = YES diff --git a/Pods/Target Support Files/SSZipArchive/SSZipArchive.xcconfig b/Pods/Target Support Files/SSZipArchive/SSZipArchive.xcconfig deleted file mode 100644 index 4660b081d..000000000 --- a/Pods/Target Support Files/SSZipArchive/SSZipArchive.xcconfig +++ /dev/null @@ -1,11 +0,0 @@ -CODE_SIGN_IDENTITY = -CONFIGURATION_BUILD_DIR = ${PODS_CONFIGURATION_BUILD_DIR}/SSZipArchive -DEFINES_MODULE = YES -GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 HAVE_INTTYPES_H HAVE_PKCRYPT HAVE_STDINT_H HAVE_WZAES HAVE_ZLIB MZ_ZIP_NO_SIGNING -OTHER_LDFLAGS = $(inherited) -l"iconv" -l"z" -framework "Security" -PODS_BUILD_DIR = ${BUILD_DIR} -PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) -PODS_ROOT = ${SRCROOT} -PODS_TARGET_SRCROOT = ${PODS_ROOT}/SSZipArchive -PRODUCT_BUNDLE_IDENTIFIER = org.cocoapods.${PRODUCT_NAME:rfc1034identifier} -SKIP_INSTALL = YES