diff --git a/OrderScheduling.xcodeproj/xcshareddata/xcschemes/Release.xcscheme b/OrderScheduling.xcodeproj/xcshareddata/xcschemes/Release.xcscheme index 6549c6f..3ea2924 100644 --- a/OrderScheduling.xcodeproj/xcshareddata/xcschemes/Release.xcscheme +++ b/OrderScheduling.xcodeproj/xcshareddata/xcschemes/Release.xcscheme @@ -30,7 +30,7 @@ shouldAutocreateTestPlan = "YES"> - - - - - - - - - - - - - - - - @@ -3690,5 +3626,197 @@ landmarkType = "7"> + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/OrderScheduling/Global/Tool/SystemCall.swift b/OrderScheduling/Global/Tool/SystemCall.swift index 28b411b..e1bfb31 100644 --- a/OrderScheduling/Global/Tool/SystemCall.swift +++ b/OrderScheduling/Global/Tool/SystemCall.swift @@ -17,7 +17,7 @@ open class SystemCall { private let callCenter : CTCallCenter - public var callSuccess : Bool + public var callSuccess : Bool = false private var isDialing : Bool = false @@ -27,6 +27,8 @@ open class SystemCall { private var callTime : String? + private var dialingTimeInterval : TimeInterval? + private var connectTimeInterval : TimeInterval? private var disconnectTimeInterval : TimeInterval? @@ -43,7 +45,6 @@ open class SystemCall { init() { callCenter = CTCallCenter() - callSuccess = false } func callEvent(successHandler: ((Bool,String?,Int?) -> Void)? = nil) { @@ -51,10 +52,16 @@ open class SystemCall { switch call.callState { case "CTCallStateDialing": self?.isDialing = true + self?.isConnected = false + self?.isDisconnected = false + self?.callTime = TOOL.getDateString(by: "yyyy-MM-dd HH:mm:ss", date: Date()) + self?.dialingTimeInterval = Date().timeIntervalSince1970 break case "CTCallStateIncoming": self?.isDialing = false + self?.isConnected = false + self?.isDisconnected = false break case "CTCallStateConnected": self?.isConnected = true @@ -68,8 +75,8 @@ open class SystemCall { self?.callSuccess = true if successHandler != nil { var duration = 0 - if let disconnectTimeInterval = self?.disconnectTimeInterval,let connectTimeInterval = self?.connectTimeInterval { - duration = Int(disconnectTimeInterval - connectTimeInterval) + if let disconnectTimeInterval = self?.disconnectTimeInterval,let dialingTimeInterval = self?.dialingTimeInterval { + duration = Int(disconnectTimeInterval - dialingTimeInterval) self?.duration = duration } successHandler!(true,self?.callTime,duration) diff --git a/OrderScheduling/Global/Tool/Tool.swift b/OrderScheduling/Global/Tool/Tool.swift index aec2804..eadc4b7 100644 --- a/OrderScheduling/Global/Tool/Tool.swift +++ b/OrderScheduling/Global/Tool/Tool.swift @@ -8,6 +8,7 @@ import Foundation import UIKit import AVFoundation +import DDAudioPlayerKit_Private public let TOOL = Tool.default diff --git a/Podfile b/Podfile index 0b9c622..48fc7e3 100644 --- a/Podfile +++ b/Podfile @@ -32,6 +32,7 @@ target 'OrderScheduling' do pod 'DDZFPlayerKit_Private',:subspecs => ['ControlView','ijkplayer'] pod 'JPush',:modular_headers => true pod 'BRPickerView' + pod 'DDAudioPlayerKit_Private' post_install do |installer| installer.pods_project.targets.each do |target| diff --git a/Podfile.lock b/Podfile.lock index a371c45..55d6786 100644 --- a/Podfile.lock +++ b/Podfile.lock @@ -23,6 +23,7 @@ PODS: - BRPickerView/StringPickerView (2.8.1): - BRPickerView/Base - CocoaDebug (1.7.7) + - DDAudioPlayerKit_Private (0.1.0) - DDAutoUIKit_Private (0.1.3) - DDBasicControlsKit_Private/DDBaseAnimation/DDTransitionAnimation (0.3.2) - DDBasicControlsKit_Private/DDBaseAttributedString (0.3.2): @@ -296,6 +297,7 @@ PODS: DEPENDENCIES: - BRPickerView - CocoaDebug + - DDAudioPlayerKit_Private - DDAutoUIKit_Private - DDCategoryKit_Private - DDColorKit_Private @@ -324,6 +326,7 @@ DEPENDENCIES: SPEC REPOS: "git@github.com:DDIsFriend/DDSpecs.git": + - DDAudioPlayerKit_Private - DDAutoUIKit_Private - DDBasicControlsKit_Private - DDCategoryKit_Private @@ -371,6 +374,7 @@ SPEC CHECKSUMS: AMapTrack-NO-IDFA: 7109cf1867f5d6c407c8191492b1f73101e1682e BRPickerView: 2531a2d4d0fea0b57a1c738de215af0f88863a2f CocoaDebug: b38d31464b91a9775928f8667d114db07b136565 + DDAudioPlayerKit_Private: b18c9b8b4ee2d421227895edac27b2a799fcdb0d DDAutoUIKit_Private: 188066b4d13c8096676ddd9efa15974238f6dca3 DDBasicControlsKit_Private: d3aebc505eaac273a8f6b85238662ad6e64a1a08 DDCategoryKit_Private: 19d515c43d5e9c4ee80b8ccf3fb8ab40368b8668 @@ -400,6 +404,6 @@ SPEC CHECKSUMS: SwiftEntryKit: 61b5fa36f34a97dd8013e48a7345bc4c4720be9a ZLPhotoBrowser: 0563c2bfc7b247b65d023d646012f46cba94101b -PODFILE CHECKSUM: 9a2e6768eed0351abcabcf885507b3914d82edfd +PODFILE CHECKSUM: 4a6b876956d7d3482deecd88ffe2bf250614e00b COCOAPODS: 1.11.3 diff --git a/Pods/DDAudioPlayerKit_Private/DDAudioPlayerKit_Private/Classes/DDAudioService.swift b/Pods/DDAudioPlayerKit_Private/DDAudioPlayerKit_Private/Classes/DDAudioService.swift new file mode 100644 index 0000000..ae6ad81 --- /dev/null +++ b/Pods/DDAudioPlayerKit_Private/DDAudioPlayerKit_Private/Classes/DDAudioService.swift @@ -0,0 +1,122 @@ +// +// SystemSoundPlayer.swift +// DDAudioPlayerKit_Private +// +// Created by 中道 on 2023/8/31. +// + +import Foundation +import AVFoundation + +public let DDAS = DDAudioService.default + +open class DDAudioService { + public static let `default` = DDAudioService() + + private var audioSoundID : SystemSoundID = 0 + private var vibrateSoundID : SystemSoundID = 0 + private var audioNumberOfLoops : Int = 0 + private var vibrateNumberOfLoops : Int = 0 + private var endSound : Bool = false + private var endVibrate : Bool = false + + public func playSoundWithVibrate(audioUrl:URL,numberOfLoops:Int = 1) { + playVibrate(numberOfLoops: -1) + playSound(audioUrl: audioUrl,numberOfLoops: numberOfLoops) {[weak self] in + self?.stopSound() + self?.stopVibrate() + } + } + + public func stopSoundWithVibrate() { + stopSound() + stopVibrate() + } + + public func playSound(audioUrl:URL,numberOfLoops:Int = 1, endCompletionBlock: (() -> Void)? = nil) { + self.audioNumberOfLoops = numberOfLoops + + var audioSoundID:SystemSoundID = 0 + AudioServicesCreateSystemSoundID(audioUrl as CFURL, &audioSoundID) + self.audioSoundID = audioSoundID + DispatchQueue.global().async {[weak self] in + self?.playSound(audioSoundID: audioSoundID,leftNumberOfLoops: numberOfLoops,endCompletionBlock: { + if endCompletionBlock != nil { + endCompletionBlock!() + } + }) + } + } + + public func playVibrate(numberOfLoops:Int = 1, endCompletionBlock: (() -> Void)? = nil) { + self.audioNumberOfLoops = numberOfLoops + + var vibrateSoundID : SystemSoundID = 0 + vibrateSoundID = kSystemSoundID_Vibrate + self.vibrateSoundID = vibrateSoundID + DispatchQueue.global().async {[weak self] in + self?.playVibrate(vibrateSoundID: vibrateSoundID, leftNumberOfLoops: numberOfLoops,endCompletionBlock: { + if endCompletionBlock != nil { + endCompletionBlock!() + } + }) + } + } + + public func stopSound() { + endSound = true + AudioServicesDisposeSystemSoundID(audioSoundID) + } + + public func stopVibrate() { + endVibrate = true + AudioServicesDisposeSystemSoundID(vibrateSoundID) + } + + private func playSound(audioSoundID:SystemSoundID,leftNumberOfLoops:Int,timeInterval:TimeInterval = 0,eachLoopCompletionBlock: (() -> Void)? = nil, endCompletionBlock: (() -> Void)? = nil) { + var changeLeftNumberOfLoops = leftNumberOfLoops + AudioServicesPlaySystemSoundWithCompletion(audioSoundID) {[weak self] in + if eachLoopCompletionBlock != nil { + eachLoopCompletionBlock!() + } + + // 当前的剩余为0就结束 + changeLeftNumberOfLoops-=1 + if changeLeftNumberOfLoops == 0 || self?.endSound == true { + self?.stopSound() + if endCompletionBlock != nil { + endCompletionBlock!() + } + print("sound播放结束") + }else{ + DispatchQueue.global().asyncAfter(deadline: .now() + timeInterval, execute: { + self?.playSound(audioSoundID: audioSoundID, leftNumberOfLoops: changeLeftNumberOfLoops,timeInterval: timeInterval) + }) + } + } + } + + private func playVibrate(vibrateSoundID:SystemSoundID,leftNumberOfLoops:Int,timeInterval:TimeInterval = 0,eachLoopCompletionBlock: (() -> Void)? = nil, endCompletionBlock: (() -> Void)? = nil) { + var changeLeftNumberOfLoops = leftNumberOfLoops + AudioServicesPlayAlertSoundWithCompletion(vibrateSoundID) {[weak self] in + if eachLoopCompletionBlock != nil { + eachLoopCompletionBlock!() + } + + // 当前的剩余为0就结束 + changeLeftNumberOfLoops-=1 + if changeLeftNumberOfLoops == 0 || self?.endVibrate == true { + self?.stopVibrate() + if endCompletionBlock != nil { + endCompletionBlock!() + } + print("vibrate播放结束") + }else{ + DispatchQueue.global().asyncAfter(deadline: .now() + timeInterval, execute: { + self?.playVibrate(vibrateSoundID: vibrateSoundID, leftNumberOfLoops: changeLeftNumberOfLoops,timeInterval: timeInterval) + }) + } + } + } + +} diff --git a/Pods/DDAudioPlayerKit_Private/LICENSE b/Pods/DDAudioPlayerKit_Private/LICENSE new file mode 100644 index 0000000..b75c465 --- /dev/null +++ b/Pods/DDAudioPlayerKit_Private/LICENSE @@ -0,0 +1,19 @@ +Copyright (c) 2023 DDIsFriend + +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/DDAudioPlayerKit_Private/README.md b/Pods/DDAudioPlayerKit_Private/README.md new file mode 100644 index 0000000..472a083 --- /dev/null +++ b/Pods/DDAudioPlayerKit_Private/README.md @@ -0,0 +1,29 @@ +# DDAudioPlayerKit_Private + +[![CI Status](https://img.shields.io/travis/DDIsFriend/DDAudioPlayerKit_Private.svg?style=flat)](https://travis-ci.org/DDIsFriend/DDAudioPlayerKit_Private) +[![Version](https://img.shields.io/cocoapods/v/DDAudioPlayerKit_Private.svg?style=flat)](https://cocoapods.org/pods/DDAudioPlayerKit_Private) +[![License](https://img.shields.io/cocoapods/l/DDAudioPlayerKit_Private.svg?style=flat)](https://cocoapods.org/pods/DDAudioPlayerKit_Private) +[![Platform](https://img.shields.io/cocoapods/p/DDAudioPlayerKit_Private.svg?style=flat)](https://cocoapods.org/pods/DDAudioPlayerKit_Private) + +## Example + +To run the example project, clone the repo, and run `pod install` from the Example directory first. + +## Requirements + +## Installation + +DDAudioPlayerKit_Private is available through [CocoaPods](https://cocoapods.org). To install +it, simply add the following line to your Podfile: + +```ruby +pod 'DDAudioPlayerKit_Private' +``` + +## Author + +DDIsFriend, DDIsFriend@163.com + +## License + +DDAudioPlayerKit_Private is available under the MIT license. See the LICENSE file for more info. diff --git a/Pods/Headers/Public/DDAudioPlayerKit_Private/DDAudioPlayerKit_Private-umbrella.h b/Pods/Headers/Public/DDAudioPlayerKit_Private/DDAudioPlayerKit_Private-umbrella.h new file mode 120000 index 0000000..78e2b0a --- /dev/null +++ b/Pods/Headers/Public/DDAudioPlayerKit_Private/DDAudioPlayerKit_Private-umbrella.h @@ -0,0 +1 @@ +../../../Target Support Files/DDAudioPlayerKit_Private/DDAudioPlayerKit_Private-umbrella.h \ No newline at end of file diff --git a/Pods/Headers/Public/DDAudioPlayerKit_Private/DDAudioPlayerKit_Private.modulemap b/Pods/Headers/Public/DDAudioPlayerKit_Private/DDAudioPlayerKit_Private.modulemap new file mode 120000 index 0000000..058f140 --- /dev/null +++ b/Pods/Headers/Public/DDAudioPlayerKit_Private/DDAudioPlayerKit_Private.modulemap @@ -0,0 +1 @@ +../../../Target Support Files/DDAudioPlayerKit_Private/DDAudioPlayerKit_Private.modulemap \ No newline at end of file diff --git a/Pods/Manifest.lock b/Pods/Manifest.lock index a371c45..55d6786 100644 --- a/Pods/Manifest.lock +++ b/Pods/Manifest.lock @@ -23,6 +23,7 @@ PODS: - BRPickerView/StringPickerView (2.8.1): - BRPickerView/Base - CocoaDebug (1.7.7) + - DDAudioPlayerKit_Private (0.1.0) - DDAutoUIKit_Private (0.1.3) - DDBasicControlsKit_Private/DDBaseAnimation/DDTransitionAnimation (0.3.2) - DDBasicControlsKit_Private/DDBaseAttributedString (0.3.2): @@ -296,6 +297,7 @@ PODS: DEPENDENCIES: - BRPickerView - CocoaDebug + - DDAudioPlayerKit_Private - DDAutoUIKit_Private - DDCategoryKit_Private - DDColorKit_Private @@ -324,6 +326,7 @@ DEPENDENCIES: SPEC REPOS: "git@github.com:DDIsFriend/DDSpecs.git": + - DDAudioPlayerKit_Private - DDAutoUIKit_Private - DDBasicControlsKit_Private - DDCategoryKit_Private @@ -371,6 +374,7 @@ SPEC CHECKSUMS: AMapTrack-NO-IDFA: 7109cf1867f5d6c407c8191492b1f73101e1682e BRPickerView: 2531a2d4d0fea0b57a1c738de215af0f88863a2f CocoaDebug: b38d31464b91a9775928f8667d114db07b136565 + DDAudioPlayerKit_Private: b18c9b8b4ee2d421227895edac27b2a799fcdb0d DDAutoUIKit_Private: 188066b4d13c8096676ddd9efa15974238f6dca3 DDBasicControlsKit_Private: d3aebc505eaac273a8f6b85238662ad6e64a1a08 DDCategoryKit_Private: 19d515c43d5e9c4ee80b8ccf3fb8ab40368b8668 @@ -400,6 +404,6 @@ SPEC CHECKSUMS: SwiftEntryKit: 61b5fa36f34a97dd8013e48a7345bc4c4720be9a ZLPhotoBrowser: 0563c2bfc7b247b65d023d646012f46cba94101b -PODFILE CHECKSUM: 9a2e6768eed0351abcabcf885507b3914d82edfd +PODFILE CHECKSUM: 4a6b876956d7d3482deecd88ffe2bf250614e00b COCOAPODS: 1.11.3 diff --git a/Pods/Pods.xcodeproj/project.pbxproj b/Pods/Pods.xcodeproj/project.pbxproj index 6c91e7f..1e80120 100644 --- a/Pods/Pods.xcodeproj/project.pbxproj +++ b/Pods/Pods.xcodeproj/project.pbxproj @@ -13,8 +13,8 @@ buildPhases = ( ); dependencies = ( - 4E71BDDD7BF5DFD38953FA04D51395F8 /* PBXTargetDependency */, - 5583646680C6B351D655F223C2FD44AE /* PBXTargetDependency */, + FA5E781C37631ED1017D5E1D0B553DD9 /* PBXTargetDependency */, + 85E210701407A31AAEA411DD9FD7A705 /* PBXTargetDependency */, ); name = "AMapTrack-NO-IDFA"; }; @@ -24,7 +24,7 @@ buildPhases = ( ); dependencies = ( - 89A9F8F4E7FED7BBD79A1303E77D93D9 /* PBXTargetDependency */, + A1B55DD99824428B91A5B1ECF98046F1 /* PBXTargetDependency */, ); name = "AMapLocation-NO-IDFA"; }; @@ -34,7 +34,7 @@ buildPhases = ( ); dependencies = ( - 50D48A0FDEB67E06AEC642DA7B53CA6A /* PBXTargetDependency */, + 7B1224F1300B0270854465C5FC65D11F /* PBXTargetDependency */, ); name = "AMapSearch-NO-IDFA"; }; @@ -45,7 +45,7 @@ D73EEB9F3069F731FAED740B7B5491BD /* [CP] Copy XCFrameworks */, ); dependencies = ( - 2CD3FCD138F62BAA72EECB7831E069B4 /* PBXTargetDependency */, + BCDBF13AE95DE3A2CDD15937AB852BD9 /* PBXTargetDependency */, ); name = JPush; }; @@ -84,3468 +84,3500 @@ buildPhases = ( ); dependencies = ( - 830ADC6612B067C283358C2AC9BDFB0C /* PBXTargetDependency */, + 3BBA8E0128B17F5099C1E7328E299A1C /* PBXTargetDependency */, ); name = "AMapNavi-NO-IDFA"; }; /* End PBXAggregateTarget section */ /* Begin PBXBuildFile section */ - 001D1616C8940B8F237BAF4B3842CCF7 /* EKFormMessageView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 055CB1F2A0BD625EAC2A3669079E7708 /* EKFormMessageView.swift */; }; - 0028AB23BD985EFD09ECA44A848AA90E /* EntryCachingHeuristic.swift in Sources */ = {isa = PBXBuildFile; fileRef = 11A006D6059BAD97F57CE1B6236F4DBE /* EntryCachingHeuristic.swift */; }; - 0057FAB1258739A8C986E8564248734B /* SessionDataTask.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8EBA1DEF61D3744DEFF5D0AD94F65584 /* SessionDataTask.swift */; }; - 00E617A5A3488D348913461872C1B110 /* ZFKVOController.m in Sources */ = {isa = PBXBuildFile; fileRef = D02917726785129AE49B34F7497E3444 /* ZFKVOController.m */; }; - 013BFA329ACD302E4E8CFCC4904E4F0C /* _BacktraceLogger.m in Sources */ = {isa = PBXBuildFile; fileRef = 6EAF42C6F09AF179A7BBE176FA808588 /* _BacktraceLogger.m */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; - 0184836F68D559B44CF2305521C97B44 /* ZLTextStickerView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7D954269AC14EBA13CBB0C7946F3A26B /* ZLTextStickerView.swift */; }; - 0191642005AE8A2F05071A211E671DE3 /* RecursiveScheduler.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6B6B89F7CA1664E5B4D9D6C87BD7E7CE /* RecursiveScheduler.swift */; }; - 0195B164DD9FA0DAA663F438EB8B0CA5 /* UIImage+MemoryCacheCost.h in Headers */ = {isa = PBXBuildFile; fileRef = D5DDF6CEAE3C6307E052CC4FC715A20B /* UIImage+MemoryCacheCost.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 01B1F679DB9C17B48EF0AEDA9DB1F6BC /* SDImageLoadersManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 552EB50626B7CA6F43A884F335F0532A /* SDImageLoadersManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 01B909882A8399F1AF00D730F19BCE74 /* Do.swift in Sources */ = {isa = PBXBuildFile; fileRef = 276FCB3090FF281ABEB9B0592649FE1B /* Do.swift */; }; - 01D3C34FB97401457002EF9EBE8B2076 /* ConstraintMakerFinalizable.swift in Sources */ = {isa = PBXBuildFile; fileRef = B3339614D486179B60CFE654F79B5A1F /* ConstraintMakerFinalizable.swift */; }; - 01E07D16FE7B8B5B61135434E43C3D3D /* SDWebImageCacheSerializer.m in Sources */ = {isa = PBXBuildFile; fileRef = 1906A2C2F2D6AA4F5F54392B60FD1A60 /* SDWebImageCacheSerializer.m */; }; - 01EE603EA56A541E67C41C4667ADA908 /* _CanonicalRequest.h in Headers */ = {isa = PBXBuildFile; fileRef = BB9144308407CC742489AB51D399DA54 /* _CanonicalRequest.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 02534371564A8DCB2D8F5CF4FEBD1413 /* NSBundle+BRPickerView.h in Headers */ = {isa = PBXBuildFile; fileRef = 8C625325AAAB70E7E14A64A4D3DCC3A3 /* NSBundle+BRPickerView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 025E67AC12E77F3A4FA96DE88B181C65 /* InvocableType.swift in Sources */ = {isa = PBXBuildFile; fileRef = A90288493CD927DDF22644AE796BEC83 /* InvocableType.swift */; }; - 03F9201B022B6B8F4AECD14F7359FC32 /* ZLEnlargeButton.swift in Sources */ = {isa = PBXBuildFile; fileRef = D1D450EA98DFF1FBAC1C3CF9ACB65280 /* ZLEnlargeButton.swift */; }; - 041C0B9F468DAB0FAAB76072B1F8281D /* InfiniteSequence.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2B12C21812D9A3C9CDBDE663FB81283B /* InfiniteSequence.swift */; }; - 04AAA5B3682FAC9D09283EA52E01E962 /* CocoaDebugDeviceInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = 0DA7A5297DCF8896F641C4D6A8336991 /* CocoaDebugDeviceInfo.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 04AE3CA3907CB4BC8B56B0CA13EB1203 /* DDWebImageKit_Private-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 8AD87A2D187E1F12955561D44BCE6644 /* DDWebImageKit_Private-umbrella.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 058F5EA91B974F741952D754FE5FDE9F /* ObserverBase.swift in Sources */ = {isa = PBXBuildFile; fileRef = D020FC5F77C529D9997835AAB997DE55 /* ObserverBase.swift */; }; - 05AA761B3AEA607E904EFA7843437904 /* SDDeviceHelper.m in Sources */ = {isa = PBXBuildFile; fileRef = 74CADCBAD3B2B370DC383AE7BA2627CE /* SDDeviceHelper.m */; }; - 05BABBCAC0970F62A2945DF891C9DC9B /* ZLFetchImageOperation.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2590DF3733DA983E298579A63188E238 /* ZLFetchImageOperation.swift */; }; - 05D26D0469B15DF8F6AFB05EF8B22712 /* SDDisplayLink.h in Headers */ = {isa = PBXBuildFile; fileRef = 2FD66B4B8F4058CF3C142787E2CCA624 /* SDDisplayLink.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 05E7F2B03F14E6348730074E6087725C /* _CrashModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = B084F187A62AC59B8CF6FDBADD60334B /* _CrashModel.swift */; }; - 05E836641482AFE4E8F7314F82FA21B3 /* ConstraintDirectionalInsetTarget.swift in Sources */ = {isa = PBXBuildFile; fileRef = 43DCA29F956F9ECA9822AF9326438347 /* ConstraintDirectionalInsetTarget.swift */; }; - 05E83E8CEA8AC6A91BA09675E1FDCF5F /* UITableViewCell+DDCategory.h in Headers */ = {isa = PBXBuildFile; fileRef = 7885C582CA0DAD89BB4113029267A8BD /* UITableViewCell+DDCategory.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0627923D9D4E389A438542032987B77C /* SDWebImageDownloaderOperation.m in Sources */ = {isa = PBXBuildFile; fileRef = 5C2A1A9E9A2C920B5C41FFB5C0477C62 /* SDWebImageDownloaderOperation.m */; }; - 0639C0D97C7215269F7EDE1EA62D2242 /* Infallible+Concurrency.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0D244C132278A6F37C1BF4971007DE94 /* Infallible+Concurrency.swift */; }; - 06C5E365B6D8F2297DE16A7426FD6A2D /* NSObject+CocoaDebug.h in Headers */ = {isa = PBXBuildFile; fileRef = 0B6BA0DEEC7BF87FCE83807F8E428868 /* NSObject+CocoaDebug.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 070216BCA8E3BC5F4964A390EB1FC214 /* Resource.swift in Sources */ = {isa = PBXBuildFile; fileRef = A71EBDF84D07A3429959B43C98F3E31F /* Resource.swift */; }; - 07438D8F7328AAE8F4A7D450AA7FB9AB /* Switch.swift in Sources */ = {isa = PBXBuildFile; fileRef = 20374497326C6215767C64BF25249E57 /* Switch.swift */; }; - 075F7EF0396FFF6A88E97028D611822F /* MAPointAnnotation+DDCategory.m in Sources */ = {isa = PBXBuildFile; fileRef = 9C15549DAD03703DBAAE22869AF1E47C /* MAPointAnnotation+DDCategory.m */; }; - 07842AE9C200E3450448D4CE5EC90B20 /* KVORepresentable+CoreGraphics.swift in Sources */ = {isa = PBXBuildFile; fileRef = B9B7AFF376D7C1714FA1A418CAC11B9B /* KVORepresentable+CoreGraphics.swift */; }; - 07C75CEEEBD4FAD75B68045458EC4A87 /* UIImage+Metadata.h in Headers */ = {isa = PBXBuildFile; fileRef = 8D344C6119348C08BB767FB7A1D20F58 /* UIImage+Metadata.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 07DD7EEF3184FCD7F41D558FAE757829 /* _DebugConsoleLabel.m in Sources */ = {isa = PBXBuildFile; fileRef = A7A670105B1656796B85328E9EB82EB1 /* _DebugConsoleLabel.m */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; - 07E392F599611967F673A8BD40BAC44B /* RxCollectionViewDataSourceType.swift in Sources */ = {isa = PBXBuildFile; fileRef = FDE2B119938353C0577D23AED088FCAC /* RxCollectionViewDataSourceType.swift */; }; - 07FB2928E22C59D69AEC76F3C4E108F6 /* PHAsset+ZLPhotoBrowser.swift in Sources */ = {isa = PBXBuildFile; fileRef = 99DF8CA1C5831F1EFF41085A8367D586 /* PHAsset+ZLPhotoBrowser.swift */; }; - 0843E381D48B6AF5BF9ED463CA5C955E /* ZFPersentInteractiveTransition.h in Headers */ = {isa = PBXBuildFile; fileRef = 3323CDD98F028743B69F315E539F995A /* ZFPersentInteractiveTransition.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 08618BC667C4A41807D3097E7B24DE74 /* Color.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4E0F82F95F4DDE943FD48B814499A525 /* Color.swift */; }; - 0896B76AEBD6BF7C94932BDFE8354462 /* EKAttributes+DisplayMode.swift in Sources */ = {isa = PBXBuildFile; fileRef = C707FF98E0EF9F873B1850F62B0AA2C1 /* EKAttributes+DisplayMode.swift */; }; - 089CDD89933E20438CBA8566705AB4CA /* NSTextAttachment+Kingfisher.swift in Sources */ = {isa = PBXBuildFile; fileRef = 39DF691B51141D7B3A22B912318A5C4E /* NSTextAttachment+Kingfisher.swift */; }; - 08C4C48B5491DF1A9649D553D51AFDBC /* NSObject+Rx+RawRepresentable.swift in Sources */ = {isa = PBXBuildFile; fileRef = 14B0B7E0D8A8A2369FF012C41560F469 /* NSObject+Rx+RawRepresentable.swift */; }; - 08DE62F44C89D747CC07859ACD56B991 /* DDLogKit_Private-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = BA79CD22DB4EF360D9BA0F90DD50A760 /* DDLogKit_Private-dummy.m */; }; - 08F14B504BD90DD29DD65EEB5B6F862E /* UIFont+ZLPhotoBrowser.swift in Sources */ = {isa = PBXBuildFile; fileRef = A04A9FCD00D476101C4814287193D884 /* UIFont+ZLPhotoBrowser.swift */; }; - 090E539A686A781DE820DE5F13F2C163 /* _DeviceUtil+Constant.m in Sources */ = {isa = PBXBuildFile; fileRef = 7695BDCA52BDA57584A5F489F084FF63 /* _DeviceUtil+Constant.m */; }; - 090E7514095D254262AAFDB556B2A092 /* SDFileAttributeHelper.m in Sources */ = {isa = PBXBuildFile; fileRef = 7DA32B5D335E47BC812168C67D1A9A50 /* SDFileAttributeHelper.m */; }; - 094C2F4D9A6B9F76E5FF3F0006E437FC /* MJRefreshBackFooter.h in Headers */ = {isa = PBXBuildFile; fileRef = 12CB140F9F4DD1B0D43C8EEA24EAF352 /* MJRefreshBackFooter.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 096A017DDD63B10CF7D6F1AD7C52E7BB /* AsMaybe.swift in Sources */ = {isa = PBXBuildFile; fileRef = 15C756D06AB7D637E8ED4A2BC716FD21 /* AsMaybe.swift */; }; - 097151339A0CEE631D7C30722B1F19E2 /* UINavigationItem+DDCategory.h in Headers */ = {isa = PBXBuildFile; fileRef = E85A0B83E3BA82ECCAFDB25F6BAACEBB /* UINavigationItem+DDCategory.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 09959F01B2CD4A3AEF341FA5518FBF83 /* Filter.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6FF2323B35988A351F90FD8B446AE8CF /* Filter.swift */; }; - 09F9F981334170713980DDF8809DB8D5 /* IQToolbar.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7D1954D1F130668F1EF37BEE9043B311 /* IQToolbar.swift */; }; - 09FDD7513B55D9A1F614BFEA21B37C45 /* JXCategoryImageCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 818BFF10A86DCBFD7E78B9D191A7FA07 /* JXCategoryImageCell.m */; }; - 0AB82009E5495FF3657BC47CCBB69E14 /* _CustomHTTPProtocol.m in Sources */ = {isa = PBXBuildFile; fileRef = 52D351E65FCEFC9C901751FE23B1FC8C /* _CustomHTTPProtocol.m */; }; - 0AB84C84576DE82DDB8D24B204A7852E /* Completable+AndThen.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8067B14081C91A567B66DC6B18ECF185 /* Completable+AndThen.swift */; }; - 0B3C9C7F2B37E8A5B61C136CB41C1CD8 /* ZFSliderView.h in Headers */ = {isa = PBXBuildFile; fileRef = 10A3454D7A8F19EDD46AF264AAEE40E8 /* ZFSliderView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0B3CB8B0F6A00EC008C0DF3CC323DD2D /* JXCategoryTitleCellModel.m in Sources */ = {isa = PBXBuildFile; fileRef = B1412F6F593B15CBD64B3A687268DA61 /* JXCategoryTitleCellModel.m */; }; - 0B43E469E08E84B5E633D1F007EF145C /* Errors.swift in Sources */ = {isa = PBXBuildFile; fileRef = D1EABDD51C0365036C719268DC8E4C14 /* Errors.swift */; }; - 0B71B7A7EDC041A6A0BB7C127F9DC547 /* MJRefreshAutoGifFooter.m in Sources */ = {isa = PBXBuildFile; fileRef = 1AC4AED3C43F85EDC4D41760135951C4 /* MJRefreshAutoGifFooter.m */; }; - 0B94E75FF2747C7288F1C62CFA5849D8 /* UIApplication+EKAppearance.swift in Sources */ = {isa = PBXBuildFile; fileRef = 80987642EBA08B6BDCA985D41855CEF5 /* UIApplication+EKAppearance.swift */; }; - 0BE239C83EB39393C2217E5B2FF6B218 /* SDAsyncBlockOperation.m in Sources */ = {isa = PBXBuildFile; fileRef = DBDC68D4F03D15C5B98048E8DD70FE27 /* SDAsyncBlockOperation.m */; }; - 0C0D931655251C8565D2D26F6C786DD8 /* Platform.Linux.swift in Sources */ = {isa = PBXBuildFile; fileRef = 83456E745643487A8247A41DED90F258 /* Platform.Linux.swift */; }; - 0C21914CAD223DB4EAB1015C4EB49BA5 /* UIImage+ZLPhotoBrowser.swift in Sources */ = {isa = PBXBuildFile; fileRef = B87E6D16475E3CF40F459AD7D4B0D41D /* UIImage+ZLPhotoBrowser.swift */; }; - 0C2F5ABC3CF48A67BBC11C6461EC67D4 /* DDImageView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 995EB43547433684F5D8B79532DB80AD /* DDImageView.swift */; }; - 0C580E892DB90A0E920B62E3ECEA0C09 /* DDMutableAttributedString.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2BAC73FCFBDDD704EC694A4C8220D67C /* DDMutableAttributedString.swift */; }; - 0C82FB56CC552FB638EC1A23CDBCA8DB /* AsyncSubject.swift in Sources */ = {isa = PBXBuildFile; fileRef = 18527623E8BD70F088500400F9875F20 /* AsyncSubject.swift */; }; - 0CB74F81D7F7ED13A393A108FFD018F7 /* ImageProcessor.swift in Sources */ = {isa = PBXBuildFile; fileRef = 151730D6FC8CF83F1C17AC553B0C4490 /* ImageProcessor.swift */; }; - 0D1B44FC9F42E3CD0D7BC1DB16C97823 /* GPBMessage+CocoaDebug.m in Sources */ = {isa = PBXBuildFile; fileRef = CA970F5A50011D308DD86FAB8B25546C /* GPBMessage+CocoaDebug.m */; }; - 0D2D30A5814526B8C710A28A0B739B9C /* UITextField+DDCategory.m in Sources */ = {isa = PBXBuildFile; fileRef = 51B0FE0CE255275D563EBB823D9B8240 /* UITextField+DDCategory.m */; }; - 0D36AA1F6CE436E93F6E77931BB18449 /* UIViewController+ZFPlayerRotation.m in Sources */ = {isa = PBXBuildFile; fileRef = 75738FDE72D8C5DBA06B327AB289BE96 /* UIViewController+ZFPlayerRotation.m */; }; - 0D55D8F71A11E56504065B0BDB737923 /* Binder.swift in Sources */ = {isa = PBXBuildFile; fileRef = DA123D4EF40A4F164D6EF0D104019126 /* Binder.swift */; }; - 0D99206F3199FC746EE26A898369B8A5 /* UIButton+Kingfisher.swift in Sources */ = {isa = PBXBuildFile; fileRef = 89455B4444697DB7E7BC32C6E339EA08 /* UIButton+Kingfisher.swift */; }; - 0DABF94CD1F51D2C9CE647F2208CBDD3 /* DDMASearch.m in Sources */ = {isa = PBXBuildFile; fileRef = F745DB220764ED676F6C089EA3C68C6D /* DDMASearch.m */; }; - 0DB9A58537A673D13F83A4C8B2883509 /* ZFSpeedLoadingView.h in Headers */ = {isa = PBXBuildFile; fileRef = F1439AE483877F0D3B68B545D9A24706 /* ZFSpeedLoadingView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0DDD84CB97DFA910552F2B2957AE9B1E /* DDNavigationController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 293293B8514DE28858CDD483523EC213 /* DDNavigationController.swift */; }; - 0DE926C74AFEF0953A45D1C0466B8983 /* ZFSpeedLoadingView.m in Sources */ = {isa = PBXBuildFile; fileRef = EDE8C97BDB5540C618C9B838338E3AB7 /* ZFSpeedLoadingView.m */; }; - 0E0AA48C27E14A2A00DEA492873A599C /* SDMemoryCache.h in Headers */ = {isa = PBXBuildFile; fileRef = 69DC3044DDE4B5410CE7DADE305D0448 /* SDMemoryCache.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0E2DB7F0238399F871D828D7969754B1 /* EKRatingSymbolsContainerView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 047164937C5950C9CC5E19F434FC33E0 /* EKRatingSymbolsContainerView.swift */; }; - 0E552B2DD00F38FBAFDCA5BB4CDF24B6 /* DiskStorage.swift in Sources */ = {isa = PBXBuildFile; fileRef = FB401CB82DC3A4E45142BA9EA2D52F0C /* DiskStorage.swift */; }; - 0E56518E9F1C83990C68DB5F3473FA31 /* JXCategoryViewAnimator.h in Headers */ = {isa = PBXBuildFile; fileRef = E4F3EC9EA0148ABA9D63CFA7ACD8D0F0 /* JXCategoryViewAnimator.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0EF8EF430D8AAC8E5FC30E67B33ADD43 /* RetryStrategy.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7A319E43420D7EFBF3620F4F1CB18BA6 /* RetryStrategy.swift */; }; - 0F0C901337398FE4738DE95521DCEB56 /* JXCategoryImageCell.h in Headers */ = {isa = PBXBuildFile; fileRef = 48234D24B34FFEB1DA5AF06966A996BD /* JXCategoryImageCell.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0F3011DC2A56D1F3C85CB6CC751AC27B /* BRStringPickerView.m in Sources */ = {isa = PBXBuildFile; fileRef = 2258E755983CFB104C191FF7873AD1A2 /* BRStringPickerView.m */; }; - 0F3D0046C86EE9D561A825514D92565C /* UIColor+SDHexString.h in Headers */ = {isa = PBXBuildFile; fileRef = E0DF098C1C0D65D1651366FD8CF80DD5 /* UIColor+SDHexString.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0F42E21EE32226CBCC3299609B1B40EF /* UITextView+DDCategory.h in Headers */ = {isa = PBXBuildFile; fileRef = 101BA43A219A5BE2A9512CA2CBA01CFA /* UITextView+DDCategory.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0F920FC3CBA6622C2B007441D6D1126D /* JXCategoryBaseCell.m in Sources */ = {isa = PBXBuildFile; fileRef = A1D1F9269ED245A4060838FC64C0EFD6 /* JXCategoryBaseCell.m */; }; - 0F9BAD6D1148CCA3C71372F9C1A79074 /* DDZFPlayerKit_Private-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = F57D3F8AD316C5F37113D8A8A494EFB8 /* DDZFPlayerKit_Private-dummy.m */; }; - 10345D3B19E401C3F2822074041C0558 /* UIView+WebCache.h in Headers */ = {isa = PBXBuildFile; fileRef = EF24ABF8F1572E39DCE1A8019184FD5D /* UIView+WebCache.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 104C35DFFA5A1426FF8EFF6E63793213 /* JXCategoryNumberView.m in Sources */ = {isa = PBXBuildFile; fileRef = 72136FE9A7AEC123D32FCCC4C4EC5834 /* JXCategoryNumberView.m */; }; - 104EA22965200BF741890B104BF71879 /* DDTimerObject.m in Sources */ = {isa = PBXBuildFile; fileRef = 827D4F3944DDAE0DF0EA3B6E06F1C36B /* DDTimerObject.m */; }; - 10DE5D64EDD01A2176294CC87737263E /* SDImageCacheDefine.h in Headers */ = {isa = PBXBuildFile; fileRef = E97B58BEA1472DA48DDD4F451D447266 /* SDImageCacheDefine.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 110FF9ECABC7F20FEEC801793B897C94 /* RxPickerViewDelegateProxy.swift in Sources */ = {isa = PBXBuildFile; fileRef = ACAEE3CCE1F1E83D412084D417F28D9B /* RxPickerViewDelegateProxy.swift */; }; - 1128E2E73320605A26D05E7B01D3BD83 /* ZLAddPhotoCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6967F454C26157A17CCA35959AB343D2 /* ZLAddPhotoCell.swift */; }; - 1129CBFC5796A338C3A3FE8385DC9959 /* UINavigationController+DDCategory.m in Sources */ = {isa = PBXBuildFile; fileRef = 8EC2E98E67A9874F1E88188BAA778684 /* UINavigationController+DDCategory.m */; }; - 115D553116A45E927ACF194352E128C4 /* DDCategoryKit_Private-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 1BB7F9EAAFF2CD04B575824562D3AF45 /* DDCategoryKit_Private-dummy.m */; }; - 117EF0A1D2A3EC3BF889E0F095AF4EE3 /* SerialDisposable.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1BACC92E207A3ACFC81EA93CF1930ED5 /* SerialDisposable.swift */; }; - 12669E493A84B9537D7DC044623A72A8 /* Completable.swift in Sources */ = {isa = PBXBuildFile; fileRef = 06D3039EFC811BDD6760EB0EE1B07D13 /* Completable.swift */; }; - 126F75C66AAE521360A205CC28EDA57C /* _DeviceUtil.m in Sources */ = {isa = PBXBuildFile; fileRef = DD5BF07633A9C9F924F4FC7FE9BF5E42 /* _DeviceUtil.m */; }; - 12A3FFE6EFA102969EC857701360FA43 /* ObservableType.swift in Sources */ = {isa = PBXBuildFile; fileRef = 62AB53ED343EF668D1D4935477F6FCF5 /* ObservableType.swift */; }; - 130AD626ABD8A65564897083F19ED149 /* Skip.swift in Sources */ = {isa = PBXBuildFile; fileRef = 80A86B6A7D72434807A43EED155E1191 /* Skip.swift */; }; - 1313000F563D15AEBF36F0A504ED2033 /* HistoricalScheduler.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0026C3BBBA6C0FFA35BFEF3769767C65 /* HistoricalScheduler.swift */; }; - 13867C423EFFAF5440A49DA5848C016E /* Lock.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0B29521FFEB240EDFC0C76D91356F136 /* Lock.swift */; }; - 13AA5156913F0EC843A8AC0B9AC5BFAD /* _Swizzling.h in Headers */ = {isa = PBXBuildFile; fileRef = 84805C495D92933002A074D13D71707C /* _Swizzling.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 13B03D3CC04040B5E30C7FB851B053C0 /* FPSCounter.swift in Sources */ = {isa = PBXBuildFile; fileRef = FF4F5B59773D66A5F0821D6C7D0890A1 /* FPSCounter.swift */; }; - 13E36A94D23C8287C7663C78D6C35ADA /* Create.swift in Sources */ = {isa = PBXBuildFile; fileRef = 11064BE7C5144CE3265A9D951100F139 /* Create.swift */; }; - 141D0E42F2CAAE95B5DB881A0726A464 /* UIScreen+DDCategory.m in Sources */ = {isa = PBXBuildFile; fileRef = BA4748D12A39BC7EE7AA6B916C885631 /* UIScreen+DDCategory.m */; }; - 14BC856075DA12C985773806DA200B51 /* UIScrollView+Rx.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2DB12039461C90BE59120F9308BDE728 /* UIScrollView+Rx.swift */; }; - 150EBE744426DA643E507BA08A9DE5B7 /* _OCLoggerFormat.m in Sources */ = {isa = PBXBuildFile; fileRef = DB6C882E4E62E13A811162E2E9FAA808 /* _OCLoggerFormat.m */; }; - 1511F0539EE313BF002EB0A462E30B65 /* QLCompatibility.swift in Sources */ = {isa = PBXBuildFile; fileRef = 645D10AFFAF643B68487762B1ADE8630 /* QLCompatibility.swift */; }; - 1561BF831B4EC3E3E879298DA74BD7F9 /* SDImageIOCoder.h in Headers */ = {isa = PBXBuildFile; fileRef = F7B8E5AC39D24AD8F796256EA544F517 /* SDImageIOCoder.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 159496B27D352A38E9ACDE8A3DFAFE1F /* PublishRelay+Signal.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7A5FF7BC2D8B95FEA46B01F2404411F5 /* PublishRelay+Signal.swift */; }; - 15A56F31EB667B2BEC41ECE9F2C43571 /* CacheSerializer.swift in Sources */ = {isa = PBXBuildFile; fileRef = 09CFA82591686C7028E43270C4F3EA3C /* CacheSerializer.swift */; }; - 15D200BF217018C1BAFCD4226E2DBC5C /* UISwitch+DDCategory.h in Headers */ = {isa = PBXBuildFile; fileRef = F5A256B8C583A50845AE7FB5B6C71FD7 /* UISwitch+DDCategory.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 15D653A7E1AE2E452BB8CE50ECF09C9A /* DDAlamofire.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6A71AF412D9D04D2E21DEF29E58D3C63 /* DDAlamofire.swift */; }; - 162922E11D73E9919CFB62AADD316379 /* NopDisposable.swift in Sources */ = {isa = PBXBuildFile; fileRef = FE1D27C3D655462D110DAB2C76EAEB58 /* NopDisposable.swift */; }; - 164856030498E9617B1C009110F69DD3 /* CALayer+DDCategory.m in Sources */ = {isa = PBXBuildFile; fileRef = 3BE9E089AED43F8B531B80D40F4F125C /* CALayer+DDCategory.m */; }; - 16AED9E453F33B4FB25D6A64A1DBED59 /* _NetworkHelper.m in Sources */ = {isa = PBXBuildFile; fileRef = 6B233A4DA21BAF076F0962449F795D15 /* _NetworkHelper.m */; }; - 1719ADC81CA7D3C14E267ACBDBD7D16F /* JXCategoryNumberView.h in Headers */ = {isa = PBXBuildFile; fileRef = 4CCCE44CDB43F58EC88EFE06F30841BB /* JXCategoryNumberView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1852BF48A0664A571D3474A1421403E2 /* SessionDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = 963E26E890BD9485EF8BB51CC12DF4E9 /* SessionDelegate.swift */; }; - 1852C428B200E54A4F105B1F4D1E9CA4 /* Image.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5761978907E40B3B5205F4B2B8A6075A /* Image.swift */; }; - 18A97E86B886DAA53D8D79BB9AFD0E95 /* SDImageFrame.h in Headers */ = {isa = PBXBuildFile; fileRef = 026415A254F41C86857D5F57BF48AD07 /* SDImageFrame.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 18FFEFC84AF85E9A5B79D6B9BFFE9532 /* _DeviceUtil.h in Headers */ = {isa = PBXBuildFile; fileRef = DFE9A23E712845344C8FDBF91A85E437 /* _DeviceUtil.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1951974553555FDD604E274748E45DD8 /* JXCategoryViewDefines.h in Headers */ = {isa = PBXBuildFile; fileRef = 312E4EFB5D10B7E6432A7C7B75B6A4B3 /* JXCategoryViewDefines.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 19852C32598DF9170B3E4DEF382C3532 /* SDWebImageManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 4E0B76E404A99912C095AA30091A7A7B /* SDWebImageManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 19A0C6679F5D96EA2729433D67445583 /* ZFLandScapeControlView.h in Headers */ = {isa = PBXBuildFile; fileRef = 967B2C4AF7BC326CDA7984C583642E97 /* ZFLandScapeControlView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 19FFD9885E9F8F4EDD2C35117FF2C064 /* UIButton+DDCategory.h in Headers */ = {isa = PBXBuildFile; fileRef = 3ABD15FE3BF5AD14A022021BEF67736E /* UIButton+DDCategory.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1A27EABDB2399A0ECC0F9259AE5A6065 /* MAPointAnnotation+DDCategory.h in Headers */ = {isa = PBXBuildFile; fileRef = 4A4AA177AC349D3F364073D4D8C6FACC /* MAPointAnnotation+DDCategory.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1A47EBBCEC8DDE7E8EA1C71FEC2BE256 /* EKEntryView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2295930614E93E43862A2B8BA923ECFC /* EKEntryView.swift */; }; - 1A543DDEB276FE469EDAE5BD0053FCF9 /* ImmediateSchedulerType.swift in Sources */ = {isa = PBXBuildFile; fileRef = F43F37D115DDF5A7C28C0B31B34ACD6D /* ImmediateSchedulerType.swift */; }; - 1AA1E2DE0F329F7CE0C7AADF49DA1ACB /* Sequence.swift in Sources */ = {isa = PBXBuildFile; fileRef = 10E0A7E6604E7DCA63A4365CB3437F1D /* Sequence.swift */; }; - 1AB7F7353ABEACF3DFF380371346E4F1 /* StartWith.swift in Sources */ = {isa = PBXBuildFile; fileRef = 945FC895CBDB32B6DC63100F87FD9422 /* StartWith.swift */; }; - 1AD438429DD404040E78321648906FEB /* EKXStatusBarMessageView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7ECE7BA67A0FE41BA21564D2F43A1F81 /* EKXStatusBarMessageView.swift */; }; - 1B00CCE61A30E081B712406C0B86CDD5 /* BRAddressPickerView.h in Headers */ = {isa = PBXBuildFile; fileRef = D2CEE0757CECA67F05161F6CA66A375E /* BRAddressPickerView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1B1525A8959E24F9A9FFC522554B43F0 /* DDBaseViewController.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = B285981AF82CE9F71F33570BFF558D99 /* DDBaseViewController.xcassets */; }; - 1B1F0477E626D72E108F4E670DB7ED7C /* SDWebImageTransition.m in Sources */ = {isa = PBXBuildFile; fileRef = 596E562AF2766E240D27BF79A14178CC /* SDWebImageTransition.m */; }; - 1B641CAE5F13D776CBF39C4BEF9A70CC /* DDMANaviManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 4833BCD0AEE159492AF1C430CBCE6D2C /* DDMANaviManager.m */; }; - 1B9B8CB7EFF73C7A513D79EE43AEDED8 /* EKAttributes+BackgroundStyle.swift in Sources */ = {isa = PBXBuildFile; fileRef = AAA8AB026F949934E3E49CEF0C34FFB7 /* EKAttributes+BackgroundStyle.swift */; }; - 1BE94E6045C39A801177EFCA0C3366CD /* SharedSequence+Operators+arity.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6E46384338E715E961D5E1646F5D795D /* SharedSequence+Operators+arity.swift */; }; - 1BFEF307C3750AA6F3C4D9E8E2929DA2 /* ToArray.swift in Sources */ = {isa = PBXBuildFile; fileRef = A5ECFDE643E7B69A74381E41CAB19885 /* ToArray.swift */; }; - 1C5F07B42EB43C301039536EDF55A7C8 /* DDMAMapView.m in Sources */ = {isa = PBXBuildFile; fileRef = 0CF54B0AB9D6F66FA4696F98802E50CA /* DDMAMapView.m */; }; - 1C8E6F4C2966C17FFDE1E393D2B2C52B /* SDImageCachesManagerOperation.h in Headers */ = {isa = PBXBuildFile; fileRef = ADBE6DB8A3F4A5C335090B04CD7BED49 /* SDImageCachesManagerOperation.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1CF914EE045065FC260282EACEB39A47 /* SDWebImageCompat.h in Headers */ = {isa = PBXBuildFile; fileRef = C3AB4B6C9539F570859A6EECE23B7BAF /* SDWebImageCompat.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1D029DD0697E9DA5079F55DEE0C53D99 /* SDInternalMacros.h in Headers */ = {isa = PBXBuildFile; fileRef = 444C545292010139719456EF59991C96 /* SDInternalMacros.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1D65F74F1CBA03010F4100F7B6A7CC58 /* AnyObserver.swift in Sources */ = {isa = PBXBuildFile; fileRef = FEED1EA446DAFDCFAB2807A339078B72 /* AnyObserver.swift */; }; - 1D872C7E6CFFB616D9C2AE9A818CE105 /* SDImageCacheConfig.m in Sources */ = {isa = PBXBuildFile; fileRef = D45CFD468C89B27771F42CA825E9D339 /* SDImageCacheConfig.m */; }; - 1D8E88F845B89CEDF18B157D813D374D /* NSThread+DDCategory.m in Sources */ = {isa = PBXBuildFile; fileRef = 9E197D6F9AA25F673F741D1E1DBEE116 /* NSThread+DDCategory.m */; }; - 1E3E0526C3415FC308F6A39B1A707C73 /* DDTextView.swift in Sources */ = {isa = PBXBuildFile; fileRef = A0F62732B034FA270F94E496885F0109 /* DDTextView.swift */; }; - 1E6F507B7333AC0C2EF6B6308DD6292F /* SDWebImageCompat.m in Sources */ = {isa = PBXBuildFile; fileRef = DC510E685D4BE6E79BD44EEDE0A38ADD /* SDWebImageCompat.m */; }; - 1E884150A9E982B4F18D51B7AE9FB246 /* ConstraintRelation.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7F598D9F166A0F728E99E590C34BB985 /* ConstraintRelation.swift */; }; - 1E8D214A9C0882F7ED1EC3EB36C1EDC3 /* Concat.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4AD8DF849C32476816B6CB7227650E54 /* Concat.swift */; }; - 1EC020C895DBB3F41B8F38DC6B184DE2 /* SDGraphicsImageRenderer.m in Sources */ = {isa = PBXBuildFile; fileRef = 881DFAE8BCD401EF059EFF6E1E097C03 /* SDGraphicsImageRenderer.m */; }; - 1EF6941565F1A4B36DF833813DA9E825 /* BRAddressModel.m in Sources */ = {isa = PBXBuildFile; fileRef = 4D2D51E8767FDC9EE116468C55754800 /* BRAddressModel.m */; }; - 1F21967BAC4672B06837790CF2EA6287 /* DDBaseTextView.m in Sources */ = {isa = PBXBuildFile; fileRef = E9D29B91C8B7ED8F438AB517FC180810 /* DDBaseTextView.m */; }; - 1F3910187870605E2473B117E631E6C3 /* DDBaseButton.m in Sources */ = {isa = PBXBuildFile; fileRef = 456BF3AB46CA4989E1B301D9CD7585EA /* DDBaseButton.m */; }; - 1F45EB055DE648E034F3E56804F6499A /* DDBaseImageView.m in Sources */ = {isa = PBXBuildFile; fileRef = 8C01443E4FE3ABFD94350FD5C3A485CE /* DDBaseImageView.m */; }; - 1F6F77F98F7B208FD65CB90C0AEA6A17 /* DDTextField.swift in Sources */ = {isa = PBXBuildFile; fileRef = DE90732A6C3DA92864E3A4AEAB12CCFA /* DDTextField.swift */; }; - 1FF938954BF9890AA2DCFFA6A7B6B518 /* SingleAssignmentDisposable.swift in Sources */ = {isa = PBXBuildFile; fileRef = D8380B7096F67ADF34521DE5787C76DF /* SingleAssignmentDisposable.swift */; }; - 205D4F61CB9ED1CE451C27D5950DE9F2 /* CrashListViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2FCD87A9BB80BC1896C50ED7AE52E866 /* CrashListViewController.swift */; }; - 20624FD8D76D790F3E133497F0AB1815 /* TextInput.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1A65D6A3020D867744C401AC4E07A7E0 /* TextInput.swift */; }; - 2067A60A822EA5669B176ADE31C961A6 /* DDOCLog.h in Headers */ = {isa = PBXBuildFile; fileRef = 321C95BEA3D10060E37B7CAFC48C79D1 /* DDOCLog.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 208C28BB20B74966180E09F143D05703 /* JXCategoryIndicatorLineView.h in Headers */ = {isa = PBXBuildFile; fileRef = 67BFFF7585BFDED453DE75404B9B7F84 /* JXCategoryIndicatorLineView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 21512C78C6B356E2C228D9BFC7481794 /* IQTextView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 818E24A615598DA62B73E4C9F2CFECA6 /* IQTextView.swift */; }; - 218CD2971995C4270CE6C0FD6F7FD1D3 /* MultipartFormData.swift in Sources */ = {isa = PBXBuildFile; fileRef = 67060FD42145B66F1A61CA35C1A61F88 /* MultipartFormData.swift */; }; - 21BBCC480DCFFDA1A130CB3F1A89D5B0 /* NSTextView+Rx.swift in Sources */ = {isa = PBXBuildFile; fileRef = 414CF298D3261A911036D4E70D88D9E8 /* NSTextView+Rx.swift */; }; - 221A1EFA0518311976C4159DE2D719B8 /* EKWindowProvider.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2618A44ED4407AAC3256C172933E66D4 /* EKWindowProvider.swift */; }; - 228D1E75D89473B26C6DC7FDB062E78D /* Queue.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2D3A19A3AD8076A9E356FE5841DA26D6 /* Queue.swift */; }; - 2298CBA33A546C29D91B05255F56DF08 /* UISwitch+DDCategory.m in Sources */ = {isa = PBXBuildFile; fileRef = 7A45C29E305E44845DAAF3984D7DF80A /* UISwitch+DDCategory.m */; }; - 22ACB88454D706696FFA80153AFCC611 /* _FileTableViewCell.m in Sources */ = {isa = PBXBuildFile; fileRef = C1A1AB926D0B16501E5977AFC075A328 /* _FileTableViewCell.m */; }; - 22B2893540824DE4EAE73613630EEB7D /* EKRatingMessage.swift in Sources */ = {isa = PBXBuildFile; fileRef = 781E0C197B573A11D8B25ADC6985A8DE /* EKRatingMessage.swift */; }; - 22C8760F490B4DF8C8BB19A0FAE4A6E7 /* ImageTransition.swift in Sources */ = {isa = PBXBuildFile; fileRef = C5F1A5A4EEE526A285DC0E1CFF378C60 /* ImageTransition.swift */; }; - 22F708E957D1B5F9A5503FB63443DBCB /* UIColor+JXAdd.h in Headers */ = {isa = PBXBuildFile; fileRef = 7CA332AB095C0D0C670BDAD4256FCEB7 /* UIColor+JXAdd.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 23D60AC17268CEAE321FD91D95FDFEA2 /* _FileInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = 898F5967F1152EE1814DF076830BAE28 /* _FileInfo.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 241AEDFB15B65C726A7E26CA2B77FA6F /* CombineLatest+Collection.swift in Sources */ = {isa = PBXBuildFile; fileRef = F63973A1D441D2D2E7D8AE38DA8B1D0F /* CombineLatest+Collection.swift */; }; - 2446E15C2691076AE02AE7FB84E124BF /* UIView+MJExtension.m in Sources */ = {isa = PBXBuildFile; fileRef = 41F7FD73008ECCD76A5B624BDD5F3592 /* UIView+MJExtension.m */; }; - 249E5CB98CD1AC41A44D2C1C99B98DAE /* UIImageView+ZFCache.m in Sources */ = {isa = PBXBuildFile; fileRef = C9C18819AE86B5CD23911364EFB83BAB /* UIImageView+ZFCache.m */; }; - 24CB04FF8F5A845609FBEA4C39D417D7 /* Array+ZLPhotoBrowser.swift in Sources */ = {isa = PBXBuildFile; fileRef = 51C3C199E1366AAEB5E510B8E5B368EA /* Array+ZLPhotoBrowser.swift */; }; - 24DE1041669D3143CDC3325534333281 /* UIFont+DDCategory.h in Headers */ = {isa = PBXBuildFile; fileRef = 485B94E3FCC36EBAB730C1AE86E8BB73 /* UIFont+DDCategory.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2507014A26449C348CEC857B89FEE333 /* MJRefreshComponent.m in Sources */ = {isa = PBXBuildFile; fileRef = 7F483825F3CB9B13EAA97C8E71F4ACFC /* MJRefreshComponent.m */; }; - 2529C4A581869CB960A96D4B357DD07E /* ZFSmallFloatControlView.h in Headers */ = {isa = PBXBuildFile; fileRef = 0ACA4DA38B2A3B09C648A0A111ECBFB3 /* ZFSmallFloatControlView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 25367CA720FADB9E539AEE26697C07DB /* SDWebImageMapKit.h in Headers */ = {isa = PBXBuildFile; fileRef = 2772E18A812044045E3CC46B4E83458B /* SDWebImageMapKit.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2555BE2A6241B7E7B7BEB9588255E451 /* BehaviorSubject.swift in Sources */ = {isa = PBXBuildFile; fileRef = F13C2F411F73E5F7E433151FFC42A20E /* BehaviorSubject.swift */; }; - 255D6DCAC2BD25E3D42581EA3D13373C /* ZLPhotoBrowser.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2BC68698D933F21C9854CEEC1141FCD7 /* ZLPhotoBrowser.swift */; }; - 2594B81E012C40CF7C0996C3ECB30BAA /* MJRefreshNormalTrailer.m in Sources */ = {isa = PBXBuildFile; fileRef = 1D8AA9F4B37C4FDC9B16C8F80C7FA28A /* MJRefreshNormalTrailer.m */; }; - 25B9D312046078B515E9DE443B24ED35 /* ServerTrustEvaluation.swift in Sources */ = {isa = PBXBuildFile; fileRef = AF5DADD331F2AC5EC5ADD98DB4CD102E /* ServerTrustEvaluation.swift */; }; - 25CEE593E4ED0317A5BB9456436B0C67 /* EKButtonView.swift in Sources */ = {isa = PBXBuildFile; fileRef = CB6AA084987BA3DDDEF03C8205349B5D /* EKButtonView.swift */; }; - 25FD8F9E0D71213C84D8FE596B7B2882 /* CocoaDebugDeviceInfo.m in Sources */ = {isa = PBXBuildFile; fileRef = 09F7627F828E9EAEEAFD92C5D6F3858F /* CocoaDebugDeviceInfo.m */; }; - 263DB6863DCAC0E7FDA96E36C6971B4D /* ConstraintLayoutSupport.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5445A5085A135866ABBEB2CCF59255DF /* ConstraintLayoutSupport.swift */; }; - 265FB60F6AB34B4FAFEFF416DA1F1F10 /* JXCategoryBaseCellModel.h in Headers */ = {isa = PBXBuildFile; fileRef = 49B7952684F896A003E108E70DF91956 /* JXCategoryBaseCellModel.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 26ACB5A764F1B34A609F8B6C662C395B /* LayoutConstraintItem.swift in Sources */ = {isa = PBXBuildFile; fileRef = EB4AA639EF6C53416725FD05E68BF253 /* LayoutConstraintItem.swift */; }; - 26B7A9499E63379EC6F3F9CE39C58B23 /* DDBaseView.h in Headers */ = {isa = PBXBuildFile; fileRef = C5881D7E7F84B8899BB379209F312C5B /* DDBaseView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 273E6DDCA9EEEB683B0C2C61AEC9EC69 /* _QNSURLSessionDemux.h in Headers */ = {isa = PBXBuildFile; fileRef = 84041D6B6F03C17A303C33ECC8D23B3C /* _QNSURLSessionDemux.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2782178F820A14ECFAD608CF648BB26D /* MJRefreshBackStateFooter.m in Sources */ = {isa = PBXBuildFile; fileRef = 980B60DB60CE7C0F05EF03176D74B7F0 /* MJRefreshBackStateFooter.m */; }; - 27ADC2222714C29A0504BF7A6C1EE24D /* SDImageLoader.h in Headers */ = {isa = PBXBuildFile; fileRef = 657B97D86A29511CC9588C0915DA2F5D /* SDImageLoader.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 27C3CEF5A8C7BFB8275195F1380473CB /* UIApplication+Rx.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3EFFC6DAEDA76B5226C185A63168CBE0 /* UIApplication+Rx.swift */; }; - 27D56EFA3F47ADD1F9EAC24EA184A228 /* DisposeBase.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3FC615F0A52CAE1DC807C91AAC35E7B0 /* DisposeBase.swift */; }; - 27DF770B170C70528E02B140DABC07A0 /* _BacktraceLogger.h in Headers */ = {isa = PBXBuildFile; fileRef = 3EEB0581E5990FD3403AAFB70E2D2406 /* _BacktraceLogger.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 27EDA91CC20195D694592CA50256BE67 /* EKAttributes+Position.swift in Sources */ = {isa = PBXBuildFile; fileRef = A649C7437DC88996866C3A346982EE0E /* EKAttributes+Position.swift */; }; - 283A4DE101C181499CDD2613E0371BB9 /* UIBarButtonItem+DDCategory.m in Sources */ = {isa = PBXBuildFile; fileRef = 3E1992CC580D83A4D927CB1EAAA9C131 /* UIBarButtonItem+DDCategory.m */; }; - 28451934CBF945178870648EE6C40017 /* ConstraintAttributes.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5477D7AAB0BAEC070CF380825CAF0E72 /* ConstraintAttributes.swift */; }; - 285FF55A84F63D0155686007D16BE4CD /* DDBaseAttributedString.h in Headers */ = {isa = PBXBuildFile; fileRef = D9F2BD832DF1E60682D1FCFCB5302168 /* DDBaseAttributedString.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 28A3D5219204E0A1B1D89FE4F9545434 /* KFImage.swift in Sources */ = {isa = PBXBuildFile; fileRef = ED5D7313DDF2AF7B74D24552B709D4DC /* KFImage.swift */; }; - 28C71FA4017D8153E1670D26F490AB0E /* Deferred.swift in Sources */ = {isa = PBXBuildFile; fileRef = 75175138CADA071FAC67FEDBBF373177 /* Deferred.swift */; }; - 28E17E4430C3771E13B5AEEE1D4C7C40 /* UIViewController+DDCategory.m in Sources */ = {isa = PBXBuildFile; fileRef = 1DACDC37AE0B79F535F37A68C323BD51 /* UIViewController+DDCategory.m */; }; - 28F932F4B519F37A070730806248F76D /* UIView+ZFFrame.h in Headers */ = {isa = PBXBuildFile; fileRef = F658C34F510D4161B91E8202C301B94C /* UIView+ZFFrame.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 290A9561E0DCC29481466591A40FFDE2 /* SubscriptionDisposable.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1C102EBD15B3DBCF9B3C9F086A8E9712 /* SubscriptionDisposable.swift */; }; - 296C4C79146F190E62AE816E9ECABEEA /* _DebugConsoleLabel.h in Headers */ = {isa = PBXBuildFile; fileRef = BDFB35E9F875306B9DFFD2E3B49DDA21 /* _DebugConsoleLabel.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 29AC72CCC28FCCF2A27C61A4B40DB411 /* DDBaseMutableAttributedString.h in Headers */ = {isa = PBXBuildFile; fileRef = 9E92C5C6AF942E4A17B20ADFEF121074 /* DDBaseMutableAttributedString.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 29D38C16AE934FA9E747A2C847F20CBD /* Debounce.swift in Sources */ = {isa = PBXBuildFile; fileRef = C865048034530D516DD20746A4E43244 /* Debounce.swift */; }; - 2A18C0800141EB4384171EDD81C9DD57 /* UIImage+DDCategory.h in Headers */ = {isa = PBXBuildFile; fileRef = F7508C3C007BB7CE6704DFF8D2E8E1CA /* UIImage+DDCategory.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2A1CD08ADFFF90E753887549FE5426F5 /* SDAnimatedImageView+WebCache.h in Headers */ = {isa = PBXBuildFile; fileRef = EE62C149B0B7EA862211958DA600895A /* SDAnimatedImageView+WebCache.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2A537A4F574936E29C08E5AA2A861AE1 /* DDBaseNavigationController.m in Sources */ = {isa = PBXBuildFile; fileRef = 33C35B0F6BF9962B5D5512C471F442A5 /* DDBaseNavigationController.m */; }; - 2A682CB750AC415483F964B6A89F9EF3 /* ConstraintDSL.swift in Sources */ = {isa = PBXBuildFile; fileRef = AC781B19D782C09CD7171D582C7C1299 /* ConstraintDSL.swift */; }; - 2ADDEBCF302EE4644785955546FA0137 /* SDAssociatedObject.m in Sources */ = {isa = PBXBuildFile; fileRef = 6766ED548AC21BE24383ABB9DDA84F3C /* SDAssociatedObject.m */; }; - 2B3EF5A06A1D104954F53234E8E0A873 /* JXCategoryView.h in Headers */ = {isa = PBXBuildFile; fileRef = 46D9CF529727975EEE6A5B0B8500939D /* JXCategoryView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2B665FC004F48BC932CAC1C51A148994 /* SkipUntil.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1FAA52FB5934489B0C5AEA8E65CEC014 /* SkipUntil.swift */; }; - 2B839970ABBA6A8126A4793904C22C7B /* JXCategoryBaseCell.h in Headers */ = {isa = PBXBuildFile; fileRef = DB9377FE70E725C2C1E493810F3BA068 /* JXCategoryBaseCell.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2B91ADD3BBBFE7B74F53F4B4A59FA42A /* JXCategoryIndicatorImageView.h in Headers */ = {isa = PBXBuildFile; fileRef = 72488E372D48DC0B101CFFDD62C67442 /* JXCategoryIndicatorImageView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2BD7DD0EE925854A3A8F5CA9D8C3CE6E /* ZFLandScapeControlView.m in Sources */ = {isa = PBXBuildFile; fileRef = 264A17F27670DD59E897CA7093A7EB28 /* ZFLandScapeControlView.m */; }; - 2BFE52F6E917ED3CE9A1057BCE39194E /* SwiftEntryKit.swift in Sources */ = {isa = PBXBuildFile; fileRef = F1C0BB669F299D925309AFEC508BDA44 /* SwiftEntryKit.swift */; }; - 2C089711506854D42BA24F1C584DD660 /* ZLProgressView.swift in Sources */ = {isa = PBXBuildFile; fileRef = F57FE6ED4A8B63CF5ED9D33EEB59977F /* ZLProgressView.swift */; }; - 2C1D34FB57B50806AA5A7341819888A5 /* BRResultModel.h in Headers */ = {isa = PBXBuildFile; fileRef = C796EE7B9DFDB1EF81E4C904BD88445D /* BRResultModel.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2C1E3B4921AF98B2D69729A9B28C7927 /* UIApplication+DDCategory.m in Sources */ = {isa = PBXBuildFile; fileRef = 1C7F81B9C13413322B75D3D7075A9E0E /* UIApplication+DDCategory.m */; }; - 2C4A5EA90AE4D26083E9694AC0D53DF7 /* DDViewControllerAnimatedTransition.h in Headers */ = {isa = PBXBuildFile; fileRef = A58467B14A493BE78DE28CA355205ED8 /* DDViewControllerAnimatedTransition.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2C74EC11B77042707C02D50D7397E771 /* RxCollectionViewDataSourceProxy.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1F068D818B7CA40A833535AB7CDB40B2 /* RxCollectionViewDataSourceProxy.swift */; }; - 2C8CD89280A61E74F752C1B6D05BAE1B /* EKWrapperView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4E1DF956EE0362C03BD8700F06D20854 /* EKWrapperView.swift */; }; - 2C96986F46DE40BC67A31891B540F314 /* ZLPhotoModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3E44E35608EA511589C6BA9FB55E7484 /* ZLPhotoModel.swift */; }; - 2C9D5104E3A512934F635EA801B0B37C /* NetworkCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3E0A1FE8D8EFEBC0BD35B753E886CCE7 /* NetworkCell.swift */; }; - 2CB687F72EA6A5805984EAC5D14E9444 /* UIApplication+DDCategory.h in Headers */ = {isa = PBXBuildFile; fileRef = C9AE10F062A6FC564CABF1304E452872 /* UIApplication+DDCategory.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2CBA99FEFAA12064682FC0DE2D2131A2 /* UIImageView+HighlightedWebCache.m in Sources */ = {isa = PBXBuildFile; fileRef = 295BA7ABB139976B1370197291147ECD /* UIImageView+HighlightedWebCache.m */; }; - 2CBAD2261C2EE1772387DBE73BFE8081 /* SDWebImageDownloaderDecryptor.h in Headers */ = {isa = PBXBuildFile; fileRef = CA808A11DC33E352031BACB5103D614F /* SDWebImageDownloaderDecryptor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2CC32091848E70728F4BDA4FAF1C94F5 /* Alamofire.swift in Sources */ = {isa = PBXBuildFile; fileRef = 54D67769321D791840A2A2CD738B013D /* Alamofire.swift */; }; - 2D29A5E9421B7798554B17F7016E7EED /* NSURL+DDCategory.h in Headers */ = {isa = PBXBuildFile; fileRef = A69E005359A9F972A36DAB2BC5E9E3D0 /* NSURL+DDCategory.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2DCBD5DA7A75B4E17E6277569E3E99AC /* AnonymousObserver.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4935A80CAA6D499435309C761A14787C /* AnonymousObserver.swift */; }; - 2E3AB039812458A6DDFF82DA6B7689D5 /* UITabBarController+DDCategory.h in Headers */ = {isa = PBXBuildFile; fileRef = 0147F560C54973B76E290E90FD83A2BA /* UITabBarController+DDCategory.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2F1B528CD4A6EBB69568E001A3E15E22 /* DDFontKit_Private-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = F284C5F30FA7588405405D1CD74473DE /* DDFontKit_Private-dummy.m */; }; - 2F25B524BAE7F4A1010E66073952431F /* ZLAnimationUtils.swift in Sources */ = {isa = PBXBuildFile; fileRef = 39A2798ABFCA90D5E3BFFE46BBFF5D57 /* ZLAnimationUtils.swift */; }; - 2F3D4C9D3BD8AD7C1AC464F2FA806251 /* SynchronizedDisposeType.swift in Sources */ = {isa = PBXBuildFile; fileRef = FFA1662A77033E275AC6575C0E69D477 /* SynchronizedDisposeType.swift */; }; - 2F7915C29161AEF936E7C0D6491A5FD3 /* ImageContext.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7CE132A8EE75A412A93436A5ED731F8E /* ImageContext.swift */; }; - 2F92D77F0B6DB6F93469E29305BD0BE0 /* DispatchQueue+Alamofire.swift in Sources */ = {isa = PBXBuildFile; fileRef = F53A9243DEB95C65A237DF2FC5D1B49A /* DispatchQueue+Alamofire.swift */; }; - 2FBA6B4CFEDEA14DF62EC282B323F528 /* _ImageResources.m in Sources */ = {isa = PBXBuildFile; fileRef = 1B5759DAF36C997BF3C6DD78C1DF3EC4 /* _ImageResources.m */; }; - 306AAA0978204ABAEBE3A5D9CA64810B /* ZLThumbnailPhotoCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6361FAECAFB636846A88A170A1590010 /* ZLThumbnailPhotoCell.swift */; }; - 307EB0E8BB5F31FA9A15BFE882235721 /* Observable+Concurrency.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8BB3BB1159CD0B5497AA8D5EB5AE2637 /* Observable+Concurrency.swift */; }; - 3090ED9C77596F67C3E91B293BA89981 /* BRDatePickerView+BR.m in Sources */ = {isa = PBXBuildFile; fileRef = 7183D2C916A1DB66F9B83C9D6B323E6C /* BRDatePickerView+BR.m */; }; - 309C49EF61D7D5C2E2DE8668D4B42688 /* SharedSequence+Operators.swift in Sources */ = {isa = PBXBuildFile; fileRef = 265B9C47BFD7FC058604E4DCD8ABCEC6 /* SharedSequence+Operators.swift */; }; - 3135EF9BB3A5AF23779F873CEEF62D02 /* UIButton+DDCategory.m in Sources */ = {isa = PBXBuildFile; fileRef = D547177A6F340ECF0E1FB2680D12B6AA /* UIButton+DDCategory.m */; }; - 316BC27C89EA174E4233348DF1E30934 /* _SandboxerHelper.m in Sources */ = {isa = PBXBuildFile; fileRef = A0EE34A04AA3B8DEC5C350DFA1C1679D /* _SandboxerHelper.m */; }; - 31A0D934BFC8B73E169CA41656371F88 /* ScheduledDisposable.swift in Sources */ = {isa = PBXBuildFile; fileRef = 710B391010AF84B99A8E2D44BF7FCCAA /* ScheduledDisposable.swift */; }; - 31C4D922B73C8DB5EB1F4EECE5B99577 /* IQUIViewController+Additions.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2780E787D2A710FCAF49D1DD9E32D720 /* IQUIViewController+Additions.swift */; }; - 31CA7B9E8EA236369E7DF755D46EF541 /* SDmetamacros.h in Headers */ = {isa = PBXBuildFile; fileRef = E4147EC81C2A6472F43255F86B1E32DE /* SDmetamacros.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 31DF54E033EF144675A3610238452B1B /* UITabBar+Rx.swift in Sources */ = {isa = PBXBuildFile; fileRef = 89C372F1CAF41848FEE04DADCEF409A1 /* UITabBar+Rx.swift */; }; - 3208D2E1AC17249CDDF8D24BE0170987 /* String+ZLPhotoBrowser.swift in Sources */ = {isa = PBXBuildFile; fileRef = CC4D1D5DF0E258B35A2628ECC0ECB189 /* String+ZLPhotoBrowser.swift */; }; - 328650A2D927732D8D720F558A37AD36 /* UIButton+WebCache.m in Sources */ = {isa = PBXBuildFile; fileRef = DDD4C6D358BE05EC583919869948E636 /* UIButton+WebCache.m */; }; - 32CA25222D6B2A9C52343DF57E4793B8 /* SDWeakProxy.h in Headers */ = {isa = PBXBuildFile; fileRef = 2F21B2DA027EF508CCEE43A78A481B58 /* SDWeakProxy.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 32F60407B401152F2C0FC9ADB064C913 /* MJRefreshAutoGifFooter.h in Headers */ = {isa = PBXBuildFile; fileRef = 7F6F457E0A6D2D39818D9638D54DB6CF /* MJRefreshAutoGifFooter.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 33022595B6AB6F959F4D9BB4B4B31F7C /* DDBasicControlsKit_Private-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = E535BF76B78E7C41708C9A39CB9F8C10 /* DDBasicControlsKit_Private-dummy.m */; }; - 332189AD4AD25E48E7584583B70EA4A4 /* ControlTarget.swift in Sources */ = {isa = PBXBuildFile; fileRef = 538261BA1BAB61C45924F3A9FE34C655 /* ControlTarget.swift */; }; - 3336117E54632698AE7BF69221C9BFBF /* EKAttributes+FrameStyle.swift in Sources */ = {isa = PBXBuildFile; fileRef = FF98BC7BC3755017A8E09F57C1003273 /* EKAttributes+FrameStyle.swift */; }; - 33616C996675BCEEACADC74135890BD6 /* JXCategoryDotView.m in Sources */ = {isa = PBXBuildFile; fileRef = E2718275ADFFF64A9A0871517DB8D573 /* JXCategoryDotView.m */; }; - 336439A67521DEE2DF0D4EA4E9D4EC03 /* SDWebImage.h in Headers */ = {isa = PBXBuildFile; fileRef = 6E2FCCC2568269D7C4449190639E7CF6 /* SDWebImage.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 33CA7EB89CAE640686CFB81184C842FD /* ConstraintPriorityTarget.swift in Sources */ = {isa = PBXBuildFile; fileRef = DAE7DDEA88F9534C8374515FC7532B0B /* ConstraintPriorityTarget.swift */; }; - 340A763250D0C4BAF58E7EEF61E530A3 /* CocoaDebugTool.m in Sources */ = {isa = PBXBuildFile; fileRef = 6C30440382DFF5D2786948648B1ADE4F /* CocoaDebugTool.m */; }; - 34219E74B6FDF7C28D0D0ED21D17410F /* EventMonitor.swift in Sources */ = {isa = PBXBuildFile; fileRef = CCAFB586D754209E17A0F239873CD61B /* EventMonitor.swift */; }; - 3428C70AD1EA765908E4442E265513BB /* Reduce.swift in Sources */ = {isa = PBXBuildFile; fileRef = 78D9ACE2589AEEC556ED92EE9B1702C8 /* Reduce.swift */; }; - 349E933224A2196BE8CB8F20A386089E /* UITabBarController+Rx.swift in Sources */ = {isa = PBXBuildFile; fileRef = F361268449DC6D8656EC2C7BBD1E7A07 /* UITabBarController+Rx.swift */; }; - 34CE1AB1BEFDF9C9AE79DA0B86BFD19F /* DDSwitch.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4394E2E5E3523F0D9D5795AE7EC1202F /* DDSwitch.swift */; }; - 34D7B7F81DBB3A50D80E68BE076FB80C /* EKNotificationMessageView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 298F2917B57194A0FA8D59E92883D33C /* EKNotificationMessageView.swift */; }; - 34EE20CA334F46BE2655DCD2D617CC9D /* ImageFormat.swift in Sources */ = {isa = PBXBuildFile; fileRef = BA7B537ACA6DC6BF03454F132D78D32B /* ImageFormat.swift */; }; - 35566A4CEE196074A328F12B0F748B87 /* MJRefreshAutoFooter.m in Sources */ = {isa = PBXBuildFile; fileRef = ADBBCC8A1A5888AE74416344D8AF2A47 /* MJRefreshAutoFooter.m */; }; - 35BF909F60929C0222C40DA6D149AB28 /* ZLCustomAlertProtocol.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0D8C54C35613F75509897C00A1C89A5B /* ZLCustomAlertProtocol.swift */; }; - 35EC4BDBF382831DEACEFB9CBEC7313E /* JXCategoryDotView.h in Headers */ = {isa = PBXBuildFile; fileRef = C96592885CC91699D7E5BD46D63EF556 /* JXCategoryDotView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 36066D30B25EDC297DF37C1C0AEB9DA8 /* Single.swift in Sources */ = {isa = PBXBuildFile; fileRef = DEE5460475CDA082B35D7BFADD2CE7EE /* Single.swift */; }; - 3615678A2D40C0ABDDC178C56011AA3F /* DDNetworkingOfAlamofireKit_Private-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = B996B1034A6551A478C2D0DD2DAB7709 /* DDNetworkingOfAlamofireKit_Private-dummy.m */; }; - 362DCE6C30193B4F265B6BCFFBC28186 /* IQKeyboardManager+Debug.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8C1D4437EA8A630F1146A02CD9F2619F /* IQKeyboardManager+Debug.swift */; }; - 369F403C2B432D0E17E92F6D9A2BA956 /* SchedulerType.swift in Sources */ = {isa = PBXBuildFile; fileRef = E40773978972EDF6AF516127631A14AA /* SchedulerType.swift */; }; - 372451496E4C3B37D8004E92F6CB1342 /* ObservableType+PrimitiveSequence.swift in Sources */ = {isa = PBXBuildFile; fileRef = 226F8E26ED863A4B780661FA3525CC28 /* ObservableType+PrimitiveSequence.swift */; }; - 37CC41EBE46D49279B5595609127146D /* DDProgressHUD.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5F231098334C46918CFB9387A38BA087 /* DDProgressHUD.swift */; }; - 37D3970E67C56D98091306FB1A9835DB /* FormatIndicatedCacheSerializer.swift in Sources */ = {isa = PBXBuildFile; fileRef = F08821A56E0A5E4D500BD8273D91CA63 /* FormatIndicatedCacheSerializer.swift */; }; - 382FAABB891ADCC1BD08D67983076570 /* AddRef.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1F08FB5AE701C214C628FE40D946035E /* AddRef.swift */; }; - 383B256BF46D8267CE03920472C0DDB2 /* Debug.swift in Sources */ = {isa = PBXBuildFile; fileRef = E420A9177DD5FE6F1C1E5392BD6FC04C /* Debug.swift */; }; - 3848E339FD18EE2E315E064031BACDE8 /* NSButton+WebCache.h in Headers */ = {isa = PBXBuildFile; fileRef = DB7F20E80EE3FD1D582D1EA2702E82A9 /* NSButton+WebCache.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 38802157351AAA28DBC3D215EB049363 /* UIButton+Rx.swift in Sources */ = {isa = PBXBuildFile; fileRef = C935E5771D3CE9F827C50F42F0F96A6F /* UIButton+Rx.swift */; }; - 38ECCE8DD71FC839807DF4F6494A77C8 /* JXCategoryNumberCellModel.h in Headers */ = {isa = PBXBuildFile; fileRef = 596B722D47441F89B6F2FDFD7115F947 /* JXCategoryNumberCellModel.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3909A9DC00E78A63A4EF29018C46120E /* AutoUI.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4D91FA6D9867405ABD722898FB7DEE22 /* AutoUI.swift */; }; - 391C2CFE87103985CC06630FFAF4A510 /* Event.swift in Sources */ = {isa = PBXBuildFile; fileRef = D171E97D7F62A90F9BB6B33553E2E085 /* Event.swift */; }; - 393F39D7464BA3FF38602C6932B0F5CD /* _OCLogHelper.h in Headers */ = {isa = PBXBuildFile; fileRef = F94D697AF1028819859CAE6C33472941 /* _OCLogHelper.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 39734E6A023497BD5D2FE559E95D752F /* Scan.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3D3B4EAB895EF04B1E897E23DB23774A /* Scan.swift */; }; - 39A1EED7EF20556DA57E00609DFD1645 /* ZLImagePreviewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = FE8CD86B1F5A8BCBB77148D7F98EAB25 /* ZLImagePreviewController.swift */; }; - 39A20A6292B535CB9F60D3A449682C56 /* ZLEditImageConfiguration.swift in Sources */ = {isa = PBXBuildFile; fileRef = 40BD20DA26F4C382828585078A748245 /* ZLEditImageConfiguration.swift */; }; - 39A3EB396EC47B33F8538BBA9570E35A /* RxCollectionViewDataSourcePrefetchingProxy.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2B9826D98C8033619FAAEF30E29B8C16 /* RxCollectionViewDataSourcePrefetchingProxy.swift */; }; - 39D58D6790E6C9BAFB8689BAC91792D0 /* IQKeyboardManager+UIKeyboardNotification.swift in Sources */ = {isa = PBXBuildFile; fileRef = B5DB6D7F256E044148540B0ACCEAECE5 /* IQKeyboardManager+UIKeyboardNotification.swift */; }; - 3A1BE3A790D32DACDC81F728B5AEF8CF /* EKAttributes+Presets.swift in Sources */ = {isa = PBXBuildFile; fileRef = F91FA5DD1005C5A8BFE1CECE84A32EB2 /* EKAttributes+Presets.swift */; }; - 3A5239200052646BB3581EC8BCE593AE /* Response.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8001D23F262F5F63F0EF72A2EBB114FF /* Response.swift */; }; - 3A74E1D6C0FDBEB91445B6377062D8C7 /* CrashStoreManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = 82DB19005AFA965F685BD7DB64F14643 /* CrashStoreManager.swift */; }; - 3ACC6D783DD4E8C6136765B1AB125B84 /* UIViewController+DDCategory.h in Headers */ = {isa = PBXBuildFile; fileRef = D4BF90DBB17561EE449485B9F3961F7A /* UIViewController+DDCategory.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3AE13C38F69FF844BA60F7FD3764B4AA /* CompositeDisposable.swift in Sources */ = {isa = PBXBuildFile; fileRef = C95C9F124973653528E157CFBAA25A53 /* CompositeDisposable.swift */; }; - 3B3B929A609B79FF25A300BA1900810E /* ControlEvent+Driver.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5072B48F04170C8E6497E2D1B4C52956 /* ControlEvent+Driver.swift */; }; - 3B6337DFDE8F243FC631468501ACA929 /* JXCategoryIndicatorImageView.m in Sources */ = {isa = PBXBuildFile; fileRef = C9BB8B1534A0B12465A4D4C880096A89 /* JXCategoryIndicatorImageView.m */; }; - 3C43DCA25096184885CD69948C341BD3 /* ConstraintConstantTarget.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7DF2B05B04D08A675DD0298DB5D10CF2 /* ConstraintConstantTarget.swift */; }; - 3C805150E423EB13D4A9854E26314362 /* _OCLogStoreManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 8DC57D49B96F51B74F238BE0D777B034 /* _OCLogStoreManager.m */; }; - 3CD9F65655D76EBEC391224B87A1CD5C /* EKRatingSymbolView.swift in Sources */ = {isa = PBXBuildFile; fileRef = C65153A715B12A83A64AB42E1110DA40 /* EKRatingSymbolView.swift */; }; - 3CDF53770F329E00653C4A0C2BC16B52 /* Amb.swift in Sources */ = {isa = PBXBuildFile; fileRef = E60839FCC99BCA2D05A59A230106C541 /* Amb.swift */; }; - 3CEF2AB7E4E1004AFC4AF6982584D4B0 /* IQKeyboardManager+UITextFieldViewNotification.swift in Sources */ = {isa = PBXBuildFile; fileRef = CFC896E3FA2CC8C09D306AFFBEE4BF35 /* IQKeyboardManager+UITextFieldViewNotification.swift */; }; - 3D348CA499BF4165B757CDC06957C9A3 /* DDBaseCollectionView.m in Sources */ = {isa = PBXBuildFile; fileRef = 223BEC5CF4773D87FC272B293125DA97 /* DDBaseCollectionView.m */; }; - 3DF0B41E27A78AC25B9E44DB89DD5245 /* ZLEmbedAlbumListView.swift in Sources */ = {isa = PBXBuildFile; fileRef = EA43B08B9A054BD72E59442A9B29B514 /* ZLEmbedAlbumListView.swift */; }; - 3E655FB3DB35E5115300CB47894632FE /* UICollectionViewLayout+MJRefresh.h in Headers */ = {isa = PBXBuildFile; fileRef = A2739D1B065BC684019693673EB5D2F9 /* UICollectionViewLayout+MJRefresh.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3E6A048D5F8D41A3BA63531FC2567F50 /* PublishSubject.swift in Sources */ = {isa = PBXBuildFile; fileRef = A75063B87C320A3F1F92E72A5A9A13B6 /* PublishSubject.swift */; }; - 3EAEF4B368F4EED0EAF7E008DA2A3DDF /* OperationQueue+Alamofire.swift in Sources */ = {isa = PBXBuildFile; fileRef = 382198043E887A4688E430A3263D1CB1 /* OperationQueue+Alamofire.swift */; }; - 3ECD21C191F48DF934A14BFBEFCDEDA1 /* RxWKNavigationDelegateProxy.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD7BF2C4E9CDB9D06C95B434FCF30741 /* RxWKNavigationDelegateProxy.swift */; }; - 3F0E0B0CF3FDB7A022D1D11F6D9337A2 /* EKSimpleMessage.swift in Sources */ = {isa = PBXBuildFile; fileRef = C5238A8E2F615B1A606A03C4982823D7 /* EKSimpleMessage.swift */; }; - 3F14B6922D87E3841178BFF2E80DFB0D /* DDControlsKit_Private-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = CA5AF49CE9F6ACEC71993623AF2208C4 /* DDControlsKit_Private-umbrella.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3F25CEB568F0EEF7AED4807D3FF0E803 /* DDBaseScrollView.h in Headers */ = {isa = PBXBuildFile; fileRef = C7D2C1A07D35D1D13DDA8D8101E954E4 /* DDBaseScrollView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3F8C723EE7FB437DBE33A1722B154E1C /* MJRefreshBackGifFooter.m in Sources */ = {isa = PBXBuildFile; fileRef = 248AB1AA26A91FF083A6349CAF1075CD /* MJRefreshBackGifFooter.m */; }; - 3FA9DD41FB19B38EFEE430E1314946E5 /* RecursiveLock.swift in Sources */ = {isa = PBXBuildFile; fileRef = EE8D51F05C443003F770FFAED3B80EA1 /* RecursiveLock.swift */; }; - 3FDBC051501271A73A9FA05DBA8A915A /* Bag.swift in Sources */ = {isa = PBXBuildFile; fileRef = F3FEAEB5B7B10A2F71F44FC2B748F2EA /* Bag.swift */; }; - 40202CC4CB91A4A729A917633E10BF57 /* NSDate+BRPickerView.h in Headers */ = {isa = PBXBuildFile; fileRef = 8B1B116F462AB50635839F9560874F34 /* NSDate+BRPickerView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 404D73B62041963EC4450B7A89DAAC5F /* ZFPortraitControlView.m in Sources */ = {isa = PBXBuildFile; fileRef = 7103741F4368BB8F6777FFB85C454AA9 /* ZFPortraitControlView.m */; }; - 40672E95E085994AE6C6433A1C920629 /* RxTableViewDelegateProxy.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7951229A3C355708C79A01BEACF2D70F /* RxTableViewDelegateProxy.swift */; }; - 40A92AC669718DA6968E582A45EB1CA1 /* ZFKVOController.h in Headers */ = {isa = PBXBuildFile; fileRef = A682E849D1F23C41023413056013C7E9 /* ZFKVOController.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 40AD98FE4353CAB3D68B1F1687E11685 /* ImageDataProcessor.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5B18BF44CD2943B4A5AAE57B6A51E986 /* ImageDataProcessor.swift */; }; - 40BFB77E47AC10D4A3BDAB61FC1BAA90 /* SnapKit-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = BDF2C94C25454433C04944523F3076BE /* SnapKit-dummy.m */; }; - 40C3B6DBA22BFF1D1D9567FF37AB5F6B /* ZFPlayerGestureControl.h in Headers */ = {isa = PBXBuildFile; fileRef = F887C82A71C30C5C4F96A175ACD6E53A /* ZFPlayerGestureControl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 415EDC5C2019FE1CF4876DD136B4A63C /* HistoricalSchedulerTimeConverter.swift in Sources */ = {isa = PBXBuildFile; fileRef = EBA0C42CD34863951CD405113E22F616 /* HistoricalSchedulerTimeConverter.swift */; }; - 416F29D541905FFE6B17CBCD8E2AEA17 /* RxRelay-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = D0D83D3DCDB0CC3CAC40E5810FB8B013 /* RxRelay-umbrella.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4189DC9D2E47F7BBAA2C6048B475C212 /* UIScrollView+MJRefresh.m in Sources */ = {isa = PBXBuildFile; fileRef = 5CFE8E3515D7970B76FD06A9816C7DFC /* UIScrollView+MJRefresh.m */; }; - 4221F513DCBCCEBB76A4C8F4E7036821 /* ZFFloatView.h in Headers */ = {isa = PBXBuildFile; fileRef = 4CC63E4B701235E8B2857D384EEAB76B /* ZFFloatView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 435DB9DA67650818DF4ED76EFE851EE0 /* KingfisherError.swift in Sources */ = {isa = PBXBuildFile; fileRef = A001404B621A3E4DC543149601FBCE87 /* KingfisherError.swift */; }; - 43B833E12ADA38972DE5B6C5A39C28AE /* KingfisherManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6D458939D95D9D53D3701F201A804116 /* KingfisherManager.swift */; }; - 446278E9B905E0B5CF2F64B9245491D1 /* TailRecursiveSink.swift in Sources */ = {isa = PBXBuildFile; fileRef = F512F3041035F56871685C987D11FF08 /* TailRecursiveSink.swift */; }; - 44BE7CF753A124327188F4E7831C563E /* ZLImageStickerView.swift in Sources */ = {isa = PBXBuildFile; fileRef = DAD40349ED356CD841F847207C4AD406 /* ZLImageStickerView.swift */; }; - 44F712870D9007120D6683833C9B2B9D /* ObservableConvertibleType+Driver.swift in Sources */ = {isa = PBXBuildFile; fileRef = BE8C5D4EF3429F0189BC7813EBDF4DF2 /* ObservableConvertibleType+Driver.swift */; }; - 4528C147D320AC2845D86CFA8284884C /* PrimitiveSequence+Zip+arity.swift in Sources */ = {isa = PBXBuildFile; fileRef = 04B19379843A8EE358C3916488B70E2E /* PrimitiveSequence+Zip+arity.swift */; }; - 4580678643F509D5C5A1EA00A6D1E2E5 /* JsonViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2416C493A06F7E5C822C1F5C4FFED93A /* JsonViewController.swift */; }; - 45A7BB38A23DCE2BBDF9DBC31762AB6E /* DDCollectionView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 34A6FB4EE1685DF82C959C6E48987ABD /* DDCollectionView.swift */; }; - 45AD6B75F275078A076C8C2AC0AEF3F2 /* _OCLoggerFormat.h in Headers */ = {isa = PBXBuildFile; fileRef = E8146EEF7A37F985349E5628348F3CF6 /* _OCLoggerFormat.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 45B9C8034DCB889E2A9684B1575C0302 /* RequestTaskMap.swift in Sources */ = {isa = PBXBuildFile; fileRef = CC87A2DBF0FE2ADBD366FDC38AE6E9DF /* RequestTaskMap.swift */; }; - 45F9D728BAE9F638623421AAB12B8D40 /* JXCategoryView-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 7099FEACCF25C6B6D7F2F554C0A2F577 /* JXCategoryView-dummy.m */; }; - 460F8947297FC4397B1D875F02806E7C /* IQInvocation.swift in Sources */ = {isa = PBXBuildFile; fileRef = C1D48DF1988567C2283DCE6A6D0E978C /* IQInvocation.swift */; }; - 465AC4C4CEE137C694249FF5E1AC1428 /* NetworkReachabilityManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7BBC6B884E574345D5171B1F0453A744 /* NetworkReachabilityManager.swift */; }; - 472F8FCDC5BC7F210FC411D907EA5B04 /* RxSearchControllerDelegateProxy.swift in Sources */ = {isa = PBXBuildFile; fileRef = 94F9A881EEED528AE59D7E17EB86AAA9 /* RxSearchControllerDelegateProxy.swift */; }; - 473DC3EDDA5D8D61693615EC038FC07E /* IQKeyboardManager+Position.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5E28AAD260307D9BD0CB26F3090DB8D4 /* IQKeyboardManager+Position.swift */; }; - 4769FD52CFFFD7BC65324803AF92E251 /* UIImage+GIF.m in Sources */ = {isa = PBXBuildFile; fileRef = 9E25390F93FAEFA51E203354CD6EC590 /* UIImage+GIF.m */; }; - 47BEA6378E98FAA936CA74A1CF418638 /* DDMATrackManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 4033D453C461A3CFD0C233B867DB7A94 /* DDMATrackManager.m */; }; - 47BF292BED32B4CB98575907A2835570 /* EKAttributes+WindowLevel.swift in Sources */ = {isa = PBXBuildFile; fileRef = D059C8591088B1A1A65711373817A550 /* EKAttributes+WindowLevel.swift */; }; - 47DAE2836C45A5B08B4895539E604A86 /* EKAttributes+StatusBar.swift in Sources */ = {isa = PBXBuildFile; fileRef = A70E8E4F5CDF328523191F31497E7D24 /* EKAttributes+StatusBar.swift */; }; - 47E86D73AEFCECBD1B7CC80D731AEE4D /* Toast.swift in Sources */ = {isa = PBXBuildFile; fileRef = C258428522F4A64CB4A8EF1E49C0AF90 /* Toast.swift */; }; - 4837AF95FFD6CA0856F8AD4F6DAE8654 /* EKAttributes+Animation.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8EE0FF6ADA523777C2366D072120154A /* EKAttributes+Animation.swift */; }; - 483F31C4AFEAD5AEA2BE3274CD7903A1 /* CocoaDebug.swift in Sources */ = {isa = PBXBuildFile; fileRef = 07C66D21EB83C4B1ABE60F361E9F59AF /* CocoaDebug.swift */; }; - 4894E4D5C6F065C87B6082AB282FBCD0 /* JXCategoryBaseView.h in Headers */ = {isa = PBXBuildFile; fileRef = E7C57BDE8A9E05D4473E292878C389EE /* JXCategoryBaseView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 48A678779E1548954BF5B825F1C7F043 /* SizeExtensions.swift in Sources */ = {isa = PBXBuildFile; fileRef = 20837014B86FE653F877CA84BE4ED805 /* SizeExtensions.swift */; }; - 48E7DCB6E428A49B7F67718744D73D96 /* JXCategoryTitleCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 809BE02D615342E82B664742613081D4 /* JXCategoryTitleCell.m */; }; - 48FC38AD6CD5BE2793AEFEDE4BF62B19 /* RefCountDisposable.swift in Sources */ = {isa = PBXBuildFile; fileRef = 48F12ABC06A52241550DFCAA23095B30 /* RefCountDisposable.swift */; }; - 49215BC028DEFB8A85C77A5C55464936 /* ZFNetworkSpeedMonitor.m in Sources */ = {isa = PBXBuildFile; fileRef = 1344362613B9A67B0B4D78C4E6651E1D /* ZFNetworkSpeedMonitor.m */; }; - 492B6B0A047A031C08B940A6E8746A37 /* ZLAlbumListController.swift in Sources */ = {isa = PBXBuildFile; fileRef = F9A25FB796F61813231948FB60C1B678 /* ZLAlbumListController.swift */; }; - 4944814C2CFC6492C4FE1664F1556012 /* MJRefreshBackFooter.m in Sources */ = {isa = PBXBuildFile; fileRef = 42C8B1BF41E12FE3EF5F3D341E87DAC2 /* MJRefreshBackFooter.m */; }; - 495CCBF5B81022D0F7DE88F7EDEAAF52 /* ReplaySubject.swift in Sources */ = {isa = PBXBuildFile; fileRef = DC15CD44D1EB345DA005F262678E82D0 /* ReplaySubject.swift */; }; - 4978E0D1068588E192054C53AEC53178 /* ZLProgressHUD.swift in Sources */ = {isa = PBXBuildFile; fileRef = 471813299EE9049FE24C4F3827E46895 /* ZLProgressHUD.swift */; }; - 4992E986E758ED703892F134F85130C6 /* Infallible+Zip+arity.swift in Sources */ = {isa = PBXBuildFile; fileRef = F67C227A488C8DB0BDA18F022B5C7536 /* Infallible+Zip+arity.swift */; }; - 49A13CA2C01B33D402D04B3A5D6C9868 /* JXCategoryListContainerView.h in Headers */ = {isa = PBXBuildFile; fileRef = 795BABA3E090FCAE894E859604191700 /* JXCategoryListContainerView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 49AD1F5C93F625FDD0396BB29256DC4E /* BRPickerStyle.h in Headers */ = {isa = PBXBuildFile; fileRef = 8CD8B0E35D0148159B6FE4A582B1CABC /* BRPickerStyle.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 49E04A4A0E8FF02F235F055751F78D2C /* ZFUtilities.m in Sources */ = {isa = PBXBuildFile; fileRef = 8221374F33C5300AEAD9892A56C1D926 /* ZFUtilities.m */; }; - 49F57411DBC9FAE893C1030240982DBA /* DDAttributedString.swift in Sources */ = {isa = PBXBuildFile; fileRef = C0298F97D8F3217331BF132A88EF7836 /* DDAttributedString.swift */; }; - 49FC51FBE1A0B635FCEA16835DA50665 /* ZLLanguageDefine.swift in Sources */ = {isa = PBXBuildFile; fileRef = 22DCC7A1C2167A910BC31953816C82CE /* ZLLanguageDefine.swift */; }; - 4A6F9FC73B3C2B02F852F366EE4C7C18 /* _SwiftLogHelper.swift in Sources */ = {isa = PBXBuildFile; fileRef = 31BD6DB490AAECA93C96E037CE0D1C1B /* _SwiftLogHelper.swift */; }; - 4A8F56569A88DC8547A302E6E594B0E0 /* Decode.swift in Sources */ = {isa = PBXBuildFile; fileRef = AF4B4F919674B1233E1DB10AFD648E75 /* Decode.swift */; }; - 4A8F9A8B49197EDB6BEE9D75691A19D4 /* DDBaseSwitch.h in Headers */ = {isa = PBXBuildFile; fileRef = 3EEDB1B52EB75A1EA09D8FCC7F35E65A /* DDBaseSwitch.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4A9952FE9361ABA5CE30F3C7D50C23DE /* JXCategoryTitleVerticalZoomCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 87CDE2205C411533A11F4AEA934BE8CD /* JXCategoryTitleVerticalZoomCell.m */; }; - 4B44116FE13450D08B053764A8784FDF /* BRAddressModel.h in Headers */ = {isa = PBXBuildFile; fileRef = 30650FB6BF01A575C3893CF409554DC6 /* BRAddressModel.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4B4D666DF746D313FA6D34C257BA6F14 /* SchedulerType+SharedSequence.swift in Sources */ = {isa = PBXBuildFile; fileRef = 985DB9E9919BE96EF112866868AA8FA7 /* SchedulerType+SharedSequence.swift */; }; - 4B5C6452A3F186A1CB523C87F86F70E3 /* DDMAMapKit_Private-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 7AB06867D448C6AA4210CBF37D9E41AE /* DDMAMapKit_Private-umbrella.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4B8551971988B783566ECCBF18983C71 /* Box.swift in Sources */ = {isa = PBXBuildFile; fileRef = C81C72778F38A61D245A434370E5D1A6 /* Box.swift */; }; - 4BBD6EF71B6DCE3390974D23D5BE77AD /* ZFPlayerController.h in Headers */ = {isa = PBXBuildFile; fileRef = 1BA5EFAAD446B4AA9BEF6762D02E2253 /* ZFPlayerController.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4BDE28396F6AE3DAA0162DC8B2219EC3 /* SDImageCachesManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 18515FD82734E4B06FF2845EDA536B54 /* SDImageCachesManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4BF3D618B71976F90930E1A677821797 /* DDBaseCollectionViewCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 0E7F318A87744190A4904BA6876F7A52 /* DDBaseCollectionViewCell.m */; }; - 4C17BF734DA9B2178A5559DBA608A2BB /* EKRatingMessageView.swift in Sources */ = {isa = PBXBuildFile; fileRef = B2EF4A24EFCF3F1B1060F1907F43FA0A /* EKRatingMessageView.swift */; }; - 4C2639391DD5A48C68DC1760F913E007 /* RetryPolicy.swift in Sources */ = {isa = PBXBuildFile; fileRef = 74D75E2145F221B9A070A7707B775E19 /* RetryPolicy.swift */; }; - 4C5E0A7762C6E0E8295E1D7F4FD4F68D /* UIImage+Transform.h in Headers */ = {isa = PBXBuildFile; fileRef = 7F5CE7828D4795456C2E7BDD4982C483 /* UIImage+Transform.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4C82AED59F383C3408C246EDDA1A4392 /* ZLPhotoPreviewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3C09A213D0F34ECFE3F8B66F9DAAB959 /* ZLPhotoPreviewController.swift */; }; - 4CC51E277DCF7D480D5DA4C9C0BB0C37 /* HTTPMethod.swift in Sources */ = {isa = PBXBuildFile; fileRef = CE0C400418A57E430B7A897E10E2C3F0 /* HTTPMethod.swift */; }; - 4CECEEE1ABA224FB6E37F02F7155DB20 /* Kingfisher-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = C612C688B0EB06D233DFA69CE6E24BD3 /* Kingfisher-umbrella.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4D2FE02184346B6011DA8B227AA2CD00 /* UIImage+ForceDecode.h in Headers */ = {isa = PBXBuildFile; fileRef = 3A165933B7D7FE3F8FF3F73930956259 /* UIImage+ForceDecode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4D8A94DF58E15F8FB36D139189A399ED /* NSData+ImageContentType.m in Sources */ = {isa = PBXBuildFile; fileRef = 5E45A033D07A97D863C2CF6ADF64639A /* NSData+ImageContentType.m */; }; - 4D981AB9F0FB6AADA0A3BB5D61D1E0EE /* UIColor+Hue.swift in Sources */ = {isa = PBXBuildFile; fileRef = BDACAF5C7F870C70808A6ED412797E03 /* UIColor+Hue.swift */; }; - 4DBBAF563C9995081D90F7AD834E828D /* SDWebImageDownloaderConfig.h in Headers */ = {isa = PBXBuildFile; fileRef = 8DB0DFCB6DBBE8F3229711FEC0CEC42F /* SDWebImageDownloaderConfig.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4DC4192E75B5FFB54CA793299C8C0388 /* RxPickerViewAdapter.swift in Sources */ = {isa = PBXBuildFile; fileRef = B48D01FFB846D90A68EAC593F1A99E11 /* RxPickerViewAdapter.swift */; }; - 4DDB024748C44347C7CD40486F0603F4 /* ZFPlayer.h in Headers */ = {isa = PBXBuildFile; fileRef = 00BD01C2A4F3977033868918BB3BAE9B /* ZFPlayer.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4DF38AAACEBAE8CD9AFB38C4BF890F9B /* AnonymousDisposable.swift in Sources */ = {isa = PBXBuildFile; fileRef = 379DD1FBC15F56FCB90487D80B0A3380 /* AnonymousDisposable.swift */; }; - 4E03FB03B1DA8D48DC016F7E7814CAF4 /* DDNavigationControllerDelegateReceiver.m in Sources */ = {isa = PBXBuildFile; fileRef = F0E1883755D9F0622A9F99577A37DCEB /* DDNavigationControllerDelegateReceiver.m */; }; - 4E4AF01A91C2B8F1EEA12F979D3A2C65 /* ZFLandscapeWindow.h in Headers */ = {isa = PBXBuildFile; fileRef = FEB29B95D1F1C6CE9502A936A5D3F306 /* ZFLandscapeWindow.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4EA41674EE6BE0E1D0DA737402D1630C /* DDBaseNavigationController.h in Headers */ = {isa = PBXBuildFile; fileRef = CA3077A93C64A6FEED36C79BF632E156 /* DDBaseNavigationController.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4EC854052A3FE12A7A686E7BFD37F05D /* ConstraintMakerRelatable+Extensions.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1B4E5E801509987FF662DA6667576E25 /* ConstraintMakerRelatable+Extensions.swift */; }; - 4ED3AC9E347BB768F85CA0612425A5E6 /* Cancelable.swift in Sources */ = {isa = PBXBuildFile; fileRef = D7C1624301DCE9B5827344EAD74ABF5E /* Cancelable.swift */; }; - 4EEC0EBED6B81827D25B5C1524A516F5 /* ZFPlayerLogManager.m in Sources */ = {isa = PBXBuildFile; fileRef = E12C97D31B0C1C060F7D016DAB6238D0 /* ZFPlayerLogManager.m */; }; - 4F1525CECA0C94C49413C43841330C56 /* SDImageCacheConfig.h in Headers */ = {isa = PBXBuildFile; fileRef = DEE484EA1966514E7E17A9C82B4CAD37 /* SDImageCacheConfig.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4F5B2864DC6384E5B6AF98425B6F5CAB /* SDImageAssetManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 80A82C966FAFD27844D60B0EFDDEAD5E /* SDImageAssetManager.m */; }; - 4FB8B880680D9711B70C98FCE307824A /* SDImageLoadersManager.m in Sources */ = {isa = PBXBuildFile; fileRef = B0BF94913533614DBDBB898956A3048F /* SDImageLoadersManager.m */; }; - 50613F7A88563668F1D427BD958C0AEC /* Placeholder.swift in Sources */ = {isa = PBXBuildFile; fileRef = E0F861D79898E92B47D4CC5145AD129E /* Placeholder.swift */; }; - 506680E7DA2EDF6F1137BB73C5454B88 /* MJRefresh-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 84A0FA1DB917992766175DE53C902F3E /* MJRefresh-umbrella.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 508DA7803FB732375E4691EF6FA63054 /* BRAddressPickerView.m in Sources */ = {isa = PBXBuildFile; fileRef = 87284817FCBAF9A70C2F7BE8D9AE7512 /* BRAddressPickerView.m */; }; - 50B597FA67217D0413C82E39B6BA88FB /* NSMutableParagraphStyle+DDCategory.m in Sources */ = {isa = PBXBuildFile; fileRef = A9E5E970CEB2D6DBF1C61DAF85942140 /* NSMutableParagraphStyle+DDCategory.m */; }; - 50E5B5685106D613C42AF4823B04F21D /* ZLPhotoUIConfiguration+Chaining.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9C80D210C0026E985BF7FC5C26E588F0 /* ZLPhotoUIConfiguration+Chaining.swift */; }; - 50F8A8F6A86ED7B74E9DDCD57B96FC43 /* UINavigationController+DDCategory.h in Headers */ = {isa = PBXBuildFile; fileRef = B35443E30DB12838F64E3E4316A4FAB9 /* UINavigationController+DDCategory.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5114F231D82CFA8BF22620F26EF6814B /* NSView+Rx.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3ABF2CF66281818713A87F8FAE022102 /* NSView+Rx.swift */; }; - 513FE85C9A497C2C8E648FDDE863176F /* SDWebImageDownloaderRequestModifier.m in Sources */ = {isa = PBXBuildFile; fileRef = 3C1381401A90F381C5B232E41508ED4A /* SDWebImageDownloaderRequestModifier.m */; }; - 514A60DD5A2A363D5DB970088D708CD2 /* JXCategoryImageView.h in Headers */ = {isa = PBXBuildFile; fileRef = 9239B4C0496A617A9620875EEB15FC28 /* JXCategoryImageView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 514BEB68DD25CD39127BFAB4DB631F8D /* BRPickerView-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = D507B47C4DCB15DD9E5BF30CE649376E /* BRPickerView-dummy.m */; }; - 5156C44E75B863408EFF58D5122EF918 /* ZFPlayerView.h in Headers */ = {isa = PBXBuildFile; fileRef = 58B6509FABCAE9298DF103DCBEB57CD1 /* ZFPlayerView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 517CC3C405F8FB3E69BC2019D081906E /* UIImage+ExtendedCacheData.m in Sources */ = {isa = PBXBuildFile; fileRef = CE72AE6F608F3AE7E5CF1AE672A38A9C /* UIImage+ExtendedCacheData.m */; }; - 51B1ACEE71E3EF376A4BF50397B41D38 /* CocoaDebug-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = ADD2BFA76F0B8FEC45C1908583E1A7C0 /* CocoaDebug-dummy.m */; }; - 521AA6614B338A1EEF296FF3C814DD66 /* ConstraintDirectionalInsets.swift in Sources */ = {isa = PBXBuildFile; fileRef = BEF7C4A86D96B7AFBCFBD1CB3CFEE0CF /* ConstraintDirectionalInsets.swift */; }; - 52811ECF6A4AECB259DCD6139A9C17C9 /* ZLPhotoPreviewSheet.swift in Sources */ = {isa = PBXBuildFile; fileRef = ACBC7F9183DFA5448C2F5701326B3599 /* ZLPhotoPreviewSheet.swift */; }; - 5287F0ED0E08F9C1D2EECE2258AEF286 /* Timeout.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5E7CE6B9CB73ED31A2D1EEE8D999A443 /* Timeout.swift */; }; - 52AFC14AC760BB77AF34688FDF206DCF /* DDBaseTextField.m in Sources */ = {isa = PBXBuildFile; fileRef = 4DF127FB716E054BF26A6A576D900FEB /* DDBaseTextField.m */; }; - 52B6AD3595C3CADA5ACAA84C53EF2323 /* UISegmentedControl+Rx.swift in Sources */ = {isa = PBXBuildFile; fileRef = C6B920B5FF89134DE01F7E7FB2C8588E /* UISegmentedControl+Rx.swift */; }; - 52B774D7072085206C19EC4A96BF8406 /* DriveRouteCustomAnnotationView.m in Sources */ = {isa = PBXBuildFile; fileRef = A085D6D9EF9515B07C9038B2470C49FC /* DriveRouteCustomAnnotationView.m */; }; - 5442DB01C93D4C933C1A8CBBFC13F690 /* JXCategoryTitleVerticalZoomView.m in Sources */ = {isa = PBXBuildFile; fileRef = 385D1C4A91ECE9861B0ABE8AB7D7DB3B /* JXCategoryTitleVerticalZoomView.m */; }; - 549B1CF5542E8E21F2710BA821DC2899 /* JXCategoryTitleView.m in Sources */ = {isa = PBXBuildFile; fileRef = 3DFA3965761E63F085264D3A5760D1A8 /* JXCategoryTitleView.m */; }; - 54FDDF4A5D5FFFD468B9B4F7DE31612D /* DispatchQueueConfiguration.swift in Sources */ = {isa = PBXBuildFile; fileRef = 721AC818625F5EFE1DC5CC8C9F5F7CF4 /* DispatchQueueConfiguration.swift */; }; - 553557576B5E9692059EB76EB9EDB6B4 /* DDZFPlayerKit_Private-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 06E8E3ECF7906587527EAF1A57324AA2 /* DDZFPlayerKit_Private-umbrella.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 554B4A9EB7B0115AA40713C45D0ABF3A /* IQPreviousNextView.swift in Sources */ = {isa = PBXBuildFile; fileRef = F8F175D3AA07BF1DB0E4A336DFEA7A7C /* IQPreviousNextView.swift */; }; - 555ADDD160E4DB9DCE0AABDD6978609F /* _RX.m in Sources */ = {isa = PBXBuildFile; fileRef = A3E732E223369EECFE2FC7FAE4E18355 /* _RX.m */; }; - 555D64D559041A2F1743073FBDA7F769 /* MultipartUpload.swift in Sources */ = {isa = PBXBuildFile; fileRef = 69EC8A160AD22CB1B2D0105E0472D713 /* MultipartUpload.swift */; }; - 55737CE468E09E45D9E5BE279A3100C8 /* SDWebImageIndicator.m in Sources */ = {isa = PBXBuildFile; fileRef = F88D2578EDA6534F125A72606A08F61D /* SDWebImageIndicator.m */; }; - 56A9A203C25EBDFA98971AE6C6A60C87 /* UIWindow+DDCategory.m in Sources */ = {isa = PBXBuildFile; fileRef = 00E2F6131CDB061C5435298E58700B93 /* UIWindow+DDCategory.m */; }; - 56AA1FB915E6D167A106C0F9CF316EA6 /* ZLPhotoBrowser-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = A11580D30F6F60562E706A10CA180340 /* ZLPhotoBrowser-umbrella.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 56D08DCE4BFC873FBB9B1355F514D581 /* SDWebImageOperation.h in Headers */ = {isa = PBXBuildFile; fileRef = A48B326F56F0537399C161E7F292B287 /* SDWebImageOperation.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 570D150531BA02EEB383A3F40CEDB5A2 /* ControlEvent.swift in Sources */ = {isa = PBXBuildFile; fileRef = D1F1F338C713B5B2A43F16C275825488 /* ControlEvent.swift */; }; - 572831DA48D81784ACF3A8EF8D29C07C /* ZFUtilities.h in Headers */ = {isa = PBXBuildFile; fileRef = FD490FEDC4022ECC0B3FE3BD2C2D2D60 /* ZFUtilities.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5739B5F79D9CC33CE6A6E49CF08BE143 /* SDWebImageDownloaderDecryptor.m in Sources */ = {isa = PBXBuildFile; fileRef = FD5537A10D483E8A6FF8AC4476D11915 /* SDWebImageDownloaderDecryptor.m */; }; - 57C714244A1F8D2D3516BAE104B085A4 /* UILabel+DDCategory.m in Sources */ = {isa = PBXBuildFile; fileRef = 0CCE651BD164B4AB8DBDC675BD56644F /* UILabel+DDCategory.m */; }; - 57E8D5E0BFF775DCF361333A12294278 /* EKContentView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 114CF263E7734C896A83D4D3412401E4 /* EKContentView.swift */; }; - 57F5E74B814B432F53E371AD83E98999 /* ImageProgressive.swift in Sources */ = {isa = PBXBuildFile; fileRef = EDAA0B1253B622ECC7C746224EEB6CF4 /* ImageProgressive.swift */; }; - 58331B6BF8493E4C276191285440557E /* MJRefreshAutoStateFooter.m in Sources */ = {isa = PBXBuildFile; fileRef = 22D8B00FE86EDB0C477EA5FC2C524A97 /* MJRefreshAutoStateFooter.m */; }; - 583F0BC8B1851B26BEB01A754474322B /* Infallible+Operators.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5960A7D340C5B4588D9A51AEF3644D36 /* Infallible+Operators.swift */; }; - 588027ACC01A30CBCE1AA9C5ACCF7B18 /* CallbackQueue.swift in Sources */ = {isa = PBXBuildFile; fileRef = 81B793EA726BF2868F82A12EC2414B49 /* CallbackQueue.swift */; }; - 58DC6FEC8CBD5750A7C7EBE965E4A761 /* ConstraintMultiplierTarget.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5A5B5C244AF83A92C052D77C3AD059DE /* ConstraintMultiplierTarget.swift */; }; - 591C74189843C4755BD2E31E4F50431D /* MJRefreshAutoFooter.h in Headers */ = {isa = PBXBuildFile; fileRef = 0CDEBE45652572B528A14BB36489F849 /* MJRefreshAutoFooter.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 595FA9CCDC2A709BD7F736107DA2C4D6 /* JXCategoryNumberCell.m in Sources */ = {isa = PBXBuildFile; fileRef = C7BFB8E2E8D1F654EB03852A80F0368B /* JXCategoryNumberCell.m */; }; - 59AD90C47AA6A1B76832CD3C27A9B6A3 /* JXCategoryIndicatorRainbowLineView.h in Headers */ = {isa = PBXBuildFile; fileRef = CE8846EB6BEA4CC3D234394477030FC7 /* JXCategoryIndicatorRainbowLineView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 59BD2227EB120EC449508CB3D8E7E79A /* ZFPlayerLogManager.h in Headers */ = {isa = PBXBuildFile; fileRef = DAAA0F5380E9FEA43239A111EEE9E9A0 /* ZFPlayerLogManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5AA2F6E5C7D736F0CCA9894A3E37C8D1 /* DDWebImageKit_Private-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 166A1713B3B3D736241CC69E55F347DF /* DDWebImageKit_Private-dummy.m */; }; - 5AA58FA5BA8474A0F3172C9775191C4B /* Dematerialize.swift in Sources */ = {isa = PBXBuildFile; fileRef = 950CF2BA6C0358625A7074C5D82BCB1B /* Dematerialize.swift */; }; - 5AA6E372FD287BFF49666188CEE90926 /* DDMAMapKit_Private-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = A8FFE3C0DDF8AB2C8631350FFC57111D /* DDMAMapKit_Private-dummy.m */; }; - 5ADE1ADD5C89879BE23532A77F88DB88 /* EKAlertMessage.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2FBE37B06DA11AF218CCA364D1196A1D /* EKAlertMessage.swift */; }; - 5AE8F724467F0E9ECAC1B50FAEC91D67 /* JXCategoryIndicatorBallView.h in Headers */ = {isa = PBXBuildFile; fileRef = BAAE5CB7E3D91D0E7CEA4A5DB8A60770 /* JXCategoryIndicatorBallView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5B033DDDC44B06AA233FF487E3C410DF /* EKStyleView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 354300E4CEE433C0FF5F6DAF9C9A625F /* EKStyleView.swift */; }; - 5B07C22BDAA7425C4CCC629868E0072A /* UIImage+Metadata.m in Sources */ = {isa = PBXBuildFile; fileRef = 79A41F3D46DAADE36DA9540613D85C34 /* UIImage+Metadata.m */; }; - 5B0E5DFA3D2B5834D9DBC91A8220F9E0 /* ZFPortraitControlView.h in Headers */ = {isa = PBXBuildFile; fileRef = B07A34F7872A95C1987655A960CDFBF7 /* ZFPortraitControlView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5BBAE42210DE6A7A973F1B1F9678EFC5 /* RedirectHandler.swift in Sources */ = {isa = PBXBuildFile; fileRef = 538A69E396D0AD70D723737157C20D0A /* RedirectHandler.swift */; }; - 5BBF2E718CCA06ABC22203877EA4EC3E /* HTTPHeaders.swift in Sources */ = {isa = PBXBuildFile; fileRef = E68B0375956523651998CF32F55AB61D /* HTTPHeaders.swift */; }; - 5BC5F8802750AC91462C063F1B8C636E /* SkipWhile.swift in Sources */ = {isa = PBXBuildFile; fileRef = A1B8B8F303F22AB7435B9AEB5DE57D44 /* SkipWhile.swift */; }; - 5BD01F6B16A2C9E69F756F4DE189E349 /* JXCategoryImageView.m in Sources */ = {isa = PBXBuildFile; fileRef = 91BE97B7EE46151C893D4477A8BB208A /* JXCategoryImageView.m */; }; - 5BD480DEE18371740D7AF036D85B8B90 /* DriveRouteCustomAnnotation.m in Sources */ = {isa = PBXBuildFile; fileRef = 358B5CD65E59043F8AF6D2CAEF071C1D /* DriveRouteCustomAnnotation.m */; }; - 5BFE1267FDAE0CE1297B8F6C84950E86 /* AuthenticationChallengeResponsable.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8CEC83E3FE1F075140221AA6F63B7E62 /* AuthenticationChallengeResponsable.swift */; }; - 5C30F361915F5ECAC7CA86D55EE7E25A /* MJRefreshBackNormalFooter.h in Headers */ = {isa = PBXBuildFile; fileRef = AD883A8F6D5AF9349D00095C085D6114 /* MJRefreshBackNormalFooter.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5C70C1B182F4AE5318517C9014660472 /* ConstraintMaker.swift in Sources */ = {isa = PBXBuildFile; fileRef = F8944635C0FE010A89E5A2572100668D /* ConstraintMaker.swift */; }; - 5CA68B859A6EDF62B0C3B3217D469CA4 /* DDProgressHUDKit_Private-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 76D578C0BE9CEBA2BFE2B4810875599C /* DDProgressHUDKit_Private-umbrella.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5CCD552354B88211EB9488550C4F4DB4 /* SDAnimatedImageView+WebCache.m in Sources */ = {isa = PBXBuildFile; fileRef = 94680CFC97CEF0B8C2F45EB57EE580A2 /* SDAnimatedImageView+WebCache.m */; }; - 5CFC8F3DFFA340EEFD415372644734C5 /* ZLCustomCamera.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9102B251FD7CEDD97E178F16402B2076 /* ZLCustomCamera.swift */; }; - 5D048ECBE3D46ABC5B880F766ED23A21 /* JXCategoryBaseView.m in Sources */ = {isa = PBXBuildFile; fileRef = DCDD240DAB2ED34D8A4CD53168F9BDD9 /* JXCategoryBaseView.m */; }; - 5D0EEB77D1FE5B6445B93FFE286B925A /* JXCategoryIndicatorDotLineView.h in Headers */ = {isa = PBXBuildFile; fileRef = 62CA9A5C52588ED7F851276E4F89E634 /* JXCategoryIndicatorDotLineView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5D9AD59E5654C4DAB6B25B8A486C38D8 /* InfiniteSequence.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1428743B6F7B3AC715F7400C6CBE94A1 /* InfiniteSequence.swift */; }; - 5DA078BF9515B566F0C538010C15D611 /* URLSession+Rx.swift in Sources */ = {isa = PBXBuildFile; fileRef = 34DB3C7C2C808D7F616389BBE299368D /* URLSession+Rx.swift */; }; - 5E0B9331DBF6DEB5A49A0E959D7D8ADC /* Using.swift in Sources */ = {isa = PBXBuildFile; fileRef = 900D87439070DC7DD3F1510EC9AB0E18 /* Using.swift */; }; - 5E23ED4E91674189B98416974930E43C /* ExtensionHelpers.swift in Sources */ = {isa = PBXBuildFile; fileRef = 81DFE407607B1B8AA0B22CBCCF25836D /* ExtensionHelpers.swift */; }; - 5E6140C0CD3517DED7F81D9D8046F3D0 /* SDWeakProxy.m in Sources */ = {isa = PBXBuildFile; fileRef = 22FC3416EDAE6DD17BC9B3247D4BC264 /* SDWeakProxy.m */; }; - 5E712306EE9654B516F97F7D39C85A73 /* _ImageResources.h in Headers */ = {isa = PBXBuildFile; fileRef = 153D7C9845BA1437AEA26527B90D2298 /* _ImageResources.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5E981F817165C2FE1431D824D9F781AE /* DDSwiftLog.swift in Sources */ = {isa = PBXBuildFile; fileRef = A08EC450545B78861A74D54F9D2EFC3D /* DDSwiftLog.swift */; }; - 5EA777A6657B7ECC8AFAF720B0B24B9F /* DDMANaviManager.h in Headers */ = {isa = PBXBuildFile; fileRef = CC02B052F4C7F11AB56EC306A9C294C7 /* DDMANaviManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5EB60C74FFA757B7BFF385DE7F855FB7 /* MJRefreshTrailer.m in Sources */ = {isa = PBXBuildFile; fileRef = 24A484576CF40EBB816C81275F1AC30C /* MJRefreshTrailer.m */; }; - 5EC7100C59695117247691D4451480AF /* DDBasicControlsKit_Private-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 797714B5D73C1E9BF5F22B995F544F31 /* DDBasicControlsKit_Private-umbrella.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5F13BE82DA3282C9AB54507EFB46A9BB /* ConstraintConfig.swift in Sources */ = {isa = PBXBuildFile; fileRef = C0D3D384BC63F1D9C6E905ED844B1A36 /* ConstraintConfig.swift */; }; - 5F172DCB05EC615065B7C37575150F22 /* ESTabBarItemContentView.swift in Sources */ = {isa = PBXBuildFile; fileRef = D69987E32B9EF5D98389E9AEFC0B6F53 /* ESTabBarItemContentView.swift */; }; - 5F6FB000A1F896756185C7B9D58D7EE1 /* SwitchIfEmpty.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9BE25FE38986C6639155CC9ECD28C7FD /* SwitchIfEmpty.swift */; }; - 5F791E851B63350E9C2DD09F0488EBF5 /* RxRelay-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 53630E9BB8940972E7B4718540FA1984 /* RxRelay-dummy.m */; }; - 5F947C782C4BB4A5AD404E347D308478 /* Queue.swift in Sources */ = {isa = PBXBuildFile; fileRef = D95560AF78D5AD51011845730ADA6F9B /* Queue.swift */; }; - 5FB5D802B5568436B7A10CB5A9E80ECF /* AVAssetImageDataProvider.swift in Sources */ = {isa = PBXBuildFile; fileRef = 86526F623081F1A67842E1F5F0A8CBB3 /* AVAssetImageDataProvider.swift */; }; - 60242D2DBA2A56C8762E257852AED02C /* ZFPlayerView.m in Sources */ = {isa = PBXBuildFile; fileRef = 99968AC2DBB3A2F3F7CDC30EE42C3DF2 /* ZFPlayerView.m */; }; - 60321424038D6730A0AD53BCF60F0127 /* ZFPersentInteractiveTransition.m in Sources */ = {isa = PBXBuildFile; fileRef = 6E3DEB584DB9996A3FA4313F64CA66B5 /* ZFPersentInteractiveTransition.m */; }; - 603CEC5773E4B2356F096AB5BE1AA1D9 /* BRPickerView.h in Headers */ = {isa = PBXBuildFile; fileRef = A57A7A43008CE2316B57AF912372E039 /* BRPickerView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 609235D3A7BCE7E6E7782F37F4BF0329 /* BehaviorRelay.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7E7D7A39D94EC6E14207C223CB14F2CC /* BehaviorRelay.swift */; }; - 609738ADF822DF800B4A5CE1FBFB09AD /* KFAnimatedImage.swift in Sources */ = {isa = PBXBuildFile; fileRef = B348160C7E9EB1DCBA33905AF74E57A7 /* KFAnimatedImage.swift */; }; - 60DDEEB9DF2E9BF439AAAD617D7DFDCB /* RxPickerViewDataSourceType.swift in Sources */ = {isa = PBXBuildFile; fileRef = B0E16B683C26B00E609E2B95CD392691 /* RxPickerViewDataSourceType.swift */; }; - 61185B153F4FCD3160D48208289515FC /* JXCategoryCollectionView.m in Sources */ = {isa = PBXBuildFile; fileRef = F90790C47C135AE0444CF99A772403D5 /* JXCategoryCollectionView.m */; }; - 614BD4DBD5C1BCB13CE995085A38C096 /* Observable+Bind.swift in Sources */ = {isa = PBXBuildFile; fileRef = CB30DCE64ED3098C3FF3BD8E138EE084 /* Observable+Bind.swift */; }; - 619A84DBC854017C0A1A9BBE4D159E39 /* UIImage+ForceDecode.m in Sources */ = {isa = PBXBuildFile; fileRef = 52139711D5478A69185AEFB0B649E3D5 /* UIImage+ForceDecode.m */; }; - 61F262365CEF552157D29B6572D3B54D /* Observable.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8443E7A2FABB5D4DFE53CF3ADE45E8BF /* Observable.swift */; }; - 62763B5EC742ACA67FD0E5453E6BBD45 /* CPListItem+Kingfisher.swift in Sources */ = {isa = PBXBuildFile; fileRef = 781CCD3BD64AF4C147E8952BC37692AD /* CPListItem+Kingfisher.swift */; }; - 629C7157E20CDF4236A206BC470406D6 /* RxTableViewDataSourcePrefetchingProxy.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4AC47962766BE80134B971FB68039F54 /* RxTableViewDataSourcePrefetchingProxy.swift */; }; - 632FDD201CBD2BECFE77A054EF4BADB3 /* MATraceReplayOverlay+Addition.h in Headers */ = {isa = PBXBuildFile; fileRef = E4CCD437D9E0EFB7DA8B59AD4D858DCB /* MATraceReplayOverlay+Addition.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6335E8323C2491C8A9C99CE9DB2BF83F /* Bool+ZLPhotoBrowser.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6C800FA8AABC4631C247813282A08882 /* Bool+ZLPhotoBrowser.swift */; }; - 635B043F860CE53EFCA19CC564B47075 /* IQKeyboardManagerConstants.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8A0C56894D56C34FA82F9A00581E1B0C /* IQKeyboardManagerConstants.swift */; }; - 63C6F2C653074E8FC5DA3D47497949A7 /* _OCLogHelper.m in Sources */ = {isa = PBXBuildFile; fileRef = 48DEEB250BD1D0677DA987440667F31A /* _OCLogHelper.m */; }; - 63C7CF43EB4791A04979913B13E84732 /* NSDate+BRPickerView.m in Sources */ = {isa = PBXBuildFile; fileRef = D98A17E769637BA830304185E61703B1 /* NSDate+BRPickerView.m */; }; - 6456BE1D3735919BA27D3C44CA4A984D /* SDWebImageDefine.m in Sources */ = {isa = PBXBuildFile; fileRef = EC1BA5F2BE2943635A725BD4D0B13FE4 /* SDWebImageDefine.m */; }; - 64D8805F7527163B0A4120C403D97AD2 /* IQKeyboardManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = B519E65D2E35BE091C034AC950FB1AAD /* IQKeyboardManager.swift */; }; - 64D9658A0FCC5D129810690447FCDA38 /* KFImageOptions.swift in Sources */ = {isa = PBXBuildFile; fileRef = EF358A72C03DF2042A5AE82F2F5667B8 /* KFImageOptions.swift */; }; - 64F134656F206AEA36B251F574762046 /* JXCategoryIndicatorCell.m in Sources */ = {isa = PBXBuildFile; fileRef = C1ADAAB3970FA6481E07A5084A787A43 /* JXCategoryIndicatorCell.m */; }; - 652F1768E71D55ED1C4D40E7ABCA11F8 /* IQUIView+IQKeyboardToolbar.swift in Sources */ = {isa = PBXBuildFile; fileRef = F3A995BC590AFD7C3467D8606C64611E /* IQUIView+IQKeyboardToolbar.swift */; }; - 654A4C94E5BE7E8E6E87E3CFEAC5D2D1 /* CombineLatest+arity.swift in Sources */ = {isa = PBXBuildFile; fileRef = 58755C2C5E728859C36F6A6A1B128F27 /* CombineLatest+arity.swift */; }; - 657B15F38DA662B4F8E0284C27E0EBE1 /* UIView+DDCategory.h in Headers */ = {isa = PBXBuildFile; fileRef = 19459891C2FAEBEC5A2A9DFC7EFB8665 /* UIView+DDCategory.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 657E04A4248E389B609C47DB3CA58F5E /* NSBundle+BRPickerView.m in Sources */ = {isa = PBXBuildFile; fileRef = 1DD09241F5C618D50220A1912B41C186 /* NSBundle+BRPickerView.m */; }; - 65A3E384961F6C904B1D329C2B1D1BDF /* RxTableViewDataSourceProxy.swift in Sources */ = {isa = PBXBuildFile; fileRef = BA09C034CF8F13CC190ED3168388D337 /* RxTableViewDataSourceProxy.swift */; }; - 65C3ED45AE68B9415127887E553B901C /* JXCategoryTitleVerticalZoomCell.h in Headers */ = {isa = PBXBuildFile; fileRef = 35B93DA72DAAC889111F0ED6EBD3FF5C /* JXCategoryTitleVerticalZoomCell.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6649A2058F4EA544384A888D95492A95 /* ZLCameraConfiguration.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2822D98723585527798A40A918FF4B8F /* ZLCameraConfiguration.swift */; }; - 6674277C63A2F0AE5EA17A48C88759CB /* EKAttributes+LifecycleActions.swift in Sources */ = {isa = PBXBuildFile; fileRef = D3237AE0F5FD1B64B735F08E4475BD01 /* EKAttributes+LifecycleActions.swift */; }; - 667E98CC3D54F70B73D6D31D5D94FE0A /* SDWebImageOptionsProcessor.h in Headers */ = {isa = PBXBuildFile; fileRef = 707859ADEDEEAAA25CFD10AF69EA0604 /* SDWebImageOptionsProcessor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6694E6D8A68A448BA619714C9F10A0FC /* MJRefreshHeader.m in Sources */ = {isa = PBXBuildFile; fileRef = 0DC95A63A4B53BD65F7C07AFE543CA70 /* MJRefreshHeader.m */; }; - 66A9DC3B7E3BB37EB783B70278A717B7 /* CrashCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = DE2C4249D20EA550B89420611F39354D /* CrashCell.swift */; }; - 66B43477DE0F24FDDE11B346D39BF863 /* RxTextViewDelegateProxy.swift in Sources */ = {isa = PBXBuildFile; fileRef = 558ECF73D3819FBDF26EBC50C01A6461 /* RxTextViewDelegateProxy.swift */; }; - 67CF5305E9EBF23CB22B90CDE4CDBF91 /* SDImageLoader.m in Sources */ = {isa = PBXBuildFile; fileRef = 7D05A8EF5D0161D15ED3AB81B8847251 /* SDImageLoader.m */; }; - 68A9E007AD5461A5DB79E5541E21BFF6 /* RTLManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 9DA5859524B9EFF17D75560BCF7480FA /* RTLManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 68B4EC36B6F2299256FC94F862129B39 /* ZFIJKPlayerManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 3DB3210B892243F17E4B0839CCC7B88D /* ZFIJKPlayerManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 68B7B161F88A8AD78F0E21B6DE4547CA /* ESTabBarItemMoreContentView.swift in Sources */ = {isa = PBXBuildFile; fileRef = D6D861BF2CC70926A385262F7593001A /* ESTabBarItemMoreContentView.swift */; }; - 690256DF05FE465E8948ED017110EE78 /* ZLEditToolCells.swift in Sources */ = {isa = PBXBuildFile; fileRef = 366CAA289B0930DF3D88DB4017B53B1B /* ZLEditToolCells.swift */; }; - 6947D25CA62F4B84B0C798ED96485335 /* UIView+WebCacheOperation.h in Headers */ = {isa = PBXBuildFile; fileRef = E1F1FCDDE6E882ABCEFA3430974CDC45 /* UIView+WebCacheOperation.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 69A74CEB8546E46560B3D6658253BC61 /* Combine.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5E03D57AB96189F735C63A670785F735 /* Combine.swift */; }; - 69CBDC82C1A8BAE7227588C16B025E99 /* SDAsyncBlockOperation.h in Headers */ = {isa = PBXBuildFile; fileRef = 3D1376EDC4BD752FA07F2D4504A027FD /* SDAsyncBlockOperation.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6A17FBBA05FC76B4A0D832556BA09D95 /* RequestModifier.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3F35FF66B719C57EDC39C7FB87310FD1 /* RequestModifier.swift */; }; - 6A53598A923329BDFA0D9500C3177D8D /* RecursiveLock.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0D3477DB83523D501A97BFEC5B61300D /* RecursiveLock.swift */; }; - 6A73D8C90B3AB65EE530DBC09D72B0BD /* DDTimerKit_Private-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 6C0A3CAB96C610BDC64BAD5AC6D15930 /* DDTimerKit_Private-dummy.m */; }; - 6A81ABDBB4DC38B8AADC3DF2F53A888D /* ZLAlbumListModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = 21244D72067C005592CD8A8175E871E2 /* ZLAlbumListModel.swift */; }; - 6A9EC3C99A882F88915BD329FD85D03A /* RxTableViewDataSourceType.swift in Sources */ = {isa = PBXBuildFile; fileRef = B8208FE762E54F92E006BF67287ECF3D /* RxTableViewDataSourceType.swift */; }; - 6BC6215ED293047E5848C790648404AE /* ReplayRelay.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9ECDAE64E2324CF79FC4E717F7DC0732 /* ReplayRelay.swift */; }; - 6C2BC16E094CDD900A851B5124959A95 /* NSObject+DDCategory.h in Headers */ = {isa = PBXBuildFile; fileRef = 9A3FDF9212D2FCDDF45A3DCA1F2CBE90 /* NSObject+DDCategory.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6CABF78E996F90619923174D81B9CC27 /* _CacheStoragePolicy.m in Sources */ = {isa = PBXBuildFile; fileRef = 22F0FEDF57C87B33CF5B91CAB75CD6AE /* _CacheStoragePolicy.m */; }; - 6CB80E0E3A8AB7064405B2333D680001 /* JXCategoryFactory.h in Headers */ = {isa = PBXBuildFile; fileRef = 2319E9D032E14A9232C25E185CD6CB00 /* JXCategoryFactory.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6CDA21915F4586B1823FF8ACFC96747A /* ControlProperty+Driver.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2A2C12D6097430F170F6F2BF85EFFC7D /* ControlProperty+Driver.swift */; }; - 6CE153A8353153BEBD5941D99D0AA948 /* MJRefreshBackNormalFooter.m in Sources */ = {isa = PBXBuildFile; fileRef = EAFDF12D24EE5F96BAF283E0DEE714FF /* MJRefreshBackNormalFooter.m */; }; - 6CE48EA118230C42AEF5DBC8A5D201A1 /* UIBarButtonItem+DDCategory.h in Headers */ = {isa = PBXBuildFile; fileRef = 53CF355A89DE8D9ADAA0307E65EEFC4A /* UIBarButtonItem+DDCategory.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6D2977C80671B931D73CAE856D3DB84A /* UIScrollView+DDCategory.h in Headers */ = {isa = PBXBuildFile; fileRef = 1C66EFB0BE10C024A3B99F07A5C7C891 /* UIScrollView+DDCategory.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6D2B4E560DF8CF28AAAD298655330461 /* Enumerated.swift in Sources */ = {isa = PBXBuildFile; fileRef = B4F6D1386839E9F612A078CC77B2D014 /* Enumerated.swift */; }; - 6D5BA78CC0A1B35541970FD27B05AA66 /* Utils.swift in Sources */ = {isa = PBXBuildFile; fileRef = DF00ACF43E6306DE8FEC5BDB2A03DF1A /* Utils.swift */; }; - 6D6A299EF1F0B7D39625BBC03F6043E8 /* Infallible+Create.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6C92599189B98ABDB997E47EA8A17469 /* Infallible+Create.swift */; }; - 6D8B1D4945DCEECA487075BEF2FC0DC7 /* Driver.swift in Sources */ = {isa = PBXBuildFile; fileRef = 71BAE3F41BD1D2E96AFE5E0CD19A81DE /* Driver.swift */; }; - 6D8E6A17A45A4EA1D54A22F69B95AC7F /* ZLCameraCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = 990FB2D28CA2C94ED42F278C95422B94 /* ZLCameraCell.swift */; }; - 6D9368594D1292807769B8BB99B0B741 /* GraphicsContext.swift in Sources */ = {isa = PBXBuildFile; fileRef = 154E45C0BE1CADEBADBEE06DF9CA0EF9 /* GraphicsContext.swift */; }; - 6DB064B91D2C44A6E2550CCF94542FDF /* LockOwnerType.swift in Sources */ = {isa = PBXBuildFile; fileRef = 82131A69CD830D98CE9F590887CB3337 /* LockOwnerType.swift */; }; - 6E0056255590AF29EEA12A9719025309 /* UIColor+ZLPhotoBrowser.swift in Sources */ = {isa = PBXBuildFile; fileRef = D66984081B441C8CC2CC9138560B1175 /* UIColor+ZLPhotoBrowser.swift */; }; - 6E285A3D314DE0DECF80546A5865EB34 /* UIImage+GIF.h in Headers */ = {isa = PBXBuildFile; fileRef = 7211B4D3331D230BABC8B6D37DBFE985 /* UIImage+GIF.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6E571195DB6696DCD7A11A16D9DD765F /* ZLCollectionViewFlowLayout.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6CB1AB0422CDD0085DAC83850AF5CFD9 /* ZLCollectionViewFlowLayout.swift */; }; - 6E57A9166EF294BB9BB9643BACEBE052 /* UINavigationBar+DDCategory.h in Headers */ = {isa = PBXBuildFile; fileRef = 30B17E28F952077D6B053CD903A984E4 /* UINavigationBar+DDCategory.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6E8267BF68A5C197D4EB8BC34C450987 /* ZLResultModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = 12DCBCCC9694CEB567D5A2098C5C0690 /* ZLResultModel.swift */; }; - 6E9369F02458847D86856EF00BEEA8E8 /* DDBaseImageView.h in Headers */ = {isa = PBXBuildFile; fileRef = 6E32D87137AE364FFEC66F3F35FA0DCE /* DDBaseImageView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6F1CB3950421A0340A5EF488790ED62A /* OperationQueueScheduler.swift in Sources */ = {isa = PBXBuildFile; fileRef = 04DAA79A8DFFB012FEF2FBC7DD2EF0BC /* OperationQueueScheduler.swift */; }; - 6F329291E9FB8EF90578801F87261E08 /* NSButton+WebCache.m in Sources */ = {isa = PBXBuildFile; fileRef = 4034C628EDA2DF32F5F3CB1EAA29C86D /* NSButton+WebCache.m */; }; - 6F6BFAFDA5BBE4CF557EE5CB85C806B1 /* NSURL+DDCategory.m in Sources */ = {isa = PBXBuildFile; fileRef = 9604B615840630CBADC2C11BE75E46E1 /* NSURL+DDCategory.m */; }; - 6F99E2BF991F1F67BD38C6934B68DC07 /* SDWebImageTransition.h in Headers */ = {isa = PBXBuildFile; fileRef = 8C91C4AF0C3222359BE9291B912BBFC0 /* SDWebImageTransition.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 704561149DBBBDD2D481E242B79B1FB5 /* DDTimerObject.h in Headers */ = {isa = PBXBuildFile; fileRef = C145C1028751009EA4490FA0BC97D818 /* DDTimerObject.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7048F4545FF01508FE52CDD728F5A6EC /* ZFLandscapeWindow.m in Sources */ = {isa = PBXBuildFile; fileRef = F2B77CEB2DD94E3C98E0EA313181A241 /* ZFLandscapeWindow.m */; }; - 70AE0363ACE9E14DDA1120DB60B5E0EC /* SDImageCoder.h in Headers */ = {isa = PBXBuildFile; fileRef = F391467FFA15D71712763261BFD3326C /* SDImageCoder.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 70B6FE4A37E2023C5833979592FE5EC7 /* JXCategoryIndicatorCell.h in Headers */ = {isa = PBXBuildFile; fileRef = 6E33EA1EFEB3F23C4876B6037110C33A /* JXCategoryIndicatorCell.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7168A587CF00336CC0C44FC8D27D6B66 /* UISearchBar+Rx.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4569996F344788C7F3B47D8AB09D83B7 /* UISearchBar+Rx.swift */; }; - 7168D4FEC7E4CD376DCD0B8BF2024156 /* UIView+ZFFrame.m in Sources */ = {isa = PBXBuildFile; fileRef = DA91556F1E07478E1A9D56C584CD9D5F /* UIView+ZFFrame.m */; }; - 71742FA7C715D034FE3912ED07B30379 /* _DirectoryContentsTableViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = AC804CCDAC995685AD30B4C033A17B03 /* _DirectoryContentsTableViewController.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 718B12AD3FD5F44645B82D7EB0724C52 /* UISearchController+Rx.swift in Sources */ = {isa = PBXBuildFile; fileRef = F87DF8C4A9233761A0749A0E68FB5D32 /* UISearchController+Rx.swift */; }; - 71E19F4B9637500659E9D760659DF4BD /* ConstraintLayoutSupportDSL.swift in Sources */ = {isa = PBXBuildFile; fileRef = D2D08685BDAEE28779E59509468968BE /* ConstraintLayoutSupportDSL.swift */; }; - 7248CD5CAAC5D0D6FF0F9D85CEF858BB /* ZLInputTextViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = A7D9C3B98052E58DD6F6388F373243F8 /* ZLInputTextViewController.swift */; }; - 724A87977D3D501F37C0BB022C6F38AC /* ZFFloatView.m in Sources */ = {isa = PBXBuildFile; fileRef = 0B5B4B27E12CDBEF2C34CAC20DFCA94C /* ZFFloatView.m */; }; - 725D740A38D5E761FCA71B67A4891E35 /* SDImageTransformer.m in Sources */ = {isa = PBXBuildFile; fileRef = 045CEEA0968247020E7E6AC973C704A3 /* SDImageTransformer.m */; }; - 728632B0C7B9B5C555AF66E7464657F0 /* DDBaseTableViewCell.m in Sources */ = {isa = PBXBuildFile; fileRef = D2A47455674C5068617927590349D83A /* DDBaseTableViewCell.m */; }; - 729CC942A3DFCE7D23AFA147F5062DB5 /* DDTableViewCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0C4C2F010A7E2F134C39503739F003E8 /* DDTableViewCell.swift */; }; - 72AACF79D46DD4C0ED4D144B840E1F91 /* UIGestureRecognizer+Rx.swift in Sources */ = {isa = PBXBuildFile; fileRef = ED772D370D54F994DBC8537D46F7CD91 /* UIGestureRecognizer+Rx.swift */; }; - 7393E58D9B17403B8424847A1817B5A1 /* UIImageView+DDCategory.m in Sources */ = {isa = PBXBuildFile; fileRef = 7B16D673C21F66C3035CC3A5D202B8BA /* UIImageView+DDCategory.m */; }; - 73945F5394F485D66898305510756115 /* GradientView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9EF2B2DD090BAAAB648AF39338208629 /* GradientView.swift */; }; - 73AB70D6B97E43420FB576C9D26039E6 /* JXCategoryIndicatorCellModel.m in Sources */ = {isa = PBXBuildFile; fileRef = 6437AB027A54C2697BF41263053645DB /* JXCategoryIndicatorCellModel.m */; }; - 7406DEA0EDCB81CB5CC731EF16018D33 /* _CustomHTTPProtocol.h in Headers */ = {isa = PBXBuildFile; fileRef = 112A895CF76ECDB40C0ECA09CFECFA97 /* _CustomHTTPProtocol.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 74972BEA7D6A0CE28CB3EFB11EF2DCAF /* FontUtil.swift in Sources */ = {isa = PBXBuildFile; fileRef = EA52CADF6FAA19912160177B7577C02B /* FontUtil.swift */; }; - 74D0D590327ABFC48E7113ADD326E00D /* BRResultModel.m in Sources */ = {isa = PBXBuildFile; fileRef = F21CB93FCE510D339F30B4B89A47486E /* BRResultModel.m */; }; - 74DD9CAE99A3118FCFF0E7BDF28DEB29 /* RxCollectionViewDelegateProxy.swift in Sources */ = {isa = PBXBuildFile; fileRef = CB2FA715969EA0400BA4244DDB5CE8DB /* RxCollectionViewDelegateProxy.swift */; }; - 74F67FEAFEC525AC390396FF566F9100 /* GroupedObservable.swift in Sources */ = {isa = PBXBuildFile; fileRef = C7F4520A733D738074E96616D5B8EACB /* GroupedObservable.swift */; }; - 752811625260B14669C192D57F44BAAD /* AboutViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 39EC005637D0A654BC48D7244BEB1505 /* AboutViewController.swift */; }; - 752B3F70A6F718A30BE1C49EC35BC3FA /* Just.swift in Sources */ = {isa = PBXBuildFile; fileRef = 33111DC36691DBBC9AA31B540B5C50FF /* Just.swift */; }; - 756E1E9A85EDBD96D30C9BC8A7A3A090 /* ZLFilter.swift in Sources */ = {isa = PBXBuildFile; fileRef = CA27469EC732B1B110A73C84A922D666 /* ZLFilter.swift */; }; - 75A1DAD0A861EDBF654C93A2857D897E /* JXCategoryIndicatorDotLineView.m in Sources */ = {isa = PBXBuildFile; fileRef = B2FD130A08897D167F3277A7F0EDC8A5 /* JXCategoryIndicatorDotLineView.m */; }; - 75A50A9B3FD4EF659C8E61546D270CF1 /* SDImageGIFCoder.m in Sources */ = {isa = PBXBuildFile; fileRef = 4FB2524A82E6D50C04B9A71999A38281 /* SDImageGIFCoder.m */; }; - 760760698F2B539B1A4A8C3FD74E607A /* SDWebImageDownloaderOperation.h in Headers */ = {isa = PBXBuildFile; fileRef = E876D1170DB2C579D13C9F59AFBD813C /* SDWebImageDownloaderOperation.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 765C8A7DB5223CDA8C6E5D333F2CDFC3 /* UIImageView+HighlightedWebCache.h in Headers */ = {isa = PBXBuildFile; fileRef = B43F63A10529EA3CB9DE998DBD85F809 /* UIImageView+HighlightedWebCache.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 76611951D9B70E4416C30FF8C9C92F17 /* Infallible+CombineLatest+arity.swift in Sources */ = {isa = PBXBuildFile; fileRef = E4D8010907EDFF57AF9D65809469AB01 /* Infallible+CombineLatest+arity.swift */; }; - 76E3A558AD358F70264733619F84737A /* SDFileAttributeHelper.h in Headers */ = {isa = PBXBuildFile; fileRef = 78164EA811F651860320F92B43DE3468 /* SDFileAttributeHelper.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 777D599EE92E8693911A459685C7F332 /* SectionedViewDataSourceType.swift in Sources */ = {isa = PBXBuildFile; fileRef = D8784F5F746E498824E0EF2D0E4354B6 /* SectionedViewDataSourceType.swift */; }; - 780911F844E400DC3DE983DFC62285E2 /* DDBaseLabel.m in Sources */ = {isa = PBXBuildFile; fileRef = 992D25C5AA9160B1F8317E3BB17518E4 /* DDBaseLabel.m */; }; - 78270987D9093E276EA12C698FC69D66 /* JXCategoryTitleView.h in Headers */ = {isa = PBXBuildFile; fileRef = 27E7547FF32E8AA84FD9515027533089 /* JXCategoryTitleView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 785031B71ABACAC9C0BF541D7952E7D0 /* SDImageCache.m in Sources */ = {isa = PBXBuildFile; fileRef = A4B37FC102BBF3F9E183796B8D21F9AA /* SDImageCache.m */; }; - 7862592A925A99934E73D7B24F2895F7 /* IQKeyboardManagerSwift-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 996EC8E3E1C2BCD6A8B9EE2EA38B3695 /* IQKeyboardManagerSwift-umbrella.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 78A9DC5A1BC9FB56108C4AF9B8A1BE19 /* CrashDetailViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = CFFA60E259E0725CE08A52581DA8AC4A /* CrashDetailViewController.swift */; }; - 78B2931A79E21B1AF56F09DEFA4E42F9 /* UIView+WebCache.m in Sources */ = {isa = PBXBuildFile; fileRef = C3CEB51598371906F01DD9161738CE18 /* UIView+WebCache.m */; }; - 78B8DD7CCD7E3DCFEF348E2EF1A44D91 /* ConstraintMakerRelatable.swift in Sources */ = {isa = PBXBuildFile; fileRef = C6EF70FBD1FD294D9AECD8DCBE23574D /* ConstraintMakerRelatable.swift */; }; - 78F894ED919BA89C6C89F2DBF915BE38 /* Bag+Rx.swift in Sources */ = {isa = PBXBuildFile; fileRef = AB63438B30169A0620F90A6C533EAD65 /* Bag+Rx.swift */; }; - 7928BF03967198F5CD7DAFD6D784F04F /* EKMessageContentView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 98D08CEBE7162D3492772D1D9F6E0A37 /* EKMessageContentView.swift */; }; - 79403C58DA1B5106F8104E1DEC5C2573 /* MABaseOverlay+DDCategory.m in Sources */ = {isa = PBXBuildFile; fileRef = 51813312B6F828DD6676FF8BF9934209 /* MABaseOverlay+DDCategory.m */; }; - 795FED16EEB4B05B3E37700009207E34 /* URLConvertible+URLRequestConvertible.swift in Sources */ = {isa = PBXBuildFile; fileRef = 50DD9CA4A8D19048933C78B9B129D729 /* URLConvertible+URLRequestConvertible.swift */; }; - 79667886740E03B0BA8CAD82D277FDD5 /* _FileInfo.m in Sources */ = {isa = PBXBuildFile; fileRef = 48F27631AD88EEF617D44D4EE041EF2B /* _FileInfo.m */; }; - 79732A6532885C9A7DB87F999CE0BBDC /* MABaseOverlay+DDCategory.h in Headers */ = {isa = PBXBuildFile; fileRef = 3CA9DA9922A38A99D87D5753A6BD4089 /* MABaseOverlay+DDCategory.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 79CC6919A398730886F6C86DDEE7F597 /* DDBaseCollectionView.h in Headers */ = {isa = PBXBuildFile; fileRef = 93D6D4BA2DC9E732D330D585CCEDEF4E /* DDBaseCollectionView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 79E028B32DC2E143BAC645CD4DE435D1 /* IQUIView+Hierarchy.swift in Sources */ = {isa = PBXBuildFile; fileRef = CE15967E16ADD3D6778D28B4D158A893 /* IQUIView+Hierarchy.swift */; }; - 79FB13C8D3A4E1D1C297B963C574C0F5 /* ZLPhotoUIConfiguration.swift in Sources */ = {isa = PBXBuildFile; fileRef = D8ED028E36F42FA059551C165A0E6F95 /* ZLPhotoUIConfiguration.swift */; }; - 7A0B6D99906FF6556D90F6A773526EAF /* Sources_DDMAMap in Resources */ = {isa = PBXBuildFile; fileRef = 29FF2F7FDD9A2FA0F5CB2FB0C041DA77 /* Sources_DDMAMap */; }; - 7A3B3E372DA33E8C48594BB13E7B308E /* UITableView+Rx.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7BFC111842371C60D1C45662A320EB66 /* UITableView+Rx.swift */; }; - 7A4F0F49748AD6BFE43729FE2B9DB916 /* NSObject+CocoaDebug.m in Sources */ = {isa = PBXBuildFile; fileRef = 36C3D0130B0C9328DED201E5FC5CD14E /* NSObject+CocoaDebug.m */; }; - 7A8B0747E5A8A96ED66C1D708F66CFC4 /* ZLImageNavController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6A708DE29867303623088A2AF88B0ED6 /* ZLImageNavController.swift */; }; - 7AB8A969CB1C2BB988A9AB1CD30E6C19 /* ZFOrientationObserver.m in Sources */ = {isa = PBXBuildFile; fileRef = 11A0E08C743E9F83B7793CFD9C9BAF7D /* ZFOrientationObserver.m */; }; - 7B1437FE5E98D55CD1607074C4AA29C6 /* JXCategoryIndicatorProtocol.h in Headers */ = {isa = PBXBuildFile; fileRef = D0B00371094CE7CBDB73BF685DE96DF1 /* JXCategoryIndicatorProtocol.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7B385A3BBFA5DF0F919ECC1525955E0C /* DDMALocationManager.m in Sources */ = {isa = PBXBuildFile; fileRef = F6E89D7DB7ECB692CE8387F208CB93BA /* DDMALocationManager.m */; }; - 7B40DD9862AA3468764CDCDCE77E4F17 /* NSBundle+DDCategory.h in Headers */ = {isa = PBXBuildFile; fileRef = 8CD06EBBE4102C7F5764B8209366063D /* NSBundle+DDCategory.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7B5A2A22E907F6CB8E791BD1937E41ED /* DDBaseLabel.h in Headers */ = {isa = PBXBuildFile; fileRef = 9F691AD46B341DB9014CC5D31F64C79F /* DDBaseLabel.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7B68CC1F3C07D681E360C3E50B5CC853 /* UIScrollView+ZFPlayer.h in Headers */ = {isa = PBXBuildFile; fileRef = 0869C8BBD4FCB89ED37D690294177823 /* UIScrollView+ZFPlayer.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7B708B9949DEE9168B4D10D22E04DEAE /* MJRefreshNormalHeader.m in Sources */ = {isa = PBXBuildFile; fileRef = 8CD69BDD6EEEC948AEC837E16137616F /* MJRefreshNormalHeader.m */; }; - 7B736FC0BBF3C32F32A585090944FC87 /* SwiftEntryKit-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 41B3274F1C3FAAE77565D79AD96F5363 /* SwiftEntryKit-umbrella.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7BAC5247AD928B776F8727F9FB4EE7AD /* ESTabBarItemBadgeView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1FBF2163D049C03E241B43372AAE977C /* ESTabBarItemBadgeView.swift */; }; - 7BB0CACC6436CF5D5C3F70380CC60DCD /* CompactMap.swift in Sources */ = {isa = PBXBuildFile; fileRef = D775FD6C7A556F11338C50E643456F6F /* CompactMap.swift */; }; - 7BE0E96A934415CEA4C5902416BA5D10 /* Kingfisher.swift in Sources */ = {isa = PBXBuildFile; fileRef = D3417B7FDC091AE661284928C1A8C3CD /* Kingfisher.swift */; }; - 7BED846D60824F00240F62FD259E7EDC /* UICollectionViewCell+DDCategory.h in Headers */ = {isa = PBXBuildFile; fileRef = 5A54B6088BCED0C9C01FCCA7D1D2EB07 /* UICollectionViewCell+DDCategory.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7C268EA30C39F532AC992D696FDF5024 /* DDNetworkingOfAlamofireKit_Private-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = B1D95F26F7C8B50C757285DA4453386B /* DDNetworkingOfAlamofireKit_Private-umbrella.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7CC381905CFE6C7F0E8CFC3A941D9E14 /* ConstraintRelatableTarget.swift in Sources */ = {isa = PBXBuildFile; fileRef = 672D8B4DA9EB982C785C9A45852FC95B /* ConstraintRelatableTarget.swift */; }; - 7CE1CBA3BD77F8B64632D7BFAEBFAF60 /* Kingfisher-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 73D6DB767B7896D077EB271A411FE093 /* Kingfisher-dummy.m */; }; - 7D079A25B5264F1227B452FCB3FC54D5 /* UIImageView+WebCache.h in Headers */ = {isa = PBXBuildFile; fileRef = 6A00A2C1BBBB457525AF402C07A7A453 /* UIImageView+WebCache.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7D91C3F0624FD9F56B50BA2F6887657E /* UIImage+DDCategory.m in Sources */ = {isa = PBXBuildFile; fileRef = F7AE22AB585AA94812D55676007FA7D7 /* UIImage+DDCategory.m */; }; - 7DD0BC2DA256A086219DC90AE1FD3862 /* ObserveOn.swift in Sources */ = {isa = PBXBuildFile; fileRef = 23EED8DBE9F1C89AAAE37724A1AFCD59 /* ObserveOn.swift */; }; - 7DF302A2DB5B660FE70888DA0EE0F286 /* SharedSequence.swift in Sources */ = {isa = PBXBuildFile; fileRef = DDB0356CC57B3E72F39C88E1017F2CA4 /* SharedSequence.swift */; }; - 7E5A43683952F26781D57C4CC12F4CCE /* MJRefreshConfig.m in Sources */ = {isa = PBXBuildFile; fileRef = 970B22270C96364AA04F36C26C88C665 /* MJRefreshConfig.m */; }; - 7E7A9F47A061A7D46AB1F401E90429F2 /* SDDiskCache.m in Sources */ = {isa = PBXBuildFile; fileRef = 61C2C3AA429BE0FB945E8692AEB70B1B /* SDDiskCache.m */; }; - 7EA1A285B210A02961DC6EC1C01C1687 /* CocoaDebugSettings.swift in Sources */ = {isa = PBXBuildFile; fileRef = E0EACDEF5821A46A7F2B031F73F7E406 /* CocoaDebugSettings.swift */; }; - 7EA4D4DAB19F8B4A1BE641F9A803B3A4 /* JXCategoryNumberCell.h in Headers */ = {isa = PBXBuildFile; fileRef = 6A96BB967850E795C4EF42387D8E911D /* JXCategoryNumberCell.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7EB2310478090C2EB9121DB66FA3600D /* Sample.swift in Sources */ = {isa = PBXBuildFile; fileRef = C83A53B97BAD8F8622DE3ACCB0414615 /* Sample.swift */; }; - 7F32A097697328E2274CC8AD925FE543 /* _RunloopMonitor.h in Headers */ = {isa = PBXBuildFile; fileRef = 9E6CBC53274BD6E1521F82A306B2AF74 /* _RunloopMonitor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7F60A19D3B83E8A56DD7778844101265 /* WKWebView+Rx.swift in Sources */ = {isa = PBXBuildFile; fileRef = 01B1539D7D01D6739AB8D29441F36F71 /* WKWebView+Rx.swift */; }; - 7F7A448804E2F4F5463FDD8E54B69C0E /* NSThread+DDCategory.h in Headers */ = {isa = PBXBuildFile; fileRef = 7681F4AD479265BBC9C0CA8ABE1CDC22 /* NSThread+DDCategory.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7F87DDA52B40F5252EB2DE162C33BAC0 /* MJRefreshGifHeader.h in Headers */ = {isa = PBXBuildFile; fileRef = F29BE1E9492E2AEFE0D074EEE69B04C8 /* MJRefreshGifHeader.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7F8C57E8EB092482AFB657DFACCBF876 /* First.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8CE4F5E691BBFA430928733401572FAC /* First.swift */; }; - 7FCA7DF486BC1220F21964FCD6B1A3C3 /* RxPickerViewDataSourceProxy.swift in Sources */ = {isa = PBXBuildFile; fileRef = FE6FD30EC41C1D856637F82EB66D5D22 /* RxPickerViewDataSourceProxy.swift */; }; - 7FF92EBA287D98B318E84C0165CE0E5C /* DDImage.swift in Sources */ = {isa = PBXBuildFile; fileRef = 20D44F3F66B10D9AFBAE38004B17436E /* DDImage.swift */; }; - 8000439462BA38F5CC1CE651A2AD05D2 /* DefaultIfEmpty.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9D77900683CB429F3824A29F75266C48 /* DefaultIfEmpty.swift */; }; - 80141B208065FE781FF8AB8F850FCE31 /* Signal+Subscription.swift in Sources */ = {isa = PBXBuildFile; fileRef = 88E6865145F1BF1ADC6D64A3B58F9EDB /* Signal+Subscription.swift */; }; - 807357E0D8B429C410617DCD42E83C73 /* JXCategoryTitleCellModel.h in Headers */ = {isa = PBXBuildFile; fileRef = BC9B81DCD65AE99490C8ACF70EC22DE4 /* JXCategoryTitleCellModel.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 813B683458C65465624988D928272B44 /* ZLPhotoBrowser-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 748BA636A801A40B212E240C08F32BBD /* ZLPhotoBrowser-dummy.m */; }; - 81456BEE51145D499173F52736521B09 /* ZFLoadingView.h in Headers */ = {isa = PBXBuildFile; fileRef = 07AA0CC5A5B6A72B098A533E337D3663 /* ZFLoadingView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 818EE2D4D7DDECBED411E45624F2A32F /* ZFLandscapeViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 269F0C7384B4FAA210049A05880A496F /* ZFLandscapeViewController.m */; }; - 819863FBD51B104B8D66432AC67C05C6 /* MJRefreshFooter.h in Headers */ = {isa = PBXBuildFile; fileRef = 1C07D20047AAD610FCD943836E5BB3BD /* MJRefreshFooter.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 81B24717BFCD424C3874D855D9F4BF32 /* EKNoteMessageView.swift in Sources */ = {isa = PBXBuildFile; fileRef = A24DF03EC73E56C72E32A0A71DF44628 /* EKNoteMessageView.swift */; }; - 81B7DA4E34BD7FDCFBE8B2CF16335996 /* UICollectionView+Rx.swift in Sources */ = {isa = PBXBuildFile; fileRef = D7015B8FA2DFA4923F8592D733367DC4 /* UICollectionView+Rx.swift */; }; - 81C2D503F2ECEB1331D541797699B6C1 /* ESTabBarItem.swift in Sources */ = {isa = PBXBuildFile; fileRef = 809DA51A2556715CF2494B6B74DA6398 /* ESTabBarItem.swift */; }; - 81DDF3AC3E4831357412BAF122E5456E /* EKAccessoryNoteMessageView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2D86B433CBE7EABF73131A6A2841F24A /* EKAccessoryNoteMessageView.swift */; }; - 81FFE95BF81E711459B7B48E1034C49B /* DDBaseTableView.m in Sources */ = {isa = PBXBuildFile; fileRef = AB423F201EFDE4212173DC2D2ADE00C3 /* DDBaseTableView.m */; }; - 8220B550020CCF8983DF5B8252C732F1 /* MJRefreshNormalTrailer.h in Headers */ = {isa = PBXBuildFile; fileRef = B3F103A7BACEF4849CBE12C4BE0C58AA /* MJRefreshNormalTrailer.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 827802DE999250886D89207BC6F0B58D /* NetworkViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2388A004AB114C7DA26B5E4CD017622C /* NetworkViewController.swift */; }; - 82BBE2F159943E19A69BD99EBE48D100 /* SDWebImageOptionsProcessor.m in Sources */ = {isa = PBXBuildFile; fileRef = 3B71C75C60987F627BAA4BFEF3BD49A5 /* SDWebImageOptionsProcessor.m */; }; - 82D0D719AE58DF78F47A6D90EA52AC41 /* ZFVolumeBrightnessView.h in Headers */ = {isa = PBXBuildFile; fileRef = A00C1A29D4C567207A56493A4B2DB4DC /* ZFVolumeBrightnessView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 836F0401537C25FF78D18E4895330035 /* DDViewControllerAnimatedTransition.m in Sources */ = {isa = PBXBuildFile; fileRef = 36C06656691E948FADC5D5A2EFB9EBC3 /* DDViewControllerAnimatedTransition.m */; }; - 83844DC39C84B73CD3F00D1CF7BE9492 /* Materialize.swift in Sources */ = {isa = PBXBuildFile; fileRef = E08DB0ACF03AC86DAE079CA172A0EB0F /* Materialize.swift */; }; - 83934536D39F22C4FDA8B8E6A64EA810 /* Infallible.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3BCBEDC6E2012AD1A1EB49EE0A37573B /* Infallible.swift */; }; - 83D0FF7A837ABA4E7B712358AF55AF52 /* NSImage+Compatibility.m in Sources */ = {isa = PBXBuildFile; fileRef = 6BCBBA87F83D831E099585DEA7390BE7 /* NSImage+Compatibility.m */; }; - 840B27BBD5508D3F123308CABDDFD524 /* MATraceReplayOverlay.h in Headers */ = {isa = PBXBuildFile; fileRef = A2EB1A3B8E37E6A4375C6622CCDE8ED0 /* MATraceReplayOverlay.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 84BC5434F8367126E554E82ED3592547 /* DDTimerManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 47EA542FEF8E600F42F57E68D1673A22 /* DDTimerManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8505471A71505E2BA003E64FC0D09DFE /* _RX.h in Headers */ = {isa = PBXBuildFile; fileRef = FF31B1E008EE8A72A31FA0A19EC51777 /* _RX.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 85176F9D2B175DDAB5C27F9151EB49D0 /* CombineLatest.swift in Sources */ = {isa = PBXBuildFile; fileRef = 60808E74303211BFF89129A7B5DE0A11 /* CombineLatest.swift */; }; - 85A96DED83E5FBF923823F46106F6836 /* RxCocoa.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1CEB2D223C0122F8B5F649375F9466A2 /* RxCocoa.swift */; }; - 85E9A0412761EE97B0F14C8506738BF5 /* Session.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4998241B9DB024FD4D497A5A37A92766 /* Session.swift */; }; - 862E9D10C50CBB0D339039294989DEF7 /* _RXObjCRuntime.m in Sources */ = {isa = PBXBuildFile; fileRef = 4F72B65A69543F08CC7F51582D8A5AC0 /* _RXObjCRuntime.m */; }; - 864F412CAB912E5360121273A3DBCA87 /* GPBMessage+CocoaDebug.h in Headers */ = {isa = PBXBuildFile; fileRef = F82AA08122B7F9E4B64E0A0291E5EBA9 /* GPBMessage+CocoaDebug.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 865ACC100F9BB256DA7C7F66FC85AF8B /* ItemEvents.swift in Sources */ = {isa = PBXBuildFile; fileRef = FDFAC4F4DAE717D676222C37B7819776 /* ItemEvents.swift */; }; - 86A5C86B1240F0E61CEBE0AC08A119C9 /* ZFPortraitViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = E10A1AB973CE69ADE8F346E5B990119C /* ZFPortraitViewController.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 86BACE0D784445DFCD937FF106BD0C42 /* EKButtonBarView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6F0CEFB87175D30F1018D422A6209207 /* EKButtonBarView.swift */; }; - 86FDA11CE9FA4F78C10FF4EFD30E6A1F /* NSControl+Rx.swift in Sources */ = {isa = PBXBuildFile; fileRef = AE6C4A0A5AD91D5611F8B5AF608A8B86 /* NSControl+Rx.swift */; }; - 8776F9D9CDA443D35E473576EB3194C5 /* UIBarButtonItem+Rx.swift in Sources */ = {isa = PBXBuildFile; fileRef = DEF05C5DE142415E1C6BB95036012A69 /* UIBarButtonItem+Rx.swift */; }; - 878914063ACAA2126B18E1DE5285F827 /* EKBackgroundView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6141F7D1163F845DD1649585DFB1BF29 /* EKBackgroundView.swift */; }; - 8791DC308884A90A38BD939A3C382FA5 /* SDMemoryCache.m in Sources */ = {isa = PBXBuildFile; fileRef = 3192DF6E8DB6C83CD68CF30344FC35A1 /* SDMemoryCache.m */; }; - 87F7CD12D82DF0270C8EE985C09FAB06 /* DispatchQueue+Extensions.swift in Sources */ = {isa = PBXBuildFile; fileRef = 98C507C4CC43338630874956E64E4D82 /* DispatchQueue+Extensions.swift */; }; - 884AC688577C393379C5ABE2BFD38A3B /* Zip.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2D4E9CE2748EE1F772D450506DAD3726 /* Zip.swift */; }; - 884E0742F061652658B861CEF44C7F21 /* PrimitiveSequence.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7B4C334E64B93977B3439E204A28E255 /* PrimitiveSequence.swift */; }; - 885031037B7CD4BEA92D1497F7781C76 /* SDAnimatedImageRep.h in Headers */ = {isa = PBXBuildFile; fileRef = 061355735D157BA2289365D6706B25D3 /* SDAnimatedImageRep.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 885663F96038AA1EAE2D435C7EC7C45A /* KF.swift in Sources */ = {isa = PBXBuildFile; fileRef = FB28B91D4D5684FE11502B6F763B3D35 /* KF.swift */; }; - 8858E81DBDF9B8147EFFB0ACE5FF5DFC /* SessionDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2E0CBEE1059BA5738E7F12343ACDFE6C /* SessionDelegate.swift */; }; - 88831391DDB7B938F107C2ECC222B199 /* ConstraintMakerExtendable.swift in Sources */ = {isa = PBXBuildFile; fileRef = 95C0FEAA3B43FD6B815D1F69389BBD23 /* ConstraintMakerExtendable.swift */; }; - 88A50BF727099AC5CAC16CD4C99B4861 /* DriveRouteCustomAnnotation.h in Headers */ = {isa = PBXBuildFile; fileRef = C7B817F0B1D35BB19782F2E91E72A446 /* DriveRouteCustomAnnotation.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 892A2CDE39CD694BF836090D02AAAE4D /* ZLEditVideoViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = ABBD483A481D42906399A9411D786FBB /* ZLEditVideoViewController.swift */; }; - 897B54D853BA61FF24B2D65C08476C36 /* Sink.swift in Sources */ = {isa = PBXBuildFile; fileRef = AC6D6F2A49015700905ADFF77A0C62AB /* Sink.swift */; }; - 89A74579487C25538D71E1B38643774B /* DDToastKit_Private-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = A3C21D5A0E990B1A2C498BE9E6C45FBF /* DDToastKit_Private-dummy.m */; }; - 8A096C9FF391F785C459443492599749 /* UINavigationBar+DDCategory.m in Sources */ = {isa = PBXBuildFile; fileRef = 14B8DAA7229455EDE174093B8E84329D /* UINavigationBar+DDCategory.m */; }; - 8A274008ED97223DAA12E076D417889F /* CocoaDebugWindow.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD95241372FB8882C27B3F27E05A916C /* CocoaDebugWindow.swift */; }; - 8A2BC1D6114D08F03E5D6CBD66814AD4 /* JXCategoryIndicatorBallView.m in Sources */ = {isa = PBXBuildFile; fileRef = 05F0DDEFEDC101C1B551BFFCEFDB6EED /* JXCategoryIndicatorBallView.m */; }; - 8A36A9064A1796CBA330FEDBAD147348 /* SDWebImageError.m in Sources */ = {isa = PBXBuildFile; fileRef = A2001AD110E1A035787ABC83C0DE287E /* SDWebImageError.m */; }; - 8A3BCFF83EB0F7B76C09EC9169F2046C /* SDImageCodersManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 816F7FA5CB06AE83BCCF8F2D9DC81C9D /* SDImageCodersManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8A9DFB8E2AB590F6A1C2E1628F854293 /* IQNSArray+Sort.swift in Sources */ = {isa = PBXBuildFile; fileRef = 39DC4E06BC0ED4D2504A136A26C5DB04 /* IQNSArray+Sort.swift */; }; - 8ACB6150ABD5A4BE4CDA42F23E090C9F /* IQKeyboardManager+Toolbar.swift in Sources */ = {isa = PBXBuildFile; fileRef = AED6A87E2B215FA24D3A10AE3CDB5A66 /* IQKeyboardManager+Toolbar.swift */; }; - 8AE15BE648BEEA0A98F2AC4AE497BB96 /* JXCategoryTitleImageCell.m in Sources */ = {isa = PBXBuildFile; fileRef = FCB33CD0B1C8C0AECCB4E5F57F1D7B70 /* JXCategoryTitleImageCell.m */; }; - 8B0B152593E3CCDD7456DD63125F38AB /* ESTabBarController-swift-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 7F99AFA0A337CE5AC46A0EA50E75F54B /* ESTabBarController-swift-umbrella.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8B61B6699C20384BE87F231E686F0A3F /* Map.swift in Sources */ = {isa = PBXBuildFile; fileRef = B7918D7DD907A7CD12E51714F3CD6F0B /* Map.swift */; }; - 8B7996264A46C83B41BED84333C707D4 /* ResponseSerialization.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9A09E8EEA631B765C5475928162D3E0E /* ResponseSerialization.swift */; }; - 8B7D57E3FCE49F2518B7AE0E6B5D2B96 /* SharedSequence+Concurrency.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3BCD9CA3645EBA0CEDD983EEA57ED59C /* SharedSequence+Concurrency.swift */; }; - 8BAD04052E210723CC24D737216D8BDD /* DDFontKit_Private-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = B3B800654DB5322B0AB621BC0738B576 /* DDFontKit_Private-umbrella.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8BB0EF73FD3F06EC6D81F58835A51761 /* SnapKit-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 4FD3363E6B8E7361817E4E8AC98441B9 /* SnapKit-umbrella.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8BF55823101A3DABEBCC4DBB679D6D69 /* ESTabBarController-swift-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = EB783203214870F14D65368D401491AD /* ESTabBarController-swift-dummy.m */; }; - 8C35B5BAA36F209375286B3C3D2F7103 /* SDAnimatedImagePlayer.m in Sources */ = {isa = PBXBuildFile; fileRef = 2FC18F93C01AACA7672DE739095818F1 /* SDAnimatedImagePlayer.m */; }; - 8C410A2ED4C48AE8304CB81EBBE58725 /* UIView+Responder.swift in Sources */ = {isa = PBXBuildFile; fileRef = B4B08E8DF539783850F0B381F29A3C1E /* UIView+Responder.swift */; }; - 8CCEA9CC39354864D59E41672513B5D1 /* Result+Alamofire.swift in Sources */ = {isa = PBXBuildFile; fileRef = E09AAEF8F18D76B513D39EB70092EC2A /* Result+Alamofire.swift */; }; - 8DA24D25E281BD8B9A695B37A48BDC43 /* DDBaseTableViewCell.h in Headers */ = {isa = PBXBuildFile; fileRef = F6E71155513FAFDC9B7A7F964F7610DC /* DDBaseTableViewCell.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8DE19A78CB22C3A938AA54381334F6B1 /* JXCategoryIndicatorLineView.m in Sources */ = {isa = PBXBuildFile; fileRef = E1A5FB9FF190E6A851E6D730E9469DAF /* JXCategoryIndicatorLineView.m */; }; - 8DEDBDD2B18903E314EA1EC8AAE046E3 /* ShareReplayScope.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7AB72F72A27E40AEAAB408444E25A2C /* ShareReplayScope.swift */; }; - 8E04134529985568DCFB8818BBBB7F5C /* UIEdgeInsets+Utils.swift in Sources */ = {isa = PBXBuildFile; fileRef = CE300473ABE766018DAFE36E0D7FC040 /* UIEdgeInsets+Utils.swift */; }; - 8E5256AFC173BF710216F67AA68F5CDB /* DDAF.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2CFD73BEEA8ED275838D5C27BB757E8E /* DDAF.swift */; }; - 8E8F09AD96271039CB19EDAF7F40D5C2 /* MJRefreshComponent.h in Headers */ = {isa = PBXBuildFile; fileRef = 6510371BC58C4A20489477A33BDB5841 /* MJRefreshComponent.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8E9422DF54BCC99CA32573ECA23B7DAC /* UISlider+Rx.swift in Sources */ = {isa = PBXBuildFile; fileRef = C40B3F97DFABB65D3BDD8F1E63E93000 /* UISlider+Rx.swift */; }; - 8EA86CB9B2613C3C2FFE3ABDA328AB81 /* GIFAnimatedImage.swift in Sources */ = {isa = PBXBuildFile; fileRef = D73EEE7C2379E83FFD87CCEB168AA111 /* GIFAnimatedImage.swift */; }; - 8EE2005703426DFB542B34D09AF24A80 /* SDImageIOAnimatedCoderInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = 2C86CF4D58B2DA925C65E7B37167B96D /* SDImageIOAnimatedCoderInternal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8EFDC9DF7190E1A3E455061B9AC342EF /* UINavigationItem+DDCategory.m in Sources */ = {isa = PBXBuildFile; fileRef = AB572BD743186A40A21A446CF8F5182A /* UINavigationItem+DDCategory.m */; }; - 8F02C462D2897D1954AB61E7965A2962 /* BRDatePickerView+BR.h in Headers */ = {isa = PBXBuildFile; fileRef = 453E2DBE50D1D69184A7D485305469B9 /* BRDatePickerView+BR.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8F21AA61AEAEE275B82C922F4CFEFC13 /* SDImageIOAnimatedCoder.h in Headers */ = {isa = PBXBuildFile; fileRef = 4A24ED1414823BE85A8393BED976F01E /* SDImageIOAnimatedCoder.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8FA98CB7E5B912CAB92BC78003150B48 /* ZLPhotoPreviewPopInteractiveTransition.swift in Sources */ = {isa = PBXBuildFile; fileRef = F0944352AE170B6ECF3A81E99CA195E0 /* ZLPhotoPreviewPopInteractiveTransition.swift */; }; - 8FC0C1F0C19221901FECC66026743D59 /* _Sandboxer-Header.h in Headers */ = {isa = PBXBuildFile; fileRef = 3C1D08FE3AE1495D7F3D28AAAC429658 /* _Sandboxer-Header.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8FFAEE85A670F82106FF69084BDC45DE /* BRDatePickerView.h in Headers */ = {isa = PBXBuildFile; fileRef = 16ECC0D3B40E75BBAF4C767C8E6723E2 /* BRDatePickerView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 903C2E7EE31983F144648843BB570C92 /* ZFLandscapeViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = 5EE0A8B1D2796D924AE795B2A9F3A58E /* ZFLandscapeViewController.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 90A692D45F5F2537EB0856B3169C97C4 /* RedirectHandler.swift in Sources */ = {isa = PBXBuildFile; fileRef = 00F6B846ADC5D2330E73109D2B295E0C /* RedirectHandler.swift */; }; - 90B15A331091D1C228BFC5F60D4E45F8 /* UIImageView+WebCache.m in Sources */ = {isa = PBXBuildFile; fileRef = ED3613DC7D54B4651DD6C5E90B0BAEE3 /* UIImageView+WebCache.m */; }; - 90C6480C4262B9CC1A61A3B7E437CCC5 /* SDDisplayLink.m in Sources */ = {isa = PBXBuildFile; fileRef = 06D8DBB89CCCB6D1ABC7E263B61428B8 /* SDDisplayLink.m */; }; - 90D5A68E1EF23552D670E47D3B23AE4F /* JXCategoryIndicatorBackgroundView.h in Headers */ = {isa = PBXBuildFile; fileRef = 16B6A2489CB5A950A2C801A2E5EAAAA7 /* JXCategoryIndicatorBackgroundView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 90FA25420B5A51D57DAA89E1CE8410C2 /* Maybe.swift in Sources */ = {isa = PBXBuildFile; fileRef = CD8CA33F60185113898F69628CE24689 /* Maybe.swift */; }; - 910F8466106459434C084A74EA003284 /* NetworkDetailModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9AB1BBD29E60E66C0FF01824EC0F1B75 /* NetworkDetailModel.swift */; }; - 9156E7759F3512A4E341F946FE503875 /* ConstraintViewDSL.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2E19F8EC5AEF8B6DA51F5B7C83E3CE84 /* ConstraintViewDSL.swift */; }; - 918DCF83A321043687D0EC792EA9B873 /* BehaviorRelay+Driver.swift in Sources */ = {isa = PBXBuildFile; fileRef = D5F7F12C30F26AB144E28C1B556E018C /* BehaviorRelay+Driver.swift */; }; - 9192B0E784D86E864323A0099D5DF9CD /* EKAttributes+PopBehavior.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7E7C7BDB15E7EF896BE8C842B8EB1267 /* EKAttributes+PopBehavior.swift */; }; - 91E7BBF8F1A4202B3E4781E312E2B3A0 /* JXCategoryViewAnimator.m in Sources */ = {isa = PBXBuildFile; fileRef = ABFB7361AA46167688BEEAED04D98165 /* JXCategoryViewAnimator.m */; }; - 91EB60E5A27B5776B25A13C1C6DCFE80 /* UITableViewCell+DDCategory.m in Sources */ = {isa = PBXBuildFile; fileRef = 6196488344B036441C1ACCAD3572102D /* UITableViewCell+DDCategory.m */; }; - 9293F1E68E695484F47C453B7A9D552A /* MemoryStorage.swift in Sources */ = {isa = PBXBuildFile; fileRef = A5BC6D46BCCA67E61F0FF9170157271B /* MemoryStorage.swift */; }; - 92B93FFA25205F6728C871EC199C940F /* JXCategoryTitleImageCellModel.h in Headers */ = {isa = PBXBuildFile; fileRef = C23B4CC24C808BA2FE10E907CED7274E /* JXCategoryTitleImageCellModel.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 92BAD4420B04D7F6A5243D5810D729BF /* EKPopUpMessage.swift in Sources */ = {isa = PBXBuildFile; fileRef = 21BBCAFF83655B6AF0AC2B68A4912950 /* EKPopUpMessage.swift */; }; - 92E6ABC8E89A3308335FC67F7ABD4373 /* ObserverType.swift in Sources */ = {isa = PBXBuildFile; fileRef = CCCBB9A42CB672C035BDA167AF14B5B5 /* ObserverType.swift */; }; - 92EFB720D893286C8BA11156EECEB7FA /* EKAttributes+Duration.swift in Sources */ = {isa = PBXBuildFile; fileRef = FA49F228B2A8A50D54DAA0F254ED6EDF /* EKAttributes+Duration.swift */; }; - 92F90BB8342AA192D7C08520F4CCF266 /* CachedResponseHandler.swift in Sources */ = {isa = PBXBuildFile; fileRef = E6A7B26DA7F5A86EC8032CEC6A9E77E7 /* CachedResponseHandler.swift */; }; - 9348C310A4D8EE0038C25AA32FF0B240 /* SDInternalMacros.m in Sources */ = {isa = PBXBuildFile; fileRef = 04D44FA3F3AEA836BF5EC0E7B3ED1F95 /* SDInternalMacros.m */; }; - 934A47F0CA3CE8D65B9C4547C263D0CF /* DDMAGeometry.h in Headers */ = {isa = PBXBuildFile; fileRef = FA55205F730C46C7C9851594C94BDDBA /* DDMAGeometry.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 93721C8F9CF4BDA2AB57C3967D748173 /* NSBundle+MJRefresh.h in Headers */ = {isa = PBXBuildFile; fileRef = 6112D3E42DED01ACD88076E8378F3A55 /* NSBundle+MJRefresh.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9377075FA4E0C7EFFD0E68C28235E9CC /* _ObjcLog.m in Sources */ = {isa = PBXBuildFile; fileRef = 50C5C27CC31F9C6E1F809EFA14E0389F /* _ObjcLog.m */; }; - 9382CEC3FAFA9B3E6F5C78B9663D9E48 /* RTLManager.m in Sources */ = {isa = PBXBuildFile; fileRef = BDAE12D9054CD6B28807605DF9C5BE14 /* RTLManager.m */; }; - 938AAACCB629CD676B449EE110185748 /* DDCollectionViewCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1109F32BC805E2C3BA9D879C4A0FC290 /* DDCollectionViewCell.swift */; }; - 93BEEA5D92D4F153A09A75627E2DB577 /* Bubble.swift in Sources */ = {isa = PBXBuildFile; fileRef = A501EDE665F3B45D381865C9C493DF5B /* Bubble.swift */; }; - 93D95C7F6691DED21F57289570648BA4 /* _OCLogModel.h in Headers */ = {isa = PBXBuildFile; fileRef = FB21874D716DEC43B48FA3B29DBBE1CD /* _OCLogModel.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 94BF8EDE56701865CFE361C3958AAB96 /* AtomicInt.swift in Sources */ = {isa = PBXBuildFile; fileRef = 93459829E01373BB373ADCAAD052BEAD /* AtomicInt.swift */; }; - 94C4A079FF6CABA7F1B809123E682CB2 /* ZFOrientationObserver.h in Headers */ = {isa = PBXBuildFile; fileRef = 0E50839580B51D0A7F3EF88B55109292 /* ZFOrientationObserver.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 95006AE7887F3F7366A3184B4BCBEA61 /* KFOptionsSetter.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0999442D076422FF5FD9C72F3D4FB4C1 /* KFOptionsSetter.swift */; }; - 951371DF78512514FEF71B4F6FD34EFD /* UIView+WebCacheOperation.m in Sources */ = {isa = PBXBuildFile; fileRef = 5DE8BFF7280523DD0C9FE7DFD987C2EF /* UIView+WebCacheOperation.m */; }; - 952521E8ED8F941A9A7EB66FC7470AEB /* WithUnretained.swift in Sources */ = {isa = PBXBuildFile; fileRef = 998B7DC9AD1ACB0D098B1AF8650B4F5B /* WithUnretained.swift */; }; - 95A2AC17D9936524C874ACAE4A6E4A1B /* RxNavigationControllerDelegateProxy.swift in Sources */ = {isa = PBXBuildFile; fileRef = 148515900189496EDD7809A61B7BF648 /* RxNavigationControllerDelegateProxy.swift */; }; - 95D6B375856547576214D45BAFD14C34 /* SwiftToast.swift in Sources */ = {isa = PBXBuildFile; fileRef = E50359508E777BAA53F15DB167631D0A /* SwiftToast.swift */; }; - 95F17E0FC83301E67165E1F90C5AA5A4 /* ESTabBarItemContainer.swift in Sources */ = {isa = PBXBuildFile; fileRef = D3BF524E03CC6BAB09AE4305C890EA90 /* ESTabBarItemContainer.swift */; }; - 9608E323C617DBB486D89685D7267DB4 /* UIButton+WebCache.h in Headers */ = {isa = PBXBuildFile; fileRef = 7999E95BF01AF4476DDCDA223B14858B /* UIButton+WebCache.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 96593336DA43172C39038DF4D2309D26 /* ImageDrawing.swift in Sources */ = {isa = PBXBuildFile; fileRef = F20DB9F526A3B38F836B3E6A8BA36A14 /* ImageDrawing.swift */; }; - 96E4B9E2601F91643C19484CB4FF061E /* MATraceReplayOverlay.m in Sources */ = {isa = PBXBuildFile; fileRef = 97D78D63595AB089A4E49483C09B0D2A /* MATraceReplayOverlay.m */; }; - 971245CD46BFE06B4FF838938725FE3D /* SDWebImageCacheKeyFilter.h in Headers */ = {isa = PBXBuildFile; fileRef = EBD3222B7D336BE82B68F5953A1BCE38 /* SDWebImageCacheKeyFilter.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9738274B0302F53ECB5756C1B66FF3B0 /* DDBaseScrollView.m in Sources */ = {isa = PBXBuildFile; fileRef = E22E8A76D086243D8CA403C704BB0BE0 /* DDBaseScrollView.m */; }; - 9773847629F2F105580593407D661685 /* JXCategoryIndicatorComponentView.h in Headers */ = {isa = PBXBuildFile; fileRef = B7B8AC8FD05227A7706C9924589F65E6 /* JXCategoryIndicatorComponentView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 97A514A9C5F3A5B31E044B8B141843FA /* DistinctUntilChanged.swift in Sources */ = {isa = PBXBuildFile; fileRef = E4FB5CA1CEDE760E2ED07D1BC1C1190B /* DistinctUntilChanged.swift */; }; - 97BDF23C8E9038148496525214A838D6 /* IQBarButtonItem.swift in Sources */ = {isa = PBXBuildFile; fileRef = AE9C1E086B2D42598E8B8BE83662A21F /* IQBarButtonItem.swift */; }; - 97C4019AD3BEEBDFBAF1F8451C665D54 /* ZFPlayerMediaPlayback.h in Headers */ = {isa = PBXBuildFile; fileRef = 6B17E2F113A6E90E920367154E70C153 /* ZFPlayerMediaPlayback.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 97F400C619BFC1039482038A255B2958 /* ConstraintOffsetTarget.swift in Sources */ = {isa = PBXBuildFile; fileRef = DF3C58CD8F4A0E9BE39F560C6F8C6E26 /* ConstraintOffsetTarget.swift */; }; - 982018F9943EA721B176DED187A3F4B4 /* Signal.swift in Sources */ = {isa = PBXBuildFile; fileRef = EDFC93A2CC3147B82AE5C610C7BF55EC /* Signal.swift */; }; - 98287415BE0154348AABC989BCC34F4C /* DDBaseView.m in Sources */ = {isa = PBXBuildFile; fileRef = 85B0C1487AD956814AD331EE8CE6EF61 /* DDBaseView.m */; }; - 983C31E06D6E4D7B9C87126A26D535E5 /* SDAnimatedImage.m in Sources */ = {isa = PBXBuildFile; fileRef = 6EECFF09F37816B4A63EB28C57EEA20D /* SDAnimatedImage.m */; }; - 9842B2D9C892C0A9E6B69A2AC78AA5F1 /* JXCategoryCollectionView.h in Headers */ = {isa = PBXBuildFile; fileRef = 212B9A2074CA3A4C569848F43F231422 /* JXCategoryCollectionView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 988C40F1AB05182AC264578BF19E6FD1 /* BRPickerViewMacro.h in Headers */ = {isa = PBXBuildFile; fileRef = 10945986B3096B766F703441354073F8 /* BRPickerViewMacro.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 99052A7FD46935C7F9A760467213583D /* EKRootViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 47E4F47DAF8ED76D1D3DD40F834B5561 /* EKRootViewController.swift */; }; - 997DB62F7C251C04E2548F73C945E9EE /* SwiftEntryKit-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 643414519A89EAE4317C40A868F404E9 /* SwiftEntryKit-dummy.m */; }; - 99EA19C8F294727AAAB343FF9966D33B /* NetworkDetailCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = F1C4BA59B9CA9DFCD4CBC4935612EC2C /* NetworkDetailCell.swift */; }; - 99EF30562A31AD676C542693E91F0EE7 /* SDImageGraphics.m in Sources */ = {isa = PBXBuildFile; fileRef = D4AF0664AAC67CB7A1B35A70B3172727 /* SDImageGraphics.m */; }; - 9A258A01E679FC91809CB0E4CEE2BEC4 /* UIColor+SDHexString.m in Sources */ = {isa = PBXBuildFile; fileRef = A40110B9A1BF795872CD8BD2F586694E /* UIColor+SDHexString.m */; }; - 9A82883587EA4E20F472A2B58B330666 /* DDViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 79296BD853BD4EEA3F52174AFFF855AE /* DDViewController.swift */; }; - 9ACCADABE04C5FBF041953A5CC27B8D5 /* SDImageHEICCoder.m in Sources */ = {isa = PBXBuildFile; fileRef = F8732CE75E642DFDA4054FD1DD67568E /* SDImageHEICCoder.m */; }; - 9B06B23C0DD30320D27A0AFF3523DD08 /* UIViewArray+QuickLayout.swift in Sources */ = {isa = PBXBuildFile; fileRef = C38DD323EA8183D3209A52A8D8BBC1CE /* UIViewArray+QuickLayout.swift */; }; - 9B09741472416487EE81F386B6C9355B /* UIImage+MultiFormat.m in Sources */ = {isa = PBXBuildFile; fileRef = 673B6BB98A487E167C18818F396FC9D8 /* UIImage+MultiFormat.m */; }; - 9B2A0D221237BE5ACCF087F2577E4A6B /* _ImageController.h in Headers */ = {isa = PBXBuildFile; fileRef = 3E0762EBF8C25BFB0F086BF361077748 /* _ImageController.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9B3BCA76FD7437094826D7E95B16BB22 /* Zip+Collection.swift in Sources */ = {isa = PBXBuildFile; fileRef = A9FB2A22CF5BD1874EF39F8331BCCE40 /* Zip+Collection.swift */; }; - 9B4A302B07B6D0AE92D729ABCB626933 /* ScheduledItemType.swift in Sources */ = {isa = PBXBuildFile; fileRef = D41911FE49D72F85B47E41BF1435D37A /* ScheduledItemType.swift */; }; - 9B5100395827615651D86B4C60B15EE3 /* NSImage+Compatibility.h in Headers */ = {isa = PBXBuildFile; fileRef = 4648A0D1ED95DE4B17517769FB215B82 /* NSImage+Compatibility.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9B56C88A1A26C2AF157005389DC79D89 /* UIColor+Utils.swift in Sources */ = {isa = PBXBuildFile; fileRef = F9951D0425BD3D33A7C46756E4CAFE39 /* UIColor+Utils.swift */; }; - 9B64F7DB394E2D8A41CDB463E4FDBDA3 /* AsSingle.swift in Sources */ = {isa = PBXBuildFile; fileRef = B92C87D9AD30A68082CCB41AAEA5A11E /* AsSingle.swift */; }; - 9B9F2655ADFEA6918AFBDDBD182E1D47 /* ConstraintView+Extensions.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0CB0CC96BF81BF49D09BF3BA2C7AB8B0 /* ConstraintView+Extensions.swift */; }; - 9BE4FDA4C69D90C76F06CBDEF1FF272F /* ZFPlayerConst.h in Headers */ = {isa = PBXBuildFile; fileRef = 4AC0F29BFF60BF9F976DD71663EDD63E /* ZFPlayerConst.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9CE0D080D988944F984ABF550840D22D /* _fishhook.h in Headers */ = {isa = PBXBuildFile; fileRef = 447B805272FC94BE355A3D40A48DA384 /* _fishhook.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9CF7F93C09CD223D8A4AEFDE6500448B /* IQKeyboardManagerConstantsInternal.swift in Sources */ = {isa = PBXBuildFile; fileRef = E68A5240587CF5A07DED9A11120E903F /* IQKeyboardManagerConstantsInternal.swift */; }; - 9D0F6CEE22A9CCC93C7CF6C523ABDD57 /* Zip+arity.swift in Sources */ = {isa = PBXBuildFile; fileRef = 954D25B016CCFBE79A6266751BB79BAA /* Zip+arity.swift */; }; - 9D1684073A7205C6904A608A11E6752A /* Buffer.swift in Sources */ = {isa = PBXBuildFile; fileRef = 475ADA123A583A0E2FD98B7971E817A1 /* Buffer.swift */; }; - 9D3057859C14AD080E8AD14C24840E27 /* UILabel+DDCategory.h in Headers */ = {isa = PBXBuildFile; fileRef = 451A5EAF2631D6E97ACE30D4709C2781 /* UILabel+DDCategory.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9DC90F2EFC4727920E1553241B68DFF1 /* SDWebImagePrefetcher.h in Headers */ = {isa = PBXBuildFile; fileRef = 0E724A096EBA576B4E63622329A63555 /* SDWebImagePrefetcher.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9DDBD070D8F28D3645E88F93FC7E98B6 /* MJRefresh-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = EA378D9D1C4E8CA1E806C8ED6989501B /* MJRefresh-dummy.m */; }; - 9E1FF64ECBEF9CA8C3A2B1B584716C2C /* SDImageAPNGCoder.m in Sources */ = {isa = PBXBuildFile; fileRef = A32BABF1610E9569E4FA9D49409BC712 /* SDImageAPNGCoder.m */; }; - 9E278CF7CCA7053B8B9F9599C33DC02B /* SDImageCachesManagerOperation.m in Sources */ = {isa = PBXBuildFile; fileRef = 1A1766BA82F9E8382C6A973E5B0E7693 /* SDImageCachesManagerOperation.m */; }; - 9E474548D6A0521350038A8213F06E0B /* LogViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = DF24C60F5B36A70A90D1EC4D2AA87D3E /* LogViewController.swift */; }; - 9EA9DCA38AE8140DAA4900C68F0EA575 /* SDGraphicsImageRenderer.h in Headers */ = {isa = PBXBuildFile; fileRef = 90F45B33ACF06D56A9730D0DF8358B09 /* SDGraphicsImageRenderer.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9ECF42D1324F716832C4CB78502B7FF4 /* JXCategoryTitleVerticalZoomCellModel.h in Headers */ = {isa = PBXBuildFile; fileRef = 1AD8ADA2385F1DD40A81D6F599FE25E3 /* JXCategoryTitleVerticalZoomCellModel.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9EF1E4C365CA76114EBD310FACC88668 /* _RXDelegateProxy.h in Headers */ = {isa = PBXBuildFile; fileRef = 16FA39C92B6A4348415CD601C0608B42 /* _RXDelegateProxy.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9F1A9C17629B0FED4F5BE452442F3B5E /* MATraceReplayOverlayRender.m in Sources */ = {isa = PBXBuildFile; fileRef = 9D45D3AF29E10D17B4B967254C63F1C0 /* MATraceReplayOverlayRender.m */; }; - 9F3385E2B8DCE658F07D586F04FB5CC9 /* ControlEvent+Signal.swift in Sources */ = {isa = PBXBuildFile; fileRef = 42B81410C918F98B4E4E060C860BDECA /* ControlEvent+Signal.swift */; }; - 9F77F23C82AD7A280997AB8CE1026694 /* IQKeyboardManager+Internal.swift in Sources */ = {isa = PBXBuildFile; fileRef = C1E67002E75D901B77A2D081AC86A2DC /* IQKeyboardManager+Internal.swift */; }; - 9F9210CD851E076E6C5C1963F3F7F0BD /* SDWebImageTransitionInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = 3C7207273CA8A574557ADB8A8446033C /* SDWebImageTransitionInternal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9FE3FCF5816BE354A387DA99CE64BB16 /* ZLAlbumListCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2374A1CCD906CF0E895948B0A065B503 /* ZLAlbumListCell.swift */; }; - A0753DDE7E6EE0EE31ADED266223E0A3 /* _FilePreviewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 502E1CC06F061B3AC8ECAAF92E1F086F /* _FilePreviewController.m */; }; - A07BA82EBAFD79669D9EF1118D658F0E /* UINavigationController+Rx.swift in Sources */ = {isa = PBXBuildFile; fileRef = 725B01B7807CDD8B370B15D874AC0D7B /* UINavigationController+Rx.swift */; }; - A0C1B45DA29A58D0BFF28129F0965A3E /* DelegateProxy.swift in Sources */ = {isa = PBXBuildFile; fileRef = D0C36B4656AE99D7E0E9CF95B780899D /* DelegateProxy.swift */; }; - A0D722F2C2E041757A96ABBE6EEF644A /* SDWebImageDownloader.m in Sources */ = {isa = PBXBuildFile; fileRef = A690F45E3DFFBCB5675B6F5FAB8E1C37 /* SDWebImageDownloader.m */; }; - A0F05798AA7269C371264DFD7BDB1904 /* IQKeyboardReturnKeyHandler.swift in Sources */ = {isa = PBXBuildFile; fileRef = 57F5E6CBBC73877D34DFC8B9606D5D7C /* IQKeyboardReturnKeyHandler.swift */; }; - A1355E1BBE3731F83CB38B9055E2372B /* JXCategoryDotCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 14273F123143D24A7722E7D9B42F8603 /* JXCategoryDotCell.m */; }; - A1540B6250A565E9F4FA071822F86C70 /* EKAttributes+Precedence.swift in Sources */ = {isa = PBXBuildFile; fileRef = C98DD0026D436E4DBF4A2DA31CEC8EDB /* EKAttributes+Precedence.swift */; }; - A15CDB022FC7EF5E9B8C06CBF5C3842D /* BRDatePickerView.m in Sources */ = {isa = PBXBuildFile; fileRef = 42353E88E89417466723F475751271F0 /* BRDatePickerView.m */; }; - A1949F2B9289F7954C77D3E23621727C /* SDImageAWebPCoder.m in Sources */ = {isa = PBXBuildFile; fileRef = C61DF32C7E74323F23FBEAEAFCE16F7A /* SDImageAWebPCoder.m */; }; - A252AF7657AE77B71C86CB9DD16C7ECD /* ZLBaseStickerView.swift in Sources */ = {isa = PBXBuildFile; fileRef = C14A9065C376B53FAEDDE650DFAA2F5D /* ZLBaseStickerView.swift */; }; - A254EEEE1080168B974C7A51EE1720FE /* _RXDelegateProxy.m in Sources */ = {isa = PBXBuildFile; fileRef = 617D278B10B45CE85063C8352C66C4E2 /* _RXDelegateProxy.m */; }; - A2594BB6D1B5A1C5F7652550BD4D5CFE /* SDImageFrame.m in Sources */ = {isa = PBXBuildFile; fileRef = BF86D357530F230AD7D4A8ED7488BEE8 /* SDImageFrame.m */; }; - A2595B37748D164CA5A93948236C44F5 /* Catch.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9010C0B16D55C689F1306730555946B1 /* Catch.swift */; }; - A2EF4A22909B4F00632D584DFC1AF84E /* JXCategoryImageCellModel.m in Sources */ = {isa = PBXBuildFile; fileRef = 30115739D9B44BC4F80115251FC946C6 /* JXCategoryImageCellModel.m */; }; - A2FDCF204E4F34A280D10E41A010743C /* ZFVolumeBrightnessView.m in Sources */ = {isa = PBXBuildFile; fileRef = D010E5A496AF63C78C7ACE66E20B7513 /* ZFVolumeBrightnessView.m */; }; - A326B1EA5844530C74FF5F61F99CC9A7 /* UILayoutSupport+Extensions.swift in Sources */ = {isa = PBXBuildFile; fileRef = 084E0C0D1AA5C124E978663C4990312C /* UILayoutSupport+Extensions.swift */; }; - A340546632D10905379CFF17E52381D8 /* UICollectionViewLayout+MJRefresh.m in Sources */ = {isa = PBXBuildFile; fileRef = DB7792D0387066948696DEAD7ED82CB2 /* UICollectionViewLayout+MJRefresh.m */; }; - A3601AF3EAD20C053801C1294F74BA88 /* Generate.swift in Sources */ = {isa = PBXBuildFile; fileRef = 78578AE5356AF9967CBD900B55267D21 /* Generate.swift */; }; - A3614B7735695DD47BD1BC18CC9610ED /* EKAttributes.swift in Sources */ = {isa = PBXBuildFile; fileRef = 52CA39718ADAECF44AFAB86B9740388A /* EKAttributes.swift */; }; - A3B1C5058E6D1A9BC138D3265F4914F6 /* SDWebImageError.h in Headers */ = {isa = PBXBuildFile; fileRef = EF75CEF2E047A487AA017F4B99490742 /* SDWebImageError.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A3F72276340E7867D40D991A1DD73B28 /* ObservableConvertibleType+Infallible.swift in Sources */ = {isa = PBXBuildFile; fileRef = B646E6D081BB83490007567156BE5B2A /* ObservableConvertibleType+Infallible.swift */; }; - A4232F59E1918C240232947792D51757 /* _ObjcLog.h in Headers */ = {isa = PBXBuildFile; fileRef = 7FFB61D0320EEADEFFCBC5791E6ABAC3 /* _ObjcLog.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A428F510C805EE7852E26A700DB60551 /* Reactive.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9649A5E88190295F040B7FDECC758A2D /* Reactive.swift */; }; - A4C1C8789AE369C9F147309726E1F59C /* ConstraintLayoutGuide+Extensions.swift in Sources */ = {isa = PBXBuildFile; fileRef = 39DAE5EEFD441E4D859F25E0EA7D002C /* ConstraintLayoutGuide+Extensions.swift */; }; - A4F5B4112A0567FBDEA6B6E386E9B413 /* DDCategory.h in Headers */ = {isa = PBXBuildFile; fileRef = E296FBA6F539F9A0A0AE37FE624E190F /* DDCategory.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A5476425D3C5D6705F6FBD0E515FCD7A /* DriveRouteCustomAnnotationView.h in Headers */ = {isa = PBXBuildFile; fileRef = 2972545CEC4F4F9BEA12E5A7B532AC29 /* DriveRouteCustomAnnotationView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A5821D2212C003710A5C38D9664B78C3 /* DDAutoUIKit_Private-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 119866CBFF9545D367816FAFC89A011E /* DDAutoUIKit_Private-umbrella.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A5ADCEB47AD35B2837432D89A38F1EB3 /* JXCategoryTitleImageView.h in Headers */ = {isa = PBXBuildFile; fileRef = 13B1CD4319F8067CF9F913BC73920FBA /* JXCategoryTitleImageView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A5DF3BEAD02F2529DDA2F302CECD3AC5 /* MJRefreshConst.h in Headers */ = {isa = PBXBuildFile; fileRef = C677FED4C56D6EAAE5FCD8318AE970CE /* MJRefreshConst.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A5FBC4300B4ABFAD6D946894FFF20CE1 /* JXCategoryIndicatorTriangleView.m in Sources */ = {isa = PBXBuildFile; fileRef = 779AAA7B8EDB56F30BE69CCAAF6E993C /* JXCategoryIndicatorTriangleView.m */; }; - A633C2F82C4975DD22E150A795CD00DD /* IQUITextFieldView+Additions.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2880E3EB36904501AAA23AD6ADFD2D31 /* IQUITextFieldView+Additions.swift */; }; - A661A54FB0BE0E81281BDCD7009CA8B4 /* PriorityQueue.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2ED304FD354A46BBB0357C259A43DA69 /* PriorityQueue.swift */; }; - A6996D9D0B7D8EA7BB48909BB3574C7F /* ScheduledItem.swift in Sources */ = {isa = PBXBuildFile; fileRef = EF132529F5A36EC695323C8B66A3FC9A /* ScheduledItem.swift */; }; - A69BD642F651597A508BFFC52465D14F /* UIRefreshControl+Rx.swift in Sources */ = {isa = PBXBuildFile; fileRef = 33FB6BBD6577CE8AA75501DE98096B43 /* UIRefreshControl+Rx.swift */; }; - A6EAC1E0ACC363F33EE2B1D9A908EB9D /* UIColor+JXAdd.m in Sources */ = {isa = PBXBuildFile; fileRef = FCACFF4ACFBAD5C14E11052A48CA179B /* UIColor+JXAdd.m */; }; - A71B9809FA82EE0CE142382FD6162BAB /* SDWebImageDefine.h in Headers */ = {isa = PBXBuildFile; fileRef = 764AAD31E565E636988109B6534973BA /* SDWebImageDefine.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A7395AD90CE7874072EC370C8AE32796 /* CocoaDebugTool.h in Headers */ = {isa = PBXBuildFile; fileRef = A52432AD29A52645680DC89BEEDCDBCE /* CocoaDebugTool.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A7C1EC0054ECE0EF2F2CB1B561C23590 /* SDImageCoder.m in Sources */ = {isa = PBXBuildFile; fileRef = 04BF5EC02288663410F5581E5223C463 /* SDImageCoder.m */; }; - A7E0CE992F5E28A78FF7705F4AA95F1C /* _Sandboxer.m in Sources */ = {isa = PBXBuildFile; fileRef = 1C93C2444CC32B62A39EB8CA0422289E /* _Sandboxer.m */; }; - A800CDAB64BB49B835120199FDDF7EE9 /* ZLThumbnailViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 11B45A11E7F75B40C1F34E95E1461E0F /* ZLThumbnailViewController.swift */; }; - A8046890340F247D5EF036A8C232981C /* MKAnnotationView+WebCache.h in Headers */ = {isa = PBXBuildFile; fileRef = 893799C0DA5C0059EE0027ECA794AD31 /* MKAnnotationView+WebCache.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A828254620582CC1AC5D705BC77294D2 /* SDImageIOAnimatedCoder.m in Sources */ = {isa = PBXBuildFile; fileRef = A0CE6B496041CC1737E30C1BC721623A /* SDImageIOAnimatedCoder.m */; }; - A82F0D4FB1D81AFA125ED8972A4CC3A0 /* MJRefreshTrailer.h in Headers */ = {isa = PBXBuildFile; fileRef = DBA3A09EB66F076AAEA3E23DB232135D /* MJRefreshTrailer.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A9287B485E49EFFB8DE08945AECF14D8 /* RxTarget.swift in Sources */ = {isa = PBXBuildFile; fileRef = FE1278D59079F2DDAF577F7B69FC8AF7 /* RxTarget.swift */; }; - A9593306999952CA919A4DDE82EC6C3E /* DDControlsKit_Private-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 010558D83A290AACCE24864BCDCB4C80 /* DDControlsKit_Private-dummy.m */; }; - A9D65D53B84C8810A7BA7B4C6F1905EF /* Indicator.swift in Sources */ = {isa = PBXBuildFile; fileRef = F211CF01C093A901789755B683A93957 /* Indicator.swift */; }; - AA0B700D7499FDD27E65E53F8FD2DEBE /* QLUtils.swift in Sources */ = {isa = PBXBuildFile; fileRef = CDAC41E06424EF48F0EFAB166FEA951A /* QLUtils.swift */; }; - AA1BF33AE40D81CD7DD6D75696866120 /* DDBaseButton.h in Headers */ = {isa = PBXBuildFile; fileRef = 127E8B906D974CF2BA3B2E98BAB892BD /* DDBaseButton.h */; settings = {ATTRIBUTES = (Project, ); }; }; - AA624D3EE03B4A895DC1FFE446ABCC0D /* RxTableViewReactiveArrayDataSource.swift in Sources */ = {isa = PBXBuildFile; fileRef = AE873D85A0C4BBF58400280E4701468B /* RxTableViewReactiveArrayDataSource.swift */; }; - AA9FB4EF80EFCFBD140609BC7CA0711A /* Error.swift in Sources */ = {isa = PBXBuildFile; fileRef = 986A7DC99C54F52357042B41325AC88B /* Error.swift */; }; - AAA51B9D97A6385BFCD0BE040F9695E2 /* StringEncoding+Alamofire.swift in Sources */ = {isa = PBXBuildFile; fileRef = 08425F2E3CB26EB19960F2FA768C618C /* StringEncoding+Alamofire.swift */; }; - AAC304321AC76D2C680F473FA3A23C12 /* SDImageAssetManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 145ECAB1E3FA265801C648EB59D56635 /* SDImageAssetManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - AAE47673FBBFDAC8C28BC40A786F9B73 /* ZLPhotoPreviewAnimatedTransition.swift in Sources */ = {isa = PBXBuildFile; fileRef = DA38EEE0BA035A6B89855CE8BD5383FA /* ZLPhotoPreviewAnimatedTransition.swift */; }; - AB0A7FC1637EC80FF292A7497915811D /* RequestInterceptor.swift in Sources */ = {isa = PBXBuildFile; fileRef = E76D3297A0F1D7A730B42AAE78DBD430 /* RequestInterceptor.swift */; }; - ABF58857A9ED236CD5B387FF0C56FFC0 /* NSBundle+MJRefresh.m in Sources */ = {isa = PBXBuildFile; fileRef = BDBD7BF6C253733F8B7C3FBC7F23EDAB /* NSBundle+MJRefresh.m */; }; - AC0EEED07559E6C0F1C796B3B139F336 /* Source.swift in Sources */ = {isa = PBXBuildFile; fileRef = 73AFC3B47EC25DF0EAA85A49EF5EFD69 /* Source.swift */; }; - AC128BF52E4D00EFC523B3779B9B7FB6 /* MJRefreshStateTrailer.h in Headers */ = {isa = PBXBuildFile; fileRef = 9E7BDBBC8786EDA06674A48B00E8CCA6 /* MJRefreshStateTrailer.h */; settings = {ATTRIBUTES = (Project, ); }; }; - AC5D61774CD2638768862FD2934B6027 /* MATraceReplayOverlayRender.h in Headers */ = {isa = PBXBuildFile; fileRef = FC81838631B8DB78DD8D13C05BF4C611 /* MATraceReplayOverlayRender.h */; settings = {ATTRIBUTES = (Project, ); }; }; - AC61D8819C6042B0BAACC084D4341E33 /* CALayer+DDCategory.h in Headers */ = {isa = PBXBuildFile; fileRef = 543AEE4B25BDB69D6D5AE97D07FCC5A5 /* CALayer+DDCategory.h */; settings = {ATTRIBUTES = (Project, ); }; }; - ACE0BD363363C792B176AAFF495B0369 /* _RXObjCRuntime.h in Headers */ = {isa = PBXBuildFile; fileRef = 90D00F696B4E371E62DDBE72F570EA51 /* _RXObjCRuntime.h */; settings = {ATTRIBUTES = (Project, ); }; }; - AD2D8BB58CB2F0FF6423A016D14516F5 /* NSData+ImageContentType.h in Headers */ = {isa = PBXBuildFile; fileRef = 953328EEC08BB194BB64FF55A8C9730F /* NSData+ImageContentType.h */; settings = {ATTRIBUTES = (Project, ); }; }; - AD428E45B5793B370BC9084A07D2BDB5 /* UIDatePicker+Rx.swift in Sources */ = {isa = PBXBuildFile; fileRef = 73E04CB7ACA8FC44CA7D192024840B45 /* UIDatePicker+Rx.swift */; }; - AD447CCAB26B6318818D9C398D8F5FCE /* Merge.swift in Sources */ = {isa = PBXBuildFile; fileRef = B22DD25709192E2D98120B14CB5B89DF /* Merge.swift */; }; - ADA26D9BD8D714E1B3F6E424BB94E6B7 /* Bag.swift in Sources */ = {isa = PBXBuildFile; fileRef = 264E9D4606CB7E89815CB6C06ADF44CB /* Bag.swift */; }; - AE072C1AD51CA694876EB01C928263B2 /* ImageDownloaderDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3220E09C10AAE1A04BCEEEF41907571C /* ImageDownloaderDelegate.swift */; }; - AE365C68AE8907D1712EAC3A9E9363EC /* ImageView+Kingfisher.swift in Sources */ = {isa = PBXBuildFile; fileRef = FB2E873760448889F66931AB26A20359 /* ImageView+Kingfisher.swift */; }; - AEE9C12D940A4E186F0A56F3B5C6CA8A /* UIImageView+DDCategory.h in Headers */ = {isa = PBXBuildFile; fileRef = 0092E8726D12DE5B10C858746DEE3A77 /* UIImageView+DDCategory.h */; settings = {ATTRIBUTES = (Project, ); }; }; - AF02F5C6B6D6FA14A017F65611E3974A /* SDImageAWebPCoder.h in Headers */ = {isa = PBXBuildFile; fileRef = 88CC08F7752271DE21381EF0512D9E0F /* SDImageAWebPCoder.h */; settings = {ATTRIBUTES = (Project, ); }; }; - AF1850793335D7411B7CA119CCFDF776 /* SDWebImagePrefetcher.m in Sources */ = {isa = PBXBuildFile; fileRef = BD26644BD275EF178E75CF5E94DC5C21 /* SDWebImagePrefetcher.m */; }; - AF5EEFE6005E0DE11ACE6DAF7C97A248 /* UIPickerView+Rx.swift in Sources */ = {isa = PBXBuildFile; fileRef = DA6ABCF9ABD131742ABDA6E77E905C13 /* UIPickerView+Rx.swift */; }; - AF91B100F4B4D65B92BF8CA590B2005F /* WindowHelper.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9A217BE48113422F8DC53DA8B6EDD31A /* WindowHelper.swift */; }; - AFE462A27C50428CA433CD3254C90863 /* SDImageCoderHelper.m in Sources */ = {isa = PBXBuildFile; fileRef = 8F9C99DBE77AFE4BFD5CC7EBB322F385 /* SDImageCoderHelper.m */; }; - B04B2B65E995F882AB75E0609D19306C /* UIView+Shadow.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6B3996501AD3516C346CBA551CF762B0 /* UIView+Shadow.swift */; }; - B10E4F3871A53CAA6B9DE3D77091E718 /* EKAttributes+HapticFeedback.swift in Sources */ = {isa = PBXBuildFile; fileRef = C87B4B55D47B64912DAC6CA6B0FBC916 /* EKAttributes+HapticFeedback.swift */; }; - B1104525F66A74BF581940CC8EBD4605 /* DDTimerManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 1F00AA9988921EF293D7B70ADB110CC0 /* DDTimerManager.m */; }; - B1466F2AF4C8C5D9668D912F5716064A /* UIImage+MultiFormat.h in Headers */ = {isa = PBXBuildFile; fileRef = 68D030E1DDCD8D681BFB016CF6B1614E /* UIImage+MultiFormat.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B1793F1388223AC4F7823353845D5A80 /* DDButton.swift in Sources */ = {isa = PBXBuildFile; fileRef = DE5B8EF20C08981C4AE6825720C8C7EC /* DDButton.swift */; }; - B1A7FCCDF2F76FD799074AFEF13F2C43 /* NSSlider+Rx.swift in Sources */ = {isa = PBXBuildFile; fileRef = B236E181BDA27AAFC45C223C37833347 /* NSSlider+Rx.swift */; }; - B1EA853A8923944BC03FA374C60C8D2A /* InvocableScheduledItem.swift in Sources */ = {isa = PBXBuildFile; fileRef = B1D1F3D885BBC55F4F0BAE427568026A /* InvocableScheduledItem.swift */; }; - B21EF964ACC6CBCD4E5D0D766A71E9DE /* DDColorKit_Private-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 7B5C9266030EDD7269A19B9B2861140E /* DDColorKit_Private-umbrella.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B2668CA32A5C99F456F4CDEBD1357815 /* AsyncLock.swift in Sources */ = {isa = PBXBuildFile; fileRef = 39C862DAE5C1521BEA4A11E19BEA7035 /* AsyncLock.swift */; }; - B2851C902C2C372F18387C2B39AA47C1 /* CocoaDebug+Extensions.swift in Sources */ = {isa = PBXBuildFile; fileRef = B91F867EAC669E220BC2F9AB2D7DCB20 /* CocoaDebug+Extensions.swift */; }; - B2B76536940F9085012DCFEB05EA63B9 /* ImageBinder.swift in Sources */ = {isa = PBXBuildFile; fileRef = AC272ADD01FE4B3D18880B8F07C02100 /* ImageBinder.swift */; }; - B2F00FA6A845D79D514C907870345041 /* ZLAdjustSlider.swift in Sources */ = {isa = PBXBuildFile; fileRef = C37F753156AAD77276F79A96EA0B168A /* ZLAdjustSlider.swift */; }; - B315A21471DC78A45CA5249A9EF6EF85 /* AuthenticationInterceptor.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5D19165F3D9C941F56C6C01006738953 /* AuthenticationInterceptor.swift */; }; - B31E568BFBD31B62161381E6E8D0BEB1 /* DDCategoryKit_Private-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = CEE738615B2EE401B9D22BDD2FDE075E /* DDCategoryKit_Private-umbrella.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B337891246C2848ABC1945BA4D95817E /* _ImageController.m in Sources */ = {isa = PBXBuildFile; fileRef = 399ED92C88410A23885C4BF0996F9140 /* _ImageController.m */; }; - B397517CB7C73B7810C551B10991636B /* KingfisherOptionsInfo.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0647560CDEAF712BBF48C04E6A50395F /* KingfisherOptionsInfo.swift */; }; - B3BCB6762F05E6CE8F5DF3A605730B6C /* SDWebImageDownloaderResponseModifier.h in Headers */ = {isa = PBXBuildFile; fileRef = 5761A0FA1E40B161891356C84E8251D7 /* SDWebImageDownloaderResponseModifier.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B3BD944BFF9FBD5F1638D4FA684DFC9D /* DDColorKit_Private-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 0FB88FEE804085AE4E892AF3189B178F /* DDColorKit_Private-dummy.m */; }; - B3D357841FDA256DD78B84471E009F1D /* DDMATrackManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 74AF63C10ED0BCE3F466B17EF4BFA791 /* DDMATrackManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B3EAFA9C2474200977C0CD110CA0158A /* UITextView+DDCategory.m in Sources */ = {isa = PBXBuildFile; fileRef = 517FF0E71F768EBB97DE22D73FF7855B /* UITextView+DDCategory.m */; }; - B3F8D02D6F81E468340ADA0561C2990B /* _HttpDatasource.m in Sources */ = {isa = PBXBuildFile; fileRef = 76E9631B3799E12666172D4E285EDAB4 /* _HttpDatasource.m */; }; - B4093EE96AA888E2B1609715B1CAE585 /* ZLGeneralDefine.swift in Sources */ = {isa = PBXBuildFile; fileRef = EEF5122C98DF2F5BB902AD9D35ED1EF0 /* ZLGeneralDefine.swift */; }; - B410A7FFCF6A4F1FC0160F22E919B009 /* RxCocoa-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = F2B4F44838B9E85FF7E60AEFEDC69AF9 /* RxCocoa-umbrella.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B43B1D85F1DF038DB7D01DFAF12D48A0 /* NetworkDetailViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0A6993B3BDBA3881EDAC1363FDBF00CA /* NetworkDetailViewController.swift */; }; - B450462CA20B3A8EE7F08F1575FBD714 /* MJRefreshAutoNormalFooter.h in Headers */ = {isa = PBXBuildFile; fileRef = 3C084AB2C49E63F8A0A7F75F6923C9A3 /* MJRefreshAutoNormalFooter.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B4527D6F585156B3603D05329436D4E0 /* SDWebImageOperation.m in Sources */ = {isa = PBXBuildFile; fileRef = 985BCEDB6FF13F6DE08FCE01156F0173 /* SDWebImageOperation.m */; }; - B460A9A103E7954D19D481B77F87F83E /* JXCategoryIndicatorParamsModel.m in Sources */ = {isa = PBXBuildFile; fileRef = 9E0391D90377F07B8EDDE30561E44315 /* JXCategoryIndicatorParamsModel.m */; }; - B4E540E0998D38BEA54DE098FDED09A4 /* DDMAMapView.h in Headers */ = {isa = PBXBuildFile; fileRef = BB9373E1CE7B9F0407534CC6C2CCE78C /* DDMAMapView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B4F5741B73D531E1ACF070C785EC6613 /* ZFPlayerNotification.h in Headers */ = {isa = PBXBuildFile; fileRef = 5B26E7ABEE4266E8CE3B3F5F405B33CD /* ZFPlayerNotification.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B4FE3233189E681459E6FAFE1A656449 /* EntryAppearanceDescriptor.swift in Sources */ = {isa = PBXBuildFile; fileRef = AA9A9B8E1E9CB6B0E11DD5E8543E1438 /* EntryAppearanceDescriptor.swift */; }; - B5269B62215B96500B9620B997F378F4 /* MJRefreshHeader.h in Headers */ = {isa = PBXBuildFile; fileRef = 36E8EA2555C5D3F0E54974CE64426B26 /* MJRefreshHeader.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B53F9C80DFE371236697EE4CF0CBB918 /* UIImageView+DDWebCache.h in Headers */ = {isa = PBXBuildFile; fileRef = 539B59EA53D5126EA9608FE403169FB5 /* UIImageView+DDWebCache.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B55D49CD10FA31F1E6F92E225D821BB2 /* JXCategoryImageCellModel.h in Headers */ = {isa = PBXBuildFile; fileRef = 4EE5A847C0EEF4327C5B431761A95008 /* JXCategoryImageCellModel.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B5FA1092BF1D816BB9A7BA06EB64BFA4 /* EKProperty.swift in Sources */ = {isa = PBXBuildFile; fileRef = A2B7FE87DFE4FDE1028690C74EA3A5FB /* EKProperty.swift */; }; - B611198D9692C8B6D4970591AED83362 /* MJRefreshBackStateFooter.h in Headers */ = {isa = PBXBuildFile; fileRef = 7B91697E60F6039F0982CD3C16528F9D /* MJRefreshBackStateFooter.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B61A05B07D76CBBC87C664B2D964A5C3 /* Notifications.swift in Sources */ = {isa = PBXBuildFile; fileRef = 18AA3DD7D8E41F447D4BD4E58668DFFB /* Notifications.swift */; }; - B659FB406C404DBBAE4A648BAE9BC77D /* ParameterEncoding.swift in Sources */ = {isa = PBXBuildFile; fileRef = 789607F19987B7D812F6C28CF0A9F53E /* ParameterEncoding.swift */; }; - B66389A11F64F80F5CBA50E6E8FEE348 /* ParameterEncoder.swift in Sources */ = {isa = PBXBuildFile; fileRef = F726C2E411CA5EEC58103B771F31DB76 /* ParameterEncoder.swift */; }; - B685A48A68161C48CABD789A8E145736 /* UICollectionView+DDCategory.m in Sources */ = {isa = PBXBuildFile; fileRef = EC8CE20645932AF188D62387B5F839DB /* UICollectionView+DDCategory.m */; }; - B6C34704CDCA94C415691E9D5A7DBC45 /* ConstraintMakerEditable.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9AB28D357EE656C30C3151FE6335D9C3 /* ConstraintMakerEditable.swift */; }; - B73678A0D6DC52A94F163D0C65B07B56 /* _DeviceUtil+Constant.h in Headers */ = {isa = PBXBuildFile; fileRef = A1A7847D5347447FDCFA0D19DF2A08F5 /* _DeviceUtil+Constant.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B7551F7AE4DFD9D8BAF5DF408EE11783 /* SDAnimatedImagePlayer.h in Headers */ = {isa = PBXBuildFile; fileRef = 837C5E68069C97F169193F6B9019A23C /* SDAnimatedImagePlayer.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B77657E559F9F982B8A41880869F0847 /* ZFIJKPlayerManager.m in Sources */ = {isa = PBXBuildFile; fileRef = B58B6795B2837386D36D01C304554ADB /* ZFIJKPlayerManager.m */; }; - B791542990CE08B57A3292ED05F6DB74 /* DDBaseImage.m in Sources */ = {isa = PBXBuildFile; fileRef = B602D0318BAC325280725C4C565B7531 /* DDBaseImage.m */; }; - B7ED93C0661C6395D434C8728CA57665 /* MJRefreshBackGifFooter.h in Headers */ = {isa = PBXBuildFile; fileRef = 7B20423DA6601151401A579272B5831E /* MJRefreshBackGifFooter.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B85DF1C79A36A4C5AD0388D3C8352B07 /* NSMutableParagraphStyle+DDCategory.h in Headers */ = {isa = PBXBuildFile; fileRef = 0A934031A18FBE46D8BEE3E41360F917 /* NSMutableParagraphStyle+DDCategory.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B86E3CF706D0A8F5D2CBBEDFC109587F /* Result.swift in Sources */ = {isa = PBXBuildFile; fileRef = 12D3DCB0B672BF4B3DCFE638A28A65FF /* Result.swift */; }; - B89BC37A7EF9653B4E70A8386786F5E5 /* SDAnimatedImage.h in Headers */ = {isa = PBXBuildFile; fileRef = 95265A80C629B285897094F95D9FDF2E /* SDAnimatedImage.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B8A6D72F39FE58ACFE28E3C888966365 /* SDImageGIFCoder.h in Headers */ = {isa = PBXBuildFile; fileRef = B6CE48966C61C5A8AD4B5F9042E15249 /* SDImageGIFCoder.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B8E2D20AC3123CD07ABBDC96C0FBEA9A /* JXCategoryIndicatorBackgroundView.m in Sources */ = {isa = PBXBuildFile; fileRef = A1372B6FD4992423C989D048B7B254D7 /* JXCategoryIndicatorBackgroundView.m */; }; - B8E9A4E2E8BB5D2A298FB1C56696CF1C /* _HttpModel.h in Headers */ = {isa = PBXBuildFile; fileRef = 6A95EE45C8CD01C21E8EDE44C1558F18 /* _HttpModel.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B92545F4D14B8516B18AC2B28CE8F769 /* ImagePrefetcher.swift in Sources */ = {isa = PBXBuildFile; fileRef = 771BDB819381B0B674CE810430D642CA /* ImagePrefetcher.swift */; }; - B9339C5232FA751530693C26C023E2BC /* NSTextField+Rx.swift in Sources */ = {isa = PBXBuildFile; fileRef = 540E48281419616058855EFACAE5C74A /* NSTextField+Rx.swift */; }; - B990FA20B3F369B224D4B96ABB4045E4 /* BRStringPickerView.h in Headers */ = {isa = PBXBuildFile; fileRef = F1C8E7D61CCAA883DF2D0D7559C9A773 /* BRStringPickerView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B9910A2F6B82398D9311F4EB38729DF0 /* JXCategoryIndicatorComponentView.m in Sources */ = {isa = PBXBuildFile; fileRef = 25AF0436F289FF57323A476C034B9BFF /* JXCategoryIndicatorComponentView.m */; }; - B9FED8E7B04C74F084D8156BD8AA93DA /* DDMALocationManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 500B2D97BC6E479FA493016E92B11CE4 /* DDMALocationManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 001D1616C8940B8F237BAF4B3842CCF7 /* EKFormMessageView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 947B736C6302AA3B25A79C5AEE16F940 /* EKFormMessageView.swift */; }; + 0028AB23BD985EFD09ECA44A848AA90E /* EntryCachingHeuristic.swift in Sources */ = {isa = PBXBuildFile; fileRef = 62C1FEB9477C1BA5993EA87E329D88F2 /* EntryCachingHeuristic.swift */; }; + 003918D36A5765343F1FAB5CD53160AB /* ObserverType.swift in Sources */ = {isa = PBXBuildFile; fileRef = F803298370B7E0F98FA20AC9E3F1630E /* ObserverType.swift */; }; + 00624B396C2A2E0E60063640719AA457 /* LockOwnerType.swift in Sources */ = {isa = PBXBuildFile; fileRef = 16DAE2405AA7292247B80C9B21D719D7 /* LockOwnerType.swift */; }; + 00E617A5A3488D348913461872C1B110 /* ZFKVOController.m in Sources */ = {isa = PBXBuildFile; fileRef = CB3D7D33F6851AEC5A3A2DC1AE7CBA7E /* ZFKVOController.m */; }; + 013BFA329ACD302E4E8CFCC4904E4F0C /* _BacktraceLogger.m in Sources */ = {isa = PBXBuildFile; fileRef = A5F19476E2181D453018ACC203C152C3 /* _BacktraceLogger.m */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; + 0184836F68D559B44CF2305521C97B44 /* ZLTextStickerView.swift in Sources */ = {isa = PBXBuildFile; fileRef = E3BE15B5AF54608AC9FDBD936D1CD507 /* ZLTextStickerView.swift */; }; + 0195B164DD9FA0DAA663F438EB8B0CA5 /* UIImage+MemoryCacheCost.h in Headers */ = {isa = PBXBuildFile; fileRef = 4A67985DE92DF6D243ED92B69714634C /* UIImage+MemoryCacheCost.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 01B1F679DB9C17B48EF0AEDA9DB1F6BC /* SDImageLoadersManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 2FB5AED4E0E34C321B6B0FC045FB50E1 /* SDImageLoadersManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 01E07D16FE7B8B5B61135434E43C3D3D /* SDWebImageCacheSerializer.m in Sources */ = {isa = PBXBuildFile; fileRef = 0B236A480C1858B1E73C3BFB7F0D5E8B /* SDWebImageCacheSerializer.m */; }; + 01E69586FB0238A5ADBA53DE1F040D74 /* StartWith.swift in Sources */ = {isa = PBXBuildFile; fileRef = D08D1D68CE6D478AB9A9ED64A9CCD779 /* StartWith.swift */; }; + 01EE603EA56A541E67C41C4667ADA908 /* _CanonicalRequest.h in Headers */ = {isa = PBXBuildFile; fileRef = 71965EEE4DDC125CD5C4A68CF9CD0E01 /* _CanonicalRequest.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 024AA98B00121D9667D1C777C1D71DE9 /* ConstraintInsets.swift in Sources */ = {isa = PBXBuildFile; fileRef = 54FA37AC1D0BF92297C6F1692389F1D6 /* ConstraintInsets.swift */; }; + 02534371564A8DCB2D8F5CF4FEBD1413 /* NSBundle+BRPickerView.h in Headers */ = {isa = PBXBuildFile; fileRef = 996660F3AEBFE9B0C55581213B9E8EFE /* NSBundle+BRPickerView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 02822AA5CBC58141D74D1F0EB044D7D4 /* Skip.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4EEC6C121265DD23E5F6E56085E1C090 /* Skip.swift */; }; + 03F9201B022B6B8F4AECD14F7359FC32 /* ZLEnlargeButton.swift in Sources */ = {isa = PBXBuildFile; fileRef = 17EB3E1E4C05BE5D30ED569F9A951451 /* ZLEnlargeButton.swift */; }; + 041C0B9F468DAB0FAAB76072B1F8281D /* InfiniteSequence.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38D1FFEB335AA2518A0C759264939B18 /* InfiniteSequence.swift */; }; + 0465EB835860F2D7825A48079A713127 /* ConstraintMakerExtendable.swift in Sources */ = {isa = PBXBuildFile; fileRef = 47BED3AE61817BCA27A064BA9FE3D502 /* ConstraintMakerExtendable.swift */; }; + 04AAA5B3682FAC9D09283EA52E01E962 /* CocoaDebugDeviceInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = 9D68874A644FA29FB42E9E2F120E3CBC /* CocoaDebugDeviceInfo.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 04AE3CA3907CB4BC8B56B0CA13EB1203 /* DDWebImageKit_Private-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 8DD3128B1932922A36D56F6D19CAE4BC /* DDWebImageKit_Private-umbrella.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 05270833268494583D6920074FCE2CBD /* ConstraintAttributes.swift in Sources */ = {isa = PBXBuildFile; fileRef = 999C613B204ECE074D08C527DD46E092 /* ConstraintAttributes.swift */; }; + 05AA761B3AEA607E904EFA7843437904 /* SDDeviceHelper.m in Sources */ = {isa = PBXBuildFile; fileRef = 91C0BA21D939F381DEA0FA737166CA33 /* SDDeviceHelper.m */; }; + 05BABBCAC0970F62A2945DF891C9DC9B /* ZLFetchImageOperation.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5BA83150AFAB94445D85A02CD913530E /* ZLFetchImageOperation.swift */; }; + 05D26D0469B15DF8F6AFB05EF8B22712 /* SDDisplayLink.h in Headers */ = {isa = PBXBuildFile; fileRef = F6F5D4F8E2A06285A391FA80DCBBB9DC /* SDDisplayLink.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 05E7F2B03F14E6348730074E6087725C /* _CrashModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4CD0705B92F63E54791C683AE123B70C /* _CrashModel.swift */; }; + 0627923D9D4E389A438542032987B77C /* SDWebImageDownloaderOperation.m in Sources */ = {isa = PBXBuildFile; fileRef = 71A4BE9E17926AC2D674F378E2A77BEE /* SDWebImageDownloaderOperation.m */; }; + 068351ADEAB1D821EE0A637D05051647 /* Completable.swift in Sources */ = {isa = PBXBuildFile; fileRef = FCA5408D0A6193C4CDFD7E4F370FD8DD /* Completable.swift */; }; + 06A2696A1E6E483E9FC0FE492178EFE7 /* SessionDataTask.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8890E0B2494937CE51C86945F3F6F962 /* SessionDataTask.swift */; }; + 06C5E365B6D8F2297DE16A7426FD6A2D /* NSObject+CocoaDebug.h in Headers */ = {isa = PBXBuildFile; fileRef = C55EF4C677FFAD1988C1DB196ED25503 /* NSObject+CocoaDebug.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 075F7EF0396FFF6A88E97028D611822F /* MAPointAnnotation+DDCategory.m in Sources */ = {isa = PBXBuildFile; fileRef = 04598C91C924350D7F4EE27A77058875 /* MAPointAnnotation+DDCategory.m */; }; + 07842AE9C200E3450448D4CE5EC90B20 /* KVORepresentable+CoreGraphics.swift in Sources */ = {isa = PBXBuildFile; fileRef = BBF11C6363CD12CE3655D651C4655E05 /* KVORepresentable+CoreGraphics.swift */; }; + 0787D274E0F44F0AFEE264E394A63FF7 /* AnonymousObserver.swift in Sources */ = {isa = PBXBuildFile; fileRef = C57E79A96112BCD6EA0A4E7F5E4CFF64 /* AnonymousObserver.swift */; }; + 07C75CEEEBD4FAD75B68045458EC4A87 /* UIImage+Metadata.h in Headers */ = {isa = PBXBuildFile; fileRef = EF14A9B1A6C6FEB6EA0A21A5F78E5EFC /* UIImage+Metadata.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 07DD7EEF3184FCD7F41D558FAE757829 /* _DebugConsoleLabel.m in Sources */ = {isa = PBXBuildFile; fileRef = C2E5FCEE6148423F6B366AEE19AB67B4 /* _DebugConsoleLabel.m */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; + 07E392F599611967F673A8BD40BAC44B /* RxCollectionViewDataSourceType.swift in Sources */ = {isa = PBXBuildFile; fileRef = C0AF181644C5C7DC5A7E75678DC10A48 /* RxCollectionViewDataSourceType.swift */; }; + 07FB2928E22C59D69AEC76F3C4E108F6 /* PHAsset+ZLPhotoBrowser.swift in Sources */ = {isa = PBXBuildFile; fileRef = C7377BEF232207DDCBA57EAFD1A14E09 /* PHAsset+ZLPhotoBrowser.swift */; }; + 0843E381D48B6AF5BF9ED463CA5C955E /* ZFPersentInteractiveTransition.h in Headers */ = {isa = PBXBuildFile; fileRef = 18B20E75074BCA6076066BA39FB3454E /* ZFPersentInteractiveTransition.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 08618BC667C4A41807D3097E7B24DE74 /* Color.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1662D3E1ADCC2F18FBE1C92945D63F2A /* Color.swift */; }; + 0896B76AEBD6BF7C94932BDFE8354462 /* EKAttributes+DisplayMode.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0AC129DE20FC15D38C33BB72D87489AE /* EKAttributes+DisplayMode.swift */; }; + 08C4C48B5491DF1A9649D553D51AFDBC /* NSObject+Rx+RawRepresentable.swift in Sources */ = {isa = PBXBuildFile; fileRef = A61A51E3D716D4E0619FAB677331207C /* NSObject+Rx+RawRepresentable.swift */; }; + 08F14B504BD90DD29DD65EEB5B6F862E /* UIFont+ZLPhotoBrowser.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7BEF8797252485997952F3222D9EC8D9 /* UIFont+ZLPhotoBrowser.swift */; }; + 090E539A686A781DE820DE5F13F2C163 /* _DeviceUtil+Constant.m in Sources */ = {isa = PBXBuildFile; fileRef = 781C4E7E6AF60BABFF5D86D53499F39D /* _DeviceUtil+Constant.m */; }; + 090E7514095D254262AAFDB556B2A092 /* SDFileAttributeHelper.m in Sources */ = {isa = PBXBuildFile; fileRef = 3B071261A17D80FD9843E61320A8A11A /* SDFileAttributeHelper.m */; }; + 094C2F4D9A6B9F76E5FF3F0006E437FC /* MJRefreshBackFooter.h in Headers */ = {isa = PBXBuildFile; fileRef = F5A8105C70ECDF4CFE5D3AFF7923F775 /* MJRefreshBackFooter.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0988766B219E4F34E9422486B755B8EC /* Cancelable.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8A25BF9734B25A304D5C5B6B88ABB5F1 /* Cancelable.swift */; }; + 09D841FD4F2A0D1F39A692C2DDFA6147 /* Materialize.swift in Sources */ = {isa = PBXBuildFile; fileRef = 748960030C36ABF440BA1CE28F9C5EFB /* Materialize.swift */; }; + 09F9F981334170713980DDF8809DB8D5 /* IQToolbar.swift in Sources */ = {isa = PBXBuildFile; fileRef = A92289E6A48CA8ED893E7B2E62901FC1 /* IQToolbar.swift */; }; + 09FDD7513B55D9A1F614BFEA21B37C45 /* JXCategoryImageCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 44B7DDAE8C191FE2E6FD016FC6CE65AD /* JXCategoryImageCell.m */; }; + 0AB82009E5495FF3657BC47CCBB69E14 /* _CustomHTTPProtocol.m in Sources */ = {isa = PBXBuildFile; fileRef = 1CA760423511FDC0AB4B4C76BD0A5844 /* _CustomHTTPProtocol.m */; }; + 0B3C9C7F2B37E8A5B61C136CB41C1CD8 /* ZFSliderView.h in Headers */ = {isa = PBXBuildFile; fileRef = 929396B3C13DD9AC0D752E4CE93A61E9 /* ZFSliderView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0B3CB8B0F6A00EC008C0DF3CC323DD2D /* JXCategoryTitleCellModel.m in Sources */ = {isa = PBXBuildFile; fileRef = 7AE3D7BACED7B735ED100166677EE994 /* JXCategoryTitleCellModel.m */; }; + 0B71B7A7EDC041A6A0BB7C127F9DC547 /* MJRefreshAutoGifFooter.m in Sources */ = {isa = PBXBuildFile; fileRef = 7216F5AF243D97E74E0D909C97E20606 /* MJRefreshAutoGifFooter.m */; }; + 0B94E75FF2747C7288F1C62CFA5849D8 /* UIApplication+EKAppearance.swift in Sources */ = {isa = PBXBuildFile; fileRef = 048777CE15449DC35DFDAB4F3F634531 /* UIApplication+EKAppearance.swift */; }; + 0BE239C83EB39393C2217E5B2FF6B218 /* SDAsyncBlockOperation.m in Sources */ = {isa = PBXBuildFile; fileRef = 63CBD012AC6F6E061838D39D139A53FE /* SDAsyncBlockOperation.m */; }; + 0BF7A7E1CC913AD860D53300D62BDB6A /* RxSwift-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 32851633BA08A836ACC460464B779055 /* RxSwift-dummy.m */; }; + 0C0D931655251C8565D2D26F6C786DD8 /* Platform.Linux.swift in Sources */ = {isa = PBXBuildFile; fileRef = 99B18FCEB19AD03A05F1266DD8B4F130 /* Platform.Linux.swift */; }; + 0C21914CAD223DB4EAB1015C4EB49BA5 /* UIImage+ZLPhotoBrowser.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9BAD4D015F9DEEACCA44BE222487C45D /* UIImage+ZLPhotoBrowser.swift */; }; + 0C2D1C8A8F138C1DECC7165DEBB30AA6 /* AuthenticationChallengeResponsable.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5CCE1A2DAB9BC43CDA36FD17B1BF2246 /* AuthenticationChallengeResponsable.swift */; }; + 0C2F5ABC3CF48A67BBC11C6461EC67D4 /* DDImageView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 220B08D91C45356936B60DB764408CBD /* DDImageView.swift */; }; + 0C580E892DB90A0E920B62E3ECEA0C09 /* DDMutableAttributedString.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0E32F05E6704CB27C4F0970E03346DAB /* DDMutableAttributedString.swift */; }; + 0D1B44FC9F42E3CD0D7BC1DB16C97823 /* GPBMessage+CocoaDebug.m in Sources */ = {isa = PBXBuildFile; fileRef = 23FC7EB2D5A56E98EE7EF219D746E075 /* GPBMessage+CocoaDebug.m */; }; + 0D2C4557F6B5B7671B1A5F1E0C6A7E28 /* Buffer.swift in Sources */ = {isa = PBXBuildFile; fileRef = E8E9C41279E22A264F31E8EB006AF940 /* Buffer.swift */; }; + 0D347F1744785357C1D025A5A8F2CA16 /* Reduce.swift in Sources */ = {isa = PBXBuildFile; fileRef = EDCB13EC8ED90287D8EF26C15BA8046A /* Reduce.swift */; }; + 0D36AA1F6CE436E93F6E77931BB18449 /* UIViewController+ZFPlayerRotation.m in Sources */ = {isa = PBXBuildFile; fileRef = C7E88F18E04BC045B8FFF0615AB2D59C /* UIViewController+ZFPlayerRotation.m */; }; + 0D4389D9CF0EAC5327CCDFF026305798 /* CALayer+DDCategory.m in Sources */ = {isa = PBXBuildFile; fileRef = 4861B020D7E27F0E8FD84F687AE6E433 /* CALayer+DDCategory.m */; }; + 0D51735A3935C3B666B5D3B705612E5D /* Filter.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9F93A32E9DB2D15D01C4010FC5D07F13 /* Filter.swift */; }; + 0DABF94CD1F51D2C9CE647F2208CBDD3 /* DDMASearch.m in Sources */ = {isa = PBXBuildFile; fileRef = 3ACA5FE33CB355EA0C0B258471B5B900 /* DDMASearch.m */; }; + 0DB9A58537A673D13F83A4C8B2883509 /* ZFSpeedLoadingView.h in Headers */ = {isa = PBXBuildFile; fileRef = 8687A57AE558794973CBE0EF4EE33A63 /* ZFSpeedLoadingView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0DDD84CB97DFA910552F2B2957AE9B1E /* DDNavigationController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 44FBDC1D7632810A4180BA6202B06DF4 /* DDNavigationController.swift */; }; + 0DE926C74AFEF0953A45D1C0466B8983 /* ZFSpeedLoadingView.m in Sources */ = {isa = PBXBuildFile; fileRef = 7F52C8799AD5CBC0BD9548829C430967 /* ZFSpeedLoadingView.m */; }; + 0E0AA48C27E14A2A00DEA492873A599C /* SDMemoryCache.h in Headers */ = {isa = PBXBuildFile; fileRef = CD8845A0160C13E18380F1AA44F2D9AD /* SDMemoryCache.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0E1F41CBC22737D14553E4C726516982 /* SwiftSupport.swift in Sources */ = {isa = PBXBuildFile; fileRef = DFE88A9C67A3D94369ED21686D1096D1 /* SwiftSupport.swift */; }; + 0E2DB7F0238399F871D828D7969754B1 /* EKRatingSymbolsContainerView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 388FE68AF6780C7F5350952D2898C7BF /* EKRatingSymbolsContainerView.swift */; }; + 0E56518E9F1C83990C68DB5F3473FA31 /* JXCategoryViewAnimator.h in Headers */ = {isa = PBXBuildFile; fileRef = 4ED4E9784594D4F0519970E91C9FAD78 /* JXCategoryViewAnimator.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0E950FCAE86D3538201CA74A529883BE /* Zip.swift in Sources */ = {isa = PBXBuildFile; fileRef = 00F8FEF823DF255B3B1E6AA2118CD7A8 /* Zip.swift */; }; + 0F0C901337398FE4738DE95521DCEB56 /* JXCategoryImageCell.h in Headers */ = {isa = PBXBuildFile; fileRef = BCA9C6DD86E226D8238CA88509831E76 /* JXCategoryImageCell.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0F21C06546210C678354D75C3BC8542A /* InvocableType.swift in Sources */ = {isa = PBXBuildFile; fileRef = EEB2A39A626A4029B763E1D4FDED93B0 /* InvocableType.swift */; }; + 0F3011DC2A56D1F3C85CB6CC751AC27B /* BRStringPickerView.m in Sources */ = {isa = PBXBuildFile; fileRef = 3D7D99BD796546135F925EA800285E7E /* BRStringPickerView.m */; }; + 0F3D0046C86EE9D561A825514D92565C /* UIColor+SDHexString.h in Headers */ = {isa = PBXBuildFile; fileRef = ADAD4D1DE58743CB22AC7E7400ECA9DD /* UIColor+SDHexString.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0F920FC3CBA6622C2B007441D6D1126D /* JXCategoryBaseCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 38F0EECECA3502C31B2058880E168F69 /* JXCategoryBaseCell.m */; }; + 0F9BAD6D1148CCA3C71372F9C1A79074 /* DDZFPlayerKit_Private-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = CC1EBD8EC6B7E7CB973B6900A8161461 /* DDZFPlayerKit_Private-dummy.m */; }; + 0FEEBBB114CAA44F38179853D7AFF599 /* NSMutableParagraphStyle+DDCategory.m in Sources */ = {isa = PBXBuildFile; fileRef = ECEBD105BC3DD54516396EDE38B717BF /* NSMutableParagraphStyle+DDCategory.m */; }; + 10261CB16548E28C871AE58F7FF44A35 /* AVAssetImageDataProvider.swift in Sources */ = {isa = PBXBuildFile; fileRef = AED3CD08A920E0938205A4FDC9065D4A /* AVAssetImageDataProvider.swift */; }; + 10345D3B19E401C3F2822074041C0558 /* UIView+WebCache.h in Headers */ = {isa = PBXBuildFile; fileRef = E75E45AA403CB6CF81289D56594E9D0D /* UIView+WebCache.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 104C35DFFA5A1426FF8EFF6E63793213 /* JXCategoryNumberView.m in Sources */ = {isa = PBXBuildFile; fileRef = AB09C39369D91A6A5DE6F11CFF58FB1B /* JXCategoryNumberView.m */; }; + 104EA22965200BF741890B104BF71879 /* DDTimerObject.m in Sources */ = {isa = PBXBuildFile; fileRef = 6019FF29BB187DBD37EE03029AC1CFA4 /* DDTimerObject.m */; }; + 1052FBBB5CC7E4FF4837451F5EF10E33 /* KFImageRenderer.swift in Sources */ = {isa = PBXBuildFile; fileRef = 10ABC888679086A04C0DC40C758FA4E7 /* KFImageRenderer.swift */; }; + 10C7C630CD0D2A6389C3609E2D562F2B /* UIWindow+DDCategory.h in Headers */ = {isa = PBXBuildFile; fileRef = CD23476084FF78183DB58F9F4571F8D9 /* UIWindow+DDCategory.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 10DE5D64EDD01A2176294CC87737263E /* SDImageCacheDefine.h in Headers */ = {isa = PBXBuildFile; fileRef = 28972A447326ADCBC1C6971066AC8BFF /* SDImageCacheDefine.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 110FF9ECABC7F20FEEC801793B897C94 /* RxPickerViewDelegateProxy.swift in Sources */ = {isa = PBXBuildFile; fileRef = DB243464AB07C65DCFB6CA6085BF2DEC /* RxPickerViewDelegateProxy.swift */; }; + 1128E2E73320605A26D05E7B01D3BD83 /* ZLAddPhotoCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38C7BA52C91D83BC5564C138AC50CBB7 /* ZLAddPhotoCell.swift */; }; + 11752C8C2467387DBD491DF37334B28E /* CombineLatest+Collection.swift in Sources */ = {isa = PBXBuildFile; fileRef = ABCE38FE49A0559C11D295016A9231CD /* CombineLatest+Collection.swift */; }; + 11BE6C126EC0BB2F5551407DB20FB4A1 /* Platform.Darwin.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1056F3A17BDA5E5959DA7C15030700C9 /* Platform.Darwin.swift */; }; + 126F75C66AAE521360A205CC28EDA57C /* _DeviceUtil.m in Sources */ = {isa = PBXBuildFile; fileRef = 72F4DF64ECB98FA5FB17009AFA6CE020 /* _DeviceUtil.m */; }; + 12BCB97CB61CAAB9D2904F5855525A28 /* Switch.swift in Sources */ = {isa = PBXBuildFile; fileRef = D457B164D64164DD49B7FF00921C759B /* Switch.swift */; }; + 13068931BA58ED0F422A6FA105220B84 /* ToArray.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9961F617D17E7D5855FEDC8D77F4BD28 /* ToArray.swift */; }; + 13AA5156913F0EC843A8AC0B9AC5BFAD /* _Swizzling.h in Headers */ = {isa = PBXBuildFile; fileRef = 0C3C57E1D47F5EC93E2ED3B931584C60 /* _Swizzling.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 13B03D3CC04040B5E30C7FB851B053C0 /* FPSCounter.swift in Sources */ = {isa = PBXBuildFile; fileRef = 803551E564583D1475806B002F6E6763 /* FPSCounter.swift */; }; + 14BC856075DA12C985773806DA200B51 /* UIScrollView+Rx.swift in Sources */ = {isa = PBXBuildFile; fileRef = 306B5097D2023FAFEE069E00E5F37E8B /* UIScrollView+Rx.swift */; }; + 14DA7C4D43B4F0AF25CC428A060D954F /* Repeat.swift in Sources */ = {isa = PBXBuildFile; fileRef = CA08CD95F541835B4B5F044AF72AB34E /* Repeat.swift */; }; + 150EBE744426DA643E507BA08A9DE5B7 /* _OCLoggerFormat.m in Sources */ = {isa = PBXBuildFile; fileRef = CB4C7C32EA8F4E1761CC1FBA38460899 /* _OCLoggerFormat.m */; }; + 1511F0539EE313BF002EB0A462E30B65 /* QLCompatibility.swift in Sources */ = {isa = PBXBuildFile; fileRef = 52A66268B8952B81E9BCE9712BB4DE57 /* QLCompatibility.swift */; }; + 1561BF831B4EC3E3E879298DA74BD7F9 /* SDImageIOCoder.h in Headers */ = {isa = PBXBuildFile; fileRef = 299FB9B4E9B6E497E0DD2A24010319FA /* SDImageIOCoder.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 159496B27D352A38E9ACDE8A3DFAFE1F /* PublishRelay+Signal.swift in Sources */ = {isa = PBXBuildFile; fileRef = FC5BE37C95A46CB43392AFE31C1BF78B /* PublishRelay+Signal.swift */; }; + 159FEA28BF94EA9F386C9B63E6369316 /* ConstraintLayoutGuide.swift in Sources */ = {isa = PBXBuildFile; fileRef = E411ECA10BE589677CA268BA72A1461E /* ConstraintLayoutGuide.swift */; }; + 15B922B1EEA26691B65D36B902409E80 /* SingleAsync.swift in Sources */ = {isa = PBXBuildFile; fileRef = F90CDD080D5A728041970537B7FF4465 /* SingleAsync.swift */; }; + 15D653A7E1AE2E452BB8CE50ECF09C9A /* DDAlamofire.swift in Sources */ = {isa = PBXBuildFile; fileRef = E79B4DB40DF5B8B7F04589135163B8ED /* DDAlamofire.swift */; }; + 1673BE89F9976492F1172C196B430B2F /* ConstraintMakerFinalizable.swift in Sources */ = {isa = PBXBuildFile; fileRef = BEC362CD670BE177438B17E4033A32E4 /* ConstraintMakerFinalizable.swift */; }; + 16AED9E453F33B4FB25D6A64A1DBED59 /* _NetworkHelper.m in Sources */ = {isa = PBXBuildFile; fileRef = FC7F7AB4BB5377E9AD1204B0016F64CD /* _NetworkHelper.m */; }; + 16D426A77790C3AB232AB445469D615F /* MemoryStorage.swift in Sources */ = {isa = PBXBuildFile; fileRef = DBAD8CF2025EAC546A2B1BDB5F16CBF0 /* MemoryStorage.swift */; }; + 1705CAA12E39B9B91D1BD7650CAA3009 /* ConstraintLayoutGuide+Extensions.swift in Sources */ = {isa = PBXBuildFile; fileRef = 62B2D09ECF27C516AB969EF7484D86A5 /* ConstraintLayoutGuide+Extensions.swift */; }; + 1719ADC81CA7D3C14E267ACBDBD7D16F /* JXCategoryNumberView.h in Headers */ = {isa = PBXBuildFile; fileRef = FD1A4D7EA4C0FF50E8CAD03D7DAD5EA0 /* JXCategoryNumberView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1794BC6471BB43DD3FFC2AE3C7037814 /* RedirectHandler.swift in Sources */ = {isa = PBXBuildFile; fileRef = E185B9582FCE815829514B83FF9D6775 /* RedirectHandler.swift */; }; + 17C1D268B746DB73A19B85329F27D317 /* UIBarButtonItem+DDCategory.h in Headers */ = {isa = PBXBuildFile; fileRef = B6D8E1F8AC4B30EF47D3CF88CC0E42BD /* UIBarButtonItem+DDCategory.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 17C5A0D12F9BD9AE31B25DE583FDF815 /* SubscribeOn.swift in Sources */ = {isa = PBXBuildFile; fileRef = 219550FC122E9A2EB48E2907A147B61A /* SubscribeOn.swift */; }; + 17CC1C2CF08EF7D5972AB446F165858B /* RequestModifier.swift in Sources */ = {isa = PBXBuildFile; fileRef = E5FE5029088C339D8B35E78E952AB10E /* RequestModifier.swift */; }; + 1852BF48A0664A571D3474A1421403E2 /* SessionDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = E9EEC9061CA3F1FC21F9DE4E49BABE5C /* SessionDelegate.swift */; }; + 18A97E86B886DAA53D8D79BB9AFD0E95 /* SDImageFrame.h in Headers */ = {isa = PBXBuildFile; fileRef = 878D059B0D422EFDF67AC71FF87E455D /* SDImageFrame.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 18FFEFC84AF85E9A5B79D6B9BFFE9532 /* _DeviceUtil.h in Headers */ = {isa = PBXBuildFile; fileRef = 2F13DD16495EEB7383D65B0DE3777908 /* _DeviceUtil.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1951974553555FDD604E274748E45DD8 /* JXCategoryViewDefines.h in Headers */ = {isa = PBXBuildFile; fileRef = 58E2AC33E168E15B298D69C9A5A28FFB /* JXCategoryViewDefines.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1959CE0EF85451D85EF2F519432A403B /* ConnectableObservableType.swift in Sources */ = {isa = PBXBuildFile; fileRef = 54AD63E8A96A371B44C02911303E7964 /* ConnectableObservableType.swift */; }; + 19852C32598DF9170B3E4DEF382C3532 /* SDWebImageManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 9FBCF4CFD0559F4FACD728FB60254A36 /* SDWebImageManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 19A0C6679F5D96EA2729433D67445583 /* ZFLandScapeControlView.h in Headers */ = {isa = PBXBuildFile; fileRef = DA45655B3BFCB73542F94FBC8B5EB767 /* ZFLandScapeControlView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 19E22194C82328ADFCB3B3E8AA23CA2E /* UIImageView+DDCategory.h in Headers */ = {isa = PBXBuildFile; fileRef = E39FACA6E84ACD9E9587DCB289AAF448 /* UIImageView+DDCategory.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1A27EABDB2399A0ECC0F9259AE5A6065 /* MAPointAnnotation+DDCategory.h in Headers */ = {isa = PBXBuildFile; fileRef = CBDAFA119CAB9C629F8B5A98C33C7B3B /* MAPointAnnotation+DDCategory.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1A47EBBCEC8DDE7E8EA1C71FEC2BE256 /* EKEntryView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8C83AC7F2ED122D158BDD8D973D21481 /* EKEntryView.swift */; }; + 1AD438429DD404040E78321648906FEB /* EKXStatusBarMessageView.swift in Sources */ = {isa = PBXBuildFile; fileRef = FF18A1ECEBC50B64292A3336D415802A /* EKXStatusBarMessageView.swift */; }; + 1B00CCE61A30E081B712406C0B86CDD5 /* BRAddressPickerView.h in Headers */ = {isa = PBXBuildFile; fileRef = 6E2063E9191E5EAF488A97AD44F56C1D /* BRAddressPickerView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1B14413AC423A8EA118F471367F31900 /* Runtime.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5D0C20AC4A893B15D09BD0341E8D24D0 /* Runtime.swift */; }; + 1B1B633EDA5F226F9B2847CF23022DCE /* Debugging.swift in Sources */ = {isa = PBXBuildFile; fileRef = A25C6F0E6D20CBD7EA25A7DE82A4FAB4 /* Debugging.swift */; }; + 1B1F0477E626D72E108F4E670DB7ED7C /* SDWebImageTransition.m in Sources */ = {isa = PBXBuildFile; fileRef = E4B9F7456C68F2389F9444451A8FBD60 /* SDWebImageTransition.m */; }; + 1B641CAE5F13D776CBF39C4BEF9A70CC /* DDMANaviManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 6854CC4379010F0C20D40BCBCFF19234 /* DDMANaviManager.m */; }; + 1B9B8CB7EFF73C7A513D79EE43AEDED8 /* EKAttributes+BackgroundStyle.swift in Sources */ = {isa = PBXBuildFile; fileRef = 07BC3EDED98A9C30DEE8EDBC8C49B4A5 /* EKAttributes+BackgroundStyle.swift */; }; + 1BE58458BF3CBB08C4462A35923A0BF8 /* ObservableType.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3FD110744D980000542053E9BB4F6FEE /* ObservableType.swift */; }; + 1BE94E6045C39A801177EFCA0C3366CD /* SharedSequence+Operators+arity.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4EECC4DA7562CF2E29F1756C668A94C0 /* SharedSequence+Operators+arity.swift */; }; + 1BF401B5CF91DEEF71FF25C31286C319 /* UILabel+DDCategory.h in Headers */ = {isa = PBXBuildFile; fileRef = 844076CDF6F95524D9740536DE597A50 /* UILabel+DDCategory.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1C5F07B42EB43C301039536EDF55A7C8 /* DDMAMapView.m in Sources */ = {isa = PBXBuildFile; fileRef = 87A636305F55B4193ADAAD0F3EDC82E2 /* DDMAMapView.m */; }; + 1C72C41FD44D62F3D4DA2F1B3D218B70 /* TailRecursiveSink.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38F1CDA85549F310B76E79023A2E3B0A /* TailRecursiveSink.swift */; }; + 1C8CCE9DD6431F5D404A6B513193B95B /* SchedulerServices+Emulation.swift in Sources */ = {isa = PBXBuildFile; fileRef = ED7E15AE0A194F9FC49B5CB011F3E585 /* SchedulerServices+Emulation.swift */; }; + 1C8E6F4C2966C17FFDE1E393D2B2C52B /* SDImageCachesManagerOperation.h in Headers */ = {isa = PBXBuildFile; fileRef = D28547BA2899F7E20BA891DC0869FF30 /* SDImageCachesManagerOperation.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1CF914EE045065FC260282EACEB39A47 /* SDWebImageCompat.h in Headers */ = {isa = PBXBuildFile; fileRef = B1A90A6C06187882A5DD32BF62420DEE /* SDWebImageCompat.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1D029DD0697E9DA5079F55DEE0C53D99 /* SDInternalMacros.h in Headers */ = {isa = PBXBuildFile; fileRef = 05C7E32A37D053CCD582A61509540978 /* SDInternalMacros.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1D1A187CC0745781EDF0CF7D872B1B48 /* UIScrollView+DDCategory.h in Headers */ = {isa = PBXBuildFile; fileRef = 9ED517D8551A05FB319503D5EBE74D44 /* UIScrollView+DDCategory.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1D872C7E6CFFB616D9C2AE9A818CE105 /* SDImageCacheConfig.m in Sources */ = {isa = PBXBuildFile; fileRef = FF026286CC33ACD6E58EEC6812A1EF8D /* SDImageCacheConfig.m */; }; + 1DA222E020C537DB077E2916692EF40B /* CurrentThreadScheduler.swift in Sources */ = {isa = PBXBuildFile; fileRef = E7F4F9CDF62C0846F5F5198499E25BAE /* CurrentThreadScheduler.swift */; }; + 1E3E0526C3415FC308F6A39B1A707C73 /* DDTextView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9ECC1CFAF7F7F94D4BEA17650D3BEBB8 /* DDTextView.swift */; }; + 1E3F1F8CAD8E1C4F26997685B78BBD26 /* BehaviorSubject.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3FDA3F7F7AD59FD9728C33CD690CADC9 /* BehaviorSubject.swift */; }; + 1E61297846D7A69909C47217B93B71D3 /* ObservableConvertibleType.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7F4151E4B1A98BD20FBBA05B269CEC3D /* ObservableConvertibleType.swift */; }; + 1E6F507B7333AC0C2EF6B6308DD6292F /* SDWebImageCompat.m in Sources */ = {isa = PBXBuildFile; fileRef = DA7723343606DB94300D7CABEEC931C5 /* SDWebImageCompat.m */; }; + 1E7D3862EC665AB79BB541CF6F00801F /* Timer.swift in Sources */ = {isa = PBXBuildFile; fileRef = B5BF97B625C2DAB4A96AAEFEECD7076E /* Timer.swift */; }; + 1EC020C895DBB3F41B8F38DC6B184DE2 /* SDGraphicsImageRenderer.m in Sources */ = {isa = PBXBuildFile; fileRef = 4FD19BAA57D6D2F89EAF59C5CE2673EC /* SDGraphicsImageRenderer.m */; }; + 1EF6941565F1A4B36DF833813DA9E825 /* BRAddressModel.m in Sources */ = {isa = PBXBuildFile; fileRef = D524906AF89C104711EC3EAB52B1041C /* BRAddressModel.m */; }; + 1F21967BAC4672B06837790CF2EA6287 /* DDBaseTextView.m in Sources */ = {isa = PBXBuildFile; fileRef = F77601C6B6E656F149C6EC74A7D781C9 /* DDBaseTextView.m */; }; + 1F3910187870605E2473B117E631E6C3 /* DDBaseButton.m in Sources */ = {isa = PBXBuildFile; fileRef = A81C05D1CBAACE09A623FFC12B2910B6 /* DDBaseButton.m */; }; + 1F45EB055DE648E034F3E56804F6499A /* DDBaseImageView.m in Sources */ = {isa = PBXBuildFile; fileRef = 2A582DA9EEE16260A1978792FC5C8EEE /* DDBaseImageView.m */; }; + 1F6F77F98F7B208FD65CB90C0AEA6A17 /* DDTextField.swift in Sources */ = {isa = PBXBuildFile; fileRef = 555AC2D8DC026900B91FD2906E79BFBB /* DDTextField.swift */; }; + 20043137ECCF7FD651E5D5067CB8ED3D /* PublishRelay.swift in Sources */ = {isa = PBXBuildFile; fileRef = 25A8E9EF72D728BBB7654A49861F5F0C /* PublishRelay.swift */; }; + 205D4F61CB9ED1CE451C27D5950DE9F2 /* CrashListViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1A8EAF636BB07C51C4ED55F239858CD3 /* CrashListViewController.swift */; }; + 20624FD8D76D790F3E133497F0AB1815 /* TextInput.swift in Sources */ = {isa = PBXBuildFile; fileRef = 577FA7A5EA46FFE67C8286A291B00306 /* TextInput.swift */; }; + 208C28BB20B74966180E09F143D05703 /* JXCategoryIndicatorLineView.h in Headers */ = {isa = PBXBuildFile; fileRef = 3C71851C72F3AD0940858B0BD5A7C205 /* JXCategoryIndicatorLineView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 21512C78C6B356E2C228D9BFC7481794 /* IQTextView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 01E4FAFE87F8BBD90D18537F26A7A20C /* IQTextView.swift */; }; + 218CD2971995C4270CE6C0FD6F7FD1D3 /* MultipartFormData.swift in Sources */ = {isa = PBXBuildFile; fileRef = DE6A952C3275E956AD27221C641220DF /* MultipartFormData.swift */; }; + 21BBCC480DCFFDA1A130CB3F1A89D5B0 /* NSTextView+Rx.swift in Sources */ = {isa = PBXBuildFile; fileRef = 14D8C8FF1C95657CBA45ED86F902B75C /* NSTextView+Rx.swift */; }; + 21F866FFDD3ED4A3867A024CAF03DAD7 /* Reactive.swift in Sources */ = {isa = PBXBuildFile; fileRef = 196BC92B948C2A77914E274EA51CAB29 /* Reactive.swift */; }; + 221A1EFA0518311976C4159DE2D719B8 /* EKWindowProvider.swift in Sources */ = {isa = PBXBuildFile; fileRef = 46DABDBA88E3F291F4E144783C9649B7 /* EKWindowProvider.swift */; }; + 22ACB88454D706696FFA80153AFCC611 /* _FileTableViewCell.m in Sources */ = {isa = PBXBuildFile; fileRef = E06B52686A0003825F716073DE4BDAD6 /* _FileTableViewCell.m */; }; + 22B2893540824DE4EAE73613630EEB7D /* EKRatingMessage.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4A2DAD19AF9388FA3E160CB284E06D54 /* EKRatingMessage.swift */; }; + 22F708E957D1B5F9A5503FB63443DBCB /* UIColor+JXAdd.h in Headers */ = {isa = PBXBuildFile; fileRef = 5242CDB2DB03111A788DC0059391F270 /* UIColor+JXAdd.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 236FED5732BEBF327726EDE3FD4C304E /* KingfisherError.swift in Sources */ = {isa = PBXBuildFile; fileRef = F90E6718FAE366DEF1E748A03B130BDC /* KingfisherError.swift */; }; + 23D60AC17268CEAE321FD91D95FDFEA2 /* _FileInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = 56AFB8A10E65E409B93276FE92953C0C /* _FileInfo.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 24126622F357B27F930CB42F8CE2828F /* Scan.swift in Sources */ = {isa = PBXBuildFile; fileRef = 362E66A36D877A4D20CC49CA974F5BB5 /* Scan.swift */; }; + 2446E15C2691076AE02AE7FB84E124BF /* UIView+MJExtension.m in Sources */ = {isa = PBXBuildFile; fileRef = CBAD2E1103898DA8B26A312FC7B0A364 /* UIView+MJExtension.m */; }; + 24790EE6701CFD84EF264644D8954359 /* ScheduledItem.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6A22F2F74D59267FD22C1C2AADC04BCC /* ScheduledItem.swift */; }; + 249A5D1671C8D0EA048741AF1C56E7C5 /* ImageProcessor.swift in Sources */ = {isa = PBXBuildFile; fileRef = 290717E907B1D25158CDF40E3C8C1BAD /* ImageProcessor.swift */; }; + 249E5CB98CD1AC41A44D2C1C99B98DAE /* UIImageView+ZFCache.m in Sources */ = {isa = PBXBuildFile; fileRef = 80BE34B3B635E10EB14465ABFCBDE7FD /* UIImageView+ZFCache.m */; }; + 24CB04FF8F5A845609FBEA4C39D417D7 /* Array+ZLPhotoBrowser.swift in Sources */ = {isa = PBXBuildFile; fileRef = E7844759027C8AE2F479CB69445BA702 /* Array+ZLPhotoBrowser.swift */; }; + 24E0B59FA7F0A047A27DE53FB6BE8264 /* Maybe.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1E5D7BE5A8C68A6233EE6F7864457AFB /* Maybe.swift */; }; + 24F0C89809AAC1AD9A1A47DE87EF3C6C /* PriorityQueue.swift in Sources */ = {isa = PBXBuildFile; fileRef = F2E528704DF4C607CBD038B191FA0AB1 /* PriorityQueue.swift */; }; + 2507014A26449C348CEC857B89FEE333 /* MJRefreshComponent.m in Sources */ = {isa = PBXBuildFile; fileRef = 45C5CF794B6E5E494445CEA67F6AE8C7 /* MJRefreshComponent.m */; }; + 2529C4A581869CB960A96D4B357DD07E /* ZFSmallFloatControlView.h in Headers */ = {isa = PBXBuildFile; fileRef = 6463A0E9C5AB7FD3DD5005CF73EDA0C5 /* ZFSmallFloatControlView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 25367CA720FADB9E539AEE26697C07DB /* SDWebImageMapKit.h in Headers */ = {isa = PBXBuildFile; fileRef = 16720660F00B055D3518EF290D70B19D /* SDWebImageMapKit.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 255D6DCAC2BD25E3D42581EA3D13373C /* ZLPhotoBrowser.swift in Sources */ = {isa = PBXBuildFile; fileRef = 75E1414EAAA001BFFD7FC6793522CD46 /* ZLPhotoBrowser.swift */; }; + 2586C039EB263BEC783B3443CDC0E01D /* TVMonogramView+Kingfisher.swift in Sources */ = {isa = PBXBuildFile; fileRef = 418F2B1CFFB6A339DEA2A7DE9192A0F8 /* TVMonogramView+Kingfisher.swift */; }; + 2594B81E012C40CF7C0996C3ECB30BAA /* MJRefreshNormalTrailer.m in Sources */ = {isa = PBXBuildFile; fileRef = F1245050CD55525EA80F5689767F38DB /* MJRefreshNormalTrailer.m */; }; + 25B9D312046078B515E9DE443B24ED35 /* ServerTrustEvaluation.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0228B6F0D3F7C87CDD74ABC704E1588F /* ServerTrustEvaluation.swift */; }; + 25C1D77E24962464EF1FF16A836B4DFF /* PublishSubject.swift in Sources */ = {isa = PBXBuildFile; fileRef = E7F71551E3A9F242235C49513C300720 /* PublishSubject.swift */; }; + 25CEE593E4ED0317A5BB9456436B0C67 /* EKButtonView.swift in Sources */ = {isa = PBXBuildFile; fileRef = A864138960B613848C67B4978291F398 /* EKButtonView.swift */; }; + 25FD8F9E0D71213C84D8FE596B7B2882 /* CocoaDebugDeviceInfo.m in Sources */ = {isa = PBXBuildFile; fileRef = 813DB8DD6BD880C1B5E806A22B6F42EC /* CocoaDebugDeviceInfo.m */; }; + 264CD45BABE5BF94794AE350E03DBD83 /* DDLogKit_Private-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 480E08B1471D7513F645869E5EE04A01 /* DDLogKit_Private-dummy.m */; }; + 265FB60F6AB34B4FAFEFF416DA1F1F10 /* JXCategoryBaseCellModel.h in Headers */ = {isa = PBXBuildFile; fileRef = 477E4DE9343D8FDCE62351F9659236A8 /* JXCategoryBaseCellModel.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 26B7A9499E63379EC6F3F9CE39C58B23 /* DDBaseView.h in Headers */ = {isa = PBXBuildFile; fileRef = 309B95795D2946559604CB5DFF233BAB /* DDBaseView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 26CF5124ACB614EE9B8E40496BE66CDB /* ScheduledDisposable.swift in Sources */ = {isa = PBXBuildFile; fileRef = E9A321D453F1F1F648CA8A2C14389B81 /* ScheduledDisposable.swift */; }; + 27173E1C99B69F0D58B8893247CD962F /* ConstraintOffsetTarget.swift in Sources */ = {isa = PBXBuildFile; fileRef = AC783BAEF780AD25A29F78A85BEB0563 /* ConstraintOffsetTarget.swift */; }; + 273E6DDCA9EEEB683B0C2C61AEC9EC69 /* _QNSURLSessionDemux.h in Headers */ = {isa = PBXBuildFile; fileRef = 814C59B6A543515D5E5A52A2F254C566 /* _QNSURLSessionDemux.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 275F35A4850DFDDCEBF1C0C22C276AB0 /* Kingfisher-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 3D1872E58A5DCDD6FB9329FABA1A9E03 /* Kingfisher-dummy.m */; }; + 2782178F820A14ECFAD608CF648BB26D /* MJRefreshBackStateFooter.m in Sources */ = {isa = PBXBuildFile; fileRef = B011F598DAF5344014D1AE0AB2B0B81D /* MJRefreshBackStateFooter.m */; }; + 27ADC2222714C29A0504BF7A6C1EE24D /* SDImageLoader.h in Headers */ = {isa = PBXBuildFile; fileRef = E44E11DCABEC805394DAC6D163DE8C87 /* SDImageLoader.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 27C3CEF5A8C7BFB8275195F1380473CB /* UIApplication+Rx.swift in Sources */ = {isa = PBXBuildFile; fileRef = B90AFD70497E0BB1552C6FB2E37FED4B /* UIApplication+Rx.swift */; }; + 27DF770B170C70528E02B140DABC07A0 /* _BacktraceLogger.h in Headers */ = {isa = PBXBuildFile; fileRef = DB7B6A55DD89339221BAD8B2FC088B99 /* _BacktraceLogger.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 27EDA91CC20195D694592CA50256BE67 /* EKAttributes+Position.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0CCBA22874FD39B5EC9BDE6D9D8B105E /* EKAttributes+Position.swift */; }; + 28110BD5743CCA0E56C281AA16E44C86 /* Debug.swift in Sources */ = {isa = PBXBuildFile; fileRef = D4838910D44FA150E26BFE42CEA3D57A /* Debug.swift */; }; + 285FF55A84F63D0155686007D16BE4CD /* DDBaseAttributedString.h in Headers */ = {isa = PBXBuildFile; fileRef = B6486D49EA84BCC1A19B166BED7DD30E /* DDBaseAttributedString.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 28F932F4B519F37A070730806248F76D /* UIView+ZFFrame.h in Headers */ = {isa = PBXBuildFile; fileRef = C05B031ED5C4066135823A85DF067623 /* UIView+ZFFrame.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 296C4C79146F190E62AE816E9ECABEEA /* _DebugConsoleLabel.h in Headers */ = {isa = PBXBuildFile; fileRef = C02E791F140CA6B6CC8B66E945F3F7FA /* _DebugConsoleLabel.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 29AC72CCC28FCCF2A27C61A4B40DB411 /* DDBaseMutableAttributedString.h in Headers */ = {isa = PBXBuildFile; fileRef = 4F840D0B344141E91276FE6EC52C14A1 /* DDBaseMutableAttributedString.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2A1CD08ADFFF90E753887549FE5426F5 /* SDAnimatedImageView+WebCache.h in Headers */ = {isa = PBXBuildFile; fileRef = 8D54AACBAC94421DEA26246C848BF858 /* SDAnimatedImageView+WebCache.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2A537A4F574936E29C08E5AA2A861AE1 /* DDBaseNavigationController.m in Sources */ = {isa = PBXBuildFile; fileRef = 360E8C023C6FC4183838AA96186B6792 /* DDBaseNavigationController.m */; }; + 2A95BCE7D67C044F64945FB7FDF57192 /* PrimitiveSequence.swift in Sources */ = {isa = PBXBuildFile; fileRef = F5676AEB99DFE2EBCEC44B8F8C378995 /* PrimitiveSequence.swift */; }; + 2ADDEBCF302EE4644785955546FA0137 /* SDAssociatedObject.m in Sources */ = {isa = PBXBuildFile; fileRef = 52826FE03640CB0B224197CEBF6FF9DC /* SDAssociatedObject.m */; }; + 2B3EF5A06A1D104954F53234E8E0A873 /* JXCategoryView.h in Headers */ = {isa = PBXBuildFile; fileRef = 1FF6A2190F5BC06DAB3EDE0EC9E568DC /* JXCategoryView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2B839970ABBA6A8126A4793904C22C7B /* JXCategoryBaseCell.h in Headers */ = {isa = PBXBuildFile; fileRef = 96F7AF40E802609917158B3B27A38C46 /* JXCategoryBaseCell.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2B91ADD3BBBFE7B74F53F4B4A59FA42A /* JXCategoryIndicatorImageView.h in Headers */ = {isa = PBXBuildFile; fileRef = F9C6DECE1126440987AFF0DE1FBD167E /* JXCategoryIndicatorImageView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2BD1DA46EFAC895FA086ECF1902D0FD1 /* DDCategoryKit_Private-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 53361A1564DD3D9163B8100ADD29FF52 /* DDCategoryKit_Private-umbrella.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2BD7DD0EE925854A3A8F5CA9D8C3CE6E /* ZFLandScapeControlView.m in Sources */ = {isa = PBXBuildFile; fileRef = 95CF63ABCB6F25ADB78E2D8C5C0B4AAE /* ZFLandScapeControlView.m */; }; + 2BE485EA399C9F617CEA6A29D80890ED /* UIWindow+DDCategory.m in Sources */ = {isa = PBXBuildFile; fileRef = A81CCD359428847EFB56456B6E16F49B /* UIWindow+DDCategory.m */; }; + 2BFE52F6E917ED3CE9A1057BCE39194E /* SwiftEntryKit.swift in Sources */ = {isa = PBXBuildFile; fileRef = B9BF579F6092CEFA95DAC1130DC4310C /* SwiftEntryKit.swift */; }; + 2C089711506854D42BA24F1C584DD660 /* ZLProgressView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 468424AFB716A419EDBBC02841EB0BE5 /* ZLProgressView.swift */; }; + 2C1D34FB57B50806AA5A7341819888A5 /* BRResultModel.h in Headers */ = {isa = PBXBuildFile; fileRef = 79E5766F0816D67B02D74B9B8EA86E2E /* BRResultModel.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2C4A5EA90AE4D26083E9694AC0D53DF7 /* DDViewControllerAnimatedTransition.h in Headers */ = {isa = PBXBuildFile; fileRef = 32C7A9E91D346601A6EFB63D978F7376 /* DDViewControllerAnimatedTransition.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2C74EC11B77042707C02D50D7397E771 /* RxCollectionViewDataSourceProxy.swift in Sources */ = {isa = PBXBuildFile; fileRef = D9BDF0B2899C443FF8D72F62B68543A3 /* RxCollectionViewDataSourceProxy.swift */; }; + 2C8CD89280A61E74F752C1B6D05BAE1B /* EKWrapperView.swift in Sources */ = {isa = PBXBuildFile; fileRef = DEE84C941D54610C22AD0ED0AE7A2067 /* EKWrapperView.swift */; }; + 2C96986F46DE40BC67A31891B540F314 /* ZLPhotoModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9B811D8CEF738968C173A506E719FB78 /* ZLPhotoModel.swift */; }; + 2C9D5104E3A512934F635EA801B0B37C /* NetworkCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1D77E535ED65AE14BACCC1953284630C /* NetworkCell.swift */; }; + 2CA957E86DDEAC22769E60AE07A2B927 /* CompactMap.swift in Sources */ = {isa = PBXBuildFile; fileRef = F36735FF5E1B911336F31051C113943F /* CompactMap.swift */; }; + 2CB3E09FCB7E080294F5664B4EABCE94 /* ConstraintLayoutGuideDSL.swift in Sources */ = {isa = PBXBuildFile; fileRef = B0D8E4690467E9E0AD0E58B9ECCDF709 /* ConstraintLayoutGuideDSL.swift */; }; + 2CB995BCABCF2F967B1ECE98DBC2E09C /* Platform.Linux.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0D4C8900E578B4C8C482C3CBE0AF8AF5 /* Platform.Linux.swift */; }; + 2CBA99FEFAA12064682FC0DE2D2131A2 /* UIImageView+HighlightedWebCache.m in Sources */ = {isa = PBXBuildFile; fileRef = 22A573740B3FB668872A230C87084151 /* UIImageView+HighlightedWebCache.m */; }; + 2CBAD2261C2EE1772387DBE73BFE8081 /* SDWebImageDownloaderDecryptor.h in Headers */ = {isa = PBXBuildFile; fileRef = 17B8906DA56601863A279000D653D043 /* SDWebImageDownloaderDecryptor.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2CC32091848E70728F4BDA4FAF1C94F5 /* Alamofire.swift in Sources */ = {isa = PBXBuildFile; fileRef = 936FEBCB276E32D9AD7D19B39E488A41 /* Alamofire.swift */; }; + 2D0C86B3E6574923AAFED2B2B51751FA /* Rx.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0381861FFA483459D293AE76660FBA3B /* Rx.swift */; }; + 2E06E2D515B47AD7FD26D97DE13591C3 /* UITableView+DDCategory.h in Headers */ = {isa = PBXBuildFile; fileRef = 02053A7B91976C425D1817777F87951B /* UITableView+DDCategory.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2E4FAA9464D464CF2603FCCD05DC7E21 /* KFImageProtocol.swift in Sources */ = {isa = PBXBuildFile; fileRef = 29B77B2A50E70A2207E2F082CBFCA2D2 /* KFImageProtocol.swift */; }; + 2E96D3740419575C3E1A4EBCA4E57EE9 /* Sample.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1CFD312BA20A13AE286234A92BEDA520 /* Sample.swift */; }; + 2F1B528CD4A6EBB69568E001A3E15E22 /* DDFontKit_Private-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 63F5BC8D29048733247E71DC052694A8 /* DDFontKit_Private-dummy.m */; }; + 2F25B524BAE7F4A1010E66073952431F /* ZLAnimationUtils.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1558B92E463EDCFB3725BFBD17A1182D /* ZLAnimationUtils.swift */; }; + 2F92D77F0B6DB6F93469E29305BD0BE0 /* DispatchQueue+Alamofire.swift in Sources */ = {isa = PBXBuildFile; fileRef = 64EAE6A2F195677C22177C4FB997B57D /* DispatchQueue+Alamofire.swift */; }; + 2FBA6B4CFEDEA14DF62EC282B323F528 /* _ImageResources.m in Sources */ = {isa = PBXBuildFile; fileRef = 6D22B3FF18B2F4B35F8FD432C11F8AE8 /* _ImageResources.m */; }; + 2FCD4F932FAAE7CD8A7B2AC53A9CB7A4 /* Concat.swift in Sources */ = {isa = PBXBuildFile; fileRef = A8F377837B80FD1BAD30AAD44F1DE913 /* Concat.swift */; }; + 306AAA0978204ABAEBE3A5D9CA64810B /* ZLThumbnailPhotoCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4780899C9E192363C43E66775A37F41D /* ZLThumbnailPhotoCell.swift */; }; + 3090ED9C77596F67C3E91B293BA89981 /* BRDatePickerView+BR.m in Sources */ = {isa = PBXBuildFile; fileRef = A30EBD463466F63B3AF190056FCFE2C8 /* BRDatePickerView+BR.m */; }; + 309C49EF61D7D5C2E2DE8668D4B42688 /* SharedSequence+Operators.swift in Sources */ = {isa = PBXBuildFile; fileRef = B2189D7C470A9F19544369A0CD0F933A /* SharedSequence+Operators.swift */; }; + 30C11276440E0B42F3C262BB2D30D9E1 /* NSObject+DDCategory.h in Headers */ = {isa = PBXBuildFile; fileRef = 10ABE62193618D11DA78D5A4CF4C829B /* NSObject+DDCategory.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 30F8E91AA8D3228A5A82067824711B48 /* Single.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0B2FBFB6B983E631D704734CD9F628EC /* Single.swift */; }; + 316BC27C89EA174E4233348DF1E30934 /* _SandboxerHelper.m in Sources */ = {isa = PBXBuildFile; fileRef = 18328C1F6B0BAD912D7D90C9B6A664DD /* _SandboxerHelper.m */; }; + 31822EC50EA6D80C006A8724FCB33E71 /* NSBundle+DDCategory.m in Sources */ = {isa = PBXBuildFile; fileRef = B8C194FB66589A3E472EFB4493C4FB65 /* NSBundle+DDCategory.m */; }; + 3186FD6387474C159EA30705EC731E63 /* HistoricalSchedulerTimeConverter.swift in Sources */ = {isa = PBXBuildFile; fileRef = 77160F7BF16B91B2D9844B16AB83623B /* HistoricalSchedulerTimeConverter.swift */; }; + 31C4D922B73C8DB5EB1F4EECE5B99577 /* IQUIViewController+Additions.swift in Sources */ = {isa = PBXBuildFile; fileRef = B3C6272FB54DC705DA455D83E5FB7171 /* IQUIViewController+Additions.swift */; }; + 31CA7B9E8EA236369E7DF755D46EF541 /* SDmetamacros.h in Headers */ = {isa = PBXBuildFile; fileRef = 3BAF662DB6D341D39437AD8400B550FE /* SDmetamacros.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 31DF54E033EF144675A3610238452B1B /* UITabBar+Rx.swift in Sources */ = {isa = PBXBuildFile; fileRef = 93E74055C504CD5F666B283D0C6A92AD /* UITabBar+Rx.swift */; }; + 3208D2E1AC17249CDDF8D24BE0170987 /* String+ZLPhotoBrowser.swift in Sources */ = {isa = PBXBuildFile; fileRef = 355B205914EB41526BE542CC4950AAB0 /* String+ZLPhotoBrowser.swift */; }; + 328650A2D927732D8D720F558A37AD36 /* UIButton+WebCache.m in Sources */ = {isa = PBXBuildFile; fileRef = 54DF957F2A5F496527D114BA66FAE3CA /* UIButton+WebCache.m */; }; + 32991484904FD0C17C3977F2B2D1E754 /* Generate.swift in Sources */ = {isa = PBXBuildFile; fileRef = 98A613D06DB3DABFADB1410C9C88BA4A /* Generate.swift */; }; + 32CA25222D6B2A9C52343DF57E4793B8 /* SDWeakProxy.h in Headers */ = {isa = PBXBuildFile; fileRef = 6C6121D780603F3C4B2B23B2F9BE8463 /* SDWeakProxy.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 32F60407B401152F2C0FC9ADB064C913 /* MJRefreshAutoGifFooter.h in Headers */ = {isa = PBXBuildFile; fileRef = 74EC81B1268BA03B9BAAFFD60DBDB186 /* MJRefreshAutoGifFooter.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 33022595B6AB6F959F4D9BB4B4B31F7C /* DDBasicControlsKit_Private-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 0DBAD669B55F5B5B45C51263FB09D478 /* DDBasicControlsKit_Private-dummy.m */; }; + 331E2CAD6DA51F5C5367E1CD17EB6D45 /* DispatchQueueConfiguration.swift in Sources */ = {isa = PBXBuildFile; fileRef = CAE56C8AA2FEDC20E7202A7D8016E756 /* DispatchQueueConfiguration.swift */; }; + 332189AD4AD25E48E7584583B70EA4A4 /* ControlTarget.swift in Sources */ = {isa = PBXBuildFile; fileRef = B5A2D4393E3075C6B8D7D1C51DC1665E /* ControlTarget.swift */; }; + 3336117E54632698AE7BF69221C9BFBF /* EKAttributes+FrameStyle.swift in Sources */ = {isa = PBXBuildFile; fileRef = FB10F6FFFAF66492CCA037D464171E01 /* EKAttributes+FrameStyle.swift */; }; + 33616C996675BCEEACADC74135890BD6 /* JXCategoryDotView.m in Sources */ = {isa = PBXBuildFile; fileRef = 46775A49318D9ED779E15AF9095471C3 /* JXCategoryDotView.m */; }; + 336439A67521DEE2DF0D4EA4E9D4EC03 /* SDWebImage.h in Headers */ = {isa = PBXBuildFile; fileRef = 3464A788AA37444E4A426865192CC254 /* SDWebImage.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 340A763250D0C4BAF58E7EEF61E530A3 /* CocoaDebugTool.m in Sources */ = {isa = PBXBuildFile; fileRef = 85B8A6A8D283A88E3300EC465EB6E518 /* CocoaDebugTool.m */; }; + 34219E74B6FDF7C28D0D0ED21D17410F /* EventMonitor.swift in Sources */ = {isa = PBXBuildFile; fileRef = E8C80763E28262062A094867C3B67818 /* EventMonitor.swift */; }; + 344F73F29ACF403719077971B5C005D4 /* Delay.swift in Sources */ = {isa = PBXBuildFile; fileRef = C3CAB0B4123BEA6346718C4838F0FC50 /* Delay.swift */; }; + 349E933224A2196BE8CB8F20A386089E /* UITabBarController+Rx.swift in Sources */ = {isa = PBXBuildFile; fileRef = BF79B20945886A068F5468C6DA15B79F /* UITabBarController+Rx.swift */; }; + 34CE1AB1BEFDF9C9AE79DA0B86BFD19F /* DDSwitch.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9A129EE0C83FE51A20D8D5971D362AB8 /* DDSwitch.swift */; }; + 34D7B7F81DBB3A50D80E68BE076FB80C /* EKNotificationMessageView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 64D833B4C5FEA8E8C3EB56C28EC75A51 /* EKNotificationMessageView.swift */; }; + 35566A4CEE196074A328F12B0F748B87 /* MJRefreshAutoFooter.m in Sources */ = {isa = PBXBuildFile; fileRef = 3798D2339DF3BC989D9AEF1C4954BA73 /* MJRefreshAutoFooter.m */; }; + 359BBAB3F9A40FA490842925C5B4E427 /* CompositeDisposable.swift in Sources */ = {isa = PBXBuildFile; fileRef = 58B79610BE6A6C4B3D20180A405E2ADC /* CompositeDisposable.swift */; }; + 35BF909F60929C0222C40DA6D149AB28 /* ZLCustomAlertProtocol.swift in Sources */ = {isa = PBXBuildFile; fileRef = E31F2CEFB0E70699BE43F5BC30BAFD3A /* ZLCustomAlertProtocol.swift */; }; + 35EC4BDBF382831DEACEFB9CBEC7313E /* JXCategoryDotView.h in Headers */ = {isa = PBXBuildFile; fileRef = D51D42263870E4959761C5CBF89B4D36 /* JXCategoryDotView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3615678A2D40C0ABDDC178C56011AA3F /* DDNetworkingOfAlamofireKit_Private-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = B22DCD11FAD5D73CDD802C4443872B0C /* DDNetworkingOfAlamofireKit_Private-dummy.m */; }; + 362DCE6C30193B4F265B6BCFFBC28186 /* IQKeyboardManager+Debug.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3079BDBC39DC920BE63AC7B72F911AFB /* IQKeyboardManager+Debug.swift */; }; + 37CC41EBE46D49279B5595609127146D /* DDProgressHUD.swift in Sources */ = {isa = PBXBuildFile; fileRef = C46919322C3194F15F97B3B8646505B3 /* DDProgressHUD.swift */; }; + 3848E339FD18EE2E315E064031BACDE8 /* NSButton+WebCache.h in Headers */ = {isa = PBXBuildFile; fileRef = E10DF514DDFB09E217924ED5F17F971B /* NSButton+WebCache.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 38802157351AAA28DBC3D215EB049363 /* UIButton+Rx.swift in Sources */ = {isa = PBXBuildFile; fileRef = C37201DB90F4FF72205A918853410CB5 /* UIButton+Rx.swift */; }; + 38A33E381DC17E37E33D29E135E034F0 /* ImmediateSchedulerType.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4BA0C75F7684400C20E23E37C316BCF3 /* ImmediateSchedulerType.swift */; }; + 38E8E82CB2E6E16A66CF79B88B723938 /* UITabBarController+DDCategory.h in Headers */ = {isa = PBXBuildFile; fileRef = DEBD310018522EBB8EE86243939BF08F /* UITabBarController+DDCategory.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 38ECCE8DD71FC839807DF4F6494A77C8 /* JXCategoryNumberCellModel.h in Headers */ = {isa = PBXBuildFile; fileRef = 17EF36FE763AB696820C44585014C0FD /* JXCategoryNumberCellModel.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3909A9DC00E78A63A4EF29018C46120E /* AutoUI.swift in Sources */ = {isa = PBXBuildFile; fileRef = 21B56EB683131E3D51455D09E281E248 /* AutoUI.swift */; }; + 393F39D7464BA3FF38602C6932B0F5CD /* _OCLogHelper.h in Headers */ = {isa = PBXBuildFile; fileRef = FBFDD0D64101201EE491C7BA636B9FB8 /* _OCLogHelper.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 39A1EED7EF20556DA57E00609DFD1645 /* ZLImagePreviewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = A710DC9527A7E25C65D9858FFB332F12 /* ZLImagePreviewController.swift */; }; + 39A20A6292B535CB9F60D3A449682C56 /* ZLEditImageConfiguration.swift in Sources */ = {isa = PBXBuildFile; fileRef = 50E020A3CE33380E2A7F634370C52CD2 /* ZLEditImageConfiguration.swift */; }; + 39A3EB396EC47B33F8538BBA9570E35A /* RxCollectionViewDataSourcePrefetchingProxy.swift in Sources */ = {isa = PBXBuildFile; fileRef = DF8206E5CAA0BF50EE051A3E54EEC24A /* RxCollectionViewDataSourcePrefetchingProxy.swift */; }; + 39D58D6790E6C9BAFB8689BAC91792D0 /* IQKeyboardManager+UIKeyboardNotification.swift in Sources */ = {isa = PBXBuildFile; fileRef = 542AC484B61AB51FC53794B3CFC6BA5C /* IQKeyboardManager+UIKeyboardNotification.swift */; }; + 3A1BE3A790D32DACDC81F728B5AEF8CF /* EKAttributes+Presets.swift in Sources */ = {isa = PBXBuildFile; fileRef = 484AC9D5780EC966243DE61551588AE9 /* EKAttributes+Presets.swift */; }; + 3A2E1C023CB3C4727BE773626B77BBB1 /* ConstraintDirectionalInsets.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0AFE6DA7B5413B1DB9D313117C1D00CF /* ConstraintDirectionalInsets.swift */; }; + 3A5239200052646BB3581EC8BCE593AE /* Response.swift in Sources */ = {isa = PBXBuildFile; fileRef = 143FBCC86BF924D706D0EF1552376AA1 /* Response.swift */; }; + 3A74E1D6C0FDBEB91445B6377062D8C7 /* CrashStoreManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6AF54F588087A23BC4F637803DEEFC96 /* CrashStoreManager.swift */; }; + 3AD3D29F2CC52A05A56F94C912F1E3E6 /* ShareReplayScope.swift in Sources */ = {isa = PBXBuildFile; fileRef = 67CCF16C0C7428C981576BBBC754A8AE /* ShareReplayScope.swift */; }; + 3B3B929A609B79FF25A300BA1900810E /* ControlEvent+Driver.swift in Sources */ = {isa = PBXBuildFile; fileRef = 21D90E7DE1BC82090A16646FBB4F387E /* ControlEvent+Driver.swift */; }; + 3B6337DFDE8F243FC631468501ACA929 /* JXCategoryIndicatorImageView.m in Sources */ = {isa = PBXBuildFile; fileRef = 6C403751EE35C06E541A8EBAC2E77BEA /* JXCategoryIndicatorImageView.m */; }; + 3BA78DA2A3253E017D4FFD7C71DC28C1 /* UIBarButtonItem+DDCategory.m in Sources */ = {isa = PBXBuildFile; fileRef = 1F1C4B4E67B828556FE6962DA9D4F7FF /* UIBarButtonItem+DDCategory.m */; }; + 3BC4CB80F5BFF7D7C5A7B88C2824CBC9 /* ConstraintLayoutSupport.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1D9687AA1E852042C96F69376DE09A17 /* ConstraintLayoutSupport.swift */; }; + 3C4C4676B214B4803B9422453FDEBEF9 /* InfiniteSequence.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1DB8FDD14E81F90CCFE85737A8CEC924 /* InfiniteSequence.swift */; }; + 3C805150E423EB13D4A9854E26314362 /* _OCLogStoreManager.m in Sources */ = {isa = PBXBuildFile; fileRef = A3640CEBA7C26A87777F2D7DA97B842C /* _OCLogStoreManager.m */; }; + 3C8FF04D497B4AC698E2C47A950371BE /* NSButton+Kingfisher.swift in Sources */ = {isa = PBXBuildFile; fileRef = C8C6A0E9075C77E2E92DCC7687A50D51 /* NSButton+Kingfisher.swift */; }; + 3CD9F65655D76EBEC391224B87A1CD5C /* EKRatingSymbolView.swift in Sources */ = {isa = PBXBuildFile; fileRef = CC52A57A4CEC6A2EDBD2AD86F404E42A /* EKRatingSymbolView.swift */; }; + 3CEF2AB7E4E1004AFC4AF6982584D4B0 /* IQKeyboardManager+UITextFieldViewNotification.swift in Sources */ = {isa = PBXBuildFile; fileRef = AD57A11EB2B76C8A3741B5718E7EC2B5 /* IQKeyboardManager+UITextFieldViewNotification.swift */; }; + 3D348CA499BF4165B757CDC06957C9A3 /* DDBaseCollectionView.m in Sources */ = {isa = PBXBuildFile; fileRef = B4AEB1B5A5C79F400C18536CA40D93BB /* DDBaseCollectionView.m */; }; + 3DF0B41E27A78AC25B9E44DB89DD5245 /* ZLEmbedAlbumListView.swift in Sources */ = {isa = PBXBuildFile; fileRef = E9B2C7AE73494811CABD819BB44BD0D5 /* ZLEmbedAlbumListView.swift */; }; + 3E655FB3DB35E5115300CB47894632FE /* UICollectionViewLayout+MJRefresh.h in Headers */ = {isa = PBXBuildFile; fileRef = 7A8CD8D8252849840933F64016F2954C /* UICollectionViewLayout+MJRefresh.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3EAEF4B368F4EED0EAF7E008DA2A3DDF /* OperationQueue+Alamofire.swift in Sources */ = {isa = PBXBuildFile; fileRef = AA94499BC907B49A79BD3CC4A18699FE /* OperationQueue+Alamofire.swift */; }; + 3ECD21C191F48DF934A14BFBEFCDEDA1 /* RxWKNavigationDelegateProxy.swift in Sources */ = {isa = PBXBuildFile; fileRef = DDA5D029FADCA717A01EFCC92C9B2B58 /* RxWKNavigationDelegateProxy.swift */; }; + 3F0E0B0CF3FDB7A022D1D11F6D9337A2 /* EKSimpleMessage.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4DC9B3B541475CAB7B9A9E50C27DD855 /* EKSimpleMessage.swift */; }; + 3F14B6922D87E3841178BFF2E80DFB0D /* DDControlsKit_Private-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = E13F5131442781696D57C3905C46D2FB /* DDControlsKit_Private-umbrella.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3F25CEB568F0EEF7AED4807D3FF0E803 /* DDBaseScrollView.h in Headers */ = {isa = PBXBuildFile; fileRef = 9BBEF715D8D1A518938D7F5BE4D173CE /* DDBaseScrollView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3F8C723EE7FB437DBE33A1722B154E1C /* MJRefreshBackGifFooter.m in Sources */ = {isa = PBXBuildFile; fileRef = 4C39AE9E680011386986EADBB25ECD28 /* MJRefreshBackGifFooter.m */; }; + 3FA9DD41FB19B38EFEE430E1314946E5 /* RecursiveLock.swift in Sources */ = {isa = PBXBuildFile; fileRef = DCDD1C5741D48D8964048641DA43DDF6 /* RecursiveLock.swift */; }; + 3FAB59E153214837A0EA3A5394A1208F /* OperationQueueScheduler.swift in Sources */ = {isa = PBXBuildFile; fileRef = E41D7B83FCFB9147B315800C262FEDB5 /* OperationQueueScheduler.swift */; }; + 401174B9915431D1988CA7A5655209B6 /* Utils.swift in Sources */ = {isa = PBXBuildFile; fileRef = 52535A185E1663138EBDAAD130F03ADA /* Utils.swift */; }; + 40202CC4CB91A4A729A917633E10BF57 /* NSDate+BRPickerView.h in Headers */ = {isa = PBXBuildFile; fileRef = 1435090B5A923B9AAD07D69FF436ADF2 /* NSDate+BRPickerView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 404D73B62041963EC4450B7A89DAAC5F /* ZFPortraitControlView.m in Sources */ = {isa = PBXBuildFile; fileRef = 535348DC69977225D375E88E6B5E825B /* ZFPortraitControlView.m */; }; + 40672E95E085994AE6C6433A1C920629 /* RxTableViewDelegateProxy.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3C580E70D2C0C22659160DB7223DFDE7 /* RxTableViewDelegateProxy.swift */; }; + 40A92AC669718DA6968E582A45EB1CA1 /* ZFKVOController.h in Headers */ = {isa = PBXBuildFile; fileRef = E6A852049D7E264C2E29D98566B322FD /* ZFKVOController.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 40C3B6DBA22BFF1D1D9567FF37AB5F6B /* ZFPlayerGestureControl.h in Headers */ = {isa = PBXBuildFile; fileRef = 4AC30B085F0B4F562CE8CBC5430A7DA6 /* ZFPlayerGestureControl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 40F2CA926703952BC89606434244EBDA /* UIView+DDCategory.m in Sources */ = {isa = PBXBuildFile; fileRef = 4FC5CB9F275E6CF7617C64CCF4B28785 /* UIView+DDCategory.m */; }; + 41059F915B18E0CB45B19BAFC3D68466 /* Map.swift in Sources */ = {isa = PBXBuildFile; fileRef = E5C14560972FBDF5DB6B731628A50F15 /* Map.swift */; }; + 41459EE95CC38E99AE6A3C039CB78DBB /* ConstraintMakerPrioritizable.swift in Sources */ = {isa = PBXBuildFile; fileRef = D9FE7C477A1AEE3F62DAA92AADBC20DB /* ConstraintMakerPrioritizable.swift */; }; + 4149DEA12F831870EBA85E56F508C5EE /* KingfisherManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = AD877BC374814EF28FC6FFD0ABA87357 /* KingfisherManager.swift */; }; + 4189DC9D2E47F7BBAA2C6048B475C212 /* UIScrollView+MJRefresh.m in Sources */ = {isa = PBXBuildFile; fileRef = CC659306530C8EB873C85F2CB942F879 /* UIScrollView+MJRefresh.m */; }; + 4221F513DCBCCEBB76A4C8F4E7036821 /* ZFFloatView.h in Headers */ = {isa = PBXBuildFile; fileRef = 329983FBAD877C72DFDC31213FCB950D /* ZFFloatView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 44753C60B4D6B5F8146603BD1F4E8AD9 /* RxRelay-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = A8405D993F2FBB7314733B9735BEFB8F /* RxRelay-dummy.m */; }; + 4478BAB5080B6B195E5EFEEBBFB83C26 /* UILayoutSupport+Extensions.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4CB2872B50027A5362E7396690011FA5 /* UILayoutSupport+Extensions.swift */; }; + 44BE7CF753A124327188F4E7831C563E /* ZLImageStickerView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2A758DA2AB2E74B049A5AA789BA8EFA2 /* ZLImageStickerView.swift */; }; + 44F712870D9007120D6683833C9B2B9D /* ObservableConvertibleType+Driver.swift in Sources */ = {isa = PBXBuildFile; fileRef = FA15BD1A80854EA94FCF71653D8AAA8B /* ObservableConvertibleType+Driver.swift */; }; + 453CA282E8B6BD662FB3AE2158C06334 /* ConstraintPriorityTarget.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9105470BCF7DC649E75F200161404493 /* ConstraintPriorityTarget.swift */; }; + 454EFBB65314EF0DCC98FD780F2BD39F /* NSMutableAttributedString+DDCategory.m in Sources */ = {isa = PBXBuildFile; fileRef = 298419DB3264DE676E6D8F2EC86D9782 /* NSMutableAttributedString+DDCategory.m */; }; + 4580678643F509D5C5A1EA00A6D1E2E5 /* JsonViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = F59BDF168F05078C91584ED7B66DDCDB /* JsonViewController.swift */; }; + 45A7BB38A23DCE2BBDF9DBC31762AB6E /* DDCollectionView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4BBC08FAD68A88F7287A05E04191DB04 /* DDCollectionView.swift */; }; + 45AD6B75F275078A076C8C2AC0AEF3F2 /* _OCLoggerFormat.h in Headers */ = {isa = PBXBuildFile; fileRef = ED9DAB700B164AD30E46AC170A2410A4 /* _OCLoggerFormat.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 45B9C8034DCB889E2A9684B1575C0302 /* RequestTaskMap.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2C269B70B5D9AC322070A70CC295C1B3 /* RequestTaskMap.swift */; }; + 45BDEE325F985EF8FC1B7DBE96AA34FD /* AnimatedImageView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 32C94E2EE6DAE9656DA7E84EEBAF76FB /* AnimatedImageView.swift */; }; + 45F9D728BAE9F638623421AAB12B8D40 /* JXCategoryView-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = B64EFDD65AF527B07AEF522F73A08104 /* JXCategoryView-dummy.m */; }; + 460F8947297FC4397B1D875F02806E7C /* IQInvocation.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0C6F7393CC8AD88E9D891C769ED4EC7B /* IQInvocation.swift */; }; + 46154B5C978C40E38F632E84A722340C /* RetryStrategy.swift in Sources */ = {isa = PBXBuildFile; fileRef = E4DA8D91FB87D406E77171D65F72C57C /* RetryStrategy.swift */; }; + 465AC4C4CEE137C694249FF5E1AC1428 /* NetworkReachabilityManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2AF5CBD0F440D679D5565588C8E49813 /* NetworkReachabilityManager.swift */; }; + 468759B13956FCF87474540A09952817 /* ConstraintConfig.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7DD170FE2ECE1E7F75E303AA26DD6E97 /* ConstraintConfig.swift */; }; + 4690B5BEF425FE58E310764CBB422CBB /* SubscriptionDisposable.swift in Sources */ = {isa = PBXBuildFile; fileRef = EEDFEA33A7688A71A56B3EEF2632C4AC /* SubscriptionDisposable.swift */; }; + 46C84A13FE65FF4521A9C7CFC0253306 /* Take.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0321E7AA98ABD7E09C1C01CFC3053FDA /* Take.swift */; }; + 472F8FCDC5BC7F210FC411D907EA5B04 /* RxSearchControllerDelegateProxy.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0865F93AD66982530A1413C5A2C358B5 /* RxSearchControllerDelegateProxy.swift */; }; + 4735F0E5E435DA829FAD6163F41B9040 /* UIImage+DDCategory.h in Headers */ = {isa = PBXBuildFile; fileRef = 82E6F31C3073965ACF67B7389CEED675 /* UIImage+DDCategory.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 473DC3EDDA5D8D61693615EC038FC07E /* IQKeyboardManager+Position.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3E06F7AD43325CC196622ABD56CA4788 /* IQKeyboardManager+Position.swift */; }; + 4769FD52CFFFD7BC65324803AF92E251 /* UIImage+GIF.m in Sources */ = {isa = PBXBuildFile; fileRef = 46C780FE152BBEB2B11F25B2C425DBC2 /* UIImage+GIF.m */; }; + 47BEA6378E98FAA936CA74A1CF418638 /* DDMATrackManager.m in Sources */ = {isa = PBXBuildFile; fileRef = E57AB064DC34008DD9440843B004AE82 /* DDMATrackManager.m */; }; + 47BF292BED32B4CB98575907A2835570 /* EKAttributes+WindowLevel.swift in Sources */ = {isa = PBXBuildFile; fileRef = B1AB19BB6BCF3CDF844264D6259694C1 /* EKAttributes+WindowLevel.swift */; }; + 47DAE2836C45A5B08B4895539E604A86 /* EKAttributes+StatusBar.swift in Sources */ = {isa = PBXBuildFile; fileRef = C64F39A898567835EC977200F9FFA544 /* EKAttributes+StatusBar.swift */; }; + 47E86D73AEFCECBD1B7CC80D731AEE4D /* Toast.swift in Sources */ = {isa = PBXBuildFile; fileRef = AC924CF8BAE0BC9DBACD42D4305CFFDF /* Toast.swift */; }; + 4837AF95FFD6CA0856F8AD4F6DAE8654 /* EKAttributes+Animation.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6E52FBDBD1EFD397A82EC84F790ABF50 /* EKAttributes+Animation.swift */; }; + 483F31C4AFEAD5AEA2BE3274CD7903A1 /* CocoaDebug.swift in Sources */ = {isa = PBXBuildFile; fileRef = D306A841BCA7CA90D31C854E3CCCBCA3 /* CocoaDebug.swift */; }; + 4894E4D5C6F065C87B6082AB282FBCD0 /* JXCategoryBaseView.h in Headers */ = {isa = PBXBuildFile; fileRef = 44ED3B33960CA6B7C6C5A4FACABF8E64 /* JXCategoryBaseView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 48E7DCB6E428A49B7F67718744D73D96 /* JXCategoryTitleCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 54D32FCF006486CCCB22D3B44A05B109 /* JXCategoryTitleCell.m */; }; + 49215BC028DEFB8A85C77A5C55464936 /* ZFNetworkSpeedMonitor.m in Sources */ = {isa = PBXBuildFile; fileRef = EF0D9F411C0AE8266539CC3C372C5FD0 /* ZFNetworkSpeedMonitor.m */; }; + 492B6B0A047A031C08B940A6E8746A37 /* ZLAlbumListController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0354999CC73AEBB06AAB20526A5CA34C /* ZLAlbumListController.swift */; }; + 4944814C2CFC6492C4FE1664F1556012 /* MJRefreshBackFooter.m in Sources */ = {isa = PBXBuildFile; fileRef = EA5D274A04F6108037B90C8A9C3E05FF /* MJRefreshBackFooter.m */; }; + 4978E0D1068588E192054C53AEC53178 /* ZLProgressHUD.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8998210DD053A5D1D1BC93BBB932A43E /* ZLProgressHUD.swift */; }; + 499AE8C69C3BAAE93EB6AA204B2B6C4B /* Source.swift in Sources */ = {isa = PBXBuildFile; fileRef = A26C5BC7A7F4B251BA5907775BA16F7D /* Source.swift */; }; + 49A13CA2C01B33D402D04B3A5D6C9868 /* JXCategoryListContainerView.h in Headers */ = {isa = PBXBuildFile; fileRef = 8945C46CA45EE4320C007CF174997464 /* JXCategoryListContainerView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 49AD1F5C93F625FDD0396BB29256DC4E /* BRPickerStyle.h in Headers */ = {isa = PBXBuildFile; fileRef = 49DCAF1A4596E4ED086FAA5BA57FD9BA /* BRPickerStyle.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 49E04A4A0E8FF02F235F055751F78D2C /* ZFUtilities.m in Sources */ = {isa = PBXBuildFile; fileRef = 9936F0CB3A63B5AACBC54AB5F3DBB50A /* ZFUtilities.m */; }; + 49F57411DBC9FAE893C1030240982DBA /* DDAttributedString.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1F9C3228751941592E307E6795FC420D /* DDAttributedString.swift */; }; + 49FC51FBE1A0B635FCEA16835DA50665 /* ZLLanguageDefine.swift in Sources */ = {isa = PBXBuildFile; fileRef = 82B5BC0A08A3DEF74E8E225B365F9B6C /* ZLLanguageDefine.swift */; }; + 4A6F9FC73B3C2B02F852F366EE4C7C18 /* _SwiftLogHelper.swift in Sources */ = {isa = PBXBuildFile; fileRef = D3BEE0CC8874A662DC27CD4C64EAB17E /* _SwiftLogHelper.swift */; }; + 4A8F9A8B49197EDB6BEE9D75691A19D4 /* DDBaseSwitch.h in Headers */ = {isa = PBXBuildFile; fileRef = E7934C14ECEE2E432FB7E210C8A217F8 /* DDBaseSwitch.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4A9952FE9361ABA5CE30F3C7D50C23DE /* JXCategoryTitleVerticalZoomCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 4B783ABC741949A4EA09C8C41113E934 /* JXCategoryTitleVerticalZoomCell.m */; }; + 4B44116FE13450D08B053764A8784FDF /* BRAddressModel.h in Headers */ = {isa = PBXBuildFile; fileRef = 001670712EC3F2A39EE721735EBB25FA /* BRAddressModel.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4B4B54D7FA293257F7AD4D2285BD1B1D /* Deferred.swift in Sources */ = {isa = PBXBuildFile; fileRef = AC2AFF5B1F5931BBB145A36A7230F595 /* Deferred.swift */; }; + 4B4D666DF746D313FA6D34C257BA6F14 /* SchedulerType+SharedSequence.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0C4D2774C483DD40D57C7FA3D2C8D22E /* SchedulerType+SharedSequence.swift */; }; + 4B5C6452A3F186A1CB523C87F86F70E3 /* DDMAMapKit_Private-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 68DEB07C34FF02A890E823A9417987D8 /* DDMAMapKit_Private-umbrella.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4BBD6EF71B6DCE3390974D23D5BE77AD /* ZFPlayerController.h in Headers */ = {isa = PBXBuildFile; fileRef = BF96E3F481C639A2E06DFAE3D8514335 /* ZFPlayerController.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4BDE28396F6AE3DAA0162DC8B2219EC3 /* SDImageCachesManager.h in Headers */ = {isa = PBXBuildFile; fileRef = D596FA74EF08E061C4F7568AA37A7A2C /* SDImageCachesManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4BF15DFA87A4B16CC27A4F9CD8E040AD /* Filter.swift in Sources */ = {isa = PBXBuildFile; fileRef = E10C81639BD9F91018F21C1643FF284C /* Filter.swift */; }; + 4BF3D618B71976F90930E1A677821797 /* DDBaseCollectionViewCell.m in Sources */ = {isa = PBXBuildFile; fileRef = A802EBBFE0DB4719EE1AA04DA981AF33 /* DDBaseCollectionViewCell.m */; }; + 4C17BF734DA9B2178A5559DBA608A2BB /* EKRatingMessageView.swift in Sources */ = {isa = PBXBuildFile; fileRef = EC82167D0BCE09742276BE1C86733EB6 /* EKRatingMessageView.swift */; }; + 4C2639391DD5A48C68DC1760F913E007 /* RetryPolicy.swift in Sources */ = {isa = PBXBuildFile; fileRef = 599B656FFA3EE132DADACAA7C57B2D69 /* RetryPolicy.swift */; }; + 4C348248E0AF0A89848D5B0F230F661E /* Enumerated.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5D65C497D6018CB8961CDA6B873E4947 /* Enumerated.swift */; }; + 4C5E0A7762C6E0E8295E1D7F4FD4F68D /* UIImage+Transform.h in Headers */ = {isa = PBXBuildFile; fileRef = F764AD157B7427700B8719B4F001290D /* UIImage+Transform.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4C82AED59F383C3408C246EDDA1A4392 /* ZLPhotoPreviewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = C9A45BD2674AB179D8018709758B0E2A /* ZLPhotoPreviewController.swift */; }; + 4C82C4208C3EA3DE13F014C1F7D1E467 /* ConstraintRelatableTarget.swift in Sources */ = {isa = PBXBuildFile; fileRef = DE1ED2E8456BC345655EC3967740572C /* ConstraintRelatableTarget.swift */; }; + 4CC51E277DCF7D480D5DA4C9C0BB0C37 /* HTTPMethod.swift in Sources */ = {isa = PBXBuildFile; fileRef = 360CEE83C789BD6E990B39DA6D2726B4 /* HTTPMethod.swift */; }; + 4D2FE02184346B6011DA8B227AA2CD00 /* UIImage+ForceDecode.h in Headers */ = {isa = PBXBuildFile; fileRef = 85556FEB6174ABDF6D575CABD3EEB8C0 /* UIImage+ForceDecode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4D8A94DF58E15F8FB36D139189A399ED /* NSData+ImageContentType.m in Sources */ = {isa = PBXBuildFile; fileRef = 8E017F6AC983A387FFD2ED02D2A6EAEF /* NSData+ImageContentType.m */; }; + 4D981AB9F0FB6AADA0A3BB5D61D1E0EE /* UIColor+Hue.swift in Sources */ = {isa = PBXBuildFile; fileRef = E419746B6787458E132201D919607174 /* UIColor+Hue.swift */; }; + 4DBBAF563C9995081D90F7AD834E828D /* SDWebImageDownloaderConfig.h in Headers */ = {isa = PBXBuildFile; fileRef = F01FFDEB2A75E22E3705146498D2812E /* SDWebImageDownloaderConfig.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4DC4192E75B5FFB54CA793299C8C0388 /* RxPickerViewAdapter.swift in Sources */ = {isa = PBXBuildFile; fileRef = E13C0903A86C8953246BBB6DDD2F56E8 /* RxPickerViewAdapter.swift */; }; + 4DDB024748C44347C7CD40486F0603F4 /* ZFPlayer.h in Headers */ = {isa = PBXBuildFile; fileRef = 9EA66F5FAE74501193119915AEFFBEED /* ZFPlayer.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4E03FB03B1DA8D48DC016F7E7814CAF4 /* DDNavigationControllerDelegateReceiver.m in Sources */ = {isa = PBXBuildFile; fileRef = E92533FE6B06397CB43DBCD84123B54A /* DDNavigationControllerDelegateReceiver.m */; }; + 4E4AF01A91C2B8F1EEA12F979D3A2C65 /* ZFLandscapeWindow.h in Headers */ = {isa = PBXBuildFile; fileRef = 82A223221C2F8D6153F886C7CDE69CCA /* ZFLandscapeWindow.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4E6ED858E553301ADEE0B2BE45956A17 /* SnapKit-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 38FCBB4F18C243D222179DF654AF8679 /* SnapKit-umbrella.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4EA41674EE6BE0E1D0DA737402D1630C /* DDBaseNavigationController.h in Headers */ = {isa = PBXBuildFile; fileRef = 6049EB3C1E55B8B0F364D28E15B8683E /* DDBaseNavigationController.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4EEC0EBED6B81827D25B5C1524A516F5 /* ZFPlayerLogManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 93CA458AB4644D2FB617AEB32BB3086B /* ZFPlayerLogManager.m */; }; + 4F1525CECA0C94C49413C43841330C56 /* SDImageCacheConfig.h in Headers */ = {isa = PBXBuildFile; fileRef = 76F9E81D173F62FCFBBF4B63AFF94B8C /* SDImageCacheConfig.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4F5B2864DC6384E5B6AF98425B6F5CAB /* SDImageAssetManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 6F3CBC1012A6E0E7B73568B8D4230DEF /* SDImageAssetManager.m */; }; + 4FB8B880680D9711B70C98FCE307824A /* SDImageLoadersManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 36F3170C8D5837A9BE35753E4F4BD1C8 /* SDImageLoadersManager.m */; }; + 506680E7DA2EDF6F1137BB73C5454B88 /* MJRefresh-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 61AB5AFE42795F73512435F249E2AD35 /* MJRefresh-umbrella.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 508DA7803FB732375E4691EF6FA63054 /* BRAddressPickerView.m in Sources */ = {isa = PBXBuildFile; fileRef = 56C5D14F912A842FD12DCB662E1DDD4A /* BRAddressPickerView.m */; }; + 50D3A5077F69D392E21AC93A13593F04 /* Completable+AndThen.swift in Sources */ = {isa = PBXBuildFile; fileRef = B52C260CC2661C41EEF0F0AB4049195B /* Completable+AndThen.swift */; }; + 50E5B5685106D613C42AF4823B04F21D /* ZLPhotoUIConfiguration+Chaining.swift in Sources */ = {isa = PBXBuildFile; fileRef = DBBD2ED3AF3275E2FFD63AB752166430 /* ZLPhotoUIConfiguration+Chaining.swift */; }; + 5114F231D82CFA8BF22620F26EF6814B /* NSView+Rx.swift in Sources */ = {isa = PBXBuildFile; fileRef = EA2A270EAFA4BFA26D028A5FBEC6B967 /* NSView+Rx.swift */; }; + 513FE85C9A497C2C8E648FDDE863176F /* SDWebImageDownloaderRequestModifier.m in Sources */ = {isa = PBXBuildFile; fileRef = 0A0DB0AD13396C9C8A354BA610385E1A /* SDWebImageDownloaderRequestModifier.m */; }; + 514A60DD5A2A363D5DB970088D708CD2 /* JXCategoryImageView.h in Headers */ = {isa = PBXBuildFile; fileRef = 6F589AC376249AD8CC5716518A2E49EA /* JXCategoryImageView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 514BEB68DD25CD39127BFAB4DB631F8D /* BRPickerView-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 20BF68D249255CBA5924A370AFFF23A3 /* BRPickerView-dummy.m */; }; + 5156C44E75B863408EFF58D5122EF918 /* ZFPlayerView.h in Headers */ = {isa = PBXBuildFile; fileRef = D72722D1F42CF12E6DA94E811D24013A /* ZFPlayerView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 517CC3C405F8FB3E69BC2019D081906E /* UIImage+ExtendedCacheData.m in Sources */ = {isa = PBXBuildFile; fileRef = 5C65A129C77BBDBDE9D6B9E712B97E16 /* UIImage+ExtendedCacheData.m */; }; + 51B1ACEE71E3EF376A4BF50397B41D38 /* CocoaDebug-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = F46E7A0D25F83AAACAC784FEFAA65D51 /* CocoaDebug-dummy.m */; }; + 52811ECF6A4AECB259DCD6139A9C17C9 /* ZLPhotoPreviewSheet.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5D694D7909F723613936603B94F11155 /* ZLPhotoPreviewSheet.swift */; }; + 52AFC14AC760BB77AF34688FDF206DCF /* DDBaseTextField.m in Sources */ = {isa = PBXBuildFile; fileRef = 89E65059DD26BEDB9ACB3A53A6691A18 /* DDBaseTextField.m */; }; + 52B6AD3595C3CADA5ACAA84C53EF2323 /* UISegmentedControl+Rx.swift in Sources */ = {isa = PBXBuildFile; fileRef = 287776366F66CE2E5C743C88821272D7 /* UISegmentedControl+Rx.swift */; }; + 52B774D7072085206C19EC4A96BF8406 /* DriveRouteCustomAnnotationView.m in Sources */ = {isa = PBXBuildFile; fileRef = 40922C117E6DB24EF727229B3A2BFF5D /* DriveRouteCustomAnnotationView.m */; }; + 5309B438474D04047CBBDB0FC6AE73E9 /* UITableViewCell+DDCategory.h in Headers */ = {isa = PBXBuildFile; fileRef = 9F96EF579F4EDC48AB2ED1BF614276D9 /* UITableViewCell+DDCategory.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 53D0DD3116769FE07CFC7ADE43F01964 /* ImageDataProcessor.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9FF05B609FF47FA0271362F923DB98E0 /* ImageDataProcessor.swift */; }; + 5438FFCF831F3BB3B5412D88B073DD37 /* TakeLast.swift in Sources */ = {isa = PBXBuildFile; fileRef = 87604FE5B385C7F20163074019BA899C /* TakeLast.swift */; }; + 543A518F944EE3960CD44E39799C215E /* GroupedObservable.swift in Sources */ = {isa = PBXBuildFile; fileRef = A177407DF2A68887C28973E169D3E834 /* GroupedObservable.swift */; }; + 5442DB01C93D4C933C1A8CBBFC13F690 /* JXCategoryTitleVerticalZoomView.m in Sources */ = {isa = PBXBuildFile; fileRef = 99FC94EB81606499CDD006F8A2C7E374 /* JXCategoryTitleVerticalZoomView.m */; }; + 549041348A1519CA04813ED794CFBB8A /* ObservableConvertibleType+Infallible.swift in Sources */ = {isa = PBXBuildFile; fileRef = 181754F8C4EE544D7FEB2F35942336C6 /* ObservableConvertibleType+Infallible.swift */; }; + 549B1CF5542E8E21F2710BA821DC2899 /* JXCategoryTitleView.m in Sources */ = {isa = PBXBuildFile; fileRef = FFFC3E30B1DB33AE5968EE45AD733CA8 /* JXCategoryTitleView.m */; }; + 553557576B5E9692059EB76EB9EDB6B4 /* DDZFPlayerKit_Private-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = FBAEF947E6FFA260FA85B1A061252448 /* DDZFPlayerKit_Private-umbrella.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 554B4A9EB7B0115AA40713C45D0ABF3A /* IQPreviousNextView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 928AABAF40B7C8B285DF82C6F61F590E /* IQPreviousNextView.swift */; }; + 55542DF3923B1577294CB4F256C5D9D3 /* ConstraintMakerRelatable+Extensions.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7AFBAC2D7F0D9F84498D6786687D58ED /* ConstraintMakerRelatable+Extensions.swift */; }; + 555ADDD160E4DB9DCE0AABDD6978609F /* _RX.m in Sources */ = {isa = PBXBuildFile; fileRef = EE0142B9B3DD02DE5EAF77678B98478A /* _RX.m */; }; + 555D64D559041A2F1743073FBDA7F769 /* MultipartUpload.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5D314021445F46A89EB836122570740A /* MultipartUpload.swift */; }; + 55737CE468E09E45D9E5BE279A3100C8 /* SDWebImageIndicator.m in Sources */ = {isa = PBXBuildFile; fileRef = 8727818346C8A099475F5E3F4E881B15 /* SDWebImageIndicator.m */; }; + 56AA1FB915E6D167A106C0F9CF316EA6 /* ZLPhotoBrowser-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 6BDF0C722EFCEDA51D2DE37EDAE0B8F3 /* ZLPhotoBrowser-umbrella.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 56AF9AC7753012A5318390344FAD5C43 /* RxSwift-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 001B5A145650D07E23B883A59B4EC6A2 /* RxSwift-umbrella.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 56D08DCE4BFC873FBB9B1355F514D581 /* SDWebImageOperation.h in Headers */ = {isa = PBXBuildFile; fileRef = 23DAFF480155F8321A62D048F6E5AE12 /* SDWebImageOperation.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 57001D4C5C8C819680182BBEDD045210 /* NSMutableParagraphStyle+DDCategory.h in Headers */ = {isa = PBXBuildFile; fileRef = 1E8570CECB13FD9D28F0F1B3FD573289 /* NSMutableParagraphStyle+DDCategory.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 570D150531BA02EEB383A3F40CEDB5A2 /* ControlEvent.swift in Sources */ = {isa = PBXBuildFile; fileRef = CD31EE58FAAF33885501B7534A0A5F6F /* ControlEvent.swift */; }; + 572831DA48D81784ACF3A8EF8D29C07C /* ZFUtilities.h in Headers */ = {isa = PBXBuildFile; fileRef = CE40EFCA5E24E01C8DFAC18FD04439ED /* ZFUtilities.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5739B5F79D9CC33CE6A6E49CF08BE143 /* SDWebImageDownloaderDecryptor.m in Sources */ = {isa = PBXBuildFile; fileRef = A48CA6D419834493D1B0C158221B77BD /* SDWebImageDownloaderDecryptor.m */; }; + 57E8D5E0BFF775DCF361333A12294278 /* EKContentView.swift in Sources */ = {isa = PBXBuildFile; fileRef = C9DE856E97844E4F2991B0892C57581C /* EKContentView.swift */; }; + 5819706F842D73572780E43AB818627A /* Observable+Concurrency.swift in Sources */ = {isa = PBXBuildFile; fileRef = 284A75AE5C0CC6970B534ABE1C67EE62 /* Observable+Concurrency.swift */; }; + 582FFE687F7D0BA7FD06B9BBA94BFCBA /* AsMaybe.swift in Sources */ = {isa = PBXBuildFile; fileRef = F167BD4562E990B35130F5333EA5DFD5 /* AsMaybe.swift */; }; + 58331B6BF8493E4C276191285440557E /* MJRefreshAutoStateFooter.m in Sources */ = {isa = PBXBuildFile; fileRef = 5BE5AB6C5643DEF48DE292EEF1927886 /* MJRefreshAutoStateFooter.m */; }; + 58360B9BFCF65CB1EFBB3873EB56F9FB /* ConcurrentDispatchQueueScheduler.swift in Sources */ = {isa = PBXBuildFile; fileRef = D1A005411876EDC6C9C2015937E1E713 /* ConcurrentDispatchQueueScheduler.swift */; }; + 58E91C61B835DFF9D17760CB57DD5DC2 /* DDAudioService.swift in Sources */ = {isa = PBXBuildFile; fileRef = 718279146D62E5B3A48236C049B84C3B /* DDAudioService.swift */; }; + 591C74189843C4755BD2E31E4F50431D /* MJRefreshAutoFooter.h in Headers */ = {isa = PBXBuildFile; fileRef = B1E17C13B228D3BDF62DAC203000AF07 /* MJRefreshAutoFooter.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 595FA9CCDC2A709BD7F736107DA2C4D6 /* JXCategoryNumberCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 37D0DF42DE1CEFCC64AC88DD216A6C15 /* JXCategoryNumberCell.m */; }; + 59AD90C47AA6A1B76832CD3C27A9B6A3 /* JXCategoryIndicatorRainbowLineView.h in Headers */ = {isa = PBXBuildFile; fileRef = 1397F9A8F26829E996CBAFD9780265E9 /* JXCategoryIndicatorRainbowLineView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 59BD2227EB120EC449508CB3D8E7E79A /* ZFPlayerLogManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 3B63735627CA290063CB5E994F5666AF /* ZFPlayerLogManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 59C5783B784DB34A1CD230CBF50FEEBE /* ImageFormat.swift in Sources */ = {isa = PBXBuildFile; fileRef = 307E5CB92817A8ED6BA1C343E10F7710 /* ImageFormat.swift */; }; + 5A39B661FA21224A9D6CA34CAD3D5FFB /* GroupBy.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7BC6379377846296741D8F2DBA0420E0 /* GroupBy.swift */; }; + 5A58A1ED6AC294EA3F65053CDCAB2C6C /* ConstraintLayoutSupportDSL.swift in Sources */ = {isa = PBXBuildFile; fileRef = FEA7381A1C2E782A13B424939A0EEF97 /* ConstraintLayoutSupportDSL.swift */; }; + 5AA2F6E5C7D736F0CCA9894A3E37C8D1 /* DDWebImageKit_Private-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 9CC0095EB0AACCD79BCAF9F7A67F8BA7 /* DDWebImageKit_Private-dummy.m */; }; + 5AA6E372FD287BFF49666188CEE90926 /* DDMAMapKit_Private-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 36A9D32740BEA1CB5E550A866B76C477 /* DDMAMapKit_Private-dummy.m */; }; + 5ADE1ADD5C89879BE23532A77F88DB88 /* EKAlertMessage.swift in Sources */ = {isa = PBXBuildFile; fileRef = D766108C63302794A10BCB54AC1C5EFB /* EKAlertMessage.swift */; }; + 5AE8F724467F0E9ECAC1B50FAEC91D67 /* JXCategoryIndicatorBallView.h in Headers */ = {isa = PBXBuildFile; fileRef = FABC49B157490BAC18D3C871805EF0D2 /* JXCategoryIndicatorBallView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5B033DDDC44B06AA233FF487E3C410DF /* EKStyleView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9F4B5C69DF4E0E0C4F8D831E5D9B64F3 /* EKStyleView.swift */; }; + 5B07C22BDAA7425C4CCC629868E0072A /* UIImage+Metadata.m in Sources */ = {isa = PBXBuildFile; fileRef = 82BE74368C5F2A7F242BD28BC371113A /* UIImage+Metadata.m */; }; + 5B0E5DFA3D2B5834D9DBC91A8220F9E0 /* ZFPortraitControlView.h in Headers */ = {isa = PBXBuildFile; fileRef = D96CA72F567147EB6E41400EF7D697CD /* ZFPortraitControlView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5B8EC4C5155A775D8C9BE1E45713804E /* UINavigationBar+DDCategory.m in Sources */ = {isa = PBXBuildFile; fileRef = 49E4740F6C53E2191910BD1908F10E61 /* UINavigationBar+DDCategory.m */; }; + 5BBF2E718CCA06ABC22203877EA4EC3E /* HTTPHeaders.swift in Sources */ = {isa = PBXBuildFile; fileRef = 947F55F30D11F3E36E2B4452C9BD0D3A /* HTTPHeaders.swift */; }; + 5BD01F6B16A2C9E69F756F4DE189E349 /* JXCategoryImageView.m in Sources */ = {isa = PBXBuildFile; fileRef = 4F533F263F48E7D87B9E1DCE7A09023B /* JXCategoryImageView.m */; }; + 5BD480DEE18371740D7AF036D85B8B90 /* DriveRouteCustomAnnotation.m in Sources */ = {isa = PBXBuildFile; fileRef = EA6365C4F324615A4DDE097A49262F0B /* DriveRouteCustomAnnotation.m */; }; + 5C30F361915F5ECAC7CA86D55EE7E25A /* MJRefreshBackNormalFooter.h in Headers */ = {isa = PBXBuildFile; fileRef = 56CF2367E46E9B8A208D597A19F48981 /* MJRefreshBackNormalFooter.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5CA68B859A6EDF62B0C3B3217D469CA4 /* DDProgressHUDKit_Private-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 89E8CEAD7125DDEEF35DA8CF303F232A /* DDProgressHUDKit_Private-umbrella.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5CCD552354B88211EB9488550C4F4DB4 /* SDAnimatedImageView+WebCache.m in Sources */ = {isa = PBXBuildFile; fileRef = A49ADC338F975C5324DFB40BCAB21952 /* SDAnimatedImageView+WebCache.m */; }; + 5CFC8F3DFFA340EEFD415372644734C5 /* ZLCustomCamera.swift in Sources */ = {isa = PBXBuildFile; fileRef = DF6F453087254DD657F3996143CB98D1 /* ZLCustomCamera.swift */; }; + 5D048ECBE3D46ABC5B880F766ED23A21 /* JXCategoryBaseView.m in Sources */ = {isa = PBXBuildFile; fileRef = 3FAC430F7F2D9F2BB5ADA5439647269D /* JXCategoryBaseView.m */; }; + 5D0EEB77D1FE5B6445B93FFE286B925A /* JXCategoryIndicatorDotLineView.h in Headers */ = {isa = PBXBuildFile; fileRef = 0D0933D2DFD38420FF30CCE915C8FC72 /* JXCategoryIndicatorDotLineView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5D95845B57B041E714876AF930C152CB /* UISwitch+DDCategory.m in Sources */ = {isa = PBXBuildFile; fileRef = 830B287A501B729E708153F84BC72EE3 /* UISwitch+DDCategory.m */; }; + 5DA078BF9515B566F0C538010C15D611 /* URLSession+Rx.swift in Sources */ = {isa = PBXBuildFile; fileRef = 530175BFF8701244D4260BC4F03976BB /* URLSession+Rx.swift */; }; + 5DBA4BCC87AB8C3BEFCA6D21552260A5 /* SwitchIfEmpty.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8B5DB959E7B45734C2E80C8B012D2D79 /* SwitchIfEmpty.swift */; }; + 5E6140C0CD3517DED7F81D9D8046F3D0 /* SDWeakProxy.m in Sources */ = {isa = PBXBuildFile; fileRef = 3C26C9777A52A2C7A6AD2245879B5B0B /* SDWeakProxy.m */; }; + 5E712306EE9654B516F97F7D39C85A73 /* _ImageResources.h in Headers */ = {isa = PBXBuildFile; fileRef = FC17DCA805CCC35691BD7180B96E98EF /* _ImageResources.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5E7A464CE33E69850BCE733A7778D05B /* Just.swift in Sources */ = {isa = PBXBuildFile; fileRef = FE177EE9D3B004EB6733D61957F9262D /* Just.swift */; }; + 5EA777A6657B7ECC8AFAF720B0B24B9F /* DDMANaviManager.h in Headers */ = {isa = PBXBuildFile; fileRef = BAF4523FFDDA5013C324C919671D9684 /* DDMANaviManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5EB60C74FFA757B7BFF385DE7F855FB7 /* MJRefreshTrailer.m in Sources */ = {isa = PBXBuildFile; fileRef = 3C15C806DA298DEF1678708531293300 /* MJRefreshTrailer.m */; }; + 5EC7100C59695117247691D4451480AF /* DDBasicControlsKit_Private-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 88F1A1C94F3F0F671B170D9A362E330B /* DDBasicControlsKit_Private-umbrella.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5F172DCB05EC615065B7C37575150F22 /* ESTabBarItemContentView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1C6C04C12611787799662F133D93D97A /* ESTabBarItemContentView.swift */; }; + 5F1C7258F522482F3A539044593738D1 /* SerialDisposable.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3DD0591BF7533C0451E6D3CAEAD03055 /* SerialDisposable.swift */; }; + 5F947C782C4BB4A5AD404E347D308478 /* Queue.swift in Sources */ = {isa = PBXBuildFile; fileRef = C9287B66111039EF4CEC9E0D009D7A25 /* Queue.swift */; }; + 60242D2DBA2A56C8762E257852AED02C /* ZFPlayerView.m in Sources */ = {isa = PBXBuildFile; fileRef = 0DFE48E73B23483F42A0E13D844195FD /* ZFPlayerView.m */; }; + 60321424038D6730A0AD53BCF60F0127 /* ZFPersentInteractiveTransition.m in Sources */ = {isa = PBXBuildFile; fileRef = B1688599AD0A21C13B9A963E91AA6AEB /* ZFPersentInteractiveTransition.m */; }; + 603CEC5773E4B2356F096AB5BE1AA1D9 /* BRPickerView.h in Headers */ = {isa = PBXBuildFile; fileRef = E6A168A1C4ABF7EC11E76676EAFBCCB0 /* BRPickerView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 60DDEEB9DF2E9BF439AAAD617D7DFDCB /* RxPickerViewDataSourceType.swift in Sources */ = {isa = PBXBuildFile; fileRef = B2E7E72E88CC2B6EEB746997AA5CAB93 /* RxPickerViewDataSourceType.swift */; }; + 61185B153F4FCD3160D48208289515FC /* JXCategoryCollectionView.m in Sources */ = {isa = PBXBuildFile; fileRef = 92672863ED1E4EF1978E9E35CAD9FBE5 /* JXCategoryCollectionView.m */; }; + 6146A0BE66054B092DCD9C8642C58988 /* UINavigationBar+DDCategory.h in Headers */ = {isa = PBXBuildFile; fileRef = 499896852BAFB8790736F4B42D7DED54 /* UINavigationBar+DDCategory.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 614BD4DBD5C1BCB13CE995085A38C096 /* Observable+Bind.swift in Sources */ = {isa = PBXBuildFile; fileRef = E08418DB10E4C600EA85E90BC5A75AD5 /* Observable+Bind.swift */; }; + 619A84DBC854017C0A1A9BBE4D159E39 /* UIImage+ForceDecode.m in Sources */ = {isa = PBXBuildFile; fileRef = E3BF18A672F7FEA892B2A05C8D73BC4F /* UIImage+ForceDecode.m */; }; + 620121029560B277ACB01EDE12428873 /* Infallible+Concurrency.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2FAD6FC15974DBA0FF12BECCEA235872 /* Infallible+Concurrency.swift */; }; + 620CDA1C50743C819C01828F4E869261 /* Sources_DDMAMap in Resources */ = {isa = PBXBuildFile; fileRef = EE264AABB23776FDCFBFF501E0FDF2EE /* Sources_DDMAMap */; }; + 627988EB223E4105B5840683F769C5CE /* ImageCache.swift in Sources */ = {isa = PBXBuildFile; fileRef = C0C45BF3AC5CEEEEC36DAD5FB3A774D8 /* ImageCache.swift */; }; + 629C7157E20CDF4236A206BC470406D6 /* RxTableViewDataSourcePrefetchingProxy.swift in Sources */ = {isa = PBXBuildFile; fileRef = 39EC8517CD324EB2F6039D5A1A0FE145 /* RxTableViewDataSourcePrefetchingProxy.swift */; }; + 62A10F5EFEC0F793E9CA8D2B300CF844 /* SubjectType.swift in Sources */ = {isa = PBXBuildFile; fileRef = AA2D60263D4263EC3C06FA76DB65A215 /* SubjectType.swift */; }; + 62F29D80BD374DBB0DC1A80CFD1E44E6 /* ElementAt.swift in Sources */ = {isa = PBXBuildFile; fileRef = B409D0A129FF6110F02054F78B60E548 /* ElementAt.swift */; }; + 632FDD201CBD2BECFE77A054EF4BADB3 /* MATraceReplayOverlay+Addition.h in Headers */ = {isa = PBXBuildFile; fileRef = 0F47DDE3C1736961E81DFC21642B56E6 /* MATraceReplayOverlay+Addition.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6335E8323C2491C8A9C99CE9DB2BF83F /* Bool+ZLPhotoBrowser.swift in Sources */ = {isa = PBXBuildFile; fileRef = A49FDEAF283DC95FC4EC2DDBA29CAED3 /* Bool+ZLPhotoBrowser.swift */; }; + 635B043F860CE53EFCA19CC564B47075 /* IQKeyboardManagerConstants.swift in Sources */ = {isa = PBXBuildFile; fileRef = DFCF5B3FE6C9DA0EFCF9F4A1F7F6B3FC /* IQKeyboardManagerConstants.swift */; }; + 63C6F2C653074E8FC5DA3D47497949A7 /* _OCLogHelper.m in Sources */ = {isa = PBXBuildFile; fileRef = 86EB5FDB69E5179C09A86499193976E4 /* _OCLogHelper.m */; }; + 63C7CF43EB4791A04979913B13E84732 /* NSDate+BRPickerView.m in Sources */ = {isa = PBXBuildFile; fileRef = F77E3895D71D37E9E9BF54C89288DF20 /* NSDate+BRPickerView.m */; }; + 63F2F978029324264D53A77CB4C11FA5 /* KingfisherOptionsInfo.swift in Sources */ = {isa = PBXBuildFile; fileRef = 316AAE1BE99812898FF20FC3A059CAF4 /* KingfisherOptionsInfo.swift */; }; + 6456BE1D3735919BA27D3C44CA4A984D /* SDWebImageDefine.m in Sources */ = {isa = PBXBuildFile; fileRef = 7FF64C256662415A9479ABCFE235D61A /* SDWebImageDefine.m */; }; + 64D8805F7527163B0A4120C403D97AD2 /* IQKeyboardManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = D4CFE1FD9063844C7726DE9D69BA7F91 /* IQKeyboardManager.swift */; }; + 64F134656F206AEA36B251F574762046 /* JXCategoryIndicatorCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 7A4ACCA8D23AABD188369200BD0BC5B4 /* JXCategoryIndicatorCell.m */; }; + 652F1768E71D55ED1C4D40E7ABCA11F8 /* IQUIView+IQKeyboardToolbar.swift in Sources */ = {isa = PBXBuildFile; fileRef = DE8F126BBD480DE86148CB45EED2A80B /* IQUIView+IQKeyboardToolbar.swift */; }; + 656C1B379E3DFFE7320AD50AE311126B /* DDAudioPlayerKit_Private-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 42181CBBF0570751605F5301C8AFAB41 /* DDAudioPlayerKit_Private-umbrella.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 657E04A4248E389B609C47DB3CA58F5E /* NSBundle+BRPickerView.m in Sources */ = {isa = PBXBuildFile; fileRef = 12D5E3E7F68E95CA0ADB60461DCD772F /* NSBundle+BRPickerView.m */; }; + 65A3E384961F6C904B1D329C2B1D1BDF /* RxTableViewDataSourceProxy.swift in Sources */ = {isa = PBXBuildFile; fileRef = 79A7733C99A968670FBCEE19DF0898A4 /* RxTableViewDataSourceProxy.swift */; }; + 65C3ED45AE68B9415127887E553B901C /* JXCategoryTitleVerticalZoomCell.h in Headers */ = {isa = PBXBuildFile; fileRef = 4D62D270A16097070EB645A8494DBE9B /* JXCategoryTitleVerticalZoomCell.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6649A2058F4EA544384A888D95492A95 /* ZLCameraConfiguration.swift in Sources */ = {isa = PBXBuildFile; fileRef = E2D4411A906BBB354B22870DF7ED95FF /* ZLCameraConfiguration.swift */; }; + 6662D0EBBF6B81272FC7473551618CC3 /* DefaultIfEmpty.swift in Sources */ = {isa = PBXBuildFile; fileRef = A10B35338C50E2E7972A693714CFE031 /* DefaultIfEmpty.swift */; }; + 6674277C63A2F0AE5EA17A48C88759CB /* EKAttributes+LifecycleActions.swift in Sources */ = {isa = PBXBuildFile; fileRef = C1BA9A9FD666F4FE0FD5A17D79A8D3CC /* EKAttributes+LifecycleActions.swift */; }; + 667E98CC3D54F70B73D6D31D5D94FE0A /* SDWebImageOptionsProcessor.h in Headers */ = {isa = PBXBuildFile; fileRef = C39CAC5D3CDF8B7CB4D7B5A9DB2B9293 /* SDWebImageOptionsProcessor.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6694E6D8A68A448BA619714C9F10A0FC /* MJRefreshHeader.m in Sources */ = {isa = PBXBuildFile; fileRef = 484E271BDB070341A50FD8905975162C /* MJRefreshHeader.m */; }; + 66A7ACA757E0B6E814C371A9C3CC4828 /* ConstraintDescription.swift in Sources */ = {isa = PBXBuildFile; fileRef = 184A905860356D49E7B55C985D3194DB /* ConstraintDescription.swift */; }; + 66A9DC3B7E3BB37EB783B70278A717B7 /* CrashCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = 66EF4E191F7DF14578C38280FBB5220C /* CrashCell.swift */; }; + 66B43477DE0F24FDDE11B346D39BF863 /* RxTextViewDelegateProxy.swift in Sources */ = {isa = PBXBuildFile; fileRef = 56F3F147246D1B193904FEC21A9AEBD3 /* RxTextViewDelegateProxy.swift */; }; + 67CF5305E9EBF23CB22B90CDE4CDBF91 /* SDImageLoader.m in Sources */ = {isa = PBXBuildFile; fileRef = 5650D58802A7057C6141F8BF3565E6C6 /* SDImageLoader.m */; }; + 6823E22620B86DDE95E7871D8007BD2A /* String+MD5.swift in Sources */ = {isa = PBXBuildFile; fileRef = FC53804DBE8F7C5939CB30564D7867F5 /* String+MD5.swift */; }; + 68A9E007AD5461A5DB79E5541E21BFF6 /* RTLManager.h in Headers */ = {isa = PBXBuildFile; fileRef = FA4806691861BA43AA025BB12DE38210 /* RTLManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 68B4EC36B6F2299256FC94F862129B39 /* ZFIJKPlayerManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 19C44EA54E82F0253F78A38E4809AC14 /* ZFIJKPlayerManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 68B7B161F88A8AD78F0E21B6DE4547CA /* ESTabBarItemMoreContentView.swift in Sources */ = {isa = PBXBuildFile; fileRef = FEE7DBEFE7F775DFFA5240912E9F51BE /* ESTabBarItemMoreContentView.swift */; }; + 690256DF05FE465E8948ED017110EE78 /* ZLEditToolCells.swift in Sources */ = {isa = PBXBuildFile; fileRef = BBDCD87DC61283D1F31DE4DD94BE4816 /* ZLEditToolCells.swift */; }; + 6947D25CA62F4B84B0C798ED96485335 /* UIView+WebCacheOperation.h in Headers */ = {isa = PBXBuildFile; fileRef = C1D414B35B3407CB5D3B3E3C506F187C /* UIView+WebCacheOperation.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 69A74CEB8546E46560B3D6658253BC61 /* Combine.swift in Sources */ = {isa = PBXBuildFile; fileRef = BAE73892C05FF6771E8660DE9B19D1C6 /* Combine.swift */; }; + 69CBDC82C1A8BAE7227588C16B025E99 /* SDAsyncBlockOperation.h in Headers */ = {isa = PBXBuildFile; fileRef = C8A47640CD25679BE5388ACCCD40D6A5 /* SDAsyncBlockOperation.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6A67580592A611F6DAF9955550ED5C3A /* UITextView+DDCategory.m in Sources */ = {isa = PBXBuildFile; fileRef = AE8679EE07CCD8439DD69525741784C8 /* UITextView+DDCategory.m */; }; + 6A73D8C90B3AB65EE530DBC09D72B0BD /* DDTimerKit_Private-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 08B918246B5F59A7DB942A7792495870 /* DDTimerKit_Private-dummy.m */; }; + 6A81ABDBB4DC38B8AADC3DF2F53A888D /* ZLAlbumListModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = 988019CE36140771910B8380EF9A2813 /* ZLAlbumListModel.swift */; }; + 6A9EC3C99A882F88915BD329FD85D03A /* RxTableViewDataSourceType.swift in Sources */ = {isa = PBXBuildFile; fileRef = A00FEC96F7432E514649B6321FE1CF58 /* RxTableViewDataSourceType.swift */; }; + 6B15F7B1F8100DDE600626AB39054501 /* KF.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8AE3E65E083A29E28F5463D0D92505E8 /* KF.swift */; }; + 6B89E8277C0AEEFBA98E25493C0AD9B4 /* DDCategoryKit_Private-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = D60FC33C250517DE39F2A4608A508001 /* DDCategoryKit_Private-dummy.m */; }; + 6BA56DF5DEBB747BC314F6A658C21DC4 /* DisposeBag.swift in Sources */ = {isa = PBXBuildFile; fileRef = B59401AF283208AC2EEE4485A3866BFE /* DisposeBag.swift */; }; + 6C05A006EB5DEBEAF2FC010FD0A18A7A /* Throttle.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7BD514F3DE2A753225A669ED836D142B /* Throttle.swift */; }; + 6CABF78E996F90619923174D81B9CC27 /* _CacheStoragePolicy.m in Sources */ = {isa = PBXBuildFile; fileRef = F93C99D6D77833DED970D1B8B72D7689 /* _CacheStoragePolicy.m */; }; + 6CB80E0E3A8AB7064405B2333D680001 /* JXCategoryFactory.h in Headers */ = {isa = PBXBuildFile; fileRef = 347EE4400E1618809DE4560F1E371F05 /* JXCategoryFactory.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6CDA21915F4586B1823FF8ACFC96747A /* ControlProperty+Driver.swift in Sources */ = {isa = PBXBuildFile; fileRef = 63E3F8D47F7ABFE54AA942BD9FC74648 /* ControlProperty+Driver.swift */; }; + 6CE153A8353153BEBD5941D99D0AA948 /* MJRefreshBackNormalFooter.m in Sources */ = {isa = PBXBuildFile; fileRef = F35F515B2EAAA0C6E149AA7B49918CB3 /* MJRefreshBackNormalFooter.m */; }; + 6D193A3B06F0D5462B18FA01C21AAF5B /* PrimitiveSequence+Zip+arity.swift in Sources */ = {isa = PBXBuildFile; fileRef = 63C55FFE843CAED94FBD7F970F09D837 /* PrimitiveSequence+Zip+arity.swift */; }; + 6D8B1D4945DCEECA487075BEF2FC0DC7 /* Driver.swift in Sources */ = {isa = PBXBuildFile; fileRef = BA36808A8E8270E1626D7FE64162DDD8 /* Driver.swift */; }; + 6D8E6A17A45A4EA1D54A22F69B95AC7F /* ZLCameraCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = ED0FE5A880681595C6E294B2ADB60F3E /* ZLCameraCell.swift */; }; + 6DE505183942FACB3B64F8A2115D39D9 /* UIButton+DDCategory.h in Headers */ = {isa = PBXBuildFile; fileRef = 7F7D9A55DA134EF4BCF6C018DD14F109 /* UIButton+DDCategory.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6E0056255590AF29EEA12A9719025309 /* UIColor+ZLPhotoBrowser.swift in Sources */ = {isa = PBXBuildFile; fileRef = A1DDAB8D0629FC240E603E8B48A73673 /* UIColor+ZLPhotoBrowser.swift */; }; + 6E285A3D314DE0DECF80546A5865EB34 /* UIImage+GIF.h in Headers */ = {isa = PBXBuildFile; fileRef = 267A6FECF244137AB746AB45FDF9B2C4 /* UIImage+GIF.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6E571195DB6696DCD7A11A16D9DD765F /* ZLCollectionViewFlowLayout.swift in Sources */ = {isa = PBXBuildFile; fileRef = 39F0E7887DD9D433D8702497A0BFBF27 /* ZLCollectionViewFlowLayout.swift */; }; + 6E8267BF68A5C197D4EB8BC34C450987 /* ZLResultModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = CC0E980499AA4DCAB21A9D053F491BA1 /* ZLResultModel.swift */; }; + 6E881FBDF3FFC0B4F3E680E564C0D595 /* DDAudioPlayerKit_Private-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = B740423D0945EDE8A1B9EF3C9AE1E546 /* DDAudioPlayerKit_Private-dummy.m */; }; + 6E9369F02458847D86856EF00BEEA8E8 /* DDBaseImageView.h in Headers */ = {isa = PBXBuildFile; fileRef = EFC91CA687C77EB78B0495A49C083271 /* DDBaseImageView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6F147E8691945B001B6CB1269240FDA9 /* UINavigationController+DDCategory.h in Headers */ = {isa = PBXBuildFile; fileRef = 195652663B54BFFD1F516B6325BC1F1C /* UINavigationController+DDCategory.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6F329291E9FB8EF90578801F87261E08 /* NSButton+WebCache.m in Sources */ = {isa = PBXBuildFile; fileRef = 75E7E42016ACEA4311FE1D133120EA8E /* NSButton+WebCache.m */; }; + 6F99E2BF991F1F67BD38C6934B68DC07 /* SDWebImageTransition.h in Headers */ = {isa = PBXBuildFile; fileRef = 84B3B54AC3874E9604C2801E7ECC67E6 /* SDWebImageTransition.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7013B2E9E8A2525163C10D31BF619830 /* Storage.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7EE83E18843E28A79B66B9A09F77712 /* Storage.swift */; }; + 704561149DBBBDD2D481E242B79B1FB5 /* DDTimerObject.h in Headers */ = {isa = PBXBuildFile; fileRef = 5853D8C365C2E23E53E6B8B428CDFA6A /* DDTimerObject.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7048F4545FF01508FE52CDD728F5A6EC /* ZFLandscapeWindow.m in Sources */ = {isa = PBXBuildFile; fileRef = B935759BC41846DD104C77108C58A5DB /* ZFLandscapeWindow.m */; }; + 708520028DC4C1C09DCCFD1CCC820278 /* ObserverBase.swift in Sources */ = {isa = PBXBuildFile; fileRef = 99C707D252D49AEB0C99EE2EF4B04700 /* ObserverBase.swift */; }; + 70AE0363ACE9E14DDA1120DB60B5E0EC /* SDImageCoder.h in Headers */ = {isa = PBXBuildFile; fileRef = 138D89F9AD66B27542971F3146C9C7E3 /* SDImageCoder.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 70B6FE4A37E2023C5833979592FE5EC7 /* JXCategoryIndicatorCell.h in Headers */ = {isa = PBXBuildFile; fileRef = B893046FC8D75BB7604FD2DD3EA2E420 /* JXCategoryIndicatorCell.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 71006AA82B83D4166F673C7CBC58B426 /* RetryWhen.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3782D65EACAA450C43A4CE8B9370A984 /* RetryWhen.swift */; }; + 711B25F3CA42B980B39A6463B9CDAEEF /* UIButton+DDCategory.m in Sources */ = {isa = PBXBuildFile; fileRef = 1A8798E5DDA9F7C625F49807C8F65C42 /* UIButton+DDCategory.m */; }; + 7164E8CD0BDD5B5F18758D6B86D5F1F9 /* NSThread+DDCategory.m in Sources */ = {isa = PBXBuildFile; fileRef = 65EA044CDADB831F1F5C150FB78ADDAC /* NSThread+DDCategory.m */; }; + 7168A587CF00336CC0C44FC8D27D6B66 /* UISearchBar+Rx.swift in Sources */ = {isa = PBXBuildFile; fileRef = 36A4D0EC4E7038F1609012E54032EFF5 /* UISearchBar+Rx.swift */; }; + 7168D4FEC7E4CD376DCD0B8BF2024156 /* UIView+ZFFrame.m in Sources */ = {isa = PBXBuildFile; fileRef = 282D6F906448283595CF9242D0D039CF /* UIView+ZFFrame.m */; }; + 71742FA7C715D034FE3912ED07B30379 /* _DirectoryContentsTableViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = DBE5220C9408E2E3F2303535F96F7160 /* _DirectoryContentsTableViewController.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 718B12AD3FD5F44645B82D7EB0724C52 /* UISearchController+Rx.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0B8832AD77B9DDB928EF069901018195 /* UISearchController+Rx.swift */; }; + 71AD91355CF2C5747EFCA6064FAB26E6 /* UITabBarController+DDCategory.m in Sources */ = {isa = PBXBuildFile; fileRef = 9A1AA996EB8C98EB6740E1F2DB864E2E /* UITabBarController+DDCategory.m */; }; + 71BC1612F3617B89C174A4A46B9402C8 /* Pods-OrderScheduling-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 5557072D4679705898E85F13CB9F4B96 /* Pods-OrderScheduling-umbrella.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 71FC83AFAF23E756FE864162EEA31500 /* UIScrollView+DDCategory.m in Sources */ = {isa = PBXBuildFile; fileRef = 8661D5A1AA78E3225C2217E5CD97109C /* UIScrollView+DDCategory.m */; }; + 7248CD5CAAC5D0D6FF0F9D85CEF858BB /* ZLInputTextViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6F1147DC218281F5558B317E12C41384 /* ZLInputTextViewController.swift */; }; + 724A87977D3D501F37C0BB022C6F38AC /* ZFFloatView.m in Sources */ = {isa = PBXBuildFile; fileRef = 4A0ED160DB69D416CCE46E0ED96A9D71 /* ZFFloatView.m */; }; + 725D740A38D5E761FCA71B67A4891E35 /* SDImageTransformer.m in Sources */ = {isa = PBXBuildFile; fileRef = 668EE255DB75BB37318BEFF599B38A96 /* SDImageTransformer.m */; }; + 728632B0C7B9B5C555AF66E7464657F0 /* DDBaseTableViewCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 1578A18968936C272FAC478EA21DC4CE /* DDBaseTableViewCell.m */; }; + 729CC942A3DFCE7D23AFA147F5062DB5 /* DDTableViewCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = A0C18F69D04945C4F4F65A4781962DC9 /* DDTableViewCell.swift */; }; + 72A8E15258D081D36070F2EFE80FDA0E /* DiskStorage.swift in Sources */ = {isa = PBXBuildFile; fileRef = EACACE5CE07FEFDFA1542DC55ED52120 /* DiskStorage.swift */; }; + 72AACF79D46DD4C0ED4D144B840E1F91 /* UIGestureRecognizer+Rx.swift in Sources */ = {isa = PBXBuildFile; fileRef = C301A7F6B36F77A416BA7AD89B129CF0 /* UIGestureRecognizer+Rx.swift */; }; + 72E261A6A85538D4C56F4DE869BF0D9A /* Sink.swift in Sources */ = {isa = PBXBuildFile; fileRef = E77F9B687E0725738A83255C22A92278 /* Sink.swift */; }; + 73945F5394F485D66898305510756115 /* GradientView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4AE760196C36BA405E3D39D2C30FF446 /* GradientView.swift */; }; + 73AB70D6B97E43420FB576C9D26039E6 /* JXCategoryIndicatorCellModel.m in Sources */ = {isa = PBXBuildFile; fileRef = D1A040E3C1A369F17169DEE671AF42D4 /* JXCategoryIndicatorCellModel.m */; }; + 7406DEA0EDCB81CB5CC731EF16018D33 /* _CustomHTTPProtocol.h in Headers */ = {isa = PBXBuildFile; fileRef = 843FCA2465DA170122DB012FC72AD2E1 /* _CustomHTTPProtocol.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 74972BEA7D6A0CE28CB3EFB11EF2DCAF /* FontUtil.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7AEF3ABB0A35E0C5283C87A9DB435980 /* FontUtil.swift */; }; + 74D0D590327ABFC48E7113ADD326E00D /* BRResultModel.m in Sources */ = {isa = PBXBuildFile; fileRef = 43437087DBCFC5D645776F53DA02B4A5 /* BRResultModel.m */; }; + 74DD9CAE99A3118FCFF0E7BDF28DEB29 /* RxCollectionViewDelegateProxy.swift in Sources */ = {isa = PBXBuildFile; fileRef = 104A88C578F707D8C4EBA903BF4146CF /* RxCollectionViewDelegateProxy.swift */; }; + 752811625260B14669C192D57F44BAAD /* AboutViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = FD2B6D03DCF0FE0B116574665E976576 /* AboutViewController.swift */; }; + 7531AB8F001F8AD0A7691DDAD8D797ED /* AtomicInt.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7346DCB09CB67D9EAFCB67215E71C0CD /* AtomicInt.swift */; }; + 756E1E9A85EDBD96D30C9BC8A7A3A090 /* ZLFilter.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7ACF3BE2D005EC372D66C6860F5DFE67 /* ZLFilter.swift */; }; + 75A1DAD0A861EDBF654C93A2857D897E /* JXCategoryIndicatorDotLineView.m in Sources */ = {isa = PBXBuildFile; fileRef = 42AF63DC8D965A189E15C7AD36497FE6 /* JXCategoryIndicatorDotLineView.m */; }; + 75A22F9FCEE3CD7FE12BCE3D3AA731AC /* KFImage.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1B3FD4396289458395DECE58AE7AB3BD /* KFImage.swift */; }; + 75A50A9B3FD4EF659C8E61546D270CF1 /* SDImageGIFCoder.m in Sources */ = {isa = PBXBuildFile; fileRef = EF2C2406B60CC4D8EA742DF22C0464E8 /* SDImageGIFCoder.m */; }; + 760760698F2B539B1A4A8C3FD74E607A /* SDWebImageDownloaderOperation.h in Headers */ = {isa = PBXBuildFile; fileRef = 1A7C4AF6221BDD8AD265EAA9C14DED59 /* SDWebImageDownloaderOperation.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 765C8A7DB5223CDA8C6E5D333F2CDFC3 /* UIImageView+HighlightedWebCache.h in Headers */ = {isa = PBXBuildFile; fileRef = C21CC33F7062D344DCF74D49BFC82A48 /* UIImageView+HighlightedWebCache.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7682444EE3F5046ADE989E155A284EEE /* Kingfisher.swift in Sources */ = {isa = PBXBuildFile; fileRef = 220EFE05869DC5FC82720927226B6108 /* Kingfisher.swift */; }; + 768BAA880F1D969621A04374DB7854DA /* Catch.swift in Sources */ = {isa = PBXBuildFile; fileRef = E5518F4EDC6D868C170E86765C7EE1C7 /* Catch.swift */; }; + 76E3A558AD358F70264733619F84737A /* SDFileAttributeHelper.h in Headers */ = {isa = PBXBuildFile; fileRef = 81567C3F126A7EB8378762CA3FC08465 /* SDFileAttributeHelper.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7728B76ED928AC7587540FEE0BE3980D /* Constraint.swift in Sources */ = {isa = PBXBuildFile; fileRef = 217A3F47E0ED06D5240BAC62AB674F29 /* Constraint.swift */; }; + 777D599EE92E8693911A459685C7F332 /* SectionedViewDataSourceType.swift in Sources */ = {isa = PBXBuildFile; fileRef = D03B3691C165B2971CC8CD50D2218E12 /* SectionedViewDataSourceType.swift */; }; + 77B0273D89449DA79C72217AF57E5A47 /* NSURL+DDCategory.m in Sources */ = {isa = PBXBuildFile; fileRef = 1051306B875B02C74A86EE0815BCD486 /* NSURL+DDCategory.m */; }; + 780911F844E400DC3DE983DFC62285E2 /* DDBaseLabel.m in Sources */ = {isa = PBXBuildFile; fileRef = DBFC124EED6E586756C64ACD8FE730B0 /* DDBaseLabel.m */; }; + 78270987D9093E276EA12C698FC69D66 /* JXCategoryTitleView.h in Headers */ = {isa = PBXBuildFile; fileRef = 37FAB0BAEA67751427D6DE85F92A45C5 /* JXCategoryTitleView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 785031B71ABACAC9C0BF541D7952E7D0 /* SDImageCache.m in Sources */ = {isa = PBXBuildFile; fileRef = 6A94AF7B9EB256E82846CC6F621D9A89 /* SDImageCache.m */; }; + 785F521281D3701EDDB14472DCB4876F /* SessionDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = 417D3BF7F2E418BC583D4E6DD0E0E1CF /* SessionDelegate.swift */; }; + 7862592A925A99934E73D7B24F2895F7 /* IQKeyboardManagerSwift-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 8D159FCCEB97D06ABF0D4458AE6CF3F6 /* IQKeyboardManagerSwift-umbrella.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7862CDF0CC3C4B049C8E4CDA451ED29C /* UIButton+Kingfisher.swift in Sources */ = {isa = PBXBuildFile; fileRef = C159872F26F93E552B656DEA5F53EE51 /* UIButton+Kingfisher.swift */; }; + 78A9DC5A1BC9FB56108C4AF9B8A1BE19 /* CrashDetailViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 287FF81E0535DE3C8714ACC342C0C50B /* CrashDetailViewController.swift */; }; + 78B2931A79E21B1AF56F09DEFA4E42F9 /* UIView+WebCache.m in Sources */ = {isa = PBXBuildFile; fileRef = A6715A810721B77E7BE0A4AD91B50BC3 /* UIView+WebCache.m */; }; + 78E1DD017E3493217692D927E6FAB685 /* BehaviorRelay.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6DBC77CCE296A080EC456907F4213CC5 /* BehaviorRelay.swift */; }; + 7928BF03967198F5CD7DAFD6D784F04F /* EKMessageContentView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 228A503DFD6BB758F51C5BF9567E4689 /* EKMessageContentView.swift */; }; + 79403C58DA1B5106F8104E1DEC5C2573 /* MABaseOverlay+DDCategory.m in Sources */ = {isa = PBXBuildFile; fileRef = 08CD488F803E37CB2EDEA19AE3253D75 /* MABaseOverlay+DDCategory.m */; }; + 795FED16EEB4B05B3E37700009207E34 /* URLConvertible+URLRequestConvertible.swift in Sources */ = {isa = PBXBuildFile; fileRef = 168FC76E41435410EC8A00C808BE60F9 /* URLConvertible+URLRequestConvertible.swift */; }; + 79667886740E03B0BA8CAD82D277FDD5 /* _FileInfo.m in Sources */ = {isa = PBXBuildFile; fileRef = 36DD633CBB453439EE0F54994386CCD4 /* _FileInfo.m */; }; + 79732A6532885C9A7DB87F999CE0BBDC /* MABaseOverlay+DDCategory.h in Headers */ = {isa = PBXBuildFile; fileRef = E469FE9BA34CE21A445FD18AFE4CE7EA /* MABaseOverlay+DDCategory.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 79B9F05D7AFAD2D6775CBC7C549249B6 /* RxMutableBox.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2D5BD207DDC2BB71CF6AD98D6249DF75 /* RxMutableBox.swift */; }; + 79CC6919A398730886F6C86DDEE7F597 /* DDBaseCollectionView.h in Headers */ = {isa = PBXBuildFile; fileRef = FBC5098F9717EFA9E2BED153361BBB3B /* DDBaseCollectionView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 79E028B32DC2E143BAC645CD4DE435D1 /* IQUIView+Hierarchy.swift in Sources */ = {isa = PBXBuildFile; fileRef = 50A1422BC9CB8B83EFC8DA0FD4138819 /* IQUIView+Hierarchy.swift */; }; + 79FB13C8D3A4E1D1C297B963C574C0F5 /* ZLPhotoUIConfiguration.swift in Sources */ = {isa = PBXBuildFile; fileRef = BD6C032039F0BCA60ACAA4D98260E90A /* ZLPhotoUIConfiguration.swift */; }; + 7A3B3E372DA33E8C48594BB13E7B308E /* UITableView+Rx.swift in Sources */ = {isa = PBXBuildFile; fileRef = 12E70A20A9573BF5A9B175915B1E9F96 /* UITableView+Rx.swift */; }; + 7A4F0F49748AD6BFE43729FE2B9DB916 /* NSObject+CocoaDebug.m in Sources */ = {isa = PBXBuildFile; fileRef = DBCCB47A684BC2C8E34FD72CB4E35A85 /* NSObject+CocoaDebug.m */; }; + 7A6B61349A1B50DF6E904F761F6EBC4B /* UICollectionViewCell+DDCategory.m in Sources */ = {isa = PBXBuildFile; fileRef = 9E034624A24009FD0B6839B91B89060F /* UICollectionViewCell+DDCategory.m */; }; + 7A8B0747E5A8A96ED66C1D708F66CFC4 /* ZLImageNavController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 74DA4AED3A5D60302C79996DFC5C5F05 /* ZLImageNavController.swift */; }; + 7AB8A969CB1C2BB988A9AB1CD30E6C19 /* ZFOrientationObserver.m in Sources */ = {isa = PBXBuildFile; fileRef = B574EC37A2BC358258FE620F5336FFFC /* ZFOrientationObserver.m */; }; + 7B1437FE5E98D55CD1607074C4AA29C6 /* JXCategoryIndicatorProtocol.h in Headers */ = {isa = PBXBuildFile; fileRef = D8CE4345B7053A0BA4B5FC579F2842A1 /* JXCategoryIndicatorProtocol.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7B21B434BABCD594817E3D7A81B0EC0B /* CacheSerializer.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8783AE3240C6DE6774892D61310683A5 /* CacheSerializer.swift */; }; + 7B385A3BBFA5DF0F919ECC1525955E0C /* DDMALocationManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 2F5C6384B92BDC0EF9898E50D396EBB9 /* DDMALocationManager.m */; }; + 7B3E9A61AF1EC4DF9CF807E2BFF45E1C /* UINavigationItem+DDCategory.m in Sources */ = {isa = PBXBuildFile; fileRef = DA6D1F3BDA26F9D8031D18A9709FD89E /* UINavigationItem+DDCategory.m */; }; + 7B5A2A22E907F6CB8E791BD1937E41ED /* DDBaseLabel.h in Headers */ = {isa = PBXBuildFile; fileRef = 2F0988B1C29A7765529195ECCE4B347C /* DDBaseLabel.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7B68CC1F3C07D681E360C3E50B5CC853 /* UIScrollView+ZFPlayer.h in Headers */ = {isa = PBXBuildFile; fileRef = 29454470DF2916CF8CB483820556BA06 /* UIScrollView+ZFPlayer.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7B708B9949DEE9168B4D10D22E04DEAE /* MJRefreshNormalHeader.m in Sources */ = {isa = PBXBuildFile; fileRef = FC8C6E073A2A3C284E72E54033042682 /* MJRefreshNormalHeader.m */; }; + 7B736FC0BBF3C32F32A585090944FC87 /* SwiftEntryKit-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 39C8F042547087254A7B56A7E6B4266A /* SwiftEntryKit-umbrella.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7BAC5247AD928B776F8727F9FB4EE7AD /* ESTabBarItemBadgeView.swift in Sources */ = {isa = PBXBuildFile; fileRef = BDA9918D1AC95200E4E186A6CB3A8906 /* ESTabBarItemBadgeView.swift */; }; + 7BBE8DA45E00B0FA0620083B8FA0B261 /* Image.swift in Sources */ = {isa = PBXBuildFile; fileRef = 89270D4B442BBBECE504EA61AD6DA8A8 /* Image.swift */; }; + 7C268EA30C39F532AC992D696FDF5024 /* DDNetworkingOfAlamofireKit_Private-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = C49A46393F503E8D6F78E61975814F49 /* DDNetworkingOfAlamofireKit_Private-umbrella.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7C710235EAEB7ED1C21DC9482A20BF74 /* AnonymousDisposable.swift in Sources */ = {isa = PBXBuildFile; fileRef = DE30300D5289DF8F6DDDCB85319EE501 /* AnonymousDisposable.swift */; }; + 7CD8B6A0298D4FE0AEF7A41145510C7F /* UINavigationController+DDCategory.m in Sources */ = {isa = PBXBuildFile; fileRef = 0379C312FB9DFBA4F0FC9BCF26429BCA /* UINavigationController+DDCategory.m */; }; + 7D079A25B5264F1227B452FCB3FC54D5 /* UIImageView+WebCache.h in Headers */ = {isa = PBXBuildFile; fileRef = 6C15AACE8C1A4CE01F1702B4A85D8F83 /* UIImageView+WebCache.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7D9036FB1C4E0560CCE3227BEA3339C2 /* DDLogKit_Private-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 5190D62F9AD798C22F62ABB607E891FF /* DDLogKit_Private-umbrella.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7DF302A2DB5B660FE70888DA0EE0F286 /* SharedSequence.swift in Sources */ = {isa = PBXBuildFile; fileRef = D731AF5919347A7BD2190D3DC68B53D1 /* SharedSequence.swift */; }; + 7E5A43683952F26781D57C4CC12F4CCE /* MJRefreshConfig.m in Sources */ = {isa = PBXBuildFile; fileRef = A57B71A9E12EE2E126434243DA492222 /* MJRefreshConfig.m */; }; + 7E7A9F47A061A7D46AB1F401E90429F2 /* SDDiskCache.m in Sources */ = {isa = PBXBuildFile; fileRef = 06C7E8226A65E1D0D4CC3D3E98978D02 /* SDDiskCache.m */; }; + 7EA1A285B210A02961DC6EC1C01C1687 /* CocoaDebugSettings.swift in Sources */ = {isa = PBXBuildFile; fileRef = E0511BA3A4FD667D6EA75BCA365DB4F4 /* CocoaDebugSettings.swift */; }; + 7EA4D4DAB19F8B4A1BE641F9A803B3A4 /* JXCategoryNumberCell.h in Headers */ = {isa = PBXBuildFile; fileRef = 9526EB71B6900198A54FCEDBBE3E8630 /* JXCategoryNumberCell.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7F32A097697328E2274CC8AD925FE543 /* _RunloopMonitor.h in Headers */ = {isa = PBXBuildFile; fileRef = 2ACBDEC4BFB5FD6C1AB0C2D6A6B69E53 /* _RunloopMonitor.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7F60A19D3B83E8A56DD7778844101265 /* WKWebView+Rx.swift in Sources */ = {isa = PBXBuildFile; fileRef = 96BC0EB92C249ACEBDA78937D9AE25FC /* WKWebView+Rx.swift */; }; + 7F74823CF0BC170B85D5BCD1046385AC /* GIFAnimatedImage.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5F8864F6B1A531E057B48900668D9B4A /* GIFAnimatedImage.swift */; }; + 7F87DDA52B40F5252EB2DE162C33BAC0 /* MJRefreshGifHeader.h in Headers */ = {isa = PBXBuildFile; fileRef = 0A0B5A4180221E40CE556F38DA1B329D /* MJRefreshGifHeader.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7FCA7DF486BC1220F21964FCD6B1A3C3 /* RxPickerViewDataSourceProxy.swift in Sources */ = {isa = PBXBuildFile; fileRef = 61D6B41DDEDC61A1F3ACB9B0E7067D50 /* RxPickerViewDataSourceProxy.swift */; }; + 7FF92EBA287D98B318E84C0165CE0E5C /* DDImage.swift in Sources */ = {isa = PBXBuildFile; fileRef = 225E1EF48B1C673BC3CC2358A43544DD /* DDImage.swift */; }; + 80141B208065FE781FF8AB8F850FCE31 /* Signal+Subscription.swift in Sources */ = {isa = PBXBuildFile; fileRef = 31E9229CC74C809BECB976F679F909D0 /* Signal+Subscription.swift */; }; + 807357E0D8B429C410617DCD42E83C73 /* JXCategoryTitleCellModel.h in Headers */ = {isa = PBXBuildFile; fileRef = 31C236674516F1DD1B6E389C4495E2D1 /* JXCategoryTitleCellModel.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 80785E6691F1F78D1B043BCA12426306 /* ConstraintMultiplierTarget.swift in Sources */ = {isa = PBXBuildFile; fileRef = B8566531CCD3B055AACD54D9C70D46E2 /* ConstraintMultiplierTarget.swift */; }; + 8078E9680CBD9BF77D13021C5B82AE8A /* RxRelay-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 218D8DEDCD6779141087671AC994C457 /* RxRelay-umbrella.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 813B683458C65465624988D928272B44 /* ZLPhotoBrowser-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = EC0A368B863E7098C2B47DEFD9527A27 /* ZLPhotoBrowser-dummy.m */; }; + 81456BEE51145D499173F52736521B09 /* ZFLoadingView.h in Headers */ = {isa = PBXBuildFile; fileRef = F68C9B02B11B5CA2245E6B8812CCEBB4 /* ZFLoadingView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 818EE2D4D7DDECBED411E45624F2A32F /* ZFLandscapeViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = A41376E50017A2935A37C3A982374FFD /* ZFLandscapeViewController.m */; }; + 819863FBD51B104B8D66432AC67C05C6 /* MJRefreshFooter.h in Headers */ = {isa = PBXBuildFile; fileRef = 15AED11DF39E305DF6673230E081BB49 /* MJRefreshFooter.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 81B24717BFCD424C3874D855D9F4BF32 /* EKNoteMessageView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 55C134061004C50225B29605CA80BFDB /* EKNoteMessageView.swift */; }; + 81B7DA4E34BD7FDCFBE8B2CF16335996 /* UICollectionView+Rx.swift in Sources */ = {isa = PBXBuildFile; fileRef = B3FBA5BCC63A7DA814380D5A7F18555B /* UICollectionView+Rx.swift */; }; + 81C2D503F2ECEB1331D541797699B6C1 /* ESTabBarItem.swift in Sources */ = {isa = PBXBuildFile; fileRef = B2D085BA174C9A8EBB23BFBE828B25C2 /* ESTabBarItem.swift */; }; + 81DDF3AC3E4831357412BAF122E5456E /* EKAccessoryNoteMessageView.swift in Sources */ = {isa = PBXBuildFile; fileRef = ABB45E791C7D00AD4C8D18CCD8AF201A /* EKAccessoryNoteMessageView.swift */; }; + 81DF12053E6B37238FD5271CC56D39F2 /* RecursiveScheduler.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9EE67FCA70CF2E96C7396C66B8C8E418 /* RecursiveScheduler.swift */; }; + 81FFE95BF81E711459B7B48E1034C49B /* DDBaseTableView.m in Sources */ = {isa = PBXBuildFile; fileRef = B2CC50C4D50030EEF25A4B059F6D1424 /* DDBaseTableView.m */; }; + 8220B550020CCF8983DF5B8252C732F1 /* MJRefreshNormalTrailer.h in Headers */ = {isa = PBXBuildFile; fileRef = F51A62D56FE8D54578C6D6D0138A1289 /* MJRefreshNormalTrailer.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 827802DE999250886D89207BC6F0B58D /* NetworkViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = A0D016D448D4891CC0E17A93392E37DD /* NetworkViewController.swift */; }; + 82BBE2F159943E19A69BD99EBE48D100 /* SDWebImageOptionsProcessor.m in Sources */ = {isa = PBXBuildFile; fileRef = C37BCE44E949B7D460656AC69C7B99FF /* SDWebImageOptionsProcessor.m */; }; + 82D0D719AE58DF78F47A6D90EA52AC41 /* ZFVolumeBrightnessView.h in Headers */ = {isa = PBXBuildFile; fileRef = 0DD8C1045DCFBEBB3D9D5593893F671E /* ZFVolumeBrightnessView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 83654F695F940D6B7B244AE48CAB2B2A /* AsyncLock.swift in Sources */ = {isa = PBXBuildFile; fileRef = 537F4C537F39CB0F98A503A917519178 /* AsyncLock.swift */; }; + 836F0401537C25FF78D18E4895330035 /* DDViewControllerAnimatedTransition.m in Sources */ = {isa = PBXBuildFile; fileRef = 9824951BF51B3BAF7431D329F0BA1DAC /* DDViewControllerAnimatedTransition.m */; }; + 83D0FF7A837ABA4E7B712358AF55AF52 /* NSImage+Compatibility.m in Sources */ = {isa = PBXBuildFile; fileRef = FF8BA90E9DCA787B16E878C53AB2B3E7 /* NSImage+Compatibility.m */; }; + 83D67D211FAD416D7164100830513695 /* ObservableType+Extensions.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1F26048853D41F6951BEE9160B19D666 /* ObservableType+Extensions.swift */; }; + 840B27BBD5508D3F123308CABDDFD524 /* MATraceReplayOverlay.h in Headers */ = {isa = PBXBuildFile; fileRef = 9E2614393372F1373562F24552A34672 /* MATraceReplayOverlay.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 84BC5434F8367126E554E82ED3592547 /* DDTimerManager.h in Headers */ = {isa = PBXBuildFile; fileRef = D0AD26B18FD7E2C944AA8C1205ECD171 /* DDTimerManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8505471A71505E2BA003E64FC0D09DFE /* _RX.h in Headers */ = {isa = PBXBuildFile; fileRef = 0CD07829ED3310E1E55EEA3E661C145F /* _RX.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 850E9557F466337BDC4E92976BA29C4D /* Error.swift in Sources */ = {isa = PBXBuildFile; fileRef = CEF89EE4F63350FA0CB98FFB0B96BBF6 /* Error.swift */; }; + 85253A95E62177CF9D61A8D156BCBE08 /* ImageModifier.swift in Sources */ = {isa = PBXBuildFile; fileRef = F4419A307FB65143ABA119AAD2502FCC /* ImageModifier.swift */; }; + 85A96DED83E5FBF923823F46106F6836 /* RxCocoa.swift in Sources */ = {isa = PBXBuildFile; fileRef = C7642307C2A74441FB033082E4393E4F /* RxCocoa.swift */; }; + 85E9A0412761EE97B0F14C8506738BF5 /* Session.swift in Sources */ = {isa = PBXBuildFile; fileRef = 89D32A6BDC5A04585CC4FA78AD2D3FE0 /* Session.swift */; }; + 862E9D10C50CBB0D339039294989DEF7 /* _RXObjCRuntime.m in Sources */ = {isa = PBXBuildFile; fileRef = 96167AC6C6F5EF1D29794661D7712D5B /* _RXObjCRuntime.m */; }; + 864F412CAB912E5360121273A3DBCA87 /* GPBMessage+CocoaDebug.h in Headers */ = {isa = PBXBuildFile; fileRef = A1833E092E6E2C7CB2FEC9DB0539405B /* GPBMessage+CocoaDebug.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 865ACC100F9BB256DA7C7F66FC85AF8B /* ItemEvents.swift in Sources */ = {isa = PBXBuildFile; fileRef = 62C319226F475905AD7EC35FDD075DB1 /* ItemEvents.swift */; }; + 86A5C86B1240F0E61CEBE0AC08A119C9 /* ZFPortraitViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = 7D8E6DA7DB169EE59344C9934D8C7A8A /* ZFPortraitViewController.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 86BACE0D784445DFCD937FF106BD0C42 /* EKButtonBarView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 82D61DEED5179B4292D8FA6F2AFF356E /* EKButtonBarView.swift */; }; + 86FDA11CE9FA4F78C10FF4EFD30E6A1F /* NSControl+Rx.swift in Sources */ = {isa = PBXBuildFile; fileRef = 652010C3C74634DF3F36531F7CF0C331 /* NSControl+Rx.swift */; }; + 8762C3B2ABC7C4D1ADCD923054358973 /* UICollectionView+DDCategory.h in Headers */ = {isa = PBXBuildFile; fileRef = 7C4452653712093DC6AF06BF027C68CA /* UICollectionView+DDCategory.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8776F9D9CDA443D35E473576EB3194C5 /* UIBarButtonItem+Rx.swift in Sources */ = {isa = PBXBuildFile; fileRef = 06826A974EFAD95ADA1626CA3E1F5DD1 /* UIBarButtonItem+Rx.swift */; }; + 878914063ACAA2126B18E1DE5285F827 /* EKBackgroundView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2931432B02D8C3AA6179C4C8F9E191E6 /* EKBackgroundView.swift */; }; + 8791DC308884A90A38BD939A3C382FA5 /* SDMemoryCache.m in Sources */ = {isa = PBXBuildFile; fileRef = F8DF5755A65EEB0CA7DCB4C4BB274FCC /* SDMemoryCache.m */; }; + 87AE439CF35CBCEC88CFCB269A68A0F2 /* RefCountDisposable.swift in Sources */ = {isa = PBXBuildFile; fileRef = 771811A58ABDD9E57E6F6329FC72F699 /* RefCountDisposable.swift */; }; + 885031037B7CD4BEA92D1497F7781C76 /* SDAnimatedImageRep.h in Headers */ = {isa = PBXBuildFile; fileRef = E6404FDF26A0D8EB9510837B2C97B6EA /* SDAnimatedImageRep.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 88A177C486F3A160B783F66E4EF5C1E9 /* Empty.swift in Sources */ = {isa = PBXBuildFile; fileRef = DCE95AFFD6943785D88582A4367889EE /* Empty.swift */; }; + 88A50BF727099AC5CAC16CD4C99B4861 /* DriveRouteCustomAnnotation.h in Headers */ = {isa = PBXBuildFile; fileRef = 059D407BB164CC7195BAA024608BEE50 /* DriveRouteCustomAnnotation.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 88EBCF3517BBC6B987ACD5C47422F576 /* Sequence.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2A306642D3099DB598CFB71871466DFC /* Sequence.swift */; }; + 892A2CDE39CD694BF836090D02AAAE4D /* ZLEditVideoViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = BFD6DE4A3D47DB649FA0D0A6D1E9E03C /* ZLEditVideoViewController.swift */; }; + 893E557FBC523702C79FA9A21FCB7349 /* UITextField+DDCategory.h in Headers */ = {isa = PBXBuildFile; fileRef = 084FAD33970C501880B546C046B09304 /* UITextField+DDCategory.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 89A74579487C25538D71E1B38643774B /* DDToastKit_Private-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = C1E808B15FDEEA5AF36D9DF4C4966B41 /* DDToastKit_Private-dummy.m */; }; + 8A274008ED97223DAA12E076D417889F /* CocoaDebugWindow.swift in Sources */ = {isa = PBXBuildFile; fileRef = BBC7DD37E331F07920058DC251372F58 /* CocoaDebugWindow.swift */; }; + 8A2BC1D6114D08F03E5D6CBD66814AD4 /* JXCategoryIndicatorBallView.m in Sources */ = {isa = PBXBuildFile; fileRef = B84E9DB849BDE2A2E75ADEFA12124308 /* JXCategoryIndicatorBallView.m */; }; + 8A36A9064A1796CBA330FEDBAD147348 /* SDWebImageError.m in Sources */ = {isa = PBXBuildFile; fileRef = CC38CA313AB06EF5431FECD7C0BF4061 /* SDWebImageError.m */; }; + 8A3BCFF83EB0F7B76C09EC9169F2046C /* SDImageCodersManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 86C0F651835CE9410F4238CEBC3D8633 /* SDImageCodersManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8A9DFB8E2AB590F6A1C2E1628F854293 /* IQNSArray+Sort.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4C402DB7701DC37101AF98F1AAA3C00A /* IQNSArray+Sort.swift */; }; + 8ACB6150ABD5A4BE4CDA42F23E090C9F /* IQKeyboardManager+Toolbar.swift in Sources */ = {isa = PBXBuildFile; fileRef = C30938D2D95C8CFD56F11229284457D5 /* IQKeyboardManager+Toolbar.swift */; }; + 8AE15BE648BEEA0A98F2AC4AE497BB96 /* JXCategoryTitleImageCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 27773BEB035B7035D67F1895E0590AEA /* JXCategoryTitleImageCell.m */; }; + 8B0B152593E3CCDD7456DD63125F38AB /* ESTabBarController-swift-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 918CCDBA1022A635F47D098B5190FBD9 /* ESTabBarController-swift-umbrella.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8B37CC907FC3D81E63891EFFB311D1DA /* MainScheduler.swift in Sources */ = {isa = PBXBuildFile; fileRef = FA505CCF603B91462290E082E1024CFF /* MainScheduler.swift */; }; + 8B718507527689FA26BC280BDB75FDFF /* KFAnimatedImage.swift in Sources */ = {isa = PBXBuildFile; fileRef = B562626692B35F70399778BEB06D65C8 /* KFAnimatedImage.swift */; }; + 8B7996264A46C83B41BED84333C707D4 /* ResponseSerialization.swift in Sources */ = {isa = PBXBuildFile; fileRef = C1CFE2F915114873F21405FED9B28760 /* ResponseSerialization.swift */; }; + 8B7D57E3FCE49F2518B7AE0E6B5D2B96 /* SharedSequence+Concurrency.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9F7D764AB9E80A651E964C15395AD6EE /* SharedSequence+Concurrency.swift */; }; + 8BAD04052E210723CC24D737216D8BDD /* DDFontKit_Private-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = E8619ACD3CC56D8168CF041F640FD42E /* DDFontKit_Private-umbrella.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8BF55823101A3DABEBCC4DBB679D6D69 /* ESTabBarController-swift-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 4CF649827D4BB7735801A7D686374EA4 /* ESTabBarController-swift-dummy.m */; }; + 8C35B5BAA36F209375286B3C3D2F7103 /* SDAnimatedImagePlayer.m in Sources */ = {isa = PBXBuildFile; fileRef = 7910D828D30815A4084832C84E065ABD /* SDAnimatedImagePlayer.m */; }; + 8C410A2ED4C48AE8304CB81EBBE58725 /* UIView+Responder.swift in Sources */ = {isa = PBXBuildFile; fileRef = 66C9E4C10895E1F718B3A337C2FA99DD /* UIView+Responder.swift */; }; + 8C584664D6B07968AA7846A75519A16A /* Kingfisher-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 75190BD62CC524E82385D0BC2E087422 /* Kingfisher-umbrella.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8CCEA9CC39354864D59E41672513B5D1 /* Result+Alamofire.swift in Sources */ = {isa = PBXBuildFile; fileRef = F597B4968E78128119C969D588B30F42 /* Result+Alamofire.swift */; }; + 8DA24D25E281BD8B9A695B37A48BDC43 /* DDBaseTableViewCell.h in Headers */ = {isa = PBXBuildFile; fileRef = 36D0576897272BCF2373509D2FCDD315 /* DDBaseTableViewCell.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8DE19A78CB22C3A938AA54381334F6B1 /* JXCategoryIndicatorLineView.m in Sources */ = {isa = PBXBuildFile; fileRef = 2AE01637CD4A740775EE7724E440C324 /* JXCategoryIndicatorLineView.m */; }; + 8E04134529985568DCFB8818BBBB7F5C /* UIEdgeInsets+Utils.swift in Sources */ = {isa = PBXBuildFile; fileRef = 89F51C34B23657FF69510E0DA8F6AB4B /* UIEdgeInsets+Utils.swift */; }; + 8E5256AFC173BF710216F67AA68F5CDB /* DDAF.swift in Sources */ = {isa = PBXBuildFile; fileRef = BF4E9A3B832A4E0AADBFB7EA1F8A431C /* DDAF.swift */; }; + 8E8F09AD96271039CB19EDAF7F40D5C2 /* MJRefreshComponent.h in Headers */ = {isa = PBXBuildFile; fileRef = 0C7D60686B2BC1EB102A5D122C2F7B5C /* MJRefreshComponent.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8E9422DF54BCC99CA32573ECA23B7DAC /* UISlider+Rx.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8B5A690194CC35F0CC1D2B4F5463C846 /* UISlider+Rx.swift */; }; + 8EE2005703426DFB542B34D09AF24A80 /* SDImageIOAnimatedCoderInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = CF37BF09619759044178949D04A293FB /* SDImageIOAnimatedCoderInternal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8F02C462D2897D1954AB61E7965A2962 /* BRDatePickerView+BR.h in Headers */ = {isa = PBXBuildFile; fileRef = A6F76FEE45C1E32CE51D341F23E1E41F /* BRDatePickerView+BR.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8F21AA61AEAEE275B82C922F4CFEFC13 /* SDImageIOAnimatedCoder.h in Headers */ = {isa = PBXBuildFile; fileRef = 793C3DAF5A8365FC6EEE804CFF85D948 /* SDImageIOAnimatedCoder.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8FA98CB7E5B912CAB92BC78003150B48 /* ZLPhotoPreviewPopInteractiveTransition.swift in Sources */ = {isa = PBXBuildFile; fileRef = CC037D082FC50C40CC2AB75FB80B1212 /* ZLPhotoPreviewPopInteractiveTransition.swift */; }; + 8FC0C1F0C19221901FECC66026743D59 /* _Sandboxer-Header.h in Headers */ = {isa = PBXBuildFile; fileRef = 13DB71A2DF2E8847BAA487208E1D3E1D /* _Sandboxer-Header.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8FFAEE85A670F82106FF69084BDC45DE /* BRDatePickerView.h in Headers */ = {isa = PBXBuildFile; fileRef = 062E0FB913015D1C74D805EC9CC57C63 /* BRDatePickerView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 903C2E7EE31983F144648843BB570C92 /* ZFLandscapeViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = 6DECE2CD091998856004D78FC629E2E4 /* ZFLandscapeViewController.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 90A692D45F5F2537EB0856B3169C97C4 /* RedirectHandler.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6A19B681F19BA1300CA12F5FAFD3364B /* RedirectHandler.swift */; }; + 90B15A331091D1C228BFC5F60D4E45F8 /* UIImageView+WebCache.m in Sources */ = {isa = PBXBuildFile; fileRef = F1FEF3B975EB40C85B4437117CDAB598 /* UIImageView+WebCache.m */; }; + 90C6480C4262B9CC1A61A3B7E437CCC5 /* SDDisplayLink.m in Sources */ = {isa = PBXBuildFile; fileRef = 760A359746A34A6C59BF4E271F7AAFD3 /* SDDisplayLink.m */; }; + 90D5A68E1EF23552D670E47D3B23AE4F /* JXCategoryIndicatorBackgroundView.h in Headers */ = {isa = PBXBuildFile; fileRef = 6654114B9228F7AC6DB978AB8EEF29BA /* JXCategoryIndicatorBackgroundView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 910F8466106459434C084A74EA003284 /* NetworkDetailModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = D8CC044D31EE8821B7EDADB1B86C09DD /* NetworkDetailModel.swift */; }; + 918DCF83A321043687D0EC792EA9B873 /* BehaviorRelay+Driver.swift in Sources */ = {isa = PBXBuildFile; fileRef = 33E080EE7742C6CA6040857FC0687A7D /* BehaviorRelay+Driver.swift */; }; + 918EBE8FA53446D7CF91717FB581A734 /* ImageDataProvider.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4D86BABF33B863F030194B8A52CA328E /* ImageDataProvider.swift */; }; + 9192B0E784D86E864323A0099D5DF9CD /* EKAttributes+PopBehavior.swift in Sources */ = {isa = PBXBuildFile; fileRef = F3525AEDA56FED2FF9795DFE7EDA805D /* EKAttributes+PopBehavior.swift */; }; + 91933502C0597B78B99EDDB6CEC92FD5 /* Delegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = C9BB2C3D03311AC04DF6996594CB6CA5 /* Delegate.swift */; }; + 919856A9D20F05F74E7034BCB26313B6 /* Typealiases.swift in Sources */ = {isa = PBXBuildFile; fileRef = 776D9C1A9AFDBDA4B9CADE3AEFD1F4A1 /* Typealiases.swift */; }; + 91E7BBF8F1A4202B3E4781E312E2B3A0 /* JXCategoryViewAnimator.m in Sources */ = {isa = PBXBuildFile; fileRef = 0BB849F8D022F2D44CB1B0298A884AC0 /* JXCategoryViewAnimator.m */; }; + 9234FAFEDAC39C4D42B7572F4F13FE43 /* ImageDownloaderDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = E17CCF9F8700A375410EFBE6C557607F /* ImageDownloaderDelegate.swift */; }; + 92B93FFA25205F6728C871EC199C940F /* JXCategoryTitleImageCellModel.h in Headers */ = {isa = PBXBuildFile; fileRef = 1B0309AE73CEA44E98F71755290E0533 /* JXCategoryTitleImageCellModel.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 92BAD4420B04D7F6A5243D5810D729BF /* EKPopUpMessage.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8B2835B6C0EED799C237BB1EE1E07259 /* EKPopUpMessage.swift */; }; + 92D1F411EDCD4E94848F2B2B5FE8EC2E /* Using.swift in Sources */ = {isa = PBXBuildFile; fileRef = DADACDBCCA4C393F0DFB836E30849B8D /* Using.swift */; }; + 92EFB720D893286C8BA11156EECEB7FA /* EKAttributes+Duration.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0969E15FC97AE985DA999BBCEF8C4C20 /* EKAttributes+Duration.swift */; }; + 92F90BB8342AA192D7C08520F4CCF266 /* CachedResponseHandler.swift in Sources */ = {isa = PBXBuildFile; fileRef = 99BAF67C8A5CD24748E409B4D34F1764 /* CachedResponseHandler.swift */; }; + 9348C310A4D8EE0038C25AA32FF0B240 /* SDInternalMacros.m in Sources */ = {isa = PBXBuildFile; fileRef = C7EA9E858EBB2FB3C378227BA979178A /* SDInternalMacros.m */; }; + 934A47F0CA3CE8D65B9C4547C263D0CF /* DDMAGeometry.h in Headers */ = {isa = PBXBuildFile; fileRef = 0F297546C6F6C28277DF8BE35C61DDC7 /* DDMAGeometry.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 93721C8F9CF4BDA2AB57C3967D748173 /* NSBundle+MJRefresh.h in Headers */ = {isa = PBXBuildFile; fileRef = D86FF60913CC9C7DA46B62C1C683E05D /* NSBundle+MJRefresh.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9377075FA4E0C7EFFD0E68C28235E9CC /* _ObjcLog.m in Sources */ = {isa = PBXBuildFile; fileRef = A9F2F3261724B3F01C84AEBEE79B3A5C /* _ObjcLog.m */; }; + 9382CEC3FAFA9B3E6F5C78B9663D9E48 /* RTLManager.m in Sources */ = {isa = PBXBuildFile; fileRef = DA1745FBAE3E5691CE7109A84B940193 /* RTLManager.m */; }; + 938AAACCB629CD676B449EE110185748 /* DDCollectionViewCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = E79F6EBD860959A940CF227C07C90D12 /* DDCollectionViewCell.swift */; }; + 938DEBEEAE94B73AEF7E4F300CB237AE /* VirtualTimeConverterType.swift in Sources */ = {isa = PBXBuildFile; fileRef = B0C20731A624F740F63267BC8FA87F85 /* VirtualTimeConverterType.swift */; }; + 93BEEA5D92D4F153A09A75627E2DB577 /* Bubble.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5C46F650C2A76EDC259A690248952D92 /* Bubble.swift */; }; + 93C9F3019A4BF9C45CA3147F8EEB647E /* Placeholder.swift in Sources */ = {isa = PBXBuildFile; fileRef = 732C5317E0DE96EB6E47A83C775DBE0E /* Placeholder.swift */; }; + 93D95C7F6691DED21F57289570648BA4 /* _OCLogModel.h in Headers */ = {isa = PBXBuildFile; fileRef = 13870762528D274783144041A9EBF362 /* _OCLogModel.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9463D7E45F0FED09C374998694C847E9 /* ConstraintMaker.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1ABC665AA46A259E0DBEF93414476E75 /* ConstraintMaker.swift */; }; + 94678F445C7F696058B88F7A9B31ECBB /* Indicator.swift in Sources */ = {isa = PBXBuildFile; fileRef = 06E15E659FF795DCB0FCBAC7CAB699C2 /* Indicator.swift */; }; + 94C4A079FF6CABA7F1B809123E682CB2 /* ZFOrientationObserver.h in Headers */ = {isa = PBXBuildFile; fileRef = 482F88FDDDEDFD3B68479DCB61A5C00C /* ZFOrientationObserver.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 951371DF78512514FEF71B4F6FD34EFD /* UIView+WebCacheOperation.m in Sources */ = {isa = PBXBuildFile; fileRef = 3A5B5298BB8B463D2787721F7E6D0A22 /* UIView+WebCacheOperation.m */; }; + 95A2AC17D9936524C874ACAE4A6E4A1B /* RxNavigationControllerDelegateProxy.swift in Sources */ = {isa = PBXBuildFile; fileRef = B6ECED9FCD08D1D74B9CA3E1016663E1 /* RxNavigationControllerDelegateProxy.swift */; }; + 95D6B375856547576214D45BAFD14C34 /* SwiftToast.swift in Sources */ = {isa = PBXBuildFile; fileRef = BB75C93DC6E154AF5443E4BB29955766 /* SwiftToast.swift */; }; + 95F17E0FC83301E67165E1F90C5AA5A4 /* ESTabBarItemContainer.swift in Sources */ = {isa = PBXBuildFile; fileRef = F762A66E222F56ED424E8728063D8F1C /* ESTabBarItemContainer.swift */; }; + 9608E323C617DBB486D89685D7267DB4 /* UIButton+WebCache.h in Headers */ = {isa = PBXBuildFile; fileRef = 76E7EA8EC2095659AE9175BBA6CB40BB /* UIButton+WebCache.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 96764028EA4DF65930708E58811FB745 /* ObserveOn.swift in Sources */ = {isa = PBXBuildFile; fileRef = AABD2A1F07E566F283854A6FE1C725C1 /* ObserveOn.swift */; }; + 969904FA903EE6C2EACFC8C452B25FE5 /* UILabel+DDCategory.m in Sources */ = {isa = PBXBuildFile; fileRef = 657EB11B3280CD8530B970935A96AA83 /* UILabel+DDCategory.m */; }; + 96E4B9E2601F91643C19484CB4FF061E /* MATraceReplayOverlay.m in Sources */ = {isa = PBXBuildFile; fileRef = 69D9F6B1C1928E8F5130179690702C33 /* MATraceReplayOverlay.m */; }; + 971245CD46BFE06B4FF838938725FE3D /* SDWebImageCacheKeyFilter.h in Headers */ = {isa = PBXBuildFile; fileRef = 71530BC7D723AAE2AB156CDC315857AF /* SDWebImageCacheKeyFilter.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9738274B0302F53ECB5756C1B66FF3B0 /* DDBaseScrollView.m in Sources */ = {isa = PBXBuildFile; fileRef = F704DFD4DDA03E7FADA8DF6152130DDC /* DDBaseScrollView.m */; }; + 9760B3EDECF6751F91C97173F0BD055C /* DisposeBase.swift in Sources */ = {isa = PBXBuildFile; fileRef = DEED4C0BA4E79E5C5C6887EC05AF121B /* DisposeBase.swift */; }; + 9773847629F2F105580593407D661685 /* JXCategoryIndicatorComponentView.h in Headers */ = {isa = PBXBuildFile; fileRef = A383DDF49CE20AFB159C4C2CFEEA0B3E /* JXCategoryIndicatorComponentView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 97B7C8CB4BF99A5CD5E485451B31C034 /* PrimitiveSequence+Concurrency.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7709DD62399CFC13BF0390A0BD71D6EC /* PrimitiveSequence+Concurrency.swift */; }; + 97BDF23C8E9038148496525214A838D6 /* IQBarButtonItem.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7CC988E9AF631ECC07792482EE6DEAB4 /* IQBarButtonItem.swift */; }; + 97C4019AD3BEEBDFBAF1F8451C665D54 /* ZFPlayerMediaPlayback.h in Headers */ = {isa = PBXBuildFile; fileRef = 9BCB0C6F48AC8A17A0E2B0C678984E6D /* ZFPlayerMediaPlayback.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 97E3C113173E5B9AE508B406612280AF /* NSThread+DDCategory.h in Headers */ = {isa = PBXBuildFile; fileRef = 89FB6615D86B8876062594851B8C8BE0 /* NSThread+DDCategory.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 982018F9943EA721B176DED187A3F4B4 /* Signal.swift in Sources */ = {isa = PBXBuildFile; fileRef = 425079D2E72CD9A6851A03BB59AA8956 /* Signal.swift */; }; + 98287415BE0154348AABC989BCC34F4C /* DDBaseView.m in Sources */ = {isa = PBXBuildFile; fileRef = AE4ADE608A6DD093F0D179EC9E3F5E4C /* DDBaseView.m */; }; + 983C31E06D6E4D7B9C87126A26D535E5 /* SDAnimatedImage.m in Sources */ = {isa = PBXBuildFile; fileRef = 0574B8818F6CC23AE99137764B856A06 /* SDAnimatedImage.m */; }; + 9842B2D9C892C0A9E6B69A2AC78AA5F1 /* JXCategoryCollectionView.h in Headers */ = {isa = PBXBuildFile; fileRef = DDB3BF38B62BB4CC0AC70E065002ADBE /* JXCategoryCollectionView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 988C40F1AB05182AC264578BF19E6FD1 /* BRPickerViewMacro.h in Headers */ = {isa = PBXBuildFile; fileRef = A83EFE5C3D04F06142F598E39C9F0272 /* BRPickerViewMacro.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 99052A7FD46935C7F9A760467213583D /* EKRootViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 30167188FE0F96121D70392E4927EE2A /* EKRootViewController.swift */; }; + 997DB62F7C251C04E2548F73C945E9EE /* SwiftEntryKit-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = DC9FA6863ED2B892306F22C7D733FE69 /* SwiftEntryKit-dummy.m */; }; + 99ABEC8661595B51AC9497571DDE9446 /* UIScreen+DDCategory.h in Headers */ = {isa = PBXBuildFile; fileRef = 434248B67E62304D0A79EBFA73DEFB2E /* UIScreen+DDCategory.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 99B1A4B9EB89ECF94B4330475EFB5689 /* ImagePrefetcher.swift in Sources */ = {isa = PBXBuildFile; fileRef = AB678DF70BF35D7970C6C6DE1ABE3134 /* ImagePrefetcher.swift */; }; + 99EA19C8F294727AAAB343FF9966D33B /* NetworkDetailCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = D20CE1ACC6D5D487937C7AD9114FF6CC /* NetworkDetailCell.swift */; }; + 99EF30562A31AD676C542693E91F0EE7 /* SDImageGraphics.m in Sources */ = {isa = PBXBuildFile; fileRef = BE7F608C41F8EC9276968E11EAD8AC11 /* SDImageGraphics.m */; }; + 9A258A01E679FC91809CB0E4CEE2BEC4 /* UIColor+SDHexString.m in Sources */ = {isa = PBXBuildFile; fileRef = 874C598F1A84B818C07CC7C106050490 /* UIColor+SDHexString.m */; }; + 9A46A2F7E8AAAE342D18C303B3B6EB8E /* UITableViewCell+DDCategory.m in Sources */ = {isa = PBXBuildFile; fileRef = E4300863F17D2D62979F2F20BCA0980D /* UITableViewCell+DDCategory.m */; }; + 9A700645670F731D3AEE30D578991F3C /* RecursiveLock.swift in Sources */ = {isa = PBXBuildFile; fileRef = C00F1FD587BC6143D1E65722A2C8F14D /* RecursiveLock.swift */; }; + 9A82883587EA4E20F472A2B58B330666 /* DDViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = FFE415ECD60C7DB122A14EA2B5A0EACA /* DDViewController.swift */; }; + 9ACCADABE04C5FBF041953A5CC27B8D5 /* SDImageHEICCoder.m in Sources */ = {isa = PBXBuildFile; fileRef = F598DED1F4A7DADBFFD3C6E69C2B68E6 /* SDImageHEICCoder.m */; }; + 9B06B23C0DD30320D27A0AFF3523DD08 /* UIViewArray+QuickLayout.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0CCAE470CE4B88EB94EC366E1214B2B0 /* UIViewArray+QuickLayout.swift */; }; + 9B09741472416487EE81F386B6C9355B /* UIImage+MultiFormat.m in Sources */ = {isa = PBXBuildFile; fileRef = A2BA8A1F668BD7BD669CDD5C82E79BE3 /* UIImage+MultiFormat.m */; }; + 9B2A0D221237BE5ACCF087F2577E4A6B /* _ImageController.h in Headers */ = {isa = PBXBuildFile; fileRef = 32C9F0A42AD073DAFC7CBD5FA97A23CD /* _ImageController.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9B3034DE85AC2C2172ED522E4756BB0B /* NSObject+DDCategory.m in Sources */ = {isa = PBXBuildFile; fileRef = 09E4BD9AF58866CD240FE98CC9FA9328 /* NSObject+DDCategory.m */; }; + 9B5100395827615651D86B4C60B15EE3 /* NSImage+Compatibility.h in Headers */ = {isa = PBXBuildFile; fileRef = 5142D7DA8FAFDAA3893180D0FE5EE662 /* NSImage+Compatibility.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9B56C88A1A26C2AF157005389DC79D89 /* UIColor+Utils.swift in Sources */ = {isa = PBXBuildFile; fileRef = CCE440C4A9E6B0E289D13EF13DB4BF2A /* UIColor+Utils.swift */; }; + 9BE4FDA4C69D90C76F06CBDEF1FF272F /* ZFPlayerConst.h in Headers */ = {isa = PBXBuildFile; fileRef = 500CD7974E8143C141DE2C47225F0B06 /* ZFPlayerConst.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9BE6FC823B5CB3EA3788A4C32F1D39E4 /* NSTextAttachment+Kingfisher.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5F332EFA980D0829D45D2525EA6AF3A2 /* NSTextAttachment+Kingfisher.swift */; }; + 9C37B4DAD43F665640DB61A214A57923 /* BooleanDisposable.swift in Sources */ = {isa = PBXBuildFile; fileRef = 054402A6F7A877BCAB755AD878F1E8DA /* BooleanDisposable.swift */; }; + 9CE0D080D988944F984ABF550840D22D /* _fishhook.h in Headers */ = {isa = PBXBuildFile; fileRef = 027120507F2AA7430737482FA5BE5C56 /* _fishhook.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9CF7F93C09CD223D8A4AEFDE6500448B /* IQKeyboardManagerConstantsInternal.swift in Sources */ = {isa = PBXBuildFile; fileRef = E4E23C6D27E30AC18C7236073ACF9489 /* IQKeyboardManagerConstantsInternal.swift */; }; + 9D2D3680BD77FB36C9483F4B2386CBC8 /* UIViewController+DDCategory.m in Sources */ = {isa = PBXBuildFile; fileRef = 0E002E2C792C5B797089C0CBB123AEB5 /* UIViewController+DDCategory.m */; }; + 9DC90F2EFC4727920E1553241B68DFF1 /* SDWebImagePrefetcher.h in Headers */ = {isa = PBXBuildFile; fileRef = 8C3378B84FC9537FAE6FE3A6471585C0 /* SDWebImagePrefetcher.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9DDBD070D8F28D3645E88F93FC7E98B6 /* MJRefresh-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 9C01CB87BF930A549BE2B7C73A68B7AA /* MJRefresh-dummy.m */; }; + 9E1FF64ECBEF9CA8C3A2B1B584716C2C /* SDImageAPNGCoder.m in Sources */ = {isa = PBXBuildFile; fileRef = 596DE640FE593D727FB94B1DAD21AAAA /* SDImageAPNGCoder.m */; }; + 9E278CF7CCA7053B8B9F9599C33DC02B /* SDImageCachesManagerOperation.m in Sources */ = {isa = PBXBuildFile; fileRef = EB1F35678631DAA13BD6564BDD10E255 /* SDImageCachesManagerOperation.m */; }; + 9E474548D6A0521350038A8213F06E0B /* LogViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = D89CE207A9418AA4AB812BE98C43EA68 /* LogViewController.swift */; }; + 9EA9DCA38AE8140DAA4900C68F0EA575 /* SDGraphicsImageRenderer.h in Headers */ = {isa = PBXBuildFile; fileRef = 6D1FBF472B9E18A77EC363401568B862 /* SDGraphicsImageRenderer.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9ECF42D1324F716832C4CB78502B7FF4 /* JXCategoryTitleVerticalZoomCellModel.h in Headers */ = {isa = PBXBuildFile; fileRef = A561F4A3DB1805B379FAA2EE96BD9B1D /* JXCategoryTitleVerticalZoomCellModel.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9EF1E4C365CA76114EBD310FACC88668 /* _RXDelegateProxy.h in Headers */ = {isa = PBXBuildFile; fileRef = 77A98B58F3B41349E68CDD317850FC5D /* _RXDelegateProxy.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9EF6BB46D0771433CE11C02B75DE4AE5 /* FormatIndicatedCacheSerializer.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3CF4B2CE79B8D63463E0D5C2F77DA555 /* FormatIndicatedCacheSerializer.swift */; }; + 9F1A9C17629B0FED4F5BE452442F3B5E /* MATraceReplayOverlayRender.m in Sources */ = {isa = PBXBuildFile; fileRef = DE7523480013502D9F659C935024B300 /* MATraceReplayOverlayRender.m */; }; + 9F3385E2B8DCE658F07D586F04FB5CC9 /* ControlEvent+Signal.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4981C8793512C66B24F8DADF2E5C1C56 /* ControlEvent+Signal.swift */; }; + 9F3964B15E3C4EFF4BC0B7616A546C2E /* CALayer+DDCategory.h in Headers */ = {isa = PBXBuildFile; fileRef = A59107DEA6267230DDAC16F6E137FAB6 /* CALayer+DDCategory.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9F5363070A385A4F0D0199982AA28C46 /* Resource.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8D35C0A2334F45D74CDE5ABD5D737C45 /* Resource.swift */; }; + 9F77F23C82AD7A280997AB8CE1026694 /* IQKeyboardManager+Internal.swift in Sources */ = {isa = PBXBuildFile; fileRef = 159B09585E27B8B76408E0C22FD4B90E /* IQKeyboardManager+Internal.swift */; }; + 9F9210CD851E076E6C5C1963F3F7F0BD /* SDWebImageTransitionInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = EAB28BE648A06BF38C2C181E1F579104 /* SDWebImageTransitionInternal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9F9B7CB3B56A59AC558BC4FEF41613DB /* TakeWithPredicate.swift in Sources */ = {isa = PBXBuildFile; fileRef = 880E7C4765FC3C7770A014CDB8FCCD61 /* TakeWithPredicate.swift */; }; + 9FE3FCF5816BE354A387DA99CE64BB16 /* ZLAlbumListCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9FFDCA6EA7DD6D1F48F6E6A470D82866 /* ZLAlbumListCell.swift */; }; + A0753DDE7E6EE0EE31ADED266223E0A3 /* _FilePreviewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 0A5FA45F1AAFDC0987C87FDCB4EE5926 /* _FilePreviewController.m */; }; + A07BA82EBAFD79669D9EF1118D658F0E /* UINavigationController+Rx.swift in Sources */ = {isa = PBXBuildFile; fileRef = E556305153B517AFB44E232891AE5F61 /* UINavigationController+Rx.swift */; }; + A0940F3076A871A4690B3B5C81CC63CC /* SynchronizedDisposeType.swift in Sources */ = {isa = PBXBuildFile; fileRef = D69D678E5C111AC128EA7ED941DA19E3 /* SynchronizedDisposeType.swift */; }; + A0C1B45DA29A58D0BFF28129F0965A3E /* DelegateProxy.swift in Sources */ = {isa = PBXBuildFile; fileRef = C48B612BD5FE3864CC82806D71E23179 /* DelegateProxy.swift */; }; + A0D722F2C2E041757A96ABBE6EEF644A /* SDWebImageDownloader.m in Sources */ = {isa = PBXBuildFile; fileRef = B02D4DCB02547219F3F0763849A36E9E /* SDWebImageDownloader.m */; }; + A0F05798AA7269C371264DFD7BDB1904 /* IQKeyboardReturnKeyHandler.swift in Sources */ = {isa = PBXBuildFile; fileRef = A64075259164C06A45D6E9220ABAF9EE /* IQKeyboardReturnKeyHandler.swift */; }; + A0F7312CE467F66CA9412CC9BF06ED00 /* ConstraintRelation.swift in Sources */ = {isa = PBXBuildFile; fileRef = DF6C4414F40305BBFD781E453EA72A91 /* ConstraintRelation.swift */; }; + A1355E1BBE3731F83CB38B9055E2372B /* JXCategoryDotCell.m in Sources */ = {isa = PBXBuildFile; fileRef = D4913655D4F50C8A2D4F91427244E177 /* JXCategoryDotCell.m */; }; + A1540B6250A565E9F4FA071822F86C70 /* EKAttributes+Precedence.swift in Sources */ = {isa = PBXBuildFile; fileRef = 403137021425F754E9838004199BEE05 /* EKAttributes+Precedence.swift */; }; + A15CDB022FC7EF5E9B8C06CBF5C3842D /* BRDatePickerView.m in Sources */ = {isa = PBXBuildFile; fileRef = FCC0689C94E168FD23D6DF07468A933E /* BRDatePickerView.m */; }; + A1949F2B9289F7954C77D3E23621727C /* SDImageAWebPCoder.m in Sources */ = {isa = PBXBuildFile; fileRef = B2551C232FF781EC5A99629799F96B3D /* SDImageAWebPCoder.m */; }; + A1B367623DBD487A62091B47587CC529 /* UITextView+DDCategory.h in Headers */ = {isa = PBXBuildFile; fileRef = 707F1D31A6782BA84943F925D3B8B7BC /* UITextView+DDCategory.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A20B28B7C2D37D42C1C8F8FAB350CD8E /* DDCategory.h in Headers */ = {isa = PBXBuildFile; fileRef = 42C512828A40E152872C6B4CE3903BE0 /* DDCategory.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A247B85A32906601E0AE92D4E138D371 /* UIViewController+DDCategory.h in Headers */ = {isa = PBXBuildFile; fileRef = 4E0DDF1EA55919DC4CBB30DD9B225319 /* UIViewController+DDCategory.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A252AF7657AE77B71C86CB9DD16C7ECD /* ZLBaseStickerView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 492BF29EF10B1A80C58592E2008A8013 /* ZLBaseStickerView.swift */; }; + A254EEEE1080168B974C7A51EE1720FE /* _RXDelegateProxy.m in Sources */ = {isa = PBXBuildFile; fileRef = 63E0D36CEF3DBF49F6B580F32FC58C4A /* _RXDelegateProxy.m */; }; + A2594BB6D1B5A1C5F7652550BD4D5CFE /* SDImageFrame.m in Sources */ = {isa = PBXBuildFile; fileRef = 5A1E4F867A8F571345C3F5671F4A12F8 /* SDImageFrame.m */; }; + A2EF4A22909B4F00632D584DFC1AF84E /* JXCategoryImageCellModel.m in Sources */ = {isa = PBXBuildFile; fileRef = F0E17ABBA096211C6ED32351A16C4B3A /* JXCategoryImageCellModel.m */; }; + A2FDCF204E4F34A280D10E41A010743C /* ZFVolumeBrightnessView.m in Sources */ = {isa = PBXBuildFile; fileRef = 5C5EC748DF82D46F9C9A08C1CFB9970E /* ZFVolumeBrightnessView.m */; }; + A340546632D10905379CFF17E52381D8 /* UICollectionViewLayout+MJRefresh.m in Sources */ = {isa = PBXBuildFile; fileRef = D6A832E4BDE66310505B95C163812E18 /* UICollectionViewLayout+MJRefresh.m */; }; + A3614B7735695DD47BD1BC18CC9610ED /* EKAttributes.swift in Sources */ = {isa = PBXBuildFile; fileRef = 81AB7E3E77C2A4610F400CFDD9C5FFEB /* EKAttributes.swift */; }; + A3B1C5058E6D1A9BC138D3265F4914F6 /* SDWebImageError.h in Headers */ = {isa = PBXBuildFile; fileRef = 7593E68CD0D047B1AA07A88D26C807B7 /* SDWebImageError.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A3F9CBE2A6DE24552851F198C752D92C /* Date+Dispatch.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5B6E1C43DDC2917670BEB8DBBDB08584 /* Date+Dispatch.swift */; }; + A4232F59E1918C240232947792D51757 /* _ObjcLog.h in Headers */ = {isa = PBXBuildFile; fileRef = 0AF1A76F33B4E63B165CE5FA5B91A130 /* _ObjcLog.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A4390CE9EDCECFF6375AA584E2EAD34F /* ReplayRelay.swift in Sources */ = {isa = PBXBuildFile; fileRef = 398EF02AC671038FA4CF57813E3CF4D0 /* ReplayRelay.swift */; }; + A5476425D3C5D6705F6FBD0E515FCD7A /* DriveRouteCustomAnnotationView.h in Headers */ = {isa = PBXBuildFile; fileRef = F39356F38D8A9410EB074F2BD28DAF99 /* DriveRouteCustomAnnotationView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A5821D2212C003710A5C38D9664B78C3 /* DDAutoUIKit_Private-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 06DC1011D3CB2579CF954A6998A82B46 /* DDAutoUIKit_Private-umbrella.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A5ADCEB47AD35B2837432D89A38F1EB3 /* JXCategoryTitleImageView.h in Headers */ = {isa = PBXBuildFile; fileRef = 991E213B89A1022461033F97D75A8D59 /* JXCategoryTitleImageView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A5DF3BEAD02F2529DDA2F302CECD3AC5 /* MJRefreshConst.h in Headers */ = {isa = PBXBuildFile; fileRef = D2DC7453F3FCCEE3E16BBB5544D09300 /* MJRefreshConst.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A5FBC4300B4ABFAD6D946894FFF20CE1 /* JXCategoryIndicatorTriangleView.m in Sources */ = {isa = PBXBuildFile; fileRef = FB68195B395EB6CF8633DE6EDFBB1088 /* JXCategoryIndicatorTriangleView.m */; }; + A6317E0907AB4CC3D67439817FAE57BD /* ImageDownloader.swift in Sources */ = {isa = PBXBuildFile; fileRef = D64A3DA85615ED1A56221AB6F36FA565 /* ImageDownloader.swift */; }; + A633C2F82C4975DD22E150A795CD00DD /* IQUITextFieldView+Additions.swift in Sources */ = {isa = PBXBuildFile; fileRef = D24E1278A7685A01795991E9FD2EAA66 /* IQUITextFieldView+Additions.swift */; }; + A63635F42151DC61690AB3D4344111F7 /* UIImage+DDCategory.m in Sources */ = {isa = PBXBuildFile; fileRef = AA1A3E07AB1893E12AB107D28F0E5457 /* UIImage+DDCategory.m */; }; + A661A54FB0BE0E81281BDCD7009CA8B4 /* PriorityQueue.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9CC0B99E9419B9D9D1B93DEA4580469F /* PriorityQueue.swift */; }; + A69BD642F651597A508BFFC52465D14F /* UIRefreshControl+Rx.swift in Sources */ = {isa = PBXBuildFile; fileRef = DBEC891CEE309B242862AF7413655386 /* UIRefreshControl+Rx.swift */; }; + A6E93420233B40E6C5FD32FC0C411AF2 /* DDOCLog.h in Headers */ = {isa = PBXBuildFile; fileRef = 4F949BDD3943AA2E03106E9CF3CA3FB8 /* DDOCLog.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A6EAC1E0ACC363F33EE2B1D9A908EB9D /* UIColor+JXAdd.m in Sources */ = {isa = PBXBuildFile; fileRef = CB2E8F051F4B981AB5E31D41EF9A0EBA /* UIColor+JXAdd.m */; }; + A7062B54FD5C7AF185BB61DADF92FBEA /* Binder.swift in Sources */ = {isa = PBXBuildFile; fileRef = B6D33CBC0FA9298AE47CF287968671AD /* Binder.swift */; }; + A71B9809FA82EE0CE142382FD6162BAB /* SDWebImageDefine.h in Headers */ = {isa = PBXBuildFile; fileRef = F5C5BE989D2BD909E8E0DD78E1BFA820 /* SDWebImageDefine.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A7395AD90CE7874072EC370C8AE32796 /* CocoaDebugTool.h in Headers */ = {isa = PBXBuildFile; fileRef = EEB0A50A51632AAD00B9054793B6AEFB /* CocoaDebugTool.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A77D042C0EE798B06F9120BABDB68255 /* NSAttributedString+DDCategory.m in Sources */ = {isa = PBXBuildFile; fileRef = ADCB8C90F606DA9FA386F2B4EB1215A7 /* NSAttributedString+DDCategory.m */; }; + A7C1EC0054ECE0EF2F2CB1B561C23590 /* SDImageCoder.m in Sources */ = {isa = PBXBuildFile; fileRef = 28A65AC2858558F85D9E83C7A5957D51 /* SDImageCoder.m */; }; + A7E0CE992F5E28A78FF7705F4AA95F1C /* _Sandboxer.m in Sources */ = {isa = PBXBuildFile; fileRef = 9D4197BFCAA16F893B016E2417DF1E96 /* _Sandboxer.m */; }; + A800CDAB64BB49B835120199FDDF7EE9 /* ZLThumbnailViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = D4D32829D54A1ECAE44AE1433ED7CD8A /* ZLThumbnailViewController.swift */; }; + A8046890340F247D5EF036A8C232981C /* MKAnnotationView+WebCache.h in Headers */ = {isa = PBXBuildFile; fileRef = 3A917F0B3BFF341657895E87AD166628 /* MKAnnotationView+WebCache.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A828254620582CC1AC5D705BC77294D2 /* SDImageIOAnimatedCoder.m in Sources */ = {isa = PBXBuildFile; fileRef = 8831FA0DDABAA2853CF5963C7D0B3E5A /* SDImageIOAnimatedCoder.m */; }; + A82F0D4FB1D81AFA125ED8972A4CC3A0 /* MJRefreshTrailer.h in Headers */ = {isa = PBXBuildFile; fileRef = B40B699E20A88FA178864D907B41199B /* MJRefreshTrailer.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A84FFA69993A0C56A0CE4937BF3C481F /* HistoricalScheduler.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7B9475A3AEF81D09A088D498993EC74C /* HistoricalScheduler.swift */; }; + A9287B485E49EFFB8DE08945AECF14D8 /* RxTarget.swift in Sources */ = {isa = PBXBuildFile; fileRef = D3CE7A45B66F1B3D2596512F99B784F9 /* RxTarget.swift */; }; + A9593306999952CA919A4DDE82EC6C3E /* DDControlsKit_Private-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 22C59F709190982BA742B1CD33C97A05 /* DDControlsKit_Private-dummy.m */; }; + AA0B700D7499FDD27E65E53F8FD2DEBE /* QLUtils.swift in Sources */ = {isa = PBXBuildFile; fileRef = 98446E34A5BC2175684D69EA687AEB83 /* QLUtils.swift */; }; + AA1BF33AE40D81CD7DD6D75696866120 /* DDBaseButton.h in Headers */ = {isa = PBXBuildFile; fileRef = 5B8523EC1C497B23AEB099EAA9E48591 /* DDBaseButton.h */; settings = {ATTRIBUTES = (Project, ); }; }; + AA624D3EE03B4A895DC1FFE446ABCC0D /* RxTableViewReactiveArrayDataSource.swift in Sources */ = {isa = PBXBuildFile; fileRef = 644D8AD252E672E3F7F6BA6624E9119C /* RxTableViewReactiveArrayDataSource.swift */; }; + AAA51B9D97A6385BFCD0BE040F9695E2 /* StringEncoding+Alamofire.swift in Sources */ = {isa = PBXBuildFile; fileRef = 32A060FA06912DEF08C14B2CAF8AC48C /* StringEncoding+Alamofire.swift */; }; + AABF3DC7DF10689372AA615D03DA9DFC /* ConstraintDirectionalInsetTarget.swift in Sources */ = {isa = PBXBuildFile; fileRef = D59F28AA67F900CC609CE298D2576872 /* ConstraintDirectionalInsetTarget.swift */; }; + AAC304321AC76D2C680F473FA3A23C12 /* SDImageAssetManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 83D8B17DEBF5754D172240F006F09E29 /* SDImageAssetManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + AAE47673FBBFDAC8C28BC40A786F9B73 /* ZLPhotoPreviewAnimatedTransition.swift in Sources */ = {isa = PBXBuildFile; fileRef = 921A85E91364FA6A782EEC183AA278FF /* ZLPhotoPreviewAnimatedTransition.swift */; }; + AB0A7FC1637EC80FF292A7497915811D /* RequestInterceptor.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1B0A5DBEE83873016874FE63FCC166F9 /* RequestInterceptor.swift */; }; + AB4D5C66726A63E322A042017408210E /* DDSwiftLog.swift in Sources */ = {isa = PBXBuildFile; fileRef = 944FA5EAC18B49C032D0130791E1DCAE /* DDSwiftLog.swift */; }; + ABF58857A9ED236CD5B387FF0C56FFC0 /* NSBundle+MJRefresh.m in Sources */ = {isa = PBXBuildFile; fileRef = 35DB9B25A38E1906269481378DC084E8 /* NSBundle+MJRefresh.m */; }; + AC128BF52E4D00EFC523B3779B9B7FB6 /* MJRefreshStateTrailer.h in Headers */ = {isa = PBXBuildFile; fileRef = AC2B6F70537955B1FC02DBFE8A7D5042 /* MJRefreshStateTrailer.h */; settings = {ATTRIBUTES = (Project, ); }; }; + AC5D61774CD2638768862FD2934B6027 /* MATraceReplayOverlayRender.h in Headers */ = {isa = PBXBuildFile; fileRef = DB67D38AC26C1E33F0B2A67C4C7E10EC /* MATraceReplayOverlayRender.h */; settings = {ATTRIBUTES = (Project, ); }; }; + ACE0BD363363C792B176AAFF495B0369 /* _RXObjCRuntime.h in Headers */ = {isa = PBXBuildFile; fileRef = 1D4569496544524EF4A71EB47BB75AA3 /* _RXObjCRuntime.h */; settings = {ATTRIBUTES = (Project, ); }; }; + ACF3484F2DAB6A3F2DFFF5F889370BF5 /* CombineLatest+arity.swift in Sources */ = {isa = PBXBuildFile; fileRef = 62C9B6FEA8933A8FFC5187F59FF50546 /* CombineLatest+arity.swift */; }; + ACFF7907821CA83DF524AF87F875FFF1 /* SingleAssignmentDisposable.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2957132475FD88FB6D7EA45136D9EEDF /* SingleAssignmentDisposable.swift */; }; + AD2D8BB58CB2F0FF6423A016D14516F5 /* NSData+ImageContentType.h in Headers */ = {isa = PBXBuildFile; fileRef = DEF48095A9D20497275CE1D502512D48 /* NSData+ImageContentType.h */; settings = {ATTRIBUTES = (Project, ); }; }; + AD428E45B5793B370BC9084A07D2BDB5 /* UIDatePicker+Rx.swift in Sources */ = {isa = PBXBuildFile; fileRef = 901771A17BC2D5F010638245884EA1B0 /* UIDatePicker+Rx.swift */; }; + AD482F2D73E3467B1A5C87937B4F7603 /* Observable.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0C7E08017D80EF1936CE54E783C7F2C9 /* Observable.swift */; }; + ADA26D9BD8D714E1B3F6E424BB94E6B7 /* Bag.swift in Sources */ = {isa = PBXBuildFile; fileRef = 24074D619CA979F76AB1D2FD1CCA6091 /* Bag.swift */; }; + AEA4B4414A13672F172ABFC829A81A2C /* WithUnretained.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1B606FD5693272D3406170F74B26593D /* WithUnretained.swift */; }; + AF02F5C6B6D6FA14A017F65611E3974A /* SDImageAWebPCoder.h in Headers */ = {isa = PBXBuildFile; fileRef = 2559F26C75D13C13FF2804382D3F59C7 /* SDImageAWebPCoder.h */; settings = {ATTRIBUTES = (Project, ); }; }; + AF1850793335D7411B7CA119CCFDF776 /* SDWebImagePrefetcher.m in Sources */ = {isa = PBXBuildFile; fileRef = DB5035681FC46F97890BBDA4BE1BBECC /* SDWebImagePrefetcher.m */; }; + AF5EEFE6005E0DE11ACE6DAF7C97A248 /* UIPickerView+Rx.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0B7EE5B4F5FFDEA10868682DCE8344CD /* UIPickerView+Rx.swift */; }; + AF781C8802F46CBA29CE8AD70F2B40DE /* AsyncSubject.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7461F23EDA1518F6883EEB3E41CA0304 /* AsyncSubject.swift */; }; + AF91B100F4B4D65B92BF8CA590B2005F /* WindowHelper.swift in Sources */ = {isa = PBXBuildFile; fileRef = AF00DB45CF5FB56573C940FDCC1E6811 /* WindowHelper.swift */; }; + AFE462A27C50428CA433CD3254C90863 /* SDImageCoderHelper.m in Sources */ = {isa = PBXBuildFile; fileRef = D0870107DA8522EF705B7D6480F1771A /* SDImageCoderHelper.m */; }; + B04B2B65E995F882AB75E0609D19306C /* UIView+Shadow.swift in Sources */ = {isa = PBXBuildFile; fileRef = C1ECF61E1FE2D119776EF52063D94ECF /* UIView+Shadow.swift */; }; + B0E0EBCC1739673622DDAB04CDC5DFD7 /* Pods-OrderScheduling-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = E8C5B817601E9A6369B5DDC72B5F6FAD /* Pods-OrderScheduling-dummy.m */; }; + B0FE5F5E13999899D057412471C60B59 /* ImageDrawing.swift in Sources */ = {isa = PBXBuildFile; fileRef = 72AF32E7E82947FD9AC91381D2F2E4CF /* ImageDrawing.swift */; }; + B10E4F3871A53CAA6B9DE3D77091E718 /* EKAttributes+HapticFeedback.swift in Sources */ = {isa = PBXBuildFile; fileRef = CD63A5786193A6BAEA56557F715A5017 /* EKAttributes+HapticFeedback.swift */; }; + B1104525F66A74BF581940CC8EBD4605 /* DDTimerManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 20A03C612DE994A6D49EFA787201E56C /* DDTimerManager.m */; }; + B12E1D13FBD4ED9307E4BE0B8CA3A25C /* UICollectionView+DDCategory.m in Sources */ = {isa = PBXBuildFile; fileRef = D8080D1F1FBD07B6EB13C1A0757CA76E /* UICollectionView+DDCategory.m */; }; + B1466F2AF4C8C5D9668D912F5716064A /* UIImage+MultiFormat.h in Headers */ = {isa = PBXBuildFile; fileRef = A696AAE96A27A0204EC62503D9C54A30 /* UIImage+MultiFormat.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B1793F1388223AC4F7823353845D5A80 /* DDButton.swift in Sources */ = {isa = PBXBuildFile; fileRef = E7DEAAB15891C178CEB558B353A28B54 /* DDButton.swift */; }; + B18358F79346BBDCECD8D8050B92C6CC /* ConstraintMakerEditable.swift in Sources */ = {isa = PBXBuildFile; fileRef = 41FAE916D4C0AEC201074C5C74E92C63 /* ConstraintMakerEditable.swift */; }; + B1A7FCCDF2F76FD799074AFEF13F2C43 /* NSSlider+Rx.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4858A1FCA98FB39993CF48E027E412A1 /* NSSlider+Rx.swift */; }; + B1B6CF6A2FA7EB0BA2DE5414F5DF946C /* SkipUntil.swift in Sources */ = {isa = PBXBuildFile; fileRef = E01CE23B80FE837FF12BBC50F8999492 /* SkipUntil.swift */; }; + B1CD720CED00E5BC1E5B96D581603C2D /* NSURL+DDCategory.h in Headers */ = {isa = PBXBuildFile; fileRef = 310BD972647078EAFEE4033CAB1E1BF2 /* NSURL+DDCategory.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B206DE65C9441E9FCE3CA1282ECF02F2 /* UITableView+DDCategory.m in Sources */ = {isa = PBXBuildFile; fileRef = 7F28629DAC354AD8EF7DCE02ADE79E55 /* UITableView+DDCategory.m */; }; + B21EF964ACC6CBCD4E5D0D766A71E9DE /* DDColorKit_Private-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 2F91E187CB44F351CC91D0D87E3C0740 /* DDColorKit_Private-umbrella.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B2851C902C2C372F18387C2B39AA47C1 /* CocoaDebug+Extensions.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9DC09D51BA50A7C238B68B28BEB3003F /* CocoaDebug+Extensions.swift */; }; + B2F00FA6A845D79D514C907870345041 /* ZLAdjustSlider.swift in Sources */ = {isa = PBXBuildFile; fileRef = EF917127A706BE5056DB0757BB0D3027 /* ZLAdjustSlider.swift */; }; + B315A21471DC78A45CA5249A9EF6EF85 /* AuthenticationInterceptor.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6EB25FBC860FA77D73E17653A68A963D /* AuthenticationInterceptor.swift */; }; + B337891246C2848ABC1945BA4D95817E /* _ImageController.m in Sources */ = {isa = PBXBuildFile; fileRef = 445264F16A403F50D4B8A68C351262D4 /* _ImageController.m */; }; + B39413405FA4D21C59E891E7DD18DB1E /* Infallible+CombineLatest+arity.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6153795380A37DDF8BBB1386F4942EA0 /* Infallible+CombineLatest+arity.swift */; }; + B3BCB6762F05E6CE8F5DF3A605730B6C /* SDWebImageDownloaderResponseModifier.h in Headers */ = {isa = PBXBuildFile; fileRef = 4449009A5E7867CF71C5B215635F2D2E /* SDWebImageDownloaderResponseModifier.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B3BD944BFF9FBD5F1638D4FA684DFC9D /* DDColorKit_Private-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 183F19FE6BC24CC2ED469200825BED13 /* DDColorKit_Private-dummy.m */; }; + B3D357841FDA256DD78B84471E009F1D /* DDMATrackManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 939956CD7371C4B206B1FE2D5DB243B4 /* DDMATrackManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B3F8D02D6F81E468340ADA0561C2990B /* _HttpDatasource.m in Sources */ = {isa = PBXBuildFile; fileRef = EEA008A28BDF010E2D0CE9198AD28F33 /* _HttpDatasource.m */; }; + B4093EE96AA888E2B1609715B1CAE585 /* ZLGeneralDefine.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0334D58B2D51FF01D3196F736BA41C10 /* ZLGeneralDefine.swift */; }; + B410A7FFCF6A4F1FC0160F22E919B009 /* RxCocoa-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = DEF065BB35A819D3C99AAF3565D7EC4F /* RxCocoa-umbrella.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B43B1D85F1DF038DB7D01DFAF12D48A0 /* NetworkDetailViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 75E9D2C6B1F009CBAB091818A4F6FB70 /* NetworkDetailViewController.swift */; }; + B450462CA20B3A8EE7F08F1575FBD714 /* MJRefreshAutoNormalFooter.h in Headers */ = {isa = PBXBuildFile; fileRef = 0F79D93E9EAC91998CD46F9BD551F765 /* MJRefreshAutoNormalFooter.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B4527D6F585156B3603D05329436D4E0 /* SDWebImageOperation.m in Sources */ = {isa = PBXBuildFile; fileRef = 1B3E8FBCB4BB9FD92F07D08BAB775E94 /* SDWebImageOperation.m */; }; + B460A9A103E7954D19D481B77F87F83E /* JXCategoryIndicatorParamsModel.m in Sources */ = {isa = PBXBuildFile; fileRef = A5FD96D59B7F203B54C673283CA021A1 /* JXCategoryIndicatorParamsModel.m */; }; + B4E540E0998D38BEA54DE098FDED09A4 /* DDMAMapView.h in Headers */ = {isa = PBXBuildFile; fileRef = AE8ACAEDAAA681B531C75C1E85BA5098 /* DDMAMapView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B4F5741B73D531E1ACF070C785EC6613 /* ZFPlayerNotification.h in Headers */ = {isa = PBXBuildFile; fileRef = 43CE7FF2EAA4CE7A18BCC8CEA451A28D /* ZFPlayerNotification.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B4FE3233189E681459E6FAFE1A656449 /* EntryAppearanceDescriptor.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2D5E412B9217D6F1994258AE97A9F8EA /* EntryAppearanceDescriptor.swift */; }; + B5269B62215B96500B9620B997F378F4 /* MJRefreshHeader.h in Headers */ = {isa = PBXBuildFile; fileRef = 9D66D4ED537BD4320CF66C0D4215BFD5 /* MJRefreshHeader.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B53F9C80DFE371236697EE4CF0CBB918 /* UIImageView+DDWebCache.h in Headers */ = {isa = PBXBuildFile; fileRef = 106867BD09CA406CC67213E4F249158E /* UIImageView+DDWebCache.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B5570035F390796484BAE09F15699744 /* DispatchQueue+Extensions.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5BCAF6C65AB5E9C08DBA6533E050B8EB /* DispatchQueue+Extensions.swift */; }; + B55D49CD10FA31F1E6F92E225D821BB2 /* JXCategoryImageCellModel.h in Headers */ = {isa = PBXBuildFile; fileRef = E2BA3D133BAE9213EEC52E376DD5296B /* JXCategoryImageCellModel.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B58F07921B57632FE68D62443386997D /* Decode.swift in Sources */ = {isa = PBXBuildFile; fileRef = E84A12C3DFBDE91E21E7337CCA6944B7 /* Decode.swift */; }; + B5DCFF5EEA48D7175514B0639C4B8EBC /* DelaySubscription.swift in Sources */ = {isa = PBXBuildFile; fileRef = D6A30222DA6B089C8449D6D03D27304B /* DelaySubscription.swift */; }; + B5FA1092BF1D816BB9A7BA06EB64BFA4 /* EKProperty.swift in Sources */ = {isa = PBXBuildFile; fileRef = CB4263E5C73CE2EB0CA35F0E6E79F95B /* EKProperty.swift */; }; + B611198D9692C8B6D4970591AED83362 /* MJRefreshBackStateFooter.h in Headers */ = {isa = PBXBuildFile; fileRef = 558EFDDD9783513313FFED3E7DFEBA42 /* MJRefreshBackStateFooter.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B61A05B07D76CBBC87C664B2D964A5C3 /* Notifications.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4827106206B2A59B58B5EE626C4BA59E /* Notifications.swift */; }; + B659FB406C404DBBAE4A648BAE9BC77D /* ParameterEncoding.swift in Sources */ = {isa = PBXBuildFile; fileRef = 92913AC99AB731685E7EDF16583F293B /* ParameterEncoding.swift */; }; + B66389A11F64F80F5CBA50E6E8FEE348 /* ParameterEncoder.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6FF5864CC332A81D79E267D2F08F5EED /* ParameterEncoder.swift */; }; + B69CF72805136E1812C4DD14D36571B1 /* ConstraintInsetTarget.swift in Sources */ = {isa = PBXBuildFile; fileRef = F9BA2AC78B83BB02C5AB9F67BC7CD445 /* ConstraintInsetTarget.swift */; }; + B73678A0D6DC52A94F163D0C65B07B56 /* _DeviceUtil+Constant.h in Headers */ = {isa = PBXBuildFile; fileRef = C1A659BA3E9B3B83261C34A4F724A4EA /* _DeviceUtil+Constant.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B7551F7AE4DFD9D8BAF5DF408EE11783 /* SDAnimatedImagePlayer.h in Headers */ = {isa = PBXBuildFile; fileRef = C2EBB54A8777788FCC37F4DDD1F95CD7 /* SDAnimatedImagePlayer.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B77657E559F9F982B8A41880869F0847 /* ZFIJKPlayerManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 7531A111C97507236F1EFDDE18FDFF79 /* ZFIJKPlayerManager.m */; }; + B791542990CE08B57A3292ED05F6DB74 /* DDBaseImage.m in Sources */ = {isa = PBXBuildFile; fileRef = C77A0B91DA4695A2E41E274FF0DF1817 /* DDBaseImage.m */; }; + B7ED93C0661C6395D434C8728CA57665 /* MJRefreshBackGifFooter.h in Headers */ = {isa = PBXBuildFile; fileRef = 4AD2B3D32DC2D5922D4FF51E8ADA7CBB /* MJRefreshBackGifFooter.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B89BC37A7EF9653B4E70A8386786F5E5 /* SDAnimatedImage.h in Headers */ = {isa = PBXBuildFile; fileRef = F4228AF4D852F9660E71671138791A16 /* SDAnimatedImage.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B8A6D72F39FE58ACFE28E3C888966365 /* SDImageGIFCoder.h in Headers */ = {isa = PBXBuildFile; fileRef = A2FF4938FC742B41E51A3D67F83B59BC /* SDImageGIFCoder.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B8E2D20AC3123CD07ABBDC96C0FBEA9A /* JXCategoryIndicatorBackgroundView.m in Sources */ = {isa = PBXBuildFile; fileRef = BD78FEC426D325F38D6E871EB1610720 /* JXCategoryIndicatorBackgroundView.m */; }; + B8E9A4E2E8BB5D2A298FB1C56696CF1C /* _HttpModel.h in Headers */ = {isa = PBXBuildFile; fileRef = 1FFEB9DBD101C979A602281F0268717E /* _HttpModel.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B9339C5232FA751530693C26C023E2BC /* NSTextField+Rx.swift in Sources */ = {isa = PBXBuildFile; fileRef = DED5EDAA37435A7FE04C80EEC2761374 /* NSTextField+Rx.swift */; }; + B9883CD007BCAA0FD199AFB559736FE6 /* Infallible.swift in Sources */ = {isa = PBXBuildFile; fileRef = E0F0F96451A68F74A5FB41806794FCB0 /* Infallible.swift */; }; + B990FA20B3F369B224D4B96ABB4045E4 /* BRStringPickerView.h in Headers */ = {isa = PBXBuildFile; fileRef = 715FF079BB749EA6EC2C8E7EFEE01776 /* BRStringPickerView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B9910A2F6B82398D9311F4EB38729DF0 /* JXCategoryIndicatorComponentView.m in Sources */ = {isa = PBXBuildFile; fileRef = EA16FD120D889CD293F635B3EB3584D1 /* JXCategoryIndicatorComponentView.m */; }; + B9983226FCDFACBDB700D0483007AE02 /* Dematerialize.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4771E804534D3D249DF1F01ED35C03FB /* Dematerialize.swift */; }; + B9FED8E7B04C74F084D8156BD8AA93DA /* DDMALocationManager.h in Headers */ = {isa = PBXBuildFile; fileRef = E20517175479DD20B2E216370A28A2F3 /* DDMALocationManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; BA13DC414281FAF210086D1BCF79E6BD /* Pods-OrderSchedulingNotificationService-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 1E7D75EA00C68C8EC9529B061EA9B627 /* Pods-OrderSchedulingNotificationService-dummy.m */; }; - BAB546FF62D34C6C2E6141CA5D0EEA69 /* _SandboxerHelper.h in Headers */ = {isa = PBXBuildFile; fileRef = 5F185A71621EEA035032BAEE4A501714 /* _SandboxerHelper.h */; settings = {ATTRIBUTES = (Project, ); }; }; - BAD25B30F0E334F12EC76FF901DEE3E1 /* HapticFeedbackGenerator.swift in Sources */ = {isa = PBXBuildFile; fileRef = 15A9648565E1DF1DEB737EAF33F6C3B3 /* HapticFeedbackGenerator.swift */; }; - BADE59BFD6ABB8131D8E89FDCF00C74D /* DDBaseTableView.h in Headers */ = {isa = PBXBuildFile; fileRef = D1E1879238C379925C9778125D743648 /* DDBaseTableView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - BB11309B4519548E3ECEE89D25C9A5DF /* JXCategoryTitleImageCellModel.m in Sources */ = {isa = PBXBuildFile; fileRef = A5CDDAEB637B3784898348A1C48D1D9A /* JXCategoryTitleImageCellModel.m */; }; - BB27CA00AAC2A9F17461C09C73645BD1 /* AnimatedImageView.swift in Sources */ = {isa = PBXBuildFile; fileRef = E21D8D01411C02735C3A0BA2492F2CC8 /* AnimatedImageView.swift */; }; - BB75FBEA01801E0FF4E17A4783AB1CE3 /* ConstraintView.swift in Sources */ = {isa = PBXBuildFile; fileRef = E17D302F81EE006B785285A4F68C0DD2 /* ConstraintView.swift */; }; - BBAC10AC6F7CCC08CA990EC32BA93912 /* RxCocoa.h in Headers */ = {isa = PBXBuildFile; fileRef = 5603B9A567AF2F0E0ED387782DAA25C9 /* RxCocoa.h */; settings = {ATTRIBUTES = (Project, ); }; }; - BBC70A640BAACC6E4B66AA90848CFA0E /* _FilePreviewController.h in Headers */ = {isa = PBXBuildFile; fileRef = F2A0F97CA9F3F150315AC4AF39D0FB22 /* _FilePreviewController.h */; settings = {ATTRIBUTES = (Project, ); }; }; - BBCD195060AB693E31E7265ED366357B /* UISwitch+Rx.swift in Sources */ = {isa = PBXBuildFile; fileRef = E7B5BAB8CE31FD67A7AA79262037D324 /* UISwitch+Rx.swift */; }; - BC2DA64DD45B4E41586E32FEBD056B4E /* ZLPhotoConfiguration.swift in Sources */ = {isa = PBXBuildFile; fileRef = 60BCFFD4C438F8ECD549ADC4D9E05BDE /* ZLPhotoConfiguration.swift */; }; - BC4613F606FF616B59678CC5E1AD4B81 /* BinaryDisposable.swift in Sources */ = {isa = PBXBuildFile; fileRef = 31B252904BEF2E19729BA1328A5AF8A1 /* BinaryDisposable.swift */; }; - BC69B1FE7E10F3D5DF175CBE14F5DCA8 /* JXCategoryListContainerView.m in Sources */ = {isa = PBXBuildFile; fileRef = 98C04D2A7DBE183DEA1F1A61CB4E5981 /* JXCategoryListContainerView.m */; }; - BC71F627C5BB3C812706494A15135648 /* NSBezierPath+SDRoundedCorners.m in Sources */ = {isa = PBXBuildFile; fileRef = 3324EAB72243EC9E692F12F006A81E5E /* NSBezierPath+SDRoundedCorners.m */; }; - BC9B4EE54D72F2455037404FBA19AD37 /* IQUIScrollView+Additions.swift in Sources */ = {isa = PBXBuildFile; fileRef = 567C5FDA6EDFA6D1E86A664F691B2D92 /* IQUIScrollView+Additions.swift */; }; - BCD84F663A8C1D96328F60181B1276BD /* DelaySubscription.swift in Sources */ = {isa = PBXBuildFile; fileRef = 24528134D684365C72BE21CC699EF331 /* DelaySubscription.swift */; }; - BCD9CC1CE79079D3D45975C960F10783 /* RxCocoaObjCRuntimeError+Extensions.swift in Sources */ = {isa = PBXBuildFile; fileRef = 40548739EF1F3415E61408B3C201F8EB /* RxCocoaObjCRuntimeError+Extensions.swift */; }; - BD0530138584A6602C89E4EE957300E0 /* NSObject+Rx.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8EEEB06E7B901095AD02E83467C7C052 /* NSObject+Rx.swift */; }; - BD247E3B6F2D37989DFBB892C7130428 /* NSMutableAttributedString+DDCategory.m in Sources */ = {isa = PBXBuildFile; fileRef = 08596742D2C9EFE3570472AFA36B4FFD /* NSMutableAttributedString+DDCategory.m */; }; - BD2745ADD1379057D87188FB97CFAC5F /* Runtime.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5B6256F3FDBC00731517EFC1093BF72B /* Runtime.swift */; }; - BD5769240CAB4930531B883F3AFFFAB4 /* CocoaDebugTabBarController.swift in Sources */ = {isa = PBXBuildFile; fileRef = CE8462BC1BA182E3A2822AD0B93E8F21 /* CocoaDebugTabBarController.swift */; }; - BD5DE9137AD611FD04789830CDA7EB55 /* IQTitleBarButtonItem.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4B0C1076BF2ECABB699F48822CD0CD1A /* IQTitleBarButtonItem.swift */; }; - BD964247BCCE72D5C1B9738879564443 /* ColorUtil.swift in Sources */ = {isa = PBXBuildFile; fileRef = 37D10F0879F8B46597A1D4B96FCD7EC4 /* ColorUtil.swift */; }; - BDCA78333A03CC1AAADEB702F0247B5C /* UIActivityIndicatorView+Rx.swift in Sources */ = {isa = PBXBuildFile; fileRef = 807FA4386FF34B32EAA07A2A232A07AD /* UIActivityIndicatorView+Rx.swift */; }; - BDE0AF913CE3F4071E4007C5DFDA8524 /* SDWebImageCacheSerializer.h in Headers */ = {isa = PBXBuildFile; fileRef = 25306CB11174ABF932E087F3B0125567 /* SDWebImageCacheSerializer.h */; settings = {ATTRIBUTES = (Project, ); }; }; - BE48E94071B8D2879A0CAAD2716CA894 /* NSButton+Rx.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4BEE6293496F9E455B2D9DF5F07A7C45 /* NSButton+Rx.swift */; }; - BE50B0FF8A2D2BF08505923013F8FCC4 /* ZLEditImageViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 21E12E33AE2337A09DB491E56624893A /* ZLEditImageViewController.swift */; }; - BE88F2CBE884822A7F7ECA72FFC514D2 /* SubjectType.swift in Sources */ = {isa = PBXBuildFile; fileRef = E82890FAB0DE231509B108B0A91E8E6A /* SubjectType.swift */; }; - BEF33A6E0D39466DCE9D298F9C819DC5 /* ConstraintInsets.swift in Sources */ = {isa = PBXBuildFile; fileRef = C253DA098B864ED92D2D027F35282FCD /* ConstraintInsets.swift */; }; - BF087DFEB24ABE12694A2A01C07DBC95 /* SubscribeOn.swift in Sources */ = {isa = PBXBuildFile; fileRef = 97AB6AC27F4F9A76159A705883BF977E /* SubscribeOn.swift */; }; - BF31E4809CC5CC71907563C0795BF3D9 /* DispatchQueue+Extensions.swift in Sources */ = {isa = PBXBuildFile; fileRef = EBD8ED67F931B8681F1F5DA302C4AB14 /* DispatchQueue+Extensions.swift */; }; - BF41DE73228CD7380FF1AC52A9D39906 /* BRPickerView-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 51F21AD417E5D337399910E74E7E9730 /* BRPickerView-umbrella.h */; settings = {ATTRIBUTES = (Project, ); }; }; - BF7C326418703B0627237B811478A69E /* _RXKVOObserver.h in Headers */ = {isa = PBXBuildFile; fileRef = 6A3C9610D0945E339F4C8DF1B6ACFA55 /* _RXKVOObserver.h */; settings = {ATTRIBUTES = (Project, ); }; }; - BF81E739B886428C57AB9E371A0B64FE /* DDBaseSwitch.m in Sources */ = {isa = PBXBuildFile; fileRef = 34ED5BABFE6115D026F43572B7B34BE2 /* DDBaseSwitch.m */; }; - BF9EE31DA89D7BD4D374713EBBCF8C9A /* _HttpModel.m in Sources */ = {isa = PBXBuildFile; fileRef = 4823D6B09CAEF70F9EEA276224F65B0E /* _HttpModel.m */; }; - BFB8014C2B67EF513B2596EC40973E7E /* Delegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9728A65E132DD928650FAB3F3E116945 /* Delegate.swift */; }; - BFF07623A7EBCAE780F23B16FCCA46A6 /* IQKeyboardManagerSwift-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = AE31298B07AC3F7D636B02C1B2EDEBBE /* IQKeyboardManagerSwift-dummy.m */; }; - BFFA58E5979EDB390F21B31F125B2632 /* UIImage+MemoryCacheCost.m in Sources */ = {isa = PBXBuildFile; fileRef = 91D5FA1639FCB89A063F6BFFE2E23D45 /* UIImage+MemoryCacheCost.m */; }; - C00A540BCF0B2E7C61495F829582CD05 /* BooleanDisposable.swift in Sources */ = {isa = PBXBuildFile; fileRef = AF9482B91123894779E2F657F1B38EC1 /* BooleanDisposable.swift */; }; - C129D590FB00BEC41B69093EFE0550C1 /* MJRefreshGifHeader.m in Sources */ = {isa = PBXBuildFile; fileRef = 0C26F7D23C793D3CDF19E7B6FF9B5759 /* MJRefreshGifHeader.m */; }; - C144157DBB848C94B348C1BA664F3E86 /* Take.swift in Sources */ = {isa = PBXBuildFile; fileRef = 84F857F6828AB1556859342E48328780 /* Take.swift */; }; - C19A3B3BF30C1E6A7B8B49D1707FEF35 /* ObservableConvertibleType+SharedSequence.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7679C6E47A476147BEDA0320FC054B61 /* ObservableConvertibleType+SharedSequence.swift */; }; - C1D2F9324CE1678010EA4F68E8DF8E72 /* UITabBarController+DDCategory.m in Sources */ = {isa = PBXBuildFile; fileRef = 1C828B28AA2A4B547317BE7558E33BB4 /* UITabBarController+DDCategory.m */; }; - C1EA2F2CB43232D5B03440F60763148E /* NSAttributedString+DDCategory.m in Sources */ = {isa = PBXBuildFile; fileRef = CDCCB2489D20842CA14BA1DDE321B383 /* NSAttributedString+DDCategory.m */; }; - C1F35A42F0086062E9FA4BE7EB6D3BC5 /* SDWebImageCacheKeyFilter.m in Sources */ = {isa = PBXBuildFile; fileRef = 068153425D3E1EFB1C71D090C0FF3239 /* SDWebImageCacheKeyFilter.m */; }; - C2386D25A5899F18063172A1FF00D8FC /* Filter.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1C922887F6E0D602B6E64B0DB92BDEE7 /* Filter.swift */; }; - C2422DE72E0AE7A2B6C524EEB6561541 /* _WKWebView+Swizzling.m in Sources */ = {isa = PBXBuildFile; fileRef = 24FDB8532634D36B22FF05C9C800A9A4 /* _WKWebView+Swizzling.m */; }; - C26DFBAB689D14EB2CAAD4C945BAB718 /* ConstraintItem.swift in Sources */ = {isa = PBXBuildFile; fileRef = A92173A08D28119202CC77B5E01C0DE7 /* ConstraintItem.swift */; }; - C2C943B55033E1906571A539B7123311 /* UIViewController+ZLPhotoBrowser.swift in Sources */ = {isa = PBXBuildFile; fileRef = 305F31761A21E4F18644A4263A696595 /* UIViewController+ZLPhotoBrowser.swift */; }; - C393251524AAA3BF1C2BA269684DC806 /* UIScrollView+ZFPlayer.m in Sources */ = {isa = PBXBuildFile; fileRef = DDF60A7CBA97E594F3991A474915F912 /* UIScrollView+ZFPlayer.m */; }; - C46EC3E9A125CAC84C16608C32DA80CA /* PriorityQueue.swift in Sources */ = {isa = PBXBuildFile; fileRef = AC4E32DDFE1103DCF2FBABE6B502F4BF /* PriorityQueue.swift */; }; - C49B11227141A1C9B5C446CF513AE3B7 /* RxTextStorageDelegateProxy.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0217605C777B6F19D665FF10AF9A5E2B /* RxTextStorageDelegateProxy.swift */; }; - C4FC515A765F6D264655342C179E8B70 /* DDToastKit_Private-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 13B63568EDA5F30E8939E06D4087447C /* DDToastKit_Private-umbrella.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C535F523F71F05AEEDD9946C4D8915C1 /* NSButton+Kingfisher.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0F103FDCC8516D032638E57745D35DF7 /* NSButton+Kingfisher.swift */; }; - C546CA4F4BC560BB62E64CE4C1E47BCF /* Platform.Linux.swift in Sources */ = {isa = PBXBuildFile; fileRef = FDEF4BA13D09E622A25C60A47C214107 /* Platform.Linux.swift */; }; - C54B8B88AF0ABC05267411671F02C964 /* SDImageCoderHelper.h in Headers */ = {isa = PBXBuildFile; fileRef = 1D6885AC2E42BBE3A7E244E53DB03EA0 /* SDImageCoderHelper.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C5690D48A1F0C97D9493B20DED212613 /* Storage.swift in Sources */ = {isa = PBXBuildFile; fileRef = B6AEFB9E177A6F8E48B40501F1FD2933 /* Storage.swift */; }; - C5C6A2695111AB047DE364FBCF2C1918 /* Delay.swift in Sources */ = {isa = PBXBuildFile; fileRef = C18B94C4518FFDD1B962587E426E4BCC /* Delay.swift */; }; - C606E1F4F816CD5CEF3D207708C3C609 /* MJRefresh.h in Headers */ = {isa = PBXBuildFile; fileRef = DD1D3991EFD3878A788C8243BB37500F /* MJRefresh.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C626CF00E63F1E69A4194CA80068AAFC /* RxTabBarDelegateProxy.swift in Sources */ = {isa = PBXBuildFile; fileRef = B0CFBD9C9CACE16145622E9FB2197FDA /* RxTabBarDelegateProxy.swift */; }; - C6DBAF26A4A104BD5200CF834A5C6AC4 /* DDAutoUIKit_Private-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 970727C41802159433A0DF92846E2339 /* DDAutoUIKit_Private-dummy.m */; }; - C700B60420E98DB7DB9D43C11DB34549 /* Optional.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3B1508D9C3C12DF9C6EEE54BF0DCBBB8 /* Optional.swift */; }; - C700C31CF03C3E4E40B18F0FF4EF381D /* SDWebImageDownloader.h in Headers */ = {isa = PBXBuildFile; fileRef = 73F8FE3F4D6C3C800BBCEA673B36794F /* SDWebImageDownloader.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C7928584AF7F1BF0C37F6532528AA327 /* UITableView+DDCategory.m in Sources */ = {isa = PBXBuildFile; fileRef = 0302AA41D8AB944426527FDF944C167B /* UITableView+DDCategory.m */; }; - C7D9729A13FA4591B0EBA5697758C056 /* Platform.Darwin.swift in Sources */ = {isa = PBXBuildFile; fileRef = E5A23E971A2CE7F06866C1F795A83C19 /* Platform.Darwin.swift */; }; - C7E41A5D81A024EDF41219DDC3B9BC14 /* ZFPlayerController.m in Sources */ = {isa = PBXBuildFile; fileRef = E84F0BA5EE63DA617C8BDBC5FB965E71 /* ZFPlayerController.m */; }; - C811C54956F24D073E800373BB69A8EB /* JXCategoryDotCellModel.h in Headers */ = {isa = PBXBuildFile; fileRef = 5516F323B3A55805B7B3EFA0946D5480 /* JXCategoryDotCellModel.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C81BFED8DC5CF5E66D81C7736374B9C4 /* DDScrollView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 785978A57FFD22CB18C0229EE3EA552D /* DDScrollView.swift */; }; - C845190F0B27DD1C19EC9625516F3AF1 /* CocoaDebugViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 31135D74DE43F56B833FA3003DA1F2B0 /* CocoaDebugViewController.swift */; }; - C88C2CC9083FE0D07D52A9EC81D1E626 /* _RunloopMonitor.m in Sources */ = {isa = PBXBuildFile; fileRef = 5ED0CDF4BC4C1A4E73B88901A3BDC1AF /* _RunloopMonitor.m */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; - C8C0626BD207C8F36DE122B273909830 /* ConstraintPriority.swift in Sources */ = {isa = PBXBuildFile; fileRef = C565AB4454ECF08BBA37CC401EA5A25A /* ConstraintPriority.swift */; }; - C8D3C82EA1944C6366DAF1B665F63B77 /* PrimitiveSequence+Concurrency.swift in Sources */ = {isa = PBXBuildFile; fileRef = BA5546A1740841B0A4EB54A7EC266A88 /* PrimitiveSequence+Concurrency.swift */; }; - C8D7A9EDC2F72A333D4AE379983529DA /* UIRectCorner+Short.swift in Sources */ = {isa = PBXBuildFile; fileRef = 678ED5269576887C3FFDBFA523B78F94 /* UIRectCorner+Short.swift */; }; - C8F37E34D117D30FDFAEE19C03F1DBAA /* ObservableConvertibleType+Signal.swift in Sources */ = {isa = PBXBuildFile; fileRef = 60B7F9B460B8EC47947EA7D67E081B65 /* ObservableConvertibleType+Signal.swift */; }; - C8F8E3163CE2F3AD0871F8DABF59F126 /* IgnoredURLsViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = FAC48F51D4C81862787BA19831B6CB5B /* IgnoredURLsViewController.swift */; }; - C9172D6A5B4EBBA8DBDF690F51A58849 /* ZLPhotoManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = 30487A02003E2982F7257B2FB466B17E /* ZLPhotoManager.swift */; }; - C99813C12AD65507F8A1F3F00E140B4D /* NotificationCenter+Rx.swift in Sources */ = {isa = PBXBuildFile; fileRef = A8AADD1211DCFC2FE0FCD2A4B0DFB192 /* NotificationCenter+Rx.swift */; }; - C9986B4BC81F427F6C0306AF76B6CCDD /* SingleAsync.swift in Sources */ = {isa = PBXBuildFile; fileRef = FB5502757CCA2AD1785E76E9B5F3C619 /* SingleAsync.swift */; }; - C9F76E02C52B92E46825E75DA101F97A /* BRBaseView.h in Headers */ = {isa = PBXBuildFile; fileRef = D029EBE8091BE422F610B2D1808FB46C /* BRBaseView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CAA51CB789BDD0291CA3E39C8A24DF8A /* UIFont+DDCategory.m in Sources */ = {isa = PBXBuildFile; fileRef = ACE68C38AEA2810555EB1E7F9540696B /* UIFont+DDCategory.m */; }; - CAAB4F24CCB63EB54F5E0DA2A73B9323 /* SynchronizedOnType.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0E5C0351335ADF899354F1B892B80840 /* SynchronizedOnType.swift */; }; - CAC67C3C9D6F6BBBA389D5F8CA60D09A /* Observable+Bind.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7EE83611650EDF07E7D38271029EF191 /* Observable+Bind.swift */; }; - CB1B31288E524777EA7FEF6E092E954F /* Driver+Subscription.swift in Sources */ = {isa = PBXBuildFile; fileRef = 97CDCFA29F0F53B0742815891A232C4A /* Driver+Subscription.swift */; }; - CB5AF1507643EBEE077435919CD25A12 /* GroupBy.swift in Sources */ = {isa = PBXBuildFile; fileRef = 202FD37BED1D89A9E941C12DB7D1BC8B /* GroupBy.swift */; }; - CC3E6C5B4AC2243452BF584930C4D8A9 /* ImageDataProvider.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7C00FB65173E8117600A552931BF6148 /* ImageDataProvider.swift */; }; - CC96F0C85F662AF19A4E515F21EEE9CF /* DDBaseTextField.h in Headers */ = {isa = PBXBuildFile; fileRef = B8B7E10D6B83386C0B777697EC6173BD /* DDBaseTextField.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CCBDC5792EFEDB0D32E03261BE90DFAC /* MJRefreshStateHeader.h in Headers */ = {isa = PBXBuildFile; fileRef = 0CBC58D319401A4C400ACA3C35D82862 /* MJRefreshStateHeader.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CCE73322A8F4B26A087301EBCC65C869 /* AppInfoViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 79963A817C253B0AA6D824E22753A418 /* AppInfoViewController.swift */; }; - CD12156B4F1F982CE5CBA7924ED90E24 /* ZLVideoManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9A615AE14F66A75F79B38B7ABD0F85C0 /* ZLVideoManager.swift */; }; - CD4D85DAF1DFD5C9D1D79CCB30E48554 /* Pods-OrderScheduling-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = E8C5B817601E9A6369B5DDC72B5F6FAD /* Pods-OrderScheduling-dummy.m */; }; - CD4E33BE5BC4DBD59CFC58A70DF1CAC3 /* SDAssociatedObject.h in Headers */ = {isa = PBXBuildFile; fileRef = A44B3898EAEAB4244E6F5C1C04E633CE /* SDAssociatedObject.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CD92D326C00A1CE1F9BB816671709E36 /* RetryWhen.swift in Sources */ = {isa = PBXBuildFile; fileRef = F2DE9508491ECE184854C2B3B41980A2 /* RetryWhen.swift */; }; - CDDD632233988F44FEC138B913143D5F /* DDMAGeometry.m in Sources */ = {isa = PBXBuildFile; fileRef = C15101A907A82B0FB45D1655C200F6D3 /* DDMAGeometry.m */; }; - CE0D7DF3DE52C1B52C39DB23FCED7695 /* MJRefreshAutoNormalFooter.m in Sources */ = {isa = PBXBuildFile; fileRef = C6E52492251E38E7CAA5AD35E224616A /* MJRefreshAutoNormalFooter.m */; }; - CE50A84C5C3A363CC5F5B206EF9C16B2 /* NSBezierPath+SDRoundedCorners.h in Headers */ = {isa = PBXBuildFile; fileRef = 31EF176FBB0F8964B8DECAA699ECA2C3 /* NSBezierPath+SDRoundedCorners.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CE6E8F479C11E333C244F74A2E9665CE /* SDImageHEICCoder.h in Headers */ = {isa = PBXBuildFile; fileRef = 68B245F7549095AFED4AED4B45E6C21C /* SDImageHEICCoder.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CE8E55F06DEED865CA7AB8FD9298DD42 /* ZFReachabilityManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 744A62A90A29385B42C712197ACD3BC7 /* ZFReachabilityManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CE90E73675214C8853F20CB4BF569901 /* ZLClipImageViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3FB4CB2354A61CFCDE31EB0B660B924E /* ZLClipImageViewController.swift */; }; - CE9DB2E127EF675F92110286C1B3DBB0 /* JXCategoryTitleCell.h in Headers */ = {isa = PBXBuildFile; fileRef = 40431C03335832035DE8BF9F1640403C /* JXCategoryTitleCell.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CEA5FFBDF695AF9F54027D0F9BE06A9E /* SDAnimatedImageView.h in Headers */ = {isa = PBXBuildFile; fileRef = A9ED3EA2EA880417B7FA8AC596E4DD9C /* SDAnimatedImageView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CEB18CE41DA459A3CCD90DA3A83DB0BC /* NSMutableAttributedString+DDCategory.h in Headers */ = {isa = PBXBuildFile; fileRef = DF2A5F07F9D3591EA63E3BB2244A8B02 /* NSMutableAttributedString+DDCategory.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CEC5D59E8CB9AA98751A071D3CC175D7 /* SDAnimatedImageView.m in Sources */ = {isa = PBXBuildFile; fileRef = 5149A43E4F16EC1A7252B2719CCB464F /* SDAnimatedImageView.m */; }; - CF5A619D2D3826CDC149B8C698F2F015 /* ZFLoadingView.m in Sources */ = {isa = PBXBuildFile; fileRef = B1903B2035DE82103AE99F7E1CF84502 /* ZFLoadingView.m */; }; - CF939610063C1343161A58323E71A401 /* Rx.swift in Sources */ = {isa = PBXBuildFile; fileRef = 347E31251D7BE4DFA0012871BBEC83E1 /* Rx.swift */; }; - CFE34FBE502D404850042BD371E3F691 /* NSObject+DDCategory.m in Sources */ = {isa = PBXBuildFile; fileRef = AF4F70AC21B67CD9571B7F02A609249A /* NSObject+DDCategory.m */; }; - D027DFFBF0E354D252A6A52AD54C6830 /* JXCategoryIndicatorParamsModel.h in Headers */ = {isa = PBXBuildFile; fileRef = 1CB418DA7591416A070F2A818D795694 /* JXCategoryIndicatorParamsModel.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D031E69F9B31D2D90CA1BAA088469040 /* RequestCompression.swift in Sources */ = {isa = PBXBuildFile; fileRef = EB6F3055215B15FD7F07238DA323035E /* RequestCompression.swift */; }; - D0458582F73B502054224EE779333845 /* DDView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 19C6D736EEBB68458CDCD837433A3440 /* DDView.swift */; }; - D10C95BD6F68BFE84AD647F05F6EB1E2 /* VirtualTimeScheduler.swift in Sources */ = {isa = PBXBuildFile; fileRef = 656396D167D3DA730A911962F85A0B49 /* VirtualTimeScheduler.swift */; }; - D14FE7769234FBA4A9FE71A538AA1416 /* DDBaseViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = 793B9DAB46FDEF51BE4D924FE98B439F /* DDBaseViewController.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D15601FB6BDFEA4C0083467D5B754051 /* _CanonicalRequest.m in Sources */ = {isa = PBXBuildFile; fileRef = 12E65049429020CE2FA907DA693933C3 /* _CanonicalRequest.m */; }; - D159E10ABCEC5BAEC2AEE36361A0C14A /* SDWebImageIndicator.h in Headers */ = {isa = PBXBuildFile; fileRef = 0FA8E9BB37E41337CD1A67C732B0F43D /* SDWebImageIndicator.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D162658CB1D8C8E4080D36914FA272D0 /* UIScreen+DDCategory.h in Headers */ = {isa = PBXBuildFile; fileRef = 4DCFC0E4DD468D4747DB285A1AD8B1C1 /* UIScreen+DDCategory.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D19369E2279C20FF7E1050262983926B /* UITableView+DDCategory.h in Headers */ = {isa = PBXBuildFile; fileRef = 898756260A4DC39718CAFD51F6CF27C5 /* UITableView+DDCategory.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D1E9FB265C5E14BDA17A1804FF30B1D5 /* Typealiases.swift in Sources */ = {isa = PBXBuildFile; fileRef = 55BD24CC9CEC494DAA66B2B2DE86F452 /* Typealiases.swift */; }; - D1F1CAB3A420D1ABAB44D73CCE92D9A8 /* Timer.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8A53E58502621931F269346FB051E114 /* Timer.swift */; }; - D2080DFBC1EC1E36D090C40AE4268C0E /* EKImageNoteMessageView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 28F2A012BD8B47C7A49613FD44460EF2 /* EKImageNoteMessageView.swift */; }; - D261FFEAFEECC6C5BE05EAFA172A6962 /* _RXKVOObserver.m in Sources */ = {isa = PBXBuildFile; fileRef = 46DC76094AA3C5E92DEE85166BEBCB5E /* _RXKVOObserver.m */; }; - D2674D18CD23C97698FCE3E9C3FD42B1 /* Concurrency.swift in Sources */ = {isa = PBXBuildFile; fileRef = ABA313177CD8608DABD75954FF2C2892 /* Concurrency.swift */; }; - D26EBA1505FCD8CB1561A0FB08AB74A5 /* URLRequest+Alamofire.swift in Sources */ = {isa = PBXBuildFile; fileRef = 95AD84FDA0C2AC7275AEE95C3305735F /* URLRequest+Alamofire.swift */; }; - D2783F91C8C3A525D7086EBF0B079C22 /* ZFPlayerControlView.h in Headers */ = {isa = PBXBuildFile; fileRef = A51659059DDE00160D3901FD896587BF /* ZFPlayerControlView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D2807DCFF6B07ADF84CFACC8A1882579 /* DDBaseAttributedString.m in Sources */ = {isa = PBXBuildFile; fileRef = 3E6B546921C5C73D7EFC96B07606C61F /* DDBaseAttributedString.m */; }; - D2B59A35739A47EBEED7DEA75BA5C378 /* SDDeviceHelper.h in Headers */ = {isa = PBXBuildFile; fileRef = 30460916A489847207305A969F5EADDD /* SDDeviceHelper.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D2E2AF992A4E158B35A68EF020BBD66F /* UIControl+Rx.swift in Sources */ = {isa = PBXBuildFile; fileRef = 208AC4A093B9044C3277B6F5F956FC03 /* UIControl+Rx.swift */; }; - D311F8002A40812E3A487F99D7669DBA /* ZFSliderView.m in Sources */ = {isa = PBXBuildFile; fileRef = 281992601356B3F4F6417C8287B50BFF /* ZFSliderView.m */; }; - D313C1769F98E563B2F0387645363D60 /* UIImage+ExtendedCacheData.h in Headers */ = {isa = PBXBuildFile; fileRef = C02E0D4C622F60B0FDB98618287C82F5 /* UIImage+ExtendedCacheData.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D326605C3B2A1D5931447D6CE7EE67E9 /* KFImageRenderer.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8D710AB4ADF18C65849A63C64DCD4E6F /* KFImageRenderer.swift */; }; - D353460A66889A4B7549457FB5D9EECD /* DDProgressHUDKit_Private-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 865B6AC4E79A6431B9FD09B477FB4718 /* DDProgressHUDKit_Private-dummy.m */; }; - D3C234D4B6F2C40C829FB0D973C630BF /* Pods-OrderScheduling-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 5557072D4679705898E85F13CB9F4B96 /* Pods-OrderScheduling-umbrella.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D3C6166B6D26233AE4337DA319FEBF57 /* Protected.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4804E79EBA86D501C990BB40069CE63F /* Protected.swift */; }; - D3DF1456153024C80BCDC91E03814A16 /* MJRefreshStateTrailer.m in Sources */ = {isa = PBXBuildFile; fileRef = 195FFFDC0AF806EBF709A46B1FCF2ECF /* MJRefreshStateTrailer.m */; }; - D433A9598548308343DC33207661EFF2 /* KVORepresentable+Swift.swift in Sources */ = {isa = PBXBuildFile; fileRef = FB4BA2FE5102FD42FC2222B7D06930AD /* KVORepresentable+Swift.swift */; }; - D43BA282386D995C1C7F4B7049A909FD /* Validation.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4289275E00B1ADBDCE7334B5EF4FC275 /* Validation.swift */; }; - D468BA7AD6F54E7E8E8EEDCF050D63FD /* _FileTableViewCell.h in Headers */ = {isa = PBXBuildFile; fileRef = 54E078C192D8393D5746892CFCE7FF5B /* _FileTableViewCell.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D510213435EC6D25AC777EF2CF34A93B /* _CacheStoragePolicy.h in Headers */ = {isa = PBXBuildFile; fileRef = 8A7FDA82642298C12645583C03438099 /* _CacheStoragePolicy.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D52B0E394FF92821DC8380B5498B34A2 /* UIScrollView+MJExtension.h in Headers */ = {isa = PBXBuildFile; fileRef = 3ADC10F4A94D4BACBD2252F5722D5698 /* UIScrollView+MJExtension.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D565284D49314EAA54AF602A468A0207 /* JXCategoryView-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 5A5604C88511E426376228D93B5D2E05 /* JXCategoryView-umbrella.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D57D1B1B747CC581A185F6035F363E7F /* Debugging.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9FFC0A7EFAA401BDF16835C4BD55FAC9 /* Debugging.swift */; }; - D597DCAEA880152A9633B7E83067E600 /* ZFPlayerControlView.m in Sources */ = {isa = PBXBuildFile; fileRef = A9D61F8A1376E5AFF1C3CC009C709A46 /* ZFPlayerControlView.m */; }; - D5B499F817DA04BCDEEF25D43C26A677 /* UITextField+Rx.swift in Sources */ = {isa = PBXBuildFile; fileRef = D1F443ED94189B5CE7CB68C4EA9DDA1F /* UITextField+Rx.swift */; }; - D5E9EC62DDC74CC7A9B1CD6832F371FE /* ObservableType+Extensions.swift in Sources */ = {isa = PBXBuildFile; fileRef = 913A7059CDA51792193FFC63027C32CA /* ObservableType+Extensions.swift */; }; - D600518DD12CD8BEC3A849BD0BBE2D9D /* Date+Dispatch.swift in Sources */ = {isa = PBXBuildFile; fileRef = 09F35385FE414E0F85783217FA27F924 /* Date+Dispatch.swift */; }; - D639FD5EBFAF305D60A58E9CE5A23031 /* Range.swift in Sources */ = {isa = PBXBuildFile; fileRef = 45B9A514398F6FAE00D6BB7C99C369B9 /* Range.swift */; }; - D645B6DD70BB59D5E1F6EA9FF4635A68 /* ConnectableObservableType.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3F64389E65209F31351003A41A7E339C /* ConnectableObservableType.swift */; }; - D654637C8DD8012A6593C58CDC7EB89F /* EKWindow.swift in Sources */ = {isa = PBXBuildFile; fileRef = B7686CA241C9CA45D851BC5BC86C822F /* EKWindow.swift */; }; - D68A44D2142C495CCD955363CCC1321A /* Request.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0FFD5740C138B6B009157E54889C7C5F /* Request.swift */; }; - D745432465E311FE291940EA15A78CEF /* UITextField+DDCategory.h in Headers */ = {isa = PBXBuildFile; fileRef = 61287D945D0CF3A5E0AF842E59CED2E5 /* UITextField+DDCategory.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D789B546848B3C3BAA71C1E8D2CA9467 /* SwiftSupport.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6F0A1AFC858D31E0600DFF7E2B646460 /* SwiftSupport.swift */; }; - D8253B6569C479BC608F6FF9A6FBFFCA /* RxSwift-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 86C63B415DE41D86E7D0A0989C381719 /* RxSwift-dummy.m */; }; - D86A0299F74B0CBA434FF9F89F8B958D /* SDDiskCache.h in Headers */ = {isa = PBXBuildFile; fileRef = 01EAFC7A6EB916A27C0C3C0B6773F56F /* SDDiskCache.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D9131973AC2759CC74A2D6F8BE2591BA /* DisposeBag.swift in Sources */ = {isa = PBXBuildFile; fileRef = 82ADBDD24453B18EFF2817EC9EB0F38A /* DisposeBag.swift */; }; - D94A532721A28C49CAE0014FE6600335 /* DDBaseImage.h in Headers */ = {isa = PBXBuildFile; fileRef = 1232E43BDB0C44CA19091D9D8AFF18D2 /* DDBaseImage.h */; settings = {ATTRIBUTES = (Project, ); }; }; - DA122AC8CE9ACBECA2D141674BE399AD /* Cell+ZLPhotoBrowser.swift in Sources */ = {isa = PBXBuildFile; fileRef = 47444C3DD0CECE87F67B3A70EF699DF2 /* Cell+ZLPhotoBrowser.swift */; }; - DA26C39BF5DCF7D536B33589481AFC29 /* DDBaseTextView.h in Headers */ = {isa = PBXBuildFile; fileRef = 12B1631BFE36A7793E242EFEEC05E3D2 /* DDBaseTextView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - DA7D630210EED4FE82A89AF9DA354FDE /* JXCategoryBaseCellModel.m in Sources */ = {isa = PBXBuildFile; fileRef = F482B1C2C73FFF874AE556F103F88CEF /* JXCategoryBaseCellModel.m */; }; - DAE6984A0E6F7843EC1FC16CA0639411 /* ESTabBar.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4C8E9CD2F5868D05FFD53EDD321D7D68 /* ESTabBar.swift */; }; - DB37A02E7A013103E599E7AC0C065B89 /* SDImageCachesManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 5C0DBC60AC7380920C088AC55FEDE9CE /* SDImageCachesManager.m */; }; - DB3BDCABA7E5F79D08093CDA9F62375B /* Producer.swift in Sources */ = {isa = PBXBuildFile; fileRef = 60CA0846119275CC9EE7FEC9A8D1DFF9 /* Producer.swift */; }; - DB3F4AED1ED3B0291EA2C6C7D5CC2662 /* SDImageCacheDefine.m in Sources */ = {isa = PBXBuildFile; fileRef = 22916F5A8E44DDACA95820CF22420016 /* SDImageCacheDefine.m */; }; - DB5347DA0855F994DB3006E3B208758E /* UIImage+Transform.m in Sources */ = {isa = PBXBuildFile; fileRef = 3F267469730A1BCEF4C696CA4599E772 /* UIImage+Transform.m */; }; - DBF47AD7D42070ABCA125FD5953118CC /* JXCategoryListContainerRTLCell.h in Headers */ = {isa = PBXBuildFile; fileRef = 96B999BF4D1A52EB36105C24F082066F /* JXCategoryListContainerRTLCell.h */; settings = {ATTRIBUTES = (Project, ); }; }; - DC25951404C24F1A7D6A193A3EA96898 /* JXCategoryDotCellModel.m in Sources */ = {isa = PBXBuildFile; fileRef = 524F46A9F6889CEE8D73251AB30A8381 /* JXCategoryDotCellModel.m */; }; - DC41B120F0CBAB4E01BBF17427CD4305 /* AFError.swift in Sources */ = {isa = PBXBuildFile; fileRef = 17FE25B167DF787D85213EFAD8A65F86 /* AFError.swift */; }; - DC737D9D05CDFEDEF02A15458AC36B92 /* KVORepresentable.swift in Sources */ = {isa = PBXBuildFile; fileRef = EB236683B90E71A8E104336C4566D20C /* KVORepresentable.swift */; }; - DCD43F7544E63524B07939D0F9B07D10 /* Empty.swift in Sources */ = {isa = PBXBuildFile; fileRef = E3BD18BC17CE25C56CD5CE13E1117F55 /* Empty.swift */; }; - DD54283797CAFC5B22AE32F87027BD66 /* ZFPresentTransition.m in Sources */ = {isa = PBXBuildFile; fileRef = 2F12ABD17B372F30CA44D51EE4CD0D57 /* ZFPresentTransition.m */; }; - DE081D1B6559CE4BECE6C2F3A24E43A1 /* ControlProperty.swift in Sources */ = {isa = PBXBuildFile; fileRef = DE8A8B76A785521C5E293E6DC8EBCE32 /* ControlProperty.swift */; }; - DE2D6981D59E4126FB6702371A4FBF45 /* UIView+QLContentWrap.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0F6AF2D849BF4A92B3D12B82B996E7C5 /* UIView+QLContentWrap.swift */; }; - DE5FE62EE79DBFC7EF4FA464DAF4513A /* SDImageGraphics.h in Headers */ = {isa = PBXBuildFile; fileRef = 74B653D245EF6ED8740C1E03E469DB69 /* SDImageGraphics.h */; settings = {ATTRIBUTES = (Project, ); }; }; - DEA7CC5B85C903C74AE96DE0C3AFDBDD /* EKAttributes+Scroll.swift in Sources */ = {isa = PBXBuildFile; fileRef = 53AE4E5B7447E7838D3DD0607CB23D26 /* EKAttributes+Scroll.swift */; }; - DF1533D403B93AE3F7C213E2E79F22D9 /* EKAttributes+UserInteraction.swift in Sources */ = {isa = PBXBuildFile; fileRef = 95EA9AF160A5EC02ABC42A0C6EBCC511 /* EKAttributes+UserInteraction.swift */; }; - DF2E9C4198CC1FA05A9A507356F0A140 /* EKPopUpMessageView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 53E940F05413D306714ADB1031DFBDC7 /* EKPopUpMessageView.swift */; }; - DF419FE76FE2E463D3B079DDA8D09DCD /* ZLWeakProxy.swift in Sources */ = {isa = PBXBuildFile; fileRef = CA4F05D5BA6C421D0B012AC18C249E07 /* ZLWeakProxy.swift */; }; - DFAB3889074446F294E9B7FDB413D9AD /* ZLPhotoPreviewCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = B048B9708BCA8652CDAA20A04D29A498 /* ZLPhotoPreviewCell.swift */; }; - DFE78D284184E73F37797F723D1BD4A9 /* BRBaseView.m in Sources */ = {isa = PBXBuildFile; fileRef = E6CA42E249631F9384E7394E0F270F73 /* BRBaseView.m */; }; - DFF56E1AAFEB0E15B650A880BCDF5A72 /* ImageDownloader.swift in Sources */ = {isa = PBXBuildFile; fileRef = A421E52F98B14ECDFBB67E9A812FCE8E /* ImageDownloader.swift */; }; - DFF89BB4CBD71C272B9E224DBEC1614F /* UITextView+Rx.swift in Sources */ = {isa = PBXBuildFile; fileRef = 922F95A4EC2E41A916005B4FBC41F1C0 /* UITextView+Rx.swift */; }; - E0050EB219F11E257D76F42981621989 /* Infallible+Bind.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2511B396BA7741CEB96EF1491DD3F475 /* Infallible+Bind.swift */; }; - E0950E6EE43A295EAF8CBBA0AE9F7440 /* MJRefreshNormalHeader.h in Headers */ = {isa = PBXBuildFile; fileRef = BFB7F26B22371AE2145CE0C5E402E4D8 /* MJRefreshNormalHeader.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E0C01EA350858C196849966C328D5F77 /* ImageCache.swift in Sources */ = {isa = PBXBuildFile; fileRef = 188C6EACB7E2584CB733DD6BE41BDC51 /* ImageCache.swift */; }; - E0ED114609A50B49D01ED22E8F5E97D2 /* ZLPhotoBrowser.h in Headers */ = {isa = PBXBuildFile; fileRef = 9B085CFA504578A99003C7302C61149E /* ZLPhotoBrowser.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E0FA80E4CD78AECC240107F0F61E8CAA /* NSObject+Rx+KVORepresentable.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6F5919AA07C6CA8927D9DA9575C23271 /* NSObject+Rx+KVORepresentable.swift */; }; - E11AA57F219A6C871BE606EE93832939 /* UIWindow+DDCategory.h in Headers */ = {isa = PBXBuildFile; fileRef = B92D6F52581635E93BB2AB789C2CA999 /* UIWindow+DDCategory.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E19EB126C05BF41B737080FFC7461BBF /* ElementAt.swift in Sources */ = {isa = PBXBuildFile; fileRef = 29E409982A68F279851BACB50DD74985 /* ElementAt.swift */; }; - E201F095F900DCAA56A3142DB40D8BC5 /* Disposables.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2FD3FC36E3D3F782A45C3A05D9AE93E3 /* Disposables.swift */; }; - E2069E35DEF7B1D667BCAC78D2B3756F /* ConstraintInsetTarget.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8FC5C16022D34FE88BB63DD72A3EC6A2 /* ConstraintInsetTarget.swift */; }; - E245CDBB5D029FFFB5933CFEB72997BF /* MBProgressHUD.m in Sources */ = {isa = PBXBuildFile; fileRef = B617F95E4B57E8FA3C4B8BAF47A72D2D /* MBProgressHUD.m */; }; - E25543877A432B49BAD472D8DAACCCAA /* _Sandboxer.h in Headers */ = {isa = PBXBuildFile; fileRef = 1279AE8B9216612A71C15D07DBE03DB0 /* _Sandboxer.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E3080F4602E4B0BDB9EBEE26413F2484 /* UIImageView+ZFCache.h in Headers */ = {isa = PBXBuildFile; fileRef = DAEE1D6FC403D22017C2A22DE3E2A199 /* UIImageView+ZFCache.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E31E95F520BF49B16AD6DC142230D72F /* SerialDispatchQueueScheduler.swift in Sources */ = {isa = PBXBuildFile; fileRef = CFEE033FE9D1A1B81AC7FC79ADBD3A1C /* SerialDispatchQueueScheduler.swift */; }; - E368BA3E038835CB1C1ECC9A6A7AB467 /* URLSessionConfiguration+Alamofire.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9466E05FB2CE875E3FC0F6573B17C373 /* URLSessionConfiguration+Alamofire.swift */; }; - E377D381740EA7DAA223CBC572EF3258 /* JXCategoryDotCell.h in Headers */ = {isa = PBXBuildFile; fileRef = CEBED202A7BD7E7708D1FC31CB41087E /* JXCategoryDotCell.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E383F7D1B1E1BA0F4060113554AEC55E /* VirtualTimeConverterType.swift in Sources */ = {isa = PBXBuildFile; fileRef = D3D7C4BFEA2FAE71F3A48825B492810E /* VirtualTimeConverterType.swift */; }; - E3D71D3617C88CD8BC9A3537AC98150B /* MJRefreshAutoStateFooter.h in Headers */ = {isa = PBXBuildFile; fileRef = F99EA2AAAF1006CB653099B823EBEDB3 /* MJRefreshAutoStateFooter.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E3E7323AE945DC3AF3A4B2D4FCA619B4 /* JXCategoryTitleVerticalZoomView.h in Headers */ = {isa = PBXBuildFile; fileRef = 8AA46A37A971F21B0E5E6A09D667D040 /* JXCategoryTitleVerticalZoomView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E49254B60C2043832B5A2E0658DA441C /* JXCategoryIndicatorCellModel.h in Headers */ = {isa = PBXBuildFile; fileRef = 5DA76EABCB8A2A26D4BB71B75494D53A /* JXCategoryIndicatorCellModel.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E4BA37E528DEF3AA3A68041452D66C4C /* Bundle+ZLPhotoBrowser.swift in Sources */ = {isa = PBXBuildFile; fileRef = E07B3850AA234289C1F9C117E5EFFEDB /* Bundle+ZLPhotoBrowser.swift */; }; - E4D1F2F411BE4931E6BF715754C063E7 /* RxCocoa-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = F5016B3D0A65AAD4657BBADEC542E1C9 /* RxCocoa-dummy.m */; }; - E4E2ACC6E6A370DE1008A099B64A6FCD /* PublishRelay.swift in Sources */ = {isa = PBXBuildFile; fileRef = 080BDA2102FF1E81F2152BC8DCA1F8BA /* PublishRelay.swift */; }; - E507E858E60F814ABE2DC5BC534C2437 /* NSAttributedString+DDCategory.h in Headers */ = {isa = PBXBuildFile; fileRef = F4BEE9CA917F512C3FD57D5F05203740 /* NSAttributedString+DDCategory.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E508BEC46801CF34064D971BE80D0B5C /* NSError+ZLPhotoBrowser.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3BFC7F295695D36D93D0A2605EA6AB04 /* NSError+ZLPhotoBrowser.swift */; }; - E50CC69C160CC7DFDDAA5E1545D1A670 /* EKSimpleMessageView.swift in Sources */ = {isa = PBXBuildFile; fileRef = FED6475D2837F1564DD7142FFBCB1637 /* EKSimpleMessageView.swift */; }; - E559E921BB84AAE511E87807509D7FC6 /* ZLPhotoConfiguration+Chaining.swift in Sources */ = {isa = PBXBuildFile; fileRef = 67069A3CC0C11C52A23A37682F47C53E /* ZLPhotoConfiguration+Chaining.swift */; }; - E55CEF4234F35E2FDC1B7855AD39A6A0 /* JXCategoryIndicatorRainbowLineView.m in Sources */ = {isa = PBXBuildFile; fileRef = D1541D7DB829A5E16C5155B203092B50 /* JXCategoryIndicatorRainbowLineView.m */; }; - E5A89C1CC70968CACDACA8D8A92B6098 /* CGFloat+ZLPhotoBrowser.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0251526F9D0BA56AD8E2E8878FC068C4 /* CGFloat+ZLPhotoBrowser.swift */; }; - E5E75D7B7C4C9F2DE674F62A6F9598D6 /* _QNSURLSessionDemux.m in Sources */ = {isa = PBXBuildFile; fileRef = D7E054A15DA718A5A20FDB121836D124 /* _QNSURLSessionDemux.m */; }; - E5F5564E46CAC014A80A083A571ABBC8 /* CocoaDebug.h in Headers */ = {isa = PBXBuildFile; fileRef = 23055DB4C26C1DF285C22C22A13780A4 /* CocoaDebug.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E6354246C297E483E6223FE120548DFC /* SDWebImageManager.m in Sources */ = {isa = PBXBuildFile; fileRef = AEA95C07E227701A1245BA9312FB8547 /* SDWebImageManager.m */; }; - E64D266F649AEECEAB6296829D2077CA /* Platform.Darwin.swift in Sources */ = {isa = PBXBuildFile; fileRef = 25DCCEFFC750AA88776DFF9750675C48 /* Platform.Darwin.swift */; }; - E69B447C350C9219B0AF9A1D2A0F5BE4 /* UIView+MJExtension.h in Headers */ = {isa = PBXBuildFile; fileRef = EF17607AB9036D452A86990DAD37D0E9 /* UIView+MJExtension.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E69DCCA33374EEF831673C7F5CB6BF9F /* DDBaseCollectionViewCell.h in Headers */ = {isa = PBXBuildFile; fileRef = 5354666225BD90751E38FC6E159D3B33 /* DDBaseCollectionViewCell.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E6C366340474F762781CC1AFBB2BDFA6 /* DDBaseMutableAttributedString.m in Sources */ = {isa = PBXBuildFile; fileRef = 215EF9A5ED82FF8FC2767B4012947918 /* DDBaseMutableAttributedString.m */; }; - E6D9904957E23E3130F9DAC9CDE8EF64 /* EKAttributes+Validations.swift in Sources */ = {isa = PBXBuildFile; fileRef = E8B900D0CC77F9E45D22C2A86695FDBD /* EKAttributes+Validations.swift */; }; - E6E08F86F050EF8BB6BB962F72CF235B /* CocoaDebugNavigationController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6B45B7727CCA3325BB6D80E9556819DD /* CocoaDebugNavigationController.swift */; }; - E6EACA4E75EC03727F26906AF7B0A011 /* SDImageCache.h in Headers */ = {isa = PBXBuildFile; fileRef = B40CBBABFD337F6CDB7D39361CB54FE8 /* SDImageCache.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E6F4A7B34B4BEE2D2EF28185A5F9F423 /* SchedulerServices+Emulation.swift in Sources */ = {isa = PBXBuildFile; fileRef = D30914307B609A73B085A19C48B360A2 /* SchedulerServices+Emulation.swift */; }; - E6FD25D02A73F3559455976B20FA94F9 /* UIBlockingBubble.swift in Sources */ = {isa = PBXBuildFile; fileRef = C4EB8C85E86C4CC6DFD57BFC3CDCDA74 /* UIBlockingBubble.swift */; }; - E787841D635A76F6F607DCC206304D50 /* EKAlertMessageView.swift in Sources */ = {isa = PBXBuildFile; fileRef = EABD710831CF02B7731F6BD363FF2B02 /* EKAlertMessageView.swift */; }; - E81E02118C89B4ACFEE276E94F4BF705 /* RxTabBarControllerDelegateProxy.swift in Sources */ = {isa = PBXBuildFile; fileRef = EF04B31C0958489B6BBBC566F32138AC /* RxTabBarControllerDelegateProxy.swift */; }; - E83655042A5A0EBC2EC6C59E88A1BC1E /* RxCollectionViewReactiveArrayDataSource.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1CB669742E16BC84C1966F890504C9AE /* RxCollectionViewReactiveArrayDataSource.swift */; }; - E85B429D067EC3AF0216849A1381050E /* RxCocoaRuntime.h in Headers */ = {isa = PBXBuildFile; fileRef = DE1FC7712F33CBA4A75F68470D2C9C57 /* RxCocoaRuntime.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E899464A2357907FD858082100EF5D38 /* DDTableView.swift in Sources */ = {isa = PBXBuildFile; fileRef = D3DEA65CE79229574FBD58D313F358C4 /* DDTableView.swift */; }; - E8AC828A989AB04260E5B4EF583CF423 /* AlamofireExtended.swift in Sources */ = {isa = PBXBuildFile; fileRef = CF7B59BA432F57F703832313508F60A2 /* AlamofireExtended.swift */; }; - E8C687C2FFD56E2A67FD1FD44B9F6A68 /* ConstraintDescription.swift in Sources */ = {isa = PBXBuildFile; fileRef = 59FBEBD185603FE834AE2FC466E97DF7 /* ConstraintDescription.swift */; }; - E95E48BD80929D24F0AF18B993CD15FA /* _Swizzling.m in Sources */ = {isa = PBXBuildFile; fileRef = 91ADE2F9A2D9B491D84EDF923F5A9126 /* _Swizzling.m */; }; - E969679589E762C810069359BDADF37E /* RxSearchBarDelegateProxy.swift in Sources */ = {isa = PBXBuildFile; fileRef = AFC5BF742A0E2C77A0FEF8E0845B2333 /* RxSearchBarDelegateProxy.swift */; }; - E980A6E4D1B22996C2341074FA63804C /* ConcurrentDispatchQueueScheduler.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2613CC5C1318C21609FA0B488787160D /* ConcurrentDispatchQueueScheduler.swift */; }; - E9A52101C6A02C3E428215E4299EA5D9 /* MJRefreshConst.m in Sources */ = {isa = PBXBuildFile; fileRef = 97CB192C5C91AB30D894996E0435074A /* MJRefreshConst.m */; }; - E9BCBA416DB77AC1BCC56C1017CAE4C3 /* LayoutConstraint.swift in Sources */ = {isa = PBXBuildFile; fileRef = 47164511DFABDCA00BC5FA027A5A34D1 /* LayoutConstraint.swift */; }; - E9BE36DE12FFB998CAC91C71D9794319 /* JXCategoryIndicatorView.m in Sources */ = {isa = PBXBuildFile; fileRef = F1BF2A96F7FDBD7D50B7928CCD6F8DD7 /* JXCategoryIndicatorView.m */; }; - EA0EA5B13F19C31ABFCAAA03812049A5 /* JXCategoryIndicatorTriangleView.h in Headers */ = {isa = PBXBuildFile; fileRef = 6C7E7887A742E8BAEB6044A851419E76 /* JXCategoryIndicatorTriangleView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - EA48ACFC28CA582BCBF0A5C439E8441A /* CurrentThreadScheduler.swift in Sources */ = {isa = PBXBuildFile; fileRef = BF41704EF12734312E79CF951F77D60F /* CurrentThreadScheduler.swift */; }; - EAA7903E669CD58C7EC9B9120957BD6C /* _DirectoryContentsTableViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 0AFA57A2697AB5CEE7CFE8B04B5D06AE /* _DirectoryContentsTableViewController.m */; }; - EB0D73BCFDFC3139E0A8E5395BD7A6DA /* Throttle.swift in Sources */ = {isa = PBXBuildFile; fileRef = A0CB1D719EE85CF817CE5A346F5FE8E1 /* Throttle.swift */; }; - EB42103171FA131586ABFBA7D4138A64 /* Alamofire-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 5D874D2F7E6250D0B2C2D8AE550816FA /* Alamofire-dummy.m */; }; - EB7E8EA0720D48F8F1144E5DC3E5AEEE /* KFImageProtocol.swift in Sources */ = {isa = PBXBuildFile; fileRef = FB7A7F62DF2DCF5B91AE1D268B335171 /* KFImageProtocol.swift */; }; - EBB10AD5279CF4A6B5B34B3B453341FE /* Multicast.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7578B1E448738D69E9C4DF0C17B5877B /* Multicast.swift */; }; - EBE4017A0BB324301B0E698E3D8078BB /* ConcurrentMainScheduler.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9F7599BDB80E9754D2FD6531126EE09B /* ConcurrentMainScheduler.swift */; }; - EC65A32CC7DFB028230AAE4013EA8100 /* BRPickerStyle.m in Sources */ = {isa = PBXBuildFile; fileRef = 32AD9AAD918675886997C865EB01C560 /* BRPickerStyle.m */; }; - ECA14F5C0D6C5302019D8476F05ED7ED /* _AutoLaunch.m in Sources */ = {isa = PBXBuildFile; fileRef = 41330F22ACC80869EAE89A43DD0E47ED /* _AutoLaunch.m */; }; - ED204E934EBEFF45E85A7F3FE98EF4C3 /* EKAttributes+Shadow.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0611F6F9EB6C49285A9EA0C3571F1931 /* EKAttributes+Shadow.swift */; }; - ED3D80042A8A5425FAE5A0C25FE5FBEA /* SynchronizedUnsubscribeType.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5210F445ADCEC386AB2B91535654B29A /* SynchronizedUnsubscribeType.swift */; }; - ED673A80425558C9E43F8207BEE84397 /* EKNotificationMessage.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9DEC6944176057C13142769990A8B44C /* EKNotificationMessage.swift */; }; - EDC07A560DC83DFBAB242C46B1D41619 /* MJRefreshConfig.h in Headers */ = {isa = PBXBuildFile; fileRef = DA275FB4459DFDEC8CB3B2D5219E2A8E /* MJRefreshConfig.h */; settings = {ATTRIBUTES = (Project, ); }; }; - EDC227E161F6BE101EBA4C41D13B8EB0 /* EKColor.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9820FB715A12392FAD9C399A3D5A7D45 /* EKColor.swift */; }; - EDC4880EDA487FDCBAE1993231BA06AD /* SDAnimatedImageRep.m in Sources */ = {isa = PBXBuildFile; fileRef = 957EAA209B2ACDA8CF3F182A8A9C50F5 /* SDAnimatedImageRep.m */; }; - EDFE1A36B30F9DC14C1BACBE4BFCACFC /* CrashLogger.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0F39E24FC11481107A66D5DE8F5C6775 /* CrashLogger.swift */; }; - EE02E971AF4EAEBCAA7E6207344D82AD /* SDWebImageDownloaderConfig.m in Sources */ = {isa = PBXBuildFile; fileRef = A41C09B55E71572D976B82191B44FAAE /* SDWebImageDownloaderConfig.m */; }; - EE890DA87BEFE4EDC65B28ED8F9B89C6 /* ESTabBarController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 11890073F30296CCB3396FADED8A3DC0 /* ESTabBarController.swift */; }; - EF32A780029E5393C9840306EC02102F /* DDLogKit_Private-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 481A27334ADC0AB3AC6B00A418ABAC8B /* DDLogKit_Private-umbrella.h */; settings = {ATTRIBUTES = (Project, ); }; }; - EF5B614C15C0A5FA6F14D0C2B2E0BEDB /* WithLatestFrom.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4BDD37076493861879CD1CA8799E2359 /* WithLatestFrom.swift */; }; - EFC1EF2234D1A4829891828E5C61FE17 /* EKTextField.swift in Sources */ = {isa = PBXBuildFile; fileRef = 158CF155D8A6CB70ADD71B185641780C /* EKTextField.swift */; }; - EFCF8192D505380E42101B31F273EB4E /* UIScrollView+MJRefresh.h in Headers */ = {isa = PBXBuildFile; fileRef = 74CAE6A0795A55BE91124BACF24F3A34 /* UIScrollView+MJRefresh.h */; settings = {ATTRIBUTES = (Project, ); }; }; - EFD47B79FEB4CF7B7DE42C6F1E8BEAE0 /* DDTimerKit_Private-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 298E7C69CF0E1E2D29F7465CCF5357AF /* DDTimerKit_Private-umbrella.h */; settings = {ATTRIBUTES = (Project, ); }; }; - EFEDA5FC77AEC912565C8893C74347CF /* DelegateProxyType.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3260F06FAF27DF578FF87E0FC57AB5A6 /* DelegateProxyType.swift */; }; - F025B0C7413F408112D1BFB2C2878024 /* SDImageTransformer.h in Headers */ = {isa = PBXBuildFile; fileRef = 64E38D4078D3A071CD08D742C227022A /* SDImageTransformer.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F03021F77FAC203AB9A2634888A1A8B3 /* EKProcessingNoteMessageView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 781EC228E9D6BA0C81BE9BC06D4FD8F3 /* EKProcessingNoteMessageView.swift */; }; - F039287D51EEF8DB464654EF073B27B4 /* TakeWithPredicate.swift in Sources */ = {isa = PBXBuildFile; fileRef = 89D1DD454586A947E569FCA1B9213869 /* TakeWithPredicate.swift */; }; - F09DF28CC5B02C385A5E23E589400C55 /* ZFPlayerMediaControl.h in Headers */ = {isa = PBXBuildFile; fileRef = 8B3D868BD3B402BB1F6AB2D97468F500 /* ZFPlayerMediaControl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F0AE59C74E0BBF11E97A8E9434BF9A93 /* URLEncodedFormEncoder.swift in Sources */ = {isa = PBXBuildFile; fileRef = 99E0B70509B8992D36DB21F880D93CC8 /* URLEncodedFormEncoder.swift */; }; - F13CA12BAB8254C96EFF5A53B2A889FC /* Never.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0FEAEA7973440FC844A2A97FECB1C062 /* Never.swift */; }; - F14173357B268A605DDCAA57A17173C3 /* UIScrollView+DDCategory.m in Sources */ = {isa = PBXBuildFile; fileRef = 939A46F25E00E8C8052F85944E9E5DC3 /* UIScrollView+DDCategory.m */; }; - F2EB2025750554781A98D7E0C152B54C /* TVMonogramView+Kingfisher.swift in Sources */ = {isa = PBXBuildFile; fileRef = BF39CB461BEBFC6F78B130137EBDF594 /* TVMonogramView+Kingfisher.swift */; }; - F2FA6175CF6B9B67C924457E4A4FA94D /* CocoaDebug-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 44B40EFD3699C7B461CD0DC0CAC6CF59 /* CocoaDebug-umbrella.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F2FA9CA7987FBB47C2548B5BDC66106A /* ZFPortraitViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 1241693E68BF493A2728F5EB81DDBC2F /* ZFPortraitViewController.m */; }; - F3212860E47356E9AF927E472E09261A /* NSTextStorage+Rx.swift in Sources */ = {isa = PBXBuildFile; fileRef = BE630A0EEEF780188B1183B41F3A7121 /* NSTextStorage+Rx.swift */; }; - F34226A53917F43F1A466963534734F5 /* ZFPlayerGestureControl.m in Sources */ = {isa = PBXBuildFile; fileRef = A5F2038ABCAE45CF33BCEBA31A37A5E5 /* ZFPlayerGestureControl.m */; }; - F38B75DC955002933117F5B8A184DC4D /* Window.swift in Sources */ = {isa = PBXBuildFile; fileRef = 08504B38CFD394446D42C98266DEF231 /* Window.swift */; }; - F3A976F044D82F130BAE77C071CEDA5E /* JXCategoryTitleImageView.m in Sources */ = {isa = PBXBuildFile; fileRef = 7CE08E4FBC8AFB41B12299985491D4DC /* JXCategoryTitleImageView.m */; }; - F3B2BEF8FF03AB941765D79452352941 /* UIView+QuickLayout.swift in Sources */ = {isa = PBXBuildFile; fileRef = 48B2CE5D5A828F5DA3B6B7F52179C56A /* UIView+QuickLayout.swift */; }; - F3C5F116AAF21D4358A6F711BE37F54A /* Alamofire-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 1EB887B086DA69700EB76D3F8C3508FF /* Alamofire-umbrella.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F3D69E4D4BFA4907A8DCCFB59DFDA6B8 /* WKInterfaceImage+Kingfisher.swift in Sources */ = {isa = PBXBuildFile; fileRef = EFAB5A98B5E8F377CC00A194AF9EAB76 /* WKInterfaceImage+Kingfisher.swift */; }; - F3F78BDF1D6A539619E1664008AF7FAB /* DDNavigationControllerDelegateReceiver.h in Headers */ = {isa = PBXBuildFile; fileRef = 2F9F8BE3B45CB25C249DA4546AC7F205 /* DDNavigationControllerDelegateReceiver.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F4010727E0089FB8459E3B88B44CCF05 /* UIView+Utils.swift in Sources */ = {isa = PBXBuildFile; fileRef = D9B246A57BA794BF383866C50BC71E60 /* UIView+Utils.swift */; }; - F45EDF2799E9766F25D0F91004913C51 /* ZFReachabilityManager.m in Sources */ = {isa = PBXBuildFile; fileRef = E706A064623BCBA10CDA2656C5B0C91C /* ZFReachabilityManager.m */; }; - F4A1A9CA7084A385722737C0E4F1500D /* SDImageAPNGCoder.h in Headers */ = {isa = PBXBuildFile; fileRef = 2B7442746EEAD697A884BA38351787A7 /* SDImageAPNGCoder.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F4BF719821019AA99BB2D9966A767047 /* UICollectionViewCell+DDCategory.m in Sources */ = {isa = PBXBuildFile; fileRef = 2D8A9DCC3AC5504DEC86005191B39191 /* UICollectionViewCell+DDCategory.m */; }; - F4D462FD5029EDF16FCA30844F4E344D /* ConstraintMakerPrioritizable.swift in Sources */ = {isa = PBXBuildFile; fileRef = A0046413888524AAF15AD4877C6971ED /* ConstraintMakerPrioritizable.swift */; }; - F5579E515166EFA597E30B6EA2966257 /* UIStepper+Rx.swift in Sources */ = {isa = PBXBuildFile; fileRef = 560FC5CF391D6C84FBD8408004C1C7EF /* UIStepper+Rx.swift */; }; - F6200950262C69D82B2E1F54D09E81CB /* ZLClipImageDismissAnimatedTransition.swift in Sources */ = {isa = PBXBuildFile; fileRef = 386DC0A475360B3A6713F051151B5570 /* ZLClipImageDismissAnimatedTransition.swift */; }; - F655A8F737F8DA58CD1238B94417CB1C /* _OCLogModel.m in Sources */ = {isa = PBXBuildFile; fileRef = BFBBF3A8095A48A9D90204CC16EFF7EF /* _OCLogModel.m */; }; - F661FDF2D701C76B553BBFE1982DC689 /* UIView+ZLPhotoBrowser.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4A99A711085317D81CB5936E6DD841F4 /* UIView+ZLPhotoBrowser.swift */; }; - F669A1209E80431CF57E528F4E8B0FEF /* JXCategoryTitleVerticalZoomCellModel.m in Sources */ = {isa = PBXBuildFile; fileRef = 29EF1E2B0028402084A2F8EC3430C4D5 /* JXCategoryTitleVerticalZoomCellModel.m */; }; - F679DDFB22B0446466AC8B46B5DDA5EF /* IQKeyboardManager+OrientationNotification.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5FB745E9BE13FA10F821417E9E9B3B68 /* IQKeyboardManager+OrientationNotification.swift */; }; - F67D89E3296911DC39710C076499C165 /* _NetworkHelper.h in Headers */ = {isa = PBXBuildFile; fileRef = 8437789D98F392853ED9D980736760DF /* _NetworkHelper.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F6EB265FFD449F74286B6BC454759435 /* String+MD5.swift in Sources */ = {isa = PBXBuildFile; fileRef = B632FCD857AEE129D9F155ED47A47C29 /* String+MD5.swift */; }; - F6F5F76688A0CA18956590C446B8B620 /* _fishhook.c in Sources */ = {isa = PBXBuildFile; fileRef = 0409B8BD3254A1CC2050622B967D1A90 /* _fishhook.c */; }; - F74D1425287A1A781A0A9DD58A1DD02E /* JXCategoryIndicatorView.h in Headers */ = {isa = PBXBuildFile; fileRef = 94DAEBA6CBB7F5BABA7EA465B1C6B966 /* JXCategoryIndicatorView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F75DFD6601FD194AFB8DF95EE8936F73 /* JXCategoryNumberCellModel.m in Sources */ = {isa = PBXBuildFile; fileRef = 7C839126F5B2B998CFB6031E3669DF31 /* JXCategoryNumberCellModel.m */; }; - F78123F6D3E099475747B424A7DD9B2B /* SDWebImageDownloaderRequestModifier.h in Headers */ = {isa = PBXBuildFile; fileRef = 01C1301B0AC7AFF3AF91CF59BC3F1E3E /* SDWebImageDownloaderRequestModifier.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F787E70DF5F00228E5AF451751EA323C /* UIScrollView+MJExtension.m in Sources */ = {isa = PBXBuildFile; fileRef = 146527595DF4E67A03E0054FA333E05E /* UIScrollView+MJExtension.m */; }; - F790D8AEDB20B1DB97AF53B6A148570F /* RxSwift-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = CDD5894896C6C3A31F6051550E5EE67B /* RxSwift-umbrella.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F79594534CE8CAF8686430BB867A4C1C /* ImageModifier.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2E9E15FA3C186EDC5CE285DB48F974F6 /* ImageModifier.swift */; }; - F7B1AB7027FF17E4E594895B07CC4B3C /* MJRefreshStateHeader.m in Sources */ = {isa = PBXBuildFile; fileRef = 57262098DA4263B2C4205AD0D9DDF61B /* MJRefreshStateHeader.m */; }; - F7BBD57301FEC4504E972FA4733A03DF /* JXCategoryListContainerRTLCell.m in Sources */ = {isa = PBXBuildFile; fileRef = D687FDDFD23A0A85F3880EAC2B88A600 /* JXCategoryListContainerRTLCell.m */; }; - F8051E31F7727B7443D2227044FF36D8 /* RxMutableBox.swift in Sources */ = {isa = PBXBuildFile; fileRef = B4921C14120CC7DAB5311D82ACB530AF /* RxMutableBox.swift */; }; - F8981FC45F418B17A5D6E2C88D5CCE03 /* Repeat.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6B26E78510E08DBAD16EABD38AD41798 /* Repeat.swift */; }; - F8A41F27D6685D59A2680429BCE2CD2A /* ZFSmallFloatControlView.m in Sources */ = {isa = PBXBuildFile; fileRef = F758474F4CD597F0C306FF0D93ECE875 /* ZFSmallFloatControlView.m */; }; - F9121FC6FB235A844904FF1D0E5CE74D /* LogCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = F02657A4C40D568F18D1CE5253A3E072 /* LogCell.swift */; }; - F9348D84DC95E2C7480F5B7DDFDE6B73 /* UICollectionView+DDCategory.h in Headers */ = {isa = PBXBuildFile; fileRef = 0875C040D12BE91C36E1ED306108F5CB /* UICollectionView+DDCategory.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F93C6980F441D1B60783F1253D1F5E6E /* MJRefreshFooter.m in Sources */ = {isa = PBXBuildFile; fileRef = 45E284B9D2089A6FF200B0A3EB0797D7 /* MJRefreshFooter.m */; }; - F9407616E10D579BC0FA5E52613EB342 /* NSBundle+DDCategory.m in Sources */ = {isa = PBXBuildFile; fileRef = 129D6161CDFA6124D6CADF3D8764B920 /* NSBundle+DDCategory.m */; }; - F958F034C7BBD246E8368D461BE44725 /* DDMASearch.h in Headers */ = {isa = PBXBuildFile; fileRef = 6C0B721497D7310B07F6514B0991B2E1 /* DDMASearch.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F95D260849769883E389172E954E43EF /* ObservableConvertibleType.swift in Sources */ = {isa = PBXBuildFile; fileRef = 07052646AA729B2C5F500719DF643195 /* ObservableConvertibleType.swift */; }; - F9839A9357C23D9EA498E09493D11187 /* DDBaseViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = BA528AC0B6488CAB64512C844C02A714 /* DDBaseViewController.m */; }; - F98469DDD34C573BBC8D4018BEB7591A /* DDLabel.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2EA47AB222A409BDE78579018712387D /* DDLabel.swift */; }; - FA32D099B9AC21168BE28F1C197FBD77 /* MKAnnotationView+WebCache.m in Sources */ = {isa = PBXBuildFile; fileRef = C00FD5E54A60B208AF0050C56BB16778 /* MKAnnotationView+WebCache.m */; }; - FA4BA7EEFE3FA4C84F1325272FBDBD0D /* ZFPresentTransition.h in Headers */ = {isa = PBXBuildFile; fileRef = B38EB51450EACAE0B11A83FFD19E3EBC /* ZFPresentTransition.h */; settings = {ATTRIBUTES = (Project, ); }; }; - FA7032E4211E7EFC936625707B8F9284 /* Disposable.swift in Sources */ = {isa = PBXBuildFile; fileRef = C55D4D3265BBEACF85432AE66C470CBD /* Disposable.swift */; }; - FA917E0C80C68BD2D8C7CDF44A418793 /* SDWebImageDownloaderResponseModifier.m in Sources */ = {isa = PBXBuildFile; fileRef = DCFC563E617986D3EDAAEAD48434782C /* SDWebImageDownloaderResponseModifier.m */; }; - FAC4CA638A146A699E9ED8BD575DEC52 /* SDImageIOCoder.m in Sources */ = {isa = PBXBuildFile; fileRef = E0005636539469F1B19BF39B4E3532CC /* SDImageIOCoder.m */; }; - FB2DFD5D894CC65AB92548FC5EA7614C /* _NSLogHook.m in Sources */ = {isa = PBXBuildFile; fileRef = E607ABAF007A00ED26B6741D6E011988 /* _NSLogHook.m */; }; - FB57B8D3D20886701150097BE03882B1 /* RxScrollViewDelegateProxy.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9D253D285E3111564900BCCBB52DF6BA /* RxScrollViewDelegateProxy.swift */; }; - FB83661EAB43FD81CF2C2C578416D1FB /* ZFNetworkSpeedMonitor.h in Headers */ = {isa = PBXBuildFile; fileRef = F7D92DC3034CCAF764DDFE03ED86E4B2 /* ZFNetworkSpeedMonitor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - FBB4D5583F66DAA1E067D1BBD8686779 /* TakeLast.swift in Sources */ = {isa = PBXBuildFile; fileRef = 16B05522B43020BCC230CDDE3DEFE8F2 /* TakeLast.swift */; }; - FCD3C71D2332DB416B9B367A66ED0254 /* ConstraintLayoutGuide.swift in Sources */ = {isa = PBXBuildFile; fileRef = C1BB769010495F3FD4866ECD933A8299 /* ConstraintLayoutGuide.swift */; }; - FD53237EFACA76D3436DB591996E6CD6 /* ZFPlayerNotification.m in Sources */ = {isa = PBXBuildFile; fileRef = 0895CD9160D01F577A4F8C987527075B /* ZFPlayerNotification.m */; }; - FDDBB624BAED990AC9956BF191000419 /* JXCategoryFactory.m in Sources */ = {isa = PBXBuildFile; fileRef = 3853D5CF922CD8EB18CE431AC90984E6 /* JXCategoryFactory.m */; }; - FDF4814AC17F7C7BF1575C5376E00140 /* UIView+DDCategory.m in Sources */ = {isa = PBXBuildFile; fileRef = A386AA41758CBF689FE017B8C0849ED8 /* UIView+DDCategory.m */; }; - FE090912DADD46635605657C61DE2E6B /* UIImageView+DDWebCache.m in Sources */ = {isa = PBXBuildFile; fileRef = 78933CA845E0F27681B450CADD8C49EA /* UIImageView+DDWebCache.m */; }; - FE2B894BE9BB970C5DAB4116B45E40E1 /* Constraint.swift in Sources */ = {isa = PBXBuildFile; fileRef = C2641DF68DED10FBB1979FC56DE64C03 /* Constraint.swift */; }; - FE5A36C9F47EDE5AFC75209A02C40305 /* JXCategoryTitleImageCell.h in Headers */ = {isa = PBXBuildFile; fileRef = 6A503857E0BC831498C5163C0D136B14 /* JXCategoryTitleImageCell.h */; settings = {ATTRIBUTES = (Project, ); }; }; - FE8C95D7A9D7F731F7A8FDFC0700B8FF /* SDImageCodersManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 9ED76CA7E92F6B1B76611D26863D9E2C /* SDImageCodersManager.m */; }; - FEC9F49A0A5335075665984A37CAB541 /* _OCLogStoreManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 82FB538952945CDBE13EF23FDF93DF27 /* _OCLogStoreManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - FEEB209E75DDB77013145AA5532C3AD6 /* MBProgressHUD.h in Headers */ = {isa = PBXBuildFile; fileRef = 4A2C564CFD70E9AF41EE23BAF8766785 /* MBProgressHUD.h */; settings = {ATTRIBUTES = (Project, ); }; }; - FF2EE64024F6462C52A157322B4550EA /* EKAttributes+PositionConstraints.swift in Sources */ = {isa = PBXBuildFile; fileRef = 78C2A13294B1616B337EA76AC105F222 /* EKAttributes+PositionConstraints.swift */; }; - FF68E7229363A392D4F2267C9980F68B /* MainScheduler.swift in Sources */ = {isa = PBXBuildFile; fileRef = BAF3129C257E907A7D6F376C913F9C34 /* MainScheduler.swift */; }; - FFB5B36D7F4564FFA3D50D29A2E0B46B /* _HttpDatasource.h in Headers */ = {isa = PBXBuildFile; fileRef = 8ACF622284192F7D82229D1B8BA6E48B /* _HttpDatasource.h */; settings = {ATTRIBUTES = (Project, ); }; }; - FFCABD6528BFE343AC38B8E67324AA17 /* ConstraintLayoutGuideDSL.swift in Sources */ = {isa = PBXBuildFile; fileRef = D85A4D2507CC0168B8D03A7513369B03 /* ConstraintLayoutGuideDSL.swift */; }; + BAB546FF62D34C6C2E6141CA5D0EEA69 /* _SandboxerHelper.h in Headers */ = {isa = PBXBuildFile; fileRef = 0016C6F4A8BBEB08CDA6E3A5420B10EE /* _SandboxerHelper.h */; settings = {ATTRIBUTES = (Project, ); }; }; + BAD25B30F0E334F12EC76FF901DEE3E1 /* HapticFeedbackGenerator.swift in Sources */ = {isa = PBXBuildFile; fileRef = 90A0BBDC2F2657AE9F32CDA93BF9DBB1 /* HapticFeedbackGenerator.swift */; }; + BADE59BFD6ABB8131D8E89FDCF00C74D /* DDBaseTableView.h in Headers */ = {isa = PBXBuildFile; fileRef = A6BFDB4E75B1484DFA020817AE4EE945 /* DDBaseTableView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + BADF6C33E1F3588E403CA1D766D39FC9 /* ImageProgressive.swift in Sources */ = {isa = PBXBuildFile; fileRef = D50645F7D4025B09F2BF43C445A05769 /* ImageProgressive.swift */; }; + BB11309B4519548E3ECEE89D25C9A5DF /* JXCategoryTitleImageCellModel.m in Sources */ = {isa = PBXBuildFile; fileRef = 8A2B93E82AEB01EC5A37FE1494F6292D /* JXCategoryTitleImageCellModel.m */; }; + BBAC10AC6F7CCC08CA990EC32BA93912 /* RxCocoa.h in Headers */ = {isa = PBXBuildFile; fileRef = 08AF4D18C36AB2546F7F8922C2C9B6BE /* RxCocoa.h */; settings = {ATTRIBUTES = (Project, ); }; }; + BBC70A640BAACC6E4B66AA90848CFA0E /* _FilePreviewController.h in Headers */ = {isa = PBXBuildFile; fileRef = AE6BA4D7D7E9A9A3D637F00B05FFF8B0 /* _FilePreviewController.h */; settings = {ATTRIBUTES = (Project, ); }; }; + BBCD195060AB693E31E7265ED366357B /* UISwitch+Rx.swift in Sources */ = {isa = PBXBuildFile; fileRef = 26D87AF29A25D07A11AC756180D366FE /* UISwitch+Rx.swift */; }; + BC2DA64DD45B4E41586E32FEBD056B4E /* ZLPhotoConfiguration.swift in Sources */ = {isa = PBXBuildFile; fileRef = BB0C6995731811C85FE13FE3685E6968 /* ZLPhotoConfiguration.swift */; }; + BC69B1FE7E10F3D5DF175CBE14F5DCA8 /* JXCategoryListContainerView.m in Sources */ = {isa = PBXBuildFile; fileRef = 160538DEC56439C5968908C2B061D198 /* JXCategoryListContainerView.m */; }; + BC71F627C5BB3C812706494A15135648 /* NSBezierPath+SDRoundedCorners.m in Sources */ = {isa = PBXBuildFile; fileRef = A26528E38976BAF17E03D7B30EF1A830 /* NSBezierPath+SDRoundedCorners.m */; }; + BC9B4EE54D72F2455037404FBA19AD37 /* IQUIScrollView+Additions.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1DE2C797C7FD11FF557277D5347E5654 /* IQUIScrollView+Additions.swift */; }; + BCD9CC1CE79079D3D45975C960F10783 /* RxCocoaObjCRuntimeError+Extensions.swift in Sources */ = {isa = PBXBuildFile; fileRef = FE99BBDB48A081389ADDB7C942C9D53D /* RxCocoaObjCRuntimeError+Extensions.swift */; }; + BCEAAD99ABD997F74E300F7B403CCDDC /* Infallible+Operators.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9398D0DAD4E01C571C1ED9CA3135B0BA /* Infallible+Operators.swift */; }; + BD0530138584A6602C89E4EE957300E0 /* NSObject+Rx.swift in Sources */ = {isa = PBXBuildFile; fileRef = 61DB488F8381483566FD8DEC477E8903 /* NSObject+Rx.swift */; }; + BD5769240CAB4930531B883F3AFFFAB4 /* CocoaDebugTabBarController.swift in Sources */ = {isa = PBXBuildFile; fileRef = B51F37A7C344BD675F51BF2342A159E3 /* CocoaDebugTabBarController.swift */; }; + BD5DE9137AD611FD04789830CDA7EB55 /* IQTitleBarButtonItem.swift in Sources */ = {isa = PBXBuildFile; fileRef = CF80A525B7281E66B3E29DBBD46A58B8 /* IQTitleBarButtonItem.swift */; }; + BD964247BCCE72D5C1B9738879564443 /* ColorUtil.swift in Sources */ = {isa = PBXBuildFile; fileRef = 58294F63B9546EE5FB94783D942812F9 /* ColorUtil.swift */; }; + BDAE954DC84B6E8AC31109AD8DC8D334 /* ConstraintViewDSL.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4430E66C5A71EB532107B6CFFD81A60C /* ConstraintViewDSL.swift */; }; + BDCA78333A03CC1AAADEB702F0247B5C /* UIActivityIndicatorView+Rx.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3A42343C2D6959246C474CAF35D6CC1A /* UIActivityIndicatorView+Rx.swift */; }; + BDE0AF913CE3F4071E4007C5DFDA8524 /* SDWebImageCacheSerializer.h in Headers */ = {isa = PBXBuildFile; fileRef = 6EC0950B1ECC72AE06F498F9B5A1E712 /* SDWebImageCacheSerializer.h */; settings = {ATTRIBUTES = (Project, ); }; }; + BE11323D433BE89670AC4426D26E30CF /* UIImageView+DDCategory.m in Sources */ = {isa = PBXBuildFile; fileRef = 848DB5D0C7C456F4A754958F5F87BF49 /* UIImageView+DDCategory.m */; }; + BE167859973E5F383FEB74A80D9D01F7 /* ExtensionHelpers.swift in Sources */ = {isa = PBXBuildFile; fileRef = AE9A920F8FA6AF9DD504682927FEB351 /* ExtensionHelpers.swift */; }; + BE48E94071B8D2879A0CAAD2716CA894 /* NSButton+Rx.swift in Sources */ = {isa = PBXBuildFile; fileRef = 42F2302B18BC0F431281A775BC882B48 /* NSButton+Rx.swift */; }; + BE50B0FF8A2D2BF08505923013F8FCC4 /* ZLEditImageViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = AABA9A29FA41942EA4E8B69A3FBFDF24 /* ZLEditImageViewController.swift */; }; + BEDF074398BFD7DF94A196D3883B0626 /* SnapKit-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 96D0124AA5F9AC06B5B82DA289A5A267 /* SnapKit-dummy.m */; }; + BF31E4809CC5CC71907563C0795BF3D9 /* DispatchQueue+Extensions.swift in Sources */ = {isa = PBXBuildFile; fileRef = EC3EC4E8B0AF0CC4724DF744657CF098 /* DispatchQueue+Extensions.swift */; }; + BF41DE73228CD7380FF1AC52A9D39906 /* BRPickerView-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 4C071192B6C37D4D3F796CB640C6EE8F /* BRPickerView-umbrella.h */; settings = {ATTRIBUTES = (Project, ); }; }; + BF7C326418703B0627237B811478A69E /* _RXKVOObserver.h in Headers */ = {isa = PBXBuildFile; fileRef = 592DB6D4AD6DF021B80821D5051549ED /* _RXKVOObserver.h */; settings = {ATTRIBUTES = (Project, ); }; }; + BF81E739B886428C57AB9E371A0B64FE /* DDBaseSwitch.m in Sources */ = {isa = PBXBuildFile; fileRef = 1B8DDB5AB5574889E524A11128C23FCD /* DDBaseSwitch.m */; }; + BF9EE31DA89D7BD4D374713EBBCF8C9A /* _HttpModel.m in Sources */ = {isa = PBXBuildFile; fileRef = 6550115578678499806D9C6CDBCC1165 /* _HttpModel.m */; }; + BFF07623A7EBCAE780F23B16FCCA46A6 /* IQKeyboardManagerSwift-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 67B484547995143B0A3FA497AA165822 /* IQKeyboardManagerSwift-dummy.m */; }; + BFFA58E5979EDB390F21B31F125B2632 /* UIImage+MemoryCacheCost.m in Sources */ = {isa = PBXBuildFile; fileRef = 191488C38985420414CAE71CE483ABAB /* UIImage+MemoryCacheCost.m */; }; + C0B92C052D177818157423AA97BEEC41 /* Range.swift in Sources */ = {isa = PBXBuildFile; fileRef = 450E40440636F88F499AB2D099762A8A /* Range.swift */; }; + C0E36B0F1A30BC55F9AC025171D9C40A /* ImageView+Kingfisher.swift in Sources */ = {isa = PBXBuildFile; fileRef = E89061AFD9AB16D5A0B173E69D0B7C85 /* ImageView+Kingfisher.swift */; }; + C129D590FB00BEC41B69093EFE0550C1 /* MJRefreshGifHeader.m in Sources */ = {isa = PBXBuildFile; fileRef = 30B7E097BD7EB89267D1E9FFAAA85377 /* MJRefreshGifHeader.m */; }; + C19A3B3BF30C1E6A7B8B49D1707FEF35 /* ObservableConvertibleType+SharedSequence.swift in Sources */ = {isa = PBXBuildFile; fileRef = AD0E138C52B3C25BB2BADD0A94A3E168 /* ObservableConvertibleType+SharedSequence.swift */; }; + C1B3CDD337EF4F552282DE6242E0085C /* Disposables.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7AC299BFF4B36E46DA5E5C19A243BEE6 /* Disposables.swift */; }; + C1CBD7EE47D55D6ED61A28AB50A72BDC /* BinaryDisposable.swift in Sources */ = {isa = PBXBuildFile; fileRef = D125BAFD50654D75081EFBAFCC1351E6 /* BinaryDisposable.swift */; }; + C1F35A42F0086062E9FA4BE7EB6D3BC5 /* SDWebImageCacheKeyFilter.m in Sources */ = {isa = PBXBuildFile; fileRef = 0BE2A2283AA193B1FC6C42A44D951474 /* SDWebImageCacheKeyFilter.m */; }; + C22E43D97DDDD19604D9677733A5D9CE /* ObservableType+PrimitiveSequence.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6F9A0A3CC2D465040BAD39CDEE3E2960 /* ObservableType+PrimitiveSequence.swift */; }; + C2422DE72E0AE7A2B6C524EEB6561541 /* _WKWebView+Swizzling.m in Sources */ = {isa = PBXBuildFile; fileRef = 5FCF98AE71E6A3E6673483E6A4FC3A23 /* _WKWebView+Swizzling.m */; }; + C279F4152AF87F3B0D23FCD471526387 /* Lock.swift in Sources */ = {isa = PBXBuildFile; fileRef = CA50061F5080EC34DF4203BBE861C65B /* Lock.swift */; }; + C2C943B55033E1906571A539B7123311 /* UIViewController+ZLPhotoBrowser.swift in Sources */ = {isa = PBXBuildFile; fileRef = A892C98B23F76A782A835779016E9B80 /* UIViewController+ZLPhotoBrowser.swift */; }; + C351FD4D753D534C32A90970493C1309 /* SynchronizedUnsubscribeType.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0E82D13FE96061E6E4EB297A495D4B26 /* SynchronizedUnsubscribeType.swift */; }; + C393251524AAA3BF1C2BA269684DC806 /* UIScrollView+ZFPlayer.m in Sources */ = {isa = PBXBuildFile; fileRef = B9CEDB8AA065587457A5D742B0C957A4 /* UIScrollView+ZFPlayer.m */; }; + C3E841F0F2A1C2CAE89FB406DF3EB569 /* UINavigationItem+DDCategory.h in Headers */ = {isa = PBXBuildFile; fileRef = 73C8A6AEE4F8853B589A90026FA41920 /* UINavigationItem+DDCategory.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C3F15ECD67B67F121651F425D872291F /* KFImageOptions.swift in Sources */ = {isa = PBXBuildFile; fileRef = B7F4B83026BA98C76D867A2938DA8F20 /* KFImageOptions.swift */; }; + C45425D6D8206478E4FF26CC85E4B5CC /* Optional.swift in Sources */ = {isa = PBXBuildFile; fileRef = 16A984FFDCD2D8E2DDCD44B725FD124B /* Optional.swift */; }; + C49B11227141A1C9B5C446CF513AE3B7 /* RxTextStorageDelegateProxy.swift in Sources */ = {isa = PBXBuildFile; fileRef = 082A9747FFF7BFB6BFEDF73173BFEE19 /* RxTextStorageDelegateProxy.swift */; }; + C4FC515A765F6D264655342C179E8B70 /* DDToastKit_Private-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 1F7FCD1EEE9254E4B23FF51EF0678C66 /* DDToastKit_Private-umbrella.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C54B8B88AF0ABC05267411671F02C964 /* SDImageCoderHelper.h in Headers */ = {isa = PBXBuildFile; fileRef = 48330C02481AEF4DCEC3989DCFEF285A /* SDImageCoderHelper.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C606E1F4F816CD5CEF3D207708C3C609 /* MJRefresh.h in Headers */ = {isa = PBXBuildFile; fileRef = A2C49409727D38F52C1F53932F467A50 /* MJRefresh.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C611EB7B0889F299561603ABC2B2F8A6 /* SynchronizedOnType.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2C315F24956CBAE8C22716422A20E129 /* SynchronizedOnType.swift */; }; + C626CF00E63F1E69A4194CA80068AAFC /* RxTabBarDelegateProxy.swift in Sources */ = {isa = PBXBuildFile; fileRef = DC084944C38AB1F9506B44FC5985959B /* RxTabBarDelegateProxy.swift */; }; + C6DBAF26A4A104BD5200CF834A5C6AC4 /* DDAutoUIKit_Private-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 7C623F2403EDF727CF44EAD667D80728 /* DDAutoUIKit_Private-dummy.m */; }; + C700C31CF03C3E4E40B18F0FF4EF381D /* SDWebImageDownloader.h in Headers */ = {isa = PBXBuildFile; fileRef = D27EC654DA0D57E391B837834CE54930 /* SDWebImageDownloader.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C7E41A5D81A024EDF41219DDC3B9BC14 /* ZFPlayerController.m in Sources */ = {isa = PBXBuildFile; fileRef = FD400BAD712DA8155B581382EA24C209 /* ZFPlayerController.m */; }; + C8049867323D3A7EDE9E39E2246F9806 /* Amb.swift in Sources */ = {isa = PBXBuildFile; fileRef = 676E8C28B7564438EEA471AA7DA540B4 /* Amb.swift */; }; + C811C54956F24D073E800373BB69A8EB /* JXCategoryDotCellModel.h in Headers */ = {isa = PBXBuildFile; fileRef = 99AB51679515C5AE24A71E033EACDC14 /* JXCategoryDotCellModel.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C81BFED8DC5CF5E66D81C7736374B9C4 /* DDScrollView.swift in Sources */ = {isa = PBXBuildFile; fileRef = B950E3E5BC03E7EAA144B54395908596 /* DDScrollView.swift */; }; + C845190F0B27DD1C19EC9625516F3AF1 /* CocoaDebugViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8E6B6514FBE643036EC134A7A169EFC7 /* CocoaDebugViewController.swift */; }; + C88C2CC9083FE0D07D52A9EC81D1E626 /* _RunloopMonitor.m in Sources */ = {isa = PBXBuildFile; fileRef = BFE7A470772C4DE2120B74453CED919B /* _RunloopMonitor.m */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; + C8D7A9EDC2F72A333D4AE379983529DA /* UIRectCorner+Short.swift in Sources */ = {isa = PBXBuildFile; fileRef = BAEF6C6FDB52DBE5A8656051132CF406 /* UIRectCorner+Short.swift */; }; + C8D9227AE348E8B791BB5A9DDAE2E182 /* NopDisposable.swift in Sources */ = {isa = PBXBuildFile; fileRef = 04B4465701FE30BC34749FE111978E33 /* NopDisposable.swift */; }; + C8F37E34D117D30FDFAEE19C03F1DBAA /* ObservableConvertibleType+Signal.swift in Sources */ = {isa = PBXBuildFile; fileRef = 85E9F3EA154A99BBECC5B46465D4766E /* ObservableConvertibleType+Signal.swift */; }; + C8F8E3163CE2F3AD0871F8DABF59F126 /* IgnoredURLsViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2D784F0B890FA08BEE1A9B1AA1F26F22 /* IgnoredURLsViewController.swift */; }; + C9172D6A5B4EBBA8DBDF690F51A58849 /* ZLPhotoManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2CCA5C8C7B7BC8507124A50FE7913A08 /* ZLPhotoManager.swift */; }; + C94E42387CEC9115FD19FD84D6DB9171 /* Event.swift in Sources */ = {isa = PBXBuildFile; fileRef = 748A512F28A34DFCAC2E395D397C6E39 /* Event.swift */; }; + C99813C12AD65507F8A1F3F00E140B4D /* NotificationCenter+Rx.swift in Sources */ = {isa = PBXBuildFile; fileRef = 642614BDC93A4CC0B518EAEF889BBEE1 /* NotificationCenter+Rx.swift */; }; + C9F76E02C52B92E46825E75DA101F97A /* BRBaseView.h in Headers */ = {isa = PBXBuildFile; fileRef = E3D03BAC0E6AEA54D0D773EA9DBEEC1C /* BRBaseView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + CA2867742C3F2479DF3E739041AEF731 /* ConstraintConstantTarget.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7570DB9E78635FA9807BC95099AE6E99 /* ConstraintConstantTarget.swift */; }; + CB1B31288E524777EA7FEF6E092E954F /* Driver+Subscription.swift in Sources */ = {isa = PBXBuildFile; fileRef = 331D98EB620C01F424B96A5DA29C60C0 /* Driver+Subscription.swift */; }; + CBC13ABFF646EADADC26984BDD12023C /* Queue.swift in Sources */ = {isa = PBXBuildFile; fileRef = E96F96782C6C279675AFD8F730FE03B6 /* Queue.swift */; }; + CC9135EDBA9D84DEF7F495FACE262DD6 /* ConcurrentMainScheduler.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD3DC48DCE4F122D2259E78DF872A8D1 /* ConcurrentMainScheduler.swift */; }; + CC96F0C85F662AF19A4E515F21EEE9CF /* DDBaseTextField.h in Headers */ = {isa = PBXBuildFile; fileRef = AA33DAC06090438E4DDBEC2735580BCF /* DDBaseTextField.h */; settings = {ATTRIBUTES = (Project, ); }; }; + CCB1CCE148F434A4A1FD5C20BB3CAB54 /* UIApplication+DDCategory.h in Headers */ = {isa = PBXBuildFile; fileRef = 129C4C0861511F31333238525142A013 /* UIApplication+DDCategory.h */; settings = {ATTRIBUTES = (Project, ); }; }; + CCBDC5792EFEDB0D32E03261BE90DFAC /* MJRefreshStateHeader.h in Headers */ = {isa = PBXBuildFile; fileRef = B7D6A19F38BD24A68614649268A81158 /* MJRefreshStateHeader.h */; settings = {ATTRIBUTES = (Project, ); }; }; + CCE73322A8F4B26A087301EBCC65C869 /* AppInfoViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 763152F9DFFFA3E497E7E5A78A48D4D8 /* AppInfoViewController.swift */; }; + CD0BAEE8810A92343D721F5D3EC2D2D8 /* Disposable.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9468BFD4E552D5DDAEA1E67D7DB56D24 /* Disposable.swift */; }; + CD12156B4F1F982CE5CBA7924ED90E24 /* ZLVideoManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3EC07E2E6CC66DED2E6B849B9836D440 /* ZLVideoManager.swift */; }; + CD4E33BE5BC4DBD59CFC58A70DF1CAC3 /* SDAssociatedObject.h in Headers */ = {isa = PBXBuildFile; fileRef = A61E15F374B58D0CD5DD0D21ABF44943 /* SDAssociatedObject.h */; settings = {ATTRIBUTES = (Project, ); }; }; + CD6E125ACDDF38716E4DFD741B612337 /* UIView+DDCategory.h in Headers */ = {isa = PBXBuildFile; fileRef = 3CF983DA4DF78AA359D0008B54A72F12 /* UIView+DDCategory.h */; settings = {ATTRIBUTES = (Project, ); }; }; + CD9EAABCA5038D9306C0ACD56A3A7D23 /* WKInterfaceImage+Kingfisher.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8F41F2BA648EA3813EAC2F4F6A55891D /* WKInterfaceImage+Kingfisher.swift */; }; + CDDD632233988F44FEC138B913143D5F /* DDMAGeometry.m in Sources */ = {isa = PBXBuildFile; fileRef = EBBD5F991C5E7631E158368AC5DDF0C1 /* DDMAGeometry.m */; }; + CE0D7DF3DE52C1B52C39DB23FCED7695 /* MJRefreshAutoNormalFooter.m in Sources */ = {isa = PBXBuildFile; fileRef = 053261275951B60F8A7B6E2E16D3D6E0 /* MJRefreshAutoNormalFooter.m */; }; + CE300C21C39DEF3FC00260E0C5A4AFBA /* ConstraintView.swift in Sources */ = {isa = PBXBuildFile; fileRef = CC131E115AC397987555BDFAB62A38A3 /* ConstraintView.swift */; }; + CE50A84C5C3A363CC5F5B206EF9C16B2 /* NSBezierPath+SDRoundedCorners.h in Headers */ = {isa = PBXBuildFile; fileRef = 0385BA814C957C616179B78AEC1F08C0 /* NSBezierPath+SDRoundedCorners.h */; settings = {ATTRIBUTES = (Project, ); }; }; + CE6E8F479C11E333C244F74A2E9665CE /* SDImageHEICCoder.h in Headers */ = {isa = PBXBuildFile; fileRef = 5A30B03FF04AF86AC507A20E3B9FEFC5 /* SDImageHEICCoder.h */; settings = {ATTRIBUTES = (Project, ); }; }; + CE8E55F06DEED865CA7AB8FD9298DD42 /* ZFReachabilityManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 4A7809897C33AB93E80EF656CCE20983 /* ZFReachabilityManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + CE90E73675214C8853F20CB4BF569901 /* ZLClipImageViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 76EBD55EC0FCF574FF898649700156EE /* ZLClipImageViewController.swift */; }; + CE9DB2E127EF675F92110286C1B3DBB0 /* JXCategoryTitleCell.h in Headers */ = {isa = PBXBuildFile; fileRef = 3B1A9623209FAE65630C3CC966CEC8F5 /* JXCategoryTitleCell.h */; settings = {ATTRIBUTES = (Project, ); }; }; + CEA5FFBDF695AF9F54027D0F9BE06A9E /* SDAnimatedImageView.h in Headers */ = {isa = PBXBuildFile; fileRef = BBFCAC399B1C6E22748ED55F05C70FEE /* SDAnimatedImageView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + CEC5D59E8CB9AA98751A071D3CC175D7 /* SDAnimatedImageView.m in Sources */ = {isa = PBXBuildFile; fileRef = EA644C0B771D66BF5BF84E7CB903BEA2 /* SDAnimatedImageView.m */; }; + CF5A619D2D3826CDC149B8C698F2F015 /* ZFLoadingView.m in Sources */ = {isa = PBXBuildFile; fileRef = 605FB43B0DA0F12B646A8E06249BA213 /* ZFLoadingView.m */; }; + CF8B43A4421E9DE16D25C1B7B9385ABC /* CombineLatest.swift in Sources */ = {isa = PBXBuildFile; fileRef = 234B50B3C07DF6F1E476438BB3989711 /* CombineLatest.swift */; }; + D027DFFBF0E354D252A6A52AD54C6830 /* JXCategoryIndicatorParamsModel.h in Headers */ = {isa = PBXBuildFile; fileRef = 8300FFB7D28FC9CB5645873A902E9AD0 /* JXCategoryIndicatorParamsModel.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D031E69F9B31D2D90CA1BAA088469040 /* RequestCompression.swift in Sources */ = {isa = PBXBuildFile; fileRef = 43379C188DF367B0818B4778B62B62F9 /* RequestCompression.swift */; }; + D0458582F73B502054224EE779333845 /* DDView.swift in Sources */ = {isa = PBXBuildFile; fileRef = B70AF93E4D974B8428D94FDA5AED6BD6 /* DDView.swift */; }; + D14FE7769234FBA4A9FE71A538AA1416 /* DDBaseViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = 8F41FA482FFD01131F6109B6F710F6F4 /* DDBaseViewController.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D15601FB6BDFEA4C0083467D5B754051 /* _CanonicalRequest.m in Sources */ = {isa = PBXBuildFile; fileRef = 5399B48F97E6FE08BC78D9E04015FEFC /* _CanonicalRequest.m */; }; + D159E10ABCEC5BAEC2AEE36361A0C14A /* SDWebImageIndicator.h in Headers */ = {isa = PBXBuildFile; fileRef = 256DE73C9DFEE06EDCAE15BE175F35B5 /* SDWebImageIndicator.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D2080DFBC1EC1E36D090C40AE4268C0E /* EKImageNoteMessageView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 16C8E97D22CC84BEB8D3C25B9A55D6D4 /* EKImageNoteMessageView.swift */; }; + D261FFEAFEECC6C5BE05EAFA172A6962 /* _RXKVOObserver.m in Sources */ = {isa = PBXBuildFile; fileRef = 09BF7BEC4D90C021470A25988CB291BF /* _RXKVOObserver.m */; }; + D2674D18CD23C97698FCE3E9C3FD42B1 /* Concurrency.swift in Sources */ = {isa = PBXBuildFile; fileRef = 33C527167BCA8278B0CAC9FF9477E7EE /* Concurrency.swift */; }; + D26EBA1505FCD8CB1561A0FB08AB74A5 /* URLRequest+Alamofire.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9D50ABEE75112BB31B23667087873645 /* URLRequest+Alamofire.swift */; }; + D2783F91C8C3A525D7086EBF0B079C22 /* ZFPlayerControlView.h in Headers */ = {isa = PBXBuildFile; fileRef = B46DF914A72CDF22E27684C7E253C84C /* ZFPlayerControlView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D2807DCFF6B07ADF84CFACC8A1882579 /* DDBaseAttributedString.m in Sources */ = {isa = PBXBuildFile; fileRef = 20A5A8739DE24B32F817BAE464B70DB5 /* DDBaseAttributedString.m */; }; + D2B59A35739A47EBEED7DEA75BA5C378 /* SDDeviceHelper.h in Headers */ = {isa = PBXBuildFile; fileRef = 8EF4E4E24BE31DAB6754BC5B5CE50FA1 /* SDDeviceHelper.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D2E2AF992A4E158B35A68EF020BBD66F /* UIControl+Rx.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0112B77C1DE51BC869026352B7DCA97E /* UIControl+Rx.swift */; }; + D311F8002A40812E3A487F99D7669DBA /* ZFSliderView.m in Sources */ = {isa = PBXBuildFile; fileRef = 1A28F79C50D3E20B9BAC67E22A4359F3 /* ZFSliderView.m */; }; + D313C1769F98E563B2F0387645363D60 /* UIImage+ExtendedCacheData.h in Headers */ = {isa = PBXBuildFile; fileRef = EFD44FF26920EDE0DCB5BA2C4501290F /* UIImage+ExtendedCacheData.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D348712897317534CF3C284C06FEE00D /* ImageBinder.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3BE4E278928BD2D719E101590D860A8C /* ImageBinder.swift */; }; + D353460A66889A4B7549457FB5D9EECD /* DDProgressHUDKit_Private-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 51301DA7667977D6925ACD930FA6C43B /* DDProgressHUDKit_Private-dummy.m */; }; + D38A24C3DDF40A1C9B6C9784F234D349 /* ConstraintPriority.swift in Sources */ = {isa = PBXBuildFile; fileRef = 470BBC2A5F8925E41FA07BA68E914530 /* ConstraintPriority.swift */; }; + D3C6166B6D26233AE4337DA319FEBF57 /* Protected.swift in Sources */ = {isa = PBXBuildFile; fileRef = 377789F4F973EF6D657F640E1F5461B9 /* Protected.swift */; }; + D3DF1456153024C80BCDC91E03814A16 /* MJRefreshStateTrailer.m in Sources */ = {isa = PBXBuildFile; fileRef = 1B93E03307EC96D635819D9AC9493A70 /* MJRefreshStateTrailer.m */; }; + D433A9598548308343DC33207661EFF2 /* KVORepresentable+Swift.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3C082423F9CBB898B2BC579ADA0FC1F7 /* KVORepresentable+Swift.swift */; }; + D43BA282386D995C1C7F4B7049A909FD /* Validation.swift in Sources */ = {isa = PBXBuildFile; fileRef = A719C579EEAF3B6AB0CF5DC387825F49 /* Validation.swift */; }; + D468BA7AD6F54E7E8E8EEDCF050D63FD /* _FileTableViewCell.h in Headers */ = {isa = PBXBuildFile; fileRef = 34C3553AF01E9B43887AAFA045BEDDEC /* _FileTableViewCell.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D4B730EE988770D669C0A758CEB36008 /* UITextField+DDCategory.m in Sources */ = {isa = PBXBuildFile; fileRef = F7570B539CC2470A47D0007EB3C05A61 /* UITextField+DDCategory.m */; }; + D4F903272DBF8085931ED06910171FE4 /* Zip+arity.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6045E36CE46DE8AFEB133AAD6D0EEE6B /* Zip+arity.swift */; }; + D510213435EC6D25AC777EF2CF34A93B /* _CacheStoragePolicy.h in Headers */ = {isa = PBXBuildFile; fileRef = 939CF4A9BEE41EA69945E3B684423A02 /* _CacheStoragePolicy.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D52B0E394FF92821DC8380B5498B34A2 /* UIScrollView+MJExtension.h in Headers */ = {isa = PBXBuildFile; fileRef = A40353B4FCD05423F2C9A8B998F39A76 /* UIScrollView+MJExtension.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D565284D49314EAA54AF602A468A0207 /* JXCategoryView-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 67DF36B793E2CF00421ABE1D3E185505 /* JXCategoryView-umbrella.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D597DCAEA880152A9633B7E83067E600 /* ZFPlayerControlView.m in Sources */ = {isa = PBXBuildFile; fileRef = 78DB9636223BA7446E901986F1BFC86D /* ZFPlayerControlView.m */; }; + D5B499F817DA04BCDEEF25D43C26A677 /* UITextField+Rx.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7AFFA4A543A638320E30BF5221558469 /* UITextField+Rx.swift */; }; + D5CCF6DB7FA882ECA115965D1BAC4083 /* SizeExtensions.swift in Sources */ = {isa = PBXBuildFile; fileRef = C58C9A8503709EA3F93779D5DF5573DD /* SizeExtensions.swift */; }; + D5DA230836405BCBACFE526BB7B9CEC8 /* Create.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8875FCF2AB4987007C0D4FA3C9F7DE5F /* Create.swift */; }; + D654637C8DD8012A6593C58CDC7EB89F /* EKWindow.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8D5F960762367E1A139FFE0BDD84E6FC /* EKWindow.swift */; }; + D6840A04ECDF94C1E5C5D347C8AB0172 /* DDBaseViewController.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 1C12ADCAD127EA090076321603546908 /* DDBaseViewController.xcassets */; }; + D68A44D2142C495CCD955363CCC1321A /* Request.swift in Sources */ = {isa = PBXBuildFile; fileRef = 196C316CD40737B7B2C1E2902C5C8EDA /* Request.swift */; }; + D6D433142B682531BEE093B3BDCF5F85 /* Observable+Bind.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4E117B6933609F0529AC856075573F51 /* Observable+Bind.swift */; }; + D86A0299F74B0CBA434FF9F89F8B958D /* SDDiskCache.h in Headers */ = {isa = PBXBuildFile; fileRef = 8211323B37CEB133F28BBDA2B315851E /* SDDiskCache.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D8C941A6FBC9BBC51F8E9991A43723A6 /* Bag.swift in Sources */ = {isa = PBXBuildFile; fileRef = 998CF5D4571BBD8AFF163619A5F96028 /* Bag.swift */; }; + D94A532721A28C49CAE0014FE6600335 /* DDBaseImage.h in Headers */ = {isa = PBXBuildFile; fileRef = D87581580CFB7BF2D5AEAB3645B785F0 /* DDBaseImage.h */; settings = {ATTRIBUTES = (Project, ); }; }; + DA122AC8CE9ACBECA2D141674BE399AD /* Cell+ZLPhotoBrowser.swift in Sources */ = {isa = PBXBuildFile; fileRef = 75F08EBA33E8D2991376A8BDB0511D2F /* Cell+ZLPhotoBrowser.swift */; }; + DA1FA0DAE089EC8839345D5DFC5713AB /* ReplaySubject.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7BA5BF848F3B2CC18719429673C572BC /* ReplaySubject.swift */; }; + DA26C39BF5DCF7D536B33589481AFC29 /* DDBaseTextView.h in Headers */ = {isa = PBXBuildFile; fileRef = FEA788EC7E9FAD535DC02D0DB63B550D /* DDBaseTextView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + DA7D630210EED4FE82A89AF9DA354FDE /* JXCategoryBaseCellModel.m in Sources */ = {isa = PBXBuildFile; fileRef = 41458FF2585B935FF2FBA66AB3EA086D /* JXCategoryBaseCellModel.m */; }; + DAC19ECD4ACAB52EDB6B1B8E13A00F6C /* Never.swift in Sources */ = {isa = PBXBuildFile; fileRef = FA43F617E393D49EA35CC5CF6B7ACCCF /* Never.swift */; }; + DAE6984A0E6F7843EC1FC16CA0639411 /* ESTabBar.swift in Sources */ = {isa = PBXBuildFile; fileRef = 64A91EE05741DA815ACE9F12CE92709A /* ESTabBar.swift */; }; + DB37A02E7A013103E599E7AC0C065B89 /* SDImageCachesManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 4597C134B51299524D6EFE0FE26196E5 /* SDImageCachesManager.m */; }; + DB3F4AED1ED3B0291EA2C6C7D5CC2662 /* SDImageCacheDefine.m in Sources */ = {isa = PBXBuildFile; fileRef = 5C3D65B55E66A17F74673CC45A7BE2A8 /* SDImageCacheDefine.m */; }; + DB5347DA0855F994DB3006E3B208758E /* UIImage+Transform.m in Sources */ = {isa = PBXBuildFile; fileRef = 0FF4C616AD34D0D620D1E52915B79BC2 /* UIImage+Transform.m */; }; + DBF47AD7D42070ABCA125FD5953118CC /* JXCategoryListContainerRTLCell.h in Headers */ = {isa = PBXBuildFile; fileRef = 0139719C76F8C7628242BE20324110B6 /* JXCategoryListContainerRTLCell.h */; settings = {ATTRIBUTES = (Project, ); }; }; + DC25951404C24F1A7D6A193A3EA96898 /* JXCategoryDotCellModel.m in Sources */ = {isa = PBXBuildFile; fileRef = D25EDFDD8B4C639983E4C92CBC39C560 /* JXCategoryDotCellModel.m */; }; + DC41B120F0CBAB4E01BBF17427CD4305 /* AFError.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4E8F5FAB1E6599E9F53B49891BDFDF25 /* AFError.swift */; }; + DC737D9D05CDFEDEF02A15458AC36B92 /* KVORepresentable.swift in Sources */ = {isa = PBXBuildFile; fileRef = EFE0E9EB1A26D5C47B69C3632FC8F704 /* KVORepresentable.swift */; }; + DC794F1932A83BE2834B56D0DA98C939 /* LayoutConstraint.swift in Sources */ = {isa = PBXBuildFile; fileRef = 28073DB9492B9394CBD97BEB22692694 /* LayoutConstraint.swift */; }; + DD54283797CAFC5B22AE32F87027BD66 /* ZFPresentTransition.m in Sources */ = {isa = PBXBuildFile; fileRef = 1EB6B2BE04795E067D6F05EBC2D51B37 /* ZFPresentTransition.m */; }; + DD580CB782EBCD185EB099D7FC7B076D /* UICollectionViewCell+DDCategory.h in Headers */ = {isa = PBXBuildFile; fileRef = 2A2992EB1D0FD3CA7E85F6867C2A7865 /* UICollectionViewCell+DDCategory.h */; settings = {ATTRIBUTES = (Project, ); }; }; + DDDD09F19CFD6180ED2E61A9F33B9DA8 /* Infallible+Zip+arity.swift in Sources */ = {isa = PBXBuildFile; fileRef = 59F699CE8707481B6EED4B8F739DDEF4 /* Infallible+Zip+arity.swift */; }; + DE081D1B6559CE4BECE6C2F3A24E43A1 /* ControlProperty.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6A9E0C8829F553582E5D82C16BF69732 /* ControlProperty.swift */; }; + DE2D6981D59E4126FB6702371A4FBF45 /* UIView+QLContentWrap.swift in Sources */ = {isa = PBXBuildFile; fileRef = ADD26851450A69400F1F4C0DE67E1E71 /* UIView+QLContentWrap.swift */; }; + DE5FE62EE79DBFC7EF4FA464DAF4513A /* SDImageGraphics.h in Headers */ = {isa = PBXBuildFile; fileRef = E852AF45696268303670F21CCA68D207 /* SDImageGraphics.h */; settings = {ATTRIBUTES = (Project, ); }; }; + DE67F2DBD32576906B94DA0F81D6E054 /* Bag+Rx.swift in Sources */ = {isa = PBXBuildFile; fileRef = A426DE49EBDEF83C4811B094FE4CE40F /* Bag+Rx.swift */; }; + DE685E8DEC4100302CC59D017E073C02 /* ImageTransition.swift in Sources */ = {isa = PBXBuildFile; fileRef = 50713D33276FF07B5AA39180B92880B5 /* ImageTransition.swift */; }; + DEA7CC5B85C903C74AE96DE0C3AFDBDD /* EKAttributes+Scroll.swift in Sources */ = {isa = PBXBuildFile; fileRef = A6B410D64A701D1CB10E1077619B6F60 /* EKAttributes+Scroll.swift */; }; + DECDE2E77B74B844D5CB12773AF468F4 /* CPListItem+Kingfisher.swift in Sources */ = {isa = PBXBuildFile; fileRef = 382536E4FBED5F4B7E3B9D17CD88A496 /* CPListItem+Kingfisher.swift */; }; + DF1533D403B93AE3F7C213E2E79F22D9 /* EKAttributes+UserInteraction.swift in Sources */ = {isa = PBXBuildFile; fileRef = 37B4594CD294E430DB6DD6AB145057F2 /* EKAttributes+UserInteraction.swift */; }; + DF2E9C4198CC1FA05A9A507356F0A140 /* EKPopUpMessageView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 16553ED13CFF1FE8A2C6E666B6636C2A /* EKPopUpMessageView.swift */; }; + DF419FE76FE2E463D3B079DDA8D09DCD /* ZLWeakProxy.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5FB2AA3BD1F50E2533FC72EDA308AC57 /* ZLWeakProxy.swift */; }; + DF9A3D9B61FFDC86D1B08C57030698F2 /* UISwitch+DDCategory.h in Headers */ = {isa = PBXBuildFile; fileRef = D713710C17AB03B2D2C99DA83E4B5D4F /* UISwitch+DDCategory.h */; settings = {ATTRIBUTES = (Project, ); }; }; + DF9B302F0871C6124E2F498548C6663B /* Zip+Collection.swift in Sources */ = {isa = PBXBuildFile; fileRef = CA61AAE812298E0D209110E6327C2C96 /* Zip+Collection.swift */; }; + DFAB3889074446F294E9B7FDB413D9AD /* ZLPhotoPreviewCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = D6FABDEB118D3EB7C83C9F297B318F44 /* ZLPhotoPreviewCell.swift */; }; + DFE78D284184E73F37797F723D1BD4A9 /* BRBaseView.m in Sources */ = {isa = PBXBuildFile; fileRef = 33E5CCEAB5526862A8A29B3035E9EBC2 /* BRBaseView.m */; }; + DFF89BB4CBD71C272B9E224DBEC1614F /* UITextView+Rx.swift in Sources */ = {isa = PBXBuildFile; fileRef = E45E32F6A055D035199EF31E6D5E4520 /* UITextView+Rx.swift */; }; + DFFDF8651C37D5DF303C6DEE7F973568 /* UIApplication+DDCategory.m in Sources */ = {isa = PBXBuildFile; fileRef = D6FD1CE43A4082C6AE2CAD9DC2E37800 /* UIApplication+DDCategory.m */; }; + E0050EB219F11E257D76F42981621989 /* Infallible+Bind.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8B112DD0C99213833E217192DE213AC5 /* Infallible+Bind.swift */; }; + E0950E6EE43A295EAF8CBBA0AE9F7440 /* MJRefreshNormalHeader.h in Headers */ = {isa = PBXBuildFile; fileRef = 12D12776A4BDE949D3EA6FF4EA5A998E /* MJRefreshNormalHeader.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E0C9D73822D5F3DD4B6B5C08DA188295 /* Result.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9651F162647738D9F4645980D82752BB /* Result.swift */; }; + E0ED114609A50B49D01ED22E8F5E97D2 /* ZLPhotoBrowser.h in Headers */ = {isa = PBXBuildFile; fileRef = 44F6B0D0520CC6DB5A81C4D43CE40F18 /* ZLPhotoBrowser.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E0FA80E4CD78AECC240107F0F61E8CAA /* NSObject+Rx+KVORepresentable.swift in Sources */ = {isa = PBXBuildFile; fileRef = 94BC0CACE6284059AD3275AC0D726586 /* NSObject+Rx+KVORepresentable.swift */; }; + E0FAF7C1260A652AAC8D06E824FE3DFC /* ConstraintDSL.swift in Sources */ = {isa = PBXBuildFile; fileRef = ABB0AE53048B226B2B5B0EBAE37614DE /* ConstraintDSL.swift */; }; + E1FDFE7397359EE58A405C3A0E2CDFCA /* CallbackQueue.swift in Sources */ = {isa = PBXBuildFile; fileRef = D0141DBF0FBAD76F5E97577F9C9C225A /* CallbackQueue.swift */; }; + E245CDBB5D029FFFB5933CFEB72997BF /* MBProgressHUD.m in Sources */ = {isa = PBXBuildFile; fileRef = 80C8ACAACE13FFAE71DED543D61B41E7 /* MBProgressHUD.m */; }; + E25543877A432B49BAD472D8DAACCCAA /* _Sandboxer.h in Headers */ = {isa = PBXBuildFile; fileRef = 6AD9B63E813BEC6DAB08FC2E89381A8B /* _Sandboxer.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E2A772FC2EF1D213CB844D55E0B55AA4 /* NSBundle+DDCategory.h in Headers */ = {isa = PBXBuildFile; fileRef = AF0609FBE231EEF7030E0A9346FF3F5D /* NSBundle+DDCategory.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E3080F4602E4B0BDB9EBEE26413F2484 /* UIImageView+ZFCache.h in Headers */ = {isa = PBXBuildFile; fileRef = 443BBFD6B3D42FB3964EF34F210E8860 /* UIImageView+ZFCache.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E368BA3E038835CB1C1ECC9A6A7AB467 /* URLSessionConfiguration+Alamofire.swift in Sources */ = {isa = PBXBuildFile; fileRef = C0AB89978B936B8DBFE43A080BF6D1AB /* URLSessionConfiguration+Alamofire.swift */; }; + E377D381740EA7DAA223CBC572EF3258 /* JXCategoryDotCell.h in Headers */ = {isa = PBXBuildFile; fileRef = E554E05ED0F6AA57B12225A412E9E218 /* JXCategoryDotCell.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E3D71D3617C88CD8BC9A3537AC98150B /* MJRefreshAutoStateFooter.h in Headers */ = {isa = PBXBuildFile; fileRef = 1FDD3B0B5C7D146DAC1BF1E4BB377608 /* MJRefreshAutoStateFooter.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E3E7323AE945DC3AF3A4B2D4FCA619B4 /* JXCategoryTitleVerticalZoomView.h in Headers */ = {isa = PBXBuildFile; fileRef = 7E1EB3D147DD5C3D26F79B7BE1682EB1 /* JXCategoryTitleVerticalZoomView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E4475EA83B74BF9159D92CE76658DCF7 /* Window.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6E8C75098DA35AB6703B4F91C3E60888 /* Window.swift */; }; + E49254B60C2043832B5A2E0658DA441C /* JXCategoryIndicatorCellModel.h in Headers */ = {isa = PBXBuildFile; fileRef = 0B0287512853C8B86CB04C42AC98AF10 /* JXCategoryIndicatorCellModel.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E4BA37E528DEF3AA3A68041452D66C4C /* Bundle+ZLPhotoBrowser.swift in Sources */ = {isa = PBXBuildFile; fileRef = E4FAAE48DB67CBAF8A1E8BCE45E38575 /* Bundle+ZLPhotoBrowser.swift */; }; + E4CC053D3BA039E7F0398C8284C30778 /* Errors.swift in Sources */ = {isa = PBXBuildFile; fileRef = 58616896C19469929ECA72A98CC07B44 /* Errors.swift */; }; + E4D1F2F411BE4931E6BF715754C063E7 /* RxCocoa-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 66CE5A83353C5F2567C0EA67F147DE72 /* RxCocoa-dummy.m */; }; + E4E5A81558349987089F48B24896ED5F /* AddRef.swift in Sources */ = {isa = PBXBuildFile; fileRef = 435848D234E2FDFAF4BBA77E2EA0005A /* AddRef.swift */; }; + E508BEC46801CF34064D971BE80D0B5C /* NSError+ZLPhotoBrowser.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8C324819CC6F2918CE489CA913C8649E /* NSError+ZLPhotoBrowser.swift */; }; + E50CC69C160CC7DFDDAA5E1545D1A670 /* EKSimpleMessageView.swift in Sources */ = {isa = PBXBuildFile; fileRef = D587460C9FE0BDBFDEBB77F081C0C7B9 /* EKSimpleMessageView.swift */; }; + E55531ABF6926398EC644282EF0D669A /* LayoutConstraintItem.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3C7582FA774246BD79F6459F1ED935E0 /* LayoutConstraintItem.swift */; }; + E559E921BB84AAE511E87807509D7FC6 /* ZLPhotoConfiguration+Chaining.swift in Sources */ = {isa = PBXBuildFile; fileRef = 538F2A1DC0BE5BF1B10C405C9316342C /* ZLPhotoConfiguration+Chaining.swift */; }; + E55CEF4234F35E2FDC1B7855AD39A6A0 /* JXCategoryIndicatorRainbowLineView.m in Sources */ = {isa = PBXBuildFile; fileRef = 5F891E2A397E8DB06B4F1E7AA6E3CAE3 /* JXCategoryIndicatorRainbowLineView.m */; }; + E561CD06D38136B1D649361A380F9354 /* First.swift in Sources */ = {isa = PBXBuildFile; fileRef = B32541AACE47269CB354614143DF7B6A /* First.swift */; }; + E575FD1642D598B5B2FBF353BEF4E193 /* NSAttributedString+DDCategory.h in Headers */ = {isa = PBXBuildFile; fileRef = 35E0C1123B974156165208A58CC9C4E9 /* NSAttributedString+DDCategory.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E58167CC7D2E212AD5DDDD236604B13D /* GraphicsContext.swift in Sources */ = {isa = PBXBuildFile; fileRef = 86AD855B0C36FCB9F072A2FB4367CCFC /* GraphicsContext.swift */; }; + E5A89C1CC70968CACDACA8D8A92B6098 /* CGFloat+ZLPhotoBrowser.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8B84E4EFC4CC7D7ACF787153E297D875 /* CGFloat+ZLPhotoBrowser.swift */; }; + E5E75D7B7C4C9F2DE674F62A6F9598D6 /* _QNSURLSessionDemux.m in Sources */ = {isa = PBXBuildFile; fileRef = 38181F4D4881031FED8569880510FE53 /* _QNSURLSessionDemux.m */; }; + E5F5564E46CAC014A80A083A571ABBC8 /* CocoaDebug.h in Headers */ = {isa = PBXBuildFile; fileRef = 7E6D64A51BE9F7D0FA4FB32BE21261A8 /* CocoaDebug.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E6354246C297E483E6223FE120548DFC /* SDWebImageManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 34F47DCCF2222D26B7FE66FED44314FA /* SDWebImageManager.m */; }; + E64D266F649AEECEAB6296829D2077CA /* Platform.Darwin.swift in Sources */ = {isa = PBXBuildFile; fileRef = DEE93522E0D5AB3846AF878A7A188C23 /* Platform.Darwin.swift */; }; + E66599FD249E2518DAA49AC6A21B82B0 /* ScheduledItemType.swift in Sources */ = {isa = PBXBuildFile; fileRef = 138BCBB4DC817E9F31394ED16B8A29DA /* ScheduledItemType.swift */; }; + E69B447C350C9219B0AF9A1D2A0F5BE4 /* UIView+MJExtension.h in Headers */ = {isa = PBXBuildFile; fileRef = EACB3BC9F053ABC43C7B3009822CFB8C /* UIView+MJExtension.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E69DCCA33374EEF831673C7F5CB6BF9F /* DDBaseCollectionViewCell.h in Headers */ = {isa = PBXBuildFile; fileRef = 1223B9BCC27F8C8348BC83FBAF4B095E /* DDBaseCollectionViewCell.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E6C366340474F762781CC1AFBB2BDFA6 /* DDBaseMutableAttributedString.m in Sources */ = {isa = PBXBuildFile; fileRef = F2CA57A46CFC866A1C016D2840494ABF /* DDBaseMutableAttributedString.m */; }; + E6D9904957E23E3130F9DAC9CDE8EF64 /* EKAttributes+Validations.swift in Sources */ = {isa = PBXBuildFile; fileRef = 15A044019BDACEF6F993B544AC5D2299 /* EKAttributes+Validations.swift */; }; + E6E08F86F050EF8BB6BB962F72CF235B /* CocoaDebugNavigationController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 72FA0FFEEFE3F7F42E7D310F550B221C /* CocoaDebugNavigationController.swift */; }; + E6EACA4E75EC03727F26906AF7B0A011 /* SDImageCache.h in Headers */ = {isa = PBXBuildFile; fileRef = 5EE64E6CDB8922A15A29036FEA1CDF8F /* SDImageCache.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E6FD25D02A73F3559455976B20FA94F9 /* UIBlockingBubble.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9F4E84F353F8A733EB01D44C6EBDF1BB /* UIBlockingBubble.swift */; }; + E7396A74BE2AC793EF629004F51A30F4 /* UIFont+DDCategory.m in Sources */ = {isa = PBXBuildFile; fileRef = 41E4C494C3D2A1D8DD5F8FB494F9BF3A /* UIFont+DDCategory.m */; }; + E787841D635A76F6F607DCC206304D50 /* EKAlertMessageView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 58EEDD99D1C438371D165DC77DA91A10 /* EKAlertMessageView.swift */; }; + E81E02118C89B4ACFEE276E94F4BF705 /* RxTabBarControllerDelegateProxy.swift in Sources */ = {isa = PBXBuildFile; fileRef = D266C2387F2CE19CEF74EC2E55AFC0D4 /* RxTabBarControllerDelegateProxy.swift */; }; + E83655042A5A0EBC2EC6C59E88A1BC1E /* RxCollectionViewReactiveArrayDataSource.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0C825B8354A834C5C15737ADA5230621 /* RxCollectionViewReactiveArrayDataSource.swift */; }; + E85B429D067EC3AF0216849A1381050E /* RxCocoaRuntime.h in Headers */ = {isa = PBXBuildFile; fileRef = 6F5760831A632750BA5434FEE20640AC /* RxCocoaRuntime.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E899464A2357907FD858082100EF5D38 /* DDTableView.swift in Sources */ = {isa = PBXBuildFile; fileRef = B6E5494399CF740C7316F47647E51127 /* DDTableView.swift */; }; + E8AC828A989AB04260E5B4EF583CF423 /* AlamofireExtended.swift in Sources */ = {isa = PBXBuildFile; fileRef = 110EC0AD318D4ECCC10F025DAE53B000 /* AlamofireExtended.swift */; }; + E9426C4776CBC73E58BC3FD5B308D7A8 /* Timeout.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4EF3158E85C9B106AE64E06D6E642F8E /* Timeout.swift */; }; + E958828D3FE22413D88F6BC7134B35E3 /* Merge.swift in Sources */ = {isa = PBXBuildFile; fileRef = AA7457E9D95BB71D2AE7D1079D342213 /* Merge.swift */; }; + E95E48BD80929D24F0AF18B993CD15FA /* _Swizzling.m in Sources */ = {isa = PBXBuildFile; fileRef = 0CA1A9F98A8858536FD425DCC916D7C3 /* _Swizzling.m */; }; + E969679589E762C810069359BDADF37E /* RxSearchBarDelegateProxy.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7D79C35E0CC5A6179E03FDA7CDD468A7 /* RxSearchBarDelegateProxy.swift */; }; + E9A52101C6A02C3E428215E4299EA5D9 /* MJRefreshConst.m in Sources */ = {isa = PBXBuildFile; fileRef = F4733E2C342FB40CB4CD34E6A3F8491F /* MJRefreshConst.m */; }; + E9BB5E151219537A248A181BE380F3CD /* Debounce.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5B0C9B0C30155D7F73A4B04BA60E4F99 /* Debounce.swift */; }; + E9BE36DE12FFB998CAC91C71D9794319 /* JXCategoryIndicatorView.m in Sources */ = {isa = PBXBuildFile; fileRef = C7B93C5CCBD714319A1AD2DBC6CB9032 /* JXCategoryIndicatorView.m */; }; + EA0EA5B13F19C31ABFCAAA03812049A5 /* JXCategoryIndicatorTriangleView.h in Headers */ = {isa = PBXBuildFile; fileRef = 451A145E8E53F9436A0ACFB07A4787A8 /* JXCategoryIndicatorTriangleView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + EAA7903E669CD58C7EC9B9120957BD6C /* _DirectoryContentsTableViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = EAFED137EE9193DC78FAA2ACEBAF9F73 /* _DirectoryContentsTableViewController.m */; }; + EAB1BD72439CE2562B93479B029BCA48 /* SchedulerType.swift in Sources */ = {isa = PBXBuildFile; fileRef = 96ABA92A48DC6366CD32E74C1F62C908 /* SchedulerType.swift */; }; + EB42103171FA131586ABFBA7D4138A64 /* Alamofire-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 8A24092E52B14E76233D4A039740A10A /* Alamofire-dummy.m */; }; + EB6B5F3AE26785E65E1F91DD694853BF /* UIScreen+DDCategory.m in Sources */ = {isa = PBXBuildFile; fileRef = D3FEDA019CD04B1F913E1664AC449785 /* UIScreen+DDCategory.m */; }; + EC261155F1F1E75AFC43FC3374CD930F /* UIFont+DDCategory.h in Headers */ = {isa = PBXBuildFile; fileRef = B00D1D89AE173CE03DA1CE254A92485F /* UIFont+DDCategory.h */; settings = {ATTRIBUTES = (Project, ); }; }; + EC65A32CC7DFB028230AAE4013EA8100 /* BRPickerStyle.m in Sources */ = {isa = PBXBuildFile; fileRef = AB0D7793FD5B01DCB6199C9FC8AE4B8F /* BRPickerStyle.m */; }; + EC9D72B3C96E1DE6A9E21AE5C14D2418 /* Box.swift in Sources */ = {isa = PBXBuildFile; fileRef = 721B12CB3201E0F78C427155AEB6FCE4 /* Box.swift */; }; + ECA14F5C0D6C5302019D8476F05ED7ED /* _AutoLaunch.m in Sources */ = {isa = PBXBuildFile; fileRef = 1FE523C27B8C9BFD06423E88B0B27AEE /* _AutoLaunch.m */; }; + ED204E934EBEFF45E85A7F3FE98EF4C3 /* EKAttributes+Shadow.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7CA6212AC06D82944E9479E385A4D6E5 /* EKAttributes+Shadow.swift */; }; + ED673A80425558C9E43F8207BEE84397 /* EKNotificationMessage.swift in Sources */ = {isa = PBXBuildFile; fileRef = A364B070CA12AB27E997A84F876FDD3F /* EKNotificationMessage.swift */; }; + EDC07A560DC83DFBAB242C46B1D41619 /* MJRefreshConfig.h in Headers */ = {isa = PBXBuildFile; fileRef = BD4043357555F922F0D2C87C0316097E /* MJRefreshConfig.h */; settings = {ATTRIBUTES = (Project, ); }; }; + EDC227E161F6BE101EBA4C41D13B8EB0 /* EKColor.swift in Sources */ = {isa = PBXBuildFile; fileRef = F3B13AA765A64D04BE8EA533B14AEAE8 /* EKColor.swift */; }; + EDC4880EDA487FDCBAE1993231BA06AD /* SDAnimatedImageRep.m in Sources */ = {isa = PBXBuildFile; fileRef = 458949149FB07B2512373590E32812DB /* SDAnimatedImageRep.m */; }; + EDFE1A36B30F9DC14C1BACBE4BFCACFC /* CrashLogger.swift in Sources */ = {isa = PBXBuildFile; fileRef = C2F72650742E2BCFFB3A938D1D5BC6CE /* CrashLogger.swift */; }; + EE02E971AF4EAEBCAA7E6207344D82AD /* SDWebImageDownloaderConfig.m in Sources */ = {isa = PBXBuildFile; fileRef = 0506FBB9B4ED2B8D4D6E739425E7A7D8 /* SDWebImageDownloaderConfig.m */; }; + EE890DA87BEFE4EDC65B28ED8F9B89C6 /* ESTabBarController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8F0982B7F4C806224986C1E742441C80 /* ESTabBarController.swift */; }; + EFC1EF2234D1A4829891828E5C61FE17 /* EKTextField.swift in Sources */ = {isa = PBXBuildFile; fileRef = 96937A12F11D2DE9039DF1AB2F8F3B30 /* EKTextField.swift */; }; + EFCF8192D505380E42101B31F273EB4E /* UIScrollView+MJRefresh.h in Headers */ = {isa = PBXBuildFile; fileRef = 88E4747FA025D36739E4958BCC3CA547 /* UIScrollView+MJRefresh.h */; settings = {ATTRIBUTES = (Project, ); }; }; + EFD47B79FEB4CF7B7DE42C6F1E8BEAE0 /* DDTimerKit_Private-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 17582BF2A0605219A287734B1B168036 /* DDTimerKit_Private-umbrella.h */; settings = {ATTRIBUTES = (Project, ); }; }; + EFEDA5FC77AEC912565C8893C74347CF /* DelegateProxyType.swift in Sources */ = {isa = PBXBuildFile; fileRef = 90C04466BB725EF3775642FAB7893E44 /* DelegateProxyType.swift */; }; + F025B0C7413F408112D1BFB2C2878024 /* SDImageTransformer.h in Headers */ = {isa = PBXBuildFile; fileRef = FB7D6CBFDDCC1AE7F5A04594A649D758 /* SDImageTransformer.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F03021F77FAC203AB9A2634888A1A8B3 /* EKProcessingNoteMessageView.swift in Sources */ = {isa = PBXBuildFile; fileRef = BE8553FA78EF2AE4C789CDBE066E4101 /* EKProcessingNoteMessageView.swift */; }; + F09DF28CC5B02C385A5E23E589400C55 /* ZFPlayerMediaControl.h in Headers */ = {isa = PBXBuildFile; fileRef = EDC31A31277E9C411C5E76B0BE877FEB /* ZFPlayerMediaControl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F0AE59C74E0BBF11E97A8E9434BF9A93 /* URLEncodedFormEncoder.swift in Sources */ = {isa = PBXBuildFile; fileRef = 05E70D60932C308CF8BDDEDB8E336B1E /* URLEncodedFormEncoder.swift */; }; + F0B0C25D19CF8777D5225877F3FAA40E /* ImageContext.swift in Sources */ = {isa = PBXBuildFile; fileRef = 11F953B24AA6DB8375291160CD7850E6 /* ImageContext.swift */; }; + F19903143C7FE362917C822235FB7421 /* SkipWhile.swift in Sources */ = {isa = PBXBuildFile; fileRef = 44D9D735940C8A938908E65F0C060C12 /* SkipWhile.swift */; }; + F19D8E3745D102F0CB24E84EBD98E2BD /* NSMutableAttributedString+DDCategory.h in Headers */ = {isa = PBXBuildFile; fileRef = 78F7AED15BA044E40B17F02634200361 /* NSMutableAttributedString+DDCategory.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F1EB81943B36ABB8EB3322C5EA5013AD /* ConstraintMakerRelatable.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0DDA1B78B6D0CD87B04D331FD03B1D26 /* ConstraintMakerRelatable.swift */; }; + F2FA6175CF6B9B67C924457E4A4FA94D /* CocoaDebug-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = D247E12CCF0B88203F756E2CB9CB6234 /* CocoaDebug-umbrella.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F2FA9CA7987FBB47C2548B5BDC66106A /* ZFPortraitViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = C15A359371F6E20EDCF9830301160FCD /* ZFPortraitViewController.m */; }; + F3212860E47356E9AF927E472E09261A /* NSTextStorage+Rx.swift in Sources */ = {isa = PBXBuildFile; fileRef = E05E6EC0B4C505D1A7E9D5F69B8CA38A /* NSTextStorage+Rx.swift */; }; + F33AC6FF109AB468B64627C05536D1D8 /* AnyObserver.swift in Sources */ = {isa = PBXBuildFile; fileRef = E52C4912CFCE0D108D7B4C667778EDC2 /* AnyObserver.swift */; }; + F34226A53917F43F1A466963534734F5 /* ZFPlayerGestureControl.m in Sources */ = {isa = PBXBuildFile; fileRef = 3BC0C1E2F35892F5844DA396235A27AB /* ZFPlayerGestureControl.m */; }; + F3A976F044D82F130BAE77C071CEDA5E /* JXCategoryTitleImageView.m in Sources */ = {isa = PBXBuildFile; fileRef = 2339DEAEE8B0E5D7735D157456B33E7A /* JXCategoryTitleImageView.m */; }; + F3B2BEF8FF03AB941765D79452352941 /* UIView+QuickLayout.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8229A71F259109674A19EB6E36885E17 /* UIView+QuickLayout.swift */; }; + F3C5F116AAF21D4358A6F711BE37F54A /* Alamofire-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 8B291452A4DEA9322F381FDFB9720F89 /* Alamofire-umbrella.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F3F78BDF1D6A539619E1664008AF7FAB /* DDNavigationControllerDelegateReceiver.h in Headers */ = {isa = PBXBuildFile; fileRef = 6CA3A9246785CC19F0623EACF6110381 /* DDNavigationControllerDelegateReceiver.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F4010727E0089FB8459E3B88B44CCF05 /* UIView+Utils.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4E5EC15F9948A416535FDAEB29029E98 /* UIView+Utils.swift */; }; + F45EDF2799E9766F25D0F91004913C51 /* ZFReachabilityManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 90BD68E9103D0721BEC576E29508098A /* ZFReachabilityManager.m */; }; + F4A1A9CA7084A385722737C0E4F1500D /* SDImageAPNGCoder.h in Headers */ = {isa = PBXBuildFile; fileRef = 5D49C06BC03E7227DB11A90AD61FBC56 /* SDImageAPNGCoder.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F5579E515166EFA597E30B6EA2966257 /* UIStepper+Rx.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5CB9AEE8BAA9A00767CBBE562874959F /* UIStepper+Rx.swift */; }; + F5AEDE484501A7E759CB5B5822FE45DD /* ConstraintView+Extensions.swift in Sources */ = {isa = PBXBuildFile; fileRef = AA3ADA869CFB249CDE525652B8D8338D /* ConstraintView+Extensions.swift */; }; + F6200950262C69D82B2E1F54D09E81CB /* ZLClipImageDismissAnimatedTransition.swift in Sources */ = {isa = PBXBuildFile; fileRef = D6C3A417AFBEF6CC7DD4BD115B73ED05 /* ZLClipImageDismissAnimatedTransition.swift */; }; + F655A8F737F8DA58CD1238B94417CB1C /* _OCLogModel.m in Sources */ = {isa = PBXBuildFile; fileRef = D6D76D8308027749FBA599D6DD35FF64 /* _OCLogModel.m */; }; + F661FDF2D701C76B553BBFE1982DC689 /* UIView+ZLPhotoBrowser.swift in Sources */ = {isa = PBXBuildFile; fileRef = E834AFE539764C6862EE8A75974B5248 /* UIView+ZLPhotoBrowser.swift */; }; + F669A1209E80431CF57E528F4E8B0FEF /* JXCategoryTitleVerticalZoomCellModel.m in Sources */ = {isa = PBXBuildFile; fileRef = AB814AA3CD8638D50279B47769EAADE0 /* JXCategoryTitleVerticalZoomCellModel.m */; }; + F679DDFB22B0446466AC8B46B5DDA5EF /* IQKeyboardManager+OrientationNotification.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5D7B90858AD245B162AC8A3B02E9ACEC /* IQKeyboardManager+OrientationNotification.swift */; }; + F67D89E3296911DC39710C076499C165 /* _NetworkHelper.h in Headers */ = {isa = PBXBuildFile; fileRef = DBCD7891F2C9FBF26C01A4B606D572EA /* _NetworkHelper.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F68DA17CB0DF71E6DF5B3A3E382DAA7C /* SerialDispatchQueueScheduler.swift in Sources */ = {isa = PBXBuildFile; fileRef = CFCC88300DF5490EC6A8FC56907D7CBD /* SerialDispatchQueueScheduler.swift */; }; + F6F5F76688A0CA18956590C446B8B620 /* _fishhook.c in Sources */ = {isa = PBXBuildFile; fileRef = 73BC5FEAB4653A7F1F7AA023303CD131 /* _fishhook.c */; }; + F74D1425287A1A781A0A9DD58A1DD02E /* JXCategoryIndicatorView.h in Headers */ = {isa = PBXBuildFile; fileRef = 8E885B6D95F845479C2EB002C758BDFC /* JXCategoryIndicatorView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F75DFD6601FD194AFB8DF95EE8936F73 /* JXCategoryNumberCellModel.m in Sources */ = {isa = PBXBuildFile; fileRef = 91C0696E202BFA46891BAE2F7E983144 /* JXCategoryNumberCellModel.m */; }; + F78123F6D3E099475747B424A7DD9B2B /* SDWebImageDownloaderRequestModifier.h in Headers */ = {isa = PBXBuildFile; fileRef = C056B6A22FB54A753B8D71AA13E54ED7 /* SDWebImageDownloaderRequestModifier.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F787E70DF5F00228E5AF451751EA323C /* UIScrollView+MJExtension.m in Sources */ = {isa = PBXBuildFile; fileRef = 82F8BA5F666CBA5202D7D7023F9F88AB /* UIScrollView+MJExtension.m */; }; + F7B1AB7027FF17E4E594895B07CC4B3C /* MJRefreshStateHeader.m in Sources */ = {isa = PBXBuildFile; fileRef = 015B0FB8AE710CD6F5726003294AFBD6 /* MJRefreshStateHeader.m */; }; + F7BBD57301FEC4504E972FA4733A03DF /* JXCategoryListContainerRTLCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 51C696D112632B46C171CDC692DB618B /* JXCategoryListContainerRTLCell.m */; }; + F8A41F27D6685D59A2680429BCE2CD2A /* ZFSmallFloatControlView.m in Sources */ = {isa = PBXBuildFile; fileRef = ED6916102BF992D0D04FE7DC99C7FB32 /* ZFSmallFloatControlView.m */; }; + F8FCFD04A95C31EF1EE2E3C130485BDD /* InvocableScheduledItem.swift in Sources */ = {isa = PBXBuildFile; fileRef = E20982A967158AEDA75F6A82C270C06B /* InvocableScheduledItem.swift */; }; + F9121FC6FB235A844904FF1D0E5CE74D /* LogCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = 89CAB46D7724F7F1AC3DC4EB8C0993B2 /* LogCell.swift */; }; + F93C6980F441D1B60783F1253D1F5E6E /* MJRefreshFooter.m in Sources */ = {isa = PBXBuildFile; fileRef = 9E1FD9936167392B872FB4E7F7400EEC /* MJRefreshFooter.m */; }; + F958F034C7BBD246E8368D461BE44725 /* DDMASearch.h in Headers */ = {isa = PBXBuildFile; fileRef = DD2B04A321BF9A4442312268B3ECB285 /* DDMASearch.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F9839A9357C23D9EA498E09493D11187 /* DDBaseViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 5CA6E7D1E697CAF51E4973FEBB1C3879 /* DDBaseViewController.m */; }; + F98469DDD34C573BBC8D4018BEB7591A /* DDLabel.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5028808FDA816F0FAC182767E78C100F /* DDLabel.swift */; }; + FA2715B8CC15B4FB5B23169F95422C8C /* Infallible+Create.swift in Sources */ = {isa = PBXBuildFile; fileRef = 531184938876CA9716B95BFA557D283E /* Infallible+Create.swift */; }; + FA32D099B9AC21168BE28F1C197FBD77 /* MKAnnotationView+WebCache.m in Sources */ = {isa = PBXBuildFile; fileRef = 00DB8DC7C4F4C5A02ACA6A67E1DC7981 /* MKAnnotationView+WebCache.m */; }; + FA45F0BCA28AE047F210A67A086730E6 /* AsSingle.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9F871E501BDBD3527CB3EFEDEE7E9C5F /* AsSingle.swift */; }; + FA4BA7EEFE3FA4C84F1325272FBDBD0D /* ZFPresentTransition.h in Headers */ = {isa = PBXBuildFile; fileRef = E71C7F56CFB479F6EE1332EDB870435F /* ZFPresentTransition.h */; settings = {ATTRIBUTES = (Project, ); }; }; + FA917E0C80C68BD2D8C7CDF44A418793 /* SDWebImageDownloaderResponseModifier.m in Sources */ = {isa = PBXBuildFile; fileRef = 5BC94B4F712AF96048E757201C4A15DA /* SDWebImageDownloaderResponseModifier.m */; }; + FAC4CA638A146A699E9ED8BD575DEC52 /* SDImageIOCoder.m in Sources */ = {isa = PBXBuildFile; fileRef = 55047F1BA41243847270965804ECDC45 /* SDImageIOCoder.m */; }; + FB06F85B476E1E4B3D19EA4799966DD6 /* ConstraintItem.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1C98A5BBADE3ADC6E0101D8C26B41358 /* ConstraintItem.swift */; }; + FB2DFD5D894CC65AB92548FC5EA7614C /* _NSLogHook.m in Sources */ = {isa = PBXBuildFile; fileRef = 044FE985399F1BA9631A1C6C4165BFB0 /* _NSLogHook.m */; }; + FB57B8D3D20886701150097BE03882B1 /* RxScrollViewDelegateProxy.swift in Sources */ = {isa = PBXBuildFile; fileRef = F76AB3AB3B75CEF888DD5E53F25604A5 /* RxScrollViewDelegateProxy.swift */; }; + FB83661EAB43FD81CF2C2C578416D1FB /* ZFNetworkSpeedMonitor.h in Headers */ = {isa = PBXBuildFile; fileRef = EDCE541EE66134DC578CD78A2B632931 /* ZFNetworkSpeedMonitor.h */; settings = {ATTRIBUTES = (Project, ); }; }; + FC0542F9C9CBB5D3177763E8D63354BE /* Producer.swift in Sources */ = {isa = PBXBuildFile; fileRef = 30074B228CDED11286106CC3F20A738D /* Producer.swift */; }; + FC0972D0DC0D8BE43085F4B759602172 /* DistinctUntilChanged.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38E49CD14ED9A6FCC10384075B013697 /* DistinctUntilChanged.swift */; }; + FC14875E16CD28A3FDB402D6BC00D296 /* VirtualTimeScheduler.swift in Sources */ = {isa = PBXBuildFile; fileRef = E42670F2DF5141855AFEB36B7107CC53 /* VirtualTimeScheduler.swift */; }; + FD53237EFACA76D3436DB591996E6CD6 /* ZFPlayerNotification.m in Sources */ = {isa = PBXBuildFile; fileRef = F2D21744513246EAB988E2CAE029C809 /* ZFPlayerNotification.m */; }; + FD681CEF0152D11971E075A5BCB6D1BB /* WithLatestFrom.swift in Sources */ = {isa = PBXBuildFile; fileRef = 46C2634E5526B6615070911397967020 /* WithLatestFrom.swift */; }; + FDDBB624BAED990AC9956BF191000419 /* JXCategoryFactory.m in Sources */ = {isa = PBXBuildFile; fileRef = FB6CFF13C948BBCF31144201ECB76084 /* JXCategoryFactory.m */; }; + FE090912DADD46635605657C61DE2E6B /* UIImageView+DDWebCache.m in Sources */ = {isa = PBXBuildFile; fileRef = 827C7B57E3C9E2C3239FBE00C66E5B92 /* UIImageView+DDWebCache.m */; }; + FE5A36C9F47EDE5AFC75209A02C40305 /* JXCategoryTitleImageCell.h in Headers */ = {isa = PBXBuildFile; fileRef = B42C546CD3B3F54FEB1ADE47C74BAAC7 /* JXCategoryTitleImageCell.h */; settings = {ATTRIBUTES = (Project, ); }; }; + FE8C95D7A9D7F731F7A8FDFC0700B8FF /* SDImageCodersManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 39506C8FFB77463B162301DF01576ABD /* SDImageCodersManager.m */; }; + FEC9F49A0A5335075665984A37CAB541 /* _OCLogStoreManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 0A5D0C6FEDD9950013E14A77FFE66FBD /* _OCLogStoreManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + FEEB209E75DDB77013145AA5532C3AD6 /* MBProgressHUD.h in Headers */ = {isa = PBXBuildFile; fileRef = D9E08A8F6D5F1B59921743A703B65C31 /* MBProgressHUD.h */; settings = {ATTRIBUTES = (Project, ); }; }; + FF0B3517A4AB7D394BBA7BB726653979 /* Do.swift in Sources */ = {isa = PBXBuildFile; fileRef = 064600D7ACADFFBB57498295C3DD27F2 /* Do.swift */; }; + FF2EE64024F6462C52A157322B4550EA /* EKAttributes+PositionConstraints.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8C8F25832948A1C119B1DBAB7C05BCF1 /* EKAttributes+PositionConstraints.swift */; }; + FF322AF630095C40D50D480837A90003 /* Multicast.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9BA272C3D59BCADB8C11C60B4383A94E /* Multicast.swift */; }; + FF980E5F28C2F212129B2C8CC42F2F6F /* KFOptionsSetter.swift in Sources */ = {isa = PBXBuildFile; fileRef = 21EAA4200B1BC577C63DDD2A0956529C /* KFOptionsSetter.swift */; }; + FFB5B36D7F4564FFA3D50D29A2E0B46B /* _HttpDatasource.h in Headers */ = {isa = PBXBuildFile; fileRef = DA4FCB301911D04CC242320EAC14CF8B /* _HttpDatasource.h */; settings = {ATTRIBUTES = (Project, ); }; }; /* End PBXBuildFile section */ /* Begin PBXContainerItemProxy section */ - 0039E20BA2B6202A6AD9D7B087C0AF96 /* PBXContainerItemProxy */ = { + 03A21B59A800FB3BDC8BD2C0BC48B296 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; remoteGlobalIDString = 9B182CB4E1716E9070813D3C59736001; remoteInfo = "AMapFoundation-NO-IDFA"; }; - 0090A5CAF1E705CBE0B0AD04C1BBB5C2 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = B41F58F2856AB275B4CF75F359937653; - remoteInfo = DDMAMapKit_Private; - }; - 09ECF332AFD74FD6DED93EBB17ABA187 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 0A2E6BA6D5360D619D7CABED3467AA69; - remoteInfo = CocoaDebug; - }; - 0E57CC8EFA6CB89B84771143E68BDE96 /* PBXContainerItemProxy */ = { + 03E7A53182E7C19CFDA6AAB8972402D2 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; remoteGlobalIDString = EAAA1AD3A8A1B59AB91319EE40752C6D; remoteInfo = Alamofire; }; - 1645736974752AAB7538DB71D983BCFB /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = B68A4B40517CF9B14050FA0A4A618B04; - remoteInfo = DDNetworkingOfAlamofireKit_Private; - }; - 1EDD6E61B00C82F1591F65D72809C083 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 9B182CB4E1716E9070813D3C59736001; - remoteInfo = "AMapFoundation-NO-IDFA"; - }; - 23AF73A1D60B3FEAE0C4AE2D804E96B3 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 79638F3BF2709E118064EF8B13DE3317; - remoteInfo = DDTimerKit_Private; - }; - 27520127E6A33710C7A0DBFE77C6A0B3 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 7B8412F08BD27981DB53CE2C25C19F0A; - remoteInfo = DDCategoryKit_Private; - }; - 292D68C3D432037B6E74FDE31738A18B /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 5FB6AB0A09E7A2F2BE11AD6BAEFD9AED; - remoteInfo = JPush; - }; - 2CB773043A62ADAF1053E5D7D6BC372F /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 26BA8950EBF05410254D54F7EF76D5CE; - remoteInfo = DDLogKit_Private; - }; - 2F251F27E379F5F3E4077B5733A48CBF /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 087B100C5691B6A3C04A45198E6C32F6; - remoteInfo = DDBasicControlsKit_Private; - }; - 340AE79B0739F94F98D0E12ED20FDF03 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 035D1842293C4AA08F442FFD899F7F28; - remoteInfo = DDControlsKit_Private; - }; - 35D81D47CB27BD2B96A003F086B53941 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = EA9EA43B3B503823EE36C60D9C8A865F; - remoteInfo = RxSwift; - }; - 3AFE48C5C273114E626924F5CBFFB34D /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 8BEAFAA726C1965864B79B4B441AA513; - remoteInfo = JXCategoryView; - }; - 426E1207B845A0668E4997A7CA5861DC /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = D504B99928659EA67A1C3A9E981EB8FF; - remoteInfo = JCore; - }; - 46FE04E413CE27AA997AF950C4BC87FF /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = D504B99928659EA67A1C3A9E981EB8FF; - remoteInfo = JCore; - }; - 4BC9E9EB40FAA22E71274CA8B9DB9197 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 7B8412F08BD27981DB53CE2C25C19F0A; - remoteInfo = DDCategoryKit_Private; - }; - 4E0A9E419D514579CC53868101880D34 /* PBXContainerItemProxy */ = { + 0837C54715C18800F793A1CFCA8469BE /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; remoteGlobalIDString = 4BD4E22D3419D68A85BDD6119CB37C6C; remoteInfo = "AMapLocation-NO-IDFA"; }; - 4F8AA5930291E51B65EB12CCD289578D /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 9B182CB4E1716E9070813D3C59736001; - remoteInfo = "AMapFoundation-NO-IDFA"; - }; - 51014200B32FDE3AB18214F17F17A154 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 19622742EBA51E823D6DAE3F8CDBFAD4; - remoteInfo = SnapKit; - }; - 544D5A1DE764F95F9866CA7D82578767 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 26BA8950EBF05410254D54F7EF76D5CE; - remoteInfo = DDLogKit_Private; - }; - 54FBC3098D379DD9B5ADCE1F9348BABE /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 387C7767E705FE68450F97CBA4348CC0; - remoteInfo = DDProgressHUDKit_Private; - }; - 579898DE903192FDCD02CFD9409CFC03 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 2160840D78FCB958CABE1B88300E38C5; - remoteInfo = "AMapTrack-NO-IDFA"; - }; - 5E860E228EAC4E319E4B69AD45FAB98E /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = E94C558142469C11984D67CA883BAB1F; - remoteInfo = "AMapNavi-NO-IDFA"; - }; - 617ED1400162E1C54BEE92D02DAB4E54 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 4622BFEF3DC16E8BD15EEFC30D4D0084; - remoteInfo = RxRelay; - }; - 61EEE722143EC3B9089F8E67B19235D5 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 6868056D761E163D10FDAF8CF1C4D9B8; - remoteInfo = MJRefresh; - }; - 632994BEC27685BC111AD3A83F1FBCA0 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 2864923095274ACF5E5F99312F360AEB; - remoteInfo = DDZFPlayerKit_Private; - }; - 65862DC550FEB7D5B7F96F3237AB20BE /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 4BD4E22D3419D68A85BDD6119CB37C6C; - remoteInfo = "AMapLocation-NO-IDFA"; - }; - 66C89036FEF3FED95E64BCADA1A932D9 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = EA9EA43B3B503823EE36C60D9C8A865F; - remoteInfo = RxSwift; - }; - 68138E215E25AEAA83A5A4C8E274CEEE /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 26BA8950EBF05410254D54F7EF76D5CE; - remoteInfo = DDLogKit_Private; - }; - 6D200E4DBC9705E1258EEA7A018709F7 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 26BA8950EBF05410254D54F7EF76D5CE; - remoteInfo = DDLogKit_Private; - }; - 70C778CF207BB6292AAF6C11024AD6D9 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 2160840D78FCB958CABE1B88300E38C5; - remoteInfo = "AMapTrack-NO-IDFA"; - }; - 7A85156CC935C24A22D5180570BF8152 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = EAAA1AD3A8A1B59AB91319EE40752C6D; - remoteInfo = Alamofire; - }; - 7AB3D08D1FC780CFB3627860B5D5442F /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = EA9EA43B3B503823EE36C60D9C8A865F; - remoteInfo = RxSwift; - }; - 7ADBA122B7DBF19BB68D612AC241EA84 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = D504B99928659EA67A1C3A9E981EB8FF; - remoteInfo = JCore; - }; - 7B8D07D483C1ED301B9F5C3E4E5111D8 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 7AD0C6DCDC9CEC8A3C7C10C7FEE07BE6; - remoteInfo = RxCocoa; - }; - 85D3F860D13849157C722F980FD1AD6A /* PBXContainerItemProxy */ = { + 0E1F6F402B2D957E8848046B7D0CAAD1 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; remoteGlobalIDString = 6056870867CC4728BCEF2E5EBDD1DCB3; remoteInfo = "DDMAMapKit_Private-DDMAMapKit_Private"; }; - 8C7A885C66E7421BBA28D29F11281D88 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 53463808DD395EFE0C9E0CDCB79A6C0A; - remoteInfo = DDAutoUIKit_Private; - }; - 8EE452B970EAC0683F2DD9DBBCC3FD21 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = D505645C3F99EB1E8B6529D64D2C3E1C; - remoteInfo = BRPickerView; - }; - 9AA5BECC6225536A00A53A0D049957B6 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 5FB6AB0A09E7A2F2BE11AD6BAEFD9AED; - remoteInfo = JPush; - }; - 9D9A429AA00E922890438D835D52561D /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = BFED7668E8D0960F3873C9C1329EB63F; - remoteInfo = DDColorKit_Private; - }; - 9E4B15A2AECD9830996219681F05C934 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 087B100C5691B6A3C04A45198E6C32F6; - remoteInfo = DDBasicControlsKit_Private; - }; - A122AECE7D7332E04B5C2A9B9EF00E96 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 3F83465BA81F6E581B3A431642D2992E; - remoteInfo = "ESTabBarController-swift"; - }; - A3E175FB38EB2F762B840251A8AE457D /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = E8022D22FAA6690B5E1C379C1BCE1491; - remoteInfo = Kingfisher; - }; - A46D410CEF2D7C9D87C4B2D3E3BEAC51 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = CFF5B7CDF57A32781D2AD4CC98E95B29; - remoteInfo = DDToastKit_Private; - }; - A91CB74A4712C8963FB0ECDF591AB4B6 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 5C23965029860967865B3429B5E29092; - remoteInfo = "DDBasicControlsKit_Private-DDBaseViewController"; - }; - AA37BCB1591FF27A5EBD9608E7EEDD22 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = E8022D22FAA6690B5E1C379C1BCE1491; - remoteInfo = Kingfisher; - }; - ABDBC592676AEDBD88681F830FB84D69 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 7B8412F08BD27981DB53CE2C25C19F0A; - remoteInfo = DDCategoryKit_Private; - }; - B3FF2EA5204AC13B971A64D3DFDE6039 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 8F3F4D8426620E7E4A06FE4BCDB96FDE; - remoteInfo = DDFontKit_Private; - }; - B6E21C4436A30DBDDB529B022D6C2A4E /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = B490E7485944099E16C9CBD79119D1D4; - remoteInfo = IQKeyboardManagerSwift; - }; - B8DFBEE67C9D5F9DA96315C7FFB8C7B6 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 9B182CB4E1716E9070813D3C59736001; - remoteInfo = "AMapFoundation-NO-IDFA"; - }; - C0E92840C578A64BAA64E1D9158321C2 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 9B182CB4E1716E9070813D3C59736001; - remoteInfo = "AMapFoundation-NO-IDFA"; - }; - C6F3AF84089D35599FA883B4C4B9E24E /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 4622BFEF3DC16E8BD15EEFC30D4D0084; - remoteInfo = RxRelay; - }; - CC8F0BCF2AF9769C1B563603A29C289B /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = FEA6FF0588A91CCD972EDCD698B85647; - remoteInfo = SwiftEntryKit; - }; - CFEF4BD221A8EF9CA31B2C227F11598D /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 4BD4E22D3419D68A85BDD6119CB37C6C; - remoteInfo = "AMapLocation-NO-IDFA"; - }; - D2E54B74C515254D202791AF89BC3AB2 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 2FAF03761A44702490259F857A848B42; - remoteInfo = ZLPhotoBrowser; - }; - D7F37E34835F8C63B772D52C96C48A83 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 477926D6FB1DCEFB352517A19636405D; - remoteInfo = DDWebImageKit_Private; - }; - DD5B61749CF4BD2800B67BD81EDF1B1D /* PBXContainerItemProxy */ = { + 0FA9B62BD7EAE97FF03055F6A878D7E7 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; remoteGlobalIDString = 4F1379598302C9160590B3650C10E1A5; remoteInfo = "AMapSearch-NO-IDFA"; }; - E3D278A27F028FF94205CDFA41D289AB /* PBXContainerItemProxy */ = { + 11179C3776B7AB26F4568C0F95CFB6CC /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 9B182CB4E1716E9070813D3C59736001; + remoteInfo = "AMapFoundation-NO-IDFA"; + }; + 1565EC9D0AD439A784F9CBDE29087A07 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = EAAA1AD3A8A1B59AB91319EE40752C6D; + remoteInfo = Alamofire; + }; + 1E0DB328CC6CCCDC6D56C2B2F865E695 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 7AD0C6DCDC9CEC8A3C7C10C7FEE07BE6; + remoteInfo = RxCocoa; + }; + 1F86044692EA84B8E353E7BA279110AF /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = E8022D22FAA6690B5E1C379C1BCE1491; + remoteInfo = Kingfisher; + }; + 22EBE1BE3D734C9297335F545B6C608E /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 7B8412F08BD27981DB53CE2C25C19F0A; + remoteInfo = DDCategoryKit_Private; + }; + 2552AFA5610E774F20BC023A279D0DA2 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; remoteGlobalIDString = EA9EA43B3B503823EE36C60D9C8A865F; remoteInfo = RxSwift; }; - E4E2B709774B1ADA1DDA4BB9F42899EE /* PBXContainerItemProxy */ = { + 27A8918ACD54A374B79DD0C8DA17C835 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 609276B985CD7549B9F1DEE4969208FF; - remoteInfo = JPushExtension; + remoteGlobalIDString = 3F83465BA81F6E581B3A431642D2992E; + remoteInfo = "ESTabBarController-swift"; }; - E5FBEFA5EF83DC3E94677866DD487E9C /* PBXContainerItemProxy */ = { + 2C7F926E45E44F4C925E8F2CDF1CBF0A /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 4622BFEF3DC16E8BD15EEFC30D4D0084; + remoteInfo = RxRelay; + }; + 2D6522A07C0827ECC292709E5743449C /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 26BA8950EBF05410254D54F7EF76D5CE; + remoteInfo = DDLogKit_Private; + }; + 332967EC52A0475A472421D99BB3BE55 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = B68A4B40517CF9B14050FA0A4A618B04; + remoteInfo = DDNetworkingOfAlamofireKit_Private; + }; + 3431032CB4A10DF43520DC390190801E /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; remoteGlobalIDString = 4F1379598302C9160590B3650C10E1A5; remoteInfo = "AMapSearch-NO-IDFA"; }; - F01ED5CD3AA5CE35577798AE008676B4 /* PBXContainerItemProxy */ = { + 3FCC2A3CBCACDAF421E62BED3FB1A695 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = B490E7485944099E16C9CBD79119D1D4; + remoteInfo = IQKeyboardManagerSwift; + }; + 3FDBEF7FA116B347DB3D3DF266BDB560 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 53463808DD395EFE0C9E0CDCB79A6C0A; + remoteInfo = DDAutoUIKit_Private; + }; + 420A50DF68F1E1A2D63D9B7E10A7B71F /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 79638F3BF2709E118064EF8B13DE3317; + remoteInfo = DDTimerKit_Private; + }; + 4A823DF3BDEF65E0A55A12B9965823C4 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = FEA6FF0588A91CCD972EDCD698B85647; + remoteInfo = SwiftEntryKit; + }; + 4D227D4201BC3FB3A36F13ED859FF788 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 2FAF03761A44702490259F857A848B42; + remoteInfo = ZLPhotoBrowser; + }; + 5B42E80CDF16E1A5BBBAF3B83E9C99D7 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 4BD4E22D3419D68A85BDD6119CB37C6C; + remoteInfo = "AMapLocation-NO-IDFA"; + }; + 5FA23FB7E2779DBD0CC1B4D7EF162DBA /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 26BA8950EBF05410254D54F7EF76D5CE; + remoteInfo = DDLogKit_Private; + }; + 6785F283383F41F09DA1D57CDB7595D2 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = E8022D22FAA6690B5E1C379C1BCE1491; + remoteInfo = Kingfisher; + }; + 6ADDD21D486E005CD811901B2B59AA13 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = D504B99928659EA67A1C3A9E981EB8FF; + remoteInfo = JCore; + }; + 6CF1AF0D5D1BA7CEB963D80CF28BC39B /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = CFF5B7CDF57A32781D2AD4CC98E95B29; + remoteInfo = DDToastKit_Private; + }; + 6D95BC6BF8886BB946CEC3FB45F1D204 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 609276B985CD7549B9F1DEE4969208FF; + remoteInfo = JPushExtension; + }; + 6DD0562415A77EF51A6822E507CA91FC /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 26BA8950EBF05410254D54F7EF76D5CE; + remoteInfo = DDLogKit_Private; + }; + 71B3CE179E99C0187C84322E7F10D1CE /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; remoteGlobalIDString = E94C558142469C11984D67CA883BAB1F; remoteInfo = "AMapNavi-NO-IDFA"; }; - F0A50DF1560830FBDA429270744D9C7C /* PBXContainerItemProxy */ = { + 73F2272D8EEA442AF4A376BAB73083BA /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 7B8412F08BD27981DB53CE2C25C19F0A; - remoteInfo = DDCategoryKit_Private; + remoteGlobalIDString = 6868056D761E163D10FDAF8CF1C4D9B8; + remoteInfo = MJRefresh; }; - FF67CEBE1F7747BB41AAACB566A136F1 /* PBXContainerItemProxy */ = { + 77D9B0C385A96B3C01F03047D756E452 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = EA9EA43B3B503823EE36C60D9C8A865F; + remoteInfo = RxSwift; + }; + 7AF9D4334B2A28D9CCB57048CC275E7B /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = EA9EA43B3B503823EE36C60D9C8A865F; + remoteInfo = RxSwift; + }; + 7CDD5FF8B3DBE68B6AE878378FDD9665 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 9B182CB4E1716E9070813D3C59736001; + remoteInfo = "AMapFoundation-NO-IDFA"; + }; + 8AE6310D2FF2661F0249136C7C742F6F /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 087B100C5691B6A3C04A45198E6C32F6; + remoteInfo = DDBasicControlsKit_Private; + }; + 8BE7B93DED2069B1ECC2BB9DC072B958 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = EA9EA43B3B503823EE36C60D9C8A865F; + remoteInfo = RxSwift; + }; + 8C8571F1DFAD5CE85EF071F688399DA1 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 2160840D78FCB958CABE1B88300E38C5; + remoteInfo = "AMapTrack-NO-IDFA"; + }; + 9DA058F410F1FC421BDD816F39C77D64 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 26BA8950EBF05410254D54F7EF76D5CE; + remoteInfo = DDLogKit_Private; + }; + 9E0B76655BB5A1475D8F2A23902DC20B /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; remoteGlobalIDString = 19622742EBA51E823D6DAE3F8CDBFAD4; remoteInfo = SnapKit; }; + 9E9541497958EAE300B595C12863B8FD /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 8BEAFAA726C1965864B79B4B441AA513; + remoteInfo = JXCategoryView; + }; + A223EFAA26C70C47BA3C41941E1C21FF /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 4622BFEF3DC16E8BD15EEFC30D4D0084; + remoteInfo = RxRelay; + }; + A5EC19151F32DEA9997B6CEE12F15298 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = D505645C3F99EB1E8B6529D64D2C3E1C; + remoteInfo = BRPickerView; + }; + A73DC450372764D28389349C4668ADF7 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 2160840D78FCB958CABE1B88300E38C5; + remoteInfo = "AMapTrack-NO-IDFA"; + }; + A8A17B3166F06EF8396AC780973C648B /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = D504B99928659EA67A1C3A9E981EB8FF; + remoteInfo = JCore; + }; + B2857F9B28DD254D56005E9AE4233146 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = D504B99928659EA67A1C3A9E981EB8FF; + remoteInfo = JCore; + }; + B7636975CAB457E95AAABBCF14BB8E9D /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 387C7767E705FE68450F97CBA4348CC0; + remoteInfo = DDProgressHUDKit_Private; + }; + BAC6E8115CB5F679BEF5595816E70610 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = E94C558142469C11984D67CA883BAB1F; + remoteInfo = "AMapNavi-NO-IDFA"; + }; + BBA7A696DFE01A354D0A40E51D3F6484 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 8F3F4D8426620E7E4A06FE4BCDB96FDE; + remoteInfo = DDFontKit_Private; + }; + BFEABB2BB369A265D3D73EF384C65276 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 7B8412F08BD27981DB53CE2C25C19F0A; + remoteInfo = DDCategoryKit_Private; + }; + C1604209A413EE32B487D8D960D60DBC /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 0A2E6BA6D5360D619D7CABED3467AA69; + remoteInfo = CocoaDebug; + }; + C28A218B4520C354341E7CC8F41619A0 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 477926D6FB1DCEFB352517A19636405D; + remoteInfo = DDWebImageKit_Private; + }; + C93C59643D1B3E19B64686BC51BA169D /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = B41F58F2856AB275B4CF75F359937653; + remoteInfo = DDMAMapKit_Private; + }; + CB888540D77F173F7B6ED637CEC9730A /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = BFED7668E8D0960F3873C9C1329EB63F; + remoteInfo = DDColorKit_Private; + }; + CB9636091FC3CB38253E1D1A9EA441AE /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 2864923095274ACF5E5F99312F360AEB; + remoteInfo = DDZFPlayerKit_Private; + }; + DB980FB2245FC16A7B9E31911F9FD952 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 5FB6AB0A09E7A2F2BE11AD6BAEFD9AED; + remoteInfo = JPush; + }; + DFDF6F6F6D75D7BCDD3F6FE9B739ACDF /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = E72BE4C94039A951B47CCC942F6B4B8F; + remoteInfo = DDAudioPlayerKit_Private; + }; + E0587BD7430723D984EC7AC38814328F /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 5C23965029860967865B3429B5E29092; + remoteInfo = "DDBasicControlsKit_Private-DDBaseViewController"; + }; + E1403A09053EC26981D6D04B46547F2B /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 7B8412F08BD27981DB53CE2C25C19F0A; + remoteInfo = DDCategoryKit_Private; + }; + E1CA1CAC2B26ECA923711114608643ED /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 9B182CB4E1716E9070813D3C59736001; + remoteInfo = "AMapFoundation-NO-IDFA"; + }; + E77FA69D4D688AC47C1CA26E75FFCEDE /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 9B182CB4E1716E9070813D3C59736001; + remoteInfo = "AMapFoundation-NO-IDFA"; + }; + ECC46590F3997FD572ABE783D10AE786 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 035D1842293C4AA08F442FFD899F7F28; + remoteInfo = DDControlsKit_Private; + }; + F4D058FEF7094692A68F0DCE6752C590 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 4BD4E22D3419D68A85BDD6119CB37C6C; + remoteInfo = "AMapLocation-NO-IDFA"; + }; + F8200FB4B6B893343DFBCA3684200E99 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 087B100C5691B6A3C04A45198E6C32F6; + remoteInfo = DDBasicControlsKit_Private; + }; + FADB2F285A8ADC0FA8D171D8888023A8 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 19622742EBA51E823D6DAE3F8CDBFAD4; + remoteInfo = SnapKit; + }; + FD5FE5987C226C6ADA0E73968CD3C1ED /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 7B8412F08BD27981DB53CE2C25C19F0A; + remoteInfo = DDCategoryKit_Private; + }; + FFEACE3204AF46BFBF41E70F1709E5AE /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 5FB6AB0A09E7A2F2BE11AD6BAEFD9AED; + remoteInfo = JPush; + }; /* End PBXContainerItemProxy section */ /* Begin PBXFileReference section */ - 001143BB9FF68431DED58D40B6A87AEE /* _icon_file_type_logs@2x.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = "_icon_file_type_logs@2x.png"; path = "Sources/Resources/images/_icon_file_type_logs@2x.png"; sourceTree = ""; }; - 0026C3BBBA6C0FFA35BFEF3769767C65 /* HistoricalScheduler.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = HistoricalScheduler.swift; path = RxSwift/Schedulers/HistoricalScheduler.swift; sourceTree = ""; }; - 002AACEA12D9C290AEC10A87CEB9C423 /* AMapLocation-NO-IDFA.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "AMapLocation-NO-IDFA.debug.xcconfig"; sourceTree = ""; }; - 004752F62459A8375D31700FD5E95B5E /* icon_file_type_ogg@3x.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = "icon_file_type_ogg@3x.png"; path = "Sources/Resources/FileType/icon_file_type_ogg@3x.png"; sourceTree = ""; }; - 0092E8726D12DE5B10C858746DEE3A77 /* UIImageView+DDCategory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImageView+DDCategory.h"; path = "DDCategoryKit_Private/Classes/UIImageView+DDCategory/UIImageView+DDCategory.h"; sourceTree = ""; }; - 00BD01C2A4F3977033868918BB3BAE9B /* ZFPlayer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ZFPlayer.h; path = DDZFPlayerKit_Private/Classes/Core/ZFPlayer.h; sourceTree = ""; }; - 00E2F6131CDB061C5435298E58700B93 /* UIWindow+DDCategory.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIWindow+DDCategory.m"; path = "DDCategoryKit_Private/Classes/UIWindow+DDCategory/UIWindow+DDCategory.m"; sourceTree = ""; }; - 00F6B846ADC5D2330E73109D2B295E0C /* RedirectHandler.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RedirectHandler.swift; path = Source/RedirectHandler.swift; sourceTree = ""; }; - 010558D83A290AACCE24864BCDCB4C80 /* DDControlsKit_Private-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "DDControlsKit_Private-dummy.m"; sourceTree = ""; }; - 011269E75D722A125DEEAAF745CBC084 /* IJKMediaFramework.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = IJKMediaFramework.framework; path = DDZFPlayerKit_Private/Classes/ijkplayer/IJKMediaFramework.framework; sourceTree = ""; }; - 0147F560C54973B76E290E90FD83A2BA /* UITabBarController+DDCategory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UITabBarController+DDCategory.h"; path = "DDCategoryKit_Private/Classes/UITabBarController+DDCategory/UITabBarController+DDCategory.h"; sourceTree = ""; }; - 01720A58EB7A0D1A5F7F25ADA63A036D /* MAAnnotationView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MAAnnotationView.h; path = AMapNaviKit.framework/Headers/MAAnnotationView.h; sourceTree = ""; }; - 01AC778BFDF33454FDFF86780353A739 /* AMapNaviWalkManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AMapNaviWalkManager.h; path = AMapNaviKit.framework/Headers/AMapNaviWalkManager.h; sourceTree = ""; }; - 01B1539D7D01D6739AB8D29441F36F71 /* WKWebView+Rx.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "WKWebView+Rx.swift"; path = "RxCocoa/iOS/WKWebView+Rx.swift"; sourceTree = ""; }; - 01C1301B0AC7AFF3AF91CF59BC3F1E3E /* SDWebImageDownloaderRequestModifier.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageDownloaderRequestModifier.h; path = DDWebImageKit_Private/Classes/SDWebImage/Core/SDWebImageDownloaderRequestModifier.h; sourceTree = ""; }; - 01EAFC7A6EB916A27C0C3C0B6773F56F /* SDDiskCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDDiskCache.h; path = DDWebImageKit_Private/Classes/SDWebImage/Core/SDDiskCache.h; sourceTree = ""; }; - 0217605C777B6F19D665FF10AF9A5E2B /* RxTextStorageDelegateProxy.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RxTextStorageDelegateProxy.swift; path = RxCocoa/iOS/Proxies/RxTextStorageDelegateProxy.swift; sourceTree = ""; }; - 0251526F9D0BA56AD8E2E8878FC068C4 /* CGFloat+ZLPhotoBrowser.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "CGFloat+ZLPhotoBrowser.swift"; path = "Sources/Extensions/CGFloat+ZLPhotoBrowser.swift"; sourceTree = ""; }; - 026415A254F41C86857D5F57BF48AD07 /* SDImageFrame.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageFrame.h; path = DDWebImageKit_Private/Classes/SDWebImage/Core/SDImageFrame.h; sourceTree = ""; }; - 02A2ABC42E8F87F54EDDD0F45B7312D1 /* AMapNaviKit.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AMapNaviKit.h; path = AMapNaviKit.framework/Headers/AMapNaviKit.h; sourceTree = ""; }; - 02A680CED0D85E57AE44345FC9A4BAA0 /* icon_file_type_avi@2x.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = "icon_file_type_avi@2x.png"; path = "Sources/Resources/FileType/icon_file_type_avi@2x.png"; sourceTree = ""; }; - 0302AA41D8AB944426527FDF944C167B /* UITableView+DDCategory.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UITableView+DDCategory.m"; path = "DDCategoryKit_Private/Classes/UITableView+DDCategory/UITableView+DDCategory.m"; sourceTree = ""; }; - 030999A2341E67DC460BA998BB18449B /* AMapURLSearch.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AMapURLSearch.h; path = AMapFoundationKit.framework/Headers/AMapURLSearch.h; sourceTree = ""; }; - 03200ADA6EA50E4004D2BD7F4901E591 /* BRPickerView.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = BRPickerView.release.xcconfig; sourceTree = ""; }; - 0409B8BD3254A1CC2050622B967D1A90 /* _fishhook.c */ = {isa = PBXFileReference; includeInIndex = 1; name = _fishhook.c; path = Sources/fishhook/_fishhook.c; sourceTree = ""; }; - 0458E057CDD6655E6C6D7E226FB6F350 /* DDBasicControlsKit_Private.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = DDBasicControlsKit_Private.debug.xcconfig; sourceTree = ""; }; - 045CEEA0968247020E7E6AC973C704A3 /* SDImageTransformer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageTransformer.m; path = DDWebImageKit_Private/Classes/SDWebImage/Core/SDImageTransformer.m; sourceTree = ""; }; - 047164937C5950C9CC5E19F434FC33E0 /* EKRatingSymbolsContainerView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = EKRatingSymbolsContainerView.swift; path = Source/MessageViews/MessagesUtils/EKRatingSymbolsContainerView.swift; sourceTree = ""; }; - 04B19379843A8EE358C3916488B70E2E /* PrimitiveSequence+Zip+arity.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "PrimitiveSequence+Zip+arity.swift"; path = "RxSwift/Traits/PrimitiveSequence/PrimitiveSequence+Zip+arity.swift"; sourceTree = ""; }; - 04BF5EC02288663410F5581E5223C463 /* SDImageCoder.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageCoder.m; path = DDWebImageKit_Private/Classes/SDWebImage/Core/SDImageCoder.m; sourceTree = ""; }; - 04D44FA3F3AEA836BF5EC0E7B3ED1F95 /* SDInternalMacros.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDInternalMacros.m; path = DDWebImageKit_Private/Classes/SDWebImage/Private/SDInternalMacros.m; sourceTree = ""; }; - 04DAA79A8DFFB012FEF2FBC7DD2EF0BC /* OperationQueueScheduler.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = OperationQueueScheduler.swift; path = RxSwift/Schedulers/OperationQueueScheduler.swift; sourceTree = ""; }; - 0504C41C6802010760AC8D9EE4501728 /* icon_file_type_avi@3x.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = "icon_file_type_avi@3x.png"; path = "Sources/Resources/FileType/icon_file_type_avi@3x.png"; sourceTree = ""; }; - 055CB1F2A0BD625EAC2A3669079E7708 /* EKFormMessageView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = EKFormMessageView.swift; path = Source/MessageViews/EKFormMessageView.swift; sourceTree = ""; }; - 0598DD42B02694913D01926902916255 /* AMapTrackManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AMapTrackManager.h; path = AMapTrackKit.framework/Headers/AMapTrackManager.h; sourceTree = ""; }; - 059A80436EF27CC314F480E6F34C79F8 /* MAGltfOverlayRenderer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MAGltfOverlayRenderer.h; path = AMapNaviKit.framework/Headers/MAGltfOverlayRenderer.h; sourceTree = ""; }; - 05F0DDEFEDC101C1B551BFFCEFDB6EED /* JXCategoryIndicatorBallView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = JXCategoryIndicatorBallView.m; path = Sources/Indicator/IndicatorViews/JXCategoryIndicatorBallView.m; sourceTree = ""; }; - 0611F6F9EB6C49285A9EA0C3571F1931 /* EKAttributes+Shadow.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "EKAttributes+Shadow.swift"; path = "Source/Model/EntryAttributes/EKAttributes+Shadow.swift"; sourceTree = ""; }; - 061355735D157BA2289365D6706B25D3 /* SDAnimatedImageRep.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDAnimatedImageRep.h; path = DDWebImageKit_Private/Classes/SDWebImage/Core/SDAnimatedImageRep.h; sourceTree = ""; }; - 0647560CDEAF712BBF48C04E6A50395F /* KingfisherOptionsInfo.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = KingfisherOptionsInfo.swift; path = Sources/General/KingfisherOptionsInfo.swift; sourceTree = ""; }; - 068153425D3E1EFB1C71D090C0FF3239 /* SDWebImageCacheKeyFilter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageCacheKeyFilter.m; path = DDWebImageKit_Private/Classes/SDWebImage/Core/SDWebImageCacheKeyFilter.m; sourceTree = ""; }; + 0009705B5A08D0B05EFC5B5267D0584B /* MAParticleOverlay.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MAParticleOverlay.h; path = AMapNaviKit.framework/Headers/MAParticleOverlay.h; sourceTree = ""; }; + 001670712EC3F2A39EE721735EBB25FA /* BRAddressModel.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = BRAddressModel.h; path = BRPickerView/AddressPickerView/BRAddressModel.h; sourceTree = ""; }; + 0016C6F4A8BBEB08CDA6E3A5420B10EE /* _SandboxerHelper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = _SandboxerHelper.h; path = Sources/Sandbox/_SandboxerHelper.h; sourceTree = ""; }; + 001B5A145650D07E23B883A59B4EC6A2 /* RxSwift-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RxSwift-umbrella.h"; sourceTree = ""; }; + 0026F30CA39C6EE90EE3E9544F8AB7E7 /* MAHeatMapTileOverlay.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MAHeatMapTileOverlay.h; path = AMapNaviKit.framework/Headers/MAHeatMapTileOverlay.h; sourceTree = ""; }; + 00DB8DC7C4F4C5A02ACA6A67E1DC7981 /* MKAnnotationView+WebCache.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "MKAnnotationView+WebCache.m"; path = "DDWebImageKit_Private/Classes/SDWebImageMapKit/MapKit/MKAnnotationView+WebCache.m"; sourceTree = ""; }; + 00F8FEF823DF255B3B1E6AA2118CD7A8 /* Zip.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Zip.swift; path = RxSwift/Observables/Zip.swift; sourceTree = ""; }; + 0112B77C1DE51BC869026352B7DCA97E /* UIControl+Rx.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "UIControl+Rx.swift"; path = "RxCocoa/iOS/UIControl+Rx.swift"; sourceTree = ""; }; + 0139719C76F8C7628242BE20324110B6 /* JXCategoryListContainerRTLCell.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JXCategoryListContainerRTLCell.h; path = Sources/Common/JXCategoryListContainerRTLCell.h; sourceTree = ""; }; + 015B0FB8AE710CD6F5726003294AFBD6 /* MJRefreshStateHeader.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MJRefreshStateHeader.m; path = MJRefresh/Custom/Header/MJRefreshStateHeader.m; sourceTree = ""; }; + 018A027A7D77788D77C79B4C189F750F /* DDZFPlayerKit_Private-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "DDZFPlayerKit_Private-prefix.pch"; sourceTree = ""; }; + 01E4FAFE87F8BBD90D18537F26A7A20C /* IQTextView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = IQTextView.swift; path = IQKeyboardManagerSwift/IQTextView/IQTextView.swift; sourceTree = ""; }; + 01EABEC40E7ADEFAACE0409D718D7E32 /* AMapGeoFenceRegionObj.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AMapGeoFenceRegionObj.h; path = AMapLocationKit.framework/Headers/AMapGeoFenceRegionObj.h; sourceTree = ""; }; + 02053A7B91976C425D1817777F87951B /* UITableView+DDCategory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UITableView+DDCategory.h"; path = "DDCategoryKit_Private/Classes/UITableView+DDCategory/UITableView+DDCategory.h"; sourceTree = ""; }; + 0228B6F0D3F7C87CDD74ABC704E1588F /* ServerTrustEvaluation.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ServerTrustEvaluation.swift; path = Source/ServerTrustEvaluation.swift; sourceTree = ""; }; + 0229DA1BDB01482B8995808C7B585EB4 /* icon_file_type_flv.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = icon_file_type_flv.png; path = Sources/Resources/FileType/icon_file_type_flv.png; sourceTree = ""; }; + 027120507F2AA7430737482FA5BE5C56 /* _fishhook.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = _fishhook.h; path = Sources/fishhook/_fishhook.h; sourceTree = ""; }; + 02CA160B5B31AD5B9F44EC067651EACF /* icon_file_type_7z.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = icon_file_type_7z.png; path = Sources/Resources/FileType/icon_file_type_7z.png; sourceTree = ""; }; + 0321E7AA98ABD7E09C1C01CFC3053FDA /* Take.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Take.swift; path = RxSwift/Observables/Take.swift; sourceTree = ""; }; + 0334D58B2D51FF01D3196F736BA41C10 /* ZLGeneralDefine.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ZLGeneralDefine.swift; path = Sources/General/ZLGeneralDefine.swift; sourceTree = ""; }; + 0354999CC73AEBB06AAB20526A5CA34C /* ZLAlbumListController.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ZLAlbumListController.swift; path = Sources/General/ZLAlbumListController.swift; sourceTree = ""; }; + 036910A977C6625D5FEE274DC2763DA2 /* RxCocoa.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RxCocoa.release.xcconfig; sourceTree = ""; }; + 0379C312FB9DFBA4F0FC9BCF26429BCA /* UINavigationController+DDCategory.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UINavigationController+DDCategory.m"; path = "DDCategoryKit_Private/Classes/UINavigationController+DDCategory/UINavigationController+DDCategory.m"; sourceTree = ""; }; + 0381861FFA483459D293AE76660FBA3B /* Rx.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Rx.swift; path = RxSwift/Rx.swift; sourceTree = ""; }; + 0385BA814C957C616179B78AEC1F08C0 /* NSBezierPath+SDRoundedCorners.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSBezierPath+SDRoundedCorners.h"; path = "DDWebImageKit_Private/Classes/SDWebImage/Private/NSBezierPath+SDRoundedCorners.h"; sourceTree = ""; }; + 039345EC77D9A09392650415FC3286F3 /* icon_file_type_jpg@2x.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = "icon_file_type_jpg@2x.png"; path = "Sources/Resources/FileType/icon_file_type_jpg@2x.png"; sourceTree = ""; }; + 03F04E26ED09B9526810A653C4168A14 /* Alamofire-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Alamofire-prefix.pch"; sourceTree = ""; }; + 0448FF2AB119125D802AC2F5FA6D011F /* CocoaDebug.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = CocoaDebug.debug.xcconfig; sourceTree = ""; }; + 044FE985399F1BA9631A1C6C4165BFB0 /* _NSLogHook.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = _NSLogHook.m; path = Sources/Logs/_NSLogHook.m; sourceTree = ""; }; + 04598C91C924350D7F4EE27A77058875 /* MAPointAnnotation+DDCategory.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "MAPointAnnotation+DDCategory.m"; path = "DDMAMapKit_Private/Classes/DDMAMap/Annotation/MAPointAnnotation+DDCategory.m"; sourceTree = ""; }; + 048777CE15449DC35DFDAB4F3F634531 /* UIApplication+EKAppearance.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "UIApplication+EKAppearance.swift"; path = "Source/Extensions/UIApplication+EKAppearance.swift"; sourceTree = ""; }; + 04B4465701FE30BC34749FE111978E33 /* NopDisposable.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = NopDisposable.swift; path = RxSwift/Disposables/NopDisposable.swift; sourceTree = ""; }; + 04BCB3E51F1C6ED5A9404F291F8AEA14 /* MAOfflineItemMunicipality.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MAOfflineItemMunicipality.h; path = AMapNaviKit.framework/Headers/MAOfflineItemMunicipality.h; sourceTree = ""; }; + 050410A02E4519CA1F1D3A03509DAC67 /* icon_file_type_mp4.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = icon_file_type_mp4.png; path = Sources/Resources/FileType/icon_file_type_mp4.png; sourceTree = ""; }; + 0506FBB9B4ED2B8D4D6E739425E7A7D8 /* SDWebImageDownloaderConfig.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageDownloaderConfig.m; path = DDWebImageKit_Private/Classes/SDWebImage/Core/SDWebImageDownloaderConfig.m; sourceTree = ""; }; + 0518167B33E6D41D98B241A09834D96D /* icon_file_type_psd@3x.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = "icon_file_type_psd@3x.png"; path = "Sources/Resources/FileType/icon_file_type_psd@3x.png"; sourceTree = ""; }; + 053261275951B60F8A7B6E2E16D3D6E0 /* MJRefreshAutoNormalFooter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MJRefreshAutoNormalFooter.m; path = MJRefresh/Custom/Footer/Auto/MJRefreshAutoNormalFooter.m; sourceTree = ""; }; + 054402A6F7A877BCAB755AD878F1E8DA /* BooleanDisposable.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = BooleanDisposable.swift; path = RxSwift/Disposables/BooleanDisposable.swift; sourceTree = ""; }; + 0574B8818F6CC23AE99137764B856A06 /* SDAnimatedImage.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDAnimatedImage.m; path = DDWebImageKit_Private/Classes/SDWebImage/Core/SDAnimatedImage.m; sourceTree = ""; }; + 059D407BB164CC7195BAA024608BEE50 /* DriveRouteCustomAnnotation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DriveRouteCustomAnnotation.h; path = DDMAMapKit_Private/Classes/DDMAMap/Annotation/DriveRouteCustomAnnotation.h; sourceTree = ""; }; + 05C7E32A37D053CCD582A61509540978 /* SDInternalMacros.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDInternalMacros.h; path = DDWebImageKit_Private/Classes/SDWebImage/Private/SDInternalMacros.h; sourceTree = ""; }; + 05E70D60932C308CF8BDDEDB8E336B1E /* URLEncodedFormEncoder.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = URLEncodedFormEncoder.swift; path = Source/URLEncodedFormEncoder.swift; sourceTree = ""; }; + 062E0FB913015D1C74D805EC9CC57C63 /* BRDatePickerView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = BRDatePickerView.h; path = BRPickerView/DatePickerView/BRDatePickerView.h; sourceTree = ""; }; + 064600D7ACADFFBB57498295C3DD27F2 /* Do.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Do.swift; path = RxSwift/Observables/Do.swift; sourceTree = ""; }; + 06826A974EFAD95ADA1626CA3E1F5DD1 /* UIBarButtonItem+Rx.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "UIBarButtonItem+Rx.swift"; path = "RxCocoa/iOS/UIBarButtonItem+Rx.swift"; sourceTree = ""; }; + 06C7E8226A65E1D0D4CC3D3E98978D02 /* SDDiskCache.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDDiskCache.m; path = DDWebImageKit_Private/Classes/SDWebImage/Core/SDDiskCache.m; sourceTree = ""; }; 06CDFBE1975E12259932D66B8FB43B14 /* Pods-OrderSchedulingNotificationService-acknowledgements.markdown */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = "Pods-OrderSchedulingNotificationService-acknowledgements.markdown"; sourceTree = ""; }; - 06D3039EFC811BDD6760EB0EE1B07D13 /* Completable.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Completable.swift; path = RxSwift/Traits/PrimitiveSequence/Completable.swift; sourceTree = ""; }; - 06D8DBB89CCCB6D1ABC7E263B61428B8 /* SDDisplayLink.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDDisplayLink.m; path = DDWebImageKit_Private/Classes/SDWebImage/Private/SDDisplayLink.m; sourceTree = ""; }; - 06E8E3ECF7906587527EAF1A57324AA2 /* DDZFPlayerKit_Private-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "DDZFPlayerKit_Private-umbrella.h"; sourceTree = ""; }; - 07052646AA729B2C5F500719DF643195 /* ObservableConvertibleType.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ObservableConvertibleType.swift; path = RxSwift/ObservableConvertibleType.swift; sourceTree = ""; }; - 07304F1095246D445B5B4965B05D1035 /* MAHeatMapTileOverlay.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MAHeatMapTileOverlay.h; path = AMapNaviKit.framework/Headers/MAHeatMapTileOverlay.h; sourceTree = ""; }; - 0730F3BA50980D21C5A6897B1EB8391E /* AMapLocationRegionObj.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AMapLocationRegionObj.h; path = AMapLocationKit.framework/Headers/AMapLocationRegionObj.h; sourceTree = ""; }; - 07AA0CC5A5B6A72B098A533E337D3663 /* ZFLoadingView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ZFLoadingView.h; path = DDZFPlayerKit_Private/Classes/ControlView/ZFLoadingView.h; sourceTree = ""; }; - 07C66D21EB83C4B1ABE60F361E9F59AF /* CocoaDebug.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CocoaDebug.swift; path = Sources/Core/CocoaDebug.swift; sourceTree = ""; }; - 07D8FAA4C29A88551FD28B6EDDA1309F /* AMapNaviCompositeAnnotation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AMapNaviCompositeAnnotation.h; path = AMapNaviKit.framework/Headers/AMapNaviCompositeAnnotation.h; sourceTree = ""; }; - 080BDA2102FF1E81F2152BC8DCA1F8BA /* PublishRelay.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = PublishRelay.swift; path = RxRelay/PublishRelay.swift; sourceTree = ""; }; - 08425F2E3CB26EB19960F2FA768C618C /* StringEncoding+Alamofire.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "StringEncoding+Alamofire.swift"; path = "Source/StringEncoding+Alamofire.swift"; sourceTree = ""; }; - 084E0C0D1AA5C124E978663C4990312C /* UILayoutSupport+Extensions.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "UILayoutSupport+Extensions.swift"; path = "Sources/UILayoutSupport+Extensions.swift"; sourceTree = ""; }; - 08504B38CFD394446D42C98266DEF231 /* Window.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Window.swift; path = RxSwift/Observables/Window.swift; sourceTree = ""; }; - 08596742D2C9EFE3570472AFA36B4FFD /* NSMutableAttributedString+DDCategory.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSMutableAttributedString+DDCategory.m"; path = "DDCategoryKit_Private/Classes/NSAttributedString+DDCategory/NSMutableAttributedString+DDCategory.m"; sourceTree = ""; }; - 0869C8BBD4FCB89ED37D690294177823 /* UIScrollView+ZFPlayer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIScrollView+ZFPlayer.h"; path = "DDZFPlayerKit_Private/Classes/Core/UIScrollView+ZFPlayer.h"; sourceTree = ""; }; - 0875C040D12BE91C36E1ED306108F5CB /* UICollectionView+DDCategory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UICollectionView+DDCategory.h"; path = "DDCategoryKit_Private/Classes/UICollectionView+DDCategory/UICollectionView+DDCategory.h"; sourceTree = ""; }; - 0895CD9160D01F577A4F8C987527075B /* ZFPlayerNotification.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = ZFPlayerNotification.m; path = DDZFPlayerKit_Private/Classes/Core/ZFPlayerNotification.m; sourceTree = ""; }; - 0995464F359596273EAF66184AFAFE77 /* icon_file_type_html.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = icon_file_type_html.png; path = Sources/Resources/FileType/icon_file_type_html.png; sourceTree = ""; }; - 0999442D076422FF5FD9C72F3D4FB4C1 /* KFOptionsSetter.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = KFOptionsSetter.swift; path = Sources/General/KFOptionsSetter.swift; sourceTree = ""; }; - 09CFA82591686C7028E43270C4F3EA3C /* CacheSerializer.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CacheSerializer.swift; path = Sources/Cache/CacheSerializer.swift; sourceTree = ""; }; - 09F35385FE414E0F85783217FA27F924 /* Date+Dispatch.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Date+Dispatch.swift"; path = "RxSwift/Date+Dispatch.swift"; sourceTree = ""; }; - 09F7627F828E9EAEEAFD92C5D6F3858F /* CocoaDebugDeviceInfo.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = CocoaDebugDeviceInfo.m; path = Sources/Core/CocoaDebugDeviceInfo.m; sourceTree = ""; }; - 0A3E54C5376402A23D3AA0D41F2D97A7 /* Kingfisher.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = Kingfisher.modulemap; sourceTree = ""; }; - 0A6993B3BDBA3881EDAC1363FDBF00CA /* NetworkDetailViewController.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = NetworkDetailViewController.swift; path = Sources/Network/NetworkDetailViewController.swift; sourceTree = ""; }; - 0A7F08B451ABE1DF1B4AEFF2833D823B /* MAOfflineItemCommonCity.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MAOfflineItemCommonCity.h; path = AMapNaviKit.framework/Headers/MAOfflineItemCommonCity.h; sourceTree = ""; }; - 0A8D4ADC6BE9DF4D1F930869030FB61F /* MAMapView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MAMapView.h; path = AMapNaviKit.framework/Headers/MAMapView.h; sourceTree = ""; }; - 0A934031A18FBE46D8BEE3E41360F917 /* NSMutableParagraphStyle+DDCategory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSMutableParagraphStyle+DDCategory.h"; path = "DDCategoryKit_Private/Classes/NSAttributedString+DDCategory/NSMutableParagraphStyle+DDCategory.h"; sourceTree = ""; }; - 0ACA4DA38B2A3B09C648A0A111ECBFB3 /* ZFSmallFloatControlView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ZFSmallFloatControlView.h; path = DDZFPlayerKit_Private/Classes/ControlView/ZFSmallFloatControlView.h; sourceTree = ""; }; - 0AD93B977F51C4B659AD059B2345CA81 /* AMapNaviDriveManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AMapNaviDriveManager.h; path = AMapNaviKit.framework/Headers/AMapNaviDriveManager.h; sourceTree = ""; }; - 0AFA57A2697AB5CEE7CFE8B04B5D06AE /* _DirectoryContentsTableViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = _DirectoryContentsTableViewController.m; path = Sources/Sandbox/_DirectoryContentsTableViewController.m; sourceTree = ""; }; - 0B29521FFEB240EDFC0C76D91356F136 /* Lock.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Lock.swift; path = RxSwift/Concurrency/Lock.swift; sourceTree = ""; }; - 0B5B4B27E12CDBEF2C34CAC20DFCA94C /* ZFFloatView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = ZFFloatView.m; path = DDZFPlayerKit_Private/Classes/Core/ZFFloatView.m; sourceTree = ""; }; - 0B6BA0DEEC7BF87FCE83807F8E428868 /* NSObject+CocoaDebug.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSObject+CocoaDebug.h"; path = "Sources/Categories/NSObject+CocoaDebug.h"; sourceTree = ""; }; - 0BA799688BE36529CCF0E4815C1BB380 /* icon_file_type_folder_not_empty.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = icon_file_type_folder_not_empty.png; path = Sources/Resources/FileType/icon_file_type_folder_not_empty.png; sourceTree = ""; }; - 0C05507F4B4DE8D9136A00EF2FC01852 /* MAMultiPointOverlayRenderer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MAMultiPointOverlayRenderer.h; path = AMapNaviKit.framework/Headers/MAMultiPointOverlayRenderer.h; sourceTree = ""; }; - 0C26F7D23C793D3CDF19E7B6FF9B5759 /* MJRefreshGifHeader.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MJRefreshGifHeader.m; path = MJRefresh/Custom/Header/MJRefreshGifHeader.m; sourceTree = ""; }; - 0C4C2F010A7E2F134C39503739F003E8 /* DDTableViewCell.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = DDTableViewCell.swift; path = DDControlsKit_Private/Classes/DDTableViewCell/DDTableViewCell.swift; sourceTree = ""; }; - 0C5F01E98675A66BBCD33CD9EA69D391 /* MATraceLocation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MATraceLocation.h; path = AMapNaviKit.framework/Headers/MATraceLocation.h; sourceTree = ""; }; - 0CA3286CD6CC9F22A75FEE76FFC60AA4 /* icon_file_type_ttf.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = icon_file_type_ttf.png; path = Sources/Resources/FileType/icon_file_type_ttf.png; sourceTree = ""; }; - 0CB0CC96BF81BF49D09BF3BA2C7AB8B0 /* ConstraintView+Extensions.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "ConstraintView+Extensions.swift"; path = "Sources/ConstraintView+Extensions.swift"; sourceTree = ""; }; - 0CBC58D319401A4C400ACA3C35D82862 /* MJRefreshStateHeader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MJRefreshStateHeader.h; path = MJRefresh/Custom/Header/MJRefreshStateHeader.h; sourceTree = ""; }; - 0CCE651BD164B4AB8DBDC675BD56644F /* UILabel+DDCategory.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UILabel+DDCategory.m"; path = "DDCategoryKit_Private/Classes/UILabel+DDCategory/UILabel+DDCategory.m"; sourceTree = ""; }; - 0CDEBE45652572B528A14BB36489F849 /* MJRefreshAutoFooter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MJRefreshAutoFooter.h; path = MJRefresh/Base/MJRefreshAutoFooter.h; sourceTree = ""; }; - 0CF54B0AB9D6F66FA4696F98802E50CA /* DDMAMapView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DDMAMapView.m; path = DDMAMapKit_Private/Classes/DDMAMap/MapView/DDMAMapView.m; sourceTree = ""; }; - 0D0F07D136CE9DBC8403D22F5C2E9FF6 /* jpush-ios-5.0.1.xcframework */ = {isa = PBXFileReference; includeInIndex = 1; path = "jpush-ios-5.0.1.xcframework"; sourceTree = ""; }; - 0D244C132278A6F37C1BF4971007DE94 /* Infallible+Concurrency.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Infallible+Concurrency.swift"; path = "RxSwift/Traits/Infallible/Infallible+Concurrency.swift"; sourceTree = ""; }; - 0D3477DB83523D501A97BFEC5B61300D /* RecursiveLock.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RecursiveLock.swift; path = Platform/RecursiveLock.swift; sourceTree = ""; }; - 0D8C54C35613F75509897C00A1C89A5B /* ZLCustomAlertProtocol.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ZLCustomAlertProtocol.swift; path = Sources/General/ZLCustomAlertProtocol.swift; sourceTree = ""; }; - 0DA7A5297DCF8896F641C4D6A8336991 /* CocoaDebugDeviceInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CocoaDebugDeviceInfo.h; path = Sources/Core/CocoaDebugDeviceInfo.h; sourceTree = ""; }; - 0DC95A63A4B53BD65F7C07AFE543CA70 /* MJRefreshHeader.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MJRefreshHeader.m; path = MJRefresh/Base/MJRefreshHeader.m; sourceTree = ""; }; - 0DE2E6AF595B4C5D42825002C239A6A6 /* icon_file_type_mp3@3x.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = "icon_file_type_mp3@3x.png"; path = "Sources/Resources/FileType/icon_file_type_mp3@3x.png"; sourceTree = ""; }; - 0E27EC55E2F2818F18B8062092AFE646 /* MAOfflineItem.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MAOfflineItem.h; path = AMapNaviKit.framework/Headers/MAOfflineItem.h; sourceTree = ""; }; - 0E50839580B51D0A7F3EF88B55109292 /* ZFOrientationObserver.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ZFOrientationObserver.h; path = DDZFPlayerKit_Private/Classes/Core/ZFOrientationObserver.h; sourceTree = ""; }; - 0E5C0351335ADF899354F1B892B80840 /* SynchronizedOnType.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SynchronizedOnType.swift; path = RxSwift/Concurrency/SynchronizedOnType.swift; sourceTree = ""; }; - 0E724A096EBA576B4E63622329A63555 /* SDWebImagePrefetcher.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImagePrefetcher.h; path = DDWebImageKit_Private/Classes/SDWebImage/Core/SDWebImagePrefetcher.h; sourceTree = ""; }; - 0E73D12AF416E50DB9F0751FBD0A6E69 /* icon_file_type_xls@3x.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = "icon_file_type_xls@3x.png"; path = "Sources/Resources/FileType/icon_file_type_xls@3x.png"; sourceTree = ""; }; - 0E7F318A87744190A4904BA6876F7A52 /* DDBaseCollectionViewCell.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DDBaseCollectionViewCell.m; path = DDBasicControlsKit_Private/Classes/DDBaseCollectionViewCell/DDBaseCollectionViewCell.m; sourceTree = ""; }; - 0E92D25215E0E8C902628D8DF61C9138 /* icon_file_type_xml@2x.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = "icon_file_type_xml@2x.png"; path = "Sources/Resources/FileType/icon_file_type_xml@2x.png"; sourceTree = ""; }; - 0F103FDCC8516D032638E57745D35DF7 /* NSButton+Kingfisher.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "NSButton+Kingfisher.swift"; path = "Sources/Extensions/NSButton+Kingfisher.swift"; sourceTree = ""; }; - 0F190E920FB3BE3C888113C06E0C8B33 /* DDBasicControlsKit_Private.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = DDBasicControlsKit_Private.release.xcconfig; sourceTree = ""; }; - 0F39E24FC11481107A66D5DE8F5C6775 /* CrashLogger.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CrashLogger.swift; path = Sources/App/CrashLogger.swift; sourceTree = ""; }; - 0F6AF2D849BF4A92B3D12B82B996E7C5 /* UIView+QLContentWrap.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "UIView+QLContentWrap.swift"; path = "Source/Extensions/QuickLayout/UIView+QLContentWrap.swift"; sourceTree = ""; }; - 0FA8E9BB37E41337CD1A67C732B0F43D /* SDWebImageIndicator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageIndicator.h; path = DDWebImageKit_Private/Classes/SDWebImage/Core/SDWebImageIndicator.h; sourceTree = ""; }; - 0FB88FEE804085AE4E892AF3189B178F /* DDColorKit_Private-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "DDColorKit_Private-dummy.m"; sourceTree = ""; }; - 0FD7E1DECC133219E3E0E77353189E14 /* _icon_file_type_sandbox@2x.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = "_icon_file_type_sandbox@2x.png"; path = "Sources/Resources/images/_icon_file_type_sandbox@2x.png"; sourceTree = ""; }; - 0FD8B81E261517A8360009CFACF049BD /* _icon_file_type_down@2x.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = "_icon_file_type_down@2x.png"; path = "Sources/Resources/images/_icon_file_type_down@2x.png"; sourceTree = ""; }; - 0FEAEA7973440FC844A2A97FECB1C062 /* Never.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Never.swift; path = RxSwift/Observables/Never.swift; sourceTree = ""; }; - 0FFD5740C138B6B009157E54889C7C5F /* Request.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Request.swift; path = Source/Request.swift; sourceTree = ""; }; - 101BA43A219A5BE2A9512CA2CBA01CFA /* UITextView+DDCategory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UITextView+DDCategory.h"; path = "DDCategoryKit_Private/Classes/UITextView+DDCategory/UITextView+DDCategory.h"; sourceTree = ""; }; - 10945986B3096B766F703441354073F8 /* BRPickerViewMacro.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = BRPickerViewMacro.h; path = BRPickerView/Base/BRPickerViewMacro.h; sourceTree = ""; }; - 10A3454D7A8F19EDD46AF264AAEE40E8 /* ZFSliderView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ZFSliderView.h; path = DDZFPlayerKit_Private/Classes/ControlView/ZFSliderView.h; sourceTree = ""; }; - 10E0A7E6604E7DCA63A4365CB3437F1D /* Sequence.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Sequence.swift; path = RxSwift/Observables/Sequence.swift; sourceTree = ""; }; - 11064BE7C5144CE3265A9D951100F139 /* Create.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Create.swift; path = RxSwift/Observables/Create.swift; sourceTree = ""; }; - 1109F32BC805E2C3BA9D879C4A0FC290 /* DDCollectionViewCell.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = DDCollectionViewCell.swift; path = DDControlsKit_Private/Classes/DDCollectionViewCell/DDCollectionViewCell.swift; sourceTree = ""; }; - 11104132272D9789C48DA046A719F95F /* icon_file_type_js.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = icon_file_type_js.png; path = Sources/Resources/FileType/icon_file_type_js.png; sourceTree = ""; }; - 111578E0DE0A14CA987C2FAE76C700B4 /* DDMAMapKit_Private.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = DDMAMapKit_Private.release.xcconfig; sourceTree = ""; }; - 112A895CF76ECDB40C0ECA09CFECFA97 /* _CustomHTTPProtocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = _CustomHTTPProtocol.h; path = Sources/CustomHTTPProtocol/_CustomHTTPProtocol.h; sourceTree = ""; }; - 114CF263E7734C896A83D4D3412401E4 /* EKContentView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = EKContentView.swift; path = Source/Infra/EKContentView.swift; sourceTree = ""; }; - 117EB6AB3D790D1FE68FF6DE8A43B874 /* MAMapKit.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MAMapKit.h; path = AMapNaviKit.framework/Headers/MAMapKit.h; sourceTree = ""; }; - 11890073F30296CCB3396FADED8A3DC0 /* ESTabBarController.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ESTabBarController.swift; path = Sources/ESTabBarController.swift; sourceTree = ""; }; - 118F2627E444F1BE57CCC8537A429129 /* AMapSearchKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; path = AMapSearchKit.framework; sourceTree = ""; }; - 119866CBFF9545D367816FAFC89A011E /* DDAutoUIKit_Private-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "DDAutoUIKit_Private-umbrella.h"; sourceTree = ""; }; - 11A006D6059BAD97F57CE1B6236F4DBE /* EntryCachingHeuristic.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = EntryCachingHeuristic.swift; path = Source/Infra/EntryCachingHeuristic.swift; sourceTree = ""; }; - 11A0E08C743E9F83B7793CFD9C9BAF7D /* ZFOrientationObserver.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = ZFOrientationObserver.m; path = DDZFPlayerKit_Private/Classes/Core/ZFOrientationObserver.m; sourceTree = ""; }; - 11B45A11E7F75B40C1F34E95E1461E0F /* ZLThumbnailViewController.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ZLThumbnailViewController.swift; path = Sources/General/ZLThumbnailViewController.swift; sourceTree = ""; }; - 1232E43BDB0C44CA19091D9D8AFF18D2 /* DDBaseImage.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DDBaseImage.h; path = DDBasicControlsKit_Private/Classes/DDBaseImage/DDBaseImage.h; sourceTree = ""; }; - 1241693E68BF493A2728F5EB81DDBC2F /* ZFPortraitViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = ZFPortraitViewController.m; path = DDZFPlayerKit_Private/Classes/Core/ZFPortraitViewController.m; sourceTree = ""; }; - 124B0B3769072EF8741B89E4A289194C /* icon_file_type_midi@2x.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = "icon_file_type_midi@2x.png"; path = "Sources/Resources/FileType/icon_file_type_midi@2x.png"; sourceTree = ""; }; - 1279AE8B9216612A71C15D07DBE03DB0 /* _Sandboxer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = _Sandboxer.h; path = Sources/Sandbox/_Sandboxer.h; sourceTree = ""; }; - 127E8B906D974CF2BA3B2E98BAB892BD /* DDBaseButton.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DDBaseButton.h; path = DDBasicControlsKit_Private/Classes/DDBaseButton/DDBaseButton.h; sourceTree = ""; }; - 128ACB4150A485CE95C0F43F266666BB /* DDControlsKit_Private.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = DDControlsKit_Private.release.xcconfig; sourceTree = ""; }; - 129D6161CDFA6124D6CADF3D8764B920 /* NSBundle+DDCategory.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSBundle+DDCategory.m"; path = "DDCategoryKit_Private/Classes/NSBundle+DDCategory/NSBundle+DDCategory.m"; sourceTree = ""; }; - 12B1631BFE36A7793E242EFEEC05E3D2 /* DDBaseTextView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DDBaseTextView.h; path = DDBasicControlsKit_Private/Classes/DDBaseTextView/DDBaseTextView.h; sourceTree = ""; }; - 12C655966552631E56C745DD822B6261 /* icon_file_type_doc.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = icon_file_type_doc.png; path = Sources/Resources/FileType/icon_file_type_doc.png; sourceTree = ""; }; - 12CB140F9F4DD1B0D43C8EEA24EAF352 /* MJRefreshBackFooter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MJRefreshBackFooter.h; path = MJRefresh/Base/MJRefreshBackFooter.h; sourceTree = ""; }; - 12D3DCB0B672BF4B3DCFE638A28A65FF /* Result.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Result.swift; path = Sources/Utility/Result.swift; sourceTree = ""; }; - 12DCBCCC9694CEB567D5A2098C5C0690 /* ZLResultModel.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ZLResultModel.swift; path = Sources/General/ZLResultModel.swift; sourceTree = ""; }; - 12E65049429020CE2FA907DA693933C3 /* _CanonicalRequest.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = _CanonicalRequest.m; path = Sources/CustomHTTPProtocol/_CanonicalRequest.m; sourceTree = ""; }; - 1344362613B9A67B0B4D78C4E6651E1D /* ZFNetworkSpeedMonitor.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = ZFNetworkSpeedMonitor.m; path = DDZFPlayerKit_Private/Classes/ControlView/ZFNetworkSpeedMonitor.m; sourceTree = ""; }; - 13B1CD4319F8067CF9F913BC73920FBA /* JXCategoryTitleImageView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JXCategoryTitleImageView.h; path = Sources/TitleImage/JXCategoryTitleImageView.h; sourceTree = ""; }; - 13B63568EDA5F30E8939E06D4087447C /* DDToastKit_Private-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "DDToastKit_Private-umbrella.h"; sourceTree = ""; }; - 14273F123143D24A7722E7D9B42F8603 /* JXCategoryDotCell.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = JXCategoryDotCell.m; path = Sources/Dot/JXCategoryDotCell.m; sourceTree = ""; }; - 1428743B6F7B3AC715F7400C6CBE94A1 /* InfiniteSequence.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = InfiniteSequence.swift; path = Platform/DataStructures/InfiniteSequence.swift; sourceTree = ""; }; - 1428D08C0C597BC7DD8EA9E1D3224DB0 /* icon_file_type_css@2x.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = "icon_file_type_css@2x.png"; path = "Sources/Resources/FileType/icon_file_type_css@2x.png"; sourceTree = ""; }; - 145ECAB1E3FA265801C648EB59D56635 /* SDImageAssetManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageAssetManager.h; path = DDWebImageKit_Private/Classes/SDWebImage/Private/SDImageAssetManager.h; sourceTree = ""; }; - 146527595DF4E67A03E0054FA333E05E /* UIScrollView+MJExtension.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIScrollView+MJExtension.m"; path = "MJRefresh/UIScrollView+MJExtension.m"; sourceTree = ""; }; - 148515900189496EDD7809A61B7BF648 /* RxNavigationControllerDelegateProxy.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RxNavigationControllerDelegateProxy.swift; path = RxCocoa/iOS/Proxies/RxNavigationControllerDelegateProxy.swift; sourceTree = ""; }; - 149DCB7224A89272AAA1335B59217389 /* _icon_file_type_app@2x.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = "_icon_file_type_app@2x.png"; path = "Sources/Resources/images/_icon_file_type_app@2x.png"; sourceTree = ""; }; - 14A2AAA074C2501C98422C01DA8985F9 /* icon_file_type_bmp@2x.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = "icon_file_type_bmp@2x.png"; path = "Sources/Resources/FileType/icon_file_type_bmp@2x.png"; sourceTree = ""; }; - 14B0B7E0D8A8A2369FF012C41560F469 /* NSObject+Rx+RawRepresentable.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "NSObject+Rx+RawRepresentable.swift"; path = "RxCocoa/Foundation/NSObject+Rx+RawRepresentable.swift"; sourceTree = ""; }; - 14B8DAA7229455EDE174093B8E84329D /* UINavigationBar+DDCategory.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UINavigationBar+DDCategory.m"; path = "DDCategoryKit_Private/Classes/UINavigationBar+DDCategory/UINavigationBar+DDCategory.m"; sourceTree = ""; }; - 14FE5A15417756FA1678F7F3BA6FEC04 /* DDMAMapKit_Private.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = DDMAMapKit_Private.debug.xcconfig; sourceTree = ""; }; - 151730D6FC8CF83F1C17AC553B0C4490 /* ImageProcessor.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ImageProcessor.swift; path = Sources/Image/ImageProcessor.swift; sourceTree = ""; }; - 1533FBBCB4E61683BDC3F1EBCFAA1143 /* RxRelay.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RxRelay.release.xcconfig; sourceTree = ""; }; - 153D7C9845BA1437AEA26527B90D2298 /* _ImageResources.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = _ImageResources.h; path = Sources/Sandbox/_ImageResources.h; sourceTree = ""; }; - 154E45C0BE1CADEBADBEE06DF9CA0EF9 /* GraphicsContext.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = GraphicsContext.swift; path = Sources/Image/GraphicsContext.swift; sourceTree = ""; }; - 158CF155D8A6CB70ADD71B185641780C /* EKTextField.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = EKTextField.swift; path = Source/MessageViews/MessagesUtils/EKTextField.swift; sourceTree = ""; }; - 15A1BFE9BF2F524F05AEB838F0CB9845 /* MAParticleOverlayOptions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MAParticleOverlayOptions.h; path = AMapNaviKit.framework/Headers/MAParticleOverlayOptions.h; sourceTree = ""; }; - 15A9648565E1DF1DEB737EAF33F6C3B3 /* HapticFeedbackGenerator.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = HapticFeedbackGenerator.swift; path = Source/Utils/HapticFeedbackGenerator.swift; sourceTree = ""; }; - 15C756D06AB7D637E8ED4A2BC716FD21 /* AsMaybe.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AsMaybe.swift; path = RxSwift/Observables/AsMaybe.swift; sourceTree = ""; }; - 166A1713B3B3D736241CC69E55F347DF /* DDWebImageKit_Private-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "DDWebImageKit_Private-dummy.m"; sourceTree = ""; }; + 06DC1011D3CB2579CF954A6998A82B46 /* DDAutoUIKit_Private-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "DDAutoUIKit_Private-umbrella.h"; sourceTree = ""; }; + 06E15E659FF795DCB0FCBAC7CAB699C2 /* Indicator.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Indicator.swift; path = Sources/Views/Indicator.swift; sourceTree = ""; }; + 07A394118DE9B26AE0566436C547A814 /* DDCategoryKit_Private-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "DDCategoryKit_Private-prefix.pch"; sourceTree = ""; }; + 07BC3EDED98A9C30DEE8EDBC8C49B4A5 /* EKAttributes+BackgroundStyle.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "EKAttributes+BackgroundStyle.swift"; path = "Source/Model/EntryAttributes/EKAttributes+BackgroundStyle.swift"; sourceTree = ""; }; + 0823CD89862CF2D822348155015DBFD1 /* icon_file_type_dll@2x.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = "icon_file_type_dll@2x.png"; path = "Sources/Resources/FileType/icon_file_type_dll@2x.png"; sourceTree = ""; }; + 082A9747FFF7BFB6BFEDF73173BFEE19 /* RxTextStorageDelegateProxy.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RxTextStorageDelegateProxy.swift; path = RxCocoa/iOS/Proxies/RxTextStorageDelegateProxy.swift; sourceTree = ""; }; + 083DD46FAEAE4BA428D870758BE6E5E6 /* MAOfflineCity.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MAOfflineCity.h; path = AMapNaviKit.framework/Headers/MAOfflineCity.h; sourceTree = ""; }; + 084FAD33970C501880B546C046B09304 /* UITextField+DDCategory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UITextField+DDCategory.h"; path = "DDCategoryKit_Private/Classes/UITextField+DDCategory/UITextField+DDCategory.h"; sourceTree = ""; }; + 0865F93AD66982530A1413C5A2C358B5 /* RxSearchControllerDelegateProxy.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RxSearchControllerDelegateProxy.swift; path = RxCocoa/iOS/Proxies/RxSearchControllerDelegateProxy.swift; sourceTree = ""; }; + 0895C47141200615E0A154C2CF4D2EE4 /* icon_file_type_torrent.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = icon_file_type_torrent.png; path = Sources/Resources/FileType/icon_file_type_torrent.png; sourceTree = ""; }; + 08AF4D18C36AB2546F7F8922C2C9B6BE /* RxCocoa.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RxCocoa.h; path = RxCocoa/RxCocoa.h; sourceTree = ""; }; + 08B918246B5F59A7DB942A7792495870 /* DDTimerKit_Private-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "DDTimerKit_Private-dummy.m"; sourceTree = ""; }; + 08BAC2C5C13F5B859D3365FFF02D0891 /* DDAudioPlayerKit_Private.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = DDAudioPlayerKit_Private.debug.xcconfig; sourceTree = ""; }; + 08CD488F803E37CB2EDEA19AE3253D75 /* MABaseOverlay+DDCategory.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "MABaseOverlay+DDCategory.m"; path = "DDMAMapKit_Private/Classes/DDMAMap/Overlay/MABaseOverlay+DDCategory.m"; sourceTree = ""; }; + 0969E15FC97AE985DA999BBCEF8C4C20 /* EKAttributes+Duration.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "EKAttributes+Duration.swift"; path = "Source/Model/EntryAttributes/EKAttributes+Duration.swift"; sourceTree = ""; }; + 098A49A3045547EBD273E8AD55CC8558 /* MAMultiPointOverlay.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MAMultiPointOverlay.h; path = AMapNaviKit.framework/Headers/MAMultiPointOverlay.h; sourceTree = ""; }; + 09B4C59FAB38D6054E5993BD78205023 /* DDAudioPlayerKit_Private */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = DDAudioPlayerKit_Private; path = libDDAudioPlayerKit_Private.a; sourceTree = BUILT_PRODUCTS_DIR; }; + 09BF7BEC4D90C021470A25988CB291BF /* _RXKVOObserver.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = _RXKVOObserver.m; path = RxCocoa/Runtime/_RXKVOObserver.m; sourceTree = ""; }; + 09E4BD9AF58866CD240FE98CC9FA9328 /* NSObject+DDCategory.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSObject+DDCategory.m"; path = "DDCategoryKit_Private/Classes/NSObject+DDCategory/NSObject+DDCategory.m"; sourceTree = ""; }; + 0A0B5A4180221E40CE556F38DA1B329D /* MJRefreshGifHeader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MJRefreshGifHeader.h; path = MJRefresh/Custom/Header/MJRefreshGifHeader.h; sourceTree = ""; }; + 0A0DB0AD13396C9C8A354BA610385E1A /* SDWebImageDownloaderRequestModifier.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageDownloaderRequestModifier.m; path = DDWebImageKit_Private/Classes/SDWebImage/Core/SDWebImageDownloaderRequestModifier.m; sourceTree = ""; }; + 0A3609CE388BD0A408CD57CBD6155AC3 /* DDTimerKit_Private-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "DDTimerKit_Private-prefix.pch"; sourceTree = ""; }; + 0A5D0C6FEDD9950013E14A77FFE66FBD /* _OCLogStoreManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = _OCLogStoreManager.h; path = Sources/Logs/_OCLogStoreManager.h; sourceTree = ""; }; + 0A5FA45F1AAFDC0987C87FDCB4EE5926 /* _FilePreviewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = _FilePreviewController.m; path = Sources/Sandbox/_FilePreviewController.m; sourceTree = ""; }; + 0A97312BFE816F76389E14494FFECD97 /* RxCocoa.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = RxCocoa.modulemap; sourceTree = ""; }; + 0AA352C580D8FBC08486DA230C2F09CC /* icon_file_type_aac@2x.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = "icon_file_type_aac@2x.png"; path = "Sources/Resources/FileType/icon_file_type_aac@2x.png"; sourceTree = ""; }; + 0AC129DE20FC15D38C33BB72D87489AE /* EKAttributes+DisplayMode.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "EKAttributes+DisplayMode.swift"; path = "Source/Model/EntryAttributes/EKAttributes+DisplayMode.swift"; sourceTree = ""; }; + 0AF1A76F33B4E63B165CE5FA5B91A130 /* _ObjcLog.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = _ObjcLog.h; path = Sources/Logs/_ObjcLog.h; sourceTree = ""; }; + 0AFE6DA7B5413B1DB9D313117C1D00CF /* ConstraintDirectionalInsets.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ConstraintDirectionalInsets.swift; path = Sources/ConstraintDirectionalInsets.swift; sourceTree = ""; }; + 0B0287512853C8B86CB04C42AC98AF10 /* JXCategoryIndicatorCellModel.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JXCategoryIndicatorCellModel.h; path = Sources/Indicator/JXCategoryIndicatorCellModel.h; sourceTree = ""; }; + 0B236A480C1858B1E73C3BFB7F0D5E8B /* SDWebImageCacheSerializer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageCacheSerializer.m; path = DDWebImageKit_Private/Classes/SDWebImage/Core/SDWebImageCacheSerializer.m; sourceTree = ""; }; + 0B2FBFB6B983E631D704734CD9F628EC /* Single.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Single.swift; path = RxSwift/Traits/PrimitiveSequence/Single.swift; sourceTree = ""; }; + 0B7D7AA72B10A02FBAF59FD050627482 /* DDNetworkingOfAlamofireKit_Private-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "DDNetworkingOfAlamofireKit_Private-prefix.pch"; sourceTree = ""; }; + 0B7EE5B4F5FFDEA10868682DCE8344CD /* UIPickerView+Rx.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "UIPickerView+Rx.swift"; path = "RxCocoa/iOS/UIPickerView+Rx.swift"; sourceTree = ""; }; + 0B8832AD77B9DDB928EF069901018195 /* UISearchController+Rx.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "UISearchController+Rx.swift"; path = "RxCocoa/iOS/UISearchController+Rx.swift"; sourceTree = ""; }; + 0BB849F8D022F2D44CB1B0298A884AC0 /* JXCategoryViewAnimator.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = JXCategoryViewAnimator.m; path = Sources/Common/JXCategoryViewAnimator.m; sourceTree = ""; }; + 0BCC8C368D4EE667A49DAC8F67F19F91 /* AMapTrackManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AMapTrackManager.h; path = AMapTrackKit.framework/Headers/AMapTrackManager.h; sourceTree = ""; }; + 0BE2A2283AA193B1FC6C42A44D951474 /* SDWebImageCacheKeyFilter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageCacheKeyFilter.m; path = DDWebImageKit_Private/Classes/SDWebImage/Core/SDWebImageCacheKeyFilter.m; sourceTree = ""; }; + 0C06F0F9D936A9BD45D810AC8AF839D0 /* icon_file_type_jar@3x.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = "icon_file_type_jar@3x.png"; path = "Sources/Resources/FileType/icon_file_type_jar@3x.png"; sourceTree = ""; }; + 0C07A4A5704517D879F4624051090A10 /* icon_file_type_swift@2x.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = "icon_file_type_swift@2x.png"; path = "Sources/Resources/FileType/icon_file_type_swift@2x.png"; sourceTree = ""; }; + 0C1779725409CB7336CC76B51231DC13 /* SnapKit.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = SnapKit.debug.xcconfig; sourceTree = ""; }; + 0C3C57E1D47F5EC93E2ED3B931584C60 /* _Swizzling.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = _Swizzling.h; path = Sources/Swizzling/_Swizzling.h; sourceTree = ""; }; + 0C4D2774C483DD40D57C7FA3D2C8D22E /* SchedulerType+SharedSequence.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "SchedulerType+SharedSequence.swift"; path = "RxCocoa/Traits/SharedSequence/SchedulerType+SharedSequence.swift"; sourceTree = ""; }; + 0C5253A9CBB0E5AB13AA2950F43142AE /* MAMultiPoint.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MAMultiPoint.h; path = AMapNaviKit.framework/Headers/MAMultiPoint.h; sourceTree = ""; }; + 0C6F7393CC8AD88E9D891C769ED4EC7B /* IQInvocation.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = IQInvocation.swift; path = IQKeyboardManagerSwift/IQToolbar/IQInvocation.swift; sourceTree = ""; }; + 0C7D60686B2BC1EB102A5D122C2F7B5C /* MJRefreshComponent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MJRefreshComponent.h; path = MJRefresh/Base/MJRefreshComponent.h; sourceTree = ""; }; + 0C7E08017D80EF1936CE54E783C7F2C9 /* Observable.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Observable.swift; path = RxSwift/Observable.swift; sourceTree = ""; }; + 0C825B8354A834C5C15737ADA5230621 /* RxCollectionViewReactiveArrayDataSource.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RxCollectionViewReactiveArrayDataSource.swift; path = RxCocoa/iOS/DataSources/RxCollectionViewReactiveArrayDataSource.swift; sourceTree = ""; }; + 0CA1A9F98A8858536FD425DCC916D7C3 /* _Swizzling.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = _Swizzling.m; path = Sources/Swizzling/_Swizzling.m; sourceTree = ""; }; + 0CCAE470CE4B88EB94EC366E1214B2B0 /* UIViewArray+QuickLayout.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "UIViewArray+QuickLayout.swift"; path = "Source/Extensions/QuickLayout/UIViewArray+QuickLayout.swift"; sourceTree = ""; }; + 0CCBA22874FD39B5EC9BDE6D9D8B105E /* EKAttributes+Position.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "EKAttributes+Position.swift"; path = "Source/Model/EntryAttributes/EKAttributes+Position.swift"; sourceTree = ""; }; + 0CD07829ED3310E1E55EEA3E661C145F /* _RX.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = _RX.h; path = RxCocoa/Runtime/include/_RX.h; sourceTree = ""; }; + 0D0933D2DFD38420FF30CCE915C8FC72 /* JXCategoryIndicatorDotLineView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JXCategoryIndicatorDotLineView.h; path = Sources/Indicator/IndicatorViews/JXCategoryIndicatorDotLineView.h; sourceTree = ""; }; + 0D4C8900E578B4C8C482C3CBE0AF8AF5 /* Platform.Linux.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Platform.Linux.swift; path = Platform/Platform.Linux.swift; sourceTree = ""; }; + 0DBAD669B55F5B5B45C51263FB09D478 /* DDBasicControlsKit_Private-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "DDBasicControlsKit_Private-dummy.m"; sourceTree = ""; }; + 0DD8C1045DCFBEBB3D9D5593893F671E /* ZFVolumeBrightnessView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ZFVolumeBrightnessView.h; path = DDZFPlayerKit_Private/Classes/ControlView/ZFVolumeBrightnessView.h; sourceTree = ""; }; + 0DDA1B78B6D0CD87B04D331FD03B1D26 /* ConstraintMakerRelatable.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ConstraintMakerRelatable.swift; path = Sources/ConstraintMakerRelatable.swift; sourceTree = ""; }; + 0DFE48E73B23483F42A0E13D844195FD /* ZFPlayerView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = ZFPlayerView.m; path = DDZFPlayerKit_Private/Classes/Core/ZFPlayerView.m; sourceTree = ""; }; + 0E002E2C792C5B797089C0CBB123AEB5 /* UIViewController+DDCategory.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIViewController+DDCategory.m"; path = "DDCategoryKit_Private/Classes/UIViewController+DDCategory/UIViewController+DDCategory.m"; sourceTree = ""; }; + 0E32F05E6704CB27C4F0970E03346DAB /* DDMutableAttributedString.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = DDMutableAttributedString.swift; path = DDControlsKit_Private/Classes/DDAttributedString/DDMutableAttributedString.swift; sourceTree = ""; }; + 0E6B47BC7A361FD0136AC5CB2D7840A2 /* icon_file_type_mp4@2x.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = "icon_file_type_mp4@2x.png"; path = "Sources/Resources/FileType/icon_file_type_mp4@2x.png"; sourceTree = ""; }; + 0E82D13FE96061E6E4EB297A495D4B26 /* SynchronizedUnsubscribeType.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SynchronizedUnsubscribeType.swift; path = RxSwift/Concurrency/SynchronizedUnsubscribeType.swift; sourceTree = ""; }; + 0F297546C6F6C28277DF8BE35C61DDC7 /* DDMAGeometry.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DDMAGeometry.h; path = DDMAMapKit_Private/Classes/DDMAUtil/DDMAGeometry.h; sourceTree = ""; }; + 0F47DDE3C1736961E81DFC21642B56E6 /* MATraceReplayOverlay+Addition.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "MATraceReplayOverlay+Addition.h"; path = "DDMAMapKit_Private/Classes/DDMAMap/Trace/MATraceReplayOverlay+Addition.h"; sourceTree = ""; }; + 0F4BCE744090F84D7355AB3BE65C3362 /* icon_file_type_dat@3x.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = "icon_file_type_dat@3x.png"; path = "Sources/Resources/FileType/icon_file_type_dat@3x.png"; sourceTree = ""; }; + 0F7251723673525D2D0FD7FD55BDA311 /* DDCategoryKit_Private.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = DDCategoryKit_Private.debug.xcconfig; sourceTree = ""; }; + 0F79D93E9EAC91998CD46F9BD551F765 /* MJRefreshAutoNormalFooter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MJRefreshAutoNormalFooter.h; path = MJRefresh/Custom/Footer/Auto/MJRefreshAutoNormalFooter.h; sourceTree = ""; }; + 0F7DD58CEA655A61309BF96BF7C6C7CD /* jpush-ios-5.0.1.xcframework */ = {isa = PBXFileReference; includeInIndex = 1; path = "jpush-ios-5.0.1.xcframework"; sourceTree = ""; }; + 0FF4C616AD34D0D620D1E52915B79BC2 /* UIImage+Transform.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIImage+Transform.m"; path = "DDWebImageKit_Private/Classes/SDWebImage/Core/UIImage+Transform.m"; sourceTree = ""; }; + 104A88C578F707D8C4EBA903BF4146CF /* RxCollectionViewDelegateProxy.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RxCollectionViewDelegateProxy.swift; path = RxCocoa/iOS/Proxies/RxCollectionViewDelegateProxy.swift; sourceTree = ""; }; + 1051306B875B02C74A86EE0815BCD486 /* NSURL+DDCategory.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSURL+DDCategory.m"; path = "DDCategoryKit_Private/Classes/NSUrl+DDCategory/NSURL+DDCategory.m"; sourceTree = ""; }; + 1056F3A17BDA5E5959DA7C15030700C9 /* Platform.Darwin.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Platform.Darwin.swift; path = Platform/Platform.Darwin.swift; sourceTree = ""; }; + 106867BD09CA406CC67213E4F249158E /* UIImageView+DDWebCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImageView+DDWebCache.h"; path = "DDWebImageKit_Private/Classes/DDWebImage/UIImageView+DDWebCache.h"; sourceTree = ""; }; + 10ABC888679086A04C0DC40C758FA4E7 /* KFImageRenderer.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = KFImageRenderer.swift; path = Sources/SwiftUI/KFImageRenderer.swift; sourceTree = ""; }; + 10ABE62193618D11DA78D5A4CF4C829B /* NSObject+DDCategory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSObject+DDCategory.h"; path = "DDCategoryKit_Private/Classes/NSObject+DDCategory/NSObject+DDCategory.h"; sourceTree = ""; }; + 10F737BE4409B171817BA5FC711A6C2F /* AMapLocationKit.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AMapLocationKit.h; path = AMapLocationKit.framework/Headers/AMapLocationKit.h; sourceTree = ""; }; + 110EC0AD318D4ECCC10F025DAE53B000 /* AlamofireExtended.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AlamofireExtended.swift; path = Source/AlamofireExtended.swift; sourceTree = ""; }; + 11332C468324EFDE6DA55EC29282232D /* icon_file_type_ttf@2x.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = "icon_file_type_ttf@2x.png"; path = "Sources/Resources/FileType/icon_file_type_ttf@2x.png"; sourceTree = ""; }; + 11A8F171A32B930BCBDBB11A8E847298 /* icon_file_type_avi@2x.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = "icon_file_type_avi@2x.png"; path = "Sources/Resources/FileType/icon_file_type_avi@2x.png"; sourceTree = ""; }; + 11CD62823D20B196FE435FF45DF0AAA4 /* icon_file_type_json@2x.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = "icon_file_type_json@2x.png"; path = "Sources/Resources/FileType/icon_file_type_json@2x.png"; sourceTree = ""; }; + 11D3D10DB74AF192C39489ECEE9EC350 /* icon_file_type_xls@2x.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = "icon_file_type_xls@2x.png"; path = "Sources/Resources/FileType/icon_file_type_xls@2x.png"; sourceTree = ""; }; + 11F953B24AA6DB8375291160CD7850E6 /* ImageContext.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ImageContext.swift; path = Sources/SwiftUI/ImageContext.swift; sourceTree = ""; }; + 1223B9BCC27F8C8348BC83FBAF4B095E /* DDBaseCollectionViewCell.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DDBaseCollectionViewCell.h; path = DDBasicControlsKit_Private/Classes/DDBaseCollectionViewCell/DDBaseCollectionViewCell.h; sourceTree = ""; }; + 129C4C0861511F31333238525142A013 /* UIApplication+DDCategory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIApplication+DDCategory.h"; path = "DDCategoryKit_Private/Classes/UIApplication+DDCategory/UIApplication+DDCategory.h"; sourceTree = ""; }; + 12A94FF416555EF19A4945A05D2A8DBA /* MAOverlayRenderer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MAOverlayRenderer.h; path = AMapNaviKit.framework/Headers/MAOverlayRenderer.h; sourceTree = ""; }; + 12D12776A4BDE949D3EA6FF4EA5A998E /* MJRefreshNormalHeader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MJRefreshNormalHeader.h; path = MJRefresh/Custom/Header/MJRefreshNormalHeader.h; sourceTree = ""; }; + 12D5E3E7F68E95CA0ADB60461DCD772F /* NSBundle+BRPickerView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSBundle+BRPickerView.m"; path = "BRPickerView/Base/NSBundle+BRPickerView.m"; sourceTree = ""; }; + 12E70A20A9573BF5A9B175915B1E9F96 /* UITableView+Rx.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "UITableView+Rx.swift"; path = "RxCocoa/iOS/UITableView+Rx.swift"; sourceTree = ""; }; + 13870762528D274783144041A9EBF362 /* _OCLogModel.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = _OCLogModel.h; path = Sources/Logs/_OCLogModel.h; sourceTree = ""; }; + 138BCBB4DC817E9F31394ED16B8A29DA /* ScheduledItemType.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ScheduledItemType.swift; path = RxSwift/Schedulers/Internal/ScheduledItemType.swift; sourceTree = ""; }; + 138D89F9AD66B27542971F3146C9C7E3 /* SDImageCoder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageCoder.h; path = DDWebImageKit_Private/Classes/SDWebImage/Core/SDImageCoder.h; sourceTree = ""; }; + 1397F9A8F26829E996CBAFD9780265E9 /* JXCategoryIndicatorRainbowLineView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JXCategoryIndicatorRainbowLineView.h; path = Sources/Indicator/IndicatorViews/JXCategoryIndicatorRainbowLineView.h; sourceTree = ""; }; + 13DB71A2DF2E8847BAA487208E1D3E1D /* _Sandboxer-Header.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "_Sandboxer-Header.h"; path = "Sources/Sandbox/_Sandboxer-Header.h"; sourceTree = ""; }; + 1435090B5A923B9AAD07D69FF436ADF2 /* NSDate+BRPickerView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSDate+BRPickerView.h"; path = "BRPickerView/DatePickerView/NSDate+BRPickerView.h"; sourceTree = ""; }; + 143FBCC86BF924D706D0EF1552376AA1 /* Response.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Response.swift; path = Source/Response.swift; sourceTree = ""; }; + 146783B650E6D6DD73EE367461940636 /* icon_file_type_ttf@3x.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = "icon_file_type_ttf@3x.png"; path = "Sources/Resources/FileType/icon_file_type_ttf@3x.png"; sourceTree = ""; }; + 14D8C8FF1C95657CBA45ED86F902B75C /* NSTextView+Rx.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "NSTextView+Rx.swift"; path = "RxCocoa/macOS/NSTextView+Rx.swift"; sourceTree = ""; }; + 14F8483A629A2D03915DBC2C185A7D5A /* icon_file_type_html@3x.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = "icon_file_type_html@3x.png"; path = "Sources/Resources/FileType/icon_file_type_html@3x.png"; sourceTree = ""; }; + 1558B92E463EDCFB3725BFBD17A1182D /* ZLAnimationUtils.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ZLAnimationUtils.swift; path = Sources/General/ZLAnimationUtils.swift; sourceTree = ""; }; + 156B21EF7A3CFBA670540BA1D9BC28D0 /* MAMultiPointOverlayRenderer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MAMultiPointOverlayRenderer.h; path = AMapNaviKit.framework/Headers/MAMultiPointOverlayRenderer.h; sourceTree = ""; }; + 1578A18968936C272FAC478EA21DC4CE /* DDBaseTableViewCell.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DDBaseTableViewCell.m; path = DDBasicControlsKit_Private/Classes/DDBaseTableViewCell/DDBaseTableViewCell.m; sourceTree = ""; }; + 159B09585E27B8B76408E0C22FD4B90E /* IQKeyboardManager+Internal.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "IQKeyboardManager+Internal.swift"; path = "IQKeyboardManagerSwift/IQKeyboardManager+Internal.swift"; sourceTree = ""; }; + 15A044019BDACEF6F993B544AC5D2299 /* EKAttributes+Validations.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "EKAttributes+Validations.swift"; path = "Source/Model/EntryAttributes/EKAttributes+Validations.swift"; sourceTree = ""; }; + 15AED11DF39E305DF6673230E081BB49 /* MJRefreshFooter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MJRefreshFooter.h; path = MJRefresh/Base/MJRefreshFooter.h; sourceTree = ""; }; + 15FBCFE8006FF35B1C88E53E36B6CCD3 /* _icon_file_type_bugs@2x.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = "_icon_file_type_bugs@2x.png"; path = "Sources/Resources/images/_icon_file_type_bugs@2x.png"; sourceTree = ""; }; + 160538DEC56439C5968908C2B061D198 /* JXCategoryListContainerView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = JXCategoryListContainerView.m; path = Sources/Common/JXCategoryListContainerView.m; sourceTree = ""; }; + 16553ED13CFF1FE8A2C6E666B6636C2A /* EKPopUpMessageView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = EKPopUpMessageView.swift; path = Source/MessageViews/EKPopUpMessageView.swift; sourceTree = ""; }; + 1662D3E1ADCC2F18FBE1C92945D63F2A /* Color.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Color.swift; path = Sources/Window/Color.swift; sourceTree = ""; }; + 16720660F00B055D3518EF290D70B19D /* SDWebImageMapKit.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageMapKit.h; path = DDWebImageKit_Private/Classes/SDWebImageMapKit/SDWebImageMapKit.h; sourceTree = ""; }; + 168FC76E41435410EC8A00C808BE60F9 /* URLConvertible+URLRequestConvertible.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "URLConvertible+URLRequestConvertible.swift"; path = "Source/URLConvertible+URLRequestConvertible.swift"; sourceTree = ""; }; + 16A984FFDCD2D8E2DDCD44B725FD124B /* Optional.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Optional.swift; path = RxSwift/Observables/Optional.swift; sourceTree = ""; }; 16ADD43AE08E88D6F7A3498152249608 /* DDAutoUIKit_Private */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = DDAutoUIKit_Private; path = libDDAutoUIKit_Private.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 16B05522B43020BCC230CDDE3DEFE8F2 /* TakeLast.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = TakeLast.swift; path = RxSwift/Observables/TakeLast.swift; sourceTree = ""; }; - 16B6A2489CB5A950A2C801A2E5EAAAA7 /* JXCategoryIndicatorBackgroundView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JXCategoryIndicatorBackgroundView.h; path = Sources/Indicator/IndicatorViews/JXCategoryIndicatorBackgroundView.h; sourceTree = ""; }; - 16ECC0D3B40E75BBAF4C767C8E6723E2 /* BRDatePickerView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = BRDatePickerView.h; path = BRPickerView/DatePickerView/BRDatePickerView.h; sourceTree = ""; }; - 16FA39C92B6A4348415CD601C0608B42 /* _RXDelegateProxy.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = _RXDelegateProxy.h; path = RxCocoa/Runtime/include/_RXDelegateProxy.h; sourceTree = ""; }; - 17603AA3430C09065AE7873D5C0D250C /* icon_file_type_xls.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = icon_file_type_xls.png; path = Sources/Resources/FileType/icon_file_type_xls.png; sourceTree = ""; }; - 17D3635E58D0C3FE790A7496560B9C82 /* AMapNaviRoute.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AMapNaviRoute.h; path = AMapNaviKit.framework/Headers/AMapNaviRoute.h; sourceTree = ""; }; - 17E917C5F7A534F3587B9B9B3B1E9A06 /* CocoaDebug.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = CocoaDebug.modulemap; sourceTree = ""; }; - 17FE25B167DF787D85213EFAD8A65F86 /* AFError.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AFError.swift; path = Source/AFError.swift; sourceTree = ""; }; - 18515FD82734E4B06FF2845EDA536B54 /* SDImageCachesManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageCachesManager.h; path = DDWebImageKit_Private/Classes/SDWebImage/Core/SDImageCachesManager.h; sourceTree = ""; }; - 18527623E8BD70F088500400F9875F20 /* AsyncSubject.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AsyncSubject.swift; path = RxSwift/Subjects/AsyncSubject.swift; sourceTree = ""; }; - 185970861F19BB4E06B96113EE5BD3E8 /* DDColorKit_Private.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = DDColorKit_Private.modulemap; sourceTree = ""; }; - 188C6EACB7E2584CB733DD6BE41BDC51 /* ImageCache.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ImageCache.swift; path = Sources/Cache/ImageCache.swift; sourceTree = ""; }; - 18AA3DD7D8E41F447D4BD4E58668DFFB /* Notifications.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Notifications.swift; path = Source/Notifications.swift; sourceTree = ""; }; - 18C3DF1B3B55DC176A82B2B03CEE3585 /* AMapNaviStatisticsInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AMapNaviStatisticsInfo.h; path = AMapNaviKit.framework/Headers/AMapNaviStatisticsInfo.h; sourceTree = ""; }; - 19057DDBEA07F608402AEE244BDDC53C /* AMapFoundationKit.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AMapFoundationKit.h; path = AMapFoundationKit.framework/Headers/AMapFoundationKit.h; sourceTree = ""; }; - 1906A2C2F2D6AA4F5F54392B60FD1A60 /* SDWebImageCacheSerializer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageCacheSerializer.m; path = DDWebImageKit_Private/Classes/SDWebImage/Core/SDWebImageCacheSerializer.m; sourceTree = ""; }; - 19459891C2FAEBEC5A2A9DFC7EFB8665 /* UIView+DDCategory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIView+DDCategory.h"; path = "DDCategoryKit_Private/Classes/UIView+DDCategory/UIView+DDCategory.h"; sourceTree = ""; }; - 195FFFDC0AF806EBF709A46B1FCF2ECF /* MJRefreshStateTrailer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MJRefreshStateTrailer.m; path = MJRefresh/Custom/Trailer/MJRefreshStateTrailer.m; sourceTree = ""; }; - 19BA8A0F0D756912877875020D2AC9D6 /* icon_file_type_wav.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = icon_file_type_wav.png; path = Sources/Resources/FileType/icon_file_type_wav.png; sourceTree = ""; }; - 19C6D736EEBB68458CDCD837433A3440 /* DDView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = DDView.swift; path = DDControlsKit_Private/Classes/DDView/DDView.swift; sourceTree = ""; }; - 1A1766BA82F9E8382C6A973E5B0E7693 /* SDImageCachesManagerOperation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageCachesManagerOperation.m; path = DDWebImageKit_Private/Classes/SDWebImage/Private/SDImageCachesManagerOperation.m; sourceTree = ""; }; - 1A31FF1AD872A7671FFD03A52897818D /* AMapNaviWalkView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AMapNaviWalkView.h; path = AMapNaviKit.framework/Headers/AMapNaviWalkView.h; sourceTree = ""; }; - 1A5CEA612839E4189C0EFD9AC0F863E0 /* Logs.storyboard */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = file.storyboard; name = Logs.storyboard; path = Sources/Resources/Logs.storyboard; sourceTree = ""; }; - 1A65D6A3020D867744C401AC4E07A7E0 /* TextInput.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = TextInput.swift; path = RxCocoa/Common/TextInput.swift; sourceTree = ""; }; - 1AC4AED3C43F85EDC4D41760135951C4 /* MJRefreshAutoGifFooter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MJRefreshAutoGifFooter.m; path = MJRefresh/Custom/Footer/Auto/MJRefreshAutoGifFooter.m; sourceTree = ""; }; - 1AD8ADA2385F1DD40A81D6F599FE25E3 /* JXCategoryTitleVerticalZoomCellModel.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JXCategoryTitleVerticalZoomCellModel.h; path = Sources/VerticalZoomTitle/JXCategoryTitleVerticalZoomCellModel.h; sourceTree = ""; }; - 1B4E5E801509987FF662DA6667576E25 /* ConstraintMakerRelatable+Extensions.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "ConstraintMakerRelatable+Extensions.swift"; path = "Sources/ConstraintMakerRelatable+Extensions.swift"; sourceTree = ""; }; - 1B5759DAF36C997BF3C6DD78C1DF3EC4 /* _ImageResources.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = _ImageResources.m; path = Sources/Sandbox/_ImageResources.m; sourceTree = ""; }; - 1BA5EFAAD446B4AA9BEF6762D02E2253 /* ZFPlayerController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ZFPlayerController.h; path = DDZFPlayerKit_Private/Classes/Core/ZFPlayerController.h; sourceTree = ""; }; - 1BACC92E207A3ACFC81EA93CF1930ED5 /* SerialDisposable.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SerialDisposable.swift; path = RxSwift/Disposables/SerialDisposable.swift; sourceTree = ""; }; - 1BB7F9EAAFF2CD04B575824562D3AF45 /* DDCategoryKit_Private-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "DDCategoryKit_Private-dummy.m"; sourceTree = ""; }; - 1BCE93C36A4902BFF402D097AEE24C92 /* JCore-xcframeworks.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "JCore-xcframeworks.sh"; sourceTree = ""; }; - 1C07D20047AAD610FCD943836E5BB3BD /* MJRefreshFooter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MJRefreshFooter.h; path = MJRefresh/Base/MJRefreshFooter.h; sourceTree = ""; }; - 1C102EBD15B3DBCF9B3C9F086A8E9712 /* SubscriptionDisposable.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SubscriptionDisposable.swift; path = RxSwift/Disposables/SubscriptionDisposable.swift; sourceTree = ""; }; - 1C188CE8BBFF9B59E0ADE973AB029B7B /* MACircleRenderer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MACircleRenderer.h; path = AMapNaviKit.framework/Headers/MACircleRenderer.h; sourceTree = ""; }; - 1C66EFB0BE10C024A3B99F07A5C7C891 /* UIScrollView+DDCategory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIScrollView+DDCategory.h"; path = "DDCategoryKit_Private/Classes/UIScrollView+DDCategory/UIScrollView+DDCategory.h"; sourceTree = ""; }; - 1C7F81B9C13413322B75D3D7075A9E0E /* UIApplication+DDCategory.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIApplication+DDCategory.m"; path = "DDCategoryKit_Private/Classes/UIApplication+DDCategory/UIApplication+DDCategory.m"; sourceTree = ""; }; - 1C828B28AA2A4B547317BE7558E33BB4 /* UITabBarController+DDCategory.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UITabBarController+DDCategory.m"; path = "DDCategoryKit_Private/Classes/UITabBarController+DDCategory/UITabBarController+DDCategory.m"; sourceTree = ""; }; - 1C922887F6E0D602B6E64B0DB92BDEE7 /* Filter.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Filter.swift; path = RxSwift/Observables/Filter.swift; sourceTree = ""; }; - 1C93C2444CC32B62A39EB8CA0422289E /* _Sandboxer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = _Sandboxer.m; path = Sources/Sandbox/_Sandboxer.m; sourceTree = ""; }; - 1CACEAB54A67E9260490F98BA6B5F8E0 /* DDMAMapKit_Private-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "DDMAMapKit_Private-prefix.pch"; sourceTree = ""; }; - 1CB418DA7591416A070F2A818D795694 /* JXCategoryIndicatorParamsModel.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JXCategoryIndicatorParamsModel.h; path = Sources/Common/JXCategoryIndicatorParamsModel.h; sourceTree = ""; }; - 1CB669742E16BC84C1966F890504C9AE /* RxCollectionViewReactiveArrayDataSource.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RxCollectionViewReactiveArrayDataSource.swift; path = RxCocoa/iOS/DataSources/RxCollectionViewReactiveArrayDataSource.swift; sourceTree = ""; }; - 1CEB2D223C0122F8B5F649375F9466A2 /* RxCocoa.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RxCocoa.swift; path = RxCocoa/RxCocoa.swift; sourceTree = ""; }; - 1D6885AC2E42BBE3A7E244E53DB03EA0 /* SDImageCoderHelper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageCoderHelper.h; path = DDWebImageKit_Private/Classes/SDWebImage/Core/SDImageCoderHelper.h; sourceTree = ""; }; - 1D8AA9F4B37C4FDC9B16C8F80C7FA28A /* MJRefreshNormalTrailer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MJRefreshNormalTrailer.m; path = MJRefresh/Custom/Trailer/MJRefreshNormalTrailer.m; sourceTree = ""; }; - 1DACDC37AE0B79F535F37A68C323BD51 /* UIViewController+DDCategory.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIViewController+DDCategory.m"; path = "DDCategoryKit_Private/Classes/UIViewController+DDCategory/UIViewController+DDCategory.m"; sourceTree = ""; }; - 1DD09241F5C618D50220A1912B41C186 /* NSBundle+BRPickerView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSBundle+BRPickerView.m"; path = "BRPickerView/Base/NSBundle+BRPickerView.m"; sourceTree = ""; }; - 1E7885C9136480B6508AA787CFF96E41 /* icon_file_type_keynote.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = icon_file_type_keynote.png; path = Sources/Resources/FileType/icon_file_type_keynote.png; sourceTree = ""; }; + 16C8E97D22CC84BEB8D3C25B9A55D6D4 /* EKImageNoteMessageView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = EKImageNoteMessageView.swift; path = Source/MessageViews/Notes/EKImageNoteMessageView.swift; sourceTree = ""; }; + 16DAE2405AA7292247B80C9B21D719D7 /* LockOwnerType.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = LockOwnerType.swift; path = RxSwift/Concurrency/LockOwnerType.swift; sourceTree = ""; }; + 170E98B41CBE9C35632027A22E80EC05 /* icon_file_type_ttf.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = icon_file_type_ttf.png; path = Sources/Resources/FileType/icon_file_type_ttf.png; sourceTree = ""; }; + 17582BF2A0605219A287734B1B168036 /* DDTimerKit_Private-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "DDTimerKit_Private-umbrella.h"; sourceTree = ""; }; + 17B8906DA56601863A279000D653D043 /* SDWebImageDownloaderDecryptor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageDownloaderDecryptor.h; path = DDWebImageKit_Private/Classes/SDWebImage/Core/SDWebImageDownloaderDecryptor.h; sourceTree = ""; }; + 17BACC510A49FF57D5A7B70AAA7EA543 /* DDAutoUIKit_Private-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "DDAutoUIKit_Private-prefix.pch"; sourceTree = ""; }; + 17D4C1B710E972B113FB62D64069D4CF /* MAMultiPolyline.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MAMultiPolyline.h; path = AMapNaviKit.framework/Headers/MAMultiPolyline.h; sourceTree = ""; }; + 17EB3E1E4C05BE5D30ED569F9A951451 /* ZLEnlargeButton.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ZLEnlargeButton.swift; path = Sources/General/ZLEnlargeButton.swift; sourceTree = ""; }; + 17EF36FE763AB696820C44585014C0FD /* JXCategoryNumberCellModel.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JXCategoryNumberCellModel.h; path = Sources/Number/JXCategoryNumberCellModel.h; sourceTree = ""; }; + 1811EF3C0051CD1478070DBACE51F2E9 /* icon_file_type_ppt.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = icon_file_type_ppt.png; path = Sources/Resources/FileType/icon_file_type_ppt.png; sourceTree = ""; }; + 181754F8C4EE544D7FEB2F35942336C6 /* ObservableConvertibleType+Infallible.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "ObservableConvertibleType+Infallible.swift"; path = "RxSwift/Traits/Infallible/ObservableConvertibleType+Infallible.swift"; sourceTree = ""; }; + 18328C1F6B0BAD912D7D90C9B6A664DD /* _SandboxerHelper.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = _SandboxerHelper.m; path = Sources/Sandbox/_SandboxerHelper.m; sourceTree = ""; }; + 183F19FE6BC24CC2ED469200825BED13 /* DDColorKit_Private-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "DDColorKit_Private-dummy.m"; sourceTree = ""; }; + 184A905860356D49E7B55C985D3194DB /* ConstraintDescription.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ConstraintDescription.swift; path = Sources/ConstraintDescription.swift; sourceTree = ""; }; + 18B20E75074BCA6076066BA39FB3454E /* ZFPersentInteractiveTransition.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ZFPersentInteractiveTransition.h; path = DDZFPlayerKit_Private/Classes/Core/ZFPersentInteractiveTransition.h; sourceTree = ""; }; + 191488C38985420414CAE71CE483ABAB /* UIImage+MemoryCacheCost.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIImage+MemoryCacheCost.m"; path = "DDWebImageKit_Private/Classes/SDWebImage/Core/UIImage+MemoryCacheCost.m"; sourceTree = ""; }; + 1955820828D61224B9769C7DB96144DC /* AMapTrackManagerOptions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AMapTrackManagerOptions.h; path = AMapTrackKit.framework/Headers/AMapTrackManagerOptions.h; sourceTree = ""; }; + 195652663B54BFFD1F516B6325BC1F1C /* UINavigationController+DDCategory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UINavigationController+DDCategory.h"; path = "DDCategoryKit_Private/Classes/UINavigationController+DDCategory/UINavigationController+DDCategory.h"; sourceTree = ""; }; + 1966A986B5050ED6ECBA1F9C0CE307A2 /* icon_file_type_css.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = icon_file_type_css.png; path = Sources/Resources/FileType/icon_file_type_css.png; sourceTree = ""; }; + 196BC92B948C2A77914E274EA51CAB29 /* Reactive.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Reactive.swift; path = RxSwift/Reactive.swift; sourceTree = ""; }; + 196C316CD40737B7B2C1E2902C5C8EDA /* Request.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Request.swift; path = Source/Request.swift; sourceTree = ""; }; + 196CEE3BC2C8C654CC23EB302CC90FF4 /* ZLPhotoBrowser.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = ZLPhotoBrowser.release.xcconfig; sourceTree = ""; }; + 19A98FBE5F8AC3DD6A5019D112072792 /* MAAnnotation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MAAnnotation.h; path = AMapNaviKit.framework/Headers/MAAnnotation.h; sourceTree = ""; }; + 19C44EA54E82F0253F78A38E4809AC14 /* ZFIJKPlayerManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ZFIJKPlayerManager.h; path = DDZFPlayerKit_Private/Classes/ijkplayer/ZFIJKPlayerManager.h; sourceTree = ""; }; + 19C8749E52978158169E1C3BF25DDB52 /* DDBasicControlsKit_Private.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = DDBasicControlsKit_Private.release.xcconfig; sourceTree = ""; }; + 1A28F79C50D3E20B9BAC67E22A4359F3 /* ZFSliderView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = ZFSliderView.m; path = DDZFPlayerKit_Private/Classes/ControlView/ZFSliderView.m; sourceTree = ""; }; + 1A7C4AF6221BDD8AD265EAA9C14DED59 /* SDWebImageDownloaderOperation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageDownloaderOperation.h; path = DDWebImageKit_Private/Classes/SDWebImage/Core/SDWebImageDownloaderOperation.h; sourceTree = ""; }; + 1A8798E5DDA9F7C625F49807C8F65C42 /* UIButton+DDCategory.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIButton+DDCategory.m"; path = "DDCategoryKit_Private/Classes/UIButton+DDCategory/UIButton+DDCategory.m"; sourceTree = ""; }; + 1A8EAF636BB07C51C4ED55F239858CD3 /* CrashListViewController.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CrashListViewController.swift; path = Sources/App/CrashListViewController.swift; sourceTree = ""; }; + 1ABC665AA46A259E0DBEF93414476E75 /* ConstraintMaker.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ConstraintMaker.swift; path = Sources/ConstraintMaker.swift; sourceTree = ""; }; + 1AF9FB3103A78D101D26013FE644A11C /* DDCategoryKit_Private.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = DDCategoryKit_Private.modulemap; sourceTree = ""; }; + 1B0309AE73CEA44E98F71755290E0533 /* JXCategoryTitleImageCellModel.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JXCategoryTitleImageCellModel.h; path = Sources/TitleImage/JXCategoryTitleImageCellModel.h; sourceTree = ""; }; + 1B057FB28F622C52D92272EC7216BA4F /* DDWebImageKit_Private.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = DDWebImageKit_Private.release.xcconfig; sourceTree = ""; }; + 1B0A5DBEE83873016874FE63FCC166F9 /* RequestInterceptor.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RequestInterceptor.swift; path = Source/RequestInterceptor.swift; sourceTree = ""; }; + 1B13D9C58360C5DA066ED8022AACF6C6 /* BRPickerView.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = BRPickerView.debug.xcconfig; sourceTree = ""; }; + 1B3E8FBCB4BB9FD92F07D08BAB775E94 /* SDWebImageOperation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageOperation.m; path = DDWebImageKit_Private/Classes/SDWebImage/Core/SDWebImageOperation.m; sourceTree = ""; }; + 1B3FD4396289458395DECE58AE7AB3BD /* KFImage.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = KFImage.swift; path = Sources/SwiftUI/KFImage.swift; sourceTree = ""; }; + 1B606FD5693272D3406170F74B26593D /* WithUnretained.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = WithUnretained.swift; path = RxSwift/Observables/WithUnretained.swift; sourceTree = ""; }; + 1B8DDB5AB5574889E524A11128C23FCD /* DDBaseSwitch.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DDBaseSwitch.m; path = DDBasicControlsKit_Private/Classes/DDBaseSwitch/DDBaseSwitch.m; sourceTree = ""; }; + 1B93E03307EC96D635819D9AC9493A70 /* MJRefreshStateTrailer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MJRefreshStateTrailer.m; path = MJRefresh/Custom/Trailer/MJRefreshStateTrailer.m; sourceTree = ""; }; + 1C12ADCAD127EA090076321603546908 /* DDBaseViewController.xcassets */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = folder.assetcatalog; name = DDBaseViewController.xcassets; path = DDBasicControlsKit_Private/Assets/DDBaseViewController.xcassets; sourceTree = ""; }; + 1C3E48A8724333DDF341FE93BC574265 /* icon_file_type_wav.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = icon_file_type_wav.png; path = Sources/Resources/FileType/icon_file_type_wav.png; sourceTree = ""; }; + 1C6C04C12611787799662F133D93D97A /* ESTabBarItemContentView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ESTabBarItemContentView.swift; path = Sources/ESTabBarItemContentView.swift; sourceTree = ""; }; + 1C98A5BBADE3ADC6E0101D8C26B41358 /* ConstraintItem.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ConstraintItem.swift; path = Sources/ConstraintItem.swift; sourceTree = ""; }; + 1C9AF47B573EA9F359D038D9FD9B8075 /* MATileOverlay.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MATileOverlay.h; path = AMapNaviKit.framework/Headers/MATileOverlay.h; sourceTree = ""; }; + 1CA760423511FDC0AB4B4C76BD0A5844 /* _CustomHTTPProtocol.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = _CustomHTTPProtocol.m; path = Sources/CustomHTTPProtocol/_CustomHTTPProtocol.m; sourceTree = ""; }; + 1CFD312BA20A13AE286234A92BEDA520 /* Sample.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Sample.swift; path = RxSwift/Observables/Sample.swift; sourceTree = ""; }; + 1D4569496544524EF4A71EB47BB75AA3 /* _RXObjCRuntime.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = _RXObjCRuntime.h; path = RxCocoa/Runtime/include/_RXObjCRuntime.h; sourceTree = ""; }; + 1D5248D386E94D16E3464D643A31ABF8 /* DDMAMapKit_Private-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "DDMAMapKit_Private-prefix.pch"; sourceTree = ""; }; + 1D77E535ED65AE14BACCC1953284630C /* NetworkCell.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = NetworkCell.swift; path = Sources/Network/NetworkCell.swift; sourceTree = ""; }; + 1D9687AA1E852042C96F69376DE09A17 /* ConstraintLayoutSupport.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ConstraintLayoutSupport.swift; path = Sources/ConstraintLayoutSupport.swift; sourceTree = ""; }; + 1DB8FDD14E81F90CCFE85737A8CEC924 /* InfiniteSequence.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = InfiniteSequence.swift; path = Platform/DataStructures/InfiniteSequence.swift; sourceTree = ""; }; + 1DE2C797C7FD11FF557277D5347E5654 /* IQUIScrollView+Additions.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "IQUIScrollView+Additions.swift"; path = "IQKeyboardManagerSwift/Categories/IQUIScrollView+Additions.swift"; sourceTree = ""; }; + 1E5D7BE5A8C68A6233EE6F7864457AFB /* Maybe.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Maybe.swift; path = RxSwift/Traits/PrimitiveSequence/Maybe.swift; sourceTree = ""; }; + 1E5DF9BC5F66536DF0E11A18183E30D6 /* _icon_file_type_app@2x.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = "_icon_file_type_app@2x.png"; path = "Sources/Resources/images/_icon_file_type_app@2x.png"; sourceTree = ""; }; 1E7D75EA00C68C8EC9529B061EA9B627 /* Pods-OrderSchedulingNotificationService-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-OrderSchedulingNotificationService-dummy.m"; sourceTree = ""; }; - 1EB887B086DA69700EB76D3F8C3508FF /* Alamofire-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Alamofire-umbrella.h"; sourceTree = ""; }; - 1F00AA9988921EF293D7B70ADB110CC0 /* DDTimerManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DDTimerManager.m; path = DDTimerKit_Private/Classes/GCDTimer/DDTimerManager.m; sourceTree = ""; }; - 1F068D818B7CA40A833535AB7CDB40B2 /* RxCollectionViewDataSourceProxy.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RxCollectionViewDataSourceProxy.swift; path = RxCocoa/iOS/Proxies/RxCollectionViewDataSourceProxy.swift; sourceTree = ""; }; - 1F08FB5AE701C214C628FE40D946035E /* AddRef.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AddRef.swift; path = RxSwift/Observables/AddRef.swift; sourceTree = ""; }; - 1FAA52FB5934489B0C5AEA8E65CEC014 /* SkipUntil.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SkipUntil.swift; path = RxSwift/Observables/SkipUntil.swift; sourceTree = ""; }; - 1FBF2163D049C03E241B43372AAE977C /* ESTabBarItemBadgeView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ESTabBarItemBadgeView.swift; path = Sources/ESTabBarItemBadgeView.swift; sourceTree = ""; }; + 1E8570CECB13FD9D28F0F1B3FD573289 /* NSMutableParagraphStyle+DDCategory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSMutableParagraphStyle+DDCategory.h"; path = "DDCategoryKit_Private/Classes/NSAttributedString+DDCategory/NSMutableParagraphStyle+DDCategory.h"; sourceTree = ""; }; + 1EA96598076D4D461899D00F49CEDB0F /* JPushExtension-xcframeworks.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "JPushExtension-xcframeworks.sh"; sourceTree = ""; }; + 1EB6B2BE04795E067D6F05EBC2D51B37 /* ZFPresentTransition.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = ZFPresentTransition.m; path = DDZFPlayerKit_Private/Classes/Core/ZFPresentTransition.m; sourceTree = ""; }; + 1ECE9FED8F9F92EAC81DD4ACEC740155 /* icon_file_type_css@3x.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = "icon_file_type_css@3x.png"; path = "Sources/Resources/FileType/icon_file_type_css@3x.png"; sourceTree = ""; }; + 1F0E24EFB4A059D3ACA16DA75925A26D /* AMapTrackKit.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AMapTrackKit.h; path = AMapTrackKit.framework/Headers/AMapTrackKit.h; sourceTree = ""; }; + 1F1C4B4E67B828556FE6962DA9D4F7FF /* UIBarButtonItem+DDCategory.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIBarButtonItem+DDCategory.m"; path = "DDCategoryKit_Private/Classes/UIBarButtonItem+DDCategory/UIBarButtonItem+DDCategory.m"; sourceTree = ""; }; + 1F26048853D41F6951BEE9160B19D666 /* ObservableType+Extensions.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "ObservableType+Extensions.swift"; path = "RxSwift/ObservableType+Extensions.swift"; sourceTree = ""; }; + 1F7FCD1EEE9254E4B23FF51EF0678C66 /* DDToastKit_Private-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "DDToastKit_Private-umbrella.h"; sourceTree = ""; }; + 1F950E09354784D4BC544B9DE3F5A08C /* _icon_file_type_network@2x.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = "_icon_file_type_network@2x.png"; path = "Sources/Resources/images/_icon_file_type_network@2x.png"; sourceTree = ""; }; + 1F9C3228751941592E307E6795FC420D /* DDAttributedString.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = DDAttributedString.swift; path = DDControlsKit_Private/Classes/DDAttributedString/DDAttributedString.swift; sourceTree = ""; }; + 1FDD3B0B5C7D146DAC1BF1E4BB377608 /* MJRefreshAutoStateFooter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MJRefreshAutoStateFooter.h; path = MJRefresh/Custom/Footer/Auto/MJRefreshAutoStateFooter.h; sourceTree = ""; }; + 1FDD54B94F5298866C048A459F5BDB38 /* ESTabBarController-swift.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = "ESTabBarController-swift.modulemap"; sourceTree = ""; }; + 1FE523C27B8C9BFD06423E88B0B27AEE /* _AutoLaunch.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = _AutoLaunch.m; path = Sources/Core/_AutoLaunch.m; sourceTree = ""; }; 1FEA06F110D30604A9FB015A9790A954 /* DDControlsKit_Private */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = DDControlsKit_Private; path = libDDControlsKit_Private.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 202FD37BED1D89A9E941C12DB7D1BC8B /* GroupBy.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = GroupBy.swift; path = RxSwift/Observables/GroupBy.swift; sourceTree = ""; }; - 20374497326C6215767C64BF25249E57 /* Switch.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Switch.swift; path = RxSwift/Observables/Switch.swift; sourceTree = ""; }; - 20837014B86FE653F877CA84BE4ED805 /* SizeExtensions.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SizeExtensions.swift; path = Sources/Utility/SizeExtensions.swift; sourceTree = ""; }; - 208AC4A093B9044C3277B6F5F956FC03 /* UIControl+Rx.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "UIControl+Rx.swift"; path = "RxCocoa/iOS/UIControl+Rx.swift"; sourceTree = ""; }; - 20D44F3F66B10D9AFBAE38004B17436E /* DDImage.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = DDImage.swift; path = DDControlsKit_Private/Classes/DDImage/DDImage.swift; sourceTree = ""; }; - 2106F49CC621AADD4F0EF18B2BB8C6EE /* RxRelay.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = RxRelay.modulemap; sourceTree = ""; }; - 21244D72067C005592CD8A8175E871E2 /* ZLAlbumListModel.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ZLAlbumListModel.swift; path = Sources/General/ZLAlbumListModel.swift; sourceTree = ""; }; - 212B9A2074CA3A4C569848F43F231422 /* JXCategoryCollectionView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JXCategoryCollectionView.h; path = Sources/Common/JXCategoryCollectionView.h; sourceTree = ""; }; - 215EF9A5ED82FF8FC2767B4012947918 /* DDBaseMutableAttributedString.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DDBaseMutableAttributedString.m; path = DDBasicControlsKit_Private/Classes/DDBaseAttributedString/DDBaseMutableAttributedString.m; sourceTree = ""; }; - 21BBCAFF83655B6AF0AC2B68A4912950 /* EKPopUpMessage.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = EKPopUpMessage.swift; path = Source/Model/EKPopUpMessage.swift; sourceTree = ""; }; - 21E12E33AE2337A09DB491E56624893A /* ZLEditImageViewController.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ZLEditImageViewController.swift; path = Sources/Edit/ZLEditImageViewController.swift; sourceTree = ""; }; - 2233D37B166CDE1A9EBF4D7BE151D4F4 /* AMapTrack-NO-IDFA.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "AMapTrack-NO-IDFA.debug.xcconfig"; sourceTree = ""; }; - 223BEC5CF4773D87FC272B293125DA97 /* DDBaseCollectionView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DDBaseCollectionView.m; path = DDBasicControlsKit_Private/Classes/DDBaseCollectionView/DDBaseCollectionView.m; sourceTree = ""; }; - 2258E755983CFB104C191FF7873AD1A2 /* BRStringPickerView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = BRStringPickerView.m; path = BRPickerView/StringPickerView/BRStringPickerView.m; sourceTree = ""; }; - 226F8E26ED863A4B780661FA3525CC28 /* ObservableType+PrimitiveSequence.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "ObservableType+PrimitiveSequence.swift"; path = "RxSwift/Traits/PrimitiveSequence/ObservableType+PrimitiveSequence.swift"; sourceTree = ""; }; - 22916F5A8E44DDACA95820CF22420016 /* SDImageCacheDefine.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageCacheDefine.m; path = DDWebImageKit_Private/Classes/SDWebImage/Core/SDImageCacheDefine.m; sourceTree = ""; }; - 2295930614E93E43862A2B8BA923ECFC /* EKEntryView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = EKEntryView.swift; path = Source/Infra/EKEntryView.swift; sourceTree = ""; }; - 22C0A3EE610B9B93F60C30AEB4D6461A /* icon_file_type_tif@2x.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = "icon_file_type_tif@2x.png"; path = "Sources/Resources/FileType/icon_file_type_tif@2x.png"; sourceTree = ""; }; - 22D8B00FE86EDB0C477EA5FC2C524A97 /* MJRefreshAutoStateFooter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MJRefreshAutoStateFooter.m; path = MJRefresh/Custom/Footer/Auto/MJRefreshAutoStateFooter.m; sourceTree = ""; }; - 22DCC7A1C2167A910BC31953816C82CE /* ZLLanguageDefine.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ZLLanguageDefine.swift; path = Sources/General/ZLLanguageDefine.swift; sourceTree = ""; }; - 22F0FEDF57C87B33CF5B91CAB75CD6AE /* _CacheStoragePolicy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = _CacheStoragePolicy.m; path = Sources/CustomHTTPProtocol/_CacheStoragePolicy.m; sourceTree = ""; }; - 22FC3416EDAE6DD17BC9B3247D4BC264 /* SDWeakProxy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWeakProxy.m; path = DDWebImageKit_Private/Classes/SDWebImage/Private/SDWeakProxy.m; sourceTree = ""; }; - 23055DB4C26C1DF285C22C22A13780A4 /* CocoaDebug.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CocoaDebug.h; path = Sources/Core/CocoaDebug.h; sourceTree = ""; }; - 2319E9D032E14A9232C25E185CD6CB00 /* JXCategoryFactory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JXCategoryFactory.h; path = Sources/Common/JXCategoryFactory.h; sourceTree = ""; }; - 2374A1CCD906CF0E895948B0A065B503 /* ZLAlbumListCell.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ZLAlbumListCell.swift; path = Sources/General/ZLAlbumListCell.swift; sourceTree = ""; }; - 2388A004AB114C7DA26B5E4CD017622C /* NetworkViewController.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = NetworkViewController.swift; path = Sources/Network/NetworkViewController.swift; sourceTree = ""; }; - 23EED8DBE9F1C89AAAE37724A1AFCD59 /* ObserveOn.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ObserveOn.swift; path = RxSwift/Observables/ObserveOn.swift; sourceTree = ""; }; - 23F2720D5D8D372C6D896465F0822E96 /* AMapTrack-NO-IDFA.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "AMapTrack-NO-IDFA.release.xcconfig"; sourceTree = ""; }; - 2416C493A06F7E5C822C1F5C4FFED93A /* JsonViewController.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = JsonViewController.swift; path = Sources/Network/JsonViewController.swift; sourceTree = ""; }; - 2433420D40401659C04DC442AED3DF70 /* MAOfflineMapViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MAOfflineMapViewController.h; path = AMapNaviKit.framework/Headers/MAOfflineMapViewController.h; sourceTree = ""; }; - 24528134D684365C72BE21CC699EF331 /* DelaySubscription.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = DelaySubscription.swift; path = RxSwift/Observables/DelaySubscription.swift; sourceTree = ""; }; - 24579DE47045D93E548B20B186D05CC9 /* MJRefresh.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = MJRefresh.modulemap; sourceTree = ""; }; - 2482D51429A6AA18BD132ED387BC22F8 /* AMapNaviLocation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AMapNaviLocation.h; path = AMapNaviKit.framework/Headers/AMapNaviLocation.h; sourceTree = ""; }; - 248532EFDA8BD7E606255DD0781B713E /* icon_file_type_html@2x.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = "icon_file_type_html@2x.png"; path = "Sources/Resources/FileType/icon_file_type_html@2x.png"; sourceTree = ""; }; - 248AB1AA26A91FF083A6349CAF1075CD /* MJRefreshBackGifFooter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MJRefreshBackGifFooter.m; path = MJRefresh/Custom/Footer/Back/MJRefreshBackGifFooter.m; sourceTree = ""; }; - 249D7206AD3BB1FA33705A88696CD5E4 /* icon_file_type_txt@2x.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = "icon_file_type_txt@2x.png"; path = "Sources/Resources/FileType/icon_file_type_txt@2x.png"; sourceTree = ""; }; - 24A484576CF40EBB816C81275F1AC30C /* MJRefreshTrailer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MJRefreshTrailer.m; path = MJRefresh/Base/MJRefreshTrailer.m; sourceTree = ""; }; - 24E22025AFCCDEC937F7B01867C1A4FF /* DDWebImageKit_Private.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = DDWebImageKit_Private.release.xcconfig; sourceTree = ""; }; - 24FDB8532634D36B22FF05C9C800A9A4 /* _WKWebView+Swizzling.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "_WKWebView+Swizzling.m"; path = "Sources/Swizzling/_WKWebView+Swizzling.m"; sourceTree = ""; }; - 2511B396BA7741CEB96EF1491DD3F475 /* Infallible+Bind.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Infallible+Bind.swift"; path = "RxCocoa/Common/Infallible+Bind.swift"; sourceTree = ""; }; - 25306CB11174ABF932E087F3B0125567 /* SDWebImageCacheSerializer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageCacheSerializer.h; path = DDWebImageKit_Private/Classes/SDWebImage/Core/SDWebImageCacheSerializer.h; sourceTree = ""; }; - 2590DF3733DA983E298579A63188E238 /* ZLFetchImageOperation.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ZLFetchImageOperation.swift; path = Sources/General/ZLFetchImageOperation.swift; sourceTree = ""; }; - 25AF0436F289FF57323A476C034B9BFF /* JXCategoryIndicatorComponentView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = JXCategoryIndicatorComponentView.m; path = Sources/Indicator/IndicatorViews/JXCategoryIndicatorComponentView.m; sourceTree = ""; }; - 25DCCEFFC750AA88776DFF9750675C48 /* Platform.Darwin.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Platform.Darwin.swift; path = Platform/Platform.Darwin.swift; sourceTree = ""; }; - 2613CC5C1318C21609FA0B488787160D /* ConcurrentDispatchQueueScheduler.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ConcurrentDispatchQueueScheduler.swift; path = RxSwift/Schedulers/ConcurrentDispatchQueueScheduler.swift; sourceTree = ""; }; - 2618A44ED4407AAC3256C172933E66D4 /* EKWindowProvider.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = EKWindowProvider.swift; path = Source/Infra/EKWindowProvider.swift; sourceTree = ""; }; - 264A17F27670DD59E897CA7093A7EB28 /* ZFLandScapeControlView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = ZFLandScapeControlView.m; path = DDZFPlayerKit_Private/Classes/ControlView/ZFLandScapeControlView.m; sourceTree = ""; }; - 264E9D4606CB7E89815CB6C06ADF44CB /* Bag.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Bag.swift; path = Platform/DataStructures/Bag.swift; sourceTree = ""; }; - 265B9C47BFD7FC058604E4DCD8ABCEC6 /* SharedSequence+Operators.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "SharedSequence+Operators.swift"; path = "RxCocoa/Traits/SharedSequence/SharedSequence+Operators.swift"; sourceTree = ""; }; - 269F0C7384B4FAA210049A05880A496F /* ZFLandscapeViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = ZFLandscapeViewController.m; path = DDZFPlayerKit_Private/Classes/Core/ZFLandscapeViewController.m; sourceTree = ""; }; - 276FCB3090FF281ABEB9B0592649FE1B /* Do.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Do.swift; path = RxSwift/Observables/Do.swift; sourceTree = ""; }; - 2772E18A812044045E3CC46B4E83458B /* SDWebImageMapKit.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageMapKit.h; path = DDWebImageKit_Private/Classes/SDWebImageMapKit/SDWebImageMapKit.h; sourceTree = ""; }; - 2780E787D2A710FCAF49D1DD9E32D720 /* IQUIViewController+Additions.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "IQUIViewController+Additions.swift"; path = "IQKeyboardManagerSwift/Categories/IQUIViewController+Additions.swift"; sourceTree = ""; }; - 27CE2D74D2D69430E8751911AE4D82F7 /* MAPolylineRenderer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MAPolylineRenderer.h; path = AMapNaviKit.framework/Headers/MAPolylineRenderer.h; sourceTree = ""; }; - 27E7547FF32E8AA84FD9515027533089 /* JXCategoryTitleView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JXCategoryTitleView.h; path = Sources/Title/JXCategoryTitleView.h; sourceTree = ""; }; - 281992601356B3F4F6417C8287B50BFF /* ZFSliderView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = ZFSliderView.m; path = DDZFPlayerKit_Private/Classes/ControlView/ZFSliderView.m; sourceTree = ""; }; - 2822D98723585527798A40A918FF4B8F /* ZLCameraConfiguration.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ZLCameraConfiguration.swift; path = Sources/General/ZLCameraConfiguration.swift; sourceTree = ""; }; - 2880E3EB36904501AAA23AD6ADFD2D31 /* IQUITextFieldView+Additions.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "IQUITextFieldView+Additions.swift"; path = "IQKeyboardManagerSwift/Categories/IQUITextFieldView+Additions.swift"; sourceTree = ""; }; - 28F2A012BD8B47C7A49613FD44460EF2 /* EKImageNoteMessageView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = EKImageNoteMessageView.swift; path = Source/MessageViews/Notes/EKImageNoteMessageView.swift; sourceTree = ""; }; - 293293B8514DE28858CDD483523EC213 /* DDNavigationController.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = DDNavigationController.swift; path = DDControlsKit_Private/Classes/DDNavigationController/DDNavigationController.swift; sourceTree = ""; }; - 295BA7ABB139976B1370197291147ECD /* UIImageView+HighlightedWebCache.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIImageView+HighlightedWebCache.m"; path = "DDWebImageKit_Private/Classes/SDWebImage/Core/UIImageView+HighlightedWebCache.m"; sourceTree = ""; }; - 2972545CEC4F4F9BEA12E5A7B532AC29 /* DriveRouteCustomAnnotationView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DriveRouteCustomAnnotationView.h; path = DDMAMapKit_Private/Classes/DDMAMap/AnnotationView/DriveRouteCustomAnnotationView.h; sourceTree = ""; }; - 298E7C69CF0E1E2D29F7465CCF5357AF /* DDTimerKit_Private-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "DDTimerKit_Private-umbrella.h"; sourceTree = ""; }; - 298F2917B57194A0FA8D59E92883D33C /* EKNotificationMessageView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = EKNotificationMessageView.swift; path = Source/MessageViews/EKNotificationMessageView.swift; sourceTree = ""; }; - 29E409982A68F279851BACB50DD74985 /* ElementAt.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ElementAt.swift; path = RxSwift/Observables/ElementAt.swift; sourceTree = ""; }; - 29EF1E2B0028402084A2F8EC3430C4D5 /* JXCategoryTitleVerticalZoomCellModel.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = JXCategoryTitleVerticalZoomCellModel.m; path = Sources/VerticalZoomTitle/JXCategoryTitleVerticalZoomCellModel.m; sourceTree = ""; }; - 29FF2F7FDD9A2FA0F5CB2FB0C041DA77 /* Sources_DDMAMap */ = {isa = PBXFileReference; includeInIndex = 1; name = Sources_DDMAMap; path = DDMAMapKit_Private/Assets/Sources_DDMAMap; sourceTree = ""; }; - 2A2C12D6097430F170F6F2BF85EFFC7D /* ControlProperty+Driver.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "ControlProperty+Driver.swift"; path = "RxCocoa/Traits/Driver/ControlProperty+Driver.swift"; sourceTree = ""; }; - 2A968CA368F745E231382B2336184E5E /* icon_file_type_psd.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = icon_file_type_psd.png; path = Sources/Resources/FileType/icon_file_type_psd.png; sourceTree = ""; }; - 2B12C21812D9A3C9CDBDE663FB81283B /* InfiniteSequence.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = InfiniteSequence.swift; path = Platform/DataStructures/InfiniteSequence.swift; sourceTree = ""; }; - 2B7442746EEAD697A884BA38351787A7 /* SDImageAPNGCoder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageAPNGCoder.h; path = DDWebImageKit_Private/Classes/SDWebImage/Core/SDImageAPNGCoder.h; sourceTree = ""; }; - 2B78F51B3946A9A031199690F69ECC18 /* DDProgressHUDKit_Private-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "DDProgressHUDKit_Private-prefix.pch"; sourceTree = ""; }; - 2B7AD94A38785BA0A3CA37C708DF4F49 /* AMapGeoFenceManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AMapGeoFenceManager.h; path = AMapLocationKit.framework/Headers/AMapGeoFenceManager.h; sourceTree = ""; }; - 2B9826D98C8033619FAAEF30E29B8C16 /* RxCollectionViewDataSourcePrefetchingProxy.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RxCollectionViewDataSourcePrefetchingProxy.swift; path = RxCocoa/iOS/Proxies/RxCollectionViewDataSourcePrefetchingProxy.swift; sourceTree = ""; }; - 2BAC73FCFBDDD704EC694A4C8220D67C /* DDMutableAttributedString.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = DDMutableAttributedString.swift; path = DDControlsKit_Private/Classes/DDAttributedString/DDMutableAttributedString.swift; sourceTree = ""; }; - 2BC68698D933F21C9854CEEC1141FCD7 /* ZLPhotoBrowser.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ZLPhotoBrowser.swift; path = Sources/General/ZLPhotoBrowser.swift; sourceTree = ""; }; - 2C86CF4D58B2DA925C65E7B37167B96D /* SDImageIOAnimatedCoderInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageIOAnimatedCoderInternal.h; path = DDWebImageKit_Private/Classes/SDWebImage/Private/SDImageIOAnimatedCoderInternal.h; sourceTree = ""; }; - 2CFD73BEEA8ED275838D5C27BB757E8E /* DDAF.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = DDAF.swift; path = DDNetworkingOfAlamofireKit_Private/Classes/DDAF.swift; sourceTree = ""; }; - 2D3A19A3AD8076A9E356FE5841DA26D6 /* Queue.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Queue.swift; path = Platform/DataStructures/Queue.swift; sourceTree = ""; }; - 2D4E9CE2748EE1F772D450506DAD3726 /* Zip.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Zip.swift; path = RxSwift/Observables/Zip.swift; sourceTree = ""; }; - 2D86B433CBE7EABF73131A6A2841F24A /* EKAccessoryNoteMessageView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = EKAccessoryNoteMessageView.swift; path = Source/MessageViews/Notes/EKAccessoryNoteMessageView.swift; sourceTree = ""; }; - 2D8A9DCC3AC5504DEC86005191B39191 /* UICollectionViewCell+DDCategory.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UICollectionViewCell+DDCategory.m"; path = "DDCategoryKit_Private/Classes/UICollectionViewCell+DDCategory/UICollectionViewCell+DDCategory.m"; sourceTree = ""; }; - 2DB12039461C90BE59120F9308BDE728 /* UIScrollView+Rx.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "UIScrollView+Rx.swift"; path = "RxCocoa/iOS/UIScrollView+Rx.swift"; sourceTree = ""; }; + 1FF6A2190F5BC06DAB3EDE0EC9E568DC /* JXCategoryView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JXCategoryView.h; path = Sources/JXCategoryView.h; sourceTree = ""; }; + 1FFEB9DBD101C979A602281F0268717E /* _HttpModel.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = _HttpModel.h; path = Sources/Network/_HttpModel.h; sourceTree = ""; }; + 201001FE2E7F75470A9C5261EB1737A2 /* JPushExtension.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = JPushExtension.debug.xcconfig; sourceTree = ""; }; + 204450B88EEC8CB7127CBABDAC239CEB /* icon_file_type_swift.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = icon_file_type_swift.png; path = Sources/Resources/FileType/icon_file_type_swift.png; sourceTree = ""; }; + 209C7786B8D290A570E37DD89F7A39AF /* MAConfig.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MAConfig.h; path = AMapNaviKit.framework/Headers/MAConfig.h; sourceTree = ""; }; + 20A03C612DE994A6D49EFA787201E56C /* DDTimerManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DDTimerManager.m; path = DDTimerKit_Private/Classes/GCDTimer/DDTimerManager.m; sourceTree = ""; }; + 20A5A8739DE24B32F817BAE464B70DB5 /* DDBaseAttributedString.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DDBaseAttributedString.m; path = DDBasicControlsKit_Private/Classes/DDBaseAttributedString/DDBaseAttributedString.m; sourceTree = ""; }; + 20BF68D249255CBA5924A370AFFF23A3 /* BRPickerView-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "BRPickerView-dummy.m"; sourceTree = ""; }; + 20DD9500E206AC788F50F214D1477BFF /* AMapUtility.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AMapUtility.h; path = AMapFoundationKit.framework/Headers/AMapUtility.h; sourceTree = ""; }; + 215CC79531E391F07DE015AA33CFB2E8 /* DDCategoryKit_Private.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = DDCategoryKit_Private.release.xcconfig; sourceTree = ""; }; + 217A3F47E0ED06D5240BAC62AB674F29 /* Constraint.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Constraint.swift; path = Sources/Constraint.swift; sourceTree = ""; }; + 218D8DEDCD6779141087671AC994C457 /* RxRelay-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RxRelay-umbrella.h"; sourceTree = ""; }; + 219550FC122E9A2EB48E2907A147B61A /* SubscribeOn.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SubscribeOn.swift; path = RxSwift/Observables/SubscribeOn.swift; sourceTree = ""; }; + 21B56EB683131E3D51455D09E281E248 /* AutoUI.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AutoUI.swift; path = DDAutoUIKit_Private/Classes/AutoUI.swift; sourceTree = ""; }; + 21D90E7DE1BC82090A16646FBB4F387E /* ControlEvent+Driver.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "ControlEvent+Driver.swift"; path = "RxCocoa/Traits/Driver/ControlEvent+Driver.swift"; sourceTree = ""; }; + 21EAA4200B1BC577C63DDD2A0956529C /* KFOptionsSetter.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = KFOptionsSetter.swift; path = Sources/General/KFOptionsSetter.swift; sourceTree = ""; }; + 220B08D91C45356936B60DB764408CBD /* DDImageView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = DDImageView.swift; path = DDControlsKit_Private/Classes/DDImageView/DDImageView.swift; sourceTree = ""; }; + 220EFE05869DC5FC82720927226B6108 /* Kingfisher.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Kingfisher.swift; path = Sources/General/Kingfisher.swift; sourceTree = ""; }; + 220F980BF3510D48A3600174AE08B317 /* DDNetworkingOfAlamofireKit_Private.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = DDNetworkingOfAlamofireKit_Private.modulemap; sourceTree = ""; }; + 2240004E214742F724048FEBB381CEFE /* ZLPhotoBrowser.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = ZLPhotoBrowser.modulemap; sourceTree = ""; }; + 225E1EF48B1C673BC3CC2358A43544DD /* DDImage.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = DDImage.swift; path = DDControlsKit_Private/Classes/DDImage/DDImage.swift; sourceTree = ""; }; + 228A503DFD6BB758F51C5BF9567E4689 /* EKMessageContentView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = EKMessageContentView.swift; path = Source/MessageViews/EKMessageContentView.swift; sourceTree = ""; }; + 228E06BCCD29CA590DFE2DC1C17771D9 /* icon_file_type_aac@3x.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = "icon_file_type_aac@3x.png"; path = "Sources/Resources/FileType/icon_file_type_aac@3x.png"; sourceTree = ""; }; + 22A573740B3FB668872A230C87084151 /* UIImageView+HighlightedWebCache.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIImageView+HighlightedWebCache.m"; path = "DDWebImageKit_Private/Classes/SDWebImage/Core/UIImageView+HighlightedWebCache.m"; sourceTree = ""; }; + 22C59F709190982BA742B1CD33C97A05 /* DDControlsKit_Private-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "DDControlsKit_Private-dummy.m"; sourceTree = ""; }; + 2339DEAEE8B0E5D7735D157456B33E7A /* JXCategoryTitleImageView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = JXCategoryTitleImageView.m; path = Sources/TitleImage/JXCategoryTitleImageView.m; sourceTree = ""; }; + 234B50B3C07DF6F1E476438BB3989711 /* CombineLatest.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CombineLatest.swift; path = RxSwift/Observables/CombineLatest.swift; sourceTree = ""; }; + 23DAFF480155F8321A62D048F6E5AE12 /* SDWebImageOperation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageOperation.h; path = DDWebImageKit_Private/Classes/SDWebImage/Core/SDWebImageOperation.h; sourceTree = ""; }; + 23FC7EB2D5A56E98EE7EF219D746E075 /* GPBMessage+CocoaDebug.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "GPBMessage+CocoaDebug.m"; path = "Sources/Categories/GPBMessage+CocoaDebug.m"; sourceTree = ""; }; + 24074D619CA979F76AB1D2FD1CCA6091 /* Bag.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Bag.swift; path = Platform/DataStructures/Bag.swift; sourceTree = ""; }; + 2550FA68CA1F2825A7407919D3C9718B /* icon_file_type_pdf.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = icon_file_type_pdf.png; path = Sources/Resources/FileType/icon_file_type_pdf.png; sourceTree = ""; }; + 2559F26C75D13C13FF2804382D3F59C7 /* SDImageAWebPCoder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageAWebPCoder.h; path = DDWebImageKit_Private/Classes/SDWebImage/Core/SDImageAWebPCoder.h; sourceTree = ""; }; + 256DE73C9DFEE06EDCAE15BE175F35B5 /* SDWebImageIndicator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageIndicator.h; path = DDWebImageKit_Private/Classes/SDWebImage/Core/SDWebImageIndicator.h; sourceTree = ""; }; + 258B73C6E8DE4E718D2A24E12AD1FC0B /* icon_file_type_md@2x.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = "icon_file_type_md@2x.png"; path = "Sources/Resources/FileType/icon_file_type_md@2x.png"; sourceTree = ""; }; + 25A8E9EF72D728BBB7654A49861F5F0C /* PublishRelay.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = PublishRelay.swift; path = RxRelay/PublishRelay.swift; sourceTree = ""; }; + 25CE2BA63C25949DF6EBF85CA3252EA9 /* MAOfflineItem.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MAOfflineItem.h; path = AMapNaviKit.framework/Headers/MAOfflineItem.h; sourceTree = ""; }; + 267A6FECF244137AB746AB45FDF9B2C4 /* UIImage+GIF.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImage+GIF.h"; path = "DDWebImageKit_Private/Classes/SDWebImage/Core/UIImage+GIF.h"; sourceTree = ""; }; + 26D87AF29A25D07A11AC756180D366FE /* UISwitch+Rx.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "UISwitch+Rx.swift"; path = "RxCocoa/iOS/UISwitch+Rx.swift"; sourceTree = ""; }; + 271F134082BD15FA423EB93E89C3CDFD /* DDProgressHUDKit_Private.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = DDProgressHUDKit_Private.modulemap; sourceTree = ""; }; + 2729A4BCD82EA750A1D70000A7961A2D /* AMapNaviWalkManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AMapNaviWalkManager.h; path = AMapNaviKit.framework/Headers/AMapNaviWalkManager.h; sourceTree = ""; }; + 27773BEB035B7035D67F1895E0590AEA /* JXCategoryTitleImageCell.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = JXCategoryTitleImageCell.m; path = Sources/TitleImage/JXCategoryTitleImageCell.m; sourceTree = ""; }; + 28073DB9492B9394CBD97BEB22692694 /* LayoutConstraint.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = LayoutConstraint.swift; path = Sources/LayoutConstraint.swift; sourceTree = ""; }; + 282D6F906448283595CF9242D0D039CF /* UIView+ZFFrame.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIView+ZFFrame.m"; path = "DDZFPlayerKit_Private/Classes/ControlView/UIView+ZFFrame.m"; sourceTree = ""; }; + 284A75AE5C0CC6970B534ABE1C67EE62 /* Observable+Concurrency.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Observable+Concurrency.swift"; path = "RxSwift/Observable+Concurrency.swift"; sourceTree = ""; }; + 285760309CF5F791567CBD6CC87EAB8E /* AMap.bundle */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = "wrapper.plug-in"; name = AMap.bundle; path = AMapNaviKit.framework/AMap.bundle; sourceTree = ""; }; + 287776366F66CE2E5C743C88821272D7 /* UISegmentedControl+Rx.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "UISegmentedControl+Rx.swift"; path = "RxCocoa/iOS/UISegmentedControl+Rx.swift"; sourceTree = ""; }; + 287FF81E0535DE3C8714ACC342C0C50B /* CrashDetailViewController.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CrashDetailViewController.swift; path = Sources/App/CrashDetailViewController.swift; sourceTree = ""; }; + 28972A447326ADCBC1C6971066AC8BFF /* SDImageCacheDefine.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageCacheDefine.h; path = DDWebImageKit_Private/Classes/SDWebImage/Core/SDImageCacheDefine.h; sourceTree = ""; }; + 28A65AC2858558F85D9E83C7A5957D51 /* SDImageCoder.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageCoder.m; path = DDWebImageKit_Private/Classes/SDWebImage/Core/SDImageCoder.m; sourceTree = ""; }; + 28B9E3EAC7A6B0D0D40B66514615C6A3 /* AMapLocation-NO-IDFA.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "AMapLocation-NO-IDFA.release.xcconfig"; sourceTree = ""; }; + 290717E907B1D25158CDF40E3C8C1BAD /* ImageProcessor.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ImageProcessor.swift; path = Sources/Image/ImageProcessor.swift; sourceTree = ""; }; + 2931432B02D8C3AA6179C4C8F9E191E6 /* EKBackgroundView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = EKBackgroundView.swift; path = Source/Infra/EKBackgroundView.swift; sourceTree = ""; }; + 293FD0FF0091E79D0E773974C7E681FE /* DDControlsKit_Private.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = DDControlsKit_Private.release.xcconfig; sourceTree = ""; }; + 29454470DF2916CF8CB483820556BA06 /* UIScrollView+ZFPlayer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIScrollView+ZFPlayer.h"; path = "DDZFPlayerKit_Private/Classes/Core/UIScrollView+ZFPlayer.h"; sourceTree = ""; }; + 2957132475FD88FB6D7EA45136D9EEDF /* SingleAssignmentDisposable.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SingleAssignmentDisposable.swift; path = RxSwift/Disposables/SingleAssignmentDisposable.swift; sourceTree = ""; }; + 298419DB3264DE676E6D8F2EC86D9782 /* NSMutableAttributedString+DDCategory.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSMutableAttributedString+DDCategory.m"; path = "DDCategoryKit_Private/Classes/NSAttributedString+DDCategory/NSMutableAttributedString+DDCategory.m"; sourceTree = ""; }; + 299FB9B4E9B6E497E0DD2A24010319FA /* SDImageIOCoder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageIOCoder.h; path = DDWebImageKit_Private/Classes/SDWebImage/Core/SDImageIOCoder.h; sourceTree = ""; }; + 29B77B2A50E70A2207E2F082CBFCA2D2 /* KFImageProtocol.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = KFImageProtocol.swift; path = Sources/SwiftUI/KFImageProtocol.swift; sourceTree = ""; }; + 29F7692B46F83B2EC59E1023BE2D6A10 /* AMapTrackError.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AMapTrackError.h; path = AMapTrackKit.framework/Headers/AMapTrackError.h; sourceTree = ""; }; + 2A2992EB1D0FD3CA7E85F6867C2A7865 /* UICollectionViewCell+DDCategory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UICollectionViewCell+DDCategory.h"; path = "DDCategoryKit_Private/Classes/UICollectionViewCell+DDCategory/UICollectionViewCell+DDCategory.h"; sourceTree = ""; }; + 2A306642D3099DB598CFB71871466DFC /* Sequence.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Sequence.swift; path = RxSwift/Observables/Sequence.swift; sourceTree = ""; }; + 2A582DA9EEE16260A1978792FC5C8EEE /* DDBaseImageView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DDBaseImageView.m; path = DDBasicControlsKit_Private/Classes/DDBaseImageView/DDBaseImageView.m; sourceTree = ""; }; + 2A758DA2AB2E74B049A5AA789BA8EFA2 /* ZLImageStickerView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ZLImageStickerView.swift; path = Sources/Edit/ZLImageStickerView.swift; sourceTree = ""; }; + 2ACBDEC4BFB5FD6C1AB0C2D6A6B69E53 /* _RunloopMonitor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = _RunloopMonitor.h; path = Sources/Monitor/_RunloopMonitor.h; sourceTree = ""; }; + 2AE01637CD4A740775EE7724E440C324 /* JXCategoryIndicatorLineView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = JXCategoryIndicatorLineView.m; path = Sources/Indicator/IndicatorViews/JXCategoryIndicatorLineView.m; sourceTree = ""; }; + 2AF5CBD0F440D679D5565588C8E49813 /* NetworkReachabilityManager.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = NetworkReachabilityManager.swift; path = Source/NetworkReachabilityManager.swift; sourceTree = ""; }; + 2B6C54D2C43607382EEE18AF27E6363C /* AMapNaviStatisticsInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AMapNaviStatisticsInfo.h; path = AMapNaviKit.framework/Headers/AMapNaviStatisticsInfo.h; sourceTree = ""; }; + 2B9388EA5679B8423659A7DAE0A15739 /* icon_file_type_wmv@2x.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = "icon_file_type_wmv@2x.png"; path = "Sources/Resources/FileType/icon_file_type_wmv@2x.png"; sourceTree = ""; }; + 2BDA0D63648A34DED79D18531DA13454 /* icon_file_type_bin.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = icon_file_type_bin.png; path = Sources/Resources/FileType/icon_file_type_bin.png; sourceTree = ""; }; + 2C269B70B5D9AC322070A70CC295C1B3 /* RequestTaskMap.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RequestTaskMap.swift; path = Source/RequestTaskMap.swift; sourceTree = ""; }; + 2C315F24956CBAE8C22716422A20E129 /* SynchronizedOnType.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SynchronizedOnType.swift; path = RxSwift/Concurrency/SynchronizedOnType.swift; sourceTree = ""; }; + 2CCA5C8C7B7BC8507124A50FE7913A08 /* ZLPhotoManager.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ZLPhotoManager.swift; path = Sources/General/ZLPhotoManager.swift; sourceTree = ""; }; + 2D5BD207DDC2BB71CF6AD98D6249DF75 /* RxMutableBox.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RxMutableBox.swift; path = RxSwift/RxMutableBox.swift; sourceTree = ""; }; + 2D5E412B9217D6F1994258AE97A9F8EA /* EntryAppearanceDescriptor.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = EntryAppearanceDescriptor.swift; path = Source/MessageViews/MessagesUtils/EntryAppearanceDescriptor.swift; sourceTree = ""; }; + 2D784F0B890FA08BEE1A9B1AA1F26F22 /* IgnoredURLsViewController.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = IgnoredURLsViewController.swift; path = Sources/App/IgnoredURLsViewController.swift; sourceTree = ""; }; + 2D9E31610650710F7BC36E4841250D5A /* icon_file_type_bin@3x.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = "icon_file_type_bin@3x.png"; path = "Sources/Resources/FileType/icon_file_type_bin@3x.png"; sourceTree = ""; }; 2DE47AF6516BB19369CA020EA7C48A4A /* DDNetworkingOfAlamofireKit_Private */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = DDNetworkingOfAlamofireKit_Private; path = libDDNetworkingOfAlamofireKit_Private.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 2DEB0CCDAA83959F95B045476EBF88CC /* DDLogKit_Private.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = DDLogKit_Private.release.xcconfig; sourceTree = ""; }; - 2E0CBEE1059BA5738E7F12343ACDFE6C /* SessionDelegate.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SessionDelegate.swift; path = Sources/Networking/SessionDelegate.swift; sourceTree = ""; }; - 2E19F8EC5AEF8B6DA51F5B7C83E3CE84 /* ConstraintViewDSL.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ConstraintViewDSL.swift; path = Sources/ConstraintViewDSL.swift; sourceTree = ""; }; - 2E34106E13D2A4F08D288D3FB093CC0C /* icon_file_type_plist@2x.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = "icon_file_type_plist@2x.png"; path = "Sources/Resources/FileType/icon_file_type_plist@2x.png"; sourceTree = ""; }; - 2E9E15FA3C186EDC5CE285DB48F974F6 /* ImageModifier.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ImageModifier.swift; path = Sources/Networking/ImageModifier.swift; sourceTree = ""; }; - 2EA47AB222A409BDE78579018712387D /* DDLabel.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = DDLabel.swift; path = DDControlsKit_Private/Classes/DDLabel/DDLabel.swift; sourceTree = ""; }; - 2ED304FD354A46BBB0357C259A43DA69 /* PriorityQueue.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = PriorityQueue.swift; path = Platform/DataStructures/PriorityQueue.swift; sourceTree = ""; }; - 2EDE4DBA223269FB2619AD1B3A4DD207 /* icon_file_type_sql@2x.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = "icon_file_type_sql@2x.png"; path = "Sources/Resources/FileType/icon_file_type_sql@2x.png"; sourceTree = ""; }; - 2F12ABD17B372F30CA44D51EE4CD0D57 /* ZFPresentTransition.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = ZFPresentTransition.m; path = DDZFPlayerKit_Private/Classes/Core/ZFPresentTransition.m; sourceTree = ""; }; - 2F21B2DA027EF508CCEE43A78A481B58 /* SDWeakProxy.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWeakProxy.h; path = DDWebImageKit_Private/Classes/SDWebImage/Private/SDWeakProxy.h; sourceTree = ""; }; - 2F9F8BE3B45CB25C249DA4546AC7F205 /* DDNavigationControllerDelegateReceiver.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DDNavigationControllerDelegateReceiver.h; path = DDBasicControlsKit_Private/Classes/DDBaseNavigationController/DDNavigationControllerDelegateReceiver.h; sourceTree = ""; }; - 2FBE37B06DA11AF218CCA364D1196A1D /* EKAlertMessage.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = EKAlertMessage.swift; path = Source/Model/EKAlertMessage.swift; sourceTree = ""; }; - 2FC18F93C01AACA7672DE739095818F1 /* SDAnimatedImagePlayer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDAnimatedImagePlayer.m; path = DDWebImageKit_Private/Classes/SDWebImage/Core/SDAnimatedImagePlayer.m; sourceTree = ""; }; - 2FCD87A9BB80BC1896C50ED7AE52E866 /* CrashListViewController.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CrashListViewController.swift; path = Sources/App/CrashListViewController.swift; sourceTree = ""; }; - 2FD3FC36E3D3F782A45C3A05D9AE93E3 /* Disposables.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Disposables.swift; path = RxSwift/Disposables/Disposables.swift; sourceTree = ""; }; - 2FD66B4B8F4058CF3C142787E2CCA624 /* SDDisplayLink.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDDisplayLink.h; path = DDWebImageKit_Private/Classes/SDWebImage/Private/SDDisplayLink.h; sourceTree = ""; }; - 2FF4E2C66F779B0E96396FB9B9C8EF00 /* icon_file_type_dmg@3x.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = "icon_file_type_dmg@3x.png"; path = "Sources/Resources/FileType/icon_file_type_dmg@3x.png"; sourceTree = ""; }; - 30115739D9B44BC4F80115251FC946C6 /* JXCategoryImageCellModel.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = JXCategoryImageCellModel.m; path = Sources/Image/JXCategoryImageCellModel.m; sourceTree = ""; }; - 301E17C25285F8B535881FA9DE9EBD9A /* DDFontKit_Private-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "DDFontKit_Private-prefix.pch"; sourceTree = ""; }; - 302226A01B6263411313C2D564EFF41C /* MAHeatMapVectorOverlay.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MAHeatMapVectorOverlay.h; path = AMapNaviKit.framework/Headers/MAHeatMapVectorOverlay.h; sourceTree = ""; }; - 30460916A489847207305A969F5EADDD /* SDDeviceHelper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDDeviceHelper.h; path = DDWebImageKit_Private/Classes/SDWebImage/Private/SDDeviceHelper.h; sourceTree = ""; }; - 30487A02003E2982F7257B2FB466B17E /* ZLPhotoManager.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ZLPhotoManager.swift; path = Sources/General/ZLPhotoManager.swift; sourceTree = ""; }; - 305F31761A21E4F18644A4263A696595 /* UIViewController+ZLPhotoBrowser.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "UIViewController+ZLPhotoBrowser.swift"; path = "Sources/Extensions/UIViewController+ZLPhotoBrowser.swift"; sourceTree = ""; }; - 30650FB6BF01A575C3893CF409554DC6 /* BRAddressModel.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = BRAddressModel.h; path = BRPickerView/AddressPickerView/BRAddressModel.h; sourceTree = ""; }; - 30B17E28F952077D6B053CD903A984E4 /* UINavigationBar+DDCategory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UINavigationBar+DDCategory.h"; path = "DDCategoryKit_Private/Classes/UINavigationBar+DDCategory/UINavigationBar+DDCategory.h"; sourceTree = ""; }; - 31135D74DE43F56B833FA3003DA1F2B0 /* CocoaDebugViewController.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CocoaDebugViewController.swift; path = Sources/Window/CocoaDebugViewController.swift; sourceTree = ""; }; - 312DAEEB8FA6B38AD971360E60804BF3 /* icon_file_type_md.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = icon_file_type_md.png; path = Sources/Resources/FileType/icon_file_type_md.png; sourceTree = ""; }; - 312E4EFB5D10B7E6432A7C7B75B6A4B3 /* JXCategoryViewDefines.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JXCategoryViewDefines.h; path = Sources/Common/JXCategoryViewDefines.h; sourceTree = ""; }; - 3192DF6E8DB6C83CD68CF30344FC35A1 /* SDMemoryCache.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDMemoryCache.m; path = DDWebImageKit_Private/Classes/SDWebImage/Core/SDMemoryCache.m; sourceTree = ""; }; - 31B252904BEF2E19729BA1328A5AF8A1 /* BinaryDisposable.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = BinaryDisposable.swift; path = RxSwift/Disposables/BinaryDisposable.swift; sourceTree = ""; }; - 31BD6DB490AAECA93C96E037CE0D1C1B /* _SwiftLogHelper.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = _SwiftLogHelper.swift; path = Sources/Logs/_SwiftLogHelper.swift; sourceTree = ""; }; - 31EF176FBB0F8964B8DECAA699ECA2C3 /* NSBezierPath+SDRoundedCorners.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSBezierPath+SDRoundedCorners.h"; path = "DDWebImageKit_Private/Classes/SDWebImage/Private/NSBezierPath+SDRoundedCorners.h"; sourceTree = ""; }; - 3215DC35606AF196664637BFCB58CE56 /* DDWebImageKit_Private-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "DDWebImageKit_Private-prefix.pch"; sourceTree = ""; }; - 321C95BEA3D10060E37B7CAFC48C79D1 /* DDOCLog.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DDOCLog.h; path = DDLogKit_Private/Classes/OCLog/DDOCLog.h; sourceTree = ""; }; - 3220E09C10AAE1A04BCEEEF41907571C /* ImageDownloaderDelegate.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ImageDownloaderDelegate.swift; path = Sources/Networking/ImageDownloaderDelegate.swift; sourceTree = ""; }; - 323813316A3B36A8F5BE51DF84560164 /* MJRefresh-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "MJRefresh-prefix.pch"; sourceTree = ""; }; - 3260F06FAF27DF578FF87E0FC57AB5A6 /* DelegateProxyType.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = DelegateProxyType.swift; path = RxCocoa/Common/DelegateProxyType.swift; sourceTree = ""; }; - 3264EDB39C5B15343D3B3D81606599DF /* AMapLocationCommonObj.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AMapLocationCommonObj.h; path = AMapLocationKit.framework/Headers/AMapLocationCommonObj.h; sourceTree = ""; }; - 32AD9AAD918675886997C865EB01C560 /* BRPickerStyle.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = BRPickerStyle.m; path = BRPickerView/Base/BRPickerStyle.m; sourceTree = ""; }; - 33111DC36691DBBC9AA31B540B5C50FF /* Just.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Just.swift; path = RxSwift/Observables/Just.swift; sourceTree = ""; }; - 3323CDD98F028743B69F315E539F995A /* ZFPersentInteractiveTransition.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ZFPersentInteractiveTransition.h; path = DDZFPlayerKit_Private/Classes/Core/ZFPersentInteractiveTransition.h; sourceTree = ""; }; - 3324EAB72243EC9E692F12F006A81E5E /* NSBezierPath+SDRoundedCorners.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSBezierPath+SDRoundedCorners.m"; path = "DDWebImageKit_Private/Classes/SDWebImage/Private/NSBezierPath+SDRoundedCorners.m"; sourceTree = ""; }; - 33C35B0F6BF9962B5D5512C471F442A5 /* DDBaseNavigationController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DDBaseNavigationController.m; path = DDBasicControlsKit_Private/Classes/DDBaseNavigationController/DDBaseNavigationController.m; sourceTree = ""; }; - 33FB6BBD6577CE8AA75501DE98096B43 /* UIRefreshControl+Rx.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "UIRefreshControl+Rx.swift"; path = "RxCocoa/iOS/UIRefreshControl+Rx.swift"; sourceTree = ""; }; - 341D4A9129D1C36C9E998C782C5121E8 /* icon_file_type_js@2x.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = "icon_file_type_js@2x.png"; path = "Sources/Resources/FileType/icon_file_type_js@2x.png"; sourceTree = ""; }; - 347E31251D7BE4DFA0012871BBEC83E1 /* Rx.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Rx.swift; path = RxSwift/Rx.swift; sourceTree = ""; }; - 34A6FB4EE1685DF82C959C6E48987ABD /* DDCollectionView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = DDCollectionView.swift; path = DDControlsKit_Private/Classes/DDCollectionView/DDCollectionView.swift; sourceTree = ""; }; - 34DB3C7C2C808D7F616389BBE299368D /* URLSession+Rx.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "URLSession+Rx.swift"; path = "RxCocoa/Foundation/URLSession+Rx.swift"; sourceTree = ""; }; - 34ED5BABFE6115D026F43572B7B34BE2 /* DDBaseSwitch.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DDBaseSwitch.m; path = DDBasicControlsKit_Private/Classes/DDBaseSwitch/DDBaseSwitch.m; sourceTree = ""; }; - 352B898D9BC4572ADD2419D306C8A932 /* ESTabBarController-swift.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "ESTabBarController-swift.release.xcconfig"; sourceTree = ""; }; - 354300E4CEE433C0FF5F6DAF9C9A625F /* EKStyleView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = EKStyleView.swift; path = Source/Infra/EKStyleView.swift; sourceTree = ""; }; - 35794E220098A63DB0593ACF4BFF7120 /* DDWebImageKit_Private.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = DDWebImageKit_Private.debug.xcconfig; sourceTree = ""; }; - 3582E080BDF893D920DB67A390787C11 /* DDCategoryKit_Private.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = DDCategoryKit_Private.debug.xcconfig; sourceTree = ""; }; - 358B5CD65E59043F8AF6D2CAEF071C1D /* DriveRouteCustomAnnotation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DriveRouteCustomAnnotation.m; path = DDMAMapKit_Private/Classes/DDMAMap/Annotation/DriveRouteCustomAnnotation.m; sourceTree = ""; }; - 35B93DA72DAAC889111F0ED6EBD3FF5C /* JXCategoryTitleVerticalZoomCell.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JXCategoryTitleVerticalZoomCell.h; path = Sources/VerticalZoomTitle/JXCategoryTitleVerticalZoomCell.h; sourceTree = ""; }; + 2DFD157A69FA887263CCFBECF788059E /* DDNetworkingOfAlamofireKit_Private.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = DDNetworkingOfAlamofireKit_Private.debug.xcconfig; sourceTree = ""; }; + 2F0988B1C29A7765529195ECCE4B347C /* DDBaseLabel.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DDBaseLabel.h; path = DDBasicControlsKit_Private/Classes/DDBaseLabel/DDBaseLabel.h; sourceTree = ""; }; + 2F13DD16495EEB7383D65B0DE3777908 /* _DeviceUtil.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = _DeviceUtil.h; path = Sources/Core/_DeviceUtil.h; sourceTree = ""; }; + 2F21EBD44736E2BD6DCCB9933EC40AFA /* RxCocoa.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RxCocoa.debug.xcconfig; sourceTree = ""; }; + 2F5C6384B92BDC0EF9898E50D396EBB9 /* DDMALocationManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DDMALocationManager.m; path = DDMAMapKit_Private/Classes/DDMALocation/DDMALocationManager.m; sourceTree = ""; }; + 2F91E187CB44F351CC91D0D87E3C0740 /* DDColorKit_Private-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "DDColorKit_Private-umbrella.h"; sourceTree = ""; }; + 2FAD6FC15974DBA0FF12BECCEA235872 /* Infallible+Concurrency.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Infallible+Concurrency.swift"; path = "RxSwift/Traits/Infallible/Infallible+Concurrency.swift"; sourceTree = ""; }; + 2FB5AED4E0E34C321B6B0FC045FB50E1 /* SDImageLoadersManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageLoadersManager.h; path = DDWebImageKit_Private/Classes/SDWebImage/Core/SDImageLoadersManager.h; sourceTree = ""; }; + 2FD8E484865FA498F66314A905125C8B /* BRPickerView-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "BRPickerView-prefix.pch"; sourceTree = ""; }; + 30074B228CDED11286106CC3F20A738D /* Producer.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Producer.swift; path = RxSwift/Observables/Producer.swift; sourceTree = ""; }; + 30167188FE0F96121D70392E4927EE2A /* EKRootViewController.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = EKRootViewController.swift; path = Source/Infra/EKRootViewController.swift; sourceTree = ""; }; + 306B5097D2023FAFEE069E00E5F37E8B /* UIScrollView+Rx.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "UIScrollView+Rx.swift"; path = "RxCocoa/iOS/UIScrollView+Rx.swift"; sourceTree = ""; }; + 3079BDBC39DC920BE63AC7B72F911AFB /* IQKeyboardManager+Debug.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "IQKeyboardManager+Debug.swift"; path = "IQKeyboardManagerSwift/IQKeyboardManager+Debug.swift"; sourceTree = ""; }; + 307E5CB92817A8ED6BA1C343E10F7710 /* ImageFormat.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ImageFormat.swift; path = Sources/Image/ImageFormat.swift; sourceTree = ""; }; + 309B95795D2946559604CB5DFF233BAB /* DDBaseView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DDBaseView.h; path = DDBasicControlsKit_Private/Classes/DDBaseView/DDBaseView.h; sourceTree = ""; }; + 30B7E097BD7EB89267D1E9FFAAA85377 /* MJRefreshGifHeader.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MJRefreshGifHeader.m; path = MJRefresh/Custom/Header/MJRefreshGifHeader.m; sourceTree = ""; }; + 310BD972647078EAFEE4033CAB1E1BF2 /* NSURL+DDCategory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSURL+DDCategory.h"; path = "DDCategoryKit_Private/Classes/NSUrl+DDCategory/NSURL+DDCategory.h"; sourceTree = ""; }; + 31399BE894DE54CCC13A350A91A3AFCC /* MAPolylineRenderer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MAPolylineRenderer.h; path = AMapNaviKit.framework/Headers/MAPolylineRenderer.h; sourceTree = ""; }; + 316AAE1BE99812898FF20FC3A059CAF4 /* KingfisherOptionsInfo.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = KingfisherOptionsInfo.swift; path = Sources/General/KingfisherOptionsInfo.swift; sourceTree = ""; }; + 31C236674516F1DD1B6E389C4495E2D1 /* JXCategoryTitleCellModel.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JXCategoryTitleCellModel.h; path = Sources/Title/JXCategoryTitleCellModel.h; sourceTree = ""; }; + 31E9229CC74C809BECB976F679F909D0 /* Signal+Subscription.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Signal+Subscription.swift"; path = "RxCocoa/Traits/Signal/Signal+Subscription.swift"; sourceTree = ""; }; + 3253A48250A568F9630A876E7FB10B7B /* icon_file_type_db@2x.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = "icon_file_type_db@2x.png"; path = "Sources/Resources/FileType/icon_file_type_db@2x.png"; sourceTree = ""; }; + 3257B81B4F0A8F09BFC22CB35AAC7B8A /* icon_file_type_fla@3x.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = "icon_file_type_fla@3x.png"; path = "Sources/Resources/FileType/icon_file_type_fla@3x.png"; sourceTree = ""; }; + 325B30380D5C72F7F127B8CAE5EBBD48 /* SwiftEntryKit.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = SwiftEntryKit.release.xcconfig; sourceTree = ""; }; + 3262A38D15455C3CD8573E7E8510736C /* MAOfflineItemNationWide.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MAOfflineItemNationWide.h; path = AMapNaviKit.framework/Headers/MAOfflineItemNationWide.h; sourceTree = ""; }; + 32851633BA08A836ACC460464B779055 /* RxSwift-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RxSwift-dummy.m"; sourceTree = ""; }; + 329983FBAD877C72DFDC31213FCB950D /* ZFFloatView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ZFFloatView.h; path = DDZFPlayerKit_Private/Classes/Core/ZFFloatView.h; sourceTree = ""; }; + 32A060FA06912DEF08C14B2CAF8AC48C /* StringEncoding+Alamofire.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "StringEncoding+Alamofire.swift"; path = "Source/StringEncoding+Alamofire.swift"; sourceTree = ""; }; + 32C7A9E91D346601A6EFB63D978F7376 /* DDViewControllerAnimatedTransition.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DDViewControllerAnimatedTransition.h; path = DDBasicControlsKit_Private/Classes/DDBaseAnimation/DDTransitionAnimation/DDViewControllerAnimatedTransition.h; sourceTree = ""; }; + 32C94E2EE6DAE9656DA7E84EEBAF76FB /* AnimatedImageView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AnimatedImageView.swift; path = Sources/Views/AnimatedImageView.swift; sourceTree = ""; }; + 32C9F0A42AD073DAFC7CBD5FA97A23CD /* _ImageController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = _ImageController.h; path = Sources/Sandbox/_ImageController.h; sourceTree = ""; }; + 331D98EB620C01F424B96A5DA29C60C0 /* Driver+Subscription.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Driver+Subscription.swift"; path = "RxCocoa/Traits/Driver/Driver+Subscription.swift"; sourceTree = ""; }; + 33AF4A4F3F05BADD5DE4322A519DDA38 /* icon_file_type_mp3@2x.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = "icon_file_type_mp3@2x.png"; path = "Sources/Resources/FileType/icon_file_type_mp3@2x.png"; sourceTree = ""; }; + 33C527167BCA8278B0CAC9FF9477E7EE /* Concurrency.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Concurrency.swift; path = Source/Concurrency.swift; sourceTree = ""; }; + 33E080EE7742C6CA6040857FC0687A7D /* BehaviorRelay+Driver.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "BehaviorRelay+Driver.swift"; path = "RxCocoa/Traits/Driver/BehaviorRelay+Driver.swift"; sourceTree = ""; }; + 33E5CCEAB5526862A8A29B3035E9EBC2 /* BRBaseView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = BRBaseView.m; path = BRPickerView/Base/BRBaseView.m; sourceTree = ""; }; + 3464A788AA37444E4A426865192CC254 /* SDWebImage.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImage.h; path = DDWebImageKit_Private/Classes/SDWebImage/SDWebImage.h; sourceTree = ""; }; + 347EE4400E1618809DE4560F1E371F05 /* JXCategoryFactory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JXCategoryFactory.h; path = Sources/Common/JXCategoryFactory.h; sourceTree = ""; }; + 34C33529746B8713CF757051EF3C5895 /* icon_file_type_xml@2x.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = "icon_file_type_xml@2x.png"; path = "Sources/Resources/FileType/icon_file_type_xml@2x.png"; sourceTree = ""; }; + 34C3553AF01E9B43887AAFA045BEDDEC /* _FileTableViewCell.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = _FileTableViewCell.h; path = Sources/Sandbox/_FileTableViewCell.h; sourceTree = ""; }; + 34F47DCCF2222D26B7FE66FED44314FA /* SDWebImageManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageManager.m; path = DDWebImageKit_Private/Classes/SDWebImage/Core/SDWebImageManager.m; sourceTree = ""; }; + 355B205914EB41526BE542CC4950AAB0 /* String+ZLPhotoBrowser.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "String+ZLPhotoBrowser.swift"; path = "Sources/Extensions/String+ZLPhotoBrowser.swift"; sourceTree = ""; }; + 356ABE7F25D61387B8A46B5A3317D50C /* IQKeyboardManagerSwift.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = IQKeyboardManagerSwift.debug.xcconfig; sourceTree = ""; }; 35BC09180850FDD03C450D14BD310714 /* DDProgressHUDKit_Private */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = DDProgressHUDKit_Private; path = libDDProgressHUDKit_Private.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 366CAA289B0930DF3D88DB4017B53B1B /* ZLEditToolCells.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ZLEditToolCells.swift; path = Sources/Edit/ZLEditToolCells.swift; sourceTree = ""; }; - 36AA618314DFD2989EEE128388502F23 /* icon_file_type_aac@3x.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = "icon_file_type_aac@3x.png"; path = "Sources/Resources/FileType/icon_file_type_aac@3x.png"; sourceTree = ""; }; - 36C06656691E948FADC5D5A2EFB9EBC3 /* DDViewControllerAnimatedTransition.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DDViewControllerAnimatedTransition.m; path = DDBasicControlsKit_Private/Classes/DDBaseAnimation/DDTransitionAnimation/DDViewControllerAnimatedTransition.m; sourceTree = ""; }; - 36C3D0130B0C9328DED201E5FC5CD14E /* NSObject+CocoaDebug.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSObject+CocoaDebug.m"; path = "Sources/Categories/NSObject+CocoaDebug.m"; sourceTree = ""; }; - 36E8EA2555C5D3F0E54974CE64426B26 /* MJRefreshHeader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MJRefreshHeader.h; path = MJRefresh/Base/MJRefreshHeader.h; sourceTree = ""; }; - 374FF37024A1CF70C5461B4B183E1FFE /* AMapLocationKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; path = AMapLocationKit.framework; sourceTree = ""; }; - 375D3CCB9C653E2FD6F2AFAC6DB142A0 /* AMapURLSearchConfig.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AMapURLSearchConfig.h; path = AMapFoundationKit.framework/Headers/AMapURLSearchConfig.h; sourceTree = ""; }; - 379DD1FBC15F56FCB90487D80B0A3380 /* AnonymousDisposable.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AnonymousDisposable.swift; path = RxSwift/Disposables/AnonymousDisposable.swift; sourceTree = ""; }; - 37D10F0879F8B46597A1D4B96FCD7EC4 /* ColorUtil.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ColorUtil.swift; path = DDColorKit_Private/Classes/ColorUtil.swift; sourceTree = ""; }; - 37EFE03620047408579717760F6BC698 /* MAHeatMapVectorGridOverlay.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MAHeatMapVectorGridOverlay.h; path = AMapNaviKit.framework/Headers/MAHeatMapVectorGridOverlay.h; sourceTree = ""; }; - 382198043E887A4688E430A3263D1CB1 /* OperationQueue+Alamofire.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "OperationQueue+Alamofire.swift"; path = "Source/OperationQueue+Alamofire.swift"; sourceTree = ""; }; - 3853D5CF922CD8EB18CE431AC90984E6 /* JXCategoryFactory.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = JXCategoryFactory.m; path = Sources/Common/JXCategoryFactory.m; sourceTree = ""; }; - 385D1C4A91ECE9861B0ABE8AB7D7DB3B /* JXCategoryTitleVerticalZoomView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = JXCategoryTitleVerticalZoomView.m; path = Sources/VerticalZoomTitle/JXCategoryTitleVerticalZoomView.m; sourceTree = ""; }; - 386DC0A475360B3A6713F051151B5570 /* ZLClipImageDismissAnimatedTransition.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ZLClipImageDismissAnimatedTransition.swift; path = Sources/Animation/ZLClipImageDismissAnimatedTransition.swift; sourceTree = ""; }; - 3890BEC1D6D2B1797D1DF080E8935168 /* AMapGeoFenceError.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AMapGeoFenceError.h; path = AMapLocationKit.framework/Headers/AMapGeoFenceError.h; sourceTree = ""; }; - 389F6FB8BEF93C8194F3EC86C7811997 /* _icon_file_type_bugs@2x.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = "_icon_file_type_bugs@2x.png"; path = "Sources/Resources/images/_icon_file_type_bugs@2x.png"; sourceTree = ""; }; - 38EE478A4E4AB53D270F601989A1136B /* jcore-ios-4.2.1.xcframework */ = {isa = PBXFileReference; includeInIndex = 1; path = "jcore-ios-4.2.1.xcframework"; sourceTree = ""; }; - 399ED92C88410A23885C4BF0996F9140 /* _ImageController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = _ImageController.m; path = Sources/Sandbox/_ImageController.m; sourceTree = ""; }; - 39A2798ABFCA90D5E3BFFE46BBFF5D57 /* ZLAnimationUtils.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ZLAnimationUtils.swift; path = Sources/General/ZLAnimationUtils.swift; sourceTree = ""; }; - 39C862DAE5C1521BEA4A11E19BEA7035 /* AsyncLock.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AsyncLock.swift; path = RxSwift/Concurrency/AsyncLock.swift; sourceTree = ""; }; - 39DAE5EEFD441E4D859F25E0EA7D002C /* ConstraintLayoutGuide+Extensions.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "ConstraintLayoutGuide+Extensions.swift"; path = "Sources/ConstraintLayoutGuide+Extensions.swift"; sourceTree = ""; }; - 39DC4E06BC0ED4D2504A136A26C5DB04 /* IQNSArray+Sort.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "IQNSArray+Sort.swift"; path = "IQKeyboardManagerSwift/Categories/IQNSArray+Sort.swift"; sourceTree = ""; }; - 39DF691B51141D7B3A22B912318A5C4E /* NSTextAttachment+Kingfisher.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "NSTextAttachment+Kingfisher.swift"; path = "Sources/Extensions/NSTextAttachment+Kingfisher.swift"; sourceTree = ""; }; - 39EC005637D0A654BC48D7244BEB1505 /* AboutViewController.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AboutViewController.swift; path = Sources/App/AboutViewController.swift; sourceTree = ""; }; - 3A165933B7D7FE3F8FF3F73930956259 /* UIImage+ForceDecode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImage+ForceDecode.h"; path = "DDWebImageKit_Private/Classes/SDWebImage/Core/UIImage+ForceDecode.h"; sourceTree = ""; }; - 3ABD15FE3BF5AD14A022021BEF67736E /* UIButton+DDCategory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIButton+DDCategory.h"; path = "DDCategoryKit_Private/Classes/UIButton+DDCategory/UIButton+DDCategory.h"; sourceTree = ""; }; - 3ABF2CF66281818713A87F8FAE022102 /* NSView+Rx.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "NSView+Rx.swift"; path = "RxCocoa/macOS/NSView+Rx.swift"; sourceTree = ""; }; - 3AC0513A790765964F0780FDE6A08A87 /* DDLogKit_Private.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = DDLogKit_Private.modulemap; sourceTree = ""; }; - 3ADC10F4A94D4BACBD2252F5722D5698 /* UIScrollView+MJExtension.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIScrollView+MJExtension.h"; path = "MJRefresh/UIScrollView+MJExtension.h"; sourceTree = ""; }; - 3AFEB3B05AC673E7B7A6F96E695FCC38 /* DDControlsKit_Private-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "DDControlsKit_Private-prefix.pch"; sourceTree = ""; }; - 3B1508D9C3C12DF9C6EEE54BF0DCBBB8 /* Optional.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Optional.swift; path = RxSwift/Observables/Optional.swift; sourceTree = ""; }; - 3B69AA78D4F51190B571429FE2E9467D /* RxSwift-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RxSwift-prefix.pch"; sourceTree = ""; }; - 3B71C75C60987F627BAA4BFEF3BD49A5 /* SDWebImageOptionsProcessor.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageOptionsProcessor.m; path = DDWebImageKit_Private/Classes/SDWebImage/Core/SDWebImageOptionsProcessor.m; sourceTree = ""; }; - 3B8E3277F4544184C9FA4A9D35B0A770 /* AMapNaviRideManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AMapNaviRideManager.h; path = AMapNaviKit.framework/Headers/AMapNaviRideManager.h; sourceTree = ""; }; - 3BCBEDC6E2012AD1A1EB49EE0A37573B /* Infallible.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Infallible.swift; path = RxSwift/Traits/Infallible/Infallible.swift; sourceTree = ""; }; - 3BCD9CA3645EBA0CEDD983EEA57ED59C /* SharedSequence+Concurrency.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "SharedSequence+Concurrency.swift"; path = "RxCocoa/Traits/SharedSequence/SharedSequence+Concurrency.swift"; sourceTree = ""; }; - 3BE9E089AED43F8B531B80D40F4F125C /* CALayer+DDCategory.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "CALayer+DDCategory.m"; path = "DDCategoryKit_Private/Classes/CALayer+DDCategory/CALayer+DDCategory.m"; sourceTree = ""; }; - 3BFC7F295695D36D93D0A2605EA6AB04 /* NSError+ZLPhotoBrowser.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "NSError+ZLPhotoBrowser.swift"; path = "Sources/Extensions/NSError+ZLPhotoBrowser.swift"; sourceTree = ""; }; - 3C084AB2C49E63F8A0A7F75F6923C9A3 /* MJRefreshAutoNormalFooter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MJRefreshAutoNormalFooter.h; path = MJRefresh/Custom/Footer/Auto/MJRefreshAutoNormalFooter.h; sourceTree = ""; }; - 3C09A213D0F34ECFE3F8B66F9DAAB959 /* ZLPhotoPreviewController.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ZLPhotoPreviewController.swift; path = Sources/General/ZLPhotoPreviewController.swift; sourceTree = ""; }; - 3C1381401A90F381C5B232E41508ED4A /* SDWebImageDownloaderRequestModifier.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageDownloaderRequestModifier.m; path = DDWebImageKit_Private/Classes/SDWebImage/Core/SDWebImageDownloaderRequestModifier.m; sourceTree = ""; }; - 3C1D08FE3AE1495D7F3D28AAAC429658 /* _Sandboxer-Header.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "_Sandboxer-Header.h"; path = "Sources/Sandbox/_Sandboxer-Header.h"; sourceTree = ""; }; - 3C7207273CA8A574557ADB8A8446033C /* SDWebImageTransitionInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageTransitionInternal.h; path = DDWebImageKit_Private/Classes/SDWebImage/Private/SDWebImageTransitionInternal.h; sourceTree = ""; }; - 3C89AA961D189A49774763F9FEBF08B3 /* AMapTrackTerminalObj.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AMapTrackTerminalObj.h; path = AMapTrackKit.framework/Headers/AMapTrackTerminalObj.h; sourceTree = ""; }; - 3CA9DA9922A38A99D87D5753A6BD4089 /* MABaseOverlay+DDCategory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "MABaseOverlay+DDCategory.h"; path = "DDMAMapKit_Private/Classes/DDMAMap/Overlay/MABaseOverlay+DDCategory.h"; sourceTree = ""; }; - 3D1376EDC4BD752FA07F2D4504A027FD /* SDAsyncBlockOperation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDAsyncBlockOperation.h; path = DDWebImageKit_Private/Classes/SDWebImage/Private/SDAsyncBlockOperation.h; sourceTree = ""; }; - 3D3B4EAB895EF04B1E897E23DB23774A /* Scan.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Scan.swift; path = RxSwift/Observables/Scan.swift; sourceTree = ""; }; - 3DB3210B892243F17E4B0839CCC7B88D /* ZFIJKPlayerManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ZFIJKPlayerManager.h; path = DDZFPlayerKit_Private/Classes/ijkplayer/ZFIJKPlayerManager.h; sourceTree = ""; }; - 3DFA3965761E63F085264D3A5760D1A8 /* JXCategoryTitleView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = JXCategoryTitleView.m; path = Sources/Title/JXCategoryTitleView.m; sourceTree = ""; }; - 3E0762EBF8C25BFB0F086BF361077748 /* _ImageController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = _ImageController.h; path = Sources/Sandbox/_ImageController.h; sourceTree = ""; }; - 3E0A1FE8D8EFEBC0BD35B753E886CCE7 /* NetworkCell.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = NetworkCell.swift; path = Sources/Network/NetworkCell.swift; sourceTree = ""; }; - 3E1992CC580D83A4D927CB1EAAA9C131 /* UIBarButtonItem+DDCategory.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIBarButtonItem+DDCategory.m"; path = "DDCategoryKit_Private/Classes/UIBarButtonItem+DDCategory/UIBarButtonItem+DDCategory.m"; sourceTree = ""; }; - 3E44E35608EA511589C6BA9FB55E7484 /* ZLPhotoModel.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ZLPhotoModel.swift; path = Sources/General/ZLPhotoModel.swift; sourceTree = ""; }; - 3E550167641DB31449BAC2B28359BC07 /* AMapTrackKit.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AMapTrackKit.h; path = AMapTrackKit.framework/Headers/AMapTrackKit.h; sourceTree = ""; }; - 3E566CD10BA12164E2C083E42D3D7BD2 /* MAAnnotation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MAAnnotation.h; path = AMapNaviKit.framework/Headers/MAAnnotation.h; sourceTree = ""; }; - 3E6B546921C5C73D7EFC96B07606C61F /* DDBaseAttributedString.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DDBaseAttributedString.m; path = DDBasicControlsKit_Private/Classes/DDBaseAttributedString/DDBaseAttributedString.m; sourceTree = ""; }; - 3EB80A356C808AF851A61CAF9C0E3B86 /* icon_file_type_html@3x.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = "icon_file_type_html@3x.png"; path = "Sources/Resources/FileType/icon_file_type_html@3x.png"; sourceTree = ""; }; - 3EEB0581E5990FD3403AAFB70E2D2406 /* _BacktraceLogger.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = _BacktraceLogger.h; path = Sources/Monitor/_BacktraceLogger.h; sourceTree = ""; }; - 3EEDB1B52EB75A1EA09D8FCC7F35E65A /* DDBaseSwitch.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DDBaseSwitch.h; path = DDBasicControlsKit_Private/Classes/DDBaseSwitch/DDBaseSwitch.h; sourceTree = ""; }; - 3EFE957E7A2E8E5738D9F0705790326B /* icon_file_type_jar@2x.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = "icon_file_type_jar@2x.png"; path = "Sources/Resources/FileType/icon_file_type_jar@2x.png"; sourceTree = ""; }; - 3EFFC6DAEDA76B5226C185A63168CBE0 /* UIApplication+Rx.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "UIApplication+Rx.swift"; path = "RxCocoa/iOS/UIApplication+Rx.swift"; sourceTree = ""; }; - 3F267469730A1BCEF4C696CA4599E772 /* UIImage+Transform.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIImage+Transform.m"; path = "DDWebImageKit_Private/Classes/SDWebImage/Core/UIImage+Transform.m"; sourceTree = ""; }; - 3F2BDD5C39CB5A09F21A2FAC832BC153 /* MAMapCustomStyleOptions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MAMapCustomStyleOptions.h; path = AMapNaviKit.framework/Headers/MAMapCustomStyleOptions.h; sourceTree = ""; }; - 3F35FF66B719C57EDC39C7FB87310FD1 /* RequestModifier.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RequestModifier.swift; path = Sources/Networking/RequestModifier.swift; sourceTree = ""; }; - 3F64389E65209F31351003A41A7E339C /* ConnectableObservableType.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ConnectableObservableType.swift; path = RxSwift/ConnectableObservableType.swift; sourceTree = ""; }; + 35DB9B25A38E1906269481378DC084E8 /* NSBundle+MJRefresh.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSBundle+MJRefresh.m"; path = "MJRefresh/NSBundle+MJRefresh.m"; sourceTree = ""; }; + 35E0C1123B974156165208A58CC9C4E9 /* NSAttributedString+DDCategory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSAttributedString+DDCategory.h"; path = "DDCategoryKit_Private/Classes/NSAttributedString+DDCategory/NSAttributedString+DDCategory.h"; sourceTree = ""; }; + 360CEE83C789BD6E990B39DA6D2726B4 /* HTTPMethod.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = HTTPMethod.swift; path = Source/HTTPMethod.swift; sourceTree = ""; }; + 360E8C023C6FC4183838AA96186B6792 /* DDBaseNavigationController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DDBaseNavigationController.m; path = DDBasicControlsKit_Private/Classes/DDBaseNavigationController/DDBaseNavigationController.m; sourceTree = ""; }; + 362E66A36D877A4D20CC49CA974F5BB5 /* Scan.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Scan.swift; path = RxSwift/Observables/Scan.swift; sourceTree = ""; }; + 368F088972589B9011EF799C84440A18 /* MAGroundOverlay.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MAGroundOverlay.h; path = AMapNaviKit.framework/Headers/MAGroundOverlay.h; sourceTree = ""; }; + 36A4D0EC4E7038F1609012E54032EFF5 /* UISearchBar+Rx.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "UISearchBar+Rx.swift"; path = "RxCocoa/iOS/UISearchBar+Rx.swift"; sourceTree = ""; }; + 36A9D32740BEA1CB5E550A866B76C477 /* DDMAMapKit_Private-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "DDMAMapKit_Private-dummy.m"; sourceTree = ""; }; + 36D0576897272BCF2373509D2FCDD315 /* DDBaseTableViewCell.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DDBaseTableViewCell.h; path = DDBasicControlsKit_Private/Classes/DDBaseTableViewCell/DDBaseTableViewCell.h; sourceTree = ""; }; + 36DD633CBB453439EE0F54994386CCD4 /* _FileInfo.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = _FileInfo.m; path = Sources/Sandbox/_FileInfo.m; sourceTree = ""; }; + 36F3170C8D5837A9BE35753E4F4BD1C8 /* SDImageLoadersManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageLoadersManager.m; path = DDWebImageKit_Private/Classes/SDWebImage/Core/SDImageLoadersManager.m; sourceTree = ""; }; + 372814D9D2DA29ABDC234394129A5299 /* AMapTrackCommonObj.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AMapTrackCommonObj.h; path = AMapTrackKit.framework/Headers/AMapTrackCommonObj.h; sourceTree = ""; }; + 376A9802E36A226708C320A01F29506A /* MATouchPoi.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MATouchPoi.h; path = AMapNaviKit.framework/Headers/MATouchPoi.h; sourceTree = ""; }; + 377789F4F973EF6D657F640E1F5461B9 /* Protected.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Protected.swift; path = Source/Protected.swift; sourceTree = ""; }; + 3782D65EACAA450C43A4CE8B9370A984 /* RetryWhen.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RetryWhen.swift; path = RxSwift/Observables/RetryWhen.swift; sourceTree = ""; }; + 37962FDC1DA30CA9AC3752AA54D67917 /* icon_file_type_db@3x.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = "icon_file_type_db@3x.png"; path = "Sources/Resources/FileType/icon_file_type_db@3x.png"; sourceTree = ""; }; + 3798D2339DF3BC989D9AEF1C4954BA73 /* MJRefreshAutoFooter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MJRefreshAutoFooter.m; path = MJRefresh/Base/MJRefreshAutoFooter.m; sourceTree = ""; }; + 37B4594CD294E430DB6DD6AB145057F2 /* EKAttributes+UserInteraction.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "EKAttributes+UserInteraction.swift"; path = "Source/Model/EntryAttributes/EKAttributes+UserInteraction.swift"; sourceTree = ""; }; + 37D0DF42DE1CEFCC64AC88DD216A6C15 /* JXCategoryNumberCell.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = JXCategoryNumberCell.m; path = Sources/Number/JXCategoryNumberCell.m; sourceTree = ""; }; + 37FAB0BAEA67751427D6DE85F92A45C5 /* JXCategoryTitleView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JXCategoryTitleView.h; path = Sources/Title/JXCategoryTitleView.h; sourceTree = ""; }; + 38181F4D4881031FED8569880510FE53 /* _QNSURLSessionDemux.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = _QNSURLSessionDemux.m; path = Sources/CustomHTTPProtocol/_QNSURLSessionDemux.m; sourceTree = ""; }; + 382536E4FBED5F4B7E3B9D17CD88A496 /* CPListItem+Kingfisher.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "CPListItem+Kingfisher.swift"; path = "Sources/Extensions/CPListItem+Kingfisher.swift"; sourceTree = ""; }; + 388FE68AF6780C7F5350952D2898C7BF /* EKRatingSymbolsContainerView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = EKRatingSymbolsContainerView.swift; path = Source/MessageViews/MessagesUtils/EKRatingSymbolsContainerView.swift; sourceTree = ""; }; + 38A249F0CD458E564F1DDB97BC246EF7 /* IQKeyboardManagerSwift-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "IQKeyboardManagerSwift-prefix.pch"; sourceTree = ""; }; + 38C7BA52C91D83BC5564C138AC50CBB7 /* ZLAddPhotoCell.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ZLAddPhotoCell.swift; path = Sources/General/ZLAddPhotoCell.swift; sourceTree = ""; }; + 38D1FFEB335AA2518A0C759264939B18 /* InfiniteSequence.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = InfiniteSequence.swift; path = Platform/DataStructures/InfiniteSequence.swift; sourceTree = ""; }; + 38E49CD14ED9A6FCC10384075B013697 /* DistinctUntilChanged.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = DistinctUntilChanged.swift; path = RxSwift/Observables/DistinctUntilChanged.swift; sourceTree = ""; }; + 38F0EECECA3502C31B2058880E168F69 /* JXCategoryBaseCell.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = JXCategoryBaseCell.m; path = Sources/Base/JXCategoryBaseCell.m; sourceTree = ""; }; + 38F1CDA85549F310B76E79023A2E3B0A /* TailRecursiveSink.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = TailRecursiveSink.swift; path = RxSwift/Observers/TailRecursiveSink.swift; sourceTree = ""; }; + 38FCBB4F18C243D222179DF654AF8679 /* SnapKit-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "SnapKit-umbrella.h"; sourceTree = ""; }; + 3907F43ED4F65FA548715A6ACDD2361E /* RxCocoa-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RxCocoa-prefix.pch"; sourceTree = ""; }; + 39506C8FFB77463B162301DF01576ABD /* SDImageCodersManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageCodersManager.m; path = DDWebImageKit_Private/Classes/SDWebImage/Core/SDImageCodersManager.m; sourceTree = ""; }; + 398EF02AC671038FA4CF57813E3CF4D0 /* ReplayRelay.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ReplayRelay.swift; path = RxRelay/ReplayRelay.swift; sourceTree = ""; }; + 39C8F042547087254A7B56A7E6B4266A /* SwiftEntryKit-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "SwiftEntryKit-umbrella.h"; sourceTree = ""; }; + 39D12C5D8B812324E1C4FEAD076C9E31 /* DDToastKit_Private.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = DDToastKit_Private.release.xcconfig; sourceTree = ""; }; + 39EC8517CD324EB2F6039D5A1A0FE145 /* RxTableViewDataSourcePrefetchingProxy.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RxTableViewDataSourcePrefetchingProxy.swift; path = RxCocoa/iOS/Proxies/RxTableViewDataSourcePrefetchingProxy.swift; sourceTree = ""; }; + 39F0E7887DD9D433D8702497A0BFBF27 /* ZLCollectionViewFlowLayout.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ZLCollectionViewFlowLayout.swift; path = Sources/General/ZLCollectionViewFlowLayout.swift; sourceTree = ""; }; + 3A42343C2D6959246C474CAF35D6CC1A /* UIActivityIndicatorView+Rx.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "UIActivityIndicatorView+Rx.swift"; path = "RxCocoa/iOS/UIActivityIndicatorView+Rx.swift"; sourceTree = ""; }; + 3A4AADC92CEC0B79B22714153BB42673 /* icon_file_type_folder_empty@3x.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = "icon_file_type_folder_empty@3x.png"; path = "Sources/Resources/FileType/icon_file_type_folder_empty@3x.png"; sourceTree = ""; }; + 3A5B5298BB8B463D2787721F7E6D0A22 /* UIView+WebCacheOperation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIView+WebCacheOperation.m"; path = "DDWebImageKit_Private/Classes/SDWebImage/Core/UIView+WebCacheOperation.m"; sourceTree = ""; }; + 3A7103379C75E24B87F2159016F874C4 /* MAHeatMapVectorOverlayRender.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MAHeatMapVectorOverlayRender.h; path = AMapNaviKit.framework/Headers/MAHeatMapVectorOverlayRender.h; sourceTree = ""; }; + 3A917F0B3BFF341657895E87AD166628 /* MKAnnotationView+WebCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "MKAnnotationView+WebCache.h"; path = "DDWebImageKit_Private/Classes/SDWebImageMapKit/MapKit/MKAnnotationView+WebCache.h"; sourceTree = ""; }; + 3ACA5FE33CB355EA0C0B258471B5B900 /* DDMASearch.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DDMASearch.m; path = DDMAMapKit_Private/Classes/DDMASearch/DDMASearch.m; sourceTree = ""; }; + 3B071261A17D80FD9843E61320A8A11A /* SDFileAttributeHelper.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDFileAttributeHelper.m; path = DDWebImageKit_Private/Classes/SDWebImage/Private/SDFileAttributeHelper.m; sourceTree = ""; }; + 3B1A9623209FAE65630C3CC966CEC8F5 /* JXCategoryTitleCell.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JXCategoryTitleCell.h; path = Sources/Title/JXCategoryTitleCell.h; sourceTree = ""; }; + 3B52E85A7BA44FF728F8B2926437D1EB /* icon_file_type_ogg@2x.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = "icon_file_type_ogg@2x.png"; path = "Sources/Resources/FileType/icon_file_type_ogg@2x.png"; sourceTree = ""; }; + 3B63735627CA290063CB5E994F5666AF /* ZFPlayerLogManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ZFPlayerLogManager.h; path = DDZFPlayerKit_Private/Classes/Core/ZFPlayerLogManager.h; sourceTree = ""; }; + 3B81C0627742C03C914750029C5B88CD /* MAUserLocationRepresentation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MAUserLocationRepresentation.h; path = AMapNaviKit.framework/Headers/MAUserLocationRepresentation.h; sourceTree = ""; }; + 3BA278E183408DF0809B958743E87189 /* AMapLocation-NO-IDFA.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "AMapLocation-NO-IDFA.debug.xcconfig"; sourceTree = ""; }; + 3BAF662DB6D341D39437AD8400B550FE /* SDmetamacros.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDmetamacros.h; path = DDWebImageKit_Private/Classes/SDWebImage/Private/SDmetamacros.h; sourceTree = ""; }; + 3BC0C1E2F35892F5844DA396235A27AB /* ZFPlayerGestureControl.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = ZFPlayerGestureControl.m; path = DDZFPlayerKit_Private/Classes/Core/ZFPlayerGestureControl.m; sourceTree = ""; }; + 3BE4E278928BD2D719E101590D860A8C /* ImageBinder.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ImageBinder.swift; path = Sources/SwiftUI/ImageBinder.swift; sourceTree = ""; }; + 3BE50772FDEA4E29CD55B78332D6CE05 /* DDControlsKit_Private.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = DDControlsKit_Private.modulemap; sourceTree = ""; }; + 3C082423F9CBB898B2BC579ADA0FC1F7 /* KVORepresentable+Swift.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "KVORepresentable+Swift.swift"; path = "RxCocoa/Foundation/KVORepresentable+Swift.swift"; sourceTree = ""; }; + 3C15C806DA298DEF1678708531293300 /* MJRefreshTrailer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MJRefreshTrailer.m; path = MJRefresh/Base/MJRefreshTrailer.m; sourceTree = ""; }; + 3C26C9777A52A2C7A6AD2245879B5B0B /* SDWeakProxy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWeakProxy.m; path = DDWebImageKit_Private/Classes/SDWebImage/Private/SDWeakProxy.m; sourceTree = ""; }; + 3C580E70D2C0C22659160DB7223DFDE7 /* RxTableViewDelegateProxy.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RxTableViewDelegateProxy.swift; path = RxCocoa/iOS/Proxies/RxTableViewDelegateProxy.swift; sourceTree = ""; }; + 3C71851C72F3AD0940858B0BD5A7C205 /* JXCategoryIndicatorLineView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JXCategoryIndicatorLineView.h; path = Sources/Indicator/IndicatorViews/JXCategoryIndicatorLineView.h; sourceTree = ""; }; + 3C751473356BB2989B9D468DE72D3E84 /* AMapNaviBaseManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AMapNaviBaseManager.h; path = AMapNaviKit.framework/Headers/AMapNaviBaseManager.h; sourceTree = ""; }; + 3C7582FA774246BD79F6459F1ED935E0 /* LayoutConstraintItem.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = LayoutConstraintItem.swift; path = Sources/LayoutConstraintItem.swift; sourceTree = ""; }; + 3CF4B2CE79B8D63463E0D5C2F77DA555 /* FormatIndicatedCacheSerializer.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = FormatIndicatedCacheSerializer.swift; path = Sources/Cache/FormatIndicatedCacheSerializer.swift; sourceTree = ""; }; + 3CF983DA4DF78AA359D0008B54A72F12 /* UIView+DDCategory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIView+DDCategory.h"; path = "DDCategoryKit_Private/Classes/UIView+DDCategory/UIView+DDCategory.h"; sourceTree = ""; }; + 3CFF8C22A1278661A4558639B396E5CE /* icon_file_type_avi.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = icon_file_type_avi.png; path = Sources/Resources/FileType/icon_file_type_avi.png; sourceTree = ""; }; + 3D1872E58A5DCDD6FB9329FABA1A9E03 /* Kingfisher-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Kingfisher-dummy.m"; sourceTree = ""; }; + 3D7D99BD796546135F925EA800285E7E /* BRStringPickerView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = BRStringPickerView.m; path = BRPickerView/StringPickerView/BRStringPickerView.m; sourceTree = ""; }; + 3D8B6CF18BFF7619F1157B03413DD711 /* DDTimerKit_Private.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = DDTimerKit_Private.modulemap; sourceTree = ""; }; + 3D973D4B00309DC8682050DAA48D6567 /* AMapTrackHistoryObj.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AMapTrackHistoryObj.h; path = AMapTrackKit.framework/Headers/AMapTrackHistoryObj.h; sourceTree = ""; }; + 3DA232C49BF58CA2474D487459BC5117 /* AMapLocationKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; path = AMapLocationKit.framework; sourceTree = ""; }; + 3DD0591BF7533C0451E6D3CAEAD03055 /* SerialDisposable.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SerialDisposable.swift; path = RxSwift/Disposables/SerialDisposable.swift; sourceTree = ""; }; + 3E06F7AD43325CC196622ABD56CA4788 /* IQKeyboardManager+Position.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "IQKeyboardManager+Position.swift"; path = "IQKeyboardManagerSwift/IQKeyboardManager+Position.swift"; sourceTree = ""; }; + 3E176497DD5C812F72096C4C5F5DB55B /* icon_file_type_mov.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = icon_file_type_mov.png; path = Sources/Resources/FileType/icon_file_type_mov.png; sourceTree = ""; }; + 3EC07E2E6CC66DED2E6B849B9836D440 /* ZLVideoManager.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ZLVideoManager.swift; path = Sources/General/ZLVideoManager.swift; sourceTree = ""; }; + 3ECE29C284D0466FE88890E969C10E7B /* icon_file_type_plist@3x.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = "icon_file_type_plist@3x.png"; path = "Sources/Resources/FileType/icon_file_type_plist@3x.png"; sourceTree = ""; }; + 3EE95830DF547E9583DE5E91FEE8B4C2 /* DDFontKit_Private.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = DDFontKit_Private.debug.xcconfig; sourceTree = ""; }; + 3F01892B629A3626EC639FFA0E73C32E /* AMapFoundationConst.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AMapFoundationConst.h; path = AMapFoundationKit.framework/Headers/AMapFoundationConst.h; sourceTree = ""; }; 3F659DC98613325346A7F6AF56D2E619 /* DDTimerKit_Private */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = DDTimerKit_Private; path = libDDTimerKit_Private.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 3FB4CB2354A61CFCDE31EB0B660B924E /* ZLClipImageViewController.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ZLClipImageViewController.swift; path = Sources/Edit/ZLClipImageViewController.swift; sourceTree = ""; }; - 3FC615F0A52CAE1DC807C91AAC35E7B0 /* DisposeBase.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = DisposeBase.swift; path = RxSwift/Disposables/DisposeBase.swift; sourceTree = ""; }; - 4033D453C461A3CFD0C233B867DB7A94 /* DDMATrackManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DDMATrackManager.m; path = DDMAMapKit_Private/Classes/DDMATrackManager/DDMATrackManager.m; sourceTree = ""; }; - 4034C628EDA2DF32F5F3CB1EAA29C86D /* NSButton+WebCache.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSButton+WebCache.m"; path = "DDWebImageKit_Private/Classes/SDWebImage/Core/NSButton+WebCache.m"; sourceTree = ""; }; - 40431C03335832035DE8BF9F1640403C /* JXCategoryTitleCell.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JXCategoryTitleCell.h; path = Sources/Title/JXCategoryTitleCell.h; sourceTree = ""; }; - 40548739EF1F3415E61408B3C201F8EB /* RxCocoaObjCRuntimeError+Extensions.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "RxCocoaObjCRuntimeError+Extensions.swift"; path = "RxCocoa/Common/RxCocoaObjCRuntimeError+Extensions.swift"; sourceTree = ""; }; - 40AB377923A0D30EFF6126487382DEFD /* icon_file_type_tif@3x.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = "icon_file_type_tif@3x.png"; path = "Sources/Resources/FileType/icon_file_type_tif@3x.png"; sourceTree = ""; }; - 40BD20DA26F4C382828585078A748245 /* ZLEditImageConfiguration.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ZLEditImageConfiguration.swift; path = Sources/General/ZLEditImageConfiguration.swift; sourceTree = ""; }; - 40C09C4462AD06D3413B223AFC395050 /* MAOfflineItemMunicipality.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MAOfflineItemMunicipality.h; path = AMapNaviKit.framework/Headers/MAOfflineItemMunicipality.h; sourceTree = ""; }; - 41330F22ACC80869EAE89A43DD0E47ED /* _AutoLaunch.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = _AutoLaunch.m; path = Sources/Core/_AutoLaunch.m; sourceTree = ""; }; - 414CF298D3261A911036D4E70D88D9E8 /* NSTextView+Rx.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "NSTextView+Rx.swift"; path = "RxCocoa/macOS/NSTextView+Rx.swift"; sourceTree = ""; }; - 41B3274F1C3FAAE77565D79AD96F5363 /* SwiftEntryKit-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "SwiftEntryKit-umbrella.h"; sourceTree = ""; }; - 41F7FD73008ECCD76A5B624BDD5F3592 /* UIView+MJExtension.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIView+MJExtension.m"; path = "MJRefresh/UIView+MJExtension.m"; sourceTree = ""; }; - 42353E88E89417466723F475751271F0 /* BRDatePickerView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = BRDatePickerView.m; path = BRPickerView/DatePickerView/BRDatePickerView.m; sourceTree = ""; }; - 423BC0465C2B631D8932DB52A9562B37 /* icon_file_type_7z@2x.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = "icon_file_type_7z@2x.png"; path = "Sources/Resources/FileType/icon_file_type_7z@2x.png"; sourceTree = ""; }; - 4289275E00B1ADBDCE7334B5EF4FC275 /* Validation.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Validation.swift; path = Source/Validation.swift; sourceTree = ""; }; - 42931D8F8201E44042E50F795B310228 /* icon_file_type_ogg.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = icon_file_type_ogg.png; path = Sources/Resources/FileType/icon_file_type_ogg.png; sourceTree = ""; }; - 42B81410C918F98B4E4E060C860BDECA /* ControlEvent+Signal.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "ControlEvent+Signal.swift"; path = "RxCocoa/Traits/Signal/ControlEvent+Signal.swift"; sourceTree = ""; }; - 42C8B1BF41E12FE3EF5F3D341E87DAC2 /* MJRefreshBackFooter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MJRefreshBackFooter.m; path = MJRefresh/Base/MJRefreshBackFooter.m; sourceTree = ""; }; + 3F981CFB9F4A21AF271C2645ED141025 /* MAMapAccessibilityIdentifier.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MAMapAccessibilityIdentifier.h; path = AMapNaviKit.framework/Headers/MAMapAccessibilityIdentifier.h; sourceTree = ""; }; + 3FAC430F7F2D9F2BB5ADA5439647269D /* JXCategoryBaseView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = JXCategoryBaseView.m; path = Sources/Base/JXCategoryBaseView.m; sourceTree = ""; }; + 3FD110744D980000542053E9BB4F6FEE /* ObservableType.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ObservableType.swift; path = RxSwift/ObservableType.swift; sourceTree = ""; }; + 3FD655DCD0CDA106C648D72E01735734 /* DDAudioPlayerKit_Private.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = DDAudioPlayerKit_Private.modulemap; sourceTree = ""; }; + 3FDA3F7F7AD59FD9728C33CD690CADC9 /* BehaviorSubject.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = BehaviorSubject.swift; path = RxSwift/Subjects/BehaviorSubject.swift; sourceTree = ""; }; + 40009CB2C7E53E655E646E102A91AE77 /* MAAnimatedAnnotation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MAAnimatedAnnotation.h; path = AMapNaviKit.framework/Headers/MAAnimatedAnnotation.h; sourceTree = ""; }; + 403137021425F754E9838004199BEE05 /* EKAttributes+Precedence.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "EKAttributes+Precedence.swift"; path = "Source/Model/EntryAttributes/EKAttributes+Precedence.swift"; sourceTree = ""; }; + 405C35063C37BA71EEBE9B61CF082CC8 /* CocoaDebug.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = CocoaDebug.modulemap; sourceTree = ""; }; + 40922C117E6DB24EF727229B3A2BFF5D /* DriveRouteCustomAnnotationView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DriveRouteCustomAnnotationView.m; path = DDMAMapKit_Private/Classes/DDMAMap/AnnotationView/DriveRouteCustomAnnotationView.m; sourceTree = ""; }; + 41458FF2585B935FF2FBA66AB3EA086D /* JXCategoryBaseCellModel.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = JXCategoryBaseCellModel.m; path = Sources/Base/JXCategoryBaseCellModel.m; sourceTree = ""; }; + 414CCE770135B863B3681D69D850EA95 /* MAMVTTileOverlay.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MAMVTTileOverlay.h; path = AMapNaviKit.framework/Headers/MAMVTTileOverlay.h; sourceTree = ""; }; + 417D223FE271D3C738299A2787FA68F4 /* MACircle.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MACircle.h; path = AMapNaviKit.framework/Headers/MACircle.h; sourceTree = ""; }; + 417D3BF7F2E418BC583D4E6DD0E0E1CF /* SessionDelegate.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SessionDelegate.swift; path = Sources/Networking/SessionDelegate.swift; sourceTree = ""; }; + 418F2B1CFFB6A339DEA2A7DE9192A0F8 /* TVMonogramView+Kingfisher.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "TVMonogramView+Kingfisher.swift"; path = "Sources/Extensions/TVMonogramView+Kingfisher.swift"; sourceTree = ""; }; + 41E4C494C3D2A1D8DD5F8FB494F9BF3A /* UIFont+DDCategory.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIFont+DDCategory.m"; path = "DDCategoryKit_Private/Classes/UIFont+DDCategory/UIFont+DDCategory.m"; sourceTree = ""; }; + 41FAE916D4C0AEC201074C5C74E92C63 /* ConstraintMakerEditable.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ConstraintMakerEditable.swift; path = Sources/ConstraintMakerEditable.swift; sourceTree = ""; }; + 42181CBBF0570751605F5301C8AFAB41 /* DDAudioPlayerKit_Private-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "DDAudioPlayerKit_Private-umbrella.h"; sourceTree = ""; }; + 4224EC3201E37EC5D69A4F316878EEFB /* Alamofire.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = Alamofire.release.xcconfig; sourceTree = ""; }; + 425079D2E72CD9A6851A03BB59AA8956 /* Signal.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Signal.swift; path = RxCocoa/Traits/Signal/Signal.swift; sourceTree = ""; }; + 427C06E7A6BEB0B1E52F6D7DE35E606B /* icon_file_type_flv@2x.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = "icon_file_type_flv@2x.png"; path = "Sources/Resources/FileType/icon_file_type_flv@2x.png"; sourceTree = ""; }; + 42AF63DC8D965A189E15C7AD36497FE6 /* JXCategoryIndicatorDotLineView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = JXCategoryIndicatorDotLineView.m; path = Sources/Indicator/IndicatorViews/JXCategoryIndicatorDotLineView.m; sourceTree = ""; }; + 42C512828A40E152872C6B4CE3903BE0 /* DDCategory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DDCategory.h; path = DDCategoryKit_Private/Classes/DDCategory.h; sourceTree = ""; }; 42F10DB6CED6AC3E9AA446F86C16A0F5 /* DDBasicControlsKit_Private */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = DDBasicControlsKit_Private; path = libDDBasicControlsKit_Private.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 432834CED263348F5D32D55467106DE0 /* RxRelay-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RxRelay-prefix.pch"; sourceTree = ""; }; - 4394E2E5E3523F0D9D5795AE7EC1202F /* DDSwitch.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = DDSwitch.swift; path = DDControlsKit_Private/Classes/DDSwitch/DDSwitch.swift; sourceTree = ""; }; - 43DCA29F956F9ECA9822AF9326438347 /* ConstraintDirectionalInsetTarget.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ConstraintDirectionalInsetTarget.swift; path = Sources/ConstraintDirectionalInsetTarget.swift; sourceTree = ""; }; - 444C545292010139719456EF59991C96 /* SDInternalMacros.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDInternalMacros.h; path = DDWebImageKit_Private/Classes/SDWebImage/Private/SDInternalMacros.h; sourceTree = ""; }; - 447B805272FC94BE355A3D40A48DA384 /* _fishhook.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = _fishhook.h; path = Sources/fishhook/_fishhook.h; sourceTree = ""; }; - 44A35ADC778A87691383B51002002BA3 /* CocoaDebug.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = CocoaDebug.debug.xcconfig; sourceTree = ""; }; - 44B40EFD3699C7B461CD0DC0CAC6CF59 /* CocoaDebug-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "CocoaDebug-umbrella.h"; sourceTree = ""; }; - 451A5EAF2631D6E97ACE30D4709C2781 /* UILabel+DDCategory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UILabel+DDCategory.h"; path = "DDCategoryKit_Private/Classes/UILabel+DDCategory/UILabel+DDCategory.h"; sourceTree = ""; }; - 453E2DBE50D1D69184A7D485305469B9 /* BRDatePickerView+BR.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "BRDatePickerView+BR.h"; path = "BRPickerView/DatePickerView/BRDatePickerView+BR.h"; sourceTree = ""; }; - 4569996F344788C7F3B47D8AB09D83B7 /* UISearchBar+Rx.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "UISearchBar+Rx.swift"; path = "RxCocoa/iOS/UISearchBar+Rx.swift"; sourceTree = ""; }; - 456BF3AB46CA4989E1B301D9CD7585EA /* DDBaseButton.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DDBaseButton.m; path = DDBasicControlsKit_Private/Classes/DDBaseButton/DDBaseButton.m; sourceTree = ""; }; - 45B9A514398F6FAE00D6BB7C99C369B9 /* Range.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Range.swift; path = RxSwift/Observables/Range.swift; sourceTree = ""; }; - 45E284B9D2089A6FF200B0A3EB0797D7 /* MJRefreshFooter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MJRefreshFooter.m; path = MJRefresh/Base/MJRefreshFooter.m; sourceTree = ""; }; - 4648A0D1ED95DE4B17517769FB215B82 /* NSImage+Compatibility.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSImage+Compatibility.h"; path = "DDWebImageKit_Private/Classes/SDWebImage/Core/NSImage+Compatibility.h"; sourceTree = ""; }; - 46D9CF529727975EEE6A5B0B8500939D /* JXCategoryView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JXCategoryView.h; path = Sources/JXCategoryView.h; sourceTree = ""; }; - 46DC76094AA3C5E92DEE85166BEBCB5E /* _RXKVOObserver.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = _RXKVOObserver.m; path = RxCocoa/Runtime/_RXKVOObserver.m; sourceTree = ""; }; - 47164511DFABDCA00BC5FA027A5A34D1 /* LayoutConstraint.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = LayoutConstraint.swift; path = Sources/LayoutConstraint.swift; sourceTree = ""; }; - 471813299EE9049FE24C4F3827E46895 /* ZLProgressHUD.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ZLProgressHUD.swift; path = Sources/General/ZLProgressHUD.swift; sourceTree = ""; }; - 47444C3DD0CECE87F67B3A70EF699DF2 /* Cell+ZLPhotoBrowser.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Cell+ZLPhotoBrowser.swift"; path = "Sources/Extensions/Cell+ZLPhotoBrowser.swift"; sourceTree = ""; }; - 475ADA123A583A0E2FD98B7971E817A1 /* Buffer.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Buffer.swift; path = RxSwift/Observables/Buffer.swift; sourceTree = ""; }; - 47E4F47DAF8ED76D1D3DD40F834B5561 /* EKRootViewController.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = EKRootViewController.swift; path = Source/Infra/EKRootViewController.swift; sourceTree = ""; }; - 47EA542FEF8E600F42F57E68D1673A22 /* DDTimerManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DDTimerManager.h; path = DDTimerKit_Private/Classes/GCDTimer/DDTimerManager.h; sourceTree = ""; }; - 4804E79EBA86D501C990BB40069CE63F /* Protected.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Protected.swift; path = Source/Protected.swift; sourceTree = ""; }; - 48128041CAE7AFCD1F1AC68237A95C81 /* icon_file_type_pages@2x.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = "icon_file_type_pages@2x.png"; path = "Sources/Resources/FileType/icon_file_type_pages@2x.png"; sourceTree = ""; }; - 481A27334ADC0AB3AC6B00A418ABAC8B /* DDLogKit_Private-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "DDLogKit_Private-umbrella.h"; sourceTree = ""; }; - 48234D24B34FFEB1DA5AF06966A996BD /* JXCategoryImageCell.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JXCategoryImageCell.h; path = Sources/Image/JXCategoryImageCell.h; sourceTree = ""; }; - 4823D6B09CAEF70F9EEA276224F65B0E /* _HttpModel.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = _HttpModel.m; path = Sources/Network/_HttpModel.m; sourceTree = ""; }; - 4833BCD0AEE159492AF1C430CBCE6D2C /* DDMANaviManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DDMANaviManager.m; path = DDMAMapKit_Private/Classes/DDMANaviManager/DDMANaviManager.m; sourceTree = ""; }; - 485B94E3FCC36EBAB730C1AE86E8BB73 /* UIFont+DDCategory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIFont+DDCategory.h"; path = "DDCategoryKit_Private/Classes/UIFont+DDCategory/UIFont+DDCategory.h"; sourceTree = ""; }; - 48B2CE5D5A828F5DA3B6B7F52179C56A /* UIView+QuickLayout.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "UIView+QuickLayout.swift"; path = "Source/Extensions/QuickLayout/UIView+QuickLayout.swift"; sourceTree = ""; }; - 48DEEB250BD1D0677DA987440667F31A /* _OCLogHelper.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = _OCLogHelper.m; path = Sources/Logs/_OCLogHelper.m; sourceTree = ""; }; - 48F12ABC06A52241550DFCAA23095B30 /* RefCountDisposable.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RefCountDisposable.swift; path = RxSwift/Disposables/RefCountDisposable.swift; sourceTree = ""; }; - 48F27631AD88EEF617D44D4EE041EF2B /* _FileInfo.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = _FileInfo.m; path = Sources/Sandbox/_FileInfo.m; sourceTree = ""; }; - 4935A80CAA6D499435309C761A14787C /* AnonymousObserver.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AnonymousObserver.swift; path = RxSwift/Observers/AnonymousObserver.swift; sourceTree = ""; }; - 4960A10C861983DB32647869F1B53A2C /* MAIndoorInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MAIndoorInfo.h; path = AMapNaviKit.framework/Headers/MAIndoorInfo.h; sourceTree = ""; }; - 4998241B9DB024FD4D497A5A37A92766 /* Session.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Session.swift; path = Source/Session.swift; sourceTree = ""; }; - 49B7952684F896A003E108E70DF91956 /* JXCategoryBaseCellModel.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JXCategoryBaseCellModel.h; path = Sources/Base/JXCategoryBaseCellModel.h; sourceTree = ""; }; - 4A223FD6056B4E3C108ECE8CC2A8BD58 /* MATileOverlay.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MATileOverlay.h; path = AMapNaviKit.framework/Headers/MATileOverlay.h; sourceTree = ""; }; - 4A24ED1414823BE85A8393BED976F01E /* SDImageIOAnimatedCoder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageIOAnimatedCoder.h; path = DDWebImageKit_Private/Classes/SDWebImage/Core/SDImageIOAnimatedCoder.h; sourceTree = ""; }; - 4A2C564CFD70E9AF41EE23BAF8766785 /* MBProgressHUD.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MBProgressHUD.h; path = DDProgressHUDKit_Private/Classes/MBProgressHUD.h; sourceTree = ""; }; - 4A4AA177AC349D3F364073D4D8C6FACC /* MAPointAnnotation+DDCategory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "MAPointAnnotation+DDCategory.h"; path = "DDMAMapKit_Private/Classes/DDMAMap/Annotation/MAPointAnnotation+DDCategory.h"; sourceTree = ""; }; - 4A525545FCB05FE80787B4F045E3C4FD /* icon_file_type_php.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = icon_file_type_php.png; path = Sources/Resources/FileType/icon_file_type_php.png; sourceTree = ""; }; - 4A99A711085317D81CB5936E6DD841F4 /* UIView+ZLPhotoBrowser.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "UIView+ZLPhotoBrowser.swift"; path = "Sources/Extensions/UIView+ZLPhotoBrowser.swift"; sourceTree = ""; }; - 4AAB661751C4615E68332E086EBA0C65 /* ZLPhotoBrowser.bundle */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = "wrapper.plug-in"; name = ZLPhotoBrowser.bundle; path = Sources/ZLPhotoBrowser.bundle; sourceTree = ""; }; - 4ABB5F1667AE561EEEE81AF89686D5CC /* DDTimerKit_Private-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "DDTimerKit_Private-prefix.pch"; sourceTree = ""; }; - 4AC0F29BFF60BF9F976DD71663EDD63E /* ZFPlayerConst.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ZFPlayerConst.h; path = DDZFPlayerKit_Private/Classes/Core/ZFPlayerConst.h; sourceTree = ""; }; - 4AC47962766BE80134B971FB68039F54 /* RxTableViewDataSourcePrefetchingProxy.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RxTableViewDataSourcePrefetchingProxy.swift; path = RxCocoa/iOS/Proxies/RxTableViewDataSourcePrefetchingProxy.swift; sourceTree = ""; }; - 4AD8DF849C32476816B6CB7227650E54 /* Concat.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Concat.swift; path = RxSwift/Observables/Concat.swift; sourceTree = ""; }; - 4B0C1076BF2ECABB699F48822CD0CD1A /* IQTitleBarButtonItem.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = IQTitleBarButtonItem.swift; path = IQKeyboardManagerSwift/IQToolbar/IQTitleBarButtonItem.swift; sourceTree = ""; }; - 4BADEE04A25BB04855AF4D9C4C54C695 /* DDNetworkingOfAlamofireKit_Private.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = DDNetworkingOfAlamofireKit_Private.release.xcconfig; sourceTree = ""; }; - 4BDD37076493861879CD1CA8799E2359 /* WithLatestFrom.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = WithLatestFrom.swift; path = RxSwift/Observables/WithLatestFrom.swift; sourceTree = ""; }; - 4BE85AB1B67308989650ECE24C631997 /* AMapCommonObj.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AMapCommonObj.h; path = AMapSearchKit.framework/Headers/AMapCommonObj.h; sourceTree = ""; }; - 4BEE6293496F9E455B2D9DF5F07A7C45 /* NSButton+Rx.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "NSButton+Rx.swift"; path = "RxCocoa/macOS/NSButton+Rx.swift"; sourceTree = ""; }; - 4C3AFC1A496A91DDC6505D710320D104 /* AMapLocationKit.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AMapLocationKit.h; path = AMapLocationKit.framework/Headers/AMapLocationKit.h; sourceTree = ""; }; - 4C8E9CD2F5868D05FFD53EDD321D7D68 /* ESTabBar.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ESTabBar.swift; path = Sources/ESTabBar.swift; sourceTree = ""; }; - 4CC63E4B701235E8B2857D384EEAB76B /* ZFFloatView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ZFFloatView.h; path = DDZFPlayerKit_Private/Classes/Core/ZFFloatView.h; sourceTree = ""; }; - 4CCCE44CDB43F58EC88EFE06F30841BB /* JXCategoryNumberView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JXCategoryNumberView.h; path = Sources/Number/JXCategoryNumberView.h; sourceTree = ""; }; - 4D1DD18129B705AC29BB8BE53B8BE0C0 /* MAOverlayRenderer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MAOverlayRenderer.h; path = AMapNaviKit.framework/Headers/MAOverlayRenderer.h; sourceTree = ""; }; + 42F2302B18BC0F431281A775BC882B48 /* NSButton+Rx.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "NSButton+Rx.swift"; path = "RxCocoa/macOS/NSButton+Rx.swift"; sourceTree = ""; }; + 4304C25A731969DAE0A4CB5219CF83DD /* RxSwift.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RxSwift.debug.xcconfig; sourceTree = ""; }; + 43379C188DF367B0818B4778B62B62F9 /* RequestCompression.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RequestCompression.swift; path = Source/RequestCompression.swift; sourceTree = ""; }; + 434248B67E62304D0A79EBFA73DEFB2E /* UIScreen+DDCategory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIScreen+DDCategory.h"; path = "DDCategoryKit_Private/Classes/UIScreen+DDCategory/UIScreen+DDCategory.h"; sourceTree = ""; }; + 43437087DBCFC5D645776F53DA02B4A5 /* BRResultModel.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = BRResultModel.m; path = BRPickerView/StringPickerView/BRResultModel.m; sourceTree = ""; }; + 43516021C9D63176D816609B53BA4B81 /* BRAddressPickerView.bundle */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = "wrapper.plug-in"; name = BRAddressPickerView.bundle; path = BRPickerView/AddressPickerView/BRAddressPickerView.bundle; sourceTree = ""; }; + 435848D234E2FDFAF4BBA77E2EA0005A /* AddRef.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AddRef.swift; path = RxSwift/Observables/AddRef.swift; sourceTree = ""; }; + 43C22CA73BBBBF6536060E4ED7BC9C2C /* SnapKit-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "SnapKit-prefix.pch"; sourceTree = ""; }; + 43CE7FF2EAA4CE7A18BCC8CEA451A28D /* ZFPlayerNotification.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ZFPlayerNotification.h; path = DDZFPlayerKit_Private/Classes/Core/ZFPlayerNotification.h; sourceTree = ""; }; + 43FA3189C791074E789AB14BF832BE77 /* icon_file_type_psd.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = icon_file_type_psd.png; path = Sources/Resources/FileType/icon_file_type_psd.png; sourceTree = ""; }; + 4430E66C5A71EB532107B6CFFD81A60C /* ConstraintViewDSL.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ConstraintViewDSL.swift; path = Sources/ConstraintViewDSL.swift; sourceTree = ""; }; + 443BBFD6B3D42FB3964EF34F210E8860 /* UIImageView+ZFCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImageView+ZFCache.h"; path = "DDZFPlayerKit_Private/Classes/ControlView/UIImageView+ZFCache.h"; sourceTree = ""; }; + 4449009A5E7867CF71C5B215635F2D2E /* SDWebImageDownloaderResponseModifier.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageDownloaderResponseModifier.h; path = DDWebImageKit_Private/Classes/SDWebImage/Core/SDWebImageDownloaderResponseModifier.h; sourceTree = ""; }; + 445264F16A403F50D4B8A68C351262D4 /* _ImageController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = _ImageController.m; path = Sources/Sandbox/_ImageController.m; sourceTree = ""; }; + 44B7DDAE8C191FE2E6FD016FC6CE65AD /* JXCategoryImageCell.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = JXCategoryImageCell.m; path = Sources/Image/JXCategoryImageCell.m; sourceTree = ""; }; + 44BF77FA2C1CADDBC75666BCBF41FBFB /* icon_file_type_bmp@3x.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = "icon_file_type_bmp@3x.png"; path = "Sources/Resources/FileType/icon_file_type_bmp@3x.png"; sourceTree = ""; }; + 44D9D735940C8A938908E65F0C060C12 /* SkipWhile.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SkipWhile.swift; path = RxSwift/Observables/SkipWhile.swift; sourceTree = ""; }; + 44ED3B33960CA6B7C6C5A4FACABF8E64 /* JXCategoryBaseView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JXCategoryBaseView.h; path = Sources/Base/JXCategoryBaseView.h; sourceTree = ""; }; + 44F6B0D0520CC6DB5A81C4D43CE40F18 /* ZLPhotoBrowser.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ZLPhotoBrowser.h; path = Sources/ZLPhotoBrowser.h; sourceTree = ""; }; + 44FBDC1D7632810A4180BA6202B06DF4 /* DDNavigationController.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = DDNavigationController.swift; path = DDControlsKit_Private/Classes/DDNavigationController/DDNavigationController.swift; sourceTree = ""; }; + 450E40440636F88F499AB2D099762A8A /* Range.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Range.swift; path = RxSwift/Observables/Range.swift; sourceTree = ""; }; + 451A145E8E53F9436A0ACFB07A4787A8 /* JXCategoryIndicatorTriangleView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JXCategoryIndicatorTriangleView.h; path = Sources/Indicator/IndicatorViews/JXCategoryIndicatorTriangleView.h; sourceTree = ""; }; + 457698D497C1CF68F892CE153AD695A7 /* icon_file_type_doc@3x.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = "icon_file_type_doc@3x.png"; path = "Sources/Resources/FileType/icon_file_type_doc@3x.png"; sourceTree = ""; }; + 45812BC3B373308F9BE06C3B24FF40AE /* icon_file_type_default.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = icon_file_type_default.png; path = Sources/Resources/FileType/icon_file_type_default.png; sourceTree = ""; }; + 458949149FB07B2512373590E32812DB /* SDAnimatedImageRep.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDAnimatedImageRep.m; path = DDWebImageKit_Private/Classes/SDWebImage/Core/SDAnimatedImageRep.m; sourceTree = ""; }; + 4597C134B51299524D6EFE0FE26196E5 /* SDImageCachesManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageCachesManager.m; path = DDWebImageKit_Private/Classes/SDWebImage/Core/SDImageCachesManager.m; sourceTree = ""; }; + 45C5CF794B6E5E494445CEA67F6AE8C7 /* MJRefreshComponent.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MJRefreshComponent.m; path = MJRefresh/Base/MJRefreshComponent.m; sourceTree = ""; }; + 46775A49318D9ED779E15AF9095471C3 /* JXCategoryDotView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = JXCategoryDotView.m; path = Sources/Dot/JXCategoryDotView.m; sourceTree = ""; }; + 468424AFB716A419EDBBC02841EB0BE5 /* ZLProgressView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ZLProgressView.swift; path = Sources/General/ZLProgressView.swift; sourceTree = ""; }; + 46C2634E5526B6615070911397967020 /* WithLatestFrom.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = WithLatestFrom.swift; path = RxSwift/Observables/WithLatestFrom.swift; sourceTree = ""; }; + 46C780FE152BBEB2B11F25B2C425DBC2 /* UIImage+GIF.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIImage+GIF.m"; path = "DDWebImageKit_Private/Classes/SDWebImage/Core/UIImage+GIF.m"; sourceTree = ""; }; + 46DABDBA88E3F291F4E144783C9649B7 /* EKWindowProvider.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = EKWindowProvider.swift; path = Source/Infra/EKWindowProvider.swift; sourceTree = ""; }; + 46E57567B625071388E98BA7DD6F1C37 /* icon_file_type_default@3x.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = "icon_file_type_default@3x.png"; path = "Sources/Resources/FileType/icon_file_type_default@3x.png"; sourceTree = ""; }; + 46FB798957B932BE65A62A8B0692E352 /* icon_file_type_sql.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = icon_file_type_sql.png; path = Sources/Resources/FileType/icon_file_type_sql.png; sourceTree = ""; }; + 470BBC2A5F8925E41FA07BA68E914530 /* ConstraintPriority.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ConstraintPriority.swift; path = Sources/ConstraintPriority.swift; sourceTree = ""; }; + 4771E804534D3D249DF1F01ED35C03FB /* Dematerialize.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Dematerialize.swift; path = RxSwift/Observables/Dematerialize.swift; sourceTree = ""; }; + 477E4DE9343D8FDCE62351F9659236A8 /* JXCategoryBaseCellModel.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JXCategoryBaseCellModel.h; path = Sources/Base/JXCategoryBaseCellModel.h; sourceTree = ""; }; + 4780899C9E192363C43E66775A37F41D /* ZLThumbnailPhotoCell.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ZLThumbnailPhotoCell.swift; path = Sources/General/ZLThumbnailPhotoCell.swift; sourceTree = ""; }; + 47BED3AE61817BCA27A064BA9FE3D502 /* ConstraintMakerExtendable.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ConstraintMakerExtendable.swift; path = Sources/ConstraintMakerExtendable.swift; sourceTree = ""; }; + 47D264E081BE7629EAC9140F4D6C5993 /* AMapSearch-NO-IDFA.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "AMapSearch-NO-IDFA.release.xcconfig"; sourceTree = ""; }; + 48011C5CE9D9ACF014FEA5B6761F88E6 /* DDNetworkingOfAlamofireKit_Private.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = DDNetworkingOfAlamofireKit_Private.release.xcconfig; sourceTree = ""; }; + 480E08B1471D7513F645869E5EE04A01 /* DDLogKit_Private-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "DDLogKit_Private-dummy.m"; sourceTree = ""; }; + 4827106206B2A59B58B5EE626C4BA59E /* Notifications.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Notifications.swift; path = Source/Notifications.swift; sourceTree = ""; }; + 482F88FDDDEDFD3B68479DCB61A5C00C /* ZFOrientationObserver.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ZFOrientationObserver.h; path = DDZFPlayerKit_Private/Classes/Core/ZFOrientationObserver.h; sourceTree = ""; }; + 48330C02481AEF4DCEC3989DCFEF285A /* SDImageCoderHelper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageCoderHelper.h; path = DDWebImageKit_Private/Classes/SDWebImage/Core/SDImageCoderHelper.h; sourceTree = ""; }; + 484AC9D5780EC966243DE61551588AE9 /* EKAttributes+Presets.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "EKAttributes+Presets.swift"; path = "Source/Model/EntryAttributes/EKAttributes+Presets.swift"; sourceTree = ""; }; + 484E271BDB070341A50FD8905975162C /* MJRefreshHeader.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MJRefreshHeader.m; path = MJRefresh/Base/MJRefreshHeader.m; sourceTree = ""; }; + 4858A1FCA98FB39993CF48E027E412A1 /* NSSlider+Rx.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "NSSlider+Rx.swift"; path = "RxCocoa/macOS/NSSlider+Rx.swift"; sourceTree = ""; }; + 4861B020D7E27F0E8FD84F687AE6E433 /* CALayer+DDCategory.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "CALayer+DDCategory.m"; path = "DDCategoryKit_Private/Classes/CALayer+DDCategory/CALayer+DDCategory.m"; sourceTree = ""; }; + 4886FF587087342F26AE037DBFBF90D6 /* DDLogKit_Private.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = DDLogKit_Private.debug.xcconfig; sourceTree = ""; }; + 490BF1C610902B6747C8314BA2D54CBF /* _icon_file_type_sandbox@2x.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = "_icon_file_type_sandbox@2x.png"; path = "Sources/Resources/images/_icon_file_type_sandbox@2x.png"; sourceTree = ""; }; + 492BF29EF10B1A80C58592E2008A8013 /* ZLBaseStickerView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ZLBaseStickerView.swift; path = Sources/Edit/ZLBaseStickerView.swift; sourceTree = ""; }; + 4981C8793512C66B24F8DADF2E5C1C56 /* ControlEvent+Signal.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "ControlEvent+Signal.swift"; path = "RxCocoa/Traits/Signal/ControlEvent+Signal.swift"; sourceTree = ""; }; + 499896852BAFB8790736F4B42D7DED54 /* UINavigationBar+DDCategory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UINavigationBar+DDCategory.h"; path = "DDCategoryKit_Private/Classes/UINavigationBar+DDCategory/UINavigationBar+DDCategory.h"; sourceTree = ""; }; + 49CD4F2A1E8E233FA46CE5FD5825EE18 /* AMapServices.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AMapServices.h; path = AMapFoundationKit.framework/Headers/AMapServices.h; sourceTree = ""; }; + 49DCAF1A4596E4ED086FAA5BA57FD9BA /* BRPickerStyle.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = BRPickerStyle.h; path = BRPickerView/Base/BRPickerStyle.h; sourceTree = ""; }; + 49E4740F6C53E2191910BD1908F10E61 /* UINavigationBar+DDCategory.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UINavigationBar+DDCategory.m"; path = "DDCategoryKit_Private/Classes/UINavigationBar+DDCategory/UINavigationBar+DDCategory.m"; sourceTree = ""; }; + 4A0ED160DB69D416CCE46E0ED96A9D71 /* ZFFloatView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = ZFFloatView.m; path = DDZFPlayerKit_Private/Classes/Core/ZFFloatView.m; sourceTree = ""; }; + 4A27FFE900F9E08F844B321E3B9E4C1A /* MAPointAnnotation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MAPointAnnotation.h; path = AMapNaviKit.framework/Headers/MAPointAnnotation.h; sourceTree = ""; }; + 4A2DAD19AF9388FA3E160CB284E06D54 /* EKRatingMessage.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = EKRatingMessage.swift; path = Source/Model/EKRatingMessage.swift; sourceTree = ""; }; + 4A439A73C08D37EAE294B5A6564B9C69 /* MAOfflineItemCommonCity.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MAOfflineItemCommonCity.h; path = AMapNaviKit.framework/Headers/MAOfflineItemCommonCity.h; sourceTree = ""; }; + 4A5B4C2E086BB5A37EE4D21454B8D661 /* icon_file_type_ogg@3x.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = "icon_file_type_ogg@3x.png"; path = "Sources/Resources/FileType/icon_file_type_ogg@3x.png"; sourceTree = ""; }; + 4A67985DE92DF6D243ED92B69714634C /* UIImage+MemoryCacheCost.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImage+MemoryCacheCost.h"; path = "DDWebImageKit_Private/Classes/SDWebImage/Core/UIImage+MemoryCacheCost.h"; sourceTree = ""; }; + 4A7809897C33AB93E80EF656CCE20983 /* ZFReachabilityManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ZFReachabilityManager.h; path = DDZFPlayerKit_Private/Classes/Core/ZFReachabilityManager.h; sourceTree = ""; }; + 4AC30B085F0B4F562CE8CBC5430A7DA6 /* ZFPlayerGestureControl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ZFPlayerGestureControl.h; path = DDZFPlayerKit_Private/Classes/Core/ZFPlayerGestureControl.h; sourceTree = ""; }; + 4AD2B3D32DC2D5922D4FF51E8ADA7CBB /* MJRefreshBackGifFooter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MJRefreshBackGifFooter.h; path = MJRefresh/Custom/Footer/Back/MJRefreshBackGifFooter.h; sourceTree = ""; }; + 4AE760196C36BA405E3D39D2C30FF446 /* GradientView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = GradientView.swift; path = Source/Utils/GradientView.swift; sourceTree = ""; }; + 4B783ABC741949A4EA09C8C41113E934 /* JXCategoryTitleVerticalZoomCell.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = JXCategoryTitleVerticalZoomCell.m; path = Sources/VerticalZoomTitle/JXCategoryTitleVerticalZoomCell.m; sourceTree = ""; }; + 4BA0C75F7684400C20E23E37C316BCF3 /* ImmediateSchedulerType.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ImmediateSchedulerType.swift; path = RxSwift/ImmediateSchedulerType.swift; sourceTree = ""; }; + 4BBC08FAD68A88F7287A05E04191DB04 /* DDCollectionView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = DDCollectionView.swift; path = DDControlsKit_Private/Classes/DDCollectionView/DDCollectionView.swift; sourceTree = ""; }; + 4C071192B6C37D4D3F796CB640C6EE8F /* BRPickerView-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "BRPickerView-umbrella.h"; sourceTree = ""; }; + 4C39AE9E680011386986EADBB25ECD28 /* MJRefreshBackGifFooter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MJRefreshBackGifFooter.m; path = MJRefresh/Custom/Footer/Back/MJRefreshBackGifFooter.m; sourceTree = ""; }; + 4C402DB7701DC37101AF98F1AAA3C00A /* IQNSArray+Sort.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "IQNSArray+Sort.swift"; path = "IQKeyboardManagerSwift/Categories/IQNSArray+Sort.swift"; sourceTree = ""; }; + 4C4747D8348B2D3F3CF6DA9A40F8E1E0 /* MAAnnotationMoveAnimation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MAAnnotationMoveAnimation.h; path = AMapNaviKit.framework/Headers/MAAnnotationMoveAnimation.h; sourceTree = ""; }; + 4C974389D0655291FB0AE0EB9DA31A8E /* AMapNaviTravelManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AMapNaviTravelManager.h; path = AMapNaviKit.framework/Headers/AMapNaviTravelManager.h; sourceTree = ""; }; + 4CB2872B50027A5362E7396690011FA5 /* UILayoutSupport+Extensions.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "UILayoutSupport+Extensions.swift"; path = "Sources/UILayoutSupport+Extensions.swift"; sourceTree = ""; }; + 4CD0705B92F63E54791C683AE123B70C /* _CrashModel.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = _CrashModel.swift; path = Sources/App/_CrashModel.swift; sourceTree = ""; }; + 4CF649827D4BB7735801A7D686374EA4 /* ESTabBarController-swift-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "ESTabBarController-swift-dummy.m"; sourceTree = ""; }; 4D2B6DF130055A2CCAB715747530D1DB /* Pods-OrderScheduling-acknowledgements.markdown */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = "Pods-OrderScheduling-acknowledgements.markdown"; sourceTree = ""; }; - 4D2D51E8767FDC9EE116468C55754800 /* BRAddressModel.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = BRAddressModel.m; path = BRPickerView/AddressPickerView/BRAddressModel.m; sourceTree = ""; }; - 4D91FA6D9867405ABD722898FB7DEE22 /* AutoUI.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AutoUI.swift; path = DDAutoUIKit_Private/Classes/AutoUI.swift; sourceTree = ""; }; - 4D964D092D9934A3C9EF24220B7EB12E /* icon_file_type_avi.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = icon_file_type_avi.png; path = Sources/Resources/FileType/icon_file_type_avi.png; sourceTree = ""; }; - 4DCFC0E4DD468D4747DB285A1AD8B1C1 /* UIScreen+DDCategory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIScreen+DDCategory.h"; path = "DDCategoryKit_Private/Classes/UIScreen+DDCategory/UIScreen+DDCategory.h"; sourceTree = ""; }; - 4DF127FB716E054BF26A6A576D900FEB /* DDBaseTextField.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DDBaseTextField.m; path = DDBasicControlsKit_Private/Classes/DDBaseTextField/DDBaseTextField.m; sourceTree = ""; }; - 4E0B76E404A99912C095AA30091A7A7B /* SDWebImageManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageManager.h; path = DDWebImageKit_Private/Classes/SDWebImage/Core/SDWebImageManager.h; sourceTree = ""; }; - 4E0F82F95F4DDE943FD48B814499A525 /* Color.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Color.swift; path = Sources/Window/Color.swift; sourceTree = ""; }; - 4E1DF956EE0362C03BD8700F06D20854 /* EKWrapperView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = EKWrapperView.swift; path = Source/Infra/EKWrapperView.swift; sourceTree = ""; }; - 4E2B175D82451E8F04586C08BFACAB29 /* icon_file_type_png.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = icon_file_type_png.png; path = Sources/Resources/FileType/icon_file_type_png.png; sourceTree = ""; }; - 4EBAB4163FE7E36D885D35A4DA784134 /* MACustomBuildingOverlay.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MACustomBuildingOverlay.h; path = AMapNaviKit.framework/Headers/MACustomBuildingOverlay.h; sourceTree = ""; }; - 4EE5A847C0EEF4327C5B431761A95008 /* JXCategoryImageCellModel.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JXCategoryImageCellModel.h; path = Sources/Image/JXCategoryImageCellModel.h; sourceTree = ""; }; - 4F72B65A69543F08CC7F51582D8A5AC0 /* _RXObjCRuntime.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = _RXObjCRuntime.m; path = RxCocoa/Runtime/_RXObjCRuntime.m; sourceTree = ""; }; - 4FB2524A82E6D50C04B9A71999A38281 /* SDImageGIFCoder.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageGIFCoder.m; path = DDWebImageKit_Private/Classes/SDWebImage/Core/SDImageGIFCoder.m; sourceTree = ""; }; - 4FD3363E6B8E7361817E4E8AC98441B9 /* SnapKit-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "SnapKit-umbrella.h"; sourceTree = ""; }; - 500B2D97BC6E479FA493016E92B11CE4 /* DDMALocationManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DDMALocationManager.h; path = DDMAMapKit_Private/Classes/DDMALocation/DDMALocationManager.h; sourceTree = ""; }; + 4D55C8367D0E4C3C089AAC73AA537C09 /* AMapFoundationVersion.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AMapFoundationVersion.h; path = AMapFoundationKit.framework/Headers/AMapFoundationVersion.h; sourceTree = ""; }; + 4D62D270A16097070EB645A8494DBE9B /* JXCategoryTitleVerticalZoomCell.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JXCategoryTitleVerticalZoomCell.h; path = Sources/VerticalZoomTitle/JXCategoryTitleVerticalZoomCell.h; sourceTree = ""; }; + 4D86BABF33B863F030194B8A52CA328E /* ImageDataProvider.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ImageDataProvider.swift; path = Sources/General/ImageSource/ImageDataProvider.swift; sourceTree = ""; }; + 4DC9B3B541475CAB7B9A9E50C27DD855 /* EKSimpleMessage.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = EKSimpleMessage.swift; path = Source/Model/EKSimpleMessage.swift; sourceTree = ""; }; + 4DE028E2D84A0F91A883900E43958875 /* RxRelay.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = RxRelay.modulemap; sourceTree = ""; }; + 4E0DDF1EA55919DC4CBB30DD9B225319 /* UIViewController+DDCategory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIViewController+DDCategory.h"; path = "DDCategoryKit_Private/Classes/UIViewController+DDCategory/UIViewController+DDCategory.h"; sourceTree = ""; }; + 4E117B6933609F0529AC856075573F51 /* Observable+Bind.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Observable+Bind.swift"; path = "RxRelay/Observable+Bind.swift"; sourceTree = ""; }; + 4E4D056593D32565292C67591AB91CCA /* icon_file_type_php@2x.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = "icon_file_type_php@2x.png"; path = "Sources/Resources/FileType/icon_file_type_php@2x.png"; sourceTree = ""; }; + 4E5D51D66363E949F7C7481E8A31332D /* MAPolygon.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MAPolygon.h; path = AMapNaviKit.framework/Headers/MAPolygon.h; sourceTree = ""; }; + 4E5EC15F9948A416535FDAEB29029E98 /* UIView+Utils.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "UIView+Utils.swift"; path = "Source/Extensions/UIView+Utils.swift"; sourceTree = ""; }; + 4E8F5FAB1E6599E9F53B49891BDFDF25 /* AFError.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AFError.swift; path = Source/AFError.swift; sourceTree = ""; }; + 4ED4E9784594D4F0519970E91C9FAD78 /* JXCategoryViewAnimator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JXCategoryViewAnimator.h; path = Sources/Common/JXCategoryViewAnimator.h; sourceTree = ""; }; + 4EEC6C121265DD23E5F6E56085E1C090 /* Skip.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Skip.swift; path = RxSwift/Observables/Skip.swift; sourceTree = ""; }; + 4EECC4DA7562CF2E29F1756C668A94C0 /* SharedSequence+Operators+arity.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "SharedSequence+Operators+arity.swift"; path = "RxCocoa/Traits/SharedSequence/SharedSequence+Operators+arity.swift"; sourceTree = ""; }; + 4EF3158E85C9B106AE64E06D6E642F8E /* Timeout.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Timeout.swift; path = RxSwift/Observables/Timeout.swift; sourceTree = ""; }; + 4F533F263F48E7D87B9E1DCE7A09023B /* JXCategoryImageView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = JXCategoryImageView.m; path = Sources/Image/JXCategoryImageView.m; sourceTree = ""; }; + 4F840D0B344141E91276FE6EC52C14A1 /* DDBaseMutableAttributedString.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DDBaseMutableAttributedString.h; path = DDBasicControlsKit_Private/Classes/DDBaseAttributedString/DDBaseMutableAttributedString.h; sourceTree = ""; }; + 4F949BDD3943AA2E03106E9CF3CA3FB8 /* DDOCLog.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DDOCLog.h; path = DDLogKit_Private/Classes/OCLog/DDOCLog.h; sourceTree = ""; }; + 4FC5CB9F275E6CF7617C64CCF4B28785 /* UIView+DDCategory.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIView+DDCategory.m"; path = "DDCategoryKit_Private/Classes/UIView+DDCategory/UIView+DDCategory.m"; sourceTree = ""; }; + 4FD19BAA57D6D2F89EAF59C5CE2673EC /* SDGraphicsImageRenderer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDGraphicsImageRenderer.m; path = DDWebImageKit_Private/Classes/SDWebImage/Core/SDGraphicsImageRenderer.m; sourceTree = ""; }; + 500CD7974E8143C141DE2C47225F0B06 /* ZFPlayerConst.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ZFPlayerConst.h; path = DDZFPlayerKit_Private/Classes/Core/ZFPlayerConst.h; sourceTree = ""; }; 500F546A08F312B66C867F314262920F /* Pods-OrderScheduling-resources.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-OrderScheduling-resources.sh"; sourceTree = ""; }; - 502E1CC06F061B3AC8ECAAF92E1F086F /* _FilePreviewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = _FilePreviewController.m; path = Sources/Sandbox/_FilePreviewController.m; sourceTree = ""; }; - 5072B48F04170C8E6497E2D1B4C52956 /* ControlEvent+Driver.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "ControlEvent+Driver.swift"; path = "RxCocoa/Traits/Driver/ControlEvent+Driver.swift"; sourceTree = ""; }; - 50C5C27CC31F9C6E1F809EFA14E0389F /* _ObjcLog.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = _ObjcLog.m; path = Sources/Logs/_ObjcLog.m; sourceTree = ""; }; - 50DD9CA4A8D19048933C78B9B129D729 /* URLConvertible+URLRequestConvertible.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "URLConvertible+URLRequestConvertible.swift"; path = "Source/URLConvertible+URLRequestConvertible.swift"; sourceTree = ""; }; - 5149A43E4F16EC1A7252B2719CCB464F /* SDAnimatedImageView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDAnimatedImageView.m; path = DDWebImageKit_Private/Classes/SDWebImage/Core/SDAnimatedImageView.m; sourceTree = ""; }; - 517FF0E71F768EBB97DE22D73FF7855B /* UITextView+DDCategory.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UITextView+DDCategory.m"; path = "DDCategoryKit_Private/Classes/UITextView+DDCategory/UITextView+DDCategory.m"; sourceTree = ""; }; - 51813312B6F828DD6676FF8BF9934209 /* MABaseOverlay+DDCategory.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "MABaseOverlay+DDCategory.m"; path = "DDMAMapKit_Private/Classes/DDMAMap/Overlay/MABaseOverlay+DDCategory.m"; sourceTree = ""; }; - 518187263882BDCBA7247F9FDD264DBE /* CocoaDebug-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "CocoaDebug-prefix.pch"; sourceTree = ""; }; - 51B0FE0CE255275D563EBB823D9B8240 /* UITextField+DDCategory.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UITextField+DDCategory.m"; path = "DDCategoryKit_Private/Classes/UITextField+DDCategory/UITextField+DDCategory.m"; sourceTree = ""; }; - 51C3C199E1366AAEB5E510B8E5B368EA /* Array+ZLPhotoBrowser.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Array+ZLPhotoBrowser.swift"; path = "Sources/Extensions/Array+ZLPhotoBrowser.swift"; sourceTree = ""; }; - 51F21AD417E5D337399910E74E7E9730 /* BRPickerView-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "BRPickerView-umbrella.h"; sourceTree = ""; }; - 5210F445ADCEC386AB2B91535654B29A /* SynchronizedUnsubscribeType.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SynchronizedUnsubscribeType.swift; path = RxSwift/Concurrency/SynchronizedUnsubscribeType.swift; sourceTree = ""; }; - 52139711D5478A69185AEFB0B649E3D5 /* UIImage+ForceDecode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIImage+ForceDecode.m"; path = "DDWebImageKit_Private/Classes/SDWebImage/Core/UIImage+ForceDecode.m"; sourceTree = ""; }; - 5236D63B6005A96246ADC389EB51410B /* ZLPhotoBrowser.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = ZLPhotoBrowser.release.xcconfig; sourceTree = ""; }; - 5249DC3F05251C5C3821291058A36CE3 /* JPush.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = JPush.debug.xcconfig; sourceTree = ""; }; - 524F46A9F6889CEE8D73251AB30A8381 /* JXCategoryDotCellModel.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = JXCategoryDotCellModel.m; path = Sources/Dot/JXCategoryDotCellModel.m; sourceTree = ""; }; - 52CA39718ADAECF44AFAB86B9740388A /* EKAttributes.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = EKAttributes.swift; path = Source/Model/EntryAttributes/EKAttributes.swift; sourceTree = ""; }; - 52D351E65FCEFC9C901751FE23B1FC8C /* _CustomHTTPProtocol.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = _CustomHTTPProtocol.m; path = Sources/CustomHTTPProtocol/_CustomHTTPProtocol.m; sourceTree = ""; }; - 52EAB2C06F8FB4C4C87A2EF3FC36CE12 /* icon_file_type_plist.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = icon_file_type_plist.png; path = Sources/Resources/FileType/icon_file_type_plist.png; sourceTree = ""; }; - 53245AAD4CA0C92C1EDAA332C452CE0B /* icon_file_type_plist@3x.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = "icon_file_type_plist@3x.png"; path = "Sources/Resources/FileType/icon_file_type_plist@3x.png"; sourceTree = ""; }; - 5354666225BD90751E38FC6E159D3B33 /* DDBaseCollectionViewCell.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DDBaseCollectionViewCell.h; path = DDBasicControlsKit_Private/Classes/DDBaseCollectionViewCell/DDBaseCollectionViewCell.h; sourceTree = ""; }; - 53630E9BB8940972E7B4718540FA1984 /* RxRelay-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RxRelay-dummy.m"; sourceTree = ""; }; - 538261BA1BAB61C45924F3A9FE34C655 /* ControlTarget.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ControlTarget.swift; path = RxCocoa/Common/ControlTarget.swift; sourceTree = ""; }; - 538A69E396D0AD70D723737157C20D0A /* RedirectHandler.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RedirectHandler.swift; path = Sources/Networking/RedirectHandler.swift; sourceTree = ""; }; - 539B59EA53D5126EA9608FE403169FB5 /* UIImageView+DDWebCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImageView+DDWebCache.h"; path = "DDWebImageKit_Private/Classes/DDWebImage/UIImageView+DDWebCache.h"; sourceTree = ""; }; - 53AE4E5B7447E7838D3DD0607CB23D26 /* EKAttributes+Scroll.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "EKAttributes+Scroll.swift"; path = "Source/Model/EntryAttributes/EKAttributes+Scroll.swift"; sourceTree = ""; }; - 53CF355A89DE8D9ADAA0307E65EEFC4A /* UIBarButtonItem+DDCategory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIBarButtonItem+DDCategory.h"; path = "DDCategoryKit_Private/Classes/UIBarButtonItem+DDCategory/UIBarButtonItem+DDCategory.h"; sourceTree = ""; }; - 53E940F05413D306714ADB1031DFBDC7 /* EKPopUpMessageView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = EKPopUpMessageView.swift; path = Source/MessageViews/EKPopUpMessageView.swift; sourceTree = ""; }; - 540E0C51D872A6F23CEFF69692B2F2F0 /* ZLPhotoBrowser.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = ZLPhotoBrowser.modulemap; sourceTree = ""; }; - 540E48281419616058855EFACAE5C74A /* NSTextField+Rx.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "NSTextField+Rx.swift"; path = "RxCocoa/macOS/NSTextField+Rx.swift"; sourceTree = ""; }; - 543AEE4B25BDB69D6D5AE97D07FCC5A5 /* CALayer+DDCategory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "CALayer+DDCategory.h"; path = "DDCategoryKit_Private/Classes/CALayer+DDCategory/CALayer+DDCategory.h"; sourceTree = ""; }; - 5445A5085A135866ABBEB2CCF59255DF /* ConstraintLayoutSupport.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ConstraintLayoutSupport.swift; path = Sources/ConstraintLayoutSupport.swift; sourceTree = ""; }; - 54681C1377150D635C97A1CB11149C32 /* icon_file_type_fla@3x.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = "icon_file_type_fla@3x.png"; path = "Sources/Resources/FileType/icon_file_type_fla@3x.png"; sourceTree = ""; }; - 5477D7AAB0BAEC070CF380825CAF0E72 /* ConstraintAttributes.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ConstraintAttributes.swift; path = Sources/ConstraintAttributes.swift; sourceTree = ""; }; - 54D67769321D791840A2A2CD738B013D /* Alamofire.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Alamofire.swift; path = Source/Alamofire.swift; sourceTree = ""; }; - 54E078C192D8393D5746892CFCE7FF5B /* _FileTableViewCell.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = _FileTableViewCell.h; path = Sources/Sandbox/_FileTableViewCell.h; sourceTree = ""; }; - 5516F323B3A55805B7B3EFA0946D5480 /* JXCategoryDotCellModel.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JXCategoryDotCellModel.h; path = Sources/Dot/JXCategoryDotCellModel.h; sourceTree = ""; }; - 552EB50626B7CA6F43A884F335F0532A /* SDImageLoadersManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageLoadersManager.h; path = DDWebImageKit_Private/Classes/SDWebImage/Core/SDImageLoadersManager.h; sourceTree = ""; }; + 5028808FDA816F0FAC182767E78C100F /* DDLabel.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = DDLabel.swift; path = DDControlsKit_Private/Classes/DDLabel/DDLabel.swift; sourceTree = ""; }; + 50713D33276FF07B5AA39180B92880B5 /* ImageTransition.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ImageTransition.swift; path = Sources/Image/ImageTransition.swift; sourceTree = ""; }; + 508C23C76BC58BC0DF0985D98DF0D24F /* MACustomBuildingOverlay.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MACustomBuildingOverlay.h; path = AMapNaviKit.framework/Headers/MACustomBuildingOverlay.h; sourceTree = ""; }; + 50A1422BC9CB8B83EFC8DA0FD4138819 /* IQUIView+Hierarchy.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "IQUIView+Hierarchy.swift"; path = "IQKeyboardManagerSwift/Categories/IQUIView+Hierarchy.swift"; sourceTree = ""; }; + 50E020A3CE33380E2A7F634370C52CD2 /* ZLEditImageConfiguration.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ZLEditImageConfiguration.swift; path = Sources/General/ZLEditImageConfiguration.swift; sourceTree = ""; }; + 51301DA7667977D6925ACD930FA6C43B /* DDProgressHUDKit_Private-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "DDProgressHUDKit_Private-dummy.m"; sourceTree = ""; }; + 5142D7DA8FAFDAA3893180D0FE5EE662 /* NSImage+Compatibility.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSImage+Compatibility.h"; path = "DDWebImageKit_Private/Classes/SDWebImage/Core/NSImage+Compatibility.h"; sourceTree = ""; }; + 5190D62F9AD798C22F62ABB607E891FF /* DDLogKit_Private-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "DDLogKit_Private-umbrella.h"; sourceTree = ""; }; + 51C696D112632B46C171CDC692DB618B /* JXCategoryListContainerRTLCell.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = JXCategoryListContainerRTLCell.m; path = Sources/Common/JXCategoryListContainerRTLCell.m; sourceTree = ""; }; + 5227431A46A46AB324EFF4D930362857 /* icon_file_type_7z@2x.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = "icon_file_type_7z@2x.png"; path = "Sources/Resources/FileType/icon_file_type_7z@2x.png"; sourceTree = ""; }; + 5242CDB2DB03111A788DC0059391F270 /* UIColor+JXAdd.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIColor+JXAdd.h"; path = "Sources/Common/UIColor+JXAdd.h"; sourceTree = ""; }; + 52535A185E1663138EBDAAD130F03ADA /* Utils.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Utils.swift; path = RxRelay/Utils.swift; sourceTree = ""; }; + 5266A14A900C54DF06D3B78688812743 /* DDMAMapKit_Private.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = DDMAMapKit_Private.debug.xcconfig; sourceTree = ""; }; + 526FDD1DCA71FEF6D66C2571AB3CD15C /* icon_file_type_zip.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = icon_file_type_zip.png; path = Sources/Resources/FileType/icon_file_type_zip.png; sourceTree = ""; }; + 52764AB3C28A4EE27E126C7FC5F6CAA7 /* JPush.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = JPush.debug.xcconfig; sourceTree = ""; }; + 52826FE03640CB0B224197CEBF6FF9DC /* SDAssociatedObject.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDAssociatedObject.m; path = DDWebImageKit_Private/Classes/SDWebImage/Private/SDAssociatedObject.m; sourceTree = ""; }; + 52A66268B8952B81E9BCE9712BB4DE57 /* QLCompatibility.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = QLCompatibility.swift; path = Source/Extensions/QuickLayout/QLCompatibility.swift; sourceTree = ""; }; + 530175BFF8701244D4260BC4F03976BB /* URLSession+Rx.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "URLSession+Rx.swift"; path = "RxCocoa/Foundation/URLSession+Rx.swift"; sourceTree = ""; }; + 531184938876CA9716B95BFA557D283E /* Infallible+Create.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Infallible+Create.swift"; path = "RxSwift/Traits/Infallible/Infallible+Create.swift"; sourceTree = ""; }; + 532223FB4DACFEA49F03A30FBD8798E8 /* icon_file_type_numbers.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = icon_file_type_numbers.png; path = Sources/Resources/FileType/icon_file_type_numbers.png; sourceTree = ""; }; + 53361A1564DD3D9163B8100ADD29FF52 /* DDCategoryKit_Private-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "DDCategoryKit_Private-umbrella.h"; sourceTree = ""; }; + 535348DC69977225D375E88E6B5E825B /* ZFPortraitControlView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = ZFPortraitControlView.m; path = DDZFPlayerKit_Private/Classes/ControlView/ZFPortraitControlView.m; sourceTree = ""; }; + 537F4C537F39CB0F98A503A917519178 /* AsyncLock.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AsyncLock.swift; path = RxSwift/Concurrency/AsyncLock.swift; sourceTree = ""; }; + 538F2A1DC0BE5BF1B10C405C9316342C /* ZLPhotoConfiguration+Chaining.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "ZLPhotoConfiguration+Chaining.swift"; path = "Sources/General/ZLPhotoConfiguration+Chaining.swift"; sourceTree = ""; }; + 5399B48F97E6FE08BC78D9E04015FEFC /* _CanonicalRequest.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = _CanonicalRequest.m; path = Sources/CustomHTTPProtocol/_CanonicalRequest.m; sourceTree = ""; }; + 542AC484B61AB51FC53794B3CFC6BA5C /* IQKeyboardManager+UIKeyboardNotification.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "IQKeyboardManager+UIKeyboardNotification.swift"; path = "IQKeyboardManagerSwift/IQKeyboardManager+UIKeyboardNotification.swift"; sourceTree = ""; }; + 54AD63E8A96A371B44C02911303E7964 /* ConnectableObservableType.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ConnectableObservableType.swift; path = RxSwift/ConnectableObservableType.swift; sourceTree = ""; }; + 54CBE7B14D574030E380A29D60DEE06D /* icon_file_type_folder_empty@2x.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = "icon_file_type_folder_empty@2x.png"; path = "Sources/Resources/FileType/icon_file_type_folder_empty@2x.png"; sourceTree = ""; }; + 54D32FCF006486CCCB22D3B44A05B109 /* JXCategoryTitleCell.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = JXCategoryTitleCell.m; path = Sources/Title/JXCategoryTitleCell.m; sourceTree = ""; }; + 54DDA242AC7B6537D8E0FCEE07747915 /* MAArc.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MAArc.h; path = AMapNaviKit.framework/Headers/MAArc.h; sourceTree = ""; }; + 54DF957F2A5F496527D114BA66FAE3CA /* UIButton+WebCache.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIButton+WebCache.m"; path = "DDWebImageKit_Private/Classes/SDWebImage/Core/UIButton+WebCache.m"; sourceTree = ""; }; + 54FA37AC1D0BF92297C6F1692389F1D6 /* ConstraintInsets.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ConstraintInsets.swift; path = Sources/ConstraintInsets.swift; sourceTree = ""; }; + 55047F1BA41243847270965804ECDC45 /* SDImageIOCoder.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageIOCoder.m; path = DDWebImageKit_Private/Classes/SDWebImage/Core/SDImageIOCoder.m; sourceTree = ""; }; + 5525ABEEA14CA4E5AB5FF704970AD83C /* DDProgressHUDKit_Private.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = DDProgressHUDKit_Private.release.xcconfig; sourceTree = ""; }; 5557072D4679705898E85F13CB9F4B96 /* Pods-OrderScheduling-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Pods-OrderScheduling-umbrella.h"; sourceTree = ""; }; - 558ECF73D3819FBDF26EBC50C01A6461 /* RxTextViewDelegateProxy.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RxTextViewDelegateProxy.swift; path = RxCocoa/iOS/Proxies/RxTextViewDelegateProxy.swift; sourceTree = ""; }; - 55BD24CC9CEC494DAA66B2B2DE86F452 /* Typealiases.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Typealiases.swift; path = Sources/Typealiases.swift; sourceTree = ""; }; - 5603B9A567AF2F0E0ED387782DAA25C9 /* RxCocoa.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RxCocoa.h; path = RxCocoa/RxCocoa.h; sourceTree = ""; }; - 560FC5CF391D6C84FBD8408004C1C7EF /* UIStepper+Rx.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "UIStepper+Rx.swift"; path = "RxCocoa/iOS/UIStepper+Rx.swift"; sourceTree = ""; }; - 563A92EAA63C8548C2D1ADF8829C96D4 /* icon_file_type_png@2x.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = "icon_file_type_png@2x.png"; path = "Sources/Resources/FileType/icon_file_type_png@2x.png"; sourceTree = ""; }; - 567C5FDA6EDFA6D1E86A664F691B2D92 /* IQUIScrollView+Additions.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "IQUIScrollView+Additions.swift"; path = "IQKeyboardManagerSwift/Categories/IQUIScrollView+Additions.swift"; sourceTree = ""; }; - 57262098DA4263B2C4205AD0D9DDF61B /* MJRefreshStateHeader.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MJRefreshStateHeader.m; path = MJRefresh/Custom/Header/MJRefreshStateHeader.m; sourceTree = ""; }; - 5761978907E40B3B5205F4B2B8A6075A /* Image.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Image.swift; path = Sources/Image/Image.swift; sourceTree = ""; }; - 5761A0FA1E40B161891356C84E8251D7 /* SDWebImageDownloaderResponseModifier.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageDownloaderResponseModifier.h; path = DDWebImageKit_Private/Classes/SDWebImage/Core/SDWebImageDownloaderResponseModifier.h; sourceTree = ""; }; - 577A2A90916A731D91471FD6A7C07025 /* DDNetworkingOfAlamofireKit_Private.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = DDNetworkingOfAlamofireKit_Private.debug.xcconfig; sourceTree = ""; }; - 57925F2B63F5AE18E18F1F6DC2152136 /* icon_file_type_flv.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = icon_file_type_flv.png; path = Sources/Resources/FileType/icon_file_type_flv.png; sourceTree = ""; }; - 57B1F84FE797300587CD369F329176C8 /* icon_file_type_md@3x.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = "icon_file_type_md@3x.png"; path = "Sources/Resources/FileType/icon_file_type_md@3x.png"; sourceTree = ""; }; - 57F5E6CBBC73877D34DFC8B9606D5D7C /* IQKeyboardReturnKeyHandler.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = IQKeyboardReturnKeyHandler.swift; path = IQKeyboardManagerSwift/IQKeyboardReturnKeyHandler.swift; sourceTree = ""; }; - 58755C2C5E728859C36F6A6A1B128F27 /* CombineLatest+arity.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "CombineLatest+arity.swift"; path = "RxSwift/Observables/CombineLatest+arity.swift"; sourceTree = ""; }; - 58A1A700EB27EEE36BA39EA1A08FA43F /* DDZFPlayerKit_Private.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = DDZFPlayerKit_Private.debug.xcconfig; sourceTree = ""; }; - 58B6509FABCAE9298DF103DCBEB57CD1 /* ZFPlayerView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ZFPlayerView.h; path = DDZFPlayerKit_Private/Classes/Core/ZFPlayerView.h; sourceTree = ""; }; - 5960A7D340C5B4588D9A51AEF3644D36 /* Infallible+Operators.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Infallible+Operators.swift"; path = "RxSwift/Traits/Infallible/Infallible+Operators.swift"; sourceTree = ""; }; - 596B722D47441F89B6F2FDFD7115F947 /* JXCategoryNumberCellModel.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JXCategoryNumberCellModel.h; path = Sources/Number/JXCategoryNumberCellModel.h; sourceTree = ""; }; - 596E562AF2766E240D27BF79A14178CC /* SDWebImageTransition.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageTransition.m; path = DDWebImageKit_Private/Classes/SDWebImage/Core/SDWebImageTransition.m; sourceTree = ""; }; - 59FBEBD185603FE834AE2FC466E97DF7 /* ConstraintDescription.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ConstraintDescription.swift; path = Sources/ConstraintDescription.swift; sourceTree = ""; }; - 5A0C72AA6F591124FC0E37D23FB80FF8 /* BRPickerView.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = BRPickerView.debug.xcconfig; sourceTree = ""; }; - 5A54B6088BCED0C9C01FCCA7D1D2EB07 /* UICollectionViewCell+DDCategory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UICollectionViewCell+DDCategory.h"; path = "DDCategoryKit_Private/Classes/UICollectionViewCell+DDCategory/UICollectionViewCell+DDCategory.h"; sourceTree = ""; }; - 5A5604C88511E426376228D93B5D2E05 /* JXCategoryView-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "JXCategoryView-umbrella.h"; sourceTree = ""; }; - 5A5B5C244AF83A92C052D77C3AD059DE /* ConstraintMultiplierTarget.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ConstraintMultiplierTarget.swift; path = Sources/ConstraintMultiplierTarget.swift; sourceTree = ""; }; - 5A878A9A118524DBD2B9539BB1936D36 /* icon_file_type_ppt@3x.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = "icon_file_type_ppt@3x.png"; path = "Sources/Resources/FileType/icon_file_type_ppt@3x.png"; sourceTree = ""; }; - 5A972C916FD53211BD061BA2EF0D261F /* JCore.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = JCore.release.xcconfig; sourceTree = ""; }; - 5ABB2311E4B4CCAA8413120765ADB981 /* ESTabBarController-swift-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "ESTabBarController-swift-prefix.pch"; sourceTree = ""; }; - 5B18BF44CD2943B4A5AAE57B6A51E986 /* ImageDataProcessor.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ImageDataProcessor.swift; path = Sources/Networking/ImageDataProcessor.swift; sourceTree = ""; }; - 5B26E7ABEE4266E8CE3B3F5F405B33CD /* ZFPlayerNotification.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ZFPlayerNotification.h; path = DDZFPlayerKit_Private/Classes/Core/ZFPlayerNotification.h; sourceTree = ""; }; - 5B32C533E098DC1422D42888BA736221 /* BRPickerView-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "BRPickerView-prefix.pch"; sourceTree = ""; }; - 5B6256F3FDBC00731517EFC1093BF72B /* Runtime.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Runtime.swift; path = Sources/Utility/Runtime.swift; sourceTree = ""; }; + 555AC2D8DC026900B91FD2906E79BFBB /* DDTextField.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = DDTextField.swift; path = DDControlsKit_Private/Classes/DDTextField/DDTextField.swift; sourceTree = ""; }; + 558EFDDD9783513313FFED3E7DFEBA42 /* MJRefreshBackStateFooter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MJRefreshBackStateFooter.h; path = MJRefresh/Custom/Footer/Back/MJRefreshBackStateFooter.h; sourceTree = ""; }; + 55C134061004C50225B29605CA80BFDB /* EKNoteMessageView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = EKNoteMessageView.swift; path = Source/MessageViews/Notes/EKNoteMessageView.swift; sourceTree = ""; }; + 55D852C4E8B16358C5A5C34C770E681A /* DDFontKit_Private.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = DDFontKit_Private.modulemap; sourceTree = ""; }; + 5650D58802A7057C6141F8BF3565E6C6 /* SDImageLoader.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageLoader.m; path = DDWebImageKit_Private/Classes/SDWebImage/Core/SDImageLoader.m; sourceTree = ""; }; + 56AFB8A10E65E409B93276FE92953C0C /* _FileInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = _FileInfo.h; path = Sources/Sandbox/_FileInfo.h; sourceTree = ""; }; + 56BF39B3EB093F44FA1AC755EE7FB094 /* MJRefresh.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = MJRefresh.debug.xcconfig; sourceTree = ""; }; + 56C5D14F912A842FD12DCB662E1DDD4A /* BRAddressPickerView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = BRAddressPickerView.m; path = BRPickerView/AddressPickerView/BRAddressPickerView.m; sourceTree = ""; }; + 56CF2367E46E9B8A208D597A19F48981 /* MJRefreshBackNormalFooter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MJRefreshBackNormalFooter.h; path = MJRefresh/Custom/Footer/Back/MJRefreshBackNormalFooter.h; sourceTree = ""; }; + 56F3F147246D1B193904FEC21A9AEBD3 /* RxTextViewDelegateProxy.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RxTextViewDelegateProxy.swift; path = RxCocoa/iOS/Proxies/RxTextViewDelegateProxy.swift; sourceTree = ""; }; + 573125C9519187DE8AEAE292631AE848 /* icon_file_type_js@2x.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = "icon_file_type_js@2x.png"; path = "Sources/Resources/FileType/icon_file_type_js@2x.png"; sourceTree = ""; }; + 577FA7A5EA46FFE67C8286A291B00306 /* TextInput.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = TextInput.swift; path = RxCocoa/Common/TextInput.swift; sourceTree = ""; }; + 581B8407B31F61AB6E6AA4BEEB6B5B2B /* icon_file_type_eps@3x.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = "icon_file_type_eps@3x.png"; path = "Sources/Resources/FileType/icon_file_type_eps@3x.png"; sourceTree = ""; }; + 58294F63B9546EE5FB94783D942812F9 /* ColorUtil.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ColorUtil.swift; path = DDColorKit_Private/Classes/ColorUtil.swift; sourceTree = ""; }; + 5853D8C365C2E23E53E6B8B428CDFA6A /* DDTimerObject.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DDTimerObject.h; path = DDTimerKit_Private/Classes/GCDTimer/DDTimerObject.h; sourceTree = ""; }; + 585B5212B5D24CB61F756A163F5689D1 /* AMapNaviDriveDataRepresentable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AMapNaviDriveDataRepresentable.h; path = AMapNaviKit.framework/Headers/AMapNaviDriveDataRepresentable.h; sourceTree = ""; }; + 58616896C19469929ECA72A98CC07B44 /* Errors.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Errors.swift; path = RxSwift/Errors.swift; sourceTree = ""; }; + 58B2406C7EFA1DEBBA5BEC5D0C5D0E1F /* Alamofire.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = Alamofire.modulemap; sourceTree = ""; }; + 58B79610BE6A6C4B3D20180A405E2ADC /* CompositeDisposable.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CompositeDisposable.swift; path = RxSwift/Disposables/CompositeDisposable.swift; sourceTree = ""; }; + 58E2AC33E168E15B298D69C9A5A28FFB /* JXCategoryViewDefines.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JXCategoryViewDefines.h; path = Sources/Common/JXCategoryViewDefines.h; sourceTree = ""; }; + 58EEDD99D1C438371D165DC77DA91A10 /* EKAlertMessageView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = EKAlertMessageView.swift; path = Source/MessageViews/EKAlertMessageView.swift; sourceTree = ""; }; + 592DB6D4AD6DF021B80821D5051549ED /* _RXKVOObserver.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = _RXKVOObserver.h; path = RxCocoa/Runtime/include/_RXKVOObserver.h; sourceTree = ""; }; + 596939FCB24F0C0983F3D0244DDE979E /* MAMultiTexturePolylineRenderer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MAMultiTexturePolylineRenderer.h; path = AMapNaviKit.framework/Headers/MAMultiTexturePolylineRenderer.h; sourceTree = ""; }; + 596DE640FE593D727FB94B1DAD21AAAA /* SDImageAPNGCoder.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageAPNGCoder.m; path = DDWebImageKit_Private/Classes/SDWebImage/Core/SDImageAPNGCoder.m; sourceTree = ""; }; + 599764A876E61F5FB8457DA44BF1802F /* icon_file_type_xml.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = icon_file_type_xml.png; path = Sources/Resources/FileType/icon_file_type_xml.png; sourceTree = ""; }; + 599B656FFA3EE132DADACAA7C57B2D69 /* RetryPolicy.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RetryPolicy.swift; path = Source/RetryPolicy.swift; sourceTree = ""; }; + 59E8D33B939E8C3C48C63E7D53976129 /* JXCategoryView.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = JXCategoryView.release.xcconfig; sourceTree = ""; }; + 59F699CE8707481B6EED4B8F739DDEF4 /* Infallible+Zip+arity.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Infallible+Zip+arity.swift"; path = "RxSwift/Traits/Infallible/Infallible+Zip+arity.swift"; sourceTree = ""; }; + 5A1E4F867A8F571345C3F5671F4A12F8 /* SDImageFrame.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageFrame.m; path = DDWebImageKit_Private/Classes/SDWebImage/Core/SDImageFrame.m; sourceTree = ""; }; + 5A30B03FF04AF86AC507A20E3B9FEFC5 /* SDImageHEICCoder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageHEICCoder.h; path = DDWebImageKit_Private/Classes/SDWebImage/Core/SDImageHEICCoder.h; sourceTree = ""; }; + 5AEB8F30EC772AD200F59854D2F954B8 /* JXCategoryView.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = JXCategoryView.debug.xcconfig; sourceTree = ""; }; + 5B0C471A1366B0B07B5F2EA7A64E2412 /* icon_file_type_folder_not_empty@3x.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = "icon_file_type_folder_not_empty@3x.png"; path = "Sources/Resources/FileType/icon_file_type_folder_not_empty@3x.png"; sourceTree = ""; }; + 5B0C9B0C30155D7F73A4B04BA60E4F99 /* Debounce.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Debounce.swift; path = RxSwift/Observables/Debounce.swift; sourceTree = ""; }; + 5B3641D0CF1CA4E4BA2FF11915711A00 /* MACustomBuildingOverlayRenderer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MACustomBuildingOverlayRenderer.h; path = AMapNaviKit.framework/Headers/MACustomBuildingOverlayRenderer.h; sourceTree = ""; }; + 5B6E1C43DDC2917670BEB8DBBDB08584 /* Date+Dispatch.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Date+Dispatch.swift"; path = "RxSwift/Date+Dispatch.swift"; sourceTree = ""; }; + 5B8523EC1C497B23AEB099EAA9E48591 /* DDBaseButton.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DDBaseButton.h; path = DDBasicControlsKit_Private/Classes/DDBaseButton/DDBaseButton.h; sourceTree = ""; }; 5BA6046B4C2674409C0D5625F45F8769 /* BRPickerView */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = BRPickerView; path = libBRPickerView.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 5C0B31CD55F230182D568D7C9DC05432 /* IQKeyboardManagerSwift.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = IQKeyboardManagerSwift.release.xcconfig; sourceTree = ""; }; - 5C0DBC60AC7380920C088AC55FEDE9CE /* SDImageCachesManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageCachesManager.m; path = DDWebImageKit_Private/Classes/SDWebImage/Core/SDImageCachesManager.m; sourceTree = ""; }; - 5C19C89AD683B5392ADC235C853A00E7 /* ResourceBundle-DDBaseViewController-DDBasicControlsKit_Private-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "ResourceBundle-DDBaseViewController-DDBasicControlsKit_Private-Info.plist"; sourceTree = ""; }; - 5C2A1A9E9A2C920B5C41FFB5C0477C62 /* SDWebImageDownloaderOperation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageDownloaderOperation.m; path = DDWebImageKit_Private/Classes/SDWebImage/Core/SDWebImageDownloaderOperation.m; sourceTree = ""; }; - 5CD8C745C75B35B589F2D20E3F4BC594 /* icon_file_type_mp4.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = icon_file_type_mp4.png; path = Sources/Resources/FileType/icon_file_type_mp4.png; sourceTree = ""; }; - 5CF10193D0DFB4B1ADD3E69DAD19ACC7 /* AMapFoundation-NO-IDFA.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "AMapFoundation-NO-IDFA.release.xcconfig"; sourceTree = ""; }; - 5CFE8E3515D7970B76FD06A9816C7DFC /* UIScrollView+MJRefresh.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIScrollView+MJRefresh.m"; path = "MJRefresh/UIScrollView+MJRefresh.m"; sourceTree = ""; }; - 5D19165F3D9C941F56C6C01006738953 /* AuthenticationInterceptor.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AuthenticationInterceptor.swift; path = Source/AuthenticationInterceptor.swift; sourceTree = ""; }; - 5D5EB42BAE0E8A84D5E47BC269253B02 /* icon_file_type_folder_empty.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = icon_file_type_folder_empty.png; path = Sources/Resources/FileType/icon_file_type_folder_empty.png; sourceTree = ""; }; + 5BA83150AFAB94445D85A02CD913530E /* ZLFetchImageOperation.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ZLFetchImageOperation.swift; path = Sources/General/ZLFetchImageOperation.swift; sourceTree = ""; }; + 5BC94B4F712AF96048E757201C4A15DA /* SDWebImageDownloaderResponseModifier.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageDownloaderResponseModifier.m; path = DDWebImageKit_Private/Classes/SDWebImage/Core/SDWebImageDownloaderResponseModifier.m; sourceTree = ""; }; + 5BCAF6C65AB5E9C08DBA6533E050B8EB /* DispatchQueue+Extensions.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "DispatchQueue+Extensions.swift"; path = "Platform/DispatchQueue+Extensions.swift"; sourceTree = ""; }; + 5BE5AB6C5643DEF48DE292EEF1927886 /* MJRefreshAutoStateFooter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MJRefreshAutoStateFooter.m; path = MJRefresh/Custom/Footer/Auto/MJRefreshAutoStateFooter.m; sourceTree = ""; }; + 5C327F9F354ECAD3D31CE69C973C70BA /* AMapSearch-NO-IDFA.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "AMapSearch-NO-IDFA.debug.xcconfig"; sourceTree = ""; }; + 5C3D65B55E66A17F74673CC45A7BE2A8 /* SDImageCacheDefine.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageCacheDefine.m; path = DDWebImageKit_Private/Classes/SDWebImage/Core/SDImageCacheDefine.m; sourceTree = ""; }; + 5C46F650C2A76EDC259A690248952D92 /* Bubble.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Bubble.swift; path = Sources/Window/Bubble.swift; sourceTree = ""; }; + 5C5EC748DF82D46F9C9A08C1CFB9970E /* ZFVolumeBrightnessView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = ZFVolumeBrightnessView.m; path = DDZFPlayerKit_Private/Classes/ControlView/ZFVolumeBrightnessView.m; sourceTree = ""; }; + 5C65A129C77BBDBDE9D6B9E712B97E16 /* UIImage+ExtendedCacheData.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIImage+ExtendedCacheData.m"; path = "DDWebImageKit_Private/Classes/SDWebImage/Core/UIImage+ExtendedCacheData.m"; sourceTree = ""; }; + 5C7426BA42A8B51BCDC80033395DF887 /* icon_file_type_eps@2x.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = "icon_file_type_eps@2x.png"; path = "Sources/Resources/FileType/icon_file_type_eps@2x.png"; sourceTree = ""; }; + 5C8067C3A9CA1B58A1C05F5BE2FD8764 /* AMapGeoFenceError.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AMapGeoFenceError.h; path = AMapLocationKit.framework/Headers/AMapGeoFenceError.h; sourceTree = ""; }; + 5CA6E7D1E697CAF51E4973FEBB1C3879 /* DDBaseViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DDBaseViewController.m; path = DDBasicControlsKit_Private/Classes/DDBaseViewController/DDBaseViewController.m; sourceTree = ""; }; + 5CB9AEE8BAA9A00767CBBE562874959F /* UIStepper+Rx.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "UIStepper+Rx.swift"; path = "RxCocoa/iOS/UIStepper+Rx.swift"; sourceTree = ""; }; + 5CCE1A2DAB9BC43CDA36FD17B1BF2246 /* AuthenticationChallengeResponsable.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AuthenticationChallengeResponsable.swift; path = Sources/Networking/AuthenticationChallengeResponsable.swift; sourceTree = ""; }; + 5D0C20AC4A893B15D09BD0341E8D24D0 /* Runtime.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Runtime.swift; path = Sources/Utility/Runtime.swift; sourceTree = ""; }; + 5D314021445F46A89EB836122570740A /* MultipartUpload.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = MultipartUpload.swift; path = Source/MultipartUpload.swift; sourceTree = ""; }; + 5D49C06BC03E7227DB11A90AD61FBC56 /* SDImageAPNGCoder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageAPNGCoder.h; path = DDWebImageKit_Private/Classes/SDWebImage/Core/SDImageAPNGCoder.h; sourceTree = ""; }; + 5D65C497D6018CB8961CDA6B873E4947 /* Enumerated.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Enumerated.swift; path = RxSwift/Observables/Enumerated.swift; sourceTree = ""; }; + 5D694D7909F723613936603B94F11155 /* ZLPhotoPreviewSheet.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ZLPhotoPreviewSheet.swift; path = Sources/General/ZLPhotoPreviewSheet.swift; sourceTree = ""; }; 5D797E9A5C5782CE845840781FA1CC81 /* Alamofire */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = Alamofire; path = libAlamofire.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 5D874D2F7E6250D0B2C2D8AE550816FA /* Alamofire-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Alamofire-dummy.m"; sourceTree = ""; }; - 5DA76EABCB8A2A26D4BB71B75494D53A /* JXCategoryIndicatorCellModel.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JXCategoryIndicatorCellModel.h; path = Sources/Indicator/JXCategoryIndicatorCellModel.h; sourceTree = ""; }; - 5DB6A2CFE6C0E6EB69EE0720FC5A5AF5 /* AMapNaviCompositeManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AMapNaviCompositeManager.h; path = AMapNaviKit.framework/Headers/AMapNaviCompositeManager.h; sourceTree = ""; }; - 5DE8BFF7280523DD0C9FE7DFD987C2EF /* UIView+WebCacheOperation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIView+WebCacheOperation.m"; path = "DDWebImageKit_Private/Classes/SDWebImage/Core/UIView+WebCacheOperation.m"; sourceTree = ""; }; - 5E03D57AB96189F735C63A670785F735 /* Combine.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Combine.swift; path = Source/Combine.swift; sourceTree = ""; }; - 5E28AAD260307D9BD0CB26F3090DB8D4 /* IQKeyboardManager+Position.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "IQKeyboardManager+Position.swift"; path = "IQKeyboardManagerSwift/IQKeyboardManager+Position.swift"; sourceTree = ""; }; - 5E28E9828E2BC2C6FC51C61A03AC7DF6 /* icon_file_type_pages.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = icon_file_type_pages.png; path = Sources/Resources/FileType/icon_file_type_pages.png; sourceTree = ""; }; - 5E422091EC1334823A5969CDFF288B31 /* DDProgressHUDKit_Private.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = DDProgressHUDKit_Private.modulemap; sourceTree = ""; }; - 5E45A033D07A97D863C2CF6ADF64639A /* NSData+ImageContentType.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSData+ImageContentType.m"; path = "DDWebImageKit_Private/Classes/SDWebImage/Core/NSData+ImageContentType.m"; sourceTree = ""; }; - 5E7CE6B9CB73ED31A2D1EEE8D999A443 /* Timeout.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Timeout.swift; path = RxSwift/Observables/Timeout.swift; sourceTree = ""; }; - 5ED0CDF4BC4C1A4E73B88901A3BDC1AF /* _RunloopMonitor.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = _RunloopMonitor.m; path = Sources/Monitor/_RunloopMonitor.m; sourceTree = ""; }; - 5ED57D7F44AEDA6A64FEACE2F42A7F04 /* icon_file_type_fla.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = icon_file_type_fla.png; path = Sources/Resources/FileType/icon_file_type_fla.png; sourceTree = ""; }; - 5EE0A8B1D2796D924AE795B2A9F3A58E /* ZFLandscapeViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ZFLandscapeViewController.h; path = DDZFPlayerKit_Private/Classes/Core/ZFLandscapeViewController.h; sourceTree = ""; }; - 5F185A71621EEA035032BAEE4A501714 /* _SandboxerHelper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = _SandboxerHelper.h; path = Sources/Sandbox/_SandboxerHelper.h; sourceTree = ""; }; - 5F231098334C46918CFB9387A38BA087 /* DDProgressHUD.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = DDProgressHUD.swift; path = DDProgressHUDKit_Private/Classes/DDProgressHUD.swift; sourceTree = ""; }; - 5F24B25DD6862014EF506C8FC126CB21 /* icon_file_type_mp4@2x.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = "icon_file_type_mp4@2x.png"; path = "Sources/Resources/FileType/icon_file_type_mp4@2x.png"; sourceTree = ""; }; - 5FB745E9BE13FA10F821417E9E9B3B68 /* IQKeyboardManager+OrientationNotification.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "IQKeyboardManager+OrientationNotification.swift"; path = "IQKeyboardManagerSwift/IQKeyboardManager+OrientationNotification.swift"; sourceTree = ""; }; - 603A8371766572E823FE867F4DE0073C /* DDBasicControlsKit_Private.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = DDBasicControlsKit_Private.modulemap; sourceTree = ""; }; - 60808E74303211BFF89129A7B5DE0A11 /* CombineLatest.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CombineLatest.swift; path = RxSwift/Observables/CombineLatest.swift; sourceTree = ""; }; - 60AF4B4BCACF867CEC8FDBD547CAB250 /* SwiftEntryKit-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "SwiftEntryKit-prefix.pch"; sourceTree = ""; }; - 60B6CE2694E53F8E6797C72ADE380D11 /* Alamofire.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = Alamofire.debug.xcconfig; sourceTree = ""; }; - 60B7F9B460B8EC47947EA7D67E081B65 /* ObservableConvertibleType+Signal.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "ObservableConvertibleType+Signal.swift"; path = "RxCocoa/Traits/Signal/ObservableConvertibleType+Signal.swift"; sourceTree = ""; }; - 60BCFFD4C438F8ECD549ADC4D9E05BDE /* ZLPhotoConfiguration.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ZLPhotoConfiguration.swift; path = Sources/General/ZLPhotoConfiguration.swift; sourceTree = ""; }; - 60C0CB95F8FCF9BFD792612A5B56D5FF /* DDControlsKit_Private.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = DDControlsKit_Private.modulemap; sourceTree = ""; }; - 60CA0846119275CC9EE7FEC9A8D1DFF9 /* Producer.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Producer.swift; path = RxSwift/Observables/Producer.swift; sourceTree = ""; }; - 6112D3E42DED01ACD88076E8378F3A55 /* NSBundle+MJRefresh.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSBundle+MJRefresh.h"; path = "MJRefresh/NSBundle+MJRefresh.h"; sourceTree = ""; }; - 61287D945D0CF3A5E0AF842E59CED2E5 /* UITextField+DDCategory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UITextField+DDCategory.h"; path = "DDCategoryKit_Private/Classes/UITextField+DDCategory/UITextField+DDCategory.h"; sourceTree = ""; }; - 613F238C674165D60210DA1876E1E170 /* DDLogKit_Private-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "DDLogKit_Private-prefix.pch"; sourceTree = ""; }; - 6141F7D1163F845DD1649585DFB1BF29 /* EKBackgroundView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = EKBackgroundView.swift; path = Source/Infra/EKBackgroundView.swift; sourceTree = ""; }; - 617D278B10B45CE85063C8352C66C4E2 /* _RXDelegateProxy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = _RXDelegateProxy.m; path = RxCocoa/Runtime/_RXDelegateProxy.m; sourceTree = ""; }; - 6196488344B036441C1ACCAD3572102D /* UITableViewCell+DDCategory.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UITableViewCell+DDCategory.m"; path = "DDCategoryKit_Private/Classes/UITableViewCell+DDCategory/UITableViewCell+DDCategory.m"; sourceTree = ""; }; - 61C2C3AA429BE0FB945E8692AEB70B1B /* SDDiskCache.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDDiskCache.m; path = DDWebImageKit_Private/Classes/SDWebImage/Core/SDDiskCache.m; sourceTree = ""; }; - 61CCF3F459725E6C6C51AD0CE56ED9D8 /* MAMultiTexturePolylineRenderer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MAMultiTexturePolylineRenderer.h; path = AMapNaviKit.framework/Headers/MAMultiTexturePolylineRenderer.h; sourceTree = ""; }; - 62AB53ED343EF668D1D4935477F6FCF5 /* ObservableType.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ObservableType.swift; path = RxSwift/ObservableType.swift; sourceTree = ""; }; - 62CA9A5C52588ED7F851276E4F89E634 /* JXCategoryIndicatorDotLineView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JXCategoryIndicatorDotLineView.h; path = Sources/Indicator/IndicatorViews/JXCategoryIndicatorDotLineView.h; sourceTree = ""; }; - 62F28C8CCD6192E45FB9ADB14CA6C11E /* MAMultiPolyline.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MAMultiPolyline.h; path = AMapNaviKit.framework/Headers/MAMultiPolyline.h; sourceTree = ""; }; - 62F6998CC03AD2DACD04CF6CB3826670 /* icon_file_type_ogg@2x.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = "icon_file_type_ogg@2x.png"; path = "Sources/Resources/FileType/icon_file_type_ogg@2x.png"; sourceTree = ""; }; - 630B3E349BA6A831CAD126A79C2422CA /* icon_file_type_dat@2x.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = "icon_file_type_dat@2x.png"; path = "Sources/Resources/FileType/icon_file_type_dat@2x.png"; sourceTree = ""; }; - 6361FAECAFB636846A88A170A1590010 /* ZLThumbnailPhotoCell.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ZLThumbnailPhotoCell.swift; path = Sources/General/ZLThumbnailPhotoCell.swift; sourceTree = ""; }; - 6411D3F73CC79F9775E61CA70956B765 /* icon_file_type_fla@2x.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = "icon_file_type_fla@2x.png"; path = "Sources/Resources/FileType/icon_file_type_fla@2x.png"; sourceTree = ""; }; - 6414888C851674B16DC70905228A2BCF /* MAParticleOverlayRenderer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MAParticleOverlayRenderer.h; path = AMapNaviKit.framework/Headers/MAParticleOverlayRenderer.h; sourceTree = ""; }; - 643414519A89EAE4317C40A868F404E9 /* SwiftEntryKit-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "SwiftEntryKit-dummy.m"; sourceTree = ""; }; - 6437AB027A54C2697BF41263053645DB /* JXCategoryIndicatorCellModel.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = JXCategoryIndicatorCellModel.m; path = Sources/Indicator/JXCategoryIndicatorCellModel.m; sourceTree = ""; }; - 6451DC4BC4710F5C6BBCE3425E4763F8 /* icon_file_type_keynote@2x.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = "icon_file_type_keynote@2x.png"; path = "Sources/Resources/FileType/icon_file_type_keynote@2x.png"; sourceTree = ""; }; - 645BF1E9598E432F3D58B7615EC9090D /* icon_file_type_ipa@2x.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = "icon_file_type_ipa@2x.png"; path = "Sources/Resources/FileType/icon_file_type_ipa@2x.png"; sourceTree = ""; }; - 645D10AFFAF643B68487762B1ADE8630 /* QLCompatibility.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = QLCompatibility.swift; path = Source/Extensions/QuickLayout/QLCompatibility.swift; sourceTree = ""; }; - 648AE9D3BC08998FF18DA747D82EF4F1 /* DDZFPlayerKit_Private.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = DDZFPlayerKit_Private.release.xcconfig; sourceTree = ""; }; - 64C4CC301C54817A543106D9E7E38255 /* icon_file_type_dll.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = icon_file_type_dll.png; path = Sources/Resources/FileType/icon_file_type_dll.png; sourceTree = ""; }; - 64E38D4078D3A071CD08D742C227022A /* SDImageTransformer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageTransformer.h; path = DDWebImageKit_Private/Classes/SDWebImage/Core/SDImageTransformer.h; sourceTree = ""; }; - 6510371BC58C4A20489477A33BDB5841 /* MJRefreshComponent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MJRefreshComponent.h; path = MJRefresh/Base/MJRefreshComponent.h; sourceTree = ""; }; - 65525FC5CD1A38F3372691EAF4F3EB61 /* icon_file_type_jpg@3x.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = "icon_file_type_jpg@3x.png"; path = "Sources/Resources/FileType/icon_file_type_jpg@3x.png"; sourceTree = ""; }; - 656396D167D3DA730A911962F85A0B49 /* VirtualTimeScheduler.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = VirtualTimeScheduler.swift; path = RxSwift/Schedulers/VirtualTimeScheduler.swift; sourceTree = ""; }; - 657B97D86A29511CC9588C0915DA2F5D /* SDImageLoader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageLoader.h; path = DDWebImageKit_Private/Classes/SDWebImage/Core/SDImageLoader.h; sourceTree = ""; }; - 662161F381FDD0B7858116F8F7202AA8 /* MAMapVersion.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MAMapVersion.h; path = AMapNaviKit.framework/Headers/MAMapVersion.h; sourceTree = ""; }; - 662A9FBFE3BFE739E36442500AF918C9 /* AMapTrackHistoryObj.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AMapTrackHistoryObj.h; path = AMapTrackKit.framework/Headers/AMapTrackHistoryObj.h; sourceTree = ""; }; - 67060FD42145B66F1A61CA35C1A61F88 /* MultipartFormData.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = MultipartFormData.swift; path = Source/MultipartFormData.swift; sourceTree = ""; }; - 67069A3CC0C11C52A23A37682F47C53E /* ZLPhotoConfiguration+Chaining.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "ZLPhotoConfiguration+Chaining.swift"; path = "Sources/General/ZLPhotoConfiguration+Chaining.swift"; sourceTree = ""; }; - 671BF70868815DD346051F99F1608641 /* JPushExtension-xcframeworks.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "JPushExtension-xcframeworks.sh"; sourceTree = ""; }; - 672D8B4DA9EB982C785C9A45852FC95B /* ConstraintRelatableTarget.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ConstraintRelatableTarget.swift; path = Sources/ConstraintRelatableTarget.swift; sourceTree = ""; }; - 673B6BB98A487E167C18818F396FC9D8 /* UIImage+MultiFormat.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIImage+MultiFormat.m"; path = "DDWebImageKit_Private/Classes/SDWebImage/Core/UIImage+MultiFormat.m"; sourceTree = ""; }; - 674D266D176B13FE58908CCC7525D4CC /* AMapSearch-NO-IDFA.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "AMapSearch-NO-IDFA.debug.xcconfig"; sourceTree = ""; }; - 6766ED548AC21BE24383ABB9DDA84F3C /* SDAssociatedObject.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDAssociatedObject.m; path = DDWebImageKit_Private/Classes/SDWebImage/Private/SDAssociatedObject.m; sourceTree = ""; }; - 678ED5269576887C3FFDBFA523B78F94 /* UIRectCorner+Short.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "UIRectCorner+Short.swift"; path = "Source/Extensions/UIRectCorner+Short.swift"; sourceTree = ""; }; - 67975058C7CA48E7F8A4C20A03C763A8 /* icon_file_type_pdf@2x.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = "icon_file_type_pdf@2x.png"; path = "Sources/Resources/FileType/icon_file_type_pdf@2x.png"; sourceTree = ""; }; - 67BFFF7585BFDED453DE75404B9B7F84 /* JXCategoryIndicatorLineView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JXCategoryIndicatorLineView.h; path = Sources/Indicator/IndicatorViews/JXCategoryIndicatorLineView.h; sourceTree = ""; }; - 683D27CFE368ED510F2396F00623E8DC /* AMapNaviCompositeUserConfig.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AMapNaviCompositeUserConfig.h; path = AMapNaviKit.framework/Headers/AMapNaviCompositeUserConfig.h; sourceTree = ""; }; - 687BFD9C5F4A5A8298FD943E8F3C372F /* MAMultiColoredPolylineRenderer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MAMultiColoredPolylineRenderer.h; path = AMapNaviKit.framework/Headers/MAMultiColoredPolylineRenderer.h; sourceTree = ""; }; - 687D6953AB96C28E71ACA9484F55BE73 /* _icon_file_type_network@2x.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = "_icon_file_type_network@2x.png"; path = "Sources/Resources/images/_icon_file_type_network@2x.png"; sourceTree = ""; }; - 68B245F7549095AFED4AED4B45E6C21C /* SDImageHEICCoder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageHEICCoder.h; path = DDWebImageKit_Private/Classes/SDWebImage/Core/SDImageHEICCoder.h; sourceTree = ""; }; - 68D030E1DDCD8D681BFB016CF6B1614E /* UIImage+MultiFormat.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImage+MultiFormat.h"; path = "DDWebImageKit_Private/Classes/SDWebImage/Core/UIImage+MultiFormat.h"; sourceTree = ""; }; + 5D7B90858AD245B162AC8A3B02E9ACEC /* IQKeyboardManager+OrientationNotification.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "IQKeyboardManager+OrientationNotification.swift"; path = "IQKeyboardManagerSwift/IQKeyboardManager+OrientationNotification.swift"; sourceTree = ""; }; + 5DB43AA8B75A684004EBE401362851E1 /* icon_file_type_default@2x.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = "icon_file_type_default@2x.png"; path = "Sources/Resources/FileType/icon_file_type_default@2x.png"; sourceTree = ""; }; + 5DDEA71C579B3E8B8744633B50584BD9 /* icon_file_type_mpg@3x.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = "icon_file_type_mpg@3x.png"; path = "Sources/Resources/FileType/icon_file_type_mpg@3x.png"; sourceTree = ""; }; + 5E34799D6AD4239261D94D94048D8C2B /* AMapFoundation-NO-IDFA.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "AMapFoundation-NO-IDFA.debug.xcconfig"; sourceTree = ""; }; + 5EA2346988F3E41B8F7C1AD5053F09CB /* icon_file_type_psd@2x.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = "icon_file_type_psd@2x.png"; path = "Sources/Resources/FileType/icon_file_type_psd@2x.png"; sourceTree = ""; }; + 5EE64E6CDB8922A15A29036FEA1CDF8F /* SDImageCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageCache.h; path = DDWebImageKit_Private/Classes/SDWebImage/Core/SDImageCache.h; sourceTree = ""; }; + 5F332EFA980D0829D45D2525EA6AF3A2 /* NSTextAttachment+Kingfisher.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "NSTextAttachment+Kingfisher.swift"; path = "Sources/Extensions/NSTextAttachment+Kingfisher.swift"; sourceTree = ""; }; + 5F8864F6B1A531E057B48900668D9B4A /* GIFAnimatedImage.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = GIFAnimatedImage.swift; path = Sources/Image/GIFAnimatedImage.swift; sourceTree = ""; }; + 5F891E2A397E8DB06B4F1E7AA6E3CAE3 /* JXCategoryIndicatorRainbowLineView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = JXCategoryIndicatorRainbowLineView.m; path = Sources/Indicator/IndicatorViews/JXCategoryIndicatorRainbowLineView.m; sourceTree = ""; }; + 5FA28EC377F0E913D32FA007441E1D25 /* SnapKit.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = SnapKit.modulemap; sourceTree = ""; }; + 5FB2AA3BD1F50E2533FC72EDA308AC57 /* ZLWeakProxy.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ZLWeakProxy.swift; path = Sources/General/ZLWeakProxy.swift; sourceTree = ""; }; + 5FB38D3AAE62D1D410AB9ABCA4265157 /* JCore.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = JCore.debug.xcconfig; sourceTree = ""; }; + 5FCF98AE71E6A3E6673483E6A4FC3A23 /* _WKWebView+Swizzling.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "_WKWebView+Swizzling.m"; path = "Sources/Swizzling/_WKWebView+Swizzling.m"; sourceTree = ""; }; + 5FDBFB9F4EF4B91AFA2546CC60F93B3C /* AMapNaviRideView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AMapNaviRideView.h; path = AMapNaviKit.framework/Headers/AMapNaviRideView.h; sourceTree = ""; }; + 6019FF29BB187DBD37EE03029AC1CFA4 /* DDTimerObject.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DDTimerObject.m; path = DDTimerKit_Private/Classes/GCDTimer/DDTimerObject.m; sourceTree = ""; }; + 603765F5BBCB54688AC856EB5304D1FD /* DDLogKit_Private-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "DDLogKit_Private-prefix.pch"; sourceTree = ""; }; + 6045E36CE46DE8AFEB133AAD6D0EEE6B /* Zip+arity.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Zip+arity.swift"; path = "RxSwift/Observables/Zip+arity.swift"; sourceTree = ""; }; + 6049EB3C1E55B8B0F364D28E15B8683E /* DDBaseNavigationController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DDBaseNavigationController.h; path = DDBasicControlsKit_Private/Classes/DDBaseNavigationController/DDBaseNavigationController.h; sourceTree = ""; }; + 605FB43B0DA0F12B646A8E06249BA213 /* ZFLoadingView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = ZFLoadingView.m; path = DDZFPlayerKit_Private/Classes/ControlView/ZFLoadingView.m; sourceTree = ""; }; + 60AC7EC30134FA4E7BC10D34E32A8C92 /* MABaseOverlay.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MABaseOverlay.h; path = AMapNaviKit.framework/Headers/MABaseOverlay.h; sourceTree = ""; }; + 6153795380A37DDF8BBB1386F4942EA0 /* Infallible+CombineLatest+arity.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Infallible+CombineLatest+arity.swift"; path = "RxSwift/Traits/Infallible/Infallible+CombineLatest+arity.swift"; sourceTree = ""; }; + 61AB5AFE42795F73512435F249E2AD35 /* MJRefresh-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "MJRefresh-umbrella.h"; sourceTree = ""; }; + 61AEEF261A78F95C47E457B874ADE2C3 /* icon_file_type_dat.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = icon_file_type_dat.png; path = Sources/Resources/FileType/icon_file_type_dat.png; sourceTree = ""; }; + 61D6B41DDEDC61A1F3ACB9B0E7067D50 /* RxPickerViewDataSourceProxy.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RxPickerViewDataSourceProxy.swift; path = RxCocoa/iOS/Proxies/RxPickerViewDataSourceProxy.swift; sourceTree = ""; }; + 61DB488F8381483566FD8DEC477E8903 /* NSObject+Rx.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "NSObject+Rx.swift"; path = "RxCocoa/Foundation/NSObject+Rx.swift"; sourceTree = ""; }; + 620DF70E8F0EAE8273F6EE3FBC6C4DDF /* DDControlsKit_Private.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = DDControlsKit_Private.debug.xcconfig; sourceTree = ""; }; + 621A6056ABD289BB2B5ECD29C4F7E770 /* MAMapVersion.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MAMapVersion.h; path = AMapNaviKit.framework/Headers/MAMapVersion.h; sourceTree = ""; }; + 625825AAD1977A4D7D619A45FA90D1AF /* icon_file_type_jar@2x.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = "icon_file_type_jar@2x.png"; path = "Sources/Resources/FileType/icon_file_type_jar@2x.png"; sourceTree = ""; }; + 62B2D09ECF27C516AB969EF7484D86A5 /* ConstraintLayoutGuide+Extensions.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "ConstraintLayoutGuide+Extensions.swift"; path = "Sources/ConstraintLayoutGuide+Extensions.swift"; sourceTree = ""; }; + 62C1FEB9477C1BA5993EA87E329D88F2 /* EntryCachingHeuristic.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = EntryCachingHeuristic.swift; path = Source/Infra/EntryCachingHeuristic.swift; sourceTree = ""; }; + 62C319226F475905AD7EC35FDD075DB1 /* ItemEvents.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ItemEvents.swift; path = RxCocoa/iOS/Events/ItemEvents.swift; sourceTree = ""; }; + 62C9B6FEA8933A8FFC5187F59FF50546 /* CombineLatest+arity.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "CombineLatest+arity.swift"; path = "RxSwift/Observables/CombineLatest+arity.swift"; sourceTree = ""; }; + 62E0607F4ED2ACF0C3908138A30DF113 /* DDControlsKit_Private-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "DDControlsKit_Private-prefix.pch"; sourceTree = ""; }; + 63C55FFE843CAED94FBD7F970F09D837 /* PrimitiveSequence+Zip+arity.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "PrimitiveSequence+Zip+arity.swift"; path = "RxSwift/Traits/PrimitiveSequence/PrimitiveSequence+Zip+arity.swift"; sourceTree = ""; }; + 63CBD012AC6F6E061838D39D139A53FE /* SDAsyncBlockOperation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDAsyncBlockOperation.m; path = DDWebImageKit_Private/Classes/SDWebImage/Private/SDAsyncBlockOperation.m; sourceTree = ""; }; + 63E0D36CEF3DBF49F6B580F32FC58C4A /* _RXDelegateProxy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = _RXDelegateProxy.m; path = RxCocoa/Runtime/_RXDelegateProxy.m; sourceTree = ""; }; + 63E3F8D47F7ABFE54AA942BD9FC74648 /* ControlProperty+Driver.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "ControlProperty+Driver.swift"; path = "RxCocoa/Traits/Driver/ControlProperty+Driver.swift"; sourceTree = ""; }; + 63F5BC8D29048733247E71DC052694A8 /* DDFontKit_Private-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "DDFontKit_Private-dummy.m"; sourceTree = ""; }; + 640C770114BEDF746467C32155E0F926 /* en.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = en.lproj; path = Sources/en.lproj; sourceTree = ""; }; + 641728E9104921AB30E70C0C0D51CAD6 /* RxSwift.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = RxSwift.modulemap; sourceTree = ""; }; + 641C4CFE5DFFA8D58849C2F3D10C1628 /* AMapNaviWalkView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AMapNaviWalkView.h; path = AMapNaviKit.framework/Headers/AMapNaviWalkView.h; sourceTree = ""; }; + 642614BDC93A4CC0B518EAEF889BBEE1 /* NotificationCenter+Rx.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "NotificationCenter+Rx.swift"; path = "RxCocoa/Foundation/NotificationCenter+Rx.swift"; sourceTree = ""; }; + 644D8AD252E672E3F7F6BA6624E9119C /* RxTableViewReactiveArrayDataSource.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RxTableViewReactiveArrayDataSource.swift; path = RxCocoa/iOS/DataSources/RxTableViewReactiveArrayDataSource.swift; sourceTree = ""; }; + 6463A0E9C5AB7FD3DD5005CF73EDA0C5 /* ZFSmallFloatControlView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ZFSmallFloatControlView.h; path = DDZFPlayerKit_Private/Classes/ControlView/ZFSmallFloatControlView.h; sourceTree = ""; }; + 64A91EE05741DA815ACE9F12CE92709A /* ESTabBar.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ESTabBar.swift; path = Sources/ESTabBar.swift; sourceTree = ""; }; + 64D833B4C5FEA8E8C3EB56C28EC75A51 /* EKNotificationMessageView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = EKNotificationMessageView.swift; path = Source/MessageViews/EKNotificationMessageView.swift; sourceTree = ""; }; + 64EAE6A2F195677C22177C4FB997B57D /* DispatchQueue+Alamofire.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "DispatchQueue+Alamofire.swift"; path = "Source/DispatchQueue+Alamofire.swift"; sourceTree = ""; }; + 65188B96819D9A9C71C37B577DD8023F /* icon_file_type_keynote.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = icon_file_type_keynote.png; path = Sources/Resources/FileType/icon_file_type_keynote.png; sourceTree = ""; }; + 652010C3C74634DF3F36531F7CF0C331 /* NSControl+Rx.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "NSControl+Rx.swift"; path = "RxCocoa/macOS/NSControl+Rx.swift"; sourceTree = ""; }; + 6550115578678499806D9C6CDBCC1165 /* _HttpModel.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = _HttpModel.m; path = Sources/Network/_HttpModel.m; sourceTree = ""; }; + 656BC61CDAE1DBB51231C6DDC239C3E0 /* AMapNaviCompositeAnnotation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AMapNaviCompositeAnnotation.h; path = AMapNaviKit.framework/Headers/AMapNaviCompositeAnnotation.h; sourceTree = ""; }; + 657EB11B3280CD8530B970935A96AA83 /* UILabel+DDCategory.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UILabel+DDCategory.m"; path = "DDCategoryKit_Private/Classes/UILabel+DDCategory/UILabel+DDCategory.m"; sourceTree = ""; }; + 659339677F67334FF81A473FEB960B99 /* icon_file_type_tif.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = icon_file_type_tif.png; path = Sources/Resources/FileType/icon_file_type_tif.png; sourceTree = ""; }; + 65EA044CDADB831F1F5C150FB78ADDAC /* NSThread+DDCategory.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSThread+DDCategory.m"; path = "DDCategoryKit_Private/Classes/NSThread+DDCategory/NSThread+DDCategory.m"; sourceTree = ""; }; + 65EF2A8EC65839B3B41245C149B6004E /* ESTabBarController-swift.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "ESTabBarController-swift.debug.xcconfig"; sourceTree = ""; }; + 6654114B9228F7AC6DB978AB8EEF29BA /* JXCategoryIndicatorBackgroundView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JXCategoryIndicatorBackgroundView.h; path = Sources/Indicator/IndicatorViews/JXCategoryIndicatorBackgroundView.h; sourceTree = ""; }; + 668EE255DB75BB37318BEFF599B38A96 /* SDImageTransformer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageTransformer.m; path = DDWebImageKit_Private/Classes/SDWebImage/Core/SDImageTransformer.m; sourceTree = ""; }; + 66C9E4C10895E1F718B3A337C2FA99DD /* UIView+Responder.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "UIView+Responder.swift"; path = "Source/Utils/UIView+Responder.swift"; sourceTree = ""; }; + 66CE5A83353C5F2567C0EA67F147DE72 /* RxCocoa-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RxCocoa-dummy.m"; sourceTree = ""; }; + 66EF4E191F7DF14578C38280FBB5220C /* CrashCell.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CrashCell.swift; path = Sources/App/CrashCell.swift; sourceTree = ""; }; + 676E8C28B7564438EEA471AA7DA540B4 /* Amb.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Amb.swift; path = RxSwift/Observables/Amb.swift; sourceTree = ""; }; + 67B484547995143B0A3FA497AA165822 /* IQKeyboardManagerSwift-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "IQKeyboardManagerSwift-dummy.m"; sourceTree = ""; }; + 67CCF16C0C7428C981576BBBC754A8AE /* ShareReplayScope.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ShareReplayScope.swift; path = RxSwift/Observables/ShareReplayScope.swift; sourceTree = ""; }; + 67DF36B793E2CF00421ABE1D3E185505 /* JXCategoryView-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "JXCategoryView-umbrella.h"; sourceTree = ""; }; + 681863C9CF361BD9A43CF4E005C4CD13 /* IQKeyboardManagerSwift.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = IQKeyboardManagerSwift.release.xcconfig; sourceTree = ""; }; + 6854CC4379010F0C20D40BCBCFF19234 /* DDMANaviManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DDMANaviManager.m; path = DDMAMapKit_Private/Classes/DDMANaviManager/DDMANaviManager.m; sourceTree = ""; }; + 68DEB07C34FF02A890E823A9417987D8 /* DDMAMapKit_Private-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "DDMAMapKit_Private-umbrella.h"; sourceTree = ""; }; 692452B23E23868F4835C510A3A76925 /* Pods-OrderSchedulingNotificationService.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-OrderSchedulingNotificationService.debug.xcconfig"; sourceTree = ""; }; - 6967F454C26157A17CCA35959AB343D2 /* ZLAddPhotoCell.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ZLAddPhotoCell.swift; path = Sources/General/ZLAddPhotoCell.swift; sourceTree = ""; }; - 69B43237B735ED3A8E3ACA8B1412DEB2 /* Alamofire.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = Alamofire.release.xcconfig; sourceTree = ""; }; - 69DC3044DDE4B5410CE7DADE305D0448 /* SDMemoryCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDMemoryCache.h; path = DDWebImageKit_Private/Classes/SDWebImage/Core/SDMemoryCache.h; sourceTree = ""; }; - 69EC8A160AD22CB1B2D0105E0472D713 /* MultipartUpload.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = MultipartUpload.swift; path = Source/MultipartUpload.swift; sourceTree = ""; }; - 6A00A2C1BBBB457525AF402C07A7A453 /* UIImageView+WebCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImageView+WebCache.h"; path = "DDWebImageKit_Private/Classes/SDWebImage/Core/UIImageView+WebCache.h"; sourceTree = ""; }; - 6A3C9610D0945E339F4C8DF1B6ACFA55 /* _RXKVOObserver.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = _RXKVOObserver.h; path = RxCocoa/Runtime/include/_RXKVOObserver.h; sourceTree = ""; }; - 6A503857E0BC831498C5163C0D136B14 /* JXCategoryTitleImageCell.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JXCategoryTitleImageCell.h; path = Sources/TitleImage/JXCategoryTitleImageCell.h; sourceTree = ""; }; - 6A708DE29867303623088A2AF88B0ED6 /* ZLImageNavController.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ZLImageNavController.swift; path = Sources/General/ZLImageNavController.swift; sourceTree = ""; }; - 6A71AF412D9D04D2E21DEF29E58D3C63 /* DDAlamofire.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = DDAlamofire.swift; path = DDNetworkingOfAlamofireKit_Private/Classes/DDAlamofire.swift; sourceTree = ""; }; - 6A90F3F76C93340B29752CC78DDCEA85 /* icon_file_type_md@2x.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = "icon_file_type_md@2x.png"; path = "Sources/Resources/FileType/icon_file_type_md@2x.png"; sourceTree = ""; }; - 6A95EE45C8CD01C21E8EDE44C1558F18 /* _HttpModel.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = _HttpModel.h; path = Sources/Network/_HttpModel.h; sourceTree = ""; }; - 6A96BB967850E795C4EF42387D8E911D /* JXCategoryNumberCell.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JXCategoryNumberCell.h; path = Sources/Number/JXCategoryNumberCell.h; sourceTree = ""; }; - 6AA49E1AF964E3B4A2DDDD17CF2FD9E6 /* MAAnimatedAnnotation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MAAnimatedAnnotation.h; path = AMapNaviKit.framework/Headers/MAAnimatedAnnotation.h; sourceTree = ""; }; - 6B17E2F113A6E90E920367154E70C153 /* ZFPlayerMediaPlayback.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ZFPlayerMediaPlayback.h; path = DDZFPlayerKit_Private/Classes/Core/ZFPlayerMediaPlayback.h; sourceTree = ""; }; - 6B233A4DA21BAF076F0962449F795D15 /* _NetworkHelper.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = _NetworkHelper.m; path = Sources/Network/_NetworkHelper.m; sourceTree = ""; }; - 6B26E78510E08DBAD16EABD38AD41798 /* Repeat.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Repeat.swift; path = RxSwift/Observables/Repeat.swift; sourceTree = ""; }; - 6B3996501AD3516C346CBA551CF762B0 /* UIView+Shadow.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "UIView+Shadow.swift"; path = "Source/Extensions/UIView+Shadow.swift"; sourceTree = ""; }; - 6B45B7727CCA3325BB6D80E9556819DD /* CocoaDebugNavigationController.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CocoaDebugNavigationController.swift; path = Sources/Window/CocoaDebugNavigationController.swift; sourceTree = ""; }; - 6B6B89F7CA1664E5B4D9D6C87BD7E7CE /* RecursiveScheduler.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RecursiveScheduler.swift; path = RxSwift/Schedulers/RecursiveScheduler.swift; sourceTree = ""; }; - 6BCBBA87F83D831E099585DEA7390BE7 /* NSImage+Compatibility.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSImage+Compatibility.m"; path = "DDWebImageKit_Private/Classes/SDWebImage/Core/NSImage+Compatibility.m"; sourceTree = ""; }; - 6C0A3CAB96C610BDC64BAD5AC6D15930 /* DDTimerKit_Private-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "DDTimerKit_Private-dummy.m"; sourceTree = ""; }; - 6C0B721497D7310B07F6514B0991B2E1 /* DDMASearch.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DDMASearch.h; path = DDMAMapKit_Private/Classes/DDMASearch/DDMASearch.h; sourceTree = ""; }; - 6C30440382DFF5D2786948648B1ADE4F /* CocoaDebugTool.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = CocoaDebugTool.m; path = Sources/Logs/CocoaDebugTool.m; sourceTree = ""; }; - 6C4E56EE7C5534AAF96853538F7E417A /* JPushExtension.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = JPushExtension.debug.xcconfig; sourceTree = ""; }; - 6C7E7887A742E8BAEB6044A851419E76 /* JXCategoryIndicatorTriangleView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JXCategoryIndicatorTriangleView.h; path = Sources/Indicator/IndicatorViews/JXCategoryIndicatorTriangleView.h; sourceTree = ""; }; - 6C800FA8AABC4631C247813282A08882 /* Bool+ZLPhotoBrowser.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Bool+ZLPhotoBrowser.swift"; path = "Sources/Extensions/Bool+ZLPhotoBrowser.swift"; sourceTree = ""; }; - 6C92599189B98ABDB997E47EA8A17469 /* Infallible+Create.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Infallible+Create.swift"; path = "RxSwift/Traits/Infallible/Infallible+Create.swift"; sourceTree = ""; }; - 6CB1AB0422CDD0085DAC83850AF5CFD9 /* ZLCollectionViewFlowLayout.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ZLCollectionViewFlowLayout.swift; path = Sources/General/ZLCollectionViewFlowLayout.swift; sourceTree = ""; }; - 6D458939D95D9D53D3701F201A804116 /* KingfisherManager.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = KingfisherManager.swift; path = Sources/General/KingfisherManager.swift; sourceTree = ""; }; - 6D6E74D20FFAD62578494E1A63B033AB /* MJRefresh.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = MJRefresh.release.xcconfig; sourceTree = ""; }; - 6D995936E759960521519D528A7D6C21 /* DDTimerKit_Private.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = DDTimerKit_Private.release.xcconfig; sourceTree = ""; }; - 6E2FCCC2568269D7C4449190639E7CF6 /* SDWebImage.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImage.h; path = DDWebImageKit_Private/Classes/SDWebImage/SDWebImage.h; sourceTree = ""; }; - 6E32D87137AE364FFEC66F3F35FA0DCE /* DDBaseImageView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DDBaseImageView.h; path = DDBasicControlsKit_Private/Classes/DDBaseImageView/DDBaseImageView.h; sourceTree = ""; }; - 6E33EA1EFEB3F23C4876B6037110C33A /* JXCategoryIndicatorCell.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JXCategoryIndicatorCell.h; path = Sources/Indicator/JXCategoryIndicatorCell.h; sourceTree = ""; }; - 6E3DEB584DB9996A3FA4313F64CA66B5 /* ZFPersentInteractiveTransition.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = ZFPersentInteractiveTransition.m; path = DDZFPlayerKit_Private/Classes/Core/ZFPersentInteractiveTransition.m; sourceTree = ""; }; - 6E46384338E715E961D5E1646F5D795D /* SharedSequence+Operators+arity.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "SharedSequence+Operators+arity.swift"; path = "RxCocoa/Traits/SharedSequence/SharedSequence+Operators+arity.swift"; sourceTree = ""; }; - 6EAF42C6F09AF179A7BBE176FA808588 /* _BacktraceLogger.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = _BacktraceLogger.m; path = Sources/Monitor/_BacktraceLogger.m; sourceTree = ""; }; + 697F64D7AD11D233622C7EABEBB3B9E6 /* BRPickerView.bundle */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = "wrapper.plug-in"; name = BRPickerView.bundle; path = BRPickerView/Base/BRPickerView.bundle; sourceTree = ""; }; + 69D9F6B1C1928E8F5130179690702C33 /* MATraceReplayOverlay.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MATraceReplayOverlay.m; path = DDMAMapKit_Private/Classes/DDMAMap/Trace/MATraceReplayOverlay.m; sourceTree = ""; }; + 69F7D752E9CB3E474A618873D9726AE5 /* JPush.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = JPush.release.xcconfig; sourceTree = ""; }; + 6A19B681F19BA1300CA12F5FAFD3364B /* RedirectHandler.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RedirectHandler.swift; path = Source/RedirectHandler.swift; sourceTree = ""; }; + 6A22F2F74D59267FD22C1C2AADC04BCC /* ScheduledItem.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ScheduledItem.swift; path = RxSwift/Schedulers/Internal/ScheduledItem.swift; sourceTree = ""; }; + 6A57865949941C1FEE90009694E637B8 /* icon_file_type_fla@2x.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = "icon_file_type_fla@2x.png"; path = "Sources/Resources/FileType/icon_file_type_fla@2x.png"; sourceTree = ""; }; + 6A829AA85C81D31D4B4674AC586D7EE5 /* icon_file_type_md.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = icon_file_type_md.png; path = Sources/Resources/FileType/icon_file_type_md.png; sourceTree = ""; }; + 6A8E86C9C7107E1193EC5E5218691467 /* DDBasicControlsKit_Private.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = DDBasicControlsKit_Private.debug.xcconfig; sourceTree = ""; }; + 6A94AF7B9EB256E82846CC6F621D9A89 /* SDImageCache.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageCache.m; path = DDWebImageKit_Private/Classes/SDWebImage/Core/SDImageCache.m; sourceTree = ""; }; + 6A9E0C8829F553582E5D82C16BF69732 /* ControlProperty.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ControlProperty.swift; path = RxCocoa/Traits/ControlProperty.swift; sourceTree = ""; }; + 6AD9B63E813BEC6DAB08FC2E89381A8B /* _Sandboxer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = _Sandboxer.h; path = Sources/Sandbox/_Sandboxer.h; sourceTree = ""; }; + 6AF54F588087A23BC4F637803DEEFC96 /* CrashStoreManager.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CrashStoreManager.swift; path = Sources/App/CrashStoreManager.swift; sourceTree = ""; }; + 6B4B2662F8699DDD0D5154B01F80C46F /* Alamofire.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = Alamofire.debug.xcconfig; sourceTree = ""; }; + 6BDF0C722EFCEDA51D2DE37EDAE0B8F3 /* ZLPhotoBrowser-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "ZLPhotoBrowser-umbrella.h"; sourceTree = ""; }; + 6C15AACE8C1A4CE01F1702B4A85D8F83 /* UIImageView+WebCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImageView+WebCache.h"; path = "DDWebImageKit_Private/Classes/SDWebImage/Core/UIImageView+WebCache.h"; sourceTree = ""; }; + 6C29E225FC2506831991417F93F02D6A /* icon_file_type_zip@2x.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = "icon_file_type_zip@2x.png"; path = "Sources/Resources/FileType/icon_file_type_zip@2x.png"; sourceTree = ""; }; + 6C403751EE35C06E541A8EBAC2E77BEA /* JXCategoryIndicatorImageView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = JXCategoryIndicatorImageView.m; path = Sources/Indicator/IndicatorViews/JXCategoryIndicatorImageView.m; sourceTree = ""; }; + 6C6121D780603F3C4B2B23B2F9BE8463 /* SDWeakProxy.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWeakProxy.h; path = DDWebImageKit_Private/Classes/SDWebImage/Private/SDWeakProxy.h; sourceTree = ""; }; + 6CA3A9246785CC19F0623EACF6110381 /* DDNavigationControllerDelegateReceiver.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DDNavigationControllerDelegateReceiver.h; path = DDBasicControlsKit_Private/Classes/DDBaseNavigationController/DDNavigationControllerDelegateReceiver.h; sourceTree = ""; }; + 6CB3274A12B193C9C03594599C595AC6 /* icon_file_type_dmg@3x.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = "icon_file_type_dmg@3x.png"; path = "Sources/Resources/FileType/icon_file_type_dmg@3x.png"; sourceTree = ""; }; + 6D1FBF472B9E18A77EC363401568B862 /* SDGraphicsImageRenderer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDGraphicsImageRenderer.h; path = DDWebImageKit_Private/Classes/SDWebImage/Core/SDGraphicsImageRenderer.h; sourceTree = ""; }; + 6D22B3FF18B2F4B35F8FD432C11F8AE8 /* _ImageResources.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = _ImageResources.m; path = Sources/Sandbox/_ImageResources.m; sourceTree = ""; }; + 6D973B23AD2F77BE582903B43F993E6F /* AMapLocationManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AMapLocationManager.h; path = AMapLocationKit.framework/Headers/AMapLocationManager.h; sourceTree = ""; }; + 6DBC77CCE296A080EC456907F4213CC5 /* BehaviorRelay.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = BehaviorRelay.swift; path = RxRelay/BehaviorRelay.swift; sourceTree = ""; }; + 6DECE2CD091998856004D78FC629E2E4 /* ZFLandscapeViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ZFLandscapeViewController.h; path = DDZFPlayerKit_Private/Classes/Core/ZFLandscapeViewController.h; sourceTree = ""; }; + 6DEEA7D8E3C58092036CB4086AC0B0A9 /* icon_file_type_pdf@3x.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = "icon_file_type_pdf@3x.png"; path = "Sources/Resources/FileType/icon_file_type_pdf@3x.png"; sourceTree = ""; }; + 6E2063E9191E5EAF488A97AD44F56C1D /* BRAddressPickerView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = BRAddressPickerView.h; path = BRPickerView/AddressPickerView/BRAddressPickerView.h; sourceTree = ""; }; + 6E52FBDBD1EFD397A82EC84F790ABF50 /* EKAttributes+Animation.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "EKAttributes+Animation.swift"; path = "Source/Model/EntryAttributes/EKAttributes+Animation.swift"; sourceTree = ""; }; + 6E8C75098DA35AB6703B4F91C3E60888 /* Window.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Window.swift; path = RxSwift/Observables/Window.swift; sourceTree = ""; }; + 6EB25FBC860FA77D73E17653A68A963D /* AuthenticationInterceptor.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AuthenticationInterceptor.swift; path = Source/AuthenticationInterceptor.swift; sourceTree = ""; }; + 6EC0950B1ECC72AE06F498F9B5A1E712 /* SDWebImageCacheSerializer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageCacheSerializer.h; path = DDWebImageKit_Private/Classes/SDWebImage/Core/SDWebImageCacheSerializer.h; sourceTree = ""; }; + 6EE32EEA7F284629DAFE42126024DA9D /* icon_file_type_doc.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = icon_file_type_doc.png; path = Sources/Resources/FileType/icon_file_type_doc.png; sourceTree = ""; }; 6EEB8B1CB2BF24B44DEEDC1B058B22E2 /* DDMAMapKit_Private */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = DDMAMapKit_Private; path = libDDMAMapKit_Private.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 6EECFF09F37816B4A63EB28C57EEA20D /* SDAnimatedImage.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDAnimatedImage.m; path = DDWebImageKit_Private/Classes/SDWebImage/Core/SDAnimatedImage.m; sourceTree = ""; }; - 6F0A1AFC858D31E0600DFF7E2B646460 /* SwiftSupport.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SwiftSupport.swift; path = RxSwift/SwiftSupport/SwiftSupport.swift; sourceTree = ""; }; - 6F0CEFB87175D30F1018D422A6209207 /* EKButtonBarView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = EKButtonBarView.swift; path = Source/MessageViews/MessagesUtils/EKButtonBarView.swift; sourceTree = ""; }; - 6F5919AA07C6CA8927D9DA9575C23271 /* NSObject+Rx+KVORepresentable.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "NSObject+Rx+KVORepresentable.swift"; path = "RxCocoa/Foundation/NSObject+Rx+KVORepresentable.swift"; sourceTree = ""; }; - 6FF2323B35988A351F90FD8B446AE8CF /* Filter.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Filter.swift; path = Sources/Image/Filter.swift; sourceTree = ""; }; - 7013D2B7252168A4EE01B52BCD4432D1 /* JCore.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = JCore.debug.xcconfig; sourceTree = ""; }; - 7046BC5E5B92943B6117CD14CD46BA0C /* AMapNaviEleBikeManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AMapNaviEleBikeManager.h; path = AMapNaviKit.framework/Headers/AMapNaviEleBikeManager.h; sourceTree = ""; }; - 707859ADEDEEAAA25CFD10AF69EA0604 /* SDWebImageOptionsProcessor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageOptionsProcessor.h; path = DDWebImageKit_Private/Classes/SDWebImage/Core/SDWebImageOptionsProcessor.h; sourceTree = ""; }; - 7099FEACCF25C6B6D7F2F554C0A2F577 /* JXCategoryView-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "JXCategoryView-dummy.m"; sourceTree = ""; }; - 70C9B7F7A4F29616CAB87E465F57B1D1 /* icon_file_type_dll@3x.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = "icon_file_type_dll@3x.png"; path = "Sources/Resources/FileType/icon_file_type_dll@3x.png"; sourceTree = ""; }; - 70F0EC675800BC9308A0F22D07A43974 /* MJRefresh.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = MJRefresh.debug.xcconfig; sourceTree = ""; }; - 7103741F4368BB8F6777FFB85C454AA9 /* ZFPortraitControlView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = ZFPortraitControlView.m; path = DDZFPlayerKit_Private/Classes/ControlView/ZFPortraitControlView.m; sourceTree = ""; }; + 6F1147DC218281F5558B317E12C41384 /* ZLInputTextViewController.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ZLInputTextViewController.swift; path = Sources/Edit/ZLInputTextViewController.swift; sourceTree = ""; }; + 6F3CBC1012A6E0E7B73568B8D4230DEF /* SDImageAssetManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageAssetManager.m; path = DDWebImageKit_Private/Classes/SDWebImage/Private/SDImageAssetManager.m; sourceTree = ""; }; + 6F5760831A632750BA5434FEE20640AC /* RxCocoaRuntime.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RxCocoaRuntime.h; path = RxCocoa/Runtime/include/RxCocoaRuntime.h; sourceTree = ""; }; + 6F589AC376249AD8CC5716518A2E49EA /* JXCategoryImageView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JXCategoryImageView.h; path = Sources/Image/JXCategoryImageView.h; sourceTree = ""; }; + 6F9A0A3CC2D465040BAD39CDEE3E2960 /* ObservableType+PrimitiveSequence.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "ObservableType+PrimitiveSequence.swift"; path = "RxSwift/Traits/PrimitiveSequence/ObservableType+PrimitiveSequence.swift"; sourceTree = ""; }; + 6FF5864CC332A81D79E267D2F08F5EED /* ParameterEncoder.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ParameterEncoder.swift; path = Source/ParameterEncoder.swift; sourceTree = ""; }; + 707F1D31A6782BA84943F925D3B8B7BC /* UITextView+DDCategory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UITextView+DDCategory.h"; path = "DDCategoryKit_Private/Classes/UITextView+DDCategory/UITextView+DDCategory.h"; sourceTree = ""; }; 71067D1F0754E977C6E009846B257042 /* DDBasicControlsKit_Private-DDBaseViewController */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; name = "DDBasicControlsKit_Private-DDBaseViewController"; path = DDBaseViewController.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; - 710B391010AF84B99A8E2D44BF7FCCAA /* ScheduledDisposable.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ScheduledDisposable.swift; path = RxSwift/Disposables/ScheduledDisposable.swift; sourceTree = ""; }; - 7183D2C916A1DB66F9B83C9D6B323E6C /* BRDatePickerView+BR.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "BRDatePickerView+BR.m"; path = "BRPickerView/DatePickerView/BRDatePickerView+BR.m"; sourceTree = ""; }; - 71AA19570D3E3AEE04C93EA23F53C7C1 /* DDNetworkingOfAlamofireKit_Private.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = DDNetworkingOfAlamofireKit_Private.modulemap; sourceTree = ""; }; - 71BAE3F41BD1D2E96AFE5E0CD19A81DE /* Driver.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Driver.swift; path = RxCocoa/Traits/Driver/Driver.swift; sourceTree = ""; }; - 71D5C1E3734DD75BA4C5AC09B3915725 /* icon_file_type_numbers@2x.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = "icon_file_type_numbers@2x.png"; path = "Sources/Resources/FileType/icon_file_type_numbers@2x.png"; sourceTree = ""; }; - 7211B4D3331D230BABC8B6D37DBFE985 /* UIImage+GIF.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImage+GIF.h"; path = "DDWebImageKit_Private/Classes/SDWebImage/Core/UIImage+GIF.h"; sourceTree = ""; }; - 72136FE9A7AEC123D32FCCC4C4EC5834 /* JXCategoryNumberView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = JXCategoryNumberView.m; path = Sources/Number/JXCategoryNumberView.m; sourceTree = ""; }; - 721AC818625F5EFE1DC5CC8C9F5F7CF4 /* DispatchQueueConfiguration.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = DispatchQueueConfiguration.swift; path = RxSwift/Schedulers/Internal/DispatchQueueConfiguration.swift; sourceTree = ""; }; - 7248734332400269820139B283A66D50 /* icon_file_type_eps@3x.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = "icon_file_type_eps@3x.png"; path = "Sources/Resources/FileType/icon_file_type_eps@3x.png"; sourceTree = ""; }; - 72488E372D48DC0B101CFFDD62C67442 /* JXCategoryIndicatorImageView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JXCategoryIndicatorImageView.h; path = Sources/Indicator/IndicatorViews/JXCategoryIndicatorImageView.h; sourceTree = ""; }; - 725B01B7807CDD8B370B15D874AC0D7B /* UINavigationController+Rx.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "UINavigationController+Rx.swift"; path = "RxCocoa/iOS/UINavigationController+Rx.swift"; sourceTree = ""; }; - 739AA125C98CA71591D06CCB7DA6C20A /* icon_file_type_default@3x.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = "icon_file_type_default@3x.png"; path = "Sources/Resources/FileType/icon_file_type_default@3x.png"; sourceTree = ""; }; - 73AFC3B47EC25DF0EAA85A49EF5EFD69 /* Source.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Source.swift; path = Sources/General/ImageSource/Source.swift; sourceTree = ""; }; - 73D6DB767B7896D077EB271A411FE093 /* Kingfisher-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Kingfisher-dummy.m"; sourceTree = ""; }; - 73E04CB7ACA8FC44CA7D192024840B45 /* UIDatePicker+Rx.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "UIDatePicker+Rx.swift"; path = "RxCocoa/iOS/UIDatePicker+Rx.swift"; sourceTree = ""; }; - 73F8FE3F4D6C3C800BBCEA673B36794F /* SDWebImageDownloader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageDownloader.h; path = DDWebImageKit_Private/Classes/SDWebImage/Core/SDWebImageDownloader.h; sourceTree = ""; }; - 7400908D7794557DA4F2313544E89D6B /* icon_file_type_dll@2x.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = "icon_file_type_dll@2x.png"; path = "Sources/Resources/FileType/icon_file_type_dll@2x.png"; sourceTree = ""; }; - 744A62A90A29385B42C712197ACD3BC7 /* ZFReachabilityManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ZFReachabilityManager.h; path = DDZFPlayerKit_Private/Classes/Core/ZFReachabilityManager.h; sourceTree = ""; }; - 748BA636A801A40B212E240C08F32BBD /* ZLPhotoBrowser-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "ZLPhotoBrowser-dummy.m"; sourceTree = ""; }; - 749E912093EA812260435AFBC5C9D5D0 /* icon_file_type_js@3x.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = "icon_file_type_js@3x.png"; path = "Sources/Resources/FileType/icon_file_type_js@3x.png"; sourceTree = ""; }; - 74AF63C10ED0BCE3F466B17EF4BFA791 /* DDMATrackManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DDMATrackManager.h; path = DDMAMapKit_Private/Classes/DDMATrackManager/DDMATrackManager.h; sourceTree = ""; }; - 74B48BEE88F72C2A54CC979B7DA89D4B /* SnapKit.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = SnapKit.modulemap; sourceTree = ""; }; - 74B653D245EF6ED8740C1E03E469DB69 /* SDImageGraphics.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageGraphics.h; path = DDWebImageKit_Private/Classes/SDWebImage/Core/SDImageGraphics.h; sourceTree = ""; }; - 74C323257166A40357E0BF1FD850043A /* AMapTrackError.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AMapTrackError.h; path = AMapTrackKit.framework/Headers/AMapTrackError.h; sourceTree = ""; }; - 74CADCBAD3B2B370DC383AE7BA2627CE /* SDDeviceHelper.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDDeviceHelper.m; path = DDWebImageKit_Private/Classes/SDWebImage/Private/SDDeviceHelper.m; sourceTree = ""; }; - 74CAE6A0795A55BE91124BACF24F3A34 /* UIScrollView+MJRefresh.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIScrollView+MJRefresh.h"; path = "MJRefresh/UIScrollView+MJRefresh.h"; sourceTree = ""; }; - 74D75E2145F221B9A070A7707B775E19 /* RetryPolicy.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RetryPolicy.swift; path = Source/RetryPolicy.swift; sourceTree = ""; }; - 7511420CEBF28A0E09CE32E5D751AFC3 /* icon_file_type_mp3@2x.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = "icon_file_type_mp3@2x.png"; path = "Sources/Resources/FileType/icon_file_type_mp3@2x.png"; sourceTree = ""; }; - 75175138CADA071FAC67FEDBBF373177 /* Deferred.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Deferred.swift; path = RxSwift/Observables/Deferred.swift; sourceTree = ""; }; - 753BC638558107129B793AD7522A2283 /* icon_file_type_xml@3x.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = "icon_file_type_xml@3x.png"; path = "Sources/Resources/FileType/icon_file_type_xml@3x.png"; sourceTree = ""; }; - 756DBB4FC30229EAB896E02B5A47C586 /* DDColorKit_Private.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = DDColorKit_Private.release.xcconfig; sourceTree = ""; }; - 7570B94E4068932893DE062B76777967 /* icon_file_type_xls@2x.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = "icon_file_type_xls@2x.png"; path = "Sources/Resources/FileType/icon_file_type_xls@2x.png"; sourceTree = ""; }; - 75738FDE72D8C5DBA06B327AB289BE96 /* UIViewController+ZFPlayerRotation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIViewController+ZFPlayerRotation.m"; path = "DDZFPlayerKit_Private/Classes/Core/UIViewController+ZFPlayerRotation.m"; sourceTree = ""; }; - 7578B1E448738D69E9C4DF0C17B5877B /* Multicast.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Multicast.swift; path = RxSwift/Observables/Multicast.swift; sourceTree = ""; }; - 764AAD31E565E636988109B6534973BA /* SDWebImageDefine.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageDefine.h; path = DDWebImageKit_Private/Classes/SDWebImage/Core/SDWebImageDefine.h; sourceTree = ""; }; - 7679C6E47A476147BEDA0320FC054B61 /* ObservableConvertibleType+SharedSequence.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "ObservableConvertibleType+SharedSequence.swift"; path = "RxCocoa/Traits/SharedSequence/ObservableConvertibleType+SharedSequence.swift"; sourceTree = ""; }; - 767D65967245EB4123B0E51D3957655A /* MAMultiPoint.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MAMultiPoint.h; path = AMapNaviKit.framework/Headers/MAMultiPoint.h; sourceTree = ""; }; - 7681F4AD479265BBC9C0CA8ABE1CDC22 /* NSThread+DDCategory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSThread+DDCategory.h"; path = "DDCategoryKit_Private/Classes/NSThread+DDCategory/NSThread+DDCategory.h"; sourceTree = ""; }; - 768923FDFFF9B8B8AA3C7282C8D0DE4F /* icon_file_type_json@2x.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = "icon_file_type_json@2x.png"; path = "Sources/Resources/FileType/icon_file_type_json@2x.png"; sourceTree = ""; }; - 7695BDCA52BDA57584A5F489F084FF63 /* _DeviceUtil+Constant.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "_DeviceUtil+Constant.m"; path = "Sources/Core/_DeviceUtil+Constant.m"; sourceTree = ""; }; - 76A7530FC0F8224118AF93A08EAC0B30 /* DDZFPlayerKit_Private-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "DDZFPlayerKit_Private-prefix.pch"; sourceTree = ""; }; - 76D578C0BE9CEBA2BFE2B4810875599C /* DDProgressHUDKit_Private-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "DDProgressHUDKit_Private-umbrella.h"; sourceTree = ""; }; - 76E9631B3799E12666172D4E285EDAB4 /* _HttpDatasource.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = _HttpDatasource.m; path = Sources/Network/_HttpDatasource.m; sourceTree = ""; }; - 771BDB819381B0B674CE810430D642CA /* ImagePrefetcher.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ImagePrefetcher.swift; path = Sources/Networking/ImagePrefetcher.swift; sourceTree = ""; }; - 779AAA7B8EDB56F30BE69CCAAF6E993C /* JXCategoryIndicatorTriangleView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = JXCategoryIndicatorTriangleView.m; path = Sources/Indicator/IndicatorViews/JXCategoryIndicatorTriangleView.m; sourceTree = ""; }; - 780FFC285E820BBA75243BE206C3D447 /* icon_file_type_default.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = icon_file_type_default.png; path = Sources/Resources/FileType/icon_file_type_default.png; sourceTree = ""; }; - 78164EA811F651860320F92B43DE3468 /* SDFileAttributeHelper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDFileAttributeHelper.h; path = DDWebImageKit_Private/Classes/SDWebImage/Private/SDFileAttributeHelper.h; sourceTree = ""; }; - 781CCD3BD64AF4C147E8952BC37692AD /* CPListItem+Kingfisher.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "CPListItem+Kingfisher.swift"; path = "Sources/Extensions/CPListItem+Kingfisher.swift"; sourceTree = ""; }; - 781E0C197B573A11D8B25ADC6985A8DE /* EKRatingMessage.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = EKRatingMessage.swift; path = Source/Model/EKRatingMessage.swift; sourceTree = ""; }; - 781EC228E9D6BA0C81BE9BC06D4FD8F3 /* EKProcessingNoteMessageView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = EKProcessingNoteMessageView.swift; path = Source/MessageViews/Notes/EKProcessingNoteMessageView.swift; sourceTree = ""; }; - 78578AE5356AF9967CBD900B55267D21 /* Generate.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Generate.swift; path = RxSwift/Observables/Generate.swift; sourceTree = ""; }; - 785978A57FFD22CB18C0229EE3EA552D /* DDScrollView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = DDScrollView.swift; path = DDControlsKit_Private/Classes/DDScrollView/DDScrollView.swift; sourceTree = ""; }; - 7885C582CA0DAD89BB4113029267A8BD /* UITableViewCell+DDCategory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UITableViewCell+DDCategory.h"; path = "DDCategoryKit_Private/Classes/UITableViewCell+DDCategory/UITableViewCell+DDCategory.h"; sourceTree = ""; }; - 78933CA845E0F27681B450CADD8C49EA /* UIImageView+DDWebCache.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIImageView+DDWebCache.m"; path = "DDWebImageKit_Private/Classes/DDWebImage/UIImageView+DDWebCache.m"; sourceTree = ""; }; - 789607F19987B7D812F6C28CF0A9F53E /* ParameterEncoding.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ParameterEncoding.swift; path = Source/ParameterEncoding.swift; sourceTree = ""; }; - 78C2A13294B1616B337EA76AC105F222 /* EKAttributes+PositionConstraints.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "EKAttributes+PositionConstraints.swift"; path = "Source/Model/EntryAttributes/EKAttributes+PositionConstraints.swift"; sourceTree = ""; }; - 78D9ACE2589AEEC556ED92EE9B1702C8 /* Reduce.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Reduce.swift; path = RxSwift/Observables/Reduce.swift; sourceTree = ""; }; - 79296BD853BD4EEA3F52174AFFF855AE /* DDViewController.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = DDViewController.swift; path = DDControlsKit_Private/Classes/DDViewController/DDViewController.swift; sourceTree = ""; }; - 793B9DAB46FDEF51BE4D924FE98B439F /* DDBaseViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DDBaseViewController.h; path = DDBasicControlsKit_Private/Classes/DDBaseViewController/DDBaseViewController.h; sourceTree = ""; }; - 7951229A3C355708C79A01BEACF2D70F /* RxTableViewDelegateProxy.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RxTableViewDelegateProxy.swift; path = RxCocoa/iOS/Proxies/RxTableViewDelegateProxy.swift; sourceTree = ""; }; - 795BABA3E090FCAE894E859604191700 /* JXCategoryListContainerView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JXCategoryListContainerView.h; path = Sources/Common/JXCategoryListContainerView.h; sourceTree = ""; }; - 797714B5D73C1E9BF5F22B995F544F31 /* DDBasicControlsKit_Private-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "DDBasicControlsKit_Private-umbrella.h"; sourceTree = ""; }; - 79963A817C253B0AA6D824E22753A418 /* AppInfoViewController.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AppInfoViewController.swift; path = Sources/App/AppInfoViewController.swift; sourceTree = ""; }; - 7999E95BF01AF4476DDCDA223B14858B /* UIButton+WebCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIButton+WebCache.h"; path = "DDWebImageKit_Private/Classes/SDWebImage/Core/UIButton+WebCache.h"; sourceTree = ""; }; - 79A41F3D46DAADE36DA9540613D85C34 /* UIImage+Metadata.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIImage+Metadata.m"; path = "DDWebImageKit_Private/Classes/SDWebImage/Core/UIImage+Metadata.m"; sourceTree = ""; }; - 79AECA241D3B6E6105DEFDD8157396E3 /* SnapKit-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "SnapKit-prefix.pch"; sourceTree = ""; }; - 79B54B9380FA546B2D2B8720BC22F0F2 /* icon_file_type_java@2x.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = "icon_file_type_java@2x.png"; path = "Sources/Resources/FileType/icon_file_type_java@2x.png"; sourceTree = ""; }; - 7A319E43420D7EFBF3620F4F1CB18BA6 /* RetryStrategy.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RetryStrategy.swift; path = Sources/Networking/RetryStrategy.swift; sourceTree = ""; }; - 7A45C29E305E44845DAAF3984D7DF80A /* UISwitch+DDCategory.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UISwitch+DDCategory.m"; path = "DDCategoryKit_Private/Classes/UISwitch+DDCategory/UISwitch+DDCategory.m"; sourceTree = ""; }; - 7A5FF7BC2D8B95FEA46B01F2404411F5 /* PublishRelay+Signal.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "PublishRelay+Signal.swift"; path = "RxCocoa/Traits/Signal/PublishRelay+Signal.swift"; sourceTree = ""; }; + 71530BC7D723AAE2AB156CDC315857AF /* SDWebImageCacheKeyFilter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageCacheKeyFilter.h; path = DDWebImageKit_Private/Classes/SDWebImage/Core/SDWebImageCacheKeyFilter.h; sourceTree = ""; }; + 715FF079BB749EA6EC2C8E7EFEE01776 /* BRStringPickerView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = BRStringPickerView.h; path = BRPickerView/StringPickerView/BRStringPickerView.h; sourceTree = ""; }; + 718279146D62E5B3A48236C049B84C3B /* DDAudioService.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = DDAudioService.swift; path = DDAudioPlayerKit_Private/Classes/DDAudioService.swift; sourceTree = ""; }; + 71965EEE4DDC125CD5C4A68CF9CD0E01 /* _CanonicalRequest.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = _CanonicalRequest.h; path = Sources/CustomHTTPProtocol/_CanonicalRequest.h; sourceTree = ""; }; + 71A4BE9E17926AC2D674F378E2A77BEE /* SDWebImageDownloaderOperation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageDownloaderOperation.m; path = DDWebImageKit_Private/Classes/SDWebImage/Core/SDWebImageDownloaderOperation.m; sourceTree = ""; }; + 7216F5AF243D97E74E0D909C97E20606 /* MJRefreshAutoGifFooter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MJRefreshAutoGifFooter.m; path = MJRefresh/Custom/Footer/Auto/MJRefreshAutoGifFooter.m; sourceTree = ""; }; + 721B12CB3201E0F78C427155AEB6FCE4 /* Box.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Box.swift; path = Sources/Utility/Box.swift; sourceTree = ""; }; + 72AF32E7E82947FD9AC91381D2F2E4CF /* ImageDrawing.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ImageDrawing.swift; path = Sources/Image/ImageDrawing.swift; sourceTree = ""; }; + 72DA83CEAE200DCA6853B9EB68401EBA /* IJKMediaFramework.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = IJKMediaFramework.framework; path = DDZFPlayerKit_Private/Classes/ijkplayer/IJKMediaFramework.framework; sourceTree = ""; }; + 72F4DF64ECB98FA5FB17009AFA6CE020 /* _DeviceUtil.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = _DeviceUtil.m; path = Sources/Core/_DeviceUtil.m; sourceTree = ""; }; + 72FA0FFEEFE3F7F42E7D310F550B221C /* CocoaDebugNavigationController.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CocoaDebugNavigationController.swift; path = Sources/Window/CocoaDebugNavigationController.swift; sourceTree = ""; }; + 7308F1F05FD71FB96E1D09B2E6C28D0C /* icon_file_type_pages.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = icon_file_type_pages.png; path = Sources/Resources/FileType/icon_file_type_pages.png; sourceTree = ""; }; + 732C5317E0DE96EB6E47A83C775DBE0E /* Placeholder.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Placeholder.swift; path = Sources/Image/Placeholder.swift; sourceTree = ""; }; + 7346DCB09CB67D9EAFCB67215E71C0CD /* AtomicInt.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AtomicInt.swift; path = Platform/AtomicInt.swift; sourceTree = ""; }; + 7395394A22CCFDEE822231B7E965079C /* SwiftEntryKit.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = SwiftEntryKit.modulemap; sourceTree = ""; }; + 73BC5FEAB4653A7F1F7AA023303CD131 /* _fishhook.c */ = {isa = PBXFileReference; includeInIndex = 1; name = _fishhook.c; path = Sources/fishhook/_fishhook.c; sourceTree = ""; }; + 73C8A6AEE4F8853B589A90026FA41920 /* UINavigationItem+DDCategory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UINavigationItem+DDCategory.h"; path = "DDCategoryKit_Private/Classes/UINavigationItem+DDCategory/UINavigationItem+DDCategory.h"; sourceTree = ""; }; + 74559A7ADF7153959B36D2B40BCCBEDF /* JPush-xcframeworks.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "JPush-xcframeworks.sh"; sourceTree = ""; }; + 7461F23EDA1518F6883EEB3E41CA0304 /* AsyncSubject.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AsyncSubject.swift; path = RxSwift/Subjects/AsyncSubject.swift; sourceTree = ""; }; + 748960030C36ABF440BA1CE28F9C5EFB /* Materialize.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Materialize.swift; path = RxSwift/Observables/Materialize.swift; sourceTree = ""; }; + 748A002AFB525CEBB5483E750E03B35F /* icon_file_type_folder_not_empty.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = icon_file_type_folder_not_empty.png; path = Sources/Resources/FileType/icon_file_type_folder_not_empty.png; sourceTree = ""; }; + 748A512F28A34DFCAC2E395D397C6E39 /* Event.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Event.swift; path = RxSwift/Event.swift; sourceTree = ""; }; + 7497940B92A0CBC3D015EE3CE5CFE01A /* icon_file_type_numbers@2x.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = "icon_file_type_numbers@2x.png"; path = "Sources/Resources/FileType/icon_file_type_numbers@2x.png"; sourceTree = ""; }; + 74DA4AED3A5D60302C79996DFC5C5F05 /* ZLImageNavController.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ZLImageNavController.swift; path = Sources/General/ZLImageNavController.swift; sourceTree = ""; }; + 74EC81B1268BA03B9BAAFFD60DBDB186 /* MJRefreshAutoGifFooter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MJRefreshAutoGifFooter.h; path = MJRefresh/Custom/Footer/Auto/MJRefreshAutoGifFooter.h; sourceTree = ""; }; + 75190BD62CC524E82385D0BC2E087422 /* Kingfisher-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Kingfisher-umbrella.h"; sourceTree = ""; }; + 75295F1992F51B3A54E218B383731408 /* AMapNearbySearchManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AMapNearbySearchManager.h; path = AMapSearchKit.framework/Headers/AMapNearbySearchManager.h; sourceTree = ""; }; + 7531A111C97507236F1EFDDE18FDFF79 /* ZFIJKPlayerManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = ZFIJKPlayerManager.m; path = DDZFPlayerKit_Private/Classes/ijkplayer/ZFIJKPlayerManager.m; sourceTree = ""; }; + 7570DB9E78635FA9807BC95099AE6E99 /* ConstraintConstantTarget.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ConstraintConstantTarget.swift; path = Sources/ConstraintConstantTarget.swift; sourceTree = ""; }; + 7593E68CD0D047B1AA07A88D26C807B7 /* SDWebImageError.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageError.h; path = DDWebImageKit_Private/Classes/SDWebImage/Core/SDWebImageError.h; sourceTree = ""; }; + 75E1414EAAA001BFFD7FC6793522CD46 /* ZLPhotoBrowser.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ZLPhotoBrowser.swift; path = Sources/General/ZLPhotoBrowser.swift; sourceTree = ""; }; + 75E7E42016ACEA4311FE1D133120EA8E /* NSButton+WebCache.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSButton+WebCache.m"; path = "DDWebImageKit_Private/Classes/SDWebImage/Core/NSButton+WebCache.m"; sourceTree = ""; }; + 75E9D2C6B1F009CBAB091818A4F6FB70 /* NetworkDetailViewController.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = NetworkDetailViewController.swift; path = Sources/Network/NetworkDetailViewController.swift; sourceTree = ""; }; + 75F08EBA33E8D2991376A8BDB0511D2F /* Cell+ZLPhotoBrowser.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Cell+ZLPhotoBrowser.swift"; path = "Sources/Extensions/Cell+ZLPhotoBrowser.swift"; sourceTree = ""; }; + 760A359746A34A6C59BF4E271F7AAFD3 /* SDDisplayLink.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDDisplayLink.m; path = DDWebImageKit_Private/Classes/SDWebImage/Private/SDDisplayLink.m; sourceTree = ""; }; + 763152F9DFFFA3E497E7E5A78A48D4D8 /* AppInfoViewController.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AppInfoViewController.swift; path = Sources/App/AppInfoViewController.swift; sourceTree = ""; }; + 7697632DDA1A72A6E4285A93DC6E8279 /* AMapLocationCommonObj.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AMapLocationCommonObj.h; path = AMapLocationKit.framework/Headers/AMapLocationCommonObj.h; sourceTree = ""; }; + 76E545C9B1ED71650D71652727789DAC /* _icon_file_type_down@2x.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = "_icon_file_type_down@2x.png"; path = "Sources/Resources/images/_icon_file_type_down@2x.png"; sourceTree = ""; }; + 76E7EA8EC2095659AE9175BBA6CB40BB /* UIButton+WebCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIButton+WebCache.h"; path = "DDWebImageKit_Private/Classes/SDWebImage/Core/UIButton+WebCache.h"; sourceTree = ""; }; + 76EBD55EC0FCF574FF898649700156EE /* ZLClipImageViewController.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ZLClipImageViewController.swift; path = Sources/Edit/ZLClipImageViewController.swift; sourceTree = ""; }; + 76F9E81D173F62FCFBBF4B63AFF94B8C /* SDImageCacheConfig.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageCacheConfig.h; path = DDWebImageKit_Private/Classes/SDWebImage/Core/SDImageCacheConfig.h; sourceTree = ""; }; + 7709DD62399CFC13BF0390A0BD71D6EC /* PrimitiveSequence+Concurrency.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "PrimitiveSequence+Concurrency.swift"; path = "RxSwift/Traits/PrimitiveSequence/PrimitiveSequence+Concurrency.swift"; sourceTree = ""; }; + 77160F7BF16B91B2D9844B16AB83623B /* HistoricalSchedulerTimeConverter.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = HistoricalSchedulerTimeConverter.swift; path = RxSwift/Schedulers/HistoricalSchedulerTimeConverter.swift; sourceTree = ""; }; + 771811A58ABDD9E57E6F6329FC72F699 /* RefCountDisposable.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RefCountDisposable.swift; path = RxSwift/Disposables/RefCountDisposable.swift; sourceTree = ""; }; + 776D9C1A9AFDBDA4B9CADE3AEFD1F4A1 /* Typealiases.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Typealiases.swift; path = Sources/Typealiases.swift; sourceTree = ""; }; + 777C80ED578A3810BFD650C16AE3ADCE /* AMapNearbyUploadInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AMapNearbyUploadInfo.h; path = AMapSearchKit.framework/Headers/AMapNearbyUploadInfo.h; sourceTree = ""; }; + 77A98B58F3B41349E68CDD317850FC5D /* _RXDelegateProxy.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = _RXDelegateProxy.h; path = RxCocoa/Runtime/include/_RXDelegateProxy.h; sourceTree = ""; }; + 781C4E7E6AF60BABFF5D86D53499F39D /* _DeviceUtil+Constant.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "_DeviceUtil+Constant.m"; path = "Sources/Core/_DeviceUtil+Constant.m"; sourceTree = ""; }; + 7830D58A41E6A57C2BF245A3CAD1E058 /* icon_file_type_png@3x.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = "icon_file_type_png@3x.png"; path = "Sources/Resources/FileType/icon_file_type_png@3x.png"; sourceTree = ""; }; + 787C5C2D0F79958F56A7E36EF7CA668F /* AMapNaviManagerConfig.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AMapNaviManagerConfig.h; path = AMapNaviKit.framework/Headers/AMapNaviManagerConfig.h; sourceTree = ""; }; + 78DB9636223BA7446E901986F1BFC86D /* ZFPlayerControlView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = ZFPlayerControlView.m; path = DDZFPlayerKit_Private/Classes/ControlView/ZFPlayerControlView.m; sourceTree = ""; }; + 78F7AED15BA044E40B17F02634200361 /* NSMutableAttributedString+DDCategory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSMutableAttributedString+DDCategory.h"; path = "DDCategoryKit_Private/Classes/NSAttributedString+DDCategory/NSMutableAttributedString+DDCategory.h"; sourceTree = ""; }; + 7910D828D30815A4084832C84E065ABD /* SDAnimatedImagePlayer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDAnimatedImagePlayer.m; path = DDWebImageKit_Private/Classes/SDWebImage/Core/SDAnimatedImagePlayer.m; sourceTree = ""; }; + 7916E7EBFC2EEFFE0004593327077C82 /* DDWebImageKit_Private.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = DDWebImageKit_Private.debug.xcconfig; sourceTree = ""; }; + 793C3DAF5A8365FC6EEE804CFF85D948 /* SDImageIOAnimatedCoder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageIOAnimatedCoder.h; path = DDWebImageKit_Private/Classes/SDWebImage/Core/SDImageIOAnimatedCoder.h; sourceTree = ""; }; + 79A7733C99A968670FBCEE19DF0898A4 /* RxTableViewDataSourceProxy.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RxTableViewDataSourceProxy.swift; path = RxCocoa/iOS/Proxies/RxTableViewDataSourceProxy.swift; sourceTree = ""; }; + 79E5766F0816D67B02D74B9B8EA86E2E /* BRResultModel.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = BRResultModel.h; path = BRPickerView/StringPickerView/BRResultModel.h; sourceTree = ""; }; + 79F998B0DF52706CE9C094C305DE3976 /* AMapNaviEleBikeDataRepresentable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AMapNaviEleBikeDataRepresentable.h; path = AMapNaviKit.framework/Headers/AMapNaviEleBikeDataRepresentable.h; sourceTree = ""; }; + 7A4ACCA8D23AABD188369200BD0BC5B4 /* JXCategoryIndicatorCell.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = JXCategoryIndicatorCell.m; path = Sources/Indicator/JXCategoryIndicatorCell.m; sourceTree = ""; }; 7A74632F43EA3445C68EC4894ABA21DC /* Pods-OrderScheduling-acknowledgements.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-OrderScheduling-acknowledgements.plist"; sourceTree = ""; }; - 7A9830F8ECA67C5FF722B9335DBECB95 /* icon_file_type_folder_not_empty@2x.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = "icon_file_type_folder_not_empty@2x.png"; path = "Sources/Resources/FileType/icon_file_type_folder_not_empty@2x.png"; sourceTree = ""; }; - 7AB06867D448C6AA4210CBF37D9E41AE /* DDMAMapKit_Private-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "DDMAMapKit_Private-umbrella.h"; sourceTree = ""; }; - 7B16D673C21F66C3035CC3A5D202B8BA /* UIImageView+DDCategory.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIImageView+DDCategory.m"; path = "DDCategoryKit_Private/Classes/UIImageView+DDCategory/UIImageView+DDCategory.m"; sourceTree = ""; }; - 7B20423DA6601151401A579272B5831E /* MJRefreshBackGifFooter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MJRefreshBackGifFooter.h; path = MJRefresh/Custom/Footer/Back/MJRefreshBackGifFooter.h; sourceTree = ""; }; - 7B4C334E64B93977B3439E204A28E255 /* PrimitiveSequence.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = PrimitiveSequence.swift; path = RxSwift/Traits/PrimitiveSequence/PrimitiveSequence.swift; sourceTree = ""; }; - 7B5C9266030EDD7269A19B9B2861140E /* DDColorKit_Private-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "DDColorKit_Private-umbrella.h"; sourceTree = ""; }; - 7B91697E60F6039F0982CD3C16528F9D /* MJRefreshBackStateFooter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MJRefreshBackStateFooter.h; path = MJRefresh/Custom/Footer/Back/MJRefreshBackStateFooter.h; sourceTree = ""; }; - 7BBC6B884E574345D5171B1F0453A744 /* NetworkReachabilityManager.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = NetworkReachabilityManager.swift; path = Source/NetworkReachabilityManager.swift; sourceTree = ""; }; - 7BDD14EFBD9A46A92FB96B49061CAAA3 /* AMapSearchAPI.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AMapSearchAPI.h; path = AMapSearchKit.framework/Headers/AMapSearchAPI.h; sourceTree = ""; }; - 7BED3AB828B121FECF48E7B0FAA11C0C /* MALineDrawType.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MALineDrawType.h; path = AMapNaviKit.framework/Headers/MALineDrawType.h; sourceTree = ""; }; - 7BFC111842371C60D1C45662A320EB66 /* UITableView+Rx.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "UITableView+Rx.swift"; path = "RxCocoa/iOS/UITableView+Rx.swift"; sourceTree = ""; }; - 7C00FB65173E8117600A552931BF6148 /* ImageDataProvider.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ImageDataProvider.swift; path = Sources/General/ImageSource/ImageDataProvider.swift; sourceTree = ""; }; - 7C839126F5B2B998CFB6031E3669DF31 /* JXCategoryNumberCellModel.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = JXCategoryNumberCellModel.m; path = Sources/Number/JXCategoryNumberCellModel.m; sourceTree = ""; }; - 7CA332AB095C0D0C670BDAD4256FCEB7 /* UIColor+JXAdd.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIColor+JXAdd.h"; path = "Sources/Common/UIColor+JXAdd.h"; sourceTree = ""; }; - 7CB7448C5E58D7903F11DFAB8DA43A6F /* MATileOverlayRenderer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MATileOverlayRenderer.h; path = AMapNaviKit.framework/Headers/MATileOverlayRenderer.h; sourceTree = ""; }; - 7CE08E4FBC8AFB41B12299985491D4DC /* JXCategoryTitleImageView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = JXCategoryTitleImageView.m; path = Sources/TitleImage/JXCategoryTitleImageView.m; sourceTree = ""; }; - 7CE132A8EE75A412A93436A5ED731F8E /* ImageContext.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ImageContext.swift; path = Sources/SwiftUI/ImageContext.swift; sourceTree = ""; }; - 7D05A8EF5D0161D15ED3AB81B8847251 /* SDImageLoader.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageLoader.m; path = DDWebImageKit_Private/Classes/SDWebImage/Core/SDImageLoader.m; sourceTree = ""; }; - 7D1954D1F130668F1EF37BEE9043B311 /* IQToolbar.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = IQToolbar.swift; path = IQKeyboardManagerSwift/IQToolbar/IQToolbar.swift; sourceTree = ""; }; - 7D8BBDF1551BECD4B943B79AAA4957B7 /* AMapSearchKit.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AMapSearchKit.h; path = AMapSearchKit.framework/Headers/AMapSearchKit.h; sourceTree = ""; }; - 7D954269AC14EBA13CBB0C7946F3A26B /* ZLTextStickerView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ZLTextStickerView.swift; path = Sources/Edit/ZLTextStickerView.swift; sourceTree = ""; }; - 7DA32B5D335E47BC812168C67D1A9A50 /* SDFileAttributeHelper.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDFileAttributeHelper.m; path = DDWebImageKit_Private/Classes/SDWebImage/Private/SDFileAttributeHelper.m; sourceTree = ""; }; - 7DA850BEFE03C42288AF2008FCDA8406 /* icon_file_type_ppt.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = icon_file_type_ppt.png; path = Sources/Resources/FileType/icon_file_type_ppt.png; sourceTree = ""; }; - 7DBD353B7B8B2FB032BA01171D5829F7 /* _icon_file_type_up@2x.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = "_icon_file_type_up@2x.png"; path = "Sources/Resources/images/_icon_file_type_up@2x.png"; sourceTree = ""; }; - 7DF2B05B04D08A675DD0298DB5D10CF2 /* ConstraintConstantTarget.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ConstraintConstantTarget.swift; path = Sources/ConstraintConstantTarget.swift; sourceTree = ""; }; - 7E7C7BDB15E7EF896BE8C842B8EB1267 /* EKAttributes+PopBehavior.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "EKAttributes+PopBehavior.swift"; path = "Source/Model/EntryAttributes/EKAttributes+PopBehavior.swift"; sourceTree = ""; }; - 7E7D7A39D94EC6E14207C223CB14F2CC /* BehaviorRelay.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = BehaviorRelay.swift; path = RxRelay/BehaviorRelay.swift; sourceTree = ""; }; - 7ECE7BA67A0FE41BA21564D2F43A1F81 /* EKXStatusBarMessageView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = EKXStatusBarMessageView.swift; path = Source/MessageViews/Notes/EKXStatusBarMessageView.swift; sourceTree = ""; }; - 7EE83611650EDF07E7D38271029EF191 /* Observable+Bind.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Observable+Bind.swift"; path = "RxRelay/Observable+Bind.swift"; sourceTree = ""; }; - 7F11FCDA507865B4D6C9F1421FC90CE9 /* AMapNearbySearchManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AMapNearbySearchManager.h; path = AMapSearchKit.framework/Headers/AMapNearbySearchManager.h; sourceTree = ""; }; - 7F483825F3CB9B13EAA97C8E71F4ACFC /* MJRefreshComponent.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MJRefreshComponent.m; path = MJRefresh/Base/MJRefreshComponent.m; sourceTree = ""; }; - 7F57CC44A8509BF883418D42537ED136 /* AMapNavi-NO-IDFA.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "AMapNavi-NO-IDFA.release.xcconfig"; sourceTree = ""; }; - 7F598D9F166A0F728E99E590C34BB985 /* ConstraintRelation.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ConstraintRelation.swift; path = Sources/ConstraintRelation.swift; sourceTree = ""; }; - 7F5CE7828D4795456C2E7BDD4982C483 /* UIImage+Transform.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImage+Transform.h"; path = "DDWebImageKit_Private/Classes/SDWebImage/Core/UIImage+Transform.h"; sourceTree = ""; }; - 7F61FC74E1D0203FD78ECEEB2D0C6C81 /* icon_file_type_7z.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = icon_file_type_7z.png; path = Sources/Resources/FileType/icon_file_type_7z.png; sourceTree = ""; }; - 7F6F457E0A6D2D39818D9638D54DB6CF /* MJRefreshAutoGifFooter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MJRefreshAutoGifFooter.h; path = MJRefresh/Custom/Footer/Auto/MJRefreshAutoGifFooter.h; sourceTree = ""; }; - 7F99AFA0A337CE5AC46A0EA50E75F54B /* ESTabBarController-swift-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "ESTabBarController-swift-umbrella.h"; sourceTree = ""; }; - 7FE5EFA3C3CB4B17ABE93CD11536FED2 /* MAArcRenderer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MAArcRenderer.h; path = AMapNaviKit.framework/Headers/MAArcRenderer.h; sourceTree = ""; }; - 7FFB61D0320EEADEFFCBC5791E6ABAC3 /* _ObjcLog.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = _ObjcLog.h; path = Sources/Logs/_ObjcLog.h; sourceTree = ""; }; - 8001D23F262F5F63F0EF72A2EBB114FF /* Response.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Response.swift; path = Source/Response.swift; sourceTree = ""; }; - 80473E7955515BA5BDBC57C06A5120AE /* icon_file_type_keynote@3x.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = "icon_file_type_keynote@3x.png"; path = "Sources/Resources/FileType/icon_file_type_keynote@3x.png"; sourceTree = ""; }; - 8067B14081C91A567B66DC6B18ECF185 /* Completable+AndThen.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Completable+AndThen.swift"; path = "RxSwift/Traits/PrimitiveSequence/Completable+AndThen.swift"; sourceTree = ""; }; - 807FA4386FF34B32EAA07A2A232A07AD /* UIActivityIndicatorView+Rx.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "UIActivityIndicatorView+Rx.swift"; path = "RxCocoa/iOS/UIActivityIndicatorView+Rx.swift"; sourceTree = ""; }; - 80987642EBA08B6BDCA985D41855CEF5 /* UIApplication+EKAppearance.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "UIApplication+EKAppearance.swift"; path = "Source/Extensions/UIApplication+EKAppearance.swift"; sourceTree = ""; }; - 809BE02D615342E82B664742613081D4 /* JXCategoryTitleCell.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = JXCategoryTitleCell.m; path = Sources/Title/JXCategoryTitleCell.m; sourceTree = ""; }; + 7A8CD8D8252849840933F64016F2954C /* UICollectionViewLayout+MJRefresh.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UICollectionViewLayout+MJRefresh.h"; path = "MJRefresh/UICollectionViewLayout+MJRefresh.h"; sourceTree = ""; }; + 7AA0400EDEE1936C5464A99AD94035C6 /* ZLPhotoBrowser-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "ZLPhotoBrowser-prefix.pch"; sourceTree = ""; }; + 7AC299BFF4B36E46DA5E5C19A243BEE6 /* Disposables.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Disposables.swift; path = RxSwift/Disposables/Disposables.swift; sourceTree = ""; }; + 7ACF3BE2D005EC372D66C6860F5DFE67 /* ZLFilter.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ZLFilter.swift; path = Sources/Edit/ZLFilter.swift; sourceTree = ""; }; + 7AE3D7BACED7B735ED100166677EE994 /* JXCategoryTitleCellModel.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = JXCategoryTitleCellModel.m; path = Sources/Title/JXCategoryTitleCellModel.m; sourceTree = ""; }; + 7AEF3ABB0A35E0C5283C87A9DB435980 /* FontUtil.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = FontUtil.swift; path = DDFontKit_Private/Classes/FontUtil.swift; sourceTree = ""; }; + 7AFBAC2D7F0D9F84498D6786687D58ED /* ConstraintMakerRelatable+Extensions.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "ConstraintMakerRelatable+Extensions.swift"; path = "Sources/ConstraintMakerRelatable+Extensions.swift"; sourceTree = ""; }; + 7AFFA4A543A638320E30BF5221558469 /* UITextField+Rx.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "UITextField+Rx.swift"; path = "RxCocoa/iOS/UITextField+Rx.swift"; sourceTree = ""; }; + 7B747A68B2F96CDF195E110ED82BA11C /* DDWebImageKit_Private.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = DDWebImageKit_Private.modulemap; sourceTree = ""; }; + 7B9475A3AEF81D09A088D498993EC74C /* HistoricalScheduler.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = HistoricalScheduler.swift; path = RxSwift/Schedulers/HistoricalScheduler.swift; sourceTree = ""; }; + 7BA5BF848F3B2CC18719429673C572BC /* ReplaySubject.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ReplaySubject.swift; path = RxSwift/Subjects/ReplaySubject.swift; sourceTree = ""; }; + 7BC6379377846296741D8F2DBA0420E0 /* GroupBy.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = GroupBy.swift; path = RxSwift/Observables/GroupBy.swift; sourceTree = ""; }; + 7BD514F3DE2A753225A669ED836D142B /* Throttle.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Throttle.swift; path = RxSwift/Observables/Throttle.swift; sourceTree = ""; }; + 7BEF8797252485997952F3222D9EC8D9 /* UIFont+ZLPhotoBrowser.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "UIFont+ZLPhotoBrowser.swift"; path = "Sources/Extensions/UIFont+ZLPhotoBrowser.swift"; sourceTree = ""; }; + 7C0B035591D4837F3B854ED95BB52CD1 /* DDProgressHUDKit_Private-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "DDProgressHUDKit_Private-prefix.pch"; sourceTree = ""; }; + 7C4452653712093DC6AF06BF027C68CA /* UICollectionView+DDCategory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UICollectionView+DDCategory.h"; path = "DDCategoryKit_Private/Classes/UICollectionView+DDCategory/UICollectionView+DDCategory.h"; sourceTree = ""; }; + 7C5DCD40582C0A74637BB5B2D04BBDBC /* MAPathShowRange.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MAPathShowRange.h; path = AMapNaviKit.framework/Headers/MAPathShowRange.h; sourceTree = ""; }; + 7C623F2403EDF727CF44EAD667D80728 /* DDAutoUIKit_Private-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "DDAutoUIKit_Private-dummy.m"; sourceTree = ""; }; + 7CA6212AC06D82944E9479E385A4D6E5 /* EKAttributes+Shadow.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "EKAttributes+Shadow.swift"; path = "Source/Model/EntryAttributes/EKAttributes+Shadow.swift"; sourceTree = ""; }; + 7CB20C9F677047664AB2977AFB30785B /* DDFontKit_Private-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "DDFontKit_Private-prefix.pch"; sourceTree = ""; }; + 7CC988E9AF631ECC07792482EE6DEAB4 /* IQBarButtonItem.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = IQBarButtonItem.swift; path = IQKeyboardManagerSwift/IQToolbar/IQBarButtonItem.swift; sourceTree = ""; }; + 7D000080AF33F912D2741E74A2BA1D53 /* AMapNaviWalkDataRepresentable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AMapNaviWalkDataRepresentable.h; path = AMapNaviKit.framework/Headers/AMapNaviWalkDataRepresentable.h; sourceTree = ""; }; + 7D79C35E0CC5A6179E03FDA7CDD468A7 /* RxSearchBarDelegateProxy.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RxSearchBarDelegateProxy.swift; path = RxCocoa/iOS/Proxies/RxSearchBarDelegateProxy.swift; sourceTree = ""; }; + 7D8E6DA7DB169EE59344C9934D8C7A8A /* ZFPortraitViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ZFPortraitViewController.h; path = DDZFPlayerKit_Private/Classes/Core/ZFPortraitViewController.h; sourceTree = ""; }; + 7D96B979A38D394648C2ED253AE24DEE /* AMapNaviRoute.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AMapNaviRoute.h; path = AMapNaviKit.framework/Headers/AMapNaviRoute.h; sourceTree = ""; }; + 7DD170FE2ECE1E7F75E303AA26DD6E97 /* ConstraintConfig.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ConstraintConfig.swift; path = Sources/ConstraintConfig.swift; sourceTree = ""; }; + 7E1EB3D147DD5C3D26F79B7BE1682EB1 /* JXCategoryTitleVerticalZoomView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JXCategoryTitleVerticalZoomView.h; path = Sources/VerticalZoomTitle/JXCategoryTitleVerticalZoomView.h; sourceTree = ""; }; + 7E236A60577F05248E6E9C996BD4BEAF /* icon_file_type_mpg@2x.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = "icon_file_type_mpg@2x.png"; path = "Sources/Resources/FileType/icon_file_type_mpg@2x.png"; sourceTree = ""; }; + 7E6D64A51BE9F7D0FA4FB32BE21261A8 /* CocoaDebug.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CocoaDebug.h; path = Sources/Core/CocoaDebug.h; sourceTree = ""; }; + 7EC56AB51D7F1C0C0455542270B51B46 /* AMapNaviCompositeManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AMapNaviCompositeManager.h; path = AMapNaviKit.framework/Headers/AMapNaviCompositeManager.h; sourceTree = ""; }; + 7F28629DAC354AD8EF7DCE02ADE79E55 /* UITableView+DDCategory.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UITableView+DDCategory.m"; path = "DDCategoryKit_Private/Classes/UITableView+DDCategory/UITableView+DDCategory.m"; sourceTree = ""; }; + 7F3FB2C34CAB2DB8D742274BE0154AC3 /* AMapURLSearchType.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AMapURLSearchType.h; path = AMapFoundationKit.framework/Headers/AMapURLSearchType.h; sourceTree = ""; }; + 7F4151E4B1A98BD20FBBA05B269CEC3D /* ObservableConvertibleType.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ObservableConvertibleType.swift; path = RxSwift/ObservableConvertibleType.swift; sourceTree = ""; }; + 7F52C8799AD5CBC0BD9548829C430967 /* ZFSpeedLoadingView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = ZFSpeedLoadingView.m; path = DDZFPlayerKit_Private/Classes/ControlView/ZFSpeedLoadingView.m; sourceTree = ""; }; + 7F7D9A55DA134EF4BCF6C018DD14F109 /* UIButton+DDCategory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIButton+DDCategory.h"; path = "DDCategoryKit_Private/Classes/UIButton+DDCategory/UIButton+DDCategory.h"; sourceTree = ""; }; + 7F88B55F83275CBB46CBE7D0D33052F2 /* AMapTrackTerminalObj.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AMapTrackTerminalObj.h; path = AMapTrackKit.framework/Headers/AMapTrackTerminalObj.h; sourceTree = ""; }; + 7FE9F83D05045D36E938431C2EA59C20 /* MAGltfOverlay.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MAGltfOverlay.h; path = AMapNaviKit.framework/Headers/MAGltfOverlay.h; sourceTree = ""; }; + 7FF64C256662415A9479ABCFE235D61A /* SDWebImageDefine.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageDefine.m; path = DDWebImageKit_Private/Classes/SDWebImage/Core/SDWebImageDefine.m; sourceTree = ""; }; + 803551E564583D1475806B002F6E6763 /* FPSCounter.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = FPSCounter.swift; path = Sources/Monitor/FPSCounter.swift; sourceTree = ""; }; + 80468DB3EC3FA7F781A8E9B97BD3D78D /* AMapNavi.bundle */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = "wrapper.plug-in"; name = AMapNavi.bundle; path = AMapNaviKit.framework/AMapNavi.bundle; sourceTree = ""; }; 809C5FAB588354C9BA37DC3EAB8CB45C /* RxSwift */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = RxSwift; path = libRxSwift.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 809DA51A2556715CF2494B6B74DA6398 /* ESTabBarItem.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ESTabBarItem.swift; path = Sources/ESTabBarItem.swift; sourceTree = ""; }; - 80A82C966FAFD27844D60B0EFDDEAD5E /* SDImageAssetManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageAssetManager.m; path = DDWebImageKit_Private/Classes/SDWebImage/Private/SDImageAssetManager.m; sourceTree = ""; }; - 80A86B6A7D72434807A43EED155E1191 /* Skip.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Skip.swift; path = RxSwift/Observables/Skip.swift; sourceTree = ""; }; - 80EEE623909E3CA7A5CFC8C7E9B43D1B /* icon_file_type_psd@2x.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = "icon_file_type_psd@2x.png"; path = "Sources/Resources/FileType/icon_file_type_psd@2x.png"; sourceTree = ""; }; - 816F7FA5CB06AE83BCCF8F2D9DC81C9D /* SDImageCodersManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageCodersManager.h; path = DDWebImageKit_Private/Classes/SDWebImage/Core/SDImageCodersManager.h; sourceTree = ""; }; - 818BFF10A86DCBFD7E78B9D191A7FA07 /* JXCategoryImageCell.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = JXCategoryImageCell.m; path = Sources/Image/JXCategoryImageCell.m; sourceTree = ""; }; - 818E24A615598DA62B73E4C9F2CFECA6 /* IQTextView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = IQTextView.swift; path = IQKeyboardManagerSwift/IQTextView/IQTextView.swift; sourceTree = ""; }; - 81B793EA726BF2868F82A12EC2414B49 /* CallbackQueue.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CallbackQueue.swift; path = Sources/Utility/CallbackQueue.swift; sourceTree = ""; }; - 81DFE407607B1B8AA0B22CBCCF25836D /* ExtensionHelpers.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ExtensionHelpers.swift; path = Sources/Utility/ExtensionHelpers.swift; sourceTree = ""; }; - 81F37E9BD79B3EB75C8418D7151C9F95 /* AMapLocationVersion.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AMapLocationVersion.h; path = AMapLocationKit.framework/Headers/AMapLocationVersion.h; sourceTree = ""; }; + 80BE34B3B635E10EB14465ABFCBDE7FD /* UIImageView+ZFCache.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIImageView+ZFCache.m"; path = "DDZFPlayerKit_Private/Classes/ControlView/UIImageView+ZFCache.m"; sourceTree = ""; }; + 80C8ACAACE13FFAE71DED543D61B41E7 /* MBProgressHUD.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MBProgressHUD.m; path = DDProgressHUDKit_Private/Classes/MBProgressHUD.m; sourceTree = ""; }; + 813DB8DD6BD880C1B5E806A22B6F42EC /* CocoaDebugDeviceInfo.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = CocoaDebugDeviceInfo.m; path = Sources/Core/CocoaDebugDeviceInfo.m; sourceTree = ""; }; + 814C59B6A543515D5E5A52A2F254C566 /* _QNSURLSessionDemux.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = _QNSURLSessionDemux.h; path = Sources/CustomHTTPProtocol/_QNSURLSessionDemux.h; sourceTree = ""; }; + 81567C3F126A7EB8378762CA3FC08465 /* SDFileAttributeHelper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDFileAttributeHelper.h; path = DDWebImageKit_Private/Classes/SDWebImage/Private/SDFileAttributeHelper.h; sourceTree = ""; }; + 81AB7E3E77C2A4610F400CFDD9C5FFEB /* EKAttributes.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = EKAttributes.swift; path = Source/Model/EntryAttributes/EKAttributes.swift; sourceTree = ""; }; + 81E6BC2929CAE154C2AFBE05ABE8EAE6 /* MAMVTTileOverlayRenderer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MAMVTTileOverlayRenderer.h; path = AMapNaviKit.framework/Headers/MAMVTTileOverlayRenderer.h; sourceTree = ""; }; + 81ED78AE30D23682F1F3C0E2C78594D5 /* MAPinAnnotationView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MAPinAnnotationView.h; path = AMapNaviKit.framework/Headers/MAPinAnnotationView.h; sourceTree = ""; }; 81FFAAE514B693FE02A029AF4E644094 /* Pods-OrderScheduling.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-OrderScheduling.release.xcconfig"; sourceTree = ""; }; - 82131A69CD830D98CE9F590887CB3337 /* LockOwnerType.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = LockOwnerType.swift; path = RxSwift/Concurrency/LockOwnerType.swift; sourceTree = ""; }; - 8221374F33C5300AEAD9892A56C1D926 /* ZFUtilities.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = ZFUtilities.m; path = DDZFPlayerKit_Private/Classes/ControlView/ZFUtilities.m; sourceTree = ""; }; - 8244624E8B8B1A09717384AB342A9827 /* MAPathShowRange.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MAPathShowRange.h; path = AMapNaviKit.framework/Headers/MAPathShowRange.h; sourceTree = ""; }; - 827D4F3944DDAE0DF0EA3B6E06F1C36B /* DDTimerObject.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DDTimerObject.m; path = DDTimerKit_Private/Classes/GCDTimer/DDTimerObject.m; sourceTree = ""; }; - 82ADBDD24453B18EFF2817EC9EB0F38A /* DisposeBag.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = DisposeBag.swift; path = RxSwift/Disposables/DisposeBag.swift; sourceTree = ""; }; - 82AF50BEAEAD518CFE55280A7141ABC5 /* DDFontKit_Private.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = DDFontKit_Private.release.xcconfig; sourceTree = ""; }; - 82B883451D2E374740631AD5CFB8D812 /* MAMultiPointOverlay.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MAMultiPointOverlay.h; path = AMapNaviKit.framework/Headers/MAMultiPointOverlay.h; sourceTree = ""; }; - 82DB19005AFA965F685BD7DB64F14643 /* CrashStoreManager.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CrashStoreManager.swift; path = Sources/App/CrashStoreManager.swift; sourceTree = ""; }; - 82FB538952945CDBE13EF23FDF93DF27 /* _OCLogStoreManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = _OCLogStoreManager.h; path = Sources/Logs/_OCLogStoreManager.h; sourceTree = ""; }; - 83456E745643487A8247A41DED90F258 /* Platform.Linux.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Platform.Linux.swift; path = Platform/Platform.Linux.swift; sourceTree = ""; }; - 837C5E68069C97F169193F6B9019A23C /* SDAnimatedImagePlayer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDAnimatedImagePlayer.h; path = DDWebImageKit_Private/Classes/SDWebImage/Core/SDAnimatedImagePlayer.h; sourceTree = ""; }; - 839F03397FA6ED1D6AD7BB7F65A2DBFB /* icon_file_type_doc@2x.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = "icon_file_type_doc@2x.png"; path = "Sources/Resources/FileType/icon_file_type_doc@2x.png"; sourceTree = ""; }; - 83FA7C3958C144A1AAE04228B0266B04 /* MAConfig.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MAConfig.h; path = AMapNaviKit.framework/Headers/MAConfig.h; sourceTree = ""; }; - 84041D6B6F03C17A303C33ECC8D23B3C /* _QNSURLSessionDemux.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = _QNSURLSessionDemux.h; path = Sources/CustomHTTPProtocol/_QNSURLSessionDemux.h; sourceTree = ""; }; - 840DFDD78A4294A778E97CEE52A3647F /* IQKeyboardManagerSwift.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = IQKeyboardManagerSwift.debug.xcconfig; sourceTree = ""; }; - 842EDA45B2DC66D58A5BD863067F83D1 /* AMapNaviDriveDataRepresentable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AMapNaviDriveDataRepresentable.h; path = AMapNaviKit.framework/Headers/AMapNaviDriveDataRepresentable.h; sourceTree = ""; }; - 8437789D98F392853ED9D980736760DF /* _NetworkHelper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = _NetworkHelper.h; path = Sources/Network/_NetworkHelper.h; sourceTree = ""; }; - 8443E7A2FABB5D4DFE53CF3ADE45E8BF /* Observable.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Observable.swift; path = RxSwift/Observable.swift; sourceTree = ""; }; - 8449E6940351A240AE545DB47B557868 /* AMapNavi-NO-IDFA.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "AMapNavi-NO-IDFA.debug.xcconfig"; sourceTree = ""; }; - 844FE5D4429E0A9C39ED2ECDC3DB3481 /* icon_file_type_pages@3x.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = "icon_file_type_pages@3x.png"; path = "Sources/Resources/FileType/icon_file_type_pages@3x.png"; sourceTree = ""; }; - 84805C495D92933002A074D13D71707C /* _Swizzling.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = _Swizzling.h; path = Sources/Swizzling/_Swizzling.h; sourceTree = ""; }; - 84A0FA1DB917992766175DE53C902F3E /* MJRefresh-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "MJRefresh-umbrella.h"; sourceTree = ""; }; - 84F857F6828AB1556859342E48328780 /* Take.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Take.swift; path = RxSwift/Observables/Take.swift; sourceTree = ""; }; - 85B0C1487AD956814AD331EE8CE6EF61 /* DDBaseView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DDBaseView.m; path = DDBasicControlsKit_Private/Classes/DDBaseView/DDBaseView.m; sourceTree = ""; }; - 86526F623081F1A67842E1F5F0A8CBB3 /* AVAssetImageDataProvider.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AVAssetImageDataProvider.swift; path = Sources/General/ImageSource/AVAssetImageDataProvider.swift; sourceTree = ""; }; - 865B6AC4E79A6431B9FD09B477FB4718 /* DDProgressHUDKit_Private-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "DDProgressHUDKit_Private-dummy.m"; sourceTree = ""; }; - 869EEDA230DA9BAAF862DB58E5A4E3DB /* icon_file_type_eps@2x.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = "icon_file_type_eps@2x.png"; path = "Sources/Resources/FileType/icon_file_type_eps@2x.png"; sourceTree = ""; }; - 86C63B415DE41D86E7D0A0989C381719 /* RxSwift-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RxSwift-dummy.m"; sourceTree = ""; }; - 86DFB0BDEC126AA0E9BC4C01FE501C98 /* JPush-xcframeworks.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "JPush-xcframeworks.sh"; sourceTree = ""; }; - 87284817FCBAF9A70C2F7BE8D9AE7512 /* BRAddressPickerView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = BRAddressPickerView.m; path = BRPickerView/AddressPickerView/BRAddressPickerView.m; sourceTree = ""; }; - 87BE3F6E81C1864988DD53FFF43C165F /* DDAutoUIKit_Private.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = DDAutoUIKit_Private.modulemap; sourceTree = ""; }; - 87CDE2205C411533A11F4AEA934BE8CD /* JXCategoryTitleVerticalZoomCell.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = JXCategoryTitleVerticalZoomCell.m; path = Sources/VerticalZoomTitle/JXCategoryTitleVerticalZoomCell.m; sourceTree = ""; }; - 881DFAE8BCD401EF059EFF6E1E097C03 /* SDGraphicsImageRenderer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDGraphicsImageRenderer.m; path = DDWebImageKit_Private/Classes/SDWebImage/Core/SDGraphicsImageRenderer.m; sourceTree = ""; }; - 883BC03BE872A43E24F877BB7F81FE0D /* AMapNaviWalkDataRepresentable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AMapNaviWalkDataRepresentable.h; path = AMapNaviKit.framework/Headers/AMapNaviWalkDataRepresentable.h; sourceTree = ""; }; - 88ABD61580865BB3DCF7C713FEB7FB1E /* MAOverlayPathRenderer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MAOverlayPathRenderer.h; path = AMapNaviKit.framework/Headers/MAOverlayPathRenderer.h; sourceTree = ""; }; - 88CC08F7752271DE21381EF0512D9E0F /* SDImageAWebPCoder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageAWebPCoder.h; path = DDWebImageKit_Private/Classes/SDWebImage/Core/SDImageAWebPCoder.h; sourceTree = ""; }; - 88E6865145F1BF1ADC6D64A3B58F9EDB /* Signal+Subscription.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Signal+Subscription.swift"; path = "RxCocoa/Traits/Signal/Signal+Subscription.swift"; sourceTree = ""; }; - 88FB0A96922F3E6AF17D5E1DA5DE0516 /* AMapFoundationVersion.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AMapFoundationVersion.h; path = AMapFoundationKit.framework/Headers/AMapFoundationVersion.h; sourceTree = ""; }; - 893799C0DA5C0059EE0027ECA794AD31 /* MKAnnotationView+WebCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "MKAnnotationView+WebCache.h"; path = "DDWebImageKit_Private/Classes/SDWebImageMapKit/MapKit/MKAnnotationView+WebCache.h"; sourceTree = ""; }; - 893CA7473C1BB643C054F85ABAD0AAC2 /* icon_file_type_dat.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = icon_file_type_dat.png; path = Sources/Resources/FileType/icon_file_type_dat.png; sourceTree = ""; }; - 89455B4444697DB7E7BC32C6E339EA08 /* UIButton+Kingfisher.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "UIButton+Kingfisher.swift"; path = "Sources/Extensions/UIButton+Kingfisher.swift"; sourceTree = ""; }; - 898756260A4DC39718CAFD51F6CF27C5 /* UITableView+DDCategory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UITableView+DDCategory.h"; path = "DDCategoryKit_Private/Classes/UITableView+DDCategory/UITableView+DDCategory.h"; sourceTree = ""; }; - 898F5967F1152EE1814DF076830BAE28 /* _FileInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = _FileInfo.h; path = Sources/Sandbox/_FileInfo.h; sourceTree = ""; }; - 89C372F1CAF41848FEE04DADCEF409A1 /* UITabBar+Rx.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "UITabBar+Rx.swift"; path = "RxCocoa/iOS/UITabBar+Rx.swift"; sourceTree = ""; }; - 89D1DD454586A947E569FCA1B9213869 /* TakeWithPredicate.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = TakeWithPredicate.swift; path = RxSwift/Observables/TakeWithPredicate.swift; sourceTree = ""; }; - 89F8B4B4FD117C4C1DF276A3A711487D /* icon_file_type_db@2x.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = "icon_file_type_db@2x.png"; path = "Sources/Resources/FileType/icon_file_type_db@2x.png"; sourceTree = ""; }; - 8A0C56894D56C34FA82F9A00581E1B0C /* IQKeyboardManagerConstants.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = IQKeyboardManagerConstants.swift; path = IQKeyboardManagerSwift/Constants/IQKeyboardManagerConstants.swift; sourceTree = ""; }; - 8A1E3B52CF515E0CF92245B802E0355E /* Manager.storyboard */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = file.storyboard; name = Manager.storyboard; path = Sources/Resources/Manager.storyboard; sourceTree = ""; }; - 8A53E58502621931F269346FB051E114 /* Timer.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Timer.swift; path = RxSwift/Observables/Timer.swift; sourceTree = ""; }; - 8A7FDA82642298C12645583C03438099 /* _CacheStoragePolicy.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = _CacheStoragePolicy.h; path = Sources/CustomHTTPProtocol/_CacheStoragePolicy.h; sourceTree = ""; }; - 8A9CECC061BD949A48EE81754B20CBA2 /* icon_file_type_json@3x.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = "icon_file_type_json@3x.png"; path = "Sources/Resources/FileType/icon_file_type_json@3x.png"; sourceTree = ""; }; - 8AA46A37A971F21B0E5E6A09D667D040 /* JXCategoryTitleVerticalZoomView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JXCategoryTitleVerticalZoomView.h; path = Sources/VerticalZoomTitle/JXCategoryTitleVerticalZoomView.h; sourceTree = ""; }; - 8ACF622284192F7D82229D1B8BA6E48B /* _HttpDatasource.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = _HttpDatasource.h; path = Sources/Network/_HttpDatasource.h; sourceTree = ""; }; + 820E6F627089BF8F9BC31A8FBD4B6115 /* icon_file_type_keynote@2x.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = "icon_file_type_keynote@2x.png"; path = "Sources/Resources/FileType/icon_file_type_keynote@2x.png"; sourceTree = ""; }; + 8211323B37CEB133F28BBDA2B315851E /* SDDiskCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDDiskCache.h; path = DDWebImageKit_Private/Classes/SDWebImage/Core/SDDiskCache.h; sourceTree = ""; }; + 822374B064B1E0EB20102D3895088447 /* AMapNaviDriveManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AMapNaviDriveManager.h; path = AMapNaviKit.framework/Headers/AMapNaviDriveManager.h; sourceTree = ""; }; + 8229A71F259109674A19EB6E36885E17 /* UIView+QuickLayout.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "UIView+QuickLayout.swift"; path = "Source/Extensions/QuickLayout/UIView+QuickLayout.swift"; sourceTree = ""; }; + 824DEE294BA98D1A0D9F9A36BCC2EEF5 /* icon_file_type_mov@3x.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = "icon_file_type_mov@3x.png"; path = "Sources/Resources/FileType/icon_file_type_mov@3x.png"; sourceTree = ""; }; + 827C7B57E3C9E2C3239FBE00C66E5B92 /* UIImageView+DDWebCache.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIImageView+DDWebCache.m"; path = "DDWebImageKit_Private/Classes/DDWebImage/UIImageView+DDWebCache.m"; sourceTree = ""; }; + 82A223221C2F8D6153F886C7CDE69CCA /* ZFLandscapeWindow.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ZFLandscapeWindow.h; path = DDZFPlayerKit_Private/Classes/Core/ZFLandscapeWindow.h; sourceTree = ""; }; + 82B5BC0A08A3DEF74E8E225B365F9B6C /* ZLLanguageDefine.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ZLLanguageDefine.swift; path = Sources/General/ZLLanguageDefine.swift; sourceTree = ""; }; + 82BE74368C5F2A7F242BD28BC371113A /* UIImage+Metadata.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIImage+Metadata.m"; path = "DDWebImageKit_Private/Classes/SDWebImage/Core/UIImage+Metadata.m"; sourceTree = ""; }; + 82D61DEED5179B4292D8FA6F2AFF356E /* EKButtonBarView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = EKButtonBarView.swift; path = Source/MessageViews/MessagesUtils/EKButtonBarView.swift; sourceTree = ""; }; + 82E6F31C3073965ACF67B7389CEED675 /* UIImage+DDCategory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImage+DDCategory.h"; path = "DDCategoryKit_Private/Classes/UIImage+DDCategory/UIImage+DDCategory.h"; sourceTree = ""; }; + 82F8BA5F666CBA5202D7D7023F9F88AB /* UIScrollView+MJExtension.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIScrollView+MJExtension.m"; path = "MJRefresh/UIScrollView+MJExtension.m"; sourceTree = ""; }; + 8300FFB7D28FC9CB5645873A902E9AD0 /* JXCategoryIndicatorParamsModel.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JXCategoryIndicatorParamsModel.h; path = Sources/Common/JXCategoryIndicatorParamsModel.h; sourceTree = ""; }; + 830B287A501B729E708153F84BC72EE3 /* UISwitch+DDCategory.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UISwitch+DDCategory.m"; path = "DDCategoryKit_Private/Classes/UISwitch+DDCategory/UISwitch+DDCategory.m"; sourceTree = ""; }; + 8319A9F9913199A438A81DC43E4EAAC9 /* DDColorKit_Private.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = DDColorKit_Private.modulemap; sourceTree = ""; }; + 83863A2DA9D874351ADF1ED13496450E /* DDLogKit_Private.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = DDLogKit_Private.modulemap; sourceTree = ""; }; + 83D8B17DEBF5754D172240F006F09E29 /* SDImageAssetManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageAssetManager.h; path = DDWebImageKit_Private/Classes/SDWebImage/Private/SDImageAssetManager.h; sourceTree = ""; }; + 840442E139B34838838213A9BED623B0 /* icon_file_type_swift@3x.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = "icon_file_type_swift@3x.png"; path = "Sources/Resources/FileType/icon_file_type_swift@3x.png"; sourceTree = ""; }; + 843FCA2465DA170122DB012FC72AD2E1 /* _CustomHTTPProtocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = _CustomHTTPProtocol.h; path = Sources/CustomHTTPProtocol/_CustomHTTPProtocol.h; sourceTree = ""; }; + 844076CDF6F95524D9740536DE597A50 /* UILabel+DDCategory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UILabel+DDCategory.h"; path = "DDCategoryKit_Private/Classes/UILabel+DDCategory/UILabel+DDCategory.h"; sourceTree = ""; }; + 848BAB2450E0403DEC23FBADBDFD1DF4 /* MAPolyline.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MAPolyline.h; path = AMapNaviKit.framework/Headers/MAPolyline.h; sourceTree = ""; }; + 848DB5D0C7C456F4A754958F5F87BF49 /* UIImageView+DDCategory.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIImageView+DDCategory.m"; path = "DDCategoryKit_Private/Classes/UIImageView+DDCategory/UIImageView+DDCategory.m"; sourceTree = ""; }; + 849DE0F0882B599FB797FE7207A4EF63 /* MAGroundOverlayRenderer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MAGroundOverlayRenderer.h; path = AMapNaviKit.framework/Headers/MAGroundOverlayRenderer.h; sourceTree = ""; }; + 84B3B54AC3874E9604C2801E7ECC67E6 /* SDWebImageTransition.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageTransition.h; path = DDWebImageKit_Private/Classes/SDWebImage/Core/SDWebImageTransition.h; sourceTree = ""; }; + 852CA278296E38287AC6798AC21D12C9 /* icon_file_type_plist@2x.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = "icon_file_type_plist@2x.png"; path = "Sources/Resources/FileType/icon_file_type_plist@2x.png"; sourceTree = ""; }; + 85556FEB6174ABDF6D575CABD3EEB8C0 /* UIImage+ForceDecode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImage+ForceDecode.h"; path = "DDWebImageKit_Private/Classes/SDWebImage/Core/UIImage+ForceDecode.h"; sourceTree = ""; }; + 8562E5E465A60F8228880DC9A2FBEA77 /* icon_file_type_java.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = icon_file_type_java.png; path = Sources/Resources/FileType/icon_file_type_java.png; sourceTree = ""; }; + 85B8A6A8D283A88E3300EC465EB6E518 /* CocoaDebugTool.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = CocoaDebugTool.m; path = Sources/Logs/CocoaDebugTool.m; sourceTree = ""; }; + 85E9F3EA154A99BBECC5B46465D4766E /* ObservableConvertibleType+Signal.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "ObservableConvertibleType+Signal.swift"; path = "RxCocoa/Traits/Signal/ObservableConvertibleType+Signal.swift"; sourceTree = ""; }; + 8642B48A87092D18ECF0377EC12902E7 /* AMapTrackKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; path = AMapTrackKit.framework; sourceTree = ""; }; + 8661D5A1AA78E3225C2217E5CD97109C /* UIScrollView+DDCategory.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIScrollView+DDCategory.m"; path = "DDCategoryKit_Private/Classes/UIScrollView+DDCategory/UIScrollView+DDCategory.m"; sourceTree = ""; }; + 8687A57AE558794973CBE0EF4EE33A63 /* ZFSpeedLoadingView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ZFSpeedLoadingView.h; path = DDZFPlayerKit_Private/Classes/ControlView/ZFSpeedLoadingView.h; sourceTree = ""; }; + 86A0D271783F502E8AE58BC4CE43BC6C /* Logs.storyboard */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = file.storyboard; name = Logs.storyboard; path = Sources/Resources/Logs.storyboard; sourceTree = ""; }; + 86AD855B0C36FCB9F072A2FB4367CCFC /* GraphicsContext.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = GraphicsContext.swift; path = Sources/Image/GraphicsContext.swift; sourceTree = ""; }; + 86C0F651835CE9410F4238CEBC3D8633 /* SDImageCodersManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageCodersManager.h; path = DDWebImageKit_Private/Classes/SDWebImage/Core/SDImageCodersManager.h; sourceTree = ""; }; + 86EB5FDB69E5179C09A86499193976E4 /* _OCLogHelper.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = _OCLogHelper.m; path = Sources/Logs/_OCLogHelper.m; sourceTree = ""; }; + 8727818346C8A099475F5E3F4E881B15 /* SDWebImageIndicator.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageIndicator.m; path = DDWebImageKit_Private/Classes/SDWebImage/Core/SDWebImageIndicator.m; sourceTree = ""; }; + 874C598F1A84B818C07CC7C106050490 /* UIColor+SDHexString.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIColor+SDHexString.m"; path = "DDWebImageKit_Private/Classes/SDWebImage/Private/UIColor+SDHexString.m"; sourceTree = ""; }; + 8752FCD984A4599D420495A32BEF2F81 /* AMapNaviEleBikeManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AMapNaviEleBikeManager.h; path = AMapNaviKit.framework/Headers/AMapNaviEleBikeManager.h; sourceTree = ""; }; + 87604FE5B385C7F20163074019BA899C /* TakeLast.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = TakeLast.swift; path = RxSwift/Observables/TakeLast.swift; sourceTree = ""; }; + 8783AE3240C6DE6774892D61310683A5 /* CacheSerializer.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CacheSerializer.swift; path = Sources/Cache/CacheSerializer.swift; sourceTree = ""; }; + 878D059B0D422EFDF67AC71FF87E455D /* SDImageFrame.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageFrame.h; path = DDWebImageKit_Private/Classes/SDWebImage/Core/SDImageFrame.h; sourceTree = ""; }; + 87A636305F55B4193ADAAD0F3EDC82E2 /* DDMAMapView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DDMAMapView.m; path = DDMAMapKit_Private/Classes/DDMAMap/MapView/DDMAMapView.m; sourceTree = ""; }; + 880B0FB89AFDB5D800FF1B14095C31CF /* AMapNaviCommonObj.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AMapNaviCommonObj.h; path = AMapNaviKit.framework/Headers/AMapNaviCommonObj.h; sourceTree = ""; }; + 880E7C4765FC3C7770A014CDB8FCCD61 /* TakeWithPredicate.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = TakeWithPredicate.swift; path = RxSwift/Observables/TakeWithPredicate.swift; sourceTree = ""; }; + 8831FA0DDABAA2853CF5963C7D0B3E5A /* SDImageIOAnimatedCoder.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageIOAnimatedCoder.m; path = DDWebImageKit_Private/Classes/SDWebImage/Core/SDImageIOAnimatedCoder.m; sourceTree = ""; }; + 885FFAA1764402617037B5AA367DE979 /* DDAutoUIKit_Private.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = DDAutoUIKit_Private.debug.xcconfig; sourceTree = ""; }; + 8875FCF2AB4987007C0D4FA3C9F7DE5F /* Create.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Create.swift; path = RxSwift/Observables/Create.swift; sourceTree = ""; }; + 8890E0B2494937CE51C86945F3F6F962 /* SessionDataTask.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SessionDataTask.swift; path = Sources/Networking/SessionDataTask.swift; sourceTree = ""; }; + 88E4747FA025D36739E4958BCC3CA547 /* UIScrollView+MJRefresh.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIScrollView+MJRefresh.h"; path = "MJRefresh/UIScrollView+MJRefresh.h"; sourceTree = ""; }; + 88F1A1C94F3F0F671B170D9A362E330B /* DDBasicControlsKit_Private-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "DDBasicControlsKit_Private-umbrella.h"; sourceTree = ""; }; + 8914AC3F77638E9B3D5FCBC849EC6F88 /* icon_file_type_apk.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = icon_file_type_apk.png; path = Sources/Resources/FileType/icon_file_type_apk.png; sourceTree = ""; }; + 89270D4B442BBBECE504EA61AD6DA8A8 /* Image.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Image.swift; path = Sources/Image/Image.swift; sourceTree = ""; }; + 8945C46CA45EE4320C007CF174997464 /* JXCategoryListContainerView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JXCategoryListContainerView.h; path = Sources/Common/JXCategoryListContainerView.h; sourceTree = ""; }; + 8998210DD053A5D1D1BC93BBB932A43E /* ZLProgressHUD.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ZLProgressHUD.swift; path = Sources/General/ZLProgressHUD.swift; sourceTree = ""; }; + 89CAB46D7724F7F1AC3DC4EB8C0993B2 /* LogCell.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = LogCell.swift; path = Sources/Logs/LogCell.swift; sourceTree = ""; }; + 89D32A6BDC5A04585CC4FA78AD2D3FE0 /* Session.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Session.swift; path = Source/Session.swift; sourceTree = ""; }; + 89D6DFCEBB48429270BC7556F573AB2F /* icon_file_type_fla.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = icon_file_type_fla.png; path = Sources/Resources/FileType/icon_file_type_fla.png; sourceTree = ""; }; + 89E65059DD26BEDB9ACB3A53A6691A18 /* DDBaseTextField.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DDBaseTextField.m; path = DDBasicControlsKit_Private/Classes/DDBaseTextField/DDBaseTextField.m; sourceTree = ""; }; + 89E8CEAD7125DDEEF35DA8CF303F232A /* DDProgressHUDKit_Private-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "DDProgressHUDKit_Private-umbrella.h"; sourceTree = ""; }; + 89F51C34B23657FF69510E0DA8F6AB4B /* UIEdgeInsets+Utils.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "UIEdgeInsets+Utils.swift"; path = "Source/Extensions/UIEdgeInsets+Utils.swift"; sourceTree = ""; }; + 89FB6615D86B8876062594851B8C8BE0 /* NSThread+DDCategory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSThread+DDCategory.h"; path = "DDCategoryKit_Private/Classes/NSThread+DDCategory/NSThread+DDCategory.h"; sourceTree = ""; }; + 8A24092E52B14E76233D4A039740A10A /* Alamofire-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Alamofire-dummy.m"; sourceTree = ""; }; + 8A25BF9734B25A304D5C5B6B88ABB5F1 /* Cancelable.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Cancelable.swift; path = RxSwift/Cancelable.swift; sourceTree = ""; }; + 8A2B93E82AEB01EC5A37FE1494F6292D /* JXCategoryTitleImageCellModel.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = JXCategoryTitleImageCellModel.m; path = Sources/TitleImage/JXCategoryTitleImageCellModel.m; sourceTree = ""; }; + 8A7C07C8E44AE1C7CB165E7D9FE273F2 /* MAGeometry.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MAGeometry.h; path = AMapNaviKit.framework/Headers/MAGeometry.h; sourceTree = ""; }; + 8A948BC92126A6850EBAD24FD9C20A77 /* MATraceManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MATraceManager.h; path = AMapNaviKit.framework/Headers/MATraceManager.h; sourceTree = ""; }; 8AD026CF2FA53C314E8C799B9A40528A /* DDZFPlayerKit_Private */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = DDZFPlayerKit_Private; path = libDDZFPlayerKit_Private.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 8AD87A2D187E1F12955561D44BCE6644 /* DDWebImageKit_Private-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "DDWebImageKit_Private-umbrella.h"; sourceTree = ""; }; - 8AF18BD83957F349D32EAFF167D6B2B9 /* RxCocoa.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RxCocoa.release.xcconfig; sourceTree = ""; }; - 8B1B116F462AB50635839F9560874F34 /* NSDate+BRPickerView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSDate+BRPickerView.h"; path = "BRPickerView/DatePickerView/NSDate+BRPickerView.h"; sourceTree = ""; }; - 8B3D868BD3B402BB1F6AB2D97468F500 /* ZFPlayerMediaControl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ZFPlayerMediaControl.h; path = DDZFPlayerKit_Private/Classes/Core/ZFPlayerMediaControl.h; sourceTree = ""; }; - 8BB3BB1159CD0B5497AA8D5EB5AE2637 /* Observable+Concurrency.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Observable+Concurrency.swift"; path = "RxSwift/Observable+Concurrency.swift"; sourceTree = ""; }; - 8BBAA6F079405191560FF809B6696D02 /* icon_file_type_folder_empty@2x.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = "icon_file_type_folder_empty@2x.png"; path = "Sources/Resources/FileType/icon_file_type_folder_empty@2x.png"; sourceTree = ""; }; - 8C01443E4FE3ABFD94350FD5C3A485CE /* DDBaseImageView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DDBaseImageView.m; path = DDBasicControlsKit_Private/Classes/DDBaseImageView/DDBaseImageView.m; sourceTree = ""; }; - 8C1D4437EA8A630F1146A02CD9F2619F /* IQKeyboardManager+Debug.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "IQKeyboardManager+Debug.swift"; path = "IQKeyboardManagerSwift/IQKeyboardManager+Debug.swift"; sourceTree = ""; }; - 8C625325AAAB70E7E14A64A4D3DCC3A3 /* NSBundle+BRPickerView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSBundle+BRPickerView.h"; path = "BRPickerView/Base/NSBundle+BRPickerView.h"; sourceTree = ""; }; - 8C91C4AF0C3222359BE9291B912BBFC0 /* SDWebImageTransition.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageTransition.h; path = DDWebImageKit_Private/Classes/SDWebImage/Core/SDWebImageTransition.h; sourceTree = ""; }; - 8CD06EBBE4102C7F5764B8209366063D /* NSBundle+DDCategory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSBundle+DDCategory.h"; path = "DDCategoryKit_Private/Classes/NSBundle+DDCategory/NSBundle+DDCategory.h"; sourceTree = ""; }; - 8CD69BDD6EEEC948AEC837E16137616F /* MJRefreshNormalHeader.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MJRefreshNormalHeader.m; path = MJRefresh/Custom/Header/MJRefreshNormalHeader.m; sourceTree = ""; }; - 8CD8B0E35D0148159B6FE4A582B1CABC /* BRPickerStyle.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = BRPickerStyle.h; path = BRPickerView/Base/BRPickerStyle.h; sourceTree = ""; }; - 8CE4F5E691BBFA430928733401572FAC /* First.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = First.swift; path = RxSwift/Observables/First.swift; sourceTree = ""; }; - 8CEC83E3FE1F075140221AA6F63B7E62 /* AuthenticationChallengeResponsable.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AuthenticationChallengeResponsable.swift; path = Sources/Networking/AuthenticationChallengeResponsable.swift; sourceTree = ""; }; - 8D344C6119348C08BB767FB7A1D20F58 /* UIImage+Metadata.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImage+Metadata.h"; path = "DDWebImageKit_Private/Classes/SDWebImage/Core/UIImage+Metadata.h"; sourceTree = ""; }; - 8D61DF60A2929DEDD7EA9346B52329E3 /* icon_file_type_midi@3x.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = "icon_file_type_midi@3x.png"; path = "Sources/Resources/FileType/icon_file_type_midi@3x.png"; sourceTree = ""; }; - 8D710AB4ADF18C65849A63C64DCD4E6F /* KFImageRenderer.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = KFImageRenderer.swift; path = Sources/SwiftUI/KFImageRenderer.swift; sourceTree = ""; }; - 8DB0DFCB6DBBE8F3229711FEC0CEC42F /* SDWebImageDownloaderConfig.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageDownloaderConfig.h; path = DDWebImageKit_Private/Classes/SDWebImage/Core/SDWebImageDownloaderConfig.h; sourceTree = ""; }; - 8DC57D49B96F51B74F238BE0D777B034 /* _OCLogStoreManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = _OCLogStoreManager.m; path = Sources/Logs/_OCLogStoreManager.m; sourceTree = ""; }; - 8DDF3D97A63B399455E7A3994C5332D5 /* SnapKit.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = SnapKit.debug.xcconfig; sourceTree = ""; }; - 8E2AFEA4704593AF3F1EA2FE96F08FB0 /* MATraceManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MATraceManager.h; path = AMapNaviKit.framework/Headers/MATraceManager.h; sourceTree = ""; }; - 8E5682946F05F1E1AA3FC28F0E83DF7D /* icon_file_type_7z@3x.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = "icon_file_type_7z@3x.png"; path = "Sources/Resources/FileType/icon_file_type_7z@3x.png"; sourceTree = ""; }; - 8EBA1DEF61D3744DEFF5D0AD94F65584 /* SessionDataTask.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SessionDataTask.swift; path = Sources/Networking/SessionDataTask.swift; sourceTree = ""; }; - 8EC2E98E67A9874F1E88188BAA778684 /* UINavigationController+DDCategory.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UINavigationController+DDCategory.m"; path = "DDCategoryKit_Private/Classes/UINavigationController+DDCategory/UINavigationController+DDCategory.m"; sourceTree = ""; }; - 8EE0FF6ADA523777C2366D072120154A /* EKAttributes+Animation.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "EKAttributes+Animation.swift"; path = "Source/Model/EntryAttributes/EKAttributes+Animation.swift"; sourceTree = ""; }; - 8EEEB06E7B901095AD02E83467C7C052 /* NSObject+Rx.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "NSObject+Rx.swift"; path = "RxCocoa/Foundation/NSObject+Rx.swift"; sourceTree = ""; }; - 8F4271AB101034A2BF781CE74AC848D1 /* icon_file_type_swift.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = icon_file_type_swift.png; path = Sources/Resources/FileType/icon_file_type_swift.png; sourceTree = ""; }; - 8F7533C7C031A477DABAF005C7EE38D6 /* icon_file_type_sql.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = icon_file_type_sql.png; path = Sources/Resources/FileType/icon_file_type_sql.png; sourceTree = ""; }; - 8F9C99DBE77AFE4BFD5CC7EBB322F385 /* SDImageCoderHelper.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageCoderHelper.m; path = DDWebImageKit_Private/Classes/SDWebImage/Core/SDImageCoderHelper.m; sourceTree = ""; }; - 8FB4325A0163B3674632C142FA21179C /* MAParticleOverlay.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MAParticleOverlay.h; path = AMapNaviKit.framework/Headers/MAParticleOverlay.h; sourceTree = ""; }; - 8FC5C16022D34FE88BB63DD72A3EC6A2 /* ConstraintInsetTarget.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ConstraintInsetTarget.swift; path = Sources/ConstraintInsetTarget.swift; sourceTree = ""; }; - 900D87439070DC7DD3F1510EC9AB0E18 /* Using.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Using.swift; path = RxSwift/Observables/Using.swift; sourceTree = ""; }; - 9010C0B16D55C689F1306730555946B1 /* Catch.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Catch.swift; path = RxSwift/Observables/Catch.swift; sourceTree = ""; }; - 902EDE71A851BCBEE64734ED045FAB5D /* icon_file_type_swift@2x.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = "icon_file_type_swift@2x.png"; path = "Sources/Resources/FileType/icon_file_type_swift@2x.png"; sourceTree = ""; }; - 908D861A99D5C6DB7F6921C1E7233DEC /* MAOverlay.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MAOverlay.h; path = AMapNaviKit.framework/Headers/MAOverlay.h; sourceTree = ""; }; - 90B201CD32900A5196C5CC821BAE976F /* AMapNaviCommonObj.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AMapNaviCommonObj.h; path = AMapNaviKit.framework/Headers/AMapNaviCommonObj.h; sourceTree = ""; }; - 90D00F696B4E371E62DDBE72F570EA51 /* _RXObjCRuntime.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = _RXObjCRuntime.h; path = RxCocoa/Runtime/include/_RXObjCRuntime.h; sourceTree = ""; }; - 90F45B33ACF06D56A9730D0DF8358B09 /* SDGraphicsImageRenderer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDGraphicsImageRenderer.h; path = DDWebImageKit_Private/Classes/SDWebImage/Core/SDGraphicsImageRenderer.h; sourceTree = ""; }; - 9102B251FD7CEDD97E178F16402B2076 /* ZLCustomCamera.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ZLCustomCamera.swift; path = Sources/Camera/ZLCustomCamera.swift; sourceTree = ""; }; - 9116DE8615AC947C48EF84D84A4F5FBD /* icon_file_type_bin@2x.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = "icon_file_type_bin@2x.png"; path = "Sources/Resources/FileType/icon_file_type_bin@2x.png"; sourceTree = ""; }; - 913A7059CDA51792193FFC63027C32CA /* ObservableType+Extensions.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "ObservableType+Extensions.swift"; path = "RxSwift/ObservableType+Extensions.swift"; sourceTree = ""; }; - 91A1819581575DAAEED8B71584837966 /* MAPolyline.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MAPolyline.h; path = AMapNaviKit.framework/Headers/MAPolyline.h; sourceTree = ""; }; - 91ADE2F9A2D9B491D84EDF923F5A9126 /* _Swizzling.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = _Swizzling.m; path = Sources/Swizzling/_Swizzling.m; sourceTree = ""; }; - 91BE97B7EE46151C893D4477A8BB208A /* JXCategoryImageView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = JXCategoryImageView.m; path = Sources/Image/JXCategoryImageView.m; sourceTree = ""; }; - 91D5FA1639FCB89A063F6BFFE2E23D45 /* UIImage+MemoryCacheCost.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIImage+MemoryCacheCost.m"; path = "DDWebImageKit_Private/Classes/SDWebImage/Core/UIImage+MemoryCacheCost.m"; sourceTree = ""; }; - 922F95A4EC2E41A916005B4FBC41F1C0 /* UITextView+Rx.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "UITextView+Rx.swift"; path = "RxCocoa/iOS/UITextView+Rx.swift"; sourceTree = ""; }; - 9239B4C0496A617A9620875EEB15FC28 /* JXCategoryImageView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JXCategoryImageView.h; path = Sources/Image/JXCategoryImageView.h; sourceTree = ""; }; - 924179C3B9A8BFE4EDA6C2CFBB2CFF7E /* DDZFPlayerKit_Private.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = DDZFPlayerKit_Private.modulemap; sourceTree = ""; }; - 92DB303F2B0013A14838ED60D91DC8B0 /* AMapFoundation-NO-IDFA.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "AMapFoundation-NO-IDFA.debug.xcconfig"; sourceTree = ""; }; - 93459829E01373BB373ADCAAD052BEAD /* AtomicInt.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AtomicInt.swift; path = Platform/AtomicInt.swift; sourceTree = ""; }; - 939A46F25E00E8C8052F85944E9E5DC3 /* UIScrollView+DDCategory.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIScrollView+DDCategory.m"; path = "DDCategoryKit_Private/Classes/UIScrollView+DDCategory/UIScrollView+DDCategory.m"; sourceTree = ""; }; - 93D6D4BA2DC9E732D330D585CCEDEF4E /* DDBaseCollectionView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DDBaseCollectionView.h; path = DDBasicControlsKit_Private/Classes/DDBaseCollectionView/DDBaseCollectionView.h; sourceTree = ""; }; - 945FC895CBDB32B6DC63100F87FD9422 /* StartWith.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = StartWith.swift; path = RxSwift/Observables/StartWith.swift; sourceTree = ""; }; - 9466E05FB2CE875E3FC0F6573B17C373 /* URLSessionConfiguration+Alamofire.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "URLSessionConfiguration+Alamofire.swift"; path = "Source/URLSessionConfiguration+Alamofire.swift"; sourceTree = ""; }; - 94680CFC97CEF0B8C2F45EB57EE580A2 /* SDAnimatedImageView+WebCache.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "SDAnimatedImageView+WebCache.m"; path = "DDWebImageKit_Private/Classes/SDWebImage/Core/SDAnimatedImageView+WebCache.m"; sourceTree = ""; }; - 94DAEBA6CBB7F5BABA7EA465B1C6B966 /* JXCategoryIndicatorView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JXCategoryIndicatorView.h; path = Sources/Indicator/JXCategoryIndicatorView.h; sourceTree = ""; }; - 94F9A881EEED528AE59D7E17EB86AAA9 /* RxSearchControllerDelegateProxy.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RxSearchControllerDelegateProxy.swift; path = RxCocoa/iOS/Proxies/RxSearchControllerDelegateProxy.swift; sourceTree = ""; }; - 950CF2BA6C0358625A7074C5D82BCB1B /* Dematerialize.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Dematerialize.swift; path = RxSwift/Observables/Dematerialize.swift; sourceTree = ""; }; - 95265A80C629B285897094F95D9FDF2E /* SDAnimatedImage.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDAnimatedImage.h; path = DDWebImageKit_Private/Classes/SDWebImage/Core/SDAnimatedImage.h; sourceTree = ""; }; - 953328EEC08BB194BB64FF55A8C9730F /* NSData+ImageContentType.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSData+ImageContentType.h"; path = "DDWebImageKit_Private/Classes/SDWebImage/Core/NSData+ImageContentType.h"; sourceTree = ""; }; - 954C79FC8DFBC93CD7443EE14B462106 /* SwiftEntryKit.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = SwiftEntryKit.modulemap; sourceTree = ""; }; - 954D25B016CCFBE79A6266751BB79BAA /* Zip+arity.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Zip+arity.swift"; path = "RxSwift/Observables/Zip+arity.swift"; sourceTree = ""; }; - 957EAA209B2ACDA8CF3F182A8A9C50F5 /* SDAnimatedImageRep.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDAnimatedImageRep.m; path = DDWebImageKit_Private/Classes/SDWebImage/Core/SDAnimatedImageRep.m; sourceTree = ""; }; - 95AD84FDA0C2AC7275AEE95C3305735F /* URLRequest+Alamofire.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "URLRequest+Alamofire.swift"; path = "Source/URLRequest+Alamofire.swift"; sourceTree = ""; }; - 95C0FEAA3B43FD6B815D1F69389BBD23 /* ConstraintMakerExtendable.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ConstraintMakerExtendable.swift; path = Sources/ConstraintMakerExtendable.swift; sourceTree = ""; }; - 95EA9AF160A5EC02ABC42A0C6EBCC511 /* EKAttributes+UserInteraction.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "EKAttributes+UserInteraction.swift"; path = "Source/Model/EntryAttributes/EKAttributes+UserInteraction.swift"; sourceTree = ""; }; - 9604B615840630CBADC2C11BE75E46E1 /* NSURL+DDCategory.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSURL+DDCategory.m"; path = "DDCategoryKit_Private/Classes/NSUrl+DDCategory/NSURL+DDCategory.m"; sourceTree = ""; }; - 96223C5BD35B836238430B61FA12F877 /* _icon_file_type_mail@2x.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = "_icon_file_type_mail@2x.png"; path = "Sources/Resources/images/_icon_file_type_mail@2x.png"; sourceTree = ""; }; - 963E26E890BD9485EF8BB51CC12DF4E9 /* SessionDelegate.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SessionDelegate.swift; path = Source/SessionDelegate.swift; sourceTree = ""; }; - 9649A5E88190295F040B7FDECC758A2D /* Reactive.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Reactive.swift; path = RxSwift/Reactive.swift; sourceTree = ""; }; - 967B2C4AF7BC326CDA7984C583642E97 /* ZFLandScapeControlView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ZFLandScapeControlView.h; path = DDZFPlayerKit_Private/Classes/ControlView/ZFLandScapeControlView.h; sourceTree = ""; }; - 96A101529AC11E7891A4D178FA074368 /* icon_file_type_tif.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = icon_file_type_tif.png; path = Sources/Resources/FileType/icon_file_type_tif.png; sourceTree = ""; }; - 96B999BF4D1A52EB36105C24F082066F /* JXCategoryListContainerRTLCell.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JXCategoryListContainerRTLCell.h; path = Sources/Common/JXCategoryListContainerRTLCell.h; sourceTree = ""; }; - 970727C41802159433A0DF92846E2339 /* DDAutoUIKit_Private-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "DDAutoUIKit_Private-dummy.m"; sourceTree = ""; }; - 970B22270C96364AA04F36C26C88C665 /* MJRefreshConfig.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MJRefreshConfig.m; path = MJRefresh/MJRefreshConfig.m; sourceTree = ""; }; - 9728A65E132DD928650FAB3F3E116945 /* Delegate.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Delegate.swift; path = Sources/Utility/Delegate.swift; sourceTree = ""; }; + 8AE3E65E083A29E28F5463D0D92505E8 /* KF.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = KF.swift; path = Sources/General/KF.swift; sourceTree = ""; }; + 8B112DD0C99213833E217192DE213AC5 /* Infallible+Bind.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Infallible+Bind.swift"; path = "RxCocoa/Common/Infallible+Bind.swift"; sourceTree = ""; }; + 8B2308D8204B52C616960D8BEC19B6B1 /* icon_file_type_sql@2x.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = "icon_file_type_sql@2x.png"; path = "Sources/Resources/FileType/icon_file_type_sql@2x.png"; sourceTree = ""; }; + 8B2835B6C0EED799C237BB1EE1E07259 /* EKPopUpMessage.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = EKPopUpMessage.swift; path = Source/Model/EKPopUpMessage.swift; sourceTree = ""; }; + 8B291452A4DEA9322F381FDFB9720F89 /* Alamofire-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Alamofire-umbrella.h"; sourceTree = ""; }; + 8B441F34B32C0868D63E8CC442DAB6E5 /* MJRefresh.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = MJRefresh.release.xcconfig; sourceTree = ""; }; + 8B5A690194CC35F0CC1D2B4F5463C846 /* UISlider+Rx.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "UISlider+Rx.swift"; path = "RxCocoa/iOS/UISlider+Rx.swift"; sourceTree = ""; }; + 8B5DB959E7B45734C2E80C8B012D2D79 /* SwitchIfEmpty.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SwitchIfEmpty.swift; path = RxSwift/Observables/SwitchIfEmpty.swift; sourceTree = ""; }; + 8B84E4EFC4CC7D7ACF787153E297D875 /* CGFloat+ZLPhotoBrowser.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "CGFloat+ZLPhotoBrowser.swift"; path = "Sources/Extensions/CGFloat+ZLPhotoBrowser.swift"; sourceTree = ""; }; + 8BD2A03C643BA6B22B9B44CD85299C2A /* MJRefresh-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "MJRefresh-prefix.pch"; sourceTree = ""; }; + 8C324819CC6F2918CE489CA913C8649E /* NSError+ZLPhotoBrowser.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "NSError+ZLPhotoBrowser.swift"; path = "Sources/Extensions/NSError+ZLPhotoBrowser.swift"; sourceTree = ""; }; + 8C3378B84FC9537FAE6FE3A6471585C0 /* SDWebImagePrefetcher.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImagePrefetcher.h; path = DDWebImageKit_Private/Classes/SDWebImage/Core/SDWebImagePrefetcher.h; sourceTree = ""; }; + 8C7ED753CBA428EE8B43B3E19887DED9 /* icon_file_type_txt@3x.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = "icon_file_type_txt@3x.png"; path = "Sources/Resources/FileType/icon_file_type_txt@3x.png"; sourceTree = ""; }; + 8C83AC7F2ED122D158BDD8D973D21481 /* EKEntryView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = EKEntryView.swift; path = Source/Infra/EKEntryView.swift; sourceTree = ""; }; + 8C8F25832948A1C119B1DBAB7C05BCF1 /* EKAttributes+PositionConstraints.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "EKAttributes+PositionConstraints.swift"; path = "Source/Model/EntryAttributes/EKAttributes+PositionConstraints.swift"; sourceTree = ""; }; + 8D159FCCEB97D06ABF0D4458AE6CF3F6 /* IQKeyboardManagerSwift-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "IQKeyboardManagerSwift-umbrella.h"; sourceTree = ""; }; + 8D35C0A2334F45D74CDE5ABD5D737C45 /* Resource.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Resource.swift; path = Sources/General/ImageSource/Resource.swift; sourceTree = ""; }; + 8D54AACBAC94421DEA26246C848BF858 /* SDAnimatedImageView+WebCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "SDAnimatedImageView+WebCache.h"; path = "DDWebImageKit_Private/Classes/SDWebImage/Core/SDAnimatedImageView+WebCache.h"; sourceTree = ""; }; + 8D5F960762367E1A139FFE0BDD84E6FC /* EKWindow.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = EKWindow.swift; path = Source/Infra/EKWindow.swift; sourceTree = ""; }; + 8D9BA6A30CA49498A02A6B234BE553FB /* AMapNavi-NO-IDFA.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "AMapNavi-NO-IDFA.release.xcconfig"; sourceTree = ""; }; + 8DD3128B1932922A36D56F6D19CAE4BC /* DDWebImageKit_Private-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "DDWebImageKit_Private-umbrella.h"; sourceTree = ""; }; + 8E017F6AC983A387FFD2ED02D2A6EAEF /* NSData+ImageContentType.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSData+ImageContentType.m"; path = "DDWebImageKit_Private/Classes/SDWebImage/Core/NSData+ImageContentType.m"; sourceTree = ""; }; + 8E6B6514FBE643036EC134A7A169EFC7 /* CocoaDebugViewController.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CocoaDebugViewController.swift; path = Sources/Window/CocoaDebugViewController.swift; sourceTree = ""; }; + 8E885B6D95F845479C2EB002C758BDFC /* JXCategoryIndicatorView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JXCategoryIndicatorView.h; path = Sources/Indicator/JXCategoryIndicatorView.h; sourceTree = ""; }; + 8EA9D6258844F7AA0C6ACFCBA2E41C71 /* icon_file_type_jpg.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = icon_file_type_jpg.png; path = Sources/Resources/FileType/icon_file_type_jpg.png; sourceTree = ""; }; + 8ED09F498750F70A4B4C179AA26FC257 /* icon_file_type_wav@3x.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = "icon_file_type_wav@3x.png"; path = "Sources/Resources/FileType/icon_file_type_wav@3x.png"; sourceTree = ""; }; + 8EF4E4E24BE31DAB6754BC5B5CE50FA1 /* SDDeviceHelper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDDeviceHelper.h; path = DDWebImageKit_Private/Classes/SDWebImage/Private/SDDeviceHelper.h; sourceTree = ""; }; + 8F0982B7F4C806224986C1E742441C80 /* ESTabBarController.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ESTabBarController.swift; path = Sources/ESTabBarController.swift; sourceTree = ""; }; + 8F38B34101AD7A9DACF942D708EA0023 /* icon_file_type_dat@2x.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = "icon_file_type_dat@2x.png"; path = "Sources/Resources/FileType/icon_file_type_dat@2x.png"; sourceTree = ""; }; + 8F41F2BA648EA3813EAC2F4F6A55891D /* WKInterfaceImage+Kingfisher.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "WKInterfaceImage+Kingfisher.swift"; path = "Sources/Extensions/WKInterfaceImage+Kingfisher.swift"; sourceTree = ""; }; + 8F41FA482FFD01131F6109B6F710F6F4 /* DDBaseViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DDBaseViewController.h; path = DDBasicControlsKit_Private/Classes/DDBaseViewController/DDBaseViewController.h; sourceTree = ""; }; + 8F871014922D06C041EC71AEA9699782 /* DDProgressHUDKit_Private.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = DDProgressHUDKit_Private.debug.xcconfig; sourceTree = ""; }; + 8FB301939C9BC99F272793DB3EA9A39E /* DDTimerKit_Private.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = DDTimerKit_Private.release.xcconfig; sourceTree = ""; }; + 8FB3921828004ED18F40FA28D2347DC6 /* MAHeatMapVectorGridOverlayRenderer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MAHeatMapVectorGridOverlayRenderer.h; path = AMapNaviKit.framework/Headers/MAHeatMapVectorGridOverlayRenderer.h; sourceTree = ""; }; + 901771A17BC2D5F010638245884EA1B0 /* UIDatePicker+Rx.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "UIDatePicker+Rx.swift"; path = "RxCocoa/iOS/UIDatePicker+Rx.swift"; sourceTree = ""; }; + 90A0BBDC2F2657AE9F32CDA93BF9DBB1 /* HapticFeedbackGenerator.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = HapticFeedbackGenerator.swift; path = Source/Utils/HapticFeedbackGenerator.swift; sourceTree = ""; }; + 90BD68E9103D0721BEC576E29508098A /* ZFReachabilityManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = ZFReachabilityManager.m; path = DDZFPlayerKit_Private/Classes/Core/ZFReachabilityManager.m; sourceTree = ""; }; + 90C04466BB725EF3775642FAB7893E44 /* DelegateProxyType.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = DelegateProxyType.swift; path = RxCocoa/Common/DelegateProxyType.swift; sourceTree = ""; }; + 90F834940ADB31A14A06D46856D877D0 /* icon_file_type_xml@3x.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = "icon_file_type_xml@3x.png"; path = "Sources/Resources/FileType/icon_file_type_xml@3x.png"; sourceTree = ""; }; + 9105470BCF7DC649E75F200161404493 /* ConstraintPriorityTarget.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ConstraintPriorityTarget.swift; path = Sources/ConstraintPriorityTarget.swift; sourceTree = ""; }; + 918CCDBA1022A635F47D098B5190FBD9 /* ESTabBarController-swift-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "ESTabBarController-swift-umbrella.h"; sourceTree = ""; }; + 9194876DFA8B01B5D7937929ACCB1AC2 /* icon_file_type_db.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = icon_file_type_db.png; path = Sources/Resources/FileType/icon_file_type_db.png; sourceTree = ""; }; + 91C0696E202BFA46891BAE2F7E983144 /* JXCategoryNumberCellModel.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = JXCategoryNumberCellModel.m; path = Sources/Number/JXCategoryNumberCellModel.m; sourceTree = ""; }; + 91C0BA21D939F381DEA0FA737166CA33 /* SDDeviceHelper.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDDeviceHelper.m; path = DDWebImageKit_Private/Classes/SDWebImage/Private/SDDeviceHelper.m; sourceTree = ""; }; + 921A85E91364FA6A782EEC183AA278FF /* ZLPhotoPreviewAnimatedTransition.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ZLPhotoPreviewAnimatedTransition.swift; path = Sources/Animation/ZLPhotoPreviewAnimatedTransition.swift; sourceTree = ""; }; + 925CED7574944FD2A444D1E8371ED2D6 /* icon_file_type_svg@3x.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = "icon_file_type_svg@3x.png"; path = "Sources/Resources/FileType/icon_file_type_svg@3x.png"; sourceTree = ""; }; + 92672863ED1E4EF1978E9E35CAD9FBE5 /* JXCategoryCollectionView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = JXCategoryCollectionView.m; path = Sources/Common/JXCategoryCollectionView.m; sourceTree = ""; }; + 928AABAF40B7C8B285DF82C6F61F590E /* IQPreviousNextView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = IQPreviousNextView.swift; path = IQKeyboardManagerSwift/IQToolbar/IQPreviousNextView.swift; sourceTree = ""; }; + 92913AC99AB731685E7EDF16583F293B /* ParameterEncoding.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ParameterEncoding.swift; path = Source/ParameterEncoding.swift; sourceTree = ""; }; + 929396B3C13DD9AC0D752E4CE93A61E9 /* ZFSliderView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ZFSliderView.h; path = DDZFPlayerKit_Private/Classes/ControlView/ZFSliderView.h; sourceTree = ""; }; + 92BB981074E8FD79695489AAD52FF5F0 /* icon_file_type_tif@2x.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = "icon_file_type_tif@2x.png"; path = "Sources/Resources/FileType/icon_file_type_tif@2x.png"; sourceTree = ""; }; + 933DC85A0EB090EA6303A18945910AF9 /* AMapNaviRideManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AMapNaviRideManager.h; path = AMapNaviKit.framework/Headers/AMapNaviRideManager.h; sourceTree = ""; }; + 936FEBCB276E32D9AD7D19B39E488A41 /* Alamofire.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Alamofire.swift; path = Source/Alamofire.swift; sourceTree = ""; }; + 9393F02D3DB58B372D7FCFA52744E383 /* ZFPlayer.bundle */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = "wrapper.plug-in"; name = ZFPlayer.bundle; path = DDZFPlayerKit_Private/Classes/ControlView/ZFPlayer.bundle; sourceTree = ""; }; + 9398D0DAD4E01C571C1ED9CA3135B0BA /* Infallible+Operators.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Infallible+Operators.swift"; path = "RxSwift/Traits/Infallible/Infallible+Operators.swift"; sourceTree = ""; }; + 939956CD7371C4B206B1FE2D5DB243B4 /* DDMATrackManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DDMATrackManager.h; path = DDMAMapKit_Private/Classes/DDMATrackManager/DDMATrackManager.h; sourceTree = ""; }; + 939CF4A9BEE41EA69945E3B684423A02 /* _CacheStoragePolicy.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = _CacheStoragePolicy.h; path = Sources/CustomHTTPProtocol/_CacheStoragePolicy.h; sourceTree = ""; }; + 93CA458AB4644D2FB617AEB32BB3086B /* ZFPlayerLogManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = ZFPlayerLogManager.m; path = DDZFPlayerKit_Private/Classes/Core/ZFPlayerLogManager.m; sourceTree = ""; }; + 93E74055C504CD5F666B283D0C6A92AD /* UITabBar+Rx.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "UITabBar+Rx.swift"; path = "RxCocoa/iOS/UITabBar+Rx.swift"; sourceTree = ""; }; + 93EB9C49F7C62A3E4577F270D028B8C7 /* AMapNaviKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; path = AMapNaviKit.framework; sourceTree = ""; }; + 944FA5EAC18B49C032D0130791E1DCAE /* DDSwiftLog.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = DDSwiftLog.swift; path = DDLogKit_Private/Classes/SwiftLog/DDSwiftLog.swift; sourceTree = ""; }; + 9468BFD4E552D5DDAEA1E67D7DB56D24 /* Disposable.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Disposable.swift; path = RxSwift/Disposable.swift; sourceTree = ""; }; + 947B736C6302AA3B25A79C5AEE16F940 /* EKFormMessageView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = EKFormMessageView.swift; path = Source/MessageViews/EKFormMessageView.swift; sourceTree = ""; }; + 947F55F30D11F3E36E2B4452C9BD0D3A /* HTTPHeaders.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = HTTPHeaders.swift; path = Source/HTTPHeaders.swift; sourceTree = ""; }; + 94AD8A497FEFFB0728DDC389581F4F99 /* icon_file_type_bmp@2x.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = "icon_file_type_bmp@2x.png"; path = "Sources/Resources/FileType/icon_file_type_bmp@2x.png"; sourceTree = ""; }; + 94BC0CACE6284059AD3275AC0D726586 /* NSObject+Rx+KVORepresentable.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "NSObject+Rx+KVORepresentable.swift"; path = "RxCocoa/Foundation/NSObject+Rx+KVORepresentable.swift"; sourceTree = ""; }; + 9526EB71B6900198A54FCEDBBE3E8630 /* JXCategoryNumberCell.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JXCategoryNumberCell.h; path = Sources/Number/JXCategoryNumberCell.h; sourceTree = ""; }; + 95B7001D25AB0D8459F34326F7DAB62C /* AMapLocationVersion.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AMapLocationVersion.h; path = AMapLocationKit.framework/Headers/AMapLocationVersion.h; sourceTree = ""; }; + 95CF63ABCB6F25ADB78E2D8C5C0B4AAE /* ZFLandScapeControlView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = ZFLandScapeControlView.m; path = DDZFPlayerKit_Private/Classes/ControlView/ZFLandScapeControlView.m; sourceTree = ""; }; + 95E168507C0A827BB4754E7CB9E3DF7B /* MAOverlayPathRenderer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MAOverlayPathRenderer.h; path = AMapNaviKit.framework/Headers/MAOverlayPathRenderer.h; sourceTree = ""; }; + 96167AC6C6F5EF1D29794661D7712D5B /* _RXObjCRuntime.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = _RXObjCRuntime.m; path = RxCocoa/Runtime/_RXObjCRuntime.m; sourceTree = ""; }; + 9651F162647738D9F4645980D82752BB /* Result.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Result.swift; path = Sources/Utility/Result.swift; sourceTree = ""; }; + 96937A12F11D2DE9039DF1AB2F8F3B30 /* EKTextField.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = EKTextField.swift; path = Source/MessageViews/MessagesUtils/EKTextField.swift; sourceTree = ""; }; + 96ABA92A48DC6366CD32E74C1F62C908 /* SchedulerType.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SchedulerType.swift; path = RxSwift/SchedulerType.swift; sourceTree = ""; }; + 96BC0EB92C249ACEBDA78937D9AE25FC /* WKWebView+Rx.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "WKWebView+Rx.swift"; path = "RxCocoa/iOS/WKWebView+Rx.swift"; sourceTree = ""; }; + 96D0124AA5F9AC06B5B82DA289A5A267 /* SnapKit-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "SnapKit-dummy.m"; sourceTree = ""; }; + 96F7AF40E802609917158B3B27A38C46 /* JXCategoryBaseCell.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JXCategoryBaseCell.h; path = Sources/Base/JXCategoryBaseCell.h; sourceTree = ""; }; 979486118B3E90C08386079D57962701 /* SnapKit */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = SnapKit; path = libSnapKit.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 97AB6AC27F4F9A76159A705883BF977E /* SubscribeOn.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SubscribeOn.swift; path = RxSwift/Observables/SubscribeOn.swift; sourceTree = ""; }; - 97CB192C5C91AB30D894996E0435074A /* MJRefreshConst.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MJRefreshConst.m; path = MJRefresh/MJRefreshConst.m; sourceTree = ""; }; - 97CDCFA29F0F53B0742815891A232C4A /* Driver+Subscription.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Driver+Subscription.swift"; path = "RxCocoa/Traits/Driver/Driver+Subscription.swift"; sourceTree = ""; }; - 97D78D63595AB089A4E49483C09B0D2A /* MATraceReplayOverlay.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MATraceReplayOverlay.m; path = DDMAMapKit_Private/Classes/DDMAMap/Trace/MATraceReplayOverlay.m; sourceTree = ""; }; - 980B60DB60CE7C0F05EF03176D74B7F0 /* MJRefreshBackStateFooter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MJRefreshBackStateFooter.m; path = MJRefresh/Custom/Footer/Back/MJRefreshBackStateFooter.m; sourceTree = ""; }; - 9820FB715A12392FAD9C399A3D5A7D45 /* EKColor.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = EKColor.swift; path = Source/Model/EKColor.swift; sourceTree = ""; }; - 985BCEDB6FF13F6DE08FCE01156F0173 /* SDWebImageOperation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageOperation.m; path = DDWebImageKit_Private/Classes/SDWebImage/Core/SDWebImageOperation.m; sourceTree = ""; }; - 985DB9E9919BE96EF112866868AA8FA7 /* SchedulerType+SharedSequence.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "SchedulerType+SharedSequence.swift"; path = "RxCocoa/Traits/SharedSequence/SchedulerType+SharedSequence.swift"; sourceTree = ""; }; - 986A7DC99C54F52357042B41325AC88B /* Error.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Error.swift; path = RxSwift/Observables/Error.swift; sourceTree = ""; }; - 98C04D2A7DBE183DEA1F1A61CB4E5981 /* JXCategoryListContainerView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = JXCategoryListContainerView.m; path = Sources/Common/JXCategoryListContainerView.m; sourceTree = ""; }; - 98C507C4CC43338630874956E64E4D82 /* DispatchQueue+Extensions.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "DispatchQueue+Extensions.swift"; path = "Platform/DispatchQueue+Extensions.swift"; sourceTree = ""; }; - 98D08CEBE7162D3492772D1D9F6E0A37 /* EKMessageContentView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = EKMessageContentView.swift; path = Source/MessageViews/EKMessageContentView.swift; sourceTree = ""; }; - 990FB2D28CA2C94ED42F278C95422B94 /* ZLCameraCell.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ZLCameraCell.swift; path = Sources/General/ZLCameraCell.swift; sourceTree = ""; }; - 992D25C5AA9160B1F8317E3BB17518E4 /* DDBaseLabel.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DDBaseLabel.m; path = DDBasicControlsKit_Private/Classes/DDBaseLabel/DDBaseLabel.m; sourceTree = ""; }; - 994EFC06B0CF379D861D96029A94FA5E /* Alamofire.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = Alamofire.modulemap; sourceTree = ""; }; - 995EB43547433684F5D8B79532DB80AD /* DDImageView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = DDImageView.swift; path = DDControlsKit_Private/Classes/DDImageView/DDImageView.swift; sourceTree = ""; }; - 996EC8E3E1C2BCD6A8B9EE2EA38B3695 /* IQKeyboardManagerSwift-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "IQKeyboardManagerSwift-umbrella.h"; sourceTree = ""; }; - 998B7DC9AD1ACB0D098B1AF8650B4F5B /* WithUnretained.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = WithUnretained.swift; path = RxSwift/Observables/WithUnretained.swift; sourceTree = ""; }; - 99968AC2DBB3A2F3F7CDC30EE42C3DF2 /* ZFPlayerView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = ZFPlayerView.m; path = DDZFPlayerKit_Private/Classes/Core/ZFPlayerView.m; sourceTree = ""; }; - 99DF8CA1C5831F1EFF41085A8367D586 /* PHAsset+ZLPhotoBrowser.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "PHAsset+ZLPhotoBrowser.swift"; path = "Sources/Extensions/PHAsset+ZLPhotoBrowser.swift"; sourceTree = ""; }; - 99E0B70509B8992D36DB21F880D93CC8 /* URLEncodedFormEncoder.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = URLEncodedFormEncoder.swift; path = Source/URLEncodedFormEncoder.swift; sourceTree = ""; }; - 9A09E8EEA631B765C5475928162D3E0E /* ResponseSerialization.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ResponseSerialization.swift; path = Source/ResponseSerialization.swift; sourceTree = ""; }; - 9A217BE48113422F8DC53DA8B6EDD31A /* WindowHelper.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = WindowHelper.swift; path = Sources/Window/WindowHelper.swift; sourceTree = ""; }; - 9A3FDF9212D2FCDDF45A3DCA1F2CBE90 /* NSObject+DDCategory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSObject+DDCategory.h"; path = "DDCategoryKit_Private/Classes/NSObject+DDCategory/NSObject+DDCategory.h"; sourceTree = ""; }; - 9A4D0AF7B1854A2A4C943C32BC89B9B5 /* AMapFoundationKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; path = AMapFoundationKit.framework; sourceTree = ""; }; - 9A615AE14F66A75F79B38B7ABD0F85C0 /* ZLVideoManager.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ZLVideoManager.swift; path = Sources/General/ZLVideoManager.swift; sourceTree = ""; }; - 9AB1BBD29E60E66C0FF01824EC0F1B75 /* NetworkDetailModel.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = NetworkDetailModel.swift; path = Sources/Network/NetworkDetailModel.swift; sourceTree = ""; }; - 9AB28D357EE656C30C3151FE6335D9C3 /* ConstraintMakerEditable.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ConstraintMakerEditable.swift; path = Sources/ConstraintMakerEditable.swift; sourceTree = ""; }; - 9AE421B9A55CBC570CF4AC6341C177C8 /* ESTabBarController-swift.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = "ESTabBarController-swift.modulemap"; sourceTree = ""; }; - 9B085CFA504578A99003C7302C61149E /* ZLPhotoBrowser.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ZLPhotoBrowser.h; path = Sources/ZLPhotoBrowser.h; sourceTree = ""; }; - 9B0D3706EBC13833D2ADECC39B85676C /* DDToastKit_Private.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = DDToastKit_Private.release.xcconfig; sourceTree = ""; }; - 9B19A826196BB032AB7B62550377FCDF /* AMapFoundationConst.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AMapFoundationConst.h; path = AMapFoundationKit.framework/Headers/AMapFoundationConst.h; sourceTree = ""; }; - 9B544BE9BCD1F2C9079B8E84ECC94BD6 /* MAMapStatus.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MAMapStatus.h; path = AMapNaviKit.framework/Headers/MAMapStatus.h; sourceTree = ""; }; - 9BE25FE38986C6639155CC9ECD28C7FD /* SwitchIfEmpty.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SwitchIfEmpty.swift; path = RxSwift/Observables/SwitchIfEmpty.swift; sourceTree = ""; }; - 9C0D6470F170BAD677B8910077C8DA64 /* icon_file_type_doc@3x.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = "icon_file_type_doc@3x.png"; path = "Sources/Resources/FileType/icon_file_type_doc@3x.png"; sourceTree = ""; }; - 9C15549DAD03703DBAAE22869AF1E47C /* MAPointAnnotation+DDCategory.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "MAPointAnnotation+DDCategory.m"; path = "DDMAMapKit_Private/Classes/DDMAMap/Annotation/MAPointAnnotation+DDCategory.m"; sourceTree = ""; }; - 9C6F219384345786220ED7CCBFC92E1A /* _icon_file_type_close@2x.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = "_icon_file_type_close@2x.png"; path = "Sources/Resources/images/_icon_file_type_close@2x.png"; sourceTree = ""; }; - 9C80D210C0026E985BF7FC5C26E588F0 /* ZLPhotoUIConfiguration+Chaining.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "ZLPhotoUIConfiguration+Chaining.swift"; path = "Sources/General/ZLPhotoUIConfiguration+Chaining.swift"; sourceTree = ""; }; - 9CB0A415A25BBB1F2E7E56C194144630 /* ZLPhotoBrowser-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "ZLPhotoBrowser-prefix.pch"; sourceTree = ""; }; + 97CA5EE6DE60EE9EB3AE1C088F4BFC9C /* icon_file_type_apk@2x.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = "icon_file_type_apk@2x.png"; path = "Sources/Resources/FileType/icon_file_type_apk@2x.png"; sourceTree = ""; }; + 9803DF7967D199F865AE74C7F5F10AB7 /* icon_file_type_midi@3x.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = "icon_file_type_midi@3x.png"; path = "Sources/Resources/FileType/icon_file_type_midi@3x.png"; sourceTree = ""; }; + 9824951BF51B3BAF7431D329F0BA1DAC /* DDViewControllerAnimatedTransition.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DDViewControllerAnimatedTransition.m; path = DDBasicControlsKit_Private/Classes/DDBaseAnimation/DDTransitionAnimation/DDViewControllerAnimatedTransition.m; sourceTree = ""; }; + 98446E34A5BC2175684D69EA687AEB83 /* QLUtils.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = QLUtils.swift; path = Source/Extensions/QuickLayout/QLUtils.swift; sourceTree = ""; }; + 9850E1A6B77D7ECE8FA161BB956005DD /* ResourceBundle-DDMAMapKit_Private-DDMAMapKit_Private-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "ResourceBundle-DDMAMapKit_Private-DDMAMapKit_Private-Info.plist"; sourceTree = ""; }; + 988019CE36140771910B8380EF9A2813 /* ZLAlbumListModel.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ZLAlbumListModel.swift; path = Sources/General/ZLAlbumListModel.swift; sourceTree = ""; }; + 98A613D06DB3DABFADB1410C9C88BA4A /* Generate.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Generate.swift; path = RxSwift/Observables/Generate.swift; sourceTree = ""; }; + 98E121468282A5B414D3DE724BA54A06 /* icon_file_type_png.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = icon_file_type_png.png; path = Sources/Resources/FileType/icon_file_type_png.png; sourceTree = ""; }; + 991E213B89A1022461033F97D75A8D59 /* JXCategoryTitleImageView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JXCategoryTitleImageView.h; path = Sources/TitleImage/JXCategoryTitleImageView.h; sourceTree = ""; }; + 9936F0CB3A63B5AACBC54AB5F3DBB50A /* ZFUtilities.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = ZFUtilities.m; path = DDZFPlayerKit_Private/Classes/ControlView/ZFUtilities.m; sourceTree = ""; }; + 9961F617D17E7D5855FEDC8D77F4BD28 /* ToArray.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ToArray.swift; path = RxSwift/Observables/ToArray.swift; sourceTree = ""; }; + 996660F3AEBFE9B0C55581213B9E8EFE /* NSBundle+BRPickerView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSBundle+BRPickerView.h"; path = "BRPickerView/Base/NSBundle+BRPickerView.h"; sourceTree = ""; }; + 998CF5D4571BBD8AFF163619A5F96028 /* Bag.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Bag.swift; path = Platform/DataStructures/Bag.swift; sourceTree = ""; }; + 999C613B204ECE074D08C527DD46E092 /* ConstraintAttributes.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ConstraintAttributes.swift; path = Sources/ConstraintAttributes.swift; sourceTree = ""; }; + 99AB51679515C5AE24A71E033EACDC14 /* JXCategoryDotCellModel.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JXCategoryDotCellModel.h; path = Sources/Dot/JXCategoryDotCellModel.h; sourceTree = ""; }; + 99B18FCEB19AD03A05F1266DD8B4F130 /* Platform.Linux.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Platform.Linux.swift; path = Platform/Platform.Linux.swift; sourceTree = ""; }; + 99BAF67C8A5CD24748E409B4D34F1764 /* CachedResponseHandler.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CachedResponseHandler.swift; path = Source/CachedResponseHandler.swift; sourceTree = ""; }; + 99C707D252D49AEB0C99EE2EF4B04700 /* ObserverBase.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ObserverBase.swift; path = RxSwift/Observers/ObserverBase.swift; sourceTree = ""; }; + 99FC94EB81606499CDD006F8A2C7E374 /* JXCategoryTitleVerticalZoomView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = JXCategoryTitleVerticalZoomView.m; path = Sources/VerticalZoomTitle/JXCategoryTitleVerticalZoomView.m; sourceTree = ""; }; + 9A09C744594080AF23CABD60C0D1EB2F /* DDBasicControlsKit_Private.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = DDBasicControlsKit_Private.modulemap; sourceTree = ""; }; + 9A129EE0C83FE51A20D8D5971D362AB8 /* DDSwitch.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = DDSwitch.swift; path = DDControlsKit_Private/Classes/DDSwitch/DDSwitch.swift; sourceTree = ""; }; + 9A1AA996EB8C98EB6740E1F2DB864E2E /* UITabBarController+DDCategory.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UITabBarController+DDCategory.m"; path = "DDCategoryKit_Private/Classes/UITabBarController+DDCategory/UITabBarController+DDCategory.m"; sourceTree = ""; }; + 9A2754B7A457BFCA7B501BB71DA80A14 /* AMapLocationRegionObj.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AMapLocationRegionObj.h; path = AMapLocationKit.framework/Headers/AMapLocationRegionObj.h; sourceTree = ""; }; + 9A588422AA3D6886175B32D97F73FBBA /* DDColorKit_Private-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "DDColorKit_Private-prefix.pch"; sourceTree = ""; }; + 9A8BAF8FFE3279DF4FFEC2E992F7460F /* DDToastKit_Private-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "DDToastKit_Private-prefix.pch"; sourceTree = ""; }; + 9AA3E3033F7BF20A1B3FEA843A225B76 /* icon_file_type_ipa@2x.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = "icon_file_type_ipa@2x.png"; path = "Sources/Resources/FileType/icon_file_type_ipa@2x.png"; sourceTree = ""; }; + 9B263EB1092CB554559B59DB0DAE625E /* icon_file_type_keynote@3x.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = "icon_file_type_keynote@3x.png"; path = "Sources/Resources/FileType/icon_file_type_keynote@3x.png"; sourceTree = ""; }; + 9B5D118541615291C89F29D1F9F7E1B5 /* icon_file_type_css@2x.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = "icon_file_type_css@2x.png"; path = "Sources/Resources/FileType/icon_file_type_css@2x.png"; sourceTree = ""; }; + 9B811D8CEF738968C173A506E719FB78 /* ZLPhotoModel.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ZLPhotoModel.swift; path = Sources/General/ZLPhotoModel.swift; sourceTree = ""; }; + 9BA272C3D59BCADB8C11C60B4383A94E /* Multicast.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Multicast.swift; path = RxSwift/Observables/Multicast.swift; sourceTree = ""; }; + 9BAD4D015F9DEEACCA44BE222487C45D /* UIImage+ZLPhotoBrowser.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "UIImage+ZLPhotoBrowser.swift"; path = "Sources/Extensions/UIImage+ZLPhotoBrowser.swift"; sourceTree = ""; }; + 9BBEF715D8D1A518938D7F5BE4D173CE /* DDBaseScrollView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DDBaseScrollView.h; path = DDBasicControlsKit_Private/Classes/DDBaseScrollView/DDBaseScrollView.h; sourceTree = ""; }; + 9BCB0C6F48AC8A17A0E2B0C678984E6D /* ZFPlayerMediaPlayback.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ZFPlayerMediaPlayback.h; path = DDZFPlayerKit_Private/Classes/Core/ZFPlayerMediaPlayback.h; sourceTree = ""; }; + 9C01CB87BF930A549BE2B7C73A68B7AA /* MJRefresh-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "MJRefresh-dummy.m"; sourceTree = ""; }; 9CB241779EEAD809AC3180FD5B56FDF4 /* DDFontKit_Private */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = DDFontKit_Private; path = libDDFontKit_Private.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 9CC21B89CBC0BF7D23B54A9B4BAAD631 /* icon_file_type_torrent@3x.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = "icon_file_type_torrent@3x.png"; path = "Sources/Resources/FileType/icon_file_type_torrent@3x.png"; sourceTree = ""; }; - 9CD1EB8FB6B4B6BA0F6AD47957A6C644 /* icon_file_type_wav@3x.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = "icon_file_type_wav@3x.png"; path = "Sources/Resources/FileType/icon_file_type_wav@3x.png"; sourceTree = ""; }; + 9CC0095EB0AACCD79BCAF9F7A67F8BA7 /* DDWebImageKit_Private-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "DDWebImageKit_Private-dummy.m"; sourceTree = ""; }; + 9CC0B99E9419B9D9D1B93DEA4580469F /* PriorityQueue.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = PriorityQueue.swift; path = Platform/DataStructures/PriorityQueue.swift; sourceTree = ""; }; + 9CE4EB0FE3EE5E15E6379183961D8DF6 /* icon_file_type_mp3@3x.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = "icon_file_type_mp3@3x.png"; path = "Sources/Resources/FileType/icon_file_type_mp3@3x.png"; sourceTree = ""; }; 9CF5E77BB32FA5A759A51B9A9F29CABB /* Pods-OrderSchedulingNotificationService-acknowledgements.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-OrderSchedulingNotificationService-acknowledgements.plist"; sourceTree = ""; }; - 9D253D285E3111564900BCCBB52DF6BA /* RxScrollViewDelegateProxy.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RxScrollViewDelegateProxy.swift; path = RxCocoa/iOS/Proxies/RxScrollViewDelegateProxy.swift; sourceTree = ""; }; - 9D45D3AF29E10D17B4B967254C63F1C0 /* MATraceReplayOverlayRender.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MATraceReplayOverlayRender.m; path = DDMAMapKit_Private/Classes/DDMAMap/Trace/MATraceReplayOverlayRender.m; sourceTree = ""; }; + 9CFB3B1B103D91B6F4E101100D87EE83 /* MAOfflineProvince.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MAOfflineProvince.h; path = AMapNaviKit.framework/Headers/MAOfflineProvince.h; sourceTree = ""; }; + 9D4197BFCAA16F893B016E2417DF1E96 /* _Sandboxer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = _Sandboxer.m; path = Sources/Sandbox/_Sandboxer.m; sourceTree = ""; }; 9D4B74A4386EF8F53603612D83CA68C9 /* DDColorKit_Private */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = DDColorKit_Private; path = libDDColorKit_Private.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 9D58D356148C79B09B8D016260211D35 /* DDToastKit_Private.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = DDToastKit_Private.debug.xcconfig; sourceTree = ""; }; - 9D77900683CB429F3824A29F75266C48 /* DefaultIfEmpty.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = DefaultIfEmpty.swift; path = RxSwift/Observables/DefaultIfEmpty.swift; sourceTree = ""; }; + 9D50ABEE75112BB31B23667087873645 /* URLRequest+Alamofire.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "URLRequest+Alamofire.swift"; path = "Source/URLRequest+Alamofire.swift"; sourceTree = ""; }; + 9D66D4ED537BD4320CF66C0D4215BFD5 /* MJRefreshHeader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MJRefreshHeader.h; path = MJRefresh/Base/MJRefreshHeader.h; sourceTree = ""; }; + 9D68874A644FA29FB42E9E2F120E3CBC /* CocoaDebugDeviceInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CocoaDebugDeviceInfo.h; path = Sources/Core/CocoaDebugDeviceInfo.h; sourceTree = ""; }; 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; }; - 9DA5859524B9EFF17D75560BCF7480FA /* RTLManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RTLManager.h; path = Sources/RLTManager/RTLManager.h; sourceTree = ""; }; - 9DC74262CA15079A9A756C6AEA96C09D /* icon_file_type_ppt@2x.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = "icon_file_type_ppt@2x.png"; path = "Sources/Resources/FileType/icon_file_type_ppt@2x.png"; sourceTree = ""; }; - 9DEC6944176057C13142769990A8B44C /* EKNotificationMessage.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = EKNotificationMessage.swift; path = Source/Model/EKNotificationMessage.swift; sourceTree = ""; }; - 9DFC7A72EAC0F784EF5287273525222E /* icon_file_type_wmv@2x.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = "icon_file_type_wmv@2x.png"; path = "Sources/Resources/FileType/icon_file_type_wmv@2x.png"; sourceTree = ""; }; - 9E0391D90377F07B8EDDE30561E44315 /* JXCategoryIndicatorParamsModel.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = JXCategoryIndicatorParamsModel.m; path = Sources/Common/JXCategoryIndicatorParamsModel.m; sourceTree = ""; }; - 9E192DDFBD0F157867DFA6E9582C17EC /* JPushExtension.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = JPushExtension.release.xcconfig; sourceTree = ""; }; - 9E197D6F9AA25F673F741D1E1DBEE116 /* NSThread+DDCategory.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSThread+DDCategory.m"; path = "DDCategoryKit_Private/Classes/NSThread+DDCategory/NSThread+DDCategory.m"; sourceTree = ""; }; - 9E25390F93FAEFA51E203354CD6EC590 /* UIImage+GIF.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIImage+GIF.m"; path = "DDWebImageKit_Private/Classes/SDWebImage/Core/UIImage+GIF.m"; sourceTree = ""; }; - 9E6CBC53274BD6E1521F82A306B2AF74 /* _RunloopMonitor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = _RunloopMonitor.h; path = Sources/Monitor/_RunloopMonitor.h; sourceTree = ""; }; - 9E7966BADC62278BB6E9F2E23EAD148A /* DDNetworkingOfAlamofireKit_Private-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "DDNetworkingOfAlamofireKit_Private-prefix.pch"; sourceTree = ""; }; - 9E7BDBBC8786EDA06674A48B00E8CCA6 /* MJRefreshStateTrailer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MJRefreshStateTrailer.h; path = MJRefresh/Custom/Trailer/MJRefreshStateTrailer.h; sourceTree = ""; }; - 9E7DB92403457DD0A9C524D551CE134B /* icon_file_type_ttf@2x.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = "icon_file_type_ttf@2x.png"; path = "Sources/Resources/FileType/icon_file_type_ttf@2x.png"; sourceTree = ""; }; - 9E92C5C6AF942E4A17B20ADFEF121074 /* DDBaseMutableAttributedString.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DDBaseMutableAttributedString.h; path = DDBasicControlsKit_Private/Classes/DDBaseAttributedString/DDBaseMutableAttributedString.h; sourceTree = ""; }; - 9EB776F2031BF9B2A5B43B1E1423011E /* icon_file_type_gif@3x.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = "icon_file_type_gif@3x.png"; path = "Sources/Resources/FileType/icon_file_type_gif@3x.png"; sourceTree = ""; }; - 9ECDAE64E2324CF79FC4E717F7DC0732 /* ReplayRelay.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ReplayRelay.swift; path = RxRelay/ReplayRelay.swift; sourceTree = ""; }; - 9ED76CA7E92F6B1B76611D26863D9E2C /* SDImageCodersManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageCodersManager.m; path = DDWebImageKit_Private/Classes/SDWebImage/Core/SDImageCodersManager.m; sourceTree = ""; }; - 9EF2B2DD090BAAAB648AF39338208629 /* GradientView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = GradientView.swift; path = Source/Utils/GradientView.swift; sourceTree = ""; }; - 9F0E27B27F2BB3829F8511515CE366C3 /* AMapNaviManagerConfig.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AMapNaviManagerConfig.h; path = AMapNaviKit.framework/Headers/AMapNaviManagerConfig.h; sourceTree = ""; }; - 9F691AD46B341DB9014CC5D31F64C79F /* DDBaseLabel.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DDBaseLabel.h; path = DDBasicControlsKit_Private/Classes/DDBaseLabel/DDBaseLabel.h; sourceTree = ""; }; - 9F7599BDB80E9754D2FD6531126EE09B /* ConcurrentMainScheduler.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ConcurrentMainScheduler.swift; path = RxSwift/Schedulers/ConcurrentMainScheduler.swift; sourceTree = ""; }; - 9FE6F650AAA3B78F63B7C65A0540DA04 /* DDProgressHUDKit_Private.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = DDProgressHUDKit_Private.release.xcconfig; sourceTree = ""; }; - 9FFC0A7EFAA401BDF16835C4BD55FAC9 /* Debugging.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Debugging.swift; path = Sources/Debugging.swift; sourceTree = ""; }; - A001404B621A3E4DC543149601FBCE87 /* KingfisherError.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = KingfisherError.swift; path = Sources/General/KingfisherError.swift; sourceTree = ""; }; - A0046413888524AAF15AD4877C6971ED /* ConstraintMakerPrioritizable.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ConstraintMakerPrioritizable.swift; path = Sources/ConstraintMakerPrioritizable.swift; sourceTree = ""; }; - A00B0513D7257538A1BF7703F35AB16A /* AMapNaviKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; path = AMapNaviKit.framework; sourceTree = ""; }; - A00C1A29D4C567207A56493A4B2DB4DC /* ZFVolumeBrightnessView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ZFVolumeBrightnessView.h; path = DDZFPlayerKit_Private/Classes/ControlView/ZFVolumeBrightnessView.h; sourceTree = ""; }; - A04A9FCD00D476101C4814287193D884 /* UIFont+ZLPhotoBrowser.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "UIFont+ZLPhotoBrowser.swift"; path = "Sources/Extensions/UIFont+ZLPhotoBrowser.swift"; sourceTree = ""; }; - A085D6D9EF9515B07C9038B2470C49FC /* DriveRouteCustomAnnotationView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DriveRouteCustomAnnotationView.m; path = DDMAMapKit_Private/Classes/DDMAMap/AnnotationView/DriveRouteCustomAnnotationView.m; sourceTree = ""; }; - A08EC450545B78861A74D54F9D2EFC3D /* DDSwiftLog.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = DDSwiftLog.swift; path = DDLogKit_Private/Classes/SwiftLog/DDSwiftLog.swift; sourceTree = ""; }; - A0CB1D719EE85CF817CE5A346F5FE8E1 /* Throttle.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Throttle.swift; path = RxSwift/Observables/Throttle.swift; sourceTree = ""; }; - A0CE6B496041CC1737E30C1BC721623A /* SDImageIOAnimatedCoder.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageIOAnimatedCoder.m; path = DDWebImageKit_Private/Classes/SDWebImage/Core/SDImageIOAnimatedCoder.m; sourceTree = ""; }; - A0EE34A04AA3B8DEC5C350DFA1C1679D /* _SandboxerHelper.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = _SandboxerHelper.m; path = Sources/Sandbox/_SandboxerHelper.m; sourceTree = ""; }; - A0F62732B034FA270F94E496885F0109 /* DDTextView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = DDTextView.swift; path = DDControlsKit_Private/Classes/DDTextView/DDTextView.swift; sourceTree = ""; }; - A0F685A431BC840DFBDA7DD0D5CB8488 /* icon_file_type_php@3x.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = "icon_file_type_php@3x.png"; path = "Sources/Resources/FileType/icon_file_type_php@3x.png"; sourceTree = ""; }; - A101575BE7A6EB69AE9971478DDD6589 /* icon_file_type_wmv.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = icon_file_type_wmv.png; path = Sources/Resources/FileType/icon_file_type_wmv.png; sourceTree = ""; }; - A11580D30F6F60562E706A10CA180340 /* ZLPhotoBrowser-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "ZLPhotoBrowser-umbrella.h"; sourceTree = ""; }; - A1372B6FD4992423C989D048B7B254D7 /* JXCategoryIndicatorBackgroundView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = JXCategoryIndicatorBackgroundView.m; path = Sources/Indicator/IndicatorViews/JXCategoryIndicatorBackgroundView.m; sourceTree = ""; }; - A1A7847D5347447FDCFA0D19DF2A08F5 /* _DeviceUtil+Constant.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "_DeviceUtil+Constant.h"; path = "Sources/Core/_DeviceUtil+Constant.h"; sourceTree = ""; }; - A1B8B8F303F22AB7435B9AEB5DE57D44 /* SkipWhile.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SkipWhile.swift; path = RxSwift/Observables/SkipWhile.swift; sourceTree = ""; }; - A1D1F9269ED245A4060838FC64C0EFD6 /* JXCategoryBaseCell.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = JXCategoryBaseCell.m; path = Sources/Base/JXCategoryBaseCell.m; sourceTree = ""; }; - A2001AD110E1A035787ABC83C0DE287E /* SDWebImageError.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageError.m; path = DDWebImageKit_Private/Classes/SDWebImage/Core/SDWebImageError.m; sourceTree = ""; }; - A24DF03EC73E56C72E32A0A71DF44628 /* EKNoteMessageView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = EKNoteMessageView.swift; path = Source/MessageViews/Notes/EKNoteMessageView.swift; sourceTree = ""; }; - A2739D1B065BC684019693673EB5D2F9 /* UICollectionViewLayout+MJRefresh.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UICollectionViewLayout+MJRefresh.h"; path = "MJRefresh/UICollectionViewLayout+MJRefresh.h"; sourceTree = ""; }; - A291BD343E0D74163B1418D7CE0AAE1F /* icon_file_type_bmp@3x.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = "icon_file_type_bmp@3x.png"; path = "Sources/Resources/FileType/icon_file_type_bmp@3x.png"; sourceTree = ""; }; - A29C805AD56D0E3AB40A2C6ADCB513C2 /* AMapNaviBaseManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AMapNaviBaseManager.h; path = AMapNaviKit.framework/Headers/AMapNaviBaseManager.h; sourceTree = ""; }; - A2B7FE87DFE4FDE1028690C74EA3A5FB /* EKProperty.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = EKProperty.swift; path = Source/Model/EKProperty.swift; sourceTree = ""; }; - A2EB1A3B8E37E6A4375C6622CCDE8ED0 /* MATraceReplayOverlay.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MATraceReplayOverlay.h; path = DDMAMapKit_Private/Classes/DDMAMap/Trace/MATraceReplayOverlay.h; sourceTree = ""; }; - A30A94A47A61D14BC24541F2C2573B47 /* MAMVTTileOverlayRenderer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MAMVTTileOverlayRenderer.h; path = AMapNaviKit.framework/Headers/MAMVTTileOverlayRenderer.h; sourceTree = ""; }; - A32BABF1610E9569E4FA9D49409BC712 /* SDImageAPNGCoder.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageAPNGCoder.m; path = DDWebImageKit_Private/Classes/SDWebImage/Core/SDImageAPNGCoder.m; sourceTree = ""; }; - A386AA41758CBF689FE017B8C0849ED8 /* UIView+DDCategory.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIView+DDCategory.m"; path = "DDCategoryKit_Private/Classes/UIView+DDCategory/UIView+DDCategory.m"; sourceTree = ""; }; - A3C21D5A0E990B1A2C498BE9E6C45FBF /* DDToastKit_Private-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "DDToastKit_Private-dummy.m"; sourceTree = ""; }; - A3D3B00AD33CE3D3C6D598CC3CA2A60F /* AMapNaviRideDataRepresentable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AMapNaviRideDataRepresentable.h; path = AMapNaviKit.framework/Headers/AMapNaviRideDataRepresentable.h; sourceTree = ""; }; - A3E732E223369EECFE2FC7FAE4E18355 /* _RX.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = _RX.m; path = RxCocoa/Runtime/_RX.m; sourceTree = ""; }; - A40110B9A1BF795872CD8BD2F586694E /* UIColor+SDHexString.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIColor+SDHexString.m"; path = "DDWebImageKit_Private/Classes/SDWebImage/Private/UIColor+SDHexString.m"; sourceTree = ""; }; - A41C09B55E71572D976B82191B44FAAE /* SDWebImageDownloaderConfig.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageDownloaderConfig.m; path = DDWebImageKit_Private/Classes/SDWebImage/Core/SDWebImageDownloaderConfig.m; sourceTree = ""; }; - A421E52F98B14ECDFBB67E9A812FCE8E /* ImageDownloader.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ImageDownloader.swift; path = Sources/Networking/ImageDownloader.swift; sourceTree = ""; }; - A44B3898EAEAB4244E6F5C1C04E633CE /* SDAssociatedObject.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDAssociatedObject.h; path = DDWebImageKit_Private/Classes/SDWebImage/Private/SDAssociatedObject.h; sourceTree = ""; }; - A48B326F56F0537399C161E7F292B287 /* SDWebImageOperation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageOperation.h; path = DDWebImageKit_Private/Classes/SDWebImage/Core/SDWebImageOperation.h; sourceTree = ""; }; - A4B37FC102BBF3F9E183796B8D21F9AA /* SDImageCache.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageCache.m; path = DDWebImageKit_Private/Classes/SDWebImage/Core/SDImageCache.m; sourceTree = ""; }; - A4FD22CDED79F58FD4CCE359D274A358 /* MAUserLocation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MAUserLocation.h; path = AMapNaviKit.framework/Headers/MAUserLocation.h; sourceTree = ""; }; - A501EDE665F3B45D381865C9C493DF5B /* Bubble.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Bubble.swift; path = Sources/Window/Bubble.swift; sourceTree = ""; }; - A51659059DDE00160D3901FD896587BF /* ZFPlayerControlView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ZFPlayerControlView.h; path = DDZFPlayerKit_Private/Classes/ControlView/ZFPlayerControlView.h; sourceTree = ""; }; - A516F8B7F11D25FD040B906D1BF90A03 /* Network.storyboard */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = file.storyboard; name = Network.storyboard; path = Sources/Resources/Network.storyboard; sourceTree = ""; }; - A52432AD29A52645680DC89BEEDCDBCE /* CocoaDebugTool.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CocoaDebugTool.h; path = Sources/Logs/CocoaDebugTool.h; sourceTree = ""; }; - A57A7A43008CE2316B57AF912372E039 /* BRPickerView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = BRPickerView.h; path = BRPickerView/BRPickerView.h; sourceTree = ""; }; - A583EAE95E238B27742287290985301B /* MAMapAccessibilityIdentifier.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MAMapAccessibilityIdentifier.h; path = AMapNaviKit.framework/Headers/MAMapAccessibilityIdentifier.h; sourceTree = ""; }; - A58467B14A493BE78DE28CA355205ED8 /* DDViewControllerAnimatedTransition.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DDViewControllerAnimatedTransition.h; path = DDBasicControlsKit_Private/Classes/DDBaseAnimation/DDTransitionAnimation/DDViewControllerAnimatedTransition.h; sourceTree = ""; }; - A5BC6D46BCCA67E61F0FF9170157271B /* MemoryStorage.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = MemoryStorage.swift; path = Sources/Cache/MemoryStorage.swift; sourceTree = ""; }; - A5CDDAEB637B3784898348A1C48D1D9A /* JXCategoryTitleImageCellModel.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = JXCategoryTitleImageCellModel.m; path = Sources/TitleImage/JXCategoryTitleImageCellModel.m; sourceTree = ""; }; - A5ECFDE643E7B69A74381E41CAB19885 /* ToArray.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ToArray.swift; path = RxSwift/Observables/ToArray.swift; sourceTree = ""; }; - A5F2038ABCAE45CF33BCEBA31A37A5E5 /* ZFPlayerGestureControl.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = ZFPlayerGestureControl.m; path = DDZFPlayerKit_Private/Classes/Core/ZFPlayerGestureControl.m; sourceTree = ""; }; - A649C7437DC88996866C3A346982EE0E /* EKAttributes+Position.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "EKAttributes+Position.swift"; path = "Source/Model/EntryAttributes/EKAttributes+Position.swift"; sourceTree = ""; }; - A682E849D1F23C41023413056013C7E9 /* ZFKVOController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ZFKVOController.h; path = DDZFPlayerKit_Private/Classes/Core/ZFKVOController.h; sourceTree = ""; }; - A690F45E3DFFBCB5675B6F5FAB8E1C37 /* SDWebImageDownloader.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageDownloader.m; path = DDWebImageKit_Private/Classes/SDWebImage/Core/SDWebImageDownloader.m; sourceTree = ""; }; - A69E005359A9F972A36DAB2BC5E9E3D0 /* NSURL+DDCategory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSURL+DDCategory.h"; path = "DDCategoryKit_Private/Classes/NSUrl+DDCategory/NSURL+DDCategory.h"; sourceTree = ""; }; - A709A4F91B4007360175953EB79EE5D4 /* icon_file_type_pdf.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = icon_file_type_pdf.png; path = Sources/Resources/FileType/icon_file_type_pdf.png; sourceTree = ""; }; - A70E8E4F5CDF328523191F31497E7D24 /* EKAttributes+StatusBar.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "EKAttributes+StatusBar.swift"; path = "Source/Model/EntryAttributes/EKAttributes+StatusBar.swift"; sourceTree = ""; }; - A71EBDF84D07A3429959B43C98F3E31F /* Resource.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Resource.swift; path = Sources/General/ImageSource/Resource.swift; sourceTree = ""; }; - A75063B87C320A3F1F92E72A5A9A13B6 /* PublishSubject.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = PublishSubject.swift; path = RxSwift/Subjects/PublishSubject.swift; sourceTree = ""; }; - A7A670105B1656796B85328E9EB82EB1 /* _DebugConsoleLabel.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = _DebugConsoleLabel.m; path = Sources/Monitor/_DebugConsoleLabel.m; sourceTree = ""; }; - A7AC3446A7CBF8A2FCA7AE556A2F1F33 /* icon_file_type_gif.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = icon_file_type_gif.png; path = Sources/Resources/FileType/icon_file_type_gif.png; sourceTree = ""; }; - A7BFF40DB00CA9E320E12CDDAA35635A /* AMapNaviInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AMapNaviInfo.h; path = AMapNaviKit.framework/Headers/AMapNaviInfo.h; sourceTree = ""; }; - A7D9C3B98052E58DD6F6388F373243F8 /* ZLInputTextViewController.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ZLInputTextViewController.swift; path = Sources/Edit/ZLInputTextViewController.swift; sourceTree = ""; }; - A81578ADCCEC88B9148698480D09E747 /* icon_file_type_mpg@3x.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = "icon_file_type_mpg@3x.png"; path = "Sources/Resources/FileType/icon_file_type_mpg@3x.png"; sourceTree = ""; }; - A848F876F1E99E91751E589435BD4F72 /* icon_file_type_dmg.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = icon_file_type_dmg.png; path = Sources/Resources/FileType/icon_file_type_dmg.png; sourceTree = ""; }; - A8AADD1211DCFC2FE0FCD2A4B0DFB192 /* NotificationCenter+Rx.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "NotificationCenter+Rx.swift"; path = "RxCocoa/Foundation/NotificationCenter+Rx.swift"; sourceTree = ""; }; - A8D86D0CE6637D88BEB19204DC303C74 /* icon_file_type_mov@3x.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = "icon_file_type_mov@3x.png"; path = "Sources/Resources/FileType/icon_file_type_mov@3x.png"; sourceTree = ""; }; + 9DA42232C932E85BAFD4FF2EEA92DFDF /* DDTimerKit_Private.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = DDTimerKit_Private.debug.xcconfig; sourceTree = ""; }; + 9DB5D296ED80B51D91DB41F8FEB08F05 /* DDZFPlayerKit_Private.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = DDZFPlayerKit_Private.release.xcconfig; sourceTree = ""; }; + 9DBAC1A4C69126CA19CFEAE121C56271 /* icon_file_type_wav@2x.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = "icon_file_type_wav@2x.png"; path = "Sources/Resources/FileType/icon_file_type_wav@2x.png"; sourceTree = ""; }; + 9DC09D51BA50A7C238B68B28BEB3003F /* CocoaDebug+Extensions.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "CocoaDebug+Extensions.swift"; path = "Sources/Core/CocoaDebug+Extensions.swift"; sourceTree = ""; }; + 9E034624A24009FD0B6839B91B89060F /* UICollectionViewCell+DDCategory.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UICollectionViewCell+DDCategory.m"; path = "DDCategoryKit_Private/Classes/UICollectionViewCell+DDCategory/UICollectionViewCell+DDCategory.m"; sourceTree = ""; }; + 9E1FD9936167392B872FB4E7F7400EEC /* MJRefreshFooter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MJRefreshFooter.m; path = MJRefresh/Base/MJRefreshFooter.m; sourceTree = ""; }; + 9E2614393372F1373562F24552A34672 /* MATraceReplayOverlay.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MATraceReplayOverlay.h; path = DDMAMapKit_Private/Classes/DDMAMap/Trace/MATraceReplayOverlay.h; sourceTree = ""; }; + 9E5F707BC866320CAE9454AE32D27F96 /* icon_file_type_midi@2x.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = "icon_file_type_midi@2x.png"; path = "Sources/Resources/FileType/icon_file_type_midi@2x.png"; sourceTree = ""; }; + 9E8A1B69A23A66FA52A4486F2A77B771 /* DDFontKit_Private.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = DDFontKit_Private.release.xcconfig; sourceTree = ""; }; + 9EA66F5FAE74501193119915AEFFBEED /* ZFPlayer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ZFPlayer.h; path = DDZFPlayerKit_Private/Classes/Core/ZFPlayer.h; sourceTree = ""; }; + 9ECC1CFAF7F7F94D4BEA17650D3BEBB8 /* DDTextView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = DDTextView.swift; path = DDControlsKit_Private/Classes/DDTextView/DDTextView.swift; sourceTree = ""; }; + 9ED517D8551A05FB319503D5EBE74D44 /* UIScrollView+DDCategory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIScrollView+DDCategory.h"; path = "DDCategoryKit_Private/Classes/UIScrollView+DDCategory/UIScrollView+DDCategory.h"; sourceTree = ""; }; + 9EE67FCA70CF2E96C7396C66B8C8E418 /* RecursiveScheduler.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RecursiveScheduler.swift; path = RxSwift/Schedulers/RecursiveScheduler.swift; sourceTree = ""; }; + 9F2092B25E7A6B13FAB6E603CA77746A /* icon_file_type_pages@3x.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = "icon_file_type_pages@3x.png"; path = "Sources/Resources/FileType/icon_file_type_pages@3x.png"; sourceTree = ""; }; + 9F4B5C69DF4E0E0C4F8D831E5D9B64F3 /* EKStyleView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = EKStyleView.swift; path = Source/Infra/EKStyleView.swift; sourceTree = ""; }; + 9F4E84F353F8A733EB01D44C6EBDF1BB /* UIBlockingBubble.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = UIBlockingBubble.swift; path = Sources/Window/UIBlockingBubble.swift; sourceTree = ""; }; + 9F7D764AB9E80A651E964C15395AD6EE /* SharedSequence+Concurrency.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "SharedSequence+Concurrency.swift"; path = "RxCocoa/Traits/SharedSequence/SharedSequence+Concurrency.swift"; sourceTree = ""; }; + 9F871E501BDBD3527CB3EFEDEE7E9C5F /* AsSingle.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AsSingle.swift; path = RxSwift/Observables/AsSingle.swift; sourceTree = ""; }; + 9F93A32E9DB2D15D01C4010FC5D07F13 /* Filter.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Filter.swift; path = RxSwift/Observables/Filter.swift; sourceTree = ""; }; + 9F96EF579F4EDC48AB2ED1BF614276D9 /* UITableViewCell+DDCategory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UITableViewCell+DDCategory.h"; path = "DDCategoryKit_Private/Classes/UITableViewCell+DDCategory/UITableViewCell+DDCategory.h"; sourceTree = ""; }; + 9FBCF4CFD0559F4FACD728FB60254A36 /* SDWebImageManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageManager.h; path = DDWebImageKit_Private/Classes/SDWebImage/Core/SDWebImageManager.h; sourceTree = ""; }; + 9FF05B609FF47FA0271362F923DB98E0 /* ImageDataProcessor.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ImageDataProcessor.swift; path = Sources/Networking/ImageDataProcessor.swift; sourceTree = ""; }; + 9FFDCA6EA7DD6D1F48F6E6A470D82866 /* ZLAlbumListCell.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ZLAlbumListCell.swift; path = Sources/General/ZLAlbumListCell.swift; sourceTree = ""; }; + A00FEC96F7432E514649B6321FE1CF58 /* RxTableViewDataSourceType.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RxTableViewDataSourceType.swift; path = RxCocoa/iOS/Protocols/RxTableViewDataSourceType.swift; sourceTree = ""; }; + A0C18F69D04945C4F4F65A4781962DC9 /* DDTableViewCell.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = DDTableViewCell.swift; path = DDControlsKit_Private/Classes/DDTableViewCell/DDTableViewCell.swift; sourceTree = ""; }; + A0D016D448D4891CC0E17A93392E37DD /* NetworkViewController.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = NetworkViewController.swift; path = Sources/Network/NetworkViewController.swift; sourceTree = ""; }; + A0F87D8DC43809AB7D320C88379D0ABD /* JXCategoryView-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "JXCategoryView-prefix.pch"; sourceTree = ""; }; + A10B35338C50E2E7972A693714CFE031 /* DefaultIfEmpty.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = DefaultIfEmpty.swift; path = RxSwift/Observables/DefaultIfEmpty.swift; sourceTree = ""; }; + A15F8EB976B4042629E0605347F1272C /* AMapSearchObj.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AMapSearchObj.h; path = AMapSearchKit.framework/Headers/AMapSearchObj.h; sourceTree = ""; }; + A177407DF2A68887C28973E169D3E834 /* GroupedObservable.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = GroupedObservable.swift; path = RxSwift/GroupedObservable.swift; sourceTree = ""; }; + A1833E092E6E2C7CB2FEC9DB0539405B /* GPBMessage+CocoaDebug.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "GPBMessage+CocoaDebug.h"; path = "Sources/Categories/GPBMessage+CocoaDebug.h"; sourceTree = ""; }; + A1DDAB8D0629FC240E603E8B48A73673 /* UIColor+ZLPhotoBrowser.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "UIColor+ZLPhotoBrowser.swift"; path = "Sources/Extensions/UIColor+ZLPhotoBrowser.swift"; sourceTree = ""; }; + A25C6F0E6D20CBD7EA25A7DE82A4FAB4 /* Debugging.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Debugging.swift; path = Sources/Debugging.swift; sourceTree = ""; }; + A26528E38976BAF17E03D7B30EF1A830 /* NSBezierPath+SDRoundedCorners.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSBezierPath+SDRoundedCorners.m"; path = "DDWebImageKit_Private/Classes/SDWebImage/Private/NSBezierPath+SDRoundedCorners.m"; sourceTree = ""; }; + A26C5BC7A7F4B251BA5907775BA16F7D /* Source.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Source.swift; path = Sources/General/ImageSource/Source.swift; sourceTree = ""; }; + A2BA8A1F668BD7BD669CDD5C82E79BE3 /* UIImage+MultiFormat.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIImage+MultiFormat.m"; path = "DDWebImageKit_Private/Classes/SDWebImage/Core/UIImage+MultiFormat.m"; sourceTree = ""; }; + A2C49409727D38F52C1F53932F467A50 /* MJRefresh.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MJRefresh.h; path = MJRefresh/MJRefresh.h; sourceTree = ""; }; + A2FF4938FC742B41E51A3D67F83B59BC /* SDImageGIFCoder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageGIFCoder.h; path = DDWebImageKit_Private/Classes/SDWebImage/Core/SDImageGIFCoder.h; sourceTree = ""; }; + A30EBD463466F63B3AF190056FCFE2C8 /* BRDatePickerView+BR.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "BRDatePickerView+BR.m"; path = "BRPickerView/DatePickerView/BRDatePickerView+BR.m"; sourceTree = ""; }; + A3640CEBA7C26A87777F2D7DA97B842C /* _OCLogStoreManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = _OCLogStoreManager.m; path = Sources/Logs/_OCLogStoreManager.m; sourceTree = ""; }; + A364B070CA12AB27E997A84F876FDD3F /* EKNotificationMessage.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = EKNotificationMessage.swift; path = Source/Model/EKNotificationMessage.swift; sourceTree = ""; }; + A383DDF49CE20AFB159C4C2CFEEA0B3E /* JXCategoryIndicatorComponentView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JXCategoryIndicatorComponentView.h; path = Sources/Indicator/IndicatorViews/JXCategoryIndicatorComponentView.h; sourceTree = ""; }; + A3C879A65CBB8E48310142D96071B854 /* App.storyboard */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = file.storyboard; name = App.storyboard; path = Sources/Resources/App.storyboard; sourceTree = ""; }; + A40353B4FCD05423F2C9A8B998F39A76 /* UIScrollView+MJExtension.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIScrollView+MJExtension.h"; path = "MJRefresh/UIScrollView+MJExtension.h"; sourceTree = ""; }; + A41376E50017A2935A37C3A982374FFD /* ZFLandscapeViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = ZFLandscapeViewController.m; path = DDZFPlayerKit_Private/Classes/Core/ZFLandscapeViewController.m; sourceTree = ""; }; + A426DE49EBDEF83C4811B094FE4CE40F /* Bag+Rx.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Bag+Rx.swift"; path = "RxSwift/Extensions/Bag+Rx.swift"; sourceTree = ""; }; + A48CA6D419834493D1B0C158221B77BD /* SDWebImageDownloaderDecryptor.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageDownloaderDecryptor.m; path = DDWebImageKit_Private/Classes/SDWebImage/Core/SDWebImageDownloaderDecryptor.m; sourceTree = ""; }; + A49ADC338F975C5324DFB40BCAB21952 /* SDAnimatedImageView+WebCache.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "SDAnimatedImageView+WebCache.m"; path = "DDWebImageKit_Private/Classes/SDWebImage/Core/SDAnimatedImageView+WebCache.m"; sourceTree = ""; }; + A49FDEAF283DC95FC4EC2DDBA29CAED3 /* Bool+ZLPhotoBrowser.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Bool+ZLPhotoBrowser.swift"; path = "Sources/Extensions/Bool+ZLPhotoBrowser.swift"; sourceTree = ""; }; + A561F4A3DB1805B379FAA2EE96BD9B1D /* JXCategoryTitleVerticalZoomCellModel.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JXCategoryTitleVerticalZoomCellModel.h; path = Sources/VerticalZoomTitle/JXCategoryTitleVerticalZoomCellModel.h; sourceTree = ""; }; + A56AB2121F2DA7FAA10A95399A89F3C9 /* Manager.storyboard */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = file.storyboard; name = Manager.storyboard; path = Sources/Resources/Manager.storyboard; sourceTree = ""; }; + A57B71A9E12EE2E126434243DA492222 /* MJRefreshConfig.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MJRefreshConfig.m; path = MJRefresh/MJRefreshConfig.m; sourceTree = ""; }; + A59107DEA6267230DDAC16F6E137FAB6 /* CALayer+DDCategory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "CALayer+DDCategory.h"; path = "DDCategoryKit_Private/Classes/CALayer+DDCategory/CALayer+DDCategory.h"; sourceTree = ""; }; + A591717D5C93FD5034BB7203E97C298F /* icon_file_type_png@2x.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = "icon_file_type_png@2x.png"; path = "Sources/Resources/FileType/icon_file_type_png@2x.png"; sourceTree = ""; }; + A59C95CE2CD351950924E07724DEB75F /* icon_file_type_bmp.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = icon_file_type_bmp.png; path = Sources/Resources/FileType/icon_file_type_bmp.png; sourceTree = ""; }; + A5F19476E2181D453018ACC203C152C3 /* _BacktraceLogger.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = _BacktraceLogger.m; path = Sources/Monitor/_BacktraceLogger.m; sourceTree = ""; }; + A5FD96D59B7F203B54C673283CA021A1 /* JXCategoryIndicatorParamsModel.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = JXCategoryIndicatorParamsModel.m; path = Sources/Common/JXCategoryIndicatorParamsModel.m; sourceTree = ""; }; + A61A51E3D716D4E0619FAB677331207C /* NSObject+Rx+RawRepresentable.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "NSObject+Rx+RawRepresentable.swift"; path = "RxCocoa/Foundation/NSObject+Rx+RawRepresentable.swift"; sourceTree = ""; }; + A61E15F374B58D0CD5DD0D21ABF44943 /* SDAssociatedObject.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDAssociatedObject.h; path = DDWebImageKit_Private/Classes/SDWebImage/Private/SDAssociatedObject.h; sourceTree = ""; }; + A64075259164C06A45D6E9220ABAF9EE /* IQKeyboardReturnKeyHandler.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = IQKeyboardReturnKeyHandler.swift; path = IQKeyboardManagerSwift/IQKeyboardReturnKeyHandler.swift; sourceTree = ""; }; + A6663F93BEFE509F2CB1AECEFE86DD38 /* jcore-ios-4.2.1.xcframework */ = {isa = PBXFileReference; includeInIndex = 1; path = "jcore-ios-4.2.1.xcframework"; sourceTree = ""; }; + A6715A810721B77E7BE0A4AD91B50BC3 /* UIView+WebCache.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIView+WebCache.m"; path = "DDWebImageKit_Private/Classes/SDWebImage/Core/UIView+WebCache.m"; sourceTree = ""; }; + A6739826185906DF043EFFAA982DCF24 /* NetworkCell.xib */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = file.xib; name = NetworkCell.xib; path = Sources/Resources/NetworkCell.xib; sourceTree = ""; }; + A696AAE96A27A0204EC62503D9C54A30 /* UIImage+MultiFormat.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImage+MultiFormat.h"; path = "DDWebImageKit_Private/Classes/SDWebImage/Core/UIImage+MultiFormat.h"; sourceTree = ""; }; + A6B410D64A701D1CB10E1077619B6F60 /* EKAttributes+Scroll.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "EKAttributes+Scroll.swift"; path = "Source/Model/EntryAttributes/EKAttributes+Scroll.swift"; sourceTree = ""; }; + A6BFDB4E75B1484DFA020817AE4EE945 /* DDBaseTableView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DDBaseTableView.h; path = DDBasicControlsKit_Private/Classes/DDBaseTableView/DDBaseTableView.h; sourceTree = ""; }; + A6F76FEE45C1E32CE51D341F23E1E41F /* BRDatePickerView+BR.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "BRDatePickerView+BR.h"; path = "BRPickerView/DatePickerView/BRDatePickerView+BR.h"; sourceTree = ""; }; + A710DC9527A7E25C65D9858FFB332F12 /* ZLImagePreviewController.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ZLImagePreviewController.swift; path = Sources/General/ZLImagePreviewController.swift; sourceTree = ""; }; + A719C579EEAF3B6AB0CF5DC387825F49 /* Validation.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Validation.swift; path = Source/Validation.swift; sourceTree = ""; }; + A7AB231522091EB231A03DE283724036 /* icon_file_type_wmv.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = icon_file_type_wmv.png; path = Sources/Resources/FileType/icon_file_type_wmv.png; sourceTree = ""; }; + A802EBBFE0DB4719EE1AA04DA981AF33 /* DDBaseCollectionViewCell.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DDBaseCollectionViewCell.m; path = DDBasicControlsKit_Private/Classes/DDBaseCollectionViewCell/DDBaseCollectionViewCell.m; sourceTree = ""; }; + A81C05D1CBAACE09A623FFC12B2910B6 /* DDBaseButton.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DDBaseButton.m; path = DDBasicControlsKit_Private/Classes/DDBaseButton/DDBaseButton.m; sourceTree = ""; }; + A81CCD359428847EFB56456B6E16F49B /* UIWindow+DDCategory.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIWindow+DDCategory.m"; path = "DDCategoryKit_Private/Classes/UIWindow+DDCategory/UIWindow+DDCategory.m"; sourceTree = ""; }; + A83EFE5C3D04F06142F598E39C9F0272 /* BRPickerViewMacro.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = BRPickerViewMacro.h; path = BRPickerView/Base/BRPickerViewMacro.h; sourceTree = ""; }; + A8405D993F2FBB7314733B9735BEFB8F /* RxRelay-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RxRelay-dummy.m"; sourceTree = ""; }; + A84D8485316765715F9AABFAF1C9E5B7 /* icon_file_type_aac.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = icon_file_type_aac.png; path = Sources/Resources/FileType/icon_file_type_aac.png; sourceTree = ""; }; + A854D0C022958A9BCE80F55806A9B1DC /* AMapNaviHUDView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AMapNaviHUDView.h; path = AMapNaviKit.framework/Headers/AMapNaviHUDView.h; sourceTree = ""; }; + A864138960B613848C67B4978291F398 /* EKButtonView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = EKButtonView.swift; path = Source/MessageViews/MessagesUtils/EKButtonView.swift; sourceTree = ""; }; + A869F5A7552A1A70A3A46A102651F29A /* AMapURLSearch.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AMapURLSearch.h; path = AMapFoundationKit.framework/Headers/AMapURLSearch.h; sourceTree = ""; }; + A892C98B23F76A782A835779016E9B80 /* UIViewController+ZLPhotoBrowser.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "UIViewController+ZLPhotoBrowser.swift"; path = "Sources/Extensions/UIViewController+ZLPhotoBrowser.swift"; sourceTree = ""; }; + A89DDBB3083503F60CC9197F4F640AEA /* icon_file_type_php.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = icon_file_type_php.png; path = Sources/Resources/FileType/icon_file_type_php.png; sourceTree = ""; }; A8E950A16D00F649C54FFB30F81D7842 /* IQKeyboardManagerSwift */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = IQKeyboardManagerSwift; path = libIQKeyboardManagerSwift.a; sourceTree = BUILT_PRODUCTS_DIR; }; - A8FFE3C0DDF8AB2C8631350FFC57111D /* DDMAMapKit_Private-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "DDMAMapKit_Private-dummy.m"; sourceTree = ""; }; - A90288493CD927DDF22644AE796BEC83 /* InvocableType.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = InvocableType.swift; path = RxSwift/Schedulers/Internal/InvocableType.swift; sourceTree = ""; }; + A8F377837B80FD1BAD30AAD44F1DE913 /* Concat.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Concat.swift; path = RxSwift/Observables/Concat.swift; sourceTree = ""; }; A9132D6AA90D7BC2B6C7A08B065F87A9 /* DDToastKit_Private */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = DDToastKit_Private; path = libDDToastKit_Private.a; sourceTree = BUILT_PRODUCTS_DIR; }; - A92173A08D28119202CC77B5E01C0DE7 /* ConstraintItem.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ConstraintItem.swift; path = Sources/ConstraintItem.swift; sourceTree = ""; }; - A9D61F8A1376E5AFF1C3CC009C709A46 /* ZFPlayerControlView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = ZFPlayerControlView.m; path = DDZFPlayerKit_Private/Classes/ControlView/ZFPlayerControlView.m; sourceTree = ""; }; - A9E5E970CEB2D6DBF1C61DAF85942140 /* NSMutableParagraphStyle+DDCategory.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSMutableParagraphStyle+DDCategory.m"; path = "DDCategoryKit_Private/Classes/NSAttributedString+DDCategory/NSMutableParagraphStyle+DDCategory.m"; sourceTree = ""; }; - A9ED3EA2EA880417B7FA8AC596E4DD9C /* SDAnimatedImageView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDAnimatedImageView.h; path = DDWebImageKit_Private/Classes/SDWebImage/Core/SDAnimatedImageView.h; sourceTree = ""; }; - A9FB2A22CF5BD1874EF39F8331BCCE40 /* Zip+Collection.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Zip+Collection.swift"; path = "RxSwift/Observables/Zip+Collection.swift"; sourceTree = ""; }; + A92289E6A48CA8ED893E7B2E62901FC1 /* IQToolbar.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = IQToolbar.swift; path = IQKeyboardManagerSwift/IQToolbar/IQToolbar.swift; sourceTree = ""; }; + A92CA5C57E8F87FE0C745339B726BE1D /* icon_file_type_gif@3x.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = "icon_file_type_gif@3x.png"; path = "Sources/Resources/FileType/icon_file_type_gif@3x.png"; sourceTree = ""; }; + A9605F6FE838A3D68AE45333BE7380B6 /* icon_file_type_sql@3x.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = "icon_file_type_sql@3x.png"; path = "Sources/Resources/FileType/icon_file_type_sql@3x.png"; sourceTree = ""; }; + A9D2DC272228FD493641D920067E68DD /* icon_file_type_dll@3x.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = "icon_file_type_dll@3x.png"; path = "Sources/Resources/FileType/icon_file_type_dll@3x.png"; sourceTree = ""; }; + A9F2F3261724B3F01C84AEBEE79B3A5C /* _ObjcLog.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = _ObjcLog.m; path = Sources/Logs/_ObjcLog.m; sourceTree = ""; }; AA0A65EC7B037CEBA8B5D406D2D4DEA7 /* Pods-OrderScheduling.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-OrderScheduling.debug.xcconfig"; sourceTree = ""; }; - AA16A8DB14B3534A0EA8B96E2D47BA90 /* icon_file_type_mpg@2x.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = "icon_file_type_mpg@2x.png"; path = "Sources/Resources/FileType/icon_file_type_mpg@2x.png"; sourceTree = ""; }; - AA9A9B8E1E9CB6B0E11DD5E8543E1438 /* EntryAppearanceDescriptor.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = EntryAppearanceDescriptor.swift; path = Source/MessageViews/MessagesUtils/EntryAppearanceDescriptor.swift; sourceTree = ""; }; - AAA8AB026F949934E3E49CEF0C34FFB7 /* EKAttributes+BackgroundStyle.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "EKAttributes+BackgroundStyle.swift"; path = "Source/Model/EntryAttributes/EKAttributes+BackgroundStyle.swift"; sourceTree = ""; }; - AB340FBF16E950BB63961E93B19A69B3 /* icon_file_type_aac@2x.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = "icon_file_type_aac@2x.png"; path = "Sources/Resources/FileType/icon_file_type_aac@2x.png"; sourceTree = ""; }; - AB423F201EFDE4212173DC2D2ADE00C3 /* DDBaseTableView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DDBaseTableView.m; path = DDBasicControlsKit_Private/Classes/DDBaseTableView/DDBaseTableView.m; sourceTree = ""; }; - AB572BD743186A40A21A446CF8F5182A /* UINavigationItem+DDCategory.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UINavigationItem+DDCategory.m"; path = "DDCategoryKit_Private/Classes/UINavigationItem+DDCategory/UINavigationItem+DDCategory.m"; sourceTree = ""; }; - AB63438B30169A0620F90A6C533EAD65 /* Bag+Rx.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Bag+Rx.swift"; path = "RxSwift/Extensions/Bag+Rx.swift"; sourceTree = ""; }; - ABA313177CD8608DABD75954FF2C2892 /* Concurrency.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Concurrency.swift; path = Source/Concurrency.swift; sourceTree = ""; }; - ABBD483A481D42906399A9411D786FBB /* ZLEditVideoViewController.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ZLEditVideoViewController.swift; path = Sources/Edit/ZLEditVideoViewController.swift; sourceTree = ""; }; - ABFB7361AA46167688BEEAED04D98165 /* JXCategoryViewAnimator.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = JXCategoryViewAnimator.m; path = Sources/Common/JXCategoryViewAnimator.m; sourceTree = ""; }; - AC272ADD01FE4B3D18880B8F07C02100 /* ImageBinder.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ImageBinder.swift; path = Sources/SwiftUI/ImageBinder.swift; sourceTree = ""; }; - AC27999823332C7DE3136AD43CE4056B /* SnapKit.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = SnapKit.release.xcconfig; sourceTree = ""; }; - AC4E32DDFE1103DCF2FBABE6B502F4BF /* PriorityQueue.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = PriorityQueue.swift; path = Platform/DataStructures/PriorityQueue.swift; sourceTree = ""; }; - AC6D6F2A49015700905ADFF77A0C62AB /* Sink.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Sink.swift; path = RxSwift/Observables/Sink.swift; sourceTree = ""; }; - AC781B19D782C09CD7171D582C7C1299 /* ConstraintDSL.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ConstraintDSL.swift; path = Sources/ConstraintDSL.swift; sourceTree = ""; }; - AC804CCDAC995685AD30B4C033A17B03 /* _DirectoryContentsTableViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = _DirectoryContentsTableViewController.h; path = Sources/Sandbox/_DirectoryContentsTableViewController.h; sourceTree = ""; }; - ACAEE3CCE1F1E83D412084D417F28D9B /* RxPickerViewDelegateProxy.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RxPickerViewDelegateProxy.swift; path = RxCocoa/iOS/Proxies/RxPickerViewDelegateProxy.swift; sourceTree = ""; }; - ACBC7F9183DFA5448C2F5701326B3599 /* ZLPhotoPreviewSheet.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ZLPhotoPreviewSheet.swift; path = Sources/General/ZLPhotoPreviewSheet.swift; sourceTree = ""; }; - ACE68C38AEA2810555EB1E7F9540696B /* UIFont+DDCategory.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIFont+DDCategory.m"; path = "DDCategoryKit_Private/Classes/UIFont+DDCategory/UIFont+DDCategory.m"; sourceTree = ""; }; - ACEFD17CE16F673A2306C28DCBC9F51C /* MAGltfOverlay.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MAGltfOverlay.h; path = AMapNaviKit.framework/Headers/MAGltfOverlay.h; sourceTree = ""; }; - AD883A8F6D5AF9349D00095C085D6114 /* MJRefreshBackNormalFooter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MJRefreshBackNormalFooter.h; path = MJRefresh/Custom/Footer/Back/MJRefreshBackNormalFooter.h; sourceTree = ""; }; + AA0FCBAC9261DE18F37D4C9D683BFC0D /* MAMultiColoredPolylineRenderer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MAMultiColoredPolylineRenderer.h; path = AMapNaviKit.framework/Headers/MAMultiColoredPolylineRenderer.h; sourceTree = ""; }; + AA1A3E07AB1893E12AB107D28F0E5457 /* UIImage+DDCategory.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIImage+DDCategory.m"; path = "DDCategoryKit_Private/Classes/UIImage+DDCategory/UIImage+DDCategory.m"; sourceTree = ""; }; + AA26881CAFF333B4DB9DEDCF32AB3620 /* icon_file_type_mp3.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = icon_file_type_mp3.png; path = Sources/Resources/FileType/icon_file_type_mp3.png; sourceTree = ""; }; + AA2D60263D4263EC3C06FA76DB65A215 /* SubjectType.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SubjectType.swift; path = RxSwift/Subjects/SubjectType.swift; sourceTree = ""; }; + AA33DAC06090438E4DDBEC2735580BCF /* DDBaseTextField.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DDBaseTextField.h; path = DDBasicControlsKit_Private/Classes/DDBaseTextField/DDBaseTextField.h; sourceTree = ""; }; + AA3ADA869CFB249CDE525652B8D8338D /* ConstraintView+Extensions.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "ConstraintView+Extensions.swift"; path = "Sources/ConstraintView+Extensions.swift"; sourceTree = ""; }; + AA7457E9D95BB71D2AE7D1079D342213 /* Merge.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Merge.swift; path = RxSwift/Observables/Merge.swift; sourceTree = ""; }; + AA94499BC907B49A79BD3CC4A18699FE /* OperationQueue+Alamofire.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "OperationQueue+Alamofire.swift"; path = "Source/OperationQueue+Alamofire.swift"; sourceTree = ""; }; + AABA9A29FA41942EA4E8B69A3FBFDF24 /* ZLEditImageViewController.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ZLEditImageViewController.swift; path = Sources/Edit/ZLEditImageViewController.swift; sourceTree = ""; }; + AABD2A1F07E566F283854A6FE1C725C1 /* ObserveOn.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ObserveOn.swift; path = RxSwift/Observables/ObserveOn.swift; sourceTree = ""; }; + AAE566B2EB20140A8CC32CA31FF63844 /* AMapNaviTrafficBarView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AMapNaviTrafficBarView.h; path = AMapNaviKit.framework/Headers/AMapNaviTrafficBarView.h; sourceTree = ""; }; + AB09C39369D91A6A5DE6F11CFF58FB1B /* JXCategoryNumberView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = JXCategoryNumberView.m; path = Sources/Number/JXCategoryNumberView.m; sourceTree = ""; }; + AB0D7793FD5B01DCB6199C9FC8AE4B8F /* BRPickerStyle.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = BRPickerStyle.m; path = BRPickerView/Base/BRPickerStyle.m; sourceTree = ""; }; + AB18DE6F590D4E87E3E2741ECCE67B8A /* icon_file_type_dmg@2x.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = "icon_file_type_dmg@2x.png"; path = "Sources/Resources/FileType/icon_file_type_dmg@2x.png"; sourceTree = ""; }; + AB678DF70BF35D7970C6C6DE1ABE3134 /* ImagePrefetcher.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ImagePrefetcher.swift; path = Sources/Networking/ImagePrefetcher.swift; sourceTree = ""; }; + AB7A2A40BCCEBBDDE983AB9E526C7939 /* RxRelay-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RxRelay-prefix.pch"; sourceTree = ""; }; + AB814AA3CD8638D50279B47769EAADE0 /* JXCategoryTitleVerticalZoomCellModel.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = JXCategoryTitleVerticalZoomCellModel.m; path = Sources/VerticalZoomTitle/JXCategoryTitleVerticalZoomCellModel.m; sourceTree = ""; }; + ABB0AE53048B226B2B5B0EBAE37614DE /* ConstraintDSL.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ConstraintDSL.swift; path = Sources/ConstraintDSL.swift; sourceTree = ""; }; + ABB45E791C7D00AD4C8D18CCD8AF201A /* EKAccessoryNoteMessageView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = EKAccessoryNoteMessageView.swift; path = Source/MessageViews/Notes/EKAccessoryNoteMessageView.swift; sourceTree = ""; }; + ABCE38FE49A0559C11D295016A9231CD /* CombineLatest+Collection.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "CombineLatest+Collection.swift"; path = "RxSwift/Observables/CombineLatest+Collection.swift"; sourceTree = ""; }; + AC04EA5E38C98657B66C1EFAF078A8A5 /* icon_file_type_jar.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = icon_file_type_jar.png; path = Sources/Resources/FileType/icon_file_type_jar.png; sourceTree = ""; }; + AC28B658A1C7D00FC1C990A9B27A725A /* icon_file_type_gif.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = icon_file_type_gif.png; path = Sources/Resources/FileType/icon_file_type_gif.png; sourceTree = ""; }; + AC2AFF5B1F5931BBB145A36A7230F595 /* Deferred.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Deferred.swift; path = RxSwift/Observables/Deferred.swift; sourceTree = ""; }; + AC2B6F70537955B1FC02DBFE8A7D5042 /* MJRefreshStateTrailer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MJRefreshStateTrailer.h; path = MJRefresh/Custom/Trailer/MJRefreshStateTrailer.h; sourceTree = ""; }; + AC5AECFF0BF43C63B30CA25DFB4E2EA5 /* icon_file_type_svg@2x.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = "icon_file_type_svg@2x.png"; path = "Sources/Resources/FileType/icon_file_type_svg@2x.png"; sourceTree = ""; }; + AC783BAEF780AD25A29F78A85BEB0563 /* ConstraintOffsetTarget.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ConstraintOffsetTarget.swift; path = Sources/ConstraintOffsetTarget.swift; sourceTree = ""; }; + AC924CF8BAE0BC9DBACD42D4305CFFDF /* Toast.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Toast.swift; path = DDToastKit_Private/Classes/Toast.swift; sourceTree = ""; }; + AD0E138C52B3C25BB2BADD0A94A3E168 /* ObservableConvertibleType+SharedSequence.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "ObservableConvertibleType+SharedSequence.swift"; path = "RxCocoa/Traits/SharedSequence/ObservableConvertibleType+SharedSequence.swift"; sourceTree = ""; }; + AD57A11EB2B76C8A3741B5718E7EC2B5 /* IQKeyboardManager+UITextFieldViewNotification.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "IQKeyboardManager+UITextFieldViewNotification.swift"; path = "IQKeyboardManagerSwift/IQKeyboardManager+UITextFieldViewNotification.swift"; sourceTree = ""; }; + AD877BC374814EF28FC6FFD0ABA87357 /* KingfisherManager.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = KingfisherManager.swift; path = Sources/General/KingfisherManager.swift; sourceTree = ""; }; AD8FF1E8B0C9C12F070D79A5EC3BEE59 /* DDWebImageKit_Private */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = DDWebImageKit_Private; path = libDDWebImageKit_Private.a; sourceTree = BUILT_PRODUCTS_DIR; }; - ADBBCC8A1A5888AE74416344D8AF2A47 /* MJRefreshAutoFooter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MJRefreshAutoFooter.m; path = MJRefresh/Base/MJRefreshAutoFooter.m; sourceTree = ""; }; - ADBE6DB8A3F4A5C335090B04CD7BED49 /* SDImageCachesManagerOperation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageCachesManagerOperation.h; path = DDWebImageKit_Private/Classes/SDWebImage/Private/SDImageCachesManagerOperation.h; sourceTree = ""; }; - ADD2BFA76F0B8FEC45C1908583E1A7C0 /* CocoaDebug-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "CocoaDebug-dummy.m"; sourceTree = ""; }; - AE31298B07AC3F7D636B02C1B2EDEBBE /* IQKeyboardManagerSwift-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "IQKeyboardManagerSwift-dummy.m"; sourceTree = ""; }; - AE367F4AD2ACAD5F105CB114EDFC1257 /* NetworkCell.xib */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = file.xib; name = NetworkCell.xib; path = Sources/Resources/NetworkCell.xib; sourceTree = ""; }; - AE6C4A0A5AD91D5611F8B5AF608A8B86 /* NSControl+Rx.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "NSControl+Rx.swift"; path = "RxCocoa/macOS/NSControl+Rx.swift"; sourceTree = ""; }; - AE873D85A0C4BBF58400280E4701468B /* RxTableViewReactiveArrayDataSource.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RxTableViewReactiveArrayDataSource.swift; path = RxCocoa/iOS/DataSources/RxTableViewReactiveArrayDataSource.swift; sourceTree = ""; }; - AE9C1E086B2D42598E8B8BE83662A21F /* IQBarButtonItem.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = IQBarButtonItem.swift; path = IQKeyboardManagerSwift/IQToolbar/IQBarButtonItem.swift; sourceTree = ""; }; - AEA95C07E227701A1245BA9312FB8547 /* SDWebImageManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageManager.m; path = DDWebImageKit_Private/Classes/SDWebImage/Core/SDWebImageManager.m; sourceTree = ""; }; - AED6A87E2B215FA24D3A10AE3CDB5A66 /* IQKeyboardManager+Toolbar.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "IQKeyboardManager+Toolbar.swift"; path = "IQKeyboardManagerSwift/IQKeyboardManager+Toolbar.swift"; sourceTree = ""; }; - AF1EC1F4483B4F2716BA187436393593 /* MAPolygonRenderer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MAPolygonRenderer.h; path = AMapNaviKit.framework/Headers/MAPolygonRenderer.h; sourceTree = ""; }; - AF4B4F919674B1233E1DB10AFD648E75 /* Decode.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Decode.swift; path = RxSwift/Observables/Decode.swift; sourceTree = ""; }; - AF4F70AC21B67CD9571B7F02A609249A /* NSObject+DDCategory.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSObject+DDCategory.m"; path = "DDCategoryKit_Private/Classes/NSObject+DDCategory/NSObject+DDCategory.m"; sourceTree = ""; }; - AF5DADD331F2AC5EC5ADD98DB4CD102E /* ServerTrustEvaluation.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ServerTrustEvaluation.swift; path = Source/ServerTrustEvaluation.swift; sourceTree = ""; }; - AF8D59BB57212F679C7CA8024B675491 /* MAOfflineCity.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MAOfflineCity.h; path = AMapNaviKit.framework/Headers/MAOfflineCity.h; sourceTree = ""; }; - AF9482B91123894779E2F657F1B38EC1 /* BooleanDisposable.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = BooleanDisposable.swift; path = RxSwift/Disposables/BooleanDisposable.swift; sourceTree = ""; }; - AFB14CA83302F2818FDEE97F89A6D466 /* SwiftEntryKit.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = SwiftEntryKit.debug.xcconfig; sourceTree = ""; }; - AFC5BF742A0E2C77A0FEF8E0845B2333 /* RxSearchBarDelegateProxy.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RxSearchBarDelegateProxy.swift; path = RxCocoa/iOS/Proxies/RxSearchBarDelegateProxy.swift; sourceTree = ""; }; - AFFA01A502D57FF43D56073BBFE28AEA /* DDAutoUIKit_Private.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = DDAutoUIKit_Private.release.xcconfig; sourceTree = ""; }; - B048B9708BCA8652CDAA20A04D29A498 /* ZLPhotoPreviewCell.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ZLPhotoPreviewCell.swift; path = Sources/General/ZLPhotoPreviewCell.swift; sourceTree = ""; }; - B07A34F7872A95C1987655A960CDFBF7 /* ZFPortraitControlView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ZFPortraitControlView.h; path = DDZFPlayerKit_Private/Classes/ControlView/ZFPortraitControlView.h; sourceTree = ""; }; - B084F187A62AC59B8CF6FDBADD60334B /* _CrashModel.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = _CrashModel.swift; path = Sources/App/_CrashModel.swift; sourceTree = ""; }; - B0BF94913533614DBDBB898956A3048F /* SDImageLoadersManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageLoadersManager.m; path = DDWebImageKit_Private/Classes/SDWebImage/Core/SDImageLoadersManager.m; sourceTree = ""; }; - B0CFBD9C9CACE16145622E9FB2197FDA /* RxTabBarDelegateProxy.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RxTabBarDelegateProxy.swift; path = RxCocoa/iOS/Proxies/RxTabBarDelegateProxy.swift; sourceTree = ""; }; - B0E16B683C26B00E609E2B95CD392691 /* RxPickerViewDataSourceType.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RxPickerViewDataSourceType.swift; path = RxCocoa/iOS/Protocols/RxPickerViewDataSourceType.swift; sourceTree = ""; }; - B0EE285BF5505D90B0977CA02F8A0226 /* icon_file_type_php@2x.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = "icon_file_type_php@2x.png"; path = "Sources/Resources/FileType/icon_file_type_php@2x.png"; sourceTree = ""; }; - B107510587F9AC74E807346409C99813 /* JXCategoryView.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = JXCategoryView.debug.xcconfig; sourceTree = ""; }; - B1412F6F593B15CBD64B3A687268DA61 /* JXCategoryTitleCellModel.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = JXCategoryTitleCellModel.m; path = Sources/Title/JXCategoryTitleCellModel.m; sourceTree = ""; }; + ADAD4D1DE58743CB22AC7E7400ECA9DD /* UIColor+SDHexString.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIColor+SDHexString.h"; path = "DDWebImageKit_Private/Classes/SDWebImage/Private/UIColor+SDHexString.h"; sourceTree = ""; }; + ADB2F963D72DFE1BB8E601E46EABF42A /* icon_file_type_gif@2x.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = "icon_file_type_gif@2x.png"; path = "Sources/Resources/FileType/icon_file_type_gif@2x.png"; sourceTree = ""; }; + ADCB8C90F606DA9FA386F2B4EB1215A7 /* NSAttributedString+DDCategory.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSAttributedString+DDCategory.m"; path = "DDCategoryKit_Private/Classes/NSAttributedString+DDCategory/NSAttributedString+DDCategory.m"; sourceTree = ""; }; + ADD26851450A69400F1F4C0DE67E1E71 /* UIView+QLContentWrap.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "UIView+QLContentWrap.swift"; path = "Source/Extensions/QuickLayout/UIView+QLContentWrap.swift"; sourceTree = ""; }; + AE3D545C092474C206E7349491FAFB49 /* JXCategoryView.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = JXCategoryView.modulemap; sourceTree = ""; }; + AE4ADE608A6DD093F0D179EC9E3F5E4C /* DDBaseView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DDBaseView.m; path = DDBasicControlsKit_Private/Classes/DDBaseView/DDBaseView.m; sourceTree = ""; }; + AE6BA4D7D7E9A9A3D637F00B05FFF8B0 /* _FilePreviewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = _FilePreviewController.h; path = Sources/Sandbox/_FilePreviewController.h; sourceTree = ""; }; + AE8679EE07CCD8439DD69525741784C8 /* UITextView+DDCategory.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UITextView+DDCategory.m"; path = "DDCategoryKit_Private/Classes/UITextView+DDCategory/UITextView+DDCategory.m"; sourceTree = ""; }; + AE8ACAEDAAA681B531C75C1E85BA5098 /* DDMAMapView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DDMAMapView.h; path = DDMAMapKit_Private/Classes/DDMAMap/MapView/DDMAMapView.h; sourceTree = ""; }; + AE9A920F8FA6AF9DD504682927FEB351 /* ExtensionHelpers.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ExtensionHelpers.swift; path = Sources/Utility/ExtensionHelpers.swift; sourceTree = ""; }; + AE9ABD0A4A2963EC22A26ACBF66D4682 /* MAGeodesicPolyline.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MAGeodesicPolyline.h; path = AMapNaviKit.framework/Headers/MAGeodesicPolyline.h; sourceTree = ""; }; + AED3CD08A920E0938205A4FDC9065D4A /* AVAssetImageDataProvider.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AVAssetImageDataProvider.swift; path = Sources/General/ImageSource/AVAssetImageDataProvider.swift; sourceTree = ""; }; + AF00DB45CF5FB56573C940FDCC1E6811 /* WindowHelper.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = WindowHelper.swift; path = Sources/Window/WindowHelper.swift; sourceTree = ""; }; + AF0609FBE231EEF7030E0A9346FF3F5D /* NSBundle+DDCategory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSBundle+DDCategory.h"; path = "DDCategoryKit_Private/Classes/NSBundle+DDCategory/NSBundle+DDCategory.h"; sourceTree = ""; }; + AF7DB80F0F91292FF1D72C9B399844B2 /* icon_file_type_wmv@3x.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = "icon_file_type_wmv@3x.png"; path = "Sources/Resources/FileType/icon_file_type_wmv@3x.png"; sourceTree = ""; }; + AFA0A99F414CC46BE64B387C7E2BAD07 /* icon_file_type_xls.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = icon_file_type_xls.png; path = Sources/Resources/FileType/icon_file_type_xls.png; sourceTree = ""; }; + B00D1D89AE173CE03DA1CE254A92485F /* UIFont+DDCategory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIFont+DDCategory.h"; path = "DDCategoryKit_Private/Classes/UIFont+DDCategory/UIFont+DDCategory.h"; sourceTree = ""; }; + B011F598DAF5344014D1AE0AB2B0B81D /* MJRefreshBackStateFooter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MJRefreshBackStateFooter.m; path = MJRefresh/Custom/Footer/Back/MJRefreshBackStateFooter.m; sourceTree = ""; }; + B0200EBEA25989F48C2BF117BFBD2BC8 /* MAPolygonRenderer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MAPolygonRenderer.h; path = AMapNaviKit.framework/Headers/MAPolygonRenderer.h; sourceTree = ""; }; + B02D4DCB02547219F3F0763849A36E9E /* SDWebImageDownloader.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageDownloader.m; path = DDWebImageKit_Private/Classes/SDWebImage/Core/SDWebImageDownloader.m; sourceTree = ""; }; + B0C20731A624F740F63267BC8FA87F85 /* VirtualTimeConverterType.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = VirtualTimeConverterType.swift; path = RxSwift/Schedulers/VirtualTimeConverterType.swift; sourceTree = ""; }; + B0D8E4690467E9E0AD0E58B9ECCDF709 /* ConstraintLayoutGuideDSL.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ConstraintLayoutGuideDSL.swift; path = Sources/ConstraintLayoutGuideDSL.swift; sourceTree = ""; }; B142733617333B62FC87CCFF414B44D2 /* Pods-OrderScheduling.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = "Pods-OrderScheduling.modulemap"; sourceTree = ""; }; - B1903B2035DE82103AE99F7E1CF84502 /* ZFLoadingView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = ZFLoadingView.m; path = DDZFPlayerKit_Private/Classes/ControlView/ZFLoadingView.m; sourceTree = ""; }; - B1D1F3D885BBC55F4F0BAE427568026A /* InvocableScheduledItem.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = InvocableScheduledItem.swift; path = RxSwift/Schedulers/Internal/InvocableScheduledItem.swift; sourceTree = ""; }; - B1D95F26F7C8B50C757285DA4453386B /* DDNetworkingOfAlamofireKit_Private-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "DDNetworkingOfAlamofireKit_Private-umbrella.h"; sourceTree = ""; }; - B1EAD7E29559CAA9D8ED7801C93D76D6 /* icon_file_type_aac.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = icon_file_type_aac.png; path = Sources/Resources/FileType/icon_file_type_aac.png; sourceTree = ""; }; - B22DD25709192E2D98120B14CB5B89DF /* Merge.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Merge.swift; path = RxSwift/Observables/Merge.swift; sourceTree = ""; }; - B236E181BDA27AAFC45C223C37833347 /* NSSlider+Rx.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "NSSlider+Rx.swift"; path = "RxCocoa/macOS/NSSlider+Rx.swift"; sourceTree = ""; }; - B239C0BEEED334FD0EBF2878B304A384 /* icon_file_type_folder_empty@3x.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = "icon_file_type_folder_empty@3x.png"; path = "Sources/Resources/FileType/icon_file_type_folder_empty@3x.png"; sourceTree = ""; }; - B24C91E0D7463BA582DF585EB8A940CA /* BRPickerView.bundle */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = "wrapper.plug-in"; name = BRPickerView.bundle; path = BRPickerView/Base/BRPickerView.bundle; sourceTree = ""; }; - B24EEBDE52C15662D3E29265EEBF76DA /* icon_file_type_svg@2x.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = "icon_file_type_svg@2x.png"; path = "Sources/Resources/FileType/icon_file_type_svg@2x.png"; sourceTree = ""; }; - B26A67F86E720C3D3ACD1516644FEDCC /* BRPickerView.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = BRPickerView.modulemap; sourceTree = ""; }; - B27102A45E02D9AB5CC736B94D45141B /* Kingfisher.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = Kingfisher.debug.xcconfig; sourceTree = ""; }; - B285981AF82CE9F71F33570BFF558D99 /* DDBaseViewController.xcassets */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = folder.assetcatalog; name = DDBaseViewController.xcassets; path = DDBasicControlsKit_Private/Assets/DDBaseViewController.xcassets; sourceTree = ""; }; - B2C23A2A3322F1C90E9840F46D83E2F2 /* icon_file_type_ipa@3x.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = "icon_file_type_ipa@3x.png"; path = "Sources/Resources/FileType/icon_file_type_ipa@3x.png"; sourceTree = ""; }; - B2D49185866DCDC4539E55765CE43976 /* icon_file_type_jar.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = icon_file_type_jar.png; path = Sources/Resources/FileType/icon_file_type_jar.png; sourceTree = ""; }; - B2EF4A24EFCF3F1B1060F1907F43FA0A /* EKRatingMessageView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = EKRatingMessageView.swift; path = Source/MessageViews/EKRatingMessageView.swift; sourceTree = ""; }; - B2FD130A08897D167F3277A7F0EDC8A5 /* JXCategoryIndicatorDotLineView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = JXCategoryIndicatorDotLineView.m; path = Sources/Indicator/IndicatorViews/JXCategoryIndicatorDotLineView.m; sourceTree = ""; }; - B3339614D486179B60CFE654F79B5A1F /* ConstraintMakerFinalizable.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ConstraintMakerFinalizable.swift; path = Sources/ConstraintMakerFinalizable.swift; sourceTree = ""; }; - B3400BE74DC94E3466657411D605AD3B /* icon_file_type_bmp.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = icon_file_type_bmp.png; path = Sources/Resources/FileType/icon_file_type_bmp.png; sourceTree = ""; }; - B348160C7E9EB1DCBA33905AF74E57A7 /* KFAnimatedImage.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = KFAnimatedImage.swift; path = Sources/SwiftUI/KFAnimatedImage.swift; sourceTree = ""; }; - B35443E30DB12838F64E3E4316A4FAB9 /* UINavigationController+DDCategory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UINavigationController+DDCategory.h"; path = "DDCategoryKit_Private/Classes/UINavigationController+DDCategory/UINavigationController+DDCategory.h"; sourceTree = ""; }; - B38EB51450EACAE0B11A83FFD19E3EBC /* ZFPresentTransition.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ZFPresentTransition.h; path = DDZFPlayerKit_Private/Classes/Core/ZFPresentTransition.h; sourceTree = ""; }; + B1688599AD0A21C13B9A963E91AA6AEB /* ZFPersentInteractiveTransition.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = ZFPersentInteractiveTransition.m; path = DDZFPlayerKit_Private/Classes/Core/ZFPersentInteractiveTransition.m; sourceTree = ""; }; + B173E009314FFA4298335B16A5B92DAB /* icon_file_type_torrent@3x.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = "icon_file_type_torrent@3x.png"; path = "Sources/Resources/FileType/icon_file_type_torrent@3x.png"; sourceTree = ""; }; + B1A90A6C06187882A5DD32BF62420DEE /* SDWebImageCompat.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageCompat.h; path = DDWebImageKit_Private/Classes/SDWebImage/Core/SDWebImageCompat.h; sourceTree = ""; }; + B1AB19BB6BCF3CDF844264D6259694C1 /* EKAttributes+WindowLevel.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "EKAttributes+WindowLevel.swift"; path = "Source/Model/EntryAttributes/EKAttributes+WindowLevel.swift"; sourceTree = ""; }; + B1E17C13B228D3BDF62DAC203000AF07 /* MJRefreshAutoFooter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MJRefreshAutoFooter.h; path = MJRefresh/Base/MJRefreshAutoFooter.h; sourceTree = ""; }; + B2189D7C470A9F19544369A0CD0F933A /* SharedSequence+Operators.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "SharedSequence+Operators.swift"; path = "RxCocoa/Traits/SharedSequence/SharedSequence+Operators.swift"; sourceTree = ""; }; + B22DCD11FAD5D73CDD802C4443872B0C /* DDNetworkingOfAlamofireKit_Private-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "DDNetworkingOfAlamofireKit_Private-dummy.m"; sourceTree = ""; }; + B23CD25A3C1E92ACD523D4D47B792F19 /* AMapNaviDriveView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AMapNaviDriveView.h; path = AMapNaviKit.framework/Headers/AMapNaviDriveView.h; sourceTree = ""; }; + B2551C232FF781EC5A99629799F96B3D /* SDImageAWebPCoder.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageAWebPCoder.m; path = DDWebImageKit_Private/Classes/SDWebImage/Core/SDImageAWebPCoder.m; sourceTree = ""; }; + B25B5B126F70B5DD27EFDCE589F966ED /* AMapNaviHeaderHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AMapNaviHeaderHandler.h; path = AMapNaviKit.framework/Headers/AMapNaviHeaderHandler.h; sourceTree = ""; }; + B28544516F9DCC5D5847C47B89F78FA2 /* ESTabBarController-swift.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "ESTabBarController-swift.release.xcconfig"; sourceTree = ""; }; + B2BE171F72D6DB076BBFF75B97DFAB18 /* AMapTrack-NO-IDFA.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "AMapTrack-NO-IDFA.debug.xcconfig"; sourceTree = ""; }; + B2C1671B93D950380268814B7807A1DE /* ZLPhotoBrowser.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = ZLPhotoBrowser.debug.xcconfig; sourceTree = ""; }; + B2CC50C4D50030EEF25A4B059F6D1424 /* DDBaseTableView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DDBaseTableView.m; path = DDBasicControlsKit_Private/Classes/DDBaseTableView/DDBaseTableView.m; sourceTree = ""; }; + B2D085BA174C9A8EBB23BFBE828B25C2 /* ESTabBarItem.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ESTabBarItem.swift; path = Sources/ESTabBarItem.swift; sourceTree = ""; }; + B2E7E72E88CC2B6EEB746997AA5CAB93 /* RxPickerViewDataSourceType.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RxPickerViewDataSourceType.swift; path = RxCocoa/iOS/Protocols/RxPickerViewDataSourceType.swift; sourceTree = ""; }; + B32541AACE47269CB354614143DF7B6A /* First.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = First.swift; path = RxSwift/Observables/First.swift; sourceTree = ""; }; + B340B765E4ED3A42D01B7117C9996B7B /* RxRelay.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RxRelay.debug.xcconfig; sourceTree = ""; }; B3B0956B7EBF66A8FD677D586C9C387A /* Pods-OrderScheduling */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "Pods-OrderScheduling"; path = "libPods-OrderScheduling.a"; sourceTree = BUILT_PRODUCTS_DIR; }; - B3B800654DB5322B0AB621BC0738B576 /* DDFontKit_Private-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "DDFontKit_Private-umbrella.h"; sourceTree = ""; }; - B3F103A7BACEF4849CBE12C4BE0C58AA /* MJRefreshNormalTrailer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MJRefreshNormalTrailer.h; path = MJRefresh/Custom/Trailer/MJRefreshNormalTrailer.h; sourceTree = ""; }; - B40CBBABFD337F6CDB7D39361CB54FE8 /* SDImageCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageCache.h; path = DDWebImageKit_Private/Classes/SDWebImage/Core/SDImageCache.h; sourceTree = ""; }; - B4381F174E39DA473A30D84DF61C953E /* BRAddressPickerView.bundle */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = "wrapper.plug-in"; name = BRAddressPickerView.bundle; path = BRPickerView/AddressPickerView/BRAddressPickerView.bundle; sourceTree = ""; }; - B43F63A10529EA3CB9DE998DBD85F809 /* UIImageView+HighlightedWebCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImageView+HighlightedWebCache.h"; path = "DDWebImageKit_Private/Classes/SDWebImage/Core/UIImageView+HighlightedWebCache.h"; sourceTree = ""; }; - B468C6887020692A16B239E034831DA7 /* ZLPhotoBrowser.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = ZLPhotoBrowser.debug.xcconfig; sourceTree = ""; }; - B471780A4D8D205D85C936A91F89E8F2 /* AMapUtility.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AMapUtility.h; path = AMapFoundationKit.framework/Headers/AMapUtility.h; sourceTree = ""; }; - B48D01FFB846D90A68EAC593F1A99E11 /* RxPickerViewAdapter.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RxPickerViewAdapter.swift; path = RxCocoa/iOS/DataSources/RxPickerViewAdapter.swift; sourceTree = ""; }; - B490214B5352D005A662211316EFC91E /* icon_file_type_jar@3x.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = "icon_file_type_jar@3x.png"; path = "Sources/Resources/FileType/icon_file_type_jar@3x.png"; sourceTree = ""; }; - B4921C14120CC7DAB5311D82ACB530AF /* RxMutableBox.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RxMutableBox.swift; path = RxSwift/RxMutableBox.swift; sourceTree = ""; }; - B4B08E8DF539783850F0B381F29A3C1E /* UIView+Responder.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "UIView+Responder.swift"; path = "Source/Utils/UIView+Responder.swift"; sourceTree = ""; }; - B4EE14442D31863552DFE959D66A540D /* ESTabBarController-swift.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "ESTabBarController-swift.debug.xcconfig"; sourceTree = ""; }; - B4F6D1386839E9F612A078CC77B2D014 /* Enumerated.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Enumerated.swift; path = RxSwift/Observables/Enumerated.swift; sourceTree = ""; }; - B519E65D2E35BE091C034AC950FB1AAD /* IQKeyboardManager.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = IQKeyboardManager.swift; path = IQKeyboardManagerSwift/IQKeyboardManager.swift; sourceTree = ""; }; - B58B6795B2837386D36D01C304554ADB /* ZFIJKPlayerManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = ZFIJKPlayerManager.m; path = DDZFPlayerKit_Private/Classes/ijkplayer/ZFIJKPlayerManager.m; sourceTree = ""; }; - B5DB6D7F256E044148540B0ACCEAECE5 /* IQKeyboardManager+UIKeyboardNotification.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "IQKeyboardManager+UIKeyboardNotification.swift"; path = "IQKeyboardManagerSwift/IQKeyboardManager+UIKeyboardNotification.swift"; sourceTree = ""; }; - B602D0318BAC325280725C4C565B7531 /* DDBaseImage.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DDBaseImage.m; path = DDBasicControlsKit_Private/Classes/DDBaseImage/DDBaseImage.m; sourceTree = ""; }; - B617F95E4B57E8FA3C4B8BAF47A72D2D /* MBProgressHUD.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MBProgressHUD.m; path = DDProgressHUDKit_Private/Classes/MBProgressHUD.m; sourceTree = ""; }; - B622783303B6569C79FAC814D57479BC /* icon_file_type_torrent.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = icon_file_type_torrent.png; path = Sources/Resources/FileType/icon_file_type_torrent.png; sourceTree = ""; }; - B632FCD857AEE129D9F155ED47A47C29 /* String+MD5.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "String+MD5.swift"; path = "Sources/Utility/String+MD5.swift"; sourceTree = ""; }; - B646E6D081BB83490007567156BE5B2A /* ObservableConvertibleType+Infallible.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "ObservableConvertibleType+Infallible.swift"; path = "RxSwift/Traits/Infallible/ObservableConvertibleType+Infallible.swift"; sourceTree = ""; }; - B6649AEB4438C4464D3D9CB6F2ED7EE7 /* DDFontKit_Private.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = DDFontKit_Private.debug.xcconfig; sourceTree = ""; }; - B69A41927523F48D6D1BC266F1699549 /* AMapTrackTrackObj.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AMapTrackTrackObj.h; path = AMapTrackKit.framework/Headers/AMapTrackTrackObj.h; sourceTree = ""; }; - B6AEFB9E177A6F8E48B40501F1FD2933 /* Storage.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Storage.swift; path = Sources/Cache/Storage.swift; sourceTree = ""; }; - B6CE48966C61C5A8AD4B5F9042E15249 /* SDImageGIFCoder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageGIFCoder.h; path = DDWebImageKit_Private/Classes/SDWebImage/Core/SDImageGIFCoder.h; sourceTree = ""; }; - B70DF59959D507CC6361A626164BD10E /* App.storyboard */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = file.storyboard; name = App.storyboard; path = Sources/Resources/App.storyboard; sourceTree = ""; }; - B7686CA241C9CA45D851BC5BC86C822F /* EKWindow.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = EKWindow.swift; path = Source/Infra/EKWindow.swift; sourceTree = ""; }; - B7918D7DD907A7CD12E51714F3CD6F0B /* Map.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Map.swift; path = RxSwift/Observables/Map.swift; sourceTree = ""; }; - B7B8AC8FD05227A7706C9924589F65E6 /* JXCategoryIndicatorComponentView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JXCategoryIndicatorComponentView.h; path = Sources/Indicator/IndicatorViews/JXCategoryIndicatorComponentView.h; sourceTree = ""; }; - B7F453C679BB1671C759F9EAA359A1F5 /* AMapSearchObj.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AMapSearchObj.h; path = AMapSearchKit.framework/Headers/AMapSearchObj.h; sourceTree = ""; }; - B8208FE762E54F92E006BF67287ECF3D /* RxTableViewDataSourceType.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RxTableViewDataSourceType.swift; path = RxCocoa/iOS/Protocols/RxTableViewDataSourceType.swift; sourceTree = ""; }; - B84EA79558AF15630CEDB8E5B079700A /* icon_file_type_default@2x.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = "icon_file_type_default@2x.png"; path = "Sources/Resources/FileType/icon_file_type_default@2x.png"; sourceTree = ""; }; - B87E6D16475E3CF40F459AD7D4B0D41D /* UIImage+ZLPhotoBrowser.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "UIImage+ZLPhotoBrowser.swift"; path = "Sources/Extensions/UIImage+ZLPhotoBrowser.swift"; sourceTree = ""; }; - B8B7E10D6B83386C0B777697EC6173BD /* DDBaseTextField.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DDBaseTextField.h; path = DDBasicControlsKit_Private/Classes/DDBaseTextField/DDBaseTextField.h; sourceTree = ""; }; - B8BA924F13AD96A8433CBE6A05407435 /* AMapGeoFenceRegionObj.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AMapGeoFenceRegionObj.h; path = AMapLocationKit.framework/Headers/AMapGeoFenceRegionObj.h; sourceTree = ""; }; - B91F867EAC669E220BC2F9AB2D7DCB20 /* CocoaDebug+Extensions.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "CocoaDebug+Extensions.swift"; path = "Sources/Core/CocoaDebug+Extensions.swift"; sourceTree = ""; }; - B92C87D9AD30A68082CCB41AAEA5A11E /* AsSingle.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AsSingle.swift; path = RxSwift/Observables/AsSingle.swift; sourceTree = ""; }; - B92D6F52581635E93BB2AB789C2CA999 /* UIWindow+DDCategory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIWindow+DDCategory.h"; path = "DDCategoryKit_Private/Classes/UIWindow+DDCategory/UIWindow+DDCategory.h"; sourceTree = ""; }; - B965426384B8DEACB5528933E80EF232 /* RxRelay.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RxRelay.debug.xcconfig; sourceTree = ""; }; - B96A381DA1D2F1E0BCADC5D8766E4D4D /* RxCocoa.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RxCocoa.debug.xcconfig; sourceTree = ""; }; - B996B1034A6551A478C2D0DD2DAB7709 /* DDNetworkingOfAlamofireKit_Private-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "DDNetworkingOfAlamofireKit_Private-dummy.m"; sourceTree = ""; }; - B9B7AFF376D7C1714FA1A418CAC11B9B /* KVORepresentable+CoreGraphics.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "KVORepresentable+CoreGraphics.swift"; path = "RxCocoa/Foundation/KVORepresentable+CoreGraphics.swift"; sourceTree = ""; }; - B9D7F8F17D79A7DAE8C3085002C4F8FD /* icon_file_type_txt@3x.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = "icon_file_type_txt@3x.png"; path = "Sources/Resources/FileType/icon_file_type_txt@3x.png"; sourceTree = ""; }; - BA09C034CF8F13CC190ED3168388D337 /* RxTableViewDataSourceProxy.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RxTableViewDataSourceProxy.swift; path = RxCocoa/iOS/Proxies/RxTableViewDataSourceProxy.swift; sourceTree = ""; }; - BA4748D12A39BC7EE7AA6B916C885631 /* UIScreen+DDCategory.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIScreen+DDCategory.m"; path = "DDCategoryKit_Private/Classes/UIScreen+DDCategory/UIScreen+DDCategory.m"; sourceTree = ""; }; - BA528AC0B6488CAB64512C844C02A714 /* DDBaseViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DDBaseViewController.m; path = DDBasicControlsKit_Private/Classes/DDBaseViewController/DDBaseViewController.m; sourceTree = ""; }; - BA5546A1740841B0A4EB54A7EC266A88 /* PrimitiveSequence+Concurrency.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "PrimitiveSequence+Concurrency.swift"; path = "RxSwift/Traits/PrimitiveSequence/PrimitiveSequence+Concurrency.swift"; sourceTree = ""; }; - BA79CD22DB4EF360D9BA0F90DD50A760 /* DDLogKit_Private-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "DDLogKit_Private-dummy.m"; sourceTree = ""; }; - BA7B537ACA6DC6BF03454F132D78D32B /* ImageFormat.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ImageFormat.swift; path = Sources/Image/ImageFormat.swift; sourceTree = ""; }; - BAAE5CB7E3D91D0E7CEA4A5DB8A60770 /* JXCategoryIndicatorBallView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JXCategoryIndicatorBallView.h; path = Sources/Indicator/IndicatorViews/JXCategoryIndicatorBallView.h; sourceTree = ""; }; - BAF3129C257E907A7D6F376C913F9C34 /* MainScheduler.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = MainScheduler.swift; path = RxSwift/Schedulers/MainScheduler.swift; sourceTree = ""; }; - BAFE20E8DE232AF4E33A59A7A4946063 /* DDTimerKit_Private.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = DDTimerKit_Private.debug.xcconfig; sourceTree = ""; }; + B3C6272FB54DC705DA455D83E5FB7171 /* IQUIViewController+Additions.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "IQUIViewController+Additions.swift"; path = "IQKeyboardManagerSwift/Categories/IQUIViewController+Additions.swift"; sourceTree = ""; }; + B3D9805B8A852DF6C44A44CFCB9D938B /* MAOfflineMapViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MAOfflineMapViewController.h; path = AMapNaviKit.framework/Headers/MAOfflineMapViewController.h; sourceTree = ""; }; + B3DBC064D38E5F623A0F7857BE3B6579 /* MACircleRenderer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MACircleRenderer.h; path = AMapNaviKit.framework/Headers/MACircleRenderer.h; sourceTree = ""; }; + B3FBA5BCC63A7DA814380D5A7F18555B /* UICollectionView+Rx.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "UICollectionView+Rx.swift"; path = "RxCocoa/iOS/UICollectionView+Rx.swift"; sourceTree = ""; }; + B409D0A129FF6110F02054F78B60E548 /* ElementAt.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ElementAt.swift; path = RxSwift/Observables/ElementAt.swift; sourceTree = ""; }; + B40B699E20A88FA178864D907B41199B /* MJRefreshTrailer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MJRefreshTrailer.h; path = MJRefresh/Base/MJRefreshTrailer.h; sourceTree = ""; }; + B42C546CD3B3F54FEB1ADE47C74BAAC7 /* JXCategoryTitleImageCell.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JXCategoryTitleImageCell.h; path = Sources/TitleImage/JXCategoryTitleImageCell.h; sourceTree = ""; }; + B46DF914A72CDF22E27684C7E253C84C /* ZFPlayerControlView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ZFPlayerControlView.h; path = DDZFPlayerKit_Private/Classes/ControlView/ZFPlayerControlView.h; sourceTree = ""; }; + B4905836302BC9C526F79E6E44A38E04 /* DDLogKit_Private.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = DDLogKit_Private.release.xcconfig; sourceTree = ""; }; + B4AEB1B5A5C79F400C18536CA40D93BB /* DDBaseCollectionView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DDBaseCollectionView.m; path = DDBasicControlsKit_Private/Classes/DDBaseCollectionView/DDBaseCollectionView.m; sourceTree = ""; }; + B51F37A7C344BD675F51BF2342A159E3 /* CocoaDebugTabBarController.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CocoaDebugTabBarController.swift; path = Sources/Window/CocoaDebugTabBarController.swift; sourceTree = ""; }; + B52C260CC2661C41EEF0F0AB4049195B /* Completable+AndThen.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Completable+AndThen.swift"; path = "RxSwift/Traits/PrimitiveSequence/Completable+AndThen.swift"; sourceTree = ""; }; + B562626692B35F70399778BEB06D65C8 /* KFAnimatedImage.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = KFAnimatedImage.swift; path = Sources/SwiftUI/KFAnimatedImage.swift; sourceTree = ""; }; + B574EC37A2BC358258FE620F5336FFFC /* ZFOrientationObserver.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = ZFOrientationObserver.m; path = DDZFPlayerKit_Private/Classes/Core/ZFOrientationObserver.m; sourceTree = ""; }; + B59401AF283208AC2EEE4485A3866BFE /* DisposeBag.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = DisposeBag.swift; path = RxSwift/Disposables/DisposeBag.swift; sourceTree = ""; }; + B5A2D4393E3075C6B8D7D1C51DC1665E /* ControlTarget.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ControlTarget.swift; path = RxCocoa/Common/ControlTarget.swift; sourceTree = ""; }; + B5BF97B625C2DAB4A96AAEFEECD7076E /* Timer.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Timer.swift; path = RxSwift/Observables/Timer.swift; sourceTree = ""; }; + B6486D49EA84BCC1A19B166BED7DD30E /* DDBaseAttributedString.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DDBaseAttributedString.h; path = DDBasicControlsKit_Private/Classes/DDBaseAttributedString/DDBaseAttributedString.h; sourceTree = ""; }; + B64EFDD65AF527B07AEF522F73A08104 /* JXCategoryView-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "JXCategoryView-dummy.m"; sourceTree = ""; }; + B69AB0F60AF75225C9AFD77CE8013E81 /* DDColorKit_Private.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = DDColorKit_Private.debug.xcconfig; sourceTree = ""; }; + B6D33CBC0FA9298AE47CF287968671AD /* Binder.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Binder.swift; path = RxSwift/Binder.swift; sourceTree = ""; }; + B6D8E1F8AC4B30EF47D3CF88CC0E42BD /* UIBarButtonItem+DDCategory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIBarButtonItem+DDCategory.h"; path = "DDCategoryKit_Private/Classes/UIBarButtonItem+DDCategory/UIBarButtonItem+DDCategory.h"; sourceTree = ""; }; + B6E5494399CF740C7316F47647E51127 /* DDTableView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = DDTableView.swift; path = DDControlsKit_Private/Classes/DDTableView/DDTableView.swift; sourceTree = ""; }; + B6EC47D2DF8EB922DC9191C1524EE708 /* AMapCommonObj.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AMapCommonObj.h; path = AMapSearchKit.framework/Headers/AMapCommonObj.h; sourceTree = ""; }; + B6ECED9FCD08D1D74B9CA3E1016663E1 /* RxNavigationControllerDelegateProxy.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RxNavigationControllerDelegateProxy.swift; path = RxCocoa/iOS/Proxies/RxNavigationControllerDelegateProxy.swift; sourceTree = ""; }; + B70AF93E4D974B8428D94FDA5AED6BD6 /* DDView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = DDView.swift; path = DDControlsKit_Private/Classes/DDView/DDView.swift; sourceTree = ""; }; + B70DAC08C6B7D27F83C9A620ED4A68B5 /* icon_file_type_js.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = icon_file_type_js.png; path = Sources/Resources/FileType/icon_file_type_js.png; sourceTree = ""; }; + B72111A9ABB8BFC3BA25463F6FFEB02D /* MAArcRenderer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MAArcRenderer.h; path = AMapNaviKit.framework/Headers/MAArcRenderer.h; sourceTree = ""; }; + B740423D0945EDE8A1B9EF3C9AE1E546 /* DDAudioPlayerKit_Private-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "DDAudioPlayerKit_Private-dummy.m"; sourceTree = ""; }; + B7453EE2B9FCE484748EAFCD547E7034 /* IQKeyboardManagerSwift.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = IQKeyboardManagerSwift.modulemap; sourceTree = ""; }; + B77D4998C451C42EEBB3D8499535B5EB /* icon_file_type_plist.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = icon_file_type_plist.png; path = Sources/Resources/FileType/icon_file_type_plist.png; sourceTree = ""; }; + B7D6A19F38BD24A68614649268A81158 /* MJRefreshStateHeader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MJRefreshStateHeader.h; path = MJRefresh/Custom/Header/MJRefreshStateHeader.h; sourceTree = ""; }; + B7F4B83026BA98C76D867A2938DA8F20 /* KFImageOptions.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = KFImageOptions.swift; path = Sources/SwiftUI/KFImageOptions.swift; sourceTree = ""; }; + B7FA87BA5AD0A823A011F98A5BA4C2A2 /* RxRelay.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RxRelay.release.xcconfig; sourceTree = ""; }; + B834F282F9EDD61405A0D3FA07EEF61B /* MAIndoorInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MAIndoorInfo.h; path = AMapNaviKit.framework/Headers/MAIndoorInfo.h; sourceTree = ""; }; + B84E9DB849BDE2A2E75ADEFA12124308 /* JXCategoryIndicatorBallView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = JXCategoryIndicatorBallView.m; path = Sources/Indicator/IndicatorViews/JXCategoryIndicatorBallView.m; sourceTree = ""; }; + B8566531CCD3B055AACD54D9C70D46E2 /* ConstraintMultiplierTarget.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ConstraintMultiplierTarget.swift; path = Sources/ConstraintMultiplierTarget.swift; sourceTree = ""; }; + B893046FC8D75BB7604FD2DD3EA2E420 /* JXCategoryIndicatorCell.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JXCategoryIndicatorCell.h; path = Sources/Indicator/JXCategoryIndicatorCell.h; sourceTree = ""; }; + B8C194FB66589A3E472EFB4493C4FB65 /* NSBundle+DDCategory.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSBundle+DDCategory.m"; path = "DDCategoryKit_Private/Classes/NSBundle+DDCategory/NSBundle+DDCategory.m"; sourceTree = ""; }; + B90AFD70497E0BB1552C6FB2E37FED4B /* UIApplication+Rx.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "UIApplication+Rx.swift"; path = "RxCocoa/iOS/UIApplication+Rx.swift"; sourceTree = ""; }; + B935759BC41846DD104C77108C58A5DB /* ZFLandscapeWindow.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = ZFLandscapeWindow.m; path = DDZFPlayerKit_Private/Classes/Core/ZFLandscapeWindow.m; sourceTree = ""; }; + B950E3E5BC03E7EAA144B54395908596 /* DDScrollView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = DDScrollView.swift; path = DDControlsKit_Private/Classes/DDScrollView/DDScrollView.swift; sourceTree = ""; }; + B9BF579F6092CEFA95DAC1130DC4310C /* SwiftEntryKit.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SwiftEntryKit.swift; path = Source/SwiftEntryKit.swift; sourceTree = ""; }; + B9CEDB8AA065587457A5D742B0C957A4 /* UIScrollView+ZFPlayer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIScrollView+ZFPlayer.m"; path = "DDZFPlayerKit_Private/Classes/Core/UIScrollView+ZFPlayer.m"; sourceTree = ""; }; + BA36808A8E8270E1626D7FE64162DDD8 /* Driver.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Driver.swift; path = RxCocoa/Traits/Driver/Driver.swift; sourceTree = ""; }; + BAE73892C05FF6771E8660DE9B19D1C6 /* Combine.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Combine.swift; path = Source/Combine.swift; sourceTree = ""; }; + BAEBD73E3B7F1C2BA8D5BE45E2C0D644 /* AMapNaviCompositeUserConfig.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AMapNaviCompositeUserConfig.h; path = AMapNaviKit.framework/Headers/AMapNaviCompositeUserConfig.h; sourceTree = ""; }; + BAEF6C6FDB52DBE5A8656051132CF406 /* UIRectCorner+Short.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "UIRectCorner+Short.swift"; path = "Source/Extensions/UIRectCorner+Short.swift"; sourceTree = ""; }; + BAF4523FFDDA5013C324C919671D9684 /* DDMANaviManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DDMANaviManager.h; path = DDMAMapKit_Private/Classes/DDMANaviManager/DDMANaviManager.h; sourceTree = ""; }; + BB0C6995731811C85FE13FE3685E6968 /* ZLPhotoConfiguration.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ZLPhotoConfiguration.swift; path = Sources/General/ZLPhotoConfiguration.swift; sourceTree = ""; }; + BB1171B0FC8290731827608595F728F2 /* CocoaDebug-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "CocoaDebug-prefix.pch"; sourceTree = ""; }; BB28130B0F4C47DC99D2DB9C80F70152 /* ZLPhotoBrowser */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = ZLPhotoBrowser; path = libZLPhotoBrowser.a; sourceTree = BUILT_PRODUCTS_DIR; }; - BB9144308407CC742489AB51D399DA54 /* _CanonicalRequest.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = _CanonicalRequest.h; path = Sources/CustomHTTPProtocol/_CanonicalRequest.h; sourceTree = ""; }; - BB9373E1CE7B9F0407534CC6C2CCE78C /* DDMAMapView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DDMAMapView.h; path = DDMAMapKit_Private/Classes/DDMAMap/MapView/DDMAMapView.h; sourceTree = ""; }; - BBA5A763C839D3CF5892FCB96AB65FC0 /* icon_file_type_sql@3x.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = "icon_file_type_sql@3x.png"; path = "Sources/Resources/FileType/icon_file_type_sql@3x.png"; sourceTree = ""; }; - BBCC257339930C483192C16A0D488677 /* icon_file_type_midi.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = icon_file_type_midi.png; path = Sources/Resources/FileType/icon_file_type_midi.png; sourceTree = ""; }; + BB75C93DC6E154AF5443E4BB29955766 /* SwiftToast.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SwiftToast.swift; path = DDToastKit_Private/Classes/SwiftToast.swift; sourceTree = ""; }; + BBC7DD37E331F07920058DC251372F58 /* CocoaDebugWindow.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CocoaDebugWindow.swift; path = Sources/Window/CocoaDebugWindow.swift; sourceTree = ""; }; + BBDCD87DC61283D1F31DE4DD94BE4816 /* ZLEditToolCells.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ZLEditToolCells.swift; path = Sources/Edit/ZLEditToolCells.swift; sourceTree = ""; }; + BBF11C6363CD12CE3655D651C4655E05 /* KVORepresentable+CoreGraphics.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "KVORepresentable+CoreGraphics.swift"; path = "RxCocoa/Foundation/KVORepresentable+CoreGraphics.swift"; sourceTree = ""; }; + BBFCAC399B1C6E22748ED55F05C70FEE /* SDAnimatedImageView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDAnimatedImageView.h; path = DDWebImageKit_Private/Classes/SDWebImage/Core/SDAnimatedImageView.h; sourceTree = ""; }; BC432FD48A5932251F1CAFBC4BF74894 /* RxCocoa */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = RxCocoa; path = libRxCocoa.a; sourceTree = BUILT_PRODUCTS_DIR; }; - BC51BD205157C988A8D41336670B09F7 /* JPush.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = JPush.release.xcconfig; sourceTree = ""; }; - BC9B81DCD65AE99490C8ACF70EC22DE4 /* JXCategoryTitleCellModel.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JXCategoryTitleCellModel.h; path = Sources/Title/JXCategoryTitleCellModel.h; sourceTree = ""; }; - BD26644BD275EF178E75CF5E94DC5C21 /* SDWebImagePrefetcher.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImagePrefetcher.m; path = DDWebImageKit_Private/Classes/SDWebImage/Core/SDWebImagePrefetcher.m; sourceTree = ""; }; - BD9482CD5D16347FA53F4272B6D93EE4 /* MAHeatMapVectorGridOverlayRenderer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MAHeatMapVectorGridOverlayRenderer.h; path = AMapNaviKit.framework/Headers/MAHeatMapVectorGridOverlayRenderer.h; sourceTree = ""; }; - BDACAF5C7F870C70808A6ED412797E03 /* UIColor+Hue.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "UIColor+Hue.swift"; path = "DDColorKit_Private/Classes/UIColor+Hue.swift"; sourceTree = ""; }; - BDAE12D9054CD6B28807605DF9C5BE14 /* RTLManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RTLManager.m; path = Sources/RLTManager/RTLManager.m; sourceTree = ""; }; - BDBD7BF6C253733F8B7C3FBC7F23EDAB /* NSBundle+MJRefresh.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSBundle+MJRefresh.m"; path = "MJRefresh/NSBundle+MJRefresh.m"; sourceTree = ""; }; - BDF2C94C25454433C04944523F3076BE /* SnapKit-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "SnapKit-dummy.m"; sourceTree = ""; }; - BDFB35E9F875306B9DFFD2E3B49DDA21 /* _DebugConsoleLabel.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = _DebugConsoleLabel.h; path = Sources/Monitor/_DebugConsoleLabel.h; sourceTree = ""; }; - BE630A0EEEF780188B1183B41F3A7121 /* NSTextStorage+Rx.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "NSTextStorage+Rx.swift"; path = "RxCocoa/iOS/NSTextStorage+Rx.swift"; sourceTree = ""; }; - BE8C5D4EF3429F0189BC7813EBDF4DF2 /* ObservableConvertibleType+Driver.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "ObservableConvertibleType+Driver.swift"; path = "RxCocoa/Traits/Driver/ObservableConvertibleType+Driver.swift"; sourceTree = ""; }; - BEF7C4A86D96B7AFBCFBD1CB3CFEE0CF /* ConstraintDirectionalInsets.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ConstraintDirectionalInsets.swift; path = Sources/ConstraintDirectionalInsets.swift; sourceTree = ""; }; - BF3163685EF74677542DA28C2CE2AAEB /* AMapSearchVersion.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AMapSearchVersion.h; path = AMapSearchKit.framework/Headers/AMapSearchVersion.h; sourceTree = ""; }; - BF39CB461BEBFC6F78B130137EBDF594 /* TVMonogramView+Kingfisher.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "TVMonogramView+Kingfisher.swift"; path = "Sources/Extensions/TVMonogramView+Kingfisher.swift"; sourceTree = ""; }; - BF41704EF12734312E79CF951F77D60F /* CurrentThreadScheduler.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CurrentThreadScheduler.swift; path = RxSwift/Schedulers/CurrentThreadScheduler.swift; sourceTree = ""; }; - BF86D357530F230AD7D4A8ED7488BEE8 /* SDImageFrame.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageFrame.m; path = DDWebImageKit_Private/Classes/SDWebImage/Core/SDImageFrame.m; sourceTree = ""; }; - BF98BFE0EA9C6D1DAC3BC289D3EC1F73 /* DDFontKit_Private.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = DDFontKit_Private.modulemap; sourceTree = ""; }; - BFB7F26B22371AE2145CE0C5E402E4D8 /* MJRefreshNormalHeader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MJRefreshNormalHeader.h; path = MJRefresh/Custom/Header/MJRefreshNormalHeader.h; sourceTree = ""; }; - BFBBF3A8095A48A9D90204CC16EFF7EF /* _OCLogModel.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = _OCLogModel.m; path = Sources/Logs/_OCLogModel.m; sourceTree = ""; }; - C00B945B6DE368146504758E84738F01 /* Kingfisher-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Kingfisher-prefix.pch"; sourceTree = ""; }; - C00FD5E54A60B208AF0050C56BB16778 /* MKAnnotationView+WebCache.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "MKAnnotationView+WebCache.m"; path = "DDWebImageKit_Private/Classes/SDWebImageMapKit/MapKit/MKAnnotationView+WebCache.m"; sourceTree = ""; }; - C0298F97D8F3217331BF132A88EF7836 /* DDAttributedString.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = DDAttributedString.swift; path = DDControlsKit_Private/Classes/DDAttributedString/DDAttributedString.swift; sourceTree = ""; }; - C02E0D4C622F60B0FDB98618287C82F5 /* UIImage+ExtendedCacheData.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImage+ExtendedCacheData.h"; path = "DDWebImageKit_Private/Classes/SDWebImage/Core/UIImage+ExtendedCacheData.h"; sourceTree = ""; }; - C0D3D384BC63F1D9C6E905ED844B1A36 /* ConstraintConfig.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ConstraintConfig.swift; path = Sources/ConstraintConfig.swift; sourceTree = ""; }; - C10879D88FB557DAFAFEA28229EA4FDD /* icon_file_type_css.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = icon_file_type_css.png; path = Sources/Resources/FileType/icon_file_type_css.png; sourceTree = ""; }; - C13605C305EC8AC4BCFADE7FFB675973 /* DDTimerKit_Private.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = DDTimerKit_Private.modulemap; sourceTree = ""; }; - C145C1028751009EA4490FA0BC97D818 /* DDTimerObject.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DDTimerObject.h; path = DDTimerKit_Private/Classes/GCDTimer/DDTimerObject.h; sourceTree = ""; }; - C14A9065C376B53FAEDDE650DFAA2F5D /* ZLBaseStickerView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ZLBaseStickerView.swift; path = Sources/Edit/ZLBaseStickerView.swift; sourceTree = ""; }; - C15101A907A82B0FB45D1655C200F6D3 /* DDMAGeometry.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DDMAGeometry.m; path = DDMAMapKit_Private/Classes/DDMAUtil/DDMAGeometry.m; sourceTree = ""; }; - C18B94C4518FFDD1B962587E426E4BCC /* Delay.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Delay.swift; path = RxSwift/Observables/Delay.swift; sourceTree = ""; }; - C1A1AB926D0B16501E5977AFC075A328 /* _FileTableViewCell.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = _FileTableViewCell.m; path = Sources/Sandbox/_FileTableViewCell.m; sourceTree = ""; }; - C1ADAAB3970FA6481E07A5084A787A43 /* JXCategoryIndicatorCell.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = JXCategoryIndicatorCell.m; path = Sources/Indicator/JXCategoryIndicatorCell.m; sourceTree = ""; }; - C1BB769010495F3FD4866ECD933A8299 /* ConstraintLayoutGuide.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ConstraintLayoutGuide.swift; path = Sources/ConstraintLayoutGuide.swift; sourceTree = ""; }; - C1D48DF1988567C2283DCE6A6D0E978C /* IQInvocation.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = IQInvocation.swift; path = IQKeyboardManagerSwift/IQToolbar/IQInvocation.swift; sourceTree = ""; }; - C1E67002E75D901B77A2D081AC86A2DC /* IQKeyboardManager+Internal.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "IQKeyboardManager+Internal.swift"; path = "IQKeyboardManagerSwift/IQKeyboardManager+Internal.swift"; sourceTree = ""; }; - C23B4CC24C808BA2FE10E907CED7274E /* JXCategoryTitleImageCellModel.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JXCategoryTitleImageCellModel.h; path = Sources/TitleImage/JXCategoryTitleImageCellModel.h; sourceTree = ""; }; - C253DA098B864ED92D2D027F35282FCD /* ConstraintInsets.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ConstraintInsets.swift; path = Sources/ConstraintInsets.swift; sourceTree = ""; }; - C258428522F4A64CB4A8EF1E49C0AF90 /* Toast.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Toast.swift; path = DDToastKit_Private/Classes/Toast.swift; sourceTree = ""; }; - C2641DF68DED10FBB1979FC56DE64C03 /* Constraint.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Constraint.swift; path = Sources/Constraint.swift; sourceTree = ""; }; - C2E12CBE287DB6772103BC360F210316 /* icon_file_type_jpg@2x.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = "icon_file_type_jpg@2x.png"; path = "Sources/Resources/FileType/icon_file_type_jpg@2x.png"; sourceTree = ""; }; - C37F753156AAD77276F79A96EA0B168A /* ZLAdjustSlider.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ZLAdjustSlider.swift; path = Sources/Edit/ZLAdjustSlider.swift; sourceTree = ""; }; - C38DD323EA8183D3209A52A8D8BBC1CE /* UIViewArray+QuickLayout.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "UIViewArray+QuickLayout.swift"; path = "Source/Extensions/QuickLayout/UIViewArray+QuickLayout.swift"; sourceTree = ""; }; + BC632D59BD68D7BD58F3764B61DEC6F8 /* AMapNavi-NO-IDFA.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "AMapNavi-NO-IDFA.debug.xcconfig"; sourceTree = ""; }; + BCA9C6DD86E226D8238CA88509831E76 /* JXCategoryImageCell.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JXCategoryImageCell.h; path = Sources/Image/JXCategoryImageCell.h; sourceTree = ""; }; + BCCC2AA9FC6F26EB4A71C93D76CC2FB7 /* BRPickerView.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = BRPickerView.release.xcconfig; sourceTree = ""; }; + BD4043357555F922F0D2C87C0316097E /* MJRefreshConfig.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MJRefreshConfig.h; path = MJRefresh/MJRefreshConfig.h; sourceTree = ""; }; + BD6C032039F0BCA60ACAA4D98260E90A /* ZLPhotoUIConfiguration.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ZLPhotoUIConfiguration.swift; path = Sources/General/ZLPhotoUIConfiguration.swift; sourceTree = ""; }; + BD78FEC426D325F38D6E871EB1610720 /* JXCategoryIndicatorBackgroundView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = JXCategoryIndicatorBackgroundView.m; path = Sources/Indicator/IndicatorViews/JXCategoryIndicatorBackgroundView.m; sourceTree = ""; }; + BDA9918D1AC95200E4E186A6CB3A8906 /* ESTabBarItemBadgeView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ESTabBarItemBadgeView.swift; path = Sources/ESTabBarItemBadgeView.swift; sourceTree = ""; }; + BE1A854C57DF125E4C0DE6B3E58D9902 /* AMapNaviVersion.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AMapNaviVersion.h; path = AMapNaviKit.framework/Headers/AMapNaviVersion.h; sourceTree = ""; }; + BE7F608C41F8EC9276968E11EAD8AC11 /* SDImageGraphics.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageGraphics.m; path = DDWebImageKit_Private/Classes/SDWebImage/Core/SDImageGraphics.m; sourceTree = ""; }; + BE8553FA78EF2AE4C789CDBE066E4101 /* EKProcessingNoteMessageView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = EKProcessingNoteMessageView.swift; path = Source/MessageViews/Notes/EKProcessingNoteMessageView.swift; sourceTree = ""; }; + BEC362CD670BE177438B17E4033A32E4 /* ConstraintMakerFinalizable.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ConstraintMakerFinalizable.swift; path = Sources/ConstraintMakerFinalizable.swift; sourceTree = ""; }; + BF4E9A3B832A4E0AADBFB7EA1F8A431C /* DDAF.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = DDAF.swift; path = DDNetworkingOfAlamofireKit_Private/Classes/DDAF.swift; sourceTree = ""; }; + BF5287D098DA990C2E2B7E780134AF60 /* JPushExtension.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = JPushExtension.release.xcconfig; sourceTree = ""; }; + BF79B20945886A068F5468C6DA15B79F /* UITabBarController+Rx.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "UITabBarController+Rx.swift"; path = "RxCocoa/iOS/UITabBarController+Rx.swift"; sourceTree = ""; }; + BF96E3F481C639A2E06DFAE3D8514335 /* ZFPlayerController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ZFPlayerController.h; path = DDZFPlayerKit_Private/Classes/Core/ZFPlayerController.h; sourceTree = ""; }; + BFA5204DFFA014E2B10304DF485331D3 /* AMapNaviInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AMapNaviInfo.h; path = AMapNaviKit.framework/Headers/AMapNaviInfo.h; sourceTree = ""; }; + BFD6DE4A3D47DB649FA0D0A6D1E9E03C /* ZLEditVideoViewController.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ZLEditVideoViewController.swift; path = Sources/Edit/ZLEditVideoViewController.swift; sourceTree = ""; }; + BFE1EB6C61A6737D9D2A8394CC625868 /* DDToastKit_Private.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = DDToastKit_Private.modulemap; sourceTree = ""; }; + BFE7A470772C4DE2120B74453CED919B /* _RunloopMonitor.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = _RunloopMonitor.m; path = Sources/Monitor/_RunloopMonitor.m; sourceTree = ""; }; + BFEF8BD2165CCAA0515EF0DD78713060 /* SnapKit.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = SnapKit.release.xcconfig; sourceTree = ""; }; + C00B250BD3F02DCDFBFB16362B6FFDB5 /* _icon_file_type_up@2x.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = "_icon_file_type_up@2x.png"; path = "Sources/Resources/images/_icon_file_type_up@2x.png"; sourceTree = ""; }; + C00F1FD587BC6143D1E65722A2C8F14D /* RecursiveLock.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RecursiveLock.swift; path = Platform/RecursiveLock.swift; sourceTree = ""; }; + C02E791F140CA6B6CC8B66E945F3F7FA /* _DebugConsoleLabel.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = _DebugConsoleLabel.h; path = Sources/Monitor/_DebugConsoleLabel.h; sourceTree = ""; }; + C056B6A22FB54A753B8D71AA13E54ED7 /* SDWebImageDownloaderRequestModifier.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageDownloaderRequestModifier.h; path = DDWebImageKit_Private/Classes/SDWebImage/Core/SDWebImageDownloaderRequestModifier.h; sourceTree = ""; }; + C05B031ED5C4066135823A85DF067623 /* UIView+ZFFrame.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIView+ZFFrame.h"; path = "DDZFPlayerKit_Private/Classes/ControlView/UIView+ZFFrame.h"; sourceTree = ""; }; + C0AB89978B936B8DBFE43A080BF6D1AB /* URLSessionConfiguration+Alamofire.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "URLSessionConfiguration+Alamofire.swift"; path = "Source/URLSessionConfiguration+Alamofire.swift"; sourceTree = ""; }; + C0AF181644C5C7DC5A7E75678DC10A48 /* RxCollectionViewDataSourceType.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RxCollectionViewDataSourceType.swift; path = RxCocoa/iOS/Protocols/RxCollectionViewDataSourceType.swift; sourceTree = ""; }; + C0C45BF3AC5CEEEEC36DAD5FB3A774D8 /* ImageCache.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ImageCache.swift; path = Sources/Cache/ImageCache.swift; sourceTree = ""; }; + C159872F26F93E552B656DEA5F53EE51 /* UIButton+Kingfisher.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "UIButton+Kingfisher.swift"; path = "Sources/Extensions/UIButton+Kingfisher.swift"; sourceTree = ""; }; + C15A359371F6E20EDCF9830301160FCD /* ZFPortraitViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = ZFPortraitViewController.m; path = DDZFPlayerKit_Private/Classes/Core/ZFPortraitViewController.m; sourceTree = ""; }; + C1A659BA3E9B3B83261C34A4F724A4EA /* _DeviceUtil+Constant.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "_DeviceUtil+Constant.h"; path = "Sources/Core/_DeviceUtil+Constant.h"; sourceTree = ""; }; + C1BA9A9FD666F4FE0FD5A17D79A8D3CC /* EKAttributes+LifecycleActions.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "EKAttributes+LifecycleActions.swift"; path = "Source/Model/EntryAttributes/EKAttributes+LifecycleActions.swift"; sourceTree = ""; }; + C1CFE2F915114873F21405FED9B28760 /* ResponseSerialization.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ResponseSerialization.swift; path = Source/ResponseSerialization.swift; sourceTree = ""; }; + C1D414B35B3407CB5D3B3E3C506F187C /* UIView+WebCacheOperation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIView+WebCacheOperation.h"; path = "DDWebImageKit_Private/Classes/SDWebImage/Core/UIView+WebCacheOperation.h"; sourceTree = ""; }; + C1E808B15FDEEA5AF36D9DF4C4966B41 /* DDToastKit_Private-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "DDToastKit_Private-dummy.m"; sourceTree = ""; }; + C1ECF61E1FE2D119776EF52063D94ECF /* UIView+Shadow.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "UIView+Shadow.swift"; path = "Source/Extensions/UIView+Shadow.swift"; sourceTree = ""; }; + C21CC33F7062D344DCF74D49BFC82A48 /* UIImageView+HighlightedWebCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImageView+HighlightedWebCache.h"; path = "DDWebImageKit_Private/Classes/SDWebImage/Core/UIImageView+HighlightedWebCache.h"; sourceTree = ""; }; + C2E5FCEE6148423F6B366AEE19AB67B4 /* _DebugConsoleLabel.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = _DebugConsoleLabel.m; path = Sources/Monitor/_DebugConsoleLabel.m; sourceTree = ""; }; + C2EBB54A8777788FCC37F4DDD1F95CD7 /* SDAnimatedImagePlayer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDAnimatedImagePlayer.h; path = DDWebImageKit_Private/Classes/SDWebImage/Core/SDAnimatedImagePlayer.h; sourceTree = ""; }; + C2F72650742E2BCFFB3A938D1D5BC6CE /* CrashLogger.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CrashLogger.swift; path = Sources/App/CrashLogger.swift; sourceTree = ""; }; + C301A7F6B36F77A416BA7AD89B129CF0 /* UIGestureRecognizer+Rx.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "UIGestureRecognizer+Rx.swift"; path = "RxCocoa/iOS/UIGestureRecognizer+Rx.swift"; sourceTree = ""; }; + C30938D2D95C8CFD56F11229284457D5 /* IQKeyboardManager+Toolbar.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "IQKeyboardManager+Toolbar.swift"; path = "IQKeyboardManagerSwift/IQKeyboardManager+Toolbar.swift"; sourceTree = ""; }; + C37201DB90F4FF72205A918853410CB5 /* UIButton+Rx.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "UIButton+Rx.swift"; path = "RxCocoa/iOS/UIButton+Rx.swift"; sourceTree = ""; }; + C37BCE44E949B7D460656AC69C7B99FF /* SDWebImageOptionsProcessor.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageOptionsProcessor.m; path = DDWebImageKit_Private/Classes/SDWebImage/Core/SDWebImageOptionsProcessor.m; sourceTree = ""; }; + C39CAC5D3CDF8B7CB4D7B5A9DB2B9293 /* SDWebImageOptionsProcessor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageOptionsProcessor.h; path = DDWebImageKit_Private/Classes/SDWebImage/Core/SDWebImageOptionsProcessor.h; sourceTree = ""; }; C3A46B03C308EEEB11F2A62BA5D2E8BE /* JXCategoryView */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = JXCategoryView; path = libJXCategoryView.a; sourceTree = BUILT_PRODUCTS_DIR; }; - C3AB4B6C9539F570859A6EECE23B7BAF /* SDWebImageCompat.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageCompat.h; path = DDWebImageKit_Private/Classes/SDWebImage/Core/SDWebImageCompat.h; sourceTree = ""; }; - C3BA7A5F1F25DC86FD382F1CBFEA1D17 /* icon_file_type_mov@2x.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = "icon_file_type_mov@2x.png"; path = "Sources/Resources/FileType/icon_file_type_mov@2x.png"; sourceTree = ""; }; - C3C9EA112DE0ACB92EB90C8BE16194C0 /* icon_file_type_numbers@3x.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = "icon_file_type_numbers@3x.png"; path = "Sources/Resources/FileType/icon_file_type_numbers@3x.png"; sourceTree = ""; }; - C3CEB51598371906F01DD9161738CE18 /* UIView+WebCache.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIView+WebCache.m"; path = "DDWebImageKit_Private/Classes/SDWebImage/Core/UIView+WebCache.m"; sourceTree = ""; }; + C3CAB0B4123BEA6346718C4838F0FC50 /* Delay.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Delay.swift; path = RxSwift/Observables/Delay.swift; sourceTree = ""; }; C3F44C782D64D7EB20B61CE3844EBFAD /* Kingfisher */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = Kingfisher; path = libKingfisher.a; sourceTree = BUILT_PRODUCTS_DIR; }; - C40B3F97DFABB65D3BDD8F1E63E93000 /* UISlider+Rx.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "UISlider+Rx.swift"; path = "RxCocoa/iOS/UISlider+Rx.swift"; sourceTree = ""; }; - C42D54E5DB9B41BE9813981A288C077C /* icon_file_type_zip@3x.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = "icon_file_type_zip@3x.png"; path = "Sources/Resources/FileType/icon_file_type_zip@3x.png"; sourceTree = ""; }; - C4EB8C85E86C4CC6DFD57BFC3CDCDA74 /* UIBlockingBubble.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = UIBlockingBubble.swift; path = Sources/Window/UIBlockingBubble.swift; sourceTree = ""; }; - C4F532C7D9F3B33F29B4CF59D4A979AA /* MAGeometry.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MAGeometry.h; path = AMapNaviKit.framework/Headers/MAGeometry.h; sourceTree = ""; }; - C5238A8E2F615B1A606A03C4982823D7 /* EKSimpleMessage.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = EKSimpleMessage.swift; path = Source/Model/EKSimpleMessage.swift; sourceTree = ""; }; - C55067F9480FD1DE443F2ABA626A7EEC /* AMapNaviHUDView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AMapNaviHUDView.h; path = AMapNaviKit.framework/Headers/AMapNaviHUDView.h; sourceTree = ""; }; - C558490FBF200E66F8DF356A94801423 /* ZFPlayer.bundle */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = "wrapper.plug-in"; name = ZFPlayer.bundle; path = DDZFPlayerKit_Private/Classes/ControlView/ZFPlayer.bundle; sourceTree = ""; }; - C55D4D3265BBEACF85432AE66C470CBD /* Disposable.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Disposable.swift; path = RxSwift/Disposable.swift; sourceTree = ""; }; - C565AB4454ECF08BBA37CC401EA5A25A /* ConstraintPriority.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ConstraintPriority.swift; path = Sources/ConstraintPriority.swift; sourceTree = ""; }; - C5881D7E7F84B8899BB379209F312C5B /* DDBaseView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DDBaseView.h; path = DDBasicControlsKit_Private/Classes/DDBaseView/DDBaseView.h; sourceTree = ""; }; - C5F1A5A4EEE526A285DC0E1CFF378C60 /* ImageTransition.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ImageTransition.swift; path = Sources/Image/ImageTransition.swift; sourceTree = ""; }; - C612C688B0EB06D233DFA69CE6E24BD3 /* Kingfisher-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Kingfisher-umbrella.h"; sourceTree = ""; }; - C61DF32C7E74323F23FBEAEAFCE16F7A /* SDImageAWebPCoder.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageAWebPCoder.m; path = DDWebImageKit_Private/Classes/SDWebImage/Core/SDImageAWebPCoder.m; sourceTree = ""; }; - C64E371EFAF8914F927A8CA6679ED04B /* icon_file_type_flv@3x.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = "icon_file_type_flv@3x.png"; path = "Sources/Resources/FileType/icon_file_type_flv@3x.png"; sourceTree = ""; }; - C65153A715B12A83A64AB42E1110DA40 /* EKRatingSymbolView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = EKRatingSymbolView.swift; path = Source/MessageViews/MessagesUtils/EKRatingSymbolView.swift; sourceTree = ""; }; - C677FED4C56D6EAAE5FCD8318AE970CE /* MJRefreshConst.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MJRefreshConst.h; path = MJRefresh/MJRefreshConst.h; sourceTree = ""; }; - C6B920B5FF89134DE01F7E7FB2C8588E /* UISegmentedControl+Rx.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "UISegmentedControl+Rx.swift"; path = "RxCocoa/iOS/UISegmentedControl+Rx.swift"; sourceTree = ""; }; - C6E52492251E38E7CAA5AD35E224616A /* MJRefreshAutoNormalFooter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MJRefreshAutoNormalFooter.m; path = MJRefresh/Custom/Footer/Auto/MJRefreshAutoNormalFooter.m; sourceTree = ""; }; - C6EF70FBD1FD294D9AECD8DCBE23574D /* ConstraintMakerRelatable.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ConstraintMakerRelatable.swift; path = Sources/ConstraintMakerRelatable.swift; sourceTree = ""; }; - C6FC10132705666042AAA7B049284A18 /* MAGeodesicPolyline.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MAGeodesicPolyline.h; path = AMapNaviKit.framework/Headers/MAGeodesicPolyline.h; sourceTree = ""; }; - C707FF98E0EF9F873B1850F62B0AA2C1 /* EKAttributes+DisplayMode.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "EKAttributes+DisplayMode.swift"; path = "Source/Model/EntryAttributes/EKAttributes+DisplayMode.swift"; sourceTree = ""; }; - C71301F2FBFAA7F7BD2FEC4EEE324B3B /* MAHeatMapVectorOverlayRender.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MAHeatMapVectorOverlayRender.h; path = AMapNaviKit.framework/Headers/MAHeatMapVectorOverlayRender.h; sourceTree = ""; }; - C71E072EE62ACF8473FACFD69F3876FC /* icon_file_type_dmg@2x.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = "icon_file_type_dmg@2x.png"; path = "Sources/Resources/FileType/icon_file_type_dmg@2x.png"; sourceTree = ""; }; - C796EE7B9DFDB1EF81E4C904BD88445D /* BRResultModel.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = BRResultModel.h; path = BRPickerView/StringPickerView/BRResultModel.h; sourceTree = ""; }; - C7B817F0B1D35BB19782F2E91E72A446 /* DriveRouteCustomAnnotation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DriveRouteCustomAnnotation.h; path = DDMAMapKit_Private/Classes/DDMAMap/Annotation/DriveRouteCustomAnnotation.h; sourceTree = ""; }; - C7BFB8E2E8D1F654EB03852A80F0368B /* JXCategoryNumberCell.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = JXCategoryNumberCell.m; path = Sources/Number/JXCategoryNumberCell.m; sourceTree = ""; }; - C7D2C1A07D35D1D13DDA8D8101E954E4 /* DDBaseScrollView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DDBaseScrollView.h; path = DDBasicControlsKit_Private/Classes/DDBaseScrollView/DDBaseScrollView.h; sourceTree = ""; }; - C7D39FB13FEF4E5B80BFBCB3A0EC64EE /* jpush-extension-ios-2.0.1.xcframework */ = {isa = PBXFileReference; includeInIndex = 1; path = "jpush-extension-ios-2.0.1.xcframework"; sourceTree = ""; }; - C7F4520A733D738074E96616D5B8EACB /* GroupedObservable.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = GroupedObservable.swift; path = RxSwift/GroupedObservable.swift; sourceTree = ""; }; - C7FC6155EC0C84CA034129270DE44C3D /* MATouchPoi.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MATouchPoi.h; path = AMapNaviKit.framework/Headers/MATouchPoi.h; sourceTree = ""; }; - C81C72778F38A61D245A434370E5D1A6 /* Box.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Box.swift; path = Sources/Utility/Box.swift; sourceTree = ""; }; - C836AE79C271FF8A611D963CED342AC3 /* DDAutoUIKit_Private.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = DDAutoUIKit_Private.debug.xcconfig; sourceTree = ""; }; - C83A53B97BAD8F8622DE3ACCB0414615 /* Sample.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Sample.swift; path = RxSwift/Observables/Sample.swift; sourceTree = ""; }; - C865048034530D516DD20746A4E43244 /* Debounce.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Debounce.swift; path = RxSwift/Observables/Debounce.swift; sourceTree = ""; }; - C87B4B55D47B64912DAC6CA6B0FBC916 /* EKAttributes+HapticFeedback.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "EKAttributes+HapticFeedback.swift"; path = "Source/Model/EntryAttributes/EKAttributes+HapticFeedback.swift"; sourceTree = ""; }; - C89935AF9F9A4F2CF410780019878F10 /* MAPinAnnotationView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MAPinAnnotationView.h; path = AMapNaviKit.framework/Headers/MAPinAnnotationView.h; sourceTree = ""; }; - C924AEE2E18E675B544FFD8FD96AFE5D /* icon_file_type_wmv@3x.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = "icon_file_type_wmv@3x.png"; path = "Sources/Resources/FileType/icon_file_type_wmv@3x.png"; sourceTree = ""; }; - C935E5771D3CE9F827C50F42F0F96A6F /* UIButton+Rx.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "UIButton+Rx.swift"; path = "RxCocoa/iOS/UIButton+Rx.swift"; sourceTree = ""; }; - C95C9F124973653528E157CFBAA25A53 /* CompositeDisposable.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CompositeDisposable.swift; path = RxSwift/Disposables/CompositeDisposable.swift; sourceTree = ""; }; - C96592885CC91699D7E5BD46D63EF556 /* JXCategoryDotView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JXCategoryDotView.h; path = Sources/Dot/JXCategoryDotView.h; sourceTree = ""; }; - C98DD0026D436E4DBF4A2DA31CEC8EDB /* EKAttributes+Precedence.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "EKAttributes+Precedence.swift"; path = "Source/Model/EntryAttributes/EKAttributes+Precedence.swift"; sourceTree = ""; }; - C995C4D0A4A9F719934E05932C38F999 /* DDCategoryKit_Private.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = DDCategoryKit_Private.modulemap; sourceTree = ""; }; - C9AE10F062A6FC564CABF1304E452872 /* UIApplication+DDCategory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIApplication+DDCategory.h"; path = "DDCategoryKit_Private/Classes/UIApplication+DDCategory/UIApplication+DDCategory.h"; sourceTree = ""; }; - C9BB8B1534A0B12465A4D4C880096A89 /* JXCategoryIndicatorImageView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = JXCategoryIndicatorImageView.m; path = Sources/Indicator/IndicatorViews/JXCategoryIndicatorImageView.m; sourceTree = ""; }; - C9C18819AE86B5CD23911364EFB83BAB /* UIImageView+ZFCache.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIImageView+ZFCache.m"; path = "DDZFPlayerKit_Private/Classes/ControlView/UIImageView+ZFCache.m"; sourceTree = ""; }; - C9FD7438E14B5EF0B138CAB170FF9833 /* JXCategoryView.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = JXCategoryView.release.xcconfig; sourceTree = ""; }; - CA27469EC732B1B110A73C84A922D666 /* ZLFilter.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ZLFilter.swift; path = Sources/Edit/ZLFilter.swift; sourceTree = ""; }; - CA3077A93C64A6FEED36C79BF632E156 /* DDBaseNavigationController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DDBaseNavigationController.h; path = DDBasicControlsKit_Private/Classes/DDBaseNavigationController/DDBaseNavigationController.h; sourceTree = ""; }; + C4301174BDCFE7141BCA3009B463E7F4 /* icon_file_type_tif@3x.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = "icon_file_type_tif@3x.png"; path = "Sources/Resources/FileType/icon_file_type_tif@3x.png"; sourceTree = ""; }; + C4605D951AFC0A203124A569B0958C21 /* AMapTrack-NO-IDFA.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "AMapTrack-NO-IDFA.release.xcconfig"; sourceTree = ""; }; + C46919322C3194F15F97B3B8646505B3 /* DDProgressHUD.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = DDProgressHUD.swift; path = DDProgressHUDKit_Private/Classes/DDProgressHUD.swift; sourceTree = ""; }; + C48B612BD5FE3864CC82806D71E23179 /* DelegateProxy.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = DelegateProxy.swift; path = RxCocoa/Common/DelegateProxy.swift; sourceTree = ""; }; + C48EC2893ACE2C94C0B57DFE8E52CE00 /* jpush-extension-ios-2.0.1.xcframework */ = {isa = PBXFileReference; includeInIndex = 1; path = "jpush-extension-ios-2.0.1.xcframework"; sourceTree = ""; }; + C49A46393F503E8D6F78E61975814F49 /* DDNetworkingOfAlamofireKit_Private-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "DDNetworkingOfAlamofireKit_Private-umbrella.h"; sourceTree = ""; }; + C49AF35E97D0BAEC12400050CB45E714 /* MAAnnotationView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MAAnnotationView.h; path = AMapNaviKit.framework/Headers/MAAnnotationView.h; sourceTree = ""; }; + C4B150163A03FA8CDC2BC2AAD859E1A0 /* JCore.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = JCore.release.xcconfig; sourceTree = ""; }; + C4D8F44CF777EE97370BC7D8988060E8 /* _icon_file_type_close@2x.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = "_icon_file_type_close@2x.png"; path = "Sources/Resources/images/_icon_file_type_close@2x.png"; sourceTree = ""; }; + C55EF4C677FFAD1988C1DB196ED25503 /* NSObject+CocoaDebug.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSObject+CocoaDebug.h"; path = "Sources/Categories/NSObject+CocoaDebug.h"; sourceTree = ""; }; + C5633BC54507F58C3E04788A8927E58A /* _icon_file_type_mail@2x.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = "_icon_file_type_mail@2x.png"; path = "Sources/Resources/images/_icon_file_type_mail@2x.png"; sourceTree = ""; }; + C57E79A96112BCD6EA0A4E7F5E4CFF64 /* AnonymousObserver.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AnonymousObserver.swift; path = RxSwift/Observers/AnonymousObserver.swift; sourceTree = ""; }; + C58C9A8503709EA3F93779D5DF5573DD /* SizeExtensions.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SizeExtensions.swift; path = Sources/Utility/SizeExtensions.swift; sourceTree = ""; }; + C5FD8249BA1493D6D8B921235044C72A /* AMapNaviLocation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AMapNaviLocation.h; path = AMapNaviKit.framework/Headers/AMapNaviLocation.h; sourceTree = ""; }; + C607891B0BC82BA5A24B7D97B06048F5 /* DDZFPlayerKit_Private.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = DDZFPlayerKit_Private.debug.xcconfig; sourceTree = ""; }; + C60984467792BEE02FFE9BEC5AB19AC1 /* AMapNaviKit.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AMapNaviKit.h; path = AMapNaviKit.framework/Headers/AMapNaviKit.h; sourceTree = ""; }; + C64F39A898567835EC977200F9FFA544 /* EKAttributes+StatusBar.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "EKAttributes+StatusBar.swift"; path = "Source/Model/EntryAttributes/EKAttributes+StatusBar.swift"; sourceTree = ""; }; + C7377BEF232207DDCBA57EAFD1A14E09 /* PHAsset+ZLPhotoBrowser.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "PHAsset+ZLPhotoBrowser.swift"; path = "Sources/Extensions/PHAsset+ZLPhotoBrowser.swift"; sourceTree = ""; }; + C7642307C2A74441FB033082E4393E4F /* RxCocoa.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RxCocoa.swift; path = RxCocoa/RxCocoa.swift; sourceTree = ""; }; + C77A0B91DA4695A2E41E274FF0DF1817 /* DDBaseImage.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DDBaseImage.m; path = DDBasicControlsKit_Private/Classes/DDBaseImage/DDBaseImage.m; sourceTree = ""; }; + C77AC4C89DAE146B8119851683BEB35F /* icon_file_type_folder_not_empty@2x.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = "icon_file_type_folder_not_empty@2x.png"; path = "Sources/Resources/FileType/icon_file_type_folder_not_empty@2x.png"; sourceTree = ""; }; + C79678F0ABB57AEB897326A4573F0DFF /* MAMapStatus.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MAMapStatus.h; path = AMapNaviKit.framework/Headers/MAMapStatus.h; sourceTree = ""; }; + C7B93C5CCBD714319A1AD2DBC6CB9032 /* JXCategoryIndicatorView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = JXCategoryIndicatorView.m; path = Sources/Indicator/JXCategoryIndicatorView.m; sourceTree = ""; }; + C7E88F18E04BC045B8FFF0615AB2D59C /* UIViewController+ZFPlayerRotation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIViewController+ZFPlayerRotation.m"; path = "DDZFPlayerKit_Private/Classes/Core/UIViewController+ZFPlayerRotation.m"; sourceTree = ""; }; + C7EA9E858EBB2FB3C378227BA979178A /* SDInternalMacros.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDInternalMacros.m; path = DDWebImageKit_Private/Classes/SDWebImage/Private/SDInternalMacros.m; sourceTree = ""; }; + C86E3F1BE15F9CC036B382A36B709505 /* SwiftEntryKit.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = SwiftEntryKit.debug.xcconfig; sourceTree = ""; }; + C8A47640CD25679BE5388ACCCD40D6A5 /* SDAsyncBlockOperation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDAsyncBlockOperation.h; path = DDWebImageKit_Private/Classes/SDWebImage/Private/SDAsyncBlockOperation.h; sourceTree = ""; }; + C8B61FCB33642D213E03290186A76E42 /* BRPickerView.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = BRPickerView.modulemap; sourceTree = ""; }; + C8C6A0E9075C77E2E92DCC7687A50D51 /* NSButton+Kingfisher.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "NSButton+Kingfisher.swift"; path = "Sources/Extensions/NSButton+Kingfisher.swift"; sourceTree = ""; }; + C9287B66111039EF4CEC9E0D009D7A25 /* Queue.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Queue.swift; path = Platform/DataStructures/Queue.swift; sourceTree = ""; }; + C98A3665DD375A4D70AAE9DBFC40B367 /* icon_file_type_txt@2x.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = "icon_file_type_txt@2x.png"; path = "Sources/Resources/FileType/icon_file_type_txt@2x.png"; sourceTree = ""; }; + C9970FA76DA67B4067425DC8E10CD042 /* AMapTrackTrackObj.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AMapTrackTrackObj.h; path = AMapTrackKit.framework/Headers/AMapTrackTrackObj.h; sourceTree = ""; }; + C9A45BD2674AB179D8018709758B0E2A /* ZLPhotoPreviewController.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ZLPhotoPreviewController.swift; path = Sources/General/ZLPhotoPreviewController.swift; sourceTree = ""; }; + C9BB2C3D03311AC04DF6996594CB6CA5 /* Delegate.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Delegate.swift; path = Sources/Utility/Delegate.swift; sourceTree = ""; }; + C9DE856E97844E4F2991B0892C57581C /* EKContentView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = EKContentView.swift; path = Source/Infra/EKContentView.swift; sourceTree = ""; }; + CA03B88839F4AAC3AFC6CC1C10B7D807 /* icon_file_type_java@3x.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = "icon_file_type_java@3x.png"; path = "Sources/Resources/FileType/icon_file_type_java@3x.png"; sourceTree = ""; }; + CA08CD95F541835B4B5F044AF72AB34E /* Repeat.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Repeat.swift; path = RxSwift/Observables/Repeat.swift; sourceTree = ""; }; CA4C3A23CF67AF861CBCBF4F978F7146 /* CocoaDebug */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = CocoaDebug; path = libCocoaDebug.a; sourceTree = BUILT_PRODUCTS_DIR; }; - CA4F05D5BA6C421D0B012AC18C249E07 /* ZLWeakProxy.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ZLWeakProxy.swift; path = Sources/General/ZLWeakProxy.swift; sourceTree = ""; }; - CA5AF49CE9F6ACEC71993623AF2208C4 /* DDControlsKit_Private-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "DDControlsKit_Private-umbrella.h"; sourceTree = ""; }; - CA808A11DC33E352031BACB5103D614F /* SDWebImageDownloaderDecryptor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageDownloaderDecryptor.h; path = DDWebImageKit_Private/Classes/SDWebImage/Core/SDWebImageDownloaderDecryptor.h; sourceTree = ""; }; - CA970F5A50011D308DD86FAB8B25546C /* GPBMessage+CocoaDebug.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "GPBMessage+CocoaDebug.m"; path = "Sources/Categories/GPBMessage+CocoaDebug.m"; sourceTree = ""; }; - CA97AE078E3059B58EF632EECCB4743A /* icon_file_type_numbers.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = icon_file_type_numbers.png; path = Sources/Resources/FileType/icon_file_type_numbers.png; sourceTree = ""; }; - CACF8EAE904DBD3B51A2631BD1CC6942 /* DDControlsKit_Private.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = DDControlsKit_Private.debug.xcconfig; sourceTree = ""; }; - CAD08D2AFBD1E664FE38D4FFF3DE416A /* MJRefresh.bundle */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = "wrapper.plug-in"; name = MJRefresh.bundle; path = MJRefresh/MJRefresh.bundle; sourceTree = ""; }; - CB040D9719971B3F8E92698A165E4739 /* icon_file_type_svg.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = icon_file_type_svg.png; path = Sources/Resources/FileType/icon_file_type_svg.png; sourceTree = ""; }; - CB2FA715969EA0400BA4244DDB5CE8DB /* RxCollectionViewDelegateProxy.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RxCollectionViewDelegateProxy.swift; path = RxCocoa/iOS/Proxies/RxCollectionViewDelegateProxy.swift; sourceTree = ""; }; - CB30DCE64ED3098C3FF3BD8E138EE084 /* Observable+Bind.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Observable+Bind.swift"; path = "RxCocoa/Common/Observable+Bind.swift"; sourceTree = ""; }; - CB6AA084987BA3DDDEF03C8205349B5D /* EKButtonView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = EKButtonView.swift; path = Source/MessageViews/MessagesUtils/EKButtonView.swift; sourceTree = ""; }; - CBE681FA5A2B38BB65C21A1349065E2F /* MAPolygon.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MAPolygon.h; path = AMapNaviKit.framework/Headers/MAPolygon.h; sourceTree = ""; }; - CC02B052F4C7F11AB56EC306A9C294C7 /* DDMANaviManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DDMANaviManager.h; path = DDMAMapKit_Private/Classes/DDMANaviManager/DDMANaviManager.h; sourceTree = ""; }; - CC4D1D5DF0E258B35A2628ECC0ECB189 /* String+ZLPhotoBrowser.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "String+ZLPhotoBrowser.swift"; path = "Sources/Extensions/String+ZLPhotoBrowser.swift"; sourceTree = ""; }; - CC5547DDF95C984289C70E6CB21AF116 /* JXCategoryView.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = JXCategoryView.modulemap; sourceTree = ""; }; - CC80F91D491ADBBE5E65009E499D4637 /* RxSwift.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RxSwift.release.xcconfig; sourceTree = ""; }; - CC87A2DBF0FE2ADBD366FDC38AE6E9DF /* RequestTaskMap.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RequestTaskMap.swift; path = Source/RequestTaskMap.swift; sourceTree = ""; }; - CCAFB586D754209E17A0F239873CD61B /* EventMonitor.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = EventMonitor.swift; path = Source/EventMonitor.swift; sourceTree = ""; }; - CCC48943C44A979165C5F035F2833057 /* icon_file_type_zip@2x.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = "icon_file_type_zip@2x.png"; path = "Sources/Resources/FileType/icon_file_type_zip@2x.png"; sourceTree = ""; }; - CCCBB9A42CB672C035BDA167AF14B5B5 /* ObserverType.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ObserverType.swift; path = RxSwift/ObserverType.swift; sourceTree = ""; }; - CD01A936C32FFD3D24477AD1FCF13EC7 /* AMapTrackVersion.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AMapTrackVersion.h; path = AMapTrackKit.framework/Headers/AMapTrackVersion.h; sourceTree = ""; }; - CD8CA33F60185113898F69628CE24689 /* Maybe.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Maybe.swift; path = RxSwift/Traits/PrimitiveSequence/Maybe.swift; sourceTree = ""; }; - CDAC41E06424EF48F0EFAB166FEA951A /* QLUtils.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = QLUtils.swift; path = Source/Extensions/QuickLayout/QLUtils.swift; sourceTree = ""; }; - CDCCB2489D20842CA14BA1DDE321B383 /* NSAttributedString+DDCategory.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSAttributedString+DDCategory.m"; path = "DDCategoryKit_Private/Classes/NSAttributedString+DDCategory/NSAttributedString+DDCategory.m"; sourceTree = ""; }; - CDD5894896C6C3A31F6051550E5EE67B /* RxSwift-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RxSwift-umbrella.h"; sourceTree = ""; }; - CDF84DDF6E0DF14CC99355C2346051DB /* DDAutoUIKit_Private-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "DDAutoUIKit_Private-prefix.pch"; sourceTree = ""; }; - CE0C400418A57E430B7A897E10E2C3F0 /* HTTPMethod.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = HTTPMethod.swift; path = Source/HTTPMethod.swift; sourceTree = ""; }; - CE15967E16ADD3D6778D28B4D158A893 /* IQUIView+Hierarchy.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "IQUIView+Hierarchy.swift"; path = "IQKeyboardManagerSwift/Categories/IQUIView+Hierarchy.swift"; sourceTree = ""; }; - CE300473ABE766018DAFE36E0D7FC040 /* UIEdgeInsets+Utils.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "UIEdgeInsets+Utils.swift"; path = "Source/Extensions/UIEdgeInsets+Utils.swift"; sourceTree = ""; }; - CE31FC0C42357BEF53314688AF3334CC /* AMapNaviDriveView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AMapNaviDriveView.h; path = AMapNaviKit.framework/Headers/AMapNaviDriveView.h; sourceTree = ""; }; - CE51B7A81EC396153A9E6CCCE51B8112 /* icon_file_type_java@3x.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = "icon_file_type_java@3x.png"; path = "Sources/Resources/FileType/icon_file_type_java@3x.png"; sourceTree = ""; }; - CE57F52C089BD04D71387FD1DE07D08B /* icon_file_type_mpg.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = icon_file_type_mpg.png; path = Sources/Resources/FileType/icon_file_type_mpg.png; sourceTree = ""; }; - CE72AE6F608F3AE7E5CF1AE672A38A9C /* UIImage+ExtendedCacheData.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIImage+ExtendedCacheData.m"; path = "DDWebImageKit_Private/Classes/SDWebImage/Core/UIImage+ExtendedCacheData.m"; sourceTree = ""; }; - CE8462BC1BA182E3A2822AD0B93E8F21 /* CocoaDebugTabBarController.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CocoaDebugTabBarController.swift; path = Sources/Window/CocoaDebugTabBarController.swift; sourceTree = ""; }; - CE8846EB6BEA4CC3D234394477030FC7 /* JXCategoryIndicatorRainbowLineView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JXCategoryIndicatorRainbowLineView.h; path = Sources/Indicator/IndicatorViews/JXCategoryIndicatorRainbowLineView.h; sourceTree = ""; }; - CEBA63E02F0B41B959C417938ADB2611 /* IQKeyboardManagerSwift.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = IQKeyboardManagerSwift.modulemap; sourceTree = ""; }; - CEBED202A7BD7E7708D1FC31CB41087E /* JXCategoryDotCell.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JXCategoryDotCell.h; path = Sources/Dot/JXCategoryDotCell.h; sourceTree = ""; }; - CEE738615B2EE401B9D22BDD2FDE075E /* DDCategoryKit_Private-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "DDCategoryKit_Private-umbrella.h"; sourceTree = ""; }; - CF7B59BA432F57F703832313508F60A2 /* AlamofireExtended.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AlamofireExtended.swift; path = Source/AlamofireExtended.swift; sourceTree = ""; }; - CF9126F8C5A0A9952759F53A8B451824 /* MABaseOverlay.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MABaseOverlay.h; path = AMapNaviKit.framework/Headers/MABaseOverlay.h; sourceTree = ""; }; - CFADC98B66F131932D5965DA7AB7DBB6 /* icon_file_type_zip.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = icon_file_type_zip.png; path = Sources/Resources/FileType/icon_file_type_zip.png; sourceTree = ""; }; - CFC896E3FA2CC8C09D306AFFBEE4BF35 /* IQKeyboardManager+UITextFieldViewNotification.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "IQKeyboardManager+UITextFieldViewNotification.swift"; path = "IQKeyboardManagerSwift/IQKeyboardManager+UITextFieldViewNotification.swift"; sourceTree = ""; }; - CFEE033FE9D1A1B81AC7FC79ADBD3A1C /* SerialDispatchQueueScheduler.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SerialDispatchQueueScheduler.swift; path = RxSwift/Schedulers/SerialDispatchQueueScheduler.swift; sourceTree = ""; }; - CFFA60E259E0725CE08A52581DA8AC4A /* CrashDetailViewController.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CrashDetailViewController.swift; path = Sources/App/CrashDetailViewController.swift; sourceTree = ""; }; - D010E5A496AF63C78C7ACE66E20B7513 /* ZFVolumeBrightnessView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = ZFVolumeBrightnessView.m; path = DDZFPlayerKit_Private/Classes/ControlView/ZFVolumeBrightnessView.m; sourceTree = ""; }; - D020FC5F77C529D9997835AAB997DE55 /* ObserverBase.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ObserverBase.swift; path = RxSwift/Observers/ObserverBase.swift; sourceTree = ""; }; - D02917726785129AE49B34F7497E3444 /* ZFKVOController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = ZFKVOController.m; path = DDZFPlayerKit_Private/Classes/Core/ZFKVOController.m; sourceTree = ""; }; - D029EBE8091BE422F610B2D1808FB46C /* BRBaseView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = BRBaseView.h; path = BRPickerView/Base/BRBaseView.h; sourceTree = ""; }; - D059C8591088B1A1A65711373817A550 /* EKAttributes+WindowLevel.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "EKAttributes+WindowLevel.swift"; path = "Source/Model/EntryAttributes/EKAttributes+WindowLevel.swift"; sourceTree = ""; }; - D0B00371094CE7CBDB73BF685DE96DF1 /* JXCategoryIndicatorProtocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JXCategoryIndicatorProtocol.h; path = Sources/Common/JXCategoryIndicatorProtocol.h; sourceTree = ""; }; - D0C36B4656AE99D7E0E9CF95B780899D /* DelegateProxy.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = DelegateProxy.swift; path = RxCocoa/Common/DelegateProxy.swift; sourceTree = ""; }; - D0D83D3DCDB0CC3CAC40E5810FB8B013 /* RxRelay-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RxRelay-umbrella.h"; sourceTree = ""; }; - D1541D7DB829A5E16C5155B203092B50 /* JXCategoryIndicatorRainbowLineView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = JXCategoryIndicatorRainbowLineView.m; path = Sources/Indicator/IndicatorViews/JXCategoryIndicatorRainbowLineView.m; sourceTree = ""; }; - D171E97D7F62A90F9BB6B33553E2E085 /* Event.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Event.swift; path = RxSwift/Event.swift; sourceTree = ""; }; - D197C63DCA5AB937249FE587E9D4D34B /* RxSwift.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = RxSwift.modulemap; sourceTree = ""; }; - D1D450EA98DFF1FBAC1C3CF9ACB65280 /* ZLEnlargeButton.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ZLEnlargeButton.swift; path = Sources/General/ZLEnlargeButton.swift; sourceTree = ""; }; - D1E1879238C379925C9778125D743648 /* DDBaseTableView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DDBaseTableView.h; path = DDBasicControlsKit_Private/Classes/DDBaseTableView/DDBaseTableView.h; sourceTree = ""; }; - D1EABDD51C0365036C719268DC8E4C14 /* Errors.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Errors.swift; path = RxSwift/Errors.swift; sourceTree = ""; }; - D1F1F338C713B5B2A43F16C275825488 /* ControlEvent.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ControlEvent.swift; path = RxCocoa/Traits/ControlEvent.swift; sourceTree = ""; }; - D1F443ED94189B5CE7CB68C4EA9DDA1F /* UITextField+Rx.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "UITextField+Rx.swift"; path = "RxCocoa/iOS/UITextField+Rx.swift"; sourceTree = ""; }; - D1F4AB4C455DA41DCED566945B86487A /* ResourceBundle-DDMAMapKit_Private-DDMAMapKit_Private-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "ResourceBundle-DDMAMapKit_Private-DDMAMapKit_Private-Info.plist"; sourceTree = ""; }; - D2142A23FED51336FE35550542EF7E14 /* AMapTrackManagerOptions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AMapTrackManagerOptions.h; path = AMapTrackKit.framework/Headers/AMapTrackManagerOptions.h; sourceTree = ""; }; - D28397021CF7BFA4F6801BD61C3EFE6B /* icon_file_type_mov.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = icon_file_type_mov.png; path = Sources/Resources/FileType/icon_file_type_mov.png; sourceTree = ""; }; - D2A47455674C5068617927590349D83A /* DDBaseTableViewCell.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DDBaseTableViewCell.m; path = DDBasicControlsKit_Private/Classes/DDBaseTableViewCell/DDBaseTableViewCell.m; sourceTree = ""; }; - D2CEE0757CECA67F05161F6CA66A375E /* BRAddressPickerView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = BRAddressPickerView.h; path = BRPickerView/AddressPickerView/BRAddressPickerView.h; sourceTree = ""; }; - D2D08685BDAEE28779E59509468968BE /* ConstraintLayoutSupportDSL.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ConstraintLayoutSupportDSL.swift; path = Sources/ConstraintLayoutSupportDSL.swift; sourceTree = ""; }; - D30914307B609A73B085A19C48B360A2 /* SchedulerServices+Emulation.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "SchedulerServices+Emulation.swift"; path = "RxSwift/Schedulers/SchedulerServices+Emulation.swift"; sourceTree = ""; }; - D30C1D5210212947274BE64F082D4C03 /* MAPointAnnotation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MAPointAnnotation.h; path = AMapNaviKit.framework/Headers/MAPointAnnotation.h; sourceTree = ""; }; - D3237AE0F5FD1B64B735F08E4475BD01 /* EKAttributes+LifecycleActions.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "EKAttributes+LifecycleActions.swift"; path = "Source/Model/EntryAttributes/EKAttributes+LifecycleActions.swift"; sourceTree = ""; }; - D3417B7FDC091AE661284928C1A8C3CD /* Kingfisher.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Kingfisher.swift; path = Sources/General/Kingfisher.swift; sourceTree = ""; }; - D381B861BA151A9E99E7710CEADE9E87 /* DDProgressHUDKit_Private.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = DDProgressHUDKit_Private.debug.xcconfig; sourceTree = ""; }; - D3BF524E03CC6BAB09AE4305C890EA90 /* ESTabBarItemContainer.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ESTabBarItemContainer.swift; path = Sources/ESTabBarItemContainer.swift; sourceTree = ""; }; - D3D7C4BFEA2FAE71F3A48825B492810E /* VirtualTimeConverterType.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = VirtualTimeConverterType.swift; path = RxSwift/Schedulers/VirtualTimeConverterType.swift; sourceTree = ""; }; - D3DEA65CE79229574FBD58D313F358C4 /* DDTableView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = DDTableView.swift; path = DDControlsKit_Private/Classes/DDTableView/DDTableView.swift; sourceTree = ""; }; - D41911FE49D72F85B47E41BF1435D37A /* ScheduledItemType.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ScheduledItemType.swift; path = RxSwift/Schedulers/Internal/ScheduledItemType.swift; sourceTree = ""; }; - D45CFD468C89B27771F42CA825E9D339 /* SDImageCacheConfig.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageCacheConfig.m; path = DDWebImageKit_Private/Classes/SDWebImage/Core/SDImageCacheConfig.m; sourceTree = ""; }; - D4AF0664AAC67CB7A1B35A70B3172727 /* SDImageGraphics.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageGraphics.m; path = DDWebImageKit_Private/Classes/SDWebImage/Core/SDImageGraphics.m; sourceTree = ""; }; - D4BF90DBB17561EE449485B9F3961F7A /* UIViewController+DDCategory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIViewController+DDCategory.h"; path = "DDCategoryKit_Private/Classes/UIViewController+DDCategory/UIViewController+DDCategory.h"; sourceTree = ""; }; - D4E1F50BBACE32F265EF192F607D27D1 /* icon_file_type_torrent@2x.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = "icon_file_type_torrent@2x.png"; path = "Sources/Resources/FileType/icon_file_type_torrent@2x.png"; sourceTree = ""; }; - D507B47C4DCB15DD9E5BF30CE649376E /* BRPickerView-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "BRPickerView-dummy.m"; sourceTree = ""; }; - D547177A6F340ECF0E1FB2680D12B6AA /* UIButton+DDCategory.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIButton+DDCategory.m"; path = "DDCategoryKit_Private/Classes/UIButton+DDCategory/UIButton+DDCategory.m"; sourceTree = ""; }; - D570A4715592EEE0E84979749C4BDDB0 /* AMapTrackKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; path = AMapTrackKit.framework; sourceTree = ""; }; - D576FE8F38A32946A041DDF582D3239F /* AMapSearch-NO-IDFA.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "AMapSearch-NO-IDFA.release.xcconfig"; sourceTree = ""; }; - D58EE7B1E242065257F357658D0CE30B /* icon_file_type_jpg.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = icon_file_type_jpg.png; path = Sources/Resources/FileType/icon_file_type_jpg.png; sourceTree = ""; }; - D5974C58854A55BDDB2637A6A24AD08E /* CocoaDebug.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = CocoaDebug.release.xcconfig; sourceTree = ""; }; - D5DDF6CEAE3C6307E052CC4FC715A20B /* UIImage+MemoryCacheCost.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImage+MemoryCacheCost.h"; path = "DDWebImageKit_Private/Classes/SDWebImage/Core/UIImage+MemoryCacheCost.h"; sourceTree = ""; }; - D5F7F12C30F26AB144E28C1B556E018C /* BehaviorRelay+Driver.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "BehaviorRelay+Driver.swift"; path = "RxCocoa/Traits/Driver/BehaviorRelay+Driver.swift"; sourceTree = ""; }; - D64419EB20729836BCED70D5915BC9B7 /* icon_file_type_json.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = icon_file_type_json.png; path = Sources/Resources/FileType/icon_file_type_json.png; sourceTree = ""; }; - D66984081B441C8CC2CC9138560B1175 /* UIColor+ZLPhotoBrowser.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "UIColor+ZLPhotoBrowser.swift"; path = "Sources/Extensions/UIColor+ZLPhotoBrowser.swift"; sourceTree = ""; }; - D67100E3E94492324FE15867927F7BC8 /* icon_file_type_mp3.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = icon_file_type_mp3.png; path = Sources/Resources/FileType/icon_file_type_mp3.png; sourceTree = ""; }; - D687FDDFD23A0A85F3880EAC2B88A600 /* JXCategoryListContainerRTLCell.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = JXCategoryListContainerRTLCell.m; path = Sources/Common/JXCategoryListContainerRTLCell.m; sourceTree = ""; }; - D69987E32B9EF5D98389E9AEFC0B6F53 /* ESTabBarItemContentView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ESTabBarItemContentView.swift; path = Sources/ESTabBarItemContentView.swift; sourceTree = ""; }; - D6D861BF2CC70926A385262F7593001A /* ESTabBarItemMoreContentView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ESTabBarItemMoreContentView.swift; path = Sources/ESTabBarItemMoreContentView.swift; sourceTree = ""; }; - D6DD9423507166D596B4E73021AF5BD6 /* DDColorKit_Private.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = DDColorKit_Private.debug.xcconfig; sourceTree = ""; }; - D7015B8FA2DFA4923F8592D733367DC4 /* UICollectionView+Rx.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "UICollectionView+Rx.swift"; path = "RxCocoa/iOS/UICollectionView+Rx.swift"; sourceTree = ""; }; - D7072FEBDCC76F9A7ED08B384752F6B8 /* AMapNaviTravelManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AMapNaviTravelManager.h; path = AMapNaviKit.framework/Headers/AMapNaviTravelManager.h; sourceTree = ""; }; - D73EEE7C2379E83FFD87CCEB168AA111 /* GIFAnimatedImage.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = GIFAnimatedImage.swift; path = Sources/Image/GIFAnimatedImage.swift; sourceTree = ""; }; - D775FD6C7A556F11338C50E643456F6F /* CompactMap.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CompactMap.swift; path = RxSwift/Observables/CompactMap.swift; sourceTree = ""; }; - D7C1624301DCE9B5827344EAD74ABF5E /* Cancelable.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Cancelable.swift; path = RxSwift/Cancelable.swift; sourceTree = ""; }; - D7E054A15DA718A5A20FDB121836D124 /* _QNSURLSessionDemux.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = _QNSURLSessionDemux.m; path = Sources/CustomHTTPProtocol/_QNSURLSessionDemux.m; sourceTree = ""; }; - D8380B7096F67ADF34521DE5787C76DF /* SingleAssignmentDisposable.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SingleAssignmentDisposable.swift; path = RxSwift/Disposables/SingleAssignmentDisposable.swift; sourceTree = ""; }; - D85A4D2507CC0168B8D03A7513369B03 /* ConstraintLayoutGuideDSL.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ConstraintLayoutGuideDSL.swift; path = Sources/ConstraintLayoutGuideDSL.swift; sourceTree = ""; }; - D86F50969AD3CBB8E6F242D17334F773 /* en.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = en.lproj; path = Sources/en.lproj; sourceTree = ""; }; - D8784F5F746E498824E0EF2D0E4354B6 /* SectionedViewDataSourceType.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SectionedViewDataSourceType.swift; path = RxCocoa/Common/SectionedViewDataSourceType.swift; sourceTree = ""; }; - D8ED028E36F42FA059551C165A0E6F95 /* ZLPhotoUIConfiguration.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ZLPhotoUIConfiguration.swift; path = Sources/General/ZLPhotoUIConfiguration.swift; sourceTree = ""; }; - D94A4EDE613329DDE8FB931F3755C158 /* icon_file_type_db@3x.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = "icon_file_type_db@3x.png"; path = "Sources/Resources/FileType/icon_file_type_db@3x.png"; sourceTree = ""; }; - D95560AF78D5AD51011845730ADA6F9B /* Queue.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Queue.swift; path = Platform/DataStructures/Queue.swift; sourceTree = ""; }; - D98A17E769637BA830304185E61703B1 /* NSDate+BRPickerView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSDate+BRPickerView.m"; path = "BRPickerView/DatePickerView/NSDate+BRPickerView.m"; sourceTree = ""; }; - D99869B6C6D3FF3103511E4F5A768364 /* icon_file_type_bin.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = icon_file_type_bin.png; path = Sources/Resources/FileType/icon_file_type_bin.png; sourceTree = ""; }; - D9B246A57BA794BF383866C50BC71E60 /* UIView+Utils.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "UIView+Utils.swift"; path = "Source/Extensions/UIView+Utils.swift"; sourceTree = ""; }; - D9F161BE6DF5CE4F410F92CC7C5D83C7 /* icon_file_type_psd@3x.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = "icon_file_type_psd@3x.png"; path = "Sources/Resources/FileType/icon_file_type_psd@3x.png"; sourceTree = ""; }; - D9F2BD832DF1E60682D1FCFCB5302168 /* DDBaseAttributedString.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DDBaseAttributedString.h; path = DDBasicControlsKit_Private/Classes/DDBaseAttributedString/DDBaseAttributedString.h; sourceTree = ""; }; - DA123D4EF40A4F164D6EF0D104019126 /* Binder.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Binder.swift; path = RxSwift/Binder.swift; sourceTree = ""; }; - DA275FB4459DFDEC8CB3B2D5219E2A8E /* MJRefreshConfig.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MJRefreshConfig.h; path = MJRefresh/MJRefreshConfig.h; sourceTree = ""; }; - DA38EEE0BA035A6B89855CE8BD5383FA /* ZLPhotoPreviewAnimatedTransition.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ZLPhotoPreviewAnimatedTransition.swift; path = Sources/Animation/ZLPhotoPreviewAnimatedTransition.swift; sourceTree = ""; }; + CA50061F5080EC34DF4203BBE861C65B /* Lock.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Lock.swift; path = RxSwift/Concurrency/Lock.swift; sourceTree = ""; }; + CA59578A436D396404D4B16D26B18806 /* icon_file_type_html.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = icon_file_type_html.png; path = Sources/Resources/FileType/icon_file_type_html.png; sourceTree = ""; }; + CA61AAE812298E0D209110E6327C2C96 /* Zip+Collection.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Zip+Collection.swift"; path = "RxSwift/Observables/Zip+Collection.swift"; sourceTree = ""; }; + CAE56C8AA2FEDC20E7202A7D8016E756 /* DispatchQueueConfiguration.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = DispatchQueueConfiguration.swift; path = RxSwift/Schedulers/Internal/DispatchQueueConfiguration.swift; sourceTree = ""; }; + CB2E8F051F4B981AB5E31D41EF9A0EBA /* UIColor+JXAdd.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIColor+JXAdd.m"; path = "Sources/Common/UIColor+JXAdd.m"; sourceTree = ""; }; + CB354A644B3F1AEF4070556DF5A0BAB1 /* MAHeatMapVectorOverlay.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MAHeatMapVectorOverlay.h; path = AMapNaviKit.framework/Headers/MAHeatMapVectorOverlay.h; sourceTree = ""; }; + CB3D7D33F6851AEC5A3A2DC1AE7CBA7E /* ZFKVOController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = ZFKVOController.m; path = DDZFPlayerKit_Private/Classes/Core/ZFKVOController.m; sourceTree = ""; }; + CB4263E5C73CE2EB0CA35F0E6E79F95B /* EKProperty.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = EKProperty.swift; path = Source/Model/EKProperty.swift; sourceTree = ""; }; + CB4C7C32EA8F4E1761CC1FBA38460899 /* _OCLoggerFormat.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = _OCLoggerFormat.m; path = Sources/Logs/_OCLoggerFormat.m; sourceTree = ""; }; + CBAD2E1103898DA8B26A312FC7B0A364 /* UIView+MJExtension.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIView+MJExtension.m"; path = "MJRefresh/UIView+MJExtension.m"; sourceTree = ""; }; + CBCA8A75A3E4A2EEF38B4FE7B49A7770 /* icon_file_type_json.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = icon_file_type_json.png; path = Sources/Resources/FileType/icon_file_type_json.png; sourceTree = ""; }; + CBDAFA119CAB9C629F8B5A98C33C7B3B /* MAPointAnnotation+DDCategory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "MAPointAnnotation+DDCategory.h"; path = "DDMAMapKit_Private/Classes/DDMAMap/Annotation/MAPointAnnotation+DDCategory.h"; sourceTree = ""; }; + CC037D082FC50C40CC2AB75FB80B1212 /* ZLPhotoPreviewPopInteractiveTransition.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ZLPhotoPreviewPopInteractiveTransition.swift; path = Sources/Animation/ZLPhotoPreviewPopInteractiveTransition.swift; sourceTree = ""; }; + CC0E980499AA4DCAB21A9D053F491BA1 /* ZLResultModel.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ZLResultModel.swift; path = Sources/General/ZLResultModel.swift; sourceTree = ""; }; + CC131E115AC397987555BDFAB62A38A3 /* ConstraintView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ConstraintView.swift; path = Sources/ConstraintView.swift; sourceTree = ""; }; + CC1EBD8EC6B7E7CB973B6900A8161461 /* DDZFPlayerKit_Private-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "DDZFPlayerKit_Private-dummy.m"; sourceTree = ""; }; + CC27872B95FB511368EDDB9AA3EC8E0A /* icon_file_type_numbers@3x.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = "icon_file_type_numbers@3x.png"; path = "Sources/Resources/FileType/icon_file_type_numbers@3x.png"; sourceTree = ""; }; + CC38CA313AB06EF5431FECD7C0BF4061 /* SDWebImageError.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageError.m; path = DDWebImageKit_Private/Classes/SDWebImage/Core/SDWebImageError.m; sourceTree = ""; }; + CC52A57A4CEC6A2EDBD2AD86F404E42A /* EKRatingSymbolView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = EKRatingSymbolView.swift; path = Source/MessageViews/MessagesUtils/EKRatingSymbolView.swift; sourceTree = ""; }; + CC659306530C8EB873C85F2CB942F879 /* UIScrollView+MJRefresh.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIScrollView+MJRefresh.m"; path = "MJRefresh/UIScrollView+MJRefresh.m"; sourceTree = ""; }; + CC6C9975029356137DCFE58612A80F0A /* ESTabBarController-swift-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "ESTabBarController-swift-prefix.pch"; sourceTree = ""; }; + CCE440C4A9E6B0E289D13EF13DB4BF2A /* UIColor+Utils.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "UIColor+Utils.swift"; path = "Source/Extensions/UIColor+Utils.swift"; sourceTree = ""; }; + CD23476084FF78183DB58F9F4571F8D9 /* UIWindow+DDCategory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIWindow+DDCategory.h"; path = "DDCategoryKit_Private/Classes/UIWindow+DDCategory/UIWindow+DDCategory.h"; sourceTree = ""; }; + CD31EE58FAAF33885501B7534A0A5F6F /* ControlEvent.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ControlEvent.swift; path = RxCocoa/Traits/ControlEvent.swift; sourceTree = ""; }; + CD63A5786193A6BAEA56557F715A5017 /* EKAttributes+HapticFeedback.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "EKAttributes+HapticFeedback.swift"; path = "Source/Model/EntryAttributes/EKAttributes+HapticFeedback.swift"; sourceTree = ""; }; + CD8845A0160C13E18380F1AA44F2D9AD /* SDMemoryCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDMemoryCache.h; path = DDWebImageKit_Private/Classes/SDWebImage/Core/SDMemoryCache.h; sourceTree = ""; }; + CDE52EA77DDCE1E02687EF64DEF9B5D8 /* AMapFoundationKit.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AMapFoundationKit.h; path = AMapFoundationKit.framework/Headers/AMapFoundationKit.h; sourceTree = ""; }; + CE40EFCA5E24E01C8DFAC18FD04439ED /* ZFUtilities.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ZFUtilities.h; path = DDZFPlayerKit_Private/Classes/ControlView/ZFUtilities.h; sourceTree = ""; }; + CED5104038089CCAD51220894DD24944 /* Network.storyboard */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = file.storyboard; name = Network.storyboard; path = Sources/Resources/Network.storyboard; sourceTree = ""; }; + CEF89EE4F63350FA0CB98FFB0B96BBF6 /* Error.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Error.swift; path = RxSwift/Observables/Error.swift; sourceTree = ""; }; + CF1ED322EF62AFF80D2F6138DB6DA67E /* MATileOverlayRenderer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MATileOverlayRenderer.h; path = AMapNaviKit.framework/Headers/MATileOverlayRenderer.h; sourceTree = ""; }; + CF37BF09619759044178949D04A293FB /* SDImageIOAnimatedCoderInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageIOAnimatedCoderInternal.h; path = DDWebImageKit_Private/Classes/SDWebImage/Private/SDImageIOAnimatedCoderInternal.h; sourceTree = ""; }; + CF61DC111AFB61149808206846131342 /* DDBasicControlsKit_Private-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "DDBasicControlsKit_Private-prefix.pch"; sourceTree = ""; }; + CF80A525B7281E66B3E29DBBD46A58B8 /* IQTitleBarButtonItem.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = IQTitleBarButtonItem.swift; path = IQKeyboardManagerSwift/IQToolbar/IQTitleBarButtonItem.swift; sourceTree = ""; }; + CF9A2229C87AE6A3C0E1D6AAE080A3D3 /* MAParticleOverlayRenderer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MAParticleOverlayRenderer.h; path = AMapNaviKit.framework/Headers/MAParticleOverlayRenderer.h; sourceTree = ""; }; + CFCC88300DF5490EC6A8FC56907D7CBD /* SerialDispatchQueueScheduler.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SerialDispatchQueueScheduler.swift; path = RxSwift/Schedulers/SerialDispatchQueueScheduler.swift; sourceTree = ""; }; + D0141DBF0FBAD76F5E97577F9C9C225A /* CallbackQueue.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CallbackQueue.swift; path = Sources/Utility/CallbackQueue.swift; sourceTree = ""; }; + D03B3691C165B2971CC8CD50D2218E12 /* SectionedViewDataSourceType.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SectionedViewDataSourceType.swift; path = RxCocoa/Common/SectionedViewDataSourceType.swift; sourceTree = ""; }; + D0870107DA8522EF705B7D6480F1771A /* SDImageCoderHelper.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageCoderHelper.m; path = DDWebImageKit_Private/Classes/SDWebImage/Core/SDImageCoderHelper.m; sourceTree = ""; }; + D08D1D68CE6D478AB9A9ED64A9CCD779 /* StartWith.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = StartWith.swift; path = RxSwift/Observables/StartWith.swift; sourceTree = ""; }; + D0AD26B18FD7E2C944AA8C1205ECD171 /* DDTimerManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DDTimerManager.h; path = DDTimerKit_Private/Classes/GCDTimer/DDTimerManager.h; sourceTree = ""; }; + D0B9EEC36F779AE74245C2F61A644FCD /* icon_file_type_mp4@3x.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = "icon_file_type_mp4@3x.png"; path = "Sources/Resources/FileType/icon_file_type_mp4@3x.png"; sourceTree = ""; }; + D125BAFD50654D75081EFBAFCC1351E6 /* BinaryDisposable.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = BinaryDisposable.swift; path = RxSwift/Disposables/BinaryDisposable.swift; sourceTree = ""; }; + D128A5E232982DE73FAAE66284182912 /* icon_file_type_pages@2x.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = "icon_file_type_pages@2x.png"; path = "Sources/Resources/FileType/icon_file_type_pages@2x.png"; sourceTree = ""; }; + D14439272C60D8168B066070AA5B4927 /* icon_file_type_doc@2x.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = "icon_file_type_doc@2x.png"; path = "Sources/Resources/FileType/icon_file_type_doc@2x.png"; sourceTree = ""; }; + D1A005411876EDC6C9C2015937E1E713 /* ConcurrentDispatchQueueScheduler.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ConcurrentDispatchQueueScheduler.swift; path = RxSwift/Schedulers/ConcurrentDispatchQueueScheduler.swift; sourceTree = ""; }; + D1A040E3C1A369F17169DEE671AF42D4 /* JXCategoryIndicatorCellModel.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = JXCategoryIndicatorCellModel.m; path = Sources/Indicator/JXCategoryIndicatorCellModel.m; sourceTree = ""; }; + D20CE1ACC6D5D487937C7AD9114FF6CC /* NetworkDetailCell.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = NetworkDetailCell.swift; path = Sources/Network/NetworkDetailCell.swift; sourceTree = ""; }; + D247E12CCF0B88203F756E2CB9CB6234 /* CocoaDebug-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "CocoaDebug-umbrella.h"; sourceTree = ""; }; + D24E1278A7685A01795991E9FD2EAA66 /* IQUITextFieldView+Additions.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "IQUITextFieldView+Additions.swift"; path = "IQKeyboardManagerSwift/Categories/IQUITextFieldView+Additions.swift"; sourceTree = ""; }; + D25EDFDD8B4C639983E4C92CBC39C560 /* JXCategoryDotCellModel.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = JXCategoryDotCellModel.m; path = Sources/Dot/JXCategoryDotCellModel.m; sourceTree = ""; }; + D266C2387F2CE19CEF74EC2E55AFC0D4 /* RxTabBarControllerDelegateProxy.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RxTabBarControllerDelegateProxy.swift; path = RxCocoa/iOS/Proxies/RxTabBarControllerDelegateProxy.swift; sourceTree = ""; }; + D27EC654DA0D57E391B837834CE54930 /* SDWebImageDownloader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageDownloader.h; path = DDWebImageKit_Private/Classes/SDWebImage/Core/SDWebImageDownloader.h; sourceTree = ""; }; + D28547BA2899F7E20BA891DC0869FF30 /* SDImageCachesManagerOperation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageCachesManagerOperation.h; path = DDWebImageKit_Private/Classes/SDWebImage/Private/SDImageCachesManagerOperation.h; sourceTree = ""; }; + D2DC7453F3FCCEE3E16BBB5544D09300 /* MJRefreshConst.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MJRefreshConst.h; path = MJRefresh/MJRefreshConst.h; sourceTree = ""; }; + D2F9E235A25B386360798672925CDBAB /* MAGltfOverlayRenderer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MAGltfOverlayRenderer.h; path = AMapNaviKit.framework/Headers/MAGltfOverlayRenderer.h; sourceTree = ""; }; + D306A841BCA7CA90D31C854E3CCCBCA3 /* CocoaDebug.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CocoaDebug.swift; path = Sources/Core/CocoaDebug.swift; sourceTree = ""; }; + D3BEE0CC8874A662DC27CD4C64EAB17E /* _SwiftLogHelper.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = _SwiftLogHelper.swift; path = Sources/Logs/_SwiftLogHelper.swift; sourceTree = ""; }; + D3CE7A45B66F1B3D2596512F99B784F9 /* RxTarget.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RxTarget.swift; path = RxCocoa/Common/RxTarget.swift; sourceTree = ""; }; + D3FEDA019CD04B1F913E1664AC449785 /* UIScreen+DDCategory.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIScreen+DDCategory.m"; path = "DDCategoryKit_Private/Classes/UIScreen+DDCategory/UIScreen+DDCategory.m"; sourceTree = ""; }; + D457B164D64164DD49B7FF00921C759B /* Switch.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Switch.swift; path = RxSwift/Observables/Switch.swift; sourceTree = ""; }; + D47A3E362A3F2756AE08DF79E8D860B0 /* icon_file_type_mov@2x.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = "icon_file_type_mov@2x.png"; path = "Sources/Resources/FileType/icon_file_type_mov@2x.png"; sourceTree = ""; }; + D4838910D44FA150E26BFE42CEA3D57A /* Debug.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Debug.swift; path = RxSwift/Observables/Debug.swift; sourceTree = ""; }; + D4913655D4F50C8A2D4F91427244E177 /* JXCategoryDotCell.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = JXCategoryDotCell.m; path = Sources/Dot/JXCategoryDotCell.m; sourceTree = ""; }; + D4CFE1FD9063844C7726DE9D69BA7F91 /* IQKeyboardManager.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = IQKeyboardManager.swift; path = IQKeyboardManagerSwift/IQKeyboardManager.swift; sourceTree = ""; }; + D4D32829D54A1ECAE44AE1433ED7CD8A /* ZLThumbnailViewController.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ZLThumbnailViewController.swift; path = Sources/General/ZLThumbnailViewController.swift; sourceTree = ""; }; + D50645F7D4025B09F2BF43C445A05769 /* ImageProgressive.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ImageProgressive.swift; path = Sources/Image/ImageProgressive.swift; sourceTree = ""; }; + D51D42263870E4959761C5CBF89B4D36 /* JXCategoryDotView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JXCategoryDotView.h; path = Sources/Dot/JXCategoryDotView.h; sourceTree = ""; }; + D524906AF89C104711EC3EAB52B1041C /* BRAddressModel.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = BRAddressModel.m; path = BRPickerView/AddressPickerView/BRAddressModel.m; sourceTree = ""; }; + D587460C9FE0BDBFDEBB77F081C0C7B9 /* EKSimpleMessageView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = EKSimpleMessageView.swift; path = Source/MessageViews/EKSimpleMessageView.swift; sourceTree = ""; }; + D596FA74EF08E061C4F7568AA37A7A2C /* SDImageCachesManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageCachesManager.h; path = DDWebImageKit_Private/Classes/SDWebImage/Core/SDImageCachesManager.h; sourceTree = ""; }; + D59F28AA67F900CC609CE298D2576872 /* ConstraintDirectionalInsetTarget.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ConstraintDirectionalInsetTarget.swift; path = Sources/ConstraintDirectionalInsetTarget.swift; sourceTree = ""; }; + D5BAA6E380D28A43A55466D3ECB2CEB2 /* MAOfflineMap.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MAOfflineMap.h; path = AMapNaviKit.framework/Headers/MAOfflineMap.h; sourceTree = ""; }; + D60FC33C250517DE39F2A4608A508001 /* DDCategoryKit_Private-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "DDCategoryKit_Private-dummy.m"; sourceTree = ""; }; + D64A3DA85615ED1A56221AB6F36FA565 /* ImageDownloader.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ImageDownloader.swift; path = Sources/Networking/ImageDownloader.swift; sourceTree = ""; }; + D69D678E5C111AC128EA7ED941DA19E3 /* SynchronizedDisposeType.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SynchronizedDisposeType.swift; path = RxSwift/Concurrency/SynchronizedDisposeType.swift; sourceTree = ""; }; + D6A30222DA6B089C8449D6D03D27304B /* DelaySubscription.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = DelaySubscription.swift; path = RxSwift/Observables/DelaySubscription.swift; sourceTree = ""; }; + D6A832E4BDE66310505B95C163812E18 /* UICollectionViewLayout+MJRefresh.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UICollectionViewLayout+MJRefresh.m"; path = "MJRefresh/UICollectionViewLayout+MJRefresh.m"; sourceTree = ""; }; + D6A91AC492399EBB9349BF3258B4E2F9 /* icon_file_type_md@3x.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = "icon_file_type_md@3x.png"; path = "Sources/Resources/FileType/icon_file_type_md@3x.png"; sourceTree = ""; }; + D6C3A417AFBEF6CC7DD4BD115B73ED05 /* ZLClipImageDismissAnimatedTransition.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ZLClipImageDismissAnimatedTransition.swift; path = Sources/Animation/ZLClipImageDismissAnimatedTransition.swift; sourceTree = ""; }; + D6D31330E245C2EA5994F1BBCCFAFC48 /* DDColorKit_Private.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = DDColorKit_Private.release.xcconfig; sourceTree = ""; }; + D6D76D8308027749FBA599D6DD35FF64 /* _OCLogModel.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = _OCLogModel.m; path = Sources/Logs/_OCLogModel.m; sourceTree = ""; }; + D6FA7BC08E5B083E87699220DD556439 /* SwiftEntryKit-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "SwiftEntryKit-prefix.pch"; sourceTree = ""; }; + D6FABDEB118D3EB7C83C9F297B318F44 /* ZLPhotoPreviewCell.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ZLPhotoPreviewCell.swift; path = Sources/General/ZLPhotoPreviewCell.swift; sourceTree = ""; }; + D6FD1CE43A4082C6AE2CAD9DC2E37800 /* UIApplication+DDCategory.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIApplication+DDCategory.m"; path = "DDCategoryKit_Private/Classes/UIApplication+DDCategory/UIApplication+DDCategory.m"; sourceTree = ""; }; + D713710C17AB03B2D2C99DA83E4B5D4F /* UISwitch+DDCategory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UISwitch+DDCategory.h"; path = "DDCategoryKit_Private/Classes/UISwitch+DDCategory/UISwitch+DDCategory.h"; sourceTree = ""; }; + D720BF78D27A47F9F37F5ED11EC360A1 /* Kingfisher.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = Kingfisher.modulemap; sourceTree = ""; }; + D72722D1F42CF12E6DA94E811D24013A /* ZFPlayerView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ZFPlayerView.h; path = DDZFPlayerKit_Private/Classes/Core/ZFPlayerView.h; sourceTree = ""; }; + D731AF5919347A7BD2190D3DC68B53D1 /* SharedSequence.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SharedSequence.swift; path = RxCocoa/Traits/SharedSequence/SharedSequence.swift; sourceTree = ""; }; + D766108C63302794A10BCB54AC1C5EFB /* EKAlertMessage.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = EKAlertMessage.swift; path = Source/Model/EKAlertMessage.swift; sourceTree = ""; }; + D7BA7283E37F5D7B60EC55AA8AEA5B0E /* Kingfisher.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = Kingfisher.release.xcconfig; sourceTree = ""; }; + D8080D1F1FBD07B6EB13C1A0757CA76E /* UICollectionView+DDCategory.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UICollectionView+DDCategory.m"; path = "DDCategoryKit_Private/Classes/UICollectionView+DDCategory/UICollectionView+DDCategory.m"; sourceTree = ""; }; + D86FF60913CC9C7DA46B62C1C683E05D /* NSBundle+MJRefresh.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSBundle+MJRefresh.h"; path = "MJRefresh/NSBundle+MJRefresh.h"; sourceTree = ""; }; + D87581580CFB7BF2D5AEAB3645B785F0 /* DDBaseImage.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DDBaseImage.h; path = DDBasicControlsKit_Private/Classes/DDBaseImage/DDBaseImage.h; sourceTree = ""; }; + D89CE207A9418AA4AB812BE98C43EA68 /* LogViewController.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = LogViewController.swift; path = Sources/Logs/LogViewController.swift; sourceTree = ""; }; + D8CC044D31EE8821B7EDADB1B86C09DD /* NetworkDetailModel.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = NetworkDetailModel.swift; path = Sources/Network/NetworkDetailModel.swift; sourceTree = ""; }; + D8CE4345B7053A0BA4B5FC579F2842A1 /* JXCategoryIndicatorProtocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JXCategoryIndicatorProtocol.h; path = Sources/Common/JXCategoryIndicatorProtocol.h; sourceTree = ""; }; + D96CA72F567147EB6E41400EF7D697CD /* ZFPortraitControlView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ZFPortraitControlView.h; path = DDZFPlayerKit_Private/Classes/ControlView/ZFPortraitControlView.h; sourceTree = ""; }; + D9BDF0B2899C443FF8D72F62B68543A3 /* RxCollectionViewDataSourceProxy.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RxCollectionViewDataSourceProxy.swift; path = RxCocoa/iOS/Proxies/RxCollectionViewDataSourceProxy.swift; sourceTree = ""; }; + D9E08A8F6D5F1B59921743A703B65C31 /* MBProgressHUD.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MBProgressHUD.h; path = DDProgressHUDKit_Private/Classes/MBProgressHUD.h; sourceTree = ""; }; + D9FE3252CF8E8E98B9AB675FEF0AE538 /* CocoaDebug.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = CocoaDebug.release.xcconfig; sourceTree = ""; }; + D9FE7C477A1AEE3F62DAA92AADBC20DB /* ConstraintMakerPrioritizable.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ConstraintMakerPrioritizable.swift; path = Sources/ConstraintMakerPrioritizable.swift; sourceTree = ""; }; + DA1745FBAE3E5691CE7109A84B940193 /* RTLManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RTLManager.m; path = Sources/RLTManager/RTLManager.m; sourceTree = ""; }; + DA45655B3BFCB73542F94FBC8B5EB767 /* ZFLandScapeControlView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ZFLandScapeControlView.h; path = DDZFPlayerKit_Private/Classes/ControlView/ZFLandScapeControlView.h; sourceTree = ""; }; + DA4FCB301911D04CC242320EAC14CF8B /* _HttpDatasource.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = _HttpDatasource.h; path = Sources/Network/_HttpDatasource.h; sourceTree = ""; }; DA5F7E5AA5A762E4504855EAF3216C8A /* SwiftEntryKit */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = SwiftEntryKit; path = libSwiftEntryKit.a; sourceTree = BUILT_PRODUCTS_DIR; }; - DA6ABCF9ABD131742ABDA6E77E905C13 /* UIPickerView+Rx.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "UIPickerView+Rx.swift"; path = "RxCocoa/iOS/UIPickerView+Rx.swift"; sourceTree = ""; }; - DA91556F1E07478E1A9D56C584CD9D5F /* UIView+ZFFrame.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIView+ZFFrame.m"; path = "DDZFPlayerKit_Private/Classes/ControlView/UIView+ZFFrame.m"; sourceTree = ""; }; - DAAA0F5380E9FEA43239A111EEE9E9A0 /* ZFPlayerLogManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ZFPlayerLogManager.h; path = DDZFPlayerKit_Private/Classes/Core/ZFPlayerLogManager.h; sourceTree = ""; }; - DAD40349ED356CD841F847207C4AD406 /* ZLImageStickerView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ZLImageStickerView.swift; path = Sources/Edit/ZLImageStickerView.swift; sourceTree = ""; }; - DAE7DDEA88F9534C8374515FC7532B0B /* ConstraintPriorityTarget.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ConstraintPriorityTarget.swift; path = Sources/ConstraintPriorityTarget.swift; sourceTree = ""; }; - DAEE1D6FC403D22017C2A22DE3E2A199 /* UIImageView+ZFCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImageView+ZFCache.h"; path = "DDZFPlayerKit_Private/Classes/ControlView/UIImageView+ZFCache.h"; sourceTree = ""; }; + DA6D1F3BDA26F9D8031D18A9709FD89E /* UINavigationItem+DDCategory.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UINavigationItem+DDCategory.m"; path = "DDCategoryKit_Private/Classes/UINavigationItem+DDCategory/UINavigationItem+DDCategory.m"; sourceTree = ""; }; + DA7723343606DB94300D7CABEEC931C5 /* SDWebImageCompat.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageCompat.m; path = DDWebImageKit_Private/Classes/SDWebImage/Core/SDWebImageCompat.m; sourceTree = ""; }; + DAC571C4B8113F5D2CD8C8D9259B8549 /* icon_file_type_txt.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = icon_file_type_txt.png; path = Sources/Resources/FileType/icon_file_type_txt.png; sourceTree = ""; }; + DADACDBCCA4C393F0DFB836E30849B8D /* Using.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Using.swift; path = RxSwift/Observables/Using.swift; sourceTree = ""; }; DAFE13D35532C1BA0D3624F4C38BEE8E /* DDLogKit_Private */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = DDLogKit_Private; path = libDDLogKit_Private.a; sourceTree = BUILT_PRODUCTS_DIR; }; - DB0F95E48107D4A4A6B528B72852BAF8 /* DDColorKit_Private-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "DDColorKit_Private-prefix.pch"; sourceTree = ""; }; - DB6C882E4E62E13A811162E2E9FAA808 /* _OCLoggerFormat.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = _OCLoggerFormat.m; path = Sources/Logs/_OCLoggerFormat.m; sourceTree = ""; }; - DB7792D0387066948696DEAD7ED82CB2 /* UICollectionViewLayout+MJRefresh.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UICollectionViewLayout+MJRefresh.m"; path = "MJRefresh/UICollectionViewLayout+MJRefresh.m"; sourceTree = ""; }; - DB7F20E80EE3FD1D582D1EA2702E82A9 /* NSButton+WebCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSButton+WebCache.h"; path = "DDWebImageKit_Private/Classes/SDWebImage/Core/NSButton+WebCache.h"; sourceTree = ""; }; - DB9377FE70E725C2C1E493810F3BA068 /* JXCategoryBaseCell.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JXCategoryBaseCell.h; path = Sources/Base/JXCategoryBaseCell.h; sourceTree = ""; }; - DBA3A09EB66F076AAEA3E23DB232135D /* MJRefreshTrailer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MJRefreshTrailer.h; path = MJRefresh/Base/MJRefreshTrailer.h; sourceTree = ""; }; - DBDC68D4F03D15C5B98048E8DD70FE27 /* SDAsyncBlockOperation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDAsyncBlockOperation.m; path = DDWebImageKit_Private/Classes/SDWebImage/Private/SDAsyncBlockOperation.m; sourceTree = ""; }; - DBDE4BD4B34C4F639B69D9094F4AE157 /* DDToastKit_Private.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = DDToastKit_Private.modulemap; sourceTree = ""; }; - DC15CD44D1EB345DA005F262678E82D0 /* ReplaySubject.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ReplaySubject.swift; path = RxSwift/Subjects/ReplaySubject.swift; sourceTree = ""; }; - DC510E685D4BE6E79BD44EEDE0A38ADD /* SDWebImageCompat.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageCompat.m; path = DDWebImageKit_Private/Classes/SDWebImage/Core/SDWebImageCompat.m; sourceTree = ""; }; - DC8FF206EA4311BFE11672972EE2C128 /* MAGroundOverlay.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MAGroundOverlay.h; path = AMapNaviKit.framework/Headers/MAGroundOverlay.h; sourceTree = ""; }; - DCC90D8A95AD64D2D83B3AF547E47A72 /* AMapNaviTrafficBarView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AMapNaviTrafficBarView.h; path = AMapNaviKit.framework/Headers/AMapNaviTrafficBarView.h; sourceTree = ""; }; - DCDD240DAB2ED34D8A4CD53168F9BDD9 /* JXCategoryBaseView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = JXCategoryBaseView.m; path = Sources/Base/JXCategoryBaseView.m; sourceTree = ""; }; - DCFC563E617986D3EDAAEAD48434782C /* SDWebImageDownloaderResponseModifier.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageDownloaderResponseModifier.m; path = DDWebImageKit_Private/Classes/SDWebImage/Core/SDWebImageDownloaderResponseModifier.m; sourceTree = ""; }; - DD01BAA8B1AA1AF8B6579BFB9056C767 /* icon_file_type_eps.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = icon_file_type_eps.png; path = Sources/Resources/FileType/icon_file_type_eps.png; sourceTree = ""; }; - DD1D3991EFD3878A788C8243BB37500F /* MJRefresh.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MJRefresh.h; path = MJRefresh/MJRefresh.h; sourceTree = ""; }; - DD5BF07633A9C9F924F4FC7FE9BF5E42 /* _DeviceUtil.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = _DeviceUtil.m; path = Sources/Core/_DeviceUtil.m; sourceTree = ""; }; - DD7BF2C4E9CDB9D06C95B434FCF30741 /* RxWKNavigationDelegateProxy.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RxWKNavigationDelegateProxy.swift; path = RxCocoa/iOS/Proxies/RxWKNavigationDelegateProxy.swift; sourceTree = ""; }; - DD95241372FB8882C27B3F27E05A916C /* CocoaDebugWindow.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CocoaDebugWindow.swift; path = Sources/Window/CocoaDebugWindow.swift; sourceTree = ""; }; - DDB0356CC57B3E72F39C88E1017F2CA4 /* SharedSequence.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SharedSequence.swift; path = RxCocoa/Traits/SharedSequence/SharedSequence.swift; sourceTree = ""; }; - DDD4C6D358BE05EC583919869948E636 /* UIButton+WebCache.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIButton+WebCache.m"; path = "DDWebImageKit_Private/Classes/SDWebImage/Core/UIButton+WebCache.m"; sourceTree = ""; }; - DDF60A7CBA97E594F3991A474915F912 /* UIScrollView+ZFPlayer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIScrollView+ZFPlayer.m"; path = "DDZFPlayerKit_Private/Classes/Core/UIScrollView+ZFPlayer.m"; sourceTree = ""; }; - DE1FC7712F33CBA4A75F68470D2C9C57 /* RxCocoaRuntime.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RxCocoaRuntime.h; path = RxCocoa/Runtime/include/RxCocoaRuntime.h; sourceTree = ""; }; - DE2C4249D20EA550B89420611F39354D /* CrashCell.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CrashCell.swift; path = Sources/App/CrashCell.swift; sourceTree = ""; }; - DE5B8EF20C08981C4AE6825720C8C7EC /* DDButton.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = DDButton.swift; path = DDControlsKit_Private/Classes/DDButton/DDButton.swift; sourceTree = ""; }; - DE60C69423BFFE3746AAA13660AD63B2 /* MAShape.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MAShape.h; path = AMapNaviKit.framework/Headers/MAShape.h; sourceTree = ""; }; - DE8A8B76A785521C5E293E6DC8EBCE32 /* ControlProperty.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ControlProperty.swift; path = RxCocoa/Traits/ControlProperty.swift; sourceTree = ""; }; - DE90732A6C3DA92864E3A4AEAB12CCFA /* DDTextField.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = DDTextField.swift; path = DDControlsKit_Private/Classes/DDTextField/DDTextField.swift; sourceTree = ""; }; - DECB4FF0AFEC2660F82031B7A11580F6 /* IQKeyboardManagerSwift-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "IQKeyboardManagerSwift-prefix.pch"; sourceTree = ""; }; - DEE484EA1966514E7E17A9C82B4CAD37 /* SDImageCacheConfig.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageCacheConfig.h; path = DDWebImageKit_Private/Classes/SDWebImage/Core/SDImageCacheConfig.h; sourceTree = ""; }; - DEE5460475CDA082B35D7BFADD2CE7EE /* Single.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Single.swift; path = RxSwift/Traits/PrimitiveSequence/Single.swift; sourceTree = ""; }; - DEF05C5DE142415E1C6BB95036012A69 /* UIBarButtonItem+Rx.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "UIBarButtonItem+Rx.swift"; path = "RxCocoa/iOS/UIBarButtonItem+Rx.swift"; sourceTree = ""; }; - DF00ACF43E6306DE8FEC5BDB2A03DF1A /* Utils.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Utils.swift; path = RxRelay/Utils.swift; sourceTree = ""; }; - DF24C60F5B36A70A90D1EC4D2AA87D3E /* LogViewController.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = LogViewController.swift; path = Sources/Logs/LogViewController.swift; sourceTree = ""; }; - DF2A5F07F9D3591EA63E3BB2244A8B02 /* NSMutableAttributedString+DDCategory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSMutableAttributedString+DDCategory.h"; path = "DDCategoryKit_Private/Classes/NSAttributedString+DDCategory/NSMutableAttributedString+DDCategory.h"; sourceTree = ""; }; - DF3C58CD8F4A0E9BE39F560C6F8C6E26 /* ConstraintOffsetTarget.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ConstraintOffsetTarget.swift; path = Sources/ConstraintOffsetTarget.swift; sourceTree = ""; }; - DF4462704D7F5E1ED52BA80B51705E1E /* icon_file_type_gif@2x.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = "icon_file_type_gif@2x.png"; path = "Sources/Resources/FileType/icon_file_type_gif@2x.png"; sourceTree = ""; }; - DF8523877E0B88FDBF40E3CCF36DA770 /* MAArc.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MAArc.h; path = AMapNaviKit.framework/Headers/MAArc.h; sourceTree = ""; }; - DFB956D0E3DED5D81F10E5FEC9277167 /* MAGroundOverlayRenderer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MAGroundOverlayRenderer.h; path = AMapNaviKit.framework/Headers/MAGroundOverlayRenderer.h; sourceTree = ""; }; - DFE9A23E712845344C8FDBF91A85E437 /* _DeviceUtil.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = _DeviceUtil.h; path = Sources/Core/_DeviceUtil.h; sourceTree = ""; }; - DFEC3DF4FFA2328FE6B30866CA8718CE /* Alamofire-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Alamofire-prefix.pch"; sourceTree = ""; }; - DFFE5876AEE507E303870C6ECCBB4F7C /* AMapNavi.bundle */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = "wrapper.plug-in"; name = AMapNavi.bundle; path = AMapNaviKit.framework/AMapNavi.bundle; sourceTree = ""; }; - E0005636539469F1B19BF39B4E3532CC /* SDImageIOCoder.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageIOCoder.m; path = DDWebImageKit_Private/Classes/SDWebImage/Core/SDImageIOCoder.m; sourceTree = ""; }; - E07B3850AA234289C1F9C117E5EFFEDB /* Bundle+ZLPhotoBrowser.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Bundle+ZLPhotoBrowser.swift"; path = "Sources/Extensions/Bundle+ZLPhotoBrowser.swift"; sourceTree = ""; }; - E08DB0ACF03AC86DAE079CA172A0EB0F /* Materialize.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Materialize.swift; path = RxSwift/Observables/Materialize.swift; sourceTree = ""; }; - E09AAEF8F18D76B513D39EB70092EC2A /* Result+Alamofire.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Result+Alamofire.swift"; path = "Source/Result+Alamofire.swift"; sourceTree = ""; }; - E0C234B00E785632AAADCB6C6E6762D4 /* MACircle.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MACircle.h; path = AMapNaviKit.framework/Headers/MACircle.h; sourceTree = ""; }; - E0DF098C1C0D65D1651366FD8CF80DD5 /* UIColor+SDHexString.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIColor+SDHexString.h"; path = "DDWebImageKit_Private/Classes/SDWebImage/Private/UIColor+SDHexString.h"; sourceTree = ""; }; - E0EACDEF5821A46A7F2B031F73F7E406 /* CocoaDebugSettings.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CocoaDebugSettings.swift; path = Sources/Core/CocoaDebugSettings.swift; sourceTree = ""; }; - E0F861D79898E92B47D4CC5145AD129E /* Placeholder.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Placeholder.swift; path = Sources/Image/Placeholder.swift; sourceTree = ""; }; - E10A1AB973CE69ADE8F346E5B990119C /* ZFPortraitViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ZFPortraitViewController.h; path = DDZFPlayerKit_Private/Classes/Core/ZFPortraitViewController.h; sourceTree = ""; }; - E12C97D31B0C1C060F7D016DAB6238D0 /* ZFPlayerLogManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = ZFPlayerLogManager.m; path = DDZFPlayerKit_Private/Classes/Core/ZFPlayerLogManager.m; sourceTree = ""; }; - E17D302F81EE006B785285A4F68C0DD2 /* ConstraintView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ConstraintView.swift; path = Sources/ConstraintView.swift; sourceTree = ""; }; - E1A5FB9FF190E6A851E6D730E9469DAF /* JXCategoryIndicatorLineView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = JXCategoryIndicatorLineView.m; path = Sources/Indicator/IndicatorViews/JXCategoryIndicatorLineView.m; sourceTree = ""; }; - E1C0FDF2AC90EDC6DC4A07BC5CE01BD1 /* MAOfflineProvince.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MAOfflineProvince.h; path = AMapNaviKit.framework/Headers/MAOfflineProvince.h; sourceTree = ""; }; - E1F1FCDDE6E882ABCEFA3430974CDC45 /* UIView+WebCacheOperation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIView+WebCacheOperation.h"; path = "DDWebImageKit_Private/Classes/SDWebImage/Core/UIView+WebCacheOperation.h"; sourceTree = ""; }; - E20EB882B39B434AA5AD95235E478D1A /* icon_file_type_bin@3x.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = "icon_file_type_bin@3x.png"; path = "Sources/Resources/FileType/icon_file_type_bin@3x.png"; sourceTree = ""; }; - E21D8D01411C02735C3A0BA2492F2CC8 /* AnimatedImageView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AnimatedImageView.swift; path = Sources/Views/AnimatedImageView.swift; sourceTree = ""; }; - E22E8A76D086243D8CA403C704BB0BE0 /* DDBaseScrollView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DDBaseScrollView.m; path = DDBasicControlsKit_Private/Classes/DDBaseScrollView/DDBaseScrollView.m; sourceTree = ""; }; - E25A6DE8E423E7829A85CD4DBA0883E6 /* RxCocoa-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RxCocoa-prefix.pch"; sourceTree = ""; }; - E2718275ADFFF64A9A0871517DB8D573 /* JXCategoryDotView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = JXCategoryDotView.m; path = Sources/Dot/JXCategoryDotView.m; sourceTree = ""; }; - E296FBA6F539F9A0A0AE37FE624E190F /* DDCategory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DDCategory.h; path = DDCategoryKit_Private/Classes/DDCategory.h; sourceTree = ""; }; - E2A8FC1D08C54C5818E2BA46C869C91B /* AMap.bundle */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = "wrapper.plug-in"; name = AMap.bundle; path = AMapNaviKit.framework/AMap.bundle; sourceTree = ""; }; - E2FD867CC0D390E06BAC46D9D2BF4CC6 /* icon_file_type_apk.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = icon_file_type_apk.png; path = Sources/Resources/FileType/icon_file_type_apk.png; sourceTree = ""; }; - E3BD18BC17CE25C56CD5CE13E1117F55 /* Empty.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Empty.swift; path = RxSwift/Observables/Empty.swift; sourceTree = ""; }; - E3FB5880B059CCF77963964B81E2DDBD /* icon_file_type_apk@3x.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = "icon_file_type_apk@3x.png"; path = "Sources/Resources/FileType/icon_file_type_apk@3x.png"; sourceTree = ""; }; - E40773978972EDF6AF516127631A14AA /* SchedulerType.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SchedulerType.swift; path = RxSwift/SchedulerType.swift; sourceTree = ""; }; - E4147EC81C2A6472F43255F86B1E32DE /* SDmetamacros.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDmetamacros.h; path = DDWebImageKit_Private/Classes/SDWebImage/Private/SDmetamacros.h; sourceTree = ""; }; - E420A9177DD5FE6F1C1E5392BD6FC04C /* Debug.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Debug.swift; path = RxSwift/Observables/Debug.swift; sourceTree = ""; }; + DB243464AB07C65DCFB6CA6085BF2DEC /* RxPickerViewDelegateProxy.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RxPickerViewDelegateProxy.swift; path = RxCocoa/iOS/Proxies/RxPickerViewDelegateProxy.swift; sourceTree = ""; }; + DB5035681FC46F97890BBDA4BE1BBECC /* SDWebImagePrefetcher.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImagePrefetcher.m; path = DDWebImageKit_Private/Classes/SDWebImage/Core/SDWebImagePrefetcher.m; sourceTree = ""; }; + DB67D38AC26C1E33F0B2A67C4C7E10EC /* MATraceReplayOverlayRender.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MATraceReplayOverlayRender.h; path = DDMAMapKit_Private/Classes/DDMAMap/Trace/MATraceReplayOverlayRender.h; sourceTree = ""; }; + DB7B6A55DD89339221BAD8B2FC088B99 /* _BacktraceLogger.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = _BacktraceLogger.h; path = Sources/Monitor/_BacktraceLogger.h; sourceTree = ""; }; + DBAD8CF2025EAC546A2B1BDB5F16CBF0 /* MemoryStorage.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = MemoryStorage.swift; path = Sources/Cache/MemoryStorage.swift; sourceTree = ""; }; + DBBC563534DD70AD434DBFB35E5D1C5D /* icon_file_type_js@3x.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = "icon_file_type_js@3x.png"; path = "Sources/Resources/FileType/icon_file_type_js@3x.png"; sourceTree = ""; }; + DBBD2ED3AF3275E2FFD63AB752166430 /* ZLPhotoUIConfiguration+Chaining.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "ZLPhotoUIConfiguration+Chaining.swift"; path = "Sources/General/ZLPhotoUIConfiguration+Chaining.swift"; sourceTree = ""; }; + DBCCB47A684BC2C8E34FD72CB4E35A85 /* NSObject+CocoaDebug.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSObject+CocoaDebug.m"; path = "Sources/Categories/NSObject+CocoaDebug.m"; sourceTree = ""; }; + DBCD7891F2C9FBF26C01A4B606D572EA /* _NetworkHelper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = _NetworkHelper.h; path = Sources/Network/_NetworkHelper.h; sourceTree = ""; }; + DBE5220C9408E2E3F2303535F96F7160 /* _DirectoryContentsTableViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = _DirectoryContentsTableViewController.h; path = Sources/Sandbox/_DirectoryContentsTableViewController.h; sourceTree = ""; }; + DBEC891CEE309B242862AF7413655386 /* UIRefreshControl+Rx.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "UIRefreshControl+Rx.swift"; path = "RxCocoa/iOS/UIRefreshControl+Rx.swift"; sourceTree = ""; }; + DBFC124EED6E586756C64ACD8FE730B0 /* DDBaseLabel.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DDBaseLabel.m; path = DDBasicControlsKit_Private/Classes/DDBaseLabel/DDBaseLabel.m; sourceTree = ""; }; + DC084944C38AB1F9506B44FC5985959B /* RxTabBarDelegateProxy.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RxTabBarDelegateProxy.swift; path = RxCocoa/iOS/Proxies/RxTabBarDelegateProxy.swift; sourceTree = ""; }; + DC9FA6863ED2B892306F22C7D733FE69 /* SwiftEntryKit-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "SwiftEntryKit-dummy.m"; sourceTree = ""; }; + DCC42575BA55CB779C91F2BD375563E4 /* icon_file_type_html@2x.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = "icon_file_type_html@2x.png"; path = "Sources/Resources/FileType/icon_file_type_html@2x.png"; sourceTree = ""; }; + DCDD1C5741D48D8964048641DA43DDF6 /* RecursiveLock.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RecursiveLock.swift; path = Platform/RecursiveLock.swift; sourceTree = ""; }; + DCE95AFFD6943785D88582A4367889EE /* Empty.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Empty.swift; path = RxSwift/Observables/Empty.swift; sourceTree = ""; }; + DD15AAD48D049ADA7976ECA00CC6EBA6 /* MAMapView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MAMapView.h; path = AMapNaviKit.framework/Headers/MAMapView.h; sourceTree = ""; }; + DD2B04A321BF9A4442312268B3ECB285 /* DDMASearch.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DDMASearch.h; path = DDMAMapKit_Private/Classes/DDMASearch/DDMASearch.h; sourceTree = ""; }; + DD341D183C06C0C2C62DB8132B5F2493 /* MAHeatMapVectorGridOverlay.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MAHeatMapVectorGridOverlay.h; path = AMapNaviKit.framework/Headers/MAHeatMapVectorGridOverlay.h; sourceTree = ""; }; + DD3DC48DCE4F122D2259E78DF872A8D1 /* ConcurrentMainScheduler.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ConcurrentMainScheduler.swift; path = RxSwift/Schedulers/ConcurrentMainScheduler.swift; sourceTree = ""; }; + DD8BD1EA252D5B574E873F9B2B7F6644 /* DDAudioPlayerKit_Private-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "DDAudioPlayerKit_Private-prefix.pch"; sourceTree = ""; }; + DD9D5552977DB0913D61D68709E36322 /* MAShape.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MAShape.h; path = AMapNaviKit.framework/Headers/MAShape.h; sourceTree = ""; }; + DDA5D029FADCA717A01EFCC92C9B2B58 /* RxWKNavigationDelegateProxy.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RxWKNavigationDelegateProxy.swift; path = RxCocoa/iOS/Proxies/RxWKNavigationDelegateProxy.swift; sourceTree = ""; }; + DDB3BF38B62BB4CC0AC70E065002ADBE /* JXCategoryCollectionView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JXCategoryCollectionView.h; path = Sources/Common/JXCategoryCollectionView.h; sourceTree = ""; }; + DDF12AAE714C78226279FC494BE72785 /* icon_file_type_midi.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = icon_file_type_midi.png; path = Sources/Resources/FileType/icon_file_type_midi.png; sourceTree = ""; }; + DE1ED2E8456BC345655EC3967740572C /* ConstraintRelatableTarget.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ConstraintRelatableTarget.swift; path = Sources/ConstraintRelatableTarget.swift; sourceTree = ""; }; + DE30300D5289DF8F6DDDCB85319EE501 /* AnonymousDisposable.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AnonymousDisposable.swift; path = RxSwift/Disposables/AnonymousDisposable.swift; sourceTree = ""; }; + DE458C5EEE672DA66A0241A5F59E0A2C /* icon_file_type_dmg.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = icon_file_type_dmg.png; path = Sources/Resources/FileType/icon_file_type_dmg.png; sourceTree = ""; }; + DE6440F6B3C704B03879F69ACEE2BFF0 /* RxSwift-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RxSwift-prefix.pch"; sourceTree = ""; }; + DE6A952C3275E956AD27221C641220DF /* MultipartFormData.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = MultipartFormData.swift; path = Source/MultipartFormData.swift; sourceTree = ""; }; + DE7523480013502D9F659C935024B300 /* MATraceReplayOverlayRender.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MATraceReplayOverlayRender.m; path = DDMAMapKit_Private/Classes/DDMAMap/Trace/MATraceReplayOverlayRender.m; sourceTree = ""; }; + DE8F126BBD480DE86148CB45EED2A80B /* IQUIView+IQKeyboardToolbar.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "IQUIView+IQKeyboardToolbar.swift"; path = "IQKeyboardManagerSwift/IQToolbar/IQUIView+IQKeyboardToolbar.swift"; sourceTree = ""; }; + DE90D21F6DAB6A8DD475A891FCD8CD19 /* icon_file_type_pdf@2x.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = "icon_file_type_pdf@2x.png"; path = "Sources/Resources/FileType/icon_file_type_pdf@2x.png"; sourceTree = ""; }; + DEBD310018522EBB8EE86243939BF08F /* UITabBarController+DDCategory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UITabBarController+DDCategory.h"; path = "DDCategoryKit_Private/Classes/UITabBarController+DDCategory/UITabBarController+DDCategory.h"; sourceTree = ""; }; + DED5EDAA37435A7FE04C80EEC2761374 /* NSTextField+Rx.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "NSTextField+Rx.swift"; path = "RxCocoa/macOS/NSTextField+Rx.swift"; sourceTree = ""; }; + DEE84C941D54610C22AD0ED0AE7A2067 /* EKWrapperView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = EKWrapperView.swift; path = Source/Infra/EKWrapperView.swift; sourceTree = ""; }; + DEE93522E0D5AB3846AF878A7A188C23 /* Platform.Darwin.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Platform.Darwin.swift; path = Platform/Platform.Darwin.swift; sourceTree = ""; }; + DEED4C0BA4E79E5C5C6887EC05AF121B /* DisposeBase.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = DisposeBase.swift; path = RxSwift/Disposables/DisposeBase.swift; sourceTree = ""; }; + DEF065BB35A819D3C99AAF3565D7EC4F /* RxCocoa-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RxCocoa-umbrella.h"; sourceTree = ""; }; + DEF48095A9D20497275CE1D502512D48 /* NSData+ImageContentType.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSData+ImageContentType.h"; path = "DDWebImageKit_Private/Classes/SDWebImage/Core/NSData+ImageContentType.h"; sourceTree = ""; }; + DF6C4414F40305BBFD781E453EA72A91 /* ConstraintRelation.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ConstraintRelation.swift; path = Sources/ConstraintRelation.swift; sourceTree = ""; }; + DF6F453087254DD657F3996143CB98D1 /* ZLCustomCamera.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ZLCustomCamera.swift; path = Sources/Camera/ZLCustomCamera.swift; sourceTree = ""; }; + DF8206E5CAA0BF50EE051A3E54EEC24A /* RxCollectionViewDataSourcePrefetchingProxy.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RxCollectionViewDataSourcePrefetchingProxy.swift; path = RxCocoa/iOS/Proxies/RxCollectionViewDataSourcePrefetchingProxy.swift; sourceTree = ""; }; + DFCF5B3FE6C9DA0EFCF9F4A1F7F6B3FC /* IQKeyboardManagerConstants.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = IQKeyboardManagerConstants.swift; path = IQKeyboardManagerSwift/Constants/IQKeyboardManagerConstants.swift; sourceTree = ""; }; + DFE88A9C67A3D94369ED21686D1096D1 /* SwiftSupport.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SwiftSupport.swift; path = RxSwift/SwiftSupport/SwiftSupport.swift; sourceTree = ""; }; + DFF0CFB952E714C49AD0FFFC6E4D96D5 /* AMapSearchAPI.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AMapSearchAPI.h; path = AMapSearchKit.framework/Headers/AMapSearchAPI.h; sourceTree = ""; }; + E01CE23B80FE837FF12BBC50F8999492 /* SkipUntil.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SkipUntil.swift; path = RxSwift/Observables/SkipUntil.swift; sourceTree = ""; }; + E0511BA3A4FD667D6EA75BCA365DB4F4 /* CocoaDebugSettings.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CocoaDebugSettings.swift; path = Sources/Core/CocoaDebugSettings.swift; sourceTree = ""; }; + E05E6EC0B4C505D1A7E9D5F69B8CA38A /* NSTextStorage+Rx.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "NSTextStorage+Rx.swift"; path = "RxCocoa/iOS/NSTextStorage+Rx.swift"; sourceTree = ""; }; + E06B52686A0003825F716073DE4BDAD6 /* _FileTableViewCell.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = _FileTableViewCell.m; path = Sources/Sandbox/_FileTableViewCell.m; sourceTree = ""; }; + E08418DB10E4C600EA85E90BC5A75AD5 /* Observable+Bind.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Observable+Bind.swift"; path = "RxCocoa/Common/Observable+Bind.swift"; sourceTree = ""; }; + E0F0F96451A68F74A5FB41806794FCB0 /* Infallible.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Infallible.swift; path = RxSwift/Traits/Infallible/Infallible.swift; sourceTree = ""; }; + E0FC01958D7AA6941DD04C4703D7D848 /* _icon_file_type_logs@2x.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = "_icon_file_type_logs@2x.png"; path = "Sources/Resources/images/_icon_file_type_logs@2x.png"; sourceTree = ""; }; + E10C81639BD9F91018F21C1643FF284C /* Filter.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Filter.swift; path = Sources/Image/Filter.swift; sourceTree = ""; }; + E10DF514DDFB09E217924ED5F17F971B /* NSButton+WebCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSButton+WebCache.h"; path = "DDWebImageKit_Private/Classes/SDWebImage/Core/NSButton+WebCache.h"; sourceTree = ""; }; + E1156D4B626F5763CFCAC74694E40862 /* MJRefresh.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = MJRefresh.modulemap; sourceTree = ""; }; + E13C0903A86C8953246BBB6DDD2F56E8 /* RxPickerViewAdapter.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RxPickerViewAdapter.swift; path = RxCocoa/iOS/DataSources/RxPickerViewAdapter.swift; sourceTree = ""; }; + E13F5131442781696D57C3905C46D2FB /* DDControlsKit_Private-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "DDControlsKit_Private-umbrella.h"; sourceTree = ""; }; + E162355030B90CE4C65255FD5B2A7942 /* AMapTrackVersion.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AMapTrackVersion.h; path = AMapTrackKit.framework/Headers/AMapTrackVersion.h; sourceTree = ""; }; + E17CCF9F8700A375410EFBE6C557607F /* ImageDownloaderDelegate.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ImageDownloaderDelegate.swift; path = Sources/Networking/ImageDownloaderDelegate.swift; sourceTree = ""; }; + E185B9582FCE815829514B83FF9D6775 /* RedirectHandler.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RedirectHandler.swift; path = Sources/Networking/RedirectHandler.swift; sourceTree = ""; }; + E1D923FE2C62FA9C9EA0908615CB317F /* RxSwift.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RxSwift.release.xcconfig; sourceTree = ""; }; + E20517175479DD20B2E216370A28A2F3 /* DDMALocationManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DDMALocationManager.h; path = DDMAMapKit_Private/Classes/DDMALocation/DDMALocationManager.h; sourceTree = ""; }; + E20982A967158AEDA75F6A82C270C06B /* InvocableScheduledItem.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = InvocableScheduledItem.swift; path = RxSwift/Schedulers/Internal/InvocableScheduledItem.swift; sourceTree = ""; }; + E2BA3D133BAE9213EEC52E376DD5296B /* JXCategoryImageCellModel.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JXCategoryImageCellModel.h; path = Sources/Image/JXCategoryImageCellModel.h; sourceTree = ""; }; + E2D4411A906BBB354B22870DF7ED95FF /* ZLCameraConfiguration.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ZLCameraConfiguration.swift; path = Sources/General/ZLCameraConfiguration.swift; sourceTree = ""; }; + E2FEB6274ABDF299C3246741779CAB30 /* icon_file_type_jpg@3x.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = "icon_file_type_jpg@3x.png"; path = "Sources/Resources/FileType/icon_file_type_jpg@3x.png"; sourceTree = ""; }; + E30CEFB1B598A53522D5C6C11441B668 /* icon_file_type_xls@3x.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = "icon_file_type_xls@3x.png"; path = "Sources/Resources/FileType/icon_file_type_xls@3x.png"; sourceTree = ""; }; + E31BF88AB6CA14DAC197B97BBC3DF84D /* icon_file_type_folder_empty.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = icon_file_type_folder_empty.png; path = Sources/Resources/FileType/icon_file_type_folder_empty.png; sourceTree = ""; }; + E31F2CEFB0E70699BE43F5BC30BAFD3A /* ZLCustomAlertProtocol.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ZLCustomAlertProtocol.swift; path = Sources/General/ZLCustomAlertProtocol.swift; sourceTree = ""; }; + E39FACA6E84ACD9E9587DCB289AAF448 /* UIImageView+DDCategory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImageView+DDCategory.h"; path = "DDCategoryKit_Private/Classes/UIImageView+DDCategory/UIImageView+DDCategory.h"; sourceTree = ""; }; + E3BE15B5AF54608AC9FDBD936D1CD507 /* ZLTextStickerView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ZLTextStickerView.swift; path = Sources/Edit/ZLTextStickerView.swift; sourceTree = ""; }; + E3BF18A672F7FEA892B2A05C8D73BC4F /* UIImage+ForceDecode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIImage+ForceDecode.m"; path = "DDWebImageKit_Private/Classes/SDWebImage/Core/UIImage+ForceDecode.m"; sourceTree = ""; }; + E3D03BAC0E6AEA54D0D773EA9DBEEC1C /* BRBaseView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = BRBaseView.h; path = BRPickerView/Base/BRBaseView.h; sourceTree = ""; }; + E3E667C0EB99EB91B5266277E2C15E58 /* icon_file_type_ppt@2x.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = "icon_file_type_ppt@2x.png"; path = "Sources/Resources/FileType/icon_file_type_ppt@2x.png"; sourceTree = ""; }; + E411ECA10BE589677CA268BA72A1461E /* ConstraintLayoutGuide.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ConstraintLayoutGuide.swift; path = Sources/ConstraintLayoutGuide.swift; sourceTree = ""; }; + E419746B6787458E132201D919607174 /* UIColor+Hue.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "UIColor+Hue.swift"; path = "DDColorKit_Private/Classes/UIColor+Hue.swift"; sourceTree = ""; }; + E41D7B83FCFB9147B315800C262FEDB5 /* OperationQueueScheduler.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = OperationQueueScheduler.swift; path = RxSwift/Schedulers/OperationQueueScheduler.swift; sourceTree = ""; }; + E42670F2DF5141855AFEB36B7107CC53 /* VirtualTimeScheduler.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = VirtualTimeScheduler.swift; path = RxSwift/Schedulers/VirtualTimeScheduler.swift; sourceTree = ""; }; + E4300863F17D2D62979F2F20BCA0980D /* UITableViewCell+DDCategory.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UITableViewCell+DDCategory.m"; path = "DDCategoryKit_Private/Classes/UITableViewCell+DDCategory/UITableViewCell+DDCategory.m"; sourceTree = ""; }; + E44E11DCABEC805394DAC6D163DE8C87 /* SDImageLoader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageLoader.h; path = DDWebImageKit_Private/Classes/SDWebImage/Core/SDImageLoader.h; sourceTree = ""; }; + E45E32F6A055D035199EF31E6D5E4520 /* UITextView+Rx.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "UITextView+Rx.swift"; path = "RxCocoa/iOS/UITextView+Rx.swift"; sourceTree = ""; }; + E469FE9BA34CE21A445FD18AFE4CE7EA /* MABaseOverlay+DDCategory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "MABaseOverlay+DDCategory.h"; path = "DDMAMapKit_Private/Classes/DDMAMap/Overlay/MABaseOverlay+DDCategory.h"; sourceTree = ""; }; + E48D86BC5F2FC74426E4A90E7E1C718C /* MAUserLocation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MAUserLocation.h; path = AMapNaviKit.framework/Headers/MAUserLocation.h; sourceTree = ""; }; E49D6D248DD1CEE584E6776B9164A1B2 /* MJRefresh */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = MJRefresh; path = libMJRefresh.a; sourceTree = BUILT_PRODUCTS_DIR; }; - E4CCD437D9E0EFB7DA8B59AD4D858DCB /* MATraceReplayOverlay+Addition.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "MATraceReplayOverlay+Addition.h"; path = "DDMAMapKit_Private/Classes/DDMAMap/Trace/MATraceReplayOverlay+Addition.h"; sourceTree = ""; }; - E4D8010907EDFF57AF9D65809469AB01 /* Infallible+CombineLatest+arity.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Infallible+CombineLatest+arity.swift"; path = "RxSwift/Traits/Infallible/Infallible+CombineLatest+arity.swift"; sourceTree = ""; }; - E4EF0BDCEF6C1F722A57025431981B52 /* AMapNaviEleBikeDataRepresentable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AMapNaviEleBikeDataRepresentable.h; path = AMapNaviKit.framework/Headers/AMapNaviEleBikeDataRepresentable.h; sourceTree = ""; }; - E4F3EC9EA0148ABA9D63CFA7ACD8D0F0 /* JXCategoryViewAnimator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JXCategoryViewAnimator.h; path = Sources/Common/JXCategoryViewAnimator.h; sourceTree = ""; }; - E4FB5CA1CEDE760E2ED07D1BC1C1190B /* DistinctUntilChanged.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = DistinctUntilChanged.swift; path = RxSwift/Observables/DistinctUntilChanged.swift; sourceTree = ""; }; - E50359508E777BAA53F15DB167631D0A /* SwiftToast.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SwiftToast.swift; path = DDToastKit_Private/Classes/SwiftToast.swift; sourceTree = ""; }; - E535BF76B78E7C41708C9A39CB9F8C10 /* DDBasicControlsKit_Private-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "DDBasicControlsKit_Private-dummy.m"; sourceTree = ""; }; - E5A23E971A2CE7F06866C1F795A83C19 /* Platform.Darwin.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Platform.Darwin.swift; path = Platform/Platform.Darwin.swift; sourceTree = ""; }; - E607ABAF007A00ED26B6741D6E011988 /* _NSLogHook.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = _NSLogHook.m; path = Sources/Logs/_NSLogHook.m; sourceTree = ""; }; - E60839FCC99BCA2D05A59A230106C541 /* Amb.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Amb.swift; path = RxSwift/Observables/Amb.swift; sourceTree = ""; }; - E68A5240587CF5A07DED9A11120E903F /* IQKeyboardManagerConstantsInternal.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = IQKeyboardManagerConstantsInternal.swift; path = IQKeyboardManagerSwift/Constants/IQKeyboardManagerConstantsInternal.swift; sourceTree = ""; }; - E68B0375956523651998CF32F55AB61D /* HTTPHeaders.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = HTTPHeaders.swift; path = Source/HTTPHeaders.swift; sourceTree = ""; }; - E6A7B26DA7F5A86EC8032CEC6A9E77E7 /* CachedResponseHandler.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CachedResponseHandler.swift; path = Source/CachedResponseHandler.swift; sourceTree = ""; }; - E6CA42E249631F9384E7394E0F270F73 /* BRBaseView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = BRBaseView.m; path = BRPickerView/Base/BRBaseView.m; sourceTree = ""; }; - E706A064623BCBA10CDA2656C5B0C91C /* ZFReachabilityManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = ZFReachabilityManager.m; path = DDZFPlayerKit_Private/Classes/Core/ZFReachabilityManager.m; sourceTree = ""; }; - E76D3297A0F1D7A730B42AAE78DBD430 /* RequestInterceptor.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RequestInterceptor.swift; path = Source/RequestInterceptor.swift; sourceTree = ""; }; - E7A4CB23E0DEA9A8FE260503C5C80A98 /* DDWebImageKit_Private.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = DDWebImageKit_Private.modulemap; sourceTree = ""; }; - E7B5BAB8CE31FD67A7AA79262037D324 /* UISwitch+Rx.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "UISwitch+Rx.swift"; path = "RxCocoa/iOS/UISwitch+Rx.swift"; sourceTree = ""; }; - E7C57BDE8A9E05D4473E292878C389EE /* JXCategoryBaseView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JXCategoryBaseView.h; path = Sources/Base/JXCategoryBaseView.h; sourceTree = ""; }; + E4B9F7456C68F2389F9444451A8FBD60 /* SDWebImageTransition.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageTransition.m; path = DDWebImageKit_Private/Classes/SDWebImage/Core/SDWebImageTransition.m; sourceTree = ""; }; + E4DA8D91FB87D406E77171D65F72C57C /* RetryStrategy.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RetryStrategy.swift; path = Sources/Networking/RetryStrategy.swift; sourceTree = ""; }; + E4E23C6D27E30AC18C7236073ACF9489 /* IQKeyboardManagerConstantsInternal.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = IQKeyboardManagerConstantsInternal.swift; path = IQKeyboardManagerSwift/Constants/IQKeyboardManagerConstantsInternal.swift; sourceTree = ""; }; + E4FAAE48DB67CBAF8A1E8BCE45E38575 /* Bundle+ZLPhotoBrowser.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Bundle+ZLPhotoBrowser.swift"; path = "Sources/Extensions/Bundle+ZLPhotoBrowser.swift"; sourceTree = ""; }; + E52C4912CFCE0D108D7B4C667778EDC2 /* AnyObserver.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AnyObserver.swift; path = RxSwift/AnyObserver.swift; sourceTree = ""; }; + E5518F4EDC6D868C170E86765C7EE1C7 /* Catch.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Catch.swift; path = RxSwift/Observables/Catch.swift; sourceTree = ""; }; + E554E05ED0F6AA57B12225A412E9E218 /* JXCategoryDotCell.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JXCategoryDotCell.h; path = Sources/Dot/JXCategoryDotCell.h; sourceTree = ""; }; + E556305153B517AFB44E232891AE5F61 /* UINavigationController+Rx.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "UINavigationController+Rx.swift"; path = "RxCocoa/iOS/UINavigationController+Rx.swift"; sourceTree = ""; }; + E57AB064DC34008DD9440843B004AE82 /* DDMATrackManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DDMATrackManager.m; path = DDMAMapKit_Private/Classes/DDMATrackManager/DDMATrackManager.m; sourceTree = ""; }; + E5C14560972FBDF5DB6B731628A50F15 /* Map.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Map.swift; path = RxSwift/Observables/Map.swift; sourceTree = ""; }; + E5E283FCA2ECF0EC15A3059E80203F0E /* AMapFoundation-NO-IDFA.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "AMapFoundation-NO-IDFA.release.xcconfig"; sourceTree = ""; }; + E5FE5029088C339D8B35E78E952AB10E /* RequestModifier.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RequestModifier.swift; path = Sources/Networking/RequestModifier.swift; sourceTree = ""; }; + E6404FDF26A0D8EB9510837B2C97B6EA /* SDAnimatedImageRep.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDAnimatedImageRep.h; path = DDWebImageKit_Private/Classes/SDWebImage/Core/SDAnimatedImageRep.h; sourceTree = ""; }; + E6A168A1C4ABF7EC11E76676EAFBCCB0 /* BRPickerView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = BRPickerView.h; path = BRPickerView/BRPickerView.h; sourceTree = ""; }; + E6A852049D7E264C2E29D98566B322FD /* ZFKVOController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ZFKVOController.h; path = DDZFPlayerKit_Private/Classes/Core/ZFKVOController.h; sourceTree = ""; }; + E71C7F56CFB479F6EE1332EDB870435F /* ZFPresentTransition.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ZFPresentTransition.h; path = DDZFPlayerKit_Private/Classes/Core/ZFPresentTransition.h; sourceTree = ""; }; + E75E45AA403CB6CF81289D56594E9D0D /* UIView+WebCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIView+WebCache.h"; path = "DDWebImageKit_Private/Classes/SDWebImage/Core/UIView+WebCache.h"; sourceTree = ""; }; + E77F9B687E0725738A83255C22A92278 /* Sink.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Sink.swift; path = RxSwift/Observables/Sink.swift; sourceTree = ""; }; + E7844759027C8AE2F479CB69445BA702 /* Array+ZLPhotoBrowser.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Array+ZLPhotoBrowser.swift"; path = "Sources/Extensions/Array+ZLPhotoBrowser.swift"; sourceTree = ""; }; + E7934C14ECEE2E432FB7E210C8A217F8 /* DDBaseSwitch.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DDBaseSwitch.h; path = DDBasicControlsKit_Private/Classes/DDBaseSwitch/DDBaseSwitch.h; sourceTree = ""; }; + E79B4DB40DF5B8B7F04589135163B8ED /* DDAlamofire.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = DDAlamofire.swift; path = DDNetworkingOfAlamofireKit_Private/Classes/DDAlamofire.swift; sourceTree = ""; }; + E79F6EBD860959A940CF227C07C90D12 /* DDCollectionViewCell.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = DDCollectionViewCell.swift; path = DDControlsKit_Private/Classes/DDCollectionViewCell/DDCollectionViewCell.swift; sourceTree = ""; }; E7C9437E4E7340A6BDC7C73BE8A3B117 /* Pods-OrderSchedulingNotificationService */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "Pods-OrderSchedulingNotificationService"; path = "libPods-OrderSchedulingNotificationService.a"; sourceTree = BUILT_PRODUCTS_DIR; }; - E8146EEF7A37F985349E5628348F3CF6 /* _OCLoggerFormat.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = _OCLoggerFormat.h; path = Sources/Logs/_OCLoggerFormat.h; sourceTree = ""; }; - E82890FAB0DE231509B108B0A91E8E6A /* SubjectType.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SubjectType.swift; path = RxSwift/Subjects/SubjectType.swift; sourceTree = ""; }; - E84F0BA5EE63DA617C8BDBC5FB965E71 /* ZFPlayerController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = ZFPlayerController.m; path = DDZFPlayerKit_Private/Classes/Core/ZFPlayerController.m; sourceTree = ""; }; - E85A0B83E3BA82ECCAFDB25F6BAACEBB /* UINavigationItem+DDCategory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UINavigationItem+DDCategory.h"; path = "DDCategoryKit_Private/Classes/UINavigationItem+DDCategory/UINavigationItem+DDCategory.h"; sourceTree = ""; }; - E876D1170DB2C579D13C9F59AFBD813C /* SDWebImageDownloaderOperation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageDownloaderOperation.h; path = DDWebImageKit_Private/Classes/SDWebImage/Core/SDWebImageDownloaderOperation.h; sourceTree = ""; }; - E87FBFCC5258259589B5168F043DD703 /* RxSwift.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RxSwift.debug.xcconfig; sourceTree = ""; }; - E8B900D0CC77F9E45D22C2A86695FDBD /* EKAttributes+Validations.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "EKAttributes+Validations.swift"; path = "Source/Model/EntryAttributes/EKAttributes+Validations.swift"; sourceTree = ""; }; + E7DEAAB15891C178CEB558B353A28B54 /* DDButton.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = DDButton.swift; path = DDControlsKit_Private/Classes/DDButton/DDButton.swift; sourceTree = ""; }; + E7F4F9CDF62C0846F5F5198499E25BAE /* CurrentThreadScheduler.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CurrentThreadScheduler.swift; path = RxSwift/Schedulers/CurrentThreadScheduler.swift; sourceTree = ""; }; + E7F71551E3A9F242235C49513C300720 /* PublishSubject.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = PublishSubject.swift; path = RxSwift/Subjects/PublishSubject.swift; sourceTree = ""; }; + E7FDA7E18272C0F2EB83C0A550B6F6CA /* AMapURLSearchConfig.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AMapURLSearchConfig.h; path = AMapFoundationKit.framework/Headers/AMapURLSearchConfig.h; sourceTree = ""; }; + E834AFE539764C6862EE8A75974B5248 /* UIView+ZLPhotoBrowser.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "UIView+ZLPhotoBrowser.swift"; path = "Sources/Extensions/UIView+ZLPhotoBrowser.swift"; sourceTree = ""; }; + E84A12C3DFBDE91E21E7337CCA6944B7 /* Decode.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Decode.swift; path = RxSwift/Observables/Decode.swift; sourceTree = ""; }; + E852AF45696268303670F21CCA68D207 /* SDImageGraphics.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageGraphics.h; path = DDWebImageKit_Private/Classes/SDWebImage/Core/SDImageGraphics.h; sourceTree = ""; }; + E853DE46E3D722386DC7537493EDCE0D /* icon_file_type_apk@3x.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = "icon_file_type_apk@3x.png"; path = "Sources/Resources/FileType/icon_file_type_apk@3x.png"; sourceTree = ""; }; + E8619ACD3CC56D8168CF041F640FD42E /* DDFontKit_Private-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "DDFontKit_Private-umbrella.h"; sourceTree = ""; }; + E89061AFD9AB16D5A0B173E69D0B7C85 /* ImageView+Kingfisher.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "ImageView+Kingfisher.swift"; path = "Sources/Extensions/ImageView+Kingfisher.swift"; sourceTree = ""; }; + E8A028002BEC6405DB00EFDE605438A5 /* icon_file_type_torrent@2x.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = "icon_file_type_torrent@2x.png"; path = "Sources/Resources/FileType/icon_file_type_torrent@2x.png"; sourceTree = ""; }; E8C5B817601E9A6369B5DDC72B5F6FAD /* Pods-OrderScheduling-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-OrderScheduling-dummy.m"; sourceTree = ""; }; - E94C19BA6C5DCEFFD553DD0BFE5D403D /* RxCocoa.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = RxCocoa.modulemap; sourceTree = ""; }; - E97B58BEA1472DA48DDD4F451D447266 /* SDImageCacheDefine.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageCacheDefine.h; path = DDWebImageKit_Private/Classes/SDWebImage/Core/SDImageCacheDefine.h; sourceTree = ""; }; - E9971FC5F96C866D35207AE868BE96FF /* MACustomCalloutView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MACustomCalloutView.h; path = AMapNaviKit.framework/Headers/MACustomCalloutView.h; sourceTree = ""; }; - E9B43DC7E220324032703CE9DE7FF71B /* icon_file_type_xml.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = icon_file_type_xml.png; path = Sources/Resources/FileType/icon_file_type_xml.png; sourceTree = ""; }; - E9CE43F45025148A6D5F1DB195235238 /* AMapNearbyUploadInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AMapNearbyUploadInfo.h; path = AMapSearchKit.framework/Headers/AMapNearbyUploadInfo.h; sourceTree = ""; }; - E9D29B91C8B7ED8F438AB517FC180810 /* DDBaseTextView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DDBaseTextView.m; path = DDBasicControlsKit_Private/Classes/DDBaseTextView/DDBaseTextView.m; sourceTree = ""; }; - E9F427E6A51AF7C6871A89EC9AC52F23 /* MAMVTTileOverlay.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MAMVTTileOverlay.h; path = AMapNaviKit.framework/Headers/MAMVTTileOverlay.h; sourceTree = ""; }; - EA378D9D1C4E8CA1E806C8ED6989501B /* MJRefresh-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "MJRefresh-dummy.m"; sourceTree = ""; }; - EA43B08B9A054BD72E59442A9B29B514 /* ZLEmbedAlbumListView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ZLEmbedAlbumListView.swift; path = Sources/General/ZLEmbedAlbumListView.swift; sourceTree = ""; }; - EA52CADF6FAA19912160177B7577C02B /* FontUtil.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = FontUtil.swift; path = DDFontKit_Private/Classes/FontUtil.swift; sourceTree = ""; }; - EAB56ABE0EBBE4A3593C2FBEDC53816A /* icon_file_type_png@3x.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = "icon_file_type_png@3x.png"; path = "Sources/Resources/FileType/icon_file_type_png@3x.png"; sourceTree = ""; }; - EABD710831CF02B7731F6BD363FF2B02 /* EKAlertMessageView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = EKAlertMessageView.swift; path = Source/MessageViews/EKAlertMessageView.swift; sourceTree = ""; }; - EAD4E46517C96750A5EE40315ED03CA5 /* icon_file_type_swift@3x.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = "icon_file_type_swift@3x.png"; path = "Sources/Resources/FileType/icon_file_type_swift@3x.png"; sourceTree = ""; }; - EAFDF12D24EE5F96BAF283E0DEE714FF /* MJRefreshBackNormalFooter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MJRefreshBackNormalFooter.m; path = MJRefresh/Custom/Footer/Back/MJRefreshBackNormalFooter.m; sourceTree = ""; }; - EB0B2A100A5F3F1967BD87E136169C16 /* SwiftEntryKit.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = SwiftEntryKit.release.xcconfig; sourceTree = ""; }; + E8C80763E28262062A094867C3B67818 /* EventMonitor.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = EventMonitor.swift; path = Source/EventMonitor.swift; sourceTree = ""; }; + E8E9C41279E22A264F31E8EB006AF940 /* Buffer.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Buffer.swift; path = RxSwift/Observables/Buffer.swift; sourceTree = ""; }; + E92533FE6B06397CB43DBCD84123B54A /* DDNavigationControllerDelegateReceiver.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DDNavigationControllerDelegateReceiver.m; path = DDBasicControlsKit_Private/Classes/DDBaseNavigationController/DDNavigationControllerDelegateReceiver.m; sourceTree = ""; }; + E95A8DFE9C71168F5EEA9DF62798723A /* Kingfisher-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Kingfisher-prefix.pch"; sourceTree = ""; }; + E96F96782C6C279675AFD8F730FE03B6 /* Queue.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Queue.swift; path = Platform/DataStructures/Queue.swift; sourceTree = ""; }; + E9786C70D9E2A53E65C7D5838A5AA72D /* icon_file_type_json@3x.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = "icon_file_type_json@3x.png"; path = "Sources/Resources/FileType/icon_file_type_json@3x.png"; sourceTree = ""; }; + E9A321D453F1F1F648CA8A2C14389B81 /* ScheduledDisposable.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ScheduledDisposable.swift; path = RxSwift/Disposables/ScheduledDisposable.swift; sourceTree = ""; }; + E9B2C7AE73494811CABD819BB44BD0D5 /* ZLEmbedAlbumListView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ZLEmbedAlbumListView.swift; path = Sources/General/ZLEmbedAlbumListView.swift; sourceTree = ""; }; + E9EEC9061CA3F1FC21F9DE4E49BABE5C /* SessionDelegate.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SessionDelegate.swift; path = Source/SessionDelegate.swift; sourceTree = ""; }; + EA16FD120D889CD293F635B3EB3584D1 /* JXCategoryIndicatorComponentView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = JXCategoryIndicatorComponentView.m; path = Sources/Indicator/IndicatorViews/JXCategoryIndicatorComponentView.m; sourceTree = ""; }; + EA2A270EAFA4BFA26D028A5FBEC6B967 /* NSView+Rx.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "NSView+Rx.swift"; path = "RxCocoa/macOS/NSView+Rx.swift"; sourceTree = ""; }; + EA2C9DF13CF1A32C6A68A2496EC5E75D /* icon_file_type_zip@3x.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = "icon_file_type_zip@3x.png"; path = "Sources/Resources/FileType/icon_file_type_zip@3x.png"; sourceTree = ""; }; + EA5D274A04F6108037B90C8A9C3E05FF /* MJRefreshBackFooter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MJRefreshBackFooter.m; path = MJRefresh/Base/MJRefreshBackFooter.m; sourceTree = ""; }; + EA6365C4F324615A4DDE097A49262F0B /* DriveRouteCustomAnnotation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DriveRouteCustomAnnotation.m; path = DDMAMapKit_Private/Classes/DDMAMap/Annotation/DriveRouteCustomAnnotation.m; sourceTree = ""; }; + EA644C0B771D66BF5BF84E7CB903BEA2 /* SDAnimatedImageView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDAnimatedImageView.m; path = DDWebImageKit_Private/Classes/SDWebImage/Core/SDAnimatedImageView.m; sourceTree = ""; }; + EAB28BE648A06BF38C2C181E1F579104 /* SDWebImageTransitionInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageTransitionInternal.h; path = DDWebImageKit_Private/Classes/SDWebImage/Private/SDWebImageTransitionInternal.h; sourceTree = ""; }; + EACACE5CE07FEFDFA1542DC55ED52120 /* DiskStorage.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = DiskStorage.swift; path = Sources/Cache/DiskStorage.swift; sourceTree = ""; }; + EACB3BC9F053ABC43C7B3009822CFB8C /* UIView+MJExtension.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIView+MJExtension.h"; path = "MJRefresh/UIView+MJExtension.h"; sourceTree = ""; }; + EAFED137EE9193DC78FAA2ACEBAF9F73 /* _DirectoryContentsTableViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = _DirectoryContentsTableViewController.m; path = Sources/Sandbox/_DirectoryContentsTableViewController.m; sourceTree = ""; }; EB0F3BF52463BB59CBA61B7FFD59D226 /* Pods-OrderSchedulingNotificationService.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-OrderSchedulingNotificationService.release.xcconfig"; sourceTree = ""; }; - EB236683B90E71A8E104336C4566D20C /* KVORepresentable.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = KVORepresentable.swift; path = RxCocoa/Foundation/KVORepresentable.swift; sourceTree = ""; }; - EB4AA639EF6C53416725FD05E68BF253 /* LayoutConstraintItem.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = LayoutConstraintItem.swift; path = Sources/LayoutConstraintItem.swift; sourceTree = ""; }; - EB6F3055215B15FD7F07238DA323035E /* RequestCompression.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RequestCompression.swift; path = Source/RequestCompression.swift; sourceTree = ""; }; - EB783203214870F14D65368D401491AD /* ESTabBarController-swift-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "ESTabBarController-swift-dummy.m"; sourceTree = ""; }; - EBA0C42CD34863951CD405113E22F616 /* HistoricalSchedulerTimeConverter.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = HistoricalSchedulerTimeConverter.swift; path = RxSwift/Schedulers/HistoricalSchedulerTimeConverter.swift; sourceTree = ""; }; - EBD3222B7D336BE82B68F5953A1BCE38 /* SDWebImageCacheKeyFilter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageCacheKeyFilter.h; path = DDWebImageKit_Private/Classes/SDWebImage/Core/SDWebImageCacheKeyFilter.h; sourceTree = ""; }; - EBD5A4563EB2083AEC9C94CEB12DF4B7 /* icon_file_type_mp4@3x.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = "icon_file_type_mp4@3x.png"; path = "Sources/Resources/FileType/icon_file_type_mp4@3x.png"; sourceTree = ""; }; - EBD8ED67F931B8681F1F5DA302C4AB14 /* DispatchQueue+Extensions.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "DispatchQueue+Extensions.swift"; path = "Platform/DispatchQueue+Extensions.swift"; sourceTree = ""; }; - EBE552A74545A974F8F667F91BCC2914 /* icon_file_type_css@3x.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = "icon_file_type_css@3x.png"; path = "Sources/Resources/FileType/icon_file_type_css@3x.png"; sourceTree = ""; }; - EC1BA5F2BE2943635A725BD4D0B13FE4 /* SDWebImageDefine.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageDefine.m; path = DDWebImageKit_Private/Classes/SDWebImage/Core/SDWebImageDefine.m; sourceTree = ""; }; + EB1F35678631DAA13BD6564BDD10E255 /* SDImageCachesManagerOperation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageCachesManagerOperation.m; path = DDWebImageKit_Private/Classes/SDWebImage/Private/SDImageCachesManagerOperation.m; sourceTree = ""; }; + EBBD5F991C5E7631E158368AC5DDF0C1 /* DDMAGeometry.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DDMAGeometry.m; path = DDMAMapKit_Private/Classes/DDMAUtil/DDMAGeometry.m; sourceTree = ""; }; + EBD6007ECF2F8A91D43B009A77726A13 /* AMapSearchKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; path = AMapSearchKit.framework; sourceTree = ""; }; + EC05BE4178C4C192724EFE6B40BD8E45 /* MAOverlay.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MAOverlay.h; path = AMapNaviKit.framework/Headers/MAOverlay.h; sourceTree = ""; }; + EC0A368B863E7098C2B47DEFD9527A27 /* ZLPhotoBrowser-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "ZLPhotoBrowser-dummy.m"; sourceTree = ""; }; + EC3EC4E8B0AF0CC4724DF744657CF098 /* DispatchQueue+Extensions.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "DispatchQueue+Extensions.swift"; path = "Platform/DispatchQueue+Extensions.swift"; sourceTree = ""; }; EC46C56D3F58BDA592A93730A005EF26 /* DDCategoryKit_Private */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = DDCategoryKit_Private; path = libDDCategoryKit_Private.a; sourceTree = BUILT_PRODUCTS_DIR; }; - EC47BEB9970F9E8DB5335293EDF7A43E /* AMapNaviVersion.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AMapNaviVersion.h; path = AMapNaviKit.framework/Headers/AMapNaviVersion.h; sourceTree = ""; }; - EC5D39A89CF21BEF67F78DF0982CA86B /* MAOfflineMap.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MAOfflineMap.h; path = AMapNaviKit.framework/Headers/MAOfflineMap.h; sourceTree = ""; }; - EC6B5395A5037A36C8381D3744FF1BE4 /* icon_file_type_apk@2x.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = "icon_file_type_apk@2x.png"; path = "Sources/Resources/FileType/icon_file_type_apk@2x.png"; sourceTree = ""; }; - EC8CE20645932AF188D62387B5F839DB /* UICollectionView+DDCategory.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UICollectionView+DDCategory.m"; path = "DDCategoryKit_Private/Classes/UICollectionView+DDCategory/UICollectionView+DDCategory.m"; sourceTree = ""; }; - ECEDD5C51601FD346840583CD8F14CF2 /* AMapURLSearchType.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AMapURLSearchType.h; path = AMapFoundationKit.framework/Headers/AMapURLSearchType.h; sourceTree = ""; }; - ED33B94659F109D3FF4009EB2B3D6BB2 /* icon_file_type_dat@3x.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = "icon_file_type_dat@3x.png"; path = "Sources/Resources/FileType/icon_file_type_dat@3x.png"; sourceTree = ""; }; - ED3613DC7D54B4651DD6C5E90B0BAEE3 /* UIImageView+WebCache.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIImageView+WebCache.m"; path = "DDWebImageKit_Private/Classes/SDWebImage/Core/UIImageView+WebCache.m"; sourceTree = ""; }; - ED42827CB10D9E5E24D224950556900C /* AMapNaviHeaderHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AMapNaviHeaderHandler.h; path = AMapNaviKit.framework/Headers/AMapNaviHeaderHandler.h; sourceTree = ""; }; - ED49A7A014FA223EF9B846FD02BF1052 /* AMapSearchError.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AMapSearchError.h; path = AMapSearchKit.framework/Headers/AMapSearchError.h; sourceTree = ""; }; - ED5D7313DDF2AF7B74D24552B709D4DC /* KFImage.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = KFImage.swift; path = Sources/SwiftUI/KFImage.swift; sourceTree = ""; }; - ED772D370D54F994DBC8537D46F7CD91 /* UIGestureRecognizer+Rx.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "UIGestureRecognizer+Rx.swift"; path = "RxCocoa/iOS/UIGestureRecognizer+Rx.swift"; sourceTree = ""; }; - EDAA0B1253B622ECC7C746224EEB6CF4 /* ImageProgressive.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ImageProgressive.swift; path = Sources/Image/ImageProgressive.swift; sourceTree = ""; }; - EDE8C97BDB5540C618C9B838338E3AB7 /* ZFSpeedLoadingView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = ZFSpeedLoadingView.m; path = DDZFPlayerKit_Private/Classes/ControlView/ZFSpeedLoadingView.m; sourceTree = ""; }; - EDFC93A2CC3147B82AE5C610C7BF55EC /* Signal.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Signal.swift; path = RxCocoa/Traits/Signal/Signal.swift; sourceTree = ""; }; - EE62C149B0B7EA862211958DA600895A /* SDAnimatedImageView+WebCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "SDAnimatedImageView+WebCache.h"; path = "DDWebImageKit_Private/Classes/SDWebImage/Core/SDAnimatedImageView+WebCache.h"; sourceTree = ""; }; - EE8D51F05C443003F770FFAED3B80EA1 /* RecursiveLock.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RecursiveLock.swift; path = Platform/RecursiveLock.swift; sourceTree = ""; }; - EEF5122C98DF2F5BB902AD9D35ED1EF0 /* ZLGeneralDefine.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ZLGeneralDefine.swift; path = Sources/General/ZLGeneralDefine.swift; sourceTree = ""; }; - EF04B31C0958489B6BBBC566F32138AC /* RxTabBarControllerDelegateProxy.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RxTabBarControllerDelegateProxy.swift; path = RxCocoa/iOS/Proxies/RxTabBarControllerDelegateProxy.swift; sourceTree = ""; }; - EF132529F5A36EC695323C8B66A3FC9A /* ScheduledItem.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ScheduledItem.swift; path = RxSwift/Schedulers/Internal/ScheduledItem.swift; sourceTree = ""; }; - EF17607AB9036D452A86990DAD37D0E9 /* UIView+MJExtension.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIView+MJExtension.h"; path = "MJRefresh/UIView+MJExtension.h"; sourceTree = ""; }; - EF24ABF8F1572E39DCE1A8019184FD5D /* UIView+WebCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIView+WebCache.h"; path = "DDWebImageKit_Private/Classes/SDWebImage/Core/UIView+WebCache.h"; sourceTree = ""; }; - EF358A72C03DF2042A5AE82F2F5667B8 /* KFImageOptions.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = KFImageOptions.swift; path = Sources/SwiftUI/KFImageOptions.swift; sourceTree = ""; }; - EF75CEF2E047A487AA017F4B99490742 /* SDWebImageError.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageError.h; path = DDWebImageKit_Private/Classes/SDWebImage/Core/SDWebImageError.h; sourceTree = ""; }; - EFAB5A98B5E8F377CC00A194AF9EAB76 /* WKInterfaceImage+Kingfisher.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "WKInterfaceImage+Kingfisher.swift"; path = "Sources/Extensions/WKInterfaceImage+Kingfisher.swift"; sourceTree = ""; }; - F02657A4C40D568F18D1CE5253A3E072 /* LogCell.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = LogCell.swift; path = Sources/Logs/LogCell.swift; sourceTree = ""; }; - F08821A56E0A5E4D500BD8273D91CA63 /* FormatIndicatedCacheSerializer.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = FormatIndicatedCacheSerializer.swift; path = Sources/Cache/FormatIndicatedCacheSerializer.swift; sourceTree = ""; }; - F0944352AE170B6ECF3A81E99CA195E0 /* ZLPhotoPreviewPopInteractiveTransition.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ZLPhotoPreviewPopInteractiveTransition.swift; path = Sources/Animation/ZLPhotoPreviewPopInteractiveTransition.swift; sourceTree = ""; }; - F0E1883755D9F0622A9F99577A37DCEB /* DDNavigationControllerDelegateReceiver.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DDNavigationControllerDelegateReceiver.m; path = DDBasicControlsKit_Private/Classes/DDBaseNavigationController/DDNavigationControllerDelegateReceiver.m; sourceTree = ""; }; - F112A9A2F1385737EFFEE3D6417031D4 /* Kingfisher.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = Kingfisher.release.xcconfig; sourceTree = ""; }; - F12247A5F39A5764DEF56D27EEF65ECE /* AMapLocation-NO-IDFA.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "AMapLocation-NO-IDFA.release.xcconfig"; sourceTree = ""; }; - F13C2F411F73E5F7E433151FFC42A20E /* BehaviorSubject.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = BehaviorSubject.swift; path = RxSwift/Subjects/BehaviorSubject.swift; sourceTree = ""; }; - F1439AE483877F0D3B68B545D9A24706 /* ZFSpeedLoadingView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ZFSpeedLoadingView.h; path = DDZFPlayerKit_Private/Classes/ControlView/ZFSpeedLoadingView.h; sourceTree = ""; }; - F1BF2A96F7FDBD7D50B7928CCD6F8DD7 /* JXCategoryIndicatorView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = JXCategoryIndicatorView.m; path = Sources/Indicator/JXCategoryIndicatorView.m; sourceTree = ""; }; - F1C0BB669F299D925309AFEC508BDA44 /* SwiftEntryKit.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SwiftEntryKit.swift; path = Source/SwiftEntryKit.swift; sourceTree = ""; }; - F1C4BA59B9CA9DFCD4CBC4935612EC2C /* NetworkDetailCell.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = NetworkDetailCell.swift; path = Sources/Network/NetworkDetailCell.swift; sourceTree = ""; }; - F1C8E7D61CCAA883DF2D0D7559C9A773 /* BRStringPickerView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = BRStringPickerView.h; path = BRPickerView/StringPickerView/BRStringPickerView.h; sourceTree = ""; }; - F20DB9F526A3B38F836B3E6A8BA36A14 /* ImageDrawing.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ImageDrawing.swift; path = Sources/Image/ImageDrawing.swift; sourceTree = ""; }; - F211CF01C093A901789755B683A93957 /* Indicator.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Indicator.swift; path = Sources/Views/Indicator.swift; sourceTree = ""; }; - F21CB93FCE510D339F30B4B89A47486E /* BRResultModel.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = BRResultModel.m; path = BRPickerView/StringPickerView/BRResultModel.m; sourceTree = ""; }; - F27BE099D65007CC66A75D1185431B74 /* AMapTrackCommonObj.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AMapTrackCommonObj.h; path = AMapTrackKit.framework/Headers/AMapTrackCommonObj.h; sourceTree = ""; }; - F27D436741595FBCDB85AE25357F88F6 /* DDBasicControlsKit_Private-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "DDBasicControlsKit_Private-prefix.pch"; sourceTree = ""; }; - F284C5F30FA7588405405D1CD74473DE /* DDFontKit_Private-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "DDFontKit_Private-dummy.m"; sourceTree = ""; }; - F29BE1E9492E2AEFE0D074EEE69B04C8 /* MJRefreshGifHeader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MJRefreshGifHeader.h; path = MJRefresh/Custom/Header/MJRefreshGifHeader.h; sourceTree = ""; }; - F2A0F97CA9F3F150315AC4AF39D0FB22 /* _FilePreviewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = _FilePreviewController.h; path = Sources/Sandbox/_FilePreviewController.h; sourceTree = ""; }; - F2B4F44838B9E85FF7E60AEFEDC69AF9 /* RxCocoa-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RxCocoa-umbrella.h"; sourceTree = ""; }; - F2B77CEB2DD94E3C98E0EA313181A241 /* ZFLandscapeWindow.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = ZFLandscapeWindow.m; path = DDZFPlayerKit_Private/Classes/Core/ZFLandscapeWindow.m; sourceTree = ""; }; - F2DE9508491ECE184854C2B3B41980A2 /* RetryWhen.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RetryWhen.swift; path = RxSwift/Observables/RetryWhen.swift; sourceTree = ""; }; - F361268449DC6D8656EC2C7BBD1E7A07 /* UITabBarController+Rx.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "UITabBarController+Rx.swift"; path = "RxCocoa/iOS/UITabBarController+Rx.swift"; sourceTree = ""; }; - F391467FFA15D71712763261BFD3326C /* SDImageCoder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageCoder.h; path = DDWebImageKit_Private/Classes/SDWebImage/Core/SDImageCoder.h; sourceTree = ""; }; - F39CCB97109403AD6FE25D078F23BEA2 /* icon_file_type_flv@2x.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = "icon_file_type_flv@2x.png"; path = "Sources/Resources/FileType/icon_file_type_flv@2x.png"; sourceTree = ""; }; - F3A995BC590AFD7C3467D8606C64611E /* IQUIView+IQKeyboardToolbar.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "IQUIView+IQKeyboardToolbar.swift"; path = "IQKeyboardManagerSwift/IQToolbar/IQUIView+IQKeyboardToolbar.swift"; sourceTree = ""; }; - F3E4A99C1585A30BBE411712482B38FB /* AMapLocationManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AMapLocationManager.h; path = AMapLocationKit.framework/Headers/AMapLocationManager.h; sourceTree = ""; }; - F3E91C6BD65095AEEFDC4E03B9BFD430 /* icon_file_type_txt.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = icon_file_type_txt.png; path = Sources/Resources/FileType/icon_file_type_txt.png; sourceTree = ""; }; - F3FEAEB5B7B10A2F71F44FC2B748F2EA /* Bag.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Bag.swift; path = Platform/DataStructures/Bag.swift; sourceTree = ""; }; - F43F37D115DDF5A7C28C0B31B34ACD6D /* ImmediateSchedulerType.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ImmediateSchedulerType.swift; path = RxSwift/ImmediateSchedulerType.swift; sourceTree = ""; }; - F482B1C2C73FFF874AE556F103F88CEF /* JXCategoryBaseCellModel.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = JXCategoryBaseCellModel.m; path = Sources/Base/JXCategoryBaseCellModel.m; sourceTree = ""; }; - F4BEE9CA917F512C3FD57D5F05203740 /* NSAttributedString+DDCategory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSAttributedString+DDCategory.h"; path = "DDCategoryKit_Private/Classes/NSAttributedString+DDCategory/NSAttributedString+DDCategory.h"; sourceTree = ""; }; - F5016B3D0A65AAD4657BBADEC542E1C9 /* RxCocoa-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RxCocoa-dummy.m"; sourceTree = ""; }; - F512F3041035F56871685C987D11FF08 /* TailRecursiveSink.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = TailRecursiveSink.swift; path = RxSwift/Observers/TailRecursiveSink.swift; sourceTree = ""; }; - F53A9243DEB95C65A237DF2FC5D1B49A /* DispatchQueue+Alamofire.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "DispatchQueue+Alamofire.swift"; path = "Source/DispatchQueue+Alamofire.swift"; sourceTree = ""; }; - F566C6B3B03D6D90F6484A043515444D /* DDMAMapKit_Private.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = DDMAMapKit_Private.modulemap; sourceTree = ""; }; - F57D3F8AD316C5F37113D8A8A494EFB8 /* DDZFPlayerKit_Private-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "DDZFPlayerKit_Private-dummy.m"; sourceTree = ""; }; - F57FE6ED4A8B63CF5ED9D33EEB59977F /* ZLProgressView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ZLProgressView.swift; path = Sources/General/ZLProgressView.swift; sourceTree = ""; }; - F5A256B8C583A50845AE7FB5B6C71FD7 /* UISwitch+DDCategory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UISwitch+DDCategory.h"; path = "DDCategoryKit_Private/Classes/UISwitch+DDCategory/UISwitch+DDCategory.h"; sourceTree = ""; }; - F63973A1D441D2D2E7D8AE38DA8B1D0F /* CombineLatest+Collection.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "CombineLatest+Collection.swift"; path = "RxSwift/Observables/CombineLatest+Collection.swift"; sourceTree = ""; }; - F658C34F510D4161B91E8202C301B94C /* UIView+ZFFrame.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIView+ZFFrame.h"; path = "DDZFPlayerKit_Private/Classes/ControlView/UIView+ZFFrame.h"; sourceTree = ""; }; - F67C227A488C8DB0BDA18F022B5C7536 /* Infallible+Zip+arity.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Infallible+Zip+arity.swift"; path = "RxSwift/Traits/Infallible/Infallible+Zip+arity.swift"; sourceTree = ""; }; - F689DCFDDA3B9D4920FDCD855822EB93 /* AMapServices.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AMapServices.h; path = AMapFoundationKit.framework/Headers/AMapServices.h; sourceTree = ""; }; + EC7C27BC7B4EDF99E9688210D150A7FE /* MATraceLocation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MATraceLocation.h; path = AMapNaviKit.framework/Headers/MATraceLocation.h; sourceTree = ""; }; + EC82167D0BCE09742276BE1C86733EB6 /* EKRatingMessageView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = EKRatingMessageView.swift; path = Source/MessageViews/EKRatingMessageView.swift; sourceTree = ""; }; + ECAEDF3F076D91FCE0B4B9C0BC452FB8 /* icon_file_type_dll.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = icon_file_type_dll.png; path = Sources/Resources/FileType/icon_file_type_dll.png; sourceTree = ""; }; + ECEBD105BC3DD54516396EDE38B717BF /* NSMutableParagraphStyle+DDCategory.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSMutableParagraphStyle+DDCategory.m"; path = "DDCategoryKit_Private/Classes/NSAttributedString+DDCategory/NSMutableParagraphStyle+DDCategory.m"; sourceTree = ""; }; + ED0FE5A880681595C6E294B2ADB60F3E /* ZLCameraCell.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ZLCameraCell.swift; path = Sources/General/ZLCameraCell.swift; sourceTree = ""; }; + ED6916102BF992D0D04FE7DC99C7FB32 /* ZFSmallFloatControlView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = ZFSmallFloatControlView.m; path = DDZFPlayerKit_Private/Classes/ControlView/ZFSmallFloatControlView.m; sourceTree = ""; }; + ED7E15AE0A194F9FC49B5CB011F3E585 /* SchedulerServices+Emulation.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "SchedulerServices+Emulation.swift"; path = "RxSwift/Schedulers/SchedulerServices+Emulation.swift"; sourceTree = ""; }; + ED9DAB700B164AD30E46AC170A2410A4 /* _OCLoggerFormat.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = _OCLoggerFormat.h; path = Sources/Logs/_OCLoggerFormat.h; sourceTree = ""; }; + EDC31A31277E9C411C5E76B0BE877FEB /* ZFPlayerMediaControl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ZFPlayerMediaControl.h; path = DDZFPlayerKit_Private/Classes/Core/ZFPlayerMediaControl.h; sourceTree = ""; }; + EDCB13EC8ED90287D8EF26C15BA8046A /* Reduce.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Reduce.swift; path = RxSwift/Observables/Reduce.swift; sourceTree = ""; }; + EDCE541EE66134DC578CD78A2B632931 /* ZFNetworkSpeedMonitor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ZFNetworkSpeedMonitor.h; path = DDZFPlayerKit_Private/Classes/ControlView/ZFNetworkSpeedMonitor.h; sourceTree = ""; }; + EE0142B9B3DD02DE5EAF77678B98478A /* _RX.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = _RX.m; path = RxCocoa/Runtime/_RX.m; sourceTree = ""; }; + EE264AABB23776FDCFBFF501E0FDF2EE /* Sources_DDMAMap */ = {isa = PBXFileReference; includeInIndex = 1; name = Sources_DDMAMap; path = DDMAMapKit_Private/Assets/Sources_DDMAMap; sourceTree = ""; }; + EE3A38BA75D29E3A8D50DB018BA5E62F /* AMapSearchKit.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AMapSearchKit.h; path = AMapSearchKit.framework/Headers/AMapSearchKit.h; sourceTree = ""; }; + EEA008A28BDF010E2D0CE9198AD28F33 /* _HttpDatasource.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = _HttpDatasource.m; path = Sources/Network/_HttpDatasource.m; sourceTree = ""; }; + EEB0A50A51632AAD00B9054793B6AEFB /* CocoaDebugTool.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CocoaDebugTool.h; path = Sources/Logs/CocoaDebugTool.h; sourceTree = ""; }; + EEB2A39A626A4029B763E1D4FDED93B0 /* InvocableType.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = InvocableType.swift; path = RxSwift/Schedulers/Internal/InvocableType.swift; sourceTree = ""; }; + EEBCD415604C9646A8FA5E593113240A /* JCore-xcframeworks.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "JCore-xcframeworks.sh"; sourceTree = ""; }; + EEC05062A5E6D126EC5CFE8D3808DC5F /* DDWebImageKit_Private-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "DDWebImageKit_Private-prefix.pch"; sourceTree = ""; }; + EEDFEA33A7688A71A56B3EEF2632C4AC /* SubscriptionDisposable.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SubscriptionDisposable.swift; path = RxSwift/Disposables/SubscriptionDisposable.swift; sourceTree = ""; }; + EF0B158973609B159C23965C455FDB82 /* icon_file_type_avi@3x.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = "icon_file_type_avi@3x.png"; path = "Sources/Resources/FileType/icon_file_type_avi@3x.png"; sourceTree = ""; }; + EF0D9F411C0AE8266539CC3C372C5FD0 /* ZFNetworkSpeedMonitor.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = ZFNetworkSpeedMonitor.m; path = DDZFPlayerKit_Private/Classes/ControlView/ZFNetworkSpeedMonitor.m; sourceTree = ""; }; + EF14A9B1A6C6FEB6EA0A21A5F78E5EFC /* UIImage+Metadata.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImage+Metadata.h"; path = "DDWebImageKit_Private/Classes/SDWebImage/Core/UIImage+Metadata.h"; sourceTree = ""; }; + EF2C2406B60CC4D8EA742DF22C0464E8 /* SDImageGIFCoder.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageGIFCoder.m; path = DDWebImageKit_Private/Classes/SDWebImage/Core/SDImageGIFCoder.m; sourceTree = ""; }; + EF917127A706BE5056DB0757BB0D3027 /* ZLAdjustSlider.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ZLAdjustSlider.swift; path = Sources/Edit/ZLAdjustSlider.swift; sourceTree = ""; }; + EF9600A5E20E1F1D8BB7BA9C09398039 /* AMapSearchError.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AMapSearchError.h; path = AMapSearchKit.framework/Headers/AMapSearchError.h; sourceTree = ""; }; + EFC91CA687C77EB78B0495A49C083271 /* DDBaseImageView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DDBaseImageView.h; path = DDBasicControlsKit_Private/Classes/DDBaseImageView/DDBaseImageView.h; sourceTree = ""; }; + EFD44FF26920EDE0DCB5BA2C4501290F /* UIImage+ExtendedCacheData.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImage+ExtendedCacheData.h"; path = "DDWebImageKit_Private/Classes/SDWebImage/Core/UIImage+ExtendedCacheData.h"; sourceTree = ""; }; + EFE0E9EB1A26D5C47B69C3632FC8F704 /* KVORepresentable.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = KVORepresentable.swift; path = RxCocoa/Foundation/KVORepresentable.swift; sourceTree = ""; }; + F01FFDEB2A75E22E3705146498D2812E /* SDWebImageDownloaderConfig.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageDownloaderConfig.h; path = DDWebImageKit_Private/Classes/SDWebImage/Core/SDWebImageDownloaderConfig.h; sourceTree = ""; }; + F043E3D94E1CD915724692F8A121D384 /* MACustomCalloutView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MACustomCalloutView.h; path = AMapNaviKit.framework/Headers/MACustomCalloutView.h; sourceTree = ""; }; + F0E17ABBA096211C6ED32351A16C4B3A /* JXCategoryImageCellModel.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = JXCategoryImageCellModel.m; path = Sources/Image/JXCategoryImageCellModel.m; sourceTree = ""; }; + F1245050CD55525EA80F5689767F38DB /* MJRefreshNormalTrailer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MJRefreshNormalTrailer.m; path = MJRefresh/Custom/Trailer/MJRefreshNormalTrailer.m; sourceTree = ""; }; + F167BD4562E990B35130F5333EA5DFD5 /* AsMaybe.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AsMaybe.swift; path = RxSwift/Observables/AsMaybe.swift; sourceTree = ""; }; + F19B2B925BFFA8AE3E6612BC2138BD9A /* DDMAMapKit_Private.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = DDMAMapKit_Private.release.xcconfig; sourceTree = ""; }; + F1FEF3B975EB40C85B4437117CDAB598 /* UIImageView+WebCache.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIImageView+WebCache.m"; path = "DDWebImageKit_Private/Classes/SDWebImage/Core/UIImageView+WebCache.m"; sourceTree = ""; }; + F273A072785CD48170BE952D295EF537 /* DDZFPlayerKit_Private.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = DDZFPlayerKit_Private.modulemap; sourceTree = ""; }; + F28BA3BE050C9A287358AB4DD2762F00 /* MJRefresh.bundle */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = "wrapper.plug-in"; name = MJRefresh.bundle; path = MJRefresh/MJRefresh.bundle; sourceTree = ""; }; + F2CA57A46CFC866A1C016D2840494ABF /* DDBaseMutableAttributedString.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DDBaseMutableAttributedString.m; path = DDBasicControlsKit_Private/Classes/DDBaseAttributedString/DDBaseMutableAttributedString.m; sourceTree = ""; }; + F2CFF0136E8CE367AEE32D9EF265DABB /* icon_file_type_ogg.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = icon_file_type_ogg.png; path = Sources/Resources/FileType/icon_file_type_ogg.png; sourceTree = ""; }; + F2D21744513246EAB988E2CAE029C809 /* ZFPlayerNotification.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = ZFPlayerNotification.m; path = DDZFPlayerKit_Private/Classes/Core/ZFPlayerNotification.m; sourceTree = ""; }; + F2E528704DF4C607CBD038B191FA0AB1 /* PriorityQueue.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = PriorityQueue.swift; path = Platform/DataStructures/PriorityQueue.swift; sourceTree = ""; }; + F3525AEDA56FED2FF9795DFE7EDA805D /* EKAttributes+PopBehavior.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "EKAttributes+PopBehavior.swift"; path = "Source/Model/EntryAttributes/EKAttributes+PopBehavior.swift"; sourceTree = ""; }; + F35F515B2EAAA0C6E149AA7B49918CB3 /* MJRefreshBackNormalFooter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MJRefreshBackNormalFooter.m; path = MJRefresh/Custom/Footer/Back/MJRefreshBackNormalFooter.m; sourceTree = ""; }; + F36735FF5E1B911336F31051C113943F /* CompactMap.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CompactMap.swift; path = RxSwift/Observables/CompactMap.swift; sourceTree = ""; }; + F38DDA8A3A762C54DEC602DA366F2888 /* icon_file_type_mpg.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = icon_file_type_mpg.png; path = Sources/Resources/FileType/icon_file_type_mpg.png; sourceTree = ""; }; + F39356F38D8A9410EB074F2BD28DAF99 /* DriveRouteCustomAnnotationView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DriveRouteCustomAnnotationView.h; path = DDMAMapKit_Private/Classes/DDMAMap/AnnotationView/DriveRouteCustomAnnotationView.h; sourceTree = ""; }; + F3B13AA765A64D04BE8EA533B14AEAE8 /* EKColor.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = EKColor.swift; path = Source/Model/EKColor.swift; sourceTree = ""; }; + F4228AF4D852F9660E71671138791A16 /* SDAnimatedImage.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDAnimatedImage.h; path = DDWebImageKit_Private/Classes/SDWebImage/Core/SDAnimatedImage.h; sourceTree = ""; }; + F439DCAB61B74717AAF2AFA9035EB1DC /* ResourceBundle-DDBaseViewController-DDBasicControlsKit_Private-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "ResourceBundle-DDBaseViewController-DDBasicControlsKit_Private-Info.plist"; sourceTree = ""; }; + F4419A307FB65143ABA119AAD2502FCC /* ImageModifier.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ImageModifier.swift; path = Sources/Networking/ImageModifier.swift; sourceTree = ""; }; + F457DCCD2319BA0DD967924F8A6011B8 /* MALineDrawType.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MALineDrawType.h; path = AMapNaviKit.framework/Headers/MALineDrawType.h; sourceTree = ""; }; + F46E7A0D25F83AAACAC784FEFAA65D51 /* CocoaDebug-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "CocoaDebug-dummy.m"; sourceTree = ""; }; + F4733E2C342FB40CB4CD34E6A3F8491F /* MJRefreshConst.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MJRefreshConst.m; path = MJRefresh/MJRefreshConst.m; sourceTree = ""; }; + F51A62D56FE8D54578C6D6D0138A1289 /* MJRefreshNormalTrailer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MJRefreshNormalTrailer.h; path = MJRefresh/Custom/Trailer/MJRefreshNormalTrailer.h; sourceTree = ""; }; + F5676AEB99DFE2EBCEC44B8F8C378995 /* PrimitiveSequence.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = PrimitiveSequence.swift; path = RxSwift/Traits/PrimitiveSequence/PrimitiveSequence.swift; sourceTree = ""; }; + F597B4968E78128119C969D588B30F42 /* Result+Alamofire.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Result+Alamofire.swift"; path = "Source/Result+Alamofire.swift"; sourceTree = ""; }; + F598DED1F4A7DADBFFD3C6E69C2B68E6 /* SDImageHEICCoder.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageHEICCoder.m; path = DDWebImageKit_Private/Classes/SDWebImage/Core/SDImageHEICCoder.m; sourceTree = ""; }; + F59BDF168F05078C91584ED7B66DDCDB /* JsonViewController.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = JsonViewController.swift; path = Sources/Network/JsonViewController.swift; sourceTree = ""; }; + F5A8105C70ECDF4CFE5D3AFF7923F775 /* MJRefreshBackFooter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MJRefreshBackFooter.h; path = MJRefresh/Base/MJRefreshBackFooter.h; sourceTree = ""; }; + F5A9A1FB0BAF1ED59BBE93379FC4A201 /* icon_file_type_ppt@3x.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = "icon_file_type_ppt@3x.png"; path = "Sources/Resources/FileType/icon_file_type_ppt@3x.png"; sourceTree = ""; }; + F5C5BE989D2BD909E8E0DD78E1BFA820 /* SDWebImageDefine.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageDefine.h; path = DDWebImageKit_Private/Classes/SDWebImage/Core/SDWebImageDefine.h; sourceTree = ""; }; + F625452479BE8DD7819DD032EBFE333F /* DDAutoUIKit_Private.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = DDAutoUIKit_Private.release.xcconfig; sourceTree = ""; }; + F642FDF0CEB3E2EAC8C4119A679C908D /* AMapFoundationKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; path = AMapFoundationKit.framework; sourceTree = ""; }; + F68C9B02B11B5CA2245E6B8812CCEBB4 /* ZFLoadingView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ZFLoadingView.h; path = DDZFPlayerKit_Private/Classes/ControlView/ZFLoadingView.h; sourceTree = ""; }; + F698606541EF2BD22C857481AA0F5270 /* AMapNaviRideDataRepresentable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AMapNaviRideDataRepresentable.h; path = AMapNaviKit.framework/Headers/AMapNaviRideDataRepresentable.h; sourceTree = ""; }; + F6C8E391647B7B514BEC561D7F819050 /* icon_file_type_svg.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = icon_file_type_svg.png; path = Sources/Resources/FileType/icon_file_type_svg.png; sourceTree = ""; }; F6D00CA03F52F8332AAD8FEEC4AFD406 /* ESTabBarController-swift */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "ESTabBarController-swift"; path = "libESTabBarController-swift.a"; sourceTree = BUILT_PRODUCTS_DIR; }; - F6E71155513FAFDC9B7A7F964F7610DC /* DDBaseTableViewCell.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DDBaseTableViewCell.h; path = DDBasicControlsKit_Private/Classes/DDBaseTableViewCell/DDBaseTableViewCell.h; sourceTree = ""; }; - F6E89D7DB7ECB692CE8387F208CB93BA /* DDMALocationManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DDMALocationManager.m; path = DDMAMapKit_Private/Classes/DDMALocation/DDMALocationManager.m; sourceTree = ""; }; - F726C2E411CA5EEC58103B771F31DB76 /* ParameterEncoder.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ParameterEncoder.swift; path = Source/ParameterEncoder.swift; sourceTree = ""; }; - F745DB220764ED676F6C089EA3C68C6D /* DDMASearch.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DDMASearch.m; path = DDMAMapKit_Private/Classes/DDMASearch/DDMASearch.m; sourceTree = ""; }; - F7508C3C007BB7CE6704DFF8D2E8E1CA /* UIImage+DDCategory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImage+DDCategory.h"; path = "DDCategoryKit_Private/Classes/UIImage+DDCategory/UIImage+DDCategory.h"; sourceTree = ""; }; - F758474F4CD597F0C306FF0D93ECE875 /* ZFSmallFloatControlView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = ZFSmallFloatControlView.m; path = DDZFPlayerKit_Private/Classes/ControlView/ZFSmallFloatControlView.m; sourceTree = ""; }; - F7AB72F72A27E40AEAAB408444E25A2C /* ShareReplayScope.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ShareReplayScope.swift; path = RxSwift/Observables/ShareReplayScope.swift; sourceTree = ""; }; - F7AE22AB585AA94812D55676007FA7D7 /* UIImage+DDCategory.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIImage+DDCategory.m"; path = "DDCategoryKit_Private/Classes/UIImage+DDCategory/UIImage+DDCategory.m"; sourceTree = ""; }; - F7B1858BC8CA7919CEF757BC20BB5638 /* icon_file_type_svg@3x.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = "icon_file_type_svg@3x.png"; path = "Sources/Resources/FileType/icon_file_type_svg@3x.png"; sourceTree = ""; }; - F7B8E5AC39D24AD8F796256EA544F517 /* SDImageIOCoder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageIOCoder.h; path = DDWebImageKit_Private/Classes/SDWebImage/Core/SDImageIOCoder.h; sourceTree = ""; }; - F7D92DC3034CCAF764DDFE03ED86E4B2 /* ZFNetworkSpeedMonitor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ZFNetworkSpeedMonitor.h; path = DDZFPlayerKit_Private/Classes/ControlView/ZFNetworkSpeedMonitor.h; sourceTree = ""; }; - F82AA08122B7F9E4B64E0A0291E5EBA9 /* GPBMessage+CocoaDebug.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "GPBMessage+CocoaDebug.h"; path = "Sources/Categories/GPBMessage+CocoaDebug.h"; sourceTree = ""; }; - F86F53707E8AF6A8B619AA6DC9507953 /* DDToastKit_Private-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "DDToastKit_Private-prefix.pch"; sourceTree = ""; }; - F8732CE75E642DFDA4054FD1DD67568E /* SDImageHEICCoder.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageHEICCoder.m; path = DDWebImageKit_Private/Classes/SDWebImage/Core/SDImageHEICCoder.m; sourceTree = ""; }; - F878E1E3B523CE5B214FC19730BCA66D /* icon_file_type_db.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = icon_file_type_db.png; path = Sources/Resources/FileType/icon_file_type_db.png; sourceTree = ""; }; - F87DF8C4A9233761A0749A0E68FB5D32 /* UISearchController+Rx.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "UISearchController+Rx.swift"; path = "RxCocoa/iOS/UISearchController+Rx.swift"; sourceTree = ""; }; - F887C82A71C30C5C4F96A175ACD6E53A /* ZFPlayerGestureControl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ZFPlayerGestureControl.h; path = DDZFPlayerKit_Private/Classes/Core/ZFPlayerGestureControl.h; sourceTree = ""; }; - F88D2578EDA6534F125A72606A08F61D /* SDWebImageIndicator.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageIndicator.m; path = DDWebImageKit_Private/Classes/SDWebImage/Core/SDWebImageIndicator.m; sourceTree = ""; }; - F893E70FAFEBF9D4E9978F5FA6B64368 /* DDCategoryKit_Private-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "DDCategoryKit_Private-prefix.pch"; sourceTree = ""; }; - F8944635C0FE010A89E5A2572100668D /* ConstraintMaker.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ConstraintMaker.swift; path = Sources/ConstraintMaker.swift; sourceTree = ""; }; - F8B359212F7742A96122EF282B41C1DD /* MACustomBuildingOverlayRenderer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MACustomBuildingOverlayRenderer.h; path = AMapNaviKit.framework/Headers/MACustomBuildingOverlayRenderer.h; sourceTree = ""; }; - F8F175D3AA07BF1DB0E4A336DFEA7A7C /* IQPreviousNextView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = IQPreviousNextView.swift; path = IQKeyboardManagerSwift/IQToolbar/IQPreviousNextView.swift; sourceTree = ""; }; - F900297CE61C286C2621290270EEEC65 /* icon_file_type_folder_not_empty@3x.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = "icon_file_type_folder_not_empty@3x.png"; path = "Sources/Resources/FileType/icon_file_type_folder_not_empty@3x.png"; sourceTree = ""; }; - F90790C47C135AE0444CF99A772403D5 /* JXCategoryCollectionView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = JXCategoryCollectionView.m; path = Sources/Common/JXCategoryCollectionView.m; sourceTree = ""; }; - F91FA5DD1005C5A8BFE1CECE84A32EB2 /* EKAttributes+Presets.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "EKAttributes+Presets.swift"; path = "Source/Model/EntryAttributes/EKAttributes+Presets.swift"; sourceTree = ""; }; - F94D697AF1028819859CAE6C33472941 /* _OCLogHelper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = _OCLogHelper.h; path = Sources/Logs/_OCLogHelper.h; sourceTree = ""; }; - F983E4264F6B199985EFA0AB6B4218E5 /* icon_file_type_wav@2x.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = "icon_file_type_wav@2x.png"; path = "Sources/Resources/FileType/icon_file_type_wav@2x.png"; sourceTree = ""; }; - F9925D323B239320300319A3555EF72E /* MAUserLocationRepresentation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MAUserLocationRepresentation.h; path = AMapNaviKit.framework/Headers/MAUserLocationRepresentation.h; sourceTree = ""; }; - F9951D0425BD3D33A7C46756E4CAFE39 /* UIColor+Utils.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "UIColor+Utils.swift"; path = "Source/Extensions/UIColor+Utils.swift"; sourceTree = ""; }; - F99EA2AAAF1006CB653099B823EBEDB3 /* MJRefreshAutoStateFooter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MJRefreshAutoStateFooter.h; path = MJRefresh/Custom/Footer/Auto/MJRefreshAutoStateFooter.h; sourceTree = ""; }; - F9A25FB796F61813231948FB60C1B678 /* ZLAlbumListController.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ZLAlbumListController.swift; path = Sources/General/ZLAlbumListController.swift; sourceTree = ""; }; - FA49F228B2A8A50D54DAA0F254ED6EDF /* EKAttributes+Duration.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "EKAttributes+Duration.swift"; path = "Source/Model/EntryAttributes/EKAttributes+Duration.swift"; sourceTree = ""; }; - FA55205F730C46C7C9851594C94BDDBA /* DDMAGeometry.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DDMAGeometry.h; path = DDMAMapKit_Private/Classes/DDMAUtil/DDMAGeometry.h; sourceTree = ""; }; - FAC48F51D4C81862787BA19831B6CB5B /* IgnoredURLsViewController.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = IgnoredURLsViewController.swift; path = Sources/App/IgnoredURLsViewController.swift; sourceTree = ""; }; - FB21874D716DEC43B48FA3B29DBBE1CD /* _OCLogModel.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = _OCLogModel.h; path = Sources/Logs/_OCLogModel.h; sourceTree = ""; }; - FB28B91D4D5684FE11502B6F763B3D35 /* KF.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = KF.swift; path = Sources/General/KF.swift; sourceTree = ""; }; - FB2E873760448889F66931AB26A20359 /* ImageView+Kingfisher.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "ImageView+Kingfisher.swift"; path = "Sources/Extensions/ImageView+Kingfisher.swift"; sourceTree = ""; }; - FB401CB82DC3A4E45142BA9EA2D52F0C /* DiskStorage.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = DiskStorage.swift; path = Sources/Cache/DiskStorage.swift; sourceTree = ""; }; - FB49483313A53F7E378207A5FA849CBE /* icon_file_type_ipa.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = icon_file_type_ipa.png; path = Sources/Resources/FileType/icon_file_type_ipa.png; sourceTree = ""; }; - FB4BA2FE5102FD42FC2222B7D06930AD /* KVORepresentable+Swift.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "KVORepresentable+Swift.swift"; path = "RxCocoa/Foundation/KVORepresentable+Swift.swift"; sourceTree = ""; }; - FB5502757CCA2AD1785E76E9B5F3C619 /* SingleAsync.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SingleAsync.swift; path = RxSwift/Observables/SingleAsync.swift; sourceTree = ""; }; - FB7A7F62DF2DCF5B91AE1D268B335171 /* KFImageProtocol.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = KFImageProtocol.swift; path = Sources/SwiftUI/KFImageProtocol.swift; sourceTree = ""; }; + F6F5D4F8E2A06285A391FA80DCBBB9DC /* SDDisplayLink.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDDisplayLink.h; path = DDWebImageKit_Private/Classes/SDWebImage/Private/SDDisplayLink.h; sourceTree = ""; }; + F704DFD4DDA03E7FADA8DF6152130DDC /* DDBaseScrollView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DDBaseScrollView.m; path = DDBasicControlsKit_Private/Classes/DDBaseScrollView/DDBaseScrollView.m; sourceTree = ""; }; + F726086F1D373F053A1DEEE80CACD310 /* DDMAMapKit_Private.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = DDMAMapKit_Private.modulemap; sourceTree = ""; }; + F7504D91F1FE354F884211F03513A3E9 /* Kingfisher.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = Kingfisher.debug.xcconfig; sourceTree = ""; }; + F7570B539CC2470A47D0007EB3C05A61 /* UITextField+DDCategory.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UITextField+DDCategory.m"; path = "DDCategoryKit_Private/Classes/UITextField+DDCategory/UITextField+DDCategory.m"; sourceTree = ""; }; + F762A66E222F56ED424E8728063D8F1C /* ESTabBarItemContainer.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ESTabBarItemContainer.swift; path = Sources/ESTabBarItemContainer.swift; sourceTree = ""; }; + F764AD157B7427700B8719B4F001290D /* UIImage+Transform.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImage+Transform.h"; path = "DDWebImageKit_Private/Classes/SDWebImage/Core/UIImage+Transform.h"; sourceTree = ""; }; + F76AB3AB3B75CEF888DD5E53F25604A5 /* RxScrollViewDelegateProxy.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RxScrollViewDelegateProxy.swift; path = RxCocoa/iOS/Proxies/RxScrollViewDelegateProxy.swift; sourceTree = ""; }; + F77601C6B6E656F149C6EC74A7D781C9 /* DDBaseTextView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DDBaseTextView.m; path = DDBasicControlsKit_Private/Classes/DDBaseTextView/DDBaseTextView.m; sourceTree = ""; }; + F77E3895D71D37E9E9BF54C89288DF20 /* NSDate+BRPickerView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSDate+BRPickerView.m"; path = "BRPickerView/DatePickerView/NSDate+BRPickerView.m"; sourceTree = ""; }; + F7EE83E18843E28A79B66B9A09F77712 /* Storage.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Storage.swift; path = Sources/Cache/Storage.swift; sourceTree = ""; }; + F803298370B7E0F98FA20AC9E3F1630E /* ObserverType.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ObserverType.swift; path = RxSwift/ObserverType.swift; sourceTree = ""; }; + F8DF5755A65EEB0CA7DCB4C4BB274FCC /* SDMemoryCache.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDMemoryCache.m; path = DDWebImageKit_Private/Classes/SDWebImage/Core/SDMemoryCache.m; sourceTree = ""; }; + F8EF5E200CCFF1CE7774C7E6B73884AC /* icon_file_type_ipa@3x.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = "icon_file_type_ipa@3x.png"; path = "Sources/Resources/FileType/icon_file_type_ipa@3x.png"; sourceTree = ""; }; + F90CDD080D5A728041970537B7FF4465 /* SingleAsync.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SingleAsync.swift; path = RxSwift/Observables/SingleAsync.swift; sourceTree = ""; }; + F90E6718FAE366DEF1E748A03B130BDC /* KingfisherError.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = KingfisherError.swift; path = Sources/General/KingfisherError.swift; sourceTree = ""; }; + F93C99D6D77833DED970D1B8B72D7689 /* _CacheStoragePolicy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = _CacheStoragePolicy.m; path = Sources/CustomHTTPProtocol/_CacheStoragePolicy.m; sourceTree = ""; }; + F9AA0992507E3F69477B65B8AE1D4D1E /* DDAudioPlayerKit_Private.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = DDAudioPlayerKit_Private.release.xcconfig; sourceTree = ""; }; + F9BA2AC78B83BB02C5AB9F67BC7CD445 /* ConstraintInsetTarget.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ConstraintInsetTarget.swift; path = Sources/ConstraintInsetTarget.swift; sourceTree = ""; }; + F9C6DECE1126440987AFF0DE1FBD167E /* JXCategoryIndicatorImageView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JXCategoryIndicatorImageView.h; path = Sources/Indicator/IndicatorViews/JXCategoryIndicatorImageView.h; sourceTree = ""; }; + FA15BD1A80854EA94FCF71653D8AAA8B /* ObservableConvertibleType+Driver.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "ObservableConvertibleType+Driver.swift"; path = "RxCocoa/Traits/Driver/ObservableConvertibleType+Driver.swift"; sourceTree = ""; }; + FA3DA5A1FFAD4CFF0CED5BBFB0F7BC5F /* icon_file_type_bin@2x.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = "icon_file_type_bin@2x.png"; path = "Sources/Resources/FileType/icon_file_type_bin@2x.png"; sourceTree = ""; }; + FA43F617E393D49EA35CC5CF6B7ACCCF /* Never.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Never.swift; path = RxSwift/Observables/Never.swift; sourceTree = ""; }; + FA4806691861BA43AA025BB12DE38210 /* RTLManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RTLManager.h; path = Sources/RLTManager/RTLManager.h; sourceTree = ""; }; + FA505CCF603B91462290E082E1024CFF /* MainScheduler.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = MainScheduler.swift; path = RxSwift/Schedulers/MainScheduler.swift; sourceTree = ""; }; + FABC49B157490BAC18D3C871805EF0D2 /* JXCategoryIndicatorBallView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JXCategoryIndicatorBallView.h; path = Sources/Indicator/IndicatorViews/JXCategoryIndicatorBallView.h; sourceTree = ""; }; + FB10F6FFFAF66492CCA037D464171E01 /* EKAttributes+FrameStyle.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "EKAttributes+FrameStyle.swift"; path = "Source/Model/EntryAttributes/EKAttributes+FrameStyle.swift"; sourceTree = ""; }; + FB68195B395EB6CF8633DE6EDFBB1088 /* JXCategoryIndicatorTriangleView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = JXCategoryIndicatorTriangleView.m; path = Sources/Indicator/IndicatorViews/JXCategoryIndicatorTriangleView.m; sourceTree = ""; }; + FB6CFF13C948BBCF31144201ECB76084 /* JXCategoryFactory.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = JXCategoryFactory.m; path = Sources/Common/JXCategoryFactory.m; sourceTree = ""; }; + FB78CF85ED022936DDE790464E22535E /* icon_file_type_ipa.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = icon_file_type_ipa.png; path = Sources/Resources/FileType/icon_file_type_ipa.png; sourceTree = ""; }; + FB7D6CBFDDCC1AE7F5A04594A649D758 /* SDImageTransformer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageTransformer.h; path = DDWebImageKit_Private/Classes/SDWebImage/Core/SDImageTransformer.h; sourceTree = ""; }; FB908FBF9F755AFB285A27A674140F71 /* DDMAMapKit_Private-DDMAMapKit_Private */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; name = "DDMAMapKit_Private-DDMAMapKit_Private"; path = DDMAMapKit_Private.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; - FBE77E323C369CD2819018FE1BD59114 /* MAAnnotationMoveAnimation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MAAnnotationMoveAnimation.h; path = AMapNaviKit.framework/Headers/MAAnnotationMoveAnimation.h; sourceTree = ""; }; - FC383CCE2A376E6F5189147162C54F70 /* DDCategoryKit_Private.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = DDCategoryKit_Private.release.xcconfig; sourceTree = ""; }; - FC6E15F9705E04077EE1C6AAB58B3245 /* DDLogKit_Private.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = DDLogKit_Private.debug.xcconfig; sourceTree = ""; }; - FC81838631B8DB78DD8D13C05BF4C611 /* MATraceReplayOverlayRender.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MATraceReplayOverlayRender.h; path = DDMAMapKit_Private/Classes/DDMAMap/Trace/MATraceReplayOverlayRender.h; sourceTree = ""; }; - FCA131DB60ABD7BB1A904B9EFD819E7F /* AMapNaviRideView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AMapNaviRideView.h; path = AMapNaviKit.framework/Headers/AMapNaviRideView.h; sourceTree = ""; }; - FCACE9A74D825BF4B496E6F9FED8065E /* JXCategoryView-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "JXCategoryView-prefix.pch"; sourceTree = ""; }; - FCACFF4ACFBAD5C14E11052A48CA179B /* UIColor+JXAdd.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIColor+JXAdd.m"; path = "Sources/Common/UIColor+JXAdd.m"; sourceTree = ""; }; - FCB33CD0B1C8C0AECCB4E5F57F1D7B70 /* JXCategoryTitleImageCell.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = JXCategoryTitleImageCell.m; path = Sources/TitleImage/JXCategoryTitleImageCell.m; sourceTree = ""; }; - FD490FEDC4022ECC0B3FE3BD2C2D2D60 /* ZFUtilities.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ZFUtilities.h; path = DDZFPlayerKit_Private/Classes/ControlView/ZFUtilities.h; sourceTree = ""; }; - FD4C07F899307DCB06A83714ADA91797 /* icon_file_type_ttf@3x.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = "icon_file_type_ttf@3x.png"; path = "Sources/Resources/FileType/icon_file_type_ttf@3x.png"; sourceTree = ""; }; - FD5537A10D483E8A6FF8AC4476D11915 /* SDWebImageDownloaderDecryptor.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageDownloaderDecryptor.m; path = DDWebImageKit_Private/Classes/SDWebImage/Core/SDWebImageDownloaderDecryptor.m; sourceTree = ""; }; - FDE2B119938353C0577D23AED088FCAC /* RxCollectionViewDataSourceType.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RxCollectionViewDataSourceType.swift; path = RxCocoa/iOS/Protocols/RxCollectionViewDataSourceType.swift; sourceTree = ""; }; - FDEF4BA13D09E622A25C60A47C214107 /* Platform.Linux.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Platform.Linux.swift; path = Platform/Platform.Linux.swift; sourceTree = ""; }; - FDFAC4F4DAE717D676222C37B7819776 /* ItemEvents.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ItemEvents.swift; path = RxCocoa/iOS/Events/ItemEvents.swift; sourceTree = ""; }; - FE11C85B43F8F9E7C4DC6CE0AFE0FD9A /* MAOfflineItemNationWide.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MAOfflineItemNationWide.h; path = AMapNaviKit.framework/Headers/MAOfflineItemNationWide.h; sourceTree = ""; }; - FE1278D59079F2DDAF577F7B69FC8AF7 /* RxTarget.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RxTarget.swift; path = RxCocoa/Common/RxTarget.swift; sourceTree = ""; }; - FE1D27C3D655462D110DAB2C76EAEB58 /* NopDisposable.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = NopDisposable.swift; path = RxSwift/Disposables/NopDisposable.swift; sourceTree = ""; }; - FE329BA7061A3819503E9331738D50D1 /* icon_file_type_pdf@3x.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = "icon_file_type_pdf@3x.png"; path = "Sources/Resources/FileType/icon_file_type_pdf@3x.png"; sourceTree = ""; }; - FE6FD30EC41C1D856637F82EB66D5D22 /* RxPickerViewDataSourceProxy.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RxPickerViewDataSourceProxy.swift; path = RxCocoa/iOS/Proxies/RxPickerViewDataSourceProxy.swift; sourceTree = ""; }; - FE8CD86B1F5A8BCBB77148D7F98EAB25 /* ZLImagePreviewController.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ZLImagePreviewController.swift; path = Sources/General/ZLImagePreviewController.swift; sourceTree = ""; }; - FEB29B95D1F1C6CE9502A936A5D3F306 /* ZFLandscapeWindow.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ZFLandscapeWindow.h; path = DDZFPlayerKit_Private/Classes/Core/ZFLandscapeWindow.h; sourceTree = ""; }; - FED6475D2837F1564DD7142FFBCB1637 /* EKSimpleMessageView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = EKSimpleMessageView.swift; path = Source/MessageViews/EKSimpleMessageView.swift; sourceTree = ""; }; - FEED1EA446DAFDCFAB2807A339078B72 /* AnyObserver.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AnyObserver.swift; path = RxSwift/AnyObserver.swift; sourceTree = ""; }; - FF31B1E008EE8A72A31FA0A19EC51777 /* _RX.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = _RX.h; path = RxCocoa/Runtime/include/_RX.h; sourceTree = ""; }; - FF4F5B59773D66A5F0821D6C7D0890A1 /* FPSCounter.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = FPSCounter.swift; path = Sources/Monitor/FPSCounter.swift; sourceTree = ""; }; - FF7D6F63C98CE7171D8C3AC6A22CF3C4 /* icon_file_type_java.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = icon_file_type_java.png; path = Sources/Resources/FileType/icon_file_type_java.png; sourceTree = ""; }; + FBAEF947E6FFA260FA85B1A061252448 /* DDZFPlayerKit_Private-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "DDZFPlayerKit_Private-umbrella.h"; sourceTree = ""; }; + FBC5098F9717EFA9E2BED153361BBB3B /* DDBaseCollectionView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DDBaseCollectionView.h; path = DDBasicControlsKit_Private/Classes/DDBaseCollectionView/DDBaseCollectionView.h; sourceTree = ""; }; + FBCA6F1394E943709DDB5AF4ECF650BC /* AMapGeoFenceManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AMapGeoFenceManager.h; path = AMapLocationKit.framework/Headers/AMapGeoFenceManager.h; sourceTree = ""; }; + FBFDD0D64101201EE491C7BA636B9FB8 /* _OCLogHelper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = _OCLogHelper.h; path = Sources/Logs/_OCLogHelper.h; sourceTree = ""; }; + FC17DCA805CCC35691BD7180B96E98EF /* _ImageResources.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = _ImageResources.h; path = Sources/Sandbox/_ImageResources.h; sourceTree = ""; }; + FC3311027CC6513D05907A98FBC34C87 /* icon_file_type_eps.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = icon_file_type_eps.png; path = Sources/Resources/FileType/icon_file_type_eps.png; sourceTree = ""; }; + FC3AEBB0D6452EE2092DCCD976849B6A /* AMapSearchVersion.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AMapSearchVersion.h; path = AMapSearchKit.framework/Headers/AMapSearchVersion.h; sourceTree = ""; }; + FC4705217CC9FF68E935D3D7C601F05B /* DDAutoUIKit_Private.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = DDAutoUIKit_Private.modulemap; sourceTree = ""; }; + FC53804DBE8F7C5939CB30564D7867F5 /* String+MD5.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "String+MD5.swift"; path = "Sources/Utility/String+MD5.swift"; sourceTree = ""; }; + FC5BE37C95A46CB43392AFE31C1BF78B /* PublishRelay+Signal.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "PublishRelay+Signal.swift"; path = "RxCocoa/Traits/Signal/PublishRelay+Signal.swift"; sourceTree = ""; }; + FC7F7AB4BB5377E9AD1204B0016F64CD /* _NetworkHelper.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = _NetworkHelper.m; path = Sources/Network/_NetworkHelper.m; sourceTree = ""; }; + FC8B091618B71E7F763B64FE0B5E4BC2 /* icon_file_type_php@3x.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = "icon_file_type_php@3x.png"; path = "Sources/Resources/FileType/icon_file_type_php@3x.png"; sourceTree = ""; }; + FC8C6E073A2A3C284E72E54033042682 /* MJRefreshNormalHeader.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MJRefreshNormalHeader.m; path = MJRefresh/Custom/Header/MJRefreshNormalHeader.m; sourceTree = ""; }; + FCA5408D0A6193C4CDFD7E4F370FD8DD /* Completable.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Completable.swift; path = RxSwift/Traits/PrimitiveSequence/Completable.swift; sourceTree = ""; }; + FCC0689C94E168FD23D6DF07468A933E /* BRDatePickerView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = BRDatePickerView.m; path = BRPickerView/DatePickerView/BRDatePickerView.m; sourceTree = ""; }; + FCCF6F0CB10172D6AE805C3FB8D9213E /* icon_file_type_flv@3x.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = "icon_file_type_flv@3x.png"; path = "Sources/Resources/FileType/icon_file_type_flv@3x.png"; sourceTree = ""; }; + FD1A4D7EA4C0FF50E8CAD03D7DAD5EA0 /* JXCategoryNumberView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JXCategoryNumberView.h; path = Sources/Number/JXCategoryNumberView.h; sourceTree = ""; }; + FD2B6D03DCF0FE0B116574665E976576 /* AboutViewController.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AboutViewController.swift; path = Sources/App/AboutViewController.swift; sourceTree = ""; }; + FD400BAD712DA8155B581382EA24C209 /* ZFPlayerController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = ZFPlayerController.m; path = DDZFPlayerKit_Private/Classes/Core/ZFPlayerController.m; sourceTree = ""; }; + FD55F60859DCBCCD3361042F6A9346C3 /* DDToastKit_Private.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = DDToastKit_Private.debug.xcconfig; sourceTree = ""; }; + FD6D94D80414A829977E023C2B6D0AFF /* MAMapKit.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MAMapKit.h; path = AMapNaviKit.framework/Headers/MAMapKit.h; sourceTree = ""; }; + FE177EE9D3B004EB6733D61957F9262D /* Just.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Just.swift; path = RxSwift/Observables/Just.swift; sourceTree = ""; }; + FE99BBDB48A081389ADDB7C942C9D53D /* RxCocoaObjCRuntimeError+Extensions.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "RxCocoaObjCRuntimeError+Extensions.swift"; path = "RxCocoa/Common/RxCocoaObjCRuntimeError+Extensions.swift"; sourceTree = ""; }; + FEA7381A1C2E782A13B424939A0EEF97 /* ConstraintLayoutSupportDSL.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ConstraintLayoutSupportDSL.swift; path = Sources/ConstraintLayoutSupportDSL.swift; sourceTree = ""; }; + FEA788EC7E9FAD535DC02D0DB63B550D /* DDBaseTextView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DDBaseTextView.h; path = DDBasicControlsKit_Private/Classes/DDBaseTextView/DDBaseTextView.h; sourceTree = ""; }; + FEB3849285F266B19B972DD8B9E5FEC6 /* icon_file_type_7z@3x.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = "icon_file_type_7z@3x.png"; path = "Sources/Resources/FileType/icon_file_type_7z@3x.png"; sourceTree = ""; }; + FEC6925ED810FDA7E68FB292F5D8D445 /* MAMapCustomStyleOptions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MAMapCustomStyleOptions.h; path = AMapNaviKit.framework/Headers/MAMapCustomStyleOptions.h; sourceTree = ""; }; + FEE7DBEFE7F775DFFA5240912E9F51BE /* ESTabBarItemMoreContentView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ESTabBarItemMoreContentView.swift; path = Sources/ESTabBarItemMoreContentView.swift; sourceTree = ""; }; + FF026286CC33ACD6E58EEC6812A1EF8D /* SDImageCacheConfig.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageCacheConfig.m; path = DDWebImageKit_Private/Classes/SDWebImage/Core/SDImageCacheConfig.m; sourceTree = ""; }; + FF18A1ECEBC50B64292A3336D415802A /* EKXStatusBarMessageView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = EKXStatusBarMessageView.swift; path = Source/MessageViews/Notes/EKXStatusBarMessageView.swift; sourceTree = ""; }; + FF36C307B7C760023CA9BF4AC28A1E20 /* MAParticleOverlayOptions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MAParticleOverlayOptions.h; path = AMapNaviKit.framework/Headers/MAParticleOverlayOptions.h; sourceTree = ""; }; FF8B264DFE802855D5D67E7CDDABFC3C /* RxRelay */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = RxRelay; path = libRxRelay.a; sourceTree = BUILT_PRODUCTS_DIR; }; - FF98BC7BC3755017A8E09F57C1003273 /* EKAttributes+FrameStyle.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "EKAttributes+FrameStyle.swift"; path = "Source/Model/EntryAttributes/EKAttributes+FrameStyle.swift"; sourceTree = ""; }; - FFA1662A77033E275AC6575C0E69D477 /* SynchronizedDisposeType.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SynchronizedDisposeType.swift; path = RxSwift/Concurrency/SynchronizedDisposeType.swift; sourceTree = ""; }; + FF8BA90E9DCA787B16E878C53AB2B3E7 /* NSImage+Compatibility.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSImage+Compatibility.m"; path = "DDWebImageKit_Private/Classes/SDWebImage/Core/NSImage+Compatibility.m"; sourceTree = ""; }; + FFD7FDA1C2B48E52D6D0CEA1B536BB51 /* ZLPhotoBrowser.bundle */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = "wrapper.plug-in"; name = ZLPhotoBrowser.bundle; path = Sources/ZLPhotoBrowser.bundle; sourceTree = ""; }; + FFE415ECD60C7DB122A14EA2B5A0EACA /* DDViewController.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = DDViewController.swift; path = DDControlsKit_Private/Classes/DDViewController/DDViewController.swift; sourceTree = ""; }; + FFF34B6136DB104FBA1D9728E6712879 /* icon_file_type_java@2x.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = "icon_file_type_java@2x.png"; path = "Sources/Resources/FileType/icon_file_type_java@2x.png"; sourceTree = ""; }; + FFFC3E30B1DB33AE5968EE45AD733CA8 /* JXCategoryTitleView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = JXCategoryTitleView.m; path = Sources/Title/JXCategoryTitleView.m; sourceTree = ""; }; /* End PBXFileReference section */ /* Begin PBXFrameworksBuildPhase section */ + 0195FCD752A2BE70AD56BA8DF4DBA31A /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 0B04583904FED4B26964C1A91330D470 /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; 0B826A78BC5F53B68D14CDA98DE8124B /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; @@ -3567,13 +3599,6 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 2411AFDF8C1C2017EDCBEB965E1EC45F /* Frameworks */ = { - isa = PBXFrameworksBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; 334C594B2E25DF94B2E5B12F6FF33727 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; @@ -3581,20 +3606,6 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 372F28DC4BB9EBBF7967D93174DC77D9 /* Frameworks */ = { - isa = PBXFrameworksBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 3F1711A22900F2FF75C90B32C72E20AC /* Frameworks */ = { - isa = PBXFrameworksBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; 56B8475E400E7376978326EEE1692857 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; @@ -3630,6 +3641,20 @@ ); runOnlyForDeploymentPostprocessing = 0; }; + 7CE1E470D639136D127D8F7F7135021A /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 7D634442AED1F31875B097C772204E27 /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; 7D7FFE22831E3FEAB4D187CCA822F767 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; @@ -3658,6 +3683,13 @@ ); runOnlyForDeploymentPostprocessing = 0; }; + 898380CE963DC6F772ADB9DC5E3B5219 /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; 925A0BC02B700FFE1FBFCAC4B7167920 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; @@ -3672,20 +3704,6 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - A63D551E63F430EC676BB35324A5F15F /* Frameworks */ = { - isa = PBXFrameworksBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - A6A2B035ED39AD6563B21EA299EA7ACE /* Frameworks */ = { - isa = PBXFrameworksBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; B5D363AC2D05E0B84F283A0CA07C5955 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; @@ -3693,6 +3711,13 @@ ); runOnlyForDeploymentPostprocessing = 0; }; + B6C57078E056CF7022A437F6A03EEA3B /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; B88F8F6E2CE905ABF7D46355D81603BE /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; @@ -3707,14 +3732,14 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - CAC07032D7C6A0C6413BAA8AE60CA8CE /* Frameworks */ = { + C6DA7DE690A6DE816489ABBF257E3245 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - CD41E2FABE4D891684420E2BB284EE9D /* Frameworks */ = { + CAC07032D7C6A0C6413BAA8AE60CA8CE /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( @@ -3728,21 +3753,14 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - D3A4922AFECD30508E8050DAD19A085F /* Frameworks */ = { + D5E1D84B34B71519E4F5E7B072CAC9F0 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - E2AB035E3CAB7854B3BE8423EF0B116B /* Frameworks */ = { - isa = PBXFrameworksBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - F220AD2B7FD3DDC4BDD277E8557325E4 /* Frameworks */ = { + DD7D27F8A87777C65DDBD0A0C79FC5E8 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( @@ -3756,6 +3774,13 @@ ); runOnlyForDeploymentPostprocessing = 0; }; + F23F546DE7C760E9AD95855A7DB4D31D /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; F7A4A86180BC4B088DFEF9858AD389DA /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; @@ -3773,507 +3798,642 @@ /* End PBXFrameworksBuildPhase section */ /* Begin PBXGroup section */ - 0176DFC1FFBAA02F9FC45EBEBF8FD479 /* Support Files */ = { + 000858DEE790CF63FB98B1B608E62177 /* Support Files */ = { isa = PBXGroup; children = ( - C995C4D0A4A9F719934E05932C38F999 /* DDCategoryKit_Private.modulemap */, - 1BB7F9EAAFF2CD04B575824562D3AF45 /* DDCategoryKit_Private-dummy.m */, - F893E70FAFEBF9D4E9978F5FA6B64368 /* DDCategoryKit_Private-prefix.pch */, - CEE738615B2EE401B9D22BDD2FDE075E /* DDCategoryKit_Private-umbrella.h */, - 3582E080BDF893D920DB67A390787C11 /* DDCategoryKit_Private.debug.xcconfig */, - FC383CCE2A376E6F5189147162C54F70 /* DDCategoryKit_Private.release.xcconfig */, + 3BA278E183408DF0809B958743E87189 /* AMapLocation-NO-IDFA.debug.xcconfig */, + 28B9E3EAC7A6B0D0D40B66514615C6A3 /* AMapLocation-NO-IDFA.release.xcconfig */, ); name = "Support Files"; - path = "../Target Support Files/DDCategoryKit_Private"; + path = "../Target Support Files/AMapLocation-NO-IDFA"; sourceTree = ""; }; - 01DC20C11ABF20A8F276411D0F1776BC /* Alamofire */ = { + 01A8E3244E176E360072BE772C5CF0C9 /* Frameworks */ = { isa = PBXGroup; children = ( - 17FE25B167DF787D85213EFAD8A65F86 /* AFError.swift */, - 54D67769321D791840A2A2CD738B013D /* Alamofire.swift */, - CF7B59BA432F57F703832313508F60A2 /* AlamofireExtended.swift */, - 5D19165F3D9C941F56C6C01006738953 /* AuthenticationInterceptor.swift */, - E6A7B26DA7F5A86EC8032CEC6A9E77E7 /* CachedResponseHandler.swift */, - 5E03D57AB96189F735C63A670785F735 /* Combine.swift */, - ABA313177CD8608DABD75954FF2C2892 /* Concurrency.swift */, - F53A9243DEB95C65A237DF2FC5D1B49A /* DispatchQueue+Alamofire.swift */, - CCAFB586D754209E17A0F239873CD61B /* EventMonitor.swift */, - E68B0375956523651998CF32F55AB61D /* HTTPHeaders.swift */, - CE0C400418A57E430B7A897E10E2C3F0 /* HTTPMethod.swift */, - 67060FD42145B66F1A61CA35C1A61F88 /* MultipartFormData.swift */, - 69EC8A160AD22CB1B2D0105E0472D713 /* MultipartUpload.swift */, - 7BBC6B884E574345D5171B1F0453A744 /* NetworkReachabilityManager.swift */, - 18AA3DD7D8E41F447D4BD4E58668DFFB /* Notifications.swift */, - 382198043E887A4688E430A3263D1CB1 /* OperationQueue+Alamofire.swift */, - F726C2E411CA5EEC58103B771F31DB76 /* ParameterEncoder.swift */, - 789607F19987B7D812F6C28CF0A9F53E /* ParameterEncoding.swift */, - 4804E79EBA86D501C990BB40069CE63F /* Protected.swift */, - 00F6B846ADC5D2330E73109D2B295E0C /* RedirectHandler.swift */, - 0FFD5740C138B6B009157E54889C7C5F /* Request.swift */, - EB6F3055215B15FD7F07238DA323035E /* RequestCompression.swift */, - E76D3297A0F1D7A730B42AAE78DBD430 /* RequestInterceptor.swift */, - CC87A2DBF0FE2ADBD366FDC38AE6E9DF /* RequestTaskMap.swift */, - 8001D23F262F5F63F0EF72A2EBB114FF /* Response.swift */, - 9A09E8EEA631B765C5475928162D3E0E /* ResponseSerialization.swift */, - E09AAEF8F18D76B513D39EB70092EC2A /* Result+Alamofire.swift */, - 74D75E2145F221B9A070A7707B775E19 /* RetryPolicy.swift */, - AF5DADD331F2AC5EC5ADD98DB4CD102E /* ServerTrustEvaluation.swift */, - 4998241B9DB024FD4D497A5A37A92766 /* Session.swift */, - 963E26E890BD9485EF8BB51CC12DF4E9 /* SessionDelegate.swift */, - 08425F2E3CB26EB19960F2FA768C618C /* StringEncoding+Alamofire.swift */, - 50DD9CA4A8D19048933C78B9B129D729 /* URLConvertible+URLRequestConvertible.swift */, - 99E0B70509B8992D36DB21F880D93CC8 /* URLEncodedFormEncoder.swift */, - 95AD84FDA0C2AC7275AEE95C3305735F /* URLRequest+Alamofire.swift */, - 9466E05FB2CE875E3FC0F6573B17C373 /* URLSessionConfiguration+Alamofire.swift */, - 4289275E00B1ADBDCE7334B5EF4FC275 /* Validation.swift */, - 71F38AF69D3E6F845373B6D43C688D39 /* Support Files */, + 93EB9C49F7C62A3E4577F270D028B8C7 /* AMapNaviKit.framework */, ); - name = Alamofire; - path = Alamofire; + name = Frameworks; sourceTree = ""; }; - 028DAC21FDD79AB3C289C30794EDAA7D /* UITextField+DDCategory */ = { + 0224E4AA6FC5C4F774DF7F5D4F6388E0 /* UIScreen+DDCategory */ = { isa = PBXGroup; children = ( - 61287D945D0CF3A5E0AF842E59CED2E5 /* UITextField+DDCategory.h */, - 51B0FE0CE255275D563EBB823D9B8240 /* UITextField+DDCategory.m */, + 434248B67E62304D0A79EBFA73DEFB2E /* UIScreen+DDCategory.h */, + D3FEDA019CD04B1F913E1664AC449785 /* UIScreen+DDCategory.m */, ); - name = "UITextField+DDCategory"; + name = "UIScreen+DDCategory"; sourceTree = ""; }; - 03AC70E393124CAEF7FB1FC71DA4E5B9 /* DDAttributedString */ = { + 02DA1C7E90F9735C32205F1AC5E47B9C /* Support Files */ = { + isa = PBXGroup; + children = ( + 5C327F9F354ECAD3D31CE69C973C70BA /* AMapSearch-NO-IDFA.debug.xcconfig */, + 47D264E081BE7629EAC9140F4D6C5993 /* AMapSearch-NO-IDFA.release.xcconfig */, + ); + name = "Support Files"; + path = "../Target Support Files/AMapSearch-NO-IDFA"; + sourceTree = ""; + }; + 031C38676E5DE1D6BD30F711E17A0438 /* DDColorKit_Private */ = { + isa = PBXGroup; + children = ( + 58294F63B9546EE5FB94783D942812F9 /* ColorUtil.swift */, + E419746B6787458E132201D919607174 /* UIColor+Hue.swift */, + 621A5BA856E96EE5F0708D49F2E666FA /* Support Files */, + ); + name = DDColorKit_Private; + path = DDColorKit_Private; + sourceTree = ""; + }; + 062E4F028A07337AD9995011A6CEBEFF /* RxSwift */ = { + isa = PBXGroup; + children = ( + 435848D234E2FDFAF4BBA77E2EA0005A /* AddRef.swift */, + 676E8C28B7564438EEA471AA7DA540B4 /* Amb.swift */, + DE30300D5289DF8F6DDDCB85319EE501 /* AnonymousDisposable.swift */, + C57E79A96112BCD6EA0A4E7F5E4CFF64 /* AnonymousObserver.swift */, + E52C4912CFCE0D108D7B4C667778EDC2 /* AnyObserver.swift */, + F167BD4562E990B35130F5333EA5DFD5 /* AsMaybe.swift */, + 9F871E501BDBD3527CB3EFEDEE7E9C5F /* AsSingle.swift */, + 537F4C537F39CB0F98A503A917519178 /* AsyncLock.swift */, + 7461F23EDA1518F6883EEB3E41CA0304 /* AsyncSubject.swift */, + 7346DCB09CB67D9EAFCB67215E71C0CD /* AtomicInt.swift */, + 998CF5D4571BBD8AFF163619A5F96028 /* Bag.swift */, + A426DE49EBDEF83C4811B094FE4CE40F /* Bag+Rx.swift */, + 3FDA3F7F7AD59FD9728C33CD690CADC9 /* BehaviorSubject.swift */, + D125BAFD50654D75081EFBAFCC1351E6 /* BinaryDisposable.swift */, + B6D33CBC0FA9298AE47CF287968671AD /* Binder.swift */, + 054402A6F7A877BCAB755AD878F1E8DA /* BooleanDisposable.swift */, + E8E9C41279E22A264F31E8EB006AF940 /* Buffer.swift */, + 8A25BF9734B25A304D5C5B6B88ABB5F1 /* Cancelable.swift */, + E5518F4EDC6D868C170E86765C7EE1C7 /* Catch.swift */, + 234B50B3C07DF6F1E476438BB3989711 /* CombineLatest.swift */, + 62C9B6FEA8933A8FFC5187F59FF50546 /* CombineLatest+arity.swift */, + ABCE38FE49A0559C11D295016A9231CD /* CombineLatest+Collection.swift */, + F36735FF5E1B911336F31051C113943F /* CompactMap.swift */, + FCA5408D0A6193C4CDFD7E4F370FD8DD /* Completable.swift */, + B52C260CC2661C41EEF0F0AB4049195B /* Completable+AndThen.swift */, + 58B79610BE6A6C4B3D20180A405E2ADC /* CompositeDisposable.swift */, + A8F377837B80FD1BAD30AAD44F1DE913 /* Concat.swift */, + D1A005411876EDC6C9C2015937E1E713 /* ConcurrentDispatchQueueScheduler.swift */, + DD3DC48DCE4F122D2259E78DF872A8D1 /* ConcurrentMainScheduler.swift */, + 54AD63E8A96A371B44C02911303E7964 /* ConnectableObservableType.swift */, + 8875FCF2AB4987007C0D4FA3C9F7DE5F /* Create.swift */, + E7F4F9CDF62C0846F5F5198499E25BAE /* CurrentThreadScheduler.swift */, + 5B6E1C43DDC2917670BEB8DBBDB08584 /* Date+Dispatch.swift */, + 5B0C9B0C30155D7F73A4B04BA60E4F99 /* Debounce.swift */, + D4838910D44FA150E26BFE42CEA3D57A /* Debug.swift */, + E84A12C3DFBDE91E21E7337CCA6944B7 /* Decode.swift */, + A10B35338C50E2E7972A693714CFE031 /* DefaultIfEmpty.swift */, + AC2AFF5B1F5931BBB145A36A7230F595 /* Deferred.swift */, + C3CAB0B4123BEA6346718C4838F0FC50 /* Delay.swift */, + D6A30222DA6B089C8449D6D03D27304B /* DelaySubscription.swift */, + 4771E804534D3D249DF1F01ED35C03FB /* Dematerialize.swift */, + 5BCAF6C65AB5E9C08DBA6533E050B8EB /* DispatchQueue+Extensions.swift */, + CAE56C8AA2FEDC20E7202A7D8016E756 /* DispatchQueueConfiguration.swift */, + 9468BFD4E552D5DDAEA1E67D7DB56D24 /* Disposable.swift */, + 7AC299BFF4B36E46DA5E5C19A243BEE6 /* Disposables.swift */, + B59401AF283208AC2EEE4485A3866BFE /* DisposeBag.swift */, + DEED4C0BA4E79E5C5C6887EC05AF121B /* DisposeBase.swift */, + 38E49CD14ED9A6FCC10384075B013697 /* DistinctUntilChanged.swift */, + 064600D7ACADFFBB57498295C3DD27F2 /* Do.swift */, + B409D0A129FF6110F02054F78B60E548 /* ElementAt.swift */, + DCE95AFFD6943785D88582A4367889EE /* Empty.swift */, + 5D65C497D6018CB8961CDA6B873E4947 /* Enumerated.swift */, + CEF89EE4F63350FA0CB98FFB0B96BBF6 /* Error.swift */, + 58616896C19469929ECA72A98CC07B44 /* Errors.swift */, + 748A512F28A34DFCAC2E395D397C6E39 /* Event.swift */, + 9F93A32E9DB2D15D01C4010FC5D07F13 /* Filter.swift */, + B32541AACE47269CB354614143DF7B6A /* First.swift */, + 98A613D06DB3DABFADB1410C9C88BA4A /* Generate.swift */, + 7BC6379377846296741D8F2DBA0420E0 /* GroupBy.swift */, + A177407DF2A68887C28973E169D3E834 /* GroupedObservable.swift */, + 7B9475A3AEF81D09A088D498993EC74C /* HistoricalScheduler.swift */, + 77160F7BF16B91B2D9844B16AB83623B /* HistoricalSchedulerTimeConverter.swift */, + 4BA0C75F7684400C20E23E37C316BCF3 /* ImmediateSchedulerType.swift */, + E0F0F96451A68F74A5FB41806794FCB0 /* Infallible.swift */, + 6153795380A37DDF8BBB1386F4942EA0 /* Infallible+CombineLatest+arity.swift */, + 2FAD6FC15974DBA0FF12BECCEA235872 /* Infallible+Concurrency.swift */, + 531184938876CA9716B95BFA557D283E /* Infallible+Create.swift */, + 9398D0DAD4E01C571C1ED9CA3135B0BA /* Infallible+Operators.swift */, + 59F699CE8707481B6EED4B8F739DDEF4 /* Infallible+Zip+arity.swift */, + 1DB8FDD14E81F90CCFE85737A8CEC924 /* InfiniteSequence.swift */, + E20982A967158AEDA75F6A82C270C06B /* InvocableScheduledItem.swift */, + EEB2A39A626A4029B763E1D4FDED93B0 /* InvocableType.swift */, + FE177EE9D3B004EB6733D61957F9262D /* Just.swift */, + CA50061F5080EC34DF4203BBE861C65B /* Lock.swift */, + 16DAE2405AA7292247B80C9B21D719D7 /* LockOwnerType.swift */, + FA505CCF603B91462290E082E1024CFF /* MainScheduler.swift */, + E5C14560972FBDF5DB6B731628A50F15 /* Map.swift */, + 748960030C36ABF440BA1CE28F9C5EFB /* Materialize.swift */, + 1E5D7BE5A8C68A6233EE6F7864457AFB /* Maybe.swift */, + AA7457E9D95BB71D2AE7D1079D342213 /* Merge.swift */, + 9BA272C3D59BCADB8C11C60B4383A94E /* Multicast.swift */, + FA43F617E393D49EA35CC5CF6B7ACCCF /* Never.swift */, + 04B4465701FE30BC34749FE111978E33 /* NopDisposable.swift */, + 0C7E08017D80EF1936CE54E783C7F2C9 /* Observable.swift */, + 284A75AE5C0CC6970B534ABE1C67EE62 /* Observable+Concurrency.swift */, + 7F4151E4B1A98BD20FBBA05B269CEC3D /* ObservableConvertibleType.swift */, + 181754F8C4EE544D7FEB2F35942336C6 /* ObservableConvertibleType+Infallible.swift */, + 3FD110744D980000542053E9BB4F6FEE /* ObservableType.swift */, + 1F26048853D41F6951BEE9160B19D666 /* ObservableType+Extensions.swift */, + 6F9A0A3CC2D465040BAD39CDEE3E2960 /* ObservableType+PrimitiveSequence.swift */, + AABD2A1F07E566F283854A6FE1C725C1 /* ObserveOn.swift */, + 99C707D252D49AEB0C99EE2EF4B04700 /* ObserverBase.swift */, + F803298370B7E0F98FA20AC9E3F1630E /* ObserverType.swift */, + E41D7B83FCFB9147B315800C262FEDB5 /* OperationQueueScheduler.swift */, + 16A984FFDCD2D8E2DDCD44B725FD124B /* Optional.swift */, + 1056F3A17BDA5E5959DA7C15030700C9 /* Platform.Darwin.swift */, + 0D4C8900E578B4C8C482C3CBE0AF8AF5 /* Platform.Linux.swift */, + F5676AEB99DFE2EBCEC44B8F8C378995 /* PrimitiveSequence.swift */, + 7709DD62399CFC13BF0390A0BD71D6EC /* PrimitiveSequence+Concurrency.swift */, + 63C55FFE843CAED94FBD7F970F09D837 /* PrimitiveSequence+Zip+arity.swift */, + F2E528704DF4C607CBD038B191FA0AB1 /* PriorityQueue.swift */, + 30074B228CDED11286106CC3F20A738D /* Producer.swift */, + E7F71551E3A9F242235C49513C300720 /* PublishSubject.swift */, + E96F96782C6C279675AFD8F730FE03B6 /* Queue.swift */, + 450E40440636F88F499AB2D099762A8A /* Range.swift */, + 196BC92B948C2A77914E274EA51CAB29 /* Reactive.swift */, + C00F1FD587BC6143D1E65722A2C8F14D /* RecursiveLock.swift */, + 9EE67FCA70CF2E96C7396C66B8C8E418 /* RecursiveScheduler.swift */, + EDCB13EC8ED90287D8EF26C15BA8046A /* Reduce.swift */, + 771811A58ABDD9E57E6F6329FC72F699 /* RefCountDisposable.swift */, + CA08CD95F541835B4B5F044AF72AB34E /* Repeat.swift */, + 7BA5BF848F3B2CC18719429673C572BC /* ReplaySubject.swift */, + 3782D65EACAA450C43A4CE8B9370A984 /* RetryWhen.swift */, + 0381861FFA483459D293AE76660FBA3B /* Rx.swift */, + 2D5BD207DDC2BB71CF6AD98D6249DF75 /* RxMutableBox.swift */, + 1CFD312BA20A13AE286234A92BEDA520 /* Sample.swift */, + 362E66A36D877A4D20CC49CA974F5BB5 /* Scan.swift */, + E9A321D453F1F1F648CA8A2C14389B81 /* ScheduledDisposable.swift */, + 6A22F2F74D59267FD22C1C2AADC04BCC /* ScheduledItem.swift */, + 138BCBB4DC817E9F31394ED16B8A29DA /* ScheduledItemType.swift */, + ED7E15AE0A194F9FC49B5CB011F3E585 /* SchedulerServices+Emulation.swift */, + 96ABA92A48DC6366CD32E74C1F62C908 /* SchedulerType.swift */, + 2A306642D3099DB598CFB71871466DFC /* Sequence.swift */, + CFCC88300DF5490EC6A8FC56907D7CBD /* SerialDispatchQueueScheduler.swift */, + 3DD0591BF7533C0451E6D3CAEAD03055 /* SerialDisposable.swift */, + 67CCF16C0C7428C981576BBBC754A8AE /* ShareReplayScope.swift */, + 0B2FBFB6B983E631D704734CD9F628EC /* Single.swift */, + 2957132475FD88FB6D7EA45136D9EEDF /* SingleAssignmentDisposable.swift */, + F90CDD080D5A728041970537B7FF4465 /* SingleAsync.swift */, + E77F9B687E0725738A83255C22A92278 /* Sink.swift */, + 4EEC6C121265DD23E5F6E56085E1C090 /* Skip.swift */, + E01CE23B80FE837FF12BBC50F8999492 /* SkipUntil.swift */, + 44D9D735940C8A938908E65F0C060C12 /* SkipWhile.swift */, + D08D1D68CE6D478AB9A9ED64A9CCD779 /* StartWith.swift */, + AA2D60263D4263EC3C06FA76DB65A215 /* SubjectType.swift */, + 219550FC122E9A2EB48E2907A147B61A /* SubscribeOn.swift */, + EEDFEA33A7688A71A56B3EEF2632C4AC /* SubscriptionDisposable.swift */, + DFE88A9C67A3D94369ED21686D1096D1 /* SwiftSupport.swift */, + D457B164D64164DD49B7FF00921C759B /* Switch.swift */, + 8B5DB959E7B45734C2E80C8B012D2D79 /* SwitchIfEmpty.swift */, + D69D678E5C111AC128EA7ED941DA19E3 /* SynchronizedDisposeType.swift */, + 2C315F24956CBAE8C22716422A20E129 /* SynchronizedOnType.swift */, + 0E82D13FE96061E6E4EB297A495D4B26 /* SynchronizedUnsubscribeType.swift */, + 38F1CDA85549F310B76E79023A2E3B0A /* TailRecursiveSink.swift */, + 0321E7AA98ABD7E09C1C01CFC3053FDA /* Take.swift */, + 87604FE5B385C7F20163074019BA899C /* TakeLast.swift */, + 880E7C4765FC3C7770A014CDB8FCCD61 /* TakeWithPredicate.swift */, + 7BD514F3DE2A753225A669ED836D142B /* Throttle.swift */, + 4EF3158E85C9B106AE64E06D6E642F8E /* Timeout.swift */, + B5BF97B625C2DAB4A96AAEFEECD7076E /* Timer.swift */, + 9961F617D17E7D5855FEDC8D77F4BD28 /* ToArray.swift */, + DADACDBCCA4C393F0DFB836E30849B8D /* Using.swift */, + B0C20731A624F740F63267BC8FA87F85 /* VirtualTimeConverterType.swift */, + E42670F2DF5141855AFEB36B7107CC53 /* VirtualTimeScheduler.swift */, + 6E8C75098DA35AB6703B4F91C3E60888 /* Window.swift */, + 46C2634E5526B6615070911397967020 /* WithLatestFrom.swift */, + 1B606FD5693272D3406170F74B26593D /* WithUnretained.swift */, + 00F8FEF823DF255B3B1E6AA2118CD7A8 /* Zip.swift */, + 6045E36CE46DE8AFEB133AAD6D0EEE6B /* Zip+arity.swift */, + CA61AAE812298E0D209110E6327C2C96 /* Zip+Collection.swift */, + A04AC91B1A23F4FE89E3592B2A533D70 /* Support Files */, + ); + name = RxSwift; + path = RxSwift; + sourceTree = ""; + }; + 07C51CE023F6EC9D5CF0F3E77989DC92 /* UIViewController+DDCategory */ = { + isa = PBXGroup; + children = ( + 4E0DDF1EA55919DC4CBB30DD9B225319 /* UIViewController+DDCategory.h */, + 0E002E2C792C5B797089C0CBB123AEB5 /* UIViewController+DDCategory.m */, + ); + name = "UIViewController+DDCategory"; + sourceTree = ""; + }; + 08A558054A8D80C1A1E3789802587FD0 /* DDAttributedString */ = { isa = PBXGroup; children = ( ); name = DDAttributedString; sourceTree = ""; }; - 054CDD192868465DC77C7D84BB0A0D28 /* Support Files */ = { + 0C11A8C3AFEDF36228EDCC6E6EABAD60 /* RxCocoa */ = { isa = PBXGroup; children = ( - 24579DE47045D93E548B20B186D05CC9 /* MJRefresh.modulemap */, - EA378D9D1C4E8CA1E806C8ED6989501B /* MJRefresh-dummy.m */, - 323813316A3B36A8F5BE51DF84560164 /* MJRefresh-prefix.pch */, - 84A0FA1DB917992766175DE53C902F3E /* MJRefresh-umbrella.h */, - 70F0EC675800BC9308A0F22D07A43974 /* MJRefresh.debug.xcconfig */, - 6D6E74D20FFAD62578494E1A63B033AB /* MJRefresh.release.xcconfig */, + 0CD07829ED3310E1E55EEA3E661C145F /* _RX.h */, + EE0142B9B3DD02DE5EAF77678B98478A /* _RX.m */, + 77A98B58F3B41349E68CDD317850FC5D /* _RXDelegateProxy.h */, + 63E0D36CEF3DBF49F6B580F32FC58C4A /* _RXDelegateProxy.m */, + 592DB6D4AD6DF021B80821D5051549ED /* _RXKVOObserver.h */, + 09BF7BEC4D90C021470A25988CB291BF /* _RXKVOObserver.m */, + 1D4569496544524EF4A71EB47BB75AA3 /* _RXObjCRuntime.h */, + 96167AC6C6F5EF1D29794661D7712D5B /* _RXObjCRuntime.m */, + 24074D619CA979F76AB1D2FD1CCA6091 /* Bag.swift */, + 33E080EE7742C6CA6040857FC0687A7D /* BehaviorRelay+Driver.swift */, + CD31EE58FAAF33885501B7534A0A5F6F /* ControlEvent.swift */, + 21D90E7DE1BC82090A16646FBB4F387E /* ControlEvent+Driver.swift */, + 4981C8793512C66B24F8DADF2E5C1C56 /* ControlEvent+Signal.swift */, + 6A9E0C8829F553582E5D82C16BF69732 /* ControlProperty.swift */, + 63E3F8D47F7ABFE54AA942BD9FC74648 /* ControlProperty+Driver.swift */, + B5A2D4393E3075C6B8D7D1C51DC1665E /* ControlTarget.swift */, + C48B612BD5FE3864CC82806D71E23179 /* DelegateProxy.swift */, + 90C04466BB725EF3775642FAB7893E44 /* DelegateProxyType.swift */, + EC3EC4E8B0AF0CC4724DF744657CF098 /* DispatchQueue+Extensions.swift */, + BA36808A8E8270E1626D7FE64162DDD8 /* Driver.swift */, + 331D98EB620C01F424B96A5DA29C60C0 /* Driver+Subscription.swift */, + 8B112DD0C99213833E217192DE213AC5 /* Infallible+Bind.swift */, + 38D1FFEB335AA2518A0C759264939B18 /* InfiniteSequence.swift */, + 62C319226F475905AD7EC35FDD075DB1 /* ItemEvents.swift */, + EFE0E9EB1A26D5C47B69C3632FC8F704 /* KVORepresentable.swift */, + BBF11C6363CD12CE3655D651C4655E05 /* KVORepresentable+CoreGraphics.swift */, + 3C082423F9CBB898B2BC579ADA0FC1F7 /* KVORepresentable+Swift.swift */, + 642614BDC93A4CC0B518EAEF889BBEE1 /* NotificationCenter+Rx.swift */, + 42F2302B18BC0F431281A775BC882B48 /* NSButton+Rx.swift */, + 652010C3C74634DF3F36531F7CF0C331 /* NSControl+Rx.swift */, + 61DB488F8381483566FD8DEC477E8903 /* NSObject+Rx.swift */, + 94BC0CACE6284059AD3275AC0D726586 /* NSObject+Rx+KVORepresentable.swift */, + A61A51E3D716D4E0619FAB677331207C /* NSObject+Rx+RawRepresentable.swift */, + 4858A1FCA98FB39993CF48E027E412A1 /* NSSlider+Rx.swift */, + DED5EDAA37435A7FE04C80EEC2761374 /* NSTextField+Rx.swift */, + E05E6EC0B4C505D1A7E9D5F69B8CA38A /* NSTextStorage+Rx.swift */, + 14D8C8FF1C95657CBA45ED86F902B75C /* NSTextView+Rx.swift */, + EA2A270EAFA4BFA26D028A5FBEC6B967 /* NSView+Rx.swift */, + E08418DB10E4C600EA85E90BC5A75AD5 /* Observable+Bind.swift */, + FA15BD1A80854EA94FCF71653D8AAA8B /* ObservableConvertibleType+Driver.swift */, + AD0E138C52B3C25BB2BADD0A94A3E168 /* ObservableConvertibleType+SharedSequence.swift */, + 85E9F3EA154A99BBECC5B46465D4766E /* ObservableConvertibleType+Signal.swift */, + DEE93522E0D5AB3846AF878A7A188C23 /* Platform.Darwin.swift */, + 99B18FCEB19AD03A05F1266DD8B4F130 /* Platform.Linux.swift */, + 9CC0B99E9419B9D9D1B93DEA4580469F /* PriorityQueue.swift */, + FC5BE37C95A46CB43392AFE31C1BF78B /* PublishRelay+Signal.swift */, + C9287B66111039EF4CEC9E0D009D7A25 /* Queue.swift */, + DCDD1C5741D48D8964048641DA43DDF6 /* RecursiveLock.swift */, + 08AF4D18C36AB2546F7F8922C2C9B6BE /* RxCocoa.h */, + C7642307C2A74441FB033082E4393E4F /* RxCocoa.swift */, + FE99BBDB48A081389ADDB7C942C9D53D /* RxCocoaObjCRuntimeError+Extensions.swift */, + 6F5760831A632750BA5434FEE20640AC /* RxCocoaRuntime.h */, + DF8206E5CAA0BF50EE051A3E54EEC24A /* RxCollectionViewDataSourcePrefetchingProxy.swift */, + D9BDF0B2899C443FF8D72F62B68543A3 /* RxCollectionViewDataSourceProxy.swift */, + C0AF181644C5C7DC5A7E75678DC10A48 /* RxCollectionViewDataSourceType.swift */, + 104A88C578F707D8C4EBA903BF4146CF /* RxCollectionViewDelegateProxy.swift */, + 0C825B8354A834C5C15737ADA5230621 /* RxCollectionViewReactiveArrayDataSource.swift */, + B6ECED9FCD08D1D74B9CA3E1016663E1 /* RxNavigationControllerDelegateProxy.swift */, + E13C0903A86C8953246BBB6DDD2F56E8 /* RxPickerViewAdapter.swift */, + 61D6B41DDEDC61A1F3ACB9B0E7067D50 /* RxPickerViewDataSourceProxy.swift */, + B2E7E72E88CC2B6EEB746997AA5CAB93 /* RxPickerViewDataSourceType.swift */, + DB243464AB07C65DCFB6CA6085BF2DEC /* RxPickerViewDelegateProxy.swift */, + F76AB3AB3B75CEF888DD5E53F25604A5 /* RxScrollViewDelegateProxy.swift */, + 7D79C35E0CC5A6179E03FDA7CDD468A7 /* RxSearchBarDelegateProxy.swift */, + 0865F93AD66982530A1413C5A2C358B5 /* RxSearchControllerDelegateProxy.swift */, + D266C2387F2CE19CEF74EC2E55AFC0D4 /* RxTabBarControllerDelegateProxy.swift */, + DC084944C38AB1F9506B44FC5985959B /* RxTabBarDelegateProxy.swift */, + 39EC8517CD324EB2F6039D5A1A0FE145 /* RxTableViewDataSourcePrefetchingProxy.swift */, + 79A7733C99A968670FBCEE19DF0898A4 /* RxTableViewDataSourceProxy.swift */, + A00FEC96F7432E514649B6321FE1CF58 /* RxTableViewDataSourceType.swift */, + 3C580E70D2C0C22659160DB7223DFDE7 /* RxTableViewDelegateProxy.swift */, + 644D8AD252E672E3F7F6BA6624E9119C /* RxTableViewReactiveArrayDataSource.swift */, + D3CE7A45B66F1B3D2596512F99B784F9 /* RxTarget.swift */, + 082A9747FFF7BFB6BFEDF73173BFEE19 /* RxTextStorageDelegateProxy.swift */, + 56F3F147246D1B193904FEC21A9AEBD3 /* RxTextViewDelegateProxy.swift */, + DDA5D029FADCA717A01EFCC92C9B2B58 /* RxWKNavigationDelegateProxy.swift */, + 0C4D2774C483DD40D57C7FA3D2C8D22E /* SchedulerType+SharedSequence.swift */, + D03B3691C165B2971CC8CD50D2218E12 /* SectionedViewDataSourceType.swift */, + D731AF5919347A7BD2190D3DC68B53D1 /* SharedSequence.swift */, + 9F7D764AB9E80A651E964C15395AD6EE /* SharedSequence+Concurrency.swift */, + B2189D7C470A9F19544369A0CD0F933A /* SharedSequence+Operators.swift */, + 4EECC4DA7562CF2E29F1756C668A94C0 /* SharedSequence+Operators+arity.swift */, + 425079D2E72CD9A6851A03BB59AA8956 /* Signal.swift */, + 31E9229CC74C809BECB976F679F909D0 /* Signal+Subscription.swift */, + 577FA7A5EA46FFE67C8286A291B00306 /* TextInput.swift */, + 3A42343C2D6959246C474CAF35D6CC1A /* UIActivityIndicatorView+Rx.swift */, + B90AFD70497E0BB1552C6FB2E37FED4B /* UIApplication+Rx.swift */, + 06826A974EFAD95ADA1626CA3E1F5DD1 /* UIBarButtonItem+Rx.swift */, + C37201DB90F4FF72205A918853410CB5 /* UIButton+Rx.swift */, + B3FBA5BCC63A7DA814380D5A7F18555B /* UICollectionView+Rx.swift */, + 0112B77C1DE51BC869026352B7DCA97E /* UIControl+Rx.swift */, + 901771A17BC2D5F010638245884EA1B0 /* UIDatePicker+Rx.swift */, + C301A7F6B36F77A416BA7AD89B129CF0 /* UIGestureRecognizer+Rx.swift */, + E556305153B517AFB44E232891AE5F61 /* UINavigationController+Rx.swift */, + 0B7EE5B4F5FFDEA10868682DCE8344CD /* UIPickerView+Rx.swift */, + DBEC891CEE309B242862AF7413655386 /* UIRefreshControl+Rx.swift */, + 306B5097D2023FAFEE069E00E5F37E8B /* UIScrollView+Rx.swift */, + 36A4D0EC4E7038F1609012E54032EFF5 /* UISearchBar+Rx.swift */, + 0B8832AD77B9DDB928EF069901018195 /* UISearchController+Rx.swift */, + 287776366F66CE2E5C743C88821272D7 /* UISegmentedControl+Rx.swift */, + 8B5A690194CC35F0CC1D2B4F5463C846 /* UISlider+Rx.swift */, + 5CB9AEE8BAA9A00767CBBE562874959F /* UIStepper+Rx.swift */, + 26D87AF29A25D07A11AC756180D366FE /* UISwitch+Rx.swift */, + 93E74055C504CD5F666B283D0C6A92AD /* UITabBar+Rx.swift */, + BF79B20945886A068F5468C6DA15B79F /* UITabBarController+Rx.swift */, + 12E70A20A9573BF5A9B175915B1E9F96 /* UITableView+Rx.swift */, + 7AFFA4A543A638320E30BF5221558469 /* UITextField+Rx.swift */, + E45E32F6A055D035199EF31E6D5E4520 /* UITextView+Rx.swift */, + 530175BFF8701244D4260BC4F03976BB /* URLSession+Rx.swift */, + 96BC0EB92C249ACEBDA78937D9AE25FC /* WKWebView+Rx.swift */, + 991D279697E793EB1290EC35C3D90B18 /* Support Files */, ); - name = "Support Files"; - path = "../Target Support Files/MJRefresh"; + name = RxCocoa; + path = RxCocoa; sourceTree = ""; }; - 0640E902FCA35AF380E0F54872BAFEBD /* Support Files */ = { + 0C94E4AF00C21302E679B5C2FEAAD7EC /* Support Files */ = { isa = PBXGroup; children = ( - BF98BFE0EA9C6D1DAC3BC289D3EC1F73 /* DDFontKit_Private.modulemap */, - F284C5F30FA7588405405D1CD74473DE /* DDFontKit_Private-dummy.m */, - 301E17C25285F8B535881FA9DE9EBD9A /* DDFontKit_Private-prefix.pch */, - B3B800654DB5322B0AB621BC0738B576 /* DDFontKit_Private-umbrella.h */, - B6649AEB4438C4464D3D9CB6F2ED7EE7 /* DDFontKit_Private.debug.xcconfig */, - 82AF50BEAEAD518CFE55280A7141ABC5 /* DDFontKit_Private.release.xcconfig */, + B7453EE2B9FCE484748EAFCD547E7034 /* IQKeyboardManagerSwift.modulemap */, + 67B484547995143B0A3FA497AA165822 /* IQKeyboardManagerSwift-dummy.m */, + 38A249F0CD458E564F1DDB97BC246EF7 /* IQKeyboardManagerSwift-prefix.pch */, + 8D159FCCEB97D06ABF0D4458AE6CF3F6 /* IQKeyboardManagerSwift-umbrella.h */, + 356ABE7F25D61387B8A46B5A3317D50C /* IQKeyboardManagerSwift.debug.xcconfig */, + 681863C9CF361BD9A43CF4E005C4CD13 /* IQKeyboardManagerSwift.release.xcconfig */, ); name = "Support Files"; - path = "../Target Support Files/DDFontKit_Private"; + path = "../Target Support Files/IQKeyboardManagerSwift"; sourceTree = ""; }; - 09BE182760FF1A2466F777ECB134498B /* NSObject+DDCategory */ = { + 0CBC088010C549DEE8FD67D406111B70 /* NSObject+DDCategory */ = { isa = PBXGroup; children = ( - 9A3FDF9212D2FCDDF45A3DCA1F2CBE90 /* NSObject+DDCategory.h */, - AF4F70AC21B67CD9571B7F02A609249A /* NSObject+DDCategory.m */, + 10ABE62193618D11DA78D5A4CF4C829B /* NSObject+DDCategory.h */, + 09E4BD9AF58866CD240FE98CC9FA9328 /* NSObject+DDCategory.m */, ); name = "NSObject+DDCategory"; sourceTree = ""; }; - 0A190BFC99F09B476B08D3E1402224B6 /* DDTextField */ = { + 0CE0C6862C2553D5DDC366EB9FCA41B4 /* Support Files */ = { isa = PBXGroup; children = ( - ); - name = DDTextField; - sourceTree = ""; - }; - 0A6FF1362FF40384EA9E620D2ABA0516 /* DDMALocation */ = { - isa = PBXGroup; - children = ( - 500B2D97BC6E479FA493016E92B11CE4 /* DDMALocationManager.h */, - F6E89D7DB7ECB692CE8387F208CB93BA /* DDMALocationManager.m */, - ); - name = DDMALocation; - sourceTree = ""; - }; - 0E273747ADA61F535D255D8DF2AC3E23 /* DDMAUtil */ = { - isa = PBXGroup; - children = ( - FA55205F730C46C7C9851594C94BDDBA /* DDMAGeometry.h */, - C15101A907A82B0FB45D1655C200F6D3 /* DDMAGeometry.m */, - ); - name = DDMAUtil; - sourceTree = ""; - }; - 0E4CC3F5F714CB4BEB3175E5A9A5FDD8 /* ControlView */ = { - isa = PBXGroup; - children = ( - DAEE1D6FC403D22017C2A22DE3E2A199 /* UIImageView+ZFCache.h */, - C9C18819AE86B5CD23911364EFB83BAB /* UIImageView+ZFCache.m */, - F658C34F510D4161B91E8202C301B94C /* UIView+ZFFrame.h */, - DA91556F1E07478E1A9D56C584CD9D5F /* UIView+ZFFrame.m */, - 967B2C4AF7BC326CDA7984C583642E97 /* ZFLandScapeControlView.h */, - 264A17F27670DD59E897CA7093A7EB28 /* ZFLandScapeControlView.m */, - 07AA0CC5A5B6A72B098A533E337D3663 /* ZFLoadingView.h */, - B1903B2035DE82103AE99F7E1CF84502 /* ZFLoadingView.m */, - F7D92DC3034CCAF764DDFE03ED86E4B2 /* ZFNetworkSpeedMonitor.h */, - 1344362613B9A67B0B4D78C4E6651E1D /* ZFNetworkSpeedMonitor.m */, - A51659059DDE00160D3901FD896587BF /* ZFPlayerControlView.h */, - A9D61F8A1376E5AFF1C3CC009C709A46 /* ZFPlayerControlView.m */, - B07A34F7872A95C1987655A960CDFBF7 /* ZFPortraitControlView.h */, - 7103741F4368BB8F6777FFB85C454AA9 /* ZFPortraitControlView.m */, - 10A3454D7A8F19EDD46AF264AAEE40E8 /* ZFSliderView.h */, - 281992601356B3F4F6417C8287B50BFF /* ZFSliderView.m */, - 0ACA4DA38B2A3B09C648A0A111ECBFB3 /* ZFSmallFloatControlView.h */, - F758474F4CD597F0C306FF0D93ECE875 /* ZFSmallFloatControlView.m */, - F1439AE483877F0D3B68B545D9A24706 /* ZFSpeedLoadingView.h */, - EDE8C97BDB5540C618C9B838338E3AB7 /* ZFSpeedLoadingView.m */, - FD490FEDC4022ECC0B3FE3BD2C2D2D60 /* ZFUtilities.h */, - 8221374F33C5300AEAD9892A56C1D926 /* ZFUtilities.m */, - A00C1A29D4C567207A56493A4B2DB4DC /* ZFVolumeBrightnessView.h */, - D010E5A496AF63C78C7ACE66E20B7513 /* ZFVolumeBrightnessView.m */, - 6A6C0ABF8D41DECCE3652D90F08F3590 /* Resources */, - ); - name = ControlView; - sourceTree = ""; - }; - 0E820637FECB4C4E04B9764757FE424F /* UITabBarController+DDCategory */ = { - isa = PBXGroup; - children = ( - 0147F560C54973B76E290E90FD83A2BA /* UITabBarController+DDCategory.h */, - 1C828B28AA2A4B547317BE7558E33BB4 /* UITabBarController+DDCategory.m */, - ); - name = "UITabBarController+DDCategory"; - sourceTree = ""; - }; - 0ED24CC84705CF1E4897BA272C6A0C28 /* Support Files */ = { - isa = PBXGroup; - children = ( - 1BCE93C36A4902BFF402D097AEE24C92 /* JCore-xcframeworks.sh */, - 7013D2B7252168A4EE01B52BCD4432D1 /* JCore.debug.xcconfig */, - 5A972C916FD53211BD061BA2EF0D261F /* JCore.release.xcconfig */, + 4DE028E2D84A0F91A883900E43958875 /* RxRelay.modulemap */, + A8405D993F2FBB7314733B9735BEFB8F /* RxRelay-dummy.m */, + AB7A2A40BCCEBBDDE983AB9E526C7939 /* RxRelay-prefix.pch */, + 218D8DEDCD6779141087671AC994C457 /* RxRelay-umbrella.h */, + B340B765E4ED3A42D01B7117C9996B7B /* RxRelay.debug.xcconfig */, + B7FA87BA5AD0A823A011F98A5BA4C2A2 /* RxRelay.release.xcconfig */, ); name = "Support Files"; - path = "../Target Support Files/JCore"; + path = "../Target Support Files/RxRelay"; sourceTree = ""; }; - 116052FCB16F13721E731B71779F3363 /* Support Files */ = { + 0CFE199AA776D0930180AE43F7FCCDE4 /* SnapKit */ = { isa = PBXGroup; children = ( - 60C0CB95F8FCF9BFD792612A5B56D5FF /* DDControlsKit_Private.modulemap */, - 010558D83A290AACCE24864BCDCB4C80 /* DDControlsKit_Private-dummy.m */, - 3AFEB3B05AC673E7B7A6F96E695FCC38 /* DDControlsKit_Private-prefix.pch */, - CA5AF49CE9F6ACEC71993623AF2208C4 /* DDControlsKit_Private-umbrella.h */, - CACF8EAE904DBD3B51A2631BD1CC6942 /* DDControlsKit_Private.debug.xcconfig */, - 128ACB4150A485CE95C0F43F266666BB /* DDControlsKit_Private.release.xcconfig */, + 217A3F47E0ED06D5240BAC62AB674F29 /* Constraint.swift */, + 999C613B204ECE074D08C527DD46E092 /* ConstraintAttributes.swift */, + 7DD170FE2ECE1E7F75E303AA26DD6E97 /* ConstraintConfig.swift */, + 7570DB9E78635FA9807BC95099AE6E99 /* ConstraintConstantTarget.swift */, + 184A905860356D49E7B55C985D3194DB /* ConstraintDescription.swift */, + 0AFE6DA7B5413B1DB9D313117C1D00CF /* ConstraintDirectionalInsets.swift */, + D59F28AA67F900CC609CE298D2576872 /* ConstraintDirectionalInsetTarget.swift */, + ABB0AE53048B226B2B5B0EBAE37614DE /* ConstraintDSL.swift */, + 54FA37AC1D0BF92297C6F1692389F1D6 /* ConstraintInsets.swift */, + F9BA2AC78B83BB02C5AB9F67BC7CD445 /* ConstraintInsetTarget.swift */, + 1C98A5BBADE3ADC6E0101D8C26B41358 /* ConstraintItem.swift */, + E411ECA10BE589677CA268BA72A1461E /* ConstraintLayoutGuide.swift */, + 62B2D09ECF27C516AB969EF7484D86A5 /* ConstraintLayoutGuide+Extensions.swift */, + B0D8E4690467E9E0AD0E58B9ECCDF709 /* ConstraintLayoutGuideDSL.swift */, + 1D9687AA1E852042C96F69376DE09A17 /* ConstraintLayoutSupport.swift */, + FEA7381A1C2E782A13B424939A0EEF97 /* ConstraintLayoutSupportDSL.swift */, + 1ABC665AA46A259E0DBEF93414476E75 /* ConstraintMaker.swift */, + 41FAE916D4C0AEC201074C5C74E92C63 /* ConstraintMakerEditable.swift */, + 47BED3AE61817BCA27A064BA9FE3D502 /* ConstraintMakerExtendable.swift */, + BEC362CD670BE177438B17E4033A32E4 /* ConstraintMakerFinalizable.swift */, + D9FE7C477A1AEE3F62DAA92AADBC20DB /* ConstraintMakerPrioritizable.swift */, + 0DDA1B78B6D0CD87B04D331FD03B1D26 /* ConstraintMakerRelatable.swift */, + 7AFBAC2D7F0D9F84498D6786687D58ED /* ConstraintMakerRelatable+Extensions.swift */, + B8566531CCD3B055AACD54D9C70D46E2 /* ConstraintMultiplierTarget.swift */, + AC783BAEF780AD25A29F78A85BEB0563 /* ConstraintOffsetTarget.swift */, + 470BBC2A5F8925E41FA07BA68E914530 /* ConstraintPriority.swift */, + 9105470BCF7DC649E75F200161404493 /* ConstraintPriorityTarget.swift */, + DE1ED2E8456BC345655EC3967740572C /* ConstraintRelatableTarget.swift */, + DF6C4414F40305BBFD781E453EA72A91 /* ConstraintRelation.swift */, + CC131E115AC397987555BDFAB62A38A3 /* ConstraintView.swift */, + AA3ADA869CFB249CDE525652B8D8338D /* ConstraintView+Extensions.swift */, + 4430E66C5A71EB532107B6CFFD81A60C /* ConstraintViewDSL.swift */, + A25C6F0E6D20CBD7EA25A7DE82A4FAB4 /* Debugging.swift */, + 28073DB9492B9394CBD97BEB22692694 /* LayoutConstraint.swift */, + 3C7582FA774246BD79F6459F1ED935E0 /* LayoutConstraintItem.swift */, + 776D9C1A9AFDBDA4B9CADE3AEFD1F4A1 /* Typealiases.swift */, + 4CB2872B50027A5362E7396690011FA5 /* UILayoutSupport+Extensions.swift */, + D16841F6F40CB63B24B78FF4AE14E2BD /* Support Files */, ); - name = "Support Files"; - path = "../Target Support Files/DDControlsKit_Private"; + name = SnapKit; + path = SnapKit; sourceTree = ""; }; - 11B60C9D580DC49324F4DD04D97BC6F3 /* DDFontKit_Private */ = { + 0D395875F21197433514535EAA258F7E /* DDMAMapKit_Private */ = { isa = PBXGroup; children = ( - EA52CADF6FAA19912160177B7577C02B /* FontUtil.swift */, - 0640E902FCA35AF380E0F54872BAFEBD /* Support Files */, + EE27D751C51AFF1D146CA87A99D30B55 /* DDMALocation */, + 45EA8E45B889E131651480C1D85065FA /* DDMAMap */, + 40377ECAF73340E0F2D5D4004AB56C10 /* DDMANaviManager */, + FEB65CCD95ACDDAE9A11B96CD1AC5246 /* DDMASearch */, + AEF9A8AECE046399A85731832E36EA95 /* DDMATrackManager */, + 82E42D2C5F8885513E91CC1AC5D28D1F /* DDMAUtil */, + AE87532745346926E7FAD615C131B3C4 /* Support Files */, ); - name = DDFontKit_Private; - path = DDFontKit_Private; + name = DDMAMapKit_Private; + path = DDMAMapKit_Private; sourceTree = ""; }; - 13BE78DF7FBB24096A3D84B50D638ED5 /* DDWebImage */ = { + 0D402B315635B9045836982A861966BE /* UISwitch+DDCategory */ = { isa = PBXGroup; children = ( - 539B59EA53D5126EA9608FE403169FB5 /* UIImageView+DDWebCache.h */, - 78933CA845E0F27681B450CADD8C49EA /* UIImageView+DDWebCache.m */, - ); - name = DDWebImage; - sourceTree = ""; - }; - 15782C315F724AF25E97E04DBA186FF8 /* UIScreen+DDCategory */ = { - isa = PBXGroup; - children = ( - 4DCFC0E4DD468D4747DB285A1AD8B1C1 /* UIScreen+DDCategory.h */, - BA4748D12A39BC7EE7AA6B916C885631 /* UIScreen+DDCategory.m */, - ); - name = "UIScreen+DDCategory"; - sourceTree = ""; - }; - 17E8BF94F86C21BF407F4A6C3D17DF2A /* UINavigationBar+DDCategory */ = { - isa = PBXGroup; - children = ( - 30B17E28F952077D6B053CD903A984E4 /* UINavigationBar+DDCategory.h */, - 14B8DAA7229455EDE174093B8E84329D /* UINavigationBar+DDCategory.m */, - ); - name = "UINavigationBar+DDCategory"; - sourceTree = ""; - }; - 17FA9D1F80DCB6184B47154F5F19FDBF /* DDBasicControlsKit_Private */ = { - isa = PBXGroup; - children = ( - 299D1C1239DB12ADD78FC8E0EE7662EA /* DDBaseAnimation */, - 4C5067BE05EDE422A2A15DE6185C1270 /* DDBaseAttributedString */, - BCB1E23E8DFF7BD0D034AF232B3F9916 /* DDBaseButton */, - 2C57697E27A908771766BE613A58A25E /* DDBaseCollectionView */, - 4145940E726D01E0F950FC8EB428FFB2 /* DDBaseCollectionViewCell */, - E796CFBCE780A7D505BF8BB533068D62 /* DDBaseImage */, - B983160576D92A05BE966376F16CD898 /* DDBaseImageView */, - 328B8924CD437AD09E400BD4096397A5 /* DDBaseLabel */, - A24B86B04E1F773CE8A941D192777AFF /* DDBaseNavigationController */, - 3FFD4C0F3656718E91814F6F92703453 /* DDBaseScrollView */, - 810BE8BF7322C27A4A9CC5642752C939 /* DDBaseSwitch */, - 19A101287EE591CDB8C48294AEBEB567 /* DDBaseTableView */, - 7BC09037100744448B3E6294D1DA2C44 /* DDBaseTableViewCell */, - A34485652A3332278C1BC6A763C3A23E /* DDBaseTextField */, - F5000B67E991B3874602F4AD0C864591 /* DDBaseTextView */, - D4B5C02ADECEC9A8441191E00AFE9BEB /* DDBaseView */, - 67C99EA245ABA4FEF9DFC0C1DEE4ABC3 /* DDBaseViewController */, - CB1FB38F783CA3B48D45FD703E3C8E52 /* Support Files */, - ); - name = DDBasicControlsKit_Private; - path = DDBasicControlsKit_Private; - sourceTree = ""; - }; - 181D4C99BEEA9ED4B3672FC0D74134F4 /* UIBarButtonItem+DDCategory */ = { - isa = PBXGroup; - children = ( - 53CF355A89DE8D9ADAA0307E65EEFC4A /* UIBarButtonItem+DDCategory.h */, - 3E1992CC580D83A4D927CB1EAAA9C131 /* UIBarButtonItem+DDCategory.m */, - ); - name = "UIBarButtonItem+DDCategory"; - sourceTree = ""; - }; - 19A101287EE591CDB8C48294AEBEB567 /* DDBaseTableView */ = { - isa = PBXGroup; - children = ( - D1E1879238C379925C9778125D743648 /* DDBaseTableView.h */, - AB423F201EFDE4212173DC2D2ADE00C3 /* DDBaseTableView.m */, - ); - name = DDBaseTableView; - sourceTree = ""; - }; - 1B1134BD98BABBFA10E582A5CDD1BC3B /* UISwitch+DDCategory */ = { - isa = PBXGroup; - children = ( - F5A256B8C583A50845AE7FB5B6C71FD7 /* UISwitch+DDCategory.h */, - 7A45C29E305E44845DAAF3984D7DF80A /* UISwitch+DDCategory.m */, + D713710C17AB03B2D2C99DA83E4B5D4F /* UISwitch+DDCategory.h */, + 830B287A501B729E708153F84BC72EE3 /* UISwitch+DDCategory.m */, ); name = "UISwitch+DDCategory"; sourceTree = ""; }; - 1B37F65E2E382A496F9D88CD46084DAE /* DDButton */ = { + 115A8791260F55251E31E05C17841EEF /* BRPickerView */ = { isa = PBXGroup; children = ( + E6A168A1C4ABF7EC11E76676EAFBCCB0 /* BRPickerView.h */, + D2A4F0DC37948CA37ED22057AD38B975 /* AddressPickerView */, + F2667B56D10A337FD2D401A2300C56E4 /* Base */, + 5A33964D5BA495693FA68C7A74CA8C07 /* DatePickerView */, + C07F00F8492B44C09E9EBA1416716AD8 /* StringPickerView */, + B534BDF979C479F131AD34C83A9840A9 /* Support Files */, ); - name = DDButton; + name = BRPickerView; + path = BRPickerView; sourceTree = ""; }; - 1C14E8BC792121A3D946D35C95C51E44 /* UIFont+DDCategory */ = { + 11CBE20DE1F7845973D67F0AB4F185B4 /* IQKeyboardManagerSwift */ = { isa = PBXGroup; children = ( - 485B94E3FCC36EBAB730C1AE86E8BB73 /* UIFont+DDCategory.h */, - ACE68C38AEA2810555EB1E7F9540696B /* UIFont+DDCategory.m */, + 7CC988E9AF631ECC07792482EE6DEAB4 /* IQBarButtonItem.swift */, + 0C6F7393CC8AD88E9D891C769ED4EC7B /* IQInvocation.swift */, + D4CFE1FD9063844C7726DE9D69BA7F91 /* IQKeyboardManager.swift */, + 3079BDBC39DC920BE63AC7B72F911AFB /* IQKeyboardManager+Debug.swift */, + 159B09585E27B8B76408E0C22FD4B90E /* IQKeyboardManager+Internal.swift */, + 5D7B90858AD245B162AC8A3B02E9ACEC /* IQKeyboardManager+OrientationNotification.swift */, + 3E06F7AD43325CC196622ABD56CA4788 /* IQKeyboardManager+Position.swift */, + C30938D2D95C8CFD56F11229284457D5 /* IQKeyboardManager+Toolbar.swift */, + 542AC484B61AB51FC53794B3CFC6BA5C /* IQKeyboardManager+UIKeyboardNotification.swift */, + AD57A11EB2B76C8A3741B5718E7EC2B5 /* IQKeyboardManager+UITextFieldViewNotification.swift */, + DFCF5B3FE6C9DA0EFCF9F4A1F7F6B3FC /* IQKeyboardManagerConstants.swift */, + E4E23C6D27E30AC18C7236073ACF9489 /* IQKeyboardManagerConstantsInternal.swift */, + A64075259164C06A45D6E9220ABAF9EE /* IQKeyboardReturnKeyHandler.swift */, + 4C402DB7701DC37101AF98F1AAA3C00A /* IQNSArray+Sort.swift */, + 928AABAF40B7C8B285DF82C6F61F590E /* IQPreviousNextView.swift */, + 01E4FAFE87F8BBD90D18537F26A7A20C /* IQTextView.swift */, + CF80A525B7281E66B3E29DBBD46A58B8 /* IQTitleBarButtonItem.swift */, + A92289E6A48CA8ED893E7B2E62901FC1 /* IQToolbar.swift */, + 1DE2C797C7FD11FF557277D5347E5654 /* IQUIScrollView+Additions.swift */, + D24E1278A7685A01795991E9FD2EAA66 /* IQUITextFieldView+Additions.swift */, + 50A1422BC9CB8B83EFC8DA0FD4138819 /* IQUIView+Hierarchy.swift */, + DE8F126BBD480DE86148CB45EED2A80B /* IQUIView+IQKeyboardToolbar.swift */, + B3C6272FB54DC705DA455D83E5FB7171 /* IQUIViewController+Additions.swift */, + 0C94E4AF00C21302E679B5C2FEAAD7EC /* Support Files */, ); - name = "UIFont+DDCategory"; + name = IQKeyboardManagerSwift; + path = IQKeyboardManagerSwift; sourceTree = ""; }; - 1D818E5F9910E545C9B68870704F8FC9 /* NSThread+DDCategory */ = { + 145D0511F70C061CE1FD2DD8E46C46EA /* Pods */ = { isa = PBXGroup; children = ( - 7681F4AD479265BBC9C0CA8ABE1CDC22 /* NSThread+DDCategory.h */, - 9E197D6F9AA25F673F741D1E1DBEE116 /* NSThread+DDCategory.m */, + 2B52F40E65A25B5010C1E91C83FA7AFE /* Alamofire */, + 6B14D1AEE61E33ECB7F3844F3576ACC8 /* AMapFoundation-NO-IDFA */, + 639CC5EE10163A27FA8472A7E7C72169 /* AMapLocation-NO-IDFA */, + 73745087BFE9A6965F4BAD66F7348C8D /* AMapNavi-NO-IDFA */, + B4F021A6D729080C763A8FDD3E3CD228 /* AMapSearch-NO-IDFA */, + B3F02FB15B08D31B5C4A7E7A5B226927 /* AMapTrack-NO-IDFA */, + 115A8791260F55251E31E05C17841EEF /* BRPickerView */, + EE13459A66A2C62C0065E07BF7F97C46 /* CocoaDebug */, + 4419BEA4A7F67E632906DE57E057764C /* DDAudioPlayerKit_Private */, + 7B5054C8186F3B0C144F440DC2DAFC85 /* DDAutoUIKit_Private */, + 33C4DD3EDB00E4FF02503BDD8F9486E2 /* DDBasicControlsKit_Private */, + 5770958B71B5A333955FE52367DFE291 /* DDCategoryKit_Private */, + 031C38676E5DE1D6BD30F711E17A0438 /* DDColorKit_Private */, + FDBC45F1F148137145F5BC76E155DE5C /* DDControlsKit_Private */, + AF5737153175FBF5FA64AE469BE0D68D /* DDFontKit_Private */, + 734C8B2AA2057901FA044B75167FFCBD /* DDLogKit_Private */, + 0D395875F21197433514535EAA258F7E /* DDMAMapKit_Private */, + 6F79A551B87839AEF2C9D977975EC1BF /* DDNetworkingOfAlamofireKit_Private */, + E640CDE94B8FEDC1629BF0CE15263BB9 /* DDProgressHUDKit_Private */, + 9064B89DB0EB2681FDFDE5F3DDD47D4B /* DDTimerKit_Private */, + C4C52ED4973EE7A81F4C087177D8F13E /* DDToastKit_Private */, + BF8DB8031DFCD97C6AD224EDA3803C8F /* DDWebImageKit_Private */, + 249DBF4C87DBD2543AF39C464B25F20B /* DDZFPlayerKit_Private */, + 9EFEDEEFD9961C94C36DBC147711D04B /* ESTabBarController-swift */, + 11CBE20DE1F7845973D67F0AB4F185B4 /* IQKeyboardManagerSwift */, + A2C1D6A299D84A03494D558D8316B2C5 /* JCore */, + 79A487C7935A6D68845D9785708DB1AB /* JPush */, + C38BA810016FAD6C9818221A5DE55C88 /* JPushExtension */, + 5C1DEB0A0CD90EF5828BF8BAC168B356 /* JXCategoryView */, + 64C5D5941FF6A3AECEECF6C92267A6C2 /* Kingfisher */, + 97313226EF76C28FC7DA1B65F42D3AFB /* MJRefresh */, + 0C11A8C3AFEDF36228EDCC6E6EABAD60 /* RxCocoa */, + 8974BDB031FEBAC34224ACD9DDEC9B90 /* RxRelay */, + 062E4F028A07337AD9995011A6CEBEFF /* RxSwift */, + 0CFE199AA776D0930180AE43F7FCCDE4 /* SnapKit */, + 7326561B838CA48DC4687F250C3939F0 /* SwiftEntryKit */, + E9007A995FCD6531F78C05FEB4357F6C /* ZLPhotoBrowser */, ); - name = "NSThread+DDCategory"; + name = Pods; sourceTree = ""; }; - 1DCA52C786AB5CE5A4FA5F77581CDC47 /* Core */ = { + 1779690DFC30CD5959EC62FFEEC8A9A1 /* Support Files */ = { isa = PBXGroup; children = ( - 31EF176FBB0F8964B8DECAA699ECA2C3 /* NSBezierPath+SDRoundedCorners.h */, - 3324EAB72243EC9E692F12F006A81E5E /* NSBezierPath+SDRoundedCorners.m */, - DB7F20E80EE3FD1D582D1EA2702E82A9 /* NSButton+WebCache.h */, - 4034C628EDA2DF32F5F3CB1EAA29C86D /* NSButton+WebCache.m */, - 953328EEC08BB194BB64FF55A8C9730F /* NSData+ImageContentType.h */, - 5E45A033D07A97D863C2CF6ADF64639A /* NSData+ImageContentType.m */, - 4648A0D1ED95DE4B17517769FB215B82 /* NSImage+Compatibility.h */, - 6BCBBA87F83D831E099585DEA7390BE7 /* NSImage+Compatibility.m */, - 95265A80C629B285897094F95D9FDF2E /* SDAnimatedImage.h */, - 6EECFF09F37816B4A63EB28C57EEA20D /* SDAnimatedImage.m */, - 837C5E68069C97F169193F6B9019A23C /* SDAnimatedImagePlayer.h */, - 2FC18F93C01AACA7672DE739095818F1 /* SDAnimatedImagePlayer.m */, - 061355735D157BA2289365D6706B25D3 /* SDAnimatedImageRep.h */, - 957EAA209B2ACDA8CF3F182A8A9C50F5 /* SDAnimatedImageRep.m */, - A9ED3EA2EA880417B7FA8AC596E4DD9C /* SDAnimatedImageView.h */, - 5149A43E4F16EC1A7252B2719CCB464F /* SDAnimatedImageView.m */, - EE62C149B0B7EA862211958DA600895A /* SDAnimatedImageView+WebCache.h */, - 94680CFC97CEF0B8C2F45EB57EE580A2 /* SDAnimatedImageView+WebCache.m */, - A44B3898EAEAB4244E6F5C1C04E633CE /* SDAssociatedObject.h */, - 6766ED548AC21BE24383ABB9DDA84F3C /* SDAssociatedObject.m */, - 3D1376EDC4BD752FA07F2D4504A027FD /* SDAsyncBlockOperation.h */, - DBDC68D4F03D15C5B98048E8DD70FE27 /* SDAsyncBlockOperation.m */, - 30460916A489847207305A969F5EADDD /* SDDeviceHelper.h */, - 74CADCBAD3B2B370DC383AE7BA2627CE /* SDDeviceHelper.m */, - 01EAFC7A6EB916A27C0C3C0B6773F56F /* SDDiskCache.h */, - 61C2C3AA429BE0FB945E8692AEB70B1B /* SDDiskCache.m */, - 2FD66B4B8F4058CF3C142787E2CCA624 /* SDDisplayLink.h */, - 06D8DBB89CCCB6D1ABC7E263B61428B8 /* SDDisplayLink.m */, - 78164EA811F651860320F92B43DE3468 /* SDFileAttributeHelper.h */, - 7DA32B5D335E47BC812168C67D1A9A50 /* SDFileAttributeHelper.m */, - 90F45B33ACF06D56A9730D0DF8358B09 /* SDGraphicsImageRenderer.h */, - 881DFAE8BCD401EF059EFF6E1E097C03 /* SDGraphicsImageRenderer.m */, - 2B7442746EEAD697A884BA38351787A7 /* SDImageAPNGCoder.h */, - A32BABF1610E9569E4FA9D49409BC712 /* SDImageAPNGCoder.m */, - 145ECAB1E3FA265801C648EB59D56635 /* SDImageAssetManager.h */, - 80A82C966FAFD27844D60B0EFDDEAD5E /* SDImageAssetManager.m */, - 88CC08F7752271DE21381EF0512D9E0F /* SDImageAWebPCoder.h */, - C61DF32C7E74323F23FBEAEAFCE16F7A /* SDImageAWebPCoder.m */, - B40CBBABFD337F6CDB7D39361CB54FE8 /* SDImageCache.h */, - A4B37FC102BBF3F9E183796B8D21F9AA /* SDImageCache.m */, - DEE484EA1966514E7E17A9C82B4CAD37 /* SDImageCacheConfig.h */, - D45CFD468C89B27771F42CA825E9D339 /* SDImageCacheConfig.m */, - E97B58BEA1472DA48DDD4F451D447266 /* SDImageCacheDefine.h */, - 22916F5A8E44DDACA95820CF22420016 /* SDImageCacheDefine.m */, - 18515FD82734E4B06FF2845EDA536B54 /* SDImageCachesManager.h */, - 5C0DBC60AC7380920C088AC55FEDE9CE /* SDImageCachesManager.m */, - ADBE6DB8A3F4A5C335090B04CD7BED49 /* SDImageCachesManagerOperation.h */, - 1A1766BA82F9E8382C6A973E5B0E7693 /* SDImageCachesManagerOperation.m */, - F391467FFA15D71712763261BFD3326C /* SDImageCoder.h */, - 04BF5EC02288663410F5581E5223C463 /* SDImageCoder.m */, - 1D6885AC2E42BBE3A7E244E53DB03EA0 /* SDImageCoderHelper.h */, - 8F9C99DBE77AFE4BFD5CC7EBB322F385 /* SDImageCoderHelper.m */, - 816F7FA5CB06AE83BCCF8F2D9DC81C9D /* SDImageCodersManager.h */, - 9ED76CA7E92F6B1B76611D26863D9E2C /* SDImageCodersManager.m */, - 026415A254F41C86857D5F57BF48AD07 /* SDImageFrame.h */, - BF86D357530F230AD7D4A8ED7488BEE8 /* SDImageFrame.m */, - B6CE48966C61C5A8AD4B5F9042E15249 /* SDImageGIFCoder.h */, - 4FB2524A82E6D50C04B9A71999A38281 /* SDImageGIFCoder.m */, - 74B653D245EF6ED8740C1E03E469DB69 /* SDImageGraphics.h */, - D4AF0664AAC67CB7A1B35A70B3172727 /* SDImageGraphics.m */, - 68B245F7549095AFED4AED4B45E6C21C /* SDImageHEICCoder.h */, - F8732CE75E642DFDA4054FD1DD67568E /* SDImageHEICCoder.m */, - 4A24ED1414823BE85A8393BED976F01E /* SDImageIOAnimatedCoder.h */, - A0CE6B496041CC1737E30C1BC721623A /* SDImageIOAnimatedCoder.m */, - 2C86CF4D58B2DA925C65E7B37167B96D /* SDImageIOAnimatedCoderInternal.h */, - F7B8E5AC39D24AD8F796256EA544F517 /* SDImageIOCoder.h */, - E0005636539469F1B19BF39B4E3532CC /* SDImageIOCoder.m */, - 657B97D86A29511CC9588C0915DA2F5D /* SDImageLoader.h */, - 7D05A8EF5D0161D15ED3AB81B8847251 /* SDImageLoader.m */, - 552EB50626B7CA6F43A884F335F0532A /* SDImageLoadersManager.h */, - B0BF94913533614DBDBB898956A3048F /* SDImageLoadersManager.m */, - 64E38D4078D3A071CD08D742C227022A /* SDImageTransformer.h */, - 045CEEA0968247020E7E6AC973C704A3 /* SDImageTransformer.m */, - 444C545292010139719456EF59991C96 /* SDInternalMacros.h */, - 04D44FA3F3AEA836BF5EC0E7B3ED1F95 /* SDInternalMacros.m */, - 69DC3044DDE4B5410CE7DADE305D0448 /* SDMemoryCache.h */, - 3192DF6E8DB6C83CD68CF30344FC35A1 /* SDMemoryCache.m */, - E4147EC81C2A6472F43255F86B1E32DE /* SDmetamacros.h */, - 2F21B2DA027EF508CCEE43A78A481B58 /* SDWeakProxy.h */, - 22FC3416EDAE6DD17BC9B3247D4BC264 /* SDWeakProxy.m */, - 6E2FCCC2568269D7C4449190639E7CF6 /* SDWebImage.h */, - EBD3222B7D336BE82B68F5953A1BCE38 /* SDWebImageCacheKeyFilter.h */, - 068153425D3E1EFB1C71D090C0FF3239 /* SDWebImageCacheKeyFilter.m */, - 25306CB11174ABF932E087F3B0125567 /* SDWebImageCacheSerializer.h */, - 1906A2C2F2D6AA4F5F54392B60FD1A60 /* SDWebImageCacheSerializer.m */, - C3AB4B6C9539F570859A6EECE23B7BAF /* SDWebImageCompat.h */, - DC510E685D4BE6E79BD44EEDE0A38ADD /* SDWebImageCompat.m */, - 764AAD31E565E636988109B6534973BA /* SDWebImageDefine.h */, - EC1BA5F2BE2943635A725BD4D0B13FE4 /* SDWebImageDefine.m */, - 73F8FE3F4D6C3C800BBCEA673B36794F /* SDWebImageDownloader.h */, - A690F45E3DFFBCB5675B6F5FAB8E1C37 /* SDWebImageDownloader.m */, - 8DB0DFCB6DBBE8F3229711FEC0CEC42F /* SDWebImageDownloaderConfig.h */, - A41C09B55E71572D976B82191B44FAAE /* SDWebImageDownloaderConfig.m */, - CA808A11DC33E352031BACB5103D614F /* SDWebImageDownloaderDecryptor.h */, - FD5537A10D483E8A6FF8AC4476D11915 /* SDWebImageDownloaderDecryptor.m */, - E876D1170DB2C579D13C9F59AFBD813C /* SDWebImageDownloaderOperation.h */, - 5C2A1A9E9A2C920B5C41FFB5C0477C62 /* SDWebImageDownloaderOperation.m */, - 01C1301B0AC7AFF3AF91CF59BC3F1E3E /* SDWebImageDownloaderRequestModifier.h */, - 3C1381401A90F381C5B232E41508ED4A /* SDWebImageDownloaderRequestModifier.m */, - 5761A0FA1E40B161891356C84E8251D7 /* SDWebImageDownloaderResponseModifier.h */, - DCFC563E617986D3EDAAEAD48434782C /* SDWebImageDownloaderResponseModifier.m */, - EF75CEF2E047A487AA017F4B99490742 /* SDWebImageError.h */, - A2001AD110E1A035787ABC83C0DE287E /* SDWebImageError.m */, - 0FA8E9BB37E41337CD1A67C732B0F43D /* SDWebImageIndicator.h */, - F88D2578EDA6534F125A72606A08F61D /* SDWebImageIndicator.m */, - 4E0B76E404A99912C095AA30091A7A7B /* SDWebImageManager.h */, - AEA95C07E227701A1245BA9312FB8547 /* SDWebImageManager.m */, - A48B326F56F0537399C161E7F292B287 /* SDWebImageOperation.h */, - 985BCEDB6FF13F6DE08FCE01156F0173 /* SDWebImageOperation.m */, - 707859ADEDEEAAA25CFD10AF69EA0604 /* SDWebImageOptionsProcessor.h */, - 3B71C75C60987F627BAA4BFEF3BD49A5 /* SDWebImageOptionsProcessor.m */, - 0E724A096EBA576B4E63622329A63555 /* SDWebImagePrefetcher.h */, - BD26644BD275EF178E75CF5E94DC5C21 /* SDWebImagePrefetcher.m */, - 8C91C4AF0C3222359BE9291B912BBFC0 /* SDWebImageTransition.h */, - 596E562AF2766E240D27BF79A14178CC /* SDWebImageTransition.m */, - 3C7207273CA8A574557ADB8A8446033C /* SDWebImageTransitionInternal.h */, - 7999E95BF01AF4476DDCDA223B14858B /* UIButton+WebCache.h */, - DDD4C6D358BE05EC583919869948E636 /* UIButton+WebCache.m */, - E0DF098C1C0D65D1651366FD8CF80DD5 /* UIColor+SDHexString.h */, - A40110B9A1BF795872CD8BD2F586694E /* UIColor+SDHexString.m */, - C02E0D4C622F60B0FDB98618287C82F5 /* UIImage+ExtendedCacheData.h */, - CE72AE6F608F3AE7E5CF1AE672A38A9C /* UIImage+ExtendedCacheData.m */, - 3A165933B7D7FE3F8FF3F73930956259 /* UIImage+ForceDecode.h */, - 52139711D5478A69185AEFB0B649E3D5 /* UIImage+ForceDecode.m */, - 7211B4D3331D230BABC8B6D37DBFE985 /* UIImage+GIF.h */, - 9E25390F93FAEFA51E203354CD6EC590 /* UIImage+GIF.m */, - D5DDF6CEAE3C6307E052CC4FC715A20B /* UIImage+MemoryCacheCost.h */, - 91D5FA1639FCB89A063F6BFFE2E23D45 /* UIImage+MemoryCacheCost.m */, - 8D344C6119348C08BB767FB7A1D20F58 /* UIImage+Metadata.h */, - 79A41F3D46DAADE36DA9540613D85C34 /* UIImage+Metadata.m */, - 68D030E1DDCD8D681BFB016CF6B1614E /* UIImage+MultiFormat.h */, - 673B6BB98A487E167C18818F396FC9D8 /* UIImage+MultiFormat.m */, - 7F5CE7828D4795456C2E7BDD4982C483 /* UIImage+Transform.h */, - 3F267469730A1BCEF4C696CA4599E772 /* UIImage+Transform.m */, - B43F63A10529EA3CB9DE998DBD85F809 /* UIImageView+HighlightedWebCache.h */, - 295BA7ABB139976B1370197291147ECD /* UIImageView+HighlightedWebCache.m */, - 6A00A2C1BBBB457525AF402C07A7A453 /* UIImageView+WebCache.h */, - ED3613DC7D54B4651DD6C5E90B0BAEE3 /* UIImageView+WebCache.m */, - EF24ABF8F1572E39DCE1A8019184FD5D /* UIView+WebCache.h */, - C3CEB51598371906F01DD9161738CE18 /* UIView+WebCache.m */, - E1F1FCDDE6E882ABCEFA3430974CDC45 /* UIView+WebCacheOperation.h */, - 5DE8BFF7280523DD0C9FE7DFD987C2EF /* UIView+WebCacheOperation.m */, + 1EA96598076D4D461899D00F49CEDB0F /* JPushExtension-xcframeworks.sh */, + 201001FE2E7F75470A9C5261EB1737A2 /* JPushExtension.debug.xcconfig */, + BF5287D098DA990C2E2B7E780134AF60 /* JPushExtension.release.xcconfig */, + ); + name = "Support Files"; + path = "../Target Support Files/JPushExtension"; + sourceTree = ""; + }; + 187C3ECB744DBE1274D5ECDF9ADCF798 /* DDWebImage */ = { + isa = PBXGroup; + children = ( + 106867BD09CA406CC67213E4F249158E /* UIImageView+DDWebCache.h */, + 827C7B57E3C9E2C3239FBE00C66E5B92 /* UIImageView+DDWebCache.m */, + ); + name = DDWebImage; + sourceTree = ""; + }; + 1908BF534626F3C91B51B8F6523660F3 /* Core */ = { + isa = PBXGroup; + children = ( + 29454470DF2916CF8CB483820556BA06 /* UIScrollView+ZFPlayer.h */, + B9CEDB8AA065587457A5D742B0C957A4 /* UIScrollView+ZFPlayer.m */, + C7E88F18E04BC045B8FFF0615AB2D59C /* UIViewController+ZFPlayerRotation.m */, + 329983FBAD877C72DFDC31213FCB950D /* ZFFloatView.h */, + 4A0ED160DB69D416CCE46E0ED96A9D71 /* ZFFloatView.m */, + E6A852049D7E264C2E29D98566B322FD /* ZFKVOController.h */, + CB3D7D33F6851AEC5A3A2DC1AE7CBA7E /* ZFKVOController.m */, + 6DECE2CD091998856004D78FC629E2E4 /* ZFLandscapeViewController.h */, + A41376E50017A2935A37C3A982374FFD /* ZFLandscapeViewController.m */, + 82A223221C2F8D6153F886C7CDE69CCA /* ZFLandscapeWindow.h */, + B935759BC41846DD104C77108C58A5DB /* ZFLandscapeWindow.m */, + 482F88FDDDEDFD3B68479DCB61A5C00C /* ZFOrientationObserver.h */, + B574EC37A2BC358258FE620F5336FFFC /* ZFOrientationObserver.m */, + 18B20E75074BCA6076066BA39FB3454E /* ZFPersentInteractiveTransition.h */, + B1688599AD0A21C13B9A963E91AA6AEB /* ZFPersentInteractiveTransition.m */, + 9EA66F5FAE74501193119915AEFFBEED /* ZFPlayer.h */, + 500CD7974E8143C141DE2C47225F0B06 /* ZFPlayerConst.h */, + BF96E3F481C639A2E06DFAE3D8514335 /* ZFPlayerController.h */, + FD400BAD712DA8155B581382EA24C209 /* ZFPlayerController.m */, + 4AC30B085F0B4F562CE8CBC5430A7DA6 /* ZFPlayerGestureControl.h */, + 3BC0C1E2F35892F5844DA396235A27AB /* ZFPlayerGestureControl.m */, + 3B63735627CA290063CB5E994F5666AF /* ZFPlayerLogManager.h */, + 93CA458AB4644D2FB617AEB32BB3086B /* ZFPlayerLogManager.m */, + EDC31A31277E9C411C5E76B0BE877FEB /* ZFPlayerMediaControl.h */, + 9BCB0C6F48AC8A17A0E2B0C678984E6D /* ZFPlayerMediaPlayback.h */, + 43CE7FF2EAA4CE7A18BCC8CEA451A28D /* ZFPlayerNotification.h */, + F2D21744513246EAB988E2CAE029C809 /* ZFPlayerNotification.m */, + D72722D1F42CF12E6DA94E811D24013A /* ZFPlayerView.h */, + 0DFE48E73B23483F42A0E13D844195FD /* ZFPlayerView.m */, + 7D8E6DA7DB169EE59344C9934D8C7A8A /* ZFPortraitViewController.h */, + C15A359371F6E20EDCF9830301160FCD /* ZFPortraitViewController.m */, + E71C7F56CFB479F6EE1332EDB870435F /* ZFPresentTransition.h */, + 1EB6B2BE04795E067D6F05EBC2D51B37 /* ZFPresentTransition.m */, + 4A7809897C33AB93E80EF656CCE20983 /* ZFReachabilityManager.h */, + 90BD68E9103D0721BEC576E29508098A /* ZFReachabilityManager.m */, ); name = Core; sourceTree = ""; }; - 2112BB79D2D7C43C55DEB3FF990850A6 /* AMapSearch-NO-IDFA */ = { + 19D532A14A22FB1EF1FBF03A3A79A757 /* ijkplayer */ = { isa = PBXGroup; children = ( - 4BE85AB1B67308989650ECE24C631997 /* AMapCommonObj.h */, - 7F11FCDA507865B4D6C9F1421FC90CE9 /* AMapNearbySearchManager.h */, - E9CE43F45025148A6D5F1DB195235238 /* AMapNearbyUploadInfo.h */, - 7BDD14EFBD9A46A92FB96B49061CAAA3 /* AMapSearchAPI.h */, - ED49A7A014FA223EF9B846FD02BF1052 /* AMapSearchError.h */, - 7D8BBDF1551BECD4B943B79AAA4957B7 /* AMapSearchKit.h */, - B7F453C679BB1671C759F9EAA359A1F5 /* AMapSearchObj.h */, - BF3163685EF74677542DA28C2CE2AAEB /* AMapSearchVersion.h */, - 55351A3E30102E6F8B1CD4FBAB045A39 /* Frameworks */, - 78B160FF112AD6679F2B97FC67A70FB3 /* Support Files */, + 19C44EA54E82F0253F78A38E4809AC14 /* ZFIJKPlayerManager.h */, + 7531A111C97507236F1EFDDE18FDFF79 /* ZFIJKPlayerManager.m */, + ACE68C6FA55077770112BAFA7CFDE292 /* Frameworks */, ); - name = "AMapSearch-NO-IDFA"; - path = "AMapSearch-NO-IDFA"; + name = ijkplayer; sourceTree = ""; }; - 21E6EF5CDC3A72DBBF57951028ACF103 /* ESTabBarController-swift */ = { + 1FF72A995DEFCD8DA1377910D5F0E108 /* DDBaseCollectionView */ = { isa = PBXGroup; children = ( - 4C8E9CD2F5868D05FFD53EDD321D7D68 /* ESTabBar.swift */, - 11890073F30296CCB3396FADED8A3DC0 /* ESTabBarController.swift */, - 809DA51A2556715CF2494B6B74DA6398 /* ESTabBarItem.swift */, - 1FBF2163D049C03E241B43372AAE977C /* ESTabBarItemBadgeView.swift */, - D3BF524E03CC6BAB09AE4305C890EA90 /* ESTabBarItemContainer.swift */, - D69987E32B9EF5D98389E9AEFC0B6F53 /* ESTabBarItemContentView.swift */, - D6D861BF2CC70926A385262F7593001A /* ESTabBarItemMoreContentView.swift */, - 3C6C6EBC7E527CB0860FC915174F36D3 /* Resources */, - 9D56539F6D3666396FD6E5FDBF0A1211 /* Support Files */, + FBC5098F9717EFA9E2BED153361BBB3B /* DDBaseCollectionView.h */, + B4AEB1B5A5C79F400C18536CA40D93BB /* DDBaseCollectionView.m */, ); - name = "ESTabBarController-swift"; - path = "ESTabBarController-swift"; + name = DDBaseCollectionView; + sourceTree = ""; + }; + 2077D566D327768B481E6E7139D7C019 /* DDBaseAnimation */ = { + isa = PBXGroup; + children = ( + CF613A4155D5768185A3345DFB8EA99A /* DDTransitionAnimation */, + ); + name = DDBaseAnimation; sourceTree = ""; }; 222070C446C6684B4AD374CD64512282 /* Pods-OrderSchedulingNotificationService */ = { @@ -4289,1188 +4449,713 @@ path = "Target Support Files/Pods-OrderSchedulingNotificationService"; sourceTree = ""; }; - 245445C0E1D3C07CB1E735E7D17AB3D9 /* SwiftEntryKit */ = { + 2303B3A9061B748341E70FCD23FAABFB /* Support Files */ = { isa = PBXGroup; children = ( - 2D86B433CBE7EABF73131A6A2841F24A /* EKAccessoryNoteMessageView.swift */, - 2FBE37B06DA11AF218CCA364D1196A1D /* EKAlertMessage.swift */, - EABD710831CF02B7731F6BD363FF2B02 /* EKAlertMessageView.swift */, - 52CA39718ADAECF44AFAB86B9740388A /* EKAttributes.swift */, - 8EE0FF6ADA523777C2366D072120154A /* EKAttributes+Animation.swift */, - AAA8AB026F949934E3E49CEF0C34FFB7 /* EKAttributes+BackgroundStyle.swift */, - C707FF98E0EF9F873B1850F62B0AA2C1 /* EKAttributes+DisplayMode.swift */, - FA49F228B2A8A50D54DAA0F254ED6EDF /* EKAttributes+Duration.swift */, - FF98BC7BC3755017A8E09F57C1003273 /* EKAttributes+FrameStyle.swift */, - C87B4B55D47B64912DAC6CA6B0FBC916 /* EKAttributes+HapticFeedback.swift */, - D3237AE0F5FD1B64B735F08E4475BD01 /* EKAttributes+LifecycleActions.swift */, - 7E7C7BDB15E7EF896BE8C842B8EB1267 /* EKAttributes+PopBehavior.swift */, - A649C7437DC88996866C3A346982EE0E /* EKAttributes+Position.swift */, - 78C2A13294B1616B337EA76AC105F222 /* EKAttributes+PositionConstraints.swift */, - C98DD0026D436E4DBF4A2DA31CEC8EDB /* EKAttributes+Precedence.swift */, - F91FA5DD1005C5A8BFE1CECE84A32EB2 /* EKAttributes+Presets.swift */, - 53AE4E5B7447E7838D3DD0607CB23D26 /* EKAttributes+Scroll.swift */, - 0611F6F9EB6C49285A9EA0C3571F1931 /* EKAttributes+Shadow.swift */, - A70E8E4F5CDF328523191F31497E7D24 /* EKAttributes+StatusBar.swift */, - 95EA9AF160A5EC02ABC42A0C6EBCC511 /* EKAttributes+UserInteraction.swift */, - E8B900D0CC77F9E45D22C2A86695FDBD /* EKAttributes+Validations.swift */, - D059C8591088B1A1A65711373817A550 /* EKAttributes+WindowLevel.swift */, - 6141F7D1163F845DD1649585DFB1BF29 /* EKBackgroundView.swift */, - 6F0CEFB87175D30F1018D422A6209207 /* EKButtonBarView.swift */, - CB6AA084987BA3DDDEF03C8205349B5D /* EKButtonView.swift */, - 9820FB715A12392FAD9C399A3D5A7D45 /* EKColor.swift */, - 114CF263E7734C896A83D4D3412401E4 /* EKContentView.swift */, - 2295930614E93E43862A2B8BA923ECFC /* EKEntryView.swift */, - 055CB1F2A0BD625EAC2A3669079E7708 /* EKFormMessageView.swift */, - 28F2A012BD8B47C7A49613FD44460EF2 /* EKImageNoteMessageView.swift */, - 98D08CEBE7162D3492772D1D9F6E0A37 /* EKMessageContentView.swift */, - A24DF03EC73E56C72E32A0A71DF44628 /* EKNoteMessageView.swift */, - 9DEC6944176057C13142769990A8B44C /* EKNotificationMessage.swift */, - 298F2917B57194A0FA8D59E92883D33C /* EKNotificationMessageView.swift */, - 21BBCAFF83655B6AF0AC2B68A4912950 /* EKPopUpMessage.swift */, - 53E940F05413D306714ADB1031DFBDC7 /* EKPopUpMessageView.swift */, - 781EC228E9D6BA0C81BE9BC06D4FD8F3 /* EKProcessingNoteMessageView.swift */, - A2B7FE87DFE4FDE1028690C74EA3A5FB /* EKProperty.swift */, - 781E0C197B573A11D8B25ADC6985A8DE /* EKRatingMessage.swift */, - B2EF4A24EFCF3F1B1060F1907F43FA0A /* EKRatingMessageView.swift */, - 047164937C5950C9CC5E19F434FC33E0 /* EKRatingSymbolsContainerView.swift */, - C65153A715B12A83A64AB42E1110DA40 /* EKRatingSymbolView.swift */, - 47E4F47DAF8ED76D1D3DD40F834B5561 /* EKRootViewController.swift */, - C5238A8E2F615B1A606A03C4982823D7 /* EKSimpleMessage.swift */, - FED6475D2837F1564DD7142FFBCB1637 /* EKSimpleMessageView.swift */, - 354300E4CEE433C0FF5F6DAF9C9A625F /* EKStyleView.swift */, - 158CF155D8A6CB70ADD71B185641780C /* EKTextField.swift */, - B7686CA241C9CA45D851BC5BC86C822F /* EKWindow.swift */, - 2618A44ED4407AAC3256C172933E66D4 /* EKWindowProvider.swift */, - 4E1DF956EE0362C03BD8700F06D20854 /* EKWrapperView.swift */, - 7ECE7BA67A0FE41BA21564D2F43A1F81 /* EKXStatusBarMessageView.swift */, - AA9A9B8E1E9CB6B0E11DD5E8543E1438 /* EntryAppearanceDescriptor.swift */, - 11A006D6059BAD97F57CE1B6236F4DBE /* EntryCachingHeuristic.swift */, - 9EF2B2DD090BAAAB648AF39338208629 /* GradientView.swift */, - 15A9648565E1DF1DEB737EAF33F6C3B3 /* HapticFeedbackGenerator.swift */, - 645D10AFFAF643B68487762B1ADE8630 /* QLCompatibility.swift */, - CDAC41E06424EF48F0EFAB166FEA951A /* QLUtils.swift */, - F1C0BB669F299D925309AFEC508BDA44 /* SwiftEntryKit.swift */, - 80987642EBA08B6BDCA985D41855CEF5 /* UIApplication+EKAppearance.swift */, - F9951D0425BD3D33A7C46756E4CAFE39 /* UIColor+Utils.swift */, - CE300473ABE766018DAFE36E0D7FC040 /* UIEdgeInsets+Utils.swift */, - 678ED5269576887C3FFDBFA523B78F94 /* UIRectCorner+Short.swift */, - 0F6AF2D849BF4A92B3D12B82B996E7C5 /* UIView+QLContentWrap.swift */, - 48B2CE5D5A828F5DA3B6B7F52179C56A /* UIView+QuickLayout.swift */, - B4B08E8DF539783850F0B381F29A3C1E /* UIView+Responder.swift */, - 6B3996501AD3516C346CBA551CF762B0 /* UIView+Shadow.swift */, - D9B246A57BA794BF383866C50BC71E60 /* UIView+Utils.swift */, - C38DD323EA8183D3209A52A8D8BBC1CE /* UIViewArray+QuickLayout.swift */, - 3D081FDCD53BB093ED0CF2794043A81B /* Support Files */, + D720BF78D27A47F9F37F5ED11EC360A1 /* Kingfisher.modulemap */, + 3D1872E58A5DCDD6FB9329FABA1A9E03 /* Kingfisher-dummy.m */, + E95A8DFE9C71168F5EEA9DF62798723A /* Kingfisher-prefix.pch */, + 75190BD62CC524E82385D0BC2E087422 /* Kingfisher-umbrella.h */, + F7504D91F1FE354F884211F03513A3E9 /* Kingfisher.debug.xcconfig */, + D7BA7283E37F5D7B60EC55AA8AEA5B0E /* Kingfisher.release.xcconfig */, ); - name = SwiftEntryKit; - path = SwiftEntryKit; + name = "Support Files"; + path = "../Target Support Files/Kingfisher"; sourceTree = ""; }; - 2672C2FF46133B3087E7008C41F80C50 /* Base */ = { + 23F672531CE9A8E8E069D3D77E80A932 /* Resources */ = { isa = PBXGroup; children = ( - D029EBE8091BE422F610B2D1808FB46C /* BRBaseView.h */, - E6CA42E249631F9384E7394E0F270F73 /* BRBaseView.m */, - 8CD8B0E35D0148159B6FE4A582B1CABC /* BRPickerStyle.h */, - 32AD9AAD918675886997C865EB01C560 /* BRPickerStyle.m */, - 10945986B3096B766F703441354073F8 /* BRPickerViewMacro.h */, - 8C625325AAAB70E7E14A64A4D3DCC3A3 /* NSBundle+BRPickerView.h */, - 1DD09241F5C618D50220A1912B41C186 /* NSBundle+BRPickerView.m */, - 6B136B3C21334B9039A6AB5DE2BE4DC1 /* Resources */, + 1C12ADCAD127EA090076321603546908 /* DDBaseViewController.xcassets */, ); - name = Base; + name = Resources; sourceTree = ""; }; - 27B4DBCC9AD1A57A98D00CB3C9421564 /* Support Files */ = { + 249DBF4C87DBD2543AF39C464B25F20B /* DDZFPlayerKit_Private */ = { isa = PBXGroup; children = ( - 92DB303F2B0013A14838ED60D91DC8B0 /* AMapFoundation-NO-IDFA.debug.xcconfig */, - 5CF10193D0DFB4B1ADD3E69DAD19ACC7 /* AMapFoundation-NO-IDFA.release.xcconfig */, + 53D5A6F640F2E4972AE486E4EF7C9869 /* ControlView */, + 1908BF534626F3C91B51B8F6523660F3 /* Core */, + 19D532A14A22FB1EF1FBF03A3A79A757 /* ijkplayer */, + BA367C48D10AF79C2E72707C0042083D /* Support Files */, + ); + name = DDZFPlayerKit_Private; + path = DDZFPlayerKit_Private; + sourceTree = ""; + }; + 24BD91AEA7606C223E3B2442E15F3236 /* DDBaseButton */ = { + isa = PBXGroup; + children = ( + 5B8523EC1C497B23AEB099EAA9E48591 /* DDBaseButton.h */, + A81C05D1CBAACE09A623FFC12B2910B6 /* DDBaseButton.m */, + ); + name = DDBaseButton; + sourceTree = ""; + }; + 257320AECD1028677301FFE651C25B51 /* Resources */ = { + isa = PBXGroup; + children = ( + FFD7FDA1C2B48E52D6D0CEA1B536BB51 /* ZLPhotoBrowser.bundle */, + ); + name = Resources; + sourceTree = ""; + }; + 2AEA2BF6C4B5681F283D3F801FDD3DBD /* Annotation */ = { + isa = PBXGroup; + children = ( + 059D407BB164CC7195BAA024608BEE50 /* DriveRouteCustomAnnotation.h */, + EA6365C4F324615A4DDE097A49262F0B /* DriveRouteCustomAnnotation.m */, + CBDAFA119CAB9C629F8B5A98C33C7B3B /* MAPointAnnotation+DDCategory.h */, + 04598C91C924350D7F4EE27A77058875 /* MAPointAnnotation+DDCategory.m */, + ); + name = Annotation; + sourceTree = ""; + }; + 2B16F442A3CBF264465B39CB93278DC1 /* Resources */ = { + isa = PBXGroup; + children = ( + 9393F02D3DB58B372D7FCFA52744E383 /* ZFPlayer.bundle */, + ); + name = Resources; + sourceTree = ""; + }; + 2B52F40E65A25B5010C1E91C83FA7AFE /* Alamofire */ = { + isa = PBXGroup; + children = ( + 4E8F5FAB1E6599E9F53B49891BDFDF25 /* AFError.swift */, + 936FEBCB276E32D9AD7D19B39E488A41 /* Alamofire.swift */, + 110EC0AD318D4ECCC10F025DAE53B000 /* AlamofireExtended.swift */, + 6EB25FBC860FA77D73E17653A68A963D /* AuthenticationInterceptor.swift */, + 99BAF67C8A5CD24748E409B4D34F1764 /* CachedResponseHandler.swift */, + BAE73892C05FF6771E8660DE9B19D1C6 /* Combine.swift */, + 33C527167BCA8278B0CAC9FF9477E7EE /* Concurrency.swift */, + 64EAE6A2F195677C22177C4FB997B57D /* DispatchQueue+Alamofire.swift */, + E8C80763E28262062A094867C3B67818 /* EventMonitor.swift */, + 947F55F30D11F3E36E2B4452C9BD0D3A /* HTTPHeaders.swift */, + 360CEE83C789BD6E990B39DA6D2726B4 /* HTTPMethod.swift */, + DE6A952C3275E956AD27221C641220DF /* MultipartFormData.swift */, + 5D314021445F46A89EB836122570740A /* MultipartUpload.swift */, + 2AF5CBD0F440D679D5565588C8E49813 /* NetworkReachabilityManager.swift */, + 4827106206B2A59B58B5EE626C4BA59E /* Notifications.swift */, + AA94499BC907B49A79BD3CC4A18699FE /* OperationQueue+Alamofire.swift */, + 6FF5864CC332A81D79E267D2F08F5EED /* ParameterEncoder.swift */, + 92913AC99AB731685E7EDF16583F293B /* ParameterEncoding.swift */, + 377789F4F973EF6D657F640E1F5461B9 /* Protected.swift */, + 6A19B681F19BA1300CA12F5FAFD3364B /* RedirectHandler.swift */, + 196C316CD40737B7B2C1E2902C5C8EDA /* Request.swift */, + 43379C188DF367B0818B4778B62B62F9 /* RequestCompression.swift */, + 1B0A5DBEE83873016874FE63FCC166F9 /* RequestInterceptor.swift */, + 2C269B70B5D9AC322070A70CC295C1B3 /* RequestTaskMap.swift */, + 143FBCC86BF924D706D0EF1552376AA1 /* Response.swift */, + C1CFE2F915114873F21405FED9B28760 /* ResponseSerialization.swift */, + F597B4968E78128119C969D588B30F42 /* Result+Alamofire.swift */, + 599B656FFA3EE132DADACAA7C57B2D69 /* RetryPolicy.swift */, + 0228B6F0D3F7C87CDD74ABC704E1588F /* ServerTrustEvaluation.swift */, + 89D32A6BDC5A04585CC4FA78AD2D3FE0 /* Session.swift */, + E9EEC9061CA3F1FC21F9DE4E49BABE5C /* SessionDelegate.swift */, + 32A060FA06912DEF08C14B2CAF8AC48C /* StringEncoding+Alamofire.swift */, + 168FC76E41435410EC8A00C808BE60F9 /* URLConvertible+URLRequestConvertible.swift */, + 05E70D60932C308CF8BDDEDB8E336B1E /* URLEncodedFormEncoder.swift */, + 9D50ABEE75112BB31B23667087873645 /* URLRequest+Alamofire.swift */, + C0AB89978B936B8DBFE43A080BF6D1AB /* URLSessionConfiguration+Alamofire.swift */, + A719C579EEAF3B6AB0CF5DC387825F49 /* Validation.swift */, + 50561FD23D44E36E6618C19FDE064BFA /* Support Files */, + ); + name = Alamofire; + path = Alamofire; + sourceTree = ""; + }; + 2C35DE19F23A44560D56F1A00E8D3C38 /* DDBaseNavigationController */ = { + isa = PBXGroup; + children = ( + 6049EB3C1E55B8B0F364D28E15B8683E /* DDBaseNavigationController.h */, + 360E8C023C6FC4183838AA96186B6792 /* DDBaseNavigationController.m */, + 6CA3A9246785CC19F0623EACF6110381 /* DDNavigationControllerDelegateReceiver.h */, + E92533FE6B06397CB43DBCD84123B54A /* DDNavigationControllerDelegateReceiver.m */, + ); + name = DDBaseNavigationController; + sourceTree = ""; + }; + 2C574D2ED827E5468F204D679188F899 /* DDTextView */ = { + isa = PBXGroup; + children = ( + ); + name = DDTextView; + sourceTree = ""; + }; + 2E4466814045875E53DC249C453F395B /* Support Files */ = { + isa = PBXGroup; + children = ( + 3D8B6CF18BFF7619F1157B03413DD711 /* DDTimerKit_Private.modulemap */, + 08B918246B5F59A7DB942A7792495870 /* DDTimerKit_Private-dummy.m */, + 0A3609CE388BD0A408CD57CBD6155AC3 /* DDTimerKit_Private-prefix.pch */, + 17582BF2A0605219A287734B1B168036 /* DDTimerKit_Private-umbrella.h */, + 9DA42232C932E85BAFD4FF2EEA92DFDF /* DDTimerKit_Private.debug.xcconfig */, + 8FB301939C9BC99F272793DB3EA9A39E /* DDTimerKit_Private.release.xcconfig */, + ); + name = "Support Files"; + path = "../Target Support Files/DDTimerKit_Private"; + sourceTree = ""; + }; + 3059CF9DEAFD6300597B31DA4B4EC92A /* UITableViewCell+DDCategory */ = { + isa = PBXGroup; + children = ( + 9F96EF579F4EDC48AB2ED1BF614276D9 /* UITableViewCell+DDCategory.h */, + E4300863F17D2D62979F2F20BCA0980D /* UITableViewCell+DDCategory.m */, + ); + name = "UITableViewCell+DDCategory"; + sourceTree = ""; + }; + 32C03805A1D732D77F0C297E5047E629 /* Support Files */ = { + isa = PBXGroup; + children = ( + 3FD655DCD0CDA106C648D72E01735734 /* DDAudioPlayerKit_Private.modulemap */, + B740423D0945EDE8A1B9EF3C9AE1E546 /* DDAudioPlayerKit_Private-dummy.m */, + DD8BD1EA252D5B574E873F9B2B7F6644 /* DDAudioPlayerKit_Private-prefix.pch */, + 42181CBBF0570751605F5301C8AFAB41 /* DDAudioPlayerKit_Private-umbrella.h */, + 08BAC2C5C13F5B859D3365FFF02D0891 /* DDAudioPlayerKit_Private.debug.xcconfig */, + F9AA0992507E3F69477B65B8AE1D4D1E /* DDAudioPlayerKit_Private.release.xcconfig */, + ); + name = "Support Files"; + path = "../Target Support Files/DDAudioPlayerKit_Private"; + sourceTree = ""; + }; + 33C4DD3EDB00E4FF02503BDD8F9486E2 /* DDBasicControlsKit_Private */ = { + isa = PBXGroup; + children = ( + 2077D566D327768B481E6E7139D7C019 /* DDBaseAnimation */, + C39C477D80C502D738E826C92FD5027B /* DDBaseAttributedString */, + 24BD91AEA7606C223E3B2442E15F3236 /* DDBaseButton */, + 1FF72A995DEFCD8DA1377910D5F0E108 /* DDBaseCollectionView */, + 6CF59554792960BF5E7E8F9C0F63BB9D /* DDBaseCollectionViewCell */, + C69718FC1228ECC9E73DB5F2B1223068 /* DDBaseImage */, + F2AB144A80BA475615B044F74F96A5EE /* DDBaseImageView */, + A5C63389C6B50FB0015EB51EDF20A8F7 /* DDBaseLabel */, + 2C35DE19F23A44560D56F1A00E8D3C38 /* DDBaseNavigationController */, + 89F7D208395AA0C111C97BB683861161 /* DDBaseScrollView */, + C1A3303B5973345355DCF7F9CF503F7E /* DDBaseSwitch */, + 4E054EC1280E13F261242656EFF723D4 /* DDBaseTableView */, + C1C5BDA9C3352EA051C0A23176C6CFBA /* DDBaseTableViewCell */, + B3635629CAC1BC81AACB35BA81152C2B /* DDBaseTextField */, + D86DA540AA7592347390C36B9AB4ACBB /* DDBaseTextView */, + 3FD8239F4E727B41EC6E24FDF4928EFC /* DDBaseView */, + FF58927E0B4230691CA1D25AB65CBE47 /* DDBaseViewController */, + C8267F4CEEBDFEADB99DB6A4669545A0 /* Support Files */, + ); + name = DDBasicControlsKit_Private; + path = DDBasicControlsKit_Private; + sourceTree = ""; + }; + 36742CB3910BD465EDC7BC4DF1EE01F5 /* Resources */ = { + isa = PBXGroup; + children = ( + 697F64D7AD11D233622C7EABEBB3B9E6 /* BRPickerView.bundle */, + ); + name = Resources; + sourceTree = ""; + }; + 367F5CF5CB7B2698483A7953C191EF0C /* Support Files */ = { + isa = PBXGroup; + children = ( + AE3D545C092474C206E7349491FAFB49 /* JXCategoryView.modulemap */, + B64EFDD65AF527B07AEF522F73A08104 /* JXCategoryView-dummy.m */, + A0F87D8DC43809AB7D320C88379D0ABD /* JXCategoryView-prefix.pch */, + 67DF36B793E2CF00421ABE1D3E185505 /* JXCategoryView-umbrella.h */, + 5AEB8F30EC772AD200F59854D2F954B8 /* JXCategoryView.debug.xcconfig */, + 59E8D33B939E8C3C48C63E7D53976129 /* JXCategoryView.release.xcconfig */, + ); + name = "Support Files"; + path = "../Target Support Files/JXCategoryView"; + sourceTree = ""; + }; + 39163F0A92F51050885C00523B30B437 /* UITextView+DDCategory */ = { + isa = PBXGroup; + children = ( + 707F1D31A6782BA84943F925D3B8B7BC /* UITextView+DDCategory.h */, + AE8679EE07CCD8439DD69525741784C8 /* UITextView+DDCategory.m */, + ); + name = "UITextView+DDCategory"; + sourceTree = ""; + }; + 3D05ACFAC555EABF36BB94E0A7CEE110 /* Support Files */ = { + isa = PBXGroup; + children = ( + B2BE171F72D6DB076BBFF75B97DFAB18 /* AMapTrack-NO-IDFA.debug.xcconfig */, + C4605D951AFC0A203124A569B0958C21 /* AMapTrack-NO-IDFA.release.xcconfig */, + ); + name = "Support Files"; + path = "../Target Support Files/AMapTrack-NO-IDFA"; + sourceTree = ""; + }; + 3F42743F85688DA481718AF5E2EB84E1 /* SwiftLog */ = { + isa = PBXGroup; + children = ( + 944FA5EAC18B49C032D0130791E1DCAE /* DDSwiftLog.swift */, + ); + name = SwiftLog; + sourceTree = ""; + }; + 3FBBB2FAE7B4D7CC44FCDF02CDB5598F /* UIWindow+DDCategory */ = { + isa = PBXGroup; + children = ( + CD23476084FF78183DB58F9F4571F8D9 /* UIWindow+DDCategory.h */, + A81CCD359428847EFB56456B6E16F49B /* UIWindow+DDCategory.m */, + ); + name = "UIWindow+DDCategory"; + sourceTree = ""; + }; + 3FD8239F4E727B41EC6E24FDF4928EFC /* DDBaseView */ = { + isa = PBXGroup; + children = ( + 309B95795D2946559604CB5DFF233BAB /* DDBaseView.h */, + AE4ADE608A6DD093F0D179EC9E3F5E4C /* DDBaseView.m */, + ); + name = DDBaseView; + sourceTree = ""; + }; + 40377ECAF73340E0F2D5D4004AB56C10 /* DDMANaviManager */ = { + isa = PBXGroup; + children = ( + BAF4523FFDDA5013C324C919671D9684 /* DDMANaviManager.h */, + 6854CC4379010F0C20D40BCBCFF19234 /* DDMANaviManager.m */, + ); + name = DDMANaviManager; + sourceTree = ""; + }; + 406CA9687643358A20498EC677420956 /* Support Files */ = { + isa = PBXGroup; + children = ( + EEBCD415604C9646A8FA5E593113240A /* JCore-xcframeworks.sh */, + 5FB38D3AAE62D1D410AB9ABCA4265157 /* JCore.debug.xcconfig */, + C4B150163A03FA8CDC2BC2AAD859E1A0 /* JCore.release.xcconfig */, + ); + name = "Support Files"; + path = "../Target Support Files/JCore"; + sourceTree = ""; + }; + 41EBADFBCDDC3F45E51EBA1DBCE3976C /* Support Files */ = { + isa = PBXGroup; + children = ( + BFE1EB6C61A6737D9D2A8394CC625868 /* DDToastKit_Private.modulemap */, + C1E808B15FDEEA5AF36D9DF4C4966B41 /* DDToastKit_Private-dummy.m */, + 9A8BAF8FFE3279DF4FFEC2E992F7460F /* DDToastKit_Private-prefix.pch */, + 1F7FCD1EEE9254E4B23FF51EF0678C66 /* DDToastKit_Private-umbrella.h */, + FD55F60859DCBCCD3361042F6A9346C3 /* DDToastKit_Private.debug.xcconfig */, + 39D12C5D8B812324E1C4FEAD076C9E31 /* DDToastKit_Private.release.xcconfig */, + ); + name = "Support Files"; + path = "../Target Support Files/DDToastKit_Private"; + sourceTree = ""; + }; + 4225D0C77AEC185D803EB6A6C9CD1A39 /* Overlay */ = { + isa = PBXGroup; + children = ( + E469FE9BA34CE21A445FD18AFE4CE7EA /* MABaseOverlay+DDCategory.h */, + 08CD488F803E37CB2EDEA19AE3253D75 /* MABaseOverlay+DDCategory.m */, + ); + name = Overlay; + sourceTree = ""; + }; + 4419BEA4A7F67E632906DE57E057764C /* DDAudioPlayerKit_Private */ = { + isa = PBXGroup; + children = ( + 718279146D62E5B3A48236C049B84C3B /* DDAudioService.swift */, + 32C03805A1D732D77F0C297E5047E629 /* Support Files */, + ); + name = DDAudioPlayerKit_Private; + path = DDAudioPlayerKit_Private; + sourceTree = ""; + }; + 45EA8E45B889E131651480C1D85065FA /* DDMAMap */ = { + isa = PBXGroup; + children = ( + 2AEA2BF6C4B5681F283D3F801FDD3DBD /* Annotation */, + BB472E40A83FA6FE7897959D02151CDD /* AnnotationView */, + F6431FAE12785EFC8640BB10744500B7 /* MapView */, + 4225D0C77AEC185D803EB6A6C9CD1A39 /* Overlay */, + F64389B71626EA294AD6B9185D368FA1 /* Sources */, + CEB2198EF3B8718F9FA7F0474D1ECA82 /* Trace */, + ); + name = DDMAMap; + sourceTree = ""; + }; + 4A3B41CF6F13D4673844D81DACE15172 /* DDCollectionViewCell */ = { + isa = PBXGroup; + children = ( + ); + name = DDCollectionViewCell; + sourceTree = ""; + }; + 4C7FE8261840A283989DB722416B5050 /* Frameworks */ = { + isa = PBXGroup; + children = ( + F642FDF0CEB3E2EAC8C4119A679C908D /* AMapFoundationKit.framework */, + ); + name = Frameworks; + sourceTree = ""; + }; + 4CE271CEEDC5929C8EE64282B6147136 /* Support Files */ = { + isa = PBXGroup; + children = ( + 55D852C4E8B16358C5A5C34C770E681A /* DDFontKit_Private.modulemap */, + 63F5BC8D29048733247E71DC052694A8 /* DDFontKit_Private-dummy.m */, + 7CB20C9F677047664AB2977AFB30785B /* DDFontKit_Private-prefix.pch */, + E8619ACD3CC56D8168CF041F640FD42E /* DDFontKit_Private-umbrella.h */, + 3EE95830DF547E9583DE5E91FEE8B4C2 /* DDFontKit_Private.debug.xcconfig */, + 9E8A1B69A23A66FA52A4486F2A77B771 /* DDFontKit_Private.release.xcconfig */, + ); + name = "Support Files"; + path = "../Target Support Files/DDFontKit_Private"; + sourceTree = ""; + }; + 4E054EC1280E13F261242656EFF723D4 /* DDBaseTableView */ = { + isa = PBXGroup; + children = ( + A6BFDB4E75B1484DFA020817AE4EE945 /* DDBaseTableView.h */, + B2CC50C4D50030EEF25A4B059F6D1424 /* DDBaseTableView.m */, + ); + name = DDBaseTableView; + sourceTree = ""; + }; + 4E81E604AA8C24230600EF2FBFF3C237 /* Support Files */ = { + isa = PBXGroup; + children = ( + 7B747A68B2F96CDF195E110ED82BA11C /* DDWebImageKit_Private.modulemap */, + 9CC0095EB0AACCD79BCAF9F7A67F8BA7 /* DDWebImageKit_Private-dummy.m */, + EEC05062A5E6D126EC5CFE8D3808DC5F /* DDWebImageKit_Private-prefix.pch */, + 8DD3128B1932922A36D56F6D19CAE4BC /* DDWebImageKit_Private-umbrella.h */, + 7916E7EBFC2EEFFE0004593327077C82 /* DDWebImageKit_Private.debug.xcconfig */, + 1B057FB28F622C52D92272EC7216BA4F /* DDWebImageKit_Private.release.xcconfig */, + ); + name = "Support Files"; + path = "../Target Support Files/DDWebImageKit_Private"; + sourceTree = ""; + }; + 50561FD23D44E36E6618C19FDE064BFA /* Support Files */ = { + isa = PBXGroup; + children = ( + 58B2406C7EFA1DEBBA5BEC5D0C5D0E1F /* Alamofire.modulemap */, + 8A24092E52B14E76233D4A039740A10A /* Alamofire-dummy.m */, + 03F04E26ED09B9526810A653C4168A14 /* Alamofire-prefix.pch */, + 8B291452A4DEA9322F381FDFB9720F89 /* Alamofire-umbrella.h */, + 6B4B2662F8699DDD0D5154B01F80C46F /* Alamofire.debug.xcconfig */, + 4224EC3201E37EC5D69A4F316878EEFB /* Alamofire.release.xcconfig */, + ); + name = "Support Files"; + path = "../Target Support Files/Alamofire"; + sourceTree = ""; + }; + 525F2E67AF7282623922F9592010270E /* Frameworks */ = { + isa = PBXGroup; + children = ( + 3DA232C49BF58CA2474D487459BC5117 /* AMapLocationKit.framework */, + ); + name = Frameworks; + sourceTree = ""; + }; + 53D5A6F640F2E4972AE486E4EF7C9869 /* ControlView */ = { + isa = PBXGroup; + children = ( + 443BBFD6B3D42FB3964EF34F210E8860 /* UIImageView+ZFCache.h */, + 80BE34B3B635E10EB14465ABFCBDE7FD /* UIImageView+ZFCache.m */, + C05B031ED5C4066135823A85DF067623 /* UIView+ZFFrame.h */, + 282D6F906448283595CF9242D0D039CF /* UIView+ZFFrame.m */, + DA45655B3BFCB73542F94FBC8B5EB767 /* ZFLandScapeControlView.h */, + 95CF63ABCB6F25ADB78E2D8C5C0B4AAE /* ZFLandScapeControlView.m */, + F68C9B02B11B5CA2245E6B8812CCEBB4 /* ZFLoadingView.h */, + 605FB43B0DA0F12B646A8E06249BA213 /* ZFLoadingView.m */, + EDCE541EE66134DC578CD78A2B632931 /* ZFNetworkSpeedMonitor.h */, + EF0D9F411C0AE8266539CC3C372C5FD0 /* ZFNetworkSpeedMonitor.m */, + B46DF914A72CDF22E27684C7E253C84C /* ZFPlayerControlView.h */, + 78DB9636223BA7446E901986F1BFC86D /* ZFPlayerControlView.m */, + D96CA72F567147EB6E41400EF7D697CD /* ZFPortraitControlView.h */, + 535348DC69977225D375E88E6B5E825B /* ZFPortraitControlView.m */, + 929396B3C13DD9AC0D752E4CE93A61E9 /* ZFSliderView.h */, + 1A28F79C50D3E20B9BAC67E22A4359F3 /* ZFSliderView.m */, + 6463A0E9C5AB7FD3DD5005CF73EDA0C5 /* ZFSmallFloatControlView.h */, + ED6916102BF992D0D04FE7DC99C7FB32 /* ZFSmallFloatControlView.m */, + 8687A57AE558794973CBE0EF4EE33A63 /* ZFSpeedLoadingView.h */, + 7F52C8799AD5CBC0BD9548829C430967 /* ZFSpeedLoadingView.m */, + CE40EFCA5E24E01C8DFAC18FD04439ED /* ZFUtilities.h */, + 9936F0CB3A63B5AACBC54AB5F3DBB50A /* ZFUtilities.m */, + 0DD8C1045DCFBEBB3D9D5593893F671E /* ZFVolumeBrightnessView.h */, + 5C5EC748DF82D46F9C9A08C1CFB9970E /* ZFVolumeBrightnessView.m */, + 2B16F442A3CBF264465B39CB93278DC1 /* Resources */, + ); + name = ControlView; + sourceTree = ""; + }; + 53F44F3637A3813AFAEE57A32FD05BEF /* DDCollectionView */ = { + isa = PBXGroup; + children = ( + ); + name = DDCollectionView; + sourceTree = ""; + }; + 552FF270B50722AA07DBE4CE954D8E23 /* DDImage */ = { + isa = PBXGroup; + children = ( + ); + name = DDImage; + sourceTree = ""; + }; + 55351A815973B74F7DB5AEF13304EE41 /* Support Files */ = { + isa = PBXGroup; + children = ( + 5E34799D6AD4239261D94D94048D8C2B /* AMapFoundation-NO-IDFA.debug.xcconfig */, + E5E283FCA2ECF0EC15A3059E80203F0E /* AMapFoundation-NO-IDFA.release.xcconfig */, ); name = "Support Files"; path = "../Target Support Files/AMapFoundation-NO-IDFA"; sourceTree = ""; }; - 281697647AB86C451A9507E12A01FC14 /* DDSwitch */ = { + 56A8132E1DC86550009A4764C1C9C677 /* DDSwitch */ = { isa = PBXGroup; children = ( ); name = DDSwitch; sourceTree = ""; }; - 298293F36E9939681F13AF0D9B99FB6A /* JPush */ = { + 56E37DF9ACF7302CC404D9F47F984136 /* GCDTimer */ = { isa = PBXGroup; children = ( - A87EFA4D295C06EF78A5B26A92AEF4FA /* Frameworks */, - 8B7AB434E3761816BADEDE578D823E18 /* Support Files */, - ); - name = JPush; - path = JPush; - sourceTree = ""; - }; - 299D1C1239DB12ADD78FC8E0EE7662EA /* DDBaseAnimation */ = { - isa = PBXGroup; - children = ( - 9FB92C5A9C0E93E9092D0F47E5522649 /* DDTransitionAnimation */, - ); - name = DDBaseAnimation; - sourceTree = ""; - }; - 2C57697E27A908771766BE613A58A25E /* DDBaseCollectionView */ = { - isa = PBXGroup; - children = ( - 93D6D4BA2DC9E732D330D585CCEDEF4E /* DDBaseCollectionView.h */, - 223BEC5CF4773D87FC272B293125DA97 /* DDBaseCollectionView.m */, - ); - name = DDBaseCollectionView; - sourceTree = ""; - }; - 2D3D1B9F415AFA1A1B2067D9ACA76406 /* Core */ = { - isa = PBXGroup; - children = ( - 0869C8BBD4FCB89ED37D690294177823 /* UIScrollView+ZFPlayer.h */, - DDF60A7CBA97E594F3991A474915F912 /* UIScrollView+ZFPlayer.m */, - 75738FDE72D8C5DBA06B327AB289BE96 /* UIViewController+ZFPlayerRotation.m */, - 4CC63E4B701235E8B2857D384EEAB76B /* ZFFloatView.h */, - 0B5B4B27E12CDBEF2C34CAC20DFCA94C /* ZFFloatView.m */, - A682E849D1F23C41023413056013C7E9 /* ZFKVOController.h */, - D02917726785129AE49B34F7497E3444 /* ZFKVOController.m */, - 5EE0A8B1D2796D924AE795B2A9F3A58E /* ZFLandscapeViewController.h */, - 269F0C7384B4FAA210049A05880A496F /* ZFLandscapeViewController.m */, - FEB29B95D1F1C6CE9502A936A5D3F306 /* ZFLandscapeWindow.h */, - F2B77CEB2DD94E3C98E0EA313181A241 /* ZFLandscapeWindow.m */, - 0E50839580B51D0A7F3EF88B55109292 /* ZFOrientationObserver.h */, - 11A0E08C743E9F83B7793CFD9C9BAF7D /* ZFOrientationObserver.m */, - 3323CDD98F028743B69F315E539F995A /* ZFPersentInteractiveTransition.h */, - 6E3DEB584DB9996A3FA4313F64CA66B5 /* ZFPersentInteractiveTransition.m */, - 00BD01C2A4F3977033868918BB3BAE9B /* ZFPlayer.h */, - 4AC0F29BFF60BF9F976DD71663EDD63E /* ZFPlayerConst.h */, - 1BA5EFAAD446B4AA9BEF6762D02E2253 /* ZFPlayerController.h */, - E84F0BA5EE63DA617C8BDBC5FB965E71 /* ZFPlayerController.m */, - F887C82A71C30C5C4F96A175ACD6E53A /* ZFPlayerGestureControl.h */, - A5F2038ABCAE45CF33BCEBA31A37A5E5 /* ZFPlayerGestureControl.m */, - DAAA0F5380E9FEA43239A111EEE9E9A0 /* ZFPlayerLogManager.h */, - E12C97D31B0C1C060F7D016DAB6238D0 /* ZFPlayerLogManager.m */, - 8B3D868BD3B402BB1F6AB2D97468F500 /* ZFPlayerMediaControl.h */, - 6B17E2F113A6E90E920367154E70C153 /* ZFPlayerMediaPlayback.h */, - 5B26E7ABEE4266E8CE3B3F5F405B33CD /* ZFPlayerNotification.h */, - 0895CD9160D01F577A4F8C987527075B /* ZFPlayerNotification.m */, - 58B6509FABCAE9298DF103DCBEB57CD1 /* ZFPlayerView.h */, - 99968AC2DBB3A2F3F7CDC30EE42C3DF2 /* ZFPlayerView.m */, - E10A1AB973CE69ADE8F346E5B990119C /* ZFPortraitViewController.h */, - 1241693E68BF493A2728F5EB81DDBC2F /* ZFPortraitViewController.m */, - B38EB51450EACAE0B11A83FFD19E3EBC /* ZFPresentTransition.h */, - 2F12ABD17B372F30CA44D51EE4CD0D57 /* ZFPresentTransition.m */, - 744A62A90A29385B42C712197ACD3BC7 /* ZFReachabilityManager.h */, - E706A064623BCBA10CDA2656C5B0C91C /* ZFReachabilityManager.m */, - ); - name = Core; - sourceTree = ""; - }; - 2ECB9891CAE8009FFE43213A17B786BF /* UIScrollView+DDCategory */ = { - isa = PBXGroup; - children = ( - 1C66EFB0BE10C024A3B99F07A5C7C891 /* UIScrollView+DDCategory.h */, - 939A46F25E00E8C8052F85944E9E5DC3 /* UIScrollView+DDCategory.m */, - ); - name = "UIScrollView+DDCategory"; - sourceTree = ""; - }; - 2F477BDE1CE47FFCC27ECE6E7AFF9064 /* Support Files */ = { - isa = PBXGroup; - children = ( - CC5547DDF95C984289C70E6CB21AF116 /* JXCategoryView.modulemap */, - 7099FEACCF25C6B6D7F2F554C0A2F577 /* JXCategoryView-dummy.m */, - FCACE9A74D825BF4B496E6F9FED8065E /* JXCategoryView-prefix.pch */, - 5A5604C88511E426376228D93B5D2E05 /* JXCategoryView-umbrella.h */, - B107510587F9AC74E807346409C99813 /* JXCategoryView.debug.xcconfig */, - C9FD7438E14B5EF0B138CAB170FF9833 /* JXCategoryView.release.xcconfig */, - ); - name = "Support Files"; - path = "../Target Support Files/JXCategoryView"; - sourceTree = ""; - }; - 2FCA70B773ED23FA375FDF53A3C0AE89 /* UIImage+DDCategory */ = { - isa = PBXGroup; - children = ( - F7508C3C007BB7CE6704DFF8D2E8E1CA /* UIImage+DDCategory.h */, - F7AE22AB585AA94812D55676007FA7D7 /* UIImage+DDCategory.m */, - ); - name = "UIImage+DDCategory"; - sourceTree = ""; - }; - 328B8924CD437AD09E400BD4096397A5 /* DDBaseLabel */ = { - isa = PBXGroup; - children = ( - 9F691AD46B341DB9014CC5D31F64C79F /* DDBaseLabel.h */, - 992D25C5AA9160B1F8317E3BB17518E4 /* DDBaseLabel.m */, - ); - name = DDBaseLabel; - sourceTree = ""; - }; - 32D3B3EEA548B815562AF6BC3A5F030B /* Frameworks */ = { - isa = PBXGroup; - children = ( - 374FF37024A1CF70C5461B4B183E1FFE /* AMapLocationKit.framework */, - ); - name = Frameworks; - sourceTree = ""; - }; - 34563465E85E18F0E1F994399D3A0346 /* UINavigationItem+DDCategory */ = { - isa = PBXGroup; - children = ( - E85A0B83E3BA82ECCAFDB25F6BAACEBB /* UINavigationItem+DDCategory.h */, - AB572BD743186A40A21A446CF8F5182A /* UINavigationItem+DDCategory.m */, - ); - name = "UINavigationItem+DDCategory"; - sourceTree = ""; - }; - 34638B34E19F9A62F514C6FC09B897F5 /* DDToastKit_Private */ = { - isa = PBXGroup; - children = ( - E50359508E777BAA53F15DB167631D0A /* SwiftToast.swift */, - C258428522F4A64CB4A8EF1E49C0AF90 /* Toast.swift */, - F0C3614F2AA6D0AAB8851D2B991A90D0 /* Support Files */, - ); - name = DDToastKit_Private; - path = DDToastKit_Private; - sourceTree = ""; - }; - 3BB7CB295482A998481879CC83D4CE8E /* Support Files */ = { - isa = PBXGroup; - children = ( - 002AACEA12D9C290AEC10A87CEB9C423 /* AMapLocation-NO-IDFA.debug.xcconfig */, - F12247A5F39A5764DEF56D27EEF65ECE /* AMapLocation-NO-IDFA.release.xcconfig */, - ); - name = "Support Files"; - path = "../Target Support Files/AMapLocation-NO-IDFA"; - sourceTree = ""; - }; - 3C6C6EBC7E527CB0860FC915174F36D3 /* Resources */ = { - isa = PBXGroup; - children = ( - D86F50969AD3CBB8E6F242D17334F773 /* en.lproj */, - ); - name = Resources; - sourceTree = ""; - }; - 3C9C12337D63FFD2382E59C2CED6E00E /* DDLogKit_Private */ = { - isa = PBXGroup; - children = ( - F0124C6A341B7DADA2F13DF79B1841D6 /* OCLog */, - 608D5AB68D6741E409B84CA55E58A051 /* Support Files */, - DFFEFEB2F1925711973CCFA33BAC849F /* SwiftLog */, - ); - name = DDLogKit_Private; - path = DDLogKit_Private; - sourceTree = ""; - }; - 3D081FDCD53BB093ED0CF2794043A81B /* Support Files */ = { - isa = PBXGroup; - children = ( - 954C79FC8DFBC93CD7443EE14B462106 /* SwiftEntryKit.modulemap */, - 643414519A89EAE4317C40A868F404E9 /* SwiftEntryKit-dummy.m */, - 60AF4B4BCACF867CEC8FDBD547CAB250 /* SwiftEntryKit-prefix.pch */, - 41B3274F1C3FAAE77565D79AD96F5363 /* SwiftEntryKit-umbrella.h */, - AFB14CA83302F2818FDEE97F89A6D466 /* SwiftEntryKit.debug.xcconfig */, - EB0B2A100A5F3F1967BD87E136169C16 /* SwiftEntryKit.release.xcconfig */, - ); - name = "Support Files"; - path = "../Target Support Files/SwiftEntryKit"; - sourceTree = ""; - }; - 3E54D989CC3D8CE2F2369BD356268C26 /* MapView */ = { - isa = PBXGroup; - children = ( - BB9373E1CE7B9F0407534CC6C2CCE78C /* DDMAMapView.h */, - 0CF54B0AB9D6F66FA4696F98802E50CA /* DDMAMapView.m */, - ); - name = MapView; - sourceTree = ""; - }; - 3E77C9D3ABA9528298557FC76081B390 /* Support Files */ = { - isa = PBXGroup; - children = ( - CEBA63E02F0B41B959C417938ADB2611 /* IQKeyboardManagerSwift.modulemap */, - AE31298B07AC3F7D636B02C1B2EDEBBE /* IQKeyboardManagerSwift-dummy.m */, - DECB4FF0AFEC2660F82031B7A11580F6 /* IQKeyboardManagerSwift-prefix.pch */, - 996EC8E3E1C2BCD6A8B9EE2EA38B3695 /* IQKeyboardManagerSwift-umbrella.h */, - 840DFDD78A4294A778E97CEE52A3647F /* IQKeyboardManagerSwift.debug.xcconfig */, - 5C0B31CD55F230182D568D7C9DC05432 /* IQKeyboardManagerSwift.release.xcconfig */, - ); - name = "Support Files"; - path = "../Target Support Files/IQKeyboardManagerSwift"; - sourceTree = ""; - }; - 3FC64E4241E2B750149A44718CC2606D /* Overlay */ = { - isa = PBXGroup; - children = ( - 3CA9DA9922A38A99D87D5753A6BD4089 /* MABaseOverlay+DDCategory.h */, - 51813312B6F828DD6676FF8BF9934209 /* MABaseOverlay+DDCategory.m */, - ); - name = Overlay; - sourceTree = ""; - }; - 3FFD4C0F3656718E91814F6F92703453 /* DDBaseScrollView */ = { - isa = PBXGroup; - children = ( - C7D2C1A07D35D1D13DDA8D8101E954E4 /* DDBaseScrollView.h */, - E22E8A76D086243D8CA403C704BB0BE0 /* DDBaseScrollView.m */, - ); - name = DDBaseScrollView; - sourceTree = ""; - }; - 4082C175BAA621F8EB1E8BC95A2B0159 /* UICollectionView+DDCategory */ = { - isa = PBXGroup; - children = ( - 0875C040D12BE91C36E1ED306108F5CB /* UICollectionView+DDCategory.h */, - EC8CE20645932AF188D62387B5F839DB /* UICollectionView+DDCategory.m */, - ); - name = "UICollectionView+DDCategory"; - sourceTree = ""; - }; - 4145940E726D01E0F950FC8EB428FFB2 /* DDBaseCollectionViewCell */ = { - isa = PBXGroup; - children = ( - 5354666225BD90751E38FC6E159D3B33 /* DDBaseCollectionViewCell.h */, - 0E7F318A87744190A4904BA6876F7A52 /* DDBaseCollectionViewCell.m */, - ); - name = DDBaseCollectionViewCell; - sourceTree = ""; - }; - 42E14C5848BF9BC0CF6A29770778D77D /* DDNavigationController */ = { - isa = PBXGroup; - children = ( - ); - name = DDNavigationController; - sourceTree = ""; - }; - 46A9531131FE5E26B309E96EB4933BEC /* DDViewController */ = { - isa = PBXGroup; - children = ( - ); - name = DDViewController; - sourceTree = ""; - }; - 470CCFE51441C86D2D08AB751625C01A /* UIButton+DDCategory */ = { - isa = PBXGroup; - children = ( - 3ABD15FE3BF5AD14A022021BEF67736E /* UIButton+DDCategory.h */, - D547177A6F340ECF0E1FB2680D12B6AA /* UIButton+DDCategory.m */, - ); - name = "UIButton+DDCategory"; - sourceTree = ""; - }; - 476476A024F7262B526A3B6B010692E6 /* UIImageView+DDCategory */ = { - isa = PBXGroup; - children = ( - 0092E8726D12DE5B10C858746DEE3A77 /* UIImageView+DDCategory.h */, - 7B16D673C21F66C3035CC3A5D202B8BA /* UIImageView+DDCategory.m */, - ); - name = "UIImageView+DDCategory"; - sourceTree = ""; - }; - 4809F8242FD16103403DB549B15E7A6A /* DDWebImageKit_Private */ = { - isa = PBXGroup; - children = ( - 13BE78DF7FBB24096A3D84B50D638ED5 /* DDWebImage */, - 59A34D13189C1A53FBD38938B03D33A2 /* SDWebImage */, - 58F93BFC455AB094214EBB4BC2E4297E /* Support Files */, - ); - name = DDWebImageKit_Private; - path = DDWebImageKit_Private; - sourceTree = ""; - }; - 4A73584BE244C2EB5FE995625796C389 /* JCore */ = { - isa = PBXGroup; - children = ( - B4E7D81CBE6C7B77260243EC3DBD0D4E /* Frameworks */, - 0ED24CC84705CF1E4897BA272C6A0C28 /* Support Files */, - ); - name = JCore; - path = JCore; - sourceTree = ""; - }; - 4B63D9CF28C0396C5D7C5E08511D6E23 /* Support Files */ = { - isa = PBXGroup; - children = ( - 924179C3B9A8BFE4EDA6C2CFBB2CFF7E /* DDZFPlayerKit_Private.modulemap */, - F57D3F8AD316C5F37113D8A8A494EFB8 /* DDZFPlayerKit_Private-dummy.m */, - 76A7530FC0F8224118AF93A08EAC0B30 /* DDZFPlayerKit_Private-prefix.pch */, - 06E8E3ECF7906587527EAF1A57324AA2 /* DDZFPlayerKit_Private-umbrella.h */, - 58A1A700EB27EEE36BA39EA1A08FA43F /* DDZFPlayerKit_Private.debug.xcconfig */, - 648AE9D3BC08998FF18DA747D82EF4F1 /* DDZFPlayerKit_Private.release.xcconfig */, - ); - name = "Support Files"; - path = "../Target Support Files/DDZFPlayerKit_Private"; - sourceTree = ""; - }; - 4C5067BE05EDE422A2A15DE6185C1270 /* DDBaseAttributedString */ = { - isa = PBXGroup; - children = ( - D9F2BD832DF1E60682D1FCFCB5302168 /* DDBaseAttributedString.h */, - 3E6B546921C5C73D7EFC96B07606C61F /* DDBaseAttributedString.m */, - 9E92C5C6AF942E4A17B20ADFEF121074 /* DDBaseMutableAttributedString.h */, - 215EF9A5ED82FF8FC2767B4012947918 /* DDBaseMutableAttributedString.m */, - ); - name = DDBaseAttributedString; - sourceTree = ""; - }; - 4DFCC773AEBDE22AE3555E3A3188B186 /* ijkplayer */ = { - isa = PBXGroup; - children = ( - 3DB3210B892243F17E4B0839CCC7B88D /* ZFIJKPlayerManager.h */, - B58B6795B2837386D36D01C304554ADB /* ZFIJKPlayerManager.m */, - 8113918C20D9A8F35606193E6066AA32 /* Frameworks */, - ); - name = ijkplayer; - sourceTree = ""; - }; - 5404B4548EC8D2375B038E0AA9E7FC05 /* Resources */ = { - isa = PBXGroup; - children = ( - E2A8FC1D08C54C5818E2BA46C869C91B /* AMap.bundle */, - DFFE5876AEE507E303870C6ECCBB4F7C /* AMapNavi.bundle */, - ); - name = Resources; - sourceTree = ""; - }; - 54376A2C6379783D92E20F9848A5FB81 /* SnapKit */ = { - isa = PBXGroup; - children = ( - C2641DF68DED10FBB1979FC56DE64C03 /* Constraint.swift */, - 5477D7AAB0BAEC070CF380825CAF0E72 /* ConstraintAttributes.swift */, - C0D3D384BC63F1D9C6E905ED844B1A36 /* ConstraintConfig.swift */, - 7DF2B05B04D08A675DD0298DB5D10CF2 /* ConstraintConstantTarget.swift */, - 59FBEBD185603FE834AE2FC466E97DF7 /* ConstraintDescription.swift */, - BEF7C4A86D96B7AFBCFBD1CB3CFEE0CF /* ConstraintDirectionalInsets.swift */, - 43DCA29F956F9ECA9822AF9326438347 /* ConstraintDirectionalInsetTarget.swift */, - AC781B19D782C09CD7171D582C7C1299 /* ConstraintDSL.swift */, - C253DA098B864ED92D2D027F35282FCD /* ConstraintInsets.swift */, - 8FC5C16022D34FE88BB63DD72A3EC6A2 /* ConstraintInsetTarget.swift */, - A92173A08D28119202CC77B5E01C0DE7 /* ConstraintItem.swift */, - C1BB769010495F3FD4866ECD933A8299 /* ConstraintLayoutGuide.swift */, - 39DAE5EEFD441E4D859F25E0EA7D002C /* ConstraintLayoutGuide+Extensions.swift */, - D85A4D2507CC0168B8D03A7513369B03 /* ConstraintLayoutGuideDSL.swift */, - 5445A5085A135866ABBEB2CCF59255DF /* ConstraintLayoutSupport.swift */, - D2D08685BDAEE28779E59509468968BE /* ConstraintLayoutSupportDSL.swift */, - F8944635C0FE010A89E5A2572100668D /* ConstraintMaker.swift */, - 9AB28D357EE656C30C3151FE6335D9C3 /* ConstraintMakerEditable.swift */, - 95C0FEAA3B43FD6B815D1F69389BBD23 /* ConstraintMakerExtendable.swift */, - B3339614D486179B60CFE654F79B5A1F /* ConstraintMakerFinalizable.swift */, - A0046413888524AAF15AD4877C6971ED /* ConstraintMakerPrioritizable.swift */, - C6EF70FBD1FD294D9AECD8DCBE23574D /* ConstraintMakerRelatable.swift */, - 1B4E5E801509987FF662DA6667576E25 /* ConstraintMakerRelatable+Extensions.swift */, - 5A5B5C244AF83A92C052D77C3AD059DE /* ConstraintMultiplierTarget.swift */, - DF3C58CD8F4A0E9BE39F560C6F8C6E26 /* ConstraintOffsetTarget.swift */, - C565AB4454ECF08BBA37CC401EA5A25A /* ConstraintPriority.swift */, - DAE7DDEA88F9534C8374515FC7532B0B /* ConstraintPriorityTarget.swift */, - 672D8B4DA9EB982C785C9A45852FC95B /* ConstraintRelatableTarget.swift */, - 7F598D9F166A0F728E99E590C34BB985 /* ConstraintRelation.swift */, - E17D302F81EE006B785285A4F68C0DD2 /* ConstraintView.swift */, - 0CB0CC96BF81BF49D09BF3BA2C7AB8B0 /* ConstraintView+Extensions.swift */, - 2E19F8EC5AEF8B6DA51F5B7C83E3CE84 /* ConstraintViewDSL.swift */, - 9FFC0A7EFAA401BDF16835C4BD55FAC9 /* Debugging.swift */, - 47164511DFABDCA00BC5FA027A5A34D1 /* LayoutConstraint.swift */, - EB4AA639EF6C53416725FD05E68BF253 /* LayoutConstraintItem.swift */, - 55BD24CC9CEC494DAA66B2B2DE86F452 /* Typealiases.swift */, - 084E0C0D1AA5C124E978663C4990312C /* UILayoutSupport+Extensions.swift */, - 549CF9EEE2D09E3374D7C4AD0F0DDED0 /* Support Files */, - ); - name = SnapKit; - path = SnapKit; - sourceTree = ""; - }; - 548C70B1A6B79C45157363CE5C640576 /* Core */ = { - isa = PBXGroup; - children = ( - 51C3C199E1366AAEB5E510B8E5B368EA /* Array+ZLPhotoBrowser.swift */, - 6C800FA8AABC4631C247813282A08882 /* Bool+ZLPhotoBrowser.swift */, - E07B3850AA234289C1F9C117E5EFFEDB /* Bundle+ZLPhotoBrowser.swift */, - 47444C3DD0CECE87F67B3A70EF699DF2 /* Cell+ZLPhotoBrowser.swift */, - 0251526F9D0BA56AD8E2E8878FC068C4 /* CGFloat+ZLPhotoBrowser.swift */, - 3BFC7F295695D36D93D0A2605EA6AB04 /* NSError+ZLPhotoBrowser.swift */, - 99DF8CA1C5831F1EFF41085A8367D586 /* PHAsset+ZLPhotoBrowser.swift */, - CC4D1D5DF0E258B35A2628ECC0ECB189 /* String+ZLPhotoBrowser.swift */, - D66984081B441C8CC2CC9138560B1175 /* UIColor+ZLPhotoBrowser.swift */, - A04A9FCD00D476101C4814287193D884 /* UIFont+ZLPhotoBrowser.swift */, - B87E6D16475E3CF40F459AD7D4B0D41D /* UIImage+ZLPhotoBrowser.swift */, - 4A99A711085317D81CB5936E6DD841F4 /* UIView+ZLPhotoBrowser.swift */, - 305F31761A21E4F18644A4263A696595 /* UIViewController+ZLPhotoBrowser.swift */, - 6967F454C26157A17CCA35959AB343D2 /* ZLAddPhotoCell.swift */, - C37F753156AAD77276F79A96EA0B168A /* ZLAdjustSlider.swift */, - 2374A1CCD906CF0E895948B0A065B503 /* ZLAlbumListCell.swift */, - F9A25FB796F61813231948FB60C1B678 /* ZLAlbumListController.swift */, - 21244D72067C005592CD8A8175E871E2 /* ZLAlbumListModel.swift */, - 39A2798ABFCA90D5E3BFFE46BBFF5D57 /* ZLAnimationUtils.swift */, - C14A9065C376B53FAEDDE650DFAA2F5D /* ZLBaseStickerView.swift */, - 990FB2D28CA2C94ED42F278C95422B94 /* ZLCameraCell.swift */, - 2822D98723585527798A40A918FF4B8F /* ZLCameraConfiguration.swift */, - 386DC0A475360B3A6713F051151B5570 /* ZLClipImageDismissAnimatedTransition.swift */, - 3FB4CB2354A61CFCDE31EB0B660B924E /* ZLClipImageViewController.swift */, - 6CB1AB0422CDD0085DAC83850AF5CFD9 /* ZLCollectionViewFlowLayout.swift */, - 0D8C54C35613F75509897C00A1C89A5B /* ZLCustomAlertProtocol.swift */, - 9102B251FD7CEDD97E178F16402B2076 /* ZLCustomCamera.swift */, - 40BD20DA26F4C382828585078A748245 /* ZLEditImageConfiguration.swift */, - 21E12E33AE2337A09DB491E56624893A /* ZLEditImageViewController.swift */, - 366CAA289B0930DF3D88DB4017B53B1B /* ZLEditToolCells.swift */, - ABBD483A481D42906399A9411D786FBB /* ZLEditVideoViewController.swift */, - EA43B08B9A054BD72E59442A9B29B514 /* ZLEmbedAlbumListView.swift */, - D1D450EA98DFF1FBAC1C3CF9ACB65280 /* ZLEnlargeButton.swift */, - 2590DF3733DA983E298579A63188E238 /* ZLFetchImageOperation.swift */, - CA27469EC732B1B110A73C84A922D666 /* ZLFilter.swift */, - EEF5122C98DF2F5BB902AD9D35ED1EF0 /* ZLGeneralDefine.swift */, - 6A708DE29867303623088A2AF88B0ED6 /* ZLImageNavController.swift */, - FE8CD86B1F5A8BCBB77148D7F98EAB25 /* ZLImagePreviewController.swift */, - DAD40349ED356CD841F847207C4AD406 /* ZLImageStickerView.swift */, - A7D9C3B98052E58DD6F6388F373243F8 /* ZLInputTextViewController.swift */, - 22DCC7A1C2167A910BC31953816C82CE /* ZLLanguageDefine.swift */, - 9B085CFA504578A99003C7302C61149E /* ZLPhotoBrowser.h */, - 2BC68698D933F21C9854CEEC1141FCD7 /* ZLPhotoBrowser.swift */, - 60BCFFD4C438F8ECD549ADC4D9E05BDE /* ZLPhotoConfiguration.swift */, - 67069A3CC0C11C52A23A37682F47C53E /* ZLPhotoConfiguration+Chaining.swift */, - 30487A02003E2982F7257B2FB466B17E /* ZLPhotoManager.swift */, - 3E44E35608EA511589C6BA9FB55E7484 /* ZLPhotoModel.swift */, - DA38EEE0BA035A6B89855CE8BD5383FA /* ZLPhotoPreviewAnimatedTransition.swift */, - B048B9708BCA8652CDAA20A04D29A498 /* ZLPhotoPreviewCell.swift */, - 3C09A213D0F34ECFE3F8B66F9DAAB959 /* ZLPhotoPreviewController.swift */, - F0944352AE170B6ECF3A81E99CA195E0 /* ZLPhotoPreviewPopInteractiveTransition.swift */, - ACBC7F9183DFA5448C2F5701326B3599 /* ZLPhotoPreviewSheet.swift */, - D8ED028E36F42FA059551C165A0E6F95 /* ZLPhotoUIConfiguration.swift */, - 9C80D210C0026E985BF7FC5C26E588F0 /* ZLPhotoUIConfiguration+Chaining.swift */, - 471813299EE9049FE24C4F3827E46895 /* ZLProgressHUD.swift */, - F57FE6ED4A8B63CF5ED9D33EEB59977F /* ZLProgressView.swift */, - 12DCBCCC9694CEB567D5A2098C5C0690 /* ZLResultModel.swift */, - 7D954269AC14EBA13CBB0C7946F3A26B /* ZLTextStickerView.swift */, - 6361FAECAFB636846A88A170A1590010 /* ZLThumbnailPhotoCell.swift */, - 11B45A11E7F75B40C1F34E95E1461E0F /* ZLThumbnailViewController.swift */, - 9A615AE14F66A75F79B38B7ABD0F85C0 /* ZLVideoManager.swift */, - CA4F05D5BA6C421D0B012AC18C249E07 /* ZLWeakProxy.swift */, - ); - name = Core; - sourceTree = ""; - }; - 549CF9EEE2D09E3374D7C4AD0F0DDED0 /* Support Files */ = { - isa = PBXGroup; - children = ( - 74B48BEE88F72C2A54CC979B7DA89D4B /* SnapKit.modulemap */, - BDF2C94C25454433C04944523F3076BE /* SnapKit-dummy.m */, - 79AECA241D3B6E6105DEFDD8157396E3 /* SnapKit-prefix.pch */, - 4FD3363E6B8E7361817E4E8AC98441B9 /* SnapKit-umbrella.h */, - 8DDF3D97A63B399455E7A3994C5332D5 /* SnapKit.debug.xcconfig */, - AC27999823332C7DE3136AD43CE4056B /* SnapKit.release.xcconfig */, - ); - name = "Support Files"; - path = "../Target Support Files/SnapKit"; - sourceTree = ""; - }; - 55351A3E30102E6F8B1CD4FBAB045A39 /* Frameworks */ = { - isa = PBXGroup; - children = ( - 118F2627E444F1BE57CCC8537A429129 /* AMapSearchKit.framework */, - ); - name = Frameworks; - sourceTree = ""; - }; - 553A5195E4F17A19571901F57E2605C4 /* Sources */ = { - isa = PBXGroup; - children = ( - F9875C447AAC89F6AC059E67EFD63929 /* Resources */, - ); - name = Sources; - sourceTree = ""; - }; - 567FAA96FAFB33806A3BDFE4BFD2CF0D /* Resources */ = { - isa = PBXGroup; - children = ( - 4AAB661751C4615E68332E086EBA0C65 /* ZLPhotoBrowser.bundle */, - ); - name = Resources; - sourceTree = ""; - }; - 56C3B323A548037C96A51518C541871C /* Support Files */ = { - isa = PBXGroup; - children = ( - 671BF70868815DD346051F99F1608641 /* JPushExtension-xcframeworks.sh */, - 6C4E56EE7C5534AAF96853538F7E417A /* JPushExtension.debug.xcconfig */, - 9E192DDFBD0F157867DFA6E9582C17EC /* JPushExtension.release.xcconfig */, - ); - name = "Support Files"; - path = "../Target Support Files/JPushExtension"; - sourceTree = ""; - }; - 5827979C279796762F8ECF8866FC48F9 /* Support Files */ = { - isa = PBXGroup; - children = ( - 2106F49CC621AADD4F0EF18B2BB8C6EE /* RxRelay.modulemap */, - 53630E9BB8940972E7B4718540FA1984 /* RxRelay-dummy.m */, - 432834CED263348F5D32D55467106DE0 /* RxRelay-prefix.pch */, - D0D83D3DCDB0CC3CAC40E5810FB8B013 /* RxRelay-umbrella.h */, - B965426384B8DEACB5528933E80EF232 /* RxRelay.debug.xcconfig */, - 1533FBBCB4E61683BDC3F1EBCFAA1143 /* RxRelay.release.xcconfig */, - ); - name = "Support Files"; - path = "../Target Support Files/RxRelay"; - sourceTree = ""; - }; - 58F93BFC455AB094214EBB4BC2E4297E /* Support Files */ = { - isa = PBXGroup; - children = ( - E7A4CB23E0DEA9A8FE260503C5C80A98 /* DDWebImageKit_Private.modulemap */, - 166A1713B3B3D736241CC69E55F347DF /* DDWebImageKit_Private-dummy.m */, - 3215DC35606AF196664637BFCB58CE56 /* DDWebImageKit_Private-prefix.pch */, - 8AD87A2D187E1F12955561D44BCE6644 /* DDWebImageKit_Private-umbrella.h */, - 35794E220098A63DB0593ACF4BFF7120 /* DDWebImageKit_Private.debug.xcconfig */, - 24E22025AFCCDEC937F7B01867C1A4FF /* DDWebImageKit_Private.release.xcconfig */, - ); - name = "Support Files"; - path = "../Target Support Files/DDWebImageKit_Private"; - sourceTree = ""; - }; - 5923FE50F8448451704BDD1DDD01ECF6 /* GCDTimer */ = { - isa = PBXGroup; - children = ( - 47EA542FEF8E600F42F57E68D1673A22 /* DDTimerManager.h */, - 1F00AA9988921EF293D7B70ADB110CC0 /* DDTimerManager.m */, - C145C1028751009EA4490FA0BC97D818 /* DDTimerObject.h */, - 827D4F3944DDAE0DF0EA3B6E06F1C36B /* DDTimerObject.m */, + D0AD26B18FD7E2C944AA8C1205ECD171 /* DDTimerManager.h */, + 20A03C612DE994A6D49EFA787201E56C /* DDTimerManager.m */, + 5853D8C365C2E23E53E6B8B428CDFA6A /* DDTimerObject.h */, + 6019FF29BB187DBD37EE03029AC1CFA4 /* DDTimerObject.m */, ); name = GCDTimer; sourceTree = ""; }; - 59A34D13189C1A53FBD38938B03D33A2 /* SDWebImage */ = { + 5770958B71B5A333955FE52367DFE291 /* DDCategoryKit_Private */ = { isa = PBXGroup; children = ( - 1DCA52C786AB5CE5A4FA5F77581CDC47 /* Core */, - EC93B074FAAD9A2686E093968843A13D /* MapKit */, + 42C512828A40E152872C6B4CE3903BE0 /* DDCategory.h */, + 793CBD17543F1A771EAA4F17E8E31E0F /* CALayer+DDCategory */, + A6F36B7D0B01ADFA5852314CEFC6B1EB /* NSAttributedString+DDCategory */, + DF09C41D2C40E7E2A963B122F3CE89E1 /* NSBundle+DDCategory */, + 0CBC088010C549DEE8FD67D406111B70 /* NSObject+DDCategory */, + 5CCB70B0ACEE262553FC94C54B399CCA /* NSThread+DDCategory */, + 89D3B1EB830A3EC69C32FFB9E2C95F45 /* NSURL+DDCategory */, + E0279366C4921C5697AFFD431A8B0309 /* Support Files */, + FEDFDA0F4D0527F7D5B4F2563262B02F /* UIApplication+DDCategory */, + C33F5294942B37FFDD17BE85E97BDB75 /* UIBarButtonItem+DDCategory */, + 739BEB475CFDFB5571854C582B14A0D6 /* UIButton+DDCategory */, + 74F64BC127E0CD1E391B0820FF54F36A /* UICollectionView+DDCategory */, + 97C35AE0796A7CF197A0DDFE123BA554 /* UICollectionViewCell+DDCategory */, + 5BF2E2CE073642FFB1DF52F28B3D9C5A /* UIFont+DDCategory */, + 8EFC10D9EDA3143FB2616436FADE1C19 /* UIImage+DDCategory */, + E6573895631C5007401D110EEF9939ED /* UIImageView+DDCategory */, + A5750A130C4BECBACCC48FD6EA478D7E /* UILabel+DDCategory */, + C14DF6F6495B037DC6D78089D6231A5B /* UINavigationBar+DDCategory */, + B3680B56A37411F8B06A19EB78F0EB0E /* UINavigationController+DDCategory */, + E82823ACA3A05A59E9D3D6DCEBB11230 /* UINavigationItem+DDCategory */, + 0224E4AA6FC5C4F774DF7F5D4F6388E0 /* UIScreen+DDCategory */, + F1BAB6B14699A8DD85DADCE0C09853D2 /* UIScrollView+DDCategory */, + 0D402B315635B9045836982A861966BE /* UISwitch+DDCategory */, + CD5E2A03BA3523B8DDBC8B72D7952460 /* UITabBarController+DDCategory */, + 89320A4BD5308FD29F41309A5167B112 /* UITableView+DDCategory */, + 3059CF9DEAFD6300597B31DA4B4EC92A /* UITableViewCell+DDCategory */, + 7710C1CD9EC283E9C98E792212A32634 /* UITextField+DDCategory */, + 39163F0A92F51050885C00523B30B437 /* UITextView+DDCategory */, + 932B9472614BB8AAB9255CFC84F2BEE5 /* UIView+DDCategory */, + 07C51CE023F6EC9D5CF0F3E77989DC92 /* UIViewController+DDCategory */, + 3FBBB2FAE7B4D7CC44FCDF02CDB5598F /* UIWindow+DDCategory */, ); - name = SDWebImage; + name = DDCategoryKit_Private; + path = DDCategoryKit_Private; sourceTree = ""; }; - 5C8AFCC9667D6AF6F30785D064412B5D /* UINavigationController+DDCategory */ = { + 5A33964D5BA495693FA68C7A74CA8C07 /* DatePickerView */ = { isa = PBXGroup; children = ( - B35443E30DB12838F64E3E4316A4FAB9 /* UINavigationController+DDCategory.h */, - 8EC2E98E67A9874F1E88188BAA778684 /* UINavigationController+DDCategory.m */, + 062E0FB913015D1C74D805EC9CC57C63 /* BRDatePickerView.h */, + FCC0689C94E168FD23D6DF07468A933E /* BRDatePickerView.m */, + A6F76FEE45C1E32CE51D341F23E1E41F /* BRDatePickerView+BR.h */, + A30EBD463466F63B3AF190056FCFE2C8 /* BRDatePickerView+BR.m */, + 1435090B5A923B9AAD07D69FF436ADF2 /* NSDate+BRPickerView.h */, + F77E3895D71D37E9E9BF54C89288DF20 /* NSDate+BRPickerView.m */, ); - name = "UINavigationController+DDCategory"; + name = DatePickerView; sourceTree = ""; }; - 608D5AB68D6741E409B84CA55E58A051 /* Support Files */ = { + 5BF2E2CE073642FFB1DF52F28B3D9C5A /* UIFont+DDCategory */ = { isa = PBXGroup; children = ( - 3AC0513A790765964F0780FDE6A08A87 /* DDLogKit_Private.modulemap */, - BA79CD22DB4EF360D9BA0F90DD50A760 /* DDLogKit_Private-dummy.m */, - 613F238C674165D60210DA1876E1E170 /* DDLogKit_Private-prefix.pch */, - 481A27334ADC0AB3AC6B00A418ABAC8B /* DDLogKit_Private-umbrella.h */, - FC6E15F9705E04077EE1C6AAB58B3245 /* DDLogKit_Private.debug.xcconfig */, - 2DEB0CCDAA83959F95B045476EBF88CC /* DDLogKit_Private.release.xcconfig */, + B00D1D89AE173CE03DA1CE254A92485F /* UIFont+DDCategory.h */, + 41E4C494C3D2A1D8DD5F8FB494F9BF3A /* UIFont+DDCategory.m */, + ); + name = "UIFont+DDCategory"; + sourceTree = ""; + }; + 5C1DEB0A0CD90EF5828BF8BAC168B356 /* JXCategoryView */ = { + isa = PBXGroup; + children = ( + 96F7AF40E802609917158B3B27A38C46 /* JXCategoryBaseCell.h */, + 38F0EECECA3502C31B2058880E168F69 /* JXCategoryBaseCell.m */, + 477E4DE9343D8FDCE62351F9659236A8 /* JXCategoryBaseCellModel.h */, + 41458FF2585B935FF2FBA66AB3EA086D /* JXCategoryBaseCellModel.m */, + 44ED3B33960CA6B7C6C5A4FACABF8E64 /* JXCategoryBaseView.h */, + 3FAC430F7F2D9F2BB5ADA5439647269D /* JXCategoryBaseView.m */, + DDB3BF38B62BB4CC0AC70E065002ADBE /* JXCategoryCollectionView.h */, + 92672863ED1E4EF1978E9E35CAD9FBE5 /* JXCategoryCollectionView.m */, + E554E05ED0F6AA57B12225A412E9E218 /* JXCategoryDotCell.h */, + D4913655D4F50C8A2D4F91427244E177 /* JXCategoryDotCell.m */, + 99AB51679515C5AE24A71E033EACDC14 /* JXCategoryDotCellModel.h */, + D25EDFDD8B4C639983E4C92CBC39C560 /* JXCategoryDotCellModel.m */, + D51D42263870E4959761C5CBF89B4D36 /* JXCategoryDotView.h */, + 46775A49318D9ED779E15AF9095471C3 /* JXCategoryDotView.m */, + 347EE4400E1618809DE4560F1E371F05 /* JXCategoryFactory.h */, + FB6CFF13C948BBCF31144201ECB76084 /* JXCategoryFactory.m */, + BCA9C6DD86E226D8238CA88509831E76 /* JXCategoryImageCell.h */, + 44B7DDAE8C191FE2E6FD016FC6CE65AD /* JXCategoryImageCell.m */, + E2BA3D133BAE9213EEC52E376DD5296B /* JXCategoryImageCellModel.h */, + F0E17ABBA096211C6ED32351A16C4B3A /* JXCategoryImageCellModel.m */, + 6F589AC376249AD8CC5716518A2E49EA /* JXCategoryImageView.h */, + 4F533F263F48E7D87B9E1DCE7A09023B /* JXCategoryImageView.m */, + 6654114B9228F7AC6DB978AB8EEF29BA /* JXCategoryIndicatorBackgroundView.h */, + BD78FEC426D325F38D6E871EB1610720 /* JXCategoryIndicatorBackgroundView.m */, + FABC49B157490BAC18D3C871805EF0D2 /* JXCategoryIndicatorBallView.h */, + B84E9DB849BDE2A2E75ADEFA12124308 /* JXCategoryIndicatorBallView.m */, + B893046FC8D75BB7604FD2DD3EA2E420 /* JXCategoryIndicatorCell.h */, + 7A4ACCA8D23AABD188369200BD0BC5B4 /* JXCategoryIndicatorCell.m */, + 0B0287512853C8B86CB04C42AC98AF10 /* JXCategoryIndicatorCellModel.h */, + D1A040E3C1A369F17169DEE671AF42D4 /* JXCategoryIndicatorCellModel.m */, + A383DDF49CE20AFB159C4C2CFEEA0B3E /* JXCategoryIndicatorComponentView.h */, + EA16FD120D889CD293F635B3EB3584D1 /* JXCategoryIndicatorComponentView.m */, + 0D0933D2DFD38420FF30CCE915C8FC72 /* JXCategoryIndicatorDotLineView.h */, + 42AF63DC8D965A189E15C7AD36497FE6 /* JXCategoryIndicatorDotLineView.m */, + F9C6DECE1126440987AFF0DE1FBD167E /* JXCategoryIndicatorImageView.h */, + 6C403751EE35C06E541A8EBAC2E77BEA /* JXCategoryIndicatorImageView.m */, + 3C71851C72F3AD0940858B0BD5A7C205 /* JXCategoryIndicatorLineView.h */, + 2AE01637CD4A740775EE7724E440C324 /* JXCategoryIndicatorLineView.m */, + 8300FFB7D28FC9CB5645873A902E9AD0 /* JXCategoryIndicatorParamsModel.h */, + A5FD96D59B7F203B54C673283CA021A1 /* JXCategoryIndicatorParamsModel.m */, + D8CE4345B7053A0BA4B5FC579F2842A1 /* JXCategoryIndicatorProtocol.h */, + 1397F9A8F26829E996CBAFD9780265E9 /* JXCategoryIndicatorRainbowLineView.h */, + 5F891E2A397E8DB06B4F1E7AA6E3CAE3 /* JXCategoryIndicatorRainbowLineView.m */, + 451A145E8E53F9436A0ACFB07A4787A8 /* JXCategoryIndicatorTriangleView.h */, + FB68195B395EB6CF8633DE6EDFBB1088 /* JXCategoryIndicatorTriangleView.m */, + 8E885B6D95F845479C2EB002C758BDFC /* JXCategoryIndicatorView.h */, + C7B93C5CCBD714319A1AD2DBC6CB9032 /* JXCategoryIndicatorView.m */, + 0139719C76F8C7628242BE20324110B6 /* JXCategoryListContainerRTLCell.h */, + 51C696D112632B46C171CDC692DB618B /* JXCategoryListContainerRTLCell.m */, + 8945C46CA45EE4320C007CF174997464 /* JXCategoryListContainerView.h */, + 160538DEC56439C5968908C2B061D198 /* JXCategoryListContainerView.m */, + 9526EB71B6900198A54FCEDBBE3E8630 /* JXCategoryNumberCell.h */, + 37D0DF42DE1CEFCC64AC88DD216A6C15 /* JXCategoryNumberCell.m */, + 17EF36FE763AB696820C44585014C0FD /* JXCategoryNumberCellModel.h */, + 91C0696E202BFA46891BAE2F7E983144 /* JXCategoryNumberCellModel.m */, + FD1A4D7EA4C0FF50E8CAD03D7DAD5EA0 /* JXCategoryNumberView.h */, + AB09C39369D91A6A5DE6F11CFF58FB1B /* JXCategoryNumberView.m */, + 3B1A9623209FAE65630C3CC966CEC8F5 /* JXCategoryTitleCell.h */, + 54D32FCF006486CCCB22D3B44A05B109 /* JXCategoryTitleCell.m */, + 31C236674516F1DD1B6E389C4495E2D1 /* JXCategoryTitleCellModel.h */, + 7AE3D7BACED7B735ED100166677EE994 /* JXCategoryTitleCellModel.m */, + B42C546CD3B3F54FEB1ADE47C74BAAC7 /* JXCategoryTitleImageCell.h */, + 27773BEB035B7035D67F1895E0590AEA /* JXCategoryTitleImageCell.m */, + 1B0309AE73CEA44E98F71755290E0533 /* JXCategoryTitleImageCellModel.h */, + 8A2B93E82AEB01EC5A37FE1494F6292D /* JXCategoryTitleImageCellModel.m */, + 991E213B89A1022461033F97D75A8D59 /* JXCategoryTitleImageView.h */, + 2339DEAEE8B0E5D7735D157456B33E7A /* JXCategoryTitleImageView.m */, + 4D62D270A16097070EB645A8494DBE9B /* JXCategoryTitleVerticalZoomCell.h */, + 4B783ABC741949A4EA09C8C41113E934 /* JXCategoryTitleVerticalZoomCell.m */, + A561F4A3DB1805B379FAA2EE96BD9B1D /* JXCategoryTitleVerticalZoomCellModel.h */, + AB814AA3CD8638D50279B47769EAADE0 /* JXCategoryTitleVerticalZoomCellModel.m */, + 7E1EB3D147DD5C3D26F79B7BE1682EB1 /* JXCategoryTitleVerticalZoomView.h */, + 99FC94EB81606499CDD006F8A2C7E374 /* JXCategoryTitleVerticalZoomView.m */, + 37FAB0BAEA67751427D6DE85F92A45C5 /* JXCategoryTitleView.h */, + FFFC3E30B1DB33AE5968EE45AD733CA8 /* JXCategoryTitleView.m */, + 1FF6A2190F5BC06DAB3EDE0EC9E568DC /* JXCategoryView.h */, + 4ED4E9784594D4F0519970E91C9FAD78 /* JXCategoryViewAnimator.h */, + 0BB849F8D022F2D44CB1B0298A884AC0 /* JXCategoryViewAnimator.m */, + 58E2AC33E168E15B298D69C9A5A28FFB /* JXCategoryViewDefines.h */, + FA4806691861BA43AA025BB12DE38210 /* RTLManager.h */, + DA1745FBAE3E5691CE7109A84B940193 /* RTLManager.m */, + 5242CDB2DB03111A788DC0059391F270 /* UIColor+JXAdd.h */, + CB2E8F051F4B981AB5E31D41EF9A0EBA /* UIColor+JXAdd.m */, + 367F5CF5CB7B2698483A7953C191EF0C /* Support Files */, + ); + name = JXCategoryView; + path = JXCategoryView; + sourceTree = ""; + }; + 5CCB70B0ACEE262553FC94C54B399CCA /* NSThread+DDCategory */ = { + isa = PBXGroup; + children = ( + 89FB6615D86B8876062594851B8C8BE0 /* NSThread+DDCategory.h */, + 65EA044CDADB831F1F5C150FB78ADDAC /* NSThread+DDCategory.m */, + ); + name = "NSThread+DDCategory"; + sourceTree = ""; + }; + 5D28998E0850DC687E57E9F3344D860D /* Support Files */ = { + isa = PBXGroup; + children = ( + 3BE50772FDEA4E29CD55B78332D6CE05 /* DDControlsKit_Private.modulemap */, + 22C59F709190982BA742B1CD33C97A05 /* DDControlsKit_Private-dummy.m */, + 62E0607F4ED2ACF0C3908138A30DF113 /* DDControlsKit_Private-prefix.pch */, + E13F5131442781696D57C3905C46D2FB /* DDControlsKit_Private-umbrella.h */, + 620DF70E8F0EAE8273F6EE3FBC6C4DDF /* DDControlsKit_Private.debug.xcconfig */, + 293FD0FF0091E79D0E773974C7E681FE /* DDControlsKit_Private.release.xcconfig */, + ); + name = "Support Files"; + path = "../Target Support Files/DDControlsKit_Private"; + sourceTree = ""; + }; + 618EB0C1B672D0DD6E1D7E3CBD625787 /* Support Files */ = { + isa = PBXGroup; + children = ( + 83863A2DA9D874351ADF1ED13496450E /* DDLogKit_Private.modulemap */, + 480E08B1471D7513F645869E5EE04A01 /* DDLogKit_Private-dummy.m */, + 603765F5BBCB54688AC856EB5304D1FD /* DDLogKit_Private-prefix.pch */, + 5190D62F9AD798C22F62ABB607E891FF /* DDLogKit_Private-umbrella.h */, + 4886FF587087342F26AE037DBFBF90D6 /* DDLogKit_Private.debug.xcconfig */, + B4905836302BC9C526F79E6E44A38E04 /* DDLogKit_Private.release.xcconfig */, ); name = "Support Files"; path = "../Target Support Files/DDLogKit_Private"; sourceTree = ""; }; - 655D5D27CE84B22EE20502827237ACC2 /* UIWindow+DDCategory */ = { + 621A5BA856E96EE5F0708D49F2E666FA /* Support Files */ = { isa = PBXGroup; children = ( - B92D6F52581635E93BB2AB789C2CA999 /* UIWindow+DDCategory.h */, - 00E2F6131CDB061C5435298E58700B93 /* UIWindow+DDCategory.m */, - ); - name = "UIWindow+DDCategory"; - sourceTree = ""; - }; - 66766ECC97DB0E5DC6BA7C823E607B5D /* DDZFPlayerKit_Private */ = { - isa = PBXGroup; - children = ( - 0E4CC3F5F714CB4BEB3175E5A9A5FDD8 /* ControlView */, - 2D3D1B9F415AFA1A1B2067D9ACA76406 /* Core */, - 4DFCC773AEBDE22AE3555E3A3188B186 /* ijkplayer */, - 4B63D9CF28C0396C5D7C5E08511D6E23 /* Support Files */, - ); - name = DDZFPlayerKit_Private; - path = DDZFPlayerKit_Private; - sourceTree = ""; - }; - 67C99EA245ABA4FEF9DFC0C1DEE4ABC3 /* DDBaseViewController */ = { - isa = PBXGroup; - children = ( - 793B9DAB46FDEF51BE4D924FE98B439F /* DDBaseViewController.h */, - BA528AC0B6488CAB64512C844C02A714 /* DDBaseViewController.m */, - F5F9CC9F050799219B249D35BBC25059 /* Resources */, - ); - name = DDBaseViewController; - sourceTree = ""; - }; - 68A24366551027331D1F6934E54374A1 /* Resources */ = { - isa = PBXGroup; - children = ( - B4381F174E39DA473A30D84DF61C953E /* BRAddressPickerView.bundle */, - ); - name = Resources; - sourceTree = ""; - }; - 6A6C0ABF8D41DECCE3652D90F08F3590 /* Resources */ = { - isa = PBXGroup; - children = ( - C558490FBF200E66F8DF356A94801423 /* ZFPlayer.bundle */, - ); - name = Resources; - sourceTree = ""; - }; - 6B136B3C21334B9039A6AB5DE2BE4DC1 /* Resources */ = { - isa = PBXGroup; - children = ( - B24C91E0D7463BA582DF585EB8A940CA /* BRPickerView.bundle */, - ); - name = Resources; - sourceTree = ""; - }; - 6BE29686EF62875504C9F4E4AFBEF429 /* Support Files */ = { - isa = PBXGroup; - children = ( - 87BE3F6E81C1864988DD53FFF43C165F /* DDAutoUIKit_Private.modulemap */, - 970727C41802159433A0DF92846E2339 /* DDAutoUIKit_Private-dummy.m */, - CDF84DDF6E0DF14CC99355C2346051DB /* DDAutoUIKit_Private-prefix.pch */, - 119866CBFF9545D367816FAFC89A011E /* DDAutoUIKit_Private-umbrella.h */, - C836AE79C271FF8A611D963CED342AC3 /* DDAutoUIKit_Private.debug.xcconfig */, - AFFA01A502D57FF43D56073BBFE28AEA /* DDAutoUIKit_Private.release.xcconfig */, + 8319A9F9913199A438A81DC43E4EAAC9 /* DDColorKit_Private.modulemap */, + 183F19FE6BC24CC2ED469200825BED13 /* DDColorKit_Private-dummy.m */, + 9A588422AA3D6886175B32D97F73FBBA /* DDColorKit_Private-prefix.pch */, + 2F91E187CB44F351CC91D0D87E3C0740 /* DDColorKit_Private-umbrella.h */, + B69AB0F60AF75225C9AFD77CE8013E81 /* DDColorKit_Private.debug.xcconfig */, + D6D31330E245C2EA5994F1BBCCFAFC48 /* DDColorKit_Private.release.xcconfig */, ); name = "Support Files"; - path = "../Target Support Files/DDAutoUIKit_Private"; + path = "../Target Support Files/DDColorKit_Private"; sourceTree = ""; }; - 6E9DD8433769FB6C8B42AEA0D1332787 /* NSAttributedString+DDCategory */ = { + 639CC5EE10163A27FA8472A7E7C72169 /* AMapLocation-NO-IDFA */ = { isa = PBXGroup; children = ( - F4BEE9CA917F512C3FD57D5F05203740 /* NSAttributedString+DDCategory.h */, - CDCCB2489D20842CA14BA1DDE321B383 /* NSAttributedString+DDCategory.m */, - DF2A5F07F9D3591EA63E3BB2244A8B02 /* NSMutableAttributedString+DDCategory.h */, - 08596742D2C9EFE3570472AFA36B4FFD /* NSMutableAttributedString+DDCategory.m */, - 0A934031A18FBE46D8BEE3E41360F917 /* NSMutableParagraphStyle+DDCategory.h */, - A9E5E970CEB2D6DBF1C61DAF85942140 /* NSMutableParagraphStyle+DDCategory.m */, + 5C8067C3A9CA1B58A1C05F5BE2FD8764 /* AMapGeoFenceError.h */, + FBCA6F1394E943709DDB5AF4ECF650BC /* AMapGeoFenceManager.h */, + 01EABEC40E7ADEFAACE0409D718D7E32 /* AMapGeoFenceRegionObj.h */, + 7697632DDA1A72A6E4285A93DC6E8279 /* AMapLocationCommonObj.h */, + 10F737BE4409B171817BA5FC711A6C2F /* AMapLocationKit.h */, + 6D973B23AD2F77BE582903B43F993E6F /* AMapLocationManager.h */, + 9A2754B7A457BFCA7B501BB71DA80A14 /* AMapLocationRegionObj.h */, + 95B7001D25AB0D8459F34326F7DAB62C /* AMapLocationVersion.h */, + 525F2E67AF7282623922F9592010270E /* Frameworks */, + 000858DEE790CF63FB98B1B608E62177 /* Support Files */, ); - name = "NSAttributedString+DDCategory"; + name = "AMapLocation-NO-IDFA"; + path = "AMapLocation-NO-IDFA"; sourceTree = ""; }; - 71F38AF69D3E6F845373B6D43C688D39 /* Support Files */ = { - isa = PBXGroup; - children = ( - 994EFC06B0CF379D861D96029A94FA5E /* Alamofire.modulemap */, - 5D874D2F7E6250D0B2C2D8AE550816FA /* Alamofire-dummy.m */, - DFEC3DF4FFA2328FE6B30866CA8718CE /* Alamofire-prefix.pch */, - 1EB887B086DA69700EB76D3F8C3508FF /* Alamofire-umbrella.h */, - 60B6CE2694E53F8E6797C72ADE380D11 /* Alamofire.debug.xcconfig */, - 69B43237B735ED3A8E3ACA8B1412DEB2 /* Alamofire.release.xcconfig */, - ); - name = "Support Files"; - path = "../Target Support Files/Alamofire"; - sourceTree = ""; - }; - 72418D871240B4FEC12AF3A24DA0E9AE /* AMapNavi-NO-IDFA */ = { - isa = PBXGroup; - children = ( - A29C805AD56D0E3AB40A2C6ADCB513C2 /* AMapNaviBaseManager.h */, - 90B201CD32900A5196C5CC821BAE976F /* AMapNaviCommonObj.h */, - 07D8FAA4C29A88551FD28B6EDDA1309F /* AMapNaviCompositeAnnotation.h */, - 5DB6A2CFE6C0E6EB69EE0720FC5A5AF5 /* AMapNaviCompositeManager.h */, - 683D27CFE368ED510F2396F00623E8DC /* AMapNaviCompositeUserConfig.h */, - 842EDA45B2DC66D58A5BD863067F83D1 /* AMapNaviDriveDataRepresentable.h */, - 0AD93B977F51C4B659AD059B2345CA81 /* AMapNaviDriveManager.h */, - CE31FC0C42357BEF53314688AF3334CC /* AMapNaviDriveView.h */, - E4EF0BDCEF6C1F722A57025431981B52 /* AMapNaviEleBikeDataRepresentable.h */, - 7046BC5E5B92943B6117CD14CD46BA0C /* AMapNaviEleBikeManager.h */, - ED42827CB10D9E5E24D224950556900C /* AMapNaviHeaderHandler.h */, - C55067F9480FD1DE443F2ABA626A7EEC /* AMapNaviHUDView.h */, - A7BFF40DB00CA9E320E12CDDAA35635A /* AMapNaviInfo.h */, - 02A2ABC42E8F87F54EDDD0F45B7312D1 /* AMapNaviKit.h */, - 2482D51429A6AA18BD132ED387BC22F8 /* AMapNaviLocation.h */, - 9F0E27B27F2BB3829F8511515CE366C3 /* AMapNaviManagerConfig.h */, - A3D3B00AD33CE3D3C6D598CC3CA2A60F /* AMapNaviRideDataRepresentable.h */, - 3B8E3277F4544184C9FA4A9D35B0A770 /* AMapNaviRideManager.h */, - FCA131DB60ABD7BB1A904B9EFD819E7F /* AMapNaviRideView.h */, - 17D3635E58D0C3FE790A7496560B9C82 /* AMapNaviRoute.h */, - 18C3DF1B3B55DC176A82B2B03CEE3585 /* AMapNaviStatisticsInfo.h */, - DCC90D8A95AD64D2D83B3AF547E47A72 /* AMapNaviTrafficBarView.h */, - D7072FEBDCC76F9A7ED08B384752F6B8 /* AMapNaviTravelManager.h */, - EC47BEB9970F9E8DB5335293EDF7A43E /* AMapNaviVersion.h */, - 883BC03BE872A43E24F877BB7F81FE0D /* AMapNaviWalkDataRepresentable.h */, - 01AC778BFDF33454FDFF86780353A739 /* AMapNaviWalkManager.h */, - 1A31FF1AD872A7671FFD03A52897818D /* AMapNaviWalkView.h */, - 6AA49E1AF964E3B4A2DDDD17CF2FD9E6 /* MAAnimatedAnnotation.h */, - 3E566CD10BA12164E2C083E42D3D7BD2 /* MAAnnotation.h */, - FBE77E323C369CD2819018FE1BD59114 /* MAAnnotationMoveAnimation.h */, - 01720A58EB7A0D1A5F7F25ADA63A036D /* MAAnnotationView.h */, - DF8523877E0B88FDBF40E3CCF36DA770 /* MAArc.h */, - 7FE5EFA3C3CB4B17ABE93CD11536FED2 /* MAArcRenderer.h */, - CF9126F8C5A0A9952759F53A8B451824 /* MABaseOverlay.h */, - E0C234B00E785632AAADCB6C6E6762D4 /* MACircle.h */, - 1C188CE8BBFF9B59E0ADE973AB029B7B /* MACircleRenderer.h */, - 83FA7C3958C144A1AAE04228B0266B04 /* MAConfig.h */, - 4EBAB4163FE7E36D885D35A4DA784134 /* MACustomBuildingOverlay.h */, - F8B359212F7742A96122EF282B41C1DD /* MACustomBuildingOverlayRenderer.h */, - E9971FC5F96C866D35207AE868BE96FF /* MACustomCalloutView.h */, - C6FC10132705666042AAA7B049284A18 /* MAGeodesicPolyline.h */, - C4F532C7D9F3B33F29B4CF59D4A979AA /* MAGeometry.h */, - ACEFD17CE16F673A2306C28DCBC9F51C /* MAGltfOverlay.h */, - 059A80436EF27CC314F480E6F34C79F8 /* MAGltfOverlayRenderer.h */, - DC8FF206EA4311BFE11672972EE2C128 /* MAGroundOverlay.h */, - DFB956D0E3DED5D81F10E5FEC9277167 /* MAGroundOverlayRenderer.h */, - 07304F1095246D445B5B4965B05D1035 /* MAHeatMapTileOverlay.h */, - 37EFE03620047408579717760F6BC698 /* MAHeatMapVectorGridOverlay.h */, - BD9482CD5D16347FA53F4272B6D93EE4 /* MAHeatMapVectorGridOverlayRenderer.h */, - 302226A01B6263411313C2D564EFF41C /* MAHeatMapVectorOverlay.h */, - C71301F2FBFAA7F7BD2FEC4EEE324B3B /* MAHeatMapVectorOverlayRender.h */, - 4960A10C861983DB32647869F1B53A2C /* MAIndoorInfo.h */, - 7BED3AB828B121FECF48E7B0FAA11C0C /* MALineDrawType.h */, - A583EAE95E238B27742287290985301B /* MAMapAccessibilityIdentifier.h */, - 3F2BDD5C39CB5A09F21A2FAC832BC153 /* MAMapCustomStyleOptions.h */, - 117EB6AB3D790D1FE68FF6DE8A43B874 /* MAMapKit.h */, - 9B544BE9BCD1F2C9079B8E84ECC94BD6 /* MAMapStatus.h */, - 662161F381FDD0B7858116F8F7202AA8 /* MAMapVersion.h */, - 0A8D4ADC6BE9DF4D1F930869030FB61F /* MAMapView.h */, - 687BFD9C5F4A5A8298FD943E8F3C372F /* MAMultiColoredPolylineRenderer.h */, - 767D65967245EB4123B0E51D3957655A /* MAMultiPoint.h */, - 82B883451D2E374740631AD5CFB8D812 /* MAMultiPointOverlay.h */, - 0C05507F4B4DE8D9136A00EF2FC01852 /* MAMultiPointOverlayRenderer.h */, - 62F28C8CCD6192E45FB9ADB14CA6C11E /* MAMultiPolyline.h */, - 61CCF3F459725E6C6C51AD0CE56ED9D8 /* MAMultiTexturePolylineRenderer.h */, - E9F427E6A51AF7C6871A89EC9AC52F23 /* MAMVTTileOverlay.h */, - A30A94A47A61D14BC24541F2C2573B47 /* MAMVTTileOverlayRenderer.h */, - AF8D59BB57212F679C7CA8024B675491 /* MAOfflineCity.h */, - 0E27EC55E2F2818F18B8062092AFE646 /* MAOfflineItem.h */, - 0A7F08B451ABE1DF1B4AEFF2833D823B /* MAOfflineItemCommonCity.h */, - 40C09C4462AD06D3413B223AFC395050 /* MAOfflineItemMunicipality.h */, - FE11C85B43F8F9E7C4DC6CE0AFE0FD9A /* MAOfflineItemNationWide.h */, - EC5D39A89CF21BEF67F78DF0982CA86B /* MAOfflineMap.h */, - 2433420D40401659C04DC442AED3DF70 /* MAOfflineMapViewController.h */, - E1C0FDF2AC90EDC6DC4A07BC5CE01BD1 /* MAOfflineProvince.h */, - 908D861A99D5C6DB7F6921C1E7233DEC /* MAOverlay.h */, - 88ABD61580865BB3DCF7C713FEB7FB1E /* MAOverlayPathRenderer.h */, - 4D1DD18129B705AC29BB8BE53B8BE0C0 /* MAOverlayRenderer.h */, - 8FB4325A0163B3674632C142FA21179C /* MAParticleOverlay.h */, - 15A1BFE9BF2F524F05AEB838F0CB9845 /* MAParticleOverlayOptions.h */, - 6414888C851674B16DC70905228A2BCF /* MAParticleOverlayRenderer.h */, - 8244624E8B8B1A09717384AB342A9827 /* MAPathShowRange.h */, - C89935AF9F9A4F2CF410780019878F10 /* MAPinAnnotationView.h */, - D30C1D5210212947274BE64F082D4C03 /* MAPointAnnotation.h */, - CBE681FA5A2B38BB65C21A1349065E2F /* MAPolygon.h */, - AF1EC1F4483B4F2716BA187436393593 /* MAPolygonRenderer.h */, - 91A1819581575DAAEED8B71584837966 /* MAPolyline.h */, - 27CE2D74D2D69430E8751911AE4D82F7 /* MAPolylineRenderer.h */, - DE60C69423BFFE3746AAA13660AD63B2 /* MAShape.h */, - 4A223FD6056B4E3C108ECE8CC2A8BD58 /* MATileOverlay.h */, - 7CB7448C5E58D7903F11DFAB8DA43A6F /* MATileOverlayRenderer.h */, - C7FC6155EC0C84CA034129270DE44C3D /* MATouchPoi.h */, - 0C5F01E98675A66BBCD33CD9EA69D391 /* MATraceLocation.h */, - 8E2AFEA4704593AF3F1EA2FE96F08FB0 /* MATraceManager.h */, - A4FD22CDED79F58FD4CCE359D274A358 /* MAUserLocation.h */, - F9925D323B239320300319A3555EF72E /* MAUserLocationRepresentation.h */, - F3E2DD93D3DD40572D715A4643DE7D0A /* Frameworks */, - 5404B4548EC8D2375B038E0AA9E7FC05 /* Resources */, - EAA7701F6AC3AFD63E378207373038A8 /* Support Files */, - ); - name = "AMapNavi-NO-IDFA"; - path = "AMapNavi-NO-IDFA"; - sourceTree = ""; - }; - 735828153A1A36DAAF59D3699CF51F80 /* DDMASearch */ = { - isa = PBXGroup; - children = ( - 6C0B721497D7310B07F6514B0991B2E1 /* DDMASearch.h */, - F745DB220764ED676F6C089EA3C68C6D /* DDMASearch.m */, - ); - name = DDMASearch; - sourceTree = ""; - }; - 76DF999B5505639B4FBEF1133D8B6160 /* DDProgressHUDKit_Private */ = { - isa = PBXGroup; - children = ( - 5F231098334C46918CFB9387A38BA087 /* DDProgressHUD.swift */, - 4A2C564CFD70E9AF41EE23BAF8766785 /* MBProgressHUD.h */, - B617F95E4B57E8FA3C4B8BAF47A72D2D /* MBProgressHUD.m */, - DEB7FFE04D69980F44E822028DADEFE4 /* Support Files */, - ); - name = DDProgressHUDKit_Private; - path = DDProgressHUDKit_Private; - sourceTree = ""; - }; - 771ACBD60F63D4BBDFAA755D8D7574FC /* DDTableViewCell */ = { - isa = PBXGroup; - children = ( - ); - name = DDTableViewCell; - sourceTree = ""; - }; - 7725A7C3364D13565A7D935C1BCFBB63 /* Resources */ = { - isa = PBXGroup; - children = ( - 149DCB7224A89272AAA1335B59217389 /* _icon_file_type_app@2x.png */, - 389F6FB8BEF93C8194F3EC86C7811997 /* _icon_file_type_bugs@2x.png */, - 9C6F219384345786220ED7CCBFC92E1A /* _icon_file_type_close@2x.png */, - 0FD8B81E261517A8360009CFACF049BD /* _icon_file_type_down@2x.png */, - 001143BB9FF68431DED58D40B6A87AEE /* _icon_file_type_logs@2x.png */, - 96223C5BD35B836238430B61FA12F877 /* _icon_file_type_mail@2x.png */, - 687D6953AB96C28E71ACA9484F55BE73 /* _icon_file_type_network@2x.png */, - 0FD7E1DECC133219E3E0E77353189E14 /* _icon_file_type_sandbox@2x.png */, - 7DBD353B7B8B2FB032BA01171D5829F7 /* _icon_file_type_up@2x.png */, - B70DF59959D507CC6361A626164BD10E /* App.storyboard */, - 7F61FC74E1D0203FD78ECEEB2D0C6C81 /* icon_file_type_7z.png */, - 423BC0465C2B631D8932DB52A9562B37 /* icon_file_type_7z@2x.png */, - 8E5682946F05F1E1AA3FC28F0E83DF7D /* icon_file_type_7z@3x.png */, - B1EAD7E29559CAA9D8ED7801C93D76D6 /* icon_file_type_aac.png */, - AB340FBF16E950BB63961E93B19A69B3 /* icon_file_type_aac@2x.png */, - 36AA618314DFD2989EEE128388502F23 /* icon_file_type_aac@3x.png */, - E2FD867CC0D390E06BAC46D9D2BF4CC6 /* icon_file_type_apk.png */, - EC6B5395A5037A36C8381D3744FF1BE4 /* icon_file_type_apk@2x.png */, - E3FB5880B059CCF77963964B81E2DDBD /* icon_file_type_apk@3x.png */, - 4D964D092D9934A3C9EF24220B7EB12E /* icon_file_type_avi.png */, - 02A680CED0D85E57AE44345FC9A4BAA0 /* icon_file_type_avi@2x.png */, - 0504C41C6802010760AC8D9EE4501728 /* icon_file_type_avi@3x.png */, - D99869B6C6D3FF3103511E4F5A768364 /* icon_file_type_bin.png */, - 9116DE8615AC947C48EF84D84A4F5FBD /* icon_file_type_bin@2x.png */, - E20EB882B39B434AA5AD95235E478D1A /* icon_file_type_bin@3x.png */, - B3400BE74DC94E3466657411D605AD3B /* icon_file_type_bmp.png */, - 14A2AAA074C2501C98422C01DA8985F9 /* icon_file_type_bmp@2x.png */, - A291BD343E0D74163B1418D7CE0AAE1F /* icon_file_type_bmp@3x.png */, - C10879D88FB557DAFAFEA28229EA4FDD /* icon_file_type_css.png */, - 1428D08C0C597BC7DD8EA9E1D3224DB0 /* icon_file_type_css@2x.png */, - EBE552A74545A974F8F667F91BCC2914 /* icon_file_type_css@3x.png */, - 893CA7473C1BB643C054F85ABAD0AAC2 /* icon_file_type_dat.png */, - 630B3E349BA6A831CAD126A79C2422CA /* icon_file_type_dat@2x.png */, - ED33B94659F109D3FF4009EB2B3D6BB2 /* icon_file_type_dat@3x.png */, - F878E1E3B523CE5B214FC19730BCA66D /* icon_file_type_db.png */, - 89F8B4B4FD117C4C1DF276A3A711487D /* icon_file_type_db@2x.png */, - D94A4EDE613329DDE8FB931F3755C158 /* icon_file_type_db@3x.png */, - 780FFC285E820BBA75243BE206C3D447 /* icon_file_type_default.png */, - B84EA79558AF15630CEDB8E5B079700A /* icon_file_type_default@2x.png */, - 739AA125C98CA71591D06CCB7DA6C20A /* icon_file_type_default@3x.png */, - 64C4CC301C54817A543106D9E7E38255 /* icon_file_type_dll.png */, - 7400908D7794557DA4F2313544E89D6B /* icon_file_type_dll@2x.png */, - 70C9B7F7A4F29616CAB87E465F57B1D1 /* icon_file_type_dll@3x.png */, - A848F876F1E99E91751E589435BD4F72 /* icon_file_type_dmg.png */, - C71E072EE62ACF8473FACFD69F3876FC /* icon_file_type_dmg@2x.png */, - 2FF4E2C66F779B0E96396FB9B9C8EF00 /* icon_file_type_dmg@3x.png */, - 12C655966552631E56C745DD822B6261 /* icon_file_type_doc.png */, - 839F03397FA6ED1D6AD7BB7F65A2DBFB /* icon_file_type_doc@2x.png */, - 9C0D6470F170BAD677B8910077C8DA64 /* icon_file_type_doc@3x.png */, - DD01BAA8B1AA1AF8B6579BFB9056C767 /* icon_file_type_eps.png */, - 869EEDA230DA9BAAF862DB58E5A4E3DB /* icon_file_type_eps@2x.png */, - 7248734332400269820139B283A66D50 /* icon_file_type_eps@3x.png */, - 5ED57D7F44AEDA6A64FEACE2F42A7F04 /* icon_file_type_fla.png */, - 6411D3F73CC79F9775E61CA70956B765 /* icon_file_type_fla@2x.png */, - 54681C1377150D635C97A1CB11149C32 /* icon_file_type_fla@3x.png */, - 57925F2B63F5AE18E18F1F6DC2152136 /* icon_file_type_flv.png */, - F39CCB97109403AD6FE25D078F23BEA2 /* icon_file_type_flv@2x.png */, - C64E371EFAF8914F927A8CA6679ED04B /* icon_file_type_flv@3x.png */, - 5D5EB42BAE0E8A84D5E47BC269253B02 /* icon_file_type_folder_empty.png */, - 8BBAA6F079405191560FF809B6696D02 /* icon_file_type_folder_empty@2x.png */, - B239C0BEEED334FD0EBF2878B304A384 /* icon_file_type_folder_empty@3x.png */, - 0BA799688BE36529CCF0E4815C1BB380 /* icon_file_type_folder_not_empty.png */, - 7A9830F8ECA67C5FF722B9335DBECB95 /* icon_file_type_folder_not_empty@2x.png */, - F900297CE61C286C2621290270EEEC65 /* icon_file_type_folder_not_empty@3x.png */, - A7AC3446A7CBF8A2FCA7AE556A2F1F33 /* icon_file_type_gif.png */, - DF4462704D7F5E1ED52BA80B51705E1E /* icon_file_type_gif@2x.png */, - 9EB776F2031BF9B2A5B43B1E1423011E /* icon_file_type_gif@3x.png */, - 0995464F359596273EAF66184AFAFE77 /* icon_file_type_html.png */, - 248532EFDA8BD7E606255DD0781B713E /* icon_file_type_html@2x.png */, - 3EB80A356C808AF851A61CAF9C0E3B86 /* icon_file_type_html@3x.png */, - FB49483313A53F7E378207A5FA849CBE /* icon_file_type_ipa.png */, - 645BF1E9598E432F3D58B7615EC9090D /* icon_file_type_ipa@2x.png */, - B2C23A2A3322F1C90E9840F46D83E2F2 /* icon_file_type_ipa@3x.png */, - B2D49185866DCDC4539E55765CE43976 /* icon_file_type_jar.png */, - 3EFE957E7A2E8E5738D9F0705790326B /* icon_file_type_jar@2x.png */, - B490214B5352D005A662211316EFC91E /* icon_file_type_jar@3x.png */, - FF7D6F63C98CE7171D8C3AC6A22CF3C4 /* icon_file_type_java.png */, - 79B54B9380FA546B2D2B8720BC22F0F2 /* icon_file_type_java@2x.png */, - CE51B7A81EC396153A9E6CCCE51B8112 /* icon_file_type_java@3x.png */, - D58EE7B1E242065257F357658D0CE30B /* icon_file_type_jpg.png */, - C2E12CBE287DB6772103BC360F210316 /* icon_file_type_jpg@2x.png */, - 65525FC5CD1A38F3372691EAF4F3EB61 /* icon_file_type_jpg@3x.png */, - 11104132272D9789C48DA046A719F95F /* icon_file_type_js.png */, - 341D4A9129D1C36C9E998C782C5121E8 /* icon_file_type_js@2x.png */, - 749E912093EA812260435AFBC5C9D5D0 /* icon_file_type_js@3x.png */, - D64419EB20729836BCED70D5915BC9B7 /* icon_file_type_json.png */, - 768923FDFFF9B8B8AA3C7282C8D0DE4F /* icon_file_type_json@2x.png */, - 8A9CECC061BD949A48EE81754B20CBA2 /* icon_file_type_json@3x.png */, - 1E7885C9136480B6508AA787CFF96E41 /* icon_file_type_keynote.png */, - 6451DC4BC4710F5C6BBCE3425E4763F8 /* icon_file_type_keynote@2x.png */, - 80473E7955515BA5BDBC57C06A5120AE /* icon_file_type_keynote@3x.png */, - 312DAEEB8FA6B38AD971360E60804BF3 /* icon_file_type_md.png */, - 6A90F3F76C93340B29752CC78DDCEA85 /* icon_file_type_md@2x.png */, - 57B1F84FE797300587CD369F329176C8 /* icon_file_type_md@3x.png */, - BBCC257339930C483192C16A0D488677 /* icon_file_type_midi.png */, - 124B0B3769072EF8741B89E4A289194C /* icon_file_type_midi@2x.png */, - 8D61DF60A2929DEDD7EA9346B52329E3 /* icon_file_type_midi@3x.png */, - D28397021CF7BFA4F6801BD61C3EFE6B /* icon_file_type_mov.png */, - C3BA7A5F1F25DC86FD382F1CBFEA1D17 /* icon_file_type_mov@2x.png */, - A8D86D0CE6637D88BEB19204DC303C74 /* icon_file_type_mov@3x.png */, - D67100E3E94492324FE15867927F7BC8 /* icon_file_type_mp3.png */, - 7511420CEBF28A0E09CE32E5D751AFC3 /* icon_file_type_mp3@2x.png */, - 0DE2E6AF595B4C5D42825002C239A6A6 /* icon_file_type_mp3@3x.png */, - 5CD8C745C75B35B589F2D20E3F4BC594 /* icon_file_type_mp4.png */, - 5F24B25DD6862014EF506C8FC126CB21 /* icon_file_type_mp4@2x.png */, - EBD5A4563EB2083AEC9C94CEB12DF4B7 /* icon_file_type_mp4@3x.png */, - CE57F52C089BD04D71387FD1DE07D08B /* icon_file_type_mpg.png */, - AA16A8DB14B3534A0EA8B96E2D47BA90 /* icon_file_type_mpg@2x.png */, - A81578ADCCEC88B9148698480D09E747 /* icon_file_type_mpg@3x.png */, - CA97AE078E3059B58EF632EECCB4743A /* icon_file_type_numbers.png */, - 71D5C1E3734DD75BA4C5AC09B3915725 /* icon_file_type_numbers@2x.png */, - C3C9EA112DE0ACB92EB90C8BE16194C0 /* icon_file_type_numbers@3x.png */, - 42931D8F8201E44042E50F795B310228 /* icon_file_type_ogg.png */, - 62F6998CC03AD2DACD04CF6CB3826670 /* icon_file_type_ogg@2x.png */, - 004752F62459A8375D31700FD5E95B5E /* icon_file_type_ogg@3x.png */, - 5E28E9828E2BC2C6FC51C61A03AC7DF6 /* icon_file_type_pages.png */, - 48128041CAE7AFCD1F1AC68237A95C81 /* icon_file_type_pages@2x.png */, - 844FE5D4429E0A9C39ED2ECDC3DB3481 /* icon_file_type_pages@3x.png */, - A709A4F91B4007360175953EB79EE5D4 /* icon_file_type_pdf.png */, - 67975058C7CA48E7F8A4C20A03C763A8 /* icon_file_type_pdf@2x.png */, - FE329BA7061A3819503E9331738D50D1 /* icon_file_type_pdf@3x.png */, - 4A525545FCB05FE80787B4F045E3C4FD /* icon_file_type_php.png */, - B0EE285BF5505D90B0977CA02F8A0226 /* icon_file_type_php@2x.png */, - A0F685A431BC840DFBDA7DD0D5CB8488 /* icon_file_type_php@3x.png */, - 52EAB2C06F8FB4C4C87A2EF3FC36CE12 /* icon_file_type_plist.png */, - 2E34106E13D2A4F08D288D3FB093CC0C /* icon_file_type_plist@2x.png */, - 53245AAD4CA0C92C1EDAA332C452CE0B /* icon_file_type_plist@3x.png */, - 4E2B175D82451E8F04586C08BFACAB29 /* icon_file_type_png.png */, - 563A92EAA63C8548C2D1ADF8829C96D4 /* icon_file_type_png@2x.png */, - EAB56ABE0EBBE4A3593C2FBEDC53816A /* icon_file_type_png@3x.png */, - 7DA850BEFE03C42288AF2008FCDA8406 /* icon_file_type_ppt.png */, - 9DC74262CA15079A9A756C6AEA96C09D /* icon_file_type_ppt@2x.png */, - 5A878A9A118524DBD2B9539BB1936D36 /* icon_file_type_ppt@3x.png */, - 2A968CA368F745E231382B2336184E5E /* icon_file_type_psd.png */, - 80EEE623909E3CA7A5CFC8C7E9B43D1B /* icon_file_type_psd@2x.png */, - D9F161BE6DF5CE4F410F92CC7C5D83C7 /* icon_file_type_psd@3x.png */, - 8F7533C7C031A477DABAF005C7EE38D6 /* icon_file_type_sql.png */, - 2EDE4DBA223269FB2619AD1B3A4DD207 /* icon_file_type_sql@2x.png */, - BBA5A763C839D3CF5892FCB96AB65FC0 /* icon_file_type_sql@3x.png */, - CB040D9719971B3F8E92698A165E4739 /* icon_file_type_svg.png */, - B24EEBDE52C15662D3E29265EEBF76DA /* icon_file_type_svg@2x.png */, - F7B1858BC8CA7919CEF757BC20BB5638 /* icon_file_type_svg@3x.png */, - 8F4271AB101034A2BF781CE74AC848D1 /* icon_file_type_swift.png */, - 902EDE71A851BCBEE64734ED045FAB5D /* icon_file_type_swift@2x.png */, - EAD4E46517C96750A5EE40315ED03CA5 /* icon_file_type_swift@3x.png */, - 96A101529AC11E7891A4D178FA074368 /* icon_file_type_tif.png */, - 22C0A3EE610B9B93F60C30AEB4D6461A /* icon_file_type_tif@2x.png */, - 40AB377923A0D30EFF6126487382DEFD /* icon_file_type_tif@3x.png */, - B622783303B6569C79FAC814D57479BC /* icon_file_type_torrent.png */, - D4E1F50BBACE32F265EF192F607D27D1 /* icon_file_type_torrent@2x.png */, - 9CC21B89CBC0BF7D23B54A9B4BAAD631 /* icon_file_type_torrent@3x.png */, - 0CA3286CD6CC9F22A75FEE76FFC60AA4 /* icon_file_type_ttf.png */, - 9E7DB92403457DD0A9C524D551CE134B /* icon_file_type_ttf@2x.png */, - FD4C07F899307DCB06A83714ADA91797 /* icon_file_type_ttf@3x.png */, - F3E91C6BD65095AEEFDC4E03B9BFD430 /* icon_file_type_txt.png */, - 249D7206AD3BB1FA33705A88696CD5E4 /* icon_file_type_txt@2x.png */, - B9D7F8F17D79A7DAE8C3085002C4F8FD /* icon_file_type_txt@3x.png */, - 19BA8A0F0D756912877875020D2AC9D6 /* icon_file_type_wav.png */, - F983E4264F6B199985EFA0AB6B4218E5 /* icon_file_type_wav@2x.png */, - 9CD1EB8FB6B4B6BA0F6AD47957A6C644 /* icon_file_type_wav@3x.png */, - A101575BE7A6EB69AE9971478DDD6589 /* icon_file_type_wmv.png */, - 9DFC7A72EAC0F784EF5287273525222E /* icon_file_type_wmv@2x.png */, - C924AEE2E18E675B544FFD8FD96AFE5D /* icon_file_type_wmv@3x.png */, - 17603AA3430C09065AE7873D5C0D250C /* icon_file_type_xls.png */, - 7570B94E4068932893DE062B76777967 /* icon_file_type_xls@2x.png */, - 0E73D12AF416E50DB9F0751FBD0A6E69 /* icon_file_type_xls@3x.png */, - E9B43DC7E220324032703CE9DE7FF71B /* icon_file_type_xml.png */, - 0E92D25215E0E8C902628D8DF61C9138 /* icon_file_type_xml@2x.png */, - 753BC638558107129B793AD7522A2283 /* icon_file_type_xml@3x.png */, - CFADC98B66F131932D5965DA7AB7DBB6 /* icon_file_type_zip.png */, - CCC48943C44A979165C5F035F2833057 /* icon_file_type_zip@2x.png */, - C42D54E5DB9B41BE9813981A288C077C /* icon_file_type_zip@3x.png */, - 1A5CEA612839E4189C0EFD9AC0F863E0 /* Logs.storyboard */, - 8A1E3B52CF515E0CF92245B802E0355E /* Manager.storyboard */, - A516F8B7F11D25FD040B906D1BF90A03 /* Network.storyboard */, - AE367F4AD2ACAD5F105CB114EDFC1257 /* NetworkCell.xib */, - ); - name = Resources; - sourceTree = ""; - }; - 780E5770D266E09E2536DAFF2C6FFB0C /* NSURL+DDCategory */ = { - isa = PBXGroup; - children = ( - A69E005359A9F972A36DAB2BC5E9E3D0 /* NSURL+DDCategory.h */, - 9604B615840630CBADC2C11BE75E46E1 /* NSURL+DDCategory.m */, - ); - name = "NSURL+DDCategory"; - sourceTree = ""; - }; - 7832BFFCCE751C4D1DB94AC4B658A931 /* DDView */ = { - isa = PBXGroup; - children = ( - ); - name = DDView; - sourceTree = ""; - }; - 78B160FF112AD6679F2B97FC67A70FB3 /* Support Files */ = { - isa = PBXGroup; - children = ( - 674D266D176B13FE58908CCC7525D4CC /* AMapSearch-NO-IDFA.debug.xcconfig */, - D576FE8F38A32946A041DDF582D3239F /* AMapSearch-NO-IDFA.release.xcconfig */, - ); - name = "Support Files"; - path = "../Target Support Files/AMapSearch-NO-IDFA"; - sourceTree = ""; - }; - 7ABD3EBA7EA935D8E0F67B8668D2490F /* Resources */ = { - isa = PBXGroup; - children = ( - CAD08D2AFBD1E664FE38D4FFF3DE416A /* MJRefresh.bundle */, - ); - name = Resources; - sourceTree = ""; - }; - 7BC09037100744448B3E6294D1DA2C44 /* DDBaseTableViewCell */ = { - isa = PBXGroup; - children = ( - F6E71155513FAFDC9B7A7F964F7610DC /* DDBaseTableViewCell.h */, - D2A47455674C5068617927590349D83A /* DDBaseTableViewCell.m */, - ); - name = DDBaseTableViewCell; - sourceTree = ""; - }; - 7CD454999372C87913D97D90D2218EDD /* DDScrollView */ = { - isa = PBXGroup; - children = ( - ); - name = DDScrollView; - sourceTree = ""; - }; - 810BE8BF7322C27A4A9CC5642752C939 /* DDBaseSwitch */ = { - isa = PBXGroup; - children = ( - 3EEDB1B52EB75A1EA09D8FCC7F35E65A /* DDBaseSwitch.h */, - 34ED5BABFE6115D026F43572B7B34BE2 /* DDBaseSwitch.m */, - ); - name = DDBaseSwitch; - sourceTree = ""; - }; - 8113918C20D9A8F35606193E6066AA32 /* Frameworks */ = { - isa = PBXGroup; - children = ( - 011269E75D722A125DEEAAF745CBC084 /* IJKMediaFramework.framework */, - ); - name = Frameworks; - sourceTree = ""; - }; - 853301A1205C578345BBFFA4A73924FF /* Support Files */ = { - isa = PBXGroup; - children = ( - 0A3E54C5376402A23D3AA0D41F2D97A7 /* Kingfisher.modulemap */, - 73D6DB767B7896D077EB271A411FE093 /* Kingfisher-dummy.m */, - C00B945B6DE368146504758E84738F01 /* Kingfisher-prefix.pch */, - C612C688B0EB06D233DFA69CE6E24BD3 /* Kingfisher-umbrella.h */, - B27102A45E02D9AB5CC736B94D45141B /* Kingfisher.debug.xcconfig */, - F112A9A2F1385737EFFEE3D6417031D4 /* Kingfisher.release.xcconfig */, - ); - name = "Support Files"; - path = "../Target Support Files/Kingfisher"; - sourceTree = ""; - }; - 891A6411A978773718ED3F5EFED01BAA /* Products */ = { + 63FE9F32703B49B39F824D28EF07ADA7 /* Products */ = { isa = PBXGroup; children = ( 5D797E9A5C5782CE845840781FA1CC81 /* Alamofire */, 5BA6046B4C2674409C0D5625F45F8769 /* BRPickerView */, CA4C3A23CF67AF861CBCBF4F978F7146 /* CocoaDebug */, + 09B4C59FAB38D6054E5993BD78205023 /* DDAudioPlayerKit_Private */, 16ADD43AE08E88D6F7A3498152249608 /* DDAutoUIKit_Private */, 42F10DB6CED6AC3E9AA446F86C16A0F5 /* DDBasicControlsKit_Private */, 71067D1F0754E977C6E009846B257042 /* DDBasicControlsKit_Private-DDBaseViewController */, @@ -5504,993 +5189,1409 @@ name = Products; sourceTree = ""; }; - 8B7AB434E3761816BADEDE578D823E18 /* Support Files */ = { + 647EB8757FE7B114072C08A8F77A749D /* Support Files */ = { isa = PBXGroup; children = ( - 86DFB0BDEC126AA0E9BC4C01FE501C98 /* JPush-xcframeworks.sh */, - 5249DC3F05251C5C3821291058A36CE3 /* JPush.debug.xcconfig */, - BC51BD205157C988A8D41336670B09F7 /* JPush.release.xcconfig */, + BC632D59BD68D7BD58F3764B61DEC6F8 /* AMapNavi-NO-IDFA.debug.xcconfig */, + 8D9BA6A30CA49498A02A6B234BE553FB /* AMapNavi-NO-IDFA.release.xcconfig */, ); name = "Support Files"; - path = "../Target Support Files/JPush"; + path = "../Target Support Files/AMapNavi-NO-IDFA"; sourceTree = ""; }; - 90EF8E88C866BDB789CBD79846F23440 /* DDTableView */ = { + 64C5D5941FF6A3AECEECF6C92267A6C2 /* Kingfisher */ = { + isa = PBXGroup; + children = ( + 32C94E2EE6DAE9656DA7E84EEBAF76FB /* AnimatedImageView.swift */, + 5CCE1A2DAB9BC43CDA36FD17B1BF2246 /* AuthenticationChallengeResponsable.swift */, + AED3CD08A920E0938205A4FDC9065D4A /* AVAssetImageDataProvider.swift */, + 721B12CB3201E0F78C427155AEB6FCE4 /* Box.swift */, + 8783AE3240C6DE6774892D61310683A5 /* CacheSerializer.swift */, + D0141DBF0FBAD76F5E97577F9C9C225A /* CallbackQueue.swift */, + 382536E4FBED5F4B7E3B9D17CD88A496 /* CPListItem+Kingfisher.swift */, + C9BB2C3D03311AC04DF6996594CB6CA5 /* Delegate.swift */, + EACACE5CE07FEFDFA1542DC55ED52120 /* DiskStorage.swift */, + AE9A920F8FA6AF9DD504682927FEB351 /* ExtensionHelpers.swift */, + E10C81639BD9F91018F21C1643FF284C /* Filter.swift */, + 3CF4B2CE79B8D63463E0D5C2F77DA555 /* FormatIndicatedCacheSerializer.swift */, + 5F8864F6B1A531E057B48900668D9B4A /* GIFAnimatedImage.swift */, + 86AD855B0C36FCB9F072A2FB4367CCFC /* GraphicsContext.swift */, + 89270D4B442BBBECE504EA61AD6DA8A8 /* Image.swift */, + 3BE4E278928BD2D719E101590D860A8C /* ImageBinder.swift */, + C0C45BF3AC5CEEEEC36DAD5FB3A774D8 /* ImageCache.swift */, + 11F953B24AA6DB8375291160CD7850E6 /* ImageContext.swift */, + 9FF05B609FF47FA0271362F923DB98E0 /* ImageDataProcessor.swift */, + 4D86BABF33B863F030194B8A52CA328E /* ImageDataProvider.swift */, + D64A3DA85615ED1A56221AB6F36FA565 /* ImageDownloader.swift */, + E17CCF9F8700A375410EFBE6C557607F /* ImageDownloaderDelegate.swift */, + 72AF32E7E82947FD9AC91381D2F2E4CF /* ImageDrawing.swift */, + 307E5CB92817A8ED6BA1C343E10F7710 /* ImageFormat.swift */, + F4419A307FB65143ABA119AAD2502FCC /* ImageModifier.swift */, + AB678DF70BF35D7970C6C6DE1ABE3134 /* ImagePrefetcher.swift */, + 290717E907B1D25158CDF40E3C8C1BAD /* ImageProcessor.swift */, + D50645F7D4025B09F2BF43C445A05769 /* ImageProgressive.swift */, + 50713D33276FF07B5AA39180B92880B5 /* ImageTransition.swift */, + E89061AFD9AB16D5A0B173E69D0B7C85 /* ImageView+Kingfisher.swift */, + 06E15E659FF795DCB0FCBAC7CAB699C2 /* Indicator.swift */, + 8AE3E65E083A29E28F5463D0D92505E8 /* KF.swift */, + B562626692B35F70399778BEB06D65C8 /* KFAnimatedImage.swift */, + 1B3FD4396289458395DECE58AE7AB3BD /* KFImage.swift */, + B7F4B83026BA98C76D867A2938DA8F20 /* KFImageOptions.swift */, + 29B77B2A50E70A2207E2F082CBFCA2D2 /* KFImageProtocol.swift */, + 10ABC888679086A04C0DC40C758FA4E7 /* KFImageRenderer.swift */, + 21EAA4200B1BC577C63DDD2A0956529C /* KFOptionsSetter.swift */, + 220EFE05869DC5FC82720927226B6108 /* Kingfisher.swift */, + F90E6718FAE366DEF1E748A03B130BDC /* KingfisherError.swift */, + AD877BC374814EF28FC6FFD0ABA87357 /* KingfisherManager.swift */, + 316AAE1BE99812898FF20FC3A059CAF4 /* KingfisherOptionsInfo.swift */, + DBAD8CF2025EAC546A2B1BDB5F16CBF0 /* MemoryStorage.swift */, + C8C6A0E9075C77E2E92DCC7687A50D51 /* NSButton+Kingfisher.swift */, + 5F332EFA980D0829D45D2525EA6AF3A2 /* NSTextAttachment+Kingfisher.swift */, + 732C5317E0DE96EB6E47A83C775DBE0E /* Placeholder.swift */, + E185B9582FCE815829514B83FF9D6775 /* RedirectHandler.swift */, + E5FE5029088C339D8B35E78E952AB10E /* RequestModifier.swift */, + 8D35C0A2334F45D74CDE5ABD5D737C45 /* Resource.swift */, + 9651F162647738D9F4645980D82752BB /* Result.swift */, + E4DA8D91FB87D406E77171D65F72C57C /* RetryStrategy.swift */, + 5D0C20AC4A893B15D09BD0341E8D24D0 /* Runtime.swift */, + 8890E0B2494937CE51C86945F3F6F962 /* SessionDataTask.swift */, + 417D3BF7F2E418BC583D4E6DD0E0E1CF /* SessionDelegate.swift */, + C58C9A8503709EA3F93779D5DF5573DD /* SizeExtensions.swift */, + A26C5BC7A7F4B251BA5907775BA16F7D /* Source.swift */, + F7EE83E18843E28A79B66B9A09F77712 /* Storage.swift */, + FC53804DBE8F7C5939CB30564D7867F5 /* String+MD5.swift */, + 418F2B1CFFB6A339DEA2A7DE9192A0F8 /* TVMonogramView+Kingfisher.swift */, + C159872F26F93E552B656DEA5F53EE51 /* UIButton+Kingfisher.swift */, + 8F41F2BA648EA3813EAC2F4F6A55891D /* WKInterfaceImage+Kingfisher.swift */, + 2303B3A9061B748341E70FCD23FAABFB /* Support Files */, + ); + name = Kingfisher; + path = Kingfisher; + sourceTree = ""; + }; + 64D62230BC69BC8FF8E0CADB0E308A64 /* DDScrollView */ = { isa = PBXGroup; children = ( ); - name = DDTableView; + name = DDScrollView; sourceTree = ""; }; - 926C9AAC0E8381823D141D5E1CA2DCB1 /* DDImage */ = { + 65720213A52383424E668372118F76E3 /* Support Files */ = { isa = PBXGroup; children = ( - ); - name = DDImage; - sourceTree = ""; - }; - 939318770443A1C437C404F19267986F /* UILabel+DDCategory */ = { - isa = PBXGroup; - children = ( - 451A5EAF2631D6E97ACE30D4709C2781 /* UILabel+DDCategory.h */, - 0CCE651BD164B4AB8DBDC675BD56644F /* UILabel+DDCategory.m */, - ); - name = "UILabel+DDCategory"; - sourceTree = ""; - }; - 97D35F4D91A0E9B43E1BDCC8C0521F03 /* IQKeyboardManagerSwift */ = { - isa = PBXGroup; - children = ( - AE9C1E086B2D42598E8B8BE83662A21F /* IQBarButtonItem.swift */, - C1D48DF1988567C2283DCE6A6D0E978C /* IQInvocation.swift */, - B519E65D2E35BE091C034AC950FB1AAD /* IQKeyboardManager.swift */, - 8C1D4437EA8A630F1146A02CD9F2619F /* IQKeyboardManager+Debug.swift */, - C1E67002E75D901B77A2D081AC86A2DC /* IQKeyboardManager+Internal.swift */, - 5FB745E9BE13FA10F821417E9E9B3B68 /* IQKeyboardManager+OrientationNotification.swift */, - 5E28AAD260307D9BD0CB26F3090DB8D4 /* IQKeyboardManager+Position.swift */, - AED6A87E2B215FA24D3A10AE3CDB5A66 /* IQKeyboardManager+Toolbar.swift */, - B5DB6D7F256E044148540B0ACCEAECE5 /* IQKeyboardManager+UIKeyboardNotification.swift */, - CFC896E3FA2CC8C09D306AFFBEE4BF35 /* IQKeyboardManager+UITextFieldViewNotification.swift */, - 8A0C56894D56C34FA82F9A00581E1B0C /* IQKeyboardManagerConstants.swift */, - E68A5240587CF5A07DED9A11120E903F /* IQKeyboardManagerConstantsInternal.swift */, - 57F5E6CBBC73877D34DFC8B9606D5D7C /* IQKeyboardReturnKeyHandler.swift */, - 39DC4E06BC0ED4D2504A136A26C5DB04 /* IQNSArray+Sort.swift */, - F8F175D3AA07BF1DB0E4A336DFEA7A7C /* IQPreviousNextView.swift */, - 818E24A615598DA62B73E4C9F2CFECA6 /* IQTextView.swift */, - 4B0C1076BF2ECABB699F48822CD0CD1A /* IQTitleBarButtonItem.swift */, - 7D1954D1F130668F1EF37BEE9043B311 /* IQToolbar.swift */, - 567C5FDA6EDFA6D1E86A664F691B2D92 /* IQUIScrollView+Additions.swift */, - 2880E3EB36904501AAA23AD6ADFD2D31 /* IQUITextFieldView+Additions.swift */, - CE15967E16ADD3D6778D28B4D158A893 /* IQUIView+Hierarchy.swift */, - F3A995BC590AFD7C3467D8606C64611E /* IQUIView+IQKeyboardToolbar.swift */, - 2780E787D2A710FCAF49D1DD9E32D720 /* IQUIViewController+Additions.swift */, - 3E77C9D3ABA9528298557FC76081B390 /* Support Files */, - ); - name = IQKeyboardManagerSwift; - path = IQKeyboardManagerSwift; - sourceTree = ""; - }; - 98A54959C27BEBF3449185502B8A2A51 /* Support Files */ = { - isa = PBXGroup; - children = ( - F566C6B3B03D6D90F6484A043515444D /* DDMAMapKit_Private.modulemap */, - A8FFE3C0DDF8AB2C8631350FFC57111D /* DDMAMapKit_Private-dummy.m */, - 1CACEAB54A67E9260490F98BA6B5F8E0 /* DDMAMapKit_Private-prefix.pch */, - 7AB06867D448C6AA4210CBF37D9E41AE /* DDMAMapKit_Private-umbrella.h */, - 14FE5A15417756FA1678F7F3BA6FEC04 /* DDMAMapKit_Private.debug.xcconfig */, - 111578E0DE0A14CA987C2FAE76C700B4 /* DDMAMapKit_Private.release.xcconfig */, - D1F4AB4C455DA41DCED566945B86487A /* ResourceBundle-DDMAMapKit_Private-DDMAMapKit_Private-Info.plist */, - ); - name = "Support Files"; - path = "../Target Support Files/DDMAMapKit_Private"; - sourceTree = ""; - }; - 98B72AE2D8BAFB14EC52963E1CDF149A /* DDCollectionView */ = { - isa = PBXGroup; - children = ( - ); - name = DDCollectionView; - sourceTree = ""; - }; - 9927016C884481AA4BF3DE6283235E4F /* RxRelay */ = { - isa = PBXGroup; - children = ( - 7E7D7A39D94EC6E14207C223CB14F2CC /* BehaviorRelay.swift */, - 7EE83611650EDF07E7D38271029EF191 /* Observable+Bind.swift */, - 080BDA2102FF1E81F2152BC8DCA1F8BA /* PublishRelay.swift */, - 9ECDAE64E2324CF79FC4E717F7DC0732 /* ReplayRelay.swift */, - DF00ACF43E6306DE8FEC5BDB2A03DF1A /* Utils.swift */, - 5827979C279796762F8ECF8866FC48F9 /* Support Files */, - ); - name = RxRelay; - path = RxRelay; - sourceTree = ""; - }; - 9A64B94A1C3F09FB7BDD6FB49A70EDE6 /* Support Files */ = { - isa = PBXGroup; - children = ( - E94C19BA6C5DCEFFD553DD0BFE5D403D /* RxCocoa.modulemap */, - F5016B3D0A65AAD4657BBADEC542E1C9 /* RxCocoa-dummy.m */, - E25A6DE8E423E7829A85CD4DBA0883E6 /* RxCocoa-prefix.pch */, - F2B4F44838B9E85FF7E60AEFEDC69AF9 /* RxCocoa-umbrella.h */, - B96A381DA1D2F1E0BCADC5D8766E4D4D /* RxCocoa.debug.xcconfig */, - 8AF18BD83957F349D32EAFF167D6B2B9 /* RxCocoa.release.xcconfig */, - ); - name = "Support Files"; - path = "../Target Support Files/RxCocoa"; - sourceTree = ""; - }; - 9A8EF2C687108DABC4D2AA07BB578D1A /* CocoaDebug */ = { - isa = PBXGroup; - children = ( - 41330F22ACC80869EAE89A43DD0E47ED /* _AutoLaunch.m */, - 3EEB0581E5990FD3403AAFB70E2D2406 /* _BacktraceLogger.h */, - 6EAF42C6F09AF179A7BBE176FA808588 /* _BacktraceLogger.m */, - 8A7FDA82642298C12645583C03438099 /* _CacheStoragePolicy.h */, - 22F0FEDF57C87B33CF5B91CAB75CD6AE /* _CacheStoragePolicy.m */, - BB9144308407CC742489AB51D399DA54 /* _CanonicalRequest.h */, - 12E65049429020CE2FA907DA693933C3 /* _CanonicalRequest.m */, - B084F187A62AC59B8CF6FDBADD60334B /* _CrashModel.swift */, - 112A895CF76ECDB40C0ECA09CFECFA97 /* _CustomHTTPProtocol.h */, - 52D351E65FCEFC9C901751FE23B1FC8C /* _CustomHTTPProtocol.m */, - BDFB35E9F875306B9DFFD2E3B49DDA21 /* _DebugConsoleLabel.h */, - A7A670105B1656796B85328E9EB82EB1 /* _DebugConsoleLabel.m */, - DFE9A23E712845344C8FDBF91A85E437 /* _DeviceUtil.h */, - DD5BF07633A9C9F924F4FC7FE9BF5E42 /* _DeviceUtil.m */, - A1A7847D5347447FDCFA0D19DF2A08F5 /* _DeviceUtil+Constant.h */, - 7695BDCA52BDA57584A5F489F084FF63 /* _DeviceUtil+Constant.m */, - AC804CCDAC995685AD30B4C033A17B03 /* _DirectoryContentsTableViewController.h */, - 0AFA57A2697AB5CEE7CFE8B04B5D06AE /* _DirectoryContentsTableViewController.m */, - 898F5967F1152EE1814DF076830BAE28 /* _FileInfo.h */, - 48F27631AD88EEF617D44D4EE041EF2B /* _FileInfo.m */, - F2A0F97CA9F3F150315AC4AF39D0FB22 /* _FilePreviewController.h */, - 502E1CC06F061B3AC8ECAAF92E1F086F /* _FilePreviewController.m */, - 54E078C192D8393D5746892CFCE7FF5B /* _FileTableViewCell.h */, - C1A1AB926D0B16501E5977AFC075A328 /* _FileTableViewCell.m */, - 0409B8BD3254A1CC2050622B967D1A90 /* _fishhook.c */, - 447B805272FC94BE355A3D40A48DA384 /* _fishhook.h */, - 8ACF622284192F7D82229D1B8BA6E48B /* _HttpDatasource.h */, - 76E9631B3799E12666172D4E285EDAB4 /* _HttpDatasource.m */, - 6A95EE45C8CD01C21E8EDE44C1558F18 /* _HttpModel.h */, - 4823D6B09CAEF70F9EEA276224F65B0E /* _HttpModel.m */, - 3E0762EBF8C25BFB0F086BF361077748 /* _ImageController.h */, - 399ED92C88410A23885C4BF0996F9140 /* _ImageController.m */, - 153D7C9845BA1437AEA26527B90D2298 /* _ImageResources.h */, - 1B5759DAF36C997BF3C6DD78C1DF3EC4 /* _ImageResources.m */, - 8437789D98F392853ED9D980736760DF /* _NetworkHelper.h */, - 6B233A4DA21BAF076F0962449F795D15 /* _NetworkHelper.m */, - E607ABAF007A00ED26B6741D6E011988 /* _NSLogHook.m */, - 7FFB61D0320EEADEFFCBC5791E6ABAC3 /* _ObjcLog.h */, - 50C5C27CC31F9C6E1F809EFA14E0389F /* _ObjcLog.m */, - E8146EEF7A37F985349E5628348F3CF6 /* _OCLoggerFormat.h */, - DB6C882E4E62E13A811162E2E9FAA808 /* _OCLoggerFormat.m */, - F94D697AF1028819859CAE6C33472941 /* _OCLogHelper.h */, - 48DEEB250BD1D0677DA987440667F31A /* _OCLogHelper.m */, - FB21874D716DEC43B48FA3B29DBBE1CD /* _OCLogModel.h */, - BFBBF3A8095A48A9D90204CC16EFF7EF /* _OCLogModel.m */, - 82FB538952945CDBE13EF23FDF93DF27 /* _OCLogStoreManager.h */, - 8DC57D49B96F51B74F238BE0D777B034 /* _OCLogStoreManager.m */, - 84041D6B6F03C17A303C33ECC8D23B3C /* _QNSURLSessionDemux.h */, - D7E054A15DA718A5A20FDB121836D124 /* _QNSURLSessionDemux.m */, - 9E6CBC53274BD6E1521F82A306B2AF74 /* _RunloopMonitor.h */, - 5ED0CDF4BC4C1A4E73B88901A3BDC1AF /* _RunloopMonitor.m */, - 1279AE8B9216612A71C15D07DBE03DB0 /* _Sandboxer.h */, - 1C93C2444CC32B62A39EB8CA0422289E /* _Sandboxer.m */, - 3C1D08FE3AE1495D7F3D28AAAC429658 /* _Sandboxer-Header.h */, - 5F185A71621EEA035032BAEE4A501714 /* _SandboxerHelper.h */, - A0EE34A04AA3B8DEC5C350DFA1C1679D /* _SandboxerHelper.m */, - 31BD6DB490AAECA93C96E037CE0D1C1B /* _SwiftLogHelper.swift */, - 84805C495D92933002A074D13D71707C /* _Swizzling.h */, - 91ADE2F9A2D9B491D84EDF923F5A9126 /* _Swizzling.m */, - 24FDB8532634D36B22FF05C9C800A9A4 /* _WKWebView+Swizzling.m */, - 39EC005637D0A654BC48D7244BEB1505 /* AboutViewController.swift */, - 79963A817C253B0AA6D824E22753A418 /* AppInfoViewController.swift */, - A501EDE665F3B45D381865C9C493DF5B /* Bubble.swift */, - 23055DB4C26C1DF285C22C22A13780A4 /* CocoaDebug.h */, - 07C66D21EB83C4B1ABE60F361E9F59AF /* CocoaDebug.swift */, - B91F867EAC669E220BC2F9AB2D7DCB20 /* CocoaDebug+Extensions.swift */, - 0DA7A5297DCF8896F641C4D6A8336991 /* CocoaDebugDeviceInfo.h */, - 09F7627F828E9EAEEAFD92C5D6F3858F /* CocoaDebugDeviceInfo.m */, - 6B45B7727CCA3325BB6D80E9556819DD /* CocoaDebugNavigationController.swift */, - E0EACDEF5821A46A7F2B031F73F7E406 /* CocoaDebugSettings.swift */, - CE8462BC1BA182E3A2822AD0B93E8F21 /* CocoaDebugTabBarController.swift */, - A52432AD29A52645680DC89BEEDCDBCE /* CocoaDebugTool.h */, - 6C30440382DFF5D2786948648B1ADE4F /* CocoaDebugTool.m */, - 31135D74DE43F56B833FA3003DA1F2B0 /* CocoaDebugViewController.swift */, - DD95241372FB8882C27B3F27E05A916C /* CocoaDebugWindow.swift */, - 4E0F82F95F4DDE943FD48B814499A525 /* Color.swift */, - DE2C4249D20EA550B89420611F39354D /* CrashCell.swift */, - CFFA60E259E0725CE08A52581DA8AC4A /* CrashDetailViewController.swift */, - 2FCD87A9BB80BC1896C50ED7AE52E866 /* CrashListViewController.swift */, - 0F39E24FC11481107A66D5DE8F5C6775 /* CrashLogger.swift */, - 82DB19005AFA965F685BD7DB64F14643 /* CrashStoreManager.swift */, - FF4F5B59773D66A5F0821D6C7D0890A1 /* FPSCounter.swift */, - F82AA08122B7F9E4B64E0A0291E5EBA9 /* GPBMessage+CocoaDebug.h */, - CA970F5A50011D308DD86FAB8B25546C /* GPBMessage+CocoaDebug.m */, - FAC48F51D4C81862787BA19831B6CB5B /* IgnoredURLsViewController.swift */, - 2416C493A06F7E5C822C1F5C4FFED93A /* JsonViewController.swift */, - F02657A4C40D568F18D1CE5253A3E072 /* LogCell.swift */, - DF24C60F5B36A70A90D1EC4D2AA87D3E /* LogViewController.swift */, - 3E0A1FE8D8EFEBC0BD35B753E886CCE7 /* NetworkCell.swift */, - F1C4BA59B9CA9DFCD4CBC4935612EC2C /* NetworkDetailCell.swift */, - 9AB1BBD29E60E66C0FF01824EC0F1B75 /* NetworkDetailModel.swift */, - 0A6993B3BDBA3881EDAC1363FDBF00CA /* NetworkDetailViewController.swift */, - 2388A004AB114C7DA26B5E4CD017622C /* NetworkViewController.swift */, - 0B6BA0DEEC7BF87FCE83807F8E428868 /* NSObject+CocoaDebug.h */, - 36C3D0130B0C9328DED201E5FC5CD14E /* NSObject+CocoaDebug.m */, - C4EB8C85E86C4CC6DFD57BFC3CDCDA74 /* UIBlockingBubble.swift */, - 9A217BE48113422F8DC53DA8B6EDD31A /* WindowHelper.swift */, - 7725A7C3364D13565A7D935C1BCFBB63 /* Resources */, - E7F10FD158FC9F5B1951324036B3405B /* Support Files */, - ); - name = CocoaDebug; - path = CocoaDebug; - sourceTree = ""; - }; - 9BC3CA120795A436DCE629E4F65DF368 /* Pods */ = { - isa = PBXGroup; - children = ( - 01DC20C11ABF20A8F276411D0F1776BC /* Alamofire */, - CA3EC88771BC3E3635B37F27D5C14502 /* AMapFoundation-NO-IDFA */, - FFB6FD6D9DF913F4A81779A2F35EB3EF /* AMapLocation-NO-IDFA */, - 72418D871240B4FEC12AF3A24DA0E9AE /* AMapNavi-NO-IDFA */, - 2112BB79D2D7C43C55DEB3FF990850A6 /* AMapSearch-NO-IDFA */, - B04A0E5A1F2705DB76F26F12431245D0 /* AMapTrack-NO-IDFA */, - F88618DE10E1FF237D7DCBE586157039 /* BRPickerView */, - 9A8EF2C687108DABC4D2AA07BB578D1A /* CocoaDebug */, - E6E741BC1CCFCECB88823C72A266B98A /* DDAutoUIKit_Private */, - 17FA9D1F80DCB6184B47154F5F19FDBF /* DDBasicControlsKit_Private */, - D0B97388A9DCF9E3283920C0271FE30F /* DDCategoryKit_Private */, - C0B7D518A7239309A57B6F10B405B79C /* DDColorKit_Private */, - B9625B7C35B4D3C773E2C016A068D169 /* DDControlsKit_Private */, - 11B60C9D580DC49324F4DD04D97BC6F3 /* DDFontKit_Private */, - 3C9C12337D63FFD2382E59C2CED6E00E /* DDLogKit_Private */, - 9EDA04589E9533075AF43DA9A1A8C39C /* DDMAMapKit_Private */, - 9C49715FBC07794768E9059F5CF84A13 /* DDNetworkingOfAlamofireKit_Private */, - 76DF999B5505639B4FBEF1133D8B6160 /* DDProgressHUDKit_Private */, - E7D0C72D9900DB7D4F5F5DB953D32953 /* DDTimerKit_Private */, - 34638B34E19F9A62F514C6FC09B897F5 /* DDToastKit_Private */, - 4809F8242FD16103403DB549B15E7A6A /* DDWebImageKit_Private */, - 66766ECC97DB0E5DC6BA7C823E607B5D /* DDZFPlayerKit_Private */, - 21E6EF5CDC3A72DBBF57951028ACF103 /* ESTabBarController-swift */, - 97D35F4D91A0E9B43E1BDCC8C0521F03 /* IQKeyboardManagerSwift */, - 4A73584BE244C2EB5FE995625796C389 /* JCore */, - 298293F36E9939681F13AF0D9B99FB6A /* JPush */, - CEC451FC136B4179F371B995C556DBF3 /* JPushExtension */, - F205041505EB8A90303C170186F4BC10 /* JXCategoryView */, - E0CFA07624587A7D9DE952063FDABCF8 /* Kingfisher */, - AF917AE42F8551298E41C3A70D166523 /* MJRefresh */, - B701E032D6386294E25D3AA06C8F2759 /* RxCocoa */, - 9927016C884481AA4BF3DE6283235E4F /* RxRelay */, - C51BF8735351954276406BF474DAF2FF /* RxSwift */, - 54376A2C6379783D92E20F9848A5FB81 /* SnapKit */, - 245445C0E1D3C07CB1E735E7D17AB3D9 /* SwiftEntryKit */, - A1D42B6260A436D905CF9A90512CC42B /* ZLPhotoBrowser */, - ); - name = Pods; - sourceTree = ""; - }; - 9C49715FBC07794768E9059F5CF84A13 /* DDNetworkingOfAlamofireKit_Private */ = { - isa = PBXGroup; - children = ( - 2CFD73BEEA8ED275838D5C27BB757E8E /* DDAF.swift */, - 6A71AF412D9D04D2E21DEF29E58D3C63 /* DDAlamofire.swift */, - C3BCF33351E380019C501F8A05090808 /* Support Files */, - ); - name = DDNetworkingOfAlamofireKit_Private; - path = DDNetworkingOfAlamofireKit_Private; - sourceTree = ""; - }; - 9D56539F6D3666396FD6E5FDBF0A1211 /* Support Files */ = { - isa = PBXGroup; - children = ( - 9AE421B9A55CBC570CF4AC6341C177C8 /* ESTabBarController-swift.modulemap */, - EB783203214870F14D65368D401491AD /* ESTabBarController-swift-dummy.m */, - 5ABB2311E4B4CCAA8413120765ADB981 /* ESTabBarController-swift-prefix.pch */, - 7F99AFA0A337CE5AC46A0EA50E75F54B /* ESTabBarController-swift-umbrella.h */, - B4EE14442D31863552DFE959D66A540D /* ESTabBarController-swift.debug.xcconfig */, - 352B898D9BC4572ADD2419D306C8A932 /* ESTabBarController-swift.release.xcconfig */, + 1FDD54B94F5298866C048A459F5BDB38 /* ESTabBarController-swift.modulemap */, + 4CF649827D4BB7735801A7D686374EA4 /* ESTabBarController-swift-dummy.m */, + CC6C9975029356137DCFE58612A80F0A /* ESTabBarController-swift-prefix.pch */, + 918CCDBA1022A635F47D098B5190FBD9 /* ESTabBarController-swift-umbrella.h */, + 65EF2A8EC65839B3B41245C149B6004E /* ESTabBarController-swift.debug.xcconfig */, + B28544516F9DCC5D5847C47B89F78FA2 /* ESTabBarController-swift.release.xcconfig */, ); name = "Support Files"; path = "../Target Support Files/ESTabBarController-swift"; sourceTree = ""; }; - 9EDA04589E9533075AF43DA9A1A8C39C /* DDMAMapKit_Private */ = { + 6B14D1AEE61E33ECB7F3844F3576ACC8 /* AMapFoundation-NO-IDFA */ = { isa = PBXGroup; children = ( - 0A6FF1362FF40384EA9E620D2ABA0516 /* DDMALocation */, - D42F81935C8ACA5E18B047EEB7ECC6CC /* DDMAMap */, - F0004F5BB48EEBFB78EAB44D6D434A84 /* DDMANaviManager */, - 735828153A1A36DAAF59D3699CF51F80 /* DDMASearch */, - C036FC283647BD67A2683E901E46B720 /* DDMATrackManager */, - 0E273747ADA61F535D255D8DF2AC3E23 /* DDMAUtil */, - 98A54959C27BEBF3449185502B8A2A51 /* Support Files */, + 3F01892B629A3626EC639FFA0E73C32E /* AMapFoundationConst.h */, + CDE52EA77DDCE1E02687EF64DEF9B5D8 /* AMapFoundationKit.h */, + 4D55C8367D0E4C3C089AAC73AA537C09 /* AMapFoundationVersion.h */, + 49CD4F2A1E8E233FA46CE5FD5825EE18 /* AMapServices.h */, + A869F5A7552A1A70A3A46A102651F29A /* AMapURLSearch.h */, + E7FDA7E18272C0F2EB83C0A550B6F6CA /* AMapURLSearchConfig.h */, + 7F3FB2C34CAB2DB8D742274BE0154AC3 /* AMapURLSearchType.h */, + 20DD9500E206AC788F50F214D1477BFF /* AMapUtility.h */, + 4C7FE8261840A283989DB722416B5050 /* Frameworks */, + 55351A815973B74F7DB5AEF13304EE41 /* Support Files */, ); - name = DDMAMapKit_Private; - path = DDMAMapKit_Private; + name = "AMapFoundation-NO-IDFA"; + path = "AMapFoundation-NO-IDFA"; sourceTree = ""; }; - 9FB92C5A9C0E93E9092D0F47E5522649 /* DDTransitionAnimation */ = { + 6C61C214A1D7934522ABCD0C24097A1C /* DDNavigationController */ = { isa = PBXGroup; children = ( - A58467B14A493BE78DE28CA355205ED8 /* DDViewControllerAnimatedTransition.h */, - 36C06656691E948FADC5D5A2EFB9EBC3 /* DDViewControllerAnimatedTransition.m */, ); - name = DDTransitionAnimation; + name = DDNavigationController; sourceTree = ""; }; - A0A9CE9DD3AA4A36AD853D5D83145BF8 /* DDImageView */ = { + 6CF59554792960BF5E7E8F9C0F63BB9D /* DDBaseCollectionViewCell */ = { + isa = PBXGroup; + children = ( + 1223B9BCC27F8C8348BC83FBAF4B095E /* DDBaseCollectionViewCell.h */, + A802EBBFE0DB4719EE1AA04DA981AF33 /* DDBaseCollectionViewCell.m */, + ); + name = DDBaseCollectionViewCell; + sourceTree = ""; + }; + 6F79A551B87839AEF2C9D977975EC1BF /* DDNetworkingOfAlamofireKit_Private */ = { + isa = PBXGroup; + children = ( + BF4E9A3B832A4E0AADBFB7EA1F8A431C /* DDAF.swift */, + E79B4DB40DF5B8B7F04589135163B8ED /* DDAlamofire.swift */, + A7EE46A46958AB4F9AE78C629A07B21B /* Support Files */, + ); + name = DDNetworkingOfAlamofireKit_Private; + path = DDNetworkingOfAlamofireKit_Private; + sourceTree = ""; + }; + 6FB85A7896F9F2AEE5A428C2B3A4988A /* Resources */ = { + isa = PBXGroup; + children = ( + 640C770114BEDF746467C32155E0F926 /* en.lproj */, + ); + name = Resources; + sourceTree = ""; + }; + 70E3EC5ED0B40709938BD5639E7AA368 /* Support Files */ = { + isa = PBXGroup; + children = ( + FC4705217CC9FF68E935D3D7C601F05B /* DDAutoUIKit_Private.modulemap */, + 7C623F2403EDF727CF44EAD667D80728 /* DDAutoUIKit_Private-dummy.m */, + 17BACC510A49FF57D5A7B70AAA7EA543 /* DDAutoUIKit_Private-prefix.pch */, + 06DC1011D3CB2579CF954A6998A82B46 /* DDAutoUIKit_Private-umbrella.h */, + 885FFAA1764402617037B5AA367DE979 /* DDAutoUIKit_Private.debug.xcconfig */, + F625452479BE8DD7819DD032EBFE333F /* DDAutoUIKit_Private.release.xcconfig */, + ); + name = "Support Files"; + path = "../Target Support Files/DDAutoUIKit_Private"; + sourceTree = ""; + }; + 7326561B838CA48DC4687F250C3939F0 /* SwiftEntryKit */ = { + isa = PBXGroup; + children = ( + ABB45E791C7D00AD4C8D18CCD8AF201A /* EKAccessoryNoteMessageView.swift */, + D766108C63302794A10BCB54AC1C5EFB /* EKAlertMessage.swift */, + 58EEDD99D1C438371D165DC77DA91A10 /* EKAlertMessageView.swift */, + 81AB7E3E77C2A4610F400CFDD9C5FFEB /* EKAttributes.swift */, + 6E52FBDBD1EFD397A82EC84F790ABF50 /* EKAttributes+Animation.swift */, + 07BC3EDED98A9C30DEE8EDBC8C49B4A5 /* EKAttributes+BackgroundStyle.swift */, + 0AC129DE20FC15D38C33BB72D87489AE /* EKAttributes+DisplayMode.swift */, + 0969E15FC97AE985DA999BBCEF8C4C20 /* EKAttributes+Duration.swift */, + FB10F6FFFAF66492CCA037D464171E01 /* EKAttributes+FrameStyle.swift */, + CD63A5786193A6BAEA56557F715A5017 /* EKAttributes+HapticFeedback.swift */, + C1BA9A9FD666F4FE0FD5A17D79A8D3CC /* EKAttributes+LifecycleActions.swift */, + F3525AEDA56FED2FF9795DFE7EDA805D /* EKAttributes+PopBehavior.swift */, + 0CCBA22874FD39B5EC9BDE6D9D8B105E /* EKAttributes+Position.swift */, + 8C8F25832948A1C119B1DBAB7C05BCF1 /* EKAttributes+PositionConstraints.swift */, + 403137021425F754E9838004199BEE05 /* EKAttributes+Precedence.swift */, + 484AC9D5780EC966243DE61551588AE9 /* EKAttributes+Presets.swift */, + A6B410D64A701D1CB10E1077619B6F60 /* EKAttributes+Scroll.swift */, + 7CA6212AC06D82944E9479E385A4D6E5 /* EKAttributes+Shadow.swift */, + C64F39A898567835EC977200F9FFA544 /* EKAttributes+StatusBar.swift */, + 37B4594CD294E430DB6DD6AB145057F2 /* EKAttributes+UserInteraction.swift */, + 15A044019BDACEF6F993B544AC5D2299 /* EKAttributes+Validations.swift */, + B1AB19BB6BCF3CDF844264D6259694C1 /* EKAttributes+WindowLevel.swift */, + 2931432B02D8C3AA6179C4C8F9E191E6 /* EKBackgroundView.swift */, + 82D61DEED5179B4292D8FA6F2AFF356E /* EKButtonBarView.swift */, + A864138960B613848C67B4978291F398 /* EKButtonView.swift */, + F3B13AA765A64D04BE8EA533B14AEAE8 /* EKColor.swift */, + C9DE856E97844E4F2991B0892C57581C /* EKContentView.swift */, + 8C83AC7F2ED122D158BDD8D973D21481 /* EKEntryView.swift */, + 947B736C6302AA3B25A79C5AEE16F940 /* EKFormMessageView.swift */, + 16C8E97D22CC84BEB8D3C25B9A55D6D4 /* EKImageNoteMessageView.swift */, + 228A503DFD6BB758F51C5BF9567E4689 /* EKMessageContentView.swift */, + 55C134061004C50225B29605CA80BFDB /* EKNoteMessageView.swift */, + A364B070CA12AB27E997A84F876FDD3F /* EKNotificationMessage.swift */, + 64D833B4C5FEA8E8C3EB56C28EC75A51 /* EKNotificationMessageView.swift */, + 8B2835B6C0EED799C237BB1EE1E07259 /* EKPopUpMessage.swift */, + 16553ED13CFF1FE8A2C6E666B6636C2A /* EKPopUpMessageView.swift */, + BE8553FA78EF2AE4C789CDBE066E4101 /* EKProcessingNoteMessageView.swift */, + CB4263E5C73CE2EB0CA35F0E6E79F95B /* EKProperty.swift */, + 4A2DAD19AF9388FA3E160CB284E06D54 /* EKRatingMessage.swift */, + EC82167D0BCE09742276BE1C86733EB6 /* EKRatingMessageView.swift */, + 388FE68AF6780C7F5350952D2898C7BF /* EKRatingSymbolsContainerView.swift */, + CC52A57A4CEC6A2EDBD2AD86F404E42A /* EKRatingSymbolView.swift */, + 30167188FE0F96121D70392E4927EE2A /* EKRootViewController.swift */, + 4DC9B3B541475CAB7B9A9E50C27DD855 /* EKSimpleMessage.swift */, + D587460C9FE0BDBFDEBB77F081C0C7B9 /* EKSimpleMessageView.swift */, + 9F4B5C69DF4E0E0C4F8D831E5D9B64F3 /* EKStyleView.swift */, + 96937A12F11D2DE9039DF1AB2F8F3B30 /* EKTextField.swift */, + 8D5F960762367E1A139FFE0BDD84E6FC /* EKWindow.swift */, + 46DABDBA88E3F291F4E144783C9649B7 /* EKWindowProvider.swift */, + DEE84C941D54610C22AD0ED0AE7A2067 /* EKWrapperView.swift */, + FF18A1ECEBC50B64292A3336D415802A /* EKXStatusBarMessageView.swift */, + 2D5E412B9217D6F1994258AE97A9F8EA /* EntryAppearanceDescriptor.swift */, + 62C1FEB9477C1BA5993EA87E329D88F2 /* EntryCachingHeuristic.swift */, + 4AE760196C36BA405E3D39D2C30FF446 /* GradientView.swift */, + 90A0BBDC2F2657AE9F32CDA93BF9DBB1 /* HapticFeedbackGenerator.swift */, + 52A66268B8952B81E9BCE9712BB4DE57 /* QLCompatibility.swift */, + 98446E34A5BC2175684D69EA687AEB83 /* QLUtils.swift */, + B9BF579F6092CEFA95DAC1130DC4310C /* SwiftEntryKit.swift */, + 048777CE15449DC35DFDAB4F3F634531 /* UIApplication+EKAppearance.swift */, + CCE440C4A9E6B0E289D13EF13DB4BF2A /* UIColor+Utils.swift */, + 89F51C34B23657FF69510E0DA8F6AB4B /* UIEdgeInsets+Utils.swift */, + BAEF6C6FDB52DBE5A8656051132CF406 /* UIRectCorner+Short.swift */, + ADD26851450A69400F1F4C0DE67E1E71 /* UIView+QLContentWrap.swift */, + 8229A71F259109674A19EB6E36885E17 /* UIView+QuickLayout.swift */, + 66C9E4C10895E1F718B3A337C2FA99DD /* UIView+Responder.swift */, + C1ECF61E1FE2D119776EF52063D94ECF /* UIView+Shadow.swift */, + 4E5EC15F9948A416535FDAEB29029E98 /* UIView+Utils.swift */, + 0CCAE470CE4B88EB94EC366E1214B2B0 /* UIViewArray+QuickLayout.swift */, + ED0F9FD909A0E02E571693106CA8E43A /* Support Files */, + ); + name = SwiftEntryKit; + path = SwiftEntryKit; + sourceTree = ""; + }; + 734C8B2AA2057901FA044B75167FFCBD /* DDLogKit_Private */ = { + isa = PBXGroup; + children = ( + E6A84DE5F24DED7CE6D821BFFD5D3E02 /* OCLog */, + 618EB0C1B672D0DD6E1D7E3CBD625787 /* Support Files */, + 3F42743F85688DA481718AF5E2EB84E1 /* SwiftLog */, + ); + name = DDLogKit_Private; + path = DDLogKit_Private; + sourceTree = ""; + }; + 73745087BFE9A6965F4BAD66F7348C8D /* AMapNavi-NO-IDFA */ = { + isa = PBXGroup; + children = ( + 3C751473356BB2989B9D468DE72D3E84 /* AMapNaviBaseManager.h */, + 880B0FB89AFDB5D800FF1B14095C31CF /* AMapNaviCommonObj.h */, + 656BC61CDAE1DBB51231C6DDC239C3E0 /* AMapNaviCompositeAnnotation.h */, + 7EC56AB51D7F1C0C0455542270B51B46 /* AMapNaviCompositeManager.h */, + BAEBD73E3B7F1C2BA8D5BE45E2C0D644 /* AMapNaviCompositeUserConfig.h */, + 585B5212B5D24CB61F756A163F5689D1 /* AMapNaviDriveDataRepresentable.h */, + 822374B064B1E0EB20102D3895088447 /* AMapNaviDriveManager.h */, + B23CD25A3C1E92ACD523D4D47B792F19 /* AMapNaviDriveView.h */, + 79F998B0DF52706CE9C094C305DE3976 /* AMapNaviEleBikeDataRepresentable.h */, + 8752FCD984A4599D420495A32BEF2F81 /* AMapNaviEleBikeManager.h */, + B25B5B126F70B5DD27EFDCE589F966ED /* AMapNaviHeaderHandler.h */, + A854D0C022958A9BCE80F55806A9B1DC /* AMapNaviHUDView.h */, + BFA5204DFFA014E2B10304DF485331D3 /* AMapNaviInfo.h */, + C60984467792BEE02FFE9BEC5AB19AC1 /* AMapNaviKit.h */, + C5FD8249BA1493D6D8B921235044C72A /* AMapNaviLocation.h */, + 787C5C2D0F79958F56A7E36EF7CA668F /* AMapNaviManagerConfig.h */, + F698606541EF2BD22C857481AA0F5270 /* AMapNaviRideDataRepresentable.h */, + 933DC85A0EB090EA6303A18945910AF9 /* AMapNaviRideManager.h */, + 5FDBFB9F4EF4B91AFA2546CC60F93B3C /* AMapNaviRideView.h */, + 7D96B979A38D394648C2ED253AE24DEE /* AMapNaviRoute.h */, + 2B6C54D2C43607382EEE18AF27E6363C /* AMapNaviStatisticsInfo.h */, + AAE566B2EB20140A8CC32CA31FF63844 /* AMapNaviTrafficBarView.h */, + 4C974389D0655291FB0AE0EB9DA31A8E /* AMapNaviTravelManager.h */, + BE1A854C57DF125E4C0DE6B3E58D9902 /* AMapNaviVersion.h */, + 7D000080AF33F912D2741E74A2BA1D53 /* AMapNaviWalkDataRepresentable.h */, + 2729A4BCD82EA750A1D70000A7961A2D /* AMapNaviWalkManager.h */, + 641C4CFE5DFFA8D58849C2F3D10C1628 /* AMapNaviWalkView.h */, + 40009CB2C7E53E655E646E102A91AE77 /* MAAnimatedAnnotation.h */, + 19A98FBE5F8AC3DD6A5019D112072792 /* MAAnnotation.h */, + 4C4747D8348B2D3F3CF6DA9A40F8E1E0 /* MAAnnotationMoveAnimation.h */, + C49AF35E97D0BAEC12400050CB45E714 /* MAAnnotationView.h */, + 54DDA242AC7B6537D8E0FCEE07747915 /* MAArc.h */, + B72111A9ABB8BFC3BA25463F6FFEB02D /* MAArcRenderer.h */, + 60AC7EC30134FA4E7BC10D34E32A8C92 /* MABaseOverlay.h */, + 417D223FE271D3C738299A2787FA68F4 /* MACircle.h */, + B3DBC064D38E5F623A0F7857BE3B6579 /* MACircleRenderer.h */, + 209C7786B8D290A570E37DD89F7A39AF /* MAConfig.h */, + 508C23C76BC58BC0DF0985D98DF0D24F /* MACustomBuildingOverlay.h */, + 5B3641D0CF1CA4E4BA2FF11915711A00 /* MACustomBuildingOverlayRenderer.h */, + F043E3D94E1CD915724692F8A121D384 /* MACustomCalloutView.h */, + AE9ABD0A4A2963EC22A26ACBF66D4682 /* MAGeodesicPolyline.h */, + 8A7C07C8E44AE1C7CB165E7D9FE273F2 /* MAGeometry.h */, + 7FE9F83D05045D36E938431C2EA59C20 /* MAGltfOverlay.h */, + D2F9E235A25B386360798672925CDBAB /* MAGltfOverlayRenderer.h */, + 368F088972589B9011EF799C84440A18 /* MAGroundOverlay.h */, + 849DE0F0882B599FB797FE7207A4EF63 /* MAGroundOverlayRenderer.h */, + 0026F30CA39C6EE90EE3E9544F8AB7E7 /* MAHeatMapTileOverlay.h */, + DD341D183C06C0C2C62DB8132B5F2493 /* MAHeatMapVectorGridOverlay.h */, + 8FB3921828004ED18F40FA28D2347DC6 /* MAHeatMapVectorGridOverlayRenderer.h */, + CB354A644B3F1AEF4070556DF5A0BAB1 /* MAHeatMapVectorOverlay.h */, + 3A7103379C75E24B87F2159016F874C4 /* MAHeatMapVectorOverlayRender.h */, + B834F282F9EDD61405A0D3FA07EEF61B /* MAIndoorInfo.h */, + F457DCCD2319BA0DD967924F8A6011B8 /* MALineDrawType.h */, + 3F981CFB9F4A21AF271C2645ED141025 /* MAMapAccessibilityIdentifier.h */, + FEC6925ED810FDA7E68FB292F5D8D445 /* MAMapCustomStyleOptions.h */, + FD6D94D80414A829977E023C2B6D0AFF /* MAMapKit.h */, + C79678F0ABB57AEB897326A4573F0DFF /* MAMapStatus.h */, + 621A6056ABD289BB2B5ECD29C4F7E770 /* MAMapVersion.h */, + DD15AAD48D049ADA7976ECA00CC6EBA6 /* MAMapView.h */, + AA0FCBAC9261DE18F37D4C9D683BFC0D /* MAMultiColoredPolylineRenderer.h */, + 0C5253A9CBB0E5AB13AA2950F43142AE /* MAMultiPoint.h */, + 098A49A3045547EBD273E8AD55CC8558 /* MAMultiPointOverlay.h */, + 156B21EF7A3CFBA670540BA1D9BC28D0 /* MAMultiPointOverlayRenderer.h */, + 17D4C1B710E972B113FB62D64069D4CF /* MAMultiPolyline.h */, + 596939FCB24F0C0983F3D0244DDE979E /* MAMultiTexturePolylineRenderer.h */, + 414CCE770135B863B3681D69D850EA95 /* MAMVTTileOverlay.h */, + 81E6BC2929CAE154C2AFBE05ABE8EAE6 /* MAMVTTileOverlayRenderer.h */, + 083DD46FAEAE4BA428D870758BE6E5E6 /* MAOfflineCity.h */, + 25CE2BA63C25949DF6EBF85CA3252EA9 /* MAOfflineItem.h */, + 4A439A73C08D37EAE294B5A6564B9C69 /* MAOfflineItemCommonCity.h */, + 04BCB3E51F1C6ED5A9404F291F8AEA14 /* MAOfflineItemMunicipality.h */, + 3262A38D15455C3CD8573E7E8510736C /* MAOfflineItemNationWide.h */, + D5BAA6E380D28A43A55466D3ECB2CEB2 /* MAOfflineMap.h */, + B3D9805B8A852DF6C44A44CFCB9D938B /* MAOfflineMapViewController.h */, + 9CFB3B1B103D91B6F4E101100D87EE83 /* MAOfflineProvince.h */, + EC05BE4178C4C192724EFE6B40BD8E45 /* MAOverlay.h */, + 95E168507C0A827BB4754E7CB9E3DF7B /* MAOverlayPathRenderer.h */, + 12A94FF416555EF19A4945A05D2A8DBA /* MAOverlayRenderer.h */, + 0009705B5A08D0B05EFC5B5267D0584B /* MAParticleOverlay.h */, + FF36C307B7C760023CA9BF4AC28A1E20 /* MAParticleOverlayOptions.h */, + CF9A2229C87AE6A3C0E1D6AAE080A3D3 /* MAParticleOverlayRenderer.h */, + 7C5DCD40582C0A74637BB5B2D04BBDBC /* MAPathShowRange.h */, + 81ED78AE30D23682F1F3C0E2C78594D5 /* MAPinAnnotationView.h */, + 4A27FFE900F9E08F844B321E3B9E4C1A /* MAPointAnnotation.h */, + 4E5D51D66363E949F7C7481E8A31332D /* MAPolygon.h */, + B0200EBEA25989F48C2BF117BFBD2BC8 /* MAPolygonRenderer.h */, + 848BAB2450E0403DEC23FBADBDFD1DF4 /* MAPolyline.h */, + 31399BE894DE54CCC13A350A91A3AFCC /* MAPolylineRenderer.h */, + DD9D5552977DB0913D61D68709E36322 /* MAShape.h */, + 1C9AF47B573EA9F359D038D9FD9B8075 /* MATileOverlay.h */, + CF1ED322EF62AFF80D2F6138DB6DA67E /* MATileOverlayRenderer.h */, + 376A9802E36A226708C320A01F29506A /* MATouchPoi.h */, + EC7C27BC7B4EDF99E9688210D150A7FE /* MATraceLocation.h */, + 8A948BC92126A6850EBAD24FD9C20A77 /* MATraceManager.h */, + E48D86BC5F2FC74426E4A90E7E1C718C /* MAUserLocation.h */, + 3B81C0627742C03C914750029C5B88CD /* MAUserLocationRepresentation.h */, + 01A8E3244E176E360072BE772C5CF0C9 /* Frameworks */, + 9ED380542AFCD4A87BF85B8E91FBD194 /* Resources */, + 647EB8757FE7B114072C08A8F77A749D /* Support Files */, + ); + name = "AMapNavi-NO-IDFA"; + path = "AMapNavi-NO-IDFA"; + sourceTree = ""; + }; + 739BEB475CFDFB5571854C582B14A0D6 /* UIButton+DDCategory */ = { + isa = PBXGroup; + children = ( + 7F7D9A55DA134EF4BCF6C018DD14F109 /* UIButton+DDCategory.h */, + 1A8798E5DDA9F7C625F49807C8F65C42 /* UIButton+DDCategory.m */, + ); + name = "UIButton+DDCategory"; + sourceTree = ""; + }; + 74F64BC127E0CD1E391B0820FF54F36A /* UICollectionView+DDCategory */ = { + isa = PBXGroup; + children = ( + 7C4452653712093DC6AF06BF027C68CA /* UICollectionView+DDCategory.h */, + D8080D1F1FBD07B6EB13C1A0757CA76E /* UICollectionView+DDCategory.m */, + ); + name = "UICollectionView+DDCategory"; + sourceTree = ""; + }; + 762CFD14D9B044A621F6ADF4BC98C099 /* Resources */ = { + isa = PBXGroup; + children = ( + 1E5DF9BC5F66536DF0E11A18183E30D6 /* _icon_file_type_app@2x.png */, + 15FBCFE8006FF35B1C88E53E36B6CCD3 /* _icon_file_type_bugs@2x.png */, + C4D8F44CF777EE97370BC7D8988060E8 /* _icon_file_type_close@2x.png */, + 76E545C9B1ED71650D71652727789DAC /* _icon_file_type_down@2x.png */, + E0FC01958D7AA6941DD04C4703D7D848 /* _icon_file_type_logs@2x.png */, + C5633BC54507F58C3E04788A8927E58A /* _icon_file_type_mail@2x.png */, + 1F950E09354784D4BC544B9DE3F5A08C /* _icon_file_type_network@2x.png */, + 490BF1C610902B6747C8314BA2D54CBF /* _icon_file_type_sandbox@2x.png */, + C00B250BD3F02DCDFBFB16362B6FFDB5 /* _icon_file_type_up@2x.png */, + A3C879A65CBB8E48310142D96071B854 /* App.storyboard */, + 02CA160B5B31AD5B9F44EC067651EACF /* icon_file_type_7z.png */, + 5227431A46A46AB324EFF4D930362857 /* icon_file_type_7z@2x.png */, + FEB3849285F266B19B972DD8B9E5FEC6 /* icon_file_type_7z@3x.png */, + A84D8485316765715F9AABFAF1C9E5B7 /* icon_file_type_aac.png */, + 0AA352C580D8FBC08486DA230C2F09CC /* icon_file_type_aac@2x.png */, + 228E06BCCD29CA590DFE2DC1C17771D9 /* icon_file_type_aac@3x.png */, + 8914AC3F77638E9B3D5FCBC849EC6F88 /* icon_file_type_apk.png */, + 97CA5EE6DE60EE9EB3AE1C088F4BFC9C /* icon_file_type_apk@2x.png */, + E853DE46E3D722386DC7537493EDCE0D /* icon_file_type_apk@3x.png */, + 3CFF8C22A1278661A4558639B396E5CE /* icon_file_type_avi.png */, + 11A8F171A32B930BCBDBB11A8E847298 /* icon_file_type_avi@2x.png */, + EF0B158973609B159C23965C455FDB82 /* icon_file_type_avi@3x.png */, + 2BDA0D63648A34DED79D18531DA13454 /* icon_file_type_bin.png */, + FA3DA5A1FFAD4CFF0CED5BBFB0F7BC5F /* icon_file_type_bin@2x.png */, + 2D9E31610650710F7BC36E4841250D5A /* icon_file_type_bin@3x.png */, + A59C95CE2CD351950924E07724DEB75F /* icon_file_type_bmp.png */, + 94AD8A497FEFFB0728DDC389581F4F99 /* icon_file_type_bmp@2x.png */, + 44BF77FA2C1CADDBC75666BCBF41FBFB /* icon_file_type_bmp@3x.png */, + 1966A986B5050ED6ECBA1F9C0CE307A2 /* icon_file_type_css.png */, + 9B5D118541615291C89F29D1F9F7E1B5 /* icon_file_type_css@2x.png */, + 1ECE9FED8F9F92EAC81DD4ACEC740155 /* icon_file_type_css@3x.png */, + 61AEEF261A78F95C47E457B874ADE2C3 /* icon_file_type_dat.png */, + 8F38B34101AD7A9DACF942D708EA0023 /* icon_file_type_dat@2x.png */, + 0F4BCE744090F84D7355AB3BE65C3362 /* icon_file_type_dat@3x.png */, + 9194876DFA8B01B5D7937929ACCB1AC2 /* icon_file_type_db.png */, + 3253A48250A568F9630A876E7FB10B7B /* icon_file_type_db@2x.png */, + 37962FDC1DA30CA9AC3752AA54D67917 /* icon_file_type_db@3x.png */, + 45812BC3B373308F9BE06C3B24FF40AE /* icon_file_type_default.png */, + 5DB43AA8B75A684004EBE401362851E1 /* icon_file_type_default@2x.png */, + 46E57567B625071388E98BA7DD6F1C37 /* icon_file_type_default@3x.png */, + ECAEDF3F076D91FCE0B4B9C0BC452FB8 /* icon_file_type_dll.png */, + 0823CD89862CF2D822348155015DBFD1 /* icon_file_type_dll@2x.png */, + A9D2DC272228FD493641D920067E68DD /* icon_file_type_dll@3x.png */, + DE458C5EEE672DA66A0241A5F59E0A2C /* icon_file_type_dmg.png */, + AB18DE6F590D4E87E3E2741ECCE67B8A /* icon_file_type_dmg@2x.png */, + 6CB3274A12B193C9C03594599C595AC6 /* icon_file_type_dmg@3x.png */, + 6EE32EEA7F284629DAFE42126024DA9D /* icon_file_type_doc.png */, + D14439272C60D8168B066070AA5B4927 /* icon_file_type_doc@2x.png */, + 457698D497C1CF68F892CE153AD695A7 /* icon_file_type_doc@3x.png */, + FC3311027CC6513D05907A98FBC34C87 /* icon_file_type_eps.png */, + 5C7426BA42A8B51BCDC80033395DF887 /* icon_file_type_eps@2x.png */, + 581B8407B31F61AB6E6AA4BEEB6B5B2B /* icon_file_type_eps@3x.png */, + 89D6DFCEBB48429270BC7556F573AB2F /* icon_file_type_fla.png */, + 6A57865949941C1FEE90009694E637B8 /* icon_file_type_fla@2x.png */, + 3257B81B4F0A8F09BFC22CB35AAC7B8A /* icon_file_type_fla@3x.png */, + 0229DA1BDB01482B8995808C7B585EB4 /* icon_file_type_flv.png */, + 427C06E7A6BEB0B1E52F6D7DE35E606B /* icon_file_type_flv@2x.png */, + FCCF6F0CB10172D6AE805C3FB8D9213E /* icon_file_type_flv@3x.png */, + E31BF88AB6CA14DAC197B97BBC3DF84D /* icon_file_type_folder_empty.png */, + 54CBE7B14D574030E380A29D60DEE06D /* icon_file_type_folder_empty@2x.png */, + 3A4AADC92CEC0B79B22714153BB42673 /* icon_file_type_folder_empty@3x.png */, + 748A002AFB525CEBB5483E750E03B35F /* icon_file_type_folder_not_empty.png */, + C77AC4C89DAE146B8119851683BEB35F /* icon_file_type_folder_not_empty@2x.png */, + 5B0C471A1366B0B07B5F2EA7A64E2412 /* icon_file_type_folder_not_empty@3x.png */, + AC28B658A1C7D00FC1C990A9B27A725A /* icon_file_type_gif.png */, + ADB2F963D72DFE1BB8E601E46EABF42A /* icon_file_type_gif@2x.png */, + A92CA5C57E8F87FE0C745339B726BE1D /* icon_file_type_gif@3x.png */, + CA59578A436D396404D4B16D26B18806 /* icon_file_type_html.png */, + DCC42575BA55CB779C91F2BD375563E4 /* icon_file_type_html@2x.png */, + 14F8483A629A2D03915DBC2C185A7D5A /* icon_file_type_html@3x.png */, + FB78CF85ED022936DDE790464E22535E /* icon_file_type_ipa.png */, + 9AA3E3033F7BF20A1B3FEA843A225B76 /* icon_file_type_ipa@2x.png */, + F8EF5E200CCFF1CE7774C7E6B73884AC /* icon_file_type_ipa@3x.png */, + AC04EA5E38C98657B66C1EFAF078A8A5 /* icon_file_type_jar.png */, + 625825AAD1977A4D7D619A45FA90D1AF /* icon_file_type_jar@2x.png */, + 0C06F0F9D936A9BD45D810AC8AF839D0 /* icon_file_type_jar@3x.png */, + 8562E5E465A60F8228880DC9A2FBEA77 /* icon_file_type_java.png */, + FFF34B6136DB104FBA1D9728E6712879 /* icon_file_type_java@2x.png */, + CA03B88839F4AAC3AFC6CC1C10B7D807 /* icon_file_type_java@3x.png */, + 8EA9D6258844F7AA0C6ACFCBA2E41C71 /* icon_file_type_jpg.png */, + 039345EC77D9A09392650415FC3286F3 /* icon_file_type_jpg@2x.png */, + E2FEB6274ABDF299C3246741779CAB30 /* icon_file_type_jpg@3x.png */, + B70DAC08C6B7D27F83C9A620ED4A68B5 /* icon_file_type_js.png */, + 573125C9519187DE8AEAE292631AE848 /* icon_file_type_js@2x.png */, + DBBC563534DD70AD434DBFB35E5D1C5D /* icon_file_type_js@3x.png */, + CBCA8A75A3E4A2EEF38B4FE7B49A7770 /* icon_file_type_json.png */, + 11CD62823D20B196FE435FF45DF0AAA4 /* icon_file_type_json@2x.png */, + E9786C70D9E2A53E65C7D5838A5AA72D /* icon_file_type_json@3x.png */, + 65188B96819D9A9C71C37B577DD8023F /* icon_file_type_keynote.png */, + 820E6F627089BF8F9BC31A8FBD4B6115 /* icon_file_type_keynote@2x.png */, + 9B263EB1092CB554559B59DB0DAE625E /* icon_file_type_keynote@3x.png */, + 6A829AA85C81D31D4B4674AC586D7EE5 /* icon_file_type_md.png */, + 258B73C6E8DE4E718D2A24E12AD1FC0B /* icon_file_type_md@2x.png */, + D6A91AC492399EBB9349BF3258B4E2F9 /* icon_file_type_md@3x.png */, + DDF12AAE714C78226279FC494BE72785 /* icon_file_type_midi.png */, + 9E5F707BC866320CAE9454AE32D27F96 /* icon_file_type_midi@2x.png */, + 9803DF7967D199F865AE74C7F5F10AB7 /* icon_file_type_midi@3x.png */, + 3E176497DD5C812F72096C4C5F5DB55B /* icon_file_type_mov.png */, + D47A3E362A3F2756AE08DF79E8D860B0 /* icon_file_type_mov@2x.png */, + 824DEE294BA98D1A0D9F9A36BCC2EEF5 /* icon_file_type_mov@3x.png */, + AA26881CAFF333B4DB9DEDCF32AB3620 /* icon_file_type_mp3.png */, + 33AF4A4F3F05BADD5DE4322A519DDA38 /* icon_file_type_mp3@2x.png */, + 9CE4EB0FE3EE5E15E6379183961D8DF6 /* icon_file_type_mp3@3x.png */, + 050410A02E4519CA1F1D3A03509DAC67 /* icon_file_type_mp4.png */, + 0E6B47BC7A361FD0136AC5CB2D7840A2 /* icon_file_type_mp4@2x.png */, + D0B9EEC36F779AE74245C2F61A644FCD /* icon_file_type_mp4@3x.png */, + F38DDA8A3A762C54DEC602DA366F2888 /* icon_file_type_mpg.png */, + 7E236A60577F05248E6E9C996BD4BEAF /* icon_file_type_mpg@2x.png */, + 5DDEA71C579B3E8B8744633B50584BD9 /* icon_file_type_mpg@3x.png */, + 532223FB4DACFEA49F03A30FBD8798E8 /* icon_file_type_numbers.png */, + 7497940B92A0CBC3D015EE3CE5CFE01A /* icon_file_type_numbers@2x.png */, + CC27872B95FB511368EDDB9AA3EC8E0A /* icon_file_type_numbers@3x.png */, + F2CFF0136E8CE367AEE32D9EF265DABB /* icon_file_type_ogg.png */, + 3B52E85A7BA44FF728F8B2926437D1EB /* icon_file_type_ogg@2x.png */, + 4A5B4C2E086BB5A37EE4D21454B8D661 /* icon_file_type_ogg@3x.png */, + 7308F1F05FD71FB96E1D09B2E6C28D0C /* icon_file_type_pages.png */, + D128A5E232982DE73FAAE66284182912 /* icon_file_type_pages@2x.png */, + 9F2092B25E7A6B13FAB6E603CA77746A /* icon_file_type_pages@3x.png */, + 2550FA68CA1F2825A7407919D3C9718B /* icon_file_type_pdf.png */, + DE90D21F6DAB6A8DD475A891FCD8CD19 /* icon_file_type_pdf@2x.png */, + 6DEEA7D8E3C58092036CB4086AC0B0A9 /* icon_file_type_pdf@3x.png */, + A89DDBB3083503F60CC9197F4F640AEA /* icon_file_type_php.png */, + 4E4D056593D32565292C67591AB91CCA /* icon_file_type_php@2x.png */, + FC8B091618B71E7F763B64FE0B5E4BC2 /* icon_file_type_php@3x.png */, + B77D4998C451C42EEBB3D8499535B5EB /* icon_file_type_plist.png */, + 852CA278296E38287AC6798AC21D12C9 /* icon_file_type_plist@2x.png */, + 3ECE29C284D0466FE88890E969C10E7B /* icon_file_type_plist@3x.png */, + 98E121468282A5B414D3DE724BA54A06 /* icon_file_type_png.png */, + A591717D5C93FD5034BB7203E97C298F /* icon_file_type_png@2x.png */, + 7830D58A41E6A57C2BF245A3CAD1E058 /* icon_file_type_png@3x.png */, + 1811EF3C0051CD1478070DBACE51F2E9 /* icon_file_type_ppt.png */, + E3E667C0EB99EB91B5266277E2C15E58 /* icon_file_type_ppt@2x.png */, + F5A9A1FB0BAF1ED59BBE93379FC4A201 /* icon_file_type_ppt@3x.png */, + 43FA3189C791074E789AB14BF832BE77 /* icon_file_type_psd.png */, + 5EA2346988F3E41B8F7C1AD5053F09CB /* icon_file_type_psd@2x.png */, + 0518167B33E6D41D98B241A09834D96D /* icon_file_type_psd@3x.png */, + 46FB798957B932BE65A62A8B0692E352 /* icon_file_type_sql.png */, + 8B2308D8204B52C616960D8BEC19B6B1 /* icon_file_type_sql@2x.png */, + A9605F6FE838A3D68AE45333BE7380B6 /* icon_file_type_sql@3x.png */, + F6C8E391647B7B514BEC561D7F819050 /* icon_file_type_svg.png */, + AC5AECFF0BF43C63B30CA25DFB4E2EA5 /* icon_file_type_svg@2x.png */, + 925CED7574944FD2A444D1E8371ED2D6 /* icon_file_type_svg@3x.png */, + 204450B88EEC8CB7127CBABDAC239CEB /* icon_file_type_swift.png */, + 0C07A4A5704517D879F4624051090A10 /* icon_file_type_swift@2x.png */, + 840442E139B34838838213A9BED623B0 /* icon_file_type_swift@3x.png */, + 659339677F67334FF81A473FEB960B99 /* icon_file_type_tif.png */, + 92BB981074E8FD79695489AAD52FF5F0 /* icon_file_type_tif@2x.png */, + C4301174BDCFE7141BCA3009B463E7F4 /* icon_file_type_tif@3x.png */, + 0895C47141200615E0A154C2CF4D2EE4 /* icon_file_type_torrent.png */, + E8A028002BEC6405DB00EFDE605438A5 /* icon_file_type_torrent@2x.png */, + B173E009314FFA4298335B16A5B92DAB /* icon_file_type_torrent@3x.png */, + 170E98B41CBE9C35632027A22E80EC05 /* icon_file_type_ttf.png */, + 11332C468324EFDE6DA55EC29282232D /* icon_file_type_ttf@2x.png */, + 146783B650E6D6DD73EE367461940636 /* icon_file_type_ttf@3x.png */, + DAC571C4B8113F5D2CD8C8D9259B8549 /* icon_file_type_txt.png */, + C98A3665DD375A4D70AAE9DBFC40B367 /* icon_file_type_txt@2x.png */, + 8C7ED753CBA428EE8B43B3E19887DED9 /* icon_file_type_txt@3x.png */, + 1C3E48A8724333DDF341FE93BC574265 /* icon_file_type_wav.png */, + 9DBAC1A4C69126CA19CFEAE121C56271 /* icon_file_type_wav@2x.png */, + 8ED09F498750F70A4B4C179AA26FC257 /* icon_file_type_wav@3x.png */, + A7AB231522091EB231A03DE283724036 /* icon_file_type_wmv.png */, + 2B9388EA5679B8423659A7DAE0A15739 /* icon_file_type_wmv@2x.png */, + AF7DB80F0F91292FF1D72C9B399844B2 /* icon_file_type_wmv@3x.png */, + AFA0A99F414CC46BE64B387C7E2BAD07 /* icon_file_type_xls.png */, + 11D3D10DB74AF192C39489ECEE9EC350 /* icon_file_type_xls@2x.png */, + E30CEFB1B598A53522D5C6C11441B668 /* icon_file_type_xls@3x.png */, + 599764A876E61F5FB8457DA44BF1802F /* icon_file_type_xml.png */, + 34C33529746B8713CF757051EF3C5895 /* icon_file_type_xml@2x.png */, + 90F834940ADB31A14A06D46856D877D0 /* icon_file_type_xml@3x.png */, + 526FDD1DCA71FEF6D66C2571AB3CD15C /* icon_file_type_zip.png */, + 6C29E225FC2506831991417F93F02D6A /* icon_file_type_zip@2x.png */, + EA2C9DF13CF1A32C6A68A2496EC5E75D /* icon_file_type_zip@3x.png */, + 86A0D271783F502E8AE58BC4CE43BC6C /* Logs.storyboard */, + A56AB2121F2DA7FAA10A95399A89F3C9 /* Manager.storyboard */, + CED5104038089CCAD51220894DD24944 /* Network.storyboard */, + A6739826185906DF043EFFAA982DCF24 /* NetworkCell.xib */, + ); + name = Resources; + sourceTree = ""; + }; + 7710C1CD9EC283E9C98E792212A32634 /* UITextField+DDCategory */ = { + isa = PBXGroup; + children = ( + 084FAD33970C501880B546C046B09304 /* UITextField+DDCategory.h */, + F7570B539CC2470A47D0007EB3C05A61 /* UITextField+DDCategory.m */, + ); + name = "UITextField+DDCategory"; + sourceTree = ""; + }; + 793CBD17543F1A771EAA4F17E8E31E0F /* CALayer+DDCategory */ = { + isa = PBXGroup; + children = ( + A59107DEA6267230DDAC16F6E137FAB6 /* CALayer+DDCategory.h */, + 4861B020D7E27F0E8FD84F687AE6E433 /* CALayer+DDCategory.m */, + ); + name = "CALayer+DDCategory"; + sourceTree = ""; + }; + 79A487C7935A6D68845D9785708DB1AB /* JPush */ = { + isa = PBXGroup; + children = ( + 8176A34D7065A9D261BA8A48FB5A5F13 /* Frameworks */, + D0760901476603B79C1FFB2B2E244511 /* Support Files */, + ); + name = JPush; + path = JPush; + sourceTree = ""; + }; + 7B5054C8186F3B0C144F440DC2DAFC85 /* DDAutoUIKit_Private */ = { + isa = PBXGroup; + children = ( + 21B56EB683131E3D51455D09E281E248 /* AutoUI.swift */, + 70E3EC5ED0B40709938BD5639E7AA368 /* Support Files */, + ); + name = DDAutoUIKit_Private; + path = DDAutoUIKit_Private; + sourceTree = ""; + }; + 7CBFD8697C37279B19AFF093248D42EF /* Frameworks */ = { + isa = PBXGroup; + children = ( + A6663F93BEFE509F2CB1AECEFE86DD38 /* jcore-ios-4.2.1.xcframework */, + ); + name = Frameworks; + sourceTree = ""; + }; + 7F96D0F4A7E84B278B3FC781A2D5CBC7 /* DDImageView */ = { isa = PBXGroup; children = ( ); name = DDImageView; sourceTree = ""; }; - A1D42B6260A436D905CF9A90512CC42B /* ZLPhotoBrowser */ = { + 8176A34D7065A9D261BA8A48FB5A5F13 /* Frameworks */ = { isa = PBXGroup; children = ( - 548C70B1A6B79C45157363CE5C640576 /* Core */, - 567FAA96FAFB33806A3BDFE4BFD2CF0D /* Resources */, - E18138DF9053220831D00042FEC15EAB /* Support Files */, - ); - name = ZLPhotoBrowser; - path = ZLPhotoBrowser; - sourceTree = ""; - }; - A24B86B04E1F773CE8A941D192777AFF /* DDBaseNavigationController */ = { - isa = PBXGroup; - children = ( - CA3077A93C64A6FEED36C79BF632E156 /* DDBaseNavigationController.h */, - 33C35B0F6BF9962B5D5512C471F442A5 /* DDBaseNavigationController.m */, - 2F9F8BE3B45CB25C249DA4546AC7F205 /* DDNavigationControllerDelegateReceiver.h */, - F0E1883755D9F0622A9F99577A37DCEB /* DDNavigationControllerDelegateReceiver.m */, - ); - name = DDBaseNavigationController; - sourceTree = ""; - }; - A34485652A3332278C1BC6A763C3A23E /* DDBaseTextField */ = { - isa = PBXGroup; - children = ( - B8B7E10D6B83386C0B777697EC6173BD /* DDBaseTextField.h */, - 4DF127FB716E054BF26A6A576D900FEB /* DDBaseTextField.m */, - ); - name = DDBaseTextField; - sourceTree = ""; - }; - A87EFA4D295C06EF78A5B26A92AEF4FA /* Frameworks */ = { - isa = PBXGroup; - children = ( - 0D0F07D136CE9DBC8403D22F5C2E9FF6 /* jpush-ios-5.0.1.xcframework */, + 0F7DD58CEA655A61309BF96BF7C6C7CD /* jpush-ios-5.0.1.xcframework */, ); name = Frameworks; sourceTree = ""; }; - A974182254F967FEE3488F43CAE01ED6 /* Frameworks */ = { + 82E42D2C5F8885513E91CC1AC5D28D1F /* DDMAUtil */ = { isa = PBXGroup; children = ( - C7D39FB13FEF4E5B80BFBCB3A0EC64EE /* jpush-extension-ios-2.0.1.xcframework */, + 0F297546C6F6C28277DF8BE35C61DDC7 /* DDMAGeometry.h */, + EBBD5F991C5E7631E158368AC5DDF0C1 /* DDMAGeometry.m */, ); - name = Frameworks; + name = DDMAUtil; sourceTree = ""; }; - AC9A27E8B4629064AB379BB6BC6931DA /* UITableView+DDCategory */ = { + 84872BCF4FAAA518E7638EF55260B513 /* DDView */ = { isa = PBXGroup; children = ( - 898756260A4DC39718CAFD51F6CF27C5 /* UITableView+DDCategory.h */, - 0302AA41D8AB944426527FDF944C167B /* UITableView+DDCategory.m */, + ); + name = DDView; + sourceTree = ""; + }; + 86B005835376A66CBE0903890387A069 /* DDLabel */ = { + isa = PBXGroup; + children = ( + ); + name = DDLabel; + sourceTree = ""; + }; + 89320A4BD5308FD29F41309A5167B112 /* UITableView+DDCategory */ = { + isa = PBXGroup; + children = ( + 02053A7B91976C425D1817777F87951B /* UITableView+DDCategory.h */, + 7F28629DAC354AD8EF7DCE02ADE79E55 /* UITableView+DDCategory.m */, ); name = "UITableView+DDCategory"; sourceTree = ""; }; - ACA22BB6DD11DFFA86AD7D7801C1E5AF /* AddressPickerView */ = { + 89723FC8072F87BB3BC441A0847216E9 /* MapKit */ = { isa = PBXGroup; children = ( - 30650FB6BF01A575C3893CF409554DC6 /* BRAddressModel.h */, - 4D2D51E8767FDC9EE116468C55754800 /* BRAddressModel.m */, - D2CEE0757CECA67F05161F6CA66A375E /* BRAddressPickerView.h */, - 87284817FCBAF9A70C2F7BE8D9AE7512 /* BRAddressPickerView.m */, - 68A24366551027331D1F6934E54374A1 /* Resources */, + 3A917F0B3BFF341657895E87AD166628 /* MKAnnotationView+WebCache.h */, + 00DB8DC7C4F4C5A02ACA6A67E1DC7981 /* MKAnnotationView+WebCache.m */, + 16720660F00B055D3518EF290D70B19D /* SDWebImageMapKit.h */, ); - name = AddressPickerView; + name = MapKit; sourceTree = ""; }; - AE4DF3234E05873845101FE21396170E /* CALayer+DDCategory */ = { + 8974BDB031FEBAC34224ACD9DDEC9B90 /* RxRelay */ = { isa = PBXGroup; children = ( - 543AEE4B25BDB69D6D5AE97D07FCC5A5 /* CALayer+DDCategory.h */, - 3BE9E089AED43F8B531B80D40F4F125C /* CALayer+DDCategory.m */, + 6DBC77CCE296A080EC456907F4213CC5 /* BehaviorRelay.swift */, + 4E117B6933609F0529AC856075573F51 /* Observable+Bind.swift */, + 25A8E9EF72D728BBB7654A49861F5F0C /* PublishRelay.swift */, + 398EF02AC671038FA4CF57813E3CF4D0 /* ReplayRelay.swift */, + 52535A185E1663138EBDAAD130F03ADA /* Utils.swift */, + 0CE0C6862C2553D5DDC366EB9FCA41B4 /* Support Files */, ); - name = "CALayer+DDCategory"; + name = RxRelay; + path = RxRelay; sourceTree = ""; }; - AF917AE42F8551298E41C3A70D166523 /* MJRefresh */ = { + 89D3B1EB830A3EC69C32FFB9E2C95F45 /* NSURL+DDCategory */ = { isa = PBXGroup; children = ( - DD1D3991EFD3878A788C8243BB37500F /* MJRefresh.h */, - 0CDEBE45652572B528A14BB36489F849 /* MJRefreshAutoFooter.h */, - ADBBCC8A1A5888AE74416344D8AF2A47 /* MJRefreshAutoFooter.m */, - 7F6F457E0A6D2D39818D9638D54DB6CF /* MJRefreshAutoGifFooter.h */, - 1AC4AED3C43F85EDC4D41760135951C4 /* MJRefreshAutoGifFooter.m */, - 3C084AB2C49E63F8A0A7F75F6923C9A3 /* MJRefreshAutoNormalFooter.h */, - C6E52492251E38E7CAA5AD35E224616A /* MJRefreshAutoNormalFooter.m */, - F99EA2AAAF1006CB653099B823EBEDB3 /* MJRefreshAutoStateFooter.h */, - 22D8B00FE86EDB0C477EA5FC2C524A97 /* MJRefreshAutoStateFooter.m */, - 12CB140F9F4DD1B0D43C8EEA24EAF352 /* MJRefreshBackFooter.h */, - 42C8B1BF41E12FE3EF5F3D341E87DAC2 /* MJRefreshBackFooter.m */, - 7B20423DA6601151401A579272B5831E /* MJRefreshBackGifFooter.h */, - 248AB1AA26A91FF083A6349CAF1075CD /* MJRefreshBackGifFooter.m */, - AD883A8F6D5AF9349D00095C085D6114 /* MJRefreshBackNormalFooter.h */, - EAFDF12D24EE5F96BAF283E0DEE714FF /* MJRefreshBackNormalFooter.m */, - 7B91697E60F6039F0982CD3C16528F9D /* MJRefreshBackStateFooter.h */, - 980B60DB60CE7C0F05EF03176D74B7F0 /* MJRefreshBackStateFooter.m */, - 6510371BC58C4A20489477A33BDB5841 /* MJRefreshComponent.h */, - 7F483825F3CB9B13EAA97C8E71F4ACFC /* MJRefreshComponent.m */, - DA275FB4459DFDEC8CB3B2D5219E2A8E /* MJRefreshConfig.h */, - 970B22270C96364AA04F36C26C88C665 /* MJRefreshConfig.m */, - C677FED4C56D6EAAE5FCD8318AE970CE /* MJRefreshConst.h */, - 97CB192C5C91AB30D894996E0435074A /* MJRefreshConst.m */, - 1C07D20047AAD610FCD943836E5BB3BD /* MJRefreshFooter.h */, - 45E284B9D2089A6FF200B0A3EB0797D7 /* MJRefreshFooter.m */, - F29BE1E9492E2AEFE0D074EEE69B04C8 /* MJRefreshGifHeader.h */, - 0C26F7D23C793D3CDF19E7B6FF9B5759 /* MJRefreshGifHeader.m */, - 36E8EA2555C5D3F0E54974CE64426B26 /* MJRefreshHeader.h */, - 0DC95A63A4B53BD65F7C07AFE543CA70 /* MJRefreshHeader.m */, - BFB7F26B22371AE2145CE0C5E402E4D8 /* MJRefreshNormalHeader.h */, - 8CD69BDD6EEEC948AEC837E16137616F /* MJRefreshNormalHeader.m */, - B3F103A7BACEF4849CBE12C4BE0C58AA /* MJRefreshNormalTrailer.h */, - 1D8AA9F4B37C4FDC9B16C8F80C7FA28A /* MJRefreshNormalTrailer.m */, - 0CBC58D319401A4C400ACA3C35D82862 /* MJRefreshStateHeader.h */, - 57262098DA4263B2C4205AD0D9DDF61B /* MJRefreshStateHeader.m */, - 9E7BDBBC8786EDA06674A48B00E8CCA6 /* MJRefreshStateTrailer.h */, - 195FFFDC0AF806EBF709A46B1FCF2ECF /* MJRefreshStateTrailer.m */, - DBA3A09EB66F076AAEA3E23DB232135D /* MJRefreshTrailer.h */, - 24A484576CF40EBB816C81275F1AC30C /* MJRefreshTrailer.m */, - 6112D3E42DED01ACD88076E8378F3A55 /* NSBundle+MJRefresh.h */, - BDBD7BF6C253733F8B7C3FBC7F23EDAB /* NSBundle+MJRefresh.m */, - A2739D1B065BC684019693673EB5D2F9 /* UICollectionViewLayout+MJRefresh.h */, - DB7792D0387066948696DEAD7ED82CB2 /* UICollectionViewLayout+MJRefresh.m */, - 3ADC10F4A94D4BACBD2252F5722D5698 /* UIScrollView+MJExtension.h */, - 146527595DF4E67A03E0054FA333E05E /* UIScrollView+MJExtension.m */, - 74CAE6A0795A55BE91124BACF24F3A34 /* UIScrollView+MJRefresh.h */, - 5CFE8E3515D7970B76FD06A9816C7DFC /* UIScrollView+MJRefresh.m */, - EF17607AB9036D452A86990DAD37D0E9 /* UIView+MJExtension.h */, - 41F7FD73008ECCD76A5B624BDD5F3592 /* UIView+MJExtension.m */, - 7ABD3EBA7EA935D8E0F67B8668D2490F /* Resources */, - 054CDD192868465DC77C7D84BB0A0D28 /* Support Files */, + 310BD972647078EAFEE4033CAB1E1BF2 /* NSURL+DDCategory.h */, + 1051306B875B02C74A86EE0815BCD486 /* NSURL+DDCategory.m */, + ); + name = "NSURL+DDCategory"; + sourceTree = ""; + }; + 89F7D208395AA0C111C97BB683861161 /* DDBaseScrollView */ = { + isa = PBXGroup; + children = ( + 9BBEF715D8D1A518938D7F5BE4D173CE /* DDBaseScrollView.h */, + F704DFD4DDA03E7FADA8DF6152130DDC /* DDBaseScrollView.m */, + ); + name = DDBaseScrollView; + sourceTree = ""; + }; + 8C9FCE26C3F83709AACFB898EED6C4AC /* Support Files */ = { + isa = PBXGroup; + children = ( + 271F134082BD15FA423EB93E89C3CDFD /* DDProgressHUDKit_Private.modulemap */, + 51301DA7667977D6925ACD930FA6C43B /* DDProgressHUDKit_Private-dummy.m */, + 7C0B035591D4837F3B854ED95BB52CD1 /* DDProgressHUDKit_Private-prefix.pch */, + 89E8CEAD7125DDEEF35DA8CF303F232A /* DDProgressHUDKit_Private-umbrella.h */, + 8F871014922D06C041EC71AEA9699782 /* DDProgressHUDKit_Private.debug.xcconfig */, + 5525ABEEA14CA4E5AB5FF704970AD83C /* DDProgressHUDKit_Private.release.xcconfig */, + ); + name = "Support Files"; + path = "../Target Support Files/DDProgressHUDKit_Private"; + sourceTree = ""; + }; + 8EFC10D9EDA3143FB2616436FADE1C19 /* UIImage+DDCategory */ = { + isa = PBXGroup; + children = ( + 82E6F31C3073965ACF67B7389CEED675 /* UIImage+DDCategory.h */, + AA1A3E07AB1893E12AB107D28F0E5457 /* UIImage+DDCategory.m */, + ); + name = "UIImage+DDCategory"; + sourceTree = ""; + }; + 8F5753004BEC7A9BD7E8145A966975D7 /* DDButton */ = { + isa = PBXGroup; + children = ( + ); + name = DDButton; + sourceTree = ""; + }; + 9064B89DB0EB2681FDFDE5F3DDD47D4B /* DDTimerKit_Private */ = { + isa = PBXGroup; + children = ( + 56E37DF9ACF7302CC404D9F47F984136 /* GCDTimer */, + 2E4466814045875E53DC249C453F395B /* Support Files */, + ); + name = DDTimerKit_Private; + path = DDTimerKit_Private; + sourceTree = ""; + }; + 932B9472614BB8AAB9255CFC84F2BEE5 /* UIView+DDCategory */ = { + isa = PBXGroup; + children = ( + 3CF983DA4DF78AA359D0008B54A72F12 /* UIView+DDCategory.h */, + 4FC5CB9F275E6CF7617C64CCF4B28785 /* UIView+DDCategory.m */, + ); + name = "UIView+DDCategory"; + sourceTree = ""; + }; + 9708AFDD354F55D35CCA1DABD83E3CC2 /* Frameworks */ = { + isa = PBXGroup; + children = ( + EBD6007ECF2F8A91D43B009A77726A13 /* AMapSearchKit.framework */, + ); + name = Frameworks; + sourceTree = ""; + }; + 97313226EF76C28FC7DA1B65F42D3AFB /* MJRefresh */ = { + isa = PBXGroup; + children = ( + A2C49409727D38F52C1F53932F467A50 /* MJRefresh.h */, + B1E17C13B228D3BDF62DAC203000AF07 /* MJRefreshAutoFooter.h */, + 3798D2339DF3BC989D9AEF1C4954BA73 /* MJRefreshAutoFooter.m */, + 74EC81B1268BA03B9BAAFFD60DBDB186 /* MJRefreshAutoGifFooter.h */, + 7216F5AF243D97E74E0D909C97E20606 /* MJRefreshAutoGifFooter.m */, + 0F79D93E9EAC91998CD46F9BD551F765 /* MJRefreshAutoNormalFooter.h */, + 053261275951B60F8A7B6E2E16D3D6E0 /* MJRefreshAutoNormalFooter.m */, + 1FDD3B0B5C7D146DAC1BF1E4BB377608 /* MJRefreshAutoStateFooter.h */, + 5BE5AB6C5643DEF48DE292EEF1927886 /* MJRefreshAutoStateFooter.m */, + F5A8105C70ECDF4CFE5D3AFF7923F775 /* MJRefreshBackFooter.h */, + EA5D274A04F6108037B90C8A9C3E05FF /* MJRefreshBackFooter.m */, + 4AD2B3D32DC2D5922D4FF51E8ADA7CBB /* MJRefreshBackGifFooter.h */, + 4C39AE9E680011386986EADBB25ECD28 /* MJRefreshBackGifFooter.m */, + 56CF2367E46E9B8A208D597A19F48981 /* MJRefreshBackNormalFooter.h */, + F35F515B2EAAA0C6E149AA7B49918CB3 /* MJRefreshBackNormalFooter.m */, + 558EFDDD9783513313FFED3E7DFEBA42 /* MJRefreshBackStateFooter.h */, + B011F598DAF5344014D1AE0AB2B0B81D /* MJRefreshBackStateFooter.m */, + 0C7D60686B2BC1EB102A5D122C2F7B5C /* MJRefreshComponent.h */, + 45C5CF794B6E5E494445CEA67F6AE8C7 /* MJRefreshComponent.m */, + BD4043357555F922F0D2C87C0316097E /* MJRefreshConfig.h */, + A57B71A9E12EE2E126434243DA492222 /* MJRefreshConfig.m */, + D2DC7453F3FCCEE3E16BBB5544D09300 /* MJRefreshConst.h */, + F4733E2C342FB40CB4CD34E6A3F8491F /* MJRefreshConst.m */, + 15AED11DF39E305DF6673230E081BB49 /* MJRefreshFooter.h */, + 9E1FD9936167392B872FB4E7F7400EEC /* MJRefreshFooter.m */, + 0A0B5A4180221E40CE556F38DA1B329D /* MJRefreshGifHeader.h */, + 30B7E097BD7EB89267D1E9FFAAA85377 /* MJRefreshGifHeader.m */, + 9D66D4ED537BD4320CF66C0D4215BFD5 /* MJRefreshHeader.h */, + 484E271BDB070341A50FD8905975162C /* MJRefreshHeader.m */, + 12D12776A4BDE949D3EA6FF4EA5A998E /* MJRefreshNormalHeader.h */, + FC8C6E073A2A3C284E72E54033042682 /* MJRefreshNormalHeader.m */, + F51A62D56FE8D54578C6D6D0138A1289 /* MJRefreshNormalTrailer.h */, + F1245050CD55525EA80F5689767F38DB /* MJRefreshNormalTrailer.m */, + B7D6A19F38BD24A68614649268A81158 /* MJRefreshStateHeader.h */, + 015B0FB8AE710CD6F5726003294AFBD6 /* MJRefreshStateHeader.m */, + AC2B6F70537955B1FC02DBFE8A7D5042 /* MJRefreshStateTrailer.h */, + 1B93E03307EC96D635819D9AC9493A70 /* MJRefreshStateTrailer.m */, + B40B699E20A88FA178864D907B41199B /* MJRefreshTrailer.h */, + 3C15C806DA298DEF1678708531293300 /* MJRefreshTrailer.m */, + D86FF60913CC9C7DA46B62C1C683E05D /* NSBundle+MJRefresh.h */, + 35DB9B25A38E1906269481378DC084E8 /* NSBundle+MJRefresh.m */, + 7A8CD8D8252849840933F64016F2954C /* UICollectionViewLayout+MJRefresh.h */, + D6A832E4BDE66310505B95C163812E18 /* UICollectionViewLayout+MJRefresh.m */, + A40353B4FCD05423F2C9A8B998F39A76 /* UIScrollView+MJExtension.h */, + 82F8BA5F666CBA5202D7D7023F9F88AB /* UIScrollView+MJExtension.m */, + 88E4747FA025D36739E4958BCC3CA547 /* UIScrollView+MJRefresh.h */, + CC659306530C8EB873C85F2CB942F879 /* UIScrollView+MJRefresh.m */, + EACB3BC9F053ABC43C7B3009822CFB8C /* UIView+MJExtension.h */, + CBAD2E1103898DA8B26A312FC7B0A364 /* UIView+MJExtension.m */, + 976FEFF4BEE3EBF231DA1E8F32508A47 /* Resources */, + FBAA0B302BCC8F29194CD2992CB6C581 /* Support Files */, ); name = MJRefresh; path = MJRefresh; sourceTree = ""; }; - B04A0E5A1F2705DB76F26F12431245D0 /* AMapTrack-NO-IDFA */ = { - isa = PBXGroup; - children = ( - F27BE099D65007CC66A75D1185431B74 /* AMapTrackCommonObj.h */, - 74C323257166A40357E0BF1FD850043A /* AMapTrackError.h */, - 662A9FBFE3BFE739E36442500AF918C9 /* AMapTrackHistoryObj.h */, - 3E550167641DB31449BAC2B28359BC07 /* AMapTrackKit.h */, - 0598DD42B02694913D01926902916255 /* AMapTrackManager.h */, - D2142A23FED51336FE35550542EF7E14 /* AMapTrackManagerOptions.h */, - 3C89AA961D189A49774763F9FEBF08B3 /* AMapTrackTerminalObj.h */, - B69A41927523F48D6D1BC266F1699549 /* AMapTrackTrackObj.h */, - CD01A936C32FFD3D24477AD1FCF13EC7 /* AMapTrackVersion.h */, - DE69309D41AB03D819DF5C6704CED1C3 /* Frameworks */, - DB06BC8FB1EF75BFC32CA0A2350B811C /* Support Files */, - ); - name = "AMapTrack-NO-IDFA"; - path = "AMapTrack-NO-IDFA"; - sourceTree = ""; - }; - B4BDE4D7D23EB5C50908B675B8D47AA5 /* StringPickerView */ = { - isa = PBXGroup; - children = ( - C796EE7B9DFDB1EF81E4C904BD88445D /* BRResultModel.h */, - F21CB93FCE510D339F30B4B89A47486E /* BRResultModel.m */, - F1C8E7D61CCAA883DF2D0D7559C9A773 /* BRStringPickerView.h */, - 2258E755983CFB104C191FF7873AD1A2 /* BRStringPickerView.m */, - ); - name = StringPickerView; - sourceTree = ""; - }; - B4E7D81CBE6C7B77260243EC3DBD0D4E /* Frameworks */ = { - isa = PBXGroup; - children = ( - 38EE478A4E4AB53D270F601989A1136B /* jcore-ios-4.2.1.xcframework */, - ); - name = Frameworks; - sourceTree = ""; - }; - B701E032D6386294E25D3AA06C8F2759 /* RxCocoa */ = { - isa = PBXGroup; - children = ( - FF31B1E008EE8A72A31FA0A19EC51777 /* _RX.h */, - A3E732E223369EECFE2FC7FAE4E18355 /* _RX.m */, - 16FA39C92B6A4348415CD601C0608B42 /* _RXDelegateProxy.h */, - 617D278B10B45CE85063C8352C66C4E2 /* _RXDelegateProxy.m */, - 6A3C9610D0945E339F4C8DF1B6ACFA55 /* _RXKVOObserver.h */, - 46DC76094AA3C5E92DEE85166BEBCB5E /* _RXKVOObserver.m */, - 90D00F696B4E371E62DDBE72F570EA51 /* _RXObjCRuntime.h */, - 4F72B65A69543F08CC7F51582D8A5AC0 /* _RXObjCRuntime.m */, - 264E9D4606CB7E89815CB6C06ADF44CB /* Bag.swift */, - D5F7F12C30F26AB144E28C1B556E018C /* BehaviorRelay+Driver.swift */, - D1F1F338C713B5B2A43F16C275825488 /* ControlEvent.swift */, - 5072B48F04170C8E6497E2D1B4C52956 /* ControlEvent+Driver.swift */, - 42B81410C918F98B4E4E060C860BDECA /* ControlEvent+Signal.swift */, - DE8A8B76A785521C5E293E6DC8EBCE32 /* ControlProperty.swift */, - 2A2C12D6097430F170F6F2BF85EFFC7D /* ControlProperty+Driver.swift */, - 538261BA1BAB61C45924F3A9FE34C655 /* ControlTarget.swift */, - D0C36B4656AE99D7E0E9CF95B780899D /* DelegateProxy.swift */, - 3260F06FAF27DF578FF87E0FC57AB5A6 /* DelegateProxyType.swift */, - EBD8ED67F931B8681F1F5DA302C4AB14 /* DispatchQueue+Extensions.swift */, - 71BAE3F41BD1D2E96AFE5E0CD19A81DE /* Driver.swift */, - 97CDCFA29F0F53B0742815891A232C4A /* Driver+Subscription.swift */, - 2511B396BA7741CEB96EF1491DD3F475 /* Infallible+Bind.swift */, - 2B12C21812D9A3C9CDBDE663FB81283B /* InfiniteSequence.swift */, - FDFAC4F4DAE717D676222C37B7819776 /* ItemEvents.swift */, - EB236683B90E71A8E104336C4566D20C /* KVORepresentable.swift */, - B9B7AFF376D7C1714FA1A418CAC11B9B /* KVORepresentable+CoreGraphics.swift */, - FB4BA2FE5102FD42FC2222B7D06930AD /* KVORepresentable+Swift.swift */, - A8AADD1211DCFC2FE0FCD2A4B0DFB192 /* NotificationCenter+Rx.swift */, - 4BEE6293496F9E455B2D9DF5F07A7C45 /* NSButton+Rx.swift */, - AE6C4A0A5AD91D5611F8B5AF608A8B86 /* NSControl+Rx.swift */, - 8EEEB06E7B901095AD02E83467C7C052 /* NSObject+Rx.swift */, - 6F5919AA07C6CA8927D9DA9575C23271 /* NSObject+Rx+KVORepresentable.swift */, - 14B0B7E0D8A8A2369FF012C41560F469 /* NSObject+Rx+RawRepresentable.swift */, - B236E181BDA27AAFC45C223C37833347 /* NSSlider+Rx.swift */, - 540E48281419616058855EFACAE5C74A /* NSTextField+Rx.swift */, - BE630A0EEEF780188B1183B41F3A7121 /* NSTextStorage+Rx.swift */, - 414CF298D3261A911036D4E70D88D9E8 /* NSTextView+Rx.swift */, - 3ABF2CF66281818713A87F8FAE022102 /* NSView+Rx.swift */, - CB30DCE64ED3098C3FF3BD8E138EE084 /* Observable+Bind.swift */, - BE8C5D4EF3429F0189BC7813EBDF4DF2 /* ObservableConvertibleType+Driver.swift */, - 7679C6E47A476147BEDA0320FC054B61 /* ObservableConvertibleType+SharedSequence.swift */, - 60B7F9B460B8EC47947EA7D67E081B65 /* ObservableConvertibleType+Signal.swift */, - 25DCCEFFC750AA88776DFF9750675C48 /* Platform.Darwin.swift */, - 83456E745643487A8247A41DED90F258 /* Platform.Linux.swift */, - 2ED304FD354A46BBB0357C259A43DA69 /* PriorityQueue.swift */, - 7A5FF7BC2D8B95FEA46B01F2404411F5 /* PublishRelay+Signal.swift */, - D95560AF78D5AD51011845730ADA6F9B /* Queue.swift */, - EE8D51F05C443003F770FFAED3B80EA1 /* RecursiveLock.swift */, - 5603B9A567AF2F0E0ED387782DAA25C9 /* RxCocoa.h */, - 1CEB2D223C0122F8B5F649375F9466A2 /* RxCocoa.swift */, - 40548739EF1F3415E61408B3C201F8EB /* RxCocoaObjCRuntimeError+Extensions.swift */, - DE1FC7712F33CBA4A75F68470D2C9C57 /* RxCocoaRuntime.h */, - 2B9826D98C8033619FAAEF30E29B8C16 /* RxCollectionViewDataSourcePrefetchingProxy.swift */, - 1F068D818B7CA40A833535AB7CDB40B2 /* RxCollectionViewDataSourceProxy.swift */, - FDE2B119938353C0577D23AED088FCAC /* RxCollectionViewDataSourceType.swift */, - CB2FA715969EA0400BA4244DDB5CE8DB /* RxCollectionViewDelegateProxy.swift */, - 1CB669742E16BC84C1966F890504C9AE /* RxCollectionViewReactiveArrayDataSource.swift */, - 148515900189496EDD7809A61B7BF648 /* RxNavigationControllerDelegateProxy.swift */, - B48D01FFB846D90A68EAC593F1A99E11 /* RxPickerViewAdapter.swift */, - FE6FD30EC41C1D856637F82EB66D5D22 /* RxPickerViewDataSourceProxy.swift */, - B0E16B683C26B00E609E2B95CD392691 /* RxPickerViewDataSourceType.swift */, - ACAEE3CCE1F1E83D412084D417F28D9B /* RxPickerViewDelegateProxy.swift */, - 9D253D285E3111564900BCCBB52DF6BA /* RxScrollViewDelegateProxy.swift */, - AFC5BF742A0E2C77A0FEF8E0845B2333 /* RxSearchBarDelegateProxy.swift */, - 94F9A881EEED528AE59D7E17EB86AAA9 /* RxSearchControllerDelegateProxy.swift */, - EF04B31C0958489B6BBBC566F32138AC /* RxTabBarControllerDelegateProxy.swift */, - B0CFBD9C9CACE16145622E9FB2197FDA /* RxTabBarDelegateProxy.swift */, - 4AC47962766BE80134B971FB68039F54 /* RxTableViewDataSourcePrefetchingProxy.swift */, - BA09C034CF8F13CC190ED3168388D337 /* RxTableViewDataSourceProxy.swift */, - B8208FE762E54F92E006BF67287ECF3D /* RxTableViewDataSourceType.swift */, - 7951229A3C355708C79A01BEACF2D70F /* RxTableViewDelegateProxy.swift */, - AE873D85A0C4BBF58400280E4701468B /* RxTableViewReactiveArrayDataSource.swift */, - FE1278D59079F2DDAF577F7B69FC8AF7 /* RxTarget.swift */, - 0217605C777B6F19D665FF10AF9A5E2B /* RxTextStorageDelegateProxy.swift */, - 558ECF73D3819FBDF26EBC50C01A6461 /* RxTextViewDelegateProxy.swift */, - DD7BF2C4E9CDB9D06C95B434FCF30741 /* RxWKNavigationDelegateProxy.swift */, - 985DB9E9919BE96EF112866868AA8FA7 /* SchedulerType+SharedSequence.swift */, - D8784F5F746E498824E0EF2D0E4354B6 /* SectionedViewDataSourceType.swift */, - DDB0356CC57B3E72F39C88E1017F2CA4 /* SharedSequence.swift */, - 3BCD9CA3645EBA0CEDD983EEA57ED59C /* SharedSequence+Concurrency.swift */, - 265B9C47BFD7FC058604E4DCD8ABCEC6 /* SharedSequence+Operators.swift */, - 6E46384338E715E961D5E1646F5D795D /* SharedSequence+Operators+arity.swift */, - EDFC93A2CC3147B82AE5C610C7BF55EC /* Signal.swift */, - 88E6865145F1BF1ADC6D64A3B58F9EDB /* Signal+Subscription.swift */, - 1A65D6A3020D867744C401AC4E07A7E0 /* TextInput.swift */, - 807FA4386FF34B32EAA07A2A232A07AD /* UIActivityIndicatorView+Rx.swift */, - 3EFFC6DAEDA76B5226C185A63168CBE0 /* UIApplication+Rx.swift */, - DEF05C5DE142415E1C6BB95036012A69 /* UIBarButtonItem+Rx.swift */, - C935E5771D3CE9F827C50F42F0F96A6F /* UIButton+Rx.swift */, - D7015B8FA2DFA4923F8592D733367DC4 /* UICollectionView+Rx.swift */, - 208AC4A093B9044C3277B6F5F956FC03 /* UIControl+Rx.swift */, - 73E04CB7ACA8FC44CA7D192024840B45 /* UIDatePicker+Rx.swift */, - ED772D370D54F994DBC8537D46F7CD91 /* UIGestureRecognizer+Rx.swift */, - 725B01B7807CDD8B370B15D874AC0D7B /* UINavigationController+Rx.swift */, - DA6ABCF9ABD131742ABDA6E77E905C13 /* UIPickerView+Rx.swift */, - 33FB6BBD6577CE8AA75501DE98096B43 /* UIRefreshControl+Rx.swift */, - 2DB12039461C90BE59120F9308BDE728 /* UIScrollView+Rx.swift */, - 4569996F344788C7F3B47D8AB09D83B7 /* UISearchBar+Rx.swift */, - F87DF8C4A9233761A0749A0E68FB5D32 /* UISearchController+Rx.swift */, - C6B920B5FF89134DE01F7E7FB2C8588E /* UISegmentedControl+Rx.swift */, - C40B3F97DFABB65D3BDD8F1E63E93000 /* UISlider+Rx.swift */, - 560FC5CF391D6C84FBD8408004C1C7EF /* UIStepper+Rx.swift */, - E7B5BAB8CE31FD67A7AA79262037D324 /* UISwitch+Rx.swift */, - 89C372F1CAF41848FEE04DADCEF409A1 /* UITabBar+Rx.swift */, - F361268449DC6D8656EC2C7BBD1E7A07 /* UITabBarController+Rx.swift */, - 7BFC111842371C60D1C45662A320EB66 /* UITableView+Rx.swift */, - D1F443ED94189B5CE7CB68C4EA9DDA1F /* UITextField+Rx.swift */, - 922F95A4EC2E41A916005B4FBC41F1C0 /* UITextView+Rx.swift */, - 34DB3C7C2C808D7F616389BBE299368D /* URLSession+Rx.swift */, - 01B1539D7D01D6739AB8D29441F36F71 /* WKWebView+Rx.swift */, - 9A64B94A1C3F09FB7BDD6FB49A70EDE6 /* Support Files */, - ); - name = RxCocoa; - path = RxCocoa; - sourceTree = ""; - }; - B7D71EE11BF59BCEA62C69B351D14CF7 /* Frameworks */ = { - isa = PBXGroup; - children = ( - 9A4D0AF7B1854A2A4C943C32BC89B9B5 /* AMapFoundationKit.framework */, - ); - name = Frameworks; - sourceTree = ""; - }; - B9095582A0FE6D90E49E60890F495548 /* UIView+DDCategory */ = { - isa = PBXGroup; - children = ( - 19459891C2FAEBEC5A2A9DFC7EFB8665 /* UIView+DDCategory.h */, - A386AA41758CBF689FE017B8C0849ED8 /* UIView+DDCategory.m */, - ); - name = "UIView+DDCategory"; - sourceTree = ""; - }; - B9625B7C35B4D3C773E2C016A068D169 /* DDControlsKit_Private */ = { - isa = PBXGroup; - children = ( - C0298F97D8F3217331BF132A88EF7836 /* DDAttributedString.swift */, - DE5B8EF20C08981C4AE6825720C8C7EC /* DDButton.swift */, - 34A6FB4EE1685DF82C959C6E48987ABD /* DDCollectionView.swift */, - 1109F32BC805E2C3BA9D879C4A0FC290 /* DDCollectionViewCell.swift */, - 20D44F3F66B10D9AFBAE38004B17436E /* DDImage.swift */, - 995EB43547433684F5D8B79532DB80AD /* DDImageView.swift */, - 2EA47AB222A409BDE78579018712387D /* DDLabel.swift */, - 2BAC73FCFBDDD704EC694A4C8220D67C /* DDMutableAttributedString.swift */, - 293293B8514DE28858CDD483523EC213 /* DDNavigationController.swift */, - 785978A57FFD22CB18C0229EE3EA552D /* DDScrollView.swift */, - 4394E2E5E3523F0D9D5795AE7EC1202F /* DDSwitch.swift */, - D3DEA65CE79229574FBD58D313F358C4 /* DDTableView.swift */, - 0C4C2F010A7E2F134C39503739F003E8 /* DDTableViewCell.swift */, - DE90732A6C3DA92864E3A4AEAB12CCFA /* DDTextField.swift */, - A0F62732B034FA270F94E496885F0109 /* DDTextView.swift */, - 19C6D736EEBB68458CDCD837433A3440 /* DDView.swift */, - 79296BD853BD4EEA3F52174AFFF855AE /* DDViewController.swift */, - 03AC70E393124CAEF7FB1FC71DA4E5B9 /* DDAttributedString */, - 1B37F65E2E382A496F9D88CD46084DAE /* DDButton */, - 98B72AE2D8BAFB14EC52963E1CDF149A /* DDCollectionView */, - EDCB6E7F32756D51C613DF8ED6EAD37A /* DDCollectionViewCell */, - 926C9AAC0E8381823D141D5E1CA2DCB1 /* DDImage */, - A0A9CE9DD3AA4A36AD853D5D83145BF8 /* DDImageView */, - F51F6C309E26DD36254D4F9E833C206A /* DDLabel */, - 42E14C5848BF9BC0CF6A29770778D77D /* DDNavigationController */, - 7CD454999372C87913D97D90D2218EDD /* DDScrollView */, - 281697647AB86C451A9507E12A01FC14 /* DDSwitch */, - 90EF8E88C866BDB789CBD79846F23440 /* DDTableView */, - 771ACBD60F63D4BBDFAA755D8D7574FC /* DDTableViewCell */, - 0A190BFC99F09B476B08D3E1402224B6 /* DDTextField */, - C1BEF8453B9F110E70AAE70CC71EED9D /* DDTextView */, - 7832BFFCCE751C4D1DB94AC4B658A931 /* DDView */, - 46A9531131FE5E26B309E96EB4933BEC /* DDViewController */, - 116052FCB16F13721E731B71779F3363 /* Support Files */, - ); - name = DDControlsKit_Private; - path = DDControlsKit_Private; - sourceTree = ""; - }; - B983160576D92A05BE966376F16CD898 /* DDBaseImageView */ = { - isa = PBXGroup; - children = ( - 6E32D87137AE364FFEC66F3F35FA0DCE /* DDBaseImageView.h */, - 8C01443E4FE3ABFD94350FD5C3A485CE /* DDBaseImageView.m */, - ); - name = DDBaseImageView; - sourceTree = ""; - }; - BCB1E23E8DFF7BD0D034AF232B3F9916 /* DDBaseButton */ = { - isa = PBXGroup; - children = ( - 127E8B906D974CF2BA3B2E98BAB892BD /* DDBaseButton.h */, - 456BF3AB46CA4989E1B301D9CD7585EA /* DDBaseButton.m */, - ); - name = DDBaseButton; - sourceTree = ""; - }; - C036FC283647BD67A2683E901E46B720 /* DDMATrackManager */ = { - isa = PBXGroup; - children = ( - 74AF63C10ED0BCE3F466B17EF4BFA791 /* DDMATrackManager.h */, - 4033D453C461A3CFD0C233B867DB7A94 /* DDMATrackManager.m */, - ); - name = DDMATrackManager; - sourceTree = ""; - }; - C0B7D518A7239309A57B6F10B405B79C /* DDColorKit_Private */ = { - isa = PBXGroup; - children = ( - 37D10F0879F8B46597A1D4B96FCD7EC4 /* ColorUtil.swift */, - BDACAF5C7F870C70808A6ED412797E03 /* UIColor+Hue.swift */, - EFA97E58589D5AB4262DF0F56DCF38D1 /* Support Files */, - ); - name = DDColorKit_Private; - path = DDColorKit_Private; - sourceTree = ""; - }; - C1BEF8453B9F110E70AAE70CC71EED9D /* DDTextView */ = { + 976EC15AC1010E3D69806B3274FF0CF9 /* DDViewController */ = { isa = PBXGroup; children = ( ); - name = DDTextView; + name = DDViewController; sourceTree = ""; }; - C2D24308A2773B8CD04FDF5737EFBD8F /* NSBundle+DDCategory */ = { + 976FEFF4BEE3EBF231DA1E8F32508A47 /* Resources */ = { isa = PBXGroup; children = ( - 8CD06EBBE4102C7F5764B8209366063D /* NSBundle+DDCategory.h */, - 129D6161CDFA6124D6CADF3D8764B920 /* NSBundle+DDCategory.m */, + F28BA3BE050C9A287358AB4DD2762F00 /* MJRefresh.bundle */, ); - name = "NSBundle+DDCategory"; + name = Resources; sourceTree = ""; }; - C3BCF33351E380019C501F8A05090808 /* Support Files */ = { + 97C35AE0796A7CF197A0DDFE123BA554 /* UICollectionViewCell+DDCategory */ = { isa = PBXGroup; children = ( - 71AA19570D3E3AEE04C93EA23F53C7C1 /* DDNetworkingOfAlamofireKit_Private.modulemap */, - B996B1034A6551A478C2D0DD2DAB7709 /* DDNetworkingOfAlamofireKit_Private-dummy.m */, - 9E7966BADC62278BB6E9F2E23EAD148A /* DDNetworkingOfAlamofireKit_Private-prefix.pch */, - B1D95F26F7C8B50C757285DA4453386B /* DDNetworkingOfAlamofireKit_Private-umbrella.h */, - 577A2A90916A731D91471FD6A7C07025 /* DDNetworkingOfAlamofireKit_Private.debug.xcconfig */, - 4BADEE04A25BB04855AF4D9C4C54C695 /* DDNetworkingOfAlamofireKit_Private.release.xcconfig */, + 2A2992EB1D0FD3CA7E85F6867C2A7865 /* UICollectionViewCell+DDCategory.h */, + 9E034624A24009FD0B6839B91B89060F /* UICollectionViewCell+DDCategory.m */, + ); + name = "UICollectionViewCell+DDCategory"; + sourceTree = ""; + }; + 9864DDB493BFE03CC42B6C57762EA631 /* DDTableViewCell */ = { + isa = PBXGroup; + children = ( + ); + name = DDTableViewCell; + sourceTree = ""; + }; + 991D279697E793EB1290EC35C3D90B18 /* Support Files */ = { + isa = PBXGroup; + children = ( + 0A97312BFE816F76389E14494FFECD97 /* RxCocoa.modulemap */, + 66CE5A83353C5F2567C0EA67F147DE72 /* RxCocoa-dummy.m */, + 3907F43ED4F65FA548715A6ACDD2361E /* RxCocoa-prefix.pch */, + DEF065BB35A819D3C99AAF3565D7EC4F /* RxCocoa-umbrella.h */, + 2F21EBD44736E2BD6DCCB9933EC40AFA /* RxCocoa.debug.xcconfig */, + 036910A977C6625D5FEE274DC2763DA2 /* RxCocoa.release.xcconfig */, + ); + name = "Support Files"; + path = "../Target Support Files/RxCocoa"; + sourceTree = ""; + }; + 9ED380542AFCD4A87BF85B8E91FBD194 /* Resources */ = { + isa = PBXGroup; + children = ( + 285760309CF5F791567CBD6CC87EAB8E /* AMap.bundle */, + 80468DB3EC3FA7F781A8E9B97BD3D78D /* AMapNavi.bundle */, + ); + name = Resources; + sourceTree = ""; + }; + 9EFEDEEFD9961C94C36DBC147711D04B /* ESTabBarController-swift */ = { + isa = PBXGroup; + children = ( + 64A91EE05741DA815ACE9F12CE92709A /* ESTabBar.swift */, + 8F0982B7F4C806224986C1E742441C80 /* ESTabBarController.swift */, + B2D085BA174C9A8EBB23BFBE828B25C2 /* ESTabBarItem.swift */, + BDA9918D1AC95200E4E186A6CB3A8906 /* ESTabBarItemBadgeView.swift */, + F762A66E222F56ED424E8728063D8F1C /* ESTabBarItemContainer.swift */, + 1C6C04C12611787799662F133D93D97A /* ESTabBarItemContentView.swift */, + FEE7DBEFE7F775DFFA5240912E9F51BE /* ESTabBarItemMoreContentView.swift */, + 6FB85A7896F9F2AEE5A428C2B3A4988A /* Resources */, + 65720213A52383424E668372118F76E3 /* Support Files */, + ); + name = "ESTabBarController-swift"; + path = "ESTabBarController-swift"; + sourceTree = ""; + }; + A04AC91B1A23F4FE89E3592B2A533D70 /* Support Files */ = { + isa = PBXGroup; + children = ( + 641728E9104921AB30E70C0C0D51CAD6 /* RxSwift.modulemap */, + 32851633BA08A836ACC460464B779055 /* RxSwift-dummy.m */, + DE6440F6B3C704B03879F69ACEE2BFF0 /* RxSwift-prefix.pch */, + 001B5A145650D07E23B883A59B4EC6A2 /* RxSwift-umbrella.h */, + 4304C25A731969DAE0A4CB5219CF83DD /* RxSwift.debug.xcconfig */, + E1D923FE2C62FA9C9EA0908615CB317F /* RxSwift.release.xcconfig */, + ); + name = "Support Files"; + path = "../Target Support Files/RxSwift"; + sourceTree = ""; + }; + A2C1D6A299D84A03494D558D8316B2C5 /* JCore */ = { + isa = PBXGroup; + children = ( + 7CBFD8697C37279B19AFF093248D42EF /* Frameworks */, + 406CA9687643358A20498EC677420956 /* Support Files */, + ); + name = JCore; + path = JCore; + sourceTree = ""; + }; + A5750A130C4BECBACCC48FD6EA478D7E /* UILabel+DDCategory */ = { + isa = PBXGroup; + children = ( + 844076CDF6F95524D9740536DE597A50 /* UILabel+DDCategory.h */, + 657EB11B3280CD8530B970935A96AA83 /* UILabel+DDCategory.m */, + ); + name = "UILabel+DDCategory"; + sourceTree = ""; + }; + A5C63389C6B50FB0015EB51EDF20A8F7 /* DDBaseLabel */ = { + isa = PBXGroup; + children = ( + 2F0988B1C29A7765529195ECCE4B347C /* DDBaseLabel.h */, + DBFC124EED6E586756C64ACD8FE730B0 /* DDBaseLabel.m */, + ); + name = DDBaseLabel; + sourceTree = ""; + }; + A6F36B7D0B01ADFA5852314CEFC6B1EB /* NSAttributedString+DDCategory */ = { + isa = PBXGroup; + children = ( + 35E0C1123B974156165208A58CC9C4E9 /* NSAttributedString+DDCategory.h */, + ADCB8C90F606DA9FA386F2B4EB1215A7 /* NSAttributedString+DDCategory.m */, + 78F7AED15BA044E40B17F02634200361 /* NSMutableAttributedString+DDCategory.h */, + 298419DB3264DE676E6D8F2EC86D9782 /* NSMutableAttributedString+DDCategory.m */, + 1E8570CECB13FD9D28F0F1B3FD573289 /* NSMutableParagraphStyle+DDCategory.h */, + ECEBD105BC3DD54516396EDE38B717BF /* NSMutableParagraphStyle+DDCategory.m */, + ); + name = "NSAttributedString+DDCategory"; + sourceTree = ""; + }; + A7EE46A46958AB4F9AE78C629A07B21B /* Support Files */ = { + isa = PBXGroup; + children = ( + 220F980BF3510D48A3600174AE08B317 /* DDNetworkingOfAlamofireKit_Private.modulemap */, + B22DCD11FAD5D73CDD802C4443872B0C /* DDNetworkingOfAlamofireKit_Private-dummy.m */, + 0B7D7AA72B10A02FBAF59FD050627482 /* DDNetworkingOfAlamofireKit_Private-prefix.pch */, + C49A46393F503E8D6F78E61975814F49 /* DDNetworkingOfAlamofireKit_Private-umbrella.h */, + 2DFD157A69FA887263CCFBECF788059E /* DDNetworkingOfAlamofireKit_Private.debug.xcconfig */, + 48011C5CE9D9ACF014FEA5B6761F88E6 /* DDNetworkingOfAlamofireKit_Private.release.xcconfig */, ); name = "Support Files"; path = "../Target Support Files/DDNetworkingOfAlamofireKit_Private"; sourceTree = ""; }; - C4809EC5ED0FEFD8B491D1EEADAA1A68 /* UIApplication+DDCategory */ = { + ACE68C6FA55077770112BAFA7CFDE292 /* Frameworks */ = { isa = PBXGroup; children = ( - C9AE10F062A6FC564CABF1304E452872 /* UIApplication+DDCategory.h */, - 1C7F81B9C13413322B75D3D7075A9E0E /* UIApplication+DDCategory.m */, + 72DA83CEAE200DCA6853B9EB68401EBA /* IJKMediaFramework.framework */, ); - name = "UIApplication+DDCategory"; + name = Frameworks; sourceTree = ""; }; - C51BF8735351954276406BF474DAF2FF /* RxSwift */ = { + AD5DEFE07B31C13F3232390CFA5D153E /* Resources */ = { isa = PBXGroup; children = ( - 1F08FB5AE701C214C628FE40D946035E /* AddRef.swift */, - E60839FCC99BCA2D05A59A230106C541 /* Amb.swift */, - 379DD1FBC15F56FCB90487D80B0A3380 /* AnonymousDisposable.swift */, - 4935A80CAA6D499435309C761A14787C /* AnonymousObserver.swift */, - FEED1EA446DAFDCFAB2807A339078B72 /* AnyObserver.swift */, - 15C756D06AB7D637E8ED4A2BC716FD21 /* AsMaybe.swift */, - B92C87D9AD30A68082CCB41AAEA5A11E /* AsSingle.swift */, - 39C862DAE5C1521BEA4A11E19BEA7035 /* AsyncLock.swift */, - 18527623E8BD70F088500400F9875F20 /* AsyncSubject.swift */, - 93459829E01373BB373ADCAAD052BEAD /* AtomicInt.swift */, - F3FEAEB5B7B10A2F71F44FC2B748F2EA /* Bag.swift */, - AB63438B30169A0620F90A6C533EAD65 /* Bag+Rx.swift */, - F13C2F411F73E5F7E433151FFC42A20E /* BehaviorSubject.swift */, - 31B252904BEF2E19729BA1328A5AF8A1 /* BinaryDisposable.swift */, - DA123D4EF40A4F164D6EF0D104019126 /* Binder.swift */, - AF9482B91123894779E2F657F1B38EC1 /* BooleanDisposable.swift */, - 475ADA123A583A0E2FD98B7971E817A1 /* Buffer.swift */, - D7C1624301DCE9B5827344EAD74ABF5E /* Cancelable.swift */, - 9010C0B16D55C689F1306730555946B1 /* Catch.swift */, - 60808E74303211BFF89129A7B5DE0A11 /* CombineLatest.swift */, - 58755C2C5E728859C36F6A6A1B128F27 /* CombineLatest+arity.swift */, - F63973A1D441D2D2E7D8AE38DA8B1D0F /* CombineLatest+Collection.swift */, - D775FD6C7A556F11338C50E643456F6F /* CompactMap.swift */, - 06D3039EFC811BDD6760EB0EE1B07D13 /* Completable.swift */, - 8067B14081C91A567B66DC6B18ECF185 /* Completable+AndThen.swift */, - C95C9F124973653528E157CFBAA25A53 /* CompositeDisposable.swift */, - 4AD8DF849C32476816B6CB7227650E54 /* Concat.swift */, - 2613CC5C1318C21609FA0B488787160D /* ConcurrentDispatchQueueScheduler.swift */, - 9F7599BDB80E9754D2FD6531126EE09B /* ConcurrentMainScheduler.swift */, - 3F64389E65209F31351003A41A7E339C /* ConnectableObservableType.swift */, - 11064BE7C5144CE3265A9D951100F139 /* Create.swift */, - BF41704EF12734312E79CF951F77D60F /* CurrentThreadScheduler.swift */, - 09F35385FE414E0F85783217FA27F924 /* Date+Dispatch.swift */, - C865048034530D516DD20746A4E43244 /* Debounce.swift */, - E420A9177DD5FE6F1C1E5392BD6FC04C /* Debug.swift */, - AF4B4F919674B1233E1DB10AFD648E75 /* Decode.swift */, - 9D77900683CB429F3824A29F75266C48 /* DefaultIfEmpty.swift */, - 75175138CADA071FAC67FEDBBF373177 /* Deferred.swift */, - C18B94C4518FFDD1B962587E426E4BCC /* Delay.swift */, - 24528134D684365C72BE21CC699EF331 /* DelaySubscription.swift */, - 950CF2BA6C0358625A7074C5D82BCB1B /* Dematerialize.swift */, - 98C507C4CC43338630874956E64E4D82 /* DispatchQueue+Extensions.swift */, - 721AC818625F5EFE1DC5CC8C9F5F7CF4 /* DispatchQueueConfiguration.swift */, - C55D4D3265BBEACF85432AE66C470CBD /* Disposable.swift */, - 2FD3FC36E3D3F782A45C3A05D9AE93E3 /* Disposables.swift */, - 82ADBDD24453B18EFF2817EC9EB0F38A /* DisposeBag.swift */, - 3FC615F0A52CAE1DC807C91AAC35E7B0 /* DisposeBase.swift */, - E4FB5CA1CEDE760E2ED07D1BC1C1190B /* DistinctUntilChanged.swift */, - 276FCB3090FF281ABEB9B0592649FE1B /* Do.swift */, - 29E409982A68F279851BACB50DD74985 /* ElementAt.swift */, - E3BD18BC17CE25C56CD5CE13E1117F55 /* Empty.swift */, - B4F6D1386839E9F612A078CC77B2D014 /* Enumerated.swift */, - 986A7DC99C54F52357042B41325AC88B /* Error.swift */, - D1EABDD51C0365036C719268DC8E4C14 /* Errors.swift */, - D171E97D7F62A90F9BB6B33553E2E085 /* Event.swift */, - 1C922887F6E0D602B6E64B0DB92BDEE7 /* Filter.swift */, - 8CE4F5E691BBFA430928733401572FAC /* First.swift */, - 78578AE5356AF9967CBD900B55267D21 /* Generate.swift */, - 202FD37BED1D89A9E941C12DB7D1BC8B /* GroupBy.swift */, - C7F4520A733D738074E96616D5B8EACB /* GroupedObservable.swift */, - 0026C3BBBA6C0FFA35BFEF3769767C65 /* HistoricalScheduler.swift */, - EBA0C42CD34863951CD405113E22F616 /* HistoricalSchedulerTimeConverter.swift */, - F43F37D115DDF5A7C28C0B31B34ACD6D /* ImmediateSchedulerType.swift */, - 3BCBEDC6E2012AD1A1EB49EE0A37573B /* Infallible.swift */, - E4D8010907EDFF57AF9D65809469AB01 /* Infallible+CombineLatest+arity.swift */, - 0D244C132278A6F37C1BF4971007DE94 /* Infallible+Concurrency.swift */, - 6C92599189B98ABDB997E47EA8A17469 /* Infallible+Create.swift */, - 5960A7D340C5B4588D9A51AEF3644D36 /* Infallible+Operators.swift */, - F67C227A488C8DB0BDA18F022B5C7536 /* Infallible+Zip+arity.swift */, - 1428743B6F7B3AC715F7400C6CBE94A1 /* InfiniteSequence.swift */, - B1D1F3D885BBC55F4F0BAE427568026A /* InvocableScheduledItem.swift */, - A90288493CD927DDF22644AE796BEC83 /* InvocableType.swift */, - 33111DC36691DBBC9AA31B540B5C50FF /* Just.swift */, - 0B29521FFEB240EDFC0C76D91356F136 /* Lock.swift */, - 82131A69CD830D98CE9F590887CB3337 /* LockOwnerType.swift */, - BAF3129C257E907A7D6F376C913F9C34 /* MainScheduler.swift */, - B7918D7DD907A7CD12E51714F3CD6F0B /* Map.swift */, - E08DB0ACF03AC86DAE079CA172A0EB0F /* Materialize.swift */, - CD8CA33F60185113898F69628CE24689 /* Maybe.swift */, - B22DD25709192E2D98120B14CB5B89DF /* Merge.swift */, - 7578B1E448738D69E9C4DF0C17B5877B /* Multicast.swift */, - 0FEAEA7973440FC844A2A97FECB1C062 /* Never.swift */, - FE1D27C3D655462D110DAB2C76EAEB58 /* NopDisposable.swift */, - 8443E7A2FABB5D4DFE53CF3ADE45E8BF /* Observable.swift */, - 8BB3BB1159CD0B5497AA8D5EB5AE2637 /* Observable+Concurrency.swift */, - 07052646AA729B2C5F500719DF643195 /* ObservableConvertibleType.swift */, - B646E6D081BB83490007567156BE5B2A /* ObservableConvertibleType+Infallible.swift */, - 62AB53ED343EF668D1D4935477F6FCF5 /* ObservableType.swift */, - 913A7059CDA51792193FFC63027C32CA /* ObservableType+Extensions.swift */, - 226F8E26ED863A4B780661FA3525CC28 /* ObservableType+PrimitiveSequence.swift */, - 23EED8DBE9F1C89AAAE37724A1AFCD59 /* ObserveOn.swift */, - D020FC5F77C529D9997835AAB997DE55 /* ObserverBase.swift */, - CCCBB9A42CB672C035BDA167AF14B5B5 /* ObserverType.swift */, - 04DAA79A8DFFB012FEF2FBC7DD2EF0BC /* OperationQueueScheduler.swift */, - 3B1508D9C3C12DF9C6EEE54BF0DCBBB8 /* Optional.swift */, - E5A23E971A2CE7F06866C1F795A83C19 /* Platform.Darwin.swift */, - FDEF4BA13D09E622A25C60A47C214107 /* Platform.Linux.swift */, - 7B4C334E64B93977B3439E204A28E255 /* PrimitiveSequence.swift */, - BA5546A1740841B0A4EB54A7EC266A88 /* PrimitiveSequence+Concurrency.swift */, - 04B19379843A8EE358C3916488B70E2E /* PrimitiveSequence+Zip+arity.swift */, - AC4E32DDFE1103DCF2FBABE6B502F4BF /* PriorityQueue.swift */, - 60CA0846119275CC9EE7FEC9A8D1DFF9 /* Producer.swift */, - A75063B87C320A3F1F92E72A5A9A13B6 /* PublishSubject.swift */, - 2D3A19A3AD8076A9E356FE5841DA26D6 /* Queue.swift */, - 45B9A514398F6FAE00D6BB7C99C369B9 /* Range.swift */, - 9649A5E88190295F040B7FDECC758A2D /* Reactive.swift */, - 0D3477DB83523D501A97BFEC5B61300D /* RecursiveLock.swift */, - 6B6B89F7CA1664E5B4D9D6C87BD7E7CE /* RecursiveScheduler.swift */, - 78D9ACE2589AEEC556ED92EE9B1702C8 /* Reduce.swift */, - 48F12ABC06A52241550DFCAA23095B30 /* RefCountDisposable.swift */, - 6B26E78510E08DBAD16EABD38AD41798 /* Repeat.swift */, - DC15CD44D1EB345DA005F262678E82D0 /* ReplaySubject.swift */, - F2DE9508491ECE184854C2B3B41980A2 /* RetryWhen.swift */, - 347E31251D7BE4DFA0012871BBEC83E1 /* Rx.swift */, - B4921C14120CC7DAB5311D82ACB530AF /* RxMutableBox.swift */, - C83A53B97BAD8F8622DE3ACCB0414615 /* Sample.swift */, - 3D3B4EAB895EF04B1E897E23DB23774A /* Scan.swift */, - 710B391010AF84B99A8E2D44BF7FCCAA /* ScheduledDisposable.swift */, - EF132529F5A36EC695323C8B66A3FC9A /* ScheduledItem.swift */, - D41911FE49D72F85B47E41BF1435D37A /* ScheduledItemType.swift */, - D30914307B609A73B085A19C48B360A2 /* SchedulerServices+Emulation.swift */, - E40773978972EDF6AF516127631A14AA /* SchedulerType.swift */, - 10E0A7E6604E7DCA63A4365CB3437F1D /* Sequence.swift */, - CFEE033FE9D1A1B81AC7FC79ADBD3A1C /* SerialDispatchQueueScheduler.swift */, - 1BACC92E207A3ACFC81EA93CF1930ED5 /* SerialDisposable.swift */, - F7AB72F72A27E40AEAAB408444E25A2C /* ShareReplayScope.swift */, - DEE5460475CDA082B35D7BFADD2CE7EE /* Single.swift */, - D8380B7096F67ADF34521DE5787C76DF /* SingleAssignmentDisposable.swift */, - FB5502757CCA2AD1785E76E9B5F3C619 /* SingleAsync.swift */, - AC6D6F2A49015700905ADFF77A0C62AB /* Sink.swift */, - 80A86B6A7D72434807A43EED155E1191 /* Skip.swift */, - 1FAA52FB5934489B0C5AEA8E65CEC014 /* SkipUntil.swift */, - A1B8B8F303F22AB7435B9AEB5DE57D44 /* SkipWhile.swift */, - 945FC895CBDB32B6DC63100F87FD9422 /* StartWith.swift */, - E82890FAB0DE231509B108B0A91E8E6A /* SubjectType.swift */, - 97AB6AC27F4F9A76159A705883BF977E /* SubscribeOn.swift */, - 1C102EBD15B3DBCF9B3C9F086A8E9712 /* SubscriptionDisposable.swift */, - 6F0A1AFC858D31E0600DFF7E2B646460 /* SwiftSupport.swift */, - 20374497326C6215767C64BF25249E57 /* Switch.swift */, - 9BE25FE38986C6639155CC9ECD28C7FD /* SwitchIfEmpty.swift */, - FFA1662A77033E275AC6575C0E69D477 /* SynchronizedDisposeType.swift */, - 0E5C0351335ADF899354F1B892B80840 /* SynchronizedOnType.swift */, - 5210F445ADCEC386AB2B91535654B29A /* SynchronizedUnsubscribeType.swift */, - F512F3041035F56871685C987D11FF08 /* TailRecursiveSink.swift */, - 84F857F6828AB1556859342E48328780 /* Take.swift */, - 16B05522B43020BCC230CDDE3DEFE8F2 /* TakeLast.swift */, - 89D1DD454586A947E569FCA1B9213869 /* TakeWithPredicate.swift */, - A0CB1D719EE85CF817CE5A346F5FE8E1 /* Throttle.swift */, - 5E7CE6B9CB73ED31A2D1EEE8D999A443 /* Timeout.swift */, - 8A53E58502621931F269346FB051E114 /* Timer.swift */, - A5ECFDE643E7B69A74381E41CAB19885 /* ToArray.swift */, - 900D87439070DC7DD3F1510EC9AB0E18 /* Using.swift */, - D3D7C4BFEA2FAE71F3A48825B492810E /* VirtualTimeConverterType.swift */, - 656396D167D3DA730A911962F85A0B49 /* VirtualTimeScheduler.swift */, - 08504B38CFD394446D42C98266DEF231 /* Window.swift */, - 4BDD37076493861879CD1CA8799E2359 /* WithLatestFrom.swift */, - 998B7DC9AD1ACB0D098B1AF8650B4F5B /* WithUnretained.swift */, - 2D4E9CE2748EE1F772D450506DAD3726 /* Zip.swift */, - 954D25B016CCFBE79A6266751BB79BAA /* Zip+arity.swift */, - A9FB2A22CF5BD1874EF39F8331BCCE40 /* Zip+Collection.swift */, - D746D3B6B4FDCA883AA01697D1E75505 /* Support Files */, + 43516021C9D63176D816609B53BA4B81 /* BRAddressPickerView.bundle */, ); - name = RxSwift; - path = RxSwift; + name = Resources; sourceTree = ""; }; - CA3EC88771BC3E3635B37F27D5C14502 /* AMapFoundation-NO-IDFA */ = { + AE87532745346926E7FAD615C131B3C4 /* Support Files */ = { isa = PBXGroup; children = ( - 9B19A826196BB032AB7B62550377FCDF /* AMapFoundationConst.h */, - 19057DDBEA07F608402AEE244BDDC53C /* AMapFoundationKit.h */, - 88FB0A96922F3E6AF17D5E1DA5DE0516 /* AMapFoundationVersion.h */, - F689DCFDDA3B9D4920FDCD855822EB93 /* AMapServices.h */, - 030999A2341E67DC460BA998BB18449B /* AMapURLSearch.h */, - 375D3CCB9C653E2FD6F2AFAC6DB142A0 /* AMapURLSearchConfig.h */, - ECEDD5C51601FD346840583CD8F14CF2 /* AMapURLSearchType.h */, - B471780A4D8D205D85C936A91F89E8F2 /* AMapUtility.h */, - B7D71EE11BF59BCEA62C69B351D14CF7 /* Frameworks */, - 27B4DBCC9AD1A57A98D00CB3C9421564 /* Support Files */, + F726086F1D373F053A1DEEE80CACD310 /* DDMAMapKit_Private.modulemap */, + 36A9D32740BEA1CB5E550A866B76C477 /* DDMAMapKit_Private-dummy.m */, + 1D5248D386E94D16E3464D643A31ABF8 /* DDMAMapKit_Private-prefix.pch */, + 68DEB07C34FF02A890E823A9417987D8 /* DDMAMapKit_Private-umbrella.h */, + 5266A14A900C54DF06D3B78688812743 /* DDMAMapKit_Private.debug.xcconfig */, + F19B2B925BFFA8AE3E6612BC2138BD9A /* DDMAMapKit_Private.release.xcconfig */, + 9850E1A6B77D7ECE8FA161BB956005DD /* ResourceBundle-DDMAMapKit_Private-DDMAMapKit_Private-Info.plist */, ); - name = "AMapFoundation-NO-IDFA"; - path = "AMapFoundation-NO-IDFA"; + name = "Support Files"; + path = "../Target Support Files/DDMAMapKit_Private"; sourceTree = ""; }; - CA65377D971867064635812BEF256B36 /* Support Files */ = { + AEF9A8AECE046399A85731832E36EA95 /* DDMATrackManager */ = { isa = PBXGroup; children = ( - B26A67F86E720C3D3ACD1516644FEDCC /* BRPickerView.modulemap */, - D507B47C4DCB15DD9E5BF30CE649376E /* BRPickerView-dummy.m */, - 5B32C533E098DC1422D42888BA736221 /* BRPickerView-prefix.pch */, - 51F21AD417E5D337399910E74E7E9730 /* BRPickerView-umbrella.h */, - 5A0C72AA6F591124FC0E37D23FB80FF8 /* BRPickerView.debug.xcconfig */, - 03200ADA6EA50E4004D2BD7F4901E591 /* BRPickerView.release.xcconfig */, + 939956CD7371C4B206B1FE2D5DB243B4 /* DDMATrackManager.h */, + E57AB064DC34008DD9440843B004AE82 /* DDMATrackManager.m */, + ); + name = DDMATrackManager; + sourceTree = ""; + }; + AF5737153175FBF5FA64AE469BE0D68D /* DDFontKit_Private */ = { + isa = PBXGroup; + children = ( + 7AEF3ABB0A35E0C5283C87A9DB435980 /* FontUtil.swift */, + 4CE271CEEDC5929C8EE64282B6147136 /* Support Files */, + ); + name = DDFontKit_Private; + path = DDFontKit_Private; + sourceTree = ""; + }; + B3635629CAC1BC81AACB35BA81152C2B /* DDBaseTextField */ = { + isa = PBXGroup; + children = ( + AA33DAC06090438E4DDBEC2735580BCF /* DDBaseTextField.h */, + 89E65059DD26BEDB9ACB3A53A6691A18 /* DDBaseTextField.m */, + ); + name = DDBaseTextField; + sourceTree = ""; + }; + B3680B56A37411F8B06A19EB78F0EB0E /* UINavigationController+DDCategory */ = { + isa = PBXGroup; + children = ( + 195652663B54BFFD1F516B6325BC1F1C /* UINavigationController+DDCategory.h */, + 0379C312FB9DFBA4F0FC9BCF26429BCA /* UINavigationController+DDCategory.m */, + ); + name = "UINavigationController+DDCategory"; + sourceTree = ""; + }; + B3F02FB15B08D31B5C4A7E7A5B226927 /* AMapTrack-NO-IDFA */ = { + isa = PBXGroup; + children = ( + 372814D9D2DA29ABDC234394129A5299 /* AMapTrackCommonObj.h */, + 29F7692B46F83B2EC59E1023BE2D6A10 /* AMapTrackError.h */, + 3D973D4B00309DC8682050DAA48D6567 /* AMapTrackHistoryObj.h */, + 1F0E24EFB4A059D3ACA16DA75925A26D /* AMapTrackKit.h */, + 0BCC8C368D4EE667A49DAC8F67F19F91 /* AMapTrackManager.h */, + 1955820828D61224B9769C7DB96144DC /* AMapTrackManagerOptions.h */, + 7F88B55F83275CBB46CBE7D0D33052F2 /* AMapTrackTerminalObj.h */, + C9970FA76DA67B4067425DC8E10CD042 /* AMapTrackTrackObj.h */, + E162355030B90CE4C65255FD5B2A7942 /* AMapTrackVersion.h */, + EA674487E0C08A47D2841A8D8987896D /* Frameworks */, + 3D05ACFAC555EABF36BB94E0A7CEE110 /* Support Files */, + ); + name = "AMapTrack-NO-IDFA"; + path = "AMapTrack-NO-IDFA"; + sourceTree = ""; + }; + B4F021A6D729080C763A8FDD3E3CD228 /* AMapSearch-NO-IDFA */ = { + isa = PBXGroup; + children = ( + B6EC47D2DF8EB922DC9191C1524EE708 /* AMapCommonObj.h */, + 75295F1992F51B3A54E218B383731408 /* AMapNearbySearchManager.h */, + 777C80ED578A3810BFD650C16AE3ADCE /* AMapNearbyUploadInfo.h */, + DFF0CFB952E714C49AD0FFFC6E4D96D5 /* AMapSearchAPI.h */, + EF9600A5E20E1F1D8BB7BA9C09398039 /* AMapSearchError.h */, + EE3A38BA75D29E3A8D50DB018BA5E62F /* AMapSearchKit.h */, + A15F8EB976B4042629E0605347F1272C /* AMapSearchObj.h */, + FC3AEBB0D6452EE2092DCCD976849B6A /* AMapSearchVersion.h */, + 9708AFDD354F55D35CCA1DABD83E3CC2 /* Frameworks */, + 02DA1C7E90F9735C32205F1AC5E47B9C /* Support Files */, + ); + name = "AMapSearch-NO-IDFA"; + path = "AMapSearch-NO-IDFA"; + sourceTree = ""; + }; + B534BDF979C479F131AD34C83A9840A9 /* Support Files */ = { + isa = PBXGroup; + children = ( + C8B61FCB33642D213E03290186A76E42 /* BRPickerView.modulemap */, + 20BF68D249255CBA5924A370AFFF23A3 /* BRPickerView-dummy.m */, + 2FD8E484865FA498F66314A905125C8B /* BRPickerView-prefix.pch */, + 4C071192B6C37D4D3F796CB640C6EE8F /* BRPickerView-umbrella.h */, + 1B13D9C58360C5DA066ED8022AACF6C6 /* BRPickerView.debug.xcconfig */, + BCCC2AA9FC6F26EB4A71C93D76CC2FB7 /* BRPickerView.release.xcconfig */, ); name = "Support Files"; path = "../Target Support Files/BRPickerView"; sourceTree = ""; }; - CB1FB38F783CA3B48D45FD703E3C8E52 /* Support Files */ = { + BA367C48D10AF79C2E72707C0042083D /* Support Files */ = { isa = PBXGroup; children = ( - 603A8371766572E823FE867F4DE0073C /* DDBasicControlsKit_Private.modulemap */, - E535BF76B78E7C41708C9A39CB9F8C10 /* DDBasicControlsKit_Private-dummy.m */, - F27D436741595FBCDB85AE25357F88F6 /* DDBasicControlsKit_Private-prefix.pch */, - 797714B5D73C1E9BF5F22B995F544F31 /* DDBasicControlsKit_Private-umbrella.h */, - 0458E057CDD6655E6C6D7E226FB6F350 /* DDBasicControlsKit_Private.debug.xcconfig */, - 0F190E920FB3BE3C888113C06E0C8B33 /* DDBasicControlsKit_Private.release.xcconfig */, - 5C19C89AD683B5392ADC235C853A00E7 /* ResourceBundle-DDBaseViewController-DDBasicControlsKit_Private-Info.plist */, + F273A072785CD48170BE952D295EF537 /* DDZFPlayerKit_Private.modulemap */, + CC1EBD8EC6B7E7CB973B6900A8161461 /* DDZFPlayerKit_Private-dummy.m */, + 018A027A7D77788D77C79B4C189F750F /* DDZFPlayerKit_Private-prefix.pch */, + FBAEF947E6FFA260FA85B1A061252448 /* DDZFPlayerKit_Private-umbrella.h */, + C607891B0BC82BA5A24B7D97B06048F5 /* DDZFPlayerKit_Private.debug.xcconfig */, + 9DB5D296ED80B51D91DB41F8FEB08F05 /* DDZFPlayerKit_Private.release.xcconfig */, + ); + name = "Support Files"; + path = "../Target Support Files/DDZFPlayerKit_Private"; + sourceTree = ""; + }; + BB472E40A83FA6FE7897959D02151CDD /* AnnotationView */ = { + isa = PBXGroup; + children = ( + F39356F38D8A9410EB074F2BD28DAF99 /* DriveRouteCustomAnnotationView.h */, + 40922C117E6DB24EF727229B3A2BFF5D /* DriveRouteCustomAnnotationView.m */, + ); + name = AnnotationView; + sourceTree = ""; + }; + BEF2291B7DAF6780A8476699F6CBD67C /* DDTextField */ = { + isa = PBXGroup; + children = ( + ); + name = DDTextField; + sourceTree = ""; + }; + BF8DB8031DFCD97C6AD224EDA3803C8F /* DDWebImageKit_Private */ = { + isa = PBXGroup; + children = ( + 187C3ECB744DBE1274D5ECDF9ADCF798 /* DDWebImage */, + F21E3D3B2104095FD2B0EA3BE749C988 /* SDWebImage */, + 4E81E604AA8C24230600EF2FBFF3C237 /* Support Files */, + ); + name = DDWebImageKit_Private; + path = DDWebImageKit_Private; + sourceTree = ""; + }; + C02D60E924FC8444945FC8292C47ED3F /* DDTableView */ = { + isa = PBXGroup; + children = ( + ); + name = DDTableView; + sourceTree = ""; + }; + C07F00F8492B44C09E9EBA1416716AD8 /* StringPickerView */ = { + isa = PBXGroup; + children = ( + 79E5766F0816D67B02D74B9B8EA86E2E /* BRResultModel.h */, + 43437087DBCFC5D645776F53DA02B4A5 /* BRResultModel.m */, + 715FF079BB749EA6EC2C8E7EFEE01776 /* BRStringPickerView.h */, + 3D7D99BD796546135F925EA800285E7E /* BRStringPickerView.m */, + ); + name = StringPickerView; + sourceTree = ""; + }; + C14DF6F6495B037DC6D78089D6231A5B /* UINavigationBar+DDCategory */ = { + isa = PBXGroup; + children = ( + 499896852BAFB8790736F4B42D7DED54 /* UINavigationBar+DDCategory.h */, + 49E4740F6C53E2191910BD1908F10E61 /* UINavigationBar+DDCategory.m */, + ); + name = "UINavigationBar+DDCategory"; + sourceTree = ""; + }; + C1A3303B5973345355DCF7F9CF503F7E /* DDBaseSwitch */ = { + isa = PBXGroup; + children = ( + E7934C14ECEE2E432FB7E210C8A217F8 /* DDBaseSwitch.h */, + 1B8DDB5AB5574889E524A11128C23FCD /* DDBaseSwitch.m */, + ); + name = DDBaseSwitch; + sourceTree = ""; + }; + C1C5BDA9C3352EA051C0A23176C6CFBA /* DDBaseTableViewCell */ = { + isa = PBXGroup; + children = ( + 36D0576897272BCF2373509D2FCDD315 /* DDBaseTableViewCell.h */, + 1578A18968936C272FAC478EA21DC4CE /* DDBaseTableViewCell.m */, + ); + name = DDBaseTableViewCell; + sourceTree = ""; + }; + C33B3565D4D9A610EB490890596F5BA2 /* Core */ = { + isa = PBXGroup; + children = ( + 0385BA814C957C616179B78AEC1F08C0 /* NSBezierPath+SDRoundedCorners.h */, + A26528E38976BAF17E03D7B30EF1A830 /* NSBezierPath+SDRoundedCorners.m */, + E10DF514DDFB09E217924ED5F17F971B /* NSButton+WebCache.h */, + 75E7E42016ACEA4311FE1D133120EA8E /* NSButton+WebCache.m */, + DEF48095A9D20497275CE1D502512D48 /* NSData+ImageContentType.h */, + 8E017F6AC983A387FFD2ED02D2A6EAEF /* NSData+ImageContentType.m */, + 5142D7DA8FAFDAA3893180D0FE5EE662 /* NSImage+Compatibility.h */, + FF8BA90E9DCA787B16E878C53AB2B3E7 /* NSImage+Compatibility.m */, + F4228AF4D852F9660E71671138791A16 /* SDAnimatedImage.h */, + 0574B8818F6CC23AE99137764B856A06 /* SDAnimatedImage.m */, + C2EBB54A8777788FCC37F4DDD1F95CD7 /* SDAnimatedImagePlayer.h */, + 7910D828D30815A4084832C84E065ABD /* SDAnimatedImagePlayer.m */, + E6404FDF26A0D8EB9510837B2C97B6EA /* SDAnimatedImageRep.h */, + 458949149FB07B2512373590E32812DB /* SDAnimatedImageRep.m */, + BBFCAC399B1C6E22748ED55F05C70FEE /* SDAnimatedImageView.h */, + EA644C0B771D66BF5BF84E7CB903BEA2 /* SDAnimatedImageView.m */, + 8D54AACBAC94421DEA26246C848BF858 /* SDAnimatedImageView+WebCache.h */, + A49ADC338F975C5324DFB40BCAB21952 /* SDAnimatedImageView+WebCache.m */, + A61E15F374B58D0CD5DD0D21ABF44943 /* SDAssociatedObject.h */, + 52826FE03640CB0B224197CEBF6FF9DC /* SDAssociatedObject.m */, + C8A47640CD25679BE5388ACCCD40D6A5 /* SDAsyncBlockOperation.h */, + 63CBD012AC6F6E061838D39D139A53FE /* SDAsyncBlockOperation.m */, + 8EF4E4E24BE31DAB6754BC5B5CE50FA1 /* SDDeviceHelper.h */, + 91C0BA21D939F381DEA0FA737166CA33 /* SDDeviceHelper.m */, + 8211323B37CEB133F28BBDA2B315851E /* SDDiskCache.h */, + 06C7E8226A65E1D0D4CC3D3E98978D02 /* SDDiskCache.m */, + F6F5D4F8E2A06285A391FA80DCBBB9DC /* SDDisplayLink.h */, + 760A359746A34A6C59BF4E271F7AAFD3 /* SDDisplayLink.m */, + 81567C3F126A7EB8378762CA3FC08465 /* SDFileAttributeHelper.h */, + 3B071261A17D80FD9843E61320A8A11A /* SDFileAttributeHelper.m */, + 6D1FBF472B9E18A77EC363401568B862 /* SDGraphicsImageRenderer.h */, + 4FD19BAA57D6D2F89EAF59C5CE2673EC /* SDGraphicsImageRenderer.m */, + 5D49C06BC03E7227DB11A90AD61FBC56 /* SDImageAPNGCoder.h */, + 596DE640FE593D727FB94B1DAD21AAAA /* SDImageAPNGCoder.m */, + 83D8B17DEBF5754D172240F006F09E29 /* SDImageAssetManager.h */, + 6F3CBC1012A6E0E7B73568B8D4230DEF /* SDImageAssetManager.m */, + 2559F26C75D13C13FF2804382D3F59C7 /* SDImageAWebPCoder.h */, + B2551C232FF781EC5A99629799F96B3D /* SDImageAWebPCoder.m */, + 5EE64E6CDB8922A15A29036FEA1CDF8F /* SDImageCache.h */, + 6A94AF7B9EB256E82846CC6F621D9A89 /* SDImageCache.m */, + 76F9E81D173F62FCFBBF4B63AFF94B8C /* SDImageCacheConfig.h */, + FF026286CC33ACD6E58EEC6812A1EF8D /* SDImageCacheConfig.m */, + 28972A447326ADCBC1C6971066AC8BFF /* SDImageCacheDefine.h */, + 5C3D65B55E66A17F74673CC45A7BE2A8 /* SDImageCacheDefine.m */, + D596FA74EF08E061C4F7568AA37A7A2C /* SDImageCachesManager.h */, + 4597C134B51299524D6EFE0FE26196E5 /* SDImageCachesManager.m */, + D28547BA2899F7E20BA891DC0869FF30 /* SDImageCachesManagerOperation.h */, + EB1F35678631DAA13BD6564BDD10E255 /* SDImageCachesManagerOperation.m */, + 138D89F9AD66B27542971F3146C9C7E3 /* SDImageCoder.h */, + 28A65AC2858558F85D9E83C7A5957D51 /* SDImageCoder.m */, + 48330C02481AEF4DCEC3989DCFEF285A /* SDImageCoderHelper.h */, + D0870107DA8522EF705B7D6480F1771A /* SDImageCoderHelper.m */, + 86C0F651835CE9410F4238CEBC3D8633 /* SDImageCodersManager.h */, + 39506C8FFB77463B162301DF01576ABD /* SDImageCodersManager.m */, + 878D059B0D422EFDF67AC71FF87E455D /* SDImageFrame.h */, + 5A1E4F867A8F571345C3F5671F4A12F8 /* SDImageFrame.m */, + A2FF4938FC742B41E51A3D67F83B59BC /* SDImageGIFCoder.h */, + EF2C2406B60CC4D8EA742DF22C0464E8 /* SDImageGIFCoder.m */, + E852AF45696268303670F21CCA68D207 /* SDImageGraphics.h */, + BE7F608C41F8EC9276968E11EAD8AC11 /* SDImageGraphics.m */, + 5A30B03FF04AF86AC507A20E3B9FEFC5 /* SDImageHEICCoder.h */, + F598DED1F4A7DADBFFD3C6E69C2B68E6 /* SDImageHEICCoder.m */, + 793C3DAF5A8365FC6EEE804CFF85D948 /* SDImageIOAnimatedCoder.h */, + 8831FA0DDABAA2853CF5963C7D0B3E5A /* SDImageIOAnimatedCoder.m */, + CF37BF09619759044178949D04A293FB /* SDImageIOAnimatedCoderInternal.h */, + 299FB9B4E9B6E497E0DD2A24010319FA /* SDImageIOCoder.h */, + 55047F1BA41243847270965804ECDC45 /* SDImageIOCoder.m */, + E44E11DCABEC805394DAC6D163DE8C87 /* SDImageLoader.h */, + 5650D58802A7057C6141F8BF3565E6C6 /* SDImageLoader.m */, + 2FB5AED4E0E34C321B6B0FC045FB50E1 /* SDImageLoadersManager.h */, + 36F3170C8D5837A9BE35753E4F4BD1C8 /* SDImageLoadersManager.m */, + FB7D6CBFDDCC1AE7F5A04594A649D758 /* SDImageTransformer.h */, + 668EE255DB75BB37318BEFF599B38A96 /* SDImageTransformer.m */, + 05C7E32A37D053CCD582A61509540978 /* SDInternalMacros.h */, + C7EA9E858EBB2FB3C378227BA979178A /* SDInternalMacros.m */, + CD8845A0160C13E18380F1AA44F2D9AD /* SDMemoryCache.h */, + F8DF5755A65EEB0CA7DCB4C4BB274FCC /* SDMemoryCache.m */, + 3BAF662DB6D341D39437AD8400B550FE /* SDmetamacros.h */, + 6C6121D780603F3C4B2B23B2F9BE8463 /* SDWeakProxy.h */, + 3C26C9777A52A2C7A6AD2245879B5B0B /* SDWeakProxy.m */, + 3464A788AA37444E4A426865192CC254 /* SDWebImage.h */, + 71530BC7D723AAE2AB156CDC315857AF /* SDWebImageCacheKeyFilter.h */, + 0BE2A2283AA193B1FC6C42A44D951474 /* SDWebImageCacheKeyFilter.m */, + 6EC0950B1ECC72AE06F498F9B5A1E712 /* SDWebImageCacheSerializer.h */, + 0B236A480C1858B1E73C3BFB7F0D5E8B /* SDWebImageCacheSerializer.m */, + B1A90A6C06187882A5DD32BF62420DEE /* SDWebImageCompat.h */, + DA7723343606DB94300D7CABEEC931C5 /* SDWebImageCompat.m */, + F5C5BE989D2BD909E8E0DD78E1BFA820 /* SDWebImageDefine.h */, + 7FF64C256662415A9479ABCFE235D61A /* SDWebImageDefine.m */, + D27EC654DA0D57E391B837834CE54930 /* SDWebImageDownloader.h */, + B02D4DCB02547219F3F0763849A36E9E /* SDWebImageDownloader.m */, + F01FFDEB2A75E22E3705146498D2812E /* SDWebImageDownloaderConfig.h */, + 0506FBB9B4ED2B8D4D6E739425E7A7D8 /* SDWebImageDownloaderConfig.m */, + 17B8906DA56601863A279000D653D043 /* SDWebImageDownloaderDecryptor.h */, + A48CA6D419834493D1B0C158221B77BD /* SDWebImageDownloaderDecryptor.m */, + 1A7C4AF6221BDD8AD265EAA9C14DED59 /* SDWebImageDownloaderOperation.h */, + 71A4BE9E17926AC2D674F378E2A77BEE /* SDWebImageDownloaderOperation.m */, + C056B6A22FB54A753B8D71AA13E54ED7 /* SDWebImageDownloaderRequestModifier.h */, + 0A0DB0AD13396C9C8A354BA610385E1A /* SDWebImageDownloaderRequestModifier.m */, + 4449009A5E7867CF71C5B215635F2D2E /* SDWebImageDownloaderResponseModifier.h */, + 5BC94B4F712AF96048E757201C4A15DA /* SDWebImageDownloaderResponseModifier.m */, + 7593E68CD0D047B1AA07A88D26C807B7 /* SDWebImageError.h */, + CC38CA313AB06EF5431FECD7C0BF4061 /* SDWebImageError.m */, + 256DE73C9DFEE06EDCAE15BE175F35B5 /* SDWebImageIndicator.h */, + 8727818346C8A099475F5E3F4E881B15 /* SDWebImageIndicator.m */, + 9FBCF4CFD0559F4FACD728FB60254A36 /* SDWebImageManager.h */, + 34F47DCCF2222D26B7FE66FED44314FA /* SDWebImageManager.m */, + 23DAFF480155F8321A62D048F6E5AE12 /* SDWebImageOperation.h */, + 1B3E8FBCB4BB9FD92F07D08BAB775E94 /* SDWebImageOperation.m */, + C39CAC5D3CDF8B7CB4D7B5A9DB2B9293 /* SDWebImageOptionsProcessor.h */, + C37BCE44E949B7D460656AC69C7B99FF /* SDWebImageOptionsProcessor.m */, + 8C3378B84FC9537FAE6FE3A6471585C0 /* SDWebImagePrefetcher.h */, + DB5035681FC46F97890BBDA4BE1BBECC /* SDWebImagePrefetcher.m */, + 84B3B54AC3874E9604C2801E7ECC67E6 /* SDWebImageTransition.h */, + E4B9F7456C68F2389F9444451A8FBD60 /* SDWebImageTransition.m */, + EAB28BE648A06BF38C2C181E1F579104 /* SDWebImageTransitionInternal.h */, + 76E7EA8EC2095659AE9175BBA6CB40BB /* UIButton+WebCache.h */, + 54DF957F2A5F496527D114BA66FAE3CA /* UIButton+WebCache.m */, + ADAD4D1DE58743CB22AC7E7400ECA9DD /* UIColor+SDHexString.h */, + 874C598F1A84B818C07CC7C106050490 /* UIColor+SDHexString.m */, + EFD44FF26920EDE0DCB5BA2C4501290F /* UIImage+ExtendedCacheData.h */, + 5C65A129C77BBDBDE9D6B9E712B97E16 /* UIImage+ExtendedCacheData.m */, + 85556FEB6174ABDF6D575CABD3EEB8C0 /* UIImage+ForceDecode.h */, + E3BF18A672F7FEA892B2A05C8D73BC4F /* UIImage+ForceDecode.m */, + 267A6FECF244137AB746AB45FDF9B2C4 /* UIImage+GIF.h */, + 46C780FE152BBEB2B11F25B2C425DBC2 /* UIImage+GIF.m */, + 4A67985DE92DF6D243ED92B69714634C /* UIImage+MemoryCacheCost.h */, + 191488C38985420414CAE71CE483ABAB /* UIImage+MemoryCacheCost.m */, + EF14A9B1A6C6FEB6EA0A21A5F78E5EFC /* UIImage+Metadata.h */, + 82BE74368C5F2A7F242BD28BC371113A /* UIImage+Metadata.m */, + A696AAE96A27A0204EC62503D9C54A30 /* UIImage+MultiFormat.h */, + A2BA8A1F668BD7BD669CDD5C82E79BE3 /* UIImage+MultiFormat.m */, + F764AD157B7427700B8719B4F001290D /* UIImage+Transform.h */, + 0FF4C616AD34D0D620D1E52915B79BC2 /* UIImage+Transform.m */, + C21CC33F7062D344DCF74D49BFC82A48 /* UIImageView+HighlightedWebCache.h */, + 22A573740B3FB668872A230C87084151 /* UIImageView+HighlightedWebCache.m */, + 6C15AACE8C1A4CE01F1702B4A85D8F83 /* UIImageView+WebCache.h */, + F1FEF3B975EB40C85B4437117CDAB598 /* UIImageView+WebCache.m */, + E75E45AA403CB6CF81289D56594E9D0D /* UIView+WebCache.h */, + A6715A810721B77E7BE0A4AD91B50BC3 /* UIView+WebCache.m */, + C1D414B35B3407CB5D3B3E3C506F187C /* UIView+WebCacheOperation.h */, + 3A5B5298BB8B463D2787721F7E6D0A22 /* UIView+WebCacheOperation.m */, + ); + name = Core; + sourceTree = ""; + }; + C33F5294942B37FFDD17BE85E97BDB75 /* UIBarButtonItem+DDCategory */ = { + isa = PBXGroup; + children = ( + B6D8E1F8AC4B30EF47D3CF88CC0E42BD /* UIBarButtonItem+DDCategory.h */, + 1F1C4B4E67B828556FE6962DA9D4F7FF /* UIBarButtonItem+DDCategory.m */, + ); + name = "UIBarButtonItem+DDCategory"; + sourceTree = ""; + }; + C38BA810016FAD6C9818221A5DE55C88 /* JPushExtension */ = { + isa = PBXGroup; + children = ( + C583E4533690CF512A7242D34B0BF7FC /* Frameworks */, + 1779690DFC30CD5959EC62FFEEC8A9A1 /* Support Files */, + ); + name = JPushExtension; + path = JPushExtension; + sourceTree = ""; + }; + C39C477D80C502D738E826C92FD5027B /* DDBaseAttributedString */ = { + isa = PBXGroup; + children = ( + B6486D49EA84BCC1A19B166BED7DD30E /* DDBaseAttributedString.h */, + 20A5A8739DE24B32F817BAE464B70DB5 /* DDBaseAttributedString.m */, + 4F840D0B344141E91276FE6EC52C14A1 /* DDBaseMutableAttributedString.h */, + F2CA57A46CFC866A1C016D2840494ABF /* DDBaseMutableAttributedString.m */, + ); + name = DDBaseAttributedString; + sourceTree = ""; + }; + C4C52ED4973EE7A81F4C087177D8F13E /* DDToastKit_Private */ = { + isa = PBXGroup; + children = ( + BB75C93DC6E154AF5443E4BB29955766 /* SwiftToast.swift */, + AC924CF8BAE0BC9DBACD42D4305CFFDF /* Toast.swift */, + 41EBADFBCDDC3F45E51EBA1DBCE3976C /* Support Files */, + ); + name = DDToastKit_Private; + path = DDToastKit_Private; + sourceTree = ""; + }; + C583E4533690CF512A7242D34B0BF7FC /* Frameworks */ = { + isa = PBXGroup; + children = ( + C48EC2893ACE2C94C0B57DFE8E52CE00 /* jpush-extension-ios-2.0.1.xcframework */, + ); + name = Frameworks; + sourceTree = ""; + }; + C69718FC1228ECC9E73DB5F2B1223068 /* DDBaseImage */ = { + isa = PBXGroup; + children = ( + D87581580CFB7BF2D5AEAB3645B785F0 /* DDBaseImage.h */, + C77A0B91DA4695A2E41E274FF0DF1817 /* DDBaseImage.m */, + ); + name = DDBaseImage; + sourceTree = ""; + }; + C8267F4CEEBDFEADB99DB6A4669545A0 /* Support Files */ = { + isa = PBXGroup; + children = ( + 9A09C744594080AF23CABD60C0D1EB2F /* DDBasicControlsKit_Private.modulemap */, + 0DBAD669B55F5B5B45C51263FB09D478 /* DDBasicControlsKit_Private-dummy.m */, + CF61DC111AFB61149808206846131342 /* DDBasicControlsKit_Private-prefix.pch */, + 88F1A1C94F3F0F671B170D9A362E330B /* DDBasicControlsKit_Private-umbrella.h */, + 6A8E86C9C7107E1193EC5E5218691467 /* DDBasicControlsKit_Private.debug.xcconfig */, + 19C8749E52978158169E1C3BF25DDB52 /* DDBasicControlsKit_Private.release.xcconfig */, + F439DCAB61B74717AAF2AFA9035EB1DC /* ResourceBundle-DDBaseViewController-DDBasicControlsKit_Private-Info.plist */, ); name = "Support Files"; path = "../Target Support Files/DDBasicControlsKit_Private"; sourceTree = ""; }; - CB8CA16390C87117D50C384DD9EFC550 /* UITableViewCell+DDCategory */ = { + CCE1731D2B0D61895927DA88DE42B711 /* Support Files */ = { isa = PBXGroup; children = ( - 7885C582CA0DAD89BB4113029267A8BD /* UITableViewCell+DDCategory.h */, - 6196488344B036441C1ACCAD3572102D /* UITableViewCell+DDCategory.m */, + 405C35063C37BA71EEBE9B61CF082CC8 /* CocoaDebug.modulemap */, + F46E7A0D25F83AAACAC784FEFAA65D51 /* CocoaDebug-dummy.m */, + BB1171B0FC8290731827608595F728F2 /* CocoaDebug-prefix.pch */, + D247E12CCF0B88203F756E2CB9CB6234 /* CocoaDebug-umbrella.h */, + 0448FF2AB119125D802AC2F5FA6D011F /* CocoaDebug.debug.xcconfig */, + D9FE3252CF8E8E98B9AB675FEF0AE538 /* CocoaDebug.release.xcconfig */, ); - name = "UITableViewCell+DDCategory"; + name = "Support Files"; + path = "../Target Support Files/CocoaDebug"; sourceTree = ""; }; - CBE229032E939B090C11A6B623721D29 /* DatePickerView */ = { + CD5E2A03BA3523B8DDBC8B72D7952460 /* UITabBarController+DDCategory */ = { isa = PBXGroup; children = ( - 16ECC0D3B40E75BBAF4C767C8E6723E2 /* BRDatePickerView.h */, - 42353E88E89417466723F475751271F0 /* BRDatePickerView.m */, - 453E2DBE50D1D69184A7D485305469B9 /* BRDatePickerView+BR.h */, - 7183D2C916A1DB66F9B83C9D6B323E6C /* BRDatePickerView+BR.m */, - 8B1B116F462AB50635839F9560874F34 /* NSDate+BRPickerView.h */, - D98A17E769637BA830304185E61703B1 /* NSDate+BRPickerView.m */, + DEBD310018522EBB8EE86243939BF08F /* UITabBarController+DDCategory.h */, + 9A1AA996EB8C98EB6740E1F2DB864E2E /* UITabBarController+DDCategory.m */, ); - name = DatePickerView; + name = "UITabBarController+DDCategory"; sourceTree = ""; }; CD5E8041AAAD071A930C2EBA4F6C866A /* Targets Support Files */ = { @@ -6502,23 +6603,16 @@ name = "Targets Support Files"; sourceTree = ""; }; - CE292EE0084A8D6194695FC3B95A4B90 /* AnnotationView */ = { + CEB2198EF3B8718F9FA7F0474D1ECA82 /* Trace */ = { isa = PBXGroup; children = ( - 2972545CEC4F4F9BEA12E5A7B532AC29 /* DriveRouteCustomAnnotationView.h */, - A085D6D9EF9515B07C9038B2470C49FC /* DriveRouteCustomAnnotationView.m */, + 9E2614393372F1373562F24552A34672 /* MATraceReplayOverlay.h */, + 69D9F6B1C1928E8F5130179690702C33 /* MATraceReplayOverlay.m */, + 0F47DDE3C1736961E81DFC21642B56E6 /* MATraceReplayOverlay+Addition.h */, + DB67D38AC26C1E33F0B2A67C4C7E10EC /* MATraceReplayOverlayRender.h */, + DE7523480013502D9F659C935024B300 /* MATraceReplayOverlayRender.m */, ); - name = AnnotationView; - sourceTree = ""; - }; - CEC451FC136B4179F371B995C556DBF3 /* JPushExtension */ = { - isa = PBXGroup; - children = ( - A974182254F967FEE3488F43CAE01ED6 /* Frameworks */, - 56C3B323A548037C96A51518C541871C /* Support Files */, - ); - name = JPushExtension; - path = JPushExtension; + name = Trace; sourceTree = ""; }; CF1408CF629C7361332E53B88F7BD30C = { @@ -6526,105 +6620,65 @@ children = ( 9D940727FF8FB9C785EB98E56350EF41 /* Podfile */, D89477F20FB1DE18A04690586D7808C4 /* Frameworks */, - 9BC3CA120795A436DCE629E4F65DF368 /* Pods */, - 891A6411A978773718ED3F5EFED01BAA /* Products */, + 145D0511F70C061CE1FD2DD8E46C46EA /* Pods */, + 63FE9F32703B49B39F824D28EF07ADA7 /* Products */, CD5E8041AAAD071A930C2EBA4F6C866A /* Targets Support Files */, ); sourceTree = ""; }; - D0B97388A9DCF9E3283920C0271FE30F /* DDCategoryKit_Private */ = { + CF613A4155D5768185A3345DFB8EA99A /* DDTransitionAnimation */ = { isa = PBXGroup; children = ( - E296FBA6F539F9A0A0AE37FE624E190F /* DDCategory.h */, - AE4DF3234E05873845101FE21396170E /* CALayer+DDCategory */, - 6E9DD8433769FB6C8B42AEA0D1332787 /* NSAttributedString+DDCategory */, - C2D24308A2773B8CD04FDF5737EFBD8F /* NSBundle+DDCategory */, - 09BE182760FF1A2466F777ECB134498B /* NSObject+DDCategory */, - 1D818E5F9910E545C9B68870704F8FC9 /* NSThread+DDCategory */, - 780E5770D266E09E2536DAFF2C6FFB0C /* NSURL+DDCategory */, - 0176DFC1FFBAA02F9FC45EBEBF8FD479 /* Support Files */, - C4809EC5ED0FEFD8B491D1EEADAA1A68 /* UIApplication+DDCategory */, - 181D4C99BEEA9ED4B3672FC0D74134F4 /* UIBarButtonItem+DDCategory */, - 470CCFE51441C86D2D08AB751625C01A /* UIButton+DDCategory */, - 4082C175BAA621F8EB1E8BC95A2B0159 /* UICollectionView+DDCategory */, - E32C598AFAD7792B8CE187B7379274E1 /* UICollectionViewCell+DDCategory */, - 1C14E8BC792121A3D946D35C95C51E44 /* UIFont+DDCategory */, - 2FCA70B773ED23FA375FDF53A3C0AE89 /* UIImage+DDCategory */, - 476476A024F7262B526A3B6B010692E6 /* UIImageView+DDCategory */, - 939318770443A1C437C404F19267986F /* UILabel+DDCategory */, - 17E8BF94F86C21BF407F4A6C3D17DF2A /* UINavigationBar+DDCategory */, - 5C8AFCC9667D6AF6F30785D064412B5D /* UINavigationController+DDCategory */, - 34563465E85E18F0E1F994399D3A0346 /* UINavigationItem+DDCategory */, - 15782C315F724AF25E97E04DBA186FF8 /* UIScreen+DDCategory */, - 2ECB9891CAE8009FFE43213A17B786BF /* UIScrollView+DDCategory */, - 1B1134BD98BABBFA10E582A5CDD1BC3B /* UISwitch+DDCategory */, - 0E820637FECB4C4E04B9764757FE424F /* UITabBarController+DDCategory */, - AC9A27E8B4629064AB379BB6BC6931DA /* UITableView+DDCategory */, - CB8CA16390C87117D50C384DD9EFC550 /* UITableViewCell+DDCategory */, - 028DAC21FDD79AB3C289C30794EDAA7D /* UITextField+DDCategory */, - D18E045DAF6B2DCECFAE6F657BF300D7 /* UITextView+DDCategory */, - B9095582A0FE6D90E49E60890F495548 /* UIView+DDCategory */, - E93315AC82C0FCF887F03038A8B3A773 /* UIViewController+DDCategory */, - 655D5D27CE84B22EE20502827237ACC2 /* UIWindow+DDCategory */, + 32C7A9E91D346601A6EFB63D978F7376 /* DDViewControllerAnimatedTransition.h */, + 9824951BF51B3BAF7431D329F0BA1DAC /* DDViewControllerAnimatedTransition.m */, ); - name = DDCategoryKit_Private; - path = DDCategoryKit_Private; + name = DDTransitionAnimation; sourceTree = ""; }; - D10BC9FFCB05F12A63CBAEB3E3866163 /* Annotation */ = { + D0760901476603B79C1FFB2B2E244511 /* Support Files */ = { isa = PBXGroup; children = ( - C7B817F0B1D35BB19782F2E91E72A446 /* DriveRouteCustomAnnotation.h */, - 358B5CD65E59043F8AF6D2CAEF071C1D /* DriveRouteCustomAnnotation.m */, - 4A4AA177AC349D3F364073D4D8C6FACC /* MAPointAnnotation+DDCategory.h */, - 9C15549DAD03703DBAAE22869AF1E47C /* MAPointAnnotation+DDCategory.m */, - ); - name = Annotation; - sourceTree = ""; - }; - D18E045DAF6B2DCECFAE6F657BF300D7 /* UITextView+DDCategory */ = { - isa = PBXGroup; - children = ( - 101BA43A219A5BE2A9512CA2CBA01CFA /* UITextView+DDCategory.h */, - 517FF0E71F768EBB97DE22D73FF7855B /* UITextView+DDCategory.m */, - ); - name = "UITextView+DDCategory"; - sourceTree = ""; - }; - D42F81935C8ACA5E18B047EEB7ECC6CC /* DDMAMap */ = { - isa = PBXGroup; - children = ( - D10BC9FFCB05F12A63CBAEB3E3866163 /* Annotation */, - CE292EE0084A8D6194695FC3B95A4B90 /* AnnotationView */, - 3E54D989CC3D8CE2F2369BD356268C26 /* MapView */, - 3FC64E4241E2B750149A44718CC2606D /* Overlay */, - 553A5195E4F17A19571901F57E2605C4 /* Sources */, - FEB0067A466BB92E9A5CA8BCD3D2A2AF /* Trace */, - ); - name = DDMAMap; - sourceTree = ""; - }; - D4B5C02ADECEC9A8441191E00AFE9BEB /* DDBaseView */ = { - isa = PBXGroup; - children = ( - C5881D7E7F84B8899BB379209F312C5B /* DDBaseView.h */, - 85B0C1487AD956814AD331EE8CE6EF61 /* DDBaseView.m */, - ); - name = DDBaseView; - sourceTree = ""; - }; - D746D3B6B4FDCA883AA01697D1E75505 /* Support Files */ = { - isa = PBXGroup; - children = ( - D197C63DCA5AB937249FE587E9D4D34B /* RxSwift.modulemap */, - 86C63B415DE41D86E7D0A0989C381719 /* RxSwift-dummy.m */, - 3B69AA78D4F51190B571429FE2E9467D /* RxSwift-prefix.pch */, - CDD5894896C6C3A31F6051550E5EE67B /* RxSwift-umbrella.h */, - E87FBFCC5258259589B5168F043DD703 /* RxSwift.debug.xcconfig */, - CC80F91D491ADBBE5E65009E499D4637 /* RxSwift.release.xcconfig */, + 74559A7ADF7153959B36D2B40BCCBEDF /* JPush-xcframeworks.sh */, + 52764AB3C28A4EE27E126C7FC5F6CAA7 /* JPush.debug.xcconfig */, + 69F7D752E9CB3E474A618873D9726AE5 /* JPush.release.xcconfig */, ); name = "Support Files"; - path = "../Target Support Files/RxSwift"; + path = "../Target Support Files/JPush"; + sourceTree = ""; + }; + D16841F6F40CB63B24B78FF4AE14E2BD /* Support Files */ = { + isa = PBXGroup; + children = ( + 5FA28EC377F0E913D32FA007441E1D25 /* SnapKit.modulemap */, + 96D0124AA5F9AC06B5B82DA289A5A267 /* SnapKit-dummy.m */, + 43C22CA73BBBBF6536060E4ED7BC9C2C /* SnapKit-prefix.pch */, + 38FCBB4F18C243D222179DF654AF8679 /* SnapKit-umbrella.h */, + 0C1779725409CB7336CC76B51231DC13 /* SnapKit.debug.xcconfig */, + BFEF8BD2165CCAA0515EF0DD78713060 /* SnapKit.release.xcconfig */, + ); + name = "Support Files"; + path = "../Target Support Files/SnapKit"; + sourceTree = ""; + }; + D2A4F0DC37948CA37ED22057AD38B975 /* AddressPickerView */ = { + isa = PBXGroup; + children = ( + 001670712EC3F2A39EE721735EBB25FA /* BRAddressModel.h */, + D524906AF89C104711EC3EAB52B1041C /* BRAddressModel.m */, + 6E2063E9191E5EAF488A97AD44F56C1D /* BRAddressPickerView.h */, + 56C5D14F912A842FD12DCB662E1DDD4A /* BRAddressPickerView.m */, + AD5DEFE07B31C13F3232390CFA5D153E /* Resources */, + ); + name = AddressPickerView; + sourceTree = ""; + }; + D86DA540AA7592347390C36B9AB4ACBB /* DDBaseTextView */ = { + isa = PBXGroup; + children = ( + FEA788EC7E9FAD535DC02D0DB63B550D /* DDBaseTextView.h */, + F77601C6B6E656F149C6EC74A7D781C9 /* DDBaseTextView.m */, + ); + name = DDBaseTextView; sourceTree = ""; }; D89477F20FB1DE18A04690586D7808C4 /* Frameworks */ = { @@ -6634,261 +6688,283 @@ name = Frameworks; sourceTree = ""; }; - DB06BC8FB1EF75BFC32CA0A2350B811C /* Support Files */ = { + DF09C41D2C40E7E2A963B122F3CE89E1 /* NSBundle+DDCategory */ = { isa = PBXGroup; children = ( - 2233D37B166CDE1A9EBF4D7BE151D4F4 /* AMapTrack-NO-IDFA.debug.xcconfig */, - 23F2720D5D8D372C6D896465F0822E96 /* AMapTrack-NO-IDFA.release.xcconfig */, + AF0609FBE231EEF7030E0A9346FF3F5D /* NSBundle+DDCategory.h */, + B8C194FB66589A3E472EFB4493C4FB65 /* NSBundle+DDCategory.m */, + ); + name = "NSBundle+DDCategory"; + sourceTree = ""; + }; + E0279366C4921C5697AFFD431A8B0309 /* Support Files */ = { + isa = PBXGroup; + children = ( + 1AF9FB3103A78D101D26013FE644A11C /* DDCategoryKit_Private.modulemap */, + D60FC33C250517DE39F2A4608A508001 /* DDCategoryKit_Private-dummy.m */, + 07A394118DE9B26AE0566436C547A814 /* DDCategoryKit_Private-prefix.pch */, + 53361A1564DD3D9163B8100ADD29FF52 /* DDCategoryKit_Private-umbrella.h */, + 0F7251723673525D2D0FD7FD55BDA311 /* DDCategoryKit_Private.debug.xcconfig */, + 215CC79531E391F07DE015AA33CFB2E8 /* DDCategoryKit_Private.release.xcconfig */, ); name = "Support Files"; - path = "../Target Support Files/AMapTrack-NO-IDFA"; + path = "../Target Support Files/DDCategoryKit_Private"; sourceTree = ""; }; - DE69309D41AB03D819DF5C6704CED1C3 /* Frameworks */ = { + E640CDE94B8FEDC1629BF0CE15263BB9 /* DDProgressHUDKit_Private */ = { isa = PBXGroup; children = ( - D570A4715592EEE0E84979749C4BDDB0 /* AMapTrackKit.framework */, + C46919322C3194F15F97B3B8646505B3 /* DDProgressHUD.swift */, + D9E08A8F6D5F1B59921743A703B65C31 /* MBProgressHUD.h */, + 80C8ACAACE13FFAE71DED543D61B41E7 /* MBProgressHUD.m */, + 8C9FCE26C3F83709AACFB898EED6C4AC /* Support Files */, ); - name = Frameworks; + name = DDProgressHUDKit_Private; + path = DDProgressHUDKit_Private; sourceTree = ""; }; - DEB7FFE04D69980F44E822028DADEFE4 /* Support Files */ = { + E6573895631C5007401D110EEF9939ED /* UIImageView+DDCategory */ = { isa = PBXGroup; children = ( - 5E422091EC1334823A5969CDFF288B31 /* DDProgressHUDKit_Private.modulemap */, - 865B6AC4E79A6431B9FD09B477FB4718 /* DDProgressHUDKit_Private-dummy.m */, - 2B78F51B3946A9A031199690F69ECC18 /* DDProgressHUDKit_Private-prefix.pch */, - 76D578C0BE9CEBA2BFE2B4810875599C /* DDProgressHUDKit_Private-umbrella.h */, - D381B861BA151A9E99E7710CEADE9E87 /* DDProgressHUDKit_Private.debug.xcconfig */, - 9FE6F650AAA3B78F63B7C65A0540DA04 /* DDProgressHUDKit_Private.release.xcconfig */, + E39FACA6E84ACD9E9587DCB289AAF448 /* UIImageView+DDCategory.h */, + 848DB5D0C7C456F4A754958F5F87BF49 /* UIImageView+DDCategory.m */, ); - name = "Support Files"; - path = "../Target Support Files/DDProgressHUDKit_Private"; + name = "UIImageView+DDCategory"; sourceTree = ""; }; - DFFEFEB2F1925711973CCFA33BAC849F /* SwiftLog */ = { + E6A84DE5F24DED7CE6D821BFFD5D3E02 /* OCLog */ = { isa = PBXGroup; children = ( - A08EC450545B78861A74D54F9D2EFC3D /* DDSwiftLog.swift */, - ); - name = SwiftLog; - sourceTree = ""; - }; - E0CFA07624587A7D9DE952063FDABCF8 /* Kingfisher */ = { - isa = PBXGroup; - children = ( - E21D8D01411C02735C3A0BA2492F2CC8 /* AnimatedImageView.swift */, - 8CEC83E3FE1F075140221AA6F63B7E62 /* AuthenticationChallengeResponsable.swift */, - 86526F623081F1A67842E1F5F0A8CBB3 /* AVAssetImageDataProvider.swift */, - C81C72778F38A61D245A434370E5D1A6 /* Box.swift */, - 09CFA82591686C7028E43270C4F3EA3C /* CacheSerializer.swift */, - 81B793EA726BF2868F82A12EC2414B49 /* CallbackQueue.swift */, - 781CCD3BD64AF4C147E8952BC37692AD /* CPListItem+Kingfisher.swift */, - 9728A65E132DD928650FAB3F3E116945 /* Delegate.swift */, - FB401CB82DC3A4E45142BA9EA2D52F0C /* DiskStorage.swift */, - 81DFE407607B1B8AA0B22CBCCF25836D /* ExtensionHelpers.swift */, - 6FF2323B35988A351F90FD8B446AE8CF /* Filter.swift */, - F08821A56E0A5E4D500BD8273D91CA63 /* FormatIndicatedCacheSerializer.swift */, - D73EEE7C2379E83FFD87CCEB168AA111 /* GIFAnimatedImage.swift */, - 154E45C0BE1CADEBADBEE06DF9CA0EF9 /* GraphicsContext.swift */, - 5761978907E40B3B5205F4B2B8A6075A /* Image.swift */, - AC272ADD01FE4B3D18880B8F07C02100 /* ImageBinder.swift */, - 188C6EACB7E2584CB733DD6BE41BDC51 /* ImageCache.swift */, - 7CE132A8EE75A412A93436A5ED731F8E /* ImageContext.swift */, - 5B18BF44CD2943B4A5AAE57B6A51E986 /* ImageDataProcessor.swift */, - 7C00FB65173E8117600A552931BF6148 /* ImageDataProvider.swift */, - A421E52F98B14ECDFBB67E9A812FCE8E /* ImageDownloader.swift */, - 3220E09C10AAE1A04BCEEEF41907571C /* ImageDownloaderDelegate.swift */, - F20DB9F526A3B38F836B3E6A8BA36A14 /* ImageDrawing.swift */, - BA7B537ACA6DC6BF03454F132D78D32B /* ImageFormat.swift */, - 2E9E15FA3C186EDC5CE285DB48F974F6 /* ImageModifier.swift */, - 771BDB819381B0B674CE810430D642CA /* ImagePrefetcher.swift */, - 151730D6FC8CF83F1C17AC553B0C4490 /* ImageProcessor.swift */, - EDAA0B1253B622ECC7C746224EEB6CF4 /* ImageProgressive.swift */, - C5F1A5A4EEE526A285DC0E1CFF378C60 /* ImageTransition.swift */, - FB2E873760448889F66931AB26A20359 /* ImageView+Kingfisher.swift */, - F211CF01C093A901789755B683A93957 /* Indicator.swift */, - FB28B91D4D5684FE11502B6F763B3D35 /* KF.swift */, - B348160C7E9EB1DCBA33905AF74E57A7 /* KFAnimatedImage.swift */, - ED5D7313DDF2AF7B74D24552B709D4DC /* KFImage.swift */, - EF358A72C03DF2042A5AE82F2F5667B8 /* KFImageOptions.swift */, - FB7A7F62DF2DCF5B91AE1D268B335171 /* KFImageProtocol.swift */, - 8D710AB4ADF18C65849A63C64DCD4E6F /* KFImageRenderer.swift */, - 0999442D076422FF5FD9C72F3D4FB4C1 /* KFOptionsSetter.swift */, - D3417B7FDC091AE661284928C1A8C3CD /* Kingfisher.swift */, - A001404B621A3E4DC543149601FBCE87 /* KingfisherError.swift */, - 6D458939D95D9D53D3701F201A804116 /* KingfisherManager.swift */, - 0647560CDEAF712BBF48C04E6A50395F /* KingfisherOptionsInfo.swift */, - A5BC6D46BCCA67E61F0FF9170157271B /* MemoryStorage.swift */, - 0F103FDCC8516D032638E57745D35DF7 /* NSButton+Kingfisher.swift */, - 39DF691B51141D7B3A22B912318A5C4E /* NSTextAttachment+Kingfisher.swift */, - E0F861D79898E92B47D4CC5145AD129E /* Placeholder.swift */, - 538A69E396D0AD70D723737157C20D0A /* RedirectHandler.swift */, - 3F35FF66B719C57EDC39C7FB87310FD1 /* RequestModifier.swift */, - A71EBDF84D07A3429959B43C98F3E31F /* Resource.swift */, - 12D3DCB0B672BF4B3DCFE638A28A65FF /* Result.swift */, - 7A319E43420D7EFBF3620F4F1CB18BA6 /* RetryStrategy.swift */, - 5B6256F3FDBC00731517EFC1093BF72B /* Runtime.swift */, - 8EBA1DEF61D3744DEFF5D0AD94F65584 /* SessionDataTask.swift */, - 2E0CBEE1059BA5738E7F12343ACDFE6C /* SessionDelegate.swift */, - 20837014B86FE653F877CA84BE4ED805 /* SizeExtensions.swift */, - 73AFC3B47EC25DF0EAA85A49EF5EFD69 /* Source.swift */, - B6AEFB9E177A6F8E48B40501F1FD2933 /* Storage.swift */, - B632FCD857AEE129D9F155ED47A47C29 /* String+MD5.swift */, - BF39CB461BEBFC6F78B130137EBDF594 /* TVMonogramView+Kingfisher.swift */, - 89455B4444697DB7E7BC32C6E339EA08 /* UIButton+Kingfisher.swift */, - EFAB5A98B5E8F377CC00A194AF9EAB76 /* WKInterfaceImage+Kingfisher.swift */, - 853301A1205C578345BBFFA4A73924FF /* Support Files */, - ); - name = Kingfisher; - path = Kingfisher; - sourceTree = ""; - }; - E18138DF9053220831D00042FEC15EAB /* Support Files */ = { - isa = PBXGroup; - children = ( - 540E0C51D872A6F23CEFF69692B2F2F0 /* ZLPhotoBrowser.modulemap */, - 748BA636A801A40B212E240C08F32BBD /* ZLPhotoBrowser-dummy.m */, - 9CB0A415A25BBB1F2E7E56C194144630 /* ZLPhotoBrowser-prefix.pch */, - A11580D30F6F60562E706A10CA180340 /* ZLPhotoBrowser-umbrella.h */, - B468C6887020692A16B239E034831DA7 /* ZLPhotoBrowser.debug.xcconfig */, - 5236D63B6005A96246ADC389EB51410B /* ZLPhotoBrowser.release.xcconfig */, - ); - name = "Support Files"; - path = "../Target Support Files/ZLPhotoBrowser"; - sourceTree = ""; - }; - E32C598AFAD7792B8CE187B7379274E1 /* UICollectionViewCell+DDCategory */ = { - isa = PBXGroup; - children = ( - 5A54B6088BCED0C9C01FCCA7D1D2EB07 /* UICollectionViewCell+DDCategory.h */, - 2D8A9DCC3AC5504DEC86005191B39191 /* UICollectionViewCell+DDCategory.m */, - ); - name = "UICollectionViewCell+DDCategory"; - sourceTree = ""; - }; - E6E741BC1CCFCECB88823C72A266B98A /* DDAutoUIKit_Private */ = { - isa = PBXGroup; - children = ( - 4D91FA6D9867405ABD722898FB7DEE22 /* AutoUI.swift */, - 6BE29686EF62875504C9F4E4AFBEF429 /* Support Files */, - ); - name = DDAutoUIKit_Private; - path = DDAutoUIKit_Private; - sourceTree = ""; - }; - E796CFBCE780A7D505BF8BB533068D62 /* DDBaseImage */ = { - isa = PBXGroup; - children = ( - 1232E43BDB0C44CA19091D9D8AFF18D2 /* DDBaseImage.h */, - B602D0318BAC325280725C4C565B7531 /* DDBaseImage.m */, - ); - name = DDBaseImage; - sourceTree = ""; - }; - E7D0C72D9900DB7D4F5F5DB953D32953 /* DDTimerKit_Private */ = { - isa = PBXGroup; - children = ( - 5923FE50F8448451704BDD1DDD01ECF6 /* GCDTimer */, - F6CC1DAA9592642A40F7C21C8F381E7C /* Support Files */, - ); - name = DDTimerKit_Private; - path = DDTimerKit_Private; - sourceTree = ""; - }; - E7F10FD158FC9F5B1951324036B3405B /* Support Files */ = { - isa = PBXGroup; - children = ( - 17E917C5F7A534F3587B9B9B3B1E9A06 /* CocoaDebug.modulemap */, - ADD2BFA76F0B8FEC45C1908583E1A7C0 /* CocoaDebug-dummy.m */, - 518187263882BDCBA7247F9FDD264DBE /* CocoaDebug-prefix.pch */, - 44B40EFD3699C7B461CD0DC0CAC6CF59 /* CocoaDebug-umbrella.h */, - 44A35ADC778A87691383B51002002BA3 /* CocoaDebug.debug.xcconfig */, - D5974C58854A55BDDB2637A6A24AD08E /* CocoaDebug.release.xcconfig */, - ); - name = "Support Files"; - path = "../Target Support Files/CocoaDebug"; - sourceTree = ""; - }; - E93315AC82C0FCF887F03038A8B3A773 /* UIViewController+DDCategory */ = { - isa = PBXGroup; - children = ( - D4BF90DBB17561EE449485B9F3961F7A /* UIViewController+DDCategory.h */, - 1DACDC37AE0B79F535F37A68C323BD51 /* UIViewController+DDCategory.m */, - ); - name = "UIViewController+DDCategory"; - sourceTree = ""; - }; - EAA7701F6AC3AFD63E378207373038A8 /* Support Files */ = { - isa = PBXGroup; - children = ( - 8449E6940351A240AE545DB47B557868 /* AMapNavi-NO-IDFA.debug.xcconfig */, - 7F57CC44A8509BF883418D42537ED136 /* AMapNavi-NO-IDFA.release.xcconfig */, - ); - name = "Support Files"; - path = "../Target Support Files/AMapNavi-NO-IDFA"; - sourceTree = ""; - }; - EC93B074FAAD9A2686E093968843A13D /* MapKit */ = { - isa = PBXGroup; - children = ( - 893799C0DA5C0059EE0027ECA794AD31 /* MKAnnotationView+WebCache.h */, - C00FD5E54A60B208AF0050C56BB16778 /* MKAnnotationView+WebCache.m */, - 2772E18A812044045E3CC46B4E83458B /* SDWebImageMapKit.h */, - ); - name = MapKit; - sourceTree = ""; - }; - EDCB6E7F32756D51C613DF8ED6EAD37A /* DDCollectionViewCell */ = { - isa = PBXGroup; - children = ( - ); - name = DDCollectionViewCell; - sourceTree = ""; - }; - EFA97E58589D5AB4262DF0F56DCF38D1 /* Support Files */ = { - isa = PBXGroup; - children = ( - 185970861F19BB4E06B96113EE5BD3E8 /* DDColorKit_Private.modulemap */, - 0FB88FEE804085AE4E892AF3189B178F /* DDColorKit_Private-dummy.m */, - DB0F95E48107D4A4A6B528B72852BAF8 /* DDColorKit_Private-prefix.pch */, - 7B5C9266030EDD7269A19B9B2861140E /* DDColorKit_Private-umbrella.h */, - D6DD9423507166D596B4E73021AF5BD6 /* DDColorKit_Private.debug.xcconfig */, - 756DBB4FC30229EAB896E02B5A47C586 /* DDColorKit_Private.release.xcconfig */, - ); - name = "Support Files"; - path = "../Target Support Files/DDColorKit_Private"; - sourceTree = ""; - }; - F0004F5BB48EEBFB78EAB44D6D434A84 /* DDMANaviManager */ = { - isa = PBXGroup; - children = ( - CC02B052F4C7F11AB56EC306A9C294C7 /* DDMANaviManager.h */, - 4833BCD0AEE159492AF1C430CBCE6D2C /* DDMANaviManager.m */, - ); - name = DDMANaviManager; - sourceTree = ""; - }; - F0124C6A341B7DADA2F13DF79B1841D6 /* OCLog */ = { - isa = PBXGroup; - children = ( - 321C95BEA3D10060E37B7CAFC48C79D1 /* DDOCLog.h */, + 4F949BDD3943AA2E03106E9CF3CA3FB8 /* DDOCLog.h */, ); name = OCLog; sourceTree = ""; }; - F0C3614F2AA6D0AAB8851D2B991A90D0 /* Support Files */ = { + E82823ACA3A05A59E9D3D6DCEBB11230 /* UINavigationItem+DDCategory */ = { isa = PBXGroup; children = ( - DBDE4BD4B34C4F639B69D9094F4AE157 /* DDToastKit_Private.modulemap */, - A3C21D5A0E990B1A2C498BE9E6C45FBF /* DDToastKit_Private-dummy.m */, - F86F53707E8AF6A8B619AA6DC9507953 /* DDToastKit_Private-prefix.pch */, - 13B63568EDA5F30E8939E06D4087447C /* DDToastKit_Private-umbrella.h */, - 9D58D356148C79B09B8D016260211D35 /* DDToastKit_Private.debug.xcconfig */, - 9B0D3706EBC13833D2ADECC39B85676C /* DDToastKit_Private.release.xcconfig */, + 73C8A6AEE4F8853B589A90026FA41920 /* UINavigationItem+DDCategory.h */, + DA6D1F3BDA26F9D8031D18A9709FD89E /* UINavigationItem+DDCategory.m */, + ); + name = "UINavigationItem+DDCategory"; + sourceTree = ""; + }; + E9007A995FCD6531F78C05FEB4357F6C /* ZLPhotoBrowser */ = { + isa = PBXGroup; + children = ( + EEB15F1D247A5299F4221B8E10AE4302 /* Core */, + 257320AECD1028677301FFE651C25B51 /* Resources */, + FC30EAF31C86A4F1C279602D64702272 /* Support Files */, + ); + name = ZLPhotoBrowser; + path = ZLPhotoBrowser; + sourceTree = ""; + }; + EA674487E0C08A47D2841A8D8987896D /* Frameworks */ = { + isa = PBXGroup; + children = ( + 8642B48A87092D18ECF0377EC12902E7 /* AMapTrackKit.framework */, + ); + name = Frameworks; + sourceTree = ""; + }; + ED0F9FD909A0E02E571693106CA8E43A /* Support Files */ = { + isa = PBXGroup; + children = ( + 7395394A22CCFDEE822231B7E965079C /* SwiftEntryKit.modulemap */, + DC9FA6863ED2B892306F22C7D733FE69 /* SwiftEntryKit-dummy.m */, + D6FA7BC08E5B083E87699220DD556439 /* SwiftEntryKit-prefix.pch */, + 39C8F042547087254A7B56A7E6B4266A /* SwiftEntryKit-umbrella.h */, + C86E3F1BE15F9CC036B382A36B709505 /* SwiftEntryKit.debug.xcconfig */, + 325B30380D5C72F7F127B8CAE5EBBD48 /* SwiftEntryKit.release.xcconfig */, ); name = "Support Files"; - path = "../Target Support Files/DDToastKit_Private"; + path = "../Target Support Files/SwiftEntryKit"; + sourceTree = ""; + }; + EE13459A66A2C62C0065E07BF7F97C46 /* CocoaDebug */ = { + isa = PBXGroup; + children = ( + 1FE523C27B8C9BFD06423E88B0B27AEE /* _AutoLaunch.m */, + DB7B6A55DD89339221BAD8B2FC088B99 /* _BacktraceLogger.h */, + A5F19476E2181D453018ACC203C152C3 /* _BacktraceLogger.m */, + 939CF4A9BEE41EA69945E3B684423A02 /* _CacheStoragePolicy.h */, + F93C99D6D77833DED970D1B8B72D7689 /* _CacheStoragePolicy.m */, + 71965EEE4DDC125CD5C4A68CF9CD0E01 /* _CanonicalRequest.h */, + 5399B48F97E6FE08BC78D9E04015FEFC /* _CanonicalRequest.m */, + 4CD0705B92F63E54791C683AE123B70C /* _CrashModel.swift */, + 843FCA2465DA170122DB012FC72AD2E1 /* _CustomHTTPProtocol.h */, + 1CA760423511FDC0AB4B4C76BD0A5844 /* _CustomHTTPProtocol.m */, + C02E791F140CA6B6CC8B66E945F3F7FA /* _DebugConsoleLabel.h */, + C2E5FCEE6148423F6B366AEE19AB67B4 /* _DebugConsoleLabel.m */, + 2F13DD16495EEB7383D65B0DE3777908 /* _DeviceUtil.h */, + 72F4DF64ECB98FA5FB17009AFA6CE020 /* _DeviceUtil.m */, + C1A659BA3E9B3B83261C34A4F724A4EA /* _DeviceUtil+Constant.h */, + 781C4E7E6AF60BABFF5D86D53499F39D /* _DeviceUtil+Constant.m */, + DBE5220C9408E2E3F2303535F96F7160 /* _DirectoryContentsTableViewController.h */, + EAFED137EE9193DC78FAA2ACEBAF9F73 /* _DirectoryContentsTableViewController.m */, + 56AFB8A10E65E409B93276FE92953C0C /* _FileInfo.h */, + 36DD633CBB453439EE0F54994386CCD4 /* _FileInfo.m */, + AE6BA4D7D7E9A9A3D637F00B05FFF8B0 /* _FilePreviewController.h */, + 0A5FA45F1AAFDC0987C87FDCB4EE5926 /* _FilePreviewController.m */, + 34C3553AF01E9B43887AAFA045BEDDEC /* _FileTableViewCell.h */, + E06B52686A0003825F716073DE4BDAD6 /* _FileTableViewCell.m */, + 73BC5FEAB4653A7F1F7AA023303CD131 /* _fishhook.c */, + 027120507F2AA7430737482FA5BE5C56 /* _fishhook.h */, + DA4FCB301911D04CC242320EAC14CF8B /* _HttpDatasource.h */, + EEA008A28BDF010E2D0CE9198AD28F33 /* _HttpDatasource.m */, + 1FFEB9DBD101C979A602281F0268717E /* _HttpModel.h */, + 6550115578678499806D9C6CDBCC1165 /* _HttpModel.m */, + 32C9F0A42AD073DAFC7CBD5FA97A23CD /* _ImageController.h */, + 445264F16A403F50D4B8A68C351262D4 /* _ImageController.m */, + FC17DCA805CCC35691BD7180B96E98EF /* _ImageResources.h */, + 6D22B3FF18B2F4B35F8FD432C11F8AE8 /* _ImageResources.m */, + DBCD7891F2C9FBF26C01A4B606D572EA /* _NetworkHelper.h */, + FC7F7AB4BB5377E9AD1204B0016F64CD /* _NetworkHelper.m */, + 044FE985399F1BA9631A1C6C4165BFB0 /* _NSLogHook.m */, + 0AF1A76F33B4E63B165CE5FA5B91A130 /* _ObjcLog.h */, + A9F2F3261724B3F01C84AEBEE79B3A5C /* _ObjcLog.m */, + ED9DAB700B164AD30E46AC170A2410A4 /* _OCLoggerFormat.h */, + CB4C7C32EA8F4E1761CC1FBA38460899 /* _OCLoggerFormat.m */, + FBFDD0D64101201EE491C7BA636B9FB8 /* _OCLogHelper.h */, + 86EB5FDB69E5179C09A86499193976E4 /* _OCLogHelper.m */, + 13870762528D274783144041A9EBF362 /* _OCLogModel.h */, + D6D76D8308027749FBA599D6DD35FF64 /* _OCLogModel.m */, + 0A5D0C6FEDD9950013E14A77FFE66FBD /* _OCLogStoreManager.h */, + A3640CEBA7C26A87777F2D7DA97B842C /* _OCLogStoreManager.m */, + 814C59B6A543515D5E5A52A2F254C566 /* _QNSURLSessionDemux.h */, + 38181F4D4881031FED8569880510FE53 /* _QNSURLSessionDemux.m */, + 2ACBDEC4BFB5FD6C1AB0C2D6A6B69E53 /* _RunloopMonitor.h */, + BFE7A470772C4DE2120B74453CED919B /* _RunloopMonitor.m */, + 6AD9B63E813BEC6DAB08FC2E89381A8B /* _Sandboxer.h */, + 9D4197BFCAA16F893B016E2417DF1E96 /* _Sandboxer.m */, + 13DB71A2DF2E8847BAA487208E1D3E1D /* _Sandboxer-Header.h */, + 0016C6F4A8BBEB08CDA6E3A5420B10EE /* _SandboxerHelper.h */, + 18328C1F6B0BAD912D7D90C9B6A664DD /* _SandboxerHelper.m */, + D3BEE0CC8874A662DC27CD4C64EAB17E /* _SwiftLogHelper.swift */, + 0C3C57E1D47F5EC93E2ED3B931584C60 /* _Swizzling.h */, + 0CA1A9F98A8858536FD425DCC916D7C3 /* _Swizzling.m */, + 5FCF98AE71E6A3E6673483E6A4FC3A23 /* _WKWebView+Swizzling.m */, + FD2B6D03DCF0FE0B116574665E976576 /* AboutViewController.swift */, + 763152F9DFFFA3E497E7E5A78A48D4D8 /* AppInfoViewController.swift */, + 5C46F650C2A76EDC259A690248952D92 /* Bubble.swift */, + 7E6D64A51BE9F7D0FA4FB32BE21261A8 /* CocoaDebug.h */, + D306A841BCA7CA90D31C854E3CCCBCA3 /* CocoaDebug.swift */, + 9DC09D51BA50A7C238B68B28BEB3003F /* CocoaDebug+Extensions.swift */, + 9D68874A644FA29FB42E9E2F120E3CBC /* CocoaDebugDeviceInfo.h */, + 813DB8DD6BD880C1B5E806A22B6F42EC /* CocoaDebugDeviceInfo.m */, + 72FA0FFEEFE3F7F42E7D310F550B221C /* CocoaDebugNavigationController.swift */, + E0511BA3A4FD667D6EA75BCA365DB4F4 /* CocoaDebugSettings.swift */, + B51F37A7C344BD675F51BF2342A159E3 /* CocoaDebugTabBarController.swift */, + EEB0A50A51632AAD00B9054793B6AEFB /* CocoaDebugTool.h */, + 85B8A6A8D283A88E3300EC465EB6E518 /* CocoaDebugTool.m */, + 8E6B6514FBE643036EC134A7A169EFC7 /* CocoaDebugViewController.swift */, + BBC7DD37E331F07920058DC251372F58 /* CocoaDebugWindow.swift */, + 1662D3E1ADCC2F18FBE1C92945D63F2A /* Color.swift */, + 66EF4E191F7DF14578C38280FBB5220C /* CrashCell.swift */, + 287FF81E0535DE3C8714ACC342C0C50B /* CrashDetailViewController.swift */, + 1A8EAF636BB07C51C4ED55F239858CD3 /* CrashListViewController.swift */, + C2F72650742E2BCFFB3A938D1D5BC6CE /* CrashLogger.swift */, + 6AF54F588087A23BC4F637803DEEFC96 /* CrashStoreManager.swift */, + 803551E564583D1475806B002F6E6763 /* FPSCounter.swift */, + A1833E092E6E2C7CB2FEC9DB0539405B /* GPBMessage+CocoaDebug.h */, + 23FC7EB2D5A56E98EE7EF219D746E075 /* GPBMessage+CocoaDebug.m */, + 2D784F0B890FA08BEE1A9B1AA1F26F22 /* IgnoredURLsViewController.swift */, + F59BDF168F05078C91584ED7B66DDCDB /* JsonViewController.swift */, + 89CAB46D7724F7F1AC3DC4EB8C0993B2 /* LogCell.swift */, + D89CE207A9418AA4AB812BE98C43EA68 /* LogViewController.swift */, + 1D77E535ED65AE14BACCC1953284630C /* NetworkCell.swift */, + D20CE1ACC6D5D487937C7AD9114FF6CC /* NetworkDetailCell.swift */, + D8CC044D31EE8821B7EDADB1B86C09DD /* NetworkDetailModel.swift */, + 75E9D2C6B1F009CBAB091818A4F6FB70 /* NetworkDetailViewController.swift */, + A0D016D448D4891CC0E17A93392E37DD /* NetworkViewController.swift */, + C55EF4C677FFAD1988C1DB196ED25503 /* NSObject+CocoaDebug.h */, + DBCCB47A684BC2C8E34FD72CB4E35A85 /* NSObject+CocoaDebug.m */, + 9F4E84F353F8A733EB01D44C6EBDF1BB /* UIBlockingBubble.swift */, + AF00DB45CF5FB56573C940FDCC1E6811 /* WindowHelper.swift */, + 762CFD14D9B044A621F6ADF4BC98C099 /* Resources */, + CCE1731D2B0D61895927DA88DE42B711 /* Support Files */, + ); + name = CocoaDebug; + path = CocoaDebug; + sourceTree = ""; + }; + EE27D751C51AFF1D146CA87A99D30B55 /* DDMALocation */ = { + isa = PBXGroup; + children = ( + E20517175479DD20B2E216370A28A2F3 /* DDMALocationManager.h */, + 2F5C6384B92BDC0EF9898E50D396EBB9 /* DDMALocationManager.m */, + ); + name = DDMALocation; + sourceTree = ""; + }; + EEB15F1D247A5299F4221B8E10AE4302 /* Core */ = { + isa = PBXGroup; + children = ( + E7844759027C8AE2F479CB69445BA702 /* Array+ZLPhotoBrowser.swift */, + A49FDEAF283DC95FC4EC2DDBA29CAED3 /* Bool+ZLPhotoBrowser.swift */, + E4FAAE48DB67CBAF8A1E8BCE45E38575 /* Bundle+ZLPhotoBrowser.swift */, + 75F08EBA33E8D2991376A8BDB0511D2F /* Cell+ZLPhotoBrowser.swift */, + 8B84E4EFC4CC7D7ACF787153E297D875 /* CGFloat+ZLPhotoBrowser.swift */, + 8C324819CC6F2918CE489CA913C8649E /* NSError+ZLPhotoBrowser.swift */, + C7377BEF232207DDCBA57EAFD1A14E09 /* PHAsset+ZLPhotoBrowser.swift */, + 355B205914EB41526BE542CC4950AAB0 /* String+ZLPhotoBrowser.swift */, + A1DDAB8D0629FC240E603E8B48A73673 /* UIColor+ZLPhotoBrowser.swift */, + 7BEF8797252485997952F3222D9EC8D9 /* UIFont+ZLPhotoBrowser.swift */, + 9BAD4D015F9DEEACCA44BE222487C45D /* UIImage+ZLPhotoBrowser.swift */, + E834AFE539764C6862EE8A75974B5248 /* UIView+ZLPhotoBrowser.swift */, + A892C98B23F76A782A835779016E9B80 /* UIViewController+ZLPhotoBrowser.swift */, + 38C7BA52C91D83BC5564C138AC50CBB7 /* ZLAddPhotoCell.swift */, + EF917127A706BE5056DB0757BB0D3027 /* ZLAdjustSlider.swift */, + 9FFDCA6EA7DD6D1F48F6E6A470D82866 /* ZLAlbumListCell.swift */, + 0354999CC73AEBB06AAB20526A5CA34C /* ZLAlbumListController.swift */, + 988019CE36140771910B8380EF9A2813 /* ZLAlbumListModel.swift */, + 1558B92E463EDCFB3725BFBD17A1182D /* ZLAnimationUtils.swift */, + 492BF29EF10B1A80C58592E2008A8013 /* ZLBaseStickerView.swift */, + ED0FE5A880681595C6E294B2ADB60F3E /* ZLCameraCell.swift */, + E2D4411A906BBB354B22870DF7ED95FF /* ZLCameraConfiguration.swift */, + D6C3A417AFBEF6CC7DD4BD115B73ED05 /* ZLClipImageDismissAnimatedTransition.swift */, + 76EBD55EC0FCF574FF898649700156EE /* ZLClipImageViewController.swift */, + 39F0E7887DD9D433D8702497A0BFBF27 /* ZLCollectionViewFlowLayout.swift */, + E31F2CEFB0E70699BE43F5BC30BAFD3A /* ZLCustomAlertProtocol.swift */, + DF6F453087254DD657F3996143CB98D1 /* ZLCustomCamera.swift */, + 50E020A3CE33380E2A7F634370C52CD2 /* ZLEditImageConfiguration.swift */, + AABA9A29FA41942EA4E8B69A3FBFDF24 /* ZLEditImageViewController.swift */, + BBDCD87DC61283D1F31DE4DD94BE4816 /* ZLEditToolCells.swift */, + BFD6DE4A3D47DB649FA0D0A6D1E9E03C /* ZLEditVideoViewController.swift */, + E9B2C7AE73494811CABD819BB44BD0D5 /* ZLEmbedAlbumListView.swift */, + 17EB3E1E4C05BE5D30ED569F9A951451 /* ZLEnlargeButton.swift */, + 5BA83150AFAB94445D85A02CD913530E /* ZLFetchImageOperation.swift */, + 7ACF3BE2D005EC372D66C6860F5DFE67 /* ZLFilter.swift */, + 0334D58B2D51FF01D3196F736BA41C10 /* ZLGeneralDefine.swift */, + 74DA4AED3A5D60302C79996DFC5C5F05 /* ZLImageNavController.swift */, + A710DC9527A7E25C65D9858FFB332F12 /* ZLImagePreviewController.swift */, + 2A758DA2AB2E74B049A5AA789BA8EFA2 /* ZLImageStickerView.swift */, + 6F1147DC218281F5558B317E12C41384 /* ZLInputTextViewController.swift */, + 82B5BC0A08A3DEF74E8E225B365F9B6C /* ZLLanguageDefine.swift */, + 44F6B0D0520CC6DB5A81C4D43CE40F18 /* ZLPhotoBrowser.h */, + 75E1414EAAA001BFFD7FC6793522CD46 /* ZLPhotoBrowser.swift */, + BB0C6995731811C85FE13FE3685E6968 /* ZLPhotoConfiguration.swift */, + 538F2A1DC0BE5BF1B10C405C9316342C /* ZLPhotoConfiguration+Chaining.swift */, + 2CCA5C8C7B7BC8507124A50FE7913A08 /* ZLPhotoManager.swift */, + 9B811D8CEF738968C173A506E719FB78 /* ZLPhotoModel.swift */, + 921A85E91364FA6A782EEC183AA278FF /* ZLPhotoPreviewAnimatedTransition.swift */, + D6FABDEB118D3EB7C83C9F297B318F44 /* ZLPhotoPreviewCell.swift */, + C9A45BD2674AB179D8018709758B0E2A /* ZLPhotoPreviewController.swift */, + CC037D082FC50C40CC2AB75FB80B1212 /* ZLPhotoPreviewPopInteractiveTransition.swift */, + 5D694D7909F723613936603B94F11155 /* ZLPhotoPreviewSheet.swift */, + BD6C032039F0BCA60ACAA4D98260E90A /* ZLPhotoUIConfiguration.swift */, + DBBD2ED3AF3275E2FFD63AB752166430 /* ZLPhotoUIConfiguration+Chaining.swift */, + 8998210DD053A5D1D1BC93BBB932A43E /* ZLProgressHUD.swift */, + 468424AFB716A419EDBBC02841EB0BE5 /* ZLProgressView.swift */, + CC0E980499AA4DCAB21A9D053F491BA1 /* ZLResultModel.swift */, + E3BE15B5AF54608AC9FDBD936D1CD507 /* ZLTextStickerView.swift */, + 4780899C9E192363C43E66775A37F41D /* ZLThumbnailPhotoCell.swift */, + D4D32829D54A1ECAE44AE1433ED7CD8A /* ZLThumbnailViewController.swift */, + 3EC07E2E6CC66DED2E6B849B9836D440 /* ZLVideoManager.swift */, + 5FB2AA3BD1F50E2533FC72EDA308AC57 /* ZLWeakProxy.swift */, + ); + name = Core; sourceTree = ""; }; F117CF72F55448484F5E8509956D04E8 /* Pods-OrderScheduling */ = { @@ -6907,194 +6983,169 @@ path = "Target Support Files/Pods-OrderScheduling"; sourceTree = ""; }; - F205041505EB8A90303C170186F4BC10 /* JXCategoryView */ = { + F1BAB6B14699A8DD85DADCE0C09853D2 /* UIScrollView+DDCategory */ = { isa = PBXGroup; children = ( - DB9377FE70E725C2C1E493810F3BA068 /* JXCategoryBaseCell.h */, - A1D1F9269ED245A4060838FC64C0EFD6 /* JXCategoryBaseCell.m */, - 49B7952684F896A003E108E70DF91956 /* JXCategoryBaseCellModel.h */, - F482B1C2C73FFF874AE556F103F88CEF /* JXCategoryBaseCellModel.m */, - E7C57BDE8A9E05D4473E292878C389EE /* JXCategoryBaseView.h */, - DCDD240DAB2ED34D8A4CD53168F9BDD9 /* JXCategoryBaseView.m */, - 212B9A2074CA3A4C569848F43F231422 /* JXCategoryCollectionView.h */, - F90790C47C135AE0444CF99A772403D5 /* JXCategoryCollectionView.m */, - CEBED202A7BD7E7708D1FC31CB41087E /* JXCategoryDotCell.h */, - 14273F123143D24A7722E7D9B42F8603 /* JXCategoryDotCell.m */, - 5516F323B3A55805B7B3EFA0946D5480 /* JXCategoryDotCellModel.h */, - 524F46A9F6889CEE8D73251AB30A8381 /* JXCategoryDotCellModel.m */, - C96592885CC91699D7E5BD46D63EF556 /* JXCategoryDotView.h */, - E2718275ADFFF64A9A0871517DB8D573 /* JXCategoryDotView.m */, - 2319E9D032E14A9232C25E185CD6CB00 /* JXCategoryFactory.h */, - 3853D5CF922CD8EB18CE431AC90984E6 /* JXCategoryFactory.m */, - 48234D24B34FFEB1DA5AF06966A996BD /* JXCategoryImageCell.h */, - 818BFF10A86DCBFD7E78B9D191A7FA07 /* JXCategoryImageCell.m */, - 4EE5A847C0EEF4327C5B431761A95008 /* JXCategoryImageCellModel.h */, - 30115739D9B44BC4F80115251FC946C6 /* JXCategoryImageCellModel.m */, - 9239B4C0496A617A9620875EEB15FC28 /* JXCategoryImageView.h */, - 91BE97B7EE46151C893D4477A8BB208A /* JXCategoryImageView.m */, - 16B6A2489CB5A950A2C801A2E5EAAAA7 /* JXCategoryIndicatorBackgroundView.h */, - A1372B6FD4992423C989D048B7B254D7 /* JXCategoryIndicatorBackgroundView.m */, - BAAE5CB7E3D91D0E7CEA4A5DB8A60770 /* JXCategoryIndicatorBallView.h */, - 05F0DDEFEDC101C1B551BFFCEFDB6EED /* JXCategoryIndicatorBallView.m */, - 6E33EA1EFEB3F23C4876B6037110C33A /* JXCategoryIndicatorCell.h */, - C1ADAAB3970FA6481E07A5084A787A43 /* JXCategoryIndicatorCell.m */, - 5DA76EABCB8A2A26D4BB71B75494D53A /* JXCategoryIndicatorCellModel.h */, - 6437AB027A54C2697BF41263053645DB /* JXCategoryIndicatorCellModel.m */, - B7B8AC8FD05227A7706C9924589F65E6 /* JXCategoryIndicatorComponentView.h */, - 25AF0436F289FF57323A476C034B9BFF /* JXCategoryIndicatorComponentView.m */, - 62CA9A5C52588ED7F851276E4F89E634 /* JXCategoryIndicatorDotLineView.h */, - B2FD130A08897D167F3277A7F0EDC8A5 /* JXCategoryIndicatorDotLineView.m */, - 72488E372D48DC0B101CFFDD62C67442 /* JXCategoryIndicatorImageView.h */, - C9BB8B1534A0B12465A4D4C880096A89 /* JXCategoryIndicatorImageView.m */, - 67BFFF7585BFDED453DE75404B9B7F84 /* JXCategoryIndicatorLineView.h */, - E1A5FB9FF190E6A851E6D730E9469DAF /* JXCategoryIndicatorLineView.m */, - 1CB418DA7591416A070F2A818D795694 /* JXCategoryIndicatorParamsModel.h */, - 9E0391D90377F07B8EDDE30561E44315 /* JXCategoryIndicatorParamsModel.m */, - D0B00371094CE7CBDB73BF685DE96DF1 /* JXCategoryIndicatorProtocol.h */, - CE8846EB6BEA4CC3D234394477030FC7 /* JXCategoryIndicatorRainbowLineView.h */, - D1541D7DB829A5E16C5155B203092B50 /* JXCategoryIndicatorRainbowLineView.m */, - 6C7E7887A742E8BAEB6044A851419E76 /* JXCategoryIndicatorTriangleView.h */, - 779AAA7B8EDB56F30BE69CCAAF6E993C /* JXCategoryIndicatorTriangleView.m */, - 94DAEBA6CBB7F5BABA7EA465B1C6B966 /* JXCategoryIndicatorView.h */, - F1BF2A96F7FDBD7D50B7928CCD6F8DD7 /* JXCategoryIndicatorView.m */, - 96B999BF4D1A52EB36105C24F082066F /* JXCategoryListContainerRTLCell.h */, - D687FDDFD23A0A85F3880EAC2B88A600 /* JXCategoryListContainerRTLCell.m */, - 795BABA3E090FCAE894E859604191700 /* JXCategoryListContainerView.h */, - 98C04D2A7DBE183DEA1F1A61CB4E5981 /* JXCategoryListContainerView.m */, - 6A96BB967850E795C4EF42387D8E911D /* JXCategoryNumberCell.h */, - C7BFB8E2E8D1F654EB03852A80F0368B /* JXCategoryNumberCell.m */, - 596B722D47441F89B6F2FDFD7115F947 /* JXCategoryNumberCellModel.h */, - 7C839126F5B2B998CFB6031E3669DF31 /* JXCategoryNumberCellModel.m */, - 4CCCE44CDB43F58EC88EFE06F30841BB /* JXCategoryNumberView.h */, - 72136FE9A7AEC123D32FCCC4C4EC5834 /* JXCategoryNumberView.m */, - 40431C03335832035DE8BF9F1640403C /* JXCategoryTitleCell.h */, - 809BE02D615342E82B664742613081D4 /* JXCategoryTitleCell.m */, - BC9B81DCD65AE99490C8ACF70EC22DE4 /* JXCategoryTitleCellModel.h */, - B1412F6F593B15CBD64B3A687268DA61 /* JXCategoryTitleCellModel.m */, - 6A503857E0BC831498C5163C0D136B14 /* JXCategoryTitleImageCell.h */, - FCB33CD0B1C8C0AECCB4E5F57F1D7B70 /* JXCategoryTitleImageCell.m */, - C23B4CC24C808BA2FE10E907CED7274E /* JXCategoryTitleImageCellModel.h */, - A5CDDAEB637B3784898348A1C48D1D9A /* JXCategoryTitleImageCellModel.m */, - 13B1CD4319F8067CF9F913BC73920FBA /* JXCategoryTitleImageView.h */, - 7CE08E4FBC8AFB41B12299985491D4DC /* JXCategoryTitleImageView.m */, - 35B93DA72DAAC889111F0ED6EBD3FF5C /* JXCategoryTitleVerticalZoomCell.h */, - 87CDE2205C411533A11F4AEA934BE8CD /* JXCategoryTitleVerticalZoomCell.m */, - 1AD8ADA2385F1DD40A81D6F599FE25E3 /* JXCategoryTitleVerticalZoomCellModel.h */, - 29EF1E2B0028402084A2F8EC3430C4D5 /* JXCategoryTitleVerticalZoomCellModel.m */, - 8AA46A37A971F21B0E5E6A09D667D040 /* JXCategoryTitleVerticalZoomView.h */, - 385D1C4A91ECE9861B0ABE8AB7D7DB3B /* JXCategoryTitleVerticalZoomView.m */, - 27E7547FF32E8AA84FD9515027533089 /* JXCategoryTitleView.h */, - 3DFA3965761E63F085264D3A5760D1A8 /* JXCategoryTitleView.m */, - 46D9CF529727975EEE6A5B0B8500939D /* JXCategoryView.h */, - E4F3EC9EA0148ABA9D63CFA7ACD8D0F0 /* JXCategoryViewAnimator.h */, - ABFB7361AA46167688BEEAED04D98165 /* JXCategoryViewAnimator.m */, - 312E4EFB5D10B7E6432A7C7B75B6A4B3 /* JXCategoryViewDefines.h */, - 9DA5859524B9EFF17D75560BCF7480FA /* RTLManager.h */, - BDAE12D9054CD6B28807605DF9C5BE14 /* RTLManager.m */, - 7CA332AB095C0D0C670BDAD4256FCEB7 /* UIColor+JXAdd.h */, - FCACFF4ACFBAD5C14E11052A48CA179B /* UIColor+JXAdd.m */, - 2F477BDE1CE47FFCC27ECE6E7AFF9064 /* Support Files */, + 9ED517D8551A05FB319503D5EBE74D44 /* UIScrollView+DDCategory.h */, + 8661D5A1AA78E3225C2217E5CD97109C /* UIScrollView+DDCategory.m */, ); - name = JXCategoryView; - path = JXCategoryView; + name = "UIScrollView+DDCategory"; sourceTree = ""; }; - F3E2DD93D3DD40572D715A4643DE7D0A /* Frameworks */ = { + F21E3D3B2104095FD2B0EA3BE749C988 /* SDWebImage */ = { isa = PBXGroup; children = ( - A00B0513D7257538A1BF7703F35AB16A /* AMapNaviKit.framework */, + C33B3565D4D9A610EB490890596F5BA2 /* Core */, + 89723FC8072F87BB3BC441A0847216E9 /* MapKit */, ); - name = Frameworks; + name = SDWebImage; sourceTree = ""; }; - F5000B67E991B3874602F4AD0C864591 /* DDBaseTextView */ = { + F2667B56D10A337FD2D401A2300C56E4 /* Base */ = { isa = PBXGroup; children = ( - 12B1631BFE36A7793E242EFEEC05E3D2 /* DDBaseTextView.h */, - E9D29B91C8B7ED8F438AB517FC180810 /* DDBaseTextView.m */, + E3D03BAC0E6AEA54D0D773EA9DBEEC1C /* BRBaseView.h */, + 33E5CCEAB5526862A8A29B3035E9EBC2 /* BRBaseView.m */, + 49DCAF1A4596E4ED086FAA5BA57FD9BA /* BRPickerStyle.h */, + AB0D7793FD5B01DCB6199C9FC8AE4B8F /* BRPickerStyle.m */, + A83EFE5C3D04F06142F598E39C9F0272 /* BRPickerViewMacro.h */, + 996660F3AEBFE9B0C55581213B9E8EFE /* NSBundle+BRPickerView.h */, + 12D5E3E7F68E95CA0ADB60461DCD772F /* NSBundle+BRPickerView.m */, + 36742CB3910BD465EDC7BC4DF1EE01F5 /* Resources */, ); - name = DDBaseTextView; + name = Base; sourceTree = ""; }; - F51F6C309E26DD36254D4F9E833C206A /* DDLabel */ = { + F2AB144A80BA475615B044F74F96A5EE /* DDBaseImageView */ = { isa = PBXGroup; children = ( + EFC91CA687C77EB78B0495A49C083271 /* DDBaseImageView.h */, + 2A582DA9EEE16260A1978792FC5C8EEE /* DDBaseImageView.m */, ); - name = DDLabel; + name = DDBaseImageView; sourceTree = ""; }; - F5F9CC9F050799219B249D35BBC25059 /* Resources */ = { + F6431FAE12785EFC8640BB10744500B7 /* MapView */ = { isa = PBXGroup; children = ( - B285981AF82CE9F71F33570BFF558D99 /* DDBaseViewController.xcassets */, + AE8ACAEDAAA681B531C75C1E85BA5098 /* DDMAMapView.h */, + 87A636305F55B4193ADAAD0F3EDC82E2 /* DDMAMapView.m */, ); - name = Resources; + name = MapView; sourceTree = ""; }; - F6CC1DAA9592642A40F7C21C8F381E7C /* Support Files */ = { + F64389B71626EA294AD6B9185D368FA1 /* Sources */ = { isa = PBXGroup; children = ( - C13605C305EC8AC4BCFADE7FFB675973 /* DDTimerKit_Private.modulemap */, - 6C0A3CAB96C610BDC64BAD5AC6D15930 /* DDTimerKit_Private-dummy.m */, - 4ABB5F1667AE561EEEE81AF89686D5CC /* DDTimerKit_Private-prefix.pch */, - 298E7C69CF0E1E2D29F7465CCF5357AF /* DDTimerKit_Private-umbrella.h */, - BAFE20E8DE232AF4E33A59A7A4946063 /* DDTimerKit_Private.debug.xcconfig */, - 6D995936E759960521519D528A7D6C21 /* DDTimerKit_Private.release.xcconfig */, + FE603FC294B4B0926DDC6D19614C3B16 /* Resources */, + ); + name = Sources; + sourceTree = ""; + }; + FBAA0B302BCC8F29194CD2992CB6C581 /* Support Files */ = { + isa = PBXGroup; + children = ( + E1156D4B626F5763CFCAC74694E40862 /* MJRefresh.modulemap */, + 9C01CB87BF930A549BE2B7C73A68B7AA /* MJRefresh-dummy.m */, + 8BD2A03C643BA6B22B9B44CD85299C2A /* MJRefresh-prefix.pch */, + 61AB5AFE42795F73512435F249E2AD35 /* MJRefresh-umbrella.h */, + 56BF39B3EB093F44FA1AC755EE7FB094 /* MJRefresh.debug.xcconfig */, + 8B441F34B32C0868D63E8CC442DAB6E5 /* MJRefresh.release.xcconfig */, ); name = "Support Files"; - path = "../Target Support Files/DDTimerKit_Private"; + path = "../Target Support Files/MJRefresh"; sourceTree = ""; }; - F88618DE10E1FF237D7DCBE586157039 /* BRPickerView */ = { + FC30EAF31C86A4F1C279602D64702272 /* Support Files */ = { isa = PBXGroup; children = ( - A57A7A43008CE2316B57AF912372E039 /* BRPickerView.h */, - ACA22BB6DD11DFFA86AD7D7801C1E5AF /* AddressPickerView */, - 2672C2FF46133B3087E7008C41F80C50 /* Base */, - CBE229032E939B090C11A6B623721D29 /* DatePickerView */, - B4BDE4D7D23EB5C50908B675B8D47AA5 /* StringPickerView */, - CA65377D971867064635812BEF256B36 /* Support Files */, + 2240004E214742F724048FEBB381CEFE /* ZLPhotoBrowser.modulemap */, + EC0A368B863E7098C2B47DEFD9527A27 /* ZLPhotoBrowser-dummy.m */, + 7AA0400EDEE1936C5464A99AD94035C6 /* ZLPhotoBrowser-prefix.pch */, + 6BDF0C722EFCEDA51D2DE37EDAE0B8F3 /* ZLPhotoBrowser-umbrella.h */, + B2C1671B93D950380268814B7807A1DE /* ZLPhotoBrowser.debug.xcconfig */, + 196CEE3BC2C8C654CC23EB302CC90FF4 /* ZLPhotoBrowser.release.xcconfig */, ); - name = BRPickerView; - path = BRPickerView; + name = "Support Files"; + path = "../Target Support Files/ZLPhotoBrowser"; sourceTree = ""; }; - F9875C447AAC89F6AC059E67EFD63929 /* Resources */ = { + FDBC45F1F148137145F5BC76E155DE5C /* DDControlsKit_Private */ = { isa = PBXGroup; children = ( - 29FF2F7FDD9A2FA0F5CB2FB0C041DA77 /* Sources_DDMAMap */, + 1F9C3228751941592E307E6795FC420D /* DDAttributedString.swift */, + E7DEAAB15891C178CEB558B353A28B54 /* DDButton.swift */, + 4BBC08FAD68A88F7287A05E04191DB04 /* DDCollectionView.swift */, + E79F6EBD860959A940CF227C07C90D12 /* DDCollectionViewCell.swift */, + 225E1EF48B1C673BC3CC2358A43544DD /* DDImage.swift */, + 220B08D91C45356936B60DB764408CBD /* DDImageView.swift */, + 5028808FDA816F0FAC182767E78C100F /* DDLabel.swift */, + 0E32F05E6704CB27C4F0970E03346DAB /* DDMutableAttributedString.swift */, + 44FBDC1D7632810A4180BA6202B06DF4 /* DDNavigationController.swift */, + B950E3E5BC03E7EAA144B54395908596 /* DDScrollView.swift */, + 9A129EE0C83FE51A20D8D5971D362AB8 /* DDSwitch.swift */, + B6E5494399CF740C7316F47647E51127 /* DDTableView.swift */, + A0C18F69D04945C4F4F65A4781962DC9 /* DDTableViewCell.swift */, + 555AC2D8DC026900B91FD2906E79BFBB /* DDTextField.swift */, + 9ECC1CFAF7F7F94D4BEA17650D3BEBB8 /* DDTextView.swift */, + B70AF93E4D974B8428D94FDA5AED6BD6 /* DDView.swift */, + FFE415ECD60C7DB122A14EA2B5A0EACA /* DDViewController.swift */, + 08A558054A8D80C1A1E3789802587FD0 /* DDAttributedString */, + 8F5753004BEC7A9BD7E8145A966975D7 /* DDButton */, + 53F44F3637A3813AFAEE57A32FD05BEF /* DDCollectionView */, + 4A3B41CF6F13D4673844D81DACE15172 /* DDCollectionViewCell */, + 552FF270B50722AA07DBE4CE954D8E23 /* DDImage */, + 7F96D0F4A7E84B278B3FC781A2D5CBC7 /* DDImageView */, + 86B005835376A66CBE0903890387A069 /* DDLabel */, + 6C61C214A1D7934522ABCD0C24097A1C /* DDNavigationController */, + 64D62230BC69BC8FF8E0CADB0E308A64 /* DDScrollView */, + 56A8132E1DC86550009A4764C1C9C677 /* DDSwitch */, + C02D60E924FC8444945FC8292C47ED3F /* DDTableView */, + 9864DDB493BFE03CC42B6C57762EA631 /* DDTableViewCell */, + BEF2291B7DAF6780A8476699F6CBD67C /* DDTextField */, + 2C574D2ED827E5468F204D679188F899 /* DDTextView */, + 84872BCF4FAAA518E7638EF55260B513 /* DDView */, + 976EC15AC1010E3D69806B3274FF0CF9 /* DDViewController */, + 5D28998E0850DC687E57E9F3344D860D /* Support Files */, + ); + name = DDControlsKit_Private; + path = DDControlsKit_Private; + sourceTree = ""; + }; + FE603FC294B4B0926DDC6D19614C3B16 /* Resources */ = { + isa = PBXGroup; + children = ( + EE264AABB23776FDCFBFF501E0FDF2EE /* Sources_DDMAMap */, ); name = Resources; sourceTree = ""; }; - FEB0067A466BB92E9A5CA8BCD3D2A2AF /* Trace */ = { + FEB65CCD95ACDDAE9A11B96CD1AC5246 /* DDMASearch */ = { isa = PBXGroup; children = ( - A2EB1A3B8E37E6A4375C6622CCDE8ED0 /* MATraceReplayOverlay.h */, - 97D78D63595AB089A4E49483C09B0D2A /* MATraceReplayOverlay.m */, - E4CCD437D9E0EFB7DA8B59AD4D858DCB /* MATraceReplayOverlay+Addition.h */, - FC81838631B8DB78DD8D13C05BF4C611 /* MATraceReplayOverlayRender.h */, - 9D45D3AF29E10D17B4B967254C63F1C0 /* MATraceReplayOverlayRender.m */, + DD2B04A321BF9A4442312268B3ECB285 /* DDMASearch.h */, + 3ACA5FE33CB355EA0C0B258471B5B900 /* DDMASearch.m */, ); - name = Trace; + name = DDMASearch; sourceTree = ""; }; - FFB6FD6D9DF913F4A81779A2F35EB3EF /* AMapLocation-NO-IDFA */ = { + FEDFDA0F4D0527F7D5B4F2563262B02F /* UIApplication+DDCategory */ = { isa = PBXGroup; children = ( - 3890BEC1D6D2B1797D1DF080E8935168 /* AMapGeoFenceError.h */, - 2B7AD94A38785BA0A3CA37C708DF4F49 /* AMapGeoFenceManager.h */, - B8BA924F13AD96A8433CBE6A05407435 /* AMapGeoFenceRegionObj.h */, - 3264EDB39C5B15343D3B3D81606599DF /* AMapLocationCommonObj.h */, - 4C3AFC1A496A91DDC6505D710320D104 /* AMapLocationKit.h */, - F3E4A99C1585A30BBE411712482B38FB /* AMapLocationManager.h */, - 0730F3BA50980D21C5A6897B1EB8391E /* AMapLocationRegionObj.h */, - 81F37E9BD79B3EB75C8418D7151C9F95 /* AMapLocationVersion.h */, - 32D3B3EEA548B815562AF6BC3A5F030B /* Frameworks */, - 3BB7CB295482A998481879CC83D4CE8E /* Support Files */, + 129C4C0861511F31333238525142A013 /* UIApplication+DDCategory.h */, + D6FD1CE43A4082C6AE2CAD9DC2E37800 /* UIApplication+DDCategory.m */, ); - name = "AMapLocation-NO-IDFA"; - path = "AMapLocation-NO-IDFA"; + name = "UIApplication+DDCategory"; + sourceTree = ""; + }; + FF58927E0B4230691CA1D25AB65CBE47 /* DDBaseViewController */ = { + isa = PBXGroup; + children = ( + 8F41FA482FFD01131F6109B6F710F6F4 /* DDBaseViewController.h */, + 5CA6E7D1E697CAF51E4973FEBB1C3879 /* DDBaseViewController.m */, + 23F672531CE9A8E8E069D3D77E80A932 /* Resources */, + ); + name = DDBaseViewController; sourceTree = ""; }; /* End PBXGroup section */ @@ -7173,19 +7224,28 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 24E7495B283DA9919548DD20850FEB0E /* Headers */ = { + 1D27E2771BDF5D00F752E6422D2DA6E3 /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( - 8BB0EF73FD3F06EC6D81F58835A51761 /* SnapKit-umbrella.h in Headers */, + 656C1B379E3DFFE7320AD50AE311126B /* DDAudioPlayerKit_Private-umbrella.h in Headers */, ); runOnlyForDeploymentPostprocessing = 0; }; - 28A01169A812B2F00AB3DD098B9A7F8A /* Headers */ = { + 3673F6CDE5E67187044821FF3DC215DC /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( - F790D8AEDB20B1DB97AF53B6A148570F /* RxSwift-umbrella.h in Headers */, + 7D9036FB1C4E0560CCE3227BEA3339C2 /* DDLogKit_Private-umbrella.h in Headers */, + A6E93420233B40E6C5FD32FC0C411AF2 /* DDOCLog.h in Headers */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 3BBAA597943FA72A50BB8D930A99FFB9 /* Headers */ = { + isa = PBXHeadersBuildPhase; + buildActionMask = 2147483647; + files = ( + 56AF9AC7753012A5318390344FAD5C43 /* RxSwift-umbrella.h in Headers */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -7273,6 +7333,46 @@ ); runOnlyForDeploymentPostprocessing = 0; }; + 5F6A5D013F465C43D05515340DBEC965 /* Headers */ = { + isa = PBXHeadersBuildPhase; + buildActionMask = 2147483647; + files = ( + 9F3964B15E3C4EFF4BC0B7616A546C2E /* CALayer+DDCategory.h in Headers */, + A20B28B7C2D37D42C1C8F8FAB350CD8E /* DDCategory.h in Headers */, + 2BD1DA46EFAC895FA086ECF1902D0FD1 /* DDCategoryKit_Private-umbrella.h in Headers */, + E575FD1642D598B5B2FBF353BEF4E193 /* NSAttributedString+DDCategory.h in Headers */, + E2A772FC2EF1D213CB844D55E0B55AA4 /* NSBundle+DDCategory.h in Headers */, + F19D8E3745D102F0CB24E84EBD98E2BD /* NSMutableAttributedString+DDCategory.h in Headers */, + 57001D4C5C8C819680182BBEDD045210 /* NSMutableParagraphStyle+DDCategory.h in Headers */, + 30C11276440E0B42F3C262BB2D30D9E1 /* NSObject+DDCategory.h in Headers */, + 97E3C113173E5B9AE508B406612280AF /* NSThread+DDCategory.h in Headers */, + B1CD720CED00E5BC1E5B96D581603C2D /* NSURL+DDCategory.h in Headers */, + CCB1CCE148F434A4A1FD5C20BB3CAB54 /* UIApplication+DDCategory.h in Headers */, + 17C1D268B746DB73A19B85329F27D317 /* UIBarButtonItem+DDCategory.h in Headers */, + 6DE505183942FACB3B64F8A2115D39D9 /* UIButton+DDCategory.h in Headers */, + 8762C3B2ABC7C4D1ADCD923054358973 /* UICollectionView+DDCategory.h in Headers */, + DD580CB782EBCD185EB099D7FC7B076D /* UICollectionViewCell+DDCategory.h in Headers */, + EC261155F1F1E75AFC43FC3374CD930F /* UIFont+DDCategory.h in Headers */, + 4735F0E5E435DA829FAD6163F41B9040 /* UIImage+DDCategory.h in Headers */, + 19E22194C82328ADFCB3B3E8AA23CA2E /* UIImageView+DDCategory.h in Headers */, + 1BF401B5CF91DEEF71FF25C31286C319 /* UILabel+DDCategory.h in Headers */, + 6146A0BE66054B092DCD9C8642C58988 /* UINavigationBar+DDCategory.h in Headers */, + 6F147E8691945B001B6CB1269240FDA9 /* UINavigationController+DDCategory.h in Headers */, + C3E841F0F2A1C2CAE89FB406DF3EB569 /* UINavigationItem+DDCategory.h in Headers */, + 99ABEC8661595B51AC9497571DDE9446 /* UIScreen+DDCategory.h in Headers */, + 1D1A187CC0745781EDF0CF7D872B1B48 /* UIScrollView+DDCategory.h in Headers */, + DF9A3D9B61FFDC86D1B08C57030698F2 /* UISwitch+DDCategory.h in Headers */, + 38E8E82CB2E6E16A66CF79B88B723938 /* UITabBarController+DDCategory.h in Headers */, + 2E06E2D515B47AD7FD26D97DE13591C3 /* UITableView+DDCategory.h in Headers */, + 5309B438474D04047CBBDB0FC6AE73E9 /* UITableViewCell+DDCategory.h in Headers */, + 893E557FBC523702C79FA9A21FCB7349 /* UITextField+DDCategory.h in Headers */, + A1B367623DBD487A62091B47587CC529 /* UITextView+DDCategory.h in Headers */, + CD6E125ACDDF38716E4DFD741B612337 /* UIView+DDCategory.h in Headers */, + A247B85A32906601E0AE92D4E138D371 /* UIViewController+DDCategory.h in Headers */, + 10C7C630CD0D2A6389C3609E2D562F2B /* UIWindow+DDCategory.h in Headers */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; 7A0577926D4735538CF240110317A626 /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; @@ -7314,6 +7414,14 @@ ); runOnlyForDeploymentPostprocessing = 0; }; + 7F06E35C56F3385F511DA9DD0F57EFCA /* Headers */ = { + isa = PBXHeadersBuildPhase; + buildActionMask = 2147483647; + files = ( + 71BC1612F3617B89C174A4A46B9402C8 /* Pods-OrderScheduling-umbrella.h in Headers */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; 8A6AB1868C0A26E8069628FDFEDD97AC /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; @@ -7338,14 +7446,6 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - A0C603FBF4165158D21698A32E5F417E /* Headers */ = { - isa = PBXHeadersBuildPhase; - buildActionMask = 2147483647; - files = ( - 4CECEEE1ABA224FB6E37F02F7155DB20 /* Kingfisher-umbrella.h in Headers */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; A23CD4DE689260E9578ACEB979F6635D /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; @@ -7356,14 +7456,6 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - A8157279FCC3D5B23EFB1346881863A6 /* Headers */ = { - isa = PBXHeadersBuildPhase; - buildActionMask = 2147483647; - files = ( - D3C234D4B6F2C40C829FB0D973C630BF /* Pods-OrderScheduling-umbrella.h in Headers */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; AA78A22D663997B4814F48B53A6832EC /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; @@ -7456,51 +7548,27 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - C5550E3A563ED05EDDA19701BDD31F6D /* Headers */ = { + C3F0C39DD1DEFD201C98135CCA73A626 /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( - 416F29D541905FFE6B17CBCD8E2AEA17 /* RxRelay-umbrella.h in Headers */, + 4E6ED858E553301ADEE0B2BE45956A17 /* SnapKit-umbrella.h in Headers */, ); runOnlyForDeploymentPostprocessing = 0; }; - D4D14D52B011B7CA9073304AD6F3261C /* Headers */ = { + C5ACE35FE865E786F6493604981092A1 /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( - AC61D8819C6042B0BAACC084D4341E33 /* CALayer+DDCategory.h in Headers */, - A4F5B4112A0567FBDEA6B6E386E9B413 /* DDCategory.h in Headers */, - B31E568BFBD31B62161381E6E8D0BEB1 /* DDCategoryKit_Private-umbrella.h in Headers */, - E507E858E60F814ABE2DC5BC534C2437 /* NSAttributedString+DDCategory.h in Headers */, - 7B40DD9862AA3468764CDCDCE77E4F17 /* NSBundle+DDCategory.h in Headers */, - CEB18CE41DA459A3CCD90DA3A83DB0BC /* NSMutableAttributedString+DDCategory.h in Headers */, - B85DF1C79A36A4C5AD0388D3C8352B07 /* NSMutableParagraphStyle+DDCategory.h in Headers */, - 6C2BC16E094CDD900A851B5124959A95 /* NSObject+DDCategory.h in Headers */, - 7F7A448804E2F4F5463FDD8E54B69C0E /* NSThread+DDCategory.h in Headers */, - 2D29A5E9421B7798554B17F7016E7EED /* NSURL+DDCategory.h in Headers */, - 2CB687F72EA6A5805984EAC5D14E9444 /* UIApplication+DDCategory.h in Headers */, - 6CE48EA118230C42AEF5DBC8A5D201A1 /* UIBarButtonItem+DDCategory.h in Headers */, - 19FFD9885E9F8F4EDD2C35117FF2C064 /* UIButton+DDCategory.h in Headers */, - F9348D84DC95E2C7480F5B7DDFDE6B73 /* UICollectionView+DDCategory.h in Headers */, - 7BED846D60824F00240F62FD259E7EDC /* UICollectionViewCell+DDCategory.h in Headers */, - 24DE1041669D3143CDC3325534333281 /* UIFont+DDCategory.h in Headers */, - 2A18C0800141EB4384171EDD81C9DD57 /* UIImage+DDCategory.h in Headers */, - AEE9C12D940A4E186F0A56F3B5C6CA8A /* UIImageView+DDCategory.h in Headers */, - 9D3057859C14AD080E8AD14C24840E27 /* UILabel+DDCategory.h in Headers */, - 6E57A9166EF294BB9BB9643BACEBE052 /* UINavigationBar+DDCategory.h in Headers */, - 50F8A8F6A86ED7B74E9DDCD57B96FC43 /* UINavigationController+DDCategory.h in Headers */, - 097151339A0CEE631D7C30722B1F19E2 /* UINavigationItem+DDCategory.h in Headers */, - D162658CB1D8C8E4080D36914FA272D0 /* UIScreen+DDCategory.h in Headers */, - 6D2977C80671B931D73CAE856D3DB84A /* UIScrollView+DDCategory.h in Headers */, - 15D200BF217018C1BAFCD4226E2DBC5C /* UISwitch+DDCategory.h in Headers */, - 2E3AB039812458A6DDFF82DA6B7689D5 /* UITabBarController+DDCategory.h in Headers */, - D19369E2279C20FF7E1050262983926B /* UITableView+DDCategory.h in Headers */, - 05E83E8CEA8AC6A91BA09675E1FDCF5F /* UITableViewCell+DDCategory.h in Headers */, - D745432465E311FE291940EA15A78CEF /* UITextField+DDCategory.h in Headers */, - 0F42E21EE32226CBCC3299609B1B40EF /* UITextView+DDCategory.h in Headers */, - 657B15F38DA662B4F8E0284C27E0EBE1 /* UIView+DDCategory.h in Headers */, - 3ACC6D783DD4E8C6136765B1AB125B84 /* UIViewController+DDCategory.h in Headers */, - E11AA57F219A6C871BE606EE93832939 /* UIWindow+DDCategory.h in Headers */, + 8078E9680CBD9BF77D13021C5B82AE8A /* RxRelay-umbrella.h in Headers */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + D308D7243FA3F6EF2DA0BA6AF4F80CE4 /* Headers */ = { + isa = PBXHeadersBuildPhase; + buildActionMask = 2147483647; + files = ( + 8C584664D6B07968AA7846A75519A16A /* Kingfisher-umbrella.h in Headers */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -7602,15 +7670,6 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - E4EF6A0D0A7F91C1D13C195909E0FCF3 /* Headers */ = { - isa = PBXHeadersBuildPhase; - buildActionMask = 2147483647; - files = ( - EF32A780029E5393C9840306EC02102F /* DDLogKit_Private-umbrella.h in Headers */, - 2067A60A822EA5669B176ADE31C961A6 /* DDOCLog.h in Headers */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; F5429979F2C3E8E72B5E8A07A57536F9 /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; @@ -7650,7 +7709,7 @@ buildRules = ( ); dependencies = ( - 68539C0AE67F2F46419443101164E6EA /* PBXTargetDependency */, + AFEA5FB96D8DBFE55B3781115F975F79 /* PBXTargetDependency */, ); name = DDControlsKit_Private; productName = DDControlsKit_Private; @@ -7668,9 +7727,9 @@ buildRules = ( ); dependencies = ( - 15DA174E766F36AFDF19E8C1A8586A08 /* PBXTargetDependency */, - D1F2F7F482072460C97DF7C17528FF8D /* PBXTargetDependency */, - 4746AE5AC3485F2ED6C2A7ACA79341C2 /* PBXTargetDependency */, + 28819A56DC5FE6EE567937825D41B304 /* PBXTargetDependency */, + A2073EF97AD3591795490647DC795E6F /* PBXTargetDependency */, + 16527DA8401149F66FCBD83CA7BA0FEF /* PBXTargetDependency */, ); name = DDBasicControlsKit_Private; productName = DDBasicControlsKit_Private; @@ -7697,12 +7756,12 @@ }; 19622742EBA51E823D6DAE3F8CDBFAD4 /* SnapKit */ = { isa = PBXNativeTarget; - buildConfigurationList = 338C3A9AD58ED98F3A9D9FCA9D2ABE60 /* Build configuration list for PBXNativeTarget "SnapKit" */; + buildConfigurationList = A986A9C3606A2B5B105CD79531642030 /* Build configuration list for PBXNativeTarget "SnapKit" */; buildPhases = ( - 24E7495B283DA9919548DD20850FEB0E /* Headers */, - D2A3E4B7CFD6D3B9D444F9C7A6B8BEE9 /* Sources */, - F220AD2B7FD3DDC4BDD277E8557325E4 /* Frameworks */, - F2AEA66CBDF1416D45C4F1A4850CA6EC /* Copy generated compatibility header */, + C3F0C39DD1DEFD201C98135CCA73A626 /* Headers */, + C60F3F4EA98E4FF9B17B8F6A97B62B48 /* Sources */, + 898380CE963DC6F772ADB9DC5E3B5219 /* Frameworks */, + 46EB960BB6D3FDE4848A5267F5C71752 /* Copy generated compatibility header */, ); buildRules = ( ); @@ -7715,12 +7774,12 @@ }; 26BA8950EBF05410254D54F7EF76D5CE /* DDLogKit_Private */ = { isa = PBXNativeTarget; - buildConfigurationList = 89BC2977E5260C795081BD929AF46EF4 /* Build configuration list for PBXNativeTarget "DDLogKit_Private" */; + buildConfigurationList = 89A8BB776593B3564187DDF25CE32955 /* Build configuration list for PBXNativeTarget "DDLogKit_Private" */; buildPhases = ( - E4EF6A0D0A7F91C1D13C195909E0FCF3 /* Headers */, - 9149F6EAD334E5E546A9233BA9D5B090 /* Sources */, - A6A2B035ED39AD6563B21EA299EA7ACE /* Frameworks */, - 75C7C925EB8F402EAE152E951D133316 /* Copy generated compatibility header */, + 3673F6CDE5E67187044821FF3DC215DC /* Headers */, + BF0745C80123D3D9B885AC43C08AC8BE /* Sources */, + 7CE1E470D639136D127D8F7F7135021A /* Frameworks */, + F5EE999CB6651F301EC86CA523208684 /* Copy generated compatibility header */, ); buildRules = ( ); @@ -7778,9 +7837,9 @@ buildRules = ( ); dependencies = ( - 64B9647EF4C82D42D4894ECBF7AAEEEB /* PBXTargetDependency */, - EE52EB2AA2ECBE1B83977006490324FA /* PBXTargetDependency */, - 059E6621AC88DC29FEE2CA536A2C9455 /* PBXTargetDependency */, + CD2B4B0FCA4DD8F5A9FBA97F23557E45 /* PBXTargetDependency */, + F7EF7D4ADBB5E4498C2B21ECA6725EEC /* PBXTargetDependency */, + 446F5DA42D2305A446FCADAFF1CC43F2 /* PBXTargetDependency */, ); name = DDProgressHUDKit_Private; productName = DDProgressHUDKit_Private; @@ -7807,17 +7866,17 @@ }; 4622BFEF3DC16E8BD15EEFC30D4D0084 /* RxRelay */ = { isa = PBXNativeTarget; - buildConfigurationList = D75A00A98C6BC1E535DDF2B76A919597 /* Build configuration list for PBXNativeTarget "RxRelay" */; + buildConfigurationList = AF1B5985EF5104F864883BD566B4E47D /* Build configuration list for PBXNativeTarget "RxRelay" */; buildPhases = ( - C5550E3A563ED05EDDA19701BDD31F6D /* Headers */, - A8DFD2B49880DE971261F8FED5A6D2CD /* Sources */, - D3A4922AFECD30508E8050DAD19A085F /* Frameworks */, - 080624BFEE926BCEC7E0282DFC1526BF /* Copy generated compatibility header */, + C5ACE35FE865E786F6493604981092A1 /* Headers */, + 99A49ACCEA656B20ED8DDB4756B28B94 /* Sources */, + 7D634442AED1F31875B097C772204E27 /* Frameworks */, + 378D70BECBE6DFDEBB4104C5ED061758 /* Copy generated compatibility header */, ); buildRules = ( ); dependencies = ( - C95C8B19D57997C93F73DE8EC5D4DF39 /* PBXTargetDependency */, + 8B68DFAF2316FA5796CD2D25FB136C34 /* PBXTargetDependency */, ); name = RxRelay; productName = RxRelay; @@ -7861,11 +7920,11 @@ }; 5C23965029860967865B3429B5E29092 /* DDBasicControlsKit_Private-DDBaseViewController */ = { isa = PBXNativeTarget; - buildConfigurationList = E5C3D9334161C9697B48713029BA3EDE /* Build configuration list for PBXNativeTarget "DDBasicControlsKit_Private-DDBaseViewController" */; + buildConfigurationList = BCD1E485DFBCBF51CEB48E3D307CB0FD /* Build configuration list for PBXNativeTarget "DDBasicControlsKit_Private-DDBaseViewController" */; buildPhases = ( - 2B9F3D9C2E12C8E97D3DFC10414EA314 /* Sources */, - 2411AFDF8C1C2017EDCBEB965E1EC45F /* Frameworks */, - B9EFAB56757BF468EE5468CCAFCD18B6 /* Resources */, + 38E287220A5ABC5E384EBE3BB5F0B6B3 /* Sources */, + B6C57078E056CF7022A437F6A03EEA3B /* Frameworks */, + F2159222D413D829C60B1AF3521AF607 /* Resources */, ); buildRules = ( ); @@ -7878,11 +7937,11 @@ }; 6056870867CC4728BCEF2E5EBDD1DCB3 /* DDMAMapKit_Private-DDMAMapKit_Private */ = { isa = PBXNativeTarget; - buildConfigurationList = C78849A31D7CDAA4E40143A6F616753C /* Build configuration list for PBXNativeTarget "DDMAMapKit_Private-DDMAMapKit_Private" */; + buildConfigurationList = 53DC6BB420A39B891F56EFC5973D7464 /* Build configuration list for PBXNativeTarget "DDMAMapKit_Private-DDMAMapKit_Private" */; buildPhases = ( - 6892C77FC795C58877B0E40480D3A6CA /* Sources */, - E2AB035E3CAB7854B3BE8423EF0B116B /* Frameworks */, - 43094D25F0C53BB2E1E29A1737FD9E74 /* Resources */, + DD76AFB898E0CE5F51E81A77220C8E1E /* Sources */, + F23F546DE7C760E9AD95855A7DB4D31D /* Frameworks */, + 1D2C9D69FCFC29DD691EBBEFF78240DA /* Resources */, ); buildRules = ( ); @@ -7921,9 +7980,9 @@ buildRules = ( ); dependencies = ( - B344CE9AC0069DD4572B7B06E7416BE0 /* PBXTargetDependency */, - AAF92806C73EDC8FD14E433CA49C5556 /* PBXTargetDependency */, - 35CCBF3B212EE7131EA1EE158D5D7575 /* PBXTargetDependency */, + B18B9B44A1A90F9729A5266E5D7F092D /* PBXTargetDependency */, + CBC1F8A03A85317FF2C3E1B22DBC4A30 /* PBXTargetDependency */, + 373880BF6F00D901615288D3C888E048 /* PBXTargetDependency */, ); name = "Pods-OrderSchedulingNotificationService"; productName = "Pods-OrderSchedulingNotificationService"; @@ -7949,50 +8008,51 @@ }; 7A11E58B7B0678A54DDBE15F2F5C3361 /* Pods-OrderScheduling */ = { isa = PBXNativeTarget; - buildConfigurationList = E9F2AB7ED66008E42AA8A94E6B0FB1C6 /* Build configuration list for PBXNativeTarget "Pods-OrderScheduling" */; + buildConfigurationList = 19060FAE1B002E21CB72D6995BF545C5 /* Build configuration list for PBXNativeTarget "Pods-OrderScheduling" */; buildPhases = ( - A8157279FCC3D5B23EFB1346881863A6 /* Headers */, - 276A34760FEA0EDBA3C2AE0B3A205A4F /* Sources */, - CD41E2FABE4D891684420E2BB284EE9D /* Frameworks */, + 7F06E35C56F3385F511DA9DD0F57EFCA /* Headers */, + 483DE37B366FF1CB8B8590F2210A9B40 /* Sources */, + 0B04583904FED4B26964C1A91330D470 /* Frameworks */, ); buildRules = ( ); dependencies = ( - CAF088C29E925FEA488F3ABAA1CF30BF /* PBXTargetDependency */, - B38A63972282207AD446ABCAAD1A4152 /* PBXTargetDependency */, - 5A36B3AFE6A452957350442F2FE2A989 /* PBXTargetDependency */, - 4E7D76F6E8A0C0297118F6D9AF5409F2 /* PBXTargetDependency */, - FEF437F984A7BEEFD1339F85ADCC463C /* PBXTargetDependency */, - 286C7CAEE8C88BC1B7888AB03FFBADFF /* PBXTargetDependency */, - A1BB09193D2750D88A77CF0E1FCE42A5 /* PBXTargetDependency */, - 1C5C036A3B32C43642FE674A611F37E5 /* PBXTargetDependency */, - 908B424F94E9D302325C9636246365FC /* PBXTargetDependency */, - DD22BCFFB637F5EBBB2CC0632555A97A /* PBXTargetDependency */, - 39CDE6B71596F5949263946A1C6764E0 /* PBXTargetDependency */, - 0C47A0A96E83E8F9B6BE687A61E6B896 /* PBXTargetDependency */, - B0221DF166BFDFF41727BD15592AB400 /* PBXTargetDependency */, - 9770CBB88D878597285355D3DB8939AC /* PBXTargetDependency */, - 7C2CD1679D926AC8CAB1B02E1BE78136 /* PBXTargetDependency */, - 741622E0918FC05396E2BC45FBE77FDE /* PBXTargetDependency */, - 1E9176F9209EB08BD8A103CDD46B6FF3 /* PBXTargetDependency */, - 467F5026EF2149F3E101BB211DB62F0E /* PBXTargetDependency */, - 48497FC4438A6452924610FA99957D84 /* PBXTargetDependency */, - 9EA2582E3F94439AA737CD436FAE738B /* PBXTargetDependency */, - 920CC04FF14AFAED23BDA4E9724CF257 /* PBXTargetDependency */, - 793D4FB923E35C2F2DB11E8D9728FA55 /* PBXTargetDependency */, - 2BBB8094F9609D5F3F403D442599ED70 /* PBXTargetDependency */, - E8855756B9EB7AC13498CB9C635D23EA /* PBXTargetDependency */, - 09C701FD0997AC2D47C830BEE66E13D0 /* PBXTargetDependency */, - 3B67D5AF9A82A38CF1E701D2E1671A5A /* PBXTargetDependency */, - C90C75CB96659287AC73C3DCCA7676C6 /* PBXTargetDependency */, - 0C2BA594FD04D520BB238A6840B99349 /* PBXTargetDependency */, - C94EDA3216FF0314DABDD17037CB8B8E /* PBXTargetDependency */, - D3B7D25ACCF0AC12F5AB209DC1403350 /* PBXTargetDependency */, - 507EC938B696BD3D104FD50B38E44430 /* PBXTargetDependency */, - C18045F91C0E60752D3532F0344BD53F /* PBXTargetDependency */, - B93FD9DA723DACCD7102F2F05ED12D52 /* PBXTargetDependency */, - 484E063CFFF1697866F78D573B1D3928 /* PBXTargetDependency */, - EA12889CBE73C0969735A8825782C6B7 /* PBXTargetDependency */, + 081EEBFF3122F095FDCB02B321C63E60 /* PBXTargetDependency */, + 91BA5C4F2A92531F32CF2583E2EA45B7 /* PBXTargetDependency */, + 649A494FB94524894D5D9A7D633CCD89 /* PBXTargetDependency */, + F18BAC9E0802878CE2336D9493C927D8 /* PBXTargetDependency */, + E01813D4CFA85196E70CC0D575ED84A0 /* PBXTargetDependency */, + 6D3266508913EF96D528F1B3A1B327BE /* PBXTargetDependency */, + 4B9480B181E7CECF68EDE8CB3E95CABE /* PBXTargetDependency */, + 6BB8082A5DFB595FC71472E2DFE56951 /* PBXTargetDependency */, + CC25E04E7D778C911C7807D80B1C6CD4 /* PBXTargetDependency */, + 4A07AB06A8D0ABB3B76EE0166C6C840E /* PBXTargetDependency */, + 032DFE5811233537A2FC60AA876C156C /* PBXTargetDependency */, + 47AF29951E2109D99F6E6C3C547FDEB6 /* PBXTargetDependency */, + 84F2C78FD563365132FADBD80A9BB3AD /* PBXTargetDependency */, + 5F785DB869732AC2AC35A72B813148DD /* PBXTargetDependency */, + CAAF9A41AA453A02AA522863EDF09759 /* PBXTargetDependency */, + 5267574A4C777D5FDBA8729D457ECF2E /* PBXTargetDependency */, + 4E97FC27DD01CB82A9BFC8DCCCFF11CE /* PBXTargetDependency */, + 7F9BA7A22B0BA85968F9DDF15094FE00 /* PBXTargetDependency */, + 358B8028A4AE72FFF2D54E1118E8486E /* PBXTargetDependency */, + C9112FCBA4F3C2555CF4D9ACAA71A370 /* PBXTargetDependency */, + 4F690F49032D3ED438F7DF91D0DFCD41 /* PBXTargetDependency */, + C66B6D69E1F076F0DD1E5A84AF42AB4E /* PBXTargetDependency */, + F254C86B796CA34EE709E31503AA85C3 /* PBXTargetDependency */, + EBF0385E43B863B424F35C61D03099B5 /* PBXTargetDependency */, + 4E4E041A1FECFD18FFB561E6255CB7D3 /* PBXTargetDependency */, + 987097C4CE0050A8536056D15E13401D /* PBXTargetDependency */, + 3098B636191833D58C0BA6757C3E03B6 /* PBXTargetDependency */, + BC3EEC9C3E4844CF4F332F75E60B74CF /* PBXTargetDependency */, + 008201B47FD78C6752D63150E4495290 /* PBXTargetDependency */, + 8AA4C609A6755CE947A5781935788F8F /* PBXTargetDependency */, + 91A794987B562B36EEE299A58494C06B /* PBXTargetDependency */, + 8DC1AFC7EAB6EC8621B3D8767DDB64AE /* PBXTargetDependency */, + F15A5EC541D0A9D92AA8C4AFF61F7379 /* PBXTargetDependency */, + AA021A594E0489739BCB52B322C614D4 /* PBXTargetDependency */, + 5FEAD49860218CE744445E9CED3F31FA /* PBXTargetDependency */, + 92A8C689AFA17B2571133A3FAF10025E /* PBXTargetDependency */, ); name = "Pods-OrderScheduling"; productName = "Pods-OrderScheduling"; @@ -8011,8 +8071,8 @@ buildRules = ( ); dependencies = ( - D7F95B2190DD2495718B0CFB02318331 /* PBXTargetDependency */, - 292E96DA758A000F9224115989E2A492 /* PBXTargetDependency */, + 57F47FB3478C3D8BFE304C0D4EC133C5 /* PBXTargetDependency */, + 2F75967F0B50A7E796D685B37012614E /* PBXTargetDependency */, ); name = RxCocoa; productName = RxCocoa; @@ -8021,11 +8081,11 @@ }; 7B8412F08BD27981DB53CE2C25C19F0A /* DDCategoryKit_Private */ = { isa = PBXNativeTarget; - buildConfigurationList = C3C80DCA2D53FBE4731868C8A3AEEF9C /* Build configuration list for PBXNativeTarget "DDCategoryKit_Private" */; + buildConfigurationList = 98B2AC68ED019261CFEBB4B9C05A2355 /* Build configuration list for PBXNativeTarget "DDCategoryKit_Private" */; buildPhases = ( - D4D14D52B011B7CA9073304AD6F3261C /* Headers */, - ADC25AF364C87D2C6E80806CB0AA0E70 /* Sources */, - A63D551E63F430EC676BB35324A5F15F /* Frameworks */, + 5F6A5D013F465C43D05515340DBEC965 /* Headers */, + B72E6B6FC36DE88CE6E73512C1A3ED6B /* Sources */, + C6DA7DE690A6DE816489ABBF257E3245 /* Frameworks */, ); buildRules = ( ); @@ -8082,13 +8142,13 @@ buildRules = ( ); dependencies = ( - 73EC515CC5FB54A183300B42685369DD /* PBXTargetDependency */, - E812535AB6E9320E02166E552C709B2F /* PBXTargetDependency */, - 271DBF50A4497E37C2B1082F4EA05C58 /* PBXTargetDependency */, - F7E6D61FAD6BB5E1ABE5D0D65DC364B7 /* PBXTargetDependency */, - 37982E51562DC76C711FB2BA5B44E3A7 /* PBXTargetDependency */, - 3EA303BA6F0D3EF1489F90377387B07C /* PBXTargetDependency */, - 2A4E8EC7DB6361DB03D319CAC028AEC5 /* PBXTargetDependency */, + 1A71FF1EECA8DB0648C2B2A5C94FC8B1 /* PBXTargetDependency */, + 0F04E208763E1609DB6EC8EE6FFD1144 /* PBXTargetDependency */, + 9B686050B3702E78074BF091C7B25808 /* PBXTargetDependency */, + 7F76D847C836FF890C8D105CC0BFAE00 /* PBXTargetDependency */, + 92DF17AC136FA3990003CA984C25B83A /* PBXTargetDependency */, + 28C483E3B6950870FD1EF7D17380DF5A /* PBXTargetDependency */, + FE96776C2F90B61C2C1F931557CF9C41 /* PBXTargetDependency */, ); name = DDMAMapKit_Private; productName = DDMAMapKit_Private; @@ -8125,9 +8185,9 @@ buildRules = ( ); dependencies = ( - 9E55C14AC59A47177E48A1B0EA1D8760 /* PBXTargetDependency */, - 46400A68231E8DF09BAC50F0B18DD249 /* PBXTargetDependency */, - 0516D8C91EBAEF291443C3455AE9FD23 /* PBXTargetDependency */, + BB15D1EA661F13E635453CEB97AC68A8 /* PBXTargetDependency */, + 4D2980DFD79E69581C002D9677D9D931 /* PBXTargetDependency */, + 5C5B562DE22742375C28389F3D4D552B /* PBXTargetDependency */, ); name = DDNetworkingOfAlamofireKit_Private; productName = DDNetworkingOfAlamofireKit_Private; @@ -8187,14 +8247,32 @@ productReference = 5BA6046B4C2674409C0D5625F45F8769 /* BRPickerView */; productType = "com.apple.product-type.library.static"; }; + E72BE4C94039A951B47CCC942F6B4B8F /* DDAudioPlayerKit_Private */ = { + isa = PBXNativeTarget; + buildConfigurationList = 210B829A53D6237B3B0C2ABEE261B2F3 /* Build configuration list for PBXNativeTarget "DDAudioPlayerKit_Private" */; + buildPhases = ( + 1D27E2771BDF5D00F752E6422D2DA6E3 /* Headers */, + 7329123C0DC6F6E18B42DF7C7BFCC321 /* Sources */, + D5E1D84B34B71519E4F5E7B072CAC9F0 /* Frameworks */, + D33091307E1A8E5E5631E3AC9BE97ECB /* Copy generated compatibility header */, + ); + buildRules = ( + ); + dependencies = ( + ); + name = DDAudioPlayerKit_Private; + productName = DDAudioPlayerKit_Private; + productReference = 09B4C59FAB38D6054E5993BD78205023 /* DDAudioPlayerKit_Private */; + productType = "com.apple.product-type.library.static"; + }; E8022D22FAA6690B5E1C379C1BCE1491 /* Kingfisher */ = { isa = PBXNativeTarget; - buildConfigurationList = F67A6C2C2406253E1B5407B6EA8CA4B3 /* Build configuration list for PBXNativeTarget "Kingfisher" */; + buildConfigurationList = 97FD3E953B2E469AD748A43EA1CBD588 /* Build configuration list for PBXNativeTarget "Kingfisher" */; buildPhases = ( - A0C603FBF4165158D21698A32E5F417E /* Headers */, - 92E540F68103F47BFB06A4E1DBBC40D7 /* Sources */, - 372F28DC4BB9EBBF7967D93174DC77D9 /* Frameworks */, - 01AF700195E86325B24CD7BF349055AA /* Copy generated compatibility header */, + D308D7243FA3F6EF2DA0BA6AF4F80CE4 /* Headers */, + D33189EDEFB3138E99E83BD5149121F6 /* Sources */, + 0195FCD752A2BE70AD56BA8DF4DBA31A /* Frameworks */, + 6B0EDC3844F3C361FEDEA91A77CFC984 /* Copy generated compatibility header */, ); buildRules = ( ); @@ -8207,12 +8285,12 @@ }; EA9EA43B3B503823EE36C60D9C8A865F /* RxSwift */ = { isa = PBXNativeTarget; - buildConfigurationList = 6967B0085C2E50A69AA1A26E611E93AA /* Build configuration list for PBXNativeTarget "RxSwift" */; + buildConfigurationList = 5848F59CA3DDA46F4FB217B5B6C99666 /* Build configuration list for PBXNativeTarget "RxSwift" */; buildPhases = ( - 28A01169A812B2F00AB3DD098B9A7F8A /* Headers */, - 187CFE934952C15B9E2BBE8EBB28C81B /* Sources */, - 3F1711A22900F2FF75C90B32C72E20AC /* Frameworks */, - 1BEF41FA623E4E5A122F4F5033F1BDC4 /* Copy generated compatibility header */, + 3BBAA597943FA72A50BB8D930A99FFB9 /* Headers */, + E1EB6444266FAA3D5056B7BA50147A69 /* Sources */, + DD7D27F8A87777C65DDBD0A0C79FC5E8 /* Frameworks */, + 6E2140C5523EB14FE005D6D8B681217E /* Copy generated compatibility header */, ); buildRules = ( ); @@ -8277,7 +8355,7 @@ en, ); mainGroup = CF1408CF629C7361332E53B88F7BD30C; - productRefGroup = 891A6411A978773718ED3F5EFED01BAA /* Products */; + productRefGroup = 63FE9F32703B49B39F824D28EF07ADA7 /* Products */; projectDirPath = ""; projectRoot = ""; targets = ( @@ -8289,6 +8367,7 @@ 2160840D78FCB958CABE1B88300E38C5 /* AMapTrack-NO-IDFA */, D505645C3F99EB1E8B6529D64D2C3E1C /* BRPickerView */, 0A2E6BA6D5360D619D7CABED3467AA69 /* CocoaDebug */, + E72BE4C94039A951B47CCC942F6B4B8F /* DDAudioPlayerKit_Private */, 53463808DD395EFE0C9E0CDCB79A6C0A /* DDAutoUIKit_Private */, 087B100C5691B6A3C04A45198E6C32F6 /* DDBasicControlsKit_Private */, 5C23965029860967865B3429B5E29092 /* DDBasicControlsKit_Private-DDBaseViewController */, @@ -8326,73 +8405,25 @@ /* End PBXProject section */ /* Begin PBXResourcesBuildPhase section */ - 43094D25F0C53BB2E1E29A1737FD9E74 /* Resources */ = { + 1D2C9D69FCFC29DD691EBBEFF78240DA /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( - 7A0B6D99906FF6556D90F6A773526EAF /* Sources_DDMAMap in Resources */, + 620CDA1C50743C819C01828F4E869261 /* Sources_DDMAMap in Resources */, ); runOnlyForDeploymentPostprocessing = 0; }; - B9EFAB56757BF468EE5468CCAFCD18B6 /* Resources */ = { + F2159222D413D829C60B1AF3521AF607 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( - 1B1525A8959E24F9A9FFC522554B43F0 /* DDBaseViewController.xcassets in Resources */, + D6840A04ECDF94C1E5C5D347C8AB0172 /* DDBaseViewController.xcassets in Resources */, ); runOnlyForDeploymentPostprocessing = 0; }; /* End PBXResourcesBuildPhase section */ /* Begin PBXShellScriptBuildPhase section */ - 01AF700195E86325B24CD7BF349055AA /* Copy generated compatibility header */ = { - isa = PBXShellScriptBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - inputFileListPaths = ( - ); - inputPaths = ( - "${DERIVED_SOURCES_DIR}/${PRODUCT_MODULE_NAME}-Swift.h", - "${PODS_ROOT}/Headers/Public/Kingfisher/Kingfisher.modulemap", - "${PODS_ROOT}/Headers/Public/Kingfisher/Kingfisher-umbrella.h", - ); - name = "Copy generated compatibility header"; - outputFileListPaths = ( - ); - outputPaths = ( - "${BUILT_PRODUCTS_DIR}/${PRODUCT_MODULE_NAME}.modulemap", - "${BUILT_PRODUCTS_DIR}/Kingfisher-umbrella.h", - "${BUILT_PRODUCTS_DIR}/Swift Compatibility Header/${PRODUCT_MODULE_NAME}-Swift.h", - ); - runOnlyForDeploymentPostprocessing = 0; - shellPath = /bin/sh; - shellScript = "COMPATIBILITY_HEADER_PATH=\"${BUILT_PRODUCTS_DIR}/Swift Compatibility Header/${PRODUCT_MODULE_NAME}-Swift.h\"\nMODULE_MAP_PATH=\"${BUILT_PRODUCTS_DIR}/${PRODUCT_MODULE_NAME}.modulemap\"\n\nditto \"${DERIVED_SOURCES_DIR}/${PRODUCT_MODULE_NAME}-Swift.h\" \"${COMPATIBILITY_HEADER_PATH}\"\nditto \"${PODS_ROOT}/Headers/Public/Kingfisher/Kingfisher.modulemap\" \"${MODULE_MAP_PATH}\"\nditto \"${PODS_ROOT}/Headers/Public/Kingfisher/Kingfisher-umbrella.h\" \"${BUILT_PRODUCTS_DIR}\"\nprintf \"\\n\\nmodule ${PRODUCT_MODULE_NAME}.Swift {\\n header \\\"${COMPATIBILITY_HEADER_PATH}\\\"\\n requires objc\\n}\\n\" >> \"${MODULE_MAP_PATH}\"\n"; - }; - 080624BFEE926BCEC7E0282DFC1526BF /* Copy generated compatibility header */ = { - isa = PBXShellScriptBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - inputFileListPaths = ( - ); - inputPaths = ( - "${DERIVED_SOURCES_DIR}/${PRODUCT_MODULE_NAME}-Swift.h", - "${PODS_ROOT}/Headers/Public/RxRelay/RxRelay.modulemap", - "${PODS_ROOT}/Headers/Public/RxRelay/RxRelay-umbrella.h", - ); - name = "Copy generated compatibility header"; - outputFileListPaths = ( - ); - outputPaths = ( - "${BUILT_PRODUCTS_DIR}/${PRODUCT_MODULE_NAME}.modulemap", - "${BUILT_PRODUCTS_DIR}/RxRelay-umbrella.h", - "${BUILT_PRODUCTS_DIR}/Swift Compatibility Header/${PRODUCT_MODULE_NAME}-Swift.h", - ); - runOnlyForDeploymentPostprocessing = 0; - shellPath = /bin/sh; - shellScript = "COMPATIBILITY_HEADER_PATH=\"${BUILT_PRODUCTS_DIR}/Swift Compatibility Header/${PRODUCT_MODULE_NAME}-Swift.h\"\nMODULE_MAP_PATH=\"${BUILT_PRODUCTS_DIR}/${PRODUCT_MODULE_NAME}.modulemap\"\n\nditto \"${DERIVED_SOURCES_DIR}/${PRODUCT_MODULE_NAME}-Swift.h\" \"${COMPATIBILITY_HEADER_PATH}\"\nditto \"${PODS_ROOT}/Headers/Public/RxRelay/RxRelay.modulemap\" \"${MODULE_MAP_PATH}\"\nditto \"${PODS_ROOT}/Headers/Public/RxRelay/RxRelay-umbrella.h\" \"${BUILT_PRODUCTS_DIR}\"\nprintf \"\\n\\nmodule ${PRODUCT_MODULE_NAME}.Swift {\\n header \\\"${COMPATIBILITY_HEADER_PATH}\\\"\\n requires objc\\n}\\n\" >> \"${MODULE_MAP_PATH}\"\n"; - }; 0CF2A38911A1A424C18030CC8F78C3B0 /* Copy generated compatibility header */ = { isa = PBXShellScriptBuildPhase; buildActionMask = 2147483647; @@ -8417,30 +8448,6 @@ shellPath = /bin/sh; shellScript = "COMPATIBILITY_HEADER_PATH=\"${BUILT_PRODUCTS_DIR}/Swift Compatibility Header/${PRODUCT_MODULE_NAME}-Swift.h\"\nMODULE_MAP_PATH=\"${BUILT_PRODUCTS_DIR}/${PRODUCT_MODULE_NAME}.modulemap\"\n\nditto \"${DERIVED_SOURCES_DIR}/${PRODUCT_MODULE_NAME}-Swift.h\" \"${COMPATIBILITY_HEADER_PATH}\"\nditto \"${PODS_ROOT}/Headers/Public/RxCocoa/RxCocoa.modulemap\" \"${MODULE_MAP_PATH}\"\nditto \"${PODS_ROOT}/Headers/Public/RxCocoa/RxCocoa-umbrella.h\" \"${BUILT_PRODUCTS_DIR}\"\nprintf \"\\n\\nmodule ${PRODUCT_MODULE_NAME}.Swift {\\n header \\\"${COMPATIBILITY_HEADER_PATH}\\\"\\n requires objc\\n}\\n\" >> \"${MODULE_MAP_PATH}\"\n"; }; - 1BEF41FA623E4E5A122F4F5033F1BDC4 /* Copy generated compatibility header */ = { - isa = PBXShellScriptBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - inputFileListPaths = ( - ); - inputPaths = ( - "${DERIVED_SOURCES_DIR}/${PRODUCT_MODULE_NAME}-Swift.h", - "${PODS_ROOT}/Headers/Public/RxSwift/RxSwift.modulemap", - "${PODS_ROOT}/Headers/Public/RxSwift/RxSwift-umbrella.h", - ); - name = "Copy generated compatibility header"; - outputFileListPaths = ( - ); - outputPaths = ( - "${BUILT_PRODUCTS_DIR}/${PRODUCT_MODULE_NAME}.modulemap", - "${BUILT_PRODUCTS_DIR}/RxSwift-umbrella.h", - "${BUILT_PRODUCTS_DIR}/Swift Compatibility Header/${PRODUCT_MODULE_NAME}-Swift.h", - ); - runOnlyForDeploymentPostprocessing = 0; - shellPath = /bin/sh; - shellScript = "COMPATIBILITY_HEADER_PATH=\"${BUILT_PRODUCTS_DIR}/Swift Compatibility Header/${PRODUCT_MODULE_NAME}-Swift.h\"\nMODULE_MAP_PATH=\"${BUILT_PRODUCTS_DIR}/${PRODUCT_MODULE_NAME}.modulemap\"\n\nditto \"${DERIVED_SOURCES_DIR}/${PRODUCT_MODULE_NAME}-Swift.h\" \"${COMPATIBILITY_HEADER_PATH}\"\nditto \"${PODS_ROOT}/Headers/Public/RxSwift/RxSwift.modulemap\" \"${MODULE_MAP_PATH}\"\nditto \"${PODS_ROOT}/Headers/Public/RxSwift/RxSwift-umbrella.h\" \"${BUILT_PRODUCTS_DIR}\"\nprintf \"\\n\\nmodule ${PRODUCT_MODULE_NAME}.Swift {\\n header \\\"${COMPATIBILITY_HEADER_PATH}\\\"\\n requires objc\\n}\\n\" >> \"${MODULE_MAP_PATH}\"\n"; - }; 21447C698D95583E65C2265B1E31DA31 /* Copy generated compatibility header */ = { isa = PBXShellScriptBuildPhase; buildActionMask = 2147483647; @@ -8465,6 +8472,30 @@ shellPath = /bin/sh; shellScript = "COMPATIBILITY_HEADER_PATH=\"${BUILT_PRODUCTS_DIR}/Swift Compatibility Header/${PRODUCT_MODULE_NAME}-Swift.h\"\nMODULE_MAP_PATH=\"${BUILT_PRODUCTS_DIR}/${PRODUCT_MODULE_NAME}.modulemap\"\n\nditto \"${DERIVED_SOURCES_DIR}/${PRODUCT_MODULE_NAME}-Swift.h\" \"${COMPATIBILITY_HEADER_PATH}\"\nditto \"${PODS_ROOT}/Headers/Public/IQKeyboardManagerSwift/IQKeyboardManagerSwift.modulemap\" \"${MODULE_MAP_PATH}\"\nditto \"${PODS_ROOT}/Headers/Public/IQKeyboardManagerSwift/IQKeyboardManagerSwift-umbrella.h\" \"${BUILT_PRODUCTS_DIR}\"\nprintf \"\\n\\nmodule ${PRODUCT_MODULE_NAME}.Swift {\\n header \\\"${COMPATIBILITY_HEADER_PATH}\\\"\\n requires objc\\n}\\n\" >> \"${MODULE_MAP_PATH}\"\n"; }; + 378D70BECBE6DFDEBB4104C5ED061758 /* Copy generated compatibility header */ = { + isa = PBXShellScriptBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + inputFileListPaths = ( + ); + inputPaths = ( + "${DERIVED_SOURCES_DIR}/${PRODUCT_MODULE_NAME}-Swift.h", + "${PODS_ROOT}/Headers/Public/RxRelay/RxRelay.modulemap", + "${PODS_ROOT}/Headers/Public/RxRelay/RxRelay-umbrella.h", + ); + name = "Copy generated compatibility header"; + outputFileListPaths = ( + ); + outputPaths = ( + "${BUILT_PRODUCTS_DIR}/${PRODUCT_MODULE_NAME}.modulemap", + "${BUILT_PRODUCTS_DIR}/RxRelay-umbrella.h", + "${BUILT_PRODUCTS_DIR}/Swift Compatibility Header/${PRODUCT_MODULE_NAME}-Swift.h", + ); + runOnlyForDeploymentPostprocessing = 0; + shellPath = /bin/sh; + shellScript = "COMPATIBILITY_HEADER_PATH=\"${BUILT_PRODUCTS_DIR}/Swift Compatibility Header/${PRODUCT_MODULE_NAME}-Swift.h\"\nMODULE_MAP_PATH=\"${BUILT_PRODUCTS_DIR}/${PRODUCT_MODULE_NAME}.modulemap\"\n\nditto \"${DERIVED_SOURCES_DIR}/${PRODUCT_MODULE_NAME}-Swift.h\" \"${COMPATIBILITY_HEADER_PATH}\"\nditto \"${PODS_ROOT}/Headers/Public/RxRelay/RxRelay.modulemap\" \"${MODULE_MAP_PATH}\"\nditto \"${PODS_ROOT}/Headers/Public/RxRelay/RxRelay-umbrella.h\" \"${BUILT_PRODUCTS_DIR}\"\nprintf \"\\n\\nmodule ${PRODUCT_MODULE_NAME}.Swift {\\n header \\\"${COMPATIBILITY_HEADER_PATH}\\\"\\n requires objc\\n}\\n\" >> \"${MODULE_MAP_PATH}\"\n"; + }; 3ECCFB438C99E5452730F628D5942AA6 /* Copy generated compatibility header */ = { isa = PBXShellScriptBuildPhase; buildActionMask = 2147483647; @@ -8489,6 +8520,30 @@ shellPath = /bin/sh; shellScript = "COMPATIBILITY_HEADER_PATH=\"${BUILT_PRODUCTS_DIR}/Swift Compatibility Header/${PRODUCT_MODULE_NAME}-Swift.h\"\nMODULE_MAP_PATH=\"${BUILT_PRODUCTS_DIR}/${PRODUCT_MODULE_NAME}.modulemap\"\n\nditto \"${DERIVED_SOURCES_DIR}/${PRODUCT_MODULE_NAME}-Swift.h\" \"${COMPATIBILITY_HEADER_PATH}\"\nditto \"${PODS_ROOT}/Headers/Public/DDFontKit_Private/DDFontKit_Private.modulemap\" \"${MODULE_MAP_PATH}\"\nditto \"${PODS_ROOT}/Headers/Public/DDFontKit_Private/DDFontKit_Private-umbrella.h\" \"${BUILT_PRODUCTS_DIR}\"\nprintf \"\\n\\nmodule ${PRODUCT_MODULE_NAME}.Swift {\\n header \\\"${COMPATIBILITY_HEADER_PATH}\\\"\\n requires objc\\n}\\n\" >> \"${MODULE_MAP_PATH}\"\n"; }; + 46EB960BB6D3FDE4848A5267F5C71752 /* Copy generated compatibility header */ = { + isa = PBXShellScriptBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + inputFileListPaths = ( + ); + inputPaths = ( + "${DERIVED_SOURCES_DIR}/${PRODUCT_MODULE_NAME}-Swift.h", + "${PODS_ROOT}/Headers/Public/SnapKit/SnapKit.modulemap", + "${PODS_ROOT}/Headers/Public/SnapKit/SnapKit-umbrella.h", + ); + name = "Copy generated compatibility header"; + outputFileListPaths = ( + ); + outputPaths = ( + "${BUILT_PRODUCTS_DIR}/${PRODUCT_MODULE_NAME}.modulemap", + "${BUILT_PRODUCTS_DIR}/SnapKit-umbrella.h", + "${BUILT_PRODUCTS_DIR}/Swift Compatibility Header/${PRODUCT_MODULE_NAME}-Swift.h", + ); + runOnlyForDeploymentPostprocessing = 0; + shellPath = /bin/sh; + shellScript = "COMPATIBILITY_HEADER_PATH=\"${BUILT_PRODUCTS_DIR}/Swift Compatibility Header/${PRODUCT_MODULE_NAME}-Swift.h\"\nMODULE_MAP_PATH=\"${BUILT_PRODUCTS_DIR}/${PRODUCT_MODULE_NAME}.modulemap\"\n\nditto \"${DERIVED_SOURCES_DIR}/${PRODUCT_MODULE_NAME}-Swift.h\" \"${COMPATIBILITY_HEADER_PATH}\"\nditto \"${PODS_ROOT}/Headers/Public/SnapKit/SnapKit.modulemap\" \"${MODULE_MAP_PATH}\"\nditto \"${PODS_ROOT}/Headers/Public/SnapKit/SnapKit-umbrella.h\" \"${BUILT_PRODUCTS_DIR}\"\nprintf \"\\n\\nmodule ${PRODUCT_MODULE_NAME}.Swift {\\n header \\\"${COMPATIBILITY_HEADER_PATH}\\\"\\n requires objc\\n}\\n\" >> \"${MODULE_MAP_PATH}\"\n"; + }; 616E20ADD3CB403ACC8C5DA2C2F8CCE4 /* Copy generated compatibility header */ = { isa = PBXShellScriptBuildPhase; buildActionMask = 2147483647; @@ -8554,6 +8609,54 @@ shellScript = "\"${PODS_ROOT}/Target Support Files/JPushExtension/JPushExtension-xcframeworks.sh\"\n"; showEnvVarsInLog = 0; }; + 6B0EDC3844F3C361FEDEA91A77CFC984 /* Copy generated compatibility header */ = { + isa = PBXShellScriptBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + inputFileListPaths = ( + ); + inputPaths = ( + "${DERIVED_SOURCES_DIR}/${PRODUCT_MODULE_NAME}-Swift.h", + "${PODS_ROOT}/Headers/Public/Kingfisher/Kingfisher.modulemap", + "${PODS_ROOT}/Headers/Public/Kingfisher/Kingfisher-umbrella.h", + ); + name = "Copy generated compatibility header"; + outputFileListPaths = ( + ); + outputPaths = ( + "${BUILT_PRODUCTS_DIR}/${PRODUCT_MODULE_NAME}.modulemap", + "${BUILT_PRODUCTS_DIR}/Kingfisher-umbrella.h", + "${BUILT_PRODUCTS_DIR}/Swift Compatibility Header/${PRODUCT_MODULE_NAME}-Swift.h", + ); + runOnlyForDeploymentPostprocessing = 0; + shellPath = /bin/sh; + shellScript = "COMPATIBILITY_HEADER_PATH=\"${BUILT_PRODUCTS_DIR}/Swift Compatibility Header/${PRODUCT_MODULE_NAME}-Swift.h\"\nMODULE_MAP_PATH=\"${BUILT_PRODUCTS_DIR}/${PRODUCT_MODULE_NAME}.modulemap\"\n\nditto \"${DERIVED_SOURCES_DIR}/${PRODUCT_MODULE_NAME}-Swift.h\" \"${COMPATIBILITY_HEADER_PATH}\"\nditto \"${PODS_ROOT}/Headers/Public/Kingfisher/Kingfisher.modulemap\" \"${MODULE_MAP_PATH}\"\nditto \"${PODS_ROOT}/Headers/Public/Kingfisher/Kingfisher-umbrella.h\" \"${BUILT_PRODUCTS_DIR}\"\nprintf \"\\n\\nmodule ${PRODUCT_MODULE_NAME}.Swift {\\n header \\\"${COMPATIBILITY_HEADER_PATH}\\\"\\n requires objc\\n}\\n\" >> \"${MODULE_MAP_PATH}\"\n"; + }; + 6E2140C5523EB14FE005D6D8B681217E /* Copy generated compatibility header */ = { + isa = PBXShellScriptBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + inputFileListPaths = ( + ); + inputPaths = ( + "${DERIVED_SOURCES_DIR}/${PRODUCT_MODULE_NAME}-Swift.h", + "${PODS_ROOT}/Headers/Public/RxSwift/RxSwift.modulemap", + "${PODS_ROOT}/Headers/Public/RxSwift/RxSwift-umbrella.h", + ); + name = "Copy generated compatibility header"; + outputFileListPaths = ( + ); + outputPaths = ( + "${BUILT_PRODUCTS_DIR}/${PRODUCT_MODULE_NAME}.modulemap", + "${BUILT_PRODUCTS_DIR}/RxSwift-umbrella.h", + "${BUILT_PRODUCTS_DIR}/Swift Compatibility Header/${PRODUCT_MODULE_NAME}-Swift.h", + ); + runOnlyForDeploymentPostprocessing = 0; + shellPath = /bin/sh; + shellScript = "COMPATIBILITY_HEADER_PATH=\"${BUILT_PRODUCTS_DIR}/Swift Compatibility Header/${PRODUCT_MODULE_NAME}-Swift.h\"\nMODULE_MAP_PATH=\"${BUILT_PRODUCTS_DIR}/${PRODUCT_MODULE_NAME}.modulemap\"\n\nditto \"${DERIVED_SOURCES_DIR}/${PRODUCT_MODULE_NAME}-Swift.h\" \"${COMPATIBILITY_HEADER_PATH}\"\nditto \"${PODS_ROOT}/Headers/Public/RxSwift/RxSwift.modulemap\" \"${MODULE_MAP_PATH}\"\nditto \"${PODS_ROOT}/Headers/Public/RxSwift/RxSwift-umbrella.h\" \"${BUILT_PRODUCTS_DIR}\"\nprintf \"\\n\\nmodule ${PRODUCT_MODULE_NAME}.Swift {\\n header \\\"${COMPATIBILITY_HEADER_PATH}\\\"\\n requires objc\\n}\\n\" >> \"${MODULE_MAP_PATH}\"\n"; + }; 6F80FA46DA0904DDF27D0A528B51CF6B /* Copy generated compatibility header */ = { isa = PBXShellScriptBuildPhase; buildActionMask = 2147483647; @@ -8578,30 +8681,6 @@ shellPath = /bin/sh; shellScript = "COMPATIBILITY_HEADER_PATH=\"${BUILT_PRODUCTS_DIR}/Swift Compatibility Header/${PRODUCT_MODULE_NAME}-Swift.h\"\nMODULE_MAP_PATH=\"${BUILT_PRODUCTS_DIR}/${PRODUCT_MODULE_NAME}.modulemap\"\n\nditto \"${DERIVED_SOURCES_DIR}/${PRODUCT_MODULE_NAME}-Swift.h\" \"${COMPATIBILITY_HEADER_PATH}\"\nditto \"${PODS_ROOT}/Headers/Public/DDToastKit_Private/DDToastKit_Private.modulemap\" \"${MODULE_MAP_PATH}\"\nditto \"${PODS_ROOT}/Headers/Public/DDToastKit_Private/DDToastKit_Private-umbrella.h\" \"${BUILT_PRODUCTS_DIR}\"\nprintf \"\\n\\nmodule ${PRODUCT_MODULE_NAME}.Swift {\\n header \\\"${COMPATIBILITY_HEADER_PATH}\\\"\\n requires objc\\n}\\n\" >> \"${MODULE_MAP_PATH}\"\n"; }; - 75C7C925EB8F402EAE152E951D133316 /* Copy generated compatibility header */ = { - isa = PBXShellScriptBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - inputFileListPaths = ( - ); - inputPaths = ( - "${DERIVED_SOURCES_DIR}/${PRODUCT_MODULE_NAME}-Swift.h", - "${PODS_ROOT}/Headers/Public/DDLogKit_Private/DDLogKit_Private.modulemap", - "${PODS_ROOT}/Headers/Public/DDLogKit_Private/DDLogKit_Private-umbrella.h", - ); - name = "Copy generated compatibility header"; - outputFileListPaths = ( - ); - outputPaths = ( - "${BUILT_PRODUCTS_DIR}/${PRODUCT_MODULE_NAME}.modulemap", - "${BUILT_PRODUCTS_DIR}/DDLogKit_Private-umbrella.h", - "${BUILT_PRODUCTS_DIR}/Swift Compatibility Header/${PRODUCT_MODULE_NAME}-Swift.h", - ); - runOnlyForDeploymentPostprocessing = 0; - shellPath = /bin/sh; - shellScript = "COMPATIBILITY_HEADER_PATH=\"${BUILT_PRODUCTS_DIR}/Swift Compatibility Header/${PRODUCT_MODULE_NAME}-Swift.h\"\nMODULE_MAP_PATH=\"${BUILT_PRODUCTS_DIR}/${PRODUCT_MODULE_NAME}.modulemap\"\n\nditto \"${DERIVED_SOURCES_DIR}/${PRODUCT_MODULE_NAME}-Swift.h\" \"${COMPATIBILITY_HEADER_PATH}\"\nditto \"${PODS_ROOT}/Headers/Public/DDLogKit_Private/DDLogKit_Private.modulemap\" \"${MODULE_MAP_PATH}\"\nditto \"${PODS_ROOT}/Headers/Public/DDLogKit_Private/DDLogKit_Private-umbrella.h\" \"${BUILT_PRODUCTS_DIR}\"\nprintf \"\\n\\nmodule ${PRODUCT_MODULE_NAME}.Swift {\\n header \\\"${COMPATIBILITY_HEADER_PATH}\\\"\\n requires objc\\n}\\n\" >> \"${MODULE_MAP_PATH}\"\n"; - }; 79DBFE46B7D0FECC658533D8FC343599 /* Copy generated compatibility header */ = { isa = PBXShellScriptBuildPhase; buildActionMask = 2147483647; @@ -8787,6 +8866,30 @@ shellPath = /bin/sh; shellScript = "COMPATIBILITY_HEADER_PATH=\"${BUILT_PRODUCTS_DIR}/Swift Compatibility Header/${PRODUCT_MODULE_NAME}-Swift.h\"\nMODULE_MAP_PATH=\"${BUILT_PRODUCTS_DIR}/${PRODUCT_MODULE_NAME}.modulemap\"\n\nditto \"${DERIVED_SOURCES_DIR}/${PRODUCT_MODULE_NAME}-Swift.h\" \"${COMPATIBILITY_HEADER_PATH}\"\nditto \"${PODS_ROOT}/Headers/Public/DDNetworkingOfAlamofireKit_Private/DDNetworkingOfAlamofireKit_Private.modulemap\" \"${MODULE_MAP_PATH}\"\nditto \"${PODS_ROOT}/Headers/Public/DDNetworkingOfAlamofireKit_Private/DDNetworkingOfAlamofireKit_Private-umbrella.h\" \"${BUILT_PRODUCTS_DIR}\"\nprintf \"\\n\\nmodule ${PRODUCT_MODULE_NAME}.Swift {\\n header \\\"${COMPATIBILITY_HEADER_PATH}\\\"\\n requires objc\\n}\\n\" >> \"${MODULE_MAP_PATH}\"\n"; }; + D33091307E1A8E5E5631E3AC9BE97ECB /* Copy generated compatibility header */ = { + isa = PBXShellScriptBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + inputFileListPaths = ( + ); + inputPaths = ( + "${DERIVED_SOURCES_DIR}/${PRODUCT_MODULE_NAME}-Swift.h", + "${PODS_ROOT}/Headers/Public/DDAudioPlayerKit_Private/DDAudioPlayerKit_Private.modulemap", + "${PODS_ROOT}/Headers/Public/DDAudioPlayerKit_Private/DDAudioPlayerKit_Private-umbrella.h", + ); + name = "Copy generated compatibility header"; + outputFileListPaths = ( + ); + outputPaths = ( + "${BUILT_PRODUCTS_DIR}/${PRODUCT_MODULE_NAME}.modulemap", + "${BUILT_PRODUCTS_DIR}/DDAudioPlayerKit_Private-umbrella.h", + "${BUILT_PRODUCTS_DIR}/Swift Compatibility Header/${PRODUCT_MODULE_NAME}-Swift.h", + ); + runOnlyForDeploymentPostprocessing = 0; + shellPath = /bin/sh; + shellScript = "COMPATIBILITY_HEADER_PATH=\"${BUILT_PRODUCTS_DIR}/Swift Compatibility Header/${PRODUCT_MODULE_NAME}-Swift.h\"\nMODULE_MAP_PATH=\"${BUILT_PRODUCTS_DIR}/${PRODUCT_MODULE_NAME}.modulemap\"\n\nditto \"${DERIVED_SOURCES_DIR}/${PRODUCT_MODULE_NAME}-Swift.h\" \"${COMPATIBILITY_HEADER_PATH}\"\nditto \"${PODS_ROOT}/Headers/Public/DDAudioPlayerKit_Private/DDAudioPlayerKit_Private.modulemap\" \"${MODULE_MAP_PATH}\"\nditto \"${PODS_ROOT}/Headers/Public/DDAudioPlayerKit_Private/DDAudioPlayerKit_Private-umbrella.h\" \"${BUILT_PRODUCTS_DIR}\"\nprintf \"\\n\\nmodule ${PRODUCT_MODULE_NAME}.Swift {\\n header \\\"${COMPATIBILITY_HEADER_PATH}\\\"\\n requires objc\\n}\\n\" >> \"${MODULE_MAP_PATH}\"\n"; + }; D73EEB9F3069F731FAED740B7B5491BD /* [CP] Copy XCFrameworks */ = { isa = PBXShellScriptBuildPhase; buildActionMask = 2147483647; @@ -8828,7 +8931,7 @@ shellPath = /bin/sh; shellScript = "COMPATIBILITY_HEADER_PATH=\"${BUILT_PRODUCTS_DIR}/Swift Compatibility Header/${PRODUCT_MODULE_NAME}-Swift.h\"\nMODULE_MAP_PATH=\"${BUILT_PRODUCTS_DIR}/${PRODUCT_MODULE_NAME}.modulemap\"\n\nditto \"${DERIVED_SOURCES_DIR}/${PRODUCT_MODULE_NAME}-Swift.h\" \"${COMPATIBILITY_HEADER_PATH}\"\nditto \"${PODS_ROOT}/Headers/Public/ESTabBarController_swift/ESTabBarController-swift.modulemap\" \"${MODULE_MAP_PATH}\"\nditto \"${PODS_ROOT}/Headers/Public/ESTabBarController_swift/ESTabBarController-swift-umbrella.h\" \"${BUILT_PRODUCTS_DIR}\"\nprintf \"\\n\\nmodule ${PRODUCT_MODULE_NAME}.Swift {\\n header \\\"${COMPATIBILITY_HEADER_PATH}\\\"\\n requires objc\\n}\\n\" >> \"${MODULE_MAP_PATH}\"\n"; }; - F2AEA66CBDF1416D45C4F1A4850CA6EC /* Copy generated compatibility header */ = { + F5EE999CB6651F301EC86CA523208684 /* Copy generated compatibility header */ = { isa = PBXShellScriptBuildPhase; buildActionMask = 2147483647; files = ( @@ -8837,20 +8940,20 @@ ); inputPaths = ( "${DERIVED_SOURCES_DIR}/${PRODUCT_MODULE_NAME}-Swift.h", - "${PODS_ROOT}/Headers/Public/SnapKit/SnapKit.modulemap", - "${PODS_ROOT}/Headers/Public/SnapKit/SnapKit-umbrella.h", + "${PODS_ROOT}/Headers/Public/DDLogKit_Private/DDLogKit_Private.modulemap", + "${PODS_ROOT}/Headers/Public/DDLogKit_Private/DDLogKit_Private-umbrella.h", ); name = "Copy generated compatibility header"; outputFileListPaths = ( ); outputPaths = ( "${BUILT_PRODUCTS_DIR}/${PRODUCT_MODULE_NAME}.modulemap", - "${BUILT_PRODUCTS_DIR}/SnapKit-umbrella.h", + "${BUILT_PRODUCTS_DIR}/DDLogKit_Private-umbrella.h", "${BUILT_PRODUCTS_DIR}/Swift Compatibility Header/${PRODUCT_MODULE_NAME}-Swift.h", ); runOnlyForDeploymentPostprocessing = 0; shellPath = /bin/sh; - shellScript = "COMPATIBILITY_HEADER_PATH=\"${BUILT_PRODUCTS_DIR}/Swift Compatibility Header/${PRODUCT_MODULE_NAME}-Swift.h\"\nMODULE_MAP_PATH=\"${BUILT_PRODUCTS_DIR}/${PRODUCT_MODULE_NAME}.modulemap\"\n\nditto \"${DERIVED_SOURCES_DIR}/${PRODUCT_MODULE_NAME}-Swift.h\" \"${COMPATIBILITY_HEADER_PATH}\"\nditto \"${PODS_ROOT}/Headers/Public/SnapKit/SnapKit.modulemap\" \"${MODULE_MAP_PATH}\"\nditto \"${PODS_ROOT}/Headers/Public/SnapKit/SnapKit-umbrella.h\" \"${BUILT_PRODUCTS_DIR}\"\nprintf \"\\n\\nmodule ${PRODUCT_MODULE_NAME}.Swift {\\n header \\\"${COMPATIBILITY_HEADER_PATH}\\\"\\n requires objc\\n}\\n\" >> \"${MODULE_MAP_PATH}\"\n"; + shellScript = "COMPATIBILITY_HEADER_PATH=\"${BUILT_PRODUCTS_DIR}/Swift Compatibility Header/${PRODUCT_MODULE_NAME}-Swift.h\"\nMODULE_MAP_PATH=\"${BUILT_PRODUCTS_DIR}/${PRODUCT_MODULE_NAME}.modulemap\"\n\nditto \"${DERIVED_SOURCES_DIR}/${PRODUCT_MODULE_NAME}-Swift.h\" \"${COMPATIBILITY_HEADER_PATH}\"\nditto \"${PODS_ROOT}/Headers/Public/DDLogKit_Private/DDLogKit_Private.modulemap\" \"${MODULE_MAP_PATH}\"\nditto \"${PODS_ROOT}/Headers/Public/DDLogKit_Private/DDLogKit_Private-umbrella.h\" \"${BUILT_PRODUCTS_DIR}\"\nprintf \"\\n\\nmodule ${PRODUCT_MODULE_NAME}.Swift {\\n header \\\"${COMPATIBILITY_HEADER_PATH}\\\"\\n requires objc\\n}\\n\" >> \"${MODULE_MAP_PATH}\"\n"; }; /* End PBXShellScriptBuildPhase section */ @@ -8873,189 +8976,6 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 187CFE934952C15B9E2BBE8EBB28C81B /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - 382FAABB891ADCC1BD08D67983076570 /* AddRef.swift in Sources */, - 3CDF53770F329E00653C4A0C2BC16B52 /* Amb.swift in Sources */, - 4DF38AAACEBAE8CD9AFB38C4BF890F9B /* AnonymousDisposable.swift in Sources */, - 2DCBD5DA7A75B4E17E6277569E3E99AC /* AnonymousObserver.swift in Sources */, - 1D65F74F1CBA03010F4100F7B6A7CC58 /* AnyObserver.swift in Sources */, - 096A017DDD63B10CF7D6F1AD7C52E7BB /* AsMaybe.swift in Sources */, - 9B64F7DB394E2D8A41CDB463E4FDBDA3 /* AsSingle.swift in Sources */, - B2668CA32A5C99F456F4CDEBD1357815 /* AsyncLock.swift in Sources */, - 0C82FB56CC552FB638EC1A23CDBCA8DB /* AsyncSubject.swift in Sources */, - 94BF8EDE56701865CFE361C3958AAB96 /* AtomicInt.swift in Sources */, - 3FDBC051501271A73A9FA05DBA8A915A /* Bag.swift in Sources */, - 78F894ED919BA89C6C89F2DBF915BE38 /* Bag+Rx.swift in Sources */, - 2555BE2A6241B7E7B7BEB9588255E451 /* BehaviorSubject.swift in Sources */, - BC4613F606FF616B59678CC5E1AD4B81 /* BinaryDisposable.swift in Sources */, - 0D55D8F71A11E56504065B0BDB737923 /* Binder.swift in Sources */, - C00A540BCF0B2E7C61495F829582CD05 /* BooleanDisposable.swift in Sources */, - 9D1684073A7205C6904A608A11E6752A /* Buffer.swift in Sources */, - 4ED3AC9E347BB768F85CA0612425A5E6 /* Cancelable.swift in Sources */, - A2595B37748D164CA5A93948236C44F5 /* Catch.swift in Sources */, - 85176F9D2B175DDAB5C27F9151EB49D0 /* CombineLatest.swift in Sources */, - 654A4C94E5BE7E8E6E87E3CFEAC5D2D1 /* CombineLatest+arity.swift in Sources */, - 241AEDFB15B65C726A7E26CA2B77FA6F /* CombineLatest+Collection.swift in Sources */, - 7BB0CACC6436CF5D5C3F70380CC60DCD /* CompactMap.swift in Sources */, - 12669E493A84B9537D7DC044623A72A8 /* Completable.swift in Sources */, - 0AB84C84576DE82DDB8D24B204A7852E /* Completable+AndThen.swift in Sources */, - 3AE13C38F69FF844BA60F7FD3764B4AA /* CompositeDisposable.swift in Sources */, - 1E8D214A9C0882F7ED1EC3EB36C1EDC3 /* Concat.swift in Sources */, - E980A6E4D1B22996C2341074FA63804C /* ConcurrentDispatchQueueScheduler.swift in Sources */, - EBE4017A0BB324301B0E698E3D8078BB /* ConcurrentMainScheduler.swift in Sources */, - D645B6DD70BB59D5E1F6EA9FF4635A68 /* ConnectableObservableType.swift in Sources */, - 13E36A94D23C8287C7663C78D6C35ADA /* Create.swift in Sources */, - EA48ACFC28CA582BCBF0A5C439E8441A /* CurrentThreadScheduler.swift in Sources */, - D600518DD12CD8BEC3A849BD0BBE2D9D /* Date+Dispatch.swift in Sources */, - 29D38C16AE934FA9E747A2C847F20CBD /* Debounce.swift in Sources */, - 383B256BF46D8267CE03920472C0DDB2 /* Debug.swift in Sources */, - 4A8F56569A88DC8547A302E6E594B0E0 /* Decode.swift in Sources */, - 8000439462BA38F5CC1CE651A2AD05D2 /* DefaultIfEmpty.swift in Sources */, - 28C71FA4017D8153E1670D26F490AB0E /* Deferred.swift in Sources */, - C5C6A2695111AB047DE364FBCF2C1918 /* Delay.swift in Sources */, - BCD84F663A8C1D96328F60181B1276BD /* DelaySubscription.swift in Sources */, - 5AA58FA5BA8474A0F3172C9775191C4B /* Dematerialize.swift in Sources */, - 87F7CD12D82DF0270C8EE985C09FAB06 /* DispatchQueue+Extensions.swift in Sources */, - 54FDDF4A5D5FFFD468B9B4F7DE31612D /* DispatchQueueConfiguration.swift in Sources */, - FA7032E4211E7EFC936625707B8F9284 /* Disposable.swift in Sources */, - E201F095F900DCAA56A3142DB40D8BC5 /* Disposables.swift in Sources */, - D9131973AC2759CC74A2D6F8BE2591BA /* DisposeBag.swift in Sources */, - 27D56EFA3F47ADD1F9EAC24EA184A228 /* DisposeBase.swift in Sources */, - 97A514A9C5F3A5B31E044B8B141843FA /* DistinctUntilChanged.swift in Sources */, - 01B909882A8399F1AF00D730F19BCE74 /* Do.swift in Sources */, - E19EB126C05BF41B737080FFC7461BBF /* ElementAt.swift in Sources */, - DCD43F7544E63524B07939D0F9B07D10 /* Empty.swift in Sources */, - 6D2B4E560DF8CF28AAAD298655330461 /* Enumerated.swift in Sources */, - AA9FB4EF80EFCFBD140609BC7CA0711A /* Error.swift in Sources */, - 0B43E469E08E84B5E633D1F007EF145C /* Errors.swift in Sources */, - 391C2CFE87103985CC06630FFAF4A510 /* Event.swift in Sources */, - C2386D25A5899F18063172A1FF00D8FC /* Filter.swift in Sources */, - 7F8C57E8EB092482AFB657DFACCBF876 /* First.swift in Sources */, - A3601AF3EAD20C053801C1294F74BA88 /* Generate.swift in Sources */, - CB5AF1507643EBEE077435919CD25A12 /* GroupBy.swift in Sources */, - 74F67FEAFEC525AC390396FF566F9100 /* GroupedObservable.swift in Sources */, - 1313000F563D15AEBF36F0A504ED2033 /* HistoricalScheduler.swift in Sources */, - 415EDC5C2019FE1CF4876DD136B4A63C /* HistoricalSchedulerTimeConverter.swift in Sources */, - 1A543DDEB276FE469EDAE5BD0053FCF9 /* ImmediateSchedulerType.swift in Sources */, - 83934536D39F22C4FDA8B8E6A64EA810 /* Infallible.swift in Sources */, - 76611951D9B70E4416C30FF8C9C92F17 /* Infallible+CombineLatest+arity.swift in Sources */, - 0639C0D97C7215269F7EDE1EA62D2242 /* Infallible+Concurrency.swift in Sources */, - 6D6A299EF1F0B7D39625BBC03F6043E8 /* Infallible+Create.swift in Sources */, - 583F0BC8B1851B26BEB01A754474322B /* Infallible+Operators.swift in Sources */, - 4992E986E758ED703892F134F85130C6 /* Infallible+Zip+arity.swift in Sources */, - 5D9AD59E5654C4DAB6B25B8A486C38D8 /* InfiniteSequence.swift in Sources */, - B1EA853A8923944BC03FA374C60C8D2A /* InvocableScheduledItem.swift in Sources */, - 025E67AC12E77F3A4FA96DE88B181C65 /* InvocableType.swift in Sources */, - 752B3F70A6F718A30BE1C49EC35BC3FA /* Just.swift in Sources */, - 13867C423EFFAF5440A49DA5848C016E /* Lock.swift in Sources */, - 6DB064B91D2C44A6E2550CCF94542FDF /* LockOwnerType.swift in Sources */, - FF68E7229363A392D4F2267C9980F68B /* MainScheduler.swift in Sources */, - 8B61B6699C20384BE87F231E686F0A3F /* Map.swift in Sources */, - 83844DC39C84B73CD3F00D1CF7BE9492 /* Materialize.swift in Sources */, - 90FA25420B5A51D57DAA89E1CE8410C2 /* Maybe.swift in Sources */, - AD447CCAB26B6318818D9C398D8F5FCE /* Merge.swift in Sources */, - EBB10AD5279CF4A6B5B34B3B453341FE /* Multicast.swift in Sources */, - F13CA12BAB8254C96EFF5A53B2A889FC /* Never.swift in Sources */, - 162922E11D73E9919CFB62AADD316379 /* NopDisposable.swift in Sources */, - 61F262365CEF552157D29B6572D3B54D /* Observable.swift in Sources */, - 307EB0E8BB5F31FA9A15BFE882235721 /* Observable+Concurrency.swift in Sources */, - F95D260849769883E389172E954E43EF /* ObservableConvertibleType.swift in Sources */, - A3F72276340E7867D40D991A1DD73B28 /* ObservableConvertibleType+Infallible.swift in Sources */, - 12A3FFE6EFA102969EC857701360FA43 /* ObservableType.swift in Sources */, - D5E9EC62DDC74CC7A9B1CD6832F371FE /* ObservableType+Extensions.swift in Sources */, - 372451496E4C3B37D8004E92F6CB1342 /* ObservableType+PrimitiveSequence.swift in Sources */, - 7DD0BC2DA256A086219DC90AE1FD3862 /* ObserveOn.swift in Sources */, - 058F5EA91B974F741952D754FE5FDE9F /* ObserverBase.swift in Sources */, - 92E6ABC8E89A3308335FC67F7ABD4373 /* ObserverType.swift in Sources */, - 6F1CB3950421A0340A5EF488790ED62A /* OperationQueueScheduler.swift in Sources */, - C700B60420E98DB7DB9D43C11DB34549 /* Optional.swift in Sources */, - C7D9729A13FA4591B0EBA5697758C056 /* Platform.Darwin.swift in Sources */, - C546CA4F4BC560BB62E64CE4C1E47BCF /* Platform.Linux.swift in Sources */, - 884E0742F061652658B861CEF44C7F21 /* PrimitiveSequence.swift in Sources */, - C8D3C82EA1944C6366DAF1B665F63B77 /* PrimitiveSequence+Concurrency.swift in Sources */, - 4528C147D320AC2845D86CFA8284884C /* PrimitiveSequence+Zip+arity.swift in Sources */, - C46EC3E9A125CAC84C16608C32DA80CA /* PriorityQueue.swift in Sources */, - DB3BDCABA7E5F79D08093CDA9F62375B /* Producer.swift in Sources */, - 3E6A048D5F8D41A3BA63531FC2567F50 /* PublishSubject.swift in Sources */, - 228D1E75D89473B26C6DC7FDB062E78D /* Queue.swift in Sources */, - D639FD5EBFAF305D60A58E9CE5A23031 /* Range.swift in Sources */, - A428F510C805EE7852E26A700DB60551 /* Reactive.swift in Sources */, - 6A53598A923329BDFA0D9500C3177D8D /* RecursiveLock.swift in Sources */, - 0191642005AE8A2F05071A211E671DE3 /* RecursiveScheduler.swift in Sources */, - 3428C70AD1EA765908E4442E265513BB /* Reduce.swift in Sources */, - 48FC38AD6CD5BE2793AEFEDE4BF62B19 /* RefCountDisposable.swift in Sources */, - F8981FC45F418B17A5D6E2C88D5CCE03 /* Repeat.swift in Sources */, - 495CCBF5B81022D0F7DE88F7EDEAAF52 /* ReplaySubject.swift in Sources */, - CD92D326C00A1CE1F9BB816671709E36 /* RetryWhen.swift in Sources */, - CF939610063C1343161A58323E71A401 /* Rx.swift in Sources */, - F8051E31F7727B7443D2227044FF36D8 /* RxMutableBox.swift in Sources */, - D8253B6569C479BC608F6FF9A6FBFFCA /* RxSwift-dummy.m in Sources */, - 7EB2310478090C2EB9121DB66FA3600D /* Sample.swift in Sources */, - 39734E6A023497BD5D2FE559E95D752F /* Scan.swift in Sources */, - 31A0D934BFC8B73E169CA41656371F88 /* ScheduledDisposable.swift in Sources */, - A6996D9D0B7D8EA7BB48909BB3574C7F /* ScheduledItem.swift in Sources */, - 9B4A302B07B6D0AE92D729ABCB626933 /* ScheduledItemType.swift in Sources */, - E6F4A7B34B4BEE2D2EF28185A5F9F423 /* SchedulerServices+Emulation.swift in Sources */, - 369F403C2B432D0E17E92F6D9A2BA956 /* SchedulerType.swift in Sources */, - 1AA1E2DE0F329F7CE0C7AADF49DA1ACB /* Sequence.swift in Sources */, - E31E95F520BF49B16AD6DC142230D72F /* SerialDispatchQueueScheduler.swift in Sources */, - 117EF0A1D2A3EC3BF889E0F095AF4EE3 /* SerialDisposable.swift in Sources */, - 8DEDBDD2B18903E314EA1EC8AAE046E3 /* ShareReplayScope.swift in Sources */, - 36066D30B25EDC297DF37C1C0AEB9DA8 /* Single.swift in Sources */, - 1FF938954BF9890AA2DCFFA6A7B6B518 /* SingleAssignmentDisposable.swift in Sources */, - C9986B4BC81F427F6C0306AF76B6CCDD /* SingleAsync.swift in Sources */, - 897B54D853BA61FF24B2D65C08476C36 /* Sink.swift in Sources */, - 130AD626ABD8A65564897083F19ED149 /* Skip.swift in Sources */, - 2B665FC004F48BC932CAC1C51A148994 /* SkipUntil.swift in Sources */, - 5BC5F8802750AC91462C063F1B8C636E /* SkipWhile.swift in Sources */, - 1AB7F7353ABEACF3DFF380371346E4F1 /* StartWith.swift in Sources */, - BE88F2CBE884822A7F7ECA72FFC514D2 /* SubjectType.swift in Sources */, - BF087DFEB24ABE12694A2A01C07DBC95 /* SubscribeOn.swift in Sources */, - 290A9561E0DCC29481466591A40FFDE2 /* SubscriptionDisposable.swift in Sources */, - D789B546848B3C3BAA71C1E8D2CA9467 /* SwiftSupport.swift in Sources */, - 07438D8F7328AAE8F4A7D450AA7FB9AB /* Switch.swift in Sources */, - 5F6FB000A1F896756185C7B9D58D7EE1 /* SwitchIfEmpty.swift in Sources */, - 2F3D4C9D3BD8AD7C1AC464F2FA806251 /* SynchronizedDisposeType.swift in Sources */, - CAAB4F24CCB63EB54F5E0DA2A73B9323 /* SynchronizedOnType.swift in Sources */, - ED3D80042A8A5425FAE5A0C25FE5FBEA /* SynchronizedUnsubscribeType.swift in Sources */, - 446278E9B905E0B5CF2F64B9245491D1 /* TailRecursiveSink.swift in Sources */, - C144157DBB848C94B348C1BA664F3E86 /* Take.swift in Sources */, - FBB4D5583F66DAA1E067D1BBD8686779 /* TakeLast.swift in Sources */, - F039287D51EEF8DB464654EF073B27B4 /* TakeWithPredicate.swift in Sources */, - EB0D73BCFDFC3139E0A8E5395BD7A6DA /* Throttle.swift in Sources */, - 5287F0ED0E08F9C1D2EECE2258AEF286 /* Timeout.swift in Sources */, - D1F1CAB3A420D1ABAB44D73CCE92D9A8 /* Timer.swift in Sources */, - 1BFEF307C3750AA6F3C4D9E8E2929DA2 /* ToArray.swift in Sources */, - 5E0B9331DBF6DEB5A49A0E959D7D8ADC /* Using.swift in Sources */, - E383F7D1B1E1BA0F4060113554AEC55E /* VirtualTimeConverterType.swift in Sources */, - D10C95BD6F68BFE84AD647F05F6EB1E2 /* VirtualTimeScheduler.swift in Sources */, - F38B75DC955002933117F5B8A184DC4D /* Window.swift in Sources */, - EF5B614C15C0A5FA6F14D0C2B2E0BEDB /* WithLatestFrom.swift in Sources */, - 952521E8ED8F941A9A7EB66FC7470AEB /* WithUnretained.swift in Sources */, - 884AC688577C393379C5ABE2BFD38A3B /* Zip.swift in Sources */, - 9D0F6CEE22A9CCC93C7CF6C523ABDD57 /* Zip+arity.swift in Sources */, - 9B3BCA76FD7437094826D7E95B16BB22 /* Zip+Collection.swift in Sources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 276A34760FEA0EDBA3C2AE0B3A205A4F /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - CD4D85DAF1DFD5C9D1D79CCB30E48554 /* Pods-OrderScheduling-dummy.m in Sources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 2B9F3D9C2E12C8E97D3DFC10414EA314 /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; 2F9DCB8466BB717F04CB15FEAC24CFD4 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; @@ -9101,6 +9021,13 @@ ); runOnlyForDeploymentPostprocessing = 0; }; + 38E287220A5ABC5E384EBE3BB5F0B6B3 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; 44716CFAAA2FE99199206F8BD7A6C8C9 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; @@ -9153,6 +9080,14 @@ ); runOnlyForDeploymentPostprocessing = 0; }; + 483DE37B366FF1CB8B8590F2210A9B40 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + B0E0EBCC1739673622DDAB04CDC5DFD7 /* Pods-OrderScheduling-dummy.m in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; 5A757D0D7A121D71DEA5F8455C5DD40F /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; @@ -9183,10 +9118,12 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 6892C77FC795C58877B0E40480D3A6CA /* Sources */ = { + 7329123C0DC6F6E18B42DF7C7BFCC321 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( + 6E881FBDF3FFC0B4F3E680E564C0D595 /* DDAudioPlayerKit_Private-dummy.m in Sources */, + 58E91C61B835DFF9D17760CB57DD5DC2 /* DDAudioService.swift in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -9246,84 +9183,6 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 9149F6EAD334E5E546A9233BA9D5B090 /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - 08DE62F44C89D747CC07859ACD56B991 /* DDLogKit_Private-dummy.m in Sources */, - 5E981F817165C2FE1431D824D9F781AE /* DDSwiftLog.swift in Sources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 92E540F68103F47BFB06A4E1DBBC40D7 /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - BB27CA00AAC2A9F17461C09C73645BD1 /* AnimatedImageView.swift in Sources */, - 5BFE1267FDAE0CE1297B8F6C84950E86 /* AuthenticationChallengeResponsable.swift in Sources */, - 5FB5D802B5568436B7A10CB5A9E80ECF /* AVAssetImageDataProvider.swift in Sources */, - 4B8551971988B783566ECCBF18983C71 /* Box.swift in Sources */, - 15A56F31EB667B2BEC41ECE9F2C43571 /* CacheSerializer.swift in Sources */, - 588027ACC01A30CBCE1AA9C5ACCF7B18 /* CallbackQueue.swift in Sources */, - 62763B5EC742ACA67FD0E5453E6BBD45 /* CPListItem+Kingfisher.swift in Sources */, - BFB8014C2B67EF513B2596EC40973E7E /* Delegate.swift in Sources */, - 0E552B2DD00F38FBAFDCA5BB4CDF24B6 /* DiskStorage.swift in Sources */, - 5E23ED4E91674189B98416974930E43C /* ExtensionHelpers.swift in Sources */, - 09959F01B2CD4A3AEF341FA5518FBF83 /* Filter.swift in Sources */, - 37D3970E67C56D98091306FB1A9835DB /* FormatIndicatedCacheSerializer.swift in Sources */, - 8EA86CB9B2613C3C2FFE3ABDA328AB81 /* GIFAnimatedImage.swift in Sources */, - 6D9368594D1292807769B8BB99B0B741 /* GraphicsContext.swift in Sources */, - 1852C428B200E54A4F105B1F4D1E9CA4 /* Image.swift in Sources */, - B2B76536940F9085012DCFEB05EA63B9 /* ImageBinder.swift in Sources */, - E0C01EA350858C196849966C328D5F77 /* ImageCache.swift in Sources */, - 2F7915C29161AEF936E7C0D6491A5FD3 /* ImageContext.swift in Sources */, - 40AD98FE4353CAB3D68B1F1687E11685 /* ImageDataProcessor.swift in Sources */, - CC3E6C5B4AC2243452BF584930C4D8A9 /* ImageDataProvider.swift in Sources */, - DFF56E1AAFEB0E15B650A880BCDF5A72 /* ImageDownloader.swift in Sources */, - AE072C1AD51CA694876EB01C928263B2 /* ImageDownloaderDelegate.swift in Sources */, - 96593336DA43172C39038DF4D2309D26 /* ImageDrawing.swift in Sources */, - 34EE20CA334F46BE2655DCD2D617CC9D /* ImageFormat.swift in Sources */, - F79594534CE8CAF8686430BB867A4C1C /* ImageModifier.swift in Sources */, - B92545F4D14B8516B18AC2B28CE8F769 /* ImagePrefetcher.swift in Sources */, - 0CB74F81D7F7ED13A393A108FFD018F7 /* ImageProcessor.swift in Sources */, - 57F5E74B814B432F53E371AD83E98999 /* ImageProgressive.swift in Sources */, - 22C8760F490B4DF8C8BB19A0FAE4A6E7 /* ImageTransition.swift in Sources */, - AE365C68AE8907D1712EAC3A9E9363EC /* ImageView+Kingfisher.swift in Sources */, - A9D65D53B84C8810A7BA7B4C6F1905EF /* Indicator.swift in Sources */, - 885663F96038AA1EAE2D435C7EC7C45A /* KF.swift in Sources */, - 609738ADF822DF800B4A5CE1FBFB09AD /* KFAnimatedImage.swift in Sources */, - 28A3D5219204E0A1B1D89FE4F9545434 /* KFImage.swift in Sources */, - 64D9658A0FCC5D129810690447FCDA38 /* KFImageOptions.swift in Sources */, - EB7E8EA0720D48F8F1144E5DC3E5AEEE /* KFImageProtocol.swift in Sources */, - D326605C3B2A1D5931447D6CE7EE67E9 /* KFImageRenderer.swift in Sources */, - 95006AE7887F3F7366A3184B4BCBEA61 /* KFOptionsSetter.swift in Sources */, - 7BE0E96A934415CEA4C5902416BA5D10 /* Kingfisher.swift in Sources */, - 7CE1CBA3BD77F8B64632D7BFAEBFAF60 /* Kingfisher-dummy.m in Sources */, - 435DB9DA67650818DF4ED76EFE851EE0 /* KingfisherError.swift in Sources */, - 43B833E12ADA38972DE5B6C5A39C28AE /* KingfisherManager.swift in Sources */, - B397517CB7C73B7810C551B10991636B /* KingfisherOptionsInfo.swift in Sources */, - 9293F1E68E695484F47C453B7A9D552A /* MemoryStorage.swift in Sources */, - C535F523F71F05AEEDD9946C4D8915C1 /* NSButton+Kingfisher.swift in Sources */, - 089CDD89933E20438CBA8566705AB4CA /* NSTextAttachment+Kingfisher.swift in Sources */, - 50613F7A88563668F1D427BD958C0AEC /* Placeholder.swift in Sources */, - 5BBAE42210DE6A7A973F1B1F9678EFC5 /* RedirectHandler.swift in Sources */, - 6A17FBBA05FC76B4A0D832556BA09D95 /* RequestModifier.swift in Sources */, - 070216BCA8E3BC5F4964A390EB1FC214 /* Resource.swift in Sources */, - B86E3CF706D0A8F5D2CBBEDFC109587F /* Result.swift in Sources */, - 0EF8EF430D8AAC8E5FC30E67B33ADD43 /* RetryStrategy.swift in Sources */, - BD2745ADD1379057D87188FB97CFAC5F /* Runtime.swift in Sources */, - 0057FAB1258739A8C986E8564248734B /* SessionDataTask.swift in Sources */, - 8858E81DBDF9B8147EFFB0ACE5FF5DFC /* SessionDelegate.swift in Sources */, - 48A678779E1548954BF5B825F1C7F043 /* SizeExtensions.swift in Sources */, - AC0EEED07559E6C0F1C796B3B139F336 /* Source.swift in Sources */, - C5690D48A1F0C97D9493B20DED212613 /* Storage.swift in Sources */, - F6EB265FFD449F74286B6BC454759435 /* String+MD5.swift in Sources */, - F2EB2025750554781A98D7E0C152B54C /* TVMonogramView+Kingfisher.swift in Sources */, - 0D99206F3199FC746EE26A898369B8A5 /* UIButton+Kingfisher.swift in Sources */, - F3D69E4D4BFA4907A8DCCFB59DFDA6B8 /* WKInterfaceImage+Kingfisher.swift in Sources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; 94740C3BCDA8EF0E79D07C1A1E7F1096 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; @@ -9333,6 +9192,19 @@ ); runOnlyForDeploymentPostprocessing = 0; }; + 99A49ACCEA656B20ED8DDB4756B28B94 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 78E1DD017E3493217692D927E6FAB685 /* BehaviorRelay.swift in Sources */, + D6D433142B682531BEE093B3BDCF5F85 /* Observable+Bind.swift in Sources */, + 20043137ECCF7FD651E5D5067CB8ED3D /* PublishRelay.swift in Sources */, + A4390CE9EDCECFF6375AA584E2EAD34F /* ReplayRelay.swift in Sources */, + 44753C60B4D6B5F8146603BD1F4E8AD9 /* RxRelay-dummy.m in Sources */, + 401174B9915431D1988CA7A5655209B6 /* Utils.swift in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; 99B444A281EDEDF424F629C40DECE541 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; @@ -9428,58 +9300,6 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - A8DFD2B49880DE971261F8FED5A6D2CD /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - 609235D3A7BCE7E6E7782F37F4BF0329 /* BehaviorRelay.swift in Sources */, - CAC67C3C9D6F6BBBA389D5F8CA60D09A /* Observable+Bind.swift in Sources */, - E4E2ACC6E6A370DE1008A099B64A6FCD /* PublishRelay.swift in Sources */, - 6BC6215ED293047E5848C790648404AE /* ReplayRelay.swift in Sources */, - 5F791E851B63350E9C2DD09F0488EBF5 /* RxRelay-dummy.m in Sources */, - 6D5BA78CC0A1B35541970FD27B05AA66 /* Utils.swift in Sources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - ADC25AF364C87D2C6E80806CB0AA0E70 /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - 164856030498E9617B1C009110F69DD3 /* CALayer+DDCategory.m in Sources */, - 115D553116A45E927ACF194352E128C4 /* DDCategoryKit_Private-dummy.m in Sources */, - C1EA2F2CB43232D5B03440F60763148E /* NSAttributedString+DDCategory.m in Sources */, - F9407616E10D579BC0FA5E52613EB342 /* NSBundle+DDCategory.m in Sources */, - BD247E3B6F2D37989DFBB892C7130428 /* NSMutableAttributedString+DDCategory.m in Sources */, - 50B597FA67217D0413C82E39B6BA88FB /* NSMutableParagraphStyle+DDCategory.m in Sources */, - CFE34FBE502D404850042BD371E3F691 /* NSObject+DDCategory.m in Sources */, - 1D8E88F845B89CEDF18B157D813D374D /* NSThread+DDCategory.m in Sources */, - 6F6BFAFDA5BBE4CF557EE5CB85C806B1 /* NSURL+DDCategory.m in Sources */, - 2C1E3B4921AF98B2D69729A9B28C7927 /* UIApplication+DDCategory.m in Sources */, - 283A4DE101C181499CDD2613E0371BB9 /* UIBarButtonItem+DDCategory.m in Sources */, - 3135EF9BB3A5AF23779F873CEEF62D02 /* UIButton+DDCategory.m in Sources */, - B685A48A68161C48CABD789A8E145736 /* UICollectionView+DDCategory.m in Sources */, - F4BF719821019AA99BB2D9966A767047 /* UICollectionViewCell+DDCategory.m in Sources */, - CAA51CB789BDD0291CA3E39C8A24DF8A /* UIFont+DDCategory.m in Sources */, - 7D91C3F0624FD9F56B50BA2F6887657E /* UIImage+DDCategory.m in Sources */, - 7393E58D9B17403B8424847A1817B5A1 /* UIImageView+DDCategory.m in Sources */, - 57C714244A1F8D2D3516BAE104B085A4 /* UILabel+DDCategory.m in Sources */, - 8A096C9FF391F785C459443492599749 /* UINavigationBar+DDCategory.m in Sources */, - 1129CBFC5796A338C3A3FE8385DC9959 /* UINavigationController+DDCategory.m in Sources */, - 8EFDC9DF7190E1A3E455061B9AC342EF /* UINavigationItem+DDCategory.m in Sources */, - 141D0E42F2CAAE95B5DB881A0726A464 /* UIScreen+DDCategory.m in Sources */, - F14173357B268A605DDCAA57A17173C3 /* UIScrollView+DDCategory.m in Sources */, - 2298CBA33A546C29D91B05255F56DF08 /* UISwitch+DDCategory.m in Sources */, - C1D2F9324CE1678010EA4F68E8DF8E72 /* UITabBarController+DDCategory.m in Sources */, - C7928584AF7F1BF0C37F6532528AA327 /* UITableView+DDCategory.m in Sources */, - 91EB60E5A27B5776B25A13C1C6DCFE80 /* UITableViewCell+DDCategory.m in Sources */, - 0D2D30A5814526B8C710A28A0B739B9C /* UITextField+DDCategory.m in Sources */, - B3EAFA9C2474200977C0CD110CA0158A /* UITextView+DDCategory.m in Sources */, - FDF4814AC17F7C7BF1575C5376E00140 /* UIView+DDCategory.m in Sources */, - 28E17E4430C3771E13B5AEEE1D4C7C40 /* UIViewController+DDCategory.m in Sources */, - 56A9A203C25EBDFA98971AE6C6A60C87 /* UIWindow+DDCategory.m in Sources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; AF318B8812CE4B6E41615DC17B23EB2A /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; @@ -9532,6 +9352,45 @@ ); runOnlyForDeploymentPostprocessing = 0; }; + B72E6B6FC36DE88CE6E73512C1A3ED6B /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 0D4389D9CF0EAC5327CCDFF026305798 /* CALayer+DDCategory.m in Sources */, + 6B89E8277C0AEEFBA98E25493C0AD9B4 /* DDCategoryKit_Private-dummy.m in Sources */, + A77D042C0EE798B06F9120BABDB68255 /* NSAttributedString+DDCategory.m in Sources */, + 31822EC50EA6D80C006A8724FCB33E71 /* NSBundle+DDCategory.m in Sources */, + 454EFBB65314EF0DCC98FD780F2BD39F /* NSMutableAttributedString+DDCategory.m in Sources */, + 0FEEBBB114CAA44F38179853D7AFF599 /* NSMutableParagraphStyle+DDCategory.m in Sources */, + 9B3034DE85AC2C2172ED522E4756BB0B /* NSObject+DDCategory.m in Sources */, + 7164E8CD0BDD5B5F18758D6B86D5F1F9 /* NSThread+DDCategory.m in Sources */, + 77B0273D89449DA79C72217AF57E5A47 /* NSURL+DDCategory.m in Sources */, + DFFDF8651C37D5DF303C6DEE7F973568 /* UIApplication+DDCategory.m in Sources */, + 3BA78DA2A3253E017D4FFD7C71DC28C1 /* UIBarButtonItem+DDCategory.m in Sources */, + 711B25F3CA42B980B39A6463B9CDAEEF /* UIButton+DDCategory.m in Sources */, + B12E1D13FBD4ED9307E4BE0B8CA3A25C /* UICollectionView+DDCategory.m in Sources */, + 7A6B61349A1B50DF6E904F761F6EBC4B /* UICollectionViewCell+DDCategory.m in Sources */, + E7396A74BE2AC793EF629004F51A30F4 /* UIFont+DDCategory.m in Sources */, + A63635F42151DC61690AB3D4344111F7 /* UIImage+DDCategory.m in Sources */, + BE11323D433BE89670AC4426D26E30CF /* UIImageView+DDCategory.m in Sources */, + 969904FA903EE6C2EACFC8C452B25FE5 /* UILabel+DDCategory.m in Sources */, + 5B8EC4C5155A775D8C9BE1E45713804E /* UINavigationBar+DDCategory.m in Sources */, + 7CD8B6A0298D4FE0AEF7A41145510C7F /* UINavigationController+DDCategory.m in Sources */, + 7B3E9A61AF1EC4DF9CF807E2BFF45E1C /* UINavigationItem+DDCategory.m in Sources */, + EB6B5F3AE26785E65E1F91DD694853BF /* UIScreen+DDCategory.m in Sources */, + 71FC83AFAF23E756FE864162EEA31500 /* UIScrollView+DDCategory.m in Sources */, + 5D95845B57B041E714876AF930C152CB /* UISwitch+DDCategory.m in Sources */, + 71AD91355CF2C5747EFCA6064FAB26E6 /* UITabBarController+DDCategory.m in Sources */, + B206DE65C9441E9FCE3CA1282ECF02F2 /* UITableView+DDCategory.m in Sources */, + 9A46A2F7E8AAAE342D18C303B3B6EB8E /* UITableViewCell+DDCategory.m in Sources */, + D4B730EE988770D669C0A758CEB36008 /* UITextField+DDCategory.m in Sources */, + 6A67580592A611F6DAF9955550ED5C3A /* UITextView+DDCategory.m in Sources */, + 40F2CA926703952BC89606434244EBDA /* UIView+DDCategory.m in Sources */, + 9D2D3680BD77FB36C9483F4B2386CBC8 /* UIViewController+DDCategory.m in Sources */, + 2BE485EA399C9F617CEA6A29D80890ED /* UIWindow+DDCategory.m in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; BD841258657B4E06EA70273306E217D7 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; @@ -9604,6 +9463,15 @@ ); runOnlyForDeploymentPostprocessing = 0; }; + BF0745C80123D3D9B885AC43C08AC8BE /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 264CD45BABE5BF94794AE350E03DBD83 /* DDLogKit_Private-dummy.m in Sources */, + AB4D5C66726A63E322A042017408210E /* DDSwiftLog.swift in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; BF5D1339FAA2513586466B05F9B8BB07 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; @@ -9725,6 +9593,51 @@ ); runOnlyForDeploymentPostprocessing = 0; }; + C60F3F4EA98E4FF9B17B8F6A97B62B48 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 7728B76ED928AC7587540FEE0BE3980D /* Constraint.swift in Sources */, + 05270833268494583D6920074FCE2CBD /* ConstraintAttributes.swift in Sources */, + 468759B13956FCF87474540A09952817 /* ConstraintConfig.swift in Sources */, + CA2867742C3F2479DF3E739041AEF731 /* ConstraintConstantTarget.swift in Sources */, + 66A7ACA757E0B6E814C371A9C3CC4828 /* ConstraintDescription.swift in Sources */, + 3A2E1C023CB3C4727BE773626B77BBB1 /* ConstraintDirectionalInsets.swift in Sources */, + AABF3DC7DF10689372AA615D03DA9DFC /* ConstraintDirectionalInsetTarget.swift in Sources */, + E0FAF7C1260A652AAC8D06E824FE3DFC /* ConstraintDSL.swift in Sources */, + 024AA98B00121D9667D1C777C1D71DE9 /* ConstraintInsets.swift in Sources */, + B69CF72805136E1812C4DD14D36571B1 /* ConstraintInsetTarget.swift in Sources */, + FB06F85B476E1E4B3D19EA4799966DD6 /* ConstraintItem.swift in Sources */, + 159FEA28BF94EA9F386C9B63E6369316 /* ConstraintLayoutGuide.swift in Sources */, + 1705CAA12E39B9B91D1BD7650CAA3009 /* ConstraintLayoutGuide+Extensions.swift in Sources */, + 2CB3E09FCB7E080294F5664B4EABCE94 /* ConstraintLayoutGuideDSL.swift in Sources */, + 3BC4CB80F5BFF7D7C5A7B88C2824CBC9 /* ConstraintLayoutSupport.swift in Sources */, + 5A58A1ED6AC294EA3F65053CDCAB2C6C /* ConstraintLayoutSupportDSL.swift in Sources */, + 9463D7E45F0FED09C374998694C847E9 /* ConstraintMaker.swift in Sources */, + B18358F79346BBDCECD8D8050B92C6CC /* ConstraintMakerEditable.swift in Sources */, + 0465EB835860F2D7825A48079A713127 /* ConstraintMakerExtendable.swift in Sources */, + 1673BE89F9976492F1172C196B430B2F /* ConstraintMakerFinalizable.swift in Sources */, + 41459EE95CC38E99AE6A3C039CB78DBB /* ConstraintMakerPrioritizable.swift in Sources */, + F1EB81943B36ABB8EB3322C5EA5013AD /* ConstraintMakerRelatable.swift in Sources */, + 55542DF3923B1577294CB4F256C5D9D3 /* ConstraintMakerRelatable+Extensions.swift in Sources */, + 80785E6691F1F78D1B043BCA12426306 /* ConstraintMultiplierTarget.swift in Sources */, + 27173E1C99B69F0D58B8893247CD962F /* ConstraintOffsetTarget.swift in Sources */, + D38A24C3DDF40A1C9B6C9784F234D349 /* ConstraintPriority.swift in Sources */, + 453CA282E8B6BD662FB3AE2158C06334 /* ConstraintPriorityTarget.swift in Sources */, + 4C82C4208C3EA3DE13F014C1F7D1E467 /* ConstraintRelatableTarget.swift in Sources */, + A0F7312CE467F66CA9412CC9BF06ED00 /* ConstraintRelation.swift in Sources */, + CE300C21C39DEF3FC00260E0C5A4AFBA /* ConstraintView.swift in Sources */, + F5AEDE484501A7E759CB5B5822FE45DD /* ConstraintView+Extensions.swift in Sources */, + BDAE954DC84B6E8AC31109AD8DC8D334 /* ConstraintViewDSL.swift in Sources */, + 1B1B633EDA5F226F9B2847CF23022DCE /* Debugging.swift in Sources */, + DC794F1932A83BE2834B56D0DA98C939 /* LayoutConstraint.swift in Sources */, + E55531ABF6926398EC644282EF0D669A /* LayoutConstraintItem.swift in Sources */, + BEDF074398BFD7DF94A196D3883B0626 /* SnapKit-dummy.m in Sources */, + 919856A9D20F05F74E7034BCB26313B6 /* Typealiases.swift in Sources */, + 4478BAB5080B6B195E5EFEEBBFB83C26 /* UILayoutSupport+Extensions.swift in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; C94C048581036D3B6AA1F7FB8E84775C /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; @@ -9837,48 +9750,79 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - D2A3E4B7CFD6D3B9D444F9C7A6B8BEE9 /* Sources */ = { + D33189EDEFB3138E99E83BD5149121F6 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 45BDEE325F985EF8FC1B7DBE96AA34FD /* AnimatedImageView.swift in Sources */, + 0C2D1C8A8F138C1DECC7165DEBB30AA6 /* AuthenticationChallengeResponsable.swift in Sources */, + 10261CB16548E28C871AE58F7FF44A35 /* AVAssetImageDataProvider.swift in Sources */, + EC9D72B3C96E1DE6A9E21AE5C14D2418 /* Box.swift in Sources */, + 7B21B434BABCD594817E3D7A81B0EC0B /* CacheSerializer.swift in Sources */, + E1FDFE7397359EE58A405C3A0E2CDFCA /* CallbackQueue.swift in Sources */, + DECDE2E77B74B844D5CB12773AF468F4 /* CPListItem+Kingfisher.swift in Sources */, + 91933502C0597B78B99EDDB6CEC92FD5 /* Delegate.swift in Sources */, + 72A8E15258D081D36070F2EFE80FDA0E /* DiskStorage.swift in Sources */, + BE167859973E5F383FEB74A80D9D01F7 /* ExtensionHelpers.swift in Sources */, + 4BF15DFA87A4B16CC27A4F9CD8E040AD /* Filter.swift in Sources */, + 9EF6BB46D0771433CE11C02B75DE4AE5 /* FormatIndicatedCacheSerializer.swift in Sources */, + 7F74823CF0BC170B85D5BCD1046385AC /* GIFAnimatedImage.swift in Sources */, + E58167CC7D2E212AD5DDDD236604B13D /* GraphicsContext.swift in Sources */, + 7BBE8DA45E00B0FA0620083B8FA0B261 /* Image.swift in Sources */, + D348712897317534CF3C284C06FEE00D /* ImageBinder.swift in Sources */, + 627988EB223E4105B5840683F769C5CE /* ImageCache.swift in Sources */, + F0B0C25D19CF8777D5225877F3FAA40E /* ImageContext.swift in Sources */, + 53D0DD3116769FE07CFC7ADE43F01964 /* ImageDataProcessor.swift in Sources */, + 918EBE8FA53446D7CF91717FB581A734 /* ImageDataProvider.swift in Sources */, + A6317E0907AB4CC3D67439817FAE57BD /* ImageDownloader.swift in Sources */, + 9234FAFEDAC39C4D42B7572F4F13FE43 /* ImageDownloaderDelegate.swift in Sources */, + B0FE5F5E13999899D057412471C60B59 /* ImageDrawing.swift in Sources */, + 59C5783B784DB34A1CD230CBF50FEEBE /* ImageFormat.swift in Sources */, + 85253A95E62177CF9D61A8D156BCBE08 /* ImageModifier.swift in Sources */, + 99B1A4B9EB89ECF94B4330475EFB5689 /* ImagePrefetcher.swift in Sources */, + 249A5D1671C8D0EA048741AF1C56E7C5 /* ImageProcessor.swift in Sources */, + BADF6C33E1F3588E403CA1D766D39FC9 /* ImageProgressive.swift in Sources */, + DE685E8DEC4100302CC59D017E073C02 /* ImageTransition.swift in Sources */, + C0E36B0F1A30BC55F9AC025171D9C40A /* ImageView+Kingfisher.swift in Sources */, + 94678F445C7F696058B88F7A9B31ECBB /* Indicator.swift in Sources */, + 6B15F7B1F8100DDE600626AB39054501 /* KF.swift in Sources */, + 8B718507527689FA26BC280BDB75FDFF /* KFAnimatedImage.swift in Sources */, + 75A22F9FCEE3CD7FE12BCE3D3AA731AC /* KFImage.swift in Sources */, + C3F15ECD67B67F121651F425D872291F /* KFImageOptions.swift in Sources */, + 2E4FAA9464D464CF2603FCCD05DC7E21 /* KFImageProtocol.swift in Sources */, + 1052FBBB5CC7E4FF4837451F5EF10E33 /* KFImageRenderer.swift in Sources */, + FF980E5F28C2F212129B2C8CC42F2F6F /* KFOptionsSetter.swift in Sources */, + 7682444EE3F5046ADE989E155A284EEE /* Kingfisher.swift in Sources */, + 275F35A4850DFDDCEBF1C0C22C276AB0 /* Kingfisher-dummy.m in Sources */, + 236FED5732BEBF327726EDE3FD4C304E /* KingfisherError.swift in Sources */, + 4149DEA12F831870EBA85E56F508C5EE /* KingfisherManager.swift in Sources */, + 63F2F978029324264D53A77CB4C11FA5 /* KingfisherOptionsInfo.swift in Sources */, + 16D426A77790C3AB232AB445469D615F /* MemoryStorage.swift in Sources */, + 3C8FF04D497B4AC698E2C47A950371BE /* NSButton+Kingfisher.swift in Sources */, + 9BE6FC823B5CB3EA3788A4C32F1D39E4 /* NSTextAttachment+Kingfisher.swift in Sources */, + 93C9F3019A4BF9C45CA3147F8EEB647E /* Placeholder.swift in Sources */, + 1794BC6471BB43DD3FFC2AE3C7037814 /* RedirectHandler.swift in Sources */, + 17CC1C2CF08EF7D5972AB446F165858B /* RequestModifier.swift in Sources */, + 9F5363070A385A4F0D0199982AA28C46 /* Resource.swift in Sources */, + E0C9D73822D5F3DD4B6B5C08DA188295 /* Result.swift in Sources */, + 46154B5C978C40E38F632E84A722340C /* RetryStrategy.swift in Sources */, + 1B14413AC423A8EA118F471367F31900 /* Runtime.swift in Sources */, + 06A2696A1E6E483E9FC0FE492178EFE7 /* SessionDataTask.swift in Sources */, + 785F521281D3701EDDB14472DCB4876F /* SessionDelegate.swift in Sources */, + D5CCF6DB7FA882ECA115965D1BAC4083 /* SizeExtensions.swift in Sources */, + 499AE8C69C3BAAE93EB6AA204B2B6C4B /* Source.swift in Sources */, + 7013B2E9E8A2525163C10D31BF619830 /* Storage.swift in Sources */, + 6823E22620B86DDE95E7871D8007BD2A /* String+MD5.swift in Sources */, + 2586C039EB263BEC783B3443CDC0E01D /* TVMonogramView+Kingfisher.swift in Sources */, + 7862CDF0CC3C4B049C8E4CDA451ED29C /* UIButton+Kingfisher.swift in Sources */, + CD9EAABCA5038D9306C0ACD56A3A7D23 /* WKInterfaceImage+Kingfisher.swift in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + DD76AFB898E0CE5F51E81A77220C8E1E /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - FE2B894BE9BB970C5DAB4116B45E40E1 /* Constraint.swift in Sources */, - 28451934CBF945178870648EE6C40017 /* ConstraintAttributes.swift in Sources */, - 5F13BE82DA3282C9AB54507EFB46A9BB /* ConstraintConfig.swift in Sources */, - 3C43DCA25096184885CD69948C341BD3 /* ConstraintConstantTarget.swift in Sources */, - E8C687C2FFD56E2A67FD1FD44B9F6A68 /* ConstraintDescription.swift in Sources */, - 521AA6614B338A1EEF296FF3C814DD66 /* ConstraintDirectionalInsets.swift in Sources */, - 05E836641482AFE4E8F7314F82FA21B3 /* ConstraintDirectionalInsetTarget.swift in Sources */, - 2A682CB750AC415483F964B6A89F9EF3 /* ConstraintDSL.swift in Sources */, - BEF33A6E0D39466DCE9D298F9C819DC5 /* ConstraintInsets.swift in Sources */, - E2069E35DEF7B1D667BCAC78D2B3756F /* ConstraintInsetTarget.swift in Sources */, - C26DFBAB689D14EB2CAAD4C945BAB718 /* ConstraintItem.swift in Sources */, - FCD3C71D2332DB416B9B367A66ED0254 /* ConstraintLayoutGuide.swift in Sources */, - A4C1C8789AE369C9F147309726E1F59C /* ConstraintLayoutGuide+Extensions.swift in Sources */, - FFCABD6528BFE343AC38B8E67324AA17 /* ConstraintLayoutGuideDSL.swift in Sources */, - 263DB6863DCAC0E7FDA96E36C6971B4D /* ConstraintLayoutSupport.swift in Sources */, - 71E19F4B9637500659E9D760659DF4BD /* ConstraintLayoutSupportDSL.swift in Sources */, - 5C70C1B182F4AE5318517C9014660472 /* ConstraintMaker.swift in Sources */, - B6C34704CDCA94C415691E9D5A7DBC45 /* ConstraintMakerEditable.swift in Sources */, - 88831391DDB7B938F107C2ECC222B199 /* ConstraintMakerExtendable.swift in Sources */, - 01D3C34FB97401457002EF9EBE8B2076 /* ConstraintMakerFinalizable.swift in Sources */, - F4D462FD5029EDF16FCA30844F4E344D /* ConstraintMakerPrioritizable.swift in Sources */, - 78B8DD7CCD7E3DCFEF348E2EF1A44D91 /* ConstraintMakerRelatable.swift in Sources */, - 4EC854052A3FE12A7A686E7BFD37F05D /* ConstraintMakerRelatable+Extensions.swift in Sources */, - 58DC6FEC8CBD5750A7C7EBE965E4A761 /* ConstraintMultiplierTarget.swift in Sources */, - 97F400C619BFC1039482038A255B2958 /* ConstraintOffsetTarget.swift in Sources */, - C8C0626BD207C8F36DE122B273909830 /* ConstraintPriority.swift in Sources */, - 33CA7EB89CAE640686CFB81184C842FD /* ConstraintPriorityTarget.swift in Sources */, - 7CC381905CFE6C7F0E8CFC3A941D9E14 /* ConstraintRelatableTarget.swift in Sources */, - 1E884150A9E982B4F18D51B7AE9FB246 /* ConstraintRelation.swift in Sources */, - BB75FBEA01801E0FF4E17A4783AB1CE3 /* ConstraintView.swift in Sources */, - 9B9F2655ADFEA6918AFBDDBD182E1D47 /* ConstraintView+Extensions.swift in Sources */, - 9156E7759F3512A4E341F946FE503875 /* ConstraintViewDSL.swift in Sources */, - D57D1B1B747CC581A185F6035F363E7F /* Debugging.swift in Sources */, - E9BCBA416DB77AC1BCC56C1017CAE4C3 /* LayoutConstraint.swift in Sources */, - 26ACB5A764F1B34A609F8B6C662C395B /* LayoutConstraintItem.swift in Sources */, - 40BFB77E47AC10D4A3BDAB61FC1BAA90 /* SnapKit-dummy.m in Sources */, - D1E9FB265C5E14BDA17A1804FF30B1D5 /* Typealiases.swift in Sources */, - A326B1EA5844530C74FF5F61F99CC9A7 /* UILayoutSupport+Extensions.swift in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -9892,6 +9836,174 @@ ); runOnlyForDeploymentPostprocessing = 0; }; + E1EB6444266FAA3D5056B7BA50147A69 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + E4E5A81558349987089F48B24896ED5F /* AddRef.swift in Sources */, + C8049867323D3A7EDE9E39E2246F9806 /* Amb.swift in Sources */, + 7C710235EAEB7ED1C21DC9482A20BF74 /* AnonymousDisposable.swift in Sources */, + 0787D274E0F44F0AFEE264E394A63FF7 /* AnonymousObserver.swift in Sources */, + F33AC6FF109AB468B64627C05536D1D8 /* AnyObserver.swift in Sources */, + 582FFE687F7D0BA7FD06B9BBA94BFCBA /* AsMaybe.swift in Sources */, + FA45F0BCA28AE047F210A67A086730E6 /* AsSingle.swift in Sources */, + 83654F695F940D6B7B244AE48CAB2B2A /* AsyncLock.swift in Sources */, + AF781C8802F46CBA29CE8AD70F2B40DE /* AsyncSubject.swift in Sources */, + 7531AB8F001F8AD0A7691DDAD8D797ED /* AtomicInt.swift in Sources */, + D8C941A6FBC9BBC51F8E9991A43723A6 /* Bag.swift in Sources */, + DE67F2DBD32576906B94DA0F81D6E054 /* Bag+Rx.swift in Sources */, + 1E3F1F8CAD8E1C4F26997685B78BBD26 /* BehaviorSubject.swift in Sources */, + C1CBD7EE47D55D6ED61A28AB50A72BDC /* BinaryDisposable.swift in Sources */, + A7062B54FD5C7AF185BB61DADF92FBEA /* Binder.swift in Sources */, + 9C37B4DAD43F665640DB61A214A57923 /* BooleanDisposable.swift in Sources */, + 0D2C4557F6B5B7671B1A5F1E0C6A7E28 /* Buffer.swift in Sources */, + 0988766B219E4F34E9422486B755B8EC /* Cancelable.swift in Sources */, + 768BAA880F1D969621A04374DB7854DA /* Catch.swift in Sources */, + CF8B43A4421E9DE16D25C1B7B9385ABC /* CombineLatest.swift in Sources */, + ACF3484F2DAB6A3F2DFFF5F889370BF5 /* CombineLatest+arity.swift in Sources */, + 11752C8C2467387DBD491DF37334B28E /* CombineLatest+Collection.swift in Sources */, + 2CA957E86DDEAC22769E60AE07A2B927 /* CompactMap.swift in Sources */, + 068351ADEAB1D821EE0A637D05051647 /* Completable.swift in Sources */, + 50D3A5077F69D392E21AC93A13593F04 /* Completable+AndThen.swift in Sources */, + 359BBAB3F9A40FA490842925C5B4E427 /* CompositeDisposable.swift in Sources */, + 2FCD4F932FAAE7CD8A7B2AC53A9CB7A4 /* Concat.swift in Sources */, + 58360B9BFCF65CB1EFBB3873EB56F9FB /* ConcurrentDispatchQueueScheduler.swift in Sources */, + CC9135EDBA9D84DEF7F495FACE262DD6 /* ConcurrentMainScheduler.swift in Sources */, + 1959CE0EF85451D85EF2F519432A403B /* ConnectableObservableType.swift in Sources */, + D5DA230836405BCBACFE526BB7B9CEC8 /* Create.swift in Sources */, + 1DA222E020C537DB077E2916692EF40B /* CurrentThreadScheduler.swift in Sources */, + A3F9CBE2A6DE24552851F198C752D92C /* Date+Dispatch.swift in Sources */, + E9BB5E151219537A248A181BE380F3CD /* Debounce.swift in Sources */, + 28110BD5743CCA0E56C281AA16E44C86 /* Debug.swift in Sources */, + B58F07921B57632FE68D62443386997D /* Decode.swift in Sources */, + 6662D0EBBF6B81272FC7473551618CC3 /* DefaultIfEmpty.swift in Sources */, + 4B4B54D7FA293257F7AD4D2285BD1B1D /* Deferred.swift in Sources */, + 344F73F29ACF403719077971B5C005D4 /* Delay.swift in Sources */, + B5DCFF5EEA48D7175514B0639C4B8EBC /* DelaySubscription.swift in Sources */, + B9983226FCDFACBDB700D0483007AE02 /* Dematerialize.swift in Sources */, + B5570035F390796484BAE09F15699744 /* DispatchQueue+Extensions.swift in Sources */, + 331E2CAD6DA51F5C5367E1CD17EB6D45 /* DispatchQueueConfiguration.swift in Sources */, + CD0BAEE8810A92343D721F5D3EC2D2D8 /* Disposable.swift in Sources */, + C1B3CDD337EF4F552282DE6242E0085C /* Disposables.swift in Sources */, + 6BA56DF5DEBB747BC314F6A658C21DC4 /* DisposeBag.swift in Sources */, + 9760B3EDECF6751F91C97173F0BD055C /* DisposeBase.swift in Sources */, + FC0972D0DC0D8BE43085F4B759602172 /* DistinctUntilChanged.swift in Sources */, + FF0B3517A4AB7D394BBA7BB726653979 /* Do.swift in Sources */, + 62F29D80BD374DBB0DC1A80CFD1E44E6 /* ElementAt.swift in Sources */, + 88A177C486F3A160B783F66E4EF5C1E9 /* Empty.swift in Sources */, + 4C348248E0AF0A89848D5B0F230F661E /* Enumerated.swift in Sources */, + 850E9557F466337BDC4E92976BA29C4D /* Error.swift in Sources */, + E4CC053D3BA039E7F0398C8284C30778 /* Errors.swift in Sources */, + C94E42387CEC9115FD19FD84D6DB9171 /* Event.swift in Sources */, + 0D51735A3935C3B666B5D3B705612E5D /* Filter.swift in Sources */, + E561CD06D38136B1D649361A380F9354 /* First.swift in Sources */, + 32991484904FD0C17C3977F2B2D1E754 /* Generate.swift in Sources */, + 5A39B661FA21224A9D6CA34CAD3D5FFB /* GroupBy.swift in Sources */, + 543A518F944EE3960CD44E39799C215E /* GroupedObservable.swift in Sources */, + A84FFA69993A0C56A0CE4937BF3C481F /* HistoricalScheduler.swift in Sources */, + 3186FD6387474C159EA30705EC731E63 /* HistoricalSchedulerTimeConverter.swift in Sources */, + 38A33E381DC17E37E33D29E135E034F0 /* ImmediateSchedulerType.swift in Sources */, + B9883CD007BCAA0FD199AFB559736FE6 /* Infallible.swift in Sources */, + B39413405FA4D21C59E891E7DD18DB1E /* Infallible+CombineLatest+arity.swift in Sources */, + 620121029560B277ACB01EDE12428873 /* Infallible+Concurrency.swift in Sources */, + FA2715B8CC15B4FB5B23169F95422C8C /* Infallible+Create.swift in Sources */, + BCEAAD99ABD997F74E300F7B403CCDDC /* Infallible+Operators.swift in Sources */, + DDDD09F19CFD6180ED2E61A9F33B9DA8 /* Infallible+Zip+arity.swift in Sources */, + 3C4C4676B214B4803B9422453FDEBEF9 /* InfiniteSequence.swift in Sources */, + F8FCFD04A95C31EF1EE2E3C130485BDD /* InvocableScheduledItem.swift in Sources */, + 0F21C06546210C678354D75C3BC8542A /* InvocableType.swift in Sources */, + 5E7A464CE33E69850BCE733A7778D05B /* Just.swift in Sources */, + C279F4152AF87F3B0D23FCD471526387 /* Lock.swift in Sources */, + 00624B396C2A2E0E60063640719AA457 /* LockOwnerType.swift in Sources */, + 8B37CC907FC3D81E63891EFFB311D1DA /* MainScheduler.swift in Sources */, + 41059F915B18E0CB45B19BAFC3D68466 /* Map.swift in Sources */, + 09D841FD4F2A0D1F39A692C2DDFA6147 /* Materialize.swift in Sources */, + 24E0B59FA7F0A047A27DE53FB6BE8264 /* Maybe.swift in Sources */, + E958828D3FE22413D88F6BC7134B35E3 /* Merge.swift in Sources */, + FF322AF630095C40D50D480837A90003 /* Multicast.swift in Sources */, + DAC19ECD4ACAB52EDB6B1B8E13A00F6C /* Never.swift in Sources */, + C8D9227AE348E8B791BB5A9DDAE2E182 /* NopDisposable.swift in Sources */, + AD482F2D73E3467B1A5C87937B4F7603 /* Observable.swift in Sources */, + 5819706F842D73572780E43AB818627A /* Observable+Concurrency.swift in Sources */, + 1E61297846D7A69909C47217B93B71D3 /* ObservableConvertibleType.swift in Sources */, + 549041348A1519CA04813ED794CFBB8A /* ObservableConvertibleType+Infallible.swift in Sources */, + 1BE58458BF3CBB08C4462A35923A0BF8 /* ObservableType.swift in Sources */, + 83D67D211FAD416D7164100830513695 /* ObservableType+Extensions.swift in Sources */, + C22E43D97DDDD19604D9677733A5D9CE /* ObservableType+PrimitiveSequence.swift in Sources */, + 96764028EA4DF65930708E58811FB745 /* ObserveOn.swift in Sources */, + 708520028DC4C1C09DCCFD1CCC820278 /* ObserverBase.swift in Sources */, + 003918D36A5765343F1FAB5CD53160AB /* ObserverType.swift in Sources */, + 3FAB59E153214837A0EA3A5394A1208F /* OperationQueueScheduler.swift in Sources */, + C45425D6D8206478E4FF26CC85E4B5CC /* Optional.swift in Sources */, + 11BE6C126EC0BB2F5551407DB20FB4A1 /* Platform.Darwin.swift in Sources */, + 2CB995BCABCF2F967B1ECE98DBC2E09C /* Platform.Linux.swift in Sources */, + 2A95BCE7D67C044F64945FB7FDF57192 /* PrimitiveSequence.swift in Sources */, + 97B7C8CB4BF99A5CD5E485451B31C034 /* PrimitiveSequence+Concurrency.swift in Sources */, + 6D193A3B06F0D5462B18FA01C21AAF5B /* PrimitiveSequence+Zip+arity.swift in Sources */, + 24F0C89809AAC1AD9A1A47DE87EF3C6C /* PriorityQueue.swift in Sources */, + FC0542F9C9CBB5D3177763E8D63354BE /* Producer.swift in Sources */, + 25C1D77E24962464EF1FF16A836B4DFF /* PublishSubject.swift in Sources */, + CBC13ABFF646EADADC26984BDD12023C /* Queue.swift in Sources */, + C0B92C052D177818157423AA97BEEC41 /* Range.swift in Sources */, + 21F866FFDD3ED4A3867A024CAF03DAD7 /* Reactive.swift in Sources */, + 9A700645670F731D3AEE30D578991F3C /* RecursiveLock.swift in Sources */, + 81DF12053E6B37238FD5271CC56D39F2 /* RecursiveScheduler.swift in Sources */, + 0D347F1744785357C1D025A5A8F2CA16 /* Reduce.swift in Sources */, + 87AE439CF35CBCEC88CFCB269A68A0F2 /* RefCountDisposable.swift in Sources */, + 14DA7C4D43B4F0AF25CC428A060D954F /* Repeat.swift in Sources */, + DA1FA0DAE089EC8839345D5DFC5713AB /* ReplaySubject.swift in Sources */, + 71006AA82B83D4166F673C7CBC58B426 /* RetryWhen.swift in Sources */, + 2D0C86B3E6574923AAFED2B2B51751FA /* Rx.swift in Sources */, + 79B9F05D7AFAD2D6775CBC7C549249B6 /* RxMutableBox.swift in Sources */, + 0BF7A7E1CC913AD860D53300D62BDB6A /* RxSwift-dummy.m in Sources */, + 2E96D3740419575C3E1A4EBCA4E57EE9 /* Sample.swift in Sources */, + 24126622F357B27F930CB42F8CE2828F /* Scan.swift in Sources */, + 26CF5124ACB614EE9B8E40496BE66CDB /* ScheduledDisposable.swift in Sources */, + 24790EE6701CFD84EF264644D8954359 /* ScheduledItem.swift in Sources */, + E66599FD249E2518DAA49AC6A21B82B0 /* ScheduledItemType.swift in Sources */, + 1C8CCE9DD6431F5D404A6B513193B95B /* SchedulerServices+Emulation.swift in Sources */, + EAB1BD72439CE2562B93479B029BCA48 /* SchedulerType.swift in Sources */, + 88EBCF3517BBC6B987ACD5C47422F576 /* Sequence.swift in Sources */, + F68DA17CB0DF71E6DF5B3A3E382DAA7C /* SerialDispatchQueueScheduler.swift in Sources */, + 5F1C7258F522482F3A539044593738D1 /* SerialDisposable.swift in Sources */, + 3AD3D29F2CC52A05A56F94C912F1E3E6 /* ShareReplayScope.swift in Sources */, + 30F8E91AA8D3228A5A82067824711B48 /* Single.swift in Sources */, + ACFF7907821CA83DF524AF87F875FFF1 /* SingleAssignmentDisposable.swift in Sources */, + 15B922B1EEA26691B65D36B902409E80 /* SingleAsync.swift in Sources */, + 72E261A6A85538D4C56F4DE869BF0D9A /* Sink.swift in Sources */, + 02822AA5CBC58141D74D1F0EB044D7D4 /* Skip.swift in Sources */, + B1B6CF6A2FA7EB0BA2DE5414F5DF946C /* SkipUntil.swift in Sources */, + F19903143C7FE362917C822235FB7421 /* SkipWhile.swift in Sources */, + 01E69586FB0238A5ADBA53DE1F040D74 /* StartWith.swift in Sources */, + 62A10F5EFEC0F793E9CA8D2B300CF844 /* SubjectType.swift in Sources */, + 17C5A0D12F9BD9AE31B25DE583FDF815 /* SubscribeOn.swift in Sources */, + 4690B5BEF425FE58E310764CBB422CBB /* SubscriptionDisposable.swift in Sources */, + 0E1F41CBC22737D14553E4C726516982 /* SwiftSupport.swift in Sources */, + 12BCB97CB61CAAB9D2904F5855525A28 /* Switch.swift in Sources */, + 5DBA4BCC87AB8C3BEFCA6D21552260A5 /* SwitchIfEmpty.swift in Sources */, + A0940F3076A871A4690B3B5C81CC63CC /* SynchronizedDisposeType.swift in Sources */, + C611EB7B0889F299561603ABC2B2F8A6 /* SynchronizedOnType.swift in Sources */, + C351FD4D753D534C32A90970493C1309 /* SynchronizedUnsubscribeType.swift in Sources */, + 1C72C41FD44D62F3D4DA2F1B3D218B70 /* TailRecursiveSink.swift in Sources */, + 46C84A13FE65FF4521A9C7CFC0253306 /* Take.swift in Sources */, + 5438FFCF831F3BB3B5412D88B073DD37 /* TakeLast.swift in Sources */, + 9F9B7CB3B56A59AC558BC4FEF41613DB /* TakeWithPredicate.swift in Sources */, + 6C05A006EB5DEBEAF2FC010FD0A18A7A /* Throttle.swift in Sources */, + E9426C4776CBC73E58BC3FD5B308D7A8 /* Timeout.swift in Sources */, + 1E7D3862EC665AB79BB541CF6F00801F /* Timer.swift in Sources */, + 13068931BA58ED0F422A6FA105220B84 /* ToArray.swift in Sources */, + 92D1F411EDCD4E94848F2B2B5FE8EC2E /* Using.swift in Sources */, + 938DEBEEAE94B73AEF7E4F300CB237AE /* VirtualTimeConverterType.swift in Sources */, + FC14875E16CD28A3FDB402D6BC00D296 /* VirtualTimeScheduler.swift in Sources */, + E4475EA83B74BF9159D92CE76658DCF7 /* Window.swift in Sources */, + FD681CEF0152D11971E075A5BCB6D1BB /* WithLatestFrom.swift in Sources */, + AEA4B4414A13672F172ABFC829A81A2C /* WithUnretained.swift in Sources */, + 0E950FCAE86D3538201CA74A529883BE /* Zip.swift in Sources */, + D4F903272DBF8085931ED06910171FE4 /* Zip+arity.swift in Sources */, + DF9B302F0871C6124E2F498548C6663B /* Zip+Collection.swift in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; E39C7E13A18B6CB7C69FBA6A9CB6C216 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; @@ -10005,396 +10117,402 @@ /* End PBXSourcesBuildPhase section */ /* Begin PBXTargetDependency section */ - 0516D8C91EBAEF291443C3455AE9FD23 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = RxSwift; - target = EA9EA43B3B503823EE36C60D9C8A865F /* RxSwift */; - targetProxy = 66C89036FEF3FED95E64BCADA1A932D9 /* PBXContainerItemProxy */; - }; - 059E6621AC88DC29FEE2CA536A2C9455 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = SnapKit; - target = 19622742EBA51E823D6DAE3F8CDBFAD4 /* SnapKit */; - targetProxy = 51014200B32FDE3AB18214F17F17A154 /* PBXContainerItemProxy */; - }; - 09C701FD0997AC2D47C830BEE66E13D0 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = JCore; - target = D504B99928659EA67A1C3A9E981EB8FF /* JCore */; - targetProxy = 426E1207B845A0668E4997A7CA5861DC /* PBXContainerItemProxy */; - }; - 0C2BA594FD04D520BB238A6840B99349 /* PBXTargetDependency */ = { + 008201B47FD78C6752D63150E4495290 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = Kingfisher; target = E8022D22FAA6690B5E1C379C1BCE1491 /* Kingfisher */; - targetProxy = AA37BCB1591FF27A5EBD9608E7EEDD22 /* PBXContainerItemProxy */; + targetProxy = 1F86044692EA84B8E353E7BA279110AF /* PBXContainerItemProxy */; }; - 0C47A0A96E83E8F9B6BE687A61E6B896 /* PBXTargetDependency */ = { + 032DFE5811233537A2FC60AA876C156C /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = DDColorKit_Private; - target = BFED7668E8D0960F3873C9C1329EB63F /* DDColorKit_Private */; - targetProxy = 9D9A429AA00E922890438D835D52561D /* PBXContainerItemProxy */; + name = DDBasicControlsKit_Private; + target = 087B100C5691B6A3C04A45198E6C32F6 /* DDBasicControlsKit_Private */; + targetProxy = 8AE6310D2FF2661F0249136C7C742F6F /* PBXContainerItemProxy */; }; - 15DA174E766F36AFDF19E8C1A8586A08 /* PBXTargetDependency */ = { + 081EEBFF3122F095FDCB02B321C63E60 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "AMapFoundation-NO-IDFA"; + target = 9B182CB4E1716E9070813D3C59736001 /* AMapFoundation-NO-IDFA */; + targetProxy = 11179C3776B7AB26F4568C0F95CFB6CC /* PBXContainerItemProxy */; + }; + 0F04E208763E1609DB6EC8EE6FFD1144 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "AMapNavi-NO-IDFA"; + target = E94C558142469C11984D67CA883BAB1F /* AMapNavi-NO-IDFA */; + targetProxy = BAC6E8115CB5F679BEF5595816E70610 /* PBXContainerItemProxy */; + }; + 16527DA8401149F66FCBD83CA7BA0FEF /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = DDLogKit_Private; + target = 26BA8950EBF05410254D54F7EF76D5CE /* DDLogKit_Private */; + targetProxy = 5FA23FB7E2779DBD0CC1B4D7EF162DBA /* PBXContainerItemProxy */; + }; + 1A71FF1EECA8DB0648C2B2A5C94FC8B1 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "AMapLocation-NO-IDFA"; + target = 4BD4E22D3419D68A85BDD6119CB37C6C /* AMapLocation-NO-IDFA */; + targetProxy = F4D058FEF7094692A68F0DCE6752C590 /* PBXContainerItemProxy */; + }; + 28819A56DC5FE6EE567937825D41B304 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "DDBasicControlsKit_Private-DDBaseViewController"; target = 5C23965029860967865B3429B5E29092 /* DDBasicControlsKit_Private-DDBaseViewController */; - targetProxy = A91CB74A4712C8963FB0ECDF591AB4B6 /* PBXContainerItemProxy */; + targetProxy = E0587BD7430723D984EC7AC38814328F /* PBXContainerItemProxy */; }; - 1C5C036A3B32C43642FE674A611F37E5 /* PBXTargetDependency */ = { + 28C483E3B6950870FD1EF7D17380DF5A /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = CocoaDebug; - target = 0A2E6BA6D5360D619D7CABED3467AA69 /* CocoaDebug */; - targetProxy = 09ECF332AFD74FD6DED93EBB17ABA187 /* PBXContainerItemProxy */; + name = DDLogKit_Private; + target = 26BA8950EBF05410254D54F7EF76D5CE /* DDLogKit_Private */; + targetProxy = 6DD0562415A77EF51A6822E507CA91FC /* PBXContainerItemProxy */; }; - 1E9176F9209EB08BD8A103CDD46B6FF3 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = DDNetworkingOfAlamofireKit_Private; - target = B68A4B40517CF9B14050FA0A4A618B04 /* DDNetworkingOfAlamofireKit_Private */; - targetProxy = 1645736974752AAB7538DB71D983BCFB /* PBXContainerItemProxy */; - }; - 271DBF50A4497E37C2B1082F4EA05C58 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "AMapSearch-NO-IDFA"; - target = 4F1379598302C9160590B3650C10E1A5 /* AMapSearch-NO-IDFA */; - targetProxy = E5FBEFA5EF83DC3E94677866DD487E9C /* PBXContainerItemProxy */; - }; - 286C7CAEE8C88BC1B7888AB03FFBADFF /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = Alamofire; - target = EAAA1AD3A8A1B59AB91319EE40752C6D /* Alamofire */; - targetProxy = 0E57CC8EFA6CB89B84771143E68BDE96 /* PBXContainerItemProxy */; - }; - 292E96DA758A000F9224115989E2A492 /* PBXTargetDependency */ = { + 2F75967F0B50A7E796D685B37012614E /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = RxSwift; target = EA9EA43B3B503823EE36C60D9C8A865F /* RxSwift */; - targetProxy = 7AB3D08D1FC780CFB3627860B5D5442F /* PBXContainerItemProxy */; + targetProxy = 8BE7B93DED2069B1ECC2BB9DC072B958 /* PBXContainerItemProxy */; }; - 2A4E8EC7DB6361DB03D319CAC028AEC5 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "DDMAMapKit_Private-DDMAMapKit_Private"; - target = 6056870867CC4728BCEF2E5EBDD1DCB3 /* DDMAMapKit_Private-DDMAMapKit_Private */; - targetProxy = 85D3F860D13849157C722F980FD1AD6A /* PBXContainerItemProxy */; - }; - 2BBB8094F9609D5F3F403D442599ED70 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "ESTabBarController-swift"; - target = 3F83465BA81F6E581B3A431642D2992E /* ESTabBarController-swift */; - targetProxy = A122AECE7D7332E04B5C2A9B9EF00E96 /* PBXContainerItemProxy */; - }; - 2CD3FCD138F62BAA72EECB7831E069B4 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = JCore; - target = D504B99928659EA67A1C3A9E981EB8FF /* JCore */; - targetProxy = 7ADBA122B7DBF19BB68D612AC241EA84 /* PBXContainerItemProxy */; - }; - 35CCBF3B212EE7131EA1EE158D5D7575 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = JPushExtension; - target = 609276B985CD7549B9F1DEE4969208FF /* JPushExtension */; - targetProxy = E4E2B709774B1ADA1DDA4BB9F42899EE /* PBXContainerItemProxy */; - }; - 37982E51562DC76C711FB2BA5B44E3A7 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = DDCategoryKit_Private; - target = 7B8412F08BD27981DB53CE2C25C19F0A /* DDCategoryKit_Private */; - targetProxy = 4BC9E9EB40FAA22E71274CA8B9DB9197 /* PBXContainerItemProxy */; - }; - 39CDE6B71596F5949263946A1C6764E0 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = DDCategoryKit_Private; - target = 7B8412F08BD27981DB53CE2C25C19F0A /* DDCategoryKit_Private */; - targetProxy = ABDBC592676AEDBD88681F830FB84D69 /* PBXContainerItemProxy */; - }; - 3B67D5AF9A82A38CF1E701D2E1671A5A /* PBXTargetDependency */ = { + 3098B636191833D58C0BA6757C3E03B6 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = JPush; target = 5FB6AB0A09E7A2F2BE11AD6BAEFD9AED /* JPush */; - targetProxy = 9AA5BECC6225536A00A53A0D049957B6 /* PBXContainerItemProxy */; + targetProxy = FFEACE3204AF46BFBF41E70F1709E5AE /* PBXContainerItemProxy */; }; - 3EA303BA6F0D3EF1489F90377387B07C /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = DDLogKit_Private; - target = 26BA8950EBF05410254D54F7EF76D5CE /* DDLogKit_Private */; - targetProxy = 6D200E4DBC9705E1258EEA7A018709F7 /* PBXContainerItemProxy */; - }; - 46400A68231E8DF09BAC50F0B18DD249 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = DDLogKit_Private; - target = 26BA8950EBF05410254D54F7EF76D5CE /* DDLogKit_Private */; - targetProxy = 544D5A1DE764F95F9866CA7D82578767 /* PBXContainerItemProxy */; - }; - 467F5026EF2149F3E101BB211DB62F0E /* PBXTargetDependency */ = { + 358B8028A4AE72FFF2D54E1118E8486E /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = DDProgressHUDKit_Private; target = 387C7767E705FE68450F97CBA4348CC0 /* DDProgressHUDKit_Private */; - targetProxy = 54FBC3098D379DD9B5ADCE1F9348BABE /* PBXContainerItemProxy */; + targetProxy = B7636975CAB457E95AAABBCF14BB8E9D /* PBXContainerItemProxy */; }; - 4746AE5AC3485F2ED6C2A7ACA79341C2 /* PBXTargetDependency */ = { + 373880BF6F00D901615288D3C888E048 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = DDLogKit_Private; - target = 26BA8950EBF05410254D54F7EF76D5CE /* DDLogKit_Private */; - targetProxy = 68138E215E25AEAA83A5A4C8E274CEEE /* PBXContainerItemProxy */; + name = JPushExtension; + target = 609276B985CD7549B9F1DEE4969208FF /* JPushExtension */; + targetProxy = 6D95BC6BF8886BB946CEC3FB45F1D204 /* PBXContainerItemProxy */; }; - 48497FC4438A6452924610FA99957D84 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = DDTimerKit_Private; - target = 79638F3BF2709E118064EF8B13DE3317 /* DDTimerKit_Private */; - targetProxy = 23AF73A1D60B3FEAE0C4AE2D804E96B3 /* PBXContainerItemProxy */; - }; - 484E063CFFF1697866F78D573B1D3928 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = SwiftEntryKit; - target = FEA6FF0588A91CCD972EDCD698B85647 /* SwiftEntryKit */; - targetProxy = CC8F0BCF2AF9769C1B563603A29C289B /* PBXContainerItemProxy */; - }; - 4E71BDDD7BF5DFD38953FA04D51395F8 /* PBXTargetDependency */ = { + 3BBA8E0128B17F5099C1E7328E299A1C /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "AMapFoundation-NO-IDFA"; target = 9B182CB4E1716E9070813D3C59736001 /* AMapFoundation-NO-IDFA */; - targetProxy = 4F8AA5930291E51B65EB12CCD289578D /* PBXContainerItemProxy */; + targetProxy = 7CDD5FF8B3DBE68B6AE878378FDD9665 /* PBXContainerItemProxy */; }; - 4E7D76F6E8A0C0297118F6D9AF5409F2 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "AMapSearch-NO-IDFA"; - target = 4F1379598302C9160590B3650C10E1A5 /* AMapSearch-NO-IDFA */; - targetProxy = DD5B61749CF4BD2800B67BD81EDF1B1D /* PBXContainerItemProxy */; - }; - 507EC938B696BD3D104FD50B38E44430 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = RxRelay; - target = 4622BFEF3DC16E8BD15EEFC30D4D0084 /* RxRelay */; - targetProxy = C6F3AF84089D35599FA883B4C4B9E24E /* PBXContainerItemProxy */; - }; - 50D48A0FDEB67E06AEC642DA7B53CA6A /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "AMapFoundation-NO-IDFA"; - target = 9B182CB4E1716E9070813D3C59736001 /* AMapFoundation-NO-IDFA */; - targetProxy = 1EDD6E61B00C82F1591F65D72809C083 /* PBXContainerItemProxy */; - }; - 5583646680C6B351D655F223C2FD44AE /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "AMapLocation-NO-IDFA"; - target = 4BD4E22D3419D68A85BDD6119CB37C6C /* AMapLocation-NO-IDFA */; - targetProxy = 65862DC550FEB7D5B7F96F3237AB20BE /* PBXContainerItemProxy */; - }; - 5A36B3AFE6A452957350442F2FE2A989 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "AMapNavi-NO-IDFA"; - target = E94C558142469C11984D67CA883BAB1F /* AMapNavi-NO-IDFA */; - targetProxy = 5E860E228EAC4E319E4B69AD45FAB98E /* PBXContainerItemProxy */; - }; - 64B9647EF4C82D42D4894ECBF7AAEEEB /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = DDCategoryKit_Private; - target = 7B8412F08BD27981DB53CE2C25C19F0A /* DDCategoryKit_Private */; - targetProxy = 27520127E6A33710C7A0DBFE77C6A0B3 /* PBXContainerItemProxy */; - }; - 68539C0AE67F2F46419443101164E6EA /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = DDBasicControlsKit_Private; - target = 087B100C5691B6A3C04A45198E6C32F6 /* DDBasicControlsKit_Private */; - targetProxy = 2F251F27E379F5F3E4077B5733A48CBF /* PBXContainerItemProxy */; - }; - 73EC515CC5FB54A183300B42685369DD /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "AMapLocation-NO-IDFA"; - target = 4BD4E22D3419D68A85BDD6119CB37C6C /* AMapLocation-NO-IDFA */; - targetProxy = 4E0A9E419D514579CC53868101880D34 /* PBXContainerItemProxy */; - }; - 741622E0918FC05396E2BC45FBE77FDE /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = DDMAMapKit_Private; - target = B41F58F2856AB275B4CF75F359937653 /* DDMAMapKit_Private */; - targetProxy = 0090A5CAF1E705CBE0B0AD04C1BBB5C2 /* PBXContainerItemProxy */; - }; - 793D4FB923E35C2F2DB11E8D9728FA55 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = DDZFPlayerKit_Private; - target = 2864923095274ACF5E5F99312F360AEB /* DDZFPlayerKit_Private */; - targetProxy = 632994BEC27685BC111AD3A83F1FBCA0 /* PBXContainerItemProxy */; - }; - 7C2CD1679D926AC8CAB1B02E1BE78136 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = DDLogKit_Private; - target = 26BA8950EBF05410254D54F7EF76D5CE /* DDLogKit_Private */; - targetProxy = 2CB773043A62ADAF1053E5D7D6BC372F /* PBXContainerItemProxy */; - }; - 830ADC6612B067C283358C2AC9BDFB0C /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "AMapFoundation-NO-IDFA"; - target = 9B182CB4E1716E9070813D3C59736001 /* AMapFoundation-NO-IDFA */; - targetProxy = C0E92840C578A64BAA64E1D9158321C2 /* PBXContainerItemProxy */; - }; - 89A9F8F4E7FED7BBD79A1303E77D93D9 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "AMapFoundation-NO-IDFA"; - target = 9B182CB4E1716E9070813D3C59736001 /* AMapFoundation-NO-IDFA */; - targetProxy = B8DFBEE67C9D5F9DA96315C7FFB8C7B6 /* PBXContainerItemProxy */; - }; - 908B424F94E9D302325C9636246365FC /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = DDAutoUIKit_Private; - target = 53463808DD395EFE0C9E0CDCB79A6C0A /* DDAutoUIKit_Private */; - targetProxy = 8C7A885C66E7421BBA28D29F11281D88 /* PBXContainerItemProxy */; - }; - 920CC04FF14AFAED23BDA4E9724CF257 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = DDWebImageKit_Private; - target = 477926D6FB1DCEFB352517A19636405D /* DDWebImageKit_Private */; - targetProxy = D7F37E34835F8C63B772D52C96C48A83 /* PBXContainerItemProxy */; - }; - 9770CBB88D878597285355D3DB8939AC /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = DDFontKit_Private; - target = 8F3F4D8426620E7E4A06FE4BCDB96FDE /* DDFontKit_Private */; - targetProxy = B3FF2EA5204AC13B971A64D3DFDE6039 /* PBXContainerItemProxy */; - }; - 9E55C14AC59A47177E48A1B0EA1D8760 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = Alamofire; - target = EAAA1AD3A8A1B59AB91319EE40752C6D /* Alamofire */; - targetProxy = 7A85156CC935C24A22D5180570BF8152 /* PBXContainerItemProxy */; - }; - 9EA2582E3F94439AA737CD436FAE738B /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = DDToastKit_Private; - target = CFF5B7CDF57A32781D2AD4CC98E95B29 /* DDToastKit_Private */; - targetProxy = A46D410CEF2D7C9D87C4B2D3E3BEAC51 /* PBXContainerItemProxy */; - }; - A1BB09193D2750D88A77CF0E1FCE42A5 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = BRPickerView; - target = D505645C3F99EB1E8B6529D64D2C3E1C /* BRPickerView */; - targetProxy = 8EE452B970EAC0683F2DD9DBBCC3FD21 /* PBXContainerItemProxy */; - }; - AAF92806C73EDC8FD14E433CA49C5556 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = JPush; - target = 5FB6AB0A09E7A2F2BE11AD6BAEFD9AED /* JPush */; - targetProxy = 292D68C3D432037B6E74FDE31738A18B /* PBXContainerItemProxy */; - }; - B0221DF166BFDFF41727BD15592AB400 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = DDControlsKit_Private; - target = 035D1842293C4AA08F442FFD899F7F28 /* DDControlsKit_Private */; - targetProxy = 340AE79B0739F94F98D0E12ED20FDF03 /* PBXContainerItemProxy */; - }; - B344CE9AC0069DD4572B7B06E7416BE0 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = JCore; - target = D504B99928659EA67A1C3A9E981EB8FF /* JCore */; - targetProxy = 46FE04E413CE27AA997AF950C4BC87FF /* PBXContainerItemProxy */; - }; - B38A63972282207AD446ABCAAD1A4152 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "AMapLocation-NO-IDFA"; - target = 4BD4E22D3419D68A85BDD6119CB37C6C /* AMapLocation-NO-IDFA */; - targetProxy = CFEF4BD221A8EF9CA31B2C227F11598D /* PBXContainerItemProxy */; - }; - B93FD9DA723DACCD7102F2F05ED12D52 /* PBXTargetDependency */ = { + 446F5DA42D2305A446FCADAFF1CC43F2 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = SnapKit; target = 19622742EBA51E823D6DAE3F8CDBFAD4 /* SnapKit */; - targetProxy = FF67CEBE1F7747BB41AAACB566A136F1 /* PBXContainerItemProxy */; + targetProxy = FADB2F285A8ADC0FA8D171D8888023A8 /* PBXContainerItemProxy */; }; - C18045F91C0E60752D3532F0344BD53F /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = RxSwift; - target = EA9EA43B3B503823EE36C60D9C8A865F /* RxSwift */; - targetProxy = 35D81D47CB27BD2B96A003F086B53941 /* PBXContainerItemProxy */; - }; - C90C75CB96659287AC73C3DCCA7676C6 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = JXCategoryView; - target = 8BEAFAA726C1965864B79B4B441AA513 /* JXCategoryView */; - targetProxy = 3AFE48C5C273114E626924F5CBFFB34D /* PBXContainerItemProxy */; - }; - C94EDA3216FF0314DABDD17037CB8B8E /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = MJRefresh; - target = 6868056D761E163D10FDAF8CF1C4D9B8 /* MJRefresh */; - targetProxy = 61EEE722143EC3B9089F8E67B19235D5 /* PBXContainerItemProxy */; - }; - C95C8B19D57997C93F73DE8EC5D4DF39 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = RxSwift; - target = EA9EA43B3B503823EE36C60D9C8A865F /* RxSwift */; - targetProxy = E3D278A27F028FF94205CDFA41D289AB /* PBXContainerItemProxy */; - }; - CAF088C29E925FEA488F3ABAA1CF30BF /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "AMapFoundation-NO-IDFA"; - target = 9B182CB4E1716E9070813D3C59736001 /* AMapFoundation-NO-IDFA */; - targetProxy = 0039E20BA2B6202A6AD9D7B087C0AF96 /* PBXContainerItemProxy */; - }; - D1F2F7F482072460C97DF7C17528FF8D /* PBXTargetDependency */ = { + 47AF29951E2109D99F6E6C3C547FDEB6 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = DDCategoryKit_Private; target = 7B8412F08BD27981DB53CE2C25C19F0A /* DDCategoryKit_Private */; - targetProxy = F0A50DF1560830FBDA429270744D9C7C /* PBXContainerItemProxy */; + targetProxy = 22EBE1BE3D734C9297335F545B6C608E /* PBXContainerItemProxy */; }; - D3B7D25ACCF0AC12F5AB209DC1403350 /* PBXTargetDependency */ = { + 4A07AB06A8D0ABB3B76EE0166C6C840E /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = RxCocoa; - target = 7AD0C6DCDC9CEC8A3C7C10C7FEE07BE6 /* RxCocoa */; - targetProxy = 7B8D07D483C1ED301B9F5C3E4E5111D8 /* PBXContainerItemProxy */; + name = DDAutoUIKit_Private; + target = 53463808DD395EFE0C9E0CDCB79A6C0A /* DDAutoUIKit_Private */; + targetProxy = 3FDBEF7FA116B347DB3D3DF266BDB560 /* PBXContainerItemProxy */; }; - D7F95B2190DD2495718B0CFB02318331 /* PBXTargetDependency */ = { + 4B9480B181E7CECF68EDE8CB3E95CABE /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = RxRelay; - target = 4622BFEF3DC16E8BD15EEFC30D4D0084 /* RxRelay */; - targetProxy = 617ED1400162E1C54BEE92D02DAB4E54 /* PBXContainerItemProxy */; + name = BRPickerView; + target = D505645C3F99EB1E8B6529D64D2C3E1C /* BRPickerView */; + targetProxy = A5EC19151F32DEA9997B6CEE12F15298 /* PBXContainerItemProxy */; }; - DD22BCFFB637F5EBBB2CC0632555A97A /* PBXTargetDependency */ = { + 4D2980DFD79E69581C002D9677D9D931 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = DDBasicControlsKit_Private; - target = 087B100C5691B6A3C04A45198E6C32F6 /* DDBasicControlsKit_Private */; - targetProxy = 9E4B15A2AECD9830996219681F05C934 /* PBXContainerItemProxy */; + name = DDLogKit_Private; + target = 26BA8950EBF05410254D54F7EF76D5CE /* DDLogKit_Private */; + targetProxy = 2D6522A07C0827ECC292709E5743449C /* PBXContainerItemProxy */; }; - E812535AB6E9320E02166E552C709B2F /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "AMapNavi-NO-IDFA"; - target = E94C558142469C11984D67CA883BAB1F /* AMapNavi-NO-IDFA */; - targetProxy = F01ED5CD3AA5CE35577798AE008676B4 /* PBXContainerItemProxy */; - }; - E8855756B9EB7AC13498CB9C635D23EA /* PBXTargetDependency */ = { + 4E4E041A1FECFD18FFB561E6255CB7D3 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = IQKeyboardManagerSwift; target = B490E7485944099E16C9CBD79119D1D4 /* IQKeyboardManagerSwift */; - targetProxy = B6E21C4436A30DBDDB529B022D6C2A4E /* PBXContainerItemProxy */; + targetProxy = 3FCC2A3CBCACDAF421E62BED3FB1A695 /* PBXContainerItemProxy */; }; - EA12889CBE73C0969735A8825782C6B7 /* PBXTargetDependency */ = { + 4E97FC27DD01CB82A9BFC8DCCCFF11CE /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = DDMAMapKit_Private; + target = B41F58F2856AB275B4CF75F359937653 /* DDMAMapKit_Private */; + targetProxy = C93C59643D1B3E19B64686BC51BA169D /* PBXContainerItemProxy */; + }; + 4F690F49032D3ED438F7DF91D0DFCD41 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = DDToastKit_Private; + target = CFF5B7CDF57A32781D2AD4CC98E95B29 /* DDToastKit_Private */; + targetProxy = 6CF1AF0D5D1BA7CEB963D80CF28BC39B /* PBXContainerItemProxy */; + }; + 5267574A4C777D5FDBA8729D457ECF2E /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = DDLogKit_Private; + target = 26BA8950EBF05410254D54F7EF76D5CE /* DDLogKit_Private */; + targetProxy = 9DA058F410F1FC421BDD816F39C77D64 /* PBXContainerItemProxy */; + }; + 57F47FB3478C3D8BFE304C0D4EC133C5 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = RxRelay; + target = 4622BFEF3DC16E8BD15EEFC30D4D0084 /* RxRelay */; + targetProxy = 2C7F926E45E44F4C925E8F2CDF1CBF0A /* PBXContainerItemProxy */; + }; + 5C5B562DE22742375C28389F3D4D552B /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = RxSwift; + target = EA9EA43B3B503823EE36C60D9C8A865F /* RxSwift */; + targetProxy = 77D9B0C385A96B3C01F03047D756E452 /* PBXContainerItemProxy */; + }; + 5F785DB869732AC2AC35A72B813148DD /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = DDControlsKit_Private; + target = 035D1842293C4AA08F442FFD899F7F28 /* DDControlsKit_Private */; + targetProxy = ECC46590F3997FD572ABE783D10AE786 /* PBXContainerItemProxy */; + }; + 5FEAD49860218CE744445E9CED3F31FA /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = SwiftEntryKit; + target = FEA6FF0588A91CCD972EDCD698B85647 /* SwiftEntryKit */; + targetProxy = 4A823DF3BDEF65E0A55A12B9965823C4 /* PBXContainerItemProxy */; + }; + 649A494FB94524894D5D9A7D633CCD89 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "AMapNavi-NO-IDFA"; + target = E94C558142469C11984D67CA883BAB1F /* AMapNavi-NO-IDFA */; + targetProxy = 71B3CE179E99C0187C84322E7F10D1CE /* PBXContainerItemProxy */; + }; + 6BB8082A5DFB595FC71472E2DFE56951 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = CocoaDebug; + target = 0A2E6BA6D5360D619D7CABED3467AA69 /* CocoaDebug */; + targetProxy = C1604209A413EE32B487D8D960D60DBC /* PBXContainerItemProxy */; + }; + 6D3266508913EF96D528F1B3A1B327BE /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = Alamofire; + target = EAAA1AD3A8A1B59AB91319EE40752C6D /* Alamofire */; + targetProxy = 1565EC9D0AD439A784F9CBDE29087A07 /* PBXContainerItemProxy */; + }; + 7B1224F1300B0270854465C5FC65D11F /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "AMapFoundation-NO-IDFA"; + target = 9B182CB4E1716E9070813D3C59736001 /* AMapFoundation-NO-IDFA */; + targetProxy = 03A21B59A800FB3BDC8BD2C0BC48B296 /* PBXContainerItemProxy */; + }; + 7F76D847C836FF890C8D105CC0BFAE00 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "AMapTrack-NO-IDFA"; + target = 2160840D78FCB958CABE1B88300E38C5 /* AMapTrack-NO-IDFA */; + targetProxy = A73DC450372764D28389349C4668ADF7 /* PBXContainerItemProxy */; + }; + 7F9BA7A22B0BA85968F9DDF15094FE00 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = DDNetworkingOfAlamofireKit_Private; + target = B68A4B40517CF9B14050FA0A4A618B04 /* DDNetworkingOfAlamofireKit_Private */; + targetProxy = 332967EC52A0475A472421D99BB3BE55 /* PBXContainerItemProxy */; + }; + 84F2C78FD563365132FADBD80A9BB3AD /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = DDColorKit_Private; + target = BFED7668E8D0960F3873C9C1329EB63F /* DDColorKit_Private */; + targetProxy = CB888540D77F173F7B6ED637CEC9730A /* PBXContainerItemProxy */; + }; + 85E210701407A31AAEA411DD9FD7A705 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "AMapLocation-NO-IDFA"; + target = 4BD4E22D3419D68A85BDD6119CB37C6C /* AMapLocation-NO-IDFA */; + targetProxy = 5B42E80CDF16E1A5BBBAF3B83E9C99D7 /* PBXContainerItemProxy */; + }; + 8AA4C609A6755CE947A5781935788F8F /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = MJRefresh; + target = 6868056D761E163D10FDAF8CF1C4D9B8 /* MJRefresh */; + targetProxy = 73F2272D8EEA442AF4A376BAB73083BA /* PBXContainerItemProxy */; + }; + 8B68DFAF2316FA5796CD2D25FB136C34 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = RxSwift; + target = EA9EA43B3B503823EE36C60D9C8A865F /* RxSwift */; + targetProxy = 7AF9D4334B2A28D9CCB57048CC275E7B /* PBXContainerItemProxy */; + }; + 8DC1AFC7EAB6EC8621B3D8767DDB64AE /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = RxRelay; + target = 4622BFEF3DC16E8BD15EEFC30D4D0084 /* RxRelay */; + targetProxy = A223EFAA26C70C47BA3C41941E1C21FF /* PBXContainerItemProxy */; + }; + 91A794987B562B36EEE299A58494C06B /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = RxCocoa; + target = 7AD0C6DCDC9CEC8A3C7C10C7FEE07BE6 /* RxCocoa */; + targetProxy = 1E0DB328CC6CCCDC6D56C2B2F865E695 /* PBXContainerItemProxy */; + }; + 91BA5C4F2A92531F32CF2583E2EA45B7 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "AMapLocation-NO-IDFA"; + target = 4BD4E22D3419D68A85BDD6119CB37C6C /* AMapLocation-NO-IDFA */; + targetProxy = 0837C54715C18800F793A1CFCA8469BE /* PBXContainerItemProxy */; + }; + 92A8C689AFA17B2571133A3FAF10025E /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = ZLPhotoBrowser; target = 2FAF03761A44702490259F857A848B42 /* ZLPhotoBrowser */; - targetProxy = D2E54B74C515254D202791AF89BC3AB2 /* PBXContainerItemProxy */; + targetProxy = 4D227D4201BC3FB3A36F13ED859FF788 /* PBXContainerItemProxy */; }; - EE52EB2AA2ECBE1B83977006490324FA /* PBXTargetDependency */ = { + 92DF17AC136FA3990003CA984C25B83A /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = DDCategoryKit_Private; + target = 7B8412F08BD27981DB53CE2C25C19F0A /* DDCategoryKit_Private */; + targetProxy = FD5FE5987C226C6ADA0E73968CD3C1ED /* PBXContainerItemProxy */; + }; + 987097C4CE0050A8536056D15E13401D /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = JCore; + target = D504B99928659EA67A1C3A9E981EB8FF /* JCore */; + targetProxy = 6ADDD21D486E005CD811901B2B59AA13 /* PBXContainerItemProxy */; + }; + 9B686050B3702E78074BF091C7B25808 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "AMapSearch-NO-IDFA"; + target = 4F1379598302C9160590B3650C10E1A5 /* AMapSearch-NO-IDFA */; + targetProxy = 3431032CB4A10DF43520DC390190801E /* PBXContainerItemProxy */; + }; + A1B55DD99824428B91A5B1ECF98046F1 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "AMapFoundation-NO-IDFA"; + target = 9B182CB4E1716E9070813D3C59736001 /* AMapFoundation-NO-IDFA */; + targetProxy = E77FA69D4D688AC47C1CA26E75FFCEDE /* PBXContainerItemProxy */; + }; + A2073EF97AD3591795490647DC795E6F /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = DDCategoryKit_Private; + target = 7B8412F08BD27981DB53CE2C25C19F0A /* DDCategoryKit_Private */; + targetProxy = BFEABB2BB369A265D3D73EF384C65276 /* PBXContainerItemProxy */; + }; + AA021A594E0489739BCB52B322C614D4 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = SnapKit; + target = 19622742EBA51E823D6DAE3F8CDBFAD4 /* SnapKit */; + targetProxy = 9E0B76655BB5A1475D8F2A23902DC20B /* PBXContainerItemProxy */; + }; + AFEA5FB96D8DBFE55B3781115F975F79 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = DDBasicControlsKit_Private; + target = 087B100C5691B6A3C04A45198E6C32F6 /* DDBasicControlsKit_Private */; + targetProxy = F8200FB4B6B893343DFBCA3684200E99 /* PBXContainerItemProxy */; + }; + B18B9B44A1A90F9729A5266E5D7F092D /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = JCore; + target = D504B99928659EA67A1C3A9E981EB8FF /* JCore */; + targetProxy = B2857F9B28DD254D56005E9AE4233146 /* PBXContainerItemProxy */; + }; + BB15D1EA661F13E635453CEB97AC68A8 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = Alamofire; + target = EAAA1AD3A8A1B59AB91319EE40752C6D /* Alamofire */; + targetProxy = 03E7A53182E7C19CFDA6AAB8972402D2 /* PBXContainerItemProxy */; + }; + BC3EEC9C3E4844CF4F332F75E60B74CF /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = JXCategoryView; + target = 8BEAFAA726C1965864B79B4B441AA513 /* JXCategoryView */; + targetProxy = 9E9541497958EAE300B595C12863B8FD /* PBXContainerItemProxy */; + }; + BCDBF13AE95DE3A2CDD15937AB852BD9 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = JCore; + target = D504B99928659EA67A1C3A9E981EB8FF /* JCore */; + targetProxy = A8A17B3166F06EF8396AC780973C648B /* PBXContainerItemProxy */; + }; + C66B6D69E1F076F0DD1E5A84AF42AB4E /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = DDWebImageKit_Private; + target = 477926D6FB1DCEFB352517A19636405D /* DDWebImageKit_Private */; + targetProxy = C28A218B4520C354341E7CC8F41619A0 /* PBXContainerItemProxy */; + }; + C9112FCBA4F3C2555CF4D9ACAA71A370 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = DDTimerKit_Private; + target = 79638F3BF2709E118064EF8B13DE3317 /* DDTimerKit_Private */; + targetProxy = 420A50DF68F1E1A2D63D9B7E10A7B71F /* PBXContainerItemProxy */; + }; + CAAF9A41AA453A02AA522863EDF09759 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = DDFontKit_Private; + target = 8F3F4D8426620E7E4A06FE4BCDB96FDE /* DDFontKit_Private */; + targetProxy = BBA7A696DFE01A354D0A40E51D3F6484 /* PBXContainerItemProxy */; + }; + CBC1F8A03A85317FF2C3E1B22DBC4A30 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = JPush; + target = 5FB6AB0A09E7A2F2BE11AD6BAEFD9AED /* JPush */; + targetProxy = DB980FB2245FC16A7B9E31911F9FD952 /* PBXContainerItemProxy */; + }; + CC25E04E7D778C911C7807D80B1C6CD4 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = DDAudioPlayerKit_Private; + target = E72BE4C94039A951B47CCC942F6B4B8F /* DDAudioPlayerKit_Private */; + targetProxy = DFDF6F6F6D75D7BCDD3F6FE9B739ACDF /* PBXContainerItemProxy */; + }; + CD2B4B0FCA4DD8F5A9FBA97F23557E45 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = DDCategoryKit_Private; + target = 7B8412F08BD27981DB53CE2C25C19F0A /* DDCategoryKit_Private */; + targetProxy = E1403A09053EC26981D6D04B46547F2B /* PBXContainerItemProxy */; + }; + E01813D4CFA85196E70CC0D575ED84A0 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "AMapTrack-NO-IDFA"; + target = 2160840D78FCB958CABE1B88300E38C5 /* AMapTrack-NO-IDFA */; + targetProxy = 8C8571F1DFAD5CE85EF071F688399DA1 /* PBXContainerItemProxy */; + }; + EBF0385E43B863B424F35C61D03099B5 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "ESTabBarController-swift"; + target = 3F83465BA81F6E581B3A431642D2992E /* ESTabBarController-swift */; + targetProxy = 27A8918ACD54A374B79DD0C8DA17C835 /* PBXContainerItemProxy */; + }; + F15A5EC541D0A9D92AA8C4AFF61F7379 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = RxSwift; + target = EA9EA43B3B503823EE36C60D9C8A865F /* RxSwift */; + targetProxy = 2552AFA5610E774F20BC023A279D0DA2 /* PBXContainerItemProxy */; + }; + F18BAC9E0802878CE2336D9493C927D8 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "AMapSearch-NO-IDFA"; + target = 4F1379598302C9160590B3650C10E1A5 /* AMapSearch-NO-IDFA */; + targetProxy = 0FA9B62BD7EAE97FF03055F6A878D7E7 /* PBXContainerItemProxy */; + }; + F254C86B796CA34EE709E31503AA85C3 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = DDZFPlayerKit_Private; + target = 2864923095274ACF5E5F99312F360AEB /* DDZFPlayerKit_Private */; + targetProxy = CB9636091FC3CB38253E1D1A9EA441AE /* PBXContainerItemProxy */; + }; + F7EF7D4ADBB5E4498C2B21ECA6725EEC /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = Kingfisher; target = E8022D22FAA6690B5E1C379C1BCE1491 /* Kingfisher */; - targetProxy = A3E175FB38EB2F762B840251A8AE457D /* PBXContainerItemProxy */; + targetProxy = 6785F283383F41F09DA1D57CDB7595D2 /* PBXContainerItemProxy */; }; - F7E6D61FAD6BB5E1ABE5D0D65DC364B7 /* PBXTargetDependency */ = { + FA5E781C37631ED1017D5E1D0B553DD9 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "AMapTrack-NO-IDFA"; - target = 2160840D78FCB958CABE1B88300E38C5 /* AMapTrack-NO-IDFA */; - targetProxy = 70C778CF207BB6292AAF6C11024AD6D9 /* PBXContainerItemProxy */; + name = "AMapFoundation-NO-IDFA"; + target = 9B182CB4E1716E9070813D3C59736001 /* AMapFoundation-NO-IDFA */; + targetProxy = E1CA1CAC2B26ECA923711114608643ED /* PBXContainerItemProxy */; }; - FEF437F984A7BEEFD1339F85ADCC463C /* PBXTargetDependency */ = { + FE96776C2F90B61C2C1F931557CF9C41 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "AMapTrack-NO-IDFA"; - target = 2160840D78FCB958CABE1B88300E38C5 /* AMapTrack-NO-IDFA */; - targetProxy = 579898DE903192FDCD02CFD9409CFC03 /* PBXContainerItemProxy */; + name = "DDMAMapKit_Private-DDMAMapKit_Private"; + target = 6056870867CC4728BCEF2E5EBDD1DCB3 /* DDMAMapKit_Private-DDMAMapKit_Private */; + targetProxy = 0E1F6F402B2D957E8848046B7D0CAAD1 /* PBXContainerItemProxy */; }; /* End PBXTargetDependency section */ /* Begin XCBuildConfiguration section */ 018D720E452377F7AFADDD01046CD345 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 44A35ADC778A87691383B51002002BA3 /* CocoaDebug.debug.xcconfig */; + baseConfigurationReference = 0448FF2AB119125D802AC2F5FA6D011F /* CocoaDebug.debug.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -10421,7 +10539,7 @@ }; 08DB115CE7F4C5FF3BE8B29587F71FD4 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 82AF50BEAEAD518CFE55280A7141ABC5 /* DDFontKit_Private.release.xcconfig */; + baseConfigurationReference = 9E8A1B69A23A66FA52A4486F2A77B771 /* DDFontKit_Private.release.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -10447,33 +10565,9 @@ }; name = Release; }; - 0BD49CB3720B34AE3E1623F8116650C2 /* Debug */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = AA0A65EC7B037CEBA8B5D406D2D4DEA7 /* Pods-OrderScheduling.debug.xcconfig */; - buildSettings = { - ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO; - CLANG_ENABLE_OBJC_WEAK = NO; - "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - DEVELOPMENT_TEAM = W4SG324NS4; - "EXCLUDED_ARCHS[sdk=iphonesimulator*]" = arm64; - IPHONEOS_DEPLOYMENT_TARGET = 13.0; - MACH_O_TYPE = staticlib; - MODULEMAP_FILE = "Target Support Files/Pods-OrderScheduling/Pods-OrderScheduling.modulemap"; - OTHER_LDFLAGS = ""; - OTHER_LIBTOOLFLAGS = ""; - PODS_ROOT = "$(SRCROOT)"; - PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}"; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - TARGETED_DEVICE_FAMILY = "1,2"; - }; - name = Debug; - }; 11D56227FCDEFF4EBBE0DE515B30A97B /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 9FE6F650AAA3B78F63B7C65A0540DA04 /* DDProgressHUDKit_Private.release.xcconfig */; + baseConfigurationReference = 5525ABEEA14CA4E5AB5FF704970AD83C /* DDProgressHUDKit_Private.release.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -10501,7 +10595,7 @@ }; 1217A5FD207A369EC08F200D61302F28 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = D576FE8F38A32946A041DDF582D3239F /* AMapSearch-NO-IDFA.release.xcconfig */; + baseConfigurationReference = 47D264E081BE7629EAC9140F4D6C5993 /* AMapSearch-NO-IDFA.release.xcconfig */; buildSettings = { ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; @@ -10521,7 +10615,7 @@ }; 123B56BFFEB521A2C49BD4633B53B7A7 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 23F2720D5D8D372C6D896465F0822E96 /* AMapTrack-NO-IDFA.release.xcconfig */; + baseConfigurationReference = C4605D951AFC0A203124A569B0958C21 /* AMapTrack-NO-IDFA.release.xcconfig */; buildSettings = { ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; @@ -10541,7 +10635,7 @@ }; 1450BF00D614BC5BD29AEBAB30F1298A /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 756DBB4FC30229EAB896E02B5A47C586 /* DDColorKit_Private.release.xcconfig */; + baseConfigurationReference = D6D31330E245C2EA5994F1BBCCFAFC48 /* DDColorKit_Private.release.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -10567,37 +10661,9 @@ }; name = Release; }; - 1601B0CC6016BF17DD7A35E1B8CBBF5A /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = F112A9A2F1385737EFFEE3D6417031D4 /* Kingfisher.release.xcconfig */; - buildSettings = { - CLANG_ENABLE_OBJC_WEAK = NO; - "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - DEVELOPMENT_TEAM = W4SG324NS4; - "EXCLUDED_ARCHS[sdk=iphonesimulator*]" = arm64; - GCC_PREFIX_HEADER = "Target Support Files/Kingfisher/Kingfisher-prefix.pch"; - IPHONEOS_DEPLOYMENT_TARGET = 12.0; - MODULEMAP_FILE = Headers/Public/Kingfisher/Kingfisher.modulemap; - OTHER_LDFLAGS = ""; - OTHER_LIBTOOLFLAGS = ""; - PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = Kingfisher; - PRODUCT_NAME = Kingfisher; - PUBLIC_HEADERS_FOLDER_PATH = ""; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) RELEASE"; - SWIFT_VERSION = 5.0; - TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; - }; - name = Release; - }; 168F88F257BF3076AC5CFF0D000CA9F4 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 0F190E920FB3BE3C888113C06E0C8B33 /* DDBasicControlsKit_Private.release.xcconfig */; + baseConfigurationReference = 19C8749E52978158169E1C3BF25DDB52 /* DDBasicControlsKit_Private.release.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -10625,7 +10691,7 @@ }; 188FC488B4497E52A2AD63D9E9A58C6F /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = BAFE20E8DE232AF4E33A59A7A4946063 /* DDTimerKit_Private.debug.xcconfig */; + baseConfigurationReference = 9DA42232C932E85BAFD4FF2EEA92DFDF /* DDTimerKit_Private.debug.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -10650,36 +10716,9 @@ }; name = Debug; }; - 1A0A949EEC5A33B0F42C7C04B8966069 /* Debug */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = FC6E15F9705E04077EE1C6AAB58B3245 /* DDLogKit_Private.debug.xcconfig */; - buildSettings = { - CLANG_ENABLE_OBJC_WEAK = NO; - "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - DEVELOPMENT_TEAM = W4SG324NS4; - "EXCLUDED_ARCHS[sdk=iphonesimulator*]" = arm64; - GCC_PREFIX_HEADER = "Target Support Files/DDLogKit_Private/DDLogKit_Private-prefix.pch"; - IPHONEOS_DEPLOYMENT_TARGET = 11.0; - MODULEMAP_FILE = Headers/Public/DDLogKit_Private/DDLogKit_Private.modulemap; - OTHER_LDFLAGS = ""; - OTHER_LIBTOOLFLAGS = ""; - PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = DDLogKit_Private; - PRODUCT_NAME = DDLogKit_Private; - PUBLIC_HEADERS_FOLDER_PATH = ""; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - SWIFT_VERSION = 5.0; - TARGETED_DEVICE_FAMILY = "1,2"; - }; - name = Debug; - }; 1AA4002D0330C8EF5B31DF576A7A59F6 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 70F0EC675800BC9308A0F22D07A43974 /* MJRefresh.debug.xcconfig */; + baseConfigurationReference = 56BF39B3EB093F44FA1AC755EE7FB094 /* MJRefresh.debug.xcconfig */; buildSettings = { "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; @@ -10705,7 +10744,7 @@ }; 1E1C0DC034CB8D9DDA9B48115E03DD39 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = B468C6887020692A16B239E034831DA7 /* ZLPhotoBrowser.debug.xcconfig */; + baseConfigurationReference = B2C1671B93D950380268814B7807A1DE /* ZLPhotoBrowser.debug.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -10732,7 +10771,7 @@ }; 1E5970583A4B8409CA1869CC05736093 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 24E22025AFCCDEC937F7B01867C1A4FF /* DDWebImageKit_Private.release.xcconfig */; + baseConfigurationReference = 1B057FB28F622C52D92272EC7216BA4F /* DDWebImageKit_Private.release.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -10758,9 +10797,9 @@ }; name = Release; }; - 212C25E6510C15E8B851EE2897CF26F4 /* Release */ = { + 1F7428949022EE44FEA40EE337383E43 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 2DEB0CCDAA83959F95B045476EBF88CC /* DDLogKit_Private.release.xcconfig */; + baseConfigurationReference = 4886FF587087342F26AE037DBFBF90D6 /* DDLogKit_Private.debug.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -10779,12 +10818,11 @@ PUBLIC_HEADERS_FOLDER_PATH = ""; SDKROOT = iphoneos; SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) RELEASE"; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; SWIFT_VERSION = 5.0; TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; }; - name = Release; + name = Debug; }; 21DF2B800B6C1129F0CA39B4F82D8E18 /* Release */ = { isa = XCBuildConfiguration; @@ -10813,7 +10851,7 @@ }; 236308304D4140A59E416ED9AF9CF176 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = F12247A5F39A5764DEF56D27EEF65ECE /* AMapLocation-NO-IDFA.release.xcconfig */; + baseConfigurationReference = 28B9E3EAC7A6B0D0D40B66514615C6A3 /* AMapLocation-NO-IDFA.release.xcconfig */; buildSettings = { ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; @@ -10833,7 +10871,7 @@ }; 2384B389FE9C559487EAAF74FBF2B839 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = BC51BD205157C988A8D41336670B09F7 /* JPush.release.xcconfig */; + baseConfigurationReference = 69F7D752E9CB3E474A618873D9726AE5 /* JPush.release.xcconfig */; buildSettings = { ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; @@ -10851,9 +10889,36 @@ }; name = Release; }; + 24829BA88369299220FE7C36BD47B55F /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 0F7251723673525D2D0FD7FD55BDA311 /* DDCategoryKit_Private.debug.xcconfig */; + buildSettings = { + CLANG_ENABLE_OBJC_WEAK = NO; + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + DEVELOPMENT_TEAM = W4SG324NS4; + "EXCLUDED_ARCHS[sdk=iphonesimulator*]" = arm64; + GCC_PREFIX_HEADER = "Target Support Files/DDCategoryKit_Private/DDCategoryKit_Private-prefix.pch"; + IPHONEOS_DEPLOYMENT_TARGET = 11.0; + MODULEMAP_FILE = Headers/Public/DDCategoryKit_Private/DDCategoryKit_Private.modulemap; + OTHER_LDFLAGS = ""; + OTHER_LIBTOOLFLAGS = ""; + PRIVATE_HEADERS_FOLDER_PATH = ""; + PRODUCT_MODULE_NAME = DDCategoryKit_Private; + PRODUCT_NAME = DDCategoryKit_Private; + PUBLIC_HEADERS_FOLDER_PATH = ""; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; + SWIFT_VERSION = 5.0; + TARGETED_DEVICE_FAMILY = "1,2"; + }; + name = Debug; + }; 263B2806AAE5C1D7D48C043A3FCCC728 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 9E192DDFBD0F157867DFA6E9582C17EC /* JPushExtension.release.xcconfig */; + baseConfigurationReference = BF5287D098DA990C2E2B7E780134AF60 /* JPushExtension.release.xcconfig */; buildSettings = { ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; @@ -10872,28 +10937,9 @@ }; name = Release; }; - 26A349D5B95D914DD66FAFE3C639507F /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 0F190E920FB3BE3C888113C06E0C8B33 /* DDBasicControlsKit_Private.release.xcconfig */; - buildSettings = { - CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/DDBasicControlsKit_Private"; - DEVELOPMENT_TEAM = W4SG324NS4; - "EXCLUDED_ARCHS[sdk=iphonesimulator*]" = arm64; - IBSC_MODULE = DDBasicControlsKit_Private; - INFOPLIST_FILE = "Target Support Files/DDBasicControlsKit_Private/ResourceBundle-DDBaseViewController-DDBasicControlsKit_Private-Info.plist"; - IPHONEOS_DEPLOYMENT_TARGET = 11.0; - PRODUCT_NAME = DDBaseViewController; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) RELEASE"; - TARGETED_DEVICE_FAMILY = "1,2"; - WRAPPER_EXTENSION = bundle; - }; - name = Release; - }; 2774D786BC2717CFCFF207AB6F982889 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 5C0B31CD55F230182D568D7C9DC05432 /* IQKeyboardManagerSwift.release.xcconfig */; + baseConfigurationReference = 681863C9CF361BD9A43CF4E005C4CD13 /* IQKeyboardManagerSwift.release.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -10921,7 +10967,7 @@ }; 2AE5AF3FD2DFDCD43CC42B444D3685F9 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 6D995936E759960521519D528A7D6C21 /* DDTimerKit_Private.release.xcconfig */; + baseConfigurationReference = 8FB301939C9BC99F272793DB3EA9A39E /* DDTimerKit_Private.release.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -10949,7 +10995,7 @@ }; 2B195AAB226B108EA239780A82482E05 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = CACF8EAE904DBD3B51A2631BD1CC6942 /* DDControlsKit_Private.debug.xcconfig */; + baseConfigurationReference = 620DF70E8F0EAE8273F6EE3FBC6C4DDF /* DDControlsKit_Private.debug.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -10976,7 +11022,7 @@ }; 2B36F70CE1C1C6501F373FCE4126DC6E /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = B6649AEB4438C4464D3D9CB6F2ED7EE7 /* DDFontKit_Private.debug.xcconfig */; + baseConfigurationReference = 3EE95830DF547E9583DE5E91FEE8B4C2 /* DDFontKit_Private.debug.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -11001,63 +11047,9 @@ }; name = Debug; }; - 3E65CD72FC20A30D94BBD8A24FDDFD11 /* Debug */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 8DDF3D97A63B399455E7A3994C5332D5 /* SnapKit.debug.xcconfig */; - buildSettings = { - CLANG_ENABLE_OBJC_WEAK = NO; - "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - DEVELOPMENT_TEAM = W4SG324NS4; - "EXCLUDED_ARCHS[sdk=iphonesimulator*]" = arm64; - GCC_PREFIX_HEADER = "Target Support Files/SnapKit/SnapKit-prefix.pch"; - IPHONEOS_DEPLOYMENT_TARGET = 10.0; - MODULEMAP_FILE = Headers/Public/SnapKit/SnapKit.modulemap; - OTHER_LDFLAGS = ""; - OTHER_LIBTOOLFLAGS = ""; - PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = SnapKit; - PRODUCT_NAME = SnapKit; - PUBLIC_HEADERS_FOLDER_PATH = ""; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - SWIFT_VERSION = 5.0; - TARGETED_DEVICE_FAMILY = "1,2"; - }; - name = Debug; - }; - 400A7FB2304A6DB7021C0106B1F51166 /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 1533FBBCB4E61683BDC3F1EBCFAA1143 /* RxRelay.release.xcconfig */; - buildSettings = { - "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - DEVELOPMENT_TEAM = W4SG324NS4; - "EXCLUDED_ARCHS[sdk=iphonesimulator*]" = arm64; - GCC_PREFIX_HEADER = "Target Support Files/RxRelay/RxRelay-prefix.pch"; - IPHONEOS_DEPLOYMENT_TARGET = 9.0; - MODULEMAP_FILE = Headers/Public/RxRelay/RxRelay.modulemap; - OTHER_LDFLAGS = ""; - OTHER_LIBTOOLFLAGS = ""; - PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = RxRelay; - PRODUCT_NAME = RxRelay; - PUBLIC_HEADERS_FOLDER_PATH = ""; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) RELEASE"; - SWIFT_VERSION = 5.1; - TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; - }; - name = Release; - }; 4056C9A08E35ACD5BBC3D37087CDAFA1 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 14FE5A15417756FA1678F7F3BA6FEC04 /* DDMAMapKit_Private.debug.xcconfig */; + baseConfigurationReference = 5266A14A900C54DF06D3B78688812743 /* DDMAMapKit_Private.debug.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -11084,7 +11076,7 @@ }; 42A9DE01C961F294E9E65F606C83F895 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = B107510587F9AC74E807346409C99813 /* JXCategoryView.debug.xcconfig */; + baseConfigurationReference = 5AEB8F30EC772AD200F59854D2F954B8 /* JXCategoryView.debug.xcconfig */; buildSettings = { "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; @@ -11110,7 +11102,7 @@ }; 45C0D4101B0105F3C514D259CC801DD3 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = B4EE14442D31863552DFE959D66A540D /* ESTabBarController-swift.debug.xcconfig */; + baseConfigurationReference = 65EF2A8EC65839B3B41245C149B6004E /* ESTabBarController-swift.debug.xcconfig */; buildSettings = { "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; @@ -11136,7 +11128,7 @@ }; 4672A4BF14B52FE4E6C61D2CBB58D572 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 7F57CC44A8509BF883418D42537ED136 /* AMapNavi-NO-IDFA.release.xcconfig */; + baseConfigurationReference = 8D9BA6A30CA49498A02A6B234BE553FB /* AMapNavi-NO-IDFA.release.xcconfig */; buildSettings = { ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; @@ -11154,35 +11146,9 @@ }; name = Release; }; - 4A5494B55942D6BABFDC3B6CDC3D8DDC /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 81FFAAE514B693FE02A029AF4E644094 /* Pods-OrderScheduling.release.xcconfig */; - buildSettings = { - ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO; - CLANG_ENABLE_OBJC_WEAK = NO; - "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - DEVELOPMENT_TEAM = W4SG324NS4; - "EXCLUDED_ARCHS[sdk=iphonesimulator*]" = arm64; - IPHONEOS_DEPLOYMENT_TARGET = 13.0; - MACH_O_TYPE = staticlib; - MODULEMAP_FILE = "Target Support Files/Pods-OrderScheduling/Pods-OrderScheduling.modulemap"; - OTHER_LDFLAGS = ""; - OTHER_LIBTOOLFLAGS = ""; - PODS_ROOT = "$(SRCROOT)"; - PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}"; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) RELEASE"; - TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; - }; - name = Release; - }; 4BEBBC249728A8B650356245E4D06440 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 352B898D9BC4572ADD2419D306C8A932 /* ESTabBarController-swift.release.xcconfig */; + baseConfigurationReference = B28544516F9DCC5D5847C47B89F78FA2 /* ESTabBarController-swift.release.xcconfig */; buildSettings = { "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; @@ -11207,9 +11173,33 @@ }; name = Release; }; + 4CC525C242059F4A3430F9AFF805AAE2 /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = AA0A65EC7B037CEBA8B5D406D2D4DEA7 /* Pods-OrderScheduling.debug.xcconfig */; + buildSettings = { + ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO; + CLANG_ENABLE_OBJC_WEAK = NO; + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + DEVELOPMENT_TEAM = W4SG324NS4; + "EXCLUDED_ARCHS[sdk=iphonesimulator*]" = arm64; + IPHONEOS_DEPLOYMENT_TARGET = 13.0; + MACH_O_TYPE = staticlib; + MODULEMAP_FILE = "Target Support Files/Pods-OrderScheduling/Pods-OrderScheduling.modulemap"; + OTHER_LDFLAGS = ""; + OTHER_LIBTOOLFLAGS = ""; + PODS_ROOT = "$(SRCROOT)"; + PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}"; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + TARGETED_DEVICE_FAMILY = "1,2"; + }; + name = Debug; + }; 4CF76FC539B56458805962023BA6E490 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 58A1A700EB27EEE36BA39EA1A08FA43F /* DDZFPlayerKit_Private.debug.xcconfig */; + baseConfigurationReference = C607891B0BC82BA5A24B7D97B06048F5 /* DDZFPlayerKit_Private.debug.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -11236,7 +11226,7 @@ }; 4D70571EBB2A5ADDB6D08E86FCEA1D56 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = AFFA01A502D57FF43D56073BBFE28AEA /* DDAutoUIKit_Private.release.xcconfig */; + baseConfigurationReference = F625452479BE8DD7819DD032EBFE333F /* DDAutoUIKit_Private.release.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -11264,7 +11254,7 @@ }; 50B6850C2A42BD18CE8F884CDAE761E0 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 03200ADA6EA50E4004D2BD7F4901E591 /* BRPickerView.release.xcconfig */; + baseConfigurationReference = BCCC2AA9FC6F26EB4A71C93D76CC2FB7 /* BRPickerView.release.xcconfig */; buildSettings = { "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; @@ -11291,7 +11281,7 @@ }; 51D20D1EB1E2372322A459D47077BFD1 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = C9FD7438E14B5EF0B138CAB170FF9833 /* JXCategoryView.release.xcconfig */; + baseConfigurationReference = 59E8D33B939E8C3C48C63E7D53976129 /* JXCategoryView.release.xcconfig */; buildSettings = { "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; @@ -11316,9 +11306,64 @@ }; name = Release; }; + 53478911F27964B8AAEB5C8B2BD83B1F /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = F9AA0992507E3F69477B65B8AE1D4D1E /* DDAudioPlayerKit_Private.release.xcconfig */; + buildSettings = { + CLANG_ENABLE_OBJC_WEAK = NO; + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + DEVELOPMENT_TEAM = W4SG324NS4; + "EXCLUDED_ARCHS[sdk=iphonesimulator*]" = arm64; + GCC_PREFIX_HEADER = "Target Support Files/DDAudioPlayerKit_Private/DDAudioPlayerKit_Private-prefix.pch"; + IPHONEOS_DEPLOYMENT_TARGET = 11.0; + MODULEMAP_FILE = Headers/Public/DDAudioPlayerKit_Private/DDAudioPlayerKit_Private.modulemap; + OTHER_LDFLAGS = ""; + OTHER_LIBTOOLFLAGS = ""; + PRIVATE_HEADERS_FOLDER_PATH = ""; + PRODUCT_MODULE_NAME = DDAudioPlayerKit_Private; + PRODUCT_NAME = DDAudioPlayerKit_Private; + PUBLIC_HEADERS_FOLDER_PATH = ""; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) RELEASE"; + SWIFT_VERSION = 5.0; + TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; + }; + name = Release; + }; + 55603F16E4C6AF04A3E3C76C07C03C2C /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = F7504D91F1FE354F884211F03513A3E9 /* Kingfisher.debug.xcconfig */; + buildSettings = { + CLANG_ENABLE_OBJC_WEAK = NO; + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + DEVELOPMENT_TEAM = W4SG324NS4; + "EXCLUDED_ARCHS[sdk=iphonesimulator*]" = arm64; + GCC_PREFIX_HEADER = "Target Support Files/Kingfisher/Kingfisher-prefix.pch"; + IPHONEOS_DEPLOYMENT_TARGET = 12.0; + MODULEMAP_FILE = Headers/Public/Kingfisher/Kingfisher.modulemap; + OTHER_LDFLAGS = ""; + OTHER_LIBTOOLFLAGS = ""; + PRIVATE_HEADERS_FOLDER_PATH = ""; + PRODUCT_MODULE_NAME = Kingfisher; + PRODUCT_NAME = Kingfisher; + PUBLIC_HEADERS_FOLDER_PATH = ""; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; + SWIFT_VERSION = 5.0; + TARGETED_DEVICE_FAMILY = "1,2"; + }; + name = Debug; + }; 55D69FAAE9CCBBAED1163854F0161EDB /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 92DB303F2B0013A14838ED60D91DC8B0 /* AMapFoundation-NO-IDFA.debug.xcconfig */; + baseConfigurationReference = 5E34799D6AD4239261D94D94048D8C2B /* AMapFoundation-NO-IDFA.debug.xcconfig */; buildSettings = { ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; @@ -11336,7 +11381,7 @@ }; 5A6220AD7DA9D160794FE6BF8FD205E8 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = EB0B2A100A5F3F1967BD87E136169C16 /* SwiftEntryKit.release.xcconfig */; + baseConfigurationReference = 325B30380D5C72F7F127B8CAE5EBBD48 /* SwiftEntryKit.release.xcconfig */; buildSettings = { "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; @@ -11361,9 +11406,37 @@ }; name = Release; }; + 603C1C3040A1730E0570E294C5185DCB /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = BFEF8BD2165CCAA0515EF0DD78713060 /* SnapKit.release.xcconfig */; + buildSettings = { + CLANG_ENABLE_OBJC_WEAK = NO; + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + DEVELOPMENT_TEAM = W4SG324NS4; + "EXCLUDED_ARCHS[sdk=iphonesimulator*]" = arm64; + GCC_PREFIX_HEADER = "Target Support Files/SnapKit/SnapKit-prefix.pch"; + IPHONEOS_DEPLOYMENT_TARGET = 10.0; + MODULEMAP_FILE = Headers/Public/SnapKit/SnapKit.modulemap; + OTHER_LDFLAGS = ""; + OTHER_LIBTOOLFLAGS = ""; + PRIVATE_HEADERS_FOLDER_PATH = ""; + PRODUCT_MODULE_NAME = SnapKit; + PRODUCT_NAME = SnapKit; + PUBLIC_HEADERS_FOLDER_PATH = ""; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) RELEASE"; + SWIFT_VERSION = 5.0; + TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; + }; + name = Release; + }; 675A29F53BE9906959F37FEE1EE61428 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 128ACB4150A485CE95C0F43F266666BB /* DDControlsKit_Private.release.xcconfig */; + baseConfigurationReference = 293FD0FF0091E79D0E773974C7E681FE /* DDControlsKit_Private.release.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -11391,7 +11464,7 @@ }; 683CBD3ED2DF10F90BE5DF8A32678829 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 8449E6940351A240AE545DB47B557868 /* AMapNavi-NO-IDFA.debug.xcconfig */; + baseConfigurationReference = BC632D59BD68D7BD58F3764B61DEC6F8 /* AMapNavi-NO-IDFA.debug.xcconfig */; buildSettings = { ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; @@ -11409,7 +11482,7 @@ }; 6BFBACFB4B6A8D5381F77CE5DD2C3D31 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = D6DD9423507166D596B4E73021AF5BD6 /* DDColorKit_Private.debug.xcconfig */; + baseConfigurationReference = B69AB0F60AF75225C9AFD77CE8013E81 /* DDColorKit_Private.debug.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -11436,7 +11509,7 @@ }; 6DF268663C4E2B7742193B9E3287C2D5 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = B96A381DA1D2F1E0BCADC5D8766E4D4D /* RxCocoa.debug.xcconfig */; + baseConfigurationReference = 2F21EBD44736E2BD6DCCB9933EC40AFA /* RxCocoa.debug.xcconfig */; buildSettings = { "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; @@ -11460,35 +11533,9 @@ }; name = Debug; }; - 71AE06821930895A83533A63545FDD70 /* Debug */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = E87FBFCC5258259589B5168F043DD703 /* RxSwift.debug.xcconfig */; - buildSettings = { - "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - DEVELOPMENT_TEAM = W4SG324NS4; - "EXCLUDED_ARCHS[sdk=iphonesimulator*]" = arm64; - GCC_PREFIX_HEADER = "Target Support Files/RxSwift/RxSwift-prefix.pch"; - IPHONEOS_DEPLOYMENT_TARGET = 9.0; - MODULEMAP_FILE = Headers/Public/RxSwift/RxSwift.modulemap; - OTHER_LDFLAGS = ""; - OTHER_LIBTOOLFLAGS = ""; - PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = RxSwift; - PRODUCT_NAME = RxSwift; - PUBLIC_HEADERS_FOLDER_PATH = ""; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - SWIFT_VERSION = 5.1; - TARGETED_DEVICE_FAMILY = "1,2"; - }; - name = Debug; - }; 7A099547C7D8436757FBF497CE9C2EA0 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 0458E057CDD6655E6C6D7E226FB6F350 /* DDBasicControlsKit_Private.debug.xcconfig */; + baseConfigurationReference = 6A8E86C9C7107E1193EC5E5218691467 /* DDBasicControlsKit_Private.debug.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -11515,7 +11562,7 @@ }; 7AC3CBE4A0E0DA0F692F0F5D172F9E0E /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 5A0C72AA6F591124FC0E37D23FB80FF8 /* BRPickerView.debug.xcconfig */; + baseConfigurationReference = 1B13D9C58360C5DA066ED8022AACF6C6 /* BRPickerView.debug.xcconfig */; buildSettings = { "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; @@ -11541,7 +11588,7 @@ }; 7B6677F218B10F7EDFAE251E01DE5D8B /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 60B6CE2694E53F8E6797C72ADE380D11 /* Alamofire.debug.xcconfig */; + baseConfigurationReference = 6B4B2662F8699DDD0D5154B01F80C46F /* Alamofire.debug.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -11568,7 +11615,7 @@ }; 7BD8B011D33F9E7AB4EFDAA942433D92 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 5CF10193D0DFB4B1ADD3E69DAD19ACC7 /* AMapFoundation-NO-IDFA.release.xcconfig */; + baseConfigurationReference = E5E283FCA2ECF0EC15A3059E80203F0E /* AMapFoundation-NO-IDFA.release.xcconfig */; buildSettings = { ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; @@ -11586,9 +11633,9 @@ }; name = Release; }; - 8055136EFDFFF1F1B5DFA08A779634B9 /* Debug */ = { + 8740A1AD983BDDF1B4E22D766AC5361B /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 14FE5A15417756FA1678F7F3BA6FEC04 /* DDMAMapKit_Private.debug.xcconfig */; + baseConfigurationReference = 5266A14A900C54DF06D3B78688812743 /* DDMAMapKit_Private.debug.xcconfig */; buildSettings = { CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/DDMAMapKit_Private"; DEVELOPMENT_TEAM = W4SG324NS4; @@ -11604,50 +11651,31 @@ }; name = Debug; }; - 8234926E947B295B32BBD9ACD32175D8 /* Debug */ = { + 8B0922DFE05FA8A9083B9EDCB342469C /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 0458E057CDD6655E6C6D7E226FB6F350 /* DDBasicControlsKit_Private.debug.xcconfig */; - buildSettings = { - CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/DDBasicControlsKit_Private"; - DEVELOPMENT_TEAM = W4SG324NS4; - "EXCLUDED_ARCHS[sdk=iphonesimulator*]" = arm64; - IBSC_MODULE = DDBasicControlsKit_Private; - INFOPLIST_FILE = "Target Support Files/DDBasicControlsKit_Private/ResourceBundle-DDBaseViewController-DDBasicControlsKit_Private-Info.plist"; - IPHONEOS_DEPLOYMENT_TARGET = 11.0; - PRODUCT_NAME = DDBaseViewController; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - TARGETED_DEVICE_FAMILY = "1,2"; - WRAPPER_EXTENSION = bundle; - }; - name = Debug; - }; - 8969C2A6C1E8FD1CB7ADD4AADA64BCF7 /* Debug */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = B27102A45E02D9AB5CC736B94D45141B /* Kingfisher.debug.xcconfig */; + baseConfigurationReference = 81FFAAE514B693FE02A029AF4E644094 /* Pods-OrderScheduling.release.xcconfig */; buildSettings = { + ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO; CLANG_ENABLE_OBJC_WEAK = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; DEVELOPMENT_TEAM = W4SG324NS4; "EXCLUDED_ARCHS[sdk=iphonesimulator*]" = arm64; - GCC_PREFIX_HEADER = "Target Support Files/Kingfisher/Kingfisher-prefix.pch"; - IPHONEOS_DEPLOYMENT_TARGET = 12.0; - MODULEMAP_FILE = Headers/Public/Kingfisher/Kingfisher.modulemap; + IPHONEOS_DEPLOYMENT_TARGET = 13.0; + MACH_O_TYPE = staticlib; + MODULEMAP_FILE = "Target Support Files/Pods-OrderScheduling/Pods-OrderScheduling.modulemap"; OTHER_LDFLAGS = ""; OTHER_LIBTOOLFLAGS = ""; - PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = Kingfisher; - PRODUCT_NAME = Kingfisher; - PUBLIC_HEADERS_FOLDER_PATH = ""; + PODS_ROOT = "$(SRCROOT)"; + PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}"; SDKROOT = iphoneos; SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - SWIFT_VERSION = 5.0; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) RELEASE"; TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; }; - name = Debug; + name = Release; }; 8DE5143C03248BB6CD542DE3963D6F3A /* Debug */ = { isa = XCBuildConfiguration; @@ -11717,7 +11745,7 @@ }; 8FD1259F570D3832041DE48EDDA60A88 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 8AF18BD83957F349D32EAFF167D6B2B9 /* RxCocoa.release.xcconfig */; + baseConfigurationReference = 036910A977C6625D5FEE274DC2763DA2 /* RxCocoa.release.xcconfig */; buildSettings = { "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; @@ -11742,9 +11770,36 @@ }; name = Release; }; + 97B40457B39B75FBB9DF17DAFB495712 /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 0C1779725409CB7336CC76B51231DC13 /* SnapKit.debug.xcconfig */; + buildSettings = { + CLANG_ENABLE_OBJC_WEAK = NO; + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + DEVELOPMENT_TEAM = W4SG324NS4; + "EXCLUDED_ARCHS[sdk=iphonesimulator*]" = arm64; + GCC_PREFIX_HEADER = "Target Support Files/SnapKit/SnapKit-prefix.pch"; + IPHONEOS_DEPLOYMENT_TARGET = 10.0; + MODULEMAP_FILE = Headers/Public/SnapKit/SnapKit.modulemap; + OTHER_LDFLAGS = ""; + OTHER_LIBTOOLFLAGS = ""; + PRIVATE_HEADERS_FOLDER_PATH = ""; + PRODUCT_MODULE_NAME = SnapKit; + PRODUCT_NAME = SnapKit; + PUBLIC_HEADERS_FOLDER_PATH = ""; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; + SWIFT_VERSION = 5.0; + TARGETED_DEVICE_FAMILY = "1,2"; + }; + name = Debug; + }; 989A9BF9FB4C9FDBBADFD71F94C3D532 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 648AE9D3BC08998FF18DA747D82EF4F1 /* DDZFPlayerKit_Private.release.xcconfig */; + baseConfigurationReference = 9DB5D296ED80B51D91DB41F8FEB08F05 /* DDZFPlayerKit_Private.release.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -11770,32 +11825,6 @@ }; name = Release; }; - 9B51521858A893F715506F1C96B1C6C1 /* Debug */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = B965426384B8DEACB5528933E80EF232 /* RxRelay.debug.xcconfig */; - buildSettings = { - "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - DEVELOPMENT_TEAM = W4SG324NS4; - "EXCLUDED_ARCHS[sdk=iphonesimulator*]" = arm64; - GCC_PREFIX_HEADER = "Target Support Files/RxRelay/RxRelay-prefix.pch"; - IPHONEOS_DEPLOYMENT_TARGET = 9.0; - MODULEMAP_FILE = Headers/Public/RxRelay/RxRelay.modulemap; - OTHER_LDFLAGS = ""; - OTHER_LIBTOOLFLAGS = ""; - PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = RxRelay; - PRODUCT_NAME = RxRelay; - PUBLIC_HEADERS_FOLDER_PATH = ""; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - SWIFT_VERSION = 5.1; - TARGETED_DEVICE_FAMILY = "1,2"; - }; - name = Debug; - }; 9E406C6AAF85E580207CD97B0044DEAB /* Release */ = { isa = XCBuildConfiguration; buildSettings = { @@ -11860,7 +11889,7 @@ }; 9F81E90A1C804D6307404275E44537C0 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 35794E220098A63DB0593ACF4BFF7120 /* DDWebImageKit_Private.debug.xcconfig */; + baseConfigurationReference = 7916E7EBFC2EEFFE0004593327077C82 /* DDWebImageKit_Private.debug.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -11887,7 +11916,7 @@ }; 9FAD38770C19858733CE1B6D12FC951C /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = D5974C58854A55BDDB2637A6A24AD08E /* CocoaDebug.release.xcconfig */; + baseConfigurationReference = D9FE3252CF8E8E98B9AB675FEF0AE538 /* CocoaDebug.release.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -11915,7 +11944,7 @@ }; A37C605D5D741F2696E6D94AB23724DD /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 840DFDD78A4294A778E97CEE52A3647F /* IQKeyboardManagerSwift.debug.xcconfig */; + baseConfigurationReference = 356ABE7F25D61387B8A46B5A3317D50C /* IQKeyboardManagerSwift.debug.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -11940,9 +11969,35 @@ }; name = Debug; }; - AA4EC4986603E058FD019CC235727E8D /* Debug */ = { + B1A5C272537893BF94428BD58A5B2ABA /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 3582E080BDF893D920DB67A390787C11 /* DDCategoryKit_Private.debug.xcconfig */; + baseConfigurationReference = 4304C25A731969DAE0A4CB5219CF83DD /* RxSwift.debug.xcconfig */; + buildSettings = { + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + DEVELOPMENT_TEAM = W4SG324NS4; + "EXCLUDED_ARCHS[sdk=iphonesimulator*]" = arm64; + GCC_PREFIX_HEADER = "Target Support Files/RxSwift/RxSwift-prefix.pch"; + IPHONEOS_DEPLOYMENT_TARGET = 9.0; + MODULEMAP_FILE = Headers/Public/RxSwift/RxSwift.modulemap; + OTHER_LDFLAGS = ""; + OTHER_LIBTOOLFLAGS = ""; + PRIVATE_HEADERS_FOLDER_PATH = ""; + PRODUCT_MODULE_NAME = RxSwift; + PRODUCT_NAME = RxSwift; + PUBLIC_HEADERS_FOLDER_PATH = ""; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; + SWIFT_VERSION = 5.1; + TARGETED_DEVICE_FAMILY = "1,2"; + }; + name = Debug; + }; + B60D947F776B84D9F5B954C1114AEAAF /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = B4905836302BC9C526F79E6E44A38E04 /* DDLogKit_Private.release.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -11950,26 +12005,27 @@ "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; DEVELOPMENT_TEAM = W4SG324NS4; "EXCLUDED_ARCHS[sdk=iphonesimulator*]" = arm64; - GCC_PREFIX_HEADER = "Target Support Files/DDCategoryKit_Private/DDCategoryKit_Private-prefix.pch"; + GCC_PREFIX_HEADER = "Target Support Files/DDLogKit_Private/DDLogKit_Private-prefix.pch"; IPHONEOS_DEPLOYMENT_TARGET = 11.0; - MODULEMAP_FILE = Headers/Public/DDCategoryKit_Private/DDCategoryKit_Private.modulemap; + MODULEMAP_FILE = Headers/Public/DDLogKit_Private/DDLogKit_Private.modulemap; OTHER_LDFLAGS = ""; OTHER_LIBTOOLFLAGS = ""; PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = DDCategoryKit_Private; - PRODUCT_NAME = DDCategoryKit_Private; + PRODUCT_MODULE_NAME = DDLogKit_Private; + PRODUCT_NAME = DDLogKit_Private; PUBLIC_HEADERS_FOLDER_PATH = ""; SDKROOT = iphoneos; SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) RELEASE"; SWIFT_VERSION = 5.0; TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; }; - name = Debug; + name = Release; }; B814FB2831509A875F5991D19F12DF16 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 674D266D176B13FE58908CCC7525D4CC /* AMapSearch-NO-IDFA.debug.xcconfig */; + baseConfigurationReference = 5C327F9F354ECAD3D31CE69C973C70BA /* AMapSearch-NO-IDFA.debug.xcconfig */; buildSettings = { ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; @@ -11985,37 +12041,9 @@ }; name = Debug; }; - BA54A5BD2ECAA426E6CE783033929A5A /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = FC383CCE2A376E6F5189147162C54F70 /* DDCategoryKit_Private.release.xcconfig */; - buildSettings = { - CLANG_ENABLE_OBJC_WEAK = NO; - "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - DEVELOPMENT_TEAM = W4SG324NS4; - "EXCLUDED_ARCHS[sdk=iphonesimulator*]" = arm64; - GCC_PREFIX_HEADER = "Target Support Files/DDCategoryKit_Private/DDCategoryKit_Private-prefix.pch"; - IPHONEOS_DEPLOYMENT_TARGET = 11.0; - MODULEMAP_FILE = Headers/Public/DDCategoryKit_Private/DDCategoryKit_Private.modulemap; - OTHER_LDFLAGS = ""; - OTHER_LIBTOOLFLAGS = ""; - PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = DDCategoryKit_Private; - PRODUCT_NAME = DDCategoryKit_Private; - PUBLIC_HEADERS_FOLDER_PATH = ""; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) RELEASE"; - SWIFT_VERSION = 5.0; - TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; - }; - name = Release; - }; BB08C4B539660DD738ECC8A0F7F361C1 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 9B0D3706EBC13833D2ADECC39B85676C /* DDToastKit_Private.release.xcconfig */; + baseConfigurationReference = 39D12C5D8B812324E1C4FEAD076C9E31 /* DDToastKit_Private.release.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -12043,7 +12071,7 @@ }; C6210F5502E378DCC269A81023F69818 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 4BADEE04A25BB04855AF4D9C4C54C695 /* DDNetworkingOfAlamofireKit_Private.release.xcconfig */; + baseConfigurationReference = 48011C5CE9D9ACF014FEA5B6761F88E6 /* DDNetworkingOfAlamofireKit_Private.release.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -12069,29 +12097,28 @@ }; name = Release; }; - C97EE76C53083D944F19D8BBFAB585C5 /* Release */ = { + CA463F6992837E8014250B04B3C017C7 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = AC27999823332C7DE3136AD43CE4056B /* SnapKit.release.xcconfig */; + baseConfigurationReference = E1D923FE2C62FA9C9EA0908615CB317F /* RxSwift.release.xcconfig */; buildSettings = { - CLANG_ENABLE_OBJC_WEAK = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; DEVELOPMENT_TEAM = W4SG324NS4; "EXCLUDED_ARCHS[sdk=iphonesimulator*]" = arm64; - GCC_PREFIX_HEADER = "Target Support Files/SnapKit/SnapKit-prefix.pch"; - IPHONEOS_DEPLOYMENT_TARGET = 10.0; - MODULEMAP_FILE = Headers/Public/SnapKit/SnapKit.modulemap; + GCC_PREFIX_HEADER = "Target Support Files/RxSwift/RxSwift-prefix.pch"; + IPHONEOS_DEPLOYMENT_TARGET = 9.0; + MODULEMAP_FILE = Headers/Public/RxSwift/RxSwift.modulemap; OTHER_LDFLAGS = ""; OTHER_LIBTOOLFLAGS = ""; PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = SnapKit; - PRODUCT_NAME = SnapKit; + PRODUCT_MODULE_NAME = RxSwift; + PRODUCT_NAME = RxSwift; PUBLIC_HEADERS_FOLDER_PATH = ""; SDKROOT = iphoneos; SKIP_INSTALL = YES; SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) RELEASE"; - SWIFT_VERSION = 5.0; + SWIFT_VERSION = 5.1; TARGETED_DEVICE_FAMILY = "1,2"; VALIDATE_PRODUCT = YES; }; @@ -12099,7 +12126,7 @@ }; CE54F30C8AC3B30DE83C021DAD11FC16 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 577A2A90916A731D91471FD6A7C07025 /* DDNetworkingOfAlamofireKit_Private.debug.xcconfig */; + baseConfigurationReference = 2DFD157A69FA887263CCFBECF788059E /* DDNetworkingOfAlamofireKit_Private.debug.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -12124,9 +12151,111 @@ }; name = Debug; }; + D034A9C5DAB68DCE90EA198100BA48BD /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = B7FA87BA5AD0A823A011F98A5BA4C2A2 /* RxRelay.release.xcconfig */; + buildSettings = { + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + DEVELOPMENT_TEAM = W4SG324NS4; + "EXCLUDED_ARCHS[sdk=iphonesimulator*]" = arm64; + GCC_PREFIX_HEADER = "Target Support Files/RxRelay/RxRelay-prefix.pch"; + IPHONEOS_DEPLOYMENT_TARGET = 9.0; + MODULEMAP_FILE = Headers/Public/RxRelay/RxRelay.modulemap; + OTHER_LDFLAGS = ""; + OTHER_LIBTOOLFLAGS = ""; + PRIVATE_HEADERS_FOLDER_PATH = ""; + PRODUCT_MODULE_NAME = RxRelay; + PRODUCT_NAME = RxRelay; + PUBLIC_HEADERS_FOLDER_PATH = ""; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) RELEASE"; + SWIFT_VERSION = 5.1; + TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; + }; + name = Release; + }; + D160D9F5D83B8D3EDD6D1856D4FAD645 /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = F19B2B925BFFA8AE3E6612BC2138BD9A /* DDMAMapKit_Private.release.xcconfig */; + buildSettings = { + CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/DDMAMapKit_Private"; + DEVELOPMENT_TEAM = W4SG324NS4; + "EXCLUDED_ARCHS[sdk=iphonesimulator*]" = arm64; + IBSC_MODULE = DDMAMapKit_Private; + INFOPLIST_FILE = "Target Support Files/DDMAMapKit_Private/ResourceBundle-DDMAMapKit_Private-DDMAMapKit_Private-Info.plist"; + IPHONEOS_DEPLOYMENT_TARGET = 11.0; + PRODUCT_NAME = DDMAMapKit_Private; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) RELEASE"; + TARGETED_DEVICE_FAMILY = "1,2"; + WRAPPER_EXTENSION = bundle; + }; + name = Release; + }; + D5469563CD8D279A4ACE79512FFE8C06 /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = D7BA7283E37F5D7B60EC55AA8AEA5B0E /* Kingfisher.release.xcconfig */; + buildSettings = { + CLANG_ENABLE_OBJC_WEAK = NO; + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + DEVELOPMENT_TEAM = W4SG324NS4; + "EXCLUDED_ARCHS[sdk=iphonesimulator*]" = arm64; + GCC_PREFIX_HEADER = "Target Support Files/Kingfisher/Kingfisher-prefix.pch"; + IPHONEOS_DEPLOYMENT_TARGET = 12.0; + MODULEMAP_FILE = Headers/Public/Kingfisher/Kingfisher.modulemap; + OTHER_LDFLAGS = ""; + OTHER_LIBTOOLFLAGS = ""; + PRIVATE_HEADERS_FOLDER_PATH = ""; + PRODUCT_MODULE_NAME = Kingfisher; + PRODUCT_NAME = Kingfisher; + PUBLIC_HEADERS_FOLDER_PATH = ""; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) RELEASE"; + SWIFT_VERSION = 5.0; + TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; + }; + name = Release; + }; + DB1E3A452A55BE661C57318B2F3B6B9C /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 215CC79531E391F07DE015AA33CFB2E8 /* DDCategoryKit_Private.release.xcconfig */; + buildSettings = { + CLANG_ENABLE_OBJC_WEAK = NO; + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + DEVELOPMENT_TEAM = W4SG324NS4; + "EXCLUDED_ARCHS[sdk=iphonesimulator*]" = arm64; + GCC_PREFIX_HEADER = "Target Support Files/DDCategoryKit_Private/DDCategoryKit_Private-prefix.pch"; + IPHONEOS_DEPLOYMENT_TARGET = 11.0; + MODULEMAP_FILE = Headers/Public/DDCategoryKit_Private/DDCategoryKit_Private.modulemap; + OTHER_LDFLAGS = ""; + OTHER_LIBTOOLFLAGS = ""; + PRIVATE_HEADERS_FOLDER_PATH = ""; + PRODUCT_MODULE_NAME = DDCategoryKit_Private; + PRODUCT_NAME = DDCategoryKit_Private; + PUBLIC_HEADERS_FOLDER_PATH = ""; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) RELEASE"; + SWIFT_VERSION = 5.0; + TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; + }; + name = Release; + }; DBFFC56B728D16C6C272566779546587 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = AFB14CA83302F2818FDEE97F89A6D466 /* SwiftEntryKit.debug.xcconfig */; + baseConfigurationReference = C86E3F1BE15F9CC036B382A36B709505 /* SwiftEntryKit.debug.xcconfig */; buildSettings = { "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; @@ -12152,7 +12281,7 @@ }; E18EABAD3559E7870ACB23A6E827F568 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = C836AE79C271FF8A611D963CED342AC3 /* DDAutoUIKit_Private.debug.xcconfig */; + baseConfigurationReference = 885FFAA1764402617037B5AA367DE979 /* DDAutoUIKit_Private.debug.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -12179,7 +12308,7 @@ }; E1C65DE8F4F23842AA0F405DC5C69B40 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = D381B861BA151A9E99E7710CEADE9E87 /* DDProgressHUDKit_Private.debug.xcconfig */; + baseConfigurationReference = 8F871014922D06C041EC71AEA9699782 /* DDProgressHUDKit_Private.debug.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -12206,7 +12335,7 @@ }; E3BA6719677585798F31ED882B465DD5 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 5236D63B6005A96246ADC389EB51410B /* ZLPhotoBrowser.release.xcconfig */; + baseConfigurationReference = 196CEE3BC2C8C654CC23EB302CC90FF4 /* ZLPhotoBrowser.release.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -12234,7 +12363,7 @@ }; E8CC80B981BA9D610A822A6585C07877 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 5249DC3F05251C5C3821291058A36CE3 /* JPush.debug.xcconfig */; + baseConfigurationReference = 52764AB3C28A4EE27E126C7FC5F6CAA7 /* JPush.debug.xcconfig */; buildSettings = { ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; @@ -12252,7 +12381,7 @@ }; E91B4021938A8B461D0614ACC1713BC8 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 6C4E56EE7C5534AAF96853538F7E417A /* JPushExtension.debug.xcconfig */; + baseConfigurationReference = 201001FE2E7F75470A9C5261EB1737A2 /* JPushExtension.debug.xcconfig */; buildSettings = { ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; @@ -12269,6 +12398,24 @@ }; name = Debug; }; + EA3FBB56F24FD6223E2B9A39F84A8BE0 /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 6A8E86C9C7107E1193EC5E5218691467 /* DDBasicControlsKit_Private.debug.xcconfig */; + buildSettings = { + CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/DDBasicControlsKit_Private"; + DEVELOPMENT_TEAM = W4SG324NS4; + "EXCLUDED_ARCHS[sdk=iphonesimulator*]" = arm64; + IBSC_MODULE = DDBasicControlsKit_Private; + INFOPLIST_FILE = "Target Support Files/DDBasicControlsKit_Private/ResourceBundle-DDBaseViewController-DDBasicControlsKit_Private-Info.plist"; + IPHONEOS_DEPLOYMENT_TARGET = 11.0; + PRODUCT_NAME = DDBaseViewController; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + TARGETED_DEVICE_FAMILY = "1,2"; + WRAPPER_EXTENSION = bundle; + }; + name = Debug; + }; EA6F596A805B5304331836E552C799FC /* Debug */ = { isa = XCBuildConfiguration; baseConfigurationReference = 692452B23E23868F4835C510A3A76925 /* Pods-OrderSchedulingNotificationService.debug.xcconfig */; @@ -12294,7 +12441,7 @@ }; EAC5735B08F77CE3FF9950C3D1D625C2 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 5A972C916FD53211BD061BA2EF0D261F /* JCore.release.xcconfig */; + baseConfigurationReference = C4B150163A03FA8CDC2BC2AAD859E1A0 /* JCore.release.xcconfig */; buildSettings = { ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; @@ -12312,17 +12459,17 @@ }; name = Release; }; - EDE6FF2FA5C60E15489B015519F76543 /* Release */ = { + ED275604D0AEA0706BA1792F663A2118 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 111578E0DE0A14CA987C2FAE76C700B4 /* DDMAMapKit_Private.release.xcconfig */; + baseConfigurationReference = 19C8749E52978158169E1C3BF25DDB52 /* DDBasicControlsKit_Private.release.xcconfig */; buildSettings = { - CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/DDMAMapKit_Private"; + CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/DDBasicControlsKit_Private"; DEVELOPMENT_TEAM = W4SG324NS4; "EXCLUDED_ARCHS[sdk=iphonesimulator*]" = arm64; - IBSC_MODULE = DDMAMapKit_Private; - INFOPLIST_FILE = "Target Support Files/DDMAMapKit_Private/ResourceBundle-DDMAMapKit_Private-DDMAMapKit_Private-Info.plist"; + IBSC_MODULE = DDBasicControlsKit_Private; + INFOPLIST_FILE = "Target Support Files/DDBasicControlsKit_Private/ResourceBundle-DDBaseViewController-DDBasicControlsKit_Private-Info.plist"; IPHONEOS_DEPLOYMENT_TARGET = 11.0; - PRODUCT_NAME = DDMAMapKit_Private; + PRODUCT_NAME = DDBaseViewController; SDKROOT = iphoneos; SKIP_INSTALL = YES; SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) RELEASE"; @@ -12333,7 +12480,7 @@ }; F134BFC715F0B1147811F69747426F2B /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 6D6E74D20FFAD62578494E1A63B033AB /* MJRefresh.release.xcconfig */; + baseConfigurationReference = 8B441F34B32C0868D63E8CC442DAB6E5 /* MJRefresh.release.xcconfig */; buildSettings = { "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; @@ -12360,7 +12507,7 @@ }; F1522A7504B2EA021FC6E472D6BD2474 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 9D58D356148C79B09B8D016260211D35 /* DDToastKit_Private.debug.xcconfig */; + baseConfigurationReference = FD55F60859DCBCCD3361042F6A9346C3 /* DDToastKit_Private.debug.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -12387,7 +12534,7 @@ }; F2A883F25DE85886520AA99C99672CA8 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 69B43237B735ED3A8E3ACA8B1412DEB2 /* Alamofire.release.xcconfig */; + baseConfigurationReference = 4224EC3201E37EC5D69A4F316878EEFB /* Alamofire.release.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -12415,7 +12562,7 @@ }; F5A7CE690094EBACBEBBFE889EE7C5BF /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 7013D2B7252168A4EE01B52BCD4432D1 /* JCore.debug.xcconfig */; + baseConfigurationReference = 5FB38D3AAE62D1D410AB9ABCA4265157 /* JCore.debug.xcconfig */; buildSettings = { ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; @@ -12431,36 +12578,35 @@ }; name = Debug; }; - F86585863A92E981DC5EB529CF2E2748 /* Release */ = { + F6E459DD6987CEB3D588FF7678FA6646 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = CC80F91D491ADBBE5E65009E499D4637 /* RxSwift.release.xcconfig */; + baseConfigurationReference = B340B765E4ED3A42D01B7117C9996B7B /* RxRelay.debug.xcconfig */; buildSettings = { "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; DEVELOPMENT_TEAM = W4SG324NS4; "EXCLUDED_ARCHS[sdk=iphonesimulator*]" = arm64; - GCC_PREFIX_HEADER = "Target Support Files/RxSwift/RxSwift-prefix.pch"; + GCC_PREFIX_HEADER = "Target Support Files/RxRelay/RxRelay-prefix.pch"; IPHONEOS_DEPLOYMENT_TARGET = 9.0; - MODULEMAP_FILE = Headers/Public/RxSwift/RxSwift.modulemap; + MODULEMAP_FILE = Headers/Public/RxRelay/RxRelay.modulemap; OTHER_LDFLAGS = ""; OTHER_LIBTOOLFLAGS = ""; PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = RxSwift; - PRODUCT_NAME = RxSwift; + PRODUCT_MODULE_NAME = RxRelay; + PRODUCT_NAME = RxRelay; PUBLIC_HEADERS_FOLDER_PATH = ""; SDKROOT = iphoneos; SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) RELEASE"; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; SWIFT_VERSION = 5.1; TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; }; - name = Release; + name = Debug; }; F8702F41AD6DB674E512911A326CE72B /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 111578E0DE0A14CA987C2FAE76C700B4 /* DDMAMapKit_Private.release.xcconfig */; + baseConfigurationReference = F19B2B925BFFA8AE3E6612BC2138BD9A /* DDMAMapKit_Private.release.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -12488,7 +12634,7 @@ }; FA1FAE65A52E3B1F30DF809E59737B44 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 2233D37B166CDE1A9EBF4D7BE151D4F4 /* AMapTrack-NO-IDFA.debug.xcconfig */; + baseConfigurationReference = B2BE171F72D6DB076BBFF75B97DFAB18 /* AMapTrack-NO-IDFA.debug.xcconfig */; buildSettings = { ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; @@ -12504,9 +12650,36 @@ }; name = Debug; }; + FB5B8EC117F9407ED38CFBF222DA7E6D /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 08BAC2C5C13F5B859D3365FFF02D0891 /* DDAudioPlayerKit_Private.debug.xcconfig */; + buildSettings = { + CLANG_ENABLE_OBJC_WEAK = NO; + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + DEVELOPMENT_TEAM = W4SG324NS4; + "EXCLUDED_ARCHS[sdk=iphonesimulator*]" = arm64; + GCC_PREFIX_HEADER = "Target Support Files/DDAudioPlayerKit_Private/DDAudioPlayerKit_Private-prefix.pch"; + IPHONEOS_DEPLOYMENT_TARGET = 11.0; + MODULEMAP_FILE = Headers/Public/DDAudioPlayerKit_Private/DDAudioPlayerKit_Private.modulemap; + OTHER_LDFLAGS = ""; + OTHER_LIBTOOLFLAGS = ""; + PRIVATE_HEADERS_FOLDER_PATH = ""; + PRODUCT_MODULE_NAME = DDAudioPlayerKit_Private; + PRODUCT_NAME = DDAudioPlayerKit_Private; + PUBLIC_HEADERS_FOLDER_PATH = ""; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; + SWIFT_VERSION = 5.0; + TARGETED_DEVICE_FAMILY = "1,2"; + }; + name = Debug; + }; FD836E3A6C6D579666CD9DF57C366625 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 002AACEA12D9C290AEC10A87CEB9C423 /* AMapLocation-NO-IDFA.debug.xcconfig */; + baseConfigurationReference = 3BA278E183408DF0809B958743E87189 /* AMapLocation-NO-IDFA.debug.xcconfig */; buildSettings = { ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; @@ -12543,6 +12716,24 @@ defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; + 19060FAE1B002E21CB72D6995BF545C5 /* Build configuration list for PBXNativeTarget "Pods-OrderScheduling" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 4CC525C242059F4A3430F9AFF805AAE2 /* Debug */, + 8B0922DFE05FA8A9083B9EDCB342469C /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + 210B829A53D6237B3B0C2ABEE261B2F3 /* Build configuration list for PBXNativeTarget "DDAudioPlayerKit_Private" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + FB5B8EC117F9407ED38CFBF222DA7E6D /* Debug */, + 53478911F27964B8AAEB5C8B2BD83B1F /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; 31E093651ABA8F1B9C494B229E1A4868 /* Build configuration list for PBXNativeTarget "CocoaDebug" */ = { isa = XCConfigurationList; buildConfigurations = ( @@ -12552,15 +12743,6 @@ defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 338C3A9AD58ED98F3A9D9FCA9D2ABE60 /* Build configuration list for PBXNativeTarget "SnapKit" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - 3E65CD72FC20A30D94BBD8A24FDDFD11 /* Debug */, - C97EE76C53083D944F19D8BBFAB585C5 /* Release */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; - }; 367CB532D67455A26221203458C84AA2 /* Build configuration list for PBXNativeTarget "DDNetworkingOfAlamofireKit_Private" */ = { isa = XCConfigurationList; buildConfigurations = ( @@ -12597,6 +12779,24 @@ defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; + 53DC6BB420A39B891F56EFC5973D7464 /* Build configuration list for PBXNativeTarget "DDMAMapKit_Private-DDMAMapKit_Private" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 8740A1AD983BDDF1B4E22D766AC5361B /* Debug */, + D160D9F5D83B8D3EDD6D1856D4FAD645 /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + 5848F59CA3DDA46F4FB217B5B6C99666 /* Build configuration list for PBXNativeTarget "RxSwift" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + B1A5C272537893BF94428BD58A5B2ABA /* Debug */, + CA463F6992837E8014250B04B3C017C7 /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; 59907393922477860416EAC73DB2F259 /* Build configuration list for PBXNativeTarget "IQKeyboardManagerSwift" */ = { isa = XCConfigurationList; buildConfigurations = ( @@ -12651,15 +12851,6 @@ defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 6967B0085C2E50A69AA1A26E611E93AA /* Build configuration list for PBXNativeTarget "RxSwift" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - 71AE06821930895A83533A63545FDD70 /* Debug */, - F86585863A92E981DC5EB529CF2E2748 /* Release */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; - }; 6B6C55EF0E223711B1AA346EA253F97C /* Build configuration list for PBXNativeTarget "DDColorKit_Private" */ = { isa = XCConfigurationList; buildConfigurations = ( @@ -12732,11 +12923,11 @@ defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 89BC2977E5260C795081BD929AF46EF4 /* Build configuration list for PBXNativeTarget "DDLogKit_Private" */ = { + 89A8BB776593B3564187DDF25CE32955 /* Build configuration list for PBXNativeTarget "DDLogKit_Private" */ = { isa = XCConfigurationList; buildConfigurations = ( - 1A0A949EEC5A33B0F42C7C04B8966069 /* Debug */, - 212C25E6510C15E8B851EE2897CF26F4 /* Release */, + 1F7428949022EE44FEA40EE337383E43 /* Debug */, + B60D947F776B84D9F5B954C1114AEAAF /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; @@ -12750,6 +12941,24 @@ defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; + 97FD3E953B2E469AD748A43EA1CBD588 /* Build configuration list for PBXNativeTarget "Kingfisher" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 55603F16E4C6AF04A3E3C76C07C03C2C /* Debug */, + D5469563CD8D279A4ACE79512FFE8C06 /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + 98B2AC68ED019261CFEBB4B9C05A2355 /* Build configuration list for PBXNativeTarget "DDCategoryKit_Private" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 24829BA88369299220FE7C36BD47B55F /* Debug */, + DB1E3A452A55BE661C57318B2F3B6B9C /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; A270127F1D1DF4AE696FE16A1A26A208 /* Build configuration list for PBXNativeTarget "DDToastKit_Private" */ = { isa = XCConfigurationList; buildConfigurations = ( @@ -12759,6 +12968,15 @@ defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; + A986A9C3606A2B5B105CD79531642030 /* Build configuration list for PBXNativeTarget "SnapKit" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 97B40457B39B75FBB9DF17DAFB495712 /* Debug */, + 603C1C3040A1730E0570E294C5185DCB /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; AD9CF0130E1F5EB7FF3CA5FA18DECE5F /* Build configuration list for PBXAggregateTarget "JCore" */ = { isa = XCConfigurationList; buildConfigurations = ( @@ -12768,6 +12986,24 @@ defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; + AF1B5985EF5104F864883BD566B4E47D /* Build configuration list for PBXNativeTarget "RxRelay" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + F6E459DD6987CEB3D588FF7678FA6646 /* Debug */, + D034A9C5DAB68DCE90EA198100BA48BD /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + BCD1E485DFBCBF51CEB48E3D307CB0FD /* Build configuration list for PBXNativeTarget "DDBasicControlsKit_Private-DDBaseViewController" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + EA3FBB56F24FD6223E2B9A39F84A8BE0 /* Debug */, + ED275604D0AEA0706BA1792F663A2118 /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; BE0B24036C6802E4BE90B45954E0CD1A /* Build configuration list for PBXNativeTarget "Alamofire" */ = { isa = XCConfigurationList; buildConfigurations = ( @@ -12777,33 +13013,6 @@ defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - C3C80DCA2D53FBE4731868C8A3AEEF9C /* Build configuration list for PBXNativeTarget "DDCategoryKit_Private" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - AA4EC4986603E058FD019CC235727E8D /* Debug */, - BA54A5BD2ECAA426E6CE783033929A5A /* Release */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; - }; - C78849A31D7CDAA4E40143A6F616753C /* Build configuration list for PBXNativeTarget "DDMAMapKit_Private-DDMAMapKit_Private" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - 8055136EFDFFF1F1B5DFA08A779634B9 /* Debug */, - EDE6FF2FA5C60E15489B015519F76543 /* Release */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; - }; - D75A00A98C6BC1E535DDF2B76A919597 /* Build configuration list for PBXNativeTarget "RxRelay" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - 9B51521858A893F715506F1C96B1C6C1 /* Debug */, - 400A7FB2304A6DB7021C0106B1F51166 /* Release */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; - }; D845ED1ECE9290BF1EF3C7FEAC8B3504 /* Build configuration list for PBXNativeTarget "DDProgressHUDKit_Private" */ = { isa = XCConfigurationList; buildConfigurations = ( @@ -12822,15 +13031,6 @@ defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - E5C3D9334161C9697B48713029BA3EDE /* Build configuration list for PBXNativeTarget "DDBasicControlsKit_Private-DDBaseViewController" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - 8234926E947B295B32BBD9ACD32175D8 /* Debug */, - 26A349D5B95D914DD66FAFE3C639507F /* Release */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; - }; E9B6FB79B1079F13978F1B4A855D0566 /* Build configuration list for PBXNativeTarget "DDWebImageKit_Private" */ = { isa = XCConfigurationList; buildConfigurations = ( @@ -12840,15 +13040,6 @@ defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - E9F2AB7ED66008E42AA8A94E6B0FB1C6 /* Build configuration list for PBXNativeTarget "Pods-OrderScheduling" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - 0BD49CB3720B34AE3E1623F8116650C2 /* Debug */, - 4A5494B55942D6BABFDC3B6CDC3D8DDC /* Release */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; - }; ED0AC361091B4671DE76E7719D5EB9EE /* Build configuration list for PBXNativeTarget "SwiftEntryKit" */ = { isa = XCConfigurationList; buildConfigurations = ( @@ -12876,15 +13067,6 @@ defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - F67A6C2C2406253E1B5407B6EA8CA4B3 /* Build configuration list for PBXNativeTarget "Kingfisher" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - 8969C2A6C1E8FD1CB7ADD4AADA64BCF7 /* Debug */, - 1601B0CC6016BF17DD7A35E1B8CBBF5A /* Release */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; - }; FABA871D8A8BB5CAD42D9820F18BBB83 /* Build configuration list for PBXNativeTarget "DDTimerKit_Private" */ = { isa = XCConfigurationList; buildConfigurations = ( diff --git a/Pods/Pods.xcodeproj/xcuserdata/zd.xcuserdatad/xcschemes/DDAudioPlayerKit_Private.xcscheme b/Pods/Pods.xcodeproj/xcuserdata/zd.xcuserdatad/xcschemes/DDAudioPlayerKit_Private.xcscheme new file mode 100644 index 0000000..aa3e46c --- /dev/null +++ b/Pods/Pods.xcodeproj/xcuserdata/zd.xcuserdatad/xcschemes/DDAudioPlayerKit_Private.xcscheme @@ -0,0 +1,58 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/Pods/Pods.xcodeproj/xcuserdata/zd.xcuserdatad/xcschemes/xcschememanagement.plist b/Pods/Pods.xcodeproj/xcuserdata/zd.xcuserdatad/xcschemes/xcschememanagement.plist index 794d77d..f7a5f3d 100644 --- a/Pods/Pods.xcodeproj/xcuserdata/zd.xcuserdatad/xcschemes/xcschememanagement.plist +++ b/Pods/Pods.xcodeproj/xcuserdata/zd.xcuserdatad/xcschemes/xcschememanagement.plist @@ -8,281 +8,206 @@ isShown - orderHint - 2 AMapLocation-NO-IDFA.xcscheme isShown - orderHint - 3 AMapNavi-NO-IDFA.xcscheme isShown - orderHint - 4 AMapSearch-NO-IDFA.xcscheme isShown - orderHint - 5 AMapTrack-NO-IDFA.xcscheme isShown - orderHint - 6 Alamofire.xcscheme isShown - orderHint - 1 BRPickerView.xcscheme isShown - orderHint - 7 CocoaDebug.xcscheme isShown - orderHint - 8 + + DDAudioPlayerKit_Private.xcscheme + + isShown + DDAutoUIKit_Private.xcscheme isShown - orderHint - 9 DDBasicControlsKit_Private-DDBaseViewController.xcscheme isShown - orderHint - 11 DDBasicControlsKit_Private.xcscheme isShown - orderHint - 10 DDCategoryKit_Private.xcscheme isShown - orderHint - 12 DDColorKit_Private.xcscheme isShown - orderHint - 13 DDControlsKit_Private.xcscheme isShown - orderHint - 14 DDFontKit_Private.xcscheme isShown - orderHint - 15 DDLogKit_Private.xcscheme isShown - orderHint - 16 DDMAMapKit_Private-DDMAMapKit_Private.xcscheme isShown - orderHint - 18 DDMAMapKit_Private.xcscheme isShown - orderHint - 17 DDNetworkingOfAlamofireKit_Private.xcscheme isShown - orderHint - 19 DDProgressHUDKit_Private.xcscheme isShown - orderHint - 20 DDTimerKit_Private.xcscheme isShown - orderHint - 21 DDToastKit_Private.xcscheme isShown - orderHint - 22 DDWebImageKit_Private.xcscheme isShown - orderHint - 23 DDZFPlayerKit_Private.xcscheme isShown - orderHint - 24 ESTabBarController-swift.xcscheme isShown - orderHint - 25 IQKeyboardManagerSwift.xcscheme isShown - orderHint - 26 JCore.xcscheme isShown - orderHint - 27 JPush.xcscheme isShown - orderHint - 28 JPushExtension.xcscheme isShown - orderHint - 29 JXCategoryView.xcscheme isShown - orderHint - 30 Kingfisher.xcscheme isShown - orderHint - 31 MJRefresh.xcscheme isShown - orderHint - 32 Pods-OrderScheduling.xcscheme isShown - orderHint - 33 Pods-OrderSchedulingNotificationService.xcscheme isShown - orderHint - 34 RxCocoa.xcscheme isShown - orderHint - 35 RxRelay.xcscheme isShown - orderHint - 36 RxSwift.xcscheme isShown - orderHint - 37 SnapKit.xcscheme isShown - orderHint - 38 SwiftEntryKit.xcscheme isShown - orderHint - 39 ZLPhotoBrowser.xcscheme isShown - orderHint - 40 SuppressBuildableAutocreation diff --git a/Pods/Target Support Files/DDAudioPlayerKit_Private/DDAudioPlayerKit_Private-dummy.m b/Pods/Target Support Files/DDAudioPlayerKit_Private/DDAudioPlayerKit_Private-dummy.m new file mode 100644 index 0000000..a480974 --- /dev/null +++ b/Pods/Target Support Files/DDAudioPlayerKit_Private/DDAudioPlayerKit_Private-dummy.m @@ -0,0 +1,5 @@ +#import +@interface PodsDummy_DDAudioPlayerKit_Private : NSObject +@end +@implementation PodsDummy_DDAudioPlayerKit_Private +@end diff --git a/Pods/Target Support Files/DDAudioPlayerKit_Private/DDAudioPlayerKit_Private-prefix.pch b/Pods/Target Support Files/DDAudioPlayerKit_Private/DDAudioPlayerKit_Private-prefix.pch new file mode 100644 index 0000000..beb2a24 --- /dev/null +++ b/Pods/Target Support Files/DDAudioPlayerKit_Private/DDAudioPlayerKit_Private-prefix.pch @@ -0,0 +1,12 @@ +#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/DDAudioPlayerKit_Private/DDAudioPlayerKit_Private-umbrella.h b/Pods/Target Support Files/DDAudioPlayerKit_Private/DDAudioPlayerKit_Private-umbrella.h new file mode 100644 index 0000000..744cd6b --- /dev/null +++ b/Pods/Target Support Files/DDAudioPlayerKit_Private/DDAudioPlayerKit_Private-umbrella.h @@ -0,0 +1,16 @@ +#ifdef __OBJC__ +#import +#else +#ifndef FOUNDATION_EXPORT +#if defined(__cplusplus) +#define FOUNDATION_EXPORT extern "C" +#else +#define FOUNDATION_EXPORT extern +#endif +#endif +#endif + + +FOUNDATION_EXPORT double DDAudioPlayerKit_PrivateVersionNumber; +FOUNDATION_EXPORT const unsigned char DDAudioPlayerKit_PrivateVersionString[]; + diff --git a/Pods/Target Support Files/DDAudioPlayerKit_Private/DDAudioPlayerKit_Private.debug.xcconfig b/Pods/Target Support Files/DDAudioPlayerKit_Private/DDAudioPlayerKit_Private.debug.xcconfig new file mode 100644 index 0000000..57a60f0 --- /dev/null +++ b/Pods/Target Support Files/DDAudioPlayerKit_Private/DDAudioPlayerKit_Private.debug.xcconfig @@ -0,0 +1,14 @@ +CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO +CONFIGURATION_BUILD_DIR = ${PODS_CONFIGURATION_BUILD_DIR}/DDAudioPlayerKit_Private +EXCLUDED_ARCHS[sdk=iphonesimulator*] = arm64 +GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 +OTHER_SWIFT_FLAGS = $(inherited) -D COCOAPODS -import-underlying-module -Xcc -fmodule-map-file="${SRCROOT}/${MODULEMAP_FILE}" +PODS_BUILD_DIR = ${BUILD_DIR} +PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) +PODS_ROOT = ${SRCROOT} +PODS_TARGET_SRCROOT = ${PODS_ROOT}/DDAudioPlayerKit_Private +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 +VALID_ARCHS = x86_64 armv7 arm64 diff --git a/Pods/Target Support Files/DDAudioPlayerKit_Private/DDAudioPlayerKit_Private.modulemap b/Pods/Target Support Files/DDAudioPlayerKit_Private/DDAudioPlayerKit_Private.modulemap new file mode 100644 index 0000000..e0fecca --- /dev/null +++ b/Pods/Target Support Files/DDAudioPlayerKit_Private/DDAudioPlayerKit_Private.modulemap @@ -0,0 +1,6 @@ +module DDAudioPlayerKit_Private { + umbrella header "DDAudioPlayerKit_Private-umbrella.h" + + export * + module * { export * } +} diff --git a/Pods/Target Support Files/DDAudioPlayerKit_Private/DDAudioPlayerKit_Private.release.xcconfig b/Pods/Target Support Files/DDAudioPlayerKit_Private/DDAudioPlayerKit_Private.release.xcconfig new file mode 100644 index 0000000..57a60f0 --- /dev/null +++ b/Pods/Target Support Files/DDAudioPlayerKit_Private/DDAudioPlayerKit_Private.release.xcconfig @@ -0,0 +1,14 @@ +CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO +CONFIGURATION_BUILD_DIR = ${PODS_CONFIGURATION_BUILD_DIR}/DDAudioPlayerKit_Private +EXCLUDED_ARCHS[sdk=iphonesimulator*] = arm64 +GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 +OTHER_SWIFT_FLAGS = $(inherited) -D COCOAPODS -import-underlying-module -Xcc -fmodule-map-file="${SRCROOT}/${MODULEMAP_FILE}" +PODS_BUILD_DIR = ${BUILD_DIR} +PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) +PODS_ROOT = ${SRCROOT} +PODS_TARGET_SRCROOT = ${PODS_ROOT}/DDAudioPlayerKit_Private +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 +VALID_ARCHS = x86_64 armv7 arm64 diff --git a/Pods/Target Support Files/Pods-OrderScheduling/Pods-OrderScheduling-acknowledgements.markdown b/Pods/Target Support Files/Pods-OrderScheduling/Pods-OrderScheduling-acknowledgements.markdown index 19a50b5..06c9077 100644 --- a/Pods/Target Support Files/Pods-OrderScheduling/Pods-OrderScheduling-acknowledgements.markdown +++ b/Pods/Target Support Files/Pods-OrderScheduling/Pods-OrderScheduling-acknowledgements.markdown @@ -74,6 +74,29 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +## DDAudioPlayerKit_Private + +Copyright (c) 2023 DDIsFriend + +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. + + ## DDAutoUIKit_Private Copyright (c) 2023 DDIsFriend diff --git a/Pods/Target Support Files/Pods-OrderScheduling/Pods-OrderScheduling-acknowledgements.plist b/Pods/Target Support Files/Pods-OrderScheduling/Pods-OrderScheduling-acknowledgements.plist index 3c95781..fb994ae 100644 --- a/Pods/Target Support Files/Pods-OrderScheduling/Pods-OrderScheduling-acknowledgements.plist +++ b/Pods/Target Support Files/Pods-OrderScheduling/Pods-OrderScheduling-acknowledgements.plist @@ -141,6 +141,35 @@ 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 + DDAudioPlayerKit_Private + Type + PSGroupSpecifier + + + FooterText + Copyright (c) 2023 DDIsFriend <DDIsFriend@163.com> + +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 diff --git a/Pods/Target Support Files/Pods-OrderScheduling/Pods-OrderScheduling.debug.xcconfig b/Pods/Target Support Files/Pods-OrderScheduling/Pods-OrderScheduling.debug.xcconfig index 6c9f793..6f2e86d 100644 --- a/Pods/Target Support Files/Pods-OrderScheduling/Pods-OrderScheduling.debug.xcconfig +++ b/Pods/Target Support Files/Pods-OrderScheduling/Pods-OrderScheduling.debug.xcconfig @@ -5,14 +5,14 @@ EXCLUDED_ARCHS[sdk=iphonesimulator*] = arm64 FRAMEWORK_SEARCH_PATHS = $(inherited) "${PODS_ROOT}/AMapFoundation-NO-IDFA" "${PODS_ROOT}/AMapLocation-NO-IDFA" "${PODS_ROOT}/AMapNavi-NO-IDFA" "${PODS_ROOT}/AMapSearch-NO-IDFA" "${PODS_ROOT}/AMapTrack-NO-IDFA" "${PODS_ROOT}/DDZFPlayerKit_Private/DDZFPlayerKit_Private/Classes/ijkplayer" "${PODS_ROOT}/JCore" "${PODS_ROOT}/JPush" GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 HEADER_SEARCH_PATHS = $(inherited) "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/BRPickerView" "${PODS_ROOT}/Headers/Public/CocoaDebug" "${PODS_ROOT}/Headers/Public/DDBasicControlsKit_Private" "${PODS_ROOT}/Headers/Public/DDCategoryKit_Private" "${PODS_ROOT}/Headers/Public/DDLogKit_Private" "${PODS_ROOT}/Headers/Public/DDMAMapKit_Private" "${PODS_ROOT}/Headers/Public/DDProgressHUDKit_Private" "${PODS_ROOT}/Headers/Public/DDTimerKit_Private" "${PODS_ROOT}/Headers/Public/DDWebImageKit_Private" "${PODS_ROOT}/Headers/Public/DDZFPlayerKit_Private" "${PODS_ROOT}/Headers/Public/JXCategoryView" "${PODS_ROOT}/Headers/Public/MJRefresh" "${PODS_ROOT}/Headers/Public/RxCocoa" "${PODS_ROOT}/Headers/Public/ZLPhotoBrowser" "${PODS_XCFRAMEWORKS_BUILD_DIR}/JCore/Headers" "${PODS_XCFRAMEWORKS_BUILD_DIR}/JPush/Headers" -LIBRARY_SEARCH_PATHS = $(inherited) "${DT_TOOLCHAIN_DIR}/usr/lib/swift/${PLATFORM_NAME}" "${PODS_CONFIGURATION_BUILD_DIR}/Alamofire" "${PODS_CONFIGURATION_BUILD_DIR}/BRPickerView" "${PODS_CONFIGURATION_BUILD_DIR}/CocoaDebug" "${PODS_CONFIGURATION_BUILD_DIR}/DDAutoUIKit_Private" "${PODS_CONFIGURATION_BUILD_DIR}/DDBasicControlsKit_Private" "${PODS_CONFIGURATION_BUILD_DIR}/DDCategoryKit_Private" "${PODS_CONFIGURATION_BUILD_DIR}/DDColorKit_Private" "${PODS_CONFIGURATION_BUILD_DIR}/DDControlsKit_Private" "${PODS_CONFIGURATION_BUILD_DIR}/DDFontKit_Private" "${PODS_CONFIGURATION_BUILD_DIR}/DDLogKit_Private" "${PODS_CONFIGURATION_BUILD_DIR}/DDMAMapKit_Private" "${PODS_CONFIGURATION_BUILD_DIR}/DDNetworkingOfAlamofireKit_Private" "${PODS_CONFIGURATION_BUILD_DIR}/DDProgressHUDKit_Private" "${PODS_CONFIGURATION_BUILD_DIR}/DDTimerKit_Private" "${PODS_CONFIGURATION_BUILD_DIR}/DDToastKit_Private" "${PODS_CONFIGURATION_BUILD_DIR}/DDWebImageKit_Private" "${PODS_CONFIGURATION_BUILD_DIR}/DDZFPlayerKit_Private" "${PODS_CONFIGURATION_BUILD_DIR}/ESTabBarController-swift" "${PODS_CONFIGURATION_BUILD_DIR}/IQKeyboardManagerSwift" "${PODS_CONFIGURATION_BUILD_DIR}/JXCategoryView" "${PODS_CONFIGURATION_BUILD_DIR}/Kingfisher" "${PODS_CONFIGURATION_BUILD_DIR}/MJRefresh" "${PODS_CONFIGURATION_BUILD_DIR}/RxCocoa" "${PODS_CONFIGURATION_BUILD_DIR}/RxRelay" "${PODS_CONFIGURATION_BUILD_DIR}/RxSwift" "${PODS_CONFIGURATION_BUILD_DIR}/SnapKit" "${PODS_CONFIGURATION_BUILD_DIR}/SwiftEntryKit" "${PODS_CONFIGURATION_BUILD_DIR}/ZLPhotoBrowser" "${PODS_XCFRAMEWORKS_BUILD_DIR}/JCore" "${PODS_XCFRAMEWORKS_BUILD_DIR}/JPush" /usr/lib/swift $(SDKROOT)/usr/lib/swift -OTHER_CFLAGS = $(inherited) -fmodule-map-file="${PODS_CONFIGURATION_BUILD_DIR}/Alamofire/Alamofire.modulemap" -fmodule-map-file="${PODS_CONFIGURATION_BUILD_DIR}/CocoaDebug/CocoaDebug.modulemap" -fmodule-map-file="${PODS_CONFIGURATION_BUILD_DIR}/DDAutoUIKit_Private/DDAutoUIKit_Private.modulemap" -fmodule-map-file="${PODS_CONFIGURATION_BUILD_DIR}/DDColorKit_Private/DDColorKit_Private.modulemap" -fmodule-map-file="${PODS_CONFIGURATION_BUILD_DIR}/DDControlsKit_Private/DDControlsKit_Private.modulemap" -fmodule-map-file="${PODS_CONFIGURATION_BUILD_DIR}/DDFontKit_Private/DDFontKit_Private.modulemap" -fmodule-map-file="${PODS_CONFIGURATION_BUILD_DIR}/DDLogKit_Private/DDLogKit_Private.modulemap" -fmodule-map-file="${PODS_CONFIGURATION_BUILD_DIR}/DDNetworkingOfAlamofireKit_Private/DDNetworkingOfAlamofireKit_Private.modulemap" -fmodule-map-file="${PODS_CONFIGURATION_BUILD_DIR}/DDProgressHUDKit_Private/DDProgressHUDKit_Private.modulemap" -fmodule-map-file="${PODS_CONFIGURATION_BUILD_DIR}/DDToastKit_Private/DDToastKit_Private.modulemap" -fmodule-map-file="${PODS_CONFIGURATION_BUILD_DIR}/ESTabBarController-swift/ESTabBarController_swift.modulemap" -fmodule-map-file="${PODS_CONFIGURATION_BUILD_DIR}/IQKeyboardManagerSwift/IQKeyboardManagerSwift.modulemap" -fmodule-map-file="${PODS_CONFIGURATION_BUILD_DIR}/Kingfisher/Kingfisher.modulemap" -fmodule-map-file="${PODS_CONFIGURATION_BUILD_DIR}/RxCocoa/RxCocoa.modulemap" -fmodule-map-file="${PODS_CONFIGURATION_BUILD_DIR}/RxRelay/RxRelay.modulemap" -fmodule-map-file="${PODS_CONFIGURATION_BUILD_DIR}/RxSwift/RxSwift.modulemap" -fmodule-map-file="${PODS_CONFIGURATION_BUILD_DIR}/SnapKit/SnapKit.modulemap" -fmodule-map-file="${PODS_CONFIGURATION_BUILD_DIR}/SwiftEntryKit/SwiftEntryKit.modulemap" -fmodule-map-file="${PODS_CONFIGURATION_BUILD_DIR}/ZLPhotoBrowser/ZLPhotoBrowser.modulemap" -fmodule-map-file="${PODS_ROOT}/Headers/Public/BRPickerView/BRPickerView.modulemap" -fmodule-map-file="${PODS_ROOT}/Headers/Public/DDBasicControlsKit_Private/DDBasicControlsKit_Private.modulemap" -fmodule-map-file="${PODS_ROOT}/Headers/Public/DDCategoryKit_Private/DDCategoryKit_Private.modulemap" -fmodule-map-file="${PODS_ROOT}/Headers/Public/DDMAMapKit_Private/DDMAMapKit_Private.modulemap" -fmodule-map-file="${PODS_ROOT}/Headers/Public/DDTimerKit_Private/DDTimerKit_Private.modulemap" -fmodule-map-file="${PODS_ROOT}/Headers/Public/DDWebImageKit_Private/DDWebImageKit_Private.modulemap" -fmodule-map-file="${PODS_ROOT}/Headers/Public/DDZFPlayerKit_Private/DDZFPlayerKit_Private.modulemap" -fmodule-map-file="${PODS_ROOT}/Headers/Public/JXCategoryView/JXCategoryView.modulemap" -fmodule-map-file="${PODS_ROOT}/Headers/Public/MJRefresh/MJRefresh.modulemap" -OTHER_LDFLAGS = $(inherited) -ObjC -l"Alamofire" -l"BRPickerView" -l"CocoaDebug" -l"DDAutoUIKit_Private" -l"DDBasicControlsKit_Private" -l"DDCategoryKit_Private" -l"DDColorKit_Private" -l"DDControlsKit_Private" -l"DDFontKit_Private" -l"DDLogKit_Private" -l"DDMAMapKit_Private" -l"DDNetworkingOfAlamofireKit_Private" -l"DDProgressHUDKit_Private" -l"DDTimerKit_Private" -l"DDToastKit_Private" -l"DDWebImageKit_Private" -l"DDZFPlayerKit_Private" -l"ESTabBarController-swift" -l"IQKeyboardManagerSwift" -l"JCore" -l"JPush" -l"JXCategoryView" -l"Kingfisher" -l"MJRefresh" -l"RxCocoa" -l"RxRelay" -l"RxSwift" -l"SnapKit" -l"SwiftEntryKit" -l"ZLPhotoBrowser" -l"bz2" -l"c++" -l"resolv" -l"sqlite3" -l"swiftCoreGraphics" -l"z" -framework "AMapFoundationKit" -framework "AMapLocationKit" -framework "AMapNaviKit" -framework "AMapSearchKit" -framework "AMapTrackKit" -framework "AVFoundation" -framework "Accelerate" -framework "AudioToolbox" -framework "CFNetwork" -framework "CoreFoundation" -framework "CoreGraphics" -framework "CoreLocation" -framework "CoreMedia" -framework "CoreMotion" -framework "CoreTelephony" -framework "CoreText" -framework "CoreVideo" -framework "ExternalAccessory" -framework "Foundation" -framework "GLKit" -framework "IJKMediaFramework" -framework "ImageIO" -framework "JavaScriptCore" -framework "MapKit" -framework "MediaPlayer" -framework "MobileCoreServices" -framework "OpenGLES" -framework "Photos" -framework "PhotosUI" -framework "QuartzCore" -framework "QuickLook" -framework "Security" -framework "SystemConfiguration" -framework "UIKit" -framework "VideoToolbox" -framework "WebKit" -weak_framework "AppTrackingTransparency" -weak_framework "Combine" -weak_framework "SwiftUI" -weak_framework "UserNotifications" -OTHER_SWIFT_FLAGS = $(inherited) -D COCOAPODS -Xcc -fmodule-map-file="${PODS_CONFIGURATION_BUILD_DIR}/Alamofire/Alamofire.modulemap" -Xcc -fmodule-map-file="${PODS_CONFIGURATION_BUILD_DIR}/CocoaDebug/CocoaDebug.modulemap" -Xcc -fmodule-map-file="${PODS_CONFIGURATION_BUILD_DIR}/DDAutoUIKit_Private/DDAutoUIKit_Private.modulemap" -Xcc -fmodule-map-file="${PODS_CONFIGURATION_BUILD_DIR}/DDColorKit_Private/DDColorKit_Private.modulemap" -Xcc -fmodule-map-file="${PODS_CONFIGURATION_BUILD_DIR}/DDControlsKit_Private/DDControlsKit_Private.modulemap" -Xcc -fmodule-map-file="${PODS_CONFIGURATION_BUILD_DIR}/DDFontKit_Private/DDFontKit_Private.modulemap" -Xcc -fmodule-map-file="${PODS_CONFIGURATION_BUILD_DIR}/DDLogKit_Private/DDLogKit_Private.modulemap" -Xcc -fmodule-map-file="${PODS_CONFIGURATION_BUILD_DIR}/DDNetworkingOfAlamofireKit_Private/DDNetworkingOfAlamofireKit_Private.modulemap" -Xcc -fmodule-map-file="${PODS_CONFIGURATION_BUILD_DIR}/DDProgressHUDKit_Private/DDProgressHUDKit_Private.modulemap" -Xcc -fmodule-map-file="${PODS_CONFIGURATION_BUILD_DIR}/DDToastKit_Private/DDToastKit_Private.modulemap" -Xcc -fmodule-map-file="${PODS_CONFIGURATION_BUILD_DIR}/ESTabBarController-swift/ESTabBarController_swift.modulemap" -Xcc -fmodule-map-file="${PODS_CONFIGURATION_BUILD_DIR}/IQKeyboardManagerSwift/IQKeyboardManagerSwift.modulemap" -Xcc -fmodule-map-file="${PODS_CONFIGURATION_BUILD_DIR}/Kingfisher/Kingfisher.modulemap" -Xcc -fmodule-map-file="${PODS_CONFIGURATION_BUILD_DIR}/RxCocoa/RxCocoa.modulemap" -Xcc -fmodule-map-file="${PODS_CONFIGURATION_BUILD_DIR}/RxRelay/RxRelay.modulemap" -Xcc -fmodule-map-file="${PODS_CONFIGURATION_BUILD_DIR}/RxSwift/RxSwift.modulemap" -Xcc -fmodule-map-file="${PODS_CONFIGURATION_BUILD_DIR}/SnapKit/SnapKit.modulemap" -Xcc -fmodule-map-file="${PODS_CONFIGURATION_BUILD_DIR}/SwiftEntryKit/SwiftEntryKit.modulemap" -Xcc -fmodule-map-file="${PODS_CONFIGURATION_BUILD_DIR}/ZLPhotoBrowser/ZLPhotoBrowser.modulemap" -Xcc -fmodule-map-file="${PODS_ROOT}/Headers/Public/BRPickerView/BRPickerView.modulemap" -Xcc -fmodule-map-file="${PODS_ROOT}/Headers/Public/DDBasicControlsKit_Private/DDBasicControlsKit_Private.modulemap" -Xcc -fmodule-map-file="${PODS_ROOT}/Headers/Public/DDCategoryKit_Private/DDCategoryKit_Private.modulemap" -Xcc -fmodule-map-file="${PODS_ROOT}/Headers/Public/DDMAMapKit_Private/DDMAMapKit_Private.modulemap" -Xcc -fmodule-map-file="${PODS_ROOT}/Headers/Public/DDTimerKit_Private/DDTimerKit_Private.modulemap" -Xcc -fmodule-map-file="${PODS_ROOT}/Headers/Public/DDWebImageKit_Private/DDWebImageKit_Private.modulemap" -Xcc -fmodule-map-file="${PODS_ROOT}/Headers/Public/DDZFPlayerKit_Private/DDZFPlayerKit_Private.modulemap" -Xcc -fmodule-map-file="${PODS_ROOT}/Headers/Public/JXCategoryView/JXCategoryView.modulemap" -Xcc -fmodule-map-file="${PODS_ROOT}/Headers/Public/MJRefresh/MJRefresh.modulemap" +LIBRARY_SEARCH_PATHS = $(inherited) "${DT_TOOLCHAIN_DIR}/usr/lib/swift/${PLATFORM_NAME}" "${PODS_CONFIGURATION_BUILD_DIR}/Alamofire" "${PODS_CONFIGURATION_BUILD_DIR}/BRPickerView" "${PODS_CONFIGURATION_BUILD_DIR}/CocoaDebug" "${PODS_CONFIGURATION_BUILD_DIR}/DDAudioPlayerKit_Private" "${PODS_CONFIGURATION_BUILD_DIR}/DDAutoUIKit_Private" "${PODS_CONFIGURATION_BUILD_DIR}/DDBasicControlsKit_Private" "${PODS_CONFIGURATION_BUILD_DIR}/DDCategoryKit_Private" "${PODS_CONFIGURATION_BUILD_DIR}/DDColorKit_Private" "${PODS_CONFIGURATION_BUILD_DIR}/DDControlsKit_Private" "${PODS_CONFIGURATION_BUILD_DIR}/DDFontKit_Private" "${PODS_CONFIGURATION_BUILD_DIR}/DDLogKit_Private" "${PODS_CONFIGURATION_BUILD_DIR}/DDMAMapKit_Private" "${PODS_CONFIGURATION_BUILD_DIR}/DDNetworkingOfAlamofireKit_Private" "${PODS_CONFIGURATION_BUILD_DIR}/DDProgressHUDKit_Private" "${PODS_CONFIGURATION_BUILD_DIR}/DDTimerKit_Private" "${PODS_CONFIGURATION_BUILD_DIR}/DDToastKit_Private" "${PODS_CONFIGURATION_BUILD_DIR}/DDWebImageKit_Private" "${PODS_CONFIGURATION_BUILD_DIR}/DDZFPlayerKit_Private" "${PODS_CONFIGURATION_BUILD_DIR}/ESTabBarController-swift" "${PODS_CONFIGURATION_BUILD_DIR}/IQKeyboardManagerSwift" "${PODS_CONFIGURATION_BUILD_DIR}/JXCategoryView" "${PODS_CONFIGURATION_BUILD_DIR}/Kingfisher" "${PODS_CONFIGURATION_BUILD_DIR}/MJRefresh" "${PODS_CONFIGURATION_BUILD_DIR}/RxCocoa" "${PODS_CONFIGURATION_BUILD_DIR}/RxRelay" "${PODS_CONFIGURATION_BUILD_DIR}/RxSwift" "${PODS_CONFIGURATION_BUILD_DIR}/SnapKit" "${PODS_CONFIGURATION_BUILD_DIR}/SwiftEntryKit" "${PODS_CONFIGURATION_BUILD_DIR}/ZLPhotoBrowser" "${PODS_XCFRAMEWORKS_BUILD_DIR}/JCore" "${PODS_XCFRAMEWORKS_BUILD_DIR}/JPush" /usr/lib/swift $(SDKROOT)/usr/lib/swift +OTHER_CFLAGS = $(inherited) -fmodule-map-file="${PODS_CONFIGURATION_BUILD_DIR}/Alamofire/Alamofire.modulemap" -fmodule-map-file="${PODS_CONFIGURATION_BUILD_DIR}/CocoaDebug/CocoaDebug.modulemap" -fmodule-map-file="${PODS_CONFIGURATION_BUILD_DIR}/DDAudioPlayerKit_Private/DDAudioPlayerKit_Private.modulemap" -fmodule-map-file="${PODS_CONFIGURATION_BUILD_DIR}/DDAutoUIKit_Private/DDAutoUIKit_Private.modulemap" -fmodule-map-file="${PODS_CONFIGURATION_BUILD_DIR}/DDColorKit_Private/DDColorKit_Private.modulemap" -fmodule-map-file="${PODS_CONFIGURATION_BUILD_DIR}/DDControlsKit_Private/DDControlsKit_Private.modulemap" -fmodule-map-file="${PODS_CONFIGURATION_BUILD_DIR}/DDFontKit_Private/DDFontKit_Private.modulemap" -fmodule-map-file="${PODS_CONFIGURATION_BUILD_DIR}/DDLogKit_Private/DDLogKit_Private.modulemap" -fmodule-map-file="${PODS_CONFIGURATION_BUILD_DIR}/DDNetworkingOfAlamofireKit_Private/DDNetworkingOfAlamofireKit_Private.modulemap" -fmodule-map-file="${PODS_CONFIGURATION_BUILD_DIR}/DDProgressHUDKit_Private/DDProgressHUDKit_Private.modulemap" -fmodule-map-file="${PODS_CONFIGURATION_BUILD_DIR}/DDToastKit_Private/DDToastKit_Private.modulemap" -fmodule-map-file="${PODS_CONFIGURATION_BUILD_DIR}/ESTabBarController-swift/ESTabBarController_swift.modulemap" -fmodule-map-file="${PODS_CONFIGURATION_BUILD_DIR}/IQKeyboardManagerSwift/IQKeyboardManagerSwift.modulemap" -fmodule-map-file="${PODS_CONFIGURATION_BUILD_DIR}/Kingfisher/Kingfisher.modulemap" -fmodule-map-file="${PODS_CONFIGURATION_BUILD_DIR}/RxCocoa/RxCocoa.modulemap" -fmodule-map-file="${PODS_CONFIGURATION_BUILD_DIR}/RxRelay/RxRelay.modulemap" -fmodule-map-file="${PODS_CONFIGURATION_BUILD_DIR}/RxSwift/RxSwift.modulemap" -fmodule-map-file="${PODS_CONFIGURATION_BUILD_DIR}/SnapKit/SnapKit.modulemap" -fmodule-map-file="${PODS_CONFIGURATION_BUILD_DIR}/SwiftEntryKit/SwiftEntryKit.modulemap" -fmodule-map-file="${PODS_CONFIGURATION_BUILD_DIR}/ZLPhotoBrowser/ZLPhotoBrowser.modulemap" -fmodule-map-file="${PODS_ROOT}/Headers/Public/BRPickerView/BRPickerView.modulemap" -fmodule-map-file="${PODS_ROOT}/Headers/Public/DDBasicControlsKit_Private/DDBasicControlsKit_Private.modulemap" -fmodule-map-file="${PODS_ROOT}/Headers/Public/DDCategoryKit_Private/DDCategoryKit_Private.modulemap" -fmodule-map-file="${PODS_ROOT}/Headers/Public/DDMAMapKit_Private/DDMAMapKit_Private.modulemap" -fmodule-map-file="${PODS_ROOT}/Headers/Public/DDTimerKit_Private/DDTimerKit_Private.modulemap" -fmodule-map-file="${PODS_ROOT}/Headers/Public/DDWebImageKit_Private/DDWebImageKit_Private.modulemap" -fmodule-map-file="${PODS_ROOT}/Headers/Public/DDZFPlayerKit_Private/DDZFPlayerKit_Private.modulemap" -fmodule-map-file="${PODS_ROOT}/Headers/Public/JXCategoryView/JXCategoryView.modulemap" -fmodule-map-file="${PODS_ROOT}/Headers/Public/MJRefresh/MJRefresh.modulemap" +OTHER_LDFLAGS = $(inherited) -ObjC -l"Alamofire" -l"BRPickerView" -l"CocoaDebug" -l"DDAudioPlayerKit_Private" -l"DDAutoUIKit_Private" -l"DDBasicControlsKit_Private" -l"DDCategoryKit_Private" -l"DDColorKit_Private" -l"DDControlsKit_Private" -l"DDFontKit_Private" -l"DDLogKit_Private" -l"DDMAMapKit_Private" -l"DDNetworkingOfAlamofireKit_Private" -l"DDProgressHUDKit_Private" -l"DDTimerKit_Private" -l"DDToastKit_Private" -l"DDWebImageKit_Private" -l"DDZFPlayerKit_Private" -l"ESTabBarController-swift" -l"IQKeyboardManagerSwift" -l"JCore" -l"JPush" -l"JXCategoryView" -l"Kingfisher" -l"MJRefresh" -l"RxCocoa" -l"RxRelay" -l"RxSwift" -l"SnapKit" -l"SwiftEntryKit" -l"ZLPhotoBrowser" -l"bz2" -l"c++" -l"resolv" -l"sqlite3" -l"swiftCoreGraphics" -l"z" -framework "AMapFoundationKit" -framework "AMapLocationKit" -framework "AMapNaviKit" -framework "AMapSearchKit" -framework "AMapTrackKit" -framework "AVFoundation" -framework "Accelerate" -framework "AudioToolbox" -framework "CFNetwork" -framework "CoreFoundation" -framework "CoreGraphics" -framework "CoreLocation" -framework "CoreMedia" -framework "CoreMotion" -framework "CoreTelephony" -framework "CoreText" -framework "CoreVideo" -framework "ExternalAccessory" -framework "Foundation" -framework "GLKit" -framework "IJKMediaFramework" -framework "ImageIO" -framework "JavaScriptCore" -framework "MapKit" -framework "MediaPlayer" -framework "MobileCoreServices" -framework "OpenGLES" -framework "Photos" -framework "PhotosUI" -framework "QuartzCore" -framework "QuickLook" -framework "Security" -framework "SystemConfiguration" -framework "UIKit" -framework "VideoToolbox" -framework "WebKit" -weak_framework "AppTrackingTransparency" -weak_framework "Combine" -weak_framework "SwiftUI" -weak_framework "UserNotifications" +OTHER_SWIFT_FLAGS = $(inherited) -D COCOAPODS -Xcc -fmodule-map-file="${PODS_CONFIGURATION_BUILD_DIR}/Alamofire/Alamofire.modulemap" -Xcc -fmodule-map-file="${PODS_CONFIGURATION_BUILD_DIR}/CocoaDebug/CocoaDebug.modulemap" -Xcc -fmodule-map-file="${PODS_CONFIGURATION_BUILD_DIR}/DDAudioPlayerKit_Private/DDAudioPlayerKit_Private.modulemap" -Xcc -fmodule-map-file="${PODS_CONFIGURATION_BUILD_DIR}/DDAutoUIKit_Private/DDAutoUIKit_Private.modulemap" -Xcc -fmodule-map-file="${PODS_CONFIGURATION_BUILD_DIR}/DDColorKit_Private/DDColorKit_Private.modulemap" -Xcc -fmodule-map-file="${PODS_CONFIGURATION_BUILD_DIR}/DDControlsKit_Private/DDControlsKit_Private.modulemap" -Xcc -fmodule-map-file="${PODS_CONFIGURATION_BUILD_DIR}/DDFontKit_Private/DDFontKit_Private.modulemap" -Xcc -fmodule-map-file="${PODS_CONFIGURATION_BUILD_DIR}/DDLogKit_Private/DDLogKit_Private.modulemap" -Xcc -fmodule-map-file="${PODS_CONFIGURATION_BUILD_DIR}/DDNetworkingOfAlamofireKit_Private/DDNetworkingOfAlamofireKit_Private.modulemap" -Xcc -fmodule-map-file="${PODS_CONFIGURATION_BUILD_DIR}/DDProgressHUDKit_Private/DDProgressHUDKit_Private.modulemap" -Xcc -fmodule-map-file="${PODS_CONFIGURATION_BUILD_DIR}/DDToastKit_Private/DDToastKit_Private.modulemap" -Xcc -fmodule-map-file="${PODS_CONFIGURATION_BUILD_DIR}/ESTabBarController-swift/ESTabBarController_swift.modulemap" -Xcc -fmodule-map-file="${PODS_CONFIGURATION_BUILD_DIR}/IQKeyboardManagerSwift/IQKeyboardManagerSwift.modulemap" -Xcc -fmodule-map-file="${PODS_CONFIGURATION_BUILD_DIR}/Kingfisher/Kingfisher.modulemap" -Xcc -fmodule-map-file="${PODS_CONFIGURATION_BUILD_DIR}/RxCocoa/RxCocoa.modulemap" -Xcc -fmodule-map-file="${PODS_CONFIGURATION_BUILD_DIR}/RxRelay/RxRelay.modulemap" -Xcc -fmodule-map-file="${PODS_CONFIGURATION_BUILD_DIR}/RxSwift/RxSwift.modulemap" -Xcc -fmodule-map-file="${PODS_CONFIGURATION_BUILD_DIR}/SnapKit/SnapKit.modulemap" -Xcc -fmodule-map-file="${PODS_CONFIGURATION_BUILD_DIR}/SwiftEntryKit/SwiftEntryKit.modulemap" -Xcc -fmodule-map-file="${PODS_CONFIGURATION_BUILD_DIR}/ZLPhotoBrowser/ZLPhotoBrowser.modulemap" -Xcc -fmodule-map-file="${PODS_ROOT}/Headers/Public/BRPickerView/BRPickerView.modulemap" -Xcc -fmodule-map-file="${PODS_ROOT}/Headers/Public/DDBasicControlsKit_Private/DDBasicControlsKit_Private.modulemap" -Xcc -fmodule-map-file="${PODS_ROOT}/Headers/Public/DDCategoryKit_Private/DDCategoryKit_Private.modulemap" -Xcc -fmodule-map-file="${PODS_ROOT}/Headers/Public/DDMAMapKit_Private/DDMAMapKit_Private.modulemap" -Xcc -fmodule-map-file="${PODS_ROOT}/Headers/Public/DDTimerKit_Private/DDTimerKit_Private.modulemap" -Xcc -fmodule-map-file="${PODS_ROOT}/Headers/Public/DDWebImageKit_Private/DDWebImageKit_Private.modulemap" -Xcc -fmodule-map-file="${PODS_ROOT}/Headers/Public/DDZFPlayerKit_Private/DDZFPlayerKit_Private.modulemap" -Xcc -fmodule-map-file="${PODS_ROOT}/Headers/Public/JXCategoryView/JXCategoryView.modulemap" -Xcc -fmodule-map-file="${PODS_ROOT}/Headers/Public/MJRefresh/MJRefresh.modulemap" PODS_BUILD_DIR = ${BUILD_DIR} PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) PODS_PODFILE_DIR_PATH = ${SRCROOT}/. PODS_ROOT = ${SRCROOT}/Pods PODS_XCFRAMEWORKS_BUILD_DIR = $(PODS_CONFIGURATION_BUILD_DIR)/XCFrameworkIntermediates -SWIFT_INCLUDE_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/Alamofire" "${PODS_CONFIGURATION_BUILD_DIR}/CocoaDebug" "${PODS_CONFIGURATION_BUILD_DIR}/DDAutoUIKit_Private" "${PODS_CONFIGURATION_BUILD_DIR}/DDColorKit_Private" "${PODS_CONFIGURATION_BUILD_DIR}/DDControlsKit_Private" "${PODS_CONFIGURATION_BUILD_DIR}/DDFontKit_Private" "${PODS_CONFIGURATION_BUILD_DIR}/DDLogKit_Private" "${PODS_CONFIGURATION_BUILD_DIR}/DDNetworkingOfAlamofireKit_Private" "${PODS_CONFIGURATION_BUILD_DIR}/DDProgressHUDKit_Private" "${PODS_CONFIGURATION_BUILD_DIR}/DDToastKit_Private" "${PODS_CONFIGURATION_BUILD_DIR}/ESTabBarController-swift" "${PODS_CONFIGURATION_BUILD_DIR}/IQKeyboardManagerSwift" "${PODS_CONFIGURATION_BUILD_DIR}/Kingfisher" "${PODS_CONFIGURATION_BUILD_DIR}/RxCocoa" "${PODS_CONFIGURATION_BUILD_DIR}/RxRelay" "${PODS_CONFIGURATION_BUILD_DIR}/RxSwift" "${PODS_CONFIGURATION_BUILD_DIR}/SnapKit" "${PODS_CONFIGURATION_BUILD_DIR}/SwiftEntryKit" "${PODS_CONFIGURATION_BUILD_DIR}/ZLPhotoBrowser" +SWIFT_INCLUDE_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/Alamofire" "${PODS_CONFIGURATION_BUILD_DIR}/CocoaDebug" "${PODS_CONFIGURATION_BUILD_DIR}/DDAudioPlayerKit_Private" "${PODS_CONFIGURATION_BUILD_DIR}/DDAutoUIKit_Private" "${PODS_CONFIGURATION_BUILD_DIR}/DDColorKit_Private" "${PODS_CONFIGURATION_BUILD_DIR}/DDControlsKit_Private" "${PODS_CONFIGURATION_BUILD_DIR}/DDFontKit_Private" "${PODS_CONFIGURATION_BUILD_DIR}/DDLogKit_Private" "${PODS_CONFIGURATION_BUILD_DIR}/DDNetworkingOfAlamofireKit_Private" "${PODS_CONFIGURATION_BUILD_DIR}/DDProgressHUDKit_Private" "${PODS_CONFIGURATION_BUILD_DIR}/DDToastKit_Private" "${PODS_CONFIGURATION_BUILD_DIR}/ESTabBarController-swift" "${PODS_CONFIGURATION_BUILD_DIR}/IQKeyboardManagerSwift" "${PODS_CONFIGURATION_BUILD_DIR}/Kingfisher" "${PODS_CONFIGURATION_BUILD_DIR}/RxCocoa" "${PODS_CONFIGURATION_BUILD_DIR}/RxRelay" "${PODS_CONFIGURATION_BUILD_DIR}/RxSwift" "${PODS_CONFIGURATION_BUILD_DIR}/SnapKit" "${PODS_CONFIGURATION_BUILD_DIR}/SwiftEntryKit" "${PODS_CONFIGURATION_BUILD_DIR}/ZLPhotoBrowser" USE_RECURSIVE_SCRIPT_INPUTS_IN_SCRIPT_PHASES = YES diff --git a/Pods/Target Support Files/Pods-OrderScheduling/Pods-OrderScheduling.release.xcconfig b/Pods/Target Support Files/Pods-OrderScheduling/Pods-OrderScheduling.release.xcconfig index 35509ec..b748e1c 100644 --- a/Pods/Target Support Files/Pods-OrderScheduling/Pods-OrderScheduling.release.xcconfig +++ b/Pods/Target Support Files/Pods-OrderScheduling/Pods-OrderScheduling.release.xcconfig @@ -5,14 +5,14 @@ EXCLUDED_ARCHS[sdk=iphonesimulator*] = arm64 FRAMEWORK_SEARCH_PATHS = $(inherited) "${PODS_ROOT}/AMapFoundation-NO-IDFA" "${PODS_ROOT}/AMapLocation-NO-IDFA" "${PODS_ROOT}/AMapNavi-NO-IDFA" "${PODS_ROOT}/AMapSearch-NO-IDFA" "${PODS_ROOT}/AMapTrack-NO-IDFA" "${PODS_ROOT}/DDZFPlayerKit_Private/DDZFPlayerKit_Private/Classes/ijkplayer" "${PODS_ROOT}/JCore" "${PODS_ROOT}/JPush" GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 HEADER_SEARCH_PATHS = $(inherited) "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/BRPickerView" "${PODS_ROOT}/Headers/Public/CocoaDebug" "${PODS_ROOT}/Headers/Public/DDBasicControlsKit_Private" "${PODS_ROOT}/Headers/Public/DDCategoryKit_Private" "${PODS_ROOT}/Headers/Public/DDLogKit_Private" "${PODS_ROOT}/Headers/Public/DDMAMapKit_Private" "${PODS_ROOT}/Headers/Public/DDProgressHUDKit_Private" "${PODS_ROOT}/Headers/Public/DDTimerKit_Private" "${PODS_ROOT}/Headers/Public/DDWebImageKit_Private" "${PODS_ROOT}/Headers/Public/DDZFPlayerKit_Private" "${PODS_ROOT}/Headers/Public/JXCategoryView" "${PODS_ROOT}/Headers/Public/MJRefresh" "${PODS_ROOT}/Headers/Public/RxCocoa" "${PODS_ROOT}/Headers/Public/ZLPhotoBrowser" "${PODS_XCFRAMEWORKS_BUILD_DIR}/JCore/Headers" "${PODS_XCFRAMEWORKS_BUILD_DIR}/JPush/Headers" -LIBRARY_SEARCH_PATHS = $(inherited) "${DT_TOOLCHAIN_DIR}/usr/lib/swift/${PLATFORM_NAME}" "${PODS_CONFIGURATION_BUILD_DIR}/Alamofire" "${PODS_CONFIGURATION_BUILD_DIR}/BRPickerView" "${PODS_CONFIGURATION_BUILD_DIR}/DDAutoUIKit_Private" "${PODS_CONFIGURATION_BUILD_DIR}/DDBasicControlsKit_Private" "${PODS_CONFIGURATION_BUILD_DIR}/DDCategoryKit_Private" "${PODS_CONFIGURATION_BUILD_DIR}/DDColorKit_Private" "${PODS_CONFIGURATION_BUILD_DIR}/DDControlsKit_Private" "${PODS_CONFIGURATION_BUILD_DIR}/DDFontKit_Private" "${PODS_CONFIGURATION_BUILD_DIR}/DDLogKit_Private" "${PODS_CONFIGURATION_BUILD_DIR}/DDMAMapKit_Private" "${PODS_CONFIGURATION_BUILD_DIR}/DDNetworkingOfAlamofireKit_Private" "${PODS_CONFIGURATION_BUILD_DIR}/DDProgressHUDKit_Private" "${PODS_CONFIGURATION_BUILD_DIR}/DDTimerKit_Private" "${PODS_CONFIGURATION_BUILD_DIR}/DDToastKit_Private" "${PODS_CONFIGURATION_BUILD_DIR}/DDWebImageKit_Private" "${PODS_CONFIGURATION_BUILD_DIR}/DDZFPlayerKit_Private" "${PODS_CONFIGURATION_BUILD_DIR}/ESTabBarController-swift" "${PODS_CONFIGURATION_BUILD_DIR}/IQKeyboardManagerSwift" "${PODS_CONFIGURATION_BUILD_DIR}/JXCategoryView" "${PODS_CONFIGURATION_BUILD_DIR}/Kingfisher" "${PODS_CONFIGURATION_BUILD_DIR}/MJRefresh" "${PODS_CONFIGURATION_BUILD_DIR}/RxCocoa" "${PODS_CONFIGURATION_BUILD_DIR}/RxRelay" "${PODS_CONFIGURATION_BUILD_DIR}/RxSwift" "${PODS_CONFIGURATION_BUILD_DIR}/SnapKit" "${PODS_CONFIGURATION_BUILD_DIR}/SwiftEntryKit" "${PODS_CONFIGURATION_BUILD_DIR}/ZLPhotoBrowser" "${PODS_XCFRAMEWORKS_BUILD_DIR}/JCore" "${PODS_XCFRAMEWORKS_BUILD_DIR}/JPush" /usr/lib/swift $(SDKROOT)/usr/lib/swift -OTHER_CFLAGS = $(inherited) -fmodule-map-file="${PODS_CONFIGURATION_BUILD_DIR}/Alamofire/Alamofire.modulemap" -fmodule-map-file="${PODS_CONFIGURATION_BUILD_DIR}/DDAutoUIKit_Private/DDAutoUIKit_Private.modulemap" -fmodule-map-file="${PODS_CONFIGURATION_BUILD_DIR}/DDColorKit_Private/DDColorKit_Private.modulemap" -fmodule-map-file="${PODS_CONFIGURATION_BUILD_DIR}/DDControlsKit_Private/DDControlsKit_Private.modulemap" -fmodule-map-file="${PODS_CONFIGURATION_BUILD_DIR}/DDFontKit_Private/DDFontKit_Private.modulemap" -fmodule-map-file="${PODS_CONFIGURATION_BUILD_DIR}/DDLogKit_Private/DDLogKit_Private.modulemap" -fmodule-map-file="${PODS_CONFIGURATION_BUILD_DIR}/DDNetworkingOfAlamofireKit_Private/DDNetworkingOfAlamofireKit_Private.modulemap" -fmodule-map-file="${PODS_CONFIGURATION_BUILD_DIR}/DDProgressHUDKit_Private/DDProgressHUDKit_Private.modulemap" -fmodule-map-file="${PODS_CONFIGURATION_BUILD_DIR}/DDToastKit_Private/DDToastKit_Private.modulemap" -fmodule-map-file="${PODS_CONFIGURATION_BUILD_DIR}/ESTabBarController-swift/ESTabBarController_swift.modulemap" -fmodule-map-file="${PODS_CONFIGURATION_BUILD_DIR}/IQKeyboardManagerSwift/IQKeyboardManagerSwift.modulemap" -fmodule-map-file="${PODS_CONFIGURATION_BUILD_DIR}/Kingfisher/Kingfisher.modulemap" -fmodule-map-file="${PODS_CONFIGURATION_BUILD_DIR}/RxCocoa/RxCocoa.modulemap" -fmodule-map-file="${PODS_CONFIGURATION_BUILD_DIR}/RxRelay/RxRelay.modulemap" -fmodule-map-file="${PODS_CONFIGURATION_BUILD_DIR}/RxSwift/RxSwift.modulemap" -fmodule-map-file="${PODS_CONFIGURATION_BUILD_DIR}/SnapKit/SnapKit.modulemap" -fmodule-map-file="${PODS_CONFIGURATION_BUILD_DIR}/SwiftEntryKit/SwiftEntryKit.modulemap" -fmodule-map-file="${PODS_CONFIGURATION_BUILD_DIR}/ZLPhotoBrowser/ZLPhotoBrowser.modulemap" -fmodule-map-file="${PODS_ROOT}/Headers/Public/BRPickerView/BRPickerView.modulemap" -fmodule-map-file="${PODS_ROOT}/Headers/Public/DDBasicControlsKit_Private/DDBasicControlsKit_Private.modulemap" -fmodule-map-file="${PODS_ROOT}/Headers/Public/DDCategoryKit_Private/DDCategoryKit_Private.modulemap" -fmodule-map-file="${PODS_ROOT}/Headers/Public/DDMAMapKit_Private/DDMAMapKit_Private.modulemap" -fmodule-map-file="${PODS_ROOT}/Headers/Public/DDTimerKit_Private/DDTimerKit_Private.modulemap" -fmodule-map-file="${PODS_ROOT}/Headers/Public/DDWebImageKit_Private/DDWebImageKit_Private.modulemap" -fmodule-map-file="${PODS_ROOT}/Headers/Public/DDZFPlayerKit_Private/DDZFPlayerKit_Private.modulemap" -fmodule-map-file="${PODS_ROOT}/Headers/Public/JXCategoryView/JXCategoryView.modulemap" -fmodule-map-file="${PODS_ROOT}/Headers/Public/MJRefresh/MJRefresh.modulemap" -OTHER_LDFLAGS = $(inherited) -ObjC -l"Alamofire" -l"BRPickerView" -l"DDAutoUIKit_Private" -l"DDBasicControlsKit_Private" -l"DDCategoryKit_Private" -l"DDColorKit_Private" -l"DDControlsKit_Private" -l"DDFontKit_Private" -l"DDLogKit_Private" -l"DDMAMapKit_Private" -l"DDNetworkingOfAlamofireKit_Private" -l"DDProgressHUDKit_Private" -l"DDTimerKit_Private" -l"DDToastKit_Private" -l"DDWebImageKit_Private" -l"DDZFPlayerKit_Private" -l"ESTabBarController-swift" -l"IQKeyboardManagerSwift" -l"JCore" -l"JPush" -l"JXCategoryView" -l"Kingfisher" -l"MJRefresh" -l"RxCocoa" -l"RxRelay" -l"RxSwift" -l"SnapKit" -l"SwiftEntryKit" -l"ZLPhotoBrowser" -l"bz2" -l"c++" -l"resolv" -l"sqlite3" -l"swiftCoreGraphics" -l"z" -framework "AMapFoundationKit" -framework "AMapLocationKit" -framework "AMapNaviKit" -framework "AMapSearchKit" -framework "AMapTrackKit" -framework "AVFoundation" -framework "Accelerate" -framework "AudioToolbox" -framework "CFNetwork" -framework "CoreFoundation" -framework "CoreGraphics" -framework "CoreLocation" -framework "CoreMedia" -framework "CoreMotion" -framework "CoreTelephony" -framework "CoreText" -framework "CoreVideo" -framework "ExternalAccessory" -framework "Foundation" -framework "GLKit" -framework "IJKMediaFramework" -framework "ImageIO" -framework "MapKit" -framework "MediaPlayer" -framework "MobileCoreServices" -framework "OpenGLES" -framework "Photos" -framework "PhotosUI" -framework "QuartzCore" -framework "Security" -framework "SystemConfiguration" -framework "UIKit" -framework "VideoToolbox" -framework "WebKit" -weak_framework "AppTrackingTransparency" -weak_framework "Combine" -weak_framework "SwiftUI" -weak_framework "UserNotifications" -OTHER_SWIFT_FLAGS = $(inherited) -D COCOAPODS -Xcc -fmodule-map-file="${PODS_CONFIGURATION_BUILD_DIR}/Alamofire/Alamofire.modulemap" -Xcc -fmodule-map-file="${PODS_CONFIGURATION_BUILD_DIR}/DDAutoUIKit_Private/DDAutoUIKit_Private.modulemap" -Xcc -fmodule-map-file="${PODS_CONFIGURATION_BUILD_DIR}/DDColorKit_Private/DDColorKit_Private.modulemap" -Xcc -fmodule-map-file="${PODS_CONFIGURATION_BUILD_DIR}/DDControlsKit_Private/DDControlsKit_Private.modulemap" -Xcc -fmodule-map-file="${PODS_CONFIGURATION_BUILD_DIR}/DDFontKit_Private/DDFontKit_Private.modulemap" -Xcc -fmodule-map-file="${PODS_CONFIGURATION_BUILD_DIR}/DDLogKit_Private/DDLogKit_Private.modulemap" -Xcc -fmodule-map-file="${PODS_CONFIGURATION_BUILD_DIR}/DDNetworkingOfAlamofireKit_Private/DDNetworkingOfAlamofireKit_Private.modulemap" -Xcc -fmodule-map-file="${PODS_CONFIGURATION_BUILD_DIR}/DDProgressHUDKit_Private/DDProgressHUDKit_Private.modulemap" -Xcc -fmodule-map-file="${PODS_CONFIGURATION_BUILD_DIR}/DDToastKit_Private/DDToastKit_Private.modulemap" -Xcc -fmodule-map-file="${PODS_CONFIGURATION_BUILD_DIR}/ESTabBarController-swift/ESTabBarController_swift.modulemap" -Xcc -fmodule-map-file="${PODS_CONFIGURATION_BUILD_DIR}/IQKeyboardManagerSwift/IQKeyboardManagerSwift.modulemap" -Xcc -fmodule-map-file="${PODS_CONFIGURATION_BUILD_DIR}/Kingfisher/Kingfisher.modulemap" -Xcc -fmodule-map-file="${PODS_CONFIGURATION_BUILD_DIR}/RxCocoa/RxCocoa.modulemap" -Xcc -fmodule-map-file="${PODS_CONFIGURATION_BUILD_DIR}/RxRelay/RxRelay.modulemap" -Xcc -fmodule-map-file="${PODS_CONFIGURATION_BUILD_DIR}/RxSwift/RxSwift.modulemap" -Xcc -fmodule-map-file="${PODS_CONFIGURATION_BUILD_DIR}/SnapKit/SnapKit.modulemap" -Xcc -fmodule-map-file="${PODS_CONFIGURATION_BUILD_DIR}/SwiftEntryKit/SwiftEntryKit.modulemap" -Xcc -fmodule-map-file="${PODS_CONFIGURATION_BUILD_DIR}/ZLPhotoBrowser/ZLPhotoBrowser.modulemap" -Xcc -fmodule-map-file="${PODS_ROOT}/Headers/Public/BRPickerView/BRPickerView.modulemap" -Xcc -fmodule-map-file="${PODS_ROOT}/Headers/Public/DDBasicControlsKit_Private/DDBasicControlsKit_Private.modulemap" -Xcc -fmodule-map-file="${PODS_ROOT}/Headers/Public/DDCategoryKit_Private/DDCategoryKit_Private.modulemap" -Xcc -fmodule-map-file="${PODS_ROOT}/Headers/Public/DDMAMapKit_Private/DDMAMapKit_Private.modulemap" -Xcc -fmodule-map-file="${PODS_ROOT}/Headers/Public/DDTimerKit_Private/DDTimerKit_Private.modulemap" -Xcc -fmodule-map-file="${PODS_ROOT}/Headers/Public/DDWebImageKit_Private/DDWebImageKit_Private.modulemap" -Xcc -fmodule-map-file="${PODS_ROOT}/Headers/Public/DDZFPlayerKit_Private/DDZFPlayerKit_Private.modulemap" -Xcc -fmodule-map-file="${PODS_ROOT}/Headers/Public/JXCategoryView/JXCategoryView.modulemap" -Xcc -fmodule-map-file="${PODS_ROOT}/Headers/Public/MJRefresh/MJRefresh.modulemap" +LIBRARY_SEARCH_PATHS = $(inherited) "${DT_TOOLCHAIN_DIR}/usr/lib/swift/${PLATFORM_NAME}" "${PODS_CONFIGURATION_BUILD_DIR}/Alamofire" "${PODS_CONFIGURATION_BUILD_DIR}/BRPickerView" "${PODS_CONFIGURATION_BUILD_DIR}/DDAudioPlayerKit_Private" "${PODS_CONFIGURATION_BUILD_DIR}/DDAutoUIKit_Private" "${PODS_CONFIGURATION_BUILD_DIR}/DDBasicControlsKit_Private" "${PODS_CONFIGURATION_BUILD_DIR}/DDCategoryKit_Private" "${PODS_CONFIGURATION_BUILD_DIR}/DDColorKit_Private" "${PODS_CONFIGURATION_BUILD_DIR}/DDControlsKit_Private" "${PODS_CONFIGURATION_BUILD_DIR}/DDFontKit_Private" "${PODS_CONFIGURATION_BUILD_DIR}/DDLogKit_Private" "${PODS_CONFIGURATION_BUILD_DIR}/DDMAMapKit_Private" "${PODS_CONFIGURATION_BUILD_DIR}/DDNetworkingOfAlamofireKit_Private" "${PODS_CONFIGURATION_BUILD_DIR}/DDProgressHUDKit_Private" "${PODS_CONFIGURATION_BUILD_DIR}/DDTimerKit_Private" "${PODS_CONFIGURATION_BUILD_DIR}/DDToastKit_Private" "${PODS_CONFIGURATION_BUILD_DIR}/DDWebImageKit_Private" "${PODS_CONFIGURATION_BUILD_DIR}/DDZFPlayerKit_Private" "${PODS_CONFIGURATION_BUILD_DIR}/ESTabBarController-swift" "${PODS_CONFIGURATION_BUILD_DIR}/IQKeyboardManagerSwift" "${PODS_CONFIGURATION_BUILD_DIR}/JXCategoryView" "${PODS_CONFIGURATION_BUILD_DIR}/Kingfisher" "${PODS_CONFIGURATION_BUILD_DIR}/MJRefresh" "${PODS_CONFIGURATION_BUILD_DIR}/RxCocoa" "${PODS_CONFIGURATION_BUILD_DIR}/RxRelay" "${PODS_CONFIGURATION_BUILD_DIR}/RxSwift" "${PODS_CONFIGURATION_BUILD_DIR}/SnapKit" "${PODS_CONFIGURATION_BUILD_DIR}/SwiftEntryKit" "${PODS_CONFIGURATION_BUILD_DIR}/ZLPhotoBrowser" "${PODS_XCFRAMEWORKS_BUILD_DIR}/JCore" "${PODS_XCFRAMEWORKS_BUILD_DIR}/JPush" /usr/lib/swift $(SDKROOT)/usr/lib/swift +OTHER_CFLAGS = $(inherited) -fmodule-map-file="${PODS_CONFIGURATION_BUILD_DIR}/Alamofire/Alamofire.modulemap" -fmodule-map-file="${PODS_CONFIGURATION_BUILD_DIR}/DDAudioPlayerKit_Private/DDAudioPlayerKit_Private.modulemap" -fmodule-map-file="${PODS_CONFIGURATION_BUILD_DIR}/DDAutoUIKit_Private/DDAutoUIKit_Private.modulemap" -fmodule-map-file="${PODS_CONFIGURATION_BUILD_DIR}/DDColorKit_Private/DDColorKit_Private.modulemap" -fmodule-map-file="${PODS_CONFIGURATION_BUILD_DIR}/DDControlsKit_Private/DDControlsKit_Private.modulemap" -fmodule-map-file="${PODS_CONFIGURATION_BUILD_DIR}/DDFontKit_Private/DDFontKit_Private.modulemap" -fmodule-map-file="${PODS_CONFIGURATION_BUILD_DIR}/DDLogKit_Private/DDLogKit_Private.modulemap" -fmodule-map-file="${PODS_CONFIGURATION_BUILD_DIR}/DDNetworkingOfAlamofireKit_Private/DDNetworkingOfAlamofireKit_Private.modulemap" -fmodule-map-file="${PODS_CONFIGURATION_BUILD_DIR}/DDProgressHUDKit_Private/DDProgressHUDKit_Private.modulemap" -fmodule-map-file="${PODS_CONFIGURATION_BUILD_DIR}/DDToastKit_Private/DDToastKit_Private.modulemap" -fmodule-map-file="${PODS_CONFIGURATION_BUILD_DIR}/ESTabBarController-swift/ESTabBarController_swift.modulemap" -fmodule-map-file="${PODS_CONFIGURATION_BUILD_DIR}/IQKeyboardManagerSwift/IQKeyboardManagerSwift.modulemap" -fmodule-map-file="${PODS_CONFIGURATION_BUILD_DIR}/Kingfisher/Kingfisher.modulemap" -fmodule-map-file="${PODS_CONFIGURATION_BUILD_DIR}/RxCocoa/RxCocoa.modulemap" -fmodule-map-file="${PODS_CONFIGURATION_BUILD_DIR}/RxRelay/RxRelay.modulemap" -fmodule-map-file="${PODS_CONFIGURATION_BUILD_DIR}/RxSwift/RxSwift.modulemap" -fmodule-map-file="${PODS_CONFIGURATION_BUILD_DIR}/SnapKit/SnapKit.modulemap" -fmodule-map-file="${PODS_CONFIGURATION_BUILD_DIR}/SwiftEntryKit/SwiftEntryKit.modulemap" -fmodule-map-file="${PODS_CONFIGURATION_BUILD_DIR}/ZLPhotoBrowser/ZLPhotoBrowser.modulemap" -fmodule-map-file="${PODS_ROOT}/Headers/Public/BRPickerView/BRPickerView.modulemap" -fmodule-map-file="${PODS_ROOT}/Headers/Public/DDBasicControlsKit_Private/DDBasicControlsKit_Private.modulemap" -fmodule-map-file="${PODS_ROOT}/Headers/Public/DDCategoryKit_Private/DDCategoryKit_Private.modulemap" -fmodule-map-file="${PODS_ROOT}/Headers/Public/DDMAMapKit_Private/DDMAMapKit_Private.modulemap" -fmodule-map-file="${PODS_ROOT}/Headers/Public/DDTimerKit_Private/DDTimerKit_Private.modulemap" -fmodule-map-file="${PODS_ROOT}/Headers/Public/DDWebImageKit_Private/DDWebImageKit_Private.modulemap" -fmodule-map-file="${PODS_ROOT}/Headers/Public/DDZFPlayerKit_Private/DDZFPlayerKit_Private.modulemap" -fmodule-map-file="${PODS_ROOT}/Headers/Public/JXCategoryView/JXCategoryView.modulemap" -fmodule-map-file="${PODS_ROOT}/Headers/Public/MJRefresh/MJRefresh.modulemap" +OTHER_LDFLAGS = $(inherited) -ObjC -l"Alamofire" -l"BRPickerView" -l"DDAudioPlayerKit_Private" -l"DDAutoUIKit_Private" -l"DDBasicControlsKit_Private" -l"DDCategoryKit_Private" -l"DDColorKit_Private" -l"DDControlsKit_Private" -l"DDFontKit_Private" -l"DDLogKit_Private" -l"DDMAMapKit_Private" -l"DDNetworkingOfAlamofireKit_Private" -l"DDProgressHUDKit_Private" -l"DDTimerKit_Private" -l"DDToastKit_Private" -l"DDWebImageKit_Private" -l"DDZFPlayerKit_Private" -l"ESTabBarController-swift" -l"IQKeyboardManagerSwift" -l"JCore" -l"JPush" -l"JXCategoryView" -l"Kingfisher" -l"MJRefresh" -l"RxCocoa" -l"RxRelay" -l"RxSwift" -l"SnapKit" -l"SwiftEntryKit" -l"ZLPhotoBrowser" -l"bz2" -l"c++" -l"resolv" -l"sqlite3" -l"swiftCoreGraphics" -l"z" -framework "AMapFoundationKit" -framework "AMapLocationKit" -framework "AMapNaviKit" -framework "AMapSearchKit" -framework "AMapTrackKit" -framework "AVFoundation" -framework "Accelerate" -framework "AudioToolbox" -framework "CFNetwork" -framework "CoreFoundation" -framework "CoreGraphics" -framework "CoreLocation" -framework "CoreMedia" -framework "CoreMotion" -framework "CoreTelephony" -framework "CoreText" -framework "CoreVideo" -framework "ExternalAccessory" -framework "Foundation" -framework "GLKit" -framework "IJKMediaFramework" -framework "ImageIO" -framework "MapKit" -framework "MediaPlayer" -framework "MobileCoreServices" -framework "OpenGLES" -framework "Photos" -framework "PhotosUI" -framework "QuartzCore" -framework "Security" -framework "SystemConfiguration" -framework "UIKit" -framework "VideoToolbox" -framework "WebKit" -weak_framework "AppTrackingTransparency" -weak_framework "Combine" -weak_framework "SwiftUI" -weak_framework "UserNotifications" +OTHER_SWIFT_FLAGS = $(inherited) -D COCOAPODS -Xcc -fmodule-map-file="${PODS_CONFIGURATION_BUILD_DIR}/Alamofire/Alamofire.modulemap" -Xcc -fmodule-map-file="${PODS_CONFIGURATION_BUILD_DIR}/DDAudioPlayerKit_Private/DDAudioPlayerKit_Private.modulemap" -Xcc -fmodule-map-file="${PODS_CONFIGURATION_BUILD_DIR}/DDAutoUIKit_Private/DDAutoUIKit_Private.modulemap" -Xcc -fmodule-map-file="${PODS_CONFIGURATION_BUILD_DIR}/DDColorKit_Private/DDColorKit_Private.modulemap" -Xcc -fmodule-map-file="${PODS_CONFIGURATION_BUILD_DIR}/DDControlsKit_Private/DDControlsKit_Private.modulemap" -Xcc -fmodule-map-file="${PODS_CONFIGURATION_BUILD_DIR}/DDFontKit_Private/DDFontKit_Private.modulemap" -Xcc -fmodule-map-file="${PODS_CONFIGURATION_BUILD_DIR}/DDLogKit_Private/DDLogKit_Private.modulemap" -Xcc -fmodule-map-file="${PODS_CONFIGURATION_BUILD_DIR}/DDNetworkingOfAlamofireKit_Private/DDNetworkingOfAlamofireKit_Private.modulemap" -Xcc -fmodule-map-file="${PODS_CONFIGURATION_BUILD_DIR}/DDProgressHUDKit_Private/DDProgressHUDKit_Private.modulemap" -Xcc -fmodule-map-file="${PODS_CONFIGURATION_BUILD_DIR}/DDToastKit_Private/DDToastKit_Private.modulemap" -Xcc -fmodule-map-file="${PODS_CONFIGURATION_BUILD_DIR}/ESTabBarController-swift/ESTabBarController_swift.modulemap" -Xcc -fmodule-map-file="${PODS_CONFIGURATION_BUILD_DIR}/IQKeyboardManagerSwift/IQKeyboardManagerSwift.modulemap" -Xcc -fmodule-map-file="${PODS_CONFIGURATION_BUILD_DIR}/Kingfisher/Kingfisher.modulemap" -Xcc -fmodule-map-file="${PODS_CONFIGURATION_BUILD_DIR}/RxCocoa/RxCocoa.modulemap" -Xcc -fmodule-map-file="${PODS_CONFIGURATION_BUILD_DIR}/RxRelay/RxRelay.modulemap" -Xcc -fmodule-map-file="${PODS_CONFIGURATION_BUILD_DIR}/RxSwift/RxSwift.modulemap" -Xcc -fmodule-map-file="${PODS_CONFIGURATION_BUILD_DIR}/SnapKit/SnapKit.modulemap" -Xcc -fmodule-map-file="${PODS_CONFIGURATION_BUILD_DIR}/SwiftEntryKit/SwiftEntryKit.modulemap" -Xcc -fmodule-map-file="${PODS_CONFIGURATION_BUILD_DIR}/ZLPhotoBrowser/ZLPhotoBrowser.modulemap" -Xcc -fmodule-map-file="${PODS_ROOT}/Headers/Public/BRPickerView/BRPickerView.modulemap" -Xcc -fmodule-map-file="${PODS_ROOT}/Headers/Public/DDBasicControlsKit_Private/DDBasicControlsKit_Private.modulemap" -Xcc -fmodule-map-file="${PODS_ROOT}/Headers/Public/DDCategoryKit_Private/DDCategoryKit_Private.modulemap" -Xcc -fmodule-map-file="${PODS_ROOT}/Headers/Public/DDMAMapKit_Private/DDMAMapKit_Private.modulemap" -Xcc -fmodule-map-file="${PODS_ROOT}/Headers/Public/DDTimerKit_Private/DDTimerKit_Private.modulemap" -Xcc -fmodule-map-file="${PODS_ROOT}/Headers/Public/DDWebImageKit_Private/DDWebImageKit_Private.modulemap" -Xcc -fmodule-map-file="${PODS_ROOT}/Headers/Public/DDZFPlayerKit_Private/DDZFPlayerKit_Private.modulemap" -Xcc -fmodule-map-file="${PODS_ROOT}/Headers/Public/JXCategoryView/JXCategoryView.modulemap" -Xcc -fmodule-map-file="${PODS_ROOT}/Headers/Public/MJRefresh/MJRefresh.modulemap" PODS_BUILD_DIR = ${BUILD_DIR} PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) PODS_PODFILE_DIR_PATH = ${SRCROOT}/. PODS_ROOT = ${SRCROOT}/Pods PODS_XCFRAMEWORKS_BUILD_DIR = $(PODS_CONFIGURATION_BUILD_DIR)/XCFrameworkIntermediates -SWIFT_INCLUDE_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/Alamofire" "${PODS_CONFIGURATION_BUILD_DIR}/DDAutoUIKit_Private" "${PODS_CONFIGURATION_BUILD_DIR}/DDColorKit_Private" "${PODS_CONFIGURATION_BUILD_DIR}/DDControlsKit_Private" "${PODS_CONFIGURATION_BUILD_DIR}/DDFontKit_Private" "${PODS_CONFIGURATION_BUILD_DIR}/DDLogKit_Private" "${PODS_CONFIGURATION_BUILD_DIR}/DDNetworkingOfAlamofireKit_Private" "${PODS_CONFIGURATION_BUILD_DIR}/DDProgressHUDKit_Private" "${PODS_CONFIGURATION_BUILD_DIR}/DDToastKit_Private" "${PODS_CONFIGURATION_BUILD_DIR}/ESTabBarController-swift" "${PODS_CONFIGURATION_BUILD_DIR}/IQKeyboardManagerSwift" "${PODS_CONFIGURATION_BUILD_DIR}/Kingfisher" "${PODS_CONFIGURATION_BUILD_DIR}/RxCocoa" "${PODS_CONFIGURATION_BUILD_DIR}/RxRelay" "${PODS_CONFIGURATION_BUILD_DIR}/RxSwift" "${PODS_CONFIGURATION_BUILD_DIR}/SnapKit" "${PODS_CONFIGURATION_BUILD_DIR}/SwiftEntryKit" "${PODS_CONFIGURATION_BUILD_DIR}/ZLPhotoBrowser" +SWIFT_INCLUDE_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/Alamofire" "${PODS_CONFIGURATION_BUILD_DIR}/DDAudioPlayerKit_Private" "${PODS_CONFIGURATION_BUILD_DIR}/DDAutoUIKit_Private" "${PODS_CONFIGURATION_BUILD_DIR}/DDColorKit_Private" "${PODS_CONFIGURATION_BUILD_DIR}/DDControlsKit_Private" "${PODS_CONFIGURATION_BUILD_DIR}/DDFontKit_Private" "${PODS_CONFIGURATION_BUILD_DIR}/DDLogKit_Private" "${PODS_CONFIGURATION_BUILD_DIR}/DDNetworkingOfAlamofireKit_Private" "${PODS_CONFIGURATION_BUILD_DIR}/DDProgressHUDKit_Private" "${PODS_CONFIGURATION_BUILD_DIR}/DDToastKit_Private" "${PODS_CONFIGURATION_BUILD_DIR}/ESTabBarController-swift" "${PODS_CONFIGURATION_BUILD_DIR}/IQKeyboardManagerSwift" "${PODS_CONFIGURATION_BUILD_DIR}/Kingfisher" "${PODS_CONFIGURATION_BUILD_DIR}/RxCocoa" "${PODS_CONFIGURATION_BUILD_DIR}/RxRelay" "${PODS_CONFIGURATION_BUILD_DIR}/RxSwift" "${PODS_CONFIGURATION_BUILD_DIR}/SnapKit" "${PODS_CONFIGURATION_BUILD_DIR}/SwiftEntryKit" "${PODS_CONFIGURATION_BUILD_DIR}/ZLPhotoBrowser" USE_RECURSIVE_SCRIPT_INPUTS_IN_SCRIPT_PHASES = YES