-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathproject.pbxproj
More file actions
3376 lines (3363 loc) · 274 KB
/
project.pbxproj
File metadata and controls
3376 lines (3363 loc) · 274 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
// !$*UTF8*$!
{
archiveVersion = 1;
classes = {
};
objectVersion = 46;
objects = {
/* Begin PBXBuildFile section */
0179EE91A429E589D4AB274A0F3377BD /* View+MASAdditions.m in Sources */ = {isa = PBXBuildFile; fileRef = F900A986967F10D35D3A36B24F56978A /* View+MASAdditions.m */; };
0325927AF6673DDD36788BD23C4DE5F0 /* TZImageRequestOperation.m in Sources */ = {isa = PBXBuildFile; fileRef = 97A4F49D434F9A9E783C67DCCA834C54 /* TZImageRequestOperation.m */; };
040EEF83977E3302DFB7D023753EA776 /* SDAnimatedImageView.h in Headers */ = {isa = PBXBuildFile; fileRef = 0953D56E2C6C0672F3160461FE873563 /* SDAnimatedImageView.h */; settings = {ATTRIBUTES = (Public, ); }; };
05932841B9453E68BE5D8EEF080C4439 /* NSData+ImageContentType.m in Sources */ = {isa = PBXBuildFile; fileRef = E27B3A81D8BBF5E128B4588354B0A719 /* NSData+ImageContentType.m */; };
06446FDC785AEB9D7D3D871CE82B5F32 /* UIImage+ExtendedCacheData.h in Headers */ = {isa = PBXBuildFile; fileRef = B0C8E25E0FBA5A3EB7BD759656FB6121 /* UIImage+ExtendedCacheData.h */; settings = {ATTRIBUTES = (Public, ); }; };
064B637D341BE3890C9F38EC12355AB6 /* SDImageGIFCoder.m in Sources */ = {isa = PBXBuildFile; fileRef = F1019BA52FB5AE43B9BA36F77FF72140 /* SDImageGIFCoder.m */; };
06E04CE589E00D25656E467FCC1C3BB4 /* SDImageIOCoder.h in Headers */ = {isa = PBXBuildFile; fileRef = AB7876AFA5D103BF45855A064F657C44 /* SDImageIOCoder.h */; settings = {ATTRIBUTES = (Public, ); }; };
07174EA2E9E5A74A113D30706D6247CB /* TZGifPhotoPreviewController.m in Sources */ = {isa = PBXBuildFile; fileRef = FFCCFC6379908479F5CD13A1FBFED54E /* TZGifPhotoPreviewController.m */; };
083448D5017A39D72F947234ADA13D4B /* GKPhotoBrowser.bundle in Resources */ = {isa = PBXBuildFile; fileRef = 7B08E7276EFF46281476210CC4AC077E /* GKPhotoBrowser.bundle */; };
085DE2A58DC2880E2CD877EFE49D5005 /* MASCompositeConstraint.h in Headers */ = {isa = PBXBuildFile; fileRef = 7C1F9E0731FC8567F0FBD246ADDEF303 /* MASCompositeConstraint.h */; settings = {ATTRIBUTES = (Public, ); }; };
09CBCC58679EA581753989250FC48E6A /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 22716E57D0DD8EA2944D767E873D1A07 /* Foundation.framework */; };
0A0B7D1B0ADD3ECC2695DFFB9F05F112 /* BRDatePickerView.m in Sources */ = {isa = PBXBuildFile; fileRef = 36BBA7A00D5CA17EAEAB8840611D1816 /* BRDatePickerView.m */; };
0A831AAC9207D70DAECAB20C9686C4DD /* SDAnimatedImageView+WebCache.m in Sources */ = {isa = PBXBuildFile; fileRef = 183C06949F4CC7BCD97AFAB6AABF81B9 /* SDAnimatedImageView+WebCache.m */; };
0AD5EE5B6032028D88DF64A6FB0D33D4 /* UIView+Layout.m in Sources */ = {isa = PBXBuildFile; fileRef = 5E846F724452B2D1BB091968D832AE9F /* UIView+Layout.m */; };
0BBE46B017BA7AEF259E3327B1EC1948 /* MobileCoreServices.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 53511B36EF5E4DCDA57FDAFDE814B627 /* MobileCoreServices.framework */; };
0BC4EAA9BA1FAC774FEFDAA9A1074371 /* TZProgressView.m in Sources */ = {isa = PBXBuildFile; fileRef = 5E045D2CF81810B461A4381241E249F7 /* TZProgressView.m */; };
0C06AFB784707F29B9E5052A27DA61EE /* TZPhotoPreviewController.h in Headers */ = {isa = PBXBuildFile; fileRef = DFE07BE49B163C9FE9CCEA26BC61B713 /* TZPhotoPreviewController.h */; settings = {ATTRIBUTES = (Public, ); }; };
0E699F1A680D856456F9456953DA2C60 /* SDWebImageManager.m in Sources */ = {isa = PBXBuildFile; fileRef = C5633B5F0E0955462A92CBBA39127D70 /* SDWebImageManager.m */; };
0EE40C01B8F950C3DFC81E023CAD0C2B /* TZPhotoPickerController.m in Sources */ = {isa = PBXBuildFile; fileRef = F22B81C5CAC8C6EC1EB2001F4D88E299 /* TZPhotoPickerController.m */; };
0EF528F8A2D74E868B7B14EE6FD10F9E /* SDmetamacros.h in Headers */ = {isa = PBXBuildFile; fileRef = 00181255AEFD085906A2B95399BBB8F7 /* SDmetamacros.h */; settings = {ATTRIBUTES = (Private, ); }; };
0EF6886529E288581CBFA5F8604D2D59 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 22716E57D0DD8EA2944D767E873D1A07 /* Foundation.framework */; };
0F39B10888E8E7FDD6C28E12F6F26238 /* SDWebImage.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 9FDFB855BF7B374C415F0FEE68241BDF /* SDWebImage.framework */; };
126F9FA3ED8E7C3C93E05BF7341F677E /* UIView+WebCacheOperation.m in Sources */ = {isa = PBXBuildFile; fileRef = 565D9A320F764CB539B0C4D620D34318 /* UIView+WebCacheOperation.m */; };
1275F99C86E4521090A6814C989711BF /* NSObject+MJCoding.m in Sources */ = {isa = PBXBuildFile; fileRef = 5704C263B6A90F82EFC354E9C0C3839B /* NSObject+MJCoding.m */; };
13E6A9857F20ECB9B22A71510062A7B6 /* GKPanGestureRecognizer.m in Sources */ = {isa = PBXBuildFile; fileRef = 8A22BDEB52FD4F6CA42CC31D49D946B2 /* GKPanGestureRecognizer.m */; };
14CADEE8D7EA3769DFBADBBD525B7707 /* GKWebImageProtocol.h in Headers */ = {isa = PBXBuildFile; fileRef = 5FC25E33CE2B7C62AC2CE88F108865E7 /* GKWebImageProtocol.h */; settings = {ATTRIBUTES = (Public, ); }; };
14EB940C792AEC899C74C7D5309C93C9 /* SDWebImageManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 02D92EC950599A6703BA7AD1F23D08F4 /* SDWebImageManager.h */; settings = {ATTRIBUTES = (Public, ); }; };
152006EC4226D2847269F06CEBCCA37C /* NSBundle+BRPickerView.m in Sources */ = {isa = PBXBuildFile; fileRef = ECEE5A5384E82BBCB99800E59644B4C7 /* NSBundle+BRPickerView.m */; };
15C761D054408DD8BCB3FC3481A93977 /* TZAssetCell.h in Headers */ = {isa = PBXBuildFile; fileRef = 010AFAD0CF56CA400888F7C8C9BA5D8C /* TZAssetCell.h */; settings = {ATTRIBUTES = (Public, ); }; };
1616E9442776A8A906C614851DB2A59A /* UIImage+GIF.m in Sources */ = {isa = PBXBuildFile; fileRef = 073F996344AAEEB851174C7AC432DED5 /* UIImage+GIF.m */; };
182DCC523818611B2644EE4E4A5D8E6E /* NSBundle+BRPickerView.h in Headers */ = {isa = PBXBuildFile; fileRef = 11A5E3E224ADED91A7057AC3D9B5C2D4 /* NSBundle+BRPickerView.h */; settings = {ATTRIBUTES = (Public, ); }; };
191B4084BA829E5E7657D75F786975A7 /* Pods-FXFormController_Tests-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 74F9EC670AA5466582248C3C8F8C2C83 /* Pods-FXFormController_Tests-dummy.m */; };
197ACDAA339DCAF9C147071E51CECE1B /* SDGraphicsImageRenderer.h in Headers */ = {isa = PBXBuildFile; fileRef = 5CCD976316862BF6C162BD6FF57D4BEF /* SDGraphicsImageRenderer.h */; settings = {ATTRIBUTES = (Public, ); }; };
1A1DE0EEDC2FABAC5D28D5B35088984F /* SDImageIOCoder.m in Sources */ = {isa = PBXBuildFile; fileRef = CC6BE78C75DA491EA10F0909EAF0B733 /* SDImageIOCoder.m */; };
1B0AA888BC5D62015D1BD6EB0BCECC2F /* SDWebImageOptionsProcessor.h in Headers */ = {isa = PBXBuildFile; fileRef = BFC8EC7CC4AC31FAA9A89D615BFCAC7B /* SDWebImageOptionsProcessor.h */; settings = {ATTRIBUTES = (Public, ); }; };
1BB376B5126010900D75FF6902CBA675 /* SDWebImage.h in Headers */ = {isa = PBXBuildFile; fileRef = 334488769EECADA8F50B3019EC1EA777 /* SDWebImage.h */; settings = {ATTRIBUTES = (Public, ); }; };
1D880A9A9A8D7716589161DC01EA6271 /* MASConstraintMaker.h in Headers */ = {isa = PBXBuildFile; fileRef = 3CD0F3FBC20835638A9B7CBAD5428786 /* MASConstraintMaker.h */; settings = {ATTRIBUTES = (Public, ); }; };
1E7EA11E5405B532C9FD3718C79E0496 /* BRPickerView-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = BCB7E68BF4CDF6624C9B67A21FA2575F /* BRPickerView-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; };
1EE703D0398F79EDB5E596865FC93D7C /* MJExtensionConst.m in Sources */ = {isa = PBXBuildFile; fileRef = 5E3C3D111F66C2E03F97AD10D69758CB /* MJExtensionConst.m */; };
1EE7F02F1B94AE75C3B2654DFA37BED2 /* BRAddressPickerView.m in Sources */ = {isa = PBXBuildFile; fileRef = F77294FCA10404EA0449029F79F4F4BB /* BRAddressPickerView.m */; };
1F4CE6CA18528B411C6DB36363FE7A1F /* NSBundle+TZImagePicker.h in Headers */ = {isa = PBXBuildFile; fileRef = 5D0EE3E5250C9FC2E8C960010ADF5C79 /* NSBundle+TZImagePicker.h */; settings = {ATTRIBUTES = (Public, ); }; };
1F8C8F4F5D96B54B2E87C1344CAADF7A /* MJPropertyType.h in Headers */ = {isa = PBXBuildFile; fileRef = B4A5D28EC80D0B03DF54278E10A6219D /* MJPropertyType.h */; settings = {ATTRIBUTES = (Public, ); }; };
21A887B4F32189C2AB05B4AFFFC065AD /* SDAssociatedObject.h in Headers */ = {isa = PBXBuildFile; fileRef = 41F942152D8A35DE062535A8EF8C3252 /* SDAssociatedObject.h */; settings = {ATTRIBUTES = (Private, ); }; };
22BA4D91FBA1F7F93BD6F5A77DB02137 /* NSDate+BRPickerView.m in Sources */ = {isa = PBXBuildFile; fileRef = 2B0C33D8B47E36B112293EA9F876D77C /* NSDate+BRPickerView.m */; };
2304D4A988EC02C8921DD36ACD5534D0 /* NSObject+MJCoding.h in Headers */ = {isa = PBXBuildFile; fileRef = 45EDAD9BB5079058B432D9B26C965658 /* NSObject+MJCoding.h */; settings = {ATTRIBUTES = (Public, ); }; };
23D94E59B95CA0C19E0D0735F30871FF /* SDImageCacheConfig.m in Sources */ = {isa = PBXBuildFile; fileRef = D79881D6900DE00BAEE2845B0B96D857 /* SDImageCacheConfig.m */; };
24650821D30316DF95B3BDAD830E9827 /* TZImageCropManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 31A9A63BBCEF4F8095A3C581816731B5 /* TZImageCropManager.m */; };
2486E5975F72C7A28BE1F663061D0A4C /* TZImagePickerController-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = B66A0476880932542A88280960C4AE16 /* TZImagePickerController-dummy.m */; };
24A4ACAE0E5FCE26110779DA6D1D9478 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 22716E57D0DD8EA2944D767E873D1A07 /* Foundation.framework */; };
25130F19B996518F596B80FAC7B5C236 /* SDAnimatedImage.h in Headers */ = {isa = PBXBuildFile; fileRef = C050BBBF57D1FE9EE817E091E1FF4C36 /* SDAnimatedImage.h */; settings = {ATTRIBUTES = (Public, ); }; };
25D2155AF912549E437394E0CBAB668A /* SDWeakProxy.h in Headers */ = {isa = PBXBuildFile; fileRef = 58E0E3E54CBD2A2E6EE16DC1BBE1E0F1 /* SDWeakProxy.h */; settings = {ATTRIBUTES = (Private, ); }; };
28214AEC2A6BD5EB66FEDAADB935E120 /* SDImageCoder.m in Sources */ = {isa = PBXBuildFile; fileRef = A3E72BF1C0BD9561C798CB34EED00720 /* SDImageCoder.m */; };
2C2FE9472C6C4C498E0D89DF3AB75CB5 /* UIView+Layout.h in Headers */ = {isa = PBXBuildFile; fileRef = 068C276B79C65449824040340A26642D /* UIView+Layout.h */; settings = {ATTRIBUTES = (Public, ); }; };
2D67B742CEAD3909349BE9058B196B79 /* NSObject+MJClass.m in Sources */ = {isa = PBXBuildFile; fileRef = E2D6010BF0D11EA31C7DD28F6E6F187F /* NSObject+MJClass.m */; };
2DF3BF589E91B420343BA96DA80F5AA6 /* SDAnimatedImageView.m in Sources */ = {isa = PBXBuildFile; fileRef = C905440240A2841CFEE80B58D05035B5 /* SDAnimatedImageView.m */; };
2DF92010F9D211916F39B7CDB8134B3D /* UIScrollView+GKGestureHandle.m in Sources */ = {isa = PBXBuildFile; fileRef = 6F0E1BA34A8F23D6AB97C792C94E5CBB /* UIScrollView+GKGestureHandle.m */; };
2E1CCC937DFCD0FE031859C49C325B81 /* NSImage+Compatibility.h in Headers */ = {isa = PBXBuildFile; fileRef = F4B25BC496F849162BBF652FEEBFE144 /* NSImage+Compatibility.h */; settings = {ATTRIBUTES = (Public, ); }; };
2E290E1D1808E66AF500364639F4D83C /* View+MASShorthandAdditions.h in Headers */ = {isa = PBXBuildFile; fileRef = 8A782E1DD2FAC395AA9553C44219E366 /* View+MASShorthandAdditions.h */; settings = {ATTRIBUTES = (Public, ); }; };
2E87E7E951B91D9AB12DDD5A170D61DD /* SDMemoryCache.m in Sources */ = {isa = PBXBuildFile; fileRef = 26C21EB6D56770A9EF0499F1F099627B /* SDMemoryCache.m */; };
2FCB31A15BC94F9AF2FB7649D7853DE2 /* SDImageCacheDefine.m in Sources */ = {isa = PBXBuildFile; fileRef = 937CF3942F42F89C4769E3B064718331 /* SDImageCacheDefine.m */; };
2FF9AA6D40363C5B7366C9D634ACA049 /* UIImage+ExtendedCacheData.m in Sources */ = {isa = PBXBuildFile; fileRef = D1322533229FAD585EEDFC9F73D6DF82 /* UIImage+ExtendedCacheData.m */; };
3029FFDA6AAB8B54D1D8CD4F851F2E16 /* SDImageAPNGCoder.m in Sources */ = {isa = PBXBuildFile; fileRef = 187B3F7AC3AE5683D664933BCE6A5A09 /* SDImageAPNGCoder.m */; };
304B2C97BE4622BDEDA075F2EC81AFAD /* SDWebImageCacheKeyFilter.h in Headers */ = {isa = PBXBuildFile; fileRef = 95F1AD9E82ADDE27F2DE0EC17F8556EF /* SDWebImageCacheKeyFilter.h */; settings = {ATTRIBUTES = (Public, ); }; };
30809D2357757E8A2C08CE1DCB84673C /* Pods-FXFormController_Example-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 71F76D1FF0DC32A82BF925C23C96A681 /* Pods-FXFormController_Example-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; };
308ED1207803B9E923F11AB1CBE09BE3 /* SDWebImageError.m in Sources */ = {isa = PBXBuildFile; fileRef = E9F26424AD1D3FB068EDE8DBE83180D2 /* SDWebImageError.m */; };
31002C718CE8E4388F11CE1A57FB5DAF /* NSString+MJExtension.h in Headers */ = {isa = PBXBuildFile; fileRef = C6AD60BE58C601A7A44B640796658BBD /* NSString+MJExtension.h */; settings = {ATTRIBUTES = (Public, ); }; };
31A1921A9137ACB9908A991114087A02 /* SDWeakProxy.m in Sources */ = {isa = PBXBuildFile; fileRef = 4B88B8EC24E99BC0A5BFA7036A33B878 /* SDWeakProxy.m */; };
31E9BF93833E9BD28C73F30F54D3B26B /* SDAnimatedImageRep.m in Sources */ = {isa = PBXBuildFile; fileRef = D1F81C374F859424B8B89DFA1EF6EF45 /* SDAnimatedImageRep.m */; };
32F769E38B2EBB1981E0E9EAA0671B5C /* SDWebImageTransition.m in Sources */ = {isa = PBXBuildFile; fileRef = 0F85BCB0E173E939F00C4490DF05AA0A /* SDWebImageTransition.m */; };
33A6ED1984BC1D80518D8F744C82A7D4 /* SDWebImageDefine.h in Headers */ = {isa = PBXBuildFile; fileRef = 483C3562AF565155E9A1F0AC59E422A2 /* SDWebImageDefine.h */; settings = {ATTRIBUTES = (Public, ); }; };
34C3740EF6D897AF6BE81F7B2F7B71D2 /* SDImageCachesManager.h in Headers */ = {isa = PBXBuildFile; fileRef = E60CE77F47EFCC3F819707A05CB3B471 /* SDImageCachesManager.h */; settings = {ATTRIBUTES = (Public, ); }; };
375ADF67F419737057631A84DDD58130 /* MJPropertyKey.h in Headers */ = {isa = PBXBuildFile; fileRef = 6AA28CC208353ADAEF1E20CBFE0291D0 /* MJPropertyKey.h */; settings = {ATTRIBUTES = (Public, ); }; };
37B06396DEAA93807E7BF9CA05F2DFA0 /* BRPickerView-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = BCBC5602704BD5052A9E540415985ED9 /* BRPickerView-dummy.m */; };
3802F88AD0D99B55C3AA228D1CFDBBD5 /* SDImageGIFCoder.h in Headers */ = {isa = PBXBuildFile; fileRef = 4C5ED66C85660C7B6D79AD010E0ADDFD /* SDImageGIFCoder.h */; settings = {ATTRIBUTES = (Public, ); }; };
3877D5C2E215FD879F2162D49F39CA39 /* GKSDWebImageManager.h in Headers */ = {isa = PBXBuildFile; fileRef = B60449E65D31F6886A17E41D19085BF1 /* GKSDWebImageManager.h */; settings = {ATTRIBUTES = (Public, ); }; };
38E7E215D7A003308716C9ACA27A9277 /* TZImageManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 25DD051CAE2346D3F83B383303CE567A /* TZImageManager.m */; };
393E82CE67B81B05136C3FC979A81C3D /* TZVideoPlayerController.m in Sources */ = {isa = PBXBuildFile; fileRef = 2AEA3AEABE604D98D6394675CD846070 /* TZVideoPlayerController.m */; };
397F7B4C1325C9CB139EDE20B4F6A162 /* TZImagePickerController.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 8111A532C76C1078DCE6030D3D44DE93 /* TZImagePickerController.framework */; };
3CBB4D04B7FCD2A1E7A79B897FB13A65 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 22716E57D0DD8EA2944D767E873D1A07 /* Foundation.framework */; };
3D194AC8D5EA783631E56B8CDF8807A8 /* UIScrollView+GKGestureHandle.h in Headers */ = {isa = PBXBuildFile; fileRef = C74A074715141094A0C758A972B56334 /* UIScrollView+GKGestureHandle.h */; settings = {ATTRIBUTES = (Public, ); }; };
3D89DD2BB40A35FBA20521CC9C788418 /* SDImageCodersManager.m in Sources */ = {isa = PBXBuildFile; fileRef = C61A773A9B0A6D3EBCFD8D19DC45A55E /* SDImageCodersManager.m */; };
3DCE9A14A36B71E67CA67D45969F22B1 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 22716E57D0DD8EA2944D767E873D1A07 /* Foundation.framework */; };
3DF98BAFDEB5F7DF51D88C5250DAE736 /* NSObject+MJProperty.h in Headers */ = {isa = PBXBuildFile; fileRef = 58A356E3CE0C71666916263F6DBDEBB9 /* NSObject+MJProperty.h */; settings = {ATTRIBUTES = (Public, ); }; };
3E641D760C1B0F30C11D25693F715013 /* MASViewConstraint.h in Headers */ = {isa = PBXBuildFile; fileRef = 31BB30A5378790A61DF17503FEBB7323 /* MASViewConstraint.h */; settings = {ATTRIBUTES = (Public, ); }; };
41C7C1E322E9BB8FCB6555841E42BD21 /* SDImageIOAnimatedCoderInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = 31C5ADC52D091EE1EF26A2E1A8C1781F /* SDImageIOAnimatedCoderInternal.h */; settings = {ATTRIBUTES = (Private, ); }; };
42CC5F00C8BA513A2C789CF4258BFD17 /* NSObject+MJKeyValue.h in Headers */ = {isa = PBXBuildFile; fileRef = FFD42E1B9FAFF1C417C4765C78CC6613 /* NSObject+MJKeyValue.h */; settings = {ATTRIBUTES = (Public, ); }; };
43B23179E5233FFD99F1CED409C82CBF /* SDWebImagePrefetcher.m in Sources */ = {isa = PBXBuildFile; fileRef = 7AC5DCCEB2492027AEFB50808EAB6EFC /* SDWebImagePrefetcher.m */; };
450F83B60D183AF48C7733C15520B95F /* SDInternalMacros.m in Sources */ = {isa = PBXBuildFile; fileRef = BE990FC6A069DE7F09DFA30B28C92CE0 /* SDInternalMacros.m */; };
45CF18B6BFFB5E6A60DE179730112BED /* SDWebImageIndicator.m in Sources */ = {isa = PBXBuildFile; fileRef = E3FFC37588AC699CEA7DFB00EE3192E1 /* SDWebImageIndicator.m */; };
4618609078D9B228BD5FF516AA3BC19A /* SDWebImageDownloaderConfig.h in Headers */ = {isa = PBXBuildFile; fileRef = F3C33A8430124548FC65A381D5FE9D09 /* SDWebImageDownloaderConfig.h */; settings = {ATTRIBUTES = (Public, ); }; };
4625E1443219B83571DCFA3996D329CE /* Masonry-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = B4A3149E3BE291A15437D775203C6E4E /* Masonry-dummy.m */; };
463188A497A3824777201AB6B93572F0 /* TZImageRequestOperation.h in Headers */ = {isa = PBXBuildFile; fileRef = B81D62227EC30408A57F752AC3731FAB /* TZImageRequestOperation.h */; settings = {ATTRIBUTES = (Public, ); }; };
48528D3DE739109FD0F56C7720DFD82E /* MASUtilities.h in Headers */ = {isa = PBXBuildFile; fileRef = 12BF1B41360ABAC677F8312DA4A4932D /* MASUtilities.h */; settings = {ATTRIBUTES = (Public, ); }; };
48EF7B8463AA1D5B8BBD19EEA22BAFC4 /* SDAsyncBlockOperation.h in Headers */ = {isa = PBXBuildFile; fileRef = 2EE3F003652316C03F2FE4543696CBD4 /* SDAsyncBlockOperation.h */; settings = {ATTRIBUTES = (Private, ); }; };
4ACD5C75B2E64B14FFBDDEF735397B2C /* BRDatePickerView+BR.m in Sources */ = {isa = PBXBuildFile; fileRef = 18B178EF8B8A03AEFB27DE0FD245A655 /* BRDatePickerView+BR.m */; };
4AFD23E2C5E4DA9C1E931A1DB13890FA /* SDImageLoadersManager.m in Sources */ = {isa = PBXBuildFile; fileRef = C572E24898B8B051DFB0734BDCE2B2A7 /* SDImageLoadersManager.m */; };
4B541FEE6F00F8582252B3321D96B103 /* GKPhotoBrowserConfigure.h in Headers */ = {isa = PBXBuildFile; fileRef = AF56834D92F9F050637327349106C97C /* GKPhotoBrowserConfigure.h */; settings = {ATTRIBUTES = (Public, ); }; };
4E593526449A4E2D6CAD7593AEBCF2EE /* UIImage+GIF.h in Headers */ = {isa = PBXBuildFile; fileRef = 9B5706F8C9F9A280FA53A2899E4D6D81 /* UIImage+GIF.h */; settings = {ATTRIBUTES = (Public, ); }; };
4F1C5D4E3BAB407350239A6398076A5C /* SDAsyncBlockOperation.m in Sources */ = {isa = PBXBuildFile; fileRef = D26CAD5E9537C0820106BF47410128A4 /* SDAsyncBlockOperation.m */; };
4FB533121F687613E6103FE5AFC57A5E /* SDImageCache.m in Sources */ = {isa = PBXBuildFile; fileRef = 6796EAC31D13A3B9C07D933116DC6BD3 /* SDImageCache.m */; };
508DE6687F7C989EB99177FD1F42D9FB /* MJProperty.m in Sources */ = {isa = PBXBuildFile; fileRef = B713079E8AB4DD685B340E96B832DBC1 /* MJProperty.m */; };
50A6A30BA895020E798583718E9B5271 /* SDImageGraphics.m in Sources */ = {isa = PBXBuildFile; fileRef = DE6C62FDD8311007F7A922E210376775 /* SDImageGraphics.m */; };
510AE1A0B11DE2915BDD1E0118F286E5 /* TZImagePickerController.h in Headers */ = {isa = PBXBuildFile; fileRef = D5C3C14AB866D0FFE8D557E6DAE72F2A /* TZImagePickerController.h */; settings = {ATTRIBUTES = (Public, ); }; };
566953FAB6BEFB637364500F01ED5529 /* SDImageTransformer.m in Sources */ = {isa = PBXBuildFile; fileRef = AA59F110434A84DF728D27BF06978D34 /* SDImageTransformer.m */; };
5A4916A832C42DDE5EB2EC94E7A24D37 /* NSBezierPath+SDRoundedCorners.m in Sources */ = {isa = PBXBuildFile; fileRef = 5BF1D8B9376B54FB298BCAD3FAD75D74 /* NSBezierPath+SDRoundedCorners.m */; };
5B50FEE64C5D1ECC9D2096439D0CAE81 /* MJFoundation.m in Sources */ = {isa = PBXBuildFile; fileRef = 9CCE6B91261BF7D98D40972D4E9BD35F /* MJFoundation.m */; };
5C3A326BD79CFD725256A267177AF679 /* MASViewAttribute.h in Headers */ = {isa = PBXBuildFile; fileRef = 554A4765A2DEB721E65474636E596924 /* MASViewAttribute.h */; settings = {ATTRIBUTES = (Public, ); }; };
5CC8334B94B429302D2C0CB6C7361580 /* MJExtension-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = F8468B496199AEA72133B49AD78A5807 /* MJExtension-dummy.m */; };
5DCC335111BF955A94C8B161A3AC8318 /* SDImageGraphics.h in Headers */ = {isa = PBXBuildFile; fileRef = 5102BA149B83549F15655E75F66D7391 /* SDImageGraphics.h */; settings = {ATTRIBUTES = (Public, ); }; };
6119D8D0237304647A01D0E2808F4F2C /* SDAssociatedObject.m in Sources */ = {isa = PBXBuildFile; fileRef = 739E89EE90AFE33199085D98CC7682AA /* SDAssociatedObject.m */; };
614A1AA85BAE25995957080A3E39DAE6 /* GKLoadingView.m in Sources */ = {isa = PBXBuildFile; fileRef = 33DA3BE3681231ABB0B5190073FB6E90 /* GKLoadingView.m */; };
625DDD14186C89E8D39C1BCD80738342 /* TZLocationManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 492765AE509E74B2DDC0E8D38F96FCD4 /* TZLocationManager.h */; settings = {ATTRIBUTES = (Public, ); }; };
6361D157B18BEECD73B12DDA860BE08F /* SDWebImageTransition.h in Headers */ = {isa = PBXBuildFile; fileRef = 546B0BE62F8862142499E7D47A68E1E9 /* SDWebImageTransition.h */; settings = {ATTRIBUTES = (Public, ); }; };
659478C3ECB4C1030BDA1DBF3565F891 /* Masonry-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 2A0D9FA97462F5034AC0526FAD515EEA /* Masonry-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; };
66775F7A09F70B75462183439D305760 /* SDImageIOAnimatedCoder.m in Sources */ = {isa = PBXBuildFile; fileRef = 66DEBB720E723798D800A9DA177744D9 /* SDImageIOAnimatedCoder.m */; };
66C54037E8D0F48E1DC76B7AB3AE459D /* GKPanGestureRecognizer.h in Headers */ = {isa = PBXBuildFile; fileRef = D611691A3B4E322F99947BB14D3A22D0 /* GKPanGestureRecognizer.h */; settings = {ATTRIBUTES = (Public, ); }; };
683E139B1933DC6AD7506172020EB2CE /* MASViewConstraint.m in Sources */ = {isa = PBXBuildFile; fileRef = 8988933A06465807230E74A1C01D09CE /* MASViewConstraint.m */; };
6948B8F834DEE0642F35EA5E4C50613F /* SDWebImageCompat.h in Headers */ = {isa = PBXBuildFile; fileRef = 1997572FC0557704A9EC225400A6E59B /* SDWebImageCompat.h */; settings = {ATTRIBUTES = (Public, ); }; };
69AF31A5DB968731087424024AADA183 /* SDWebImageCacheKeyFilter.m in Sources */ = {isa = PBXBuildFile; fileRef = 947BEDA77C33B04268BF9B9B7218B210 /* SDWebImageCacheKeyFilter.m */; };
6C27643064155AC741694D9A5546791B /* SDWebImageDownloaderResponseModifier.h in Headers */ = {isa = PBXBuildFile; fileRef = 119A2FDBCD33AA66EE5E35CDDDEB7325 /* SDWebImageDownloaderResponseModifier.h */; settings = {ATTRIBUTES = (Public, ); }; };
6C6A66F16B256731583AAB8CD9940903 /* SDAnimatedImagePlayer.h in Headers */ = {isa = PBXBuildFile; fileRef = A661EE2E0EB6B310683D194C653361EA /* SDAnimatedImagePlayer.h */; settings = {ATTRIBUTES = (Public, ); }; };
6E0906028D0A4F847C9C7A754DFCF16A /* SDAnimatedImageView+WebCache.h in Headers */ = {isa = PBXBuildFile; fileRef = 59F1DC772D315BEBABC0E3BA2DB84105 /* SDAnimatedImageView+WebCache.h */; settings = {ATTRIBUTES = (Public, ); }; };
6F7FA68A0B4F6CD3A96975EDE3641EC7 /* SDWebImageDownloaderOperation.m in Sources */ = {isa = PBXBuildFile; fileRef = 127B902722F80607FC8745C6A691F04D /* SDWebImageDownloaderOperation.m */; };
70173C926B4239BFCC52391FCC551B1B /* UIImageView+WebCache.h in Headers */ = {isa = PBXBuildFile; fileRef = 7B4DD73F5AD9FF5CBE1A7981F36CF23F /* UIImageView+WebCache.h */; settings = {ATTRIBUTES = (Public, ); }; };
707308F5D74912478A489C416A1A8917 /* SDImageTransformer.h in Headers */ = {isa = PBXBuildFile; fileRef = 7463E9EAADB0040B7DE47C421199AAFF /* SDImageTransformer.h */; settings = {ATTRIBUTES = (Public, ); }; };
71EC39E77AE6D076FF4532A130634609 /* UIView+WebCache.m in Sources */ = {isa = PBXBuildFile; fileRef = 0A71436142ABFEB5A6ECA2BD41513571 /* UIView+WebCache.m */; };
72616285FE6D124DEF90E548A7633AF1 /* SDImageAssetManager.h in Headers */ = {isa = PBXBuildFile; fileRef = CE3573600B6C6D66DFFF3BD19E5B7011 /* SDImageAssetManager.h */; settings = {ATTRIBUTES = (Private, ); }; };
726B69DA1B76C88DACF84B16BFFF253B /* Pods-FXFormController_Tests-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 43CA968327A048E8EEB73E9623AC5FF5 /* Pods-FXFormController_Tests-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; };
730ABBAB5721328B41416BB1C4A31F78 /* GKPhotoBrowser.m in Sources */ = {isa = PBXBuildFile; fileRef = ED66A1BA7DA1B92817A32A4B577B6279 /* GKPhotoBrowser.m */; };
7386ECE15B8D16A5C90AAADB6BD0A300 /* MASConstraint.h in Headers */ = {isa = PBXBuildFile; fileRef = A573B89E0D9D52E265DE5A420F06C325 /* MASConstraint.h */; settings = {ATTRIBUTES = (Public, ); }; };
7466309D7E99E2275BADC5A5A9D703F3 /* GKLoadingView.h in Headers */ = {isa = PBXBuildFile; fileRef = 1DF97F50DF6FA077153ED306F98B36A4 /* GKLoadingView.h */; settings = {ATTRIBUTES = (Public, ); }; };
773203068615EEB373F3E5032EF0D651 /* SDDisplayLink.h in Headers */ = {isa = PBXBuildFile; fileRef = 26D4576C2D9AD46227139F1183A8E6AE /* SDDisplayLink.h */; settings = {ATTRIBUTES = (Private, ); }; };
77B33B2716EE9FFE1D73DF42AF6AD595 /* SDWebImageOperation.m in Sources */ = {isa = PBXBuildFile; fileRef = 3A437D72E7FB543646AE9261E06FAD85 /* SDWebImageOperation.m */; };
77FC1091AF9DC8DDF845781EDA2CABB6 /* SDWebImageDownloaderRequestModifier.m in Sources */ = {isa = PBXBuildFile; fileRef = E98030478B33360DCCBE198055D6BC1D /* SDWebImageDownloaderRequestModifier.m */; };
78CF049309E068515076F9A6800B78EC /* TZImageCropManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 2D96120BCB6E15EC6D6A5F720BA43A25 /* TZImageCropManager.h */; settings = {ATTRIBUTES = (Public, ); }; };
797060DE8D1DA359F649E1D406AD673F /* UIImageView+HighlightedWebCache.h in Headers */ = {isa = PBXBuildFile; fileRef = DF9F74FD490F965E527A69C74E36B50A /* UIImageView+HighlightedWebCache.h */; settings = {ATTRIBUTES = (Public, ); }; };
7AE5AEBF9DB2F01F86BB3783A9C8BF52 /* MJPropertyKey.m in Sources */ = {isa = PBXBuildFile; fileRef = 2B45E24164E9C5EEA9CD66D6584B1BA8 /* MJPropertyKey.m */; };
7B0E30F5200621E79E4EE279A95A7379 /* SDWebImageDownloaderDecryptor.m in Sources */ = {isa = PBXBuildFile; fileRef = 0C48546DCDFFD14354E071B65DF5A58B /* SDWebImageDownloaderDecryptor.m */; };
7BD3AED888C8CA9474412C427C76D86E /* Pods-FXFormController_Example-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 52594094BDA36DECAC77BA3F3754ED15 /* Pods-FXFormController_Example-dummy.m */; };
7D875A0520E0BE99350BA16086586EB4 /* SDImageCacheConfig.h in Headers */ = {isa = PBXBuildFile; fileRef = 3735A0C582118249EF5204C51D6FBEBD /* SDImageCacheConfig.h */; settings = {ATTRIBUTES = (Public, ); }; };
809150D8E724B438552037D763FFCB89 /* MJExtension-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = F01C9ACBD886966A15D0FCB95F1D719F /* MJExtension-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; };
80D4F79C9C716D4A85FB6679D1C6C1A2 /* SDImageAssetManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 4A5CAF8C277A81D5D8C6CF4BB667CF4D /* SDImageAssetManager.m */; };
80F73ED796558C9F1C83342E34EFE77C /* MJProperty.h in Headers */ = {isa = PBXBuildFile; fileRef = 7FDE5FA179565316A9E58D3F1EF45D4B /* MJProperty.h */; settings = {ATTRIBUTES = (Public, ); }; };
81610FA13E14329DC33B4F95BAE31D63 /* UIImage+ForceDecode.h in Headers */ = {isa = PBXBuildFile; fileRef = 8148D837DF8FA06A51A2A148F8F6AC99 /* UIImage+ForceDecode.h */; settings = {ATTRIBUTES = (Public, ); }; };
81EE428515B1A60C1CEB9D644C5C79EB /* ViewController+MASAdditions.m in Sources */ = {isa = PBXBuildFile; fileRef = 68F2AEA45C907DDE94F9BB568CDEBFD4 /* ViewController+MASAdditions.m */; };
828FAF1486B32ECB2A209BEB3CCC3725 /* SDImageFrame.m in Sources */ = {isa = PBXBuildFile; fileRef = CEF19D9A92E44A516BDD59C44B5886BB /* SDImageFrame.m */; };
83A06665A345A9169CAE4D78986A1D54 /* SDWebImageTransitionInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = 4AE223A640D110D44F4E0AA45FAD18B1 /* SDWebImageTransitionInternal.h */; settings = {ATTRIBUTES = (Private, ); }; };
8470A8BC89849947504A46FD69791A7E /* BRBaseView.m in Sources */ = {isa = PBXBuildFile; fileRef = B7104EC3716B8031EBFFC792D2F715AB /* BRBaseView.m */; };
86036EBC98D03AFAF17CA90416877710 /* NSObject+MJKeyValue.m in Sources */ = {isa = PBXBuildFile; fileRef = 9FC19533F051B8888E1263E550E62ED9 /* NSObject+MJKeyValue.m */; };
863D129C1522876E5D30792ED4DF2A3A /* UIImage+MultiFormat.m in Sources */ = {isa = PBXBuildFile; fileRef = D64275A37FD8E189AA93E15652FD7A57 /* UIImage+MultiFormat.m */; };
885746DDC44A32760A38A64860710B59 /* NSArray+MASAdditions.m in Sources */ = {isa = PBXBuildFile; fileRef = 385F5E442A4CA1CF4F62B2FCF291B143 /* NSArray+MASAdditions.m */; };
8920219A41C8BB1A4AE54C42B2F51019 /* GKPhotoBrowser.h in Headers */ = {isa = PBXBuildFile; fileRef = EC869D842A6491BA009DBF57AD345135 /* GKPhotoBrowser.h */; settings = {ATTRIBUTES = (Public, ); }; };
8B57DDDF2516606A196304F27C62E72A /* View+MASAdditions.h in Headers */ = {isa = PBXBuildFile; fileRef = 606E94F504F37D2C1CE673629E39A487 /* View+MASAdditions.h */; settings = {ATTRIBUTES = (Public, ); }; };
8BEC08A966AE808C906F60DE1A2CA580 /* UIButton+WebCache.h in Headers */ = {isa = PBXBuildFile; fileRef = 158E0096979AC990A87BFD890C7A3F0F /* UIButton+WebCache.h */; settings = {ATTRIBUTES = (Public, ); }; };
8CEE0E3A444724F99B81464F9CDCE7D9 /* SDImageFrame.h in Headers */ = {isa = PBXBuildFile; fileRef = 4756FCB9678C0217F767BDAD1EF8068F /* SDImageFrame.h */; settings = {ATTRIBUTES = (Public, ); }; };
8D1943220897F624DF0EC28A6446AA1D /* BRBaseView.h in Headers */ = {isa = PBXBuildFile; fileRef = 10999111C02F58617D0465810728FB3E /* BRBaseView.h */; settings = {ATTRIBUTES = (Public, ); }; };
8D8D5F080BB2B5D10FE6E629815F54D2 /* TZImageManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 33955C99694A045490C3E92503D46951 /* TZImageManager.h */; settings = {ATTRIBUTES = (Public, ); }; };
8E390E6BDD56B0742CCE451DF0CA19FB /* SDWebImageDownloaderConfig.m in Sources */ = {isa = PBXBuildFile; fileRef = 06644CFD3DA5F613A9B0E725E0C0519E /* SDWebImageDownloaderConfig.m */; };
8FBB609DAE16FB8C4A246A78AB817F7A /* BRDatePickerView.h in Headers */ = {isa = PBXBuildFile; fileRef = 5C71B4DE44BD756D617FCE6B999E7B83 /* BRDatePickerView.h */; settings = {ATTRIBUTES = (Public, ); }; };
8FD15F073369071D9568D297A53ABC3F /* NSBezierPath+SDRoundedCorners.h in Headers */ = {isa = PBXBuildFile; fileRef = 840A3B6D04E18CBF5DC587D50D517A0F /* NSBezierPath+SDRoundedCorners.h */; settings = {ATTRIBUTES = (Private, ); }; };
94999C08C951029FD1F2DE03171F7F74 /* SDDeviceHelper.m in Sources */ = {isa = PBXBuildFile; fileRef = 86713DEC179ECA27A2B18CC42B35A4C4 /* SDDeviceHelper.m */; };
94E3AED285C472FACB9B26EA6DE78C39 /* ImageIO.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 0D8CE10D36B0B0C3E1971A2C3104DBB6 /* ImageIO.framework */; };
95D13B1F3B3911E3C8C64A0481E567BB /* UIButton+WebCache.m in Sources */ = {isa = PBXBuildFile; fileRef = 72F165A71623428BD9FE39D4F66229BB /* UIButton+WebCache.m */; };
979F290B94FC216E92E57CF70E6B299A /* GKPhotoView.m in Sources */ = {isa = PBXBuildFile; fileRef = 135D58442CFA1F7D4CF5B4170489E8D6 /* GKPhotoView.m */; };
98F84BC7DCD1609693628F51D09D0132 /* BRResultModel.m in Sources */ = {isa = PBXBuildFile; fileRef = 3CE75DA910E27EDD4130B706C5B77022 /* BRResultModel.m */; };
9B64C0CAD34BAB416CB93E8B829EEF9B /* GKPhotoBrowser-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 5CD9E5ABF99F81FEA821B8691C28D8CE /* GKPhotoBrowser-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; };
9FDA1B5ED3C5971462C9ECC8E12C5D8F /* UIImage+Transform.m in Sources */ = {isa = PBXBuildFile; fileRef = 5EE2826918243AAF1004BCEAA5F7C04C /* UIImage+Transform.m */; };
A06EB51562E5E9D6D27AD5CD893D6681 /* Masonry.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = BDAC8F75E61C698DF716E40C92FF74B3 /* Masonry.framework */; };
A14684BB6CFC83FB8EA19615F89D4771 /* NSDate+BRPickerView.h in Headers */ = {isa = PBXBuildFile; fileRef = 4F5841FAAB5383F14A7DC974BC4FD85B /* NSDate+BRPickerView.h */; settings = {ATTRIBUTES = (Public, ); }; };
A18F2D97E174B0723E0E7D5BFE8AAFD8 /* SDWebImage-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = FDCCCE9091F5BDD76D6C911BCFBF5608 /* SDWebImage-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; };
A251607C0AB31EC71C1D49F83BE85D74 /* UIImage+Metadata.m in Sources */ = {isa = PBXBuildFile; fileRef = 9154207625A932C750840C0404777462 /* UIImage+Metadata.m */; };
A282C02C816DB08789D6E2F6CEF5828D /* SDImageCachesManagerOperation.h in Headers */ = {isa = PBXBuildFile; fileRef = 9CB698B96B8B698409753E3D3E25EECD /* SDImageCachesManagerOperation.h */; settings = {ATTRIBUTES = (Private, ); }; };
A29D73154C880FF0076CE6EFCE98D466 /* SDWebImageDownloaderDecryptor.h in Headers */ = {isa = PBXBuildFile; fileRef = 2BB4AA11CB5B193DD46A262F1BC5FB52 /* SDWebImageDownloaderDecryptor.h */; settings = {ATTRIBUTES = (Public, ); }; };
A2DDF04735D285508B5E2A40BB15902B /* SDWebImageDownloaderResponseModifier.m in Sources */ = {isa = PBXBuildFile; fileRef = CD7364708417BE2CCCA7DA1F644B17E0 /* SDWebImageDownloaderResponseModifier.m */; };
A2EF8C4F06FA3BA8BB9453304C49DCD0 /* TZImagePickerController.bundle in Resources */ = {isa = PBXBuildFile; fileRef = CAF9EDB4EF931AFF593530FA50C946C7 /* TZImagePickerController.bundle */; };
A46375E0C6732BBE3440CFDFBB156E34 /* MASViewAttribute.m in Sources */ = {isa = PBXBuildFile; fileRef = D07217BFDE82E1A3B50F263A0D02DC48 /* MASViewAttribute.m */; };
A5404B50D6265D091422ABF9C9536C96 /* TZImagePickerController-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 4587AFD64BD5CB8F06A8CCCE36FD421D /* TZImagePickerController-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; };
A6864D0F42FEC2190C86580A1AA2D745 /* NSButton+WebCache.h in Headers */ = {isa = PBXBuildFile; fileRef = D5364BF946500DD693BCFC590781009E /* NSButton+WebCache.h */; settings = {ATTRIBUTES = (Public, ); }; };
A6B5A23F2902D2B67E82624CF3072858 /* SDImageCachesManagerOperation.m in Sources */ = {isa = PBXBuildFile; fileRef = 92D96B039F27797DAD49B4929788827C /* SDImageCachesManagerOperation.m */; };
A7FB9F9D21818D57A098059524D32C05 /* SDWebImageCacheSerializer.h in Headers */ = {isa = PBXBuildFile; fileRef = 5CCED2284F78F7609EEA3A6CDFCE97A9 /* SDWebImageCacheSerializer.h */; settings = {ATTRIBUTES = (Public, ); }; };
A8B58BDAE9D9A9EFFA55885ABEE43E09 /* TZPhotoPreviewController.m in Sources */ = {isa = PBXBuildFile; fileRef = EEA57BC2FA85DA0BD138BA4196710A3B /* TZPhotoPreviewController.m */; };
AA3D59A6A432C5899BB83840B3EC1BF7 /* SDWebImageCacheSerializer.m in Sources */ = {isa = PBXBuildFile; fileRef = E7482384CCFE0522E5442A090403BFC4 /* SDWebImageCacheSerializer.m */; };
AAECA08DA2B47B11F788909D622B1AD8 /* SDImageCoder.h in Headers */ = {isa = PBXBuildFile; fileRef = 6734D68029B759041B5164840FF7E55C /* SDImageCoder.h */; settings = {ATTRIBUTES = (Public, ); }; };
AB41C011A705E2BB63239B85EBE52C9F /* FXFormController-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 2898C9BC15FCC52DD730DA0AED789ACD /* FXFormController-dummy.m */; };
AB44A246FF189A590F46189422F85852 /* GKPhotoView.h in Headers */ = {isa = PBXBuildFile; fileRef = 8FBC62480BC70E4E6AFDF1B1CF340F86 /* GKPhotoView.h */; settings = {ATTRIBUTES = (Public, ); }; };
AC0CE311E046368BDF7EC11E394157EF /* SDWebImageDownloaderRequestModifier.h in Headers */ = {isa = PBXBuildFile; fileRef = 51408A003FE57972D955A4B8230CD43C /* SDWebImageDownloaderRequestModifier.h */; settings = {ATTRIBUTES = (Public, ); }; };
AF6B47E198FC1B8C62AC38C38E11C885 /* SDAnimatedImageRep.h in Headers */ = {isa = PBXBuildFile; fileRef = 47E0B7D7F8CA67AE773DA910006073B5 /* SDAnimatedImageRep.h */; settings = {ATTRIBUTES = (Public, ); }; };
AF714034BE2418F2B0A50A5D5863848C /* SDImageCoderHelper.h in Headers */ = {isa = PBXBuildFile; fileRef = 33D603FBC22DAE77185FCA7DA8C2D463 /* SDImageCoderHelper.h */; settings = {ATTRIBUTES = (Public, ); }; };
AF8C4A871765F9D4F39218D4D6DDDCCA /* SDGraphicsImageRenderer.m in Sources */ = {isa = PBXBuildFile; fileRef = 812CFBB740F7CF6A58D026736B751DB9 /* SDGraphicsImageRenderer.m */; };
AFBDFC15D16AFC209361956DAC432838 /* UIImage+MemoryCacheCost.h in Headers */ = {isa = PBXBuildFile; fileRef = 2883AB2CA1A55D1ED4315D3FE0335982 /* UIImage+MemoryCacheCost.h */; settings = {ATTRIBUTES = (Public, ); }; };
AFC9186C22B391110B56D3CE8A23C1E2 /* SDImageCacheDefine.h in Headers */ = {isa = PBXBuildFile; fileRef = F722A08B48C7E24C645F68D8F7F9753B /* SDImageCacheDefine.h */; settings = {ATTRIBUTES = (Public, ); }; };
B04CCCCC5F78F9DE58EC8421FD5D73BC /* Photos.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 45072CF56777C477972EAE07B2EE526B /* Photos.framework */; };
B11B62EC2CD94264DFC0AA44EDF99AEC /* BRAddressPickerView.h in Headers */ = {isa = PBXBuildFile; fileRef = D295E460015E71C12519DE86BEC5832A /* BRAddressPickerView.h */; settings = {ATTRIBUTES = (Public, ); }; };
B31EC72216C20F34BD1E57B23A1DA4C6 /* SDImageAPNGCoder.h in Headers */ = {isa = PBXBuildFile; fileRef = 80D7CF57251A2A90EA4607370C630ED6 /* SDImageAPNGCoder.h */; settings = {ATTRIBUTES = (Public, ); }; };
B3469C2005F8EA5811FDDBD10B01EE7D /* TZPhotoPreviewCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 4A9D0FBDF47FC0228FF0BB7A3E34C9F8 /* TZPhotoPreviewCell.m */; };
B3B6D737C9EAAF67E67ED655C2BDAC77 /* BRAddressModel.m in Sources */ = {isa = PBXBuildFile; fileRef = AA9F5D3CBD08BA758E6BCDE49C6C03AA /* BRAddressModel.m */; };
B3EE8FF8DC7FC6F637A144F9230E80E6 /* UIView+WebCacheOperation.h in Headers */ = {isa = PBXBuildFile; fileRef = 15ACAAACD9C41D44D67B79DE510FEDE8 /* UIView+WebCacheOperation.h */; settings = {ATTRIBUTES = (Public, ); }; };
B4209CC5F10158911091514B24C3FC65 /* SDImageHEICCoderInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = E7100359BEFF69EF3D69633025EABD28 /* SDImageHEICCoderInternal.h */; settings = {ATTRIBUTES = (Private, ); }; };
B447FA39332FB0BBCAC605559DD7627A /* UIImage+Metadata.h in Headers */ = {isa = PBXBuildFile; fileRef = 960AA9C2C1BFB8BDBA43844F71E44B3F /* UIImage+Metadata.h */; settings = {ATTRIBUTES = (Public, ); }; };
B66B7455F8703537B4B916E0A2D604E3 /* SDImageIOAnimatedCoder.h in Headers */ = {isa = PBXBuildFile; fileRef = 556A47B0CDAB87A7DF66BF573BA7D8AB /* SDImageIOAnimatedCoder.h */; settings = {ATTRIBUTES = (Public, ); }; };
B75A083955D2D553AEE8E57FC4F0B93F /* BRPickerView.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = F213FFCE0071839C2668E5570428C577 /* BRPickerView.framework */; };
B84D6B88E42462972227974916895008 /* GKPhotoBrowser.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6E66F42501EB004F756BD3AE5FC75884 /* GKPhotoBrowser.framework */; };
BAA0D47B72569655967A79A70EB3BF90 /* SDWebImageCompat.m in Sources */ = {isa = PBXBuildFile; fileRef = 2D17135C521A299AD8D41059A2E78C83 /* SDWebImageCompat.m */; };
BC19AE076373A566FDF9E2FA65729AE4 /* NSArray+MASShorthandAdditions.h in Headers */ = {isa = PBXBuildFile; fileRef = FA3AADF6F0827B7F0DDD644A596C74A6 /* NSArray+MASShorthandAdditions.h */; settings = {ATTRIBUTES = (Public, ); }; };
BD55E1D4B071E1F6D2B33A149DD55D2B /* TZPhotoPickerController.h in Headers */ = {isa = PBXBuildFile; fileRef = F7EC0D040E64B7EDD847EEF32B655594 /* TZPhotoPickerController.h */; settings = {ATTRIBUTES = (Public, ); }; };
BF0B6EEE4F782359392BB9F37540788D /* SDWebImageError.h in Headers */ = {isa = PBXBuildFile; fileRef = 619FDBD27467250C026BAFBD0493AAA6 /* SDWebImageError.h */; settings = {ATTRIBUTES = (Public, ); }; };
C0D9D68D35C0ACA824A9EE6B1005FFFB /* UIColor+SDHexString.m in Sources */ = {isa = PBXBuildFile; fileRef = E24D829E2160D73554E276E51731ADCC /* UIColor+SDHexString.m */; };
C0E4BD00CABD44E93A4930898620F82B /* BRPickerView.h in Headers */ = {isa = PBXBuildFile; fileRef = ACC16CE075F7D5F049F8C335FAF4BCEB /* BRPickerView.h */; settings = {ATTRIBUTES = (Public, ); }; };
C1CFBBC4A817EC41204BFAD88CA82E27 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 22716E57D0DD8EA2944D767E873D1A07 /* Foundation.framework */; };
C317EB7619509D081F2BDCDA3F336A26 /* SDWebImageIndicator.h in Headers */ = {isa = PBXBuildFile; fileRef = 5F98098538404111185920663B524BD3 /* SDWebImageIndicator.h */; settings = {ATTRIBUTES = (Public, ); }; };
C377348F18E9FA98AA834040A1DC0202 /* GKPhoto.h in Headers */ = {isa = PBXBuildFile; fileRef = 5EEF7DC22A2130EBA13D3C628B4C910B /* GKPhoto.h */; settings = {ATTRIBUTES = (Public, ); }; };
C6B8288DDEFA2EEBD3167C0B3939DC89 /* SDImageLoader.h in Headers */ = {isa = PBXBuildFile; fileRef = D5A1E9B8E98E241AABCE94A436B9B8EA /* SDImageLoader.h */; settings = {ATTRIBUTES = (Public, ); }; };
C6EEDF4375A08232DC0510E08092AC99 /* UIImage+ForceDecode.m in Sources */ = {isa = PBXBuildFile; fileRef = EA1442F4D634F179FD91B7C8BF1DBF9F /* UIImage+ForceDecode.m */; };
C76A70CCC7BCC9937154BF97A04E24E2 /* SDAnimatedImage.m in Sources */ = {isa = PBXBuildFile; fileRef = 9938C829EBD74DE2B4B2BFAABCFC8DF6 /* SDAnimatedImage.m */; };
C7808E8624BEE28A0088896D /* FXFormViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = C7808E4724BEE28A0088896D /* FXFormViewController.m */; };
C7808E8724BEE28A0088896D /* FXFormViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = C7808E4824BEE28A0088896D /* FXFormViewController.h */; };
C7808E8924BEE28A0088896D /* FXFormModelTool.m in Sources */ = {isa = PBXBuildFile; fileRef = C7808E4B24BEE28A0088896D /* FXFormModelTool.m */; };
C7808E8A24BEE28A0088896D /* NSObject+StandardLog.m in Sources */ = {isa = PBXBuildFile; fileRef = C7808E4C24BEE28A0088896D /* NSObject+StandardLog.m */; };
C7808E8B24BEE28A0088896D /* FXFormPickerTools.h in Headers */ = {isa = PBXBuildFile; fileRef = C7808E4D24BEE28A0088896D /* FXFormPickerTools.h */; };
C7808E8C24BEE28A0088896D /* FXFormModelTool.h in Headers */ = {isa = PBXBuildFile; fileRef = C7808E4E24BEE28A0088896D /* FXFormModelTool.h */; };
C7808E8D24BEE28A0088896D /* FXFormPickerTools.m in Sources */ = {isa = PBXBuildFile; fileRef = C7808E4F24BEE28A0088896D /* FXFormPickerTools.m */; };
C7808E8E24BEE28A0088896D /* UICollectionViewLeftAlignedLayout.h in Headers */ = {isa = PBXBuildFile; fileRef = C7808E5224BEE28A0088896D /* UICollectionViewLeftAlignedLayout.h */; };
C7808E8F24BEE28A0088896D /* FXBoxViewCell.m in Sources */ = {isa = PBXBuildFile; fileRef = C7808E5324BEE28A0088896D /* FXBoxViewCell.m */; };
C7808E9024BEE28A0088896D /* FXCheckBoxCell.h in Headers */ = {isa = PBXBuildFile; fileRef = C7808E5424BEE28A0088896D /* FXCheckBoxCell.h */; };
C7808E9124BEE28A0088896D /* FXBoxItemCell.m in Sources */ = {isa = PBXBuildFile; fileRef = C7808E5524BEE28A0088896D /* FXBoxItemCell.m */; };
C7808E9224BEE28A0088896D /* FXRadioBoxCell.m in Sources */ = {isa = PBXBuildFile; fileRef = C7808E5624BEE28A0088896D /* FXRadioBoxCell.m */; };
C7808E9324BEE28A0088896D /* UICollectionViewLeftAlignedLayout.m in Sources */ = {isa = PBXBuildFile; fileRef = C7808E5724BEE28A0088896D /* UICollectionViewLeftAlignedLayout.m */; };
C7808E9424BEE28A0088896D /* FXBoxViewCell.h in Headers */ = {isa = PBXBuildFile; fileRef = C7808E5824BEE28A0088896D /* FXBoxViewCell.h */; };
C7808E9524BEE28A0088896D /* FXCheckBoxCell.m in Sources */ = {isa = PBXBuildFile; fileRef = C7808E5924BEE28A0088896D /* FXCheckBoxCell.m */; };
C7808E9624BEE28A0088896D /* FXRadioBoxCell.h in Headers */ = {isa = PBXBuildFile; fileRef = C7808E5A24BEE28A0088896D /* FXRadioBoxCell.h */; };
C7808E9724BEE28A0088896D /* FXBoxItemCell.h in Headers */ = {isa = PBXBuildFile; fileRef = C7808E5B24BEE28A0088896D /* FXBoxItemCell.h */; };
C7808E9824BEE28A0088896D /* FXTextViewCell.h in Headers */ = {isa = PBXBuildFile; fileRef = C7808E5D24BEE28A0088896D /* FXTextViewCell.h */; };
C7808E9924BEE28A0088896D /* FXTextViewCell.m in Sources */ = {isa = PBXBuildFile; fileRef = C7808E5E24BEE28A0088896D /* FXTextViewCell.m */; };
C7808E9A24BEE28A0088896D /* FXMediaItemCell.m in Sources */ = {isa = PBXBuildFile; fileRef = C7808E6024BEE28A0088896D /* FXMediaItemCell.m */; };
C7808E9B24BEE28A0088896D /* FXMediaViewCell.m in Sources */ = {isa = PBXBuildFile; fileRef = C7808E6124BEE28A0088896D /* FXMediaViewCell.m */; };
C7808E9C24BEE28A0088896D /* FXMediaItemCell.h in Headers */ = {isa = PBXBuildFile; fileRef = C7808E6224BEE28A0088896D /* FXMediaItemCell.h */; };
C7808E9D24BEE28A0088896D /* FXMediaViewCell.h in Headers */ = {isa = PBXBuildFile; fileRef = C7808E6324BEE28A0088896D /* FXMediaViewCell.h */; };
C7808E9E24BEE28A0088896D /* FXBaseCollectionCell.h in Headers */ = {isa = PBXBuildFile; fileRef = C7808E6524BEE28A0088896D /* FXBaseCollectionCell.h */; };
C7808E9F24BEE28A0088896D /* FXBaseViewCell.h in Headers */ = {isa = PBXBuildFile; fileRef = C7808E6624BEE28A0088896D /* FXBaseViewCell.h */; };
C7808EA024BEE28A0088896D /* FXBaseCollectionCell.m in Sources */ = {isa = PBXBuildFile; fileRef = C7808E6724BEE28A0088896D /* FXBaseCollectionCell.m */; };
C7808EA124BEE28A0088896D /* FXBaseViewCell.m in Sources */ = {isa = PBXBuildFile; fileRef = C7808E6824BEE28A0088896D /* FXBaseViewCell.m */; };
C7808EA224BEE28A0088896D /* FXFormHeaderView.m in Sources */ = {isa = PBXBuildFile; fileRef = C7808E6A24BEE28A0088896D /* FXFormHeaderView.m */; };
C7808EA324BEE28A0088896D /* FXFormHeaderView.h in Headers */ = {isa = PBXBuildFile; fileRef = C7808E6B24BEE28A0088896D /* FXFormHeaderView.h */; };
C7808EA424BEE28A0088896D /* FXIDCardKeyboardView.h in Headers */ = {isa = PBXBuildFile; fileRef = C7808E6D24BEE28A0088896D /* FXIDCardKeyboardView.h */; };
C7808EA524BEE28A0088896D /* FXIDCardKeyboardView.m in Sources */ = {isa = PBXBuildFile; fileRef = C7808E6E24BEE28A0088896D /* FXIDCardKeyboardView.m */; };
C7808EA624BEE28A0088896D /* FXSwitchCell.h in Headers */ = {isa = PBXBuildFile; fileRef = C7808E7024BEE28A0088896D /* FXSwitchCell.h */; };
C7808EA724BEE28A0088896D /* FXSwitchCell.m in Sources */ = {isa = PBXBuildFile; fileRef = C7808E7124BEE28A0088896D /* FXSwitchCell.m */; };
C7808EA824BEE28A0088896D /* FXLabelCell.m in Sources */ = {isa = PBXBuildFile; fileRef = C7808E7324BEE28A0088896D /* FXLabelCell.m */; };
C7808EA924BEE28A0088896D /* FXLabelCell.h in Headers */ = {isa = PBXBuildFile; fileRef = C7808E7424BEE28A0088896D /* FXLabelCell.h */; };
C7808EAA24BEE28A0088896D /* FXArrowCell.h in Headers */ = {isa = PBXBuildFile; fileRef = C7808E7624BEE28A0088896D /* FXArrowCell.h */; };
C7808EAB24BEE28A0088896D /* FXArrowCell.m in Sources */ = {isa = PBXBuildFile; fileRef = C7808E7724BEE28A0088896D /* FXArrowCell.m */; };
C7808EAC24BEE28A0088896D /* FXTextFieldCell.h in Headers */ = {isa = PBXBuildFile; fileRef = C7808E7924BEE28A0088896D /* FXTextFieldCell.h */; };
C7808EAD24BEE28A0088896D /* FXTextFieldCell.m in Sources */ = {isa = PBXBuildFile; fileRef = C7808E7A24BEE28A0088896D /* FXTextFieldCell.m */; };
C7808EAE24BEE28A0088896D /* FXMediaItem.h in Headers */ = {isa = PBXBuildFile; fileRef = C7808E7C24BEE28A0088896D /* FXMediaItem.h */; };
C7808EAF24BEE28A0088896D /* FXFormHeaderModel.h in Headers */ = {isa = PBXBuildFile; fileRef = C7808E7D24BEE28A0088896D /* FXFormHeaderModel.h */; };
C7808EB024BEE28A0088896D /* FXFormModel.h in Headers */ = {isa = PBXBuildFile; fileRef = C7808E7E24BEE28A0088896D /* FXFormModel.h */; };
C7808EB124BEE28A0088896D /* FXRadioItem.h in Headers */ = {isa = PBXBuildFile; fileRef = C7808E7F24BEE28A0088896D /* FXRadioItem.h */; };
C7808EB224BEE28A0088896D /* FXBoxItem.m in Sources */ = {isa = PBXBuildFile; fileRef = C7808E8024BEE28A0088896D /* FXBoxItem.m */; };
C7808EB324BEE28A0088896D /* FXMediaItem.m in Sources */ = {isa = PBXBuildFile; fileRef = C7808E8124BEE28A0088896D /* FXMediaItem.m */; };
C7808EB424BEE28A0088896D /* FXRadioItem.m in Sources */ = {isa = PBXBuildFile; fileRef = C7808E8224BEE28A0088896D /* FXRadioItem.m */; };
C7808EB524BEE28A0088896D /* FXFormModel.m in Sources */ = {isa = PBXBuildFile; fileRef = C7808E8324BEE28A0088896D /* FXFormModel.m */; };
C7808EB624BEE28A0088896D /* FXFormHeaderModel.m in Sources */ = {isa = PBXBuildFile; fileRef = C7808E8424BEE28A0088896D /* FXFormHeaderModel.m */; };
C7808EB724BEE28A0088896D /* FXBoxItem.h in Headers */ = {isa = PBXBuildFile; fileRef = C7808E8524BEE28A0088896D /* FXBoxItem.h */; };
C900FFB0F75FDC0C7E4B00F81BE70A1A /* UIKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 9CB99B907099B83D2522ABB4119C3540 /* UIKit.framework */; };
CAEA1D06DA59811BC76750EDD6735460 /* GKPhoto.m in Sources */ = {isa = PBXBuildFile; fileRef = 485B2A79E513DC559F3CCBA44D4101BF /* GKPhoto.m */; };
CE429D3058ED6B15CDE7B7F1D6998DBE /* NSBundle+TZImagePicker.m in Sources */ = {isa = PBXBuildFile; fileRef = 0BC38312CAB714EB3F0062CDF35FB7EF /* NSBundle+TZImagePicker.m */; };
CEE029BD34FEA9C68D852368614B2105 /* UIColor+SDHexString.h in Headers */ = {isa = PBXBuildFile; fileRef = 5632A73F49D0C303D618BB2B5B8BC1E1 /* UIColor+SDHexString.h */; settings = {ATTRIBUTES = (Private, ); }; };
CF4CCFD3139300D0F3678E1457ACDB22 /* BRStringPickerView.m in Sources */ = {isa = PBXBuildFile; fileRef = A99B9B84A68CAE8A74F4FCF9CD8B9935 /* BRStringPickerView.m */; };
CF5D65D9A1EB04B5B4374A6425AAAAD7 /* NSLayoutConstraint+MASDebugAdditions.m in Sources */ = {isa = PBXBuildFile; fileRef = 5D9BFDF63892EAC9C830FCCDB0D57D62 /* NSLayoutConstraint+MASDebugAdditions.m */; };
CFAB15101EB895ADCA26627659A01C22 /* BRAddressModel.h in Headers */ = {isa = PBXBuildFile; fileRef = 3FC15A696B55CB3BAD8BB032F298F6F3 /* BRAddressModel.h */; settings = {ATTRIBUTES = (Public, ); }; };
CFF238A145820C52EED3F5707608F64B /* NSObject+MJProperty.m in Sources */ = {isa = PBXBuildFile; fileRef = 09B3FDDC3DFB9460C5DEBBAF1D893772 /* NSObject+MJProperty.m */; };
D02D6D8E1C52BF367DEACFD596A75765 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 22716E57D0DD8EA2944D767E873D1A07 /* Foundation.framework */; };
D0F051886CF0C51DFD540DEF9B12BCD3 /* SDInternalMacros.h in Headers */ = {isa = PBXBuildFile; fileRef = B7F944652F79B387C13E1798093DD2C1 /* SDInternalMacros.h */; settings = {ATTRIBUTES = (Private, ); }; };
D1313DD07AD2B4319EC36B9F956126A3 /* GKPhotoBrowser-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 23A8CF0B8BCA011BCDFAD8426314CB31 /* GKPhotoBrowser-dummy.m */; };
D152DB68E7831DFE8D2BB1610717F051 /* SDWebImageDownloader.h in Headers */ = {isa = PBXBuildFile; fileRef = BB751BE2CD71A7BB251B78E284321801 /* SDWebImageDownloader.h */; settings = {ATTRIBUTES = (Public, ); }; };
D1604799158C12200BD37C8E1BE2FEFC /* SDDiskCache.h in Headers */ = {isa = PBXBuildFile; fileRef = 6342350798677878B558AAFA367B3DFD /* SDDiskCache.h */; settings = {ATTRIBUTES = (Public, ); }; };
D2515B33F62E00B7896A91345BACA167 /* FXFormController-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = B9C1C0EE8E7528F1083DE3C87FFD3BED /* FXFormController-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; };
D29647F79E015E28FA632FC4EFC8716E /* SDFileAttributeHelper.m in Sources */ = {isa = PBXBuildFile; fileRef = 9E5D4C6ACEC56D88F155E7C7D256B37F /* SDFileAttributeHelper.m */; };
D375EB370B5BB37261C1CFE2DBAD2FD4 /* MASCompositeConstraint.m in Sources */ = {isa = PBXBuildFile; fileRef = 7EB3D159D0DAD1DB9C927555874F8057 /* MASCompositeConstraint.m */; };
D3E7C0F2332371D9049E4A56DDD2611F /* MJFoundation.h in Headers */ = {isa = PBXBuildFile; fileRef = 79E743ED41FAF29C3D61E96DF27FFF6F /* MJFoundation.h */; settings = {ATTRIBUTES = (Public, ); }; };
D3FEB89969D7E31DCAFF628B517CD8A1 /* NSObject+MJClass.h in Headers */ = {isa = PBXBuildFile; fileRef = 51726AD75A2CF30D6B1D3CB8C5B23E05 /* NSObject+MJClass.h */; settings = {ATTRIBUTES = (Public, ); }; };
D456495AD8C7A21D9BA9E4219238E7AE /* SDWebImageOptionsProcessor.m in Sources */ = {isa = PBXBuildFile; fileRef = 0CB9CA7E5C9749A1ECC56B8DD74ECDD7 /* SDWebImageOptionsProcessor.m */; };
D77BB943B4F1A5424FEC7A59130B09CD /* SDWebImageDownloaderOperation.h in Headers */ = {isa = PBXBuildFile; fileRef = 4DC8B31D51CF1F905B9F2CB4B020F033 /* SDWebImageDownloaderOperation.h */; settings = {ATTRIBUTES = (Public, ); }; };
D80AF12060D862BCE56ACA3F8BD2FF7E /* SDImageHEICCoder.h in Headers */ = {isa = PBXBuildFile; fileRef = 0213029283267FB1114DEE883D4E50CF /* SDImageHEICCoder.h */; settings = {ATTRIBUTES = (Public, ); }; };
D95EE49450F8FE515B11BEE4AD47ACE7 /* TZGifPhotoPreviewController.h in Headers */ = {isa = PBXBuildFile; fileRef = 05BC26DA17D70875083637C98BD21C23 /* TZGifPhotoPreviewController.h */; settings = {ATTRIBUTES = (Public, ); }; };
D9A4CF5B2EB8F6E9BF7F76700D05D52E /* SDWebImageDownloader.m in Sources */ = {isa = PBXBuildFile; fileRef = DF1F4361F70EC6A80EAE040EDE1C86F9 /* SDWebImageDownloader.m */; };
D9F4FC3D9CB9EEBB633F0F98DF465BEC /* UIImageView+HighlightedWebCache.m in Sources */ = {isa = PBXBuildFile; fileRef = 1FA21C0EEFFC5ED863086A2A9E204BFC /* UIImageView+HighlightedWebCache.m */; };
DB50BB9EA3198FCAB3EEF9AAFDE89DED /* BRDatePickerView+BR.h in Headers */ = {isa = PBXBuildFile; fileRef = B342330BE6D91DDC7413D2A7A93D2E82 /* BRDatePickerView+BR.h */; settings = {ATTRIBUTES = (Public, ); }; };
DB9DEC845216CE62262C30FBF9C6DB8C /* BRResultModel.h in Headers */ = {isa = PBXBuildFile; fileRef = 73F5D3F74D296E272A622178130C351B /* BRResultModel.h */; settings = {ATTRIBUTES = (Public, ); }; };
DCC03CD56E28C1AEA1596381B3DAAD48 /* BRPickerStyle.m in Sources */ = {isa = PBXBuildFile; fileRef = CC1EC8AFB357FEA65C8A337C5B63E1AC /* BRPickerStyle.m */; };
DD0479C79E7FD996AC7E0267B2FE1426 /* TZLocationManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 7B3AD152227E5EB61802D27A02B54546 /* TZLocationManager.m */; };
DD1A0C9B25030A5A62A104F98EF49FFD /* MASLayoutConstraint.h in Headers */ = {isa = PBXBuildFile; fileRef = C44355054866A4DBB399D0A85EF2ECAF /* MASLayoutConstraint.h */; settings = {ATTRIBUTES = (Public, ); }; };
E02BFFE03C682EA43B287B27E1C2ECD3 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 22716E57D0DD8EA2944D767E873D1A07 /* Foundation.framework */; };
E1373D99B81125381872E5A0715A0765 /* SDDisplayLink.m in Sources */ = {isa = PBXBuildFile; fileRef = D7D7338A674DD6F30F67E37C325123C9 /* SDDisplayLink.m */; };
E1A5083FFCE789C648316100F40BBE24 /* TZPhotoPreviewCell.h in Headers */ = {isa = PBXBuildFile; fileRef = A6C5D862CBC232ED0FF36E185BC7AD31 /* TZPhotoPreviewCell.h */; settings = {ATTRIBUTES = (Public, ); }; };
E28CDE7C3E80B25A3E0995236B0BA1BC /* BRPickerStyle.h in Headers */ = {isa = PBXBuildFile; fileRef = DD8D63B50BCA423ABFE5E90C502DFDC1 /* BRPickerStyle.h */; settings = {ATTRIBUTES = (Public, ); }; };
E2DE9BDD31295CA1AD6BD9B2F3512387 /* GKPhotoManager.m in Sources */ = {isa = PBXBuildFile; fileRef = EA752B4E779E9EDAC39224AE00EF7BFD /* GKPhotoManager.m */; };
E35C84F24C00E0D6ECB1684BF1E9B07E /* GKPhotoManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 1B94FE6D00F3B07E447E2B833E15674A /* GKPhotoManager.h */; settings = {ATTRIBUTES = (Public, ); }; };
E48862D838437942FF94A79515D5A9AA /* SDImageLoadersManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 14D8258164EB30E2D5B807F42E723BFC /* SDImageLoadersManager.h */; settings = {ATTRIBUTES = (Public, ); }; };
E52CD946943240ADF05879C2F339536F /* MASConstraint+Private.h in Headers */ = {isa = PBXBuildFile; fileRef = 3307EAB4E6263CD37C67CFB164B8EDA2 /* MASConstraint+Private.h */; settings = {ATTRIBUTES = (Public, ); }; };
E591AE577E1D2F64755126FB2D16C749 /* NSLayoutConstraint+MASDebugAdditions.h in Headers */ = {isa = PBXBuildFile; fileRef = 03A9B6E3281309BD5763C8FA8DD56FBD /* NSLayoutConstraint+MASDebugAdditions.h */; settings = {ATTRIBUTES = (Public, ); }; };
E5BD0722D5D08753A37D3B79999EC4E6 /* MASConstraint.m in Sources */ = {isa = PBXBuildFile; fileRef = 0A08BA1CF528A602C3E28865A72F4889 /* MASConstraint.m */; };
E605BB88EBD53A6EABAA36BFEB7BFF04 /* SDImageLoader.m in Sources */ = {isa = PBXBuildFile; fileRef = F03676BB20270BFFA718F02CBCC21C5C /* SDImageLoader.m */; };
E65C4D5DD0A9C658DD84E8154521556B /* SDWebImage-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 9F826123B4A67D1FFDF4EFAE02508585 /* SDWebImage-dummy.m */; };
E6B0544B87FE667246B49A837ECA3BC0 /* TZAssetModel.h in Headers */ = {isa = PBXBuildFile; fileRef = 9BE1CA0A45B1B8CD72E4CD27615C6EA8 /* TZAssetModel.h */; settings = {ATTRIBUTES = (Public, ); }; };
E6BCE95E467D75DBA89EAD0CD360E6A2 /* NSString+MJExtension.m in Sources */ = {isa = PBXBuildFile; fileRef = 978203B22071A1774A8D330001B5DB1A /* NSString+MJExtension.m */; };
E80991CA89330AABB703AC1600DDAE07 /* SDMemoryCache.h in Headers */ = {isa = PBXBuildFile; fileRef = 2E3FDD9B3A717005492B362E5A649254 /* SDMemoryCache.h */; settings = {ATTRIBUTES = (Public, ); }; };
E84B38F31250EB830D59953535390169 /* SDWebImagePrefetcher.h in Headers */ = {isa = PBXBuildFile; fileRef = F8B9F271C76CD6453388F9473049CB94 /* SDWebImagePrefetcher.h */; settings = {ATTRIBUTES = (Public, ); }; };
E88A2FB05AB6368447D41BB8F025173B /* UIImage+MemoryCacheCost.m in Sources */ = {isa = PBXBuildFile; fileRef = A20AE683620BF8533E0BDA91A7D17006 /* UIImage+MemoryCacheCost.m */; };
E900292F83E6F3519535CBCE18CA169C /* TZAssetCell.m in Sources */ = {isa = PBXBuildFile; fileRef = B400721BC7B16A228C0D9A15984F6CBF /* TZAssetCell.m */; };
E9D70FDFDF617710862C9D538BECD144 /* SDImageCachesManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 43D5EC5E881495A31051E9F656B1E460 /* SDImageCachesManager.m */; };
EABE3E293A100CDA3097B0BD12E49146 /* SDImageHEICCoder.m in Sources */ = {isa = PBXBuildFile; fileRef = 32A5A49A28661853A373A3269B747499 /* SDImageHEICCoder.m */; };
EAF84FF24E8EC76CF9DBD6EA8C30E76A /* SDFileAttributeHelper.h in Headers */ = {isa = PBXBuildFile; fileRef = D99C5CA7D0A699DA847A7D7F009D5B78 /* SDFileAttributeHelper.h */; settings = {ATTRIBUTES = (Private, ); }; };
EE10C6DF2356CEE8295849400677F9AC /* BRPickerView.bundle in Resources */ = {isa = PBXBuildFile; fileRef = 96B7A02C4AC93AA0DBC9CB3B576ED23F /* BRPickerView.bundle */; };
EE9A8A2CE3ACFACA8F43374767DC5553 /* SDDiskCache.m in Sources */ = {isa = PBXBuildFile; fileRef = 473DE0D65B690E15CEC40423AA18FE98 /* SDDiskCache.m */; };
EFCA799587748E537C2A99597FABDEBC /* BRPickerViewMacro.h in Headers */ = {isa = PBXBuildFile; fileRef = 79B843E7BC6CFAF5C8A67FEB6A980F49 /* BRPickerViewMacro.h */; settings = {ATTRIBUTES = (Public, ); }; };
F0021C06B98B3E8392BA0E67A23685B0 /* MJExtension.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 7721EAB8A54B2AA98A8A7902660E7058 /* MJExtension.framework */; };
F01C803FB48D008EC66768C06884C336 /* MJExtension.h in Headers */ = {isa = PBXBuildFile; fileRef = A7446B820243D23BC554335868E4A7EC /* MJExtension.h */; settings = {ATTRIBUTES = (Public, ); }; };
F0C101BF0FF2F2E5E61C094E638359AE /* MASLayoutConstraint.m in Sources */ = {isa = PBXBuildFile; fileRef = C97A7CD7D4256BD0894F1538E6375D02 /* MASLayoutConstraint.m */; };
F14ABEF08017C2BEFF9AD3C82DE919AD /* MJExtensionConst.h in Headers */ = {isa = PBXBuildFile; fileRef = 65796EC53C00EB2E256F3B5391C1FD9D /* MJExtensionConst.h */; settings = {ATTRIBUTES = (Public, ); }; };
F25C211CC90B30D2F480F27621FADA8D /* NSButton+WebCache.m in Sources */ = {isa = PBXBuildFile; fileRef = 28B18BC1B7D20721639AA0640DDA3E36 /* NSButton+WebCache.m */; };
F2A95AE99BFCB4FE6C76610DB3E0CBDD /* NSImage+Compatibility.m in Sources */ = {isa = PBXBuildFile; fileRef = B58F67909BC389F996E40D4C80F5B004 /* NSImage+Compatibility.m */; };
F2ABC9701350EA4A3177F8B0BC77FF59 /* SDWebImageDefine.m in Sources */ = {isa = PBXBuildFile; fileRef = 0BB51ADC181A27D10A3ADFC67AA5E506 /* SDWebImageDefine.m */; };
F3DE306FB82302CEF25DE2F9FDDDD792 /* SDImageCache.h in Headers */ = {isa = PBXBuildFile; fileRef = 3D11E73C07DE078DD6385DB3AD3B5E03 /* SDImageCache.h */; settings = {ATTRIBUTES = (Public, ); }; };
F3E13AFC4C1ABE32768CE0609F563465 /* SDImageCodersManager.h in Headers */ = {isa = PBXBuildFile; fileRef = D5D6BBE291BE69780D97528B403ADE9F /* SDImageCodersManager.h */; settings = {ATTRIBUTES = (Public, ); }; };
F4346D771089182AE27DDF742BA57B4A /* SDWebImage.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 9FDFB855BF7B374C415F0FEE68241BDF /* SDWebImage.framework */; };
F4D2C0F91899464FC348437F250FDEEF /* TZProgressView.h in Headers */ = {isa = PBXBuildFile; fileRef = 137C88BCF34AC430E68462F7A4156D6A /* TZProgressView.h */; settings = {ATTRIBUTES = (Public, ); }; };
F66BD4E044BB81578E21A1502736BB7B /* MASConstraintMaker.m in Sources */ = {isa = PBXBuildFile; fileRef = AE568EB10C65E23FABC9690B4A929887 /* MASConstraintMaker.m */; };
F7922AFC1FB2BF747B44C7135F6CA3BA /* UIImage+MultiFormat.h in Headers */ = {isa = PBXBuildFile; fileRef = F3138846C6423F9386DE9BDD29BC83C3 /* UIImage+MultiFormat.h */; settings = {ATTRIBUTES = (Public, ); }; };
F7D99CDCACC2C3B0083C3062FE957E09 /* NSArray+MASAdditions.h in Headers */ = {isa = PBXBuildFile; fileRef = 50A483C8216A81C8BB6D4BA1DD91D675 /* NSArray+MASAdditions.h */; settings = {ATTRIBUTES = (Public, ); }; };
F83CF78647E5019B7C033051842DE834 /* SDWebImageOperation.h in Headers */ = {isa = PBXBuildFile; fileRef = ACB41FDFF16E002E00D0777802750D06 /* SDWebImageOperation.h */; settings = {ATTRIBUTES = (Public, ); }; };
F83FE2308B2FC08F10B09E1CA8C3F05A /* SDDeviceHelper.h in Headers */ = {isa = PBXBuildFile; fileRef = A61010115E96C17B47BB8539CBDCB283 /* SDDeviceHelper.h */; settings = {ATTRIBUTES = (Private, ); }; };
F9A22A53E223C192B40192FDEF0B5738 /* ViewController+MASAdditions.h in Headers */ = {isa = PBXBuildFile; fileRef = 6997EBF54839BBCE38243B94FC2BF48E /* ViewController+MASAdditions.h */; settings = {ATTRIBUTES = (Public, ); }; };
F9F510B167A5FECC3D7EBC59F48E970C /* UIImage+Transform.h in Headers */ = {isa = PBXBuildFile; fileRef = 7D10DBA185F5C7C500C47BA099BFB037 /* UIImage+Transform.h */; settings = {ATTRIBUTES = (Public, ); }; };
FA029FEEFEB43566D7B1BAD44C220A78 /* MJPropertyType.m in Sources */ = {isa = PBXBuildFile; fileRef = 76582BAFDA603BFF9F8F4C2E579C46FC /* MJPropertyType.m */; };
FA104B1831D1248769C5B789BB15965B /* SDAnimatedImagePlayer.m in Sources */ = {isa = PBXBuildFile; fileRef = 408968E9AF338A5904317AB104142FE6 /* SDAnimatedImagePlayer.m */; };
FBC53D602296BD60A6C1C5F7862101D1 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 22716E57D0DD8EA2944D767E873D1A07 /* Foundation.framework */; };
FC87BB76892B419E06EAA57634D0A2AC /* SDImageCoderHelper.m in Sources */ = {isa = PBXBuildFile; fileRef = AB8CFB952FB41219B956C796EC5EA2C5 /* SDImageCoderHelper.m */; };
FCBBC8E29C60EA8BBAAB623D37A4C824 /* GKSDWebImageManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 8AFDAE841AEFBA4148B5AC0DC0B8CE8A /* GKSDWebImageManager.m */; };
FD37C257F917AE6B53DEBB26D25A4EBD /* TZImagePickerController.m in Sources */ = {isa = PBXBuildFile; fileRef = E5FA0707F6BBFB89664CE906DE815F40 /* TZImagePickerController.m */; };
FDE9668F5EF1A293FAFD6C9098F7C7BA /* TZVideoPlayerController.h in Headers */ = {isa = PBXBuildFile; fileRef = BCFAE33DE68D4F7CD45292368E0C1D68 /* TZVideoPlayerController.h */; settings = {ATTRIBUTES = (Public, ); }; };
FE69829D140EC9078833412333A05F30 /* UIView+WebCache.h in Headers */ = {isa = PBXBuildFile; fileRef = FEA3724280789715FC36C8D431986FDA /* UIView+WebCache.h */; settings = {ATTRIBUTES = (Public, ); }; };
FEDA6148764C3802F0438864B58AA2AE /* UIImageView+WebCache.m in Sources */ = {isa = PBXBuildFile; fileRef = 8C31B80FBA05862487E37AF4D8D0DF20 /* UIImageView+WebCache.m */; };
FEFE7CDDF9239E18BBEC060B9EDF905A /* TZAssetModel.m in Sources */ = {isa = PBXBuildFile; fileRef = 4B20F0002E863C5FAA57912A7420F152 /* TZAssetModel.m */; };
FF895700CCD0147FDE98DFA549FA01E7 /* BRStringPickerView.h in Headers */ = {isa = PBXBuildFile; fileRef = FBD9722F4B3E9354F06906D4C726ADE5 /* BRStringPickerView.h */; settings = {ATTRIBUTES = (Public, ); }; };
FFD1E97F34D893BC96CFBCA44C786743 /* Masonry.h in Headers */ = {isa = PBXBuildFile; fileRef = 8A4CA4AA69E7E9EB1B0D39BD92E11DCD /* Masonry.h */; settings = {ATTRIBUTES = (Public, ); }; };
FFD98BEC25493FEAAAC544FE374DBAA8 /* NSData+ImageContentType.h in Headers */ = {isa = PBXBuildFile; fileRef = FB9F694464397301413EC70E89617AA6 /* NSData+ImageContentType.h */; settings = {ATTRIBUTES = (Public, ); }; };
/* End PBXBuildFile section */
/* Begin PBXContainerItemProxy section */
1F29EED907B0AC55D95FA514A821DEB5 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */;
proxyType = 1;
remoteGlobalIDString = 1664EA1850F2A5D7B4C063C13A541D0F;
remoteInfo = GKPhotoBrowser;
};
444EA1E427E397D143B6D3CEE030CA9A /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */;
proxyType = 1;
remoteGlobalIDString = 3847153A6E5EEFB86565BA840768F429;
remoteInfo = SDWebImage;
};
450D83CD5CCCE3C9A7D161887540D720 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */;
proxyType = 1;
remoteGlobalIDString = 3847153A6E5EEFB86565BA840768F429;
remoteInfo = SDWebImage;
};
52FC51001FE7BEB67F6A849B550EE0DE /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */;
proxyType = 1;
remoteGlobalIDString = AD7A887712AFD1E19645BB66EFCFA9A5;
remoteInfo = "Pods-FXFormController_Example";
};
71E2CE133016FD7E33DFBBE05600947A /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */;
proxyType = 1;
remoteGlobalIDString = 3847153A6E5EEFB86565BA840768F429;
remoteInfo = SDWebImage;
};
78D952BA9F410ACC83A2ECC4580F0121 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */;
proxyType = 1;
remoteGlobalIDString = D505645C3F99EB1E8B6529D64D2C3E1C;
remoteInfo = BRPickerView;
};
79CE9971AEB9DE3174225CD503199FBA /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */;
proxyType = 1;
remoteGlobalIDString = A96BBB982D62BB807B5BD10774BE2D07;
remoteInfo = TZImagePickerController;
};
884340AD739445C10B6E2305A26EB51E /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */;
proxyType = 1;
remoteGlobalIDString = 4A9EEBB41B96A1F69FEBF3C922CFC739;
remoteInfo = FXFormController;
};
8E09EE5BEAE7506534DCA5B50B8CAD4A /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */;
proxyType = 1;
remoteGlobalIDString = 55AF53E6C77A10ED4985E04D74A8878E;
remoteInfo = Masonry;
};
94ECD125C318D14DD5A06D693B4D44E6 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */;
proxyType = 1;
remoteGlobalIDString = 4D3BA58D0583DF37575CACAB3DDADC85;
remoteInfo = MJExtension;
};
A4EA1BA305D88006B81B8D31336CCEB9 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */;
proxyType = 1;
remoteGlobalIDString = 1664EA1850F2A5D7B4C063C13A541D0F;
remoteInfo = GKPhotoBrowser;
};
BBF76692BA3D7F7F9BB4BF9A60725F75 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */;
proxyType = 1;
remoteGlobalIDString = A96BBB982D62BB807B5BD10774BE2D07;
remoteInfo = TZImagePickerController;
};
BF3DA4A8D363975335F6F1521B216F7A /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */;
proxyType = 1;
remoteGlobalIDString = 4D3BA58D0583DF37575CACAB3DDADC85;
remoteInfo = MJExtension;
};
E6C27D5DB4100CFAD5BE8EFC62A84758 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */;
proxyType = 1;
remoteGlobalIDString = 55AF53E6C77A10ED4985E04D74A8878E;
remoteInfo = Masonry;
};
FAB8670AF8C90640631C1385BB38BDBE /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */;
proxyType = 1;
remoteGlobalIDString = D505645C3F99EB1E8B6529D64D2C3E1C;
remoteInfo = BRPickerView;
};
/* End PBXContainerItemProxy section */
/* Begin PBXFileReference section */
00181255AEFD085906A2B95399BBB8F7 /* SDmetamacros.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDmetamacros.h; path = SDWebImage/Private/SDmetamacros.h; sourceTree = "<group>"; };
010AFAD0CF56CA400888F7C8C9BA5D8C /* TZAssetCell.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TZAssetCell.h; path = TZImagePickerController/TZImagePickerController/TZAssetCell.h; sourceTree = "<group>"; };
0213029283267FB1114DEE883D4E50CF /* SDImageHEICCoder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageHEICCoder.h; path = SDWebImage/Core/SDImageHEICCoder.h; sourceTree = "<group>"; };
02D92EC950599A6703BA7AD1F23D08F4 /* SDWebImageManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageManager.h; path = SDWebImage/Core/SDWebImageManager.h; sourceTree = "<group>"; };
03A9B6E3281309BD5763C8FA8DD56FBD /* NSLayoutConstraint+MASDebugAdditions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSLayoutConstraint+MASDebugAdditions.h"; path = "Masonry/NSLayoutConstraint+MASDebugAdditions.h"; sourceTree = "<group>"; };
059988F30FE398A593E83EF2D65B17BE /* TZImagePickerController.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = TZImagePickerController.debug.xcconfig; sourceTree = "<group>"; };
05BC26DA17D70875083637C98BD21C23 /* TZGifPhotoPreviewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TZGifPhotoPreviewController.h; path = TZImagePickerController/TZImagePickerController/TZGifPhotoPreviewController.h; sourceTree = "<group>"; };
06644CFD3DA5F613A9B0E725E0C0519E /* SDWebImageDownloaderConfig.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageDownloaderConfig.m; path = SDWebImage/Core/SDWebImageDownloaderConfig.m; sourceTree = "<group>"; };
068C276B79C65449824040340A26642D /* UIView+Layout.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIView+Layout.h"; path = "TZImagePickerController/TZImagePickerController/UIView+Layout.h"; sourceTree = "<group>"; };
073F996344AAEEB851174C7AC432DED5 /* UIImage+GIF.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIImage+GIF.m"; path = "SDWebImage/Core/UIImage+GIF.m"; sourceTree = "<group>"; };
0953D56E2C6C0672F3160461FE873563 /* SDAnimatedImageView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDAnimatedImageView.h; path = SDWebImage/Core/SDAnimatedImageView.h; sourceTree = "<group>"; };
09B3FDDC3DFB9460C5DEBBAF1D893772 /* NSObject+MJProperty.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSObject+MJProperty.m"; path = "MJExtension/NSObject+MJProperty.m"; sourceTree = "<group>"; };
0A08BA1CF528A602C3E28865A72F4889 /* MASConstraint.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MASConstraint.m; path = Masonry/MASConstraint.m; sourceTree = "<group>"; };
0A71436142ABFEB5A6ECA2BD41513571 /* UIView+WebCache.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIView+WebCache.m"; path = "SDWebImage/Core/UIView+WebCache.m"; sourceTree = "<group>"; };
0BB51ADC181A27D10A3ADFC67AA5E506 /* SDWebImageDefine.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageDefine.m; path = SDWebImage/Core/SDWebImageDefine.m; sourceTree = "<group>"; };
0BC38312CAB714EB3F0062CDF35FB7EF /* NSBundle+TZImagePicker.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSBundle+TZImagePicker.m"; path = "TZImagePickerController/TZImagePickerController/NSBundle+TZImagePicker.m"; sourceTree = "<group>"; };
0C48546DCDFFD14354E071B65DF5A58B /* SDWebImageDownloaderDecryptor.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageDownloaderDecryptor.m; path = SDWebImage/Core/SDWebImageDownloaderDecryptor.m; sourceTree = "<group>"; };
0CB9CA7E5C9749A1ECC56B8DD74ECDD7 /* SDWebImageOptionsProcessor.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageOptionsProcessor.m; path = SDWebImage/Core/SDWebImageOptionsProcessor.m; sourceTree = "<group>"; };
0D8CE10D36B0B0C3E1971A2C3104DBB6 /* ImageIO.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = ImageIO.framework; path = Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.2.sdk/System/Library/Frameworks/ImageIO.framework; sourceTree = DEVELOPER_DIR; };
0DDA8F0F91CC10BA82D7D2EDD6E23ABA /* Masonry-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Masonry-Info.plist"; sourceTree = "<group>"; };
0F85BCB0E173E939F00C4490DF05AA0A /* SDWebImageTransition.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageTransition.m; path = SDWebImage/Core/SDWebImageTransition.m; sourceTree = "<group>"; };
0FDD0F078A21BF9DBFAA38AD121522D1 /* FXFormController.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = FXFormController.release.xcconfig; sourceTree = "<group>"; };
10999111C02F58617D0465810728FB3E /* BRBaseView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = BRBaseView.h; path = BRPickerView/Base/BRBaseView.h; sourceTree = "<group>"; };
119A2FDBCD33AA66EE5E35CDDDEB7325 /* SDWebImageDownloaderResponseModifier.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageDownloaderResponseModifier.h; path = SDWebImage/Core/SDWebImageDownloaderResponseModifier.h; sourceTree = "<group>"; };
11A5E3E224ADED91A7057AC3D9B5C2D4 /* NSBundle+BRPickerView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSBundle+BRPickerView.h"; path = "BRPickerView/Base/NSBundle+BRPickerView.h"; sourceTree = "<group>"; };
127B902722F80607FC8745C6A691F04D /* SDWebImageDownloaderOperation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageDownloaderOperation.m; path = SDWebImage/Core/SDWebImageDownloaderOperation.m; sourceTree = "<group>"; };
12BF1B41360ABAC677F8312DA4A4932D /* MASUtilities.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MASUtilities.h; path = Masonry/MASUtilities.h; sourceTree = "<group>"; };
135D58442CFA1F7D4CF5B4170489E8D6 /* GKPhotoView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GKPhotoView.m; path = GKPhotoBrowser/GKPhotoView.m; sourceTree = "<group>"; };
137C88BCF34AC430E68462F7A4156D6A /* TZProgressView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TZProgressView.h; path = TZImagePickerController/TZImagePickerController/TZProgressView.h; sourceTree = "<group>"; };
14D8258164EB30E2D5B807F42E723BFC /* SDImageLoadersManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageLoadersManager.h; path = SDWebImage/Core/SDImageLoadersManager.h; sourceTree = "<group>"; };
158E0096979AC990A87BFD890C7A3F0F /* UIButton+WebCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIButton+WebCache.h"; path = "SDWebImage/Core/UIButton+WebCache.h"; sourceTree = "<group>"; };
15ACAAACD9C41D44D67B79DE510FEDE8 /* UIView+WebCacheOperation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIView+WebCacheOperation.h"; path = "SDWebImage/Core/UIView+WebCacheOperation.h"; sourceTree = "<group>"; };
183C06949F4CC7BCD97AFAB6AABF81B9 /* SDAnimatedImageView+WebCache.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "SDAnimatedImageView+WebCache.m"; path = "SDWebImage/Core/SDAnimatedImageView+WebCache.m"; sourceTree = "<group>"; };
187B3F7AC3AE5683D664933BCE6A5A09 /* SDImageAPNGCoder.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageAPNGCoder.m; path = SDWebImage/Core/SDImageAPNGCoder.m; sourceTree = "<group>"; };
18B178EF8B8A03AEFB27DE0FD245A655 /* BRDatePickerView+BR.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "BRDatePickerView+BR.m"; path = "BRPickerView/DatePickerView/BRDatePickerView+BR.m"; sourceTree = "<group>"; };
1997572FC0557704A9EC225400A6E59B /* SDWebImageCompat.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageCompat.h; path = SDWebImage/Core/SDWebImageCompat.h; sourceTree = "<group>"; };
1B94FE6D00F3B07E447E2B833E15674A /* GKPhotoManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GKPhotoManager.h; path = GKPhotoBrowser/GKPhotoManager.h; sourceTree = "<group>"; };
1DF97F50DF6FA077153ED306F98B36A4 /* GKLoadingView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GKLoadingView.h; path = GKPhotoBrowser/GKLoadingView.h; sourceTree = "<group>"; };
1FA21C0EEFFC5ED863086A2A9E204BFC /* UIImageView+HighlightedWebCache.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIImageView+HighlightedWebCache.m"; path = "SDWebImage/Core/UIImageView+HighlightedWebCache.m"; sourceTree = "<group>"; };
1FFED36A657123030ABB700256D73F15 /* Masonry.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Masonry.framework; sourceTree = BUILT_PRODUCTS_DIR; };
22716E57D0DD8EA2944D767E873D1A07 /* Foundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Foundation.framework; path = Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.2.sdk/System/Library/Frameworks/Foundation.framework; sourceTree = DEVELOPER_DIR; };
23A8CF0B8BCA011BCDFAD8426314CB31 /* GKPhotoBrowser-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "GKPhotoBrowser-dummy.m"; sourceTree = "<group>"; };
25DD051CAE2346D3F83B383303CE567A /* TZImageManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = TZImageManager.m; path = TZImagePickerController/TZImagePickerController/TZImageManager.m; sourceTree = "<group>"; };
26C21EB6D56770A9EF0499F1F099627B /* SDMemoryCache.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDMemoryCache.m; path = SDWebImage/Core/SDMemoryCache.m; sourceTree = "<group>"; };
26D4576C2D9AD46227139F1183A8E6AE /* SDDisplayLink.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDDisplayLink.h; path = SDWebImage/Private/SDDisplayLink.h; sourceTree = "<group>"; };
2883AB2CA1A55D1ED4315D3FE0335982 /* UIImage+MemoryCacheCost.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImage+MemoryCacheCost.h"; path = "SDWebImage/Core/UIImage+MemoryCacheCost.h"; sourceTree = "<group>"; };
2898C9BC15FCC52DD730DA0AED789ACD /* FXFormController-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "FXFormController-dummy.m"; sourceTree = "<group>"; };
28B18BC1B7D20721639AA0640DDA3E36 /* NSButton+WebCache.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSButton+WebCache.m"; path = "SDWebImage/Core/NSButton+WebCache.m"; sourceTree = "<group>"; };
2A0D9FA97462F5034AC0526FAD515EEA /* Masonry-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Masonry-umbrella.h"; sourceTree = "<group>"; };
2AEA3AEABE604D98D6394675CD846070 /* TZVideoPlayerController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = TZVideoPlayerController.m; path = TZImagePickerController/TZImagePickerController/TZVideoPlayerController.m; sourceTree = "<group>"; };
2AF7B7FBDCB199567065DA83FB328418 /* Pods-FXFormController_Example-frameworks.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-FXFormController_Example-frameworks.sh"; sourceTree = "<group>"; };
2B0C33D8B47E36B112293EA9F876D77C /* NSDate+BRPickerView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSDate+BRPickerView.m"; path = "BRPickerView/DatePickerView/NSDate+BRPickerView.m"; sourceTree = "<group>"; };
2B276B0A79173A1D6E83C9B4FB9A4A57 /* MJExtension.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = MJExtension.framework; sourceTree = BUILT_PRODUCTS_DIR; };
2B45E24164E9C5EEA9CD66D6584B1BA8 /* MJPropertyKey.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MJPropertyKey.m; path = MJExtension/MJPropertyKey.m; sourceTree = "<group>"; };
2BB4AA11CB5B193DD46A262F1BC5FB52 /* SDWebImageDownloaderDecryptor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageDownloaderDecryptor.h; path = SDWebImage/Core/SDWebImageDownloaderDecryptor.h; sourceTree = "<group>"; };
2D17135C521A299AD8D41059A2E78C83 /* SDWebImageCompat.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageCompat.m; path = SDWebImage/Core/SDWebImageCompat.m; sourceTree = "<group>"; };
2D96120BCB6E15EC6D6A5F720BA43A25 /* TZImageCropManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TZImageCropManager.h; path = TZImagePickerController/TZImagePickerController/TZImageCropManager.h; sourceTree = "<group>"; };
2E3FDD9B3A717005492B362E5A649254 /* SDMemoryCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDMemoryCache.h; path = SDWebImage/Core/SDMemoryCache.h; sourceTree = "<group>"; };
2EE3F003652316C03F2FE4543696CBD4 /* SDAsyncBlockOperation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDAsyncBlockOperation.h; path = SDWebImage/Private/SDAsyncBlockOperation.h; sourceTree = "<group>"; };
31A9A63BBCEF4F8095A3C581816731B5 /* TZImageCropManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = TZImageCropManager.m; path = TZImagePickerController/TZImagePickerController/TZImageCropManager.m; sourceTree = "<group>"; };
31BB30A5378790A61DF17503FEBB7323 /* MASViewConstraint.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MASViewConstraint.h; path = Masonry/MASViewConstraint.h; sourceTree = "<group>"; };
31C5ADC52D091EE1EF26A2E1A8C1781F /* SDImageIOAnimatedCoderInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageIOAnimatedCoderInternal.h; path = SDWebImage/Private/SDImageIOAnimatedCoderInternal.h; sourceTree = "<group>"; };
32A5A49A28661853A373A3269B747499 /* SDImageHEICCoder.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageHEICCoder.m; path = SDWebImage/Core/SDImageHEICCoder.m; sourceTree = "<group>"; };
3307EAB4E6263CD37C67CFB164B8EDA2 /* MASConstraint+Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "MASConstraint+Private.h"; path = "Masonry/MASConstraint+Private.h"; sourceTree = "<group>"; };
334488769EECADA8F50B3019EC1EA777 /* SDWebImage.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImage.h; path = WebImage/SDWebImage.h; sourceTree = "<group>"; };
33955C99694A045490C3E92503D46951 /* TZImageManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TZImageManager.h; path = TZImagePickerController/TZImagePickerController/TZImageManager.h; sourceTree = "<group>"; };
33D603FBC22DAE77185FCA7DA8C2D463 /* SDImageCoderHelper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageCoderHelper.h; path = SDWebImage/Core/SDImageCoderHelper.h; sourceTree = "<group>"; };
33DA3BE3681231ABB0B5190073FB6E90 /* GKLoadingView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GKLoadingView.m; path = GKPhotoBrowser/GKLoadingView.m; sourceTree = "<group>"; };
34E8D47ABC90598623A7F2F88D278C03 /* GKPhotoBrowser.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = GKPhotoBrowser.modulemap; sourceTree = "<group>"; };
366EB5063287B750C853AA5E21A2F86A /* Masonry.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = Masonry.release.xcconfig; sourceTree = "<group>"; };
36BBA7A00D5CA17EAEAB8840611D1816 /* BRDatePickerView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = BRDatePickerView.m; path = BRPickerView/DatePickerView/BRDatePickerView.m; sourceTree = "<group>"; };
37359C4CC4D7D9F90F1C026B7DFE9C63 /* BRPickerView.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = BRPickerView.debug.xcconfig; sourceTree = "<group>"; };
3735A0C582118249EF5204C51D6FBEBD /* SDImageCacheConfig.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageCacheConfig.h; path = SDWebImage/Core/SDImageCacheConfig.h; sourceTree = "<group>"; };
385F5E442A4CA1CF4F62B2FCF291B143 /* NSArray+MASAdditions.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSArray+MASAdditions.m"; path = "Masonry/NSArray+MASAdditions.m"; sourceTree = "<group>"; };
3A437D72E7FB543646AE9261E06FAD85 /* SDWebImageOperation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageOperation.m; path = SDWebImage/Core/SDWebImageOperation.m; sourceTree = "<group>"; };
3C98F1FF1CA2BE76F4CB8F2327C9FC92 /* TZImagePickerController-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "TZImagePickerController-prefix.pch"; sourceTree = "<group>"; };
3CD0F3FBC20835638A9B7CBAD5428786 /* MASConstraintMaker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MASConstraintMaker.h; path = Masonry/MASConstraintMaker.h; sourceTree = "<group>"; };
3CE75DA910E27EDD4130B706C5B77022 /* BRResultModel.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = BRResultModel.m; path = BRPickerView/StringPickerView/BRResultModel.m; sourceTree = "<group>"; };
3D11E73C07DE078DD6385DB3AD3B5E03 /* SDImageCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageCache.h; path = SDWebImage/Core/SDImageCache.h; sourceTree = "<group>"; };
3D5B11C0870CA01FF47CA0041BB6CB69 /* Pods-FXFormController_Example-acknowledgements.markdown */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = "Pods-FXFormController_Example-acknowledgements.markdown"; sourceTree = "<group>"; };
3FC15A696B55CB3BAD8BB032F298F6F3 /* BRAddressModel.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = BRAddressModel.h; path = BRPickerView/AddressPickerView/BRAddressModel.h; sourceTree = "<group>"; };
408968E9AF338A5904317AB104142FE6 /* SDAnimatedImagePlayer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDAnimatedImagePlayer.m; path = SDWebImage/Core/SDAnimatedImagePlayer.m; sourceTree = "<group>"; };
40C82C00DA5AAB6BAF7D7D238FFD93AD /* GKPhotoBrowser.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = GKPhotoBrowser.debug.xcconfig; sourceTree = "<group>"; };
41F942152D8A35DE062535A8EF8C3252 /* SDAssociatedObject.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDAssociatedObject.h; path = SDWebImage/Private/SDAssociatedObject.h; sourceTree = "<group>"; };
423BF458A91B673450F236380186AE72 /* Pods-FXFormController_Tests.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = "Pods-FXFormController_Tests.modulemap"; sourceTree = "<group>"; };
43CA968327A048E8EEB73E9623AC5FF5 /* Pods-FXFormController_Tests-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Pods-FXFormController_Tests-umbrella.h"; sourceTree = "<group>"; };
43D5EC5E881495A31051E9F656B1E460 /* SDImageCachesManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageCachesManager.m; path = SDWebImage/Core/SDImageCachesManager.m; sourceTree = "<group>"; };
45072CF56777C477972EAE07B2EE526B /* Photos.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Photos.framework; path = Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.2.sdk/System/Library/Frameworks/Photos.framework; sourceTree = DEVELOPER_DIR; };
4587AFD64BD5CB8F06A8CCCE36FD421D /* TZImagePickerController-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "TZImagePickerController-umbrella.h"; sourceTree = "<group>"; };
45EDAD9BB5079058B432D9B26C965658 /* NSObject+MJCoding.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSObject+MJCoding.h"; path = "MJExtension/NSObject+MJCoding.h"; sourceTree = "<group>"; };
473DE0D65B690E15CEC40423AA18FE98 /* SDDiskCache.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDDiskCache.m; path = SDWebImage/Core/SDDiskCache.m; sourceTree = "<group>"; };
4756FCB9678C0217F767BDAD1EF8068F /* SDImageFrame.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageFrame.h; path = SDWebImage/Core/SDImageFrame.h; sourceTree = "<group>"; };
47E0B7D7F8CA67AE773DA910006073B5 /* SDAnimatedImageRep.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDAnimatedImageRep.h; path = SDWebImage/Core/SDAnimatedImageRep.h; sourceTree = "<group>"; };
483C3562AF565155E9A1F0AC59E422A2 /* SDWebImageDefine.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageDefine.h; path = SDWebImage/Core/SDWebImageDefine.h; sourceTree = "<group>"; };
485B2A79E513DC559F3CCBA44D4101BF /* GKPhoto.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GKPhoto.m; path = GKPhotoBrowser/GKPhoto.m; sourceTree = "<group>"; };
492765AE509E74B2DDC0E8D38F96FCD4 /* TZLocationManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TZLocationManager.h; path = TZImagePickerController/TZImagePickerController/TZLocationManager.h; sourceTree = "<group>"; };
4A5CAF8C277A81D5D8C6CF4BB667CF4D /* SDImageAssetManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageAssetManager.m; path = SDWebImage/Private/SDImageAssetManager.m; sourceTree = "<group>"; };
4A9D0FBDF47FC0228FF0BB7A3E34C9F8 /* TZPhotoPreviewCell.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = TZPhotoPreviewCell.m; path = TZImagePickerController/TZImagePickerController/TZPhotoPreviewCell.m; sourceTree = "<group>"; };
4AE223A640D110D44F4E0AA45FAD18B1 /* SDWebImageTransitionInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageTransitionInternal.h; path = SDWebImage/Private/SDWebImageTransitionInternal.h; sourceTree = "<group>"; };
4B20F0002E863C5FAA57912A7420F152 /* TZAssetModel.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = TZAssetModel.m; path = TZImagePickerController/TZImagePickerController/TZAssetModel.m; sourceTree = "<group>"; };
4B3B8282CCF2C552D467DD613A6DA3F8 /* MJExtension.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = MJExtension.modulemap; sourceTree = "<group>"; };
4B88B8EC24E99BC0A5BFA7036A33B878 /* SDWeakProxy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWeakProxy.m; path = SDWebImage/Private/SDWeakProxy.m; sourceTree = "<group>"; };
4C5ED66C85660C7B6D79AD010E0ADDFD /* SDImageGIFCoder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageGIFCoder.h; path = SDWebImage/Core/SDImageGIFCoder.h; sourceTree = "<group>"; };
4DC8B31D51CF1F905B9F2CB4B020F033 /* SDWebImageDownloaderOperation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageDownloaderOperation.h; path = SDWebImage/Core/SDWebImageDownloaderOperation.h; sourceTree = "<group>"; };
4F5841FAAB5383F14A7DC974BC4FD85B /* NSDate+BRPickerView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSDate+BRPickerView.h"; path = "BRPickerView/DatePickerView/NSDate+BRPickerView.h"; sourceTree = "<group>"; };
4FA7CD1505A241C322E3580FF454AF66 /* MJExtension-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "MJExtension-Info.plist"; sourceTree = "<group>"; };
50A483C8216A81C8BB6D4BA1DD91D675 /* NSArray+MASAdditions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSArray+MASAdditions.h"; path = "Masonry/NSArray+MASAdditions.h"; sourceTree = "<group>"; };
5102BA149B83549F15655E75F66D7391 /* SDImageGraphics.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageGraphics.h; path = SDWebImage/Core/SDImageGraphics.h; sourceTree = "<group>"; };
51408A003FE57972D955A4B8230CD43C /* SDWebImageDownloaderRequestModifier.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageDownloaderRequestModifier.h; path = SDWebImage/Core/SDWebImageDownloaderRequestModifier.h; sourceTree = "<group>"; };
51726AD75A2CF30D6B1D3CB8C5B23E05 /* NSObject+MJClass.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSObject+MJClass.h"; path = "MJExtension/NSObject+MJClass.h"; sourceTree = "<group>"; };
52594094BDA36DECAC77BA3F3754ED15 /* Pods-FXFormController_Example-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-FXFormController_Example-dummy.m"; sourceTree = "<group>"; };
53511B36EF5E4DCDA57FDAFDE814B627 /* MobileCoreServices.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = MobileCoreServices.framework; path = Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.2.sdk/System/Library/Frameworks/MobileCoreServices.framework; sourceTree = DEVELOPER_DIR; };
546B0BE62F8862142499E7D47A68E1E9 /* SDWebImageTransition.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageTransition.h; path = SDWebImage/Core/SDWebImageTransition.h; sourceTree = "<group>"; };
554A4765A2DEB721E65474636E596924 /* MASViewAttribute.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MASViewAttribute.h; path = Masonry/MASViewAttribute.h; sourceTree = "<group>"; };
556A47B0CDAB87A7DF66BF573BA7D8AB /* SDImageIOAnimatedCoder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageIOAnimatedCoder.h; path = SDWebImage/Core/SDImageIOAnimatedCoder.h; sourceTree = "<group>"; };
558D0CE0D39B193DB603CF3D2714DBB1 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = LICENSE; sourceTree = "<group>"; };
5632A73F49D0C303D618BB2B5B8BC1E1 /* UIColor+SDHexString.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIColor+SDHexString.h"; path = "SDWebImage/Private/UIColor+SDHexString.h"; sourceTree = "<group>"; };
565D9A320F764CB539B0C4D620D34318 /* UIView+WebCacheOperation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIView+WebCacheOperation.m"; path = "SDWebImage/Core/UIView+WebCacheOperation.m"; sourceTree = "<group>"; };
5704C263B6A90F82EFC354E9C0C3839B /* NSObject+MJCoding.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSObject+MJCoding.m"; path = "MJExtension/NSObject+MJCoding.m"; sourceTree = "<group>"; };
58A356E3CE0C71666916263F6DBDEBB9 /* NSObject+MJProperty.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSObject+MJProperty.h"; path = "MJExtension/NSObject+MJProperty.h"; sourceTree = "<group>"; };
58E0E3E54CBD2A2E6EE16DC1BBE1E0F1 /* SDWeakProxy.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWeakProxy.h; path = SDWebImage/Private/SDWeakProxy.h; sourceTree = "<group>"; };
5923CFFF9225AA6D0C4C01286F72A063 /* SDWebImage-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "SDWebImage-prefix.pch"; sourceTree = "<group>"; };
59F1DC772D315BEBABC0E3BA2DB84105 /* SDAnimatedImageView+WebCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "SDAnimatedImageView+WebCache.h"; path = "SDWebImage/Core/SDAnimatedImageView+WebCache.h"; sourceTree = "<group>"; };
5B6A9BA706FCE6ADDCC14C339E89B235 /* Pods-FXFormController_Example-acknowledgements.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-FXFormController_Example-acknowledgements.plist"; sourceTree = "<group>"; };
5BA6046B4C2674409C0D5625F45F8769 /* BRPickerView.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = BRPickerView.framework; sourceTree = BUILT_PRODUCTS_DIR; };
5BF1D8B9376B54FB298BCAD3FAD75D74 /* NSBezierPath+SDRoundedCorners.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSBezierPath+SDRoundedCorners.m"; path = "SDWebImage/Private/NSBezierPath+SDRoundedCorners.m"; sourceTree = "<group>"; };
5C05D0732FEB4A4F722F9DA342F7F2F7 /* Pods-FXFormController_Tests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-FXFormController_Tests.release.xcconfig"; sourceTree = "<group>"; };
5C71B4DE44BD756D617FCE6B999E7B83 /* BRDatePickerView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = BRDatePickerView.h; path = BRPickerView/DatePickerView/BRDatePickerView.h; sourceTree = "<group>"; };
5CCD976316862BF6C162BD6FF57D4BEF /* SDGraphicsImageRenderer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDGraphicsImageRenderer.h; path = SDWebImage/Core/SDGraphicsImageRenderer.h; sourceTree = "<group>"; };
5CCED2284F78F7609EEA3A6CDFCE97A9 /* SDWebImageCacheSerializer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageCacheSerializer.h; path = SDWebImage/Core/SDWebImageCacheSerializer.h; sourceTree = "<group>"; };
5CD9E5ABF99F81FEA821B8691C28D8CE /* GKPhotoBrowser-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "GKPhotoBrowser-umbrella.h"; sourceTree = "<group>"; };
5D0EE3E5250C9FC2E8C960010ADF5C79 /* NSBundle+TZImagePicker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSBundle+TZImagePicker.h"; path = "TZImagePickerController/TZImagePickerController/NSBundle+TZImagePicker.h"; sourceTree = "<group>"; };
5D9BFDF63892EAC9C830FCCDB0D57D62 /* NSLayoutConstraint+MASDebugAdditions.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSLayoutConstraint+MASDebugAdditions.m"; path = "Masonry/NSLayoutConstraint+MASDebugAdditions.m"; sourceTree = "<group>"; };
5E045D2CF81810B461A4381241E249F7 /* TZProgressView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = TZProgressView.m; path = TZImagePickerController/TZImagePickerController/TZProgressView.m; sourceTree = "<group>"; };
5E3C3D111F66C2E03F97AD10D69758CB /* MJExtensionConst.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MJExtensionConst.m; path = MJExtension/MJExtensionConst.m; sourceTree = "<group>"; };
5E846F724452B2D1BB091968D832AE9F /* UIView+Layout.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIView+Layout.m"; path = "TZImagePickerController/TZImagePickerController/UIView+Layout.m"; sourceTree = "<group>"; };
5ECFEE57A464B69F146C15DE8D1DD144 /* Pods_FXFormController_Tests.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_FXFormController_Tests.framework; sourceTree = BUILT_PRODUCTS_DIR; };
5EE2826918243AAF1004BCEAA5F7C04C /* UIImage+Transform.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIImage+Transform.m"; path = "SDWebImage/Core/UIImage+Transform.m"; sourceTree = "<group>"; };
5EEF7DC22A2130EBA13D3C628B4C910B /* GKPhoto.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GKPhoto.h; path = GKPhotoBrowser/GKPhoto.h; sourceTree = "<group>"; };
5F98098538404111185920663B524BD3 /* SDWebImageIndicator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageIndicator.h; path = SDWebImage/Core/SDWebImageIndicator.h; sourceTree = "<group>"; };
5FC25E33CE2B7C62AC2CE88F108865E7 /* GKWebImageProtocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GKWebImageProtocol.h; path = GKPhotoBrowser/GKWebImageProtocol.h; sourceTree = "<group>"; };
606E94F504F37D2C1CE673629E39A487 /* View+MASAdditions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "View+MASAdditions.h"; path = "Masonry/View+MASAdditions.h"; sourceTree = "<group>"; };
619FDBD27467250C026BAFBD0493AAA6 /* SDWebImageError.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageError.h; path = SDWebImage/Core/SDWebImageError.h; sourceTree = "<group>"; };
6342350798677878B558AAFA367B3DFD /* SDDiskCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDDiskCache.h; path = SDWebImage/Core/SDDiskCache.h; sourceTree = "<group>"; };
65796EC53C00EB2E256F3B5391C1FD9D /* MJExtensionConst.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MJExtensionConst.h; path = MJExtension/MJExtensionConst.h; sourceTree = "<group>"; };
66DEBB720E723798D800A9DA177744D9 /* SDImageIOAnimatedCoder.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageIOAnimatedCoder.m; path = SDWebImage/Core/SDImageIOAnimatedCoder.m; sourceTree = "<group>"; };
6734D68029B759041B5164840FF7E55C /* SDImageCoder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageCoder.h; path = SDWebImage/Core/SDImageCoder.h; sourceTree = "<group>"; };
6796EAC31D13A3B9C07D933116DC6BD3 /* SDImageCache.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageCache.m; path = SDWebImage/Core/SDImageCache.m; sourceTree = "<group>"; };
68F2AEA45C907DDE94F9BB568CDEBFD4 /* ViewController+MASAdditions.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "ViewController+MASAdditions.m"; path = "Masonry/ViewController+MASAdditions.m"; sourceTree = "<group>"; };
6926DF8B67A7E194E04C7D8C3F1C648A /* Pods-FXFormController_Example.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-FXFormController_Example.release.xcconfig"; sourceTree = "<group>"; };
6997EBF54839BBCE38243B94FC2BF48E /* ViewController+MASAdditions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "ViewController+MASAdditions.h"; path = "Masonry/ViewController+MASAdditions.h"; sourceTree = "<group>"; };
6AA28CC208353ADAEF1E20CBFE0291D0 /* MJPropertyKey.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MJPropertyKey.h; path = MJExtension/MJPropertyKey.h; sourceTree = "<group>"; };
6E66F42501EB004F756BD3AE5FC75884 /* GKPhotoBrowser.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = GKPhotoBrowser.framework; sourceTree = BUILT_PRODUCTS_DIR; };
6F0E1BA34A8F23D6AB97C792C94E5CBB /* UIScrollView+GKGestureHandle.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIScrollView+GKGestureHandle.m"; path = "GKPhotoBrowser/UIScrollView+GKGestureHandle.m"; sourceTree = "<group>"; };
701A751453D23C5582CF6F15D9D9FC41 /* GKPhotoBrowser-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "GKPhotoBrowser-prefix.pch"; sourceTree = "<group>"; };
71F76D1FF0DC32A82BF925C23C96A681 /* Pods-FXFormController_Example-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Pods-FXFormController_Example-umbrella.h"; sourceTree = "<group>"; };
72F165A71623428BD9FE39D4F66229BB /* UIButton+WebCache.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIButton+WebCache.m"; path = "SDWebImage/Core/UIButton+WebCache.m"; sourceTree = "<group>"; };
73873595E7B565E4EAFC4452D87AF029 /* MJExtension.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = MJExtension.release.xcconfig; sourceTree = "<group>"; };
739E89EE90AFE33199085D98CC7682AA /* SDAssociatedObject.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDAssociatedObject.m; path = SDWebImage/Private/SDAssociatedObject.m; sourceTree = "<group>"; };
73F5D3F74D296E272A622178130C351B /* BRResultModel.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = BRResultModel.h; path = BRPickerView/StringPickerView/BRResultModel.h; sourceTree = "<group>"; };
7463E9EAADB0040B7DE47C421199AAFF /* SDImageTransformer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageTransformer.h; path = SDWebImage/Core/SDImageTransformer.h; sourceTree = "<group>"; };
74F9EC670AA5466582248C3C8F8C2C83 /* Pods-FXFormController_Tests-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-FXFormController_Tests-dummy.m"; sourceTree = "<group>"; };
76582BAFDA603BFF9F8F4C2E579C46FC /* MJPropertyType.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MJPropertyType.m; path = MJExtension/MJPropertyType.m; sourceTree = "<group>"; };
7721EAB8A54B2AA98A8A7902660E7058 /* MJExtension.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = MJExtension.framework; sourceTree = BUILT_PRODUCTS_DIR; };
79B843E7BC6CFAF5C8A67FEB6A980F49 /* BRPickerViewMacro.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = BRPickerViewMacro.h; path = BRPickerView/Base/BRPickerViewMacro.h; sourceTree = "<group>"; };
79E743ED41FAF29C3D61E96DF27FFF6F /* MJFoundation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MJFoundation.h; path = MJExtension/MJFoundation.h; sourceTree = "<group>"; };
7A80617DD476FF4DBF06A82A3AD01DE6 /* GKPhotoBrowser.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = GKPhotoBrowser.release.xcconfig; sourceTree = "<group>"; };
7AC5DCCEB2492027AEFB50808EAB6EFC /* SDWebImagePrefetcher.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImagePrefetcher.m; path = SDWebImage/Core/SDWebImagePrefetcher.m; sourceTree = "<group>"; };
7B08E7276EFF46281476210CC4AC077E /* GKPhotoBrowser.bundle */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = "wrapper.plug-in"; name = GKPhotoBrowser.bundle; path = GKPhotoBrowser/GKPhotoBrowser.bundle; sourceTree = "<group>"; };
7B3AD152227E5EB61802D27A02B54546 /* TZLocationManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = TZLocationManager.m; path = TZImagePickerController/TZImagePickerController/TZLocationManager.m; sourceTree = "<group>"; };
7B4DD73F5AD9FF5CBE1A7981F36CF23F /* UIImageView+WebCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImageView+WebCache.h"; path = "SDWebImage/Core/UIImageView+WebCache.h"; sourceTree = "<group>"; };
7C1F9E0731FC8567F0FBD246ADDEF303 /* MASCompositeConstraint.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MASCompositeConstraint.h; path = Masonry/MASCompositeConstraint.h; sourceTree = "<group>"; };
7D10DBA185F5C7C500C47BA099BFB037 /* UIImage+Transform.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImage+Transform.h"; path = "SDWebImage/Core/UIImage+Transform.h"; sourceTree = "<group>"; };
7EB3D159D0DAD1DB9C927555874F8057 /* MASCompositeConstraint.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MASCompositeConstraint.m; path = Masonry/MASCompositeConstraint.m; sourceTree = "<group>"; };
7FDE5FA179565316A9E58D3F1EF45D4B /* MJProperty.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MJProperty.h; path = MJExtension/MJProperty.h; sourceTree = "<group>"; };
807AC62ABD307C6F5A98087F80D8BDB2 /* FXFormController.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; path = FXFormController.podspec; sourceTree = "<group>"; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; };
80D7CF57251A2A90EA4607370C630ED6 /* SDImageAPNGCoder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageAPNGCoder.h; path = SDWebImage/Core/SDImageAPNGCoder.h; sourceTree = "<group>"; };
8111A532C76C1078DCE6030D3D44DE93 /* TZImagePickerController.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = TZImagePickerController.framework; sourceTree = BUILT_PRODUCTS_DIR; };
812CFBB740F7CF6A58D026736B751DB9 /* SDGraphicsImageRenderer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDGraphicsImageRenderer.m; path = SDWebImage/Core/SDGraphicsImageRenderer.m; sourceTree = "<group>"; };
8148D837DF8FA06A51A2A148F8F6AC99 /* UIImage+ForceDecode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImage+ForceDecode.h"; path = "SDWebImage/Core/UIImage+ForceDecode.h"; sourceTree = "<group>"; };
840A3B6D04E18CBF5DC587D50D517A0F /* NSBezierPath+SDRoundedCorners.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSBezierPath+SDRoundedCorners.h"; path = "SDWebImage/Private/NSBezierPath+SDRoundedCorners.h"; sourceTree = "<group>"; };
86713DEC179ECA27A2B18CC42B35A4C4 /* SDDeviceHelper.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDDeviceHelper.m; path = SDWebImage/Private/SDDeviceHelper.m; sourceTree = "<group>"; };
891B767E9D7A3901388081A25E65F742 /* TZImagePickerController.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = TZImagePickerController.modulemap; sourceTree = "<group>"; };
8988933A06465807230E74A1C01D09CE /* MASViewConstraint.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MASViewConstraint.m; path = Masonry/MASViewConstraint.m; sourceTree = "<group>"; };
8A22BDEB52FD4F6CA42CC31D49D946B2 /* GKPanGestureRecognizer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GKPanGestureRecognizer.m; path = GKPhotoBrowser/GKPanGestureRecognizer.m; sourceTree = "<group>"; };
8A4CA4AA69E7E9EB1B0D39BD92E11DCD /* Masonry.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Masonry.h; path = Masonry/Masonry.h; sourceTree = "<group>"; };
8A782E1DD2FAC395AA9553C44219E366 /* View+MASShorthandAdditions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "View+MASShorthandAdditions.h"; path = "Masonry/View+MASShorthandAdditions.h"; sourceTree = "<group>"; };
8AFDAE841AEFBA4148B5AC0DC0B8CE8A /* GKSDWebImageManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GKSDWebImageManager.m; path = GKPhotoBrowser/SDWebImage/GKSDWebImageManager.m; sourceTree = "<group>"; };
8C31B80FBA05862487E37AF4D8D0DF20 /* UIImageView+WebCache.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIImageView+WebCache.m"; path = "SDWebImage/Core/UIImageView+WebCache.m"; sourceTree = "<group>"; };
8CBCE5B95FB399366460F26E93358680 /* Masonry.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = Masonry.debug.xcconfig; sourceTree = "<group>"; };
8E1D5C0FCA0D872C3F21E87F25420681 /* TZImagePickerController.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = TZImagePickerController.framework; sourceTree = BUILT_PRODUCTS_DIR; };
8FBC62480BC70E4E6AFDF1B1CF340F86 /* GKPhotoView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GKPhotoView.h; path = GKPhotoBrowser/GKPhotoView.h; sourceTree = "<group>"; };
9154207625A932C750840C0404777462 /* UIImage+Metadata.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIImage+Metadata.m"; path = "SDWebImage/Core/UIImage+Metadata.m"; sourceTree = "<group>"; };
92D96B039F27797DAD49B4929788827C /* SDImageCachesManagerOperation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageCachesManagerOperation.m; path = SDWebImage/Private/SDImageCachesManagerOperation.m; sourceTree = "<group>"; };
937CF3942F42F89C4769E3B064718331 /* SDImageCacheDefine.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageCacheDefine.m; path = SDWebImage/Core/SDImageCacheDefine.m; sourceTree = "<group>"; };
93FD13357388EDBB39A9FD74301ECC8D /* Pods_FXFormController_Example.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_FXFormController_Example.framework; sourceTree = BUILT_PRODUCTS_DIR; };
947BEDA77C33B04268BF9B9B7218B210 /* SDWebImageCacheKeyFilter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageCacheKeyFilter.m; path = SDWebImage/Core/SDWebImageCacheKeyFilter.m; sourceTree = "<group>"; };
95F1AD9E82ADDE27F2DE0EC17F8556EF /* SDWebImageCacheKeyFilter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageCacheKeyFilter.h; path = SDWebImage/Core/SDWebImageCacheKeyFilter.h; sourceTree = "<group>"; };
960AA9C2C1BFB8BDBA43844F71E44B3F /* UIImage+Metadata.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImage+Metadata.h"; path = "SDWebImage/Core/UIImage+Metadata.h"; sourceTree = "<group>"; };
96B7A02C4AC93AA0DBC9CB3B576ED23F /* BRPickerView.bundle */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = "wrapper.plug-in"; name = BRPickerView.bundle; path = BRPickerView/Base/BRPickerView.bundle; sourceTree = "<group>"; };
978203B22071A1774A8D330001B5DB1A /* NSString+MJExtension.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSString+MJExtension.m"; path = "MJExtension/NSString+MJExtension.m"; sourceTree = "<group>"; };
97A4F49D434F9A9E783C67DCCA834C54 /* TZImageRequestOperation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = TZImageRequestOperation.m; path = TZImagePickerController/TZImagePickerController/TZImageRequestOperation.m; sourceTree = "<group>"; };
9938C829EBD74DE2B4B2BFAABCFC8DF6 /* SDAnimatedImage.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDAnimatedImage.m; path = SDWebImage/Core/SDAnimatedImage.m; sourceTree = "<group>"; };
9B5706F8C9F9A280FA53A2899E4D6D81 /* UIImage+GIF.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImage+GIF.h"; path = "SDWebImage/Core/UIImage+GIF.h"; sourceTree = "<group>"; };
9BE1CA0A45B1B8CD72E4CD27615C6EA8 /* TZAssetModel.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TZAssetModel.h; path = TZImagePickerController/TZImagePickerController/TZAssetModel.h; sourceTree = "<group>"; };
9CB698B96B8B698409753E3D3E25EECD /* SDImageCachesManagerOperation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageCachesManagerOperation.h; path = SDWebImage/Private/SDImageCachesManagerOperation.h; sourceTree = "<group>"; };
9CB99B907099B83D2522ABB4119C3540 /* UIKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = UIKit.framework; path = Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.2.sdk/System/Library/Frameworks/UIKit.framework; sourceTree = DEVELOPER_DIR; };
9CCE6B91261BF7D98D40972D4E9BD35F /* MJFoundation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MJFoundation.m; path = MJExtension/MJFoundation.m; sourceTree = "<group>"; };
9CD9BF36CE609EF33CC296E4B30EC0F6 /* FXFormController.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = FXFormController.debug.xcconfig; sourceTree = "<group>"; };
9D2911E83785C992ACE173BA26960B8C /* Pods-FXFormController_Tests-acknowledgements.markdown */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = "Pods-FXFormController_Tests-acknowledgements.markdown"; sourceTree = "<group>"; };
9D940727FF8FB9C785EB98E56350EF41 /* Podfile */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; name = Podfile; path = ../Podfile; sourceTree = SOURCE_ROOT; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; };
9E5D4C6ACEC56D88F155E7C7D256B37F /* SDFileAttributeHelper.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDFileAttributeHelper.m; path = SDWebImage/Private/SDFileAttributeHelper.m; sourceTree = "<group>"; };
9F826123B4A67D1FFDF4EFAE02508585 /* SDWebImage-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "SDWebImage-dummy.m"; sourceTree = "<group>"; };
9FC19533F051B8888E1263E550E62ED9 /* NSObject+MJKeyValue.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSObject+MJKeyValue.m"; path = "MJExtension/NSObject+MJKeyValue.m"; sourceTree = "<group>"; };
9FDFB855BF7B374C415F0FEE68241BDF /* SDWebImage.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = SDWebImage.framework; sourceTree = BUILT_PRODUCTS_DIR; };
A20AE683620BF8533E0BDA91A7D17006 /* UIImage+MemoryCacheCost.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIImage+MemoryCacheCost.m"; path = "SDWebImage/Core/UIImage+MemoryCacheCost.m"; sourceTree = "<group>"; };
A39679901A5FB230DDC29CC52BB479D4 /* Masonry-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Masonry-prefix.pch"; sourceTree = "<group>"; };
A3E72BF1C0BD9561C798CB34EED00720 /* SDImageCoder.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageCoder.m; path = SDWebImage/Core/SDImageCoder.m; sourceTree = "<group>"; };
A43ED082E4E8AF8B28C83357DB78F4B9 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = net.daringfireball.markdown; path = README.md; sourceTree = "<group>"; };
A573B89E0D9D52E265DE5A420F06C325 /* MASConstraint.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MASConstraint.h; path = Masonry/MASConstraint.h; sourceTree = "<group>"; };
A61010115E96C17B47BB8539CBDCB283 /* SDDeviceHelper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDDeviceHelper.h; path = SDWebImage/Private/SDDeviceHelper.h; sourceTree = "<group>"; };
A661EE2E0EB6B310683D194C653361EA /* SDAnimatedImagePlayer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDAnimatedImagePlayer.h; path = SDWebImage/Core/SDAnimatedImagePlayer.h; sourceTree = "<group>"; };
A6779FA3D90DEC5804CCB4CC12FF99B8 /* Pods-FXFormController_Tests.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-FXFormController_Tests.debug.xcconfig"; sourceTree = "<group>"; };
A6C5D862CBC232ED0FF36E185BC7AD31 /* TZPhotoPreviewCell.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TZPhotoPreviewCell.h; path = TZImagePickerController/TZImagePickerController/TZPhotoPreviewCell.h; sourceTree = "<group>"; };
A7446B820243D23BC554335868E4A7EC /* MJExtension.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MJExtension.h; path = MJExtension/MJExtension.h; sourceTree = "<group>"; };
A99B9B84A68CAE8A74F4FCF9CD8B9935 /* BRStringPickerView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = BRStringPickerView.m; path = BRPickerView/StringPickerView/BRStringPickerView.m; sourceTree = "<group>"; };
AA59F110434A84DF728D27BF06978D34 /* SDImageTransformer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageTransformer.m; path = SDWebImage/Core/SDImageTransformer.m; sourceTree = "<group>"; };
AA9F5D3CBD08BA758E6BCDE49C6C03AA /* BRAddressModel.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = BRAddressModel.m; path = BRPickerView/AddressPickerView/BRAddressModel.m; sourceTree = "<group>"; };
AB7876AFA5D103BF45855A064F657C44 /* SDImageIOCoder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageIOCoder.h; path = SDWebImage/Core/SDImageIOCoder.h; sourceTree = "<group>"; };
AB8CFB952FB41219B956C796EC5EA2C5 /* SDImageCoderHelper.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageCoderHelper.m; path = SDWebImage/Core/SDImageCoderHelper.m; sourceTree = "<group>"; };
ACB41FDFF16E002E00D0777802750D06 /* SDWebImageOperation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageOperation.h; path = SDWebImage/Core/SDWebImageOperation.h; sourceTree = "<group>"; };
ACC16CE075F7D5F049F8C335FAF4BCEB /* BRPickerView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = BRPickerView.h; path = BRPickerView/BRPickerView.h; sourceTree = "<group>"; };
AE568EB10C65E23FABC9690B4A929887 /* MASConstraintMaker.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MASConstraintMaker.m; path = Masonry/MASConstraintMaker.m; sourceTree = "<group>"; };
AF56834D92F9F050637327349106C97C /* GKPhotoBrowserConfigure.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GKPhotoBrowserConfigure.h; path = GKPhotoBrowser/GKPhotoBrowserConfigure.h; sourceTree = "<group>"; };
AFCCD860B482FA68C00CA7291AFB2BAB /* MJExtension-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "MJExtension-prefix.pch"; sourceTree = "<group>"; };
B0B214D775196BA7CA8E17E53048A493 /* SDWebImage.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = SDWebImage.framework; sourceTree = BUILT_PRODUCTS_DIR; };
B0C8E25E0FBA5A3EB7BD759656FB6121 /* UIImage+ExtendedCacheData.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImage+ExtendedCacheData.h"; path = "SDWebImage/Core/UIImage+ExtendedCacheData.h"; sourceTree = "<group>"; };
B342330BE6D91DDC7413D2A7A93D2E82 /* BRDatePickerView+BR.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "BRDatePickerView+BR.h"; path = "BRPickerView/DatePickerView/BRDatePickerView+BR.h"; sourceTree = "<group>"; };
B400721BC7B16A228C0D9A15984F6CBF /* TZAssetCell.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = TZAssetCell.m; path = TZImagePickerController/TZImagePickerController/TZAssetCell.m; sourceTree = "<group>"; };
B4A3149E3BE291A15437D775203C6E4E /* Masonry-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Masonry-dummy.m"; sourceTree = "<group>"; };
B4A5D28EC80D0B03DF54278E10A6219D /* MJPropertyType.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MJPropertyType.h; path = MJExtension/MJPropertyType.h; sourceTree = "<group>"; };
B51EF00B72CAF89C5FD2CEA1E88C41C5 /* SDWebImage.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = SDWebImage.modulemap; sourceTree = "<group>"; };
B58F67909BC389F996E40D4C80F5B004 /* NSImage+Compatibility.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSImage+Compatibility.m"; path = "SDWebImage/Core/NSImage+Compatibility.m"; sourceTree = "<group>"; };
B60449E65D31F6886A17E41D19085BF1 /* GKSDWebImageManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GKSDWebImageManager.h; path = GKPhotoBrowser/SDWebImage/GKSDWebImageManager.h; sourceTree = "<group>"; };
B64FDD0F8BD450283E543D48CBAB618C /* Pods-FXFormController_Tests-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-FXFormController_Tests-Info.plist"; sourceTree = "<group>"; };
B66A0476880932542A88280960C4AE16 /* TZImagePickerController-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "TZImagePickerController-dummy.m"; sourceTree = "<group>"; };
B7104EC3716B8031EBFFC792D2F715AB /* BRBaseView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = BRBaseView.m; path = BRPickerView/Base/BRBaseView.m; sourceTree = "<group>"; };
B713079E8AB4DD685B340E96B832DBC1 /* MJProperty.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MJProperty.m; path = MJExtension/MJProperty.m; sourceTree = "<group>"; };
B7F944652F79B387C13E1798093DD2C1 /* SDInternalMacros.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDInternalMacros.h; path = SDWebImage/Private/SDInternalMacros.h; sourceTree = "<group>"; };
B81D62227EC30408A57F752AC3731FAB /* TZImageRequestOperation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TZImageRequestOperation.h; path = TZImagePickerController/TZImagePickerController/TZImageRequestOperation.h; sourceTree = "<group>"; };
B9C1C0EE8E7528F1083DE3C87FFD3BED /* FXFormController-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "FXFormController-umbrella.h"; sourceTree = "<group>"; };
BB751BE2CD71A7BB251B78E284321801 /* SDWebImageDownloader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageDownloader.h; path = SDWebImage/Core/SDWebImageDownloader.h; sourceTree = "<group>"; };
BCB7E68BF4CDF6624C9B67A21FA2575F /* BRPickerView-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "BRPickerView-umbrella.h"; sourceTree = "<group>"; };
BCBC5602704BD5052A9E540415985ED9 /* BRPickerView-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "BRPickerView-dummy.m"; sourceTree = "<group>"; };
BCFAE33DE68D4F7CD45292368E0C1D68 /* TZVideoPlayerController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TZVideoPlayerController.h; path = TZImagePickerController/TZImagePickerController/TZVideoPlayerController.h; sourceTree = "<group>"; };
BD0FBBACE19302A1F200D45B4C715DE7 /* SDWebImage.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = SDWebImage.debug.xcconfig; sourceTree = "<group>"; };
BDAC8F75E61C698DF716E40C92FF74B3 /* Masonry.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Masonry.framework; sourceTree = BUILT_PRODUCTS_DIR; };
BE990FC6A069DE7F09DFA30B28C92CE0 /* SDInternalMacros.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDInternalMacros.m; path = SDWebImage/Private/SDInternalMacros.m; sourceTree = "<group>"; };
BFC8EC7CC4AC31FAA9A89D615BFCAC7B /* SDWebImageOptionsProcessor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageOptionsProcessor.h; path = SDWebImage/Core/SDWebImageOptionsProcessor.h; sourceTree = "<group>"; };
C050BBBF57D1FE9EE817E091E1FF4C36 /* SDAnimatedImage.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDAnimatedImage.h; path = SDWebImage/Core/SDAnimatedImage.h; sourceTree = "<group>"; };
C2F2E1F1A3F0AC2A63C348A8E81E4396 /* BRPickerView.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = BRPickerView.modulemap; sourceTree = "<group>"; };
C44355054866A4DBB399D0A85EF2ECAF /* MASLayoutConstraint.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MASLayoutConstraint.h; path = Masonry/MASLayoutConstraint.h; sourceTree = "<group>"; };
C5633B5F0E0955462A92CBBA39127D70 /* SDWebImageManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageManager.m; path = SDWebImage/Core/SDWebImageManager.m; sourceTree = "<group>"; };
C572E24898B8B051DFB0734BDCE2B2A7 /* SDImageLoadersManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageLoadersManager.m; path = SDWebImage/Core/SDImageLoadersManager.m; sourceTree = "<group>"; };
C5D325A84265546AF2BAFE7E23321482 /* BRPickerView-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "BRPickerView-Info.plist"; sourceTree = "<group>"; };
C61A773A9B0A6D3EBCFD8D19DC45A55E /* SDImageCodersManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageCodersManager.m; path = SDWebImage/Core/SDImageCodersManager.m; sourceTree = "<group>"; };
C6AD60BE58C601A7A44B640796658BBD /* NSString+MJExtension.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSString+MJExtension.h"; path = "MJExtension/NSString+MJExtension.h"; sourceTree = "<group>"; };
C74A074715141094A0C758A972B56334 /* UIScrollView+GKGestureHandle.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIScrollView+GKGestureHandle.h"; path = "GKPhotoBrowser/UIScrollView+GKGestureHandle.h"; sourceTree = "<group>"; };
C7808E4724BEE28A0088896D /* FXFormViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = FXFormViewController.m; sourceTree = "<group>"; };
C7808E4824BEE28A0088896D /* FXFormViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = FXFormViewController.h; sourceTree = "<group>"; };
C7808E4B24BEE28A0088896D /* FXFormModelTool.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = FXFormModelTool.m; sourceTree = "<group>"; };
C7808E4C24BEE28A0088896D /* NSObject+StandardLog.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSObject+StandardLog.m"; sourceTree = "<group>"; };
C7808E4D24BEE28A0088896D /* FXFormPickerTools.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = FXFormPickerTools.h; sourceTree = "<group>"; };
C7808E4E24BEE28A0088896D /* FXFormModelTool.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = FXFormModelTool.h; sourceTree = "<group>"; };
C7808E4F24BEE28A0088896D /* FXFormPickerTools.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = FXFormPickerTools.m; sourceTree = "<group>"; };
C7808E5224BEE28A0088896D /* UICollectionViewLeftAlignedLayout.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = UICollectionViewLeftAlignedLayout.h; sourceTree = "<group>"; };
C7808E5324BEE28A0088896D /* FXBoxViewCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = FXBoxViewCell.m; sourceTree = "<group>"; };
C7808E5424BEE28A0088896D /* FXCheckBoxCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = FXCheckBoxCell.h; sourceTree = "<group>"; };
C7808E5524BEE28A0088896D /* FXBoxItemCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = FXBoxItemCell.m; sourceTree = "<group>"; };
C7808E5624BEE28A0088896D /* FXRadioBoxCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = FXRadioBoxCell.m; sourceTree = "<group>"; };
C7808E5724BEE28A0088896D /* UICollectionViewLeftAlignedLayout.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = UICollectionViewLeftAlignedLayout.m; sourceTree = "<group>"; };
C7808E5824BEE28A0088896D /* FXBoxViewCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = FXBoxViewCell.h; sourceTree = "<group>"; };
C7808E5924BEE28A0088896D /* FXCheckBoxCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = FXCheckBoxCell.m; sourceTree = "<group>"; };
C7808E5A24BEE28A0088896D /* FXRadioBoxCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = FXRadioBoxCell.h; sourceTree = "<group>"; };
C7808E5B24BEE28A0088896D /* FXBoxItemCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = FXBoxItemCell.h; sourceTree = "<group>"; };
C7808E5D24BEE28A0088896D /* FXTextViewCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = FXTextViewCell.h; sourceTree = "<group>"; };
C7808E5E24BEE28A0088896D /* FXTextViewCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = FXTextViewCell.m; sourceTree = "<group>"; };
C7808E6024BEE28A0088896D /* FXMediaItemCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = FXMediaItemCell.m; sourceTree = "<group>"; };
C7808E6124BEE28A0088896D /* FXMediaViewCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = FXMediaViewCell.m; sourceTree = "<group>"; };
C7808E6224BEE28A0088896D /* FXMediaItemCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = FXMediaItemCell.h; sourceTree = "<group>"; };
C7808E6324BEE28A0088896D /* FXMediaViewCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = FXMediaViewCell.h; sourceTree = "<group>"; };
C7808E6524BEE28A0088896D /* FXBaseCollectionCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = FXBaseCollectionCell.h; sourceTree = "<group>"; };
C7808E6624BEE28A0088896D /* FXBaseViewCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = FXBaseViewCell.h; sourceTree = "<group>"; };
C7808E6724BEE28A0088896D /* FXBaseCollectionCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = FXBaseCollectionCell.m; sourceTree = "<group>"; };
C7808E6824BEE28A0088896D /* FXBaseViewCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = FXBaseViewCell.m; sourceTree = "<group>"; };
C7808E6A24BEE28A0088896D /* FXFormHeaderView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = FXFormHeaderView.m; sourceTree = "<group>"; };
C7808E6B24BEE28A0088896D /* FXFormHeaderView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = FXFormHeaderView.h; sourceTree = "<group>"; };
C7808E6D24BEE28A0088896D /* FXIDCardKeyboardView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = FXIDCardKeyboardView.h; sourceTree = "<group>"; };
C7808E6E24BEE28A0088896D /* FXIDCardKeyboardView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = FXIDCardKeyboardView.m; sourceTree = "<group>"; };
C7808E7024BEE28A0088896D /* FXSwitchCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = FXSwitchCell.h; sourceTree = "<group>"; };
C7808E7124BEE28A0088896D /* FXSwitchCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = FXSwitchCell.m; sourceTree = "<group>"; };
C7808E7324BEE28A0088896D /* FXLabelCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = FXLabelCell.m; sourceTree = "<group>"; };
C7808E7424BEE28A0088896D /* FXLabelCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = FXLabelCell.h; sourceTree = "<group>"; };
C7808E7624BEE28A0088896D /* FXArrowCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = FXArrowCell.h; sourceTree = "<group>"; };
C7808E7724BEE28A0088896D /* FXArrowCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = FXArrowCell.m; sourceTree = "<group>"; };
C7808E7924BEE28A0088896D /* FXTextFieldCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = FXTextFieldCell.h; sourceTree = "<group>"; };
C7808E7A24BEE28A0088896D /* FXTextFieldCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = FXTextFieldCell.m; sourceTree = "<group>"; };
C7808E7C24BEE28A0088896D /* FXMediaItem.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = FXMediaItem.h; sourceTree = "<group>"; };
C7808E7D24BEE28A0088896D /* FXFormHeaderModel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = FXFormHeaderModel.h; sourceTree = "<group>"; };
C7808E7E24BEE28A0088896D /* FXFormModel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = FXFormModel.h; sourceTree = "<group>"; };
C7808E7F24BEE28A0088896D /* FXRadioItem.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = FXRadioItem.h; sourceTree = "<group>"; };
C7808E8024BEE28A0088896D /* FXBoxItem.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = FXBoxItem.m; sourceTree = "<group>"; };
C7808E8124BEE28A0088896D /* FXMediaItem.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = FXMediaItem.m; sourceTree = "<group>"; };
C7808E8224BEE28A0088896D /* FXRadioItem.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = FXRadioItem.m; sourceTree = "<group>"; };
C7808E8324BEE28A0088896D /* FXFormModel.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = FXFormModel.m; sourceTree = "<group>"; };
C7808E8424BEE28A0088896D /* FXFormHeaderModel.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = FXFormHeaderModel.m; sourceTree = "<group>"; };
C7808E8524BEE28A0088896D /* FXBoxItem.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = FXBoxItem.h; sourceTree = "<group>"; };
C905440240A2841CFEE80B58D05035B5 /* SDAnimatedImageView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDAnimatedImageView.m; path = SDWebImage/Core/SDAnimatedImageView.m; sourceTree = "<group>"; };
C97A7CD7D4256BD0894F1538E6375D02 /* MASLayoutConstraint.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MASLayoutConstraint.m; path = Masonry/MASLayoutConstraint.m; sourceTree = "<group>"; };
CAF0751214AFBE871D56A253826CE89D /* GKPhotoBrowser.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = GKPhotoBrowser.framework; sourceTree = BUILT_PRODUCTS_DIR; };
CAF9EDB4EF931AFF593530FA50C946C7 /* TZImagePickerController.bundle */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = "wrapper.plug-in"; name = TZImagePickerController.bundle; path = TZImagePickerController/TZImagePickerController/TZImagePickerController.bundle; sourceTree = "<group>"; };
CC1EC8AFB357FEA65C8A337C5B63E1AC /* BRPickerStyle.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = BRPickerStyle.m; path = BRPickerView/Base/BRPickerStyle.m; sourceTree = "<group>"; };
CC6BE78C75DA491EA10F0909EAF0B733 /* SDImageIOCoder.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageIOCoder.m; path = SDWebImage/Core/SDImageIOCoder.m; sourceTree = "<group>"; };
CD7364708417BE2CCCA7DA1F644B17E0 /* SDWebImageDownloaderResponseModifier.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageDownloaderResponseModifier.m; path = SDWebImage/Core/SDWebImageDownloaderResponseModifier.m; sourceTree = "<group>"; };
CDB1CD40B5132060E8B23712E0673EE4 /* BRPickerView-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "BRPickerView-prefix.pch"; sourceTree = "<group>"; };
CE3573600B6C6D66DFFF3BD19E5B7011 /* SDImageAssetManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageAssetManager.h; path = SDWebImage/Private/SDImageAssetManager.h; sourceTree = "<group>"; };
CEF19D9A92E44A516BDD59C44B5886BB /* SDImageFrame.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageFrame.m; path = SDWebImage/Core/SDImageFrame.m; sourceTree = "<group>"; };
D07217BFDE82E1A3B50F263A0D02DC48 /* MASViewAttribute.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MASViewAttribute.m; path = Masonry/MASViewAttribute.m; sourceTree = "<group>"; };
D1322533229FAD585EEDFC9F73D6DF82 /* UIImage+ExtendedCacheData.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIImage+ExtendedCacheData.m"; path = "SDWebImage/Core/UIImage+ExtendedCacheData.m"; sourceTree = "<group>"; };
D1F81C374F859424B8B89DFA1EF6EF45 /* SDAnimatedImageRep.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDAnimatedImageRep.m; path = SDWebImage/Core/SDAnimatedImageRep.m; sourceTree = "<group>"; };
D26CAD5E9537C0820106BF47410128A4 /* SDAsyncBlockOperation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDAsyncBlockOperation.m; path = SDWebImage/Private/SDAsyncBlockOperation.m; sourceTree = "<group>"; };
D295E460015E71C12519DE86BEC5832A /* BRAddressPickerView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = BRAddressPickerView.h; path = BRPickerView/AddressPickerView/BRAddressPickerView.h; sourceTree = "<group>"; };
D3159A802A8BE25B094C057EA74E3B9A /* Pods-FXFormController_Tests-acknowledgements.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-FXFormController_Tests-acknowledgements.plist"; sourceTree = "<group>"; };
D52D78A880EA190716E7181C683D127F /* FXFormController.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = FXFormController.modulemap; sourceTree = "<group>"; };
D5364BF946500DD693BCFC590781009E /* NSButton+WebCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSButton+WebCache.h"; path = "SDWebImage/Core/NSButton+WebCache.h"; sourceTree = "<group>"; };
D58457DA1F4ADF8C59AE627197ED777E /* SDWebImage.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = SDWebImage.release.xcconfig; sourceTree = "<group>"; };
D5A1E9B8E98E241AABCE94A436B9B8EA /* SDImageLoader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageLoader.h; path = SDWebImage/Core/SDImageLoader.h; sourceTree = "<group>"; };
D5C3C14AB866D0FFE8D557E6DAE72F2A /* TZImagePickerController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TZImagePickerController.h; path = TZImagePickerController/TZImagePickerController/TZImagePickerController.h; sourceTree = "<group>"; };
D5D6BBE291BE69780D97528B403ADE9F /* SDImageCodersManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageCodersManager.h; path = SDWebImage/Core/SDImageCodersManager.h; sourceTree = "<group>"; };
D5E47976E13F8F5EBA20DF4097CA4AF2 /* SDWebImage-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "SDWebImage-Info.plist"; sourceTree = "<group>"; };
D611691A3B4E322F99947BB14D3A22D0 /* GKPanGestureRecognizer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GKPanGestureRecognizer.h; path = GKPhotoBrowser/GKPanGestureRecognizer.h; sourceTree = "<group>"; };
D64275A37FD8E189AA93E15652FD7A57 /* UIImage+MultiFormat.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIImage+MultiFormat.m"; path = "SDWebImage/Core/UIImage+MultiFormat.m"; sourceTree = "<group>"; };
D75399BDD1C0529D4EC3EC2A4204A063 /* GKPhotoBrowser-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "GKPhotoBrowser-Info.plist"; sourceTree = "<group>"; };
D79881D6900DE00BAEE2845B0B96D857 /* SDImageCacheConfig.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageCacheConfig.m; path = SDWebImage/Core/SDImageCacheConfig.m; sourceTree = "<group>"; };
D7D7338A674DD6F30F67E37C325123C9 /* SDDisplayLink.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDDisplayLink.m; path = SDWebImage/Private/SDDisplayLink.m; sourceTree = "<group>"; };
D8525C61DDD838353C9106DC30374D99 /* Masonry.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = Masonry.modulemap; sourceTree = "<group>"; };
D99C5CA7D0A699DA847A7D7F009D5B78 /* SDFileAttributeHelper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDFileAttributeHelper.h; path = SDWebImage/Private/SDFileAttributeHelper.h; sourceTree = "<group>"; };
DA4AFC87B6F10A36CAB4C32B76CA4136 /* MJExtension.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = MJExtension.debug.xcconfig; sourceTree = "<group>"; };
DD8D63B50BCA423ABFE5E90C502DFDC1 /* BRPickerStyle.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = BRPickerStyle.h; path = BRPickerView/Base/BRPickerStyle.h; sourceTree = "<group>"; };
DE6C62FDD8311007F7A922E210376775 /* SDImageGraphics.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageGraphics.m; path = SDWebImage/Core/SDImageGraphics.m; sourceTree = "<group>"; };
DF1F4361F70EC6A80EAE040EDE1C86F9 /* SDWebImageDownloader.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageDownloader.m; path = SDWebImage/Core/SDWebImageDownloader.m; sourceTree = "<group>"; };
DF84EAD09B5205741FBE56B36EC64D56 /* TZImagePickerController-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "TZImagePickerController-Info.plist"; sourceTree = "<group>"; };
DF9F74FD490F965E527A69C74E36B50A /* UIImageView+HighlightedWebCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImageView+HighlightedWebCache.h"; path = "SDWebImage/Core/UIImageView+HighlightedWebCache.h"; sourceTree = "<group>"; };
DFE07BE49B163C9FE9CCEA26BC61B713 /* TZPhotoPreviewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TZPhotoPreviewController.h; path = TZImagePickerController/TZImagePickerController/TZPhotoPreviewController.h; sourceTree = "<group>"; };
E24D829E2160D73554E276E51731ADCC /* UIColor+SDHexString.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIColor+SDHexString.m"; path = "SDWebImage/Private/UIColor+SDHexString.m"; sourceTree = "<group>"; };
E27B3A81D8BBF5E128B4588354B0A719 /* NSData+ImageContentType.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSData+ImageContentType.m"; path = "SDWebImage/Core/NSData+ImageContentType.m"; sourceTree = "<group>"; };
E2D6010BF0D11EA31C7DD28F6E6F187F /* NSObject+MJClass.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSObject+MJClass.m"; path = "MJExtension/NSObject+MJClass.m"; sourceTree = "<group>"; };
E375EEA05842EAA0152C797E0F2384E0 /* FXFormController.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = FXFormController.framework; sourceTree = BUILT_PRODUCTS_DIR; };
E3FFC37588AC699CEA7DFB00EE3192E1 /* SDWebImageIndicator.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageIndicator.m; path = SDWebImage/Core/SDWebImageIndicator.m; sourceTree = "<group>"; };
E5FA0707F6BBFB89664CE906DE815F40 /* TZImagePickerController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = TZImagePickerController.m; path = TZImagePickerController/TZImagePickerController/TZImagePickerController.m; sourceTree = "<group>"; };
E60CE77F47EFCC3F819707A05CB3B471 /* SDImageCachesManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageCachesManager.h; path = SDWebImage/Core/SDImageCachesManager.h; sourceTree = "<group>"; };
E7100359BEFF69EF3D69633025EABD28 /* SDImageHEICCoderInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageHEICCoderInternal.h; path = SDWebImage/Private/SDImageHEICCoderInternal.h; sourceTree = "<group>"; };
E7482384CCFE0522E5442A090403BFC4 /* SDWebImageCacheSerializer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageCacheSerializer.m; path = SDWebImage/Core/SDWebImageCacheSerializer.m; sourceTree = "<group>"; };
E98030478B33360DCCBE198055D6BC1D /* SDWebImageDownloaderRequestModifier.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageDownloaderRequestModifier.m; path = SDWebImage/Core/SDWebImageDownloaderRequestModifier.m; sourceTree = "<group>"; };
E9F26424AD1D3FB068EDE8DBE83180D2 /* SDWebImageError.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageError.m; path = SDWebImage/Core/SDWebImageError.m; sourceTree = "<group>"; };
EA1442F4D634F179FD91B7C8BF1DBF9F /* UIImage+ForceDecode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIImage+ForceDecode.m"; path = "SDWebImage/Core/UIImage+ForceDecode.m"; sourceTree = "<group>"; };
EA752B4E779E9EDAC39224AE00EF7BFD /* GKPhotoManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GKPhotoManager.m; path = GKPhotoBrowser/GKPhotoManager.m; sourceTree = "<group>"; };
EC869D842A6491BA009DBF57AD345135 /* GKPhotoBrowser.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GKPhotoBrowser.h; path = GKPhotoBrowser/GKPhotoBrowser.h; sourceTree = "<group>"; };
ECEE5A5384E82BBCB99800E59644B4C7 /* NSBundle+BRPickerView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSBundle+BRPickerView.m"; path = "BRPickerView/Base/NSBundle+BRPickerView.m"; sourceTree = "<group>"; };
ED66A1BA7DA1B92817A32A4B577B6279 /* GKPhotoBrowser.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GKPhotoBrowser.m; path = GKPhotoBrowser/GKPhotoBrowser.m; sourceTree = "<group>"; };
EE993A17C8AA51AE5301610186E96A4F /* Pods-FXFormController_Example-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-FXFormController_Example-Info.plist"; sourceTree = "<group>"; };
EEA57BC2FA85DA0BD138BA4196710A3B /* TZPhotoPreviewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = TZPhotoPreviewController.m; path = TZImagePickerController/TZImagePickerController/TZPhotoPreviewController.m; sourceTree = "<group>"; };
EF13E6410EC82AA207F5D11C01CD5283 /* FXFormController-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "FXFormController-Info.plist"; sourceTree = "<group>"; };
F01C9ACBD886966A15D0FCB95F1D719F /* MJExtension-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "MJExtension-umbrella.h"; sourceTree = "<group>"; };
F03676BB20270BFFA718F02CBCC21C5C /* SDImageLoader.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageLoader.m; path = SDWebImage/Core/SDImageLoader.m; sourceTree = "<group>"; };
F1019BA52FB5AE43B9BA36F77FF72140 /* SDImageGIFCoder.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageGIFCoder.m; path = SDWebImage/Core/SDImageGIFCoder.m; sourceTree = "<group>"; };
F143C5860DE10A1FF28A4FD2B05382C0 /* FXFormController-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "FXFormController-prefix.pch"; sourceTree = "<group>"; };
F213FFCE0071839C2668E5570428C577 /* BRPickerView.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = BRPickerView.framework; sourceTree = BUILT_PRODUCTS_DIR; };
F22B81C5CAC8C6EC1EB2001F4D88E299 /* TZPhotoPickerController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = TZPhotoPickerController.m; path = TZImagePickerController/TZImagePickerController/TZPhotoPickerController.m; sourceTree = "<group>"; };
F3138846C6423F9386DE9BDD29BC83C3 /* UIImage+MultiFormat.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImage+MultiFormat.h"; path = "SDWebImage/Core/UIImage+MultiFormat.h"; sourceTree = "<group>"; };
F3C33A8430124548FC65A381D5FE9D09 /* SDWebImageDownloaderConfig.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageDownloaderConfig.h; path = SDWebImage/Core/SDWebImageDownloaderConfig.h; sourceTree = "<group>"; };
F4B25BC496F849162BBF652FEEBFE144 /* NSImage+Compatibility.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSImage+Compatibility.h"; path = "SDWebImage/Core/NSImage+Compatibility.h"; sourceTree = "<group>"; };
F508EF66933CD82B2A0592955292D489 /* Pods-FXFormController_Example.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = "Pods-FXFormController_Example.modulemap"; sourceTree = "<group>"; };
F5A6656ECE2AD5BAB015F931A3EB72F3 /* Pods-FXFormController_Example.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-FXFormController_Example.debug.xcconfig"; sourceTree = "<group>"; };
F5E9099E041C4DB509590D9A88BE3F6E /* TZImagePickerController.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = TZImagePickerController.release.xcconfig; sourceTree = "<group>"; };
F722A08B48C7E24C645F68D8F7F9753B /* SDImageCacheDefine.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageCacheDefine.h; path = SDWebImage/Core/SDImageCacheDefine.h; sourceTree = "<group>"; };
F7471B65BC62063F66E2FA2772D152AB /* BRPickerView.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = BRPickerView.release.xcconfig; sourceTree = "<group>"; };
F77294FCA10404EA0449029F79F4F4BB /* BRAddressPickerView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = BRAddressPickerView.m; path = BRPickerView/AddressPickerView/BRAddressPickerView.m; sourceTree = "<group>"; };
F7EC0D040E64B7EDD847EEF32B655594 /* TZPhotoPickerController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TZPhotoPickerController.h; path = TZImagePickerController/TZImagePickerController/TZPhotoPickerController.h; sourceTree = "<group>"; };
F8468B496199AEA72133B49AD78A5807 /* MJExtension-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "MJExtension-dummy.m"; sourceTree = "<group>"; };
F8B9F271C76CD6453388F9473049CB94 /* SDWebImagePrefetcher.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImagePrefetcher.h; path = SDWebImage/Core/SDWebImagePrefetcher.h; sourceTree = "<group>"; };
F900A986967F10D35D3A36B24F56978A /* View+MASAdditions.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "View+MASAdditions.m"; path = "Masonry/View+MASAdditions.m"; sourceTree = "<group>"; };
FA3AADF6F0827B7F0DDD644A596C74A6 /* NSArray+MASShorthandAdditions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSArray+MASShorthandAdditions.h"; path = "Masonry/NSArray+MASShorthandAdditions.h"; sourceTree = "<group>"; };
FB9F694464397301413EC70E89617AA6 /* NSData+ImageContentType.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSData+ImageContentType.h"; path = "SDWebImage/Core/NSData+ImageContentType.h"; sourceTree = "<group>"; };
FBD9722F4B3E9354F06906D4C726ADE5 /* BRStringPickerView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = BRStringPickerView.h; path = BRPickerView/StringPickerView/BRStringPickerView.h; sourceTree = "<group>"; };
FDCCCE9091F5BDD76D6C911BCFBF5608 /* SDWebImage-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "SDWebImage-umbrella.h"; sourceTree = "<group>"; };
FEA3724280789715FC36C8D431986FDA /* UIView+WebCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIView+WebCache.h"; path = "SDWebImage/Core/UIView+WebCache.h"; sourceTree = "<group>"; };
FFCCFC6379908479F5CD13A1FBFED54E /* TZGifPhotoPreviewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = TZGifPhotoPreviewController.m; path = TZImagePickerController/TZImagePickerController/TZGifPhotoPreviewController.m; sourceTree = "<group>"; };
FFD42E1B9FAFF1C417C4765C78CC6613 /* NSObject+MJKeyValue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSObject+MJKeyValue.h"; path = "MJExtension/NSObject+MJKeyValue.h"; sourceTree = "<group>"; };
/* End PBXFileReference section */
/* Begin PBXFrameworksBuildPhase section */
1F10249B9091729E4CC79240C91736DE /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
E02BFFE03C682EA43B287B27E1C2ECD3 /* Foundation.framework in Frameworks */,
94E3AED285C472FACB9B26EA6DE78C39 /* ImageIO.framework in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
2A2B2EE9914711F0B17B46FB0EE25A8D /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
B75A083955D2D553AEE8E57FC4F0B93F /* BRPickerView.framework in Frameworks */,
09CBCC58679EA581753989250FC48E6A /* Foundation.framework in Frameworks */,
B84D6B88E42462972227974916895008 /* GKPhotoBrowser.framework in Frameworks */,
A06EB51562E5E9D6D27AD5CD893D6681 /* Masonry.framework in Frameworks */,
F0021C06B98B3E8392BA0E67A23685B0 /* MJExtension.framework in Frameworks */,
F4346D771089182AE27DDF742BA57B4A /* SDWebImage.framework in Frameworks */,
397F7B4C1325C9CB139EDE20B4F6A162 /* TZImagePickerController.framework in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
3E17C19450687CD930698685CEF049BF /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
D02D6D8E1C52BF367DEACFD596A75765 /* Foundation.framework in Frameworks */,
C900FFB0F75FDC0C7E4B00F81BE70A1A /* UIKit.framework in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
46DF8BC5A6AA20A30405F7C4BB9B1ACA /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
0EF6886529E288581CBFA5F8604D2D59 /* Foundation.framework in Frameworks */,
0BBE46B017BA7AEF259E3327B1EC1948 /* MobileCoreServices.framework in Frameworks */,
B04CCCCC5F78F9DE58EC8421FD5D73BC /* Photos.framework in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
68CF859D73F4AD281B9000C931FC062D /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
FBC53D602296BD60A6C1C5F7862101D1 /* Foundation.framework in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
725440028C82797115483B0390F13090 /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
3DCE9A14A36B71E67CA67D45969F22B1 /* Foundation.framework in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
A04D2DE5A5156DDB42EB637DE0E203FD /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
3CBB4D04B7FCD2A1E7A79B897FB13A65 /* Foundation.framework in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
A2DBEC8DF82212F0D7C1FE2D7593DC37 /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
C1CFBBC4A817EC41204BFAD88CA82E27 /* Foundation.framework in Frameworks */,
0F39B10888E8E7FDD6C28E12F6F26238 /* SDWebImage.framework in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
AC4B77E245B28D9135BA6AAD4A0FC41C /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
24A4ACAE0E5FCE26110779DA6D1D9478 /* Foundation.framework in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXFrameworksBuildPhase section */
/* Begin PBXGroup section */
04232059D746CF2C9DA9B6E0719DC6E2 /* Pods-FXFormController_Tests */ = {
isa = PBXGroup;
children = (
423BF458A91B673450F236380186AE72 /* Pods-FXFormController_Tests.modulemap */,
9D2911E83785C992ACE173BA26960B8C /* Pods-FXFormController_Tests-acknowledgements.markdown */,
D3159A802A8BE25B094C057EA74E3B9A /* Pods-FXFormController_Tests-acknowledgements.plist */,
74F9EC670AA5466582248C3C8F8C2C83 /* Pods-FXFormController_Tests-dummy.m */,
B64FDD0F8BD450283E543D48CBAB618C /* Pods-FXFormController_Tests-Info.plist */,
43CA968327A048E8EEB73E9623AC5FF5 /* Pods-FXFormController_Tests-umbrella.h */,
A6779FA3D90DEC5804CCB4CC12FF99B8 /* Pods-FXFormController_Tests.debug.xcconfig */,
5C05D0732FEB4A4F722F9DA342F7F2F7 /* Pods-FXFormController_Tests.release.xcconfig */,
);
name = "Pods-FXFormController_Tests";
path = "Target Support Files/Pods-FXFormController_Tests";
sourceTree = "<group>";
};
0E4590474447A4DBF03C2C0FF36A6CC0 /* FXFormController */ = {
isa = PBXGroup;
children = (
C7808E4524BEE28A0088896D /* Classes */,
46A807BAC20192F6E7CAF0B8B1B65026 /* Pod */,
E480AF0A6C7EACEBD571DCFC8759FBB2 /* Support Files */,
);
name = FXFormController;
path = ../..;
sourceTree = "<group>";
};
206C0EC4B8444B5ED8083324BD594906 /* Pods */ = {
isa = PBXGroup;
children = (
6A4C9E75056FE4AECF7AC1EF0DB59B7F /* BRPickerView */,
D2298F7DE3CE5630366CE182F6EEE388 /* GKPhotoBrowser */,
E572F0E59D8A0CF63ADDD1F1BDB10C7A /* Masonry */,
CDE3DAFC11E576F73F4917AF2CF79CD6 /* MJExtension */,
8E968BED234CD01F460DBEC67C8D07B0 /* SDWebImage */,
29C5582200A318FD2251A78B8CDAE02E /* TZImagePickerController */,
);
name = Pods;
sourceTree = "<group>";
};
2805DB1DA8BD432E13E361BA20ACD2AB /* StringPickerView */ = {
isa = PBXGroup;
children = (
73F5D3F74D296E272A622178130C351B /* BRResultModel.h */,
3CE75DA910E27EDD4130B706C5B77022 /* BRResultModel.m */,