-
Notifications
You must be signed in to change notification settings - Fork 0
/
project.pbxproj
2679 lines (2666 loc) · 199 KB
/
project.pbxproj
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 */
00224C929D57F45B70E87359E719948D /* FBSnapshotTestCase.h in Headers */ = {isa = PBXBuildFile; fileRef = 44A34CDFE47D6486C78EC8595300E88F /* FBSnapshotTestCase.h */; settings = {ATTRIBUTES = (Public, ); }; };
018228C4760DF4F8B80630BC9ACCB39E /* DSL.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1A5F1BCB7C4C291D67FB99CBE8D131BB /* DSL.swift */; };
02391D25E806353ABC17CE6A0474BE86 /* GenericCollectionReusableView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6DE25A042E0B0FAF63EA386CEBE48313 /* GenericCollectionReusableView.swift */; };
02DD7FC6A855D0675EA8B3BE66C99BBB /* XCTest.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = B7311CCCA04811338D740DBFEA4CC62D /* XCTest.framework */; };
0353CDD8BF6BD68D5822B5306BBACCAF /* UIImage+Compare.m in Sources */ = {isa = PBXBuildFile; fileRef = 4FB8E49CCB6EDC7E7C57DEAEA4C183B6 /* UIImage+Compare.m */; };
059A5BF9413D07A21BA5FFE6A10461AF /* VideoCache.swift in Sources */ = {isa = PBXBuildFile; fileRef = A382EA452DC1CC9649E4C2EA0CA85036 /* VideoCache.swift */; };
06B754292525AC1EEC2273AB8C4A35F9 /* MediaResourceLoader.swift in Sources */ = {isa = PBXBuildFile; fileRef = CB1E8E7D4F00068247CF57BC03342DC2 /* MediaResourceLoader.swift */; };
0892D14FE7A3452423E9129D7917664B /* MatchError.swift in Sources */ = {isa = PBXBuildFile; fileRef = 269EA3B74C54781D48228F88A09B1588 /* MatchError.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; };
092256E303520E50ADEFF25EEB4E73EE /* CwlCatchException.h in Headers */ = {isa = PBXBuildFile; fileRef = 7A2D9EC9A5F9A0241ADF2E479B33C0A0 /* CwlCatchException.h */; settings = {ATTRIBUTES = (Public, ); }; };
09400E71A4D9B273E05289C0D98D22FB /* URLImageView.swift in Sources */ = {isa = PBXBuildFile; fileRef = F743DE42860D1B10900D2FB40C146D7F /* URLImageView.swift */; };
098BFC14C537EA9FAF9C07ADBBC45B52 /* XCTestObservationCenter+CurrentTestCaseTracker.m in Sources */ = {isa = PBXBuildFile; fileRef = 396D43E94CCCA4EDC58BE2EA2DB8388A /* XCTestObservationCenter+CurrentTestCaseTracker.m */; };
0C072BAF4C571466FAB0318786347ADA /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 21C3C4B545657B2907FBCBC01372B1CD /* Foundation.framework */; };
0C091B7E293E5115646EE277C809E91A /* Nimble-Snapshots-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = FBC335FA3170A00CB0ED68063C37AFE5 /* Nimble-Snapshots-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; };
0EAD68C8FD7F7B07612DBEB29102A1D6 /* CachableAVPlayerItem.swift in Sources */ = {isa = PBXBuildFile; fileRef = CC13887B81C56FB2EA53F39748685D1D /* CachableAVPlayerItem.swift */; };
10C8810E574F925B5CD3449B6DBE6EC0 /* Quick.h in Headers */ = {isa = PBXBuildFile; fileRef = E075CED0760F3EAF3829AEADEE587E6D /* Quick.h */; settings = {ATTRIBUTES = (Public, ); }; };
11C410135C7E89353B480AC8DE0BFB77 /* UIApplication+StrictKeyWindow.m in Sources */ = {isa = PBXBuildFile; fileRef = 5A6F51C2B4E25038F3C6AD8301A3F579 /* UIApplication+StrictKeyWindow.m */; };
13D2A4D59DD9612E1AA7F3182A342162 /* mach_excServer.c in Sources */ = {isa = PBXBuildFile; fileRef = 70CD71D4F71C6FE39643ACE3FAA592B7 /* mach_excServer.c */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; };
14A94253562A978A55E5A7CE62FAC108 /* FBSnapshotTestController.h in Headers */ = {isa = PBXBuildFile; fileRef = D21824851068802AFED93F82877B43B5 /* FBSnapshotTestController.h */; settings = {ATTRIBUTES = (Public, ); }; };
14AD81D52FAD9CF2C065C61FB00C3B4F /* UIImage+Diff.m in Sources */ = {isa = PBXBuildFile; fileRef = 7F2AD66826BEE649F9B55658A8D540A2 /* UIImage+Diff.m */; };
14C511527597E5846AB2627F791C7D8E /* QuartzCore.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = B6F5EF634F5E6939FF8D0D0ED43E7B11 /* QuartzCore.framework */; };
14ECE81218F5F5C9BEF00819A7C078EC /* Closures.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1DB80BBC7AEDDC8403EAB914E9FF04B7 /* Closures.swift */; };
1517C401FBD8160B225D9A781C37CB5A /* Nimble-Snapshots-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = C7FEBE741A82C3A30BB64A96828335E0 /* Nimble-Snapshots-dummy.m */; };
163C2D9C86D8AA40817453CC2F41F5BE /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 21C3C4B545657B2907FBCBC01372B1CD /* Foundation.framework */; };
192A3F8BEC1A99FD8712D3E09724D72C /* FailureMessage.swift in Sources */ = {isa = PBXBuildFile; fileRef = 645DCD5232148C9EBBA49C81EE98B811 /* FailureMessage.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; };
19462A0620D07E59F9132CA1DFC59D42 /* Pods-ComposableDataSource_Example-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = E2816706B22418F4C4E737D649A53631 /* Pods-ComposableDataSource_Example-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; };
1A8DF79F5EF3D69864A84173E7C9810E /* QCKDSL.h in Headers */ = {isa = PBXBuildFile; fileRef = 11780EEB01385DDE3C3AC8015ECC916D /* QCKDSL.h */; settings = {ATTRIBUTES = (Public, ); }; };
1E9765321C09CD3A53C3962859EB4008 /* FBSnapshotTestCasePlatform.m in Sources */ = {isa = PBXBuildFile; fileRef = F16D733FB1419BD5BEB09F00B819C19B /* FBSnapshotTestCasePlatform.m */; };
209F98BB7B328893FB64BA0393B4BD57 /* HooksPhase.swift in Sources */ = {isa = PBXBuildFile; fileRef = DFD061163A870FBE068F09D4880DC624 /* HooksPhase.swift */; };
22B5B4ED0824E7BAF2091AAD6238A73F /* QuickSpecBase.m in Sources */ = {isa = PBXBuildFile; fileRef = B9263113FE713BF54C688800D4926C8F /* QuickSpecBase.m */; };
234849AD309265FD107C74357FC8C0CF /* DSL+Wait.swift in Sources */ = {isa = PBXBuildFile; fileRef = ACE2D63FC21A3DFC99B81D3D072BEEBB /* DSL+Wait.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; };
2391FFD3230B40E2348B5257D6296BBB /* BeGreaterThanOrEqualTo.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3E191E724EC016CEE4188CA663765480 /* BeGreaterThanOrEqualTo.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; };
26B9FEAB3DE0C8B91709D53571752A3B /* MatcherFunc.swift in Sources */ = {isa = PBXBuildFile; fileRef = CDAA56BBDC077759855EBA43BAB4DB59 /* MatcherFunc.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; };
2B350015B9F7546D0769649EE12D7D1A /* NimbleXCTestHandler.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5F3754173FF8E9CBEC2E308D5012714A /* NimbleXCTestHandler.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; };
2DCFF0CE0BD295F1D46D3247F36B192C /* UIImage+Compare.m in Sources */ = {isa = PBXBuildFile; fileRef = 45845D1B70377E83B617EED5F7B322C4 /* UIImage+Compare.m */; };
2F0B5199CDB717CA9F680579900ABF15 /* QuickSpec.m in Sources */ = {isa = PBXBuildFile; fileRef = 851A0F2599714F23B4E759A3AF65118F /* QuickSpec.m */; };
3262B230B938C8D6522790093FEAF69D /* EndWith.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3DC2346A6DC309992F16CBD4486AA75F /* EndWith.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; };
32DF30CA07145B105E1F456EB3459623 /* Nimble_Snapshots.h in Headers */ = {isa = PBXBuildFile; fileRef = 975F1BD6ACEA4E6EE45E47DDEE916D9E /* Nimble_Snapshots.h */; settings = {ATTRIBUTES = (Public, ); }; };
330E8E4A6596ED625E9B34C94CC4136E /* Await.swift in Sources */ = {isa = PBXBuildFile; fileRef = F48F5FD97C055C20248B673D248215B0 /* Await.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; };
33F3D6D33A64FCE3417538DF0CC6BF64 /* FBSnapshotTestCasePlatform.h in Headers */ = {isa = PBXBuildFile; fileRef = FE0FC56AD55FFB3C0373D1B3105CB7EA /* FBSnapshotTestCasePlatform.h */; settings = {ATTRIBUTES = (Public, ); }; };
3460FEA0CEADB05D3B56C2E1CAF9590C /* ElementsEqual.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4234E8A6EEF9C179A271CDF77A470400 /* ElementsEqual.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; };
39133A7716CEDEB690A7DA9D12C45C4D /* CwlDarwinDefinitions.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8AD66C2E432D396C624236ABF8A8CAD6 /* CwlDarwinDefinitions.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; };
39382B0A1EF090D15BA6C89FC3DCB099 /* QuickTestObservation.swift in Sources */ = {isa = PBXBuildFile; fileRef = A6B4B481C9E45AE6EEB479A1AA2A0EE1 /* QuickTestObservation.swift */; };
3B11EBE09109951CA8C99922EEB7BC3B /* Extensions.swift in Sources */ = {isa = PBXBuildFile; fileRef = C4A5A2BA19E100999321028A41201B12 /* Extensions.swift */; };
3BD0C370BBCEBDEA68B8EDBD969370EB /* mach_excServer.h in Headers */ = {isa = PBXBuildFile; fileRef = 1A5ED0FE2DDB7F706A51A84704490DDF /* mach_excServer.h */; settings = {ATTRIBUTES = (Public, ); }; };
3CB50F1E0436829413E70EE62F2CF0FF /* FileStorageManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6874F066BBC9364E3EFE686F92566B9F /* FileStorageManager.swift */; };
3D6A581E79FD9EAC1A948D8BC53F1EB0 /* QuickConfiguration.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4E17E6A390B4B9CD757C102BC7661A50 /* QuickConfiguration.swift */; };
3D9143D80C7867629C19ADCFD3086CBA /* FBSnapshotTestCase.h in Headers */ = {isa = PBXBuildFile; fileRef = D9A94AD709D941AF17EA23718B028894 /* FBSnapshotTestCase.h */; settings = {ATTRIBUTES = (Public, ); }; };
3E392685C89CB7AE475F02BBF215D97C /* DataLoadablePlayerItem.swift in Sources */ = {isa = PBXBuildFile; fileRef = 773942E0D77900D61B0EB938B1FFDBBF /* DataLoadablePlayerItem.swift */; };
3EA08EB6F673D8876FE9A2CDB31275DC /* UIImage+Snapshot.h in Headers */ = {isa = PBXBuildFile; fileRef = 1B706C995F8D8438DF8022DF762DB2D2 /* UIImage+Snapshot.h */; settings = {ATTRIBUTES = (Private, ); }; };
40039E0AF0D764360B1D4FC4F7950D2E /* UIApplication+StrictKeyWindow.h in Headers */ = {isa = PBXBuildFile; fileRef = 8E0F895B2F4896EDE0F637400D2D096C /* UIApplication+StrictKeyWindow.h */; settings = {ATTRIBUTES = (Project, ); }; };
4203EF96811AE514D64AE069311B1575 /* AllPass.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1D066819118E8662EEA39D09F9E59AC7 /* AllPass.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; };
422CB3C3D4CDCA7F55211E03014956A0 /* URLVideoPlayerView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3F4DC85FEC6316A26AE2CC48132CD52C /* URLVideoPlayerView.swift */; };
42F76698690916E0407F51610D829412 /* BeGreaterThan.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3A6C55CEB5E46829241A8B4411E6D215 /* BeGreaterThan.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; };
44C9470137EF941955A1FDCE71D68C26 /* MatcherProtocols.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6A002C82639D50399C7B02C2A1EFFD7C /* MatcherProtocols.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; };
4672FD9F2A61E374A3E7DD79336D4831 /* FBSnapshotTestCase.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 45544E7DC8BC621B5141430C9031836E /* FBSnapshotTestCase.framework */; };
46B90B2CF2EB97B38C43A31E9A5478C2 /* PostNotification.swift in Sources */ = {isa = PBXBuildFile; fileRef = F9B6DFC80E704FA6CB929B41B06D0DE3 /* PostNotification.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; };
46BDEBF35D99D2CC53EF72DFC5BDCDCC /* BeLessThanOrEqual.swift in Sources */ = {isa = PBXBuildFile; fileRef = C0CEF0E2EC455C158CBD1AE8A648BF96 /* BeLessThanOrEqual.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; };
4A9E7C1A8B697A1C0B0A1E0DF855A591 /* CwlCatchException.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9C4C8CC4185BD9FAD9DF57EA55216D0D /* CwlCatchException.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; };
4ADE5FC9505A3BF7DF17AF9756585116 /* QCKDSL.m in Sources */ = {isa = PBXBuildFile; fileRef = FE91B5228C01400446C609B7630ACB9A /* QCKDSL.m */; };
4AE833DA1B685C84D5A5747BA7D6B349 /* DownloadTaskRequest.swift in Sources */ = {isa = PBXBuildFile; fileRef = DEFAFDCBF65246ACD545100623BDDB3F /* DownloadTaskRequest.swift */; };
4CD5591DB1830D1F96292CDFF84B30A0 /* XCTest.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = B7311CCCA04811338D740DBFEA4CC62D /* XCTest.framework */; };
4E1DBC9FF76D6AD924D1356260438074 /* QuickSelectedTestSuiteBuilder.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2A2D1748A0147F5436152C6084CA1C08 /* QuickSelectedTestSuiteBuilder.swift */; };
4F4B305189FA0015E1FF18BE49210888 /* GenericSupplementaryModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = F3F8D85863678CE72BEC2534FD6A5E8C /* GenericSupplementaryModel.swift */; };
512AAF465EE936155DD9BBA92368928E /* Quick-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 0D74AE18FD7EBD649E31763F7BCAF666 /* Quick-dummy.m */; };
51AF27C6C6A436C598A9C6FD24990EF7 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 21C3C4B545657B2907FBCBC01372B1CD /* Foundation.framework */; };
524B49575CF7A7FF74F8B460C17512F2 /* XCTest.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = B7311CCCA04811338D740DBFEA4CC62D /* XCTest.framework */; };
52AB6461CAA9481D24835F3E48301FC6 /* BeIdenticalTo.swift in Sources */ = {isa = PBXBuildFile; fileRef = D73B577562DA8FE979275D056B65EC90 /* BeIdenticalTo.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; };
53D4EA82797AB425B9DD2A06C8DED64B /* UIKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = B7072F8592C1417443E2AF4DBF851552 /* UIKit.framework */; };
5578F928AEFA8B2B7CC542033590DFD6 /* Match.swift in Sources */ = {isa = PBXBuildFile; fileRef = D38C96CB1AD505F67140950283961B60 /* Match.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; };
58A884856B7E64EE3C204D9EDAA14045 /* Behavior.swift in Sources */ = {isa = PBXBuildFile; fileRef = 37821BB0503C6E9C435B2C36DA68AAE1 /* Behavior.swift */; };
59BF9ABA8BB14E0E4E345D13AB6D49FB /* ExampleMetadata.swift in Sources */ = {isa = PBXBuildFile; fileRef = E4C76133872E8AB85C11158267DFCBA4 /* ExampleMetadata.swift */; };
5B6F70DDD4C63CF6ED95291BCB633494 /* ContainElementSatisfying.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7A00167A623264A0DD7C803734EF48F6 /* ContainElementSatisfying.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; };
5E5651858F75FE4BBC4576EC6A5D8E00 /* ImageCache.swift in Sources */ = {isa = PBXBuildFile; fileRef = B9AA9439956A9F91D7628F8C6C874B87 /* ImageCache.swift */; };
5FE0E6C8930A0260B8C73EBB8A8192D7 /* CollectionDataSource.swift in Sources */ = {isa = PBXBuildFile; fileRef = 25C6556E1EAFA19351C3F7BB39DBB800 /* CollectionDataSource.swift */; };
602E3758C0EF64AF6B7FCEA05BF5B9B9 /* Expectation.swift in Sources */ = {isa = PBXBuildFile; fileRef = CB4A98B91D749B9EDC9EEE8BE133FCD1 /* Expectation.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; };
610D6EC1202EB3B04500DD44B66A9DB1 /* UIImage+Compare.h in Headers */ = {isa = PBXBuildFile; fileRef = 13883F534B8F1A4B28F78DAFADD3A93E /* UIImage+Compare.h */; settings = {ATTRIBUTES = (Private, ); }; };
618B2BE4222F19852598D9A76F888685 /* FBSnapshotTestController.m in Sources */ = {isa = PBXBuildFile; fileRef = 05E743E8BF38F509985BA0D70EEE9552 /* FBSnapshotTestController.m */; };
624F7495EAECE25F6D2D55FB96566DC6 /* Pods-ComposableDataSource_Tests-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 528F296A58E0BB7692E170F31A78762C /* Pods-ComposableDataSource_Tests-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; };
64E26D7D025AC4462DFA8BA66B38C9D8 /* HaveCount.swift in Sources */ = {isa = PBXBuildFile; fileRef = DA394C23E0F50D7AB43084AEEECD3928 /* HaveCount.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; };
64FBF205EC2D92D9D87D2707022E91B2 /* Extensions.swift in Sources */ = {isa = PBXBuildFile; fileRef = 11ED593BFE2EB881187C865699563406 /* Extensions.swift */; };
65AB4593A79088D1AC33DC0FEFCA8E13 /* GenericDownloadModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2ED361DB9559B10677FF43CCA8F3AA6A /* GenericDownloadModel.swift */; };
6AE239C5D116E1C06F5705699FB9EAF0 /* XCTest.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = B7311CCCA04811338D740DBFEA4CC62D /* XCTest.framework */; };
6DBC8EB7532E931C2FBDA71D1E0B66A4 /* FBSnapshotTestCase-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = AD8956FD3AECE3F0172438CD6C9FD366 /* FBSnapshotTestCase-dummy.m */; };
72FB8CEABF346A37D54CC08647489A98 /* ThrowAssertion.swift in Sources */ = {isa = PBXBuildFile; fileRef = 03CE435EC97649D129B2C43F6361BF60 /* ThrowAssertion.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; };
73031098058FA8FEA073CCC6E6591603 /* DownloadTaskHandler.swift in Sources */ = {isa = PBXBuildFile; fileRef = EAB8A0E23814478C1B48E33499DE0AFC /* DownloadTaskHandler.swift */; };
74A2E7C83AA510B19CBCFDEDF0993DFF /* NBSMockedApplication.m in Sources */ = {isa = PBXBuildFile; fileRef = 4FD3AAE28972A26DD96A338779E9C133 /* NBSMockedApplication.m */; };
7536DD99ACEDE673713161E597B7B447 /* ExampleHooks.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5190F38BCC85B886ACF2B3EC6EA905CA /* ExampleHooks.swift */; };
76E7C7CDAA543C791A714B991F595F2B /* QuickSpecBase.h in Headers */ = {isa = PBXBuildFile; fileRef = CAD7ED67D2BA2E76379BDA552AAF7BB4 /* QuickSpecBase.h */; settings = {ATTRIBUTES = (Project, ); }; };
78A51B7FCC1DFB888AAA254529013C12 /* BeginWith.swift in Sources */ = {isa = PBXBuildFile; fileRef = F594845BE3EB912EB67AF68433E7BD4E /* BeginWith.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; };
7940C13F1916D7CB46E1C98161D73C4A /* ComposableDataSource-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 41F6906FCE5DF8C4BBE26B316DDFF89A /* ComposableDataSource-dummy.m */; };
7AC93EB6DCDA9226165D5BC354FE7BC6 /* DSL.m in Sources */ = {isa = PBXBuildFile; fileRef = 4D1E2241EF1ECAE217193F9704165ABF /* DSL.m */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; };
7CE6049975894E447F2D4071C74F6F8F /* Callsite.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1AA2ED97D006A1A4DEFB74CA3F7AC08D /* Callsite.swift */; };
7DAC86DCBC36C10F43FA5FEB819B7BF1 /* Functional.swift in Sources */ = {isa = PBXBuildFile; fileRef = EB3B59640F48110F6231F58B6AE27385 /* Functional.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; };
7E135339E79E7D7193F66848CC22E90D /* Protocols+Declarations.swift in Sources */ = {isa = PBXBuildFile; fileRef = CD9CCAF0FDBA9DA5EB3A9A95EE765BC0 /* Protocols+Declarations.swift */; };
7EB28FEC3D0ABA1A2A6CFE57C400F74D /* QuickSpec.h in Headers */ = {isa = PBXBuildFile; fileRef = 86959FD1558FA12DF1B0EC3DF296D2DB /* QuickSpec.h */; settings = {ATTRIBUTES = (Public, ); }; };
806B9040D79A3DC58FB56EAC16FE19BF /* Stringers.swift in Sources */ = {isa = PBXBuildFile; fileRef = E718A7632ED86169E87F94D4C8AB294A /* Stringers.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; };
80DEBE41D84FBA1C4D4FE00C8D797E82 /* CwlPreconditionTesting.h in Headers */ = {isa = PBXBuildFile; fileRef = B882C1A2679063F203267B3E04D7D699 /* CwlPreconditionTesting.h */; settings = {ATTRIBUTES = (Public, ); }; };
834A54B118F65A46557355D687E0A76F /* SectionableCollectionDataSource.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9B08280D43163A3A4F7FBC74A2D5B714 /* SectionableCollectionDataSource.swift */; };
84601549E4BEEF435746F9385BD2508B /* Celestial-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 729489A7BB91EB8ACEA17E379E3BCEAF /* Celestial-dummy.m */; };
84A3D2DAA3A41331772597AE8A5B5DD9 /* SwiftSupport.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1AFCC384B670E756F0FCB360EE863FC3 /* SwiftSupport.swift */; };
857347F7E0C2B578C29882CA41D164E6 /* QuartzCore.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = B6F5EF634F5E6939FF8D0D0ED43E7B11 /* QuartzCore.framework */; };
88396E68DC05A379282F3B374F75F43C /* FBSnapshotTestController.m in Sources */ = {isa = PBXBuildFile; fileRef = B06E62252BD16C13D3B5C5AD560F6BBE /* FBSnapshotTestController.m */; };
887AF8C809D60140319DE71D6427F370 /* NSBundle+CurrentTestBundle.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5E10733AB2F17A29476DEABAD446A0A4 /* NSBundle+CurrentTestBundle.swift */; };
88DAA80CCAE48DDE7693D93D9ECD7E01 /* iOSSnapshotTestCase-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = CBCEF6A068AFA1ACD101892E9B825C52 /* iOSSnapshotTestCase-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; };
89EE4D6DBDB79963D65AA1E67B543B6D /* CwlCatchBadInstruction.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2CBD1745D96A7DB1A5739382A3C45857 /* CwlCatchBadInstruction.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; };
8A0EF19254BAC5DF0885D1FBA345E016 /* CwlMachBadInstructionHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 11D062006501D7CB2834FEA1E986C179 /* CwlMachBadInstructionHandler.m */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; };
8A8DC42AC071D3F57CC4D206A090C5B6 /* DynamicSizeSnapshot.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD60D279D588B6AE2E330664B11A383D /* DynamicSizeSnapshot.swift */; };
8AEAC7C2D0B3B1E6B77EC8B91F429387 /* UIKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = B7072F8592C1417443E2AF4DBF851552 /* UIKit.framework */; };
8CE3BF0ACE07EA42DD5DAC871BF4B767 /* FBSnapshotTestCase.m in Sources */ = {isa = PBXBuildFile; fileRef = 1C6689972E35056A9B55458EC50EE12D /* FBSnapshotTestCase.m */; };
8D17749611AB0C8BD51C068749D8DF68 /* NMBExceptionCapture.h in Headers */ = {isa = PBXBuildFile; fileRef = 346FAEC9F6A1CCE10E6B3D49FF72F0B0 /* NMBExceptionCapture.h */; settings = {ATTRIBUTES = (Public, ); }; };
8D543DAD9A6C0B8BF8A5DB38AD876677 /* SatisfyAnyOf.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4AB65BE30E7FD5ED1DFC2EFBB5BD3E83 /* SatisfyAnyOf.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; };
8D75EC8969EA46FBD6E1BED7791A3C37 /* BeLogical.swift in Sources */ = {isa = PBXBuildFile; fileRef = F29BB5D13981E160ED35FBECB5E2042A /* BeLogical.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; };
8DBF7432555236AE1B1353A000A056E3 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 21C3C4B545657B2907FBCBC01372B1CD /* Foundation.framework */; };
8E4A2F4A1EF16B63817A516CC2743619 /* Quick-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 084A87B7E914E53CE99FF4ADF0E539C6 /* Quick-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; };
8FC6C180807249B2D0654E9D6EFF736E /* XCTestObservationCenter+CurrentTestCaseTracker.h in Headers */ = {isa = PBXBuildFile; fileRef = E3F94F532668E1B4A58C546EA6305A58 /* XCTestObservationCenter+CurrentTestCaseTracker.h */; settings = {ATTRIBUTES = (Public, ); }; };
90142C6259374E18E640396A59AD379A /* FBSnapshotTestController.h in Headers */ = {isa = PBXBuildFile; fileRef = D7468A5F370677BDC2EC5F15F0EDD37C /* FBSnapshotTestController.h */; settings = {ATTRIBUTES = (Public, ); }; };
9231B70907F130F31CF5717C502B780C /* ExampleGroup.swift in Sources */ = {isa = PBXBuildFile; fileRef = 769133D6E3A30B665F620113B70E4250 /* ExampleGroup.swift */; };
9349D71F027919C3199C586D061DBF1F /* iOSSnapshotTestCase-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 375C05332F434BA58F5FD0EDD6ACF68B /* iOSSnapshotTestCase-dummy.m */; };
94B18F2CFF543F6B2E43E84630C337E2 /* SuiteHooks.swift in Sources */ = {isa = PBXBuildFile; fileRef = B0611EB04D2B6E12FD57CA00B66ED849 /* SuiteHooks.swift */; };
94DA3131D64B3D904BE28E72F1871065 /* BeAKindOf.swift in Sources */ = {isa = PBXBuildFile; fileRef = 486E62E42DFBBD48C6DA61317BC733E2 /* BeAKindOf.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; };
963C61CA394772084AAC52D7A9822A96 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 21C3C4B545657B2907FBCBC01372B1CD /* Foundation.framework */; };
996CE64E88BAA69007FACD854BD4E5BB /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 21C3C4B545657B2907FBCBC01372B1CD /* Foundation.framework */; };
99C32CD6B5ABBC832FDE57BD757526E0 /* ComposableDataSource-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = C22E2552D2B1AF15A6D8C19E46795E3B /* ComposableDataSource-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; };
99E8019F4689A514DAC6AA40AFF7352E /* NMBObjCMatcher.swift in Sources */ = {isa = PBXBuildFile; fileRef = B8C89D0C2A0D08E15A2FE69E0AE01928 /* NMBObjCMatcher.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; };
9B60E9709C9F4A2D50C14A3A7D5921B2 /* MiscellaneousDeclarations.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7E934B23F41878A48646936050102BCA /* MiscellaneousDeclarations.swift */; };
9B9714C476F416AD7FD803EA1184D113 /* BeLessThan.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7D97AAA86D4D43368C4D32CA1C1853D5 /* BeLessThan.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; };
9BB5E9B6487FE95C710687B484C17161 /* Nimble.h in Headers */ = {isa = PBXBuildFile; fileRef = BAE40CDE04EBCCB0DC55BA21B366F322 /* Nimble.h */; settings = {ATTRIBUTES = (Public, ); }; };
9C460BA614D4B1D314A252C4C5CE1D87 /* BeAnInstanceOf.swift in Sources */ = {isa = PBXBuildFile; fileRef = 87C7B92D9686D88B5F0B070BE807C97B /* BeAnInstanceOf.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; };
9D65089019D558E5A9661F2DCAD20313 /* SwiftSupport.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7486DD80E82D1D23E500C4608330CC92 /* SwiftSupport.swift */; };
9E874C00792FA983399C03EC00AE326D /* XCTestSuite+QuickTestSuiteBuilder.m in Sources */ = {isa = PBXBuildFile; fileRef = 315731EFD6CC8E3D687521F575B83086 /* XCTestSuite+QuickTestSuiteBuilder.m */; };
9E9E7002E099B658918E9ED454CC1E91 /* GenericCollectionViewCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4A72106717B2DB4B97CB153B2184E06C /* GenericCollectionViewCell.swift */; };
9F70369EF71BD9ABAFF687AF532CC20D /* CwlMachBadInstructionHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 21D2F1149C7E221BCAECC767A108DF89 /* CwlMachBadInstructionHandler.h */; settings = {ATTRIBUTES = (Public, ); }; };
9FB5F3B3AAF3103848313FACD0CACBCD /* QuickConfiguration.m in Sources */ = {isa = PBXBuildFile; fileRef = ACF51361DFF744599541F1459103D59E /* QuickConfiguration.m */; };
A35159AD5A7A49BA9093F29B63DBD30D /* String+C99ExtendedIdentifier.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4D3C45044459E2532D2E8B927B86BB24 /* String+C99ExtendedIdentifier.swift */; };
A525E29E0A8079B35B793D8A2B5FBDF2 /* UIImage+Snapshot.m in Sources */ = {isa = PBXBuildFile; fileRef = B0ADCE5F448CD79C86781B2422CAAE39 /* UIImage+Snapshot.m */; };
A5F3355576FA5B6CE0334D37DB4E8FBA /* Celestial.swift in Sources */ = {isa = PBXBuildFile; fileRef = 745596B8A781D8389132AE07003D4683 /* Celestial.swift */; };
A6A550089B7797DEF915A0C0BAE2390D /* Nimble.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 0D35F92A6BFBF9579DAFE842BFF03D7D /* Nimble.framework */; };
A6CE2E672C8EB4DF57485428AFD64A3C /* URL+FileName.swift in Sources */ = {isa = PBXBuildFile; fileRef = 027BF9691ACA1CC6903EA073985C4753 /* URL+FileName.swift */; };
A7F5B07BF96955EFDC9106335235EDB2 /* QuickTestSuite.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8667433FD207F72392173DC66FDED6F2 /* QuickTestSuite.swift */; };
A804E6F5F86B3E26663C8A8EFCC0019A /* CurrentTestCaseTracker.swift in Sources */ = {isa = PBXBuildFile; fileRef = E2AEF76FF1263D44328B543BD44225BD /* CurrentTestCaseTracker.swift */; };
A9996A6303084D17B9C439CB132A1F69 /* DSL.swift in Sources */ = {isa = PBXBuildFile; fileRef = CC85E4D6E7D9BFB9AEA4B4D87B3F1C09 /* DSL.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; };
AC157F9724F449CF39BAAA7010B09F94 /* DebugLogger.swift in Sources */ = {isa = PBXBuildFile; fileRef = 56A9DC27C2AF2AED9516D4F6F70EF889 /* DebugLogger.swift */; };
AD69407E2FA1D39A9E09248052F2D81B /* ExpectationMessage.swift in Sources */ = {isa = PBXBuildFile; fileRef = C58E1D9CBC24EE7D7D99BFDF46796C59 /* ExpectationMessage.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; };
AD94388B169C276D2B3F3DDE90FA37F3 /* Pods-ComposableDataSource_Example-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 1598E1978889BAC8593D3569C1053DE6 /* Pods-ComposableDataSource_Example-dummy.m */; };
AE8426D611BDEAF1583AA8B258E61942 /* DownloadTaskManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5F472327FD2F41FD550890504275197F /* DownloadTaskManager.swift */; };
AF60C00928A7AFE04E374B620EEA5F49 /* Filter.swift in Sources */ = {isa = PBXBuildFile; fileRef = 79685086CC9C1E91EC6D93FAA33032B8 /* Filter.swift */; };
B25D795BDC4F426BC01EFC911F368B81 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 21C3C4B545657B2907FBCBC01372B1CD /* Foundation.framework */; };
B2A65EEDB5D5EC246EA68E10964FF7B3 /* ThrowError.swift in Sources */ = {isa = PBXBuildFile; fileRef = F5492DF5368C200ADE00E14003AB99D0 /* ThrowError.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; };
B32EB305A484CF6A32F05B2E5BC13502 /* HaveValidSnapshot.swift in Sources */ = {isa = PBXBuildFile; fileRef = B94A163385785D0124CF842E7F084E1A /* HaveValidSnapshot.swift */; };
B33F9EBFFC464D032BFBF2297BC48872 /* FBSnapshotTestCase.m in Sources */ = {isa = PBXBuildFile; fileRef = DEB96B65833C0405C4448EF4A3FEF451 /* FBSnapshotTestCase.m */; };
B4058A2AA8486E9879F113E6F67B9679 /* AdapterProtocols.swift in Sources */ = {isa = PBXBuildFile; fileRef = BF1048D5341F1774A77A654FC4AA8C33 /* AdapterProtocols.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; };
B48508EB39EE315F5A00429EEA69DD63 /* Configuration.swift in Sources */ = {isa = PBXBuildFile; fileRef = F157EE8713B1377F3E76057ADE719275 /* Configuration.swift */; };
B4CE2BADD0EA88CC09F3A9B05E2C0A0E /* NBSMockedApplication.h in Headers */ = {isa = PBXBuildFile; fileRef = F56E9119101EB3EE4B0C3044EF19C9AB /* NBSMockedApplication.h */; settings = {ATTRIBUTES = (Public, ); }; };
B61DB5752B34FD7130A53A21007D8D9F /* DataSourceProvider.swift in Sources */ = {isa = PBXBuildFile; fileRef = D370D3317F290D1AC818D56295F34704 /* DataSourceProvider.swift */; };
B6CC23C6C288F4EB9EDD3A06F1F5F094 /* Predicate.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8B4FA37594EFCE0AD0B182DF433FDE3A /* Predicate.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; };
B71070160CF07EFA99ED0445B0D191E7 /* Nimble-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 31B94EC16082778B8396C9B53ECB411E /* Nimble-dummy.m */; };
B74CD6E6EBEA0B642776BCB37850415D /* UIImage+Snapshot.h in Headers */ = {isa = PBXBuildFile; fileRef = FBF2E321FAA4B0E12B436638ECE4B43D /* UIImage+Snapshot.h */; settings = {ATTRIBUTES = (Private, ); }; };
B7662703AF8D3FFFCB0070C50FEDCC58 /* Errors.swift in Sources */ = {isa = PBXBuildFile; fileRef = C417F0C3B1D87BDEF661048D9B672C4C /* Errors.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; };
B79FC6E46F642C3FC74B3E6D9175B1AB /* SatisfyAllOf.swift in Sources */ = {isa = PBXBuildFile; fileRef = B9C8769AEC150125AF36628009684D11 /* SatisfyAllOf.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; };
B89BD45E8A27868F330813E0C6BB98D7 /* MemoryCachedVideoData.swift in Sources */ = {isa = PBXBuildFile; fileRef = DB3C4913F11C770A2CDC0394C9516A6B /* MemoryCachedVideoData.swift */; };
B8A6594174C7BE01D77505701F254B20 /* Utility.swift in Sources */ = {isa = PBXBuildFile; fileRef = A83038CEDA65DE8424FE8F874DD658E5 /* Utility.swift */; };
BB55A0D6AC131302602D602979ADE914 /* PrettySyntax.swift in Sources */ = {isa = PBXBuildFile; fileRef = F4153C4D06A2BB31B240954132FF8D59 /* PrettySyntax.swift */; };
BCFD30584106E5DC55CF17B16A354544 /* Pods-ComposableDataSource_Tests-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = F62C39FCF477B007B2FCE16029451E03 /* Pods-ComposableDataSource_Tests-dummy.m */; };
BE56C54CD29F23A1C631645390E8569D /* ErrorUtility.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5F90798C64386CB2AA07AF54479D7AAF /* ErrorUtility.swift */; };
BFEBC90223F66B0FF770B92B1C670BCF /* QuickConfiguration.h in Headers */ = {isa = PBXBuildFile; fileRef = 927D933BDB12E4D9AC6D931014C5812F /* QuickConfiguration.h */; settings = {ATTRIBUTES = (Public, ); }; };
C051C0411627BD5FCDA031782EB1F716 /* DSL.h in Headers */ = {isa = PBXBuildFile; fileRef = A3D13C170B56AC7E942C391022C02772 /* DSL.h */; settings = {ATTRIBUTES = (Public, ); }; };
C0C98C8C7D07E1598F20EE2F0539197D /* NMBExpectation.swift in Sources */ = {isa = PBXBuildFile; fileRef = 060DA4D1C376F548E3EC3063CF8B1CE9 /* NMBExpectation.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; };
C3BA37BF33BCB5D88108213FEE83D462 /* PrettyDynamicTypeSyntax.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3301FEC321B7D758FF8C98DEA5D1FB2A /* PrettyDynamicTypeSyntax.swift */; };
C49D52712466511E332C952834C81FE1 /* FBSnapshotTestCasePlatform.h in Headers */ = {isa = PBXBuildFile; fileRef = A460708E180C57C4EFEB5E6AB6FC847D /* FBSnapshotTestCasePlatform.h */; settings = {ATTRIBUTES = (Public, ); }; };
C903AEFEEB4E73644A03FB8285543107 /* BeEmpty.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0E1E63C6B460648E31225971DE7FED2E /* BeEmpty.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; };
C979EEB0159A65246F6BD2C906A8ADB7 /* BeVoid.swift in Sources */ = {isa = PBXBuildFile; fileRef = CEC6556AEDFF7D0D12AF6409F66F25A5 /* BeVoid.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; };
C99BBC3F70E056CB6A3CC0516318939D /* AssertionDispatcher.swift in Sources */ = {isa = PBXBuildFile; fileRef = DDDB0B6D16B84F340E2EED8A762CED82 /* AssertionDispatcher.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; };
C9E716023868A97D2F5B19934D93045E /* World+DSL.swift in Sources */ = {isa = PBXBuildFile; fileRef = C195C33EB9C42AB44DB64378B279C9E1 /* World+DSL.swift */; };
CBD076BDCCE184B4385633C0CDEC79F6 /* Celestial-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 1BAB1E3C63746871684FBEA1DD51EE0C /* Celestial-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; };
CBE94243F67A663C12093474450A7F17 /* UIKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = B7072F8592C1417443E2AF4DBF851552 /* UIKit.framework */; };
CD6B1F146B0E157FE5B9CAFFAE77A5B5 /* Nimble-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = DCA8A27BF3C278FCF98A058DF0941605 /* Nimble-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; };
CEE8D31A4E76BB7B350BF2A7175D4BC2 /* NMBExceptionCapture.m in Sources */ = {isa = PBXBuildFile; fileRef = F88189EA0E4777B0797F2AC02A28AF6B /* NMBExceptionCapture.m */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; };
CF6CEC7BE73E8CE140D5013E1374D369 /* ComposableCollectionDataSource.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9D878680C5A028BC30639FC2430062EC /* ComposableCollectionDataSource.swift */; };
CF9218FF56D8EE43681150A3E1635C9A /* ToSucceed.swift in Sources */ = {isa = PBXBuildFile; fileRef = 554E7B64AD6BC9E364F31885238E3DC8 /* ToSucceed.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; };
D04AAC8B22E4A4DC4F39891C4E52F251 /* UIImage+Diff.h in Headers */ = {isa = PBXBuildFile; fileRef = 6EE89F87E5DA281779F33CF6757A8E6E /* UIImage+Diff.h */; settings = {ATTRIBUTES = (Private, ); }; };
D2C041844A0EB4EB2E8C7B9DAA748EEB /* Example.swift in Sources */ = {isa = PBXBuildFile; fileRef = 51E55084576212A02214D1C9D210B00A /* Example.swift */; };
D34D0540ADCBF163575B6B5444B1AAF6 /* Contain.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9277AC11426FBFCE5FC2BC0026908092 /* Contain.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; };
D9CFB8E5E354D7BE61D092259779F437 /* Equal.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7CE0F6F2F9E41837D664BC1E0A137675 /* Equal.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; };
D9D6150D329A87CBB415FD349F0C50FD /* SourceLocation.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9D1A42344D5A4B4E5C77C3935D81B1A0 /* SourceLocation.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; };
DB84342A0C0DEABBF7F729DE55225D82 /* XCTestObservationCenter+Register.m in Sources */ = {isa = PBXBuildFile; fileRef = F5A3679EEC7FF8A9666B2CDA4D02B470 /* XCTestObservationCenter+Register.m */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; };
DCD198D49C0A198A09525B7688EE3BC9 /* Async.swift in Sources */ = {isa = PBXBuildFile; fileRef = 87D7BB121F7EFAB5507F293954C94406 /* Async.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; };
DE6DCA88A3CB383F5161F74EB8E3C319 /* GenericCellModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = E3707BC0DA5C1E72EB4EF1B968E5A298 /* GenericCellModel.swift */; };
DF70F08D90E88A079516ECC9C7EB972E /* UIImage+Snapshot.m in Sources */ = {isa = PBXBuildFile; fileRef = 20193EC6F45364BCD388D4AA04954D5D /* UIImage+Snapshot.m */; };
E00D21535BD897D4E32421D20700ADE1 /* VideoPlayerView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 978D06CC3526D9159C210D9C4D79DE79 /* VideoPlayerView.swift */; };
E0B7E793A97E626E8D1BDBC6FB34B131 /* MultimediaCacheProtocols.swift in Sources */ = {isa = PBXBuildFile; fileRef = 361E55803A01AFE52E5E1FA7476BAEAB /* MultimediaCacheProtocols.swift */; };
E0B8D095C732352C854D365B9E5B993D /* UIKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = B7072F8592C1417443E2AF4DBF851552 /* UIKit.framework */; };
E0EAC85F7ACFAD998B14FCE66144000E /* NMBStringify.h in Headers */ = {isa = PBXBuildFile; fileRef = 7477932361CDCD38B1B04CE1B63AD18D /* NMBStringify.h */; settings = {ATTRIBUTES = (Public, ); }; };
E0F1AD626C62F77B7C0A8B63B88A8D9C /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 21C3C4B545657B2907FBCBC01372B1CD /* Foundation.framework */; };
E458AAE1AE9E2250F29806E5633B1860 /* Expression.swift in Sources */ = {isa = PBXBuildFile; fileRef = 780871D8DFE3565D77375DCA2FA46590 /* Expression.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; };
E4AD4F4187929B4542EFFC03FB031C4B /* Constants.swift in Sources */ = {isa = PBXBuildFile; fileRef = D2110142D95131AD5A61CC981EC04CB8 /* Constants.swift */; };
E8AC509D18EBF21B1FEA909652A01108 /* FBSnapshotTestCasePlatform.m in Sources */ = {isa = PBXBuildFile; fileRef = 3A3F78E156C5DAA3B960A6C64CDF8B3D /* FBSnapshotTestCasePlatform.m */; };
EBF72E2425380C4EE843419B62C4ABC4 /* UIImage+Diff.h in Headers */ = {isa = PBXBuildFile; fileRef = 76A50262DB5238F833848759F9FE80AC /* UIImage+Diff.h */; settings = {ATTRIBUTES = (Private, ); }; };
EC7EF3D5778783BD93EBC6F82016ADA9 /* BeNil.swift in Sources */ = {isa = PBXBuildFile; fileRef = 400A60F1D200FFC90FA892B61437159A /* BeNil.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; };
ECCA1FA570A912E8CDB54EB843F1D030 /* NimbleEnvironment.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6DDE04433BF5B9481D9D0CCE7E753DA2 /* NimbleEnvironment.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; };
EFB9CC9267297D8104141A4046AAD14E /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 21C3C4B545657B2907FBCBC01372B1CD /* Foundation.framework */; };
F01995755687FA91F51A15ED8FD9D125 /* World.swift in Sources */ = {isa = PBXBuildFile; fileRef = CEB278423EB3FD57710983B868BD3515 /* World.swift */; };
F1AAAE00BB32B733B238E2B4E8424506 /* UIImage+Compare.h in Headers */ = {isa = PBXBuildFile; fileRef = 4058F70A079F949CB1F4FE9622D039CB /* UIImage+Compare.h */; settings = {ATTRIBUTES = (Private, ); }; };
F27A7DE93F66B0C12B4C646D99F5B9F4 /* CwlCatchException.m in Sources */ = {isa = PBXBuildFile; fileRef = 1D231AD47511789FB0CAA660AA1DEDE2 /* CwlCatchException.m */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; };
F2AC6D604CF272278D2B8D5C1922832F /* UIKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = B7072F8592C1417443E2AF4DBF851552 /* UIKit.framework */; };
F310B21703A7BC438A09DDB96670583F /* AssertionRecorder.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3AD2E74FF800C17793772FA90D22F2C1 /* AssertionRecorder.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; };
F4877B3857C780DCDB7F413A03F95600 /* BeCloseTo.swift in Sources */ = {isa = PBXBuildFile; fileRef = C313CE39F2B0E41B65416D3EA830F423 /* BeCloseTo.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; };
F6BADA37B8D3F92052CE2BA71E702FAB /* HaveValidDynamicTypeSnapshot.swift in Sources */ = {isa = PBXBuildFile; fileRef = 66D01C66B656E277B30E02C98178A0E8 /* HaveValidDynamicTypeSnapshot.swift */; };
F720FAF13A108CE6901E0A8B0580E1E8 /* FBSnapshotTestCase-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 430CA5CBED0C8780763C19677DAAA19B /* FBSnapshotTestCase-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; };
F78E35D04F09485FA5DFA72FE1AD5AB2 /* NMBStringify.m in Sources */ = {isa = PBXBuildFile; fileRef = CCB54EB1E0A566EC504D137C4E6F1356 /* NMBStringify.m */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; };
F9E85548BF1EF8C5035BAF92233C34B6 /* RaisesException.swift in Sources */ = {isa = PBXBuildFile; fileRef = BE804F0BBA31ACC6B910E4B2D3861E33 /* RaisesException.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; };
FA22FC2D79147F6C3A6EA988DF868741 /* UIImage+Diff.m in Sources */ = {isa = PBXBuildFile; fileRef = FB15F1026F9F7454B1A42752FB9B588D /* UIImage+Diff.m */; };
FF920E965F1CA016FF302DE8C92C5122 /* CwlBadInstructionException.swift in Sources */ = {isa = PBXBuildFile; fileRef = 751ECEBBE5763B5104ED1ACB058B3472 /* CwlBadInstructionException.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; };
/* End PBXBuildFile section */
/* Begin PBXContainerItemProxy section */
13C8349FD52FFDD5E41F9833B0653A42 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */;
proxyType = 1;
remoteGlobalIDString = 6F13695E06195A78EA8A95F8C7ED0D2F;
remoteInfo = Nimble;
};
366FEC074276E9FB710B5CB8522BAD1C /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */;
proxyType = 1;
remoteGlobalIDString = 6F13695E06195A78EA8A95F8C7ED0D2F;
remoteInfo = Nimble;
};
3D027C6B9E6247946E1AE7709274520B /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */;
proxyType = 1;
remoteGlobalIDString = C393038B0BEF088C1B93E6528005862D;
remoteInfo = iOSSnapshotTestCase;
};
43773576F8D8192BB406BD26ED1469BC /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */;
proxyType = 1;
remoteGlobalIDString = C82891EAB7293DBEE916B21F57E8474D;
remoteInfo = Quick;
};
5BEC4079A9053AD3139A640FC08E5219 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */;
proxyType = 1;
remoteGlobalIDString = D60E01277E52D3352B6D170CCF92B00E;
remoteInfo = "Pods-ComposableDataSource_Example";
};
8360F7FC176E36AF2557367D88357FBA /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */;
proxyType = 1;
remoteGlobalIDString = A5DEC55B036043B3545F54C1AFA8EAEC;
remoteInfo = Celestial;
};
9106D83A7B81243792688C88E0F9E154 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */;
proxyType = 1;
remoteGlobalIDString = 98A98149697C80CEF8D5772791E92E66;
remoteInfo = FBSnapshotTestCase;
};
AB67B27C2F381E3D4834ED8F11B55BCF /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */;
proxyType = 1;
remoteGlobalIDString = EE19095A8C98E0BC5774005673495238;
remoteInfo = "Nimble-Snapshots";
};
B200A5514B07B60530F45A8025C47C9F /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */;
proxyType = 1;
remoteGlobalIDString = 835A89A9ED0853A9A6E7A47413EEAA0E;
remoteInfo = ComposableDataSource;
};
F96FEF39888CFFD5E608C83ED48A84A8 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */;
proxyType = 1;
remoteGlobalIDString = C393038B0BEF088C1B93E6528005862D;
remoteInfo = iOSSnapshotTestCase;
};
/* End PBXContainerItemProxy section */
/* Begin PBXFileReference section */
027BF9691ACA1CC6903EA073985C4753 /* URL+FileName.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "URL+FileName.swift"; path = "Sources/Quick/URL+FileName.swift"; sourceTree = "<group>"; };
03CE435EC97649D129B2C43F6361BF60 /* ThrowAssertion.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ThrowAssertion.swift; path = Sources/Nimble/Matchers/ThrowAssertion.swift; sourceTree = "<group>"; };
05E743E8BF38F509985BA0D70EEE9552 /* FBSnapshotTestController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSnapshotTestController.m; path = FBSnapshotTestCase/FBSnapshotTestController.m; sourceTree = "<group>"; };
060DA4D1C376F548E3EC3063CF8B1CE9 /* NMBExpectation.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = NMBExpectation.swift; path = Sources/Nimble/Adapters/NMBExpectation.swift; sourceTree = "<group>"; };
08284CD193EB903EDA78AC32F36A72D5 /* Pods-ComposableDataSource_Example-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-ComposableDataSource_Example-Info.plist"; sourceTree = "<group>"; };
084A87B7E914E53CE99FF4ADF0E539C6 /* Quick-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Quick-umbrella.h"; sourceTree = "<group>"; };
0D35F92A6BFBF9579DAFE842BFF03D7D /* Nimble.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Nimble.framework; sourceTree = BUILT_PRODUCTS_DIR; };
0D631E9908483F9525A6B3F36F16CC61 /* Quick.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = Quick.framework; path = Quick.framework; sourceTree = BUILT_PRODUCTS_DIR; };
0D74AE18FD7EBD649E31763F7BCAF666 /* Quick-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Quick-dummy.m"; sourceTree = "<group>"; };
0DE78F0888374BD08D643DF3E7394E55 /* Nimble.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = Nimble.release.xcconfig; sourceTree = "<group>"; };
0E1E63C6B460648E31225971DE7FED2E /* BeEmpty.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = BeEmpty.swift; path = Sources/Nimble/Matchers/BeEmpty.swift; sourceTree = "<group>"; };
11780EEB01385DDE3C3AC8015ECC916D /* QCKDSL.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QCKDSL.h; path = Sources/QuickObjectiveC/DSL/QCKDSL.h; sourceTree = "<group>"; };
11D062006501D7CB2834FEA1E986C179 /* CwlMachBadInstructionHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = CwlMachBadInstructionHandler.m; path = Carthage/Checkouts/CwlPreconditionTesting/Sources/CwlMachBadInstructionHandler/CwlMachBadInstructionHandler.m; sourceTree = "<group>"; };
11ED593BFE2EB881187C865699563406 /* Extensions.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Extensions.swift; path = Classes/Utility/Extensions.swift; sourceTree = "<group>"; };
13883F534B8F1A4B28F78DAFADD3A93E /* UIImage+Compare.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImage+Compare.h"; path = "FBSnapshotTestCase/Categories/UIImage+Compare.h"; sourceTree = "<group>"; };
1598E1978889BAC8593D3569C1053DE6 /* Pods-ComposableDataSource_Example-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-ComposableDataSource_Example-dummy.m"; sourceTree = "<group>"; };
1A5ED0FE2DDB7F706A51A84704490DDF /* mach_excServer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = mach_excServer.h; path = Carthage/Checkouts/CwlPreconditionTesting/Sources/CwlMachBadInstructionHandler/mach_excServer.h; sourceTree = "<group>"; };
1A5F1BCB7C4C291D67FB99CBE8D131BB /* DSL.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = DSL.swift; path = Sources/Quick/DSL/DSL.swift; sourceTree = "<group>"; };
1AA2ED97D006A1A4DEFB74CA3F7AC08D /* Callsite.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Callsite.swift; path = Sources/Quick/Callsite.swift; sourceTree = "<group>"; };
1AE16D9006ED890320471E2D8E90433A /* Pods-ComposableDataSource_Tests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-ComposableDataSource_Tests.release.xcconfig"; sourceTree = "<group>"; };
1AFCC384B670E756F0FCB360EE863FC3 /* SwiftSupport.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SwiftSupport.swift; path = FBSnapshotTestCase/SwiftSupport.swift; sourceTree = "<group>"; };
1B706C995F8D8438DF8022DF762DB2D2 /* UIImage+Snapshot.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImage+Snapshot.h"; path = "FBSnapshotTestCase/Categories/UIImage+Snapshot.h"; sourceTree = "<group>"; };
1BAB1E3C63746871684FBEA1DD51EE0C /* Celestial-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Celestial-umbrella.h"; sourceTree = "<group>"; };
1C6689972E35056A9B55458EC50EE12D /* FBSnapshotTestCase.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSnapshotTestCase.m; path = FBSnapshotTestCase/FBSnapshotTestCase.m; sourceTree = "<group>"; };
1D066819118E8662EEA39D09F9E59AC7 /* AllPass.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AllPass.swift; path = Sources/Nimble/Matchers/AllPass.swift; sourceTree = "<group>"; };
1D231AD47511789FB0CAA660AA1DEDE2 /* CwlCatchException.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = CwlCatchException.m; path = Carthage/Checkouts/CwlPreconditionTesting/Dependencies/CwlCatchException/Sources/CwlCatchExceptionSupport/CwlCatchException.m; sourceTree = "<group>"; };
1DB80BBC7AEDDC8403EAB914E9FF04B7 /* Closures.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Closures.swift; path = Sources/Quick/Hooks/Closures.swift; sourceTree = "<group>"; };
20193EC6F45364BCD388D4AA04954D5D /* UIImage+Snapshot.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIImage+Snapshot.m"; path = "FBSnapshotTestCase/Categories/UIImage+Snapshot.m"; sourceTree = "<group>"; };
2185C8D0B74182CC2D3B1A0E663CC791 /* Pods-ComposableDataSource_Example-frameworks.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-ComposableDataSource_Example-frameworks.sh"; sourceTree = "<group>"; };
21C3C4B545657B2907FBCBC01372B1CD /* 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; };
21D2F1149C7E221BCAECC767A108DF89 /* CwlMachBadInstructionHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CwlMachBadInstructionHandler.h; path = Carthage/Checkouts/CwlPreconditionTesting/Sources/CwlMachBadInstructionHandler/include/CwlMachBadInstructionHandler.h; sourceTree = "<group>"; };
252EFC75E5F4C2CA6F835C34BDB61F93 /* Pods-ComposableDataSource_Tests.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = "Pods-ComposableDataSource_Tests.modulemap"; sourceTree = "<group>"; };
25C6556E1EAFA19351C3F7BB39DBB800 /* CollectionDataSource.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = CollectionDataSource.swift; sourceTree = "<group>"; };
265D19BACBA773DFD23CBAAD8706C033 /* Celestial.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = Celestial.modulemap; sourceTree = "<group>"; };
269EA3B74C54781D48228F88A09B1588 /* MatchError.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = MatchError.swift; path = Sources/Nimble/Matchers/MatchError.swift; sourceTree = "<group>"; };
2912AA6ADDF1EEF29796CE89F41DACD7 /* Nimble-Snapshots.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Nimble-Snapshots.release.xcconfig"; sourceTree = "<group>"; };
2A2D1748A0147F5436152C6084CA1C08 /* QuickSelectedTestSuiteBuilder.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = QuickSelectedTestSuiteBuilder.swift; path = Sources/Quick/QuickSelectedTestSuiteBuilder.swift; sourceTree = "<group>"; };
2CBD1745D96A7DB1A5739382A3C45857 /* CwlCatchBadInstruction.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CwlCatchBadInstruction.swift; path = Carthage/Checkouts/CwlPreconditionTesting/Sources/CwlPreconditionTesting/CwlCatchBadInstruction.swift; sourceTree = "<group>"; };
2ED361DB9559B10677FF43CCA8F3AA6A /* GenericDownloadModel.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = GenericDownloadModel.swift; path = Classes/DownloadManager/GenericDownloadModel.swift; sourceTree = "<group>"; };
315731EFD6CC8E3D687521F575B83086 /* XCTestSuite+QuickTestSuiteBuilder.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "XCTestSuite+QuickTestSuiteBuilder.m"; path = "Sources/QuickObjectiveC/XCTestSuite+QuickTestSuiteBuilder.m"; sourceTree = "<group>"; };
31B94EC16082778B8396C9B53ECB411E /* Nimble-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Nimble-dummy.m"; sourceTree = "<group>"; };
32300E3AFF64844F53C8C55CABB8B30D /* Pods_ComposableDataSource_Example.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = Pods_ComposableDataSource_Example.framework; path = "Pods-ComposableDataSource_Example.framework"; sourceTree = BUILT_PRODUCTS_DIR; };
3249DD48E002C6295084F83DF52BDAAB /* Pods-ComposableDataSource_Example.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-ComposableDataSource_Example.debug.xcconfig"; sourceTree = "<group>"; };
3301FEC321B7D758FF8C98DEA5D1FB2A /* PrettyDynamicTypeSyntax.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = PrettyDynamicTypeSyntax.swift; path = Nimble_Snapshots/DynamicType/PrettyDynamicTypeSyntax.swift; sourceTree = "<group>"; };
346FAEC9F6A1CCE10E6B3D49FF72F0B0 /* NMBExceptionCapture.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = NMBExceptionCapture.h; path = Sources/NimbleObjectiveC/NMBExceptionCapture.h; sourceTree = "<group>"; };
361E55803A01AFE52E5E1FA7476BAEAB /* MultimediaCacheProtocols.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = MultimediaCacheProtocols.swift; path = "Classes/Protocols+Declarations/MultimediaCacheProtocols.swift"; sourceTree = "<group>"; };
36E66BA9D6A2D81D108F278392C5A17D /* Quick-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Quick-Info.plist"; sourceTree = "<group>"; };
375C05332F434BA58F5FD0EDD6ACF68B /* iOSSnapshotTestCase-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "iOSSnapshotTestCase-dummy.m"; sourceTree = "<group>"; };
37821BB0503C6E9C435B2C36DA68AAE1 /* Behavior.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Behavior.swift; path = Sources/Quick/Behavior.swift; sourceTree = "<group>"; };
394259B5BA3D78E51320695F6A95A919 /* Celestial.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = Celestial.release.xcconfig; sourceTree = "<group>"; };
396D43E94CCCA4EDC58BE2EA2DB8388A /* XCTestObservationCenter+CurrentTestCaseTracker.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "XCTestObservationCenter+CurrentTestCaseTracker.m"; path = "Nimble_Snapshots/XCTestObservationCenter+CurrentTestCaseTracker.m"; sourceTree = "<group>"; };
39B95BB4F609B1FDFCD7379D12D293BC /* Quick.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = Quick.debug.xcconfig; sourceTree = "<group>"; };
3A3F78E156C5DAA3B960A6C64CDF8B3D /* FBSnapshotTestCasePlatform.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSnapshotTestCasePlatform.m; path = FBSnapshotTestCase/FBSnapshotTestCasePlatform.m; sourceTree = "<group>"; };
3A6C55CEB5E46829241A8B4411E6D215 /* BeGreaterThan.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = BeGreaterThan.swift; path = Sources/Nimble/Matchers/BeGreaterThan.swift; sourceTree = "<group>"; };
3AD2E74FF800C17793772FA90D22F2C1 /* AssertionRecorder.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AssertionRecorder.swift; path = Sources/Nimble/Adapters/AssertionRecorder.swift; sourceTree = "<group>"; };
3DC2346A6DC309992F16CBD4486AA75F /* EndWith.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = EndWith.swift; path = Sources/Nimble/Matchers/EndWith.swift; sourceTree = "<group>"; };
3E191E724EC016CEE4188CA663765480 /* BeGreaterThanOrEqualTo.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = BeGreaterThanOrEqualTo.swift; path = Sources/Nimble/Matchers/BeGreaterThanOrEqualTo.swift; sourceTree = "<group>"; };
3F4DC85FEC6316A26AE2CC48132CD52C /* URLVideoPlayerView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = URLVideoPlayerView.swift; path = Classes/VideoPlayerView/URLVideoPlayerView.swift; sourceTree = "<group>"; };
400A60F1D200FFC90FA892B61437159A /* BeNil.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = BeNil.swift; path = Sources/Nimble/Matchers/BeNil.swift; sourceTree = "<group>"; };
4058F70A079F949CB1F4FE9622D039CB /* UIImage+Compare.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImage+Compare.h"; path = "FBSnapshotTestCase/Categories/UIImage+Compare.h"; sourceTree = "<group>"; };
40DF888C19FD932045AE31D902F00568 /* FBSnapshotTestCase.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = FBSnapshotTestCase.release.xcconfig; sourceTree = "<group>"; };
41534653CB86EF813F46000D9486C175 /* Quick-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Quick-prefix.pch"; sourceTree = "<group>"; };
41F6906FCE5DF8C4BBE26B316DDFF89A /* ComposableDataSource-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "ComposableDataSource-dummy.m"; sourceTree = "<group>"; };
4234E8A6EEF9C179A271CDF77A470400 /* ElementsEqual.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ElementsEqual.swift; path = Sources/Nimble/Matchers/ElementsEqual.swift; sourceTree = "<group>"; };
430CA5CBED0C8780763C19677DAAA19B /* FBSnapshotTestCase-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "FBSnapshotTestCase-umbrella.h"; sourceTree = "<group>"; };
44A34CDFE47D6486C78EC8595300E88F /* FBSnapshotTestCase.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSnapshotTestCase.h; path = FBSnapshotTestCase/FBSnapshotTestCase.h; sourceTree = "<group>"; };
45544E7DC8BC621B5141430C9031836E /* FBSnapshotTestCase.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = FBSnapshotTestCase.framework; sourceTree = BUILT_PRODUCTS_DIR; };
45845D1B70377E83B617EED5F7B322C4 /* UIImage+Compare.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIImage+Compare.m"; path = "FBSnapshotTestCase/Categories/UIImage+Compare.m"; sourceTree = "<group>"; };
486E62E42DFBBD48C6DA61317BC733E2 /* BeAKindOf.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = BeAKindOf.swift; path = Sources/Nimble/Matchers/BeAKindOf.swift; sourceTree = "<group>"; };
4A72106717B2DB4B97CB153B2184E06C /* GenericCollectionViewCell.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = GenericCollectionViewCell.swift; sourceTree = "<group>"; };
4AB65BE30E7FD5ED1DFC2EFBB5BD3E83 /* SatisfyAnyOf.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SatisfyAnyOf.swift; path = Sources/Nimble/Matchers/SatisfyAnyOf.swift; sourceTree = "<group>"; };
4AD82D2DF1165B588B816694FB5709AD /* Celestial.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = Celestial.framework; path = Celestial.framework; sourceTree = BUILT_PRODUCTS_DIR; };
4D1E2241EF1ECAE217193F9704165ABF /* DSL.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DSL.m; path = Sources/NimbleObjectiveC/DSL.m; sourceTree = "<group>"; };
4D3C45044459E2532D2E8B927B86BB24 /* String+C99ExtendedIdentifier.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "String+C99ExtendedIdentifier.swift"; path = "Sources/Quick/String+C99ExtendedIdentifier.swift"; sourceTree = "<group>"; };
4E17E6A390B4B9CD757C102BC7661A50 /* QuickConfiguration.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = QuickConfiguration.swift; path = Sources/Quick/Configuration/QuickConfiguration.swift; sourceTree = "<group>"; };
4EE4455B365176E394A2BA068B230DD6 /* Celestial-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Celestial-prefix.pch"; sourceTree = "<group>"; };
4F493846B6E857650AE03606FBA25B65 /* Pods-ComposableDataSource_Example-acknowledgements.markdown */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = "Pods-ComposableDataSource_Example-acknowledgements.markdown"; sourceTree = "<group>"; };
4FB8E49CCB6EDC7E7C57DEAEA4C183B6 /* UIImage+Compare.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIImage+Compare.m"; path = "FBSnapshotTestCase/Categories/UIImage+Compare.m"; sourceTree = "<group>"; };
4FD3AAE28972A26DD96A338779E9C133 /* NBSMockedApplication.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = NBSMockedApplication.m; path = Nimble_Snapshots/DynamicType/NBSMockedApplication.m; sourceTree = "<group>"; };
5190F38BCC85B886ACF2B3EC6EA905CA /* ExampleHooks.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ExampleHooks.swift; path = Sources/Quick/Hooks/ExampleHooks.swift; sourceTree = "<group>"; };
51E55084576212A02214D1C9D210B00A /* Example.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Example.swift; path = Sources/Quick/Example.swift; sourceTree = "<group>"; };
528F296A58E0BB7692E170F31A78762C /* Pods-ComposableDataSource_Tests-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Pods-ComposableDataSource_Tests-umbrella.h"; sourceTree = "<group>"; };
52C1B30CC4697E1933141720223103BC /* Nimble_Snapshots.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = Nimble_Snapshots.framework; path = "Nimble-Snapshots.framework"; sourceTree = BUILT_PRODUCTS_DIR; };
554E7B64AD6BC9E364F31885238E3DC8 /* ToSucceed.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ToSucceed.swift; path = Sources/Nimble/Matchers/ToSucceed.swift; sourceTree = "<group>"; };
556CBA66FDC48FFA1B814F78EAF4FFFF /* Celestial-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Celestial-Info.plist"; sourceTree = "<group>"; };
56A9DC27C2AF2AED9516D4F6F70EF889 /* DebugLogger.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = DebugLogger.swift; path = Classes/Celestial/DebugLogger.swift; sourceTree = "<group>"; };
5A6F51C2B4E25038F3C6AD8301A3F579 /* UIApplication+StrictKeyWindow.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIApplication+StrictKeyWindow.m"; path = "FBSnapshotTestCase/Categories/UIApplication+StrictKeyWindow.m"; sourceTree = "<group>"; };
5C4F31330DFA99D699E4BDC8C3573D73 /* FBSnapshotTestCase.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = FBSnapshotTestCase.framework; path = FBSnapshotTestCase.framework; sourceTree = BUILT_PRODUCTS_DIR; };
5E10733AB2F17A29476DEABAD446A0A4 /* NSBundle+CurrentTestBundle.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "NSBundle+CurrentTestBundle.swift"; path = "Sources/Quick/NSBundle+CurrentTestBundle.swift"; sourceTree = "<group>"; };
5F3754173FF8E9CBEC2E308D5012714A /* NimbleXCTestHandler.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = NimbleXCTestHandler.swift; path = Sources/Nimble/Adapters/NimbleXCTestHandler.swift; sourceTree = "<group>"; };
5F472327FD2F41FD550890504275197F /* DownloadTaskManager.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = DownloadTaskManager.swift; path = Classes/DownloadManager/DownloadTaskManager.swift; sourceTree = "<group>"; };
5F90798C64386CB2AA07AF54479D7AAF /* ErrorUtility.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ErrorUtility.swift; path = Sources/Quick/ErrorUtility.swift; sourceTree = "<group>"; };
63626DFEA087400A9B2950243E783A66 /* Pods-ComposableDataSource_Example-acknowledgements.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-ComposableDataSource_Example-acknowledgements.plist"; sourceTree = "<group>"; };
645DCD5232148C9EBBA49C81EE98B811 /* FailureMessage.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = FailureMessage.swift; path = Sources/Nimble/FailureMessage.swift; sourceTree = "<group>"; };
66D01C66B656E277B30E02C98178A0E8 /* HaveValidDynamicTypeSnapshot.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = HaveValidDynamicTypeSnapshot.swift; path = Nimble_Snapshots/DynamicType/HaveValidDynamicTypeSnapshot.swift; sourceTree = "<group>"; };
681F36A6211A6C7B0E53A4E6DA38A1D4 /* Pods-ComposableDataSource_Example.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = "Pods-ComposableDataSource_Example.modulemap"; sourceTree = "<group>"; };
682CCE0B58E04B608D119283686EB247 /* Quick.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = Quick.release.xcconfig; sourceTree = "<group>"; };
6874F066BBC9364E3EFE686F92566B9F /* FileStorageManager.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = FileStorageManager.swift; path = Classes/DownloadManager/FileStorageManager.swift; sourceTree = "<group>"; };
6A002C82639D50399C7B02C2A1EFFD7C /* MatcherProtocols.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = MatcherProtocols.swift; path = Sources/Nimble/Matchers/MatcherProtocols.swift; sourceTree = "<group>"; };
6ABE492C36C033968FBF4016B4406AE9 /* Pods-ComposableDataSource_Tests-frameworks.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-ComposableDataSource_Tests-frameworks.sh"; sourceTree = "<group>"; };
6DDE04433BF5B9481D9D0CCE7E753DA2 /* NimbleEnvironment.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = NimbleEnvironment.swift; path = Sources/Nimble/Adapters/NimbleEnvironment.swift; sourceTree = "<group>"; };
6DE25A042E0B0FAF63EA386CEBE48313 /* GenericCollectionReusableView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = GenericCollectionReusableView.swift; sourceTree = "<group>"; };
6EE89F87E5DA281779F33CF6757A8E6E /* UIImage+Diff.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImage+Diff.h"; path = "FBSnapshotTestCase/Categories/UIImage+Diff.h"; sourceTree = "<group>"; };
6FC619B10B88A55A3A46389ADDF45483 /* Nimble-Snapshots.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = "Nimble-Snapshots.modulemap"; sourceTree = "<group>"; };
6FCEDAD4122B8F3629A3C04A1B905AEE /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = "<group>"; };
70CD71D4F71C6FE39643ACE3FAA592B7 /* mach_excServer.c */ = {isa = PBXFileReference; includeInIndex = 1; name = mach_excServer.c; path = Carthage/Checkouts/CwlPreconditionTesting/Sources/CwlMachBadInstructionHandler/mach_excServer.c; sourceTree = "<group>"; };
729489A7BB91EB8ACEA17E379E3BCEAF /* Celestial-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Celestial-dummy.m"; sourceTree = "<group>"; };
7343C74D37BC22C03B01D753CD60F8FF /* Pods-ComposableDataSource_Example.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-ComposableDataSource_Example.release.xcconfig"; sourceTree = "<group>"; };
745596B8A781D8389132AE07003D4683 /* Celestial.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Celestial.swift; path = Classes/Celestial/Celestial.swift; sourceTree = "<group>"; };
7477932361CDCD38B1B04CE1B63AD18D /* NMBStringify.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = NMBStringify.h; path = Sources/NimbleObjectiveC/NMBStringify.h; sourceTree = "<group>"; };
7486DD80E82D1D23E500C4608330CC92 /* SwiftSupport.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SwiftSupport.swift; path = FBSnapshotTestCase/SwiftSupport.swift; sourceTree = "<group>"; };
751ECEBBE5763B5104ED1ACB058B3472 /* CwlBadInstructionException.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CwlBadInstructionException.swift; path = Carthage/Checkouts/CwlPreconditionTesting/Sources/CwlPreconditionTesting/CwlBadInstructionException.swift; sourceTree = "<group>"; };
769133D6E3A30B665F620113B70E4250 /* ExampleGroup.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ExampleGroup.swift; path = Sources/Quick/ExampleGroup.swift; sourceTree = "<group>"; };
76A50262DB5238F833848759F9FE80AC /* UIImage+Diff.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImage+Diff.h"; path = "FBSnapshotTestCase/Categories/UIImage+Diff.h"; sourceTree = "<group>"; };
773942E0D77900D61B0EB938B1FFDBBF /* DataLoadablePlayerItem.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = DataLoadablePlayerItem.swift; path = Classes/VideoPlayerView/DataLoadablePlayerItem.swift; sourceTree = "<group>"; };
780871D8DFE3565D77375DCA2FA46590 /* Expression.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Expression.swift; path = Sources/Nimble/Expression.swift; sourceTree = "<group>"; };
79685086CC9C1E91EC6D93FAA33032B8 /* Filter.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Filter.swift; path = Sources/Quick/Filter.swift; sourceTree = "<group>"; };
7A00167A623264A0DD7C803734EF48F6 /* ContainElementSatisfying.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ContainElementSatisfying.swift; path = Sources/Nimble/Matchers/ContainElementSatisfying.swift; sourceTree = "<group>"; };
7A2D9EC9A5F9A0241ADF2E479B33C0A0 /* CwlCatchException.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CwlCatchException.h; path = Carthage/Checkouts/CwlPreconditionTesting/Dependencies/CwlCatchException/Sources/CwlCatchExceptionSupport/include/CwlCatchException.h; sourceTree = "<group>"; };
7B66C3B334833288F9286BDF364704EB /* Pods-ComposableDataSource_Tests-acknowledgements.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-ComposableDataSource_Tests-acknowledgements.plist"; sourceTree = "<group>"; };
7CE0F6F2F9E41837D664BC1E0A137675 /* Equal.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Equal.swift; path = Sources/Nimble/Matchers/Equal.swift; sourceTree = "<group>"; };
7D97AAA86D4D43368C4D32CA1C1853D5 /* BeLessThan.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = BeLessThan.swift; path = Sources/Nimble/Matchers/BeLessThan.swift; sourceTree = "<group>"; };
7E934B23F41878A48646936050102BCA /* MiscellaneousDeclarations.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = MiscellaneousDeclarations.swift; path = "Classes/Protocols+Declarations/MiscellaneousDeclarations.swift"; sourceTree = "<group>"; };
7F2AD66826BEE649F9B55658A8D540A2 /* UIImage+Diff.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIImage+Diff.m"; path = "FBSnapshotTestCase/Categories/UIImage+Diff.m"; sourceTree = "<group>"; };
805AF55892B64FB3A5E63641DF00A5FE /* Nimble.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = Nimble.modulemap; sourceTree = "<group>"; };
851A0F2599714F23B4E759A3AF65118F /* QuickSpec.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QuickSpec.m; path = Sources/QuickObjectiveC/QuickSpec.m; sourceTree = "<group>"; };
852CB1A476ED4CBAD100AE1CDB22B371 /* iOSSnapshotTestCase.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = iOSSnapshotTestCase.debug.xcconfig; sourceTree = "<group>"; };
8581A9703C589E8F3A51743BA0427AF6 /* ComposableDataSource-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "ComposableDataSource-prefix.pch"; sourceTree = "<group>"; };
8667433FD207F72392173DC66FDED6F2 /* QuickTestSuite.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = QuickTestSuite.swift; path = Sources/Quick/QuickTestSuite.swift; sourceTree = "<group>"; };
86959FD1558FA12DF1B0EC3DF296D2DB /* QuickSpec.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QuickSpec.h; path = Sources/QuickObjectiveC/QuickSpec.h; sourceTree = "<group>"; };
87C7B92D9686D88B5F0B070BE807C97B /* BeAnInstanceOf.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = BeAnInstanceOf.swift; path = Sources/Nimble/Matchers/BeAnInstanceOf.swift; sourceTree = "<group>"; };
87D7BB121F7EFAB5507F293954C94406 /* Async.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Async.swift; path = Sources/Nimble/Matchers/Async.swift; sourceTree = "<group>"; };
883FA4129792035405379B20288C693E /* Nimble-Snapshots-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Nimble-Snapshots-Info.plist"; sourceTree = "<group>"; };
8AD66C2E432D396C624236ABF8A8CAD6 /* CwlDarwinDefinitions.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CwlDarwinDefinitions.swift; path = Carthage/Checkouts/CwlPreconditionTesting/Sources/CwlPreconditionTesting/CwlDarwinDefinitions.swift; sourceTree = "<group>"; };
8B4FA37594EFCE0AD0B182DF433FDE3A /* Predicate.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Predicate.swift; path = Sources/Nimble/Matchers/Predicate.swift; sourceTree = "<group>"; };
8E0F895B2F4896EDE0F637400D2D096C /* UIApplication+StrictKeyWindow.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIApplication+StrictKeyWindow.h"; path = "FBSnapshotTestCase/Categories/UIApplication+StrictKeyWindow.h"; sourceTree = "<group>"; };
9277AC11426FBFCE5FC2BC0026908092 /* Contain.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Contain.swift; path = Sources/Nimble/Matchers/Contain.swift; sourceTree = "<group>"; };
927D933BDB12E4D9AC6D931014C5812F /* QuickConfiguration.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QuickConfiguration.h; path = Sources/QuickObjectiveC/Configuration/QuickConfiguration.h; sourceTree = "<group>"; };
92920499562EB53D089EA14893729995 /* Nimble-Snapshots.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Nimble-Snapshots.debug.xcconfig"; sourceTree = "<group>"; };
95159AEEF81F5836EAA93DDF7D4A931E /* Nimble-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Nimble-Info.plist"; sourceTree = "<group>"; };
964B08C6482C2B58DCF7DB4D6F937648 /* Nimble-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Nimble-prefix.pch"; sourceTree = "<group>"; };
96EC807D54B55BD3F7874E72A635E33A /* Pods_ComposableDataSource_Tests.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = Pods_ComposableDataSource_Tests.framework; path = "Pods-ComposableDataSource_Tests.framework"; sourceTree = BUILT_PRODUCTS_DIR; };
975F1BD6ACEA4E6EE45E47DDEE916D9E /* Nimble_Snapshots.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Nimble_Snapshots.h; path = Nimble_Snapshots/Nimble_Snapshots.h; sourceTree = "<group>"; };
978D06CC3526D9159C210D9C4D79DE79 /* VideoPlayerView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = VideoPlayerView.swift; path = Classes/VideoPlayerView/VideoPlayerView.swift; sourceTree = "<group>"; };
9B08280D43163A3A4F7FBC74A2D5B714 /* SectionableCollectionDataSource.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = SectionableCollectionDataSource.swift; sourceTree = "<group>"; };
9C4C8CC4185BD9FAD9DF57EA55216D0D /* CwlCatchException.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CwlCatchException.swift; path = Carthage/Checkouts/CwlPreconditionTesting/Dependencies/CwlCatchException/Sources/CwlCatchException/CwlCatchException.swift; sourceTree = "<group>"; };
9D1A42344D5A4B4E5C77C3935D81B1A0 /* SourceLocation.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SourceLocation.swift; path = Sources/Nimble/Utils/SourceLocation.swift; sourceTree = "<group>"; };
9D878680C5A028BC30639FC2430062EC /* ComposableCollectionDataSource.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = ComposableCollectionDataSource.swift; sourceTree = "<group>"; };
9D940727FF8FB9C785EB98E56350EF41 /* Podfile */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; name = Podfile; path = ../Podfile; sourceTree = SOURCE_ROOT; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; };
9DBAF05326AD154E5505BB749FAECC14 /* ComposableDataSource-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "ComposableDataSource-Info.plist"; sourceTree = "<group>"; };
9EB401281397F42F1A9286F7BC097826 /* ComposableDataSource.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = ComposableDataSource.modulemap; sourceTree = "<group>"; };
A20BD6DBEF235A10FE8836F723DB41AB /* Nimble-Snapshots-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Nimble-Snapshots-prefix.pch"; sourceTree = "<group>"; };
A382EA452DC1CC9649E4C2EA0CA85036 /* VideoCache.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = VideoCache.swift; path = Classes/Celestial/VideoCache.swift; sourceTree = "<group>"; };
A3D13C170B56AC7E942C391022C02772 /* DSL.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DSL.h; path = Sources/NimbleObjectiveC/DSL.h; sourceTree = "<group>"; };
A460708E180C57C4EFEB5E6AB6FC847D /* FBSnapshotTestCasePlatform.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSnapshotTestCasePlatform.h; path = FBSnapshotTestCase/FBSnapshotTestCasePlatform.h; sourceTree = "<group>"; };
A51A38CAF3C4F0BAC7DCAA73D2F981A1 /* iOSSnapshotTestCase.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = iOSSnapshotTestCase.release.xcconfig; sourceTree = "<group>"; };
A6B4B481C9E45AE6EEB479A1AA2A0EE1 /* QuickTestObservation.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = QuickTestObservation.swift; path = Sources/Quick/QuickTestObservation.swift; sourceTree = "<group>"; };
A83038CEDA65DE8424FE8F874DD658E5 /* Utility.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Utility.swift; path = Classes/Utility/Utility.swift; sourceTree = "<group>"; };
ACE2D63FC21A3DFC99B81D3D072BEEBB /* DSL+Wait.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "DSL+Wait.swift"; path = "Sources/Nimble/DSL+Wait.swift"; sourceTree = "<group>"; };
ACF51361DFF744599541F1459103D59E /* QuickConfiguration.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QuickConfiguration.m; path = Sources/QuickObjectiveC/Configuration/QuickConfiguration.m; sourceTree = "<group>"; };
AD8956FD3AECE3F0172438CD6C9FD366 /* FBSnapshotTestCase-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "FBSnapshotTestCase-dummy.m"; sourceTree = "<group>"; };
ADAA42CC3F01982650B6D32C88C8D5C6 /* ComposableDataSource.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = ComposableDataSource.release.xcconfig; sourceTree = "<group>"; };
AEB3E64463506F5C729E81D900FD6AE4 /* Pods-ComposableDataSource_Tests-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-ComposableDataSource_Tests-Info.plist"; sourceTree = "<group>"; };
B0611EB04D2B6E12FD57CA00B66ED849 /* SuiteHooks.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SuiteHooks.swift; path = Sources/Quick/Hooks/SuiteHooks.swift; sourceTree = "<group>"; };
B06E62252BD16C13D3B5C5AD560F6BBE /* FBSnapshotTestController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSnapshotTestController.m; path = FBSnapshotTestCase/FBSnapshotTestController.m; sourceTree = "<group>"; };
B0ADCE5F448CD79C86781B2422CAAE39 /* UIImage+Snapshot.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIImage+Snapshot.m"; path = "FBSnapshotTestCase/Categories/UIImage+Snapshot.m"; sourceTree = "<group>"; };
B6BA0290DFAB4A0268EB8E64078CF00D /* Pods-ComposableDataSource_Tests.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-ComposableDataSource_Tests.debug.xcconfig"; sourceTree = "<group>"; };
B6F5EF634F5E6939FF8D0D0ED43E7B11 /* QuartzCore.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = QuartzCore.framework; path = Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.2.sdk/System/Library/Frameworks/QuartzCore.framework; sourceTree = DEVELOPER_DIR; };
B7072F8592C1417443E2AF4DBF851552 /* 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; };
B7311CCCA04811338D740DBFEA4CC62D /* XCTest.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = XCTest.framework; path = Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.2.sdk/System/Library/Frameworks/XCTest.framework; sourceTree = DEVELOPER_DIR; };
B882C1A2679063F203267B3E04D7D699 /* CwlPreconditionTesting.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CwlPreconditionTesting.h; path = Carthage/Checkouts/CwlPreconditionTesting/Sources/CwlPreconditionTesting/include/CwlPreconditionTesting.h; sourceTree = "<group>"; };
B8BBC81B2D76EF5F1371F12D7C9CFCBD /* ComposableDataSource.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = ComposableDataSource.debug.xcconfig; sourceTree = "<group>"; };
B8C89D0C2A0D08E15A2FE69E0AE01928 /* NMBObjCMatcher.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = NMBObjCMatcher.swift; path = Sources/Nimble/Adapters/NMBObjCMatcher.swift; sourceTree = "<group>"; };
B91B00F8BE943329D633234BD67AE0AC /* FBSnapshotTestCase.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = FBSnapshotTestCase.framework; path = iOSSnapshotTestCase.framework; sourceTree = BUILT_PRODUCTS_DIR; };
B9263113FE713BF54C688800D4926C8F /* QuickSpecBase.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QuickSpecBase.m; path = Sources/QuickObjCRuntime/QuickSpecBase.m; sourceTree = "<group>"; };
B94A163385785D0124CF842E7F084E1A /* HaveValidSnapshot.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = HaveValidSnapshot.swift; path = Nimble_Snapshots/HaveValidSnapshot.swift; sourceTree = "<group>"; };
B9AA9439956A9F91D7628F8C6C874B87 /* ImageCache.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ImageCache.swift; path = Classes/Celestial/ImageCache.swift; sourceTree = "<group>"; };
B9C8769AEC150125AF36628009684D11 /* SatisfyAllOf.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SatisfyAllOf.swift; path = Sources/Nimble/Matchers/SatisfyAllOf.swift; sourceTree = "<group>"; };
BAE263041362D074978BB3B577DF0A05 /* Nimble.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = Nimble.framework; path = Nimble.framework; sourceTree = BUILT_PRODUCTS_DIR; };
BAE40CDE04EBCCB0DC55BA21B366F322 /* Nimble.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Nimble.h; path = Sources/Nimble/Nimble.h; sourceTree = "<group>"; };
BE804F0BBA31ACC6B910E4B2D3861E33 /* RaisesException.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RaisesException.swift; path = Sources/Nimble/Matchers/RaisesException.swift; sourceTree = "<group>"; };
BF1048D5341F1774A77A654FC4AA8C33 /* AdapterProtocols.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AdapterProtocols.swift; path = Sources/Nimble/Adapters/AdapterProtocols.swift; sourceTree = "<group>"; };
C0CEF0E2EC455C158CBD1AE8A648BF96 /* BeLessThanOrEqual.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = BeLessThanOrEqual.swift; path = Sources/Nimble/Matchers/BeLessThanOrEqual.swift; sourceTree = "<group>"; };
C0F01C0DB7E3EBC5375DBA6164584736 /* Pods-ComposableDataSource_Tests-acknowledgements.markdown */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = "Pods-ComposableDataSource_Tests-acknowledgements.markdown"; sourceTree = "<group>"; };
C195C33EB9C42AB44DB64378B279C9E1 /* World+DSL.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "World+DSL.swift"; path = "Sources/Quick/DSL/World+DSL.swift"; sourceTree = "<group>"; };
C22E2552D2B1AF15A6D8C19E46795E3B /* ComposableDataSource-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "ComposableDataSource-umbrella.h"; sourceTree = "<group>"; };
C307F98080281468C3B76046A98168BA /* iOSSnapshotTestCase.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = iOSSnapshotTestCase.modulemap; sourceTree = "<group>"; };
C313CE39F2B0E41B65416D3EA830F423 /* BeCloseTo.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = BeCloseTo.swift; path = Sources/Nimble/Matchers/BeCloseTo.swift; sourceTree = "<group>"; };
C417F0C3B1D87BDEF661048D9B672C4C /* Errors.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Errors.swift; path = Sources/Nimble/Utils/Errors.swift; sourceTree = "<group>"; };
C4A5A2BA19E100999321028A41201B12 /* Extensions.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = Extensions.swift; sourceTree = "<group>"; };
C58E1D9CBC24EE7D7D99BFDF46796C59 /* ExpectationMessage.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ExpectationMessage.swift; path = Sources/Nimble/ExpectationMessage.swift; sourceTree = "<group>"; };
C7FEBE741A82C3A30BB64A96828335E0 /* Nimble-Snapshots-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Nimble-Snapshots-dummy.m"; sourceTree = "<group>"; };
C972DE37EFF9C87659A64CEA7D672FAF /* FBSnapshotTestCase.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = FBSnapshotTestCase.modulemap; sourceTree = "<group>"; };
CA1526E3049ABB2AF0B35B4A0A3B4B71 /* Nimble.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = Nimble.debug.xcconfig; sourceTree = "<group>"; };
CAD7ED67D2BA2E76379BDA552AAF7BB4 /* QuickSpecBase.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QuickSpecBase.h; path = Sources/QuickObjCRuntime/include/QuickSpecBase.h; sourceTree = "<group>"; };
CB1AB1E8977446BD50BFB79AA1D46936 /* FBSnapshotTestCase-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "FBSnapshotTestCase-prefix.pch"; sourceTree = "<group>"; };
CB1E8E7D4F00068247CF57BC03342DC2 /* MediaResourceLoader.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = MediaResourceLoader.swift; path = Classes/CachableAVPlayerItem/MediaResourceLoader.swift; sourceTree = "<group>"; };
CB4A98B91D749B9EDC9EEE8BE133FCD1 /* Expectation.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Expectation.swift; path = Sources/Nimble/Expectation.swift; sourceTree = "<group>"; };
CBCEF6A068AFA1ACD101892E9B825C52 /* iOSSnapshotTestCase-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "iOSSnapshotTestCase-umbrella.h"; sourceTree = "<group>"; };
CC13887B81C56FB2EA53F39748685D1D /* CachableAVPlayerItem.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CachableAVPlayerItem.swift; path = Classes/CachableAVPlayerItem/CachableAVPlayerItem.swift; sourceTree = "<group>"; };
CC85E4D6E7D9BFB9AEA4B4D87B3F1C09 /* DSL.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = DSL.swift; path = Sources/Nimble/DSL.swift; sourceTree = "<group>"; };
CCB54EB1E0A566EC504D137C4E6F1356 /* NMBStringify.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = NMBStringify.m; path = Sources/NimbleObjectiveC/NMBStringify.m; sourceTree = "<group>"; };
CD9CCAF0FDBA9DA5EB3A9A95EE765BC0 /* Protocols+Declarations.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = "Protocols+Declarations.swift"; sourceTree = "<group>"; };
CDAA56BBDC077759855EBA43BAB4DB59 /* MatcherFunc.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = MatcherFunc.swift; path = Sources/Nimble/Matchers/MatcherFunc.swift; sourceTree = "<group>"; };
CEB278423EB3FD57710983B868BD3515 /* World.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = World.swift; path = Sources/Quick/World.swift; sourceTree = "<group>"; };
CEC6556AEDFF7D0D12AF6409F66F25A5 /* BeVoid.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = BeVoid.swift; path = Sources/Nimble/Matchers/BeVoid.swift; sourceTree = "<group>"; };
D2110142D95131AD5A61CC981EC04CB8 /* Constants.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = Constants.swift; sourceTree = "<group>"; };
D21824851068802AFED93F82877B43B5 /* FBSnapshotTestController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSnapshotTestController.h; path = FBSnapshotTestCase/FBSnapshotTestController.h; sourceTree = "<group>"; };
D370D3317F290D1AC818D56295F34704 /* DataSourceProvider.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = DataSourceProvider.swift; sourceTree = "<group>"; };
D38C96CB1AD505F67140950283961B60 /* Match.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Match.swift; path = Sources/Nimble/Matchers/Match.swift; sourceTree = "<group>"; };
D56EF71E0F1797DE84E1BBB46786B0D6 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = "<group>"; };
D628F0933E169C29D7E8FC9FA153F03E /* Celestial.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = Celestial.debug.xcconfig; sourceTree = "<group>"; };
D73B577562DA8FE979275D056B65EC90 /* BeIdenticalTo.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = BeIdenticalTo.swift; path = Sources/Nimble/Matchers/BeIdenticalTo.swift; sourceTree = "<group>"; };
D7468A5F370677BDC2EC5F15F0EDD37C /* FBSnapshotTestController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSnapshotTestController.h; path = FBSnapshotTestCase/FBSnapshotTestController.h; sourceTree = "<group>"; };
D9A94AD709D941AF17EA23718B028894 /* FBSnapshotTestCase.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSnapshotTestCase.h; path = FBSnapshotTestCase/FBSnapshotTestCase.h; sourceTree = "<group>"; };
DA394C23E0F50D7AB43084AEEECD3928 /* HaveCount.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = HaveCount.swift; path = Sources/Nimble/Matchers/HaveCount.swift; sourceTree = "<group>"; };
DB3C4913F11C770A2CDC0394C9516A6B /* MemoryCachedVideoData.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = MemoryCachedVideoData.swift; path = Classes/VideoPlayerView/MemoryCachedVideoData.swift; sourceTree = "<group>"; };
DB5B687616A3D46A0928D6B9C5D9F7E4 /* iOSSnapshotTestCase-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "iOSSnapshotTestCase-prefix.pch"; sourceTree = "<group>"; };
DCA8A27BF3C278FCF98A058DF0941605 /* Nimble-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Nimble-umbrella.h"; sourceTree = "<group>"; };
DD60D279D588B6AE2E330664B11A383D /* DynamicSizeSnapshot.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = DynamicSizeSnapshot.swift; path = Nimble_Snapshots/DynamicSize/DynamicSizeSnapshot.swift; sourceTree = "<group>"; };
DDDB0B6D16B84F340E2EED8A762CED82 /* AssertionDispatcher.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AssertionDispatcher.swift; path = Sources/Nimble/Adapters/AssertionDispatcher.swift; sourceTree = "<group>"; };
DEB96B65833C0405C4448EF4A3FEF451 /* FBSnapshotTestCase.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSnapshotTestCase.m; path = FBSnapshotTestCase/FBSnapshotTestCase.m; sourceTree = "<group>"; };
DEFAFDCBF65246ACD545100623BDDB3F /* DownloadTaskRequest.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = DownloadTaskRequest.swift; path = Classes/DownloadManager/DownloadTaskRequest.swift; sourceTree = "<group>"; };
DFD061163A870FBE068F09D4880DC624 /* HooksPhase.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = HooksPhase.swift; path = Sources/Quick/Hooks/HooksPhase.swift; sourceTree = "<group>"; };
E075CED0760F3EAF3829AEADEE587E6D /* Quick.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Quick.h; path = Sources/QuickObjectiveC/Quick.h; sourceTree = "<group>"; };
E2816706B22418F4C4E737D649A53631 /* Pods-ComposableDataSource_Example-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Pods-ComposableDataSource_Example-umbrella.h"; sourceTree = "<group>"; };
E2AEF76FF1263D44328B543BD44225BD /* CurrentTestCaseTracker.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CurrentTestCaseTracker.swift; path = Nimble_Snapshots/CurrentTestCaseTracker.swift; sourceTree = "<group>"; };
E3707BC0DA5C1E72EB4EF1B968E5A298 /* GenericCellModel.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = GenericCellModel.swift; sourceTree = "<group>"; };
E3F94F532668E1B4A58C546EA6305A58 /* XCTestObservationCenter+CurrentTestCaseTracker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "XCTestObservationCenter+CurrentTestCaseTracker.h"; path = "Nimble_Snapshots/XCTestObservationCenter+CurrentTestCaseTracker.h"; sourceTree = "<group>"; };
E4C76133872E8AB85C11158267DFCBA4 /* ExampleMetadata.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ExampleMetadata.swift; path = Sources/Quick/ExampleMetadata.swift; sourceTree = "<group>"; };
E718A7632ED86169E87F94D4C8AB294A /* Stringers.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Stringers.swift; path = Sources/Nimble/Utils/Stringers.swift; sourceTree = "<group>"; };
EAB8A0E23814478C1B48E33499DE0AFC /* DownloadTaskHandler.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = DownloadTaskHandler.swift; path = Classes/DownloadManager/DownloadTaskHandler.swift; sourceTree = "<group>"; };
EAF4E2FD2C1D46BA8712D9CC7FA9F195 /* FBSnapshotTestCase.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = FBSnapshotTestCase.debug.xcconfig; sourceTree = "<group>"; };
EB3B59640F48110F6231F58B6AE27385 /* Functional.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Functional.swift; path = Sources/Nimble/Utils/Functional.swift; sourceTree = "<group>"; };
F157EE8713B1377F3E76057ADE719275 /* Configuration.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Configuration.swift; path = Sources/Quick/Configuration/Configuration.swift; sourceTree = "<group>"; };
F16D733FB1419BD5BEB09F00B819C19B /* FBSnapshotTestCasePlatform.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSnapshotTestCasePlatform.m; path = FBSnapshotTestCase/FBSnapshotTestCasePlatform.m; sourceTree = "<group>"; };
F23A4CE1C0D8B76E75AEA42A252C83E1 /* Quick.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = Quick.modulemap; sourceTree = "<group>"; };
F287544B403E264EE3AA6500F49C8E55 /* ComposableDataSource.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = ComposableDataSource.podspec; sourceTree = "<group>"; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; };
F29BB5D13981E160ED35FBECB5E2042A /* BeLogical.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = BeLogical.swift; path = Sources/Nimble/Matchers/BeLogical.swift; sourceTree = "<group>"; };
F3F8D85863678CE72BEC2534FD6A5E8C /* GenericSupplementaryModel.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = GenericSupplementaryModel.swift; sourceTree = "<group>"; };
F4153C4D06A2BB31B240954132FF8D59 /* PrettySyntax.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = PrettySyntax.swift; path = Nimble_Snapshots/PrettySyntax.swift; sourceTree = "<group>"; };
F48F5FD97C055C20248B673D248215B0 /* Await.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Await.swift; path = Sources/Nimble/Utils/Await.swift; sourceTree = "<group>"; };
F5492DF5368C200ADE00E14003AB99D0 /* ThrowError.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ThrowError.swift; path = Sources/Nimble/Matchers/ThrowError.swift; sourceTree = "<group>"; };
F56E9119101EB3EE4B0C3044EF19C9AB /* NBSMockedApplication.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = NBSMockedApplication.h; path = Nimble_Snapshots/DynamicType/NBSMockedApplication.h; sourceTree = "<group>"; };
F594845BE3EB912EB67AF68433E7BD4E /* BeginWith.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = BeginWith.swift; path = Sources/Nimble/Matchers/BeginWith.swift; sourceTree = "<group>"; };
F5A3679EEC7FF8A9666B2CDA4D02B470 /* XCTestObservationCenter+Register.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "XCTestObservationCenter+Register.m"; path = "Sources/NimbleObjectiveC/XCTestObservationCenter+Register.m"; sourceTree = "<group>"; };
F61EEED78345F4910B5F4653685683FC /* iOSSnapshotTestCase-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "iOSSnapshotTestCase-Info.plist"; sourceTree = "<group>"; };
F62C39FCF477B007B2FCE16029451E03 /* Pods-ComposableDataSource_Tests-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-ComposableDataSource_Tests-dummy.m"; sourceTree = "<group>"; };
F743DE42860D1B10900D2FB40C146D7F /* URLImageView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = URLImageView.swift; path = Classes/URLImageView/URLImageView.swift; sourceTree = "<group>"; };
F88189EA0E4777B0797F2AC02A28AF6B /* NMBExceptionCapture.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = NMBExceptionCapture.m; path = Sources/NimbleObjectiveC/NMBExceptionCapture.m; sourceTree = "<group>"; };
F925212326002CCF126D10B6BA555AFA /* FBSnapshotTestCase-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "FBSnapshotTestCase-Info.plist"; sourceTree = "<group>"; };
F9B6DFC80E704FA6CB929B41B06D0DE3 /* PostNotification.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = PostNotification.swift; path = Sources/Nimble/Matchers/PostNotification.swift; sourceTree = "<group>"; };
FB15F1026F9F7454B1A42752FB9B588D /* UIImage+Diff.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIImage+Diff.m"; path = "FBSnapshotTestCase/Categories/UIImage+Diff.m"; sourceTree = "<group>"; };
FBC335FA3170A00CB0ED68063C37AFE5 /* Nimble-Snapshots-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Nimble-Snapshots-umbrella.h"; sourceTree = "<group>"; };
FBF2E321FAA4B0E12B436638ECE4B43D /* UIImage+Snapshot.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImage+Snapshot.h"; path = "FBSnapshotTestCase/Categories/UIImage+Snapshot.h"; sourceTree = "<group>"; };
FE0FC56AD55FFB3C0373D1B3105CB7EA /* FBSnapshotTestCasePlatform.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSnapshotTestCasePlatform.h; path = FBSnapshotTestCase/FBSnapshotTestCasePlatform.h; sourceTree = "<group>"; };
FE81147284B9A9152EA4B6D5FACBB2C8 /* ComposableDataSource.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = ComposableDataSource.framework; path = ComposableDataSource.framework; sourceTree = BUILT_PRODUCTS_DIR; };
FE91B5228C01400446C609B7630ACB9A /* QCKDSL.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QCKDSL.m; path = Sources/QuickObjectiveC/DSL/QCKDSL.m; sourceTree = "<group>"; };
/* End PBXFileReference section */
/* Begin PBXFrameworksBuildPhase section */
115ED529EF47EE0B4C48F3BB84BB4BE8 /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
0C072BAF4C571466FAB0318786347ADA /* Foundation.framework in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
1FB41F3B817F50C08A530AB486E92A06 /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
163C2D9C86D8AA40817453CC2F41F5BE /* Foundation.framework in Frameworks */,
02DD7FC6A855D0675EA8B3BE66C99BBB /* XCTest.framework in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
55C81EE76C6A69F1F69792A679310C68 /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
EFB9CC9267297D8104141A4046AAD14E /* Foundation.framework in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
646AD24EE5B74793A35B98E8D31081AC /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
4672FD9F2A61E374A3E7DD79336D4831 /* FBSnapshotTestCase.framework in Frameworks */,
51AF27C6C6A436C598A9C6FD24990EF7 /* Foundation.framework in Frameworks */,
A6A550089B7797DEF915A0C0BAE2390D /* Nimble.framework in Frameworks */,
8AEAC7C2D0B3B1E6B77EC8B91F429387 /* UIKit.framework in Frameworks */,
4CD5591DB1830D1F96292CDFF84B30A0 /* XCTest.framework in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
6F27B1510B6BF6FA576789694DAB83E8 /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
963C61CA394772084AAC52D7A9822A96 /* Foundation.framework in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
9DB672DFFA247AC8A9BF7DD49ECD9400 /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
E0F1AD626C62F77B7C0A8B63B88A8D9C /* Foundation.framework in Frameworks */,
857347F7E0C2B578C29882CA41D164E6 /* QuartzCore.framework in Frameworks */,
53D4EA82797AB425B9DD2A06C8DED64B /* UIKit.framework in Frameworks */,
524B49575CF7A7FF74F8B460C17512F2 /* XCTest.framework in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
E47119BE40C5A4B4300037DD3A6AF2E5 /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
8DBF7432555236AE1B1353A000A056E3 /* Foundation.framework in Frameworks */,
CBE94243F67A663C12093474450A7F17 /* UIKit.framework in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
E581515110D66F94F80A6937831489A1 /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
B25D795BDC4F426BC01EFC911F368B81 /* Foundation.framework in Frameworks */,
14C511527597E5846AB2627F791C7D8E /* QuartzCore.framework in Frameworks */,
E0B8D095C732352C854D365B9E5B993D /* UIKit.framework in Frameworks */,
6AE239C5D116E1C06F5705699FB9EAF0 /* XCTest.framework in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
F1A29E7E2468792DB265F2EDC514F7D0 /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
996CE64E88BAA69007FACD854BD4E5BB /* Foundation.framework in Frameworks */,
F2AC6D604CF272278D2B8D5C1922832F /* UIKit.framework in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXFrameworksBuildPhase section */
/* Begin PBXGroup section */
02E1651CE41FECE8B9631A3B534E302C /* SwiftSupport */ = {
isa = PBXGroup;
children = (
7486DD80E82D1D23E500C4608330CC92 /* SwiftSupport.swift */,
);
name = SwiftSupport;
sourceTree = "<group>";
};
0DC99619DB388DB03AE52853855BDC70 /* ComposableDataSource */ = {
isa = PBXGroup;
children = (
B2C9BC7E3655E78FA0AB4A0712DA6C03 /* datasources */,
144FDC1236A6308CADB3D9F74E747DF1 /* models */,
6677D7A28B528E6F0C702630B3A7351B /* Pod */,
44DD9CD3ECE6ADDD76C9312B2017BDE8 /* providers */,
613C0A5388D9C5F1EB8F38B6CDB87720 /* Support Files */,
4E743415AB4ACB52510B1303AE52B2CD /* Utility */,
EA93011A158FB2F560E58412723F68C3 /* views */,
);
name = ComposableDataSource;
path = ../..;
sourceTree = "<group>";
};
13E17D1A9629F4021C215F8304CB4370 /* iOS */ = {
isa = PBXGroup;
children = (
21C3C4B545657B2907FBCBC01372B1CD /* Foundation.framework */,
B6F5EF634F5E6939FF8D0D0ED43E7B11 /* QuartzCore.framework */,
B7072F8592C1417443E2AF4DBF851552 /* UIKit.framework */,
B7311CCCA04811338D740DBFEA4CC62D /* XCTest.framework */,
);
name = iOS;
sourceTree = "<group>";
};
144FDC1236A6308CADB3D9F74E747DF1 /* models */ = {
isa = PBXGroup;
children = (
E3707BC0DA5C1E72EB4EF1B968E5A298 /* GenericCellModel.swift */,
F3F8D85863678CE72BEC2534FD6A5E8C /* GenericSupplementaryModel.swift */,
);
name = models;
path = Classes/models;
sourceTree = "<group>";
};
16C4E2BF8DFC4BD7056D47AD747BDED4 /* Quick */ = {
isa = PBXGroup;
children = (
37821BB0503C6E9C435B2C36DA68AAE1 /* Behavior.swift */,
1AA2ED97D006A1A4DEFB74CA3F7AC08D /* Callsite.swift */,
1DB80BBC7AEDDC8403EAB914E9FF04B7 /* Closures.swift */,
F157EE8713B1377F3E76057ADE719275 /* Configuration.swift */,
1A5F1BCB7C4C291D67FB99CBE8D131BB /* DSL.swift */,
5F90798C64386CB2AA07AF54479D7AAF /* ErrorUtility.swift */,
51E55084576212A02214D1C9D210B00A /* Example.swift */,
769133D6E3A30B665F620113B70E4250 /* ExampleGroup.swift */,
5190F38BCC85B886ACF2B3EC6EA905CA /* ExampleHooks.swift */,
E4C76133872E8AB85C11158267DFCBA4 /* ExampleMetadata.swift */,
79685086CC9C1E91EC6D93FAA33032B8 /* Filter.swift */,
DFD061163A870FBE068F09D4880DC624 /* HooksPhase.swift */,
5E10733AB2F17A29476DEABAD446A0A4 /* NSBundle+CurrentTestBundle.swift */,
11780EEB01385DDE3C3AC8015ECC916D /* QCKDSL.h */,
FE91B5228C01400446C609B7630ACB9A /* QCKDSL.m */,
E075CED0760F3EAF3829AEADEE587E6D /* Quick.h */,
927D933BDB12E4D9AC6D931014C5812F /* QuickConfiguration.h */,
ACF51361DFF744599541F1459103D59E /* QuickConfiguration.m */,
4E17E6A390B4B9CD757C102BC7661A50 /* QuickConfiguration.swift */,
2A2D1748A0147F5436152C6084CA1C08 /* QuickSelectedTestSuiteBuilder.swift */,
86959FD1558FA12DF1B0EC3DF296D2DB /* QuickSpec.h */,
851A0F2599714F23B4E759A3AF65118F /* QuickSpec.m */,
CAD7ED67D2BA2E76379BDA552AAF7BB4 /* QuickSpecBase.h */,
B9263113FE713BF54C688800D4926C8F /* QuickSpecBase.m */,
A6B4B481C9E45AE6EEB479A1AA2A0EE1 /* QuickTestObservation.swift */,
8667433FD207F72392173DC66FDED6F2 /* QuickTestSuite.swift */,
4D3C45044459E2532D2E8B927B86BB24 /* String+C99ExtendedIdentifier.swift */,
B0611EB04D2B6E12FD57CA00B66ED849 /* SuiteHooks.swift */,
027BF9691ACA1CC6903EA073985C4753 /* URL+FileName.swift */,
CEB278423EB3FD57710983B868BD3515 /* World.swift */,
C195C33EB9C42AB44DB64378B279C9E1 /* World+DSL.swift */,
315731EFD6CC8E3D687521F575B83086 /* XCTestSuite+QuickTestSuiteBuilder.m */,
CBAAA8759A5A16BF475820A280E66F1C /* Support Files */,
);
name = Quick;
path = Quick;
sourceTree = "<group>";
};
238FF845CF7DE7C3E6A56BA33CC81D57 /* Core */ = {
isa = PBXGroup;
children = (
44A34CDFE47D6486C78EC8595300E88F /* FBSnapshotTestCase.h */,
1C6689972E35056A9B55458EC50EE12D /* FBSnapshotTestCase.m */,
A460708E180C57C4EFEB5E6AB6FC847D /* FBSnapshotTestCasePlatform.h */,
3A3F78E156C5DAA3B960A6C64CDF8B3D /* FBSnapshotTestCasePlatform.m */,
D7468A5F370677BDC2EC5F15F0EDD37C /* FBSnapshotTestController.h */,
B06E62252BD16C13D3B5C5AD560F6BBE /* FBSnapshotTestController.m */,
8E0F895B2F4896EDE0F637400D2D096C /* UIApplication+StrictKeyWindow.h */,
5A6F51C2B4E25038F3C6AD8301A3F579 /* UIApplication+StrictKeyWindow.m */,
4058F70A079F949CB1F4FE9622D039CB /* UIImage+Compare.h */,
45845D1B70377E83B617EED5F7B322C4 /* UIImage+Compare.m */,
6EE89F87E5DA281779F33CF6757A8E6E /* UIImage+Diff.h */,
7F2AD66826BEE649F9B55658A8D540A2 /* UIImage+Diff.m */,
FBF2E321FAA4B0E12B436638ECE4B43D /* UIImage+Snapshot.h */,
B0ADCE5F448CD79C86781B2422CAAE39 /* UIImage+Snapshot.m */,
);
name = Core;
sourceTree = "<group>";
};
276D116A1B63AD6097C621BADC0A1E78 /* Nimble */ = {
isa = PBXGroup;
children = (
BF1048D5341F1774A77A654FC4AA8C33 /* AdapterProtocols.swift */,
1D066819118E8662EEA39D09F9E59AC7 /* AllPass.swift */,
DDDB0B6D16B84F340E2EED8A762CED82 /* AssertionDispatcher.swift */,
3AD2E74FF800C17793772FA90D22F2C1 /* AssertionRecorder.swift */,
87D7BB121F7EFAB5507F293954C94406 /* Async.swift */,
F48F5FD97C055C20248B673D248215B0 /* Await.swift */,
486E62E42DFBBD48C6DA61317BC733E2 /* BeAKindOf.swift */,
87C7B92D9686D88B5F0B070BE807C97B /* BeAnInstanceOf.swift */,
C313CE39F2B0E41B65416D3EA830F423 /* BeCloseTo.swift */,
0E1E63C6B460648E31225971DE7FED2E /* BeEmpty.swift */,
F594845BE3EB912EB67AF68433E7BD4E /* BeginWith.swift */,
3A6C55CEB5E46829241A8B4411E6D215 /* BeGreaterThan.swift */,
3E191E724EC016CEE4188CA663765480 /* BeGreaterThanOrEqualTo.swift */,
D73B577562DA8FE979275D056B65EC90 /* BeIdenticalTo.swift */,
7D97AAA86D4D43368C4D32CA1C1853D5 /* BeLessThan.swift */,
C0CEF0E2EC455C158CBD1AE8A648BF96 /* BeLessThanOrEqual.swift */,
F29BB5D13981E160ED35FBECB5E2042A /* BeLogical.swift */,
400A60F1D200FFC90FA892B61437159A /* BeNil.swift */,
CEC6556AEDFF7D0D12AF6409F66F25A5 /* BeVoid.swift */,
9277AC11426FBFCE5FC2BC0026908092 /* Contain.swift */,
7A00167A623264A0DD7C803734EF48F6 /* ContainElementSatisfying.swift */,
751ECEBBE5763B5104ED1ACB058B3472 /* CwlBadInstructionException.swift */,
2CBD1745D96A7DB1A5739382A3C45857 /* CwlCatchBadInstruction.swift */,
7A2D9EC9A5F9A0241ADF2E479B33C0A0 /* CwlCatchException.h */,
1D231AD47511789FB0CAA660AA1DEDE2 /* CwlCatchException.m */,
9C4C8CC4185BD9FAD9DF57EA55216D0D /* CwlCatchException.swift */,
8AD66C2E432D396C624236ABF8A8CAD6 /* CwlDarwinDefinitions.swift */,
21D2F1149C7E221BCAECC767A108DF89 /* CwlMachBadInstructionHandler.h */,
11D062006501D7CB2834FEA1E986C179 /* CwlMachBadInstructionHandler.m */,
B882C1A2679063F203267B3E04D7D699 /* CwlPreconditionTesting.h */,
A3D13C170B56AC7E942C391022C02772 /* DSL.h */,
4D1E2241EF1ECAE217193F9704165ABF /* DSL.m */,
CC85E4D6E7D9BFB9AEA4B4D87B3F1C09 /* DSL.swift */,
ACE2D63FC21A3DFC99B81D3D072BEEBB /* DSL+Wait.swift */,
4234E8A6EEF9C179A271CDF77A470400 /* ElementsEqual.swift */,
3DC2346A6DC309992F16CBD4486AA75F /* EndWith.swift */,
7CE0F6F2F9E41837D664BC1E0A137675 /* Equal.swift */,
C417F0C3B1D87BDEF661048D9B672C4C /* Errors.swift */,
CB4A98B91D749B9EDC9EEE8BE133FCD1 /* Expectation.swift */,
C58E1D9CBC24EE7D7D99BFDF46796C59 /* ExpectationMessage.swift */,
780871D8DFE3565D77375DCA2FA46590 /* Expression.swift */,
645DCD5232148C9EBBA49C81EE98B811 /* FailureMessage.swift */,
EB3B59640F48110F6231F58B6AE27385 /* Functional.swift */,
DA394C23E0F50D7AB43084AEEECD3928 /* HaveCount.swift */,
70CD71D4F71C6FE39643ACE3FAA592B7 /* mach_excServer.c */,
1A5ED0FE2DDB7F706A51A84704490DDF /* mach_excServer.h */,
D38C96CB1AD505F67140950283961B60 /* Match.swift */,
CDAA56BBDC077759855EBA43BAB4DB59 /* MatcherFunc.swift */,
6A002C82639D50399C7B02C2A1EFFD7C /* MatcherProtocols.swift */,
269EA3B74C54781D48228F88A09B1588 /* MatchError.swift */,
BAE40CDE04EBCCB0DC55BA21B366F322 /* Nimble.h */,
6DDE04433BF5B9481D9D0CCE7E753DA2 /* NimbleEnvironment.swift */,
5F3754173FF8E9CBEC2E308D5012714A /* NimbleXCTestHandler.swift */,
346FAEC9F6A1CCE10E6B3D49FF72F0B0 /* NMBExceptionCapture.h */,
F88189EA0E4777B0797F2AC02A28AF6B /* NMBExceptionCapture.m */,
060DA4D1C376F548E3EC3063CF8B1CE9 /* NMBExpectation.swift */,
B8C89D0C2A0D08E15A2FE69E0AE01928 /* NMBObjCMatcher.swift */,
7477932361CDCD38B1B04CE1B63AD18D /* NMBStringify.h */,
CCB54EB1E0A566EC504D137C4E6F1356 /* NMBStringify.m */,
F9B6DFC80E704FA6CB929B41B06D0DE3 /* PostNotification.swift */,
8B4FA37594EFCE0AD0B182DF433FDE3A /* Predicate.swift */,
BE804F0BBA31ACC6B910E4B2D3861E33 /* RaisesException.swift */,
B9C8769AEC150125AF36628009684D11 /* SatisfyAllOf.swift */,
4AB65BE30E7FD5ED1DFC2EFBB5BD3E83 /* SatisfyAnyOf.swift */,
9D1A42344D5A4B4E5C77C3935D81B1A0 /* SourceLocation.swift */,
E718A7632ED86169E87F94D4C8AB294A /* Stringers.swift */,
03CE435EC97649D129B2C43F6361BF60 /* ThrowAssertion.swift */,
F5492DF5368C200ADE00E14003AB99D0 /* ThrowError.swift */,
554E7B64AD6BC9E364F31885238E3DC8 /* ToSucceed.swift */,
F5A3679EEC7FF8A9666B2CDA4D02B470 /* XCTestObservationCenter+Register.m */,
3551344C737E27F926E5E16ED270B63A /* Support Files */,
);
name = Nimble;
path = Nimble;
sourceTree = "<group>";
};
3391204101C7B217BA6C5834B2FC36E5 /* Products */ = {
isa = PBXGroup;
children = (
4AD82D2DF1165B588B816694FB5709AD /* Celestial.framework */,
FE81147284B9A9152EA4B6D5FACBB2C8 /* ComposableDataSource.framework */,
B91B00F8BE943329D633234BD67AE0AC /* FBSnapshotTestCase.framework */,
5C4F31330DFA99D699E4BDC8C3573D73 /* FBSnapshotTestCase.framework */,
BAE263041362D074978BB3B577DF0A05 /* Nimble.framework */,
52C1B30CC4697E1933141720223103BC /* Nimble_Snapshots.framework */,
32300E3AFF64844F53C8C55CABB8B30D /* Pods_ComposableDataSource_Example.framework */,
96EC807D54B55BD3F7874E72A635E33A /* Pods_ComposableDataSource_Tests.framework */,
0D631E9908483F9525A6B3F36F16CC61 /* Quick.framework */,
);
name = Products;
sourceTree = "<group>";
};
3551344C737E27F926E5E16ED270B63A /* Support Files */ = {
isa = PBXGroup;
children = (
805AF55892B64FB3A5E63641DF00A5FE /* Nimble.modulemap */,
31B94EC16082778B8396C9B53ECB411E /* Nimble-dummy.m */,
95159AEEF81F5836EAA93DDF7D4A931E /* Nimble-Info.plist */,
964B08C6482C2B58DCF7DB4D6F937648 /* Nimble-prefix.pch */,
DCA8A27BF3C278FCF98A058DF0941605 /* Nimble-umbrella.h */,
CA1526E3049ABB2AF0B35B4A0A3B4B71 /* Nimble.debug.xcconfig */,
0DE78F0888374BD08D643DF3E7394E55 /* Nimble.release.xcconfig */,
);
name = "Support Files";
path = "../Target Support Files/Nimble";
sourceTree = "<group>";
};
3FC6C394FA322B0CC8526C6B693273C0 /* Nimble-Snapshots */ = {
isa = PBXGroup;
children = (
FF05B8320CD0F7A7B0F3F48579C5361E /* Core */,
8B441E4C28B15F8B7B6131DCBDC4529E /* Support Files */,
);
name = "Nimble-Snapshots";
path = "Nimble-Snapshots";
sourceTree = "<group>";
};
430B944F97033FC19B829D5C9D2703D0 /* Support Files */ = {
isa = PBXGroup;
children = (
265D19BACBA773DFD23CBAAD8706C033 /* Celestial.modulemap */,
729489A7BB91EB8ACEA17E379E3BCEAF /* Celestial-dummy.m */,
556CBA66FDC48FFA1B814F78EAF4FFFF /* Celestial-Info.plist */,
4EE4455B365176E394A2BA068B230DD6 /* Celestial-prefix.pch */,
1BAB1E3C63746871684FBEA1DD51EE0C /* Celestial-umbrella.h */,
D628F0933E169C29D7E8FC9FA153F03E /* Celestial.debug.xcconfig */,
394259B5BA3D78E51320695F6A95A919 /* Celestial.release.xcconfig */,
);
name = "Support Files";
path = "../Target Support Files/Celestial";
sourceTree = "<group>";
};
44DD9CD3ECE6ADDD76C9312B2017BDE8 /* providers */ = {
isa = PBXGroup;
children = (
D370D3317F290D1AC818D56295F34704 /* DataSourceProvider.swift */,
);
name = providers;
path = Classes/providers;
sourceTree = "<group>";
};
468264297BE6A7568076BF46485251DA /* Pods */ = {
isa = PBXGroup;
children = (
6486ABA3151635526962C53A633EA0EF /* Celestial */,
94844919F1F59E43A94CFE044F23BE65 /* FBSnapshotTestCase */,
C3EA4D4F21DD7348E0EBEFD93C4E7FE5 /* iOSSnapshotTestCase */,
276D116A1B63AD6097C621BADC0A1E78 /* Nimble */,
3FC6C394FA322B0CC8526C6B693273C0 /* Nimble-Snapshots */,
16C4E2BF8DFC4BD7056D47AD747BDED4 /* Quick */,
);
name = Pods;
sourceTree = "<group>";
};
4E743415AB4ACB52510B1303AE52B2CD /* Utility */ = {
isa = PBXGroup;
children = (
D2110142D95131AD5A61CC981EC04CB8 /* Constants.swift */,
C4A5A2BA19E100999321028A41201B12 /* Extensions.swift */,
CD9CCAF0FDBA9DA5EB3A9A95EE765BC0 /* Protocols+Declarations.swift */,
);
name = Utility;
path = Classes/Utility;
sourceTree = "<group>";
};
577E6B0487EE016283FB8BC6ED764A01 /* SwiftSupport */ = {
isa = PBXGroup;
children = (
1AFCC384B670E756F0FCB360EE863FC3 /* SwiftSupport.swift */,
);
name = SwiftSupport;
sourceTree = "<group>";
};
613C0A5388D9C5F1EB8F38B6CDB87720 /* Support Files */ = {
isa = PBXGroup;
children = (
9EB401281397F42F1A9286F7BC097826 /* ComposableDataSource.modulemap */,
41F6906FCE5DF8C4BBE26B316DDFF89A /* ComposableDataSource-dummy.m */,
9DBAF05326AD154E5505BB749FAECC14 /* ComposableDataSource-Info.plist */,
8581A9703C589E8F3A51743BA0427AF6 /* ComposableDataSource-prefix.pch */,
C22E2552D2B1AF15A6D8C19E46795E3B /* ComposableDataSource-umbrella.h */,
B8BBC81B2D76EF5F1371F12D7C9CFCBD /* ComposableDataSource.debug.xcconfig */,
ADAA42CC3F01982650B6D32C88C8D5C6 /* ComposableDataSource.release.xcconfig */,
);
name = "Support Files";
path = "Example/Pods/Target Support Files/ComposableDataSource";
sourceTree = "<group>";
};
6311C851E162513ACFD87473B0B63DA7 /* Targets Support Files */ = {
isa = PBXGroup;
children = (
9516D7E090353ED438288BC5A6F06BAB /* Pods-ComposableDataSource_Example */,
E41600F5D9CDAF044EF35B53FFBBCB84 /* Pods-ComposableDataSource_Tests */,
);
name = "Targets Support Files";
sourceTree = "<group>";
};
6486ABA3151635526962C53A633EA0EF /* Celestial */ = {
isa = PBXGroup;
children = (
CC13887B81C56FB2EA53F39748685D1D /* CachableAVPlayerItem.swift */,
745596B8A781D8389132AE07003D4683 /* Celestial.swift */,
773942E0D77900D61B0EB938B1FFDBBF /* DataLoadablePlayerItem.swift */,
56A9DC27C2AF2AED9516D4F6F70EF889 /* DebugLogger.swift */,
EAB8A0E23814478C1B48E33499DE0AFC /* DownloadTaskHandler.swift */,
5F472327FD2F41FD550890504275197F /* DownloadTaskManager.swift */,
DEFAFDCBF65246ACD545100623BDDB3F /* DownloadTaskRequest.swift */,
11ED593BFE2EB881187C865699563406 /* Extensions.swift */,
6874F066BBC9364E3EFE686F92566B9F /* FileStorageManager.swift */,
2ED361DB9559B10677FF43CCA8F3AA6A /* GenericDownloadModel.swift */,
B9AA9439956A9F91D7628F8C6C874B87 /* ImageCache.swift */,
CB1E8E7D4F00068247CF57BC03342DC2 /* MediaResourceLoader.swift */,
DB3C4913F11C770A2CDC0394C9516A6B /* MemoryCachedVideoData.swift */,
7E934B23F41878A48646936050102BCA /* MiscellaneousDeclarations.swift */,
361E55803A01AFE52E5E1FA7476BAEAB /* MultimediaCacheProtocols.swift */,
F743DE42860D1B10900D2FB40C146D7F /* URLImageView.swift */,
3F4DC85FEC6316A26AE2CC48132CD52C /* URLVideoPlayerView.swift */,
A83038CEDA65DE8424FE8F874DD658E5 /* Utility.swift */,
A382EA452DC1CC9649E4C2EA0CA85036 /* VideoCache.swift */,
978D06CC3526D9159C210D9C4D79DE79 /* VideoPlayerView.swift */,
430B944F97033FC19B829D5C9D2703D0 /* Support Files */,
);
name = Celestial;
path = Celestial;
sourceTree = "<group>";
};
6677D7A28B528E6F0C702630B3A7351B /* Pod */ = {
isa = PBXGroup;
children = (
F287544B403E264EE3AA6500F49C8E55 /* ComposableDataSource.podspec */,
6FCEDAD4122B8F3629A3C04A1B905AEE /* LICENSE */,
D56EF71E0F1797DE84E1BBB46786B0D6 /* README.md */,
);
name = Pod;
sourceTree = "<group>";
};
69369CFAC086B0BEE76317B68FC29745 /* Support Files */ = {
isa = PBXGroup;
children = (
C307F98080281468C3B76046A98168BA /* iOSSnapshotTestCase.modulemap */,
375C05332F434BA58F5FD0EDD6ACF68B /* iOSSnapshotTestCase-dummy.m */,
F61EEED78345F4910B5F4653685683FC /* iOSSnapshotTestCase-Info.plist */,
DB5B687616A3D46A0928D6B9C5D9F7E4 /* iOSSnapshotTestCase-prefix.pch */,
CBCEF6A068AFA1ACD101892E9B825C52 /* iOSSnapshotTestCase-umbrella.h */,
852CB1A476ED4CBAD100AE1CDB22B371 /* iOSSnapshotTestCase.debug.xcconfig */,