-
Notifications
You must be signed in to change notification settings - Fork 23
Expand file tree
/
Copy pathproject.pbxproj
More file actions
4416 lines (4399 loc) · 372 KB
/
project.pbxproj
File metadata and controls
4416 lines (4399 loc) · 372 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
// !$*UTF8*$!
{
archiveVersion = 1;
classes = {
};
objectVersion = 50;
objects = {
/* Begin PBXBuildFile section */
6001FA89272C3255000FDD6A /* CODistributedNotificationCenter.m in Sources */ = {isa = PBXBuildFile; fileRef = 60882F1F197E629F00484033 /* CODistributedNotificationCenter.m */; };
6002E21D197FD6B200AC9150 /* AppKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 60882F24197EA24900484033 /* AppKit.framework */; };
6002E21E197FD73A00AC9150 /* AppKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 60882F24197EA24900484033 /* AppKit.framework */; };
6002E280197FD90300AC9150 /* libSystem.dylib in Frameworks */ = {isa = PBXBuildFile; fileRef = 60F91ED6197D2CA2009F47D7 /* libSystem.dylib */; };
6002E281197FD90300AC9150 /* UIKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6083223819795D21008D9F9D /* UIKit.framework */; };
6002E282197FD90300AC9150 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 60B1D3F919791F8800ACAC9C /* Foundation.framework */; };
6002E283197FD90300AC9150 /* CoreGraphics.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6083223619795D18008D9F9D /* CoreGraphics.framework */; };
6002E284197FD90300AC9150 /* libsqlite3.dylib in Frameworks */ = {isa = PBXBuildFile; fileRef = 60B1D3FB19791F9400ACAC9C /* libsqlite3.dylib */; };
6002E286197FD90300AC9150 /* libCoreObject.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 60E08C6219792BEA00D1B7AD /* libCoreObject.a */; };
6002E290197FD91A00AC9150 /* main.m in Sources */ = {isa = PBXBuildFile; fileRef = 60C913AD165BBE9E00E0C5F4 /* main.m */; };
600F72BF1858A71200CB6AC5 /* COPersistentObjectContext.h in Headers */ = {isa = PBXBuildFile; fileRef = 600F72BD1858A71200CB6AC5 /* COPersistentObjectContext.h */; settings = {ATTRIBUTES = (Public, ); }; };
600F72C01858A71200CB6AC5 /* COPersistentObjectContext.m in Sources */ = {isa = PBXBuildFile; fileRef = 600F72BE1858A71200CB6AC5 /* COPersistentObjectContext.m */; };
601AF2E01D97E8350045B4DC /* COEditingContext+Debugging.m in Sources */ = {isa = PBXBuildFile; fileRef = 601AF2DF1D97E8350045B4DC /* COEditingContext+Debugging.m */; };
601AF2E11D97E8350045B4DC /* COEditingContext+Debugging.m in Sources */ = {isa = PBXBuildFile; fileRef = 601AF2DF1D97E8350045B4DC /* COEditingContext+Debugging.m */; };
601C1D45180C0F5300CED07E /* COObject+Private.h in Headers */ = {isa = PBXBuildFile; fileRef = 601C1D44180C0F5300CED07E /* COObject+Private.h */; settings = {ATTRIBUTES = (Public, ); }; };
601C1D4F180C115D00CED07E /* COObjectGraphContext+GarbageCollection.h in Headers */ = {isa = PBXBuildFile; fileRef = 601C1D4D180C115900CED07E /* COObjectGraphContext+GarbageCollection.h */; settings = {ATTRIBUTES = (Public, ); }; };
601C1D50180C115D00CED07E /* COObjectGraphContext+GarbageCollection.m in Sources */ = {isa = PBXBuildFile; fileRef = 601C1D4E180C115B00CED07E /* COObjectGraphContext+GarbageCollection.m */; };
601FD943188935E40002F957 /* COObjectGraphContext+Debugging.h in Headers */ = {isa = PBXBuildFile; fileRef = 66A00A18187DDB6A005CFE16 /* COObjectGraphContext+Debugging.h */; settings = {ATTRIBUTES = (Public, ); }; };
601FD94518893ED50002F957 /* COEditingContext+Debugging.h in Headers */ = {isa = PBXBuildFile; fileRef = 601FD94418893ED50002F957 /* COEditingContext+Debugging.h */; settings = {ATTRIBUTES = (Public, ); }; };
6025EA3A1B60E960007DD28B /* COSQLiteUtilities.h in Headers */ = {isa = PBXBuildFile; fileRef = 6025EA381B60E960007DD28B /* COSQLiteUtilities.h */; };
6025EA3B1B60E960007DD28B /* COSQLiteUtilities.h in Headers */ = {isa = PBXBuildFile; fileRef = 6025EA381B60E960007DD28B /* COSQLiteUtilities.h */; };
6025EA3C1B60E960007DD28B /* COSQLiteUtilities.m in Sources */ = {isa = PBXBuildFile; fileRef = 6025EA391B60E960007DD28B /* COSQLiteUtilities.m */; };
6025EA3D1B60E960007DD28B /* COSQLiteUtilities.m in Sources */ = {isa = PBXBuildFile; fileRef = 6025EA391B60E960007DD28B /* COSQLiteUtilities.m */; };
602837AF1A334A2100D7B0D1 /* TestSchemaMigration.m in Sources */ = {isa = PBXBuildFile; fileRef = 602837AE1A334A2100D7B0D1 /* TestSchemaMigration.m */; };
602837B01A334A2100D7B0D1 /* TestSchemaMigration.m in Sources */ = {isa = PBXBuildFile; fileRef = 602837AE1A334A2100D7B0D1 /* TestSchemaMigration.m */; };
6028484E1BBAB5820094CDB0 /* Default-568h@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 6028484D1BBAB5820094CDB0 /* Default-568h@2x.png */; };
603447901C5008A6008A1B9D /* TestHistoryNavigationPerformance.m in Sources */ = {isa = PBXBuildFile; fileRef = 6034478F1C5008A6008A1B9D /* TestHistoryNavigationPerformance.m */; };
6036436C1B3800B400DC685B /* COHistoryCompaction.h in Headers */ = {isa = PBXBuildFile; fileRef = 6036436A1B3800B400DC685B /* COHistoryCompaction.h */; settings = {ATTRIBUTES = (Public, ); }; };
6036436D1B3800B400DC685B /* COHistoryCompaction.h in Headers */ = {isa = PBXBuildFile; fileRef = 6036436A1B3800B400DC685B /* COHistoryCompaction.h */; settings = {ATTRIBUTES = (Public, ); }; };
6036436E1B3800B400DC685B /* COHistoryCompaction.m in Sources */ = {isa = PBXBuildFile; fileRef = 6036436B1B3800B400DC685B /* COHistoryCompaction.m */; };
6036436F1B3800B400DC685B /* COHistoryCompaction.m in Sources */ = {isa = PBXBuildFile; fileRef = 6036436B1B3800B400DC685B /* COHistoryCompaction.m */; };
603643841B394E8800DC685B /* COUndoTrackHistoryCompaction.h in Headers */ = {isa = PBXBuildFile; fileRef = 603643821B394E8800DC685B /* COUndoTrackHistoryCompaction.h */; settings = {ATTRIBUTES = (Public, ); }; };
603643851B394E8800DC685B /* COUndoTrackHistoryCompaction.h in Headers */ = {isa = PBXBuildFile; fileRef = 603643821B394E8800DC685B /* COUndoTrackHistoryCompaction.h */; settings = {ATTRIBUTES = (Public, ); }; };
603643861B394E8800DC685B /* COUndoTrackHistoryCompaction.m in Sources */ = {isa = PBXBuildFile; fileRef = 603643831B394E8800DC685B /* COUndoTrackHistoryCompaction.m */; };
603643871B394E8800DC685B /* COUndoTrackHistoryCompaction.m in Sources */ = {isa = PBXBuildFile; fileRef = 603643831B394E8800DC685B /* COUndoTrackHistoryCompaction.m */; };
603643941B395A7100DC685B /* COBasicHistoryCompaction.h in Headers */ = {isa = PBXBuildFile; fileRef = 603643921B395A7100DC685B /* COBasicHistoryCompaction.h */; };
603643951B395A7100DC685B /* COBasicHistoryCompaction.h in Headers */ = {isa = PBXBuildFile; fileRef = 603643921B395A7100DC685B /* COBasicHistoryCompaction.h */; };
603643961B395A7100DC685B /* COBasicHistoryCompaction.m in Sources */ = {isa = PBXBuildFile; fileRef = 603643931B395A7100DC685B /* COBasicHistoryCompaction.m */; };
603643971B395A7100DC685B /* COBasicHistoryCompaction.m in Sources */ = {isa = PBXBuildFile; fileRef = 603643931B395A7100DC685B /* COBasicHistoryCompaction.m */; };
6036439C1B3965E900DC685B /* TestUndoTrackHistoryCompaction.m in Sources */ = {isa = PBXBuildFile; fileRef = 6036439B1B3965E900DC685B /* TestUndoTrackHistoryCompaction.m */; };
6036439D1B3965E900DC685B /* TestUndoTrackHistoryCompaction.m in Sources */ = {isa = PBXBuildFile; fileRef = 6036439B1B3965E900DC685B /* TestUndoTrackHistoryCompaction.m */; };
6043D4D31757B4F9002103CC /* COCommitDescriptor.h in Headers */ = {isa = PBXBuildFile; fileRef = 6043D4C717575D79002103CC /* COCommitDescriptor.h */; settings = {ATTRIBUTES = (Public, ); }; };
6043D4D41757B4FB002103CC /* COCommitDescriptor.m in Sources */ = {isa = PBXBuildFile; fileRef = 6043D4C817575D7A002103CC /* COCommitDescriptor.m */; };
6048468818B6C245006E4EDC /* UnitKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6048465518B6C03E006E4EDC /* UnitKit.framework */; };
6061B8311C524DF100813C18 /* Person.m in Sources */ = {isa = PBXBuildFile; fileRef = 6061B8301C524DF100813C18 /* Person.m */; };
6061B8321C524DF100813C18 /* Person.m in Sources */ = {isa = PBXBuildFile; fileRef = 6061B8301C524DF100813C18 /* Person.m */; };
6061B8331C524DF100813C18 /* Person.m in Sources */ = {isa = PBXBuildFile; fileRef = 6061B8301C524DF100813C18 /* Person.m */; };
6061B8C81C57E89700813C18 /* libSystem.dylib in Frameworks */ = {isa = PBXBuildFile; fileRef = 60F91ED6197D2CA2009F47D7 /* libSystem.dylib */; };
6061B8C91C57E89700813C18 /* UIKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6083223819795D21008D9F9D /* UIKit.framework */; };
6061B8CA1C57E89700813C18 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 60B1D3F919791F8800ACAC9C /* Foundation.framework */; };
6061B8CB1C57E89700813C18 /* CoreGraphics.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6083223619795D18008D9F9D /* CoreGraphics.framework */; };
6061B8CC1C57E89700813C18 /* libsqlite3.dylib in Frameworks */ = {isa = PBXBuildFile; fileRef = 60B1D3FB19791F9400ACAC9C /* libsqlite3.dylib */; };
6061B8CD1C57E89700813C18 /* libUnitKit.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 6048465F18B6C03E006E4EDC /* libUnitKit.a */; };
6061B8CE1C57E89700813C18 /* libCoreObject.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 60E08C6219792BEA00D1B7AD /* libCoreObject.a */; };
6061B8D11C57E89700813C18 /* Default-568h@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 6028484D1BBAB5820094CDB0 /* Default-568h@2x.png */; };
6061B8D21C57E89700813C18 /* 1b.json in Resources */ = {isa = PBXBuildFile; fileRef = 664E075D18C9592700CBFF74 /* 1b.json */; };
6061B8D31C57E89700813C18 /* 1a.json in Resources */ = {isa = PBXBuildFile; fileRef = 664E075C18C9592700CBFF74 /* 1a.json */; };
6061B8E31C57E91300813C18 /* TestSQLiteStorePerformance.m in Sources */ = {isa = PBXBuildFile; fileRef = 66550C0617D51D9000327657 /* TestSQLiteStorePerformance.m */; };
6061B8E41C57E91300813C18 /* main.m in Sources */ = {isa = PBXBuildFile; fileRef = 66550BF617D51CB100327657 /* main.m */; };
6061B8E51C57E91300813C18 /* TestObjectGraphPerformance.m in Sources */ = {isa = PBXBuildFile; fileRef = 66550BE817D51C6100327657 /* TestObjectGraphPerformance.m */; };
6061B8E61C57E91300813C18 /* TestBinaryReadWritePerformance.m in Sources */ = {isa = PBXBuildFile; fileRef = 66550C0817D51E8F00327657 /* TestBinaryReadWritePerformance.m */; };
6061B8E71C57E91300813C18 /* BenchmarkItem.m in Sources */ = {isa = PBXBuildFile; fileRef = 66D7980817ED18A200B07A2A /* BenchmarkItem.m */; };
6061B8E81C57E91300813C18 /* TestMultiplePersistentRootPerformance.m in Sources */ = {isa = PBXBuildFile; fileRef = 66568C91189598BB0075FD9A /* TestMultiplePersistentRootPerformance.m */; };
6061B8E91C57E91300813C18 /* BenchmarkCommon.m in Sources */ = {isa = PBXBuildFile; fileRef = 66E6824018B972C4003294EB /* BenchmarkCommon.m */; };
6061B8EA1C57E91300813C18 /* TestObjectPerformance.m in Sources */ = {isa = PBXBuildFile; fileRef = 66E6826018BA9B5D003294EB /* TestObjectPerformance.m */; };
6061B8EB1C57E91300813C18 /* TestAttributedStringDiffPerformance.m in Sources */ = {isa = PBXBuildFile; fileRef = 66488DEF18DA3F6D009F4C55 /* TestAttributedStringDiffPerformance.m */; };
6061B8EC1C57E91300813C18 /* TestHistoryNavigationPerformance.m in Sources */ = {isa = PBXBuildFile; fileRef = 6034478F1C5008A6008A1B9D /* TestHistoryNavigationPerformance.m */; };
6061B8ED1C57E91A00813C18 /* TestSynchronizerPerformance.m in Sources */ = {isa = PBXBuildFile; fileRef = 664F279C188E683400DF36FC /* TestSynchronizerPerformance.m */; };
6061B8EE1C57E92100813C18 /* OutlineItem.m in Sources */ = {isa = PBXBuildFile; fileRef = 66E451D517CC461F00205679 /* OutlineItem.m */; };
6061B8EF1C57E92A00813C18 /* Tag.m in Sources */ = {isa = PBXBuildFile; fileRef = 66E451D817CC565100205679 /* Tag.m */; };
6061B8F01C57E93000813C18 /* Person.m in Sources */ = {isa = PBXBuildFile; fileRef = 6061B8301C524DF100813C18 /* Person.m */; };
6061B8F11C57E9F300813C18 /* TestCommon.m in Sources */ = {isa = PBXBuildFile; fileRef = 609C00591704C24C00D01AAB /* TestCommon.m */; };
6061B8F21C57EA0A00813C18 /* TestSynchronizerCommon.m in Sources */ = {isa = PBXBuildFile; fileRef = 664F2799188E2DC900DF36FC /* TestSynchronizerCommon.m */; };
6061B8F31C57EA1700813C18 /* OrderedGroupNoOpposite.m in Sources */ = {isa = PBXBuildFile; fileRef = 66101154184D89A4001A3E24 /* OrderedGroupNoOpposite.m */; };
6061B8F41C57EA2300813C18 /* COSynchronizerFakeMessageTransport.m in Sources */ = {isa = PBXBuildFile; fileRef = 66E40D491836D08D00E5B4A7 /* COSynchronizerFakeMessageTransport.m */; };
6061B8F51C57EA6A00813C18 /* TestAttributedStringCommon.m in Sources */ = {isa = PBXBuildFile; fileRef = 660EE3B1186E3DA600E8C22C /* TestAttributedStringCommon.m */; };
606E3DC11787A07E00ED42DA /* COSerialization.h in Headers */ = {isa = PBXBuildFile; fileRef = 606E3DBF1787A07E00ED42DA /* COSerialization.h */; settings = {ATTRIBUTES = (Public, ); }; };
606E3DC21787A07E00ED42DA /* COSerialization.m in Sources */ = {isa = PBXBuildFile; fileRef = 606E3DC01787A07E00ED42DA /* COSerialization.m */; };
607335B418AB96A6008A02DC /* COSmartGroup.h in Headers */ = {isa = PBXBuildFile; fileRef = 607335B218AB96A6008A02DC /* COSmartGroup.h */; settings = {ATTRIBUTES = (Public, ); }; };
607335B518AB96A6008A02DC /* COSmartGroup.m in Sources */ = {isa = PBXBuildFile; fileRef = 607335B318AB96A6008A02DC /* COSmartGroup.m */; };
6076D0FF1A31E4110023C97A /* COSchemaMigration.h in Headers */ = {isa = PBXBuildFile; fileRef = 6076D0FD1A31E4110023C97A /* COSchemaMigration.h */; settings = {ATTRIBUTES = (Public, ); }; };
6076D1001A31E4110023C97A /* COSchemaMigration.h in Headers */ = {isa = PBXBuildFile; fileRef = 6076D0FD1A31E4110023C97A /* COSchemaMigration.h */; settings = {ATTRIBUTES = (Public, ); }; };
6076D1011A31E4110023C97A /* COSchemaMigration.m in Sources */ = {isa = PBXBuildFile; fileRef = 6076D0FE1A31E4110023C97A /* COSchemaMigration.m */; };
6076D1021A31E4110023C97A /* COSchemaMigration.m in Sources */ = {isa = PBXBuildFile; fileRef = 6076D0FE1A31E4110023C97A /* COSchemaMigration.m */; };
607EB349178881E60024B34D /* CODictionary.h in Headers */ = {isa = PBXBuildFile; fileRef = 607EB347178881E60024B34D /* CODictionary.h */; settings = {ATTRIBUTES = (Public, ); }; };
607EB34A178881E60024B34D /* CODictionary.m in Sources */ = {isa = PBXBuildFile; fileRef = 607EB348178881E60024B34D /* CODictionary.m */; };
60811AF41D7193DA00D4DEEA /* Commits in Resources */ = {isa = PBXBuildFile; fileRef = 60811AF21D7193DA00D4DEEA /* Commits */; };
6083222F19793D27008D9F9D /* COClassToString.m in Sources */ = {isa = PBXBuildFile; fileRef = 60C81D0A195DA82200AEEC68 /* COClassToString.m */; };
6083223019793D2D008D9F9D /* COClassToString.h in Headers */ = {isa = PBXBuildFile; fileRef = 60C81D18195DA83F00AEEC68 /* COClassToString.h */; settings = {ATTRIBUTES = (Public, ); }; };
6083223719795D18008D9F9D /* CoreGraphics.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6083223619795D18008D9F9D /* CoreGraphics.framework */; };
6083223919795D21008D9F9D /* UIKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6083223819795D21008D9F9D /* UIKit.framework */; };
6083223D19797DE2008D9F9D /* COCocoaTouchCompatibility.h in Headers */ = {isa = PBXBuildFile; fileRef = 6083223C19797DE2008D9F9D /* COCocoaTouchCompatibility.h */; settings = {ATTRIBUTES = (Public, ); }; };
6083223E19797DE2008D9F9D /* COCocoaTouchCompatibility.h in Headers */ = {isa = PBXBuildFile; fileRef = 6083223C19797DE2008D9F9D /* COCocoaTouchCompatibility.h */; settings = {ATTRIBUTES = (Public, ); }; };
608628961C12009A00B46119 /* COCommandDeletePersistentRoot.h in Headers */ = {isa = PBXBuildFile; fileRef = 663CE2B117C09DE700E729F5 /* COCommandDeletePersistentRoot.h */; settings = {ATTRIBUTES = (Public, ); }; };
608628A11C12009A00B46119 /* COCommandDeletePersistentRoot.h in Headers */ = {isa = PBXBuildFile; fileRef = 663CE2B117C09DE700E729F5 /* COCommandDeletePersistentRoot.h */; settings = {ATTRIBUTES = (Public, ); }; };
60882F17197D509B00484033 /* COAttributedStringDiff.h in Headers */ = {isa = PBXBuildFile; fileRef = 66D3FCD81860EB61009BDF50 /* COAttributedStringDiff.h */; settings = {ATTRIBUTES = (Public, ); }; };
60882F18197D50B400484033 /* COColorToHTMLString.h in Headers */ = {isa = PBXBuildFile; fileRef = 6633F10A185515F1009CE6F7 /* COColorToHTMLString.h */; settings = {ATTRIBUTES = (Public, ); }; };
60882F19197D50B700484033 /* COColorToHTMLString.m in Sources */ = {isa = PBXBuildFile; fileRef = 6633F10B185515F1009CE6F7 /* COColorToHTMLString.m */; };
60882F1A197D50BD00484033 /* COObjectToArchivedData.h in Headers */ = {isa = PBXBuildFile; fileRef = 608D25F4192B475200BB7461 /* COObjectToArchivedData.h */; settings = {ATTRIBUTES = (Public, ); }; };
60882F1B197D50C000484033 /* COObjectToArchivedData.m in Sources */ = {isa = PBXBuildFile; fileRef = 608D25F5192B475200BB7461 /* COObjectToArchivedData.m */; };
60882F1C197D50CA00484033 /* CORectToString.m in Sources */ = {isa = PBXBuildFile; fileRef = 6633F10D185515F1009CE6F7 /* CORectToString.m */; };
60882F1D197D50CE00484033 /* CORectToString.h in Headers */ = {isa = PBXBuildFile; fileRef = 6633F10C185515F1009CE6F7 /* CORectToString.h */; settings = {ATTRIBUTES = (Public, ); }; };
60882F20197E629F00484033 /* CODistributedNotificationCenter.h in Headers */ = {isa = PBXBuildFile; fileRef = 60882F1E197E629F00484033 /* CODistributedNotificationCenter.h */; settings = {ATTRIBUTES = (Public, ); }; };
60882F21197E629F00484033 /* CODistributedNotificationCenter.m in Sources */ = {isa = PBXBuildFile; fileRef = 60882F1F197E629F00484033 /* CODistributedNotificationCenter.m */; };
60882F22197E62FC00484033 /* CODistributedNotificationCenter.h in Headers */ = {isa = PBXBuildFile; fileRef = 60882F1E197E629F00484033 /* CODistributedNotificationCenter.h */; settings = {ATTRIBUTES = (Public, ); }; };
60882F25197EA24900484033 /* AppKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 60882F24197EA24900484033 /* AppKit.framework */; };
60882F27197EA25600484033 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 60882F26197EA25600484033 /* Foundation.framework */; };
60882F29197EA26900484033 /* libsqlite3.dylib in Frameworks */ = {isa = PBXBuildFile; fileRef = 60882F28197EA26900484033 /* libsqlite3.dylib */; };
60882F2D197EA3F400484033 /* EtoileFoundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 60FB087D13C3066300C2AB94 /* EtoileFoundation.framework */; };
60882F2E197EA3F700484033 /* EtoileFoundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 60FB087D13C3066300C2AB94 /* EtoileFoundation.framework */; };
60882F2F197FD06300484033 /* CoreObject.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6686BDAC12592BDA0065DE1A /* CoreObject.framework */; };
60882F30197FD06800484033 /* EtoileFoundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 60FB087D13C3066300C2AB94 /* EtoileFoundation.framework */; };
608B3F3F19FF045400304809 /* COMetamodel.h in Headers */ = {isa = PBXBuildFile; fileRef = 608B3F3D19FF045400304809 /* COMetamodel.h */; settings = {ATTRIBUTES = (Public, ); }; };
608B3F4019FF045400304809 /* COMetamodel.h in Headers */ = {isa = PBXBuildFile; fileRef = 608B3F3D19FF045400304809 /* COMetamodel.h */; settings = {ATTRIBUTES = (Public, ); }; };
608B3F4119FF045400304809 /* COMetamodel.m in Sources */ = {isa = PBXBuildFile; fileRef = 608B3F3E19FF045400304809 /* COMetamodel.m */; };
608B3F4219FF045400304809 /* COMetamodel.m in Sources */ = {isa = PBXBuildFile; fileRef = 608B3F3E19FF045400304809 /* COMetamodel.m */; };
608D25F6192B475200BB7461 /* COObjectToArchivedData.h in Headers */ = {isa = PBXBuildFile; fileRef = 608D25F4192B475200BB7461 /* COObjectToArchivedData.h */; settings = {ATTRIBUTES = (Public, ); }; };
608D25F7192B475200BB7461 /* COObjectToArchivedData.m in Sources */ = {isa = PBXBuildFile; fileRef = 608D25F5192B475200BB7461 /* COObjectToArchivedData.m */; };
608F2C8F1B4D17F3007AED2E /* COUndoTrackStore+Private.h in Headers */ = {isa = PBXBuildFile; fileRef = 608F2C8E1B4D17F3007AED2E /* COUndoTrackStore+Private.h */; settings = {ATTRIBUTES = (Public, ); }; };
608F2C901B4D17F3007AED2E /* COUndoTrackStore+Private.h in Headers */ = {isa = PBXBuildFile; fileRef = 608F2C8E1B4D17F3007AED2E /* COUndoTrackStore+Private.h */; settings = {ATTRIBUTES = (Public, ); }; };
609C00651704C24C00D01AAB /* main.m in Sources */ = {isa = PBXBuildFile; fileRef = 609C00541704C24C00D01AAB /* main.m */; };
609C00801704C2BA00D01AAB /* CORevision.h in Headers */ = {isa = PBXBuildFile; fileRef = 609C00781704C2BA00D01AAB /* CORevision.h */; settings = {ATTRIBUTES = (Public, ); }; };
609C00811704C2BA00D01AAB /* CORevision.m in Sources */ = {isa = PBXBuildFile; fileRef = 609C00791704C2BA00D01AAB /* CORevision.m */; };
609C00941704C3DA00D01AAB /* COEditingContext.h in Headers */ = {isa = PBXBuildFile; fileRef = 609C00881704C3DA00D01AAB /* COEditingContext.h */; settings = {ATTRIBUTES = (Public, ); }; };
609C00951704C3DA00D01AAB /* COEditingContext.m in Sources */ = {isa = PBXBuildFile; fileRef = 609C00891704C3DA00D01AAB /* COEditingContext.m */; };
609C00981704C3DA00D01AAB /* COObject.h in Headers */ = {isa = PBXBuildFile; fileRef = 609C008C1704C3DA00D01AAB /* COObject.h */; settings = {ATTRIBUTES = (Public, ); }; };
609C00991704C3DA00D01AAB /* COObject.m in Sources */ = {isa = PBXBuildFile; fileRef = 609C008D1704C3DA00D01AAB /* COObject.m */; };
609C009A1704C3DA00D01AAB /* COPersistentRoot.h in Headers */ = {isa = PBXBuildFile; fileRef = 609C008E1704C3DA00D01AAB /* COPersistentRoot.h */; settings = {ATTRIBUTES = (Public, ); }; };
609C009B1704C3DA00D01AAB /* COPersistentRoot.m in Sources */ = {isa = PBXBuildFile; fileRef = 609C008F1704C3DA00D01AAB /* COPersistentRoot.m */; };
609C00AC1704C3EF00D01AAB /* COBookmark.h in Headers */ = {isa = PBXBuildFile; fileRef = 609C00A01704C3EF00D01AAB /* COBookmark.h */; settings = {ATTRIBUTES = (Public, ); }; };
609C00AD1704C3EF00D01AAB /* COBookmark.m in Sources */ = {isa = PBXBuildFile; fileRef = 609C00A11704C3EF00D01AAB /* COBookmark.m */; };
609C00AE1704C3EF00D01AAB /* COCollection.h in Headers */ = {isa = PBXBuildFile; fileRef = 609C00A21704C3EF00D01AAB /* COCollection.h */; settings = {ATTRIBUTES = (Public, ); }; };
609C00AF1704C3EF00D01AAB /* COCollection.m in Sources */ = {isa = PBXBuildFile; fileRef = 609C00A31704C3EF00D01AAB /* COCollection.m */; };
609C00B01704C3EF00D01AAB /* COContainer.h in Headers */ = {isa = PBXBuildFile; fileRef = 609C00A41704C3EF00D01AAB /* COContainer.h */; settings = {ATTRIBUTES = (Public, ); }; };
609C00B11704C3EF00D01AAB /* COContainer.m in Sources */ = {isa = PBXBuildFile; fileRef = 609C00A51704C3EF00D01AAB /* COContainer.m */; };
609C00B21704C3EF00D01AAB /* COGroup.h in Headers */ = {isa = PBXBuildFile; fileRef = 609C00A61704C3EF00D01AAB /* COGroup.h */; settings = {ATTRIBUTES = (Public, ); }; };
609C00B31704C3EF00D01AAB /* COGroup.m in Sources */ = {isa = PBXBuildFile; fileRef = 609C00A71704C3EF00D01AAB /* COGroup.m */; };
609C00B41704C3EF00D01AAB /* COLibrary.h in Headers */ = {isa = PBXBuildFile; fileRef = 609C00A81704C3EF00D01AAB /* COLibrary.h */; settings = {ATTRIBUTES = (Public, ); }; };
609C00B51704C3EF00D01AAB /* COLibrary.m in Sources */ = {isa = PBXBuildFile; fileRef = 609C00A91704C3EF00D01AAB /* COLibrary.m */; };
609C00B61704C3EF00D01AAB /* COTag.h in Headers */ = {isa = PBXBuildFile; fileRef = 609C00AA1704C3EF00D01AAB /* COTag.h */; settings = {ATTRIBUTES = (Public, ); }; };
609C00B71704C3EF00D01AAB /* COTag.m in Sources */ = {isa = PBXBuildFile; fileRef = 609C00AB1704C3EF00D01AAB /* COTag.m */; };
609C00C01704C3FF00D01AAB /* COBranch.h in Headers */ = {isa = PBXBuildFile; fileRef = 609C00B81704C3FF00D01AAB /* COBranch.h */; settings = {ATTRIBUTES = (Public, ); }; };
609C00C11704C3FF00D01AAB /* COBranch.m in Sources */ = {isa = PBXBuildFile; fileRef = 609C00B91704C3FF00D01AAB /* COBranch.m */; };
609C00E81704C42200D01AAB /* COError.h in Headers */ = {isa = PBXBuildFile; fileRef = 609C00E21704C42200D01AAB /* COError.h */; settings = {ATTRIBUTES = (Public, ); }; };
609C00E91704C42200D01AAB /* COError.m in Sources */ = {isa = PBXBuildFile; fileRef = 609C00E31704C42200D01AAB /* COError.m */; };
609CB4BF1A5D8380003E8052 /* COModelElementMove.h in Headers */ = {isa = PBXBuildFile; fileRef = 609CB4BD1A5D8380003E8052 /* COModelElementMove.h */; settings = {ATTRIBUTES = (Public, ); }; };
609CB4C01A5D8380003E8052 /* COModelElementMove.h in Headers */ = {isa = PBXBuildFile; fileRef = 609CB4BD1A5D8380003E8052 /* COModelElementMove.h */; settings = {ATTRIBUTES = (Public, ); }; };
609CB4C11A5D8380003E8052 /* COModelElementMove.m in Sources */ = {isa = PBXBuildFile; fileRef = 609CB4BE1A5D8380003E8052 /* COModelElementMove.m */; };
609CB4C21A5D8380003E8052 /* COModelElementMove.m in Sources */ = {isa = PBXBuildFile; fileRef = 609CB4BE1A5D8380003E8052 /* COModelElementMove.m */; };
609CB4CF1A5E9384003E8052 /* COTopologicalSort.h in Headers */ = {isa = PBXBuildFile; fileRef = 609CB4CD1A5E9384003E8052 /* COTopologicalSort.h */; };
609CB4D01A5E9384003E8052 /* COTopologicalSort.h in Headers */ = {isa = PBXBuildFile; fileRef = 609CB4CD1A5E9384003E8052 /* COTopologicalSort.h */; };
609CB4D11A5E9384003E8052 /* COTopologicalSort.m in Sources */ = {isa = PBXBuildFile; fileRef = 609CB4CE1A5E9384003E8052 /* COTopologicalSort.m */; };
609CB4D21A5E9384003E8052 /* COTopologicalSort.m in Sources */ = {isa = PBXBuildFile; fileRef = 609CB4CE1A5E9384003E8052 /* COTopologicalSort.m */; };
60AA7EB11A641FCD00897498 /* COSchemaMigrationDriver.h in Headers */ = {isa = PBXBuildFile; fileRef = 60FA55DE1A447A8600A2D8A7 /* COSchemaMigrationDriver.h */; settings = {ATTRIBUTES = (Public, ); }; };
60AA7EBC1A641FDE00897498 /* COSchemaMigrationDriver.m in Sources */ = {isa = PBXBuildFile; fileRef = 60FA55DF1A447A8600A2D8A7 /* COSchemaMigrationDriver.m */; };
60AD2F521B0A5BB000A9F473 /* TestPrimitiveCollection.m in Sources */ = {isa = PBXBuildFile; fileRef = 60AD2F511B0A5BB000A9F473 /* TestPrimitiveCollection.m */; };
60AD2F531B0A5BB000A9F473 /* TestPrimitiveCollection.m in Sources */ = {isa = PBXBuildFile; fileRef = 60AD2F511B0A5BB000A9F473 /* TestPrimitiveCollection.m */; };
60B141711D9D66C100552FA0 /* Commits in Resources */ = {isa = PBXBuildFile; fileRef = 60811AF21D7193DA00D4DEEA /* Commits */; };
60B1568D19B860C8006D5EEF /* COUndoTrackStore.h in Headers */ = {isa = PBXBuildFile; fileRef = 663CE29317C07ED800E729F5 /* COUndoTrackStore.h */; settings = {ATTRIBUTES = (Public, ); }; };
60B1568E19B861BF006D5EEF /* COEditingContext+Debugging.h in Headers */ = {isa = PBXBuildFile; fileRef = 601FD94418893ED50002F957 /* COEditingContext+Debugging.h */; settings = {ATTRIBUTES = (Public, ); }; };
60B1568F19B861D3006D5EEF /* COObjectGraphContext+Debugging.h in Headers */ = {isa = PBXBuildFile; fileRef = 66A00A18187DDB6A005CFE16 /* COObjectGraphContext+Debugging.h */; settings = {ATTRIBUTES = (Public, ); }; };
60B58E681B0BF1CD00A87D5F /* COCrossPersistentRootDeadRelationshipCache.h in Headers */ = {isa = PBXBuildFile; fileRef = 60B58E661B0BF1CD00A87D5F /* COCrossPersistentRootDeadRelationshipCache.h */; };
60B58E691B0BF1CD00A87D5F /* COCrossPersistentRootDeadRelationshipCache.h in Headers */ = {isa = PBXBuildFile; fileRef = 60B58E661B0BF1CD00A87D5F /* COCrossPersistentRootDeadRelationshipCache.h */; };
60B58E6A1B0BF1CD00A87D5F /* COCrossPersistentRootDeadRelationshipCache.m in Sources */ = {isa = PBXBuildFile; fileRef = 60B58E671B0BF1CD00A87D5F /* COCrossPersistentRootDeadRelationshipCache.m */; };
60B58E6B1B0BF1CD00A87D5F /* COCrossPersistentRootDeadRelationshipCache.m in Sources */ = {isa = PBXBuildFile; fileRef = 60B58E671B0BF1CD00A87D5F /* COCrossPersistentRootDeadRelationshipCache.m */; };
60B84C081A6E6F5F00418128 /* COTrackViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = 60B84C061A6E6F5F00418128 /* COTrackViewController.h */; settings = {ATTRIBUTES = (Public, ); }; };
60B84C091A6E6F5F00418128 /* COTrackViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 60B84C071A6E6F5F00418128 /* COTrackViewController.m */; };
60C81D0B195DA82200AEEC68 /* COClassToString.m in Sources */ = {isa = PBXBuildFile; fileRef = 60C81D0A195DA82200AEEC68 /* COClassToString.m */; };
60C81D19195DA83F00AEEC68 /* COClassToString.h in Headers */ = {isa = PBXBuildFile; fileRef = 60C81D18195DA83F00AEEC68 /* COClassToString.h */; settings = {ATTRIBUTES = (Public, ); }; };
60C913C4165BBF2B00E0C5F4 /* main.m in Sources */ = {isa = PBXBuildFile; fileRef = 60C913AD165BBE9E00E0C5F4 /* main.m */; };
60C913C6165BBF5200E0C5F4 /* CoreObject.h in Headers */ = {isa = PBXBuildFile; fileRef = 60C913C5165BBF5000E0C5F4 /* CoreObject.h */; settings = {ATTRIBUTES = (Public, ); }; };
60CB08151A05075700C25B80 /* ObjectWithTransientState.m in Sources */ = {isa = PBXBuildFile; fileRef = 60CB08141A05075700C25B80 /* ObjectWithTransientState.m */; };
60CB08201A05075F00C25B80 /* ObjectWithTransientState.m in Sources */ = {isa = PBXBuildFile; fileRef = 60CB08141A05075700C25B80 /* ObjectWithTransientState.m */; };
60DA51581B4FBD9E00E51D86 /* COURLToString.h in Headers */ = {isa = PBXBuildFile; fileRef = 60DA51561B4FBD9E00E51D86 /* COURLToString.h */; settings = {ATTRIBUTES = (Public, ); }; };
60DA51591B4FBD9E00E51D86 /* COURLToString.h in Headers */ = {isa = PBXBuildFile; fileRef = 60DA51561B4FBD9E00E51D86 /* COURLToString.h */; settings = {ATTRIBUTES = (Public, ); }; };
60DA515A1B4FBD9E00E51D86 /* COURLToString.m in Sources */ = {isa = PBXBuildFile; fileRef = 60DA51571B4FBD9E00E51D86 /* COURLToString.m */; };
60DA515B1B4FBD9E00E51D86 /* COURLToString.m in Sources */ = {isa = PBXBuildFile; fileRef = 60DA51571B4FBD9E00E51D86 /* COURLToString.m */; };
60DBD0A91A822AEE009F3935 /* COJSONSeralization.m in Sources */ = {isa = PBXBuildFile; fileRef = 60DBD0A71A822AEE009F3935 /* COJSONSeralization.m */; };
60DBD0AA1A822AEE009F3935 /* COJSONSeralization.m in Sources */ = {isa = PBXBuildFile; fileRef = 60DBD0A71A822AEE009F3935 /* COJSONSeralization.m */; };
60DBD0AB1A822AEE009F3935 /* COJSONSerialization.h in Headers */ = {isa = PBXBuildFile; fileRef = 60DBD0A81A822AEE009F3935 /* COJSONSerialization.h */; settings = {ATTRIBUTES = (Public, ); }; };
60DBD0AC1A822AEE009F3935 /* COJSONSerialization.h in Headers */ = {isa = PBXBuildFile; fileRef = 60DBD0A81A822AEE009F3935 /* COJSONSerialization.h */; settings = {ATTRIBUTES = (Public, ); }; };
60E08C8119792EEF00D1B7AD /* libEtoileFoundation.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 6048464818B6C03E006E4EDC /* libEtoileFoundation.a */; };
60E08C8219792EEF00D1B7AD /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 60B1D3F919791F8800ACAC9C /* Foundation.framework */; };
60E08C8719792F4600D1B7AD /* COCommandDeletePersistentRoot.m in Sources */ = {isa = PBXBuildFile; fileRef = 663CE2B217C09DE700E729F5 /* COCommandDeletePersistentRoot.m */; };
60E08C8819792F4600D1B7AD /* COSynchronizerResponseToClientForSentRevisionsMessage.m in Sources */ = {isa = PBXBuildFile; fileRef = 660179CF182AFA6B006E7D7B /* COSynchronizerResponseToClientForSentRevisionsMessage.m */; };
60E08C8C19792F4600D1B7AD /* FMDatabase.m in Sources */ = {isa = PBXBuildFile; fileRef = 791B4E6C1299C90900CCF472 /* FMDatabase.m */; };
60E08C8D19792F4600D1B7AD /* COSynchronizerRevision.m in Sources */ = {isa = PBXBuildFile; fileRef = 660179C7182AFA4B006E7D7B /* COSynchronizerRevision.m */; };
60E08C8E19792F4600D1B7AD /* COSynchronizerJSONClient.m in Sources */ = {isa = PBXBuildFile; fileRef = 66FD348D1830BB3800898381 /* COSynchronizerJSONClient.m */; };
60E08C9019792F4600D1B7AD /* FMDatabaseAdditions.m in Sources */ = {isa = PBXBuildFile; fileRef = 791B4E6E1299C90900CCF472 /* FMDatabaseAdditions.m */; };
60E08C9119792F4600D1B7AD /* FMResultSet.m in Sources */ = {isa = PBXBuildFile; fileRef = 791B4E701299C90900CCF472 /* FMResultSet.m */; };
60E08C9219792F4600D1B7AD /* CORevision.m in Sources */ = {isa = PBXBuildFile; fileRef = 609C00791704C2BA00D01AAB /* CORevision.m */; };
60E08C9319792F4600D1B7AD /* COEditingContext.m in Sources */ = {isa = PBXBuildFile; fileRef = 609C00891704C3DA00D01AAB /* COEditingContext.m */; };
60E08C9419792F4600D1B7AD /* COObject.m in Sources */ = {isa = PBXBuildFile; fileRef = 609C008D1704C3DA00D01AAB /* COObject.m */; };
60E08C9519792F4600D1B7AD /* COPersistentRoot.m in Sources */ = {isa = PBXBuildFile; fileRef = 609C008F1704C3DA00D01AAB /* COPersistentRoot.m */; };
60E08C9619792F4600D1B7AD /* COSynchronizerServer.m in Sources */ = {isa = PBXBuildFile; fileRef = 66405DD0182A255800A6EF7A /* COSynchronizerServer.m */; };
60E08C9819792F4600D1B7AD /* COBookmark.m in Sources */ = {isa = PBXBuildFile; fileRef = 609C00A11704C3EF00D01AAB /* COBookmark.m */; };
60E08C9919792F4600D1B7AD /* COCollection.m in Sources */ = {isa = PBXBuildFile; fileRef = 609C00A31704C3EF00D01AAB /* COCollection.m */; };
60E08C9A19792F4600D1B7AD /* COContainer.m in Sources */ = {isa = PBXBuildFile; fileRef = 609C00A51704C3EF00D01AAB /* COContainer.m */; };
60E08C9B19792F4600D1B7AD /* COSynchronizerJSONUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = 66FD349918314BC200898381 /* COSynchronizerJSONUtils.m */; };
60E08C9C19792F4600D1B7AD /* COGroup.m in Sources */ = {isa = PBXBuildFile; fileRef = 609C00A71704C3EF00D01AAB /* COGroup.m */; };
60E08C9D19792F4600D1B7AD /* COLibrary.m in Sources */ = {isa = PBXBuildFile; fileRef = 609C00A91704C3EF00D01AAB /* COLibrary.m */; };
60E08C9E19792F4600D1B7AD /* COSynchronizerPushedRevisionsToClientMessage.m in Sources */ = {isa = PBXBuildFile; fileRef = 660179CB182AFA5D006E7D7B /* COSynchronizerPushedRevisionsToClientMessage.m */; };
60E08C9F19792F4600D1B7AD /* COTag.m in Sources */ = {isa = PBXBuildFile; fileRef = 609C00AB1704C3EF00D01AAB /* COTag.m */; };
60E08CA019792F4600D1B7AD /* COBranch.m in Sources */ = {isa = PBXBuildFile; fileRef = 609C00B91704C3FF00D01AAB /* COBranch.m */; };
60E08CA119792F4600D1B7AD /* CODateSerialization.m in Sources */ = {isa = PBXBuildFile; fileRef = 6612113F1821986B003AEC29 /* CODateSerialization.m */; };
60E08CA219792F4600D1B7AD /* COError.m in Sources */ = {isa = PBXBuildFile; fileRef = 609C00E31704C42200D01AAB /* COError.m */; };
60E08CA319792F4600D1B7AD /* COCommitDescriptor.m in Sources */ = {isa = PBXBuildFile; fileRef = 6043D4C817575D7A002103CC /* COCommitDescriptor.m */; };
60E08CA419792F4600D1B7AD /* COItem.m in Sources */ = {isa = PBXBuildFile; fileRef = 6675F8BB1785C02A001E5622 /* COItem.m */; };
60E08CA519792F4600D1B7AD /* COAttachmentID.m in Sources */ = {isa = PBXBuildFile; fileRef = 6660B39F1839659D009007FD /* COAttachmentID.m */; };
60E08CA619792F4600D1B7AD /* COItemGraph.m in Sources */ = {isa = PBXBuildFile; fileRef = 6675F8BD1785C02A001E5622 /* COItemGraph.m */; };
60E08CA719792F4600D1B7AD /* COPath.m in Sources */ = {isa = PBXBuildFile; fileRef = 6675F8BF1785C02A001E5622 /* COPath.m */; };
60E08CA819792F4600D1B7AD /* COItem+JSON.m in Sources */ = {isa = PBXBuildFile; fileRef = 66094845178794D40049468B /* COItem+JSON.m */; };
60E08CA919792F4600D1B7AD /* COSerialization.m in Sources */ = {isa = PBXBuildFile; fileRef = 606E3DC01787A07E00ED42DA /* COSerialization.m */; };
60E08CAA19792F4600D1B7AD /* COAttributedStringChunk.m in Sources */ = {isa = PBXBuildFile; fileRef = 6633F117185516AB009CE6F7 /* COAttributedStringChunk.m */; };
60E08CAB19792F4600D1B7AD /* CODictionary.m in Sources */ = {isa = PBXBuildFile; fileRef = 607EB348178881E60024B34D /* CODictionary.m */; };
60E08CAC19792F4600D1B7AD /* CORelationshipCache.m in Sources */ = {isa = PBXBuildFile; fileRef = 6609485C1787A1160049468B /* CORelationshipCache.m */; };
60E08CAD19792F4600D1B7AD /* COBinaryReader.m in Sources */ = {isa = PBXBuildFile; fileRef = 66D96CA3178B717000D1553C /* COBinaryReader.m */; };
60E08CAE19792F4600D1B7AD /* COItem+Binary.m in Sources */ = {isa = PBXBuildFile; fileRef = 66D96CA6178B717000D1553C /* COItem+Binary.m */; };
60E08CAF19792F4600D1B7AD /* CORevisionInfo.m in Sources */ = {isa = PBXBuildFile; fileRef = 66D96CAC178B717100D1553C /* CORevisionInfo.m */; };
60E08CB019792F4600D1B7AD /* COSearchResult.m in Sources */ = {isa = PBXBuildFile; fileRef = 66D96CAE178B717100D1553C /* COSearchResult.m */; };
60E08CB119792F4600D1B7AD /* COSQLiteStore.m in Sources */ = {isa = PBXBuildFile; fileRef = 66D96CB0178B717100D1553C /* COSQLiteStore.m */; };
60E08CB219792F4600D1B7AD /* COSynchronizerClient.m in Sources */ = {isa = PBXBuildFile; fileRef = 66405DC2182A0D4D00A6EF7A /* COSynchronizerClient.m */; };
60E08CB319792F4600D1B7AD /* COSQLiteStore+Attachments.m in Sources */ = {isa = PBXBuildFile; fileRef = 66D96CB2178B717100D1553C /* COSQLiteStore+Attachments.m */; };
60E08CB419792F4600D1B7AD /* COSQLiteStorePersistentRootBackingStore.m in Sources */ = {isa = PBXBuildFile; fileRef = 66D96CB4178B717200D1553C /* COSQLiteStorePersistentRootBackingStore.m */; };
60E08CB519792F4600D1B7AD /* COSQLiteStorePersistentRootBackingStoreBinaryFormats.m in Sources */ = {isa = PBXBuildFile; fileRef = 66D96CB6178B717200D1553C /* COSQLiteStorePersistentRootBackingStoreBinaryFormats.m */; };
60E08CB619792F4600D1B7AD /* COCopier.m in Sources */ = {isa = PBXBuildFile; fileRef = 6680846C178CD526003A3CC6 /* COCopier.m */; };
60E08CB719792F4600D1B7AD /* COArrayDiff.m in Sources */ = {isa = PBXBuildFile; fileRef = 66808480178DAFE3003A3CC6 /* COArrayDiff.m */; };
60E08CB819792F4600D1B7AD /* COItemGraphDiff.m in Sources */ = {isa = PBXBuildFile; fileRef = 66808482178DAFE3003A3CC6 /* COItemGraphDiff.m */; };
60E08CB919792F4600D1B7AD /* COItemGraphEdit.m in Sources */ = {isa = PBXBuildFile; fileRef = 66808486178DAFE3003A3CC6 /* COItemGraphEdit.m */; };
60E08CBA19792F4600D1B7AD /* COBezierPath.m in Sources */ = {isa = PBXBuildFile; fileRef = 6633F11B185516B5009CE6F7 /* COBezierPath.m */; };
60E08CBB19792F4600D1B7AD /* diff.cc in Sources */ = {isa = PBXBuildFile; fileRef = 66808487178DAFE3003A3CC6 /* diff.cc */; };
60E08CBC19792F4600D1B7AD /* COType.m in Sources */ = {isa = PBXBuildFile; fileRef = 668084CE17900C35003A3CC6 /* COType.m */; };
60E08CBD19792F4600D1B7AD /* COObject+RelationshipCache.m in Sources */ = {isa = PBXBuildFile; fileRef = 668084EA1791FBA2003A3CC6 /* COObject+RelationshipCache.m */; };
60E08CBE19792F4600D1B7AD /* COObjectGraphContext.m in Sources */ = {isa = PBXBuildFile; fileRef = 668084EF1791FBAB003A3CC6 /* COObjectGraphContext.m */; };
60E08CBF19792F4600D1B7AD /* COAttributedStringDiff.m in Sources */ = {isa = PBXBuildFile; fileRef = 66D3FCDA1860EB61009BDF50 /* COAttributedStringDiff.m */; };
60E08CC019792F4600D1B7AD /* COObject+Accessors.m in Sources */ = {isa = PBXBuildFile; fileRef = 66FB15D817AB31F5003BFC9B /* COObject+Accessors.m */; };
60E08CC119792F4600D1B7AD /* CODiffManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 664F8B1518762411001AD224 /* CODiffManager.m */; };
60E08CC219792F4600D1B7AD /* COSynchronizerJSONServer.m in Sources */ = {isa = PBXBuildFile; fileRef = 66FD34891830B84C00898381 /* COSynchronizerJSONServer.m */; };
60E08CC319792F4600D1B7AD /* COSynchronizerPushedRevisionsFromClientMessage.m in Sources */ = {isa = PBXBuildFile; fileRef = 660179D3182AFA78006E7D7B /* COSynchronizerPushedRevisionsFromClientMessage.m */; };
60E08CC419792F4600D1B7AD /* COBranchInfo.m in Sources */ = {isa = PBXBuildFile; fileRef = 66C3670A17B5F9AF009ACF2F /* COBranchInfo.m */; };
60E08CC519792F4600D1B7AD /* COPersistentRootInfo.m in Sources */ = {isa = PBXBuildFile; fileRef = 66C3670E17B5FA0D009ACF2F /* COPersistentRootInfo.m */; };
60E08CC619792F4600D1B7AD /* COCommand.m in Sources */ = {isa = PBXBuildFile; fileRef = 663CE28817C07ED800E729F5 /* COCommand.m */; };
60E08CC719792F4600D1B7AD /* COCommandDeleteBranch.m in Sources */ = {isa = PBXBuildFile; fileRef = 663CE28C17C07ED800E729F5 /* COCommandDeleteBranch.m */; };
60E08CC819792F4600D1B7AD /* COCommandSetBranchMetadata.m in Sources */ = {isa = PBXBuildFile; fileRef = 663CE28E17C07ED800E729F5 /* COCommandSetBranchMetadata.m */; };
60E08CC919792F4600D1B7AD /* COCommandSetCurrentBranch.m in Sources */ = {isa = PBXBuildFile; fileRef = 663CE29017C07ED800E729F5 /* COCommandSetCurrentBranch.m */; };
60E08CCA19792F4600D1B7AD /* COCommandSetCurrentVersionForBranch.m in Sources */ = {isa = PBXBuildFile; fileRef = 663CE29217C07ED800E729F5 /* COCommandSetCurrentVersionForBranch.m */; };
60E08CCB19792F4600D1B7AD /* COUndoTrackStore.m in Sources */ = {isa = PBXBuildFile; fileRef = 663CE29417C07ED800E729F5 /* COUndoTrackStore.m */; };
60E08CCC19792F4600D1B7AD /* COEditingContext+Undo.m in Sources */ = {isa = PBXBuildFile; fileRef = 663CE2B517C0B05800E729F5 /* COEditingContext+Undo.m */; };
60E08CCD19792F4600D1B7AD /* COCommandGroup.m in Sources */ = {isa = PBXBuildFile; fileRef = 663CE2BB17C15A4800E729F5 /* COCommandGroup.m */; };
60E08CCE19792F4600D1B7AD /* COCommandUndeletePersistentRoot.m in Sources */ = {isa = PBXBuildFile; fileRef = 662FFB7E17C2026000BA3F2F /* COCommandUndeletePersistentRoot.m */; };
60E08CD019792F4600D1B7AD /* FolderWithNoClass.m in Sources */ = {isa = PBXBuildFile; fileRef = 6634B3E4196B15AE00C7AD6A /* FolderWithNoClass.m */; };
60E08CD119792F4600D1B7AD /* COCommandUndeleteBranch.m in Sources */ = {isa = PBXBuildFile; fileRef = 662FFB9D17C2DE8100BA3F2F /* COCommandUndeleteBranch.m */; };
60E08CD219792F4600D1B7AD /* COUndoTrack.m in Sources */ = {isa = PBXBuildFile; fileRef = 6646976217CDB94300A1B767 /* COUndoTrack.m */; };
60E08CD319792F4600D1B7AD /* COSynchronizationClient.m in Sources */ = {isa = PBXBuildFile; fileRef = 6646977A17CE7CAC00A1B767 /* COSynchronizationClient.m */; };
60E08CD419792F4600D1B7AD /* COAttributedStringWrapper.m in Sources */ = {isa = PBXBuildFile; fileRef = 66539E0B1860472E0077FB18 /* COAttributedStringWrapper.m */; };
60E08CD519792F4600D1B7AD /* COSynchronizationServer.m in Sources */ = {isa = PBXBuildFile; fileRef = 6646977E17CE7E2600A1B767 /* COSynchronizationServer.m */; };
60E08CD619792F4600D1B7AD /* COSetAttribute.m in Sources */ = {isa = PBXBuildFile; fileRef = 669724D417D4610E0090B31A /* COSetAttribute.m */; };
60E08CD719792F4600D1B7AD /* CODeleteAttribute.m in Sources */ = {isa = PBXBuildFile; fileRef = 669724D817D4614F0090B31A /* CODeleteAttribute.m */; };
60E08CD819792F4600D1B7AD /* COSetInsertion.m in Sources */ = {isa = PBXBuildFile; fileRef = 669724DC17D461750090B31A /* COSetInsertion.m */; };
60E08CD919792F4600D1B7AD /* COSetDeletion.m in Sources */ = {isa = PBXBuildFile; fileRef = 669724E017D461940090B31A /* COSetDeletion.m */; };
60E08CDA19792F4600D1B7AD /* COSequenceEdit.m in Sources */ = {isa = PBXBuildFile; fileRef = 669724E417D463B00090B31A /* COSequenceEdit.m */; };
60E08CDB19792F4600D1B7AD /* COSequenceDeletion.m in Sources */ = {isa = PBXBuildFile; fileRef = 669724E817D464170090B31A /* COSequenceDeletion.m */; };
60E08CDC19792F4600D1B7AD /* COSynchronizerUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = 663E9BA9182D8A890083AC46 /* COSynchronizerUtils.m */; };
60E08CDD19792F4600D1B7AD /* COAttributedStringAttribute.m in Sources */ = {isa = PBXBuildFile; fileRef = 66D3FCCD1860E197009BDF50 /* COAttributedStringAttribute.m */; };
60E08CDE19792F4600D1B7AD /* COSequenceInsertion.m in Sources */ = {isa = PBXBuildFile; fileRef = 669724EC17D464400090B31A /* COSequenceInsertion.m */; };
60E08CDF19792F4600D1B7AD /* COSequenceModification.m in Sources */ = {isa = PBXBuildFile; fileRef = 669724F017D4646D0090B31A /* COSequenceModification.m */; };
60E08CE119792F4600D1B7AD /* COLeastCommonAncestor.m in Sources */ = {isa = PBXBuildFile; fileRef = 660D4CD817D5C7CB003C9ACC /* COLeastCommonAncestor.m */; };
60E08CE219792F4600D1B7AD /* COEndOfUndoTrackPlaceholderNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 662AC93C1802297100B088F2 /* COEndOfUndoTrackPlaceholderNode.m */; };
60E08CE319792F4600D1B7AD /* COMergeInfo.m in Sources */ = {isa = PBXBuildFile; fileRef = 660D4CE417D689FC003C9ACC /* COMergeInfo.m */; };
60E08CE519792F4600D1B7AD /* COStoreCreateBranch.m in Sources */ = {isa = PBXBuildFile; fileRef = 66457FA017E8BFE5003C51A8 /* COStoreCreateBranch.m */; };
60E08CE619792F4600D1B7AD /* COCommandSetPersistentRootMetadata.m in Sources */ = {isa = PBXBuildFile; fileRef = 66E4CF521816FE9000AAB0E6 /* COCommandSetPersistentRootMetadata.m */; };
60E08CE719792F4600D1B7AD /* COAttributedString.m in Sources */ = {isa = PBXBuildFile; fileRef = 6633F1131855169E009CE6F7 /* COAttributedString.m */; };
60E08CE819792F4600D1B7AD /* COStoreCreatePersistentRoot.m in Sources */ = {isa = PBXBuildFile; fileRef = 66457FA217E8BFE5003C51A8 /* COStoreCreatePersistentRoot.m */; };
60E08CE919792F4600D1B7AD /* COStoreDeleteBranch.m in Sources */ = {isa = PBXBuildFile; fileRef = 66457FA417E8BFE5003C51A8 /* COStoreDeleteBranch.m */; };
60E08CEA19792F4600D1B7AD /* COStoreDeletePersistentRoot.m in Sources */ = {isa = PBXBuildFile; fileRef = 66457FA617E8BFE5003C51A8 /* COStoreDeletePersistentRoot.m */; };
60E08CEB19792F4600D1B7AD /* COSynchronizerPersistentRootInfoToClientMessage.m in Sources */ = {isa = PBXBuildFile; fileRef = 663E9B9E182B85790083AC46 /* COSynchronizerPersistentRootInfoToClientMessage.m */; };
60E08CEC19792F4600D1B7AD /* COStoreSetBranchMetadata.m in Sources */ = {isa = PBXBuildFile; fileRef = 66457FA817E8BFE5003C51A8 /* COStoreSetBranchMetadata.m */; };
60E08CED19792F4600D1B7AD /* COStoreSetCurrentBranch.m in Sources */ = {isa = PBXBuildFile; fileRef = 66457FAA17E8BFE5003C51A8 /* COStoreSetCurrentBranch.m */; };
60E08CEE19792F4600D1B7AD /* COStoreSetPersistentRootMetadata.m in Sources */ = {isa = PBXBuildFile; fileRef = 66E4CF4E1816F50300AAB0E6 /* COStoreSetPersistentRootMetadata.m */; };
60E08CEF19792F4600D1B7AD /* COStoreSetCurrentRevision.m in Sources */ = {isa = PBXBuildFile; fileRef = 66457FAC17E8BFE5003C51A8 /* COStoreSetCurrentRevision.m */; };
60E08CF019792F4600D1B7AD /* COStoreTransaction.m in Sources */ = {isa = PBXBuildFile; fileRef = 66457FAE17E8BFE5003C51A8 /* COStoreTransaction.m */; };
60E08CF119792F4600D1B7AD /* COStoreUndeleteBranch.m in Sources */ = {isa = PBXBuildFile; fileRef = 66457FB017E8BFE5003C51A8 /* COStoreUndeleteBranch.m */; };
60E08CF219792F4600D1B7AD /* COStoreUndeletePersistentRoot.m in Sources */ = {isa = PBXBuildFile; fileRef = 66457FB217E8BFE5003C51A8 /* COStoreUndeletePersistentRoot.m */; };
60E08CF319792F4600D1B7AD /* COStoreWriteRevision.m in Sources */ = {isa = PBXBuildFile; fileRef = 66457FB417E8BFE5003C51A8 /* COStoreWriteRevision.m */; };
60E08CF519792F4600D1B7AD /* CORevisionCache.m in Sources */ = {isa = PBXBuildFile; fileRef = 66457FEB17E9683F003C51A8 /* CORevisionCache.m */; };
60E08CF619792F4600D1B7AD /* COObjectGraphContext+GarbageCollection.m in Sources */ = {isa = PBXBuildFile; fileRef = 601C1D4E180C115B00CED07E /* COObjectGraphContext+GarbageCollection.m */; };
60E08CF719792F4600D1B7AD /* COPrimitiveCollection.m in Sources */ = {isa = PBXBuildFile; fileRef = 60EBC19A184CA38200F751F5 /* COPrimitiveCollection.m */; };
60E08CF819792F4600D1B7AD /* COPersistentObjectContext.m in Sources */ = {isa = PBXBuildFile; fileRef = 600F72BE1858A71200CB6AC5 /* COPersistentObjectContext.m */; };
60E08CF919792F4600D1B7AD /* COSmartGroup.m in Sources */ = {isa = PBXBuildFile; fileRef = 607335B318AB96A6008A02DC /* COSmartGroup.m */; };
60E08CFD19792FFA00D1B7AD /* CORevision.h in Headers */ = {isa = PBXBuildFile; fileRef = 609C00781704C2BA00D01AAB /* CORevision.h */; settings = {ATTRIBUTES = (Public, ); }; };
60E08CFE19792FFA00D1B7AD /* COEditingContext.h in Headers */ = {isa = PBXBuildFile; fileRef = 609C00881704C3DA00D01AAB /* COEditingContext.h */; settings = {ATTRIBUTES = (Public, ); }; };
60E08CFF19792FFA00D1B7AD /* COObject.h in Headers */ = {isa = PBXBuildFile; fileRef = 609C008C1704C3DA00D01AAB /* COObject.h */; settings = {ATTRIBUTES = (Public, ); }; };
60E08D0019792FFA00D1B7AD /* COPersistentRoot.h in Headers */ = {isa = PBXBuildFile; fileRef = 609C008E1704C3DA00D01AAB /* COPersistentRoot.h */; settings = {ATTRIBUTES = (Public, ); }; };
60E08D0219792FFA00D1B7AD /* COBookmark.h in Headers */ = {isa = PBXBuildFile; fileRef = 609C00A01704C3EF00D01AAB /* COBookmark.h */; settings = {ATTRIBUTES = (Public, ); }; };
60E08D0319792FFA00D1B7AD /* COCollection.h in Headers */ = {isa = PBXBuildFile; fileRef = 609C00A21704C3EF00D01AAB /* COCollection.h */; settings = {ATTRIBUTES = (Public, ); }; };
60E08D0419792FFA00D1B7AD /* COContainer.h in Headers */ = {isa = PBXBuildFile; fileRef = 609C00A41704C3EF00D01AAB /* COContainer.h */; settings = {ATTRIBUTES = (Public, ); }; };
60E08D0519792FFA00D1B7AD /* COGroup.h in Headers */ = {isa = PBXBuildFile; fileRef = 609C00A61704C3EF00D01AAB /* COGroup.h */; settings = {ATTRIBUTES = (Public, ); }; };
60E08D0619792FFA00D1B7AD /* COLibrary.h in Headers */ = {isa = PBXBuildFile; fileRef = 609C00A81704C3EF00D01AAB /* COLibrary.h */; settings = {ATTRIBUTES = (Public, ); }; };
60E08D0819792FFA00D1B7AD /* COTag.h in Headers */ = {isa = PBXBuildFile; fileRef = 609C00AA1704C3EF00D01AAB /* COTag.h */; settings = {ATTRIBUTES = (Public, ); }; };
60E08D0919792FFA00D1B7AD /* COBranch.h in Headers */ = {isa = PBXBuildFile; fileRef = 609C00B81704C3FF00D01AAB /* COBranch.h */; settings = {ATTRIBUTES = (Public, ); }; };
60E08D0A19792FFA00D1B7AD /* COError.h in Headers */ = {isa = PBXBuildFile; fileRef = 609C00E21704C42200D01AAB /* COError.h */; settings = {ATTRIBUTES = (Public, ); }; };
60E08D0B19792FFA00D1B7AD /* CoreObject.h in Headers */ = {isa = PBXBuildFile; fileRef = 60C913C5165BBF5000E0C5F4 /* CoreObject.h */; settings = {ATTRIBUTES = (Public, ); }; };
60E08D0C19792FFA00D1B7AD /* COCommitDescriptor.h in Headers */ = {isa = PBXBuildFile; fileRef = 6043D4C717575D79002103CC /* COCommitDescriptor.h */; settings = {ATTRIBUTES = (Public, ); }; };
60E08D0D19792FFA00D1B7AD /* COItemGraph.h in Headers */ = {isa = PBXBuildFile; fileRef = 6675F8BC1785C02A001E5622 /* COItemGraph.h */; settings = {ATTRIBUTES = (Public, ); }; };
60E08D0E19792FFA00D1B7AD /* CODictionary.h in Headers */ = {isa = PBXBuildFile; fileRef = 607EB347178881E60024B34D /* CODictionary.h */; settings = {ATTRIBUTES = (Public, ); }; };
60E08D0F19792FFA00D1B7AD /* COItem.h in Headers */ = {isa = PBXBuildFile; fileRef = 6675F8BA1785C02A001E5622 /* COItem.h */; settings = {ATTRIBUTES = (Public, ); }; };
60E08D1019792FFA00D1B7AD /* COUndoTrack.h in Headers */ = {isa = PBXBuildFile; fileRef = 6646976117CDB94300A1B767 /* COUndoTrack.h */; settings = {ATTRIBUTES = (Public, ); }; };
60E08D1119792FFA00D1B7AD /* COSynchronizationClient.h in Headers */ = {isa = PBXBuildFile; fileRef = 6646977917CE7CAC00A1B767 /* COSynchronizationClient.h */; settings = {ATTRIBUTES = (Public, ); }; };
60E08D1219792FFA00D1B7AD /* COSynchronizationServer.h in Headers */ = {isa = PBXBuildFile; fileRef = 6646977D17CE7E2600A1B767 /* COSynchronizationServer.h */; settings = {ATTRIBUTES = (Public, ); }; };
60E08D1319792FFA00D1B7AD /* COType.h in Headers */ = {isa = PBXBuildFile; fileRef = 6675F8C01785C02A001E5622 /* COType.h */; settings = {ATTRIBUTES = (Public, ); }; };
60E08D1419792FFA00D1B7AD /* COSerialization.h in Headers */ = {isa = PBXBuildFile; fileRef = 606E3DBF1787A07E00ED42DA /* COSerialization.h */; settings = {ATTRIBUTES = (Public, ); }; };
60E08D1519792FFA00D1B7AD /* CORelationshipCache.h in Headers */ = {isa = PBXBuildFile; fileRef = 6609485D1787A1160049468B /* CORelationshipCache.h */; settings = {ATTRIBUTES = (Public, ); }; };
60E08D1619792FFA00D1B7AD /* COBranchInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = 66C3670917B5F9AF009ACF2F /* COBranchInfo.h */; settings = {ATTRIBUTES = (Public, ); }; };
60E08D1719792FFA00D1B7AD /* COPersistentRootInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = 66C3670D17B5FA0D009ACF2F /* COPersistentRootInfo.h */; settings = {ATTRIBUTES = (Public, ); }; };
60E08D1819792FFA00D1B7AD /* COBinaryWriter.h in Headers */ = {isa = PBXBuildFile; fileRef = 66D96CA4178B717000D1553C /* COBinaryWriter.h */; settings = {ATTRIBUTES = (Public, ); }; };
60E08D1919792FFA00D1B7AD /* CORevisionInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = 66D96CAB178B717100D1553C /* CORevisionInfo.h */; settings = {ATTRIBUTES = (Public, ); }; };
60E08D1A19792FFA00D1B7AD /* COSearchResult.h in Headers */ = {isa = PBXBuildFile; fileRef = 66D96CAD178B717100D1553C /* COSearchResult.h */; settings = {ATTRIBUTES = (Public, ); }; };
60E08D1B19792FFA00D1B7AD /* COSQLiteStore.h in Headers */ = {isa = PBXBuildFile; fileRef = 66D96CAF178B717100D1553C /* COSQLiteStore.h */; settings = {ATTRIBUTES = (Public, ); }; };
60E08D1C19792FFA00D1B7AD /* COSQLiteStore+Attachments.h in Headers */ = {isa = PBXBuildFile; fileRef = 66D96CB1178B717100D1553C /* COSQLiteStore+Attachments.h */; settings = {ATTRIBUTES = (Public, ); }; };
60E08D1D19792FFA00D1B7AD /* COSQLiteStorePersistentRootBackingStore.h in Headers */ = {isa = PBXBuildFile; fileRef = 66D96CB3178B717200D1553C /* COSQLiteStorePersistentRootBackingStore.h */; settings = {ATTRIBUTES = (Public, ); }; };
60E08D1E19792FFA00D1B7AD /* COPath.h in Headers */ = {isa = PBXBuildFile; fileRef = 6675F8BE1785C02A001E5622 /* COPath.h */; settings = {ATTRIBUTES = (Public, ); }; };
60E08D1F19792FFA00D1B7AD /* COItem+JSON.h in Headers */ = {isa = PBXBuildFile; fileRef = 66094846178794D40049468B /* COItem+JSON.h */; settings = {ATTRIBUTES = (Public, ); }; };
60E08D2019792FFA00D1B7AD /* COCopier.h in Headers */ = {isa = PBXBuildFile; fileRef = 6680846B178CD526003A3CC6 /* COCopier.h */; settings = {ATTRIBUTES = (Public, ); }; };
60E08D2119792FFA00D1B7AD /* COArrayDiff.h in Headers */ = {isa = PBXBuildFile; fileRef = 6680847F178DAFE3003A3CC6 /* COArrayDiff.h */; settings = {ATTRIBUTES = (Public, ); }; };
60E08D2219792FFA00D1B7AD /* COItem+Binary.h in Headers */ = {isa = PBXBuildFile; fileRef = 66D96CA5178B717000D1553C /* COItem+Binary.h */; settings = {ATTRIBUTES = (Public, ); }; };
60E08D2319792FFA00D1B7AD /* COItemGraphDiff.h in Headers */ = {isa = PBXBuildFile; fileRef = 66808481178DAFE3003A3CC6 /* COItemGraphDiff.h */; settings = {ATTRIBUTES = (Public, ); }; };
60E08D2419792FFA00D1B7AD /* COBinaryReader.h in Headers */ = {isa = PBXBuildFile; fileRef = 66D96CA2178B717000D1553C /* COBinaryReader.h */; settings = {ATTRIBUTES = (Public, ); }; };
60E08D2519792FFA00D1B7AD /* COSQLiteStorePersistentRootBackingStoreBinaryFormats.h in Headers */ = {isa = PBXBuildFile; fileRef = 66D96CB5178B717200D1553C /* COSQLiteStorePersistentRootBackingStoreBinaryFormats.h */; settings = {ATTRIBUTES = (Public, ); }; };
60E08D2619792FFA00D1B7AD /* diff.h in Headers */ = {isa = PBXBuildFile; fileRef = 66808488178DAFE3003A3CC6 /* diff.h */; settings = {ATTRIBUTES = (Public, ); }; };
60E08D2719792FFA00D1B7AD /* diff.hh in Headers */ = {isa = PBXBuildFile; fileRef = 66808489178DAFE3003A3CC6 /* diff.hh */; settings = {ATTRIBUTES = (Public, ); }; };
60E08D2819792FFA00D1B7AD /* COObject+RelationshipCache.h in Headers */ = {isa = PBXBuildFile; fileRef = 668084EB1791FBA2003A3CC6 /* COObject+RelationshipCache.h */; settings = {ATTRIBUTES = (Public, ); }; };
60E08D2919792FFA00D1B7AD /* COCommand.h in Headers */ = {isa = PBXBuildFile; fileRef = 663CE28717C07ED800E729F5 /* COCommand.h */; settings = {ATTRIBUTES = (Public, ); }; };
60E08D2A19792FFA00D1B7AD /* COCommandDeleteBranch.h in Headers */ = {isa = PBXBuildFile; fileRef = 663CE28B17C07ED800E729F5 /* COCommandDeleteBranch.h */; settings = {ATTRIBUTES = (Public, ); }; };
60E08D2B19792FFA00D1B7AD /* COCommandSetBranchMetadata.h in Headers */ = {isa = PBXBuildFile; fileRef = 663CE28D17C07ED800E729F5 /* COCommandSetBranchMetadata.h */; settings = {ATTRIBUTES = (Public, ); }; };
60E08D2C19792FFA00D1B7AD /* COCommandSetCurrentBranch.h in Headers */ = {isa = PBXBuildFile; fileRef = 663CE28F17C07ED800E729F5 /* COCommandSetCurrentBranch.h */; settings = {ATTRIBUTES = (Public, ); }; };
60E08D2D19792FFA00D1B7AD /* COCommandSetCurrentVersionForBranch.h in Headers */ = {isa = PBXBuildFile; fileRef = 663CE29117C07ED800E729F5 /* COCommandSetCurrentVersionForBranch.h */; settings = {ATTRIBUTES = (Public, ); }; };
60E08D2E19792FFA00D1B7AD /* COEditingContext+Undo.h in Headers */ = {isa = PBXBuildFile; fileRef = 663CE2B417C0B05800E729F5 /* COEditingContext+Undo.h */; settings = {ATTRIBUTES = (Public, ); }; };
60E08D2F19792FFA00D1B7AD /* COCommandGroup.h in Headers */ = {isa = PBXBuildFile; fileRef = 663CE2BA17C15A4800E729F5 /* COCommandGroup.h */; settings = {ATTRIBUTES = (Public, ); }; };
60E08D3019792FFA00D1B7AD /* COCommandUndeletePersistentRoot.h in Headers */ = {isa = PBXBuildFile; fileRef = 662FFB7D17C2026000BA3F2F /* COCommandUndeletePersistentRoot.h */; settings = {ATTRIBUTES = (Public, ); }; };
60E08D3119792FFA00D1B7AD /* COCommandUndeleteBranch.h in Headers */ = {isa = PBXBuildFile; fileRef = 662FFB9C17C2DE8100BA3F2F /* COCommandUndeleteBranch.h */; settings = {ATTRIBUTES = (Public, ); }; };
60E08D3219792FFA00D1B7AD /* COItemGraphEdit.h in Headers */ = {isa = PBXBuildFile; fileRef = 66808485178DAFE3003A3CC6 /* COItemGraphEdit.h */; settings = {ATTRIBUTES = (Public, ); }; };
60E08D3319792FFA00D1B7AD /* COSetAttribute.h in Headers */ = {isa = PBXBuildFile; fileRef = 669724D317D4610E0090B31A /* COSetAttribute.h */; settings = {ATTRIBUTES = (Public, ); }; };
60E08D3419792FFA00D1B7AD /* CODeleteAttribute.h in Headers */ = {isa = PBXBuildFile; fileRef = 669724D717D4614F0090B31A /* CODeleteAttribute.h */; settings = {ATTRIBUTES = (Public, ); }; };
60E08D3519792FFA00D1B7AD /* COSetInsertion.h in Headers */ = {isa = PBXBuildFile; fileRef = 669724DB17D461740090B31A /* COSetInsertion.h */; settings = {ATTRIBUTES = (Public, ); }; };
60E08D3619792FFA00D1B7AD /* COSetDeletion.h in Headers */ = {isa = PBXBuildFile; fileRef = 669724DF17D461940090B31A /* COSetDeletion.h */; settings = {ATTRIBUTES = (Public, ); }; };
60E08D3719792FFA00D1B7AD /* COSequenceEdit.h in Headers */ = {isa = PBXBuildFile; fileRef = 669724E317D463B00090B31A /* COSequenceEdit.h */; settings = {ATTRIBUTES = (Public, ); }; };
60E08D3819792FFA00D1B7AD /* COSequenceDeletion.h in Headers */ = {isa = PBXBuildFile; fileRef = 669724E717D464170090B31A /* COSequenceDeletion.h */; settings = {ATTRIBUTES = (Public, ); }; };
60E08D3919792FFA00D1B7AD /* COSequenceInsertion.h in Headers */ = {isa = PBXBuildFile; fileRef = 669724EB17D464400090B31A /* COSequenceInsertion.h */; settings = {ATTRIBUTES = (Public, ); }; };
60E08D3A19792FFA00D1B7AD /* COSequenceModification.h in Headers */ = {isa = PBXBuildFile; fileRef = 669724EF17D4646D0090B31A /* COSequenceModification.h */; settings = {ATTRIBUTES = (Public, ); }; };
60E08D3B19792FFA00D1B7AD /* COLeastCommonAncestor.h in Headers */ = {isa = PBXBuildFile; fileRef = 660D4CD717D5C7CB003C9ACC /* COLeastCommonAncestor.h */; settings = {ATTRIBUTES = (Public, ); }; };
60E08D3C19792FFA00D1B7AD /* COSynchronizerUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 663E9BA8182D8A890083AC46 /* COSynchronizerUtils.h */; settings = {ATTRIBUTES = (Public, ); }; };
60E08D3D19792FFA00D1B7AD /* COSynchronizerClient.h in Headers */ = {isa = PBXBuildFile; fileRef = 66405DC1182A0D4D00A6EF7A /* COSynchronizerClient.h */; settings = {ATTRIBUTES = (Public, ); }; };
60E08D3E19792FFA00D1B7AD /* COSynchronizerResponseToClientForSentRevisionsMessage.h in Headers */ = {isa = PBXBuildFile; fileRef = 660179CE182AFA6B006E7D7B /* COSynchronizerResponseToClientForSentRevisionsMessage.h */; settings = {ATTRIBUTES = (Public, ); }; };
60E08D3F19792FFA00D1B7AD /* COSynchronizerRevision.h in Headers */ = {isa = PBXBuildFile; fileRef = 660179C6182AFA4B006E7D7B /* COSynchronizerRevision.h */; settings = {ATTRIBUTES = (Public, ); }; };
60E08D4019792FFA00D1B7AD /* COSynchronizerPersistentRootInfoToClientMessage.h in Headers */ = {isa = PBXBuildFile; fileRef = 663E9B9D182B85790083AC46 /* COSynchronizerPersistentRootInfoToClientMessage.h */; settings = {ATTRIBUTES = (Public, ); }; };
60E08D4119792FFA00D1B7AD /* COSynchronizerPushedRevisionsFromClientMessage.h in Headers */ = {isa = PBXBuildFile; fileRef = 660179D2182AFA78006E7D7B /* COSynchronizerPushedRevisionsFromClientMessage.h */; settings = {ATTRIBUTES = (Public, ); }; };
60E08D4219792FFA00D1B7AD /* COSynchronizerPushedRevisionsToClientMessage.h in Headers */ = {isa = PBXBuildFile; fileRef = 660179CA182AFA5D006E7D7B /* COSynchronizerPushedRevisionsToClientMessage.h */; settings = {ATTRIBUTES = (Public, ); }; };
60E08D4319792FFA00D1B7AD /* COSynchronizerJSONServer.h in Headers */ = {isa = PBXBuildFile; fileRef = 66FD34881830B84C00898381 /* COSynchronizerJSONServer.h */; settings = {ATTRIBUTES = (Public, ); }; };
60E08D4419792FFA00D1B7AD /* COAttributedStringChunk.h in Headers */ = {isa = PBXBuildFile; fileRef = 6633F116185516AB009CE6F7 /* COAttributedStringChunk.h */; settings = {ATTRIBUTES = (Public, ); }; };
60E08D4619792FFA00D1B7AD /* COAttributedStringAttribute.h in Headers */ = {isa = PBXBuildFile; fileRef = 66D3FCCC1860E197009BDF50 /* COAttributedStringAttribute.h */; settings = {ATTRIBUTES = (Public, ); }; };
60E08D4719792FFA00D1B7AD /* COAttributedString.h in Headers */ = {isa = PBXBuildFile; fileRef = 6633F1121855169E009CE6F7 /* COAttributedString.h */; settings = {ATTRIBUTES = (Public, ); }; };
60E08D4819792FFA00D1B7AD /* COAttributedStringWrapper.h in Headers */ = {isa = PBXBuildFile; fileRef = 66539E0A1860472E0077FB18 /* COAttributedStringWrapper.h */; settings = {ATTRIBUTES = (Public, ); }; };
60E08D4B19792FFA00D1B7AD /* COStoreSetPersistentRootMetadata.h in Headers */ = {isa = PBXBuildFile; fileRef = 66E4CF4D1816F50300AAB0E6 /* COStoreSetPersistentRootMetadata.h */; settings = {ATTRIBUTES = (Public, ); }; };
60E08D4C19792FFA00D1B7AD /* CODateSerialization.h in Headers */ = {isa = PBXBuildFile; fileRef = 6612113E1821986B003AEC29 /* CODateSerialization.h */; settings = {ATTRIBUTES = (Public, ); }; };
60E08D4D19792FFA00D1B7AD /* COEndOfUndoTrackPlaceholderNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 662AC93B1802297100B088F2 /* COEndOfUndoTrackPlaceholderNode.h */; settings = {ATTRIBUTES = (Public, ); }; };
60E08D4E19792FFA00D1B7AD /* COPersistentRoot+Private.h in Headers */ = {isa = PBXBuildFile; fileRef = 6646975317CDA8DB00A1B767 /* COPersistentRoot+Private.h */; settings = {ATTRIBUTES = (Public, ); }; };
60E08D4F19792FFA00D1B7AD /* COSQLiteStore+Private.h in Headers */ = {isa = PBXBuildFile; fileRef = 6646982D17D1C50800A1B767 /* COSQLiteStore+Private.h */; settings = {ATTRIBUTES = (Public, ); }; };
60E08D5019792FFA00D1B7AD /* COObjectGraphContext+Private.h in Headers */ = {isa = PBXBuildFile; fileRef = 6646985917D3C55500A1B767 /* COObjectGraphContext+Private.h */; settings = {ATTRIBUTES = (Public, ); }; };
60E08D5119792FFA00D1B7AD /* COStoreCreateBranch.h in Headers */ = {isa = PBXBuildFile; fileRef = 66457F9F17E8BFE5003C51A8 /* COStoreCreateBranch.h */; settings = {ATTRIBUTES = (Public, ); }; };
60E08D5219792FFA00D1B7AD /* COStoreCreatePersistentRoot.h in Headers */ = {isa = PBXBuildFile; fileRef = 66457FA117E8BFE5003C51A8 /* COStoreCreatePersistentRoot.h */; settings = {ATTRIBUTES = (Public, ); }; };
60E08D5319792FFA00D1B7AD /* COCommandSetPersistentRootMetadata.h in Headers */ = {isa = PBXBuildFile; fileRef = 66E4CF511816FE9000AAB0E6 /* COCommandSetPersistentRootMetadata.h */; settings = {ATTRIBUTES = (Public, ); }; };
60E08D5419792FFA00D1B7AD /* COStoreDeleteBranch.h in Headers */ = {isa = PBXBuildFile; fileRef = 66457FA317E8BFE5003C51A8 /* COStoreDeleteBranch.h */; settings = {ATTRIBUTES = (Public, ); }; };
60E08D5519792FFA00D1B7AD /* COStoreDeletePersistentRoot.h in Headers */ = {isa = PBXBuildFile; fileRef = 66457FA517E8BFE5003C51A8 /* COStoreDeletePersistentRoot.h */; settings = {ATTRIBUTES = (Public, ); }; };
60E08D5619792FFA00D1B7AD /* COStoreSetBranchMetadata.h in Headers */ = {isa = PBXBuildFile; fileRef = 66457FA717E8BFE5003C51A8 /* COStoreSetBranchMetadata.h */; settings = {ATTRIBUTES = (Public, ); }; };
60E08D5719792FFA00D1B7AD /* COStoreSetCurrentBranch.h in Headers */ = {isa = PBXBuildFile; fileRef = 66457FA917E8BFE5003C51A8 /* COStoreSetCurrentBranch.h */; settings = {ATTRIBUTES = (Public, ); }; };
60E08D5819792FFA00D1B7AD /* COStoreSetCurrentRevision.h in Headers */ = {isa = PBXBuildFile; fileRef = 66457FAB17E8BFE5003C51A8 /* COStoreSetCurrentRevision.h */; settings = {ATTRIBUTES = (Public, ); }; };
60E08D5919792FFA00D1B7AD /* COStoreTransaction.h in Headers */ = {isa = PBXBuildFile; fileRef = 66457FAD17E8BFE5003C51A8 /* COStoreTransaction.h */; settings = {ATTRIBUTES = (Public, ); }; };
60E08D5A19792FFA00D1B7AD /* COStoreUndeleteBranch.h in Headers */ = {isa = PBXBuildFile; fileRef = 66457FAF17E8BFE5003C51A8 /* COStoreUndeleteBranch.h */; settings = {ATTRIBUTES = (Public, ); }; };
60E08D5B19792FFA00D1B7AD /* COStoreUndeletePersistentRoot.h in Headers */ = {isa = PBXBuildFile; fileRef = 66457FB117E8BFE5003C51A8 /* COStoreUndeletePersistentRoot.h */; settings = {ATTRIBUTES = (Public, ); }; };
60E08D5C19792FFA00D1B7AD /* COStoreWriteRevision.h in Headers */ = {isa = PBXBuildFile; fileRef = 66457FB317E8BFE5003C51A8 /* COStoreWriteRevision.h */; settings = {ATTRIBUTES = (Public, ); }; };
60E08D5D19792FFA00D1B7AD /* COStoreAction.h in Headers */ = {isa = PBXBuildFile; fileRef = 66457FCD17E8C9CF003C51A8 /* COStoreAction.h */; settings = {ATTRIBUTES = (Public, ); }; };
60E08D5E19792FFA00D1B7AD /* COBezierPath.h in Headers */ = {isa = PBXBuildFile; fileRef = 6633F11A185516B5009CE6F7 /* COBezierPath.h */; settings = {ATTRIBUTES = (Public, ); }; };
60E08D6019792FFA00D1B7AD /* CORevisionCache.h in Headers */ = {isa = PBXBuildFile; fileRef = 66457FEA17E9683E003C51A8 /* CORevisionCache.h */; settings = {ATTRIBUTES = (Public, ); }; };
60E08D6119792FFA00D1B7AD /* COObjectGraphContext+GarbageCollection.h in Headers */ = {isa = PBXBuildFile; fileRef = 601C1D4D180C115900CED07E /* COObjectGraphContext+GarbageCollection.h */; settings = {ATTRIBUTES = (Public, ); }; };
60E08D6319792FFA00D1B7AD /* COPrimitiveCollection.h in Headers */ = {isa = PBXBuildFile; fileRef = 60EBC199184CA38200F751F5 /* COPrimitiveCollection.h */; settings = {ATTRIBUTES = (Public, ); }; };
60E08D6419792FFA00D1B7AD /* COTrack.h in Headers */ = {isa = PBXBuildFile; fileRef = 66E62251185BEA51002A22C1 /* COTrack.h */; settings = {ATTRIBUTES = (Public, ); }; };
60E08D6519792FFA00D1B7AD /* COAttachmentID.h in Headers */ = {isa = PBXBuildFile; fileRef = 6660B39E1839659D009007FD /* COAttachmentID.h */; settings = {ATTRIBUTES = (Public, ); }; };
60E08D6619792FFA00D1B7AD /* COSynchronizerServer.h in Headers */ = {isa = PBXBuildFile; fileRef = 66405DCF182A255800A6EF7A /* COSynchronizerServer.h */; settings = {ATTRIBUTES = (Public, ); }; };
60E08D6719792FFA00D1B7AD /* COSynchronizerJSONUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 66FD349818314BC200898381 /* COSynchronizerJSONUtils.h */; settings = {ATTRIBUTES = (Public, ); }; };
60E08D6819792FFA00D1B7AD /* COSynchronizerJSONClient.h in Headers */ = {isa = PBXBuildFile; fileRef = 66FD348C1830BB3800898381 /* COSynchronizerJSONClient.h */; settings = {ATTRIBUTES = (Public, ); }; };
60E08D6919792FFA00D1B7AD /* COMergeInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = 660D4CE317D689FC003C9ACC /* COMergeInfo.h */; settings = {ATTRIBUTES = (Public, ); }; };
60E08D6A19792FFA00D1B7AD /* COObjectGraphContext.h in Headers */ = {isa = PBXBuildFile; fileRef = 668084EE1791FBAB003A3CC6 /* COObjectGraphContext.h */; settings = {ATTRIBUTES = (Public, ); }; };
60E08D6B19792FFA00D1B7AD /* CODiffManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 664F8B1418762411001AD224 /* CODiffManager.h */; settings = {ATTRIBUTES = (Public, ); }; };
60E08D6C19792FFA00D1B7AD /* COObject+Private.h in Headers */ = {isa = PBXBuildFile; fileRef = 601C1D44180C0F5300CED07E /* COObject+Private.h */; settings = {ATTRIBUTES = (Public, ); }; };
60E08D6D19792FFA00D1B7AD /* COEditingContext+Private.h in Headers */ = {isa = PBXBuildFile; fileRef = 6646974917CDA78300A1B767 /* COEditingContext+Private.h */; settings = {ATTRIBUTES = (Public, ); }; };
60E08D7119792FFA00D1B7AD /* COPersistentObjectContext.h in Headers */ = {isa = PBXBuildFile; fileRef = 600F72BD1858A71200CB6AC5 /* COPersistentObjectContext.h */; settings = {ATTRIBUTES = (Public, ); }; };
60EBC19B184CA38200F751F5 /* COPrimitiveCollection.h in Headers */ = {isa = PBXBuildFile; fileRef = 60EBC199184CA38200F751F5 /* COPrimitiveCollection.h */; settings = {ATTRIBUTES = (Public, ); }; };
60EBC19C184CA38200F751F5 /* COPrimitiveCollection.m in Sources */ = {isa = PBXBuildFile; fileRef = 60EBC19A184CA38200F751F5 /* COPrimitiveCollection.m */; };
60F46A881A01426000BDDE8E /* COSmartGroup.h in Headers */ = {isa = PBXBuildFile; fileRef = 607335B218AB96A6008A02DC /* COSmartGroup.h */; settings = {ATTRIBUTES = (Public, ); }; };
60F91ECA197D2B0B009F47D7 /* libCoreObject.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 60E08C6219792BEA00D1B7AD /* libCoreObject.a */; };
60F91ECB197D2B13009F47D7 /* libUnitKit.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 6048465F18B6C03E006E4EDC /* libUnitKit.a */; };
60F91ECC197D2B23009F47D7 /* libsqlite3.dylib in Frameworks */ = {isa = PBXBuildFile; fileRef = 60B1D3FB19791F9400ACAC9C /* libsqlite3.dylib */; };
60F91ECE197D2B45009F47D7 /* CoreGraphics.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6083223619795D18008D9F9D /* CoreGraphics.framework */; };
60F91ECF197D2B4B009F47D7 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 60B1D3F919791F8800ACAC9C /* Foundation.framework */; };
60F91ED0197D2B51009F47D7 /* UIKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6083223819795D21008D9F9D /* UIKit.framework */; };
60F91ED1197D2B80009F47D7 /* main.m in Sources */ = {isa = PBXBuildFile; fileRef = 60F91EC6197D1D1C009F47D7 /* main.m */; };
60F91ED7197D2CA2009F47D7 /* libSystem.dylib in Frameworks */ = {isa = PBXBuildFile; fileRef = 60F91ED6197D2CA2009F47D7 /* libSystem.dylib */; };
60F91EDF197D324B009F47D7 /* TestCustomTrack.m in Sources */ = {isa = PBXBuildFile; fileRef = 66E40D4F1836D08D00E5B4A7 /* TestCustomTrack.m */; };
60F91EE0197D324B009F47D7 /* TestHistoryTrack.m in Sources */ = {isa = PBXBuildFile; fileRef = 66E40D501836D08D00E5B4A7 /* TestHistoryTrack.m */; };
60F91EE1197D324B009F47D7 /* TestUndo.m in Sources */ = {isa = PBXBuildFile; fileRef = 66E40D511836D08D00E5B4A7 /* TestUndo.m */; };
60F91EE2197D324B009F47D7 /* TestUndoStackFailedNavigation.m in Sources */ = {isa = PBXBuildFile; fileRef = 66E40D521836D08D00E5B4A7 /* TestUndoStackFailedNavigation.m */; };
60F91EE3197D324B009F47D7 /* TestUndoTrackStore.m in Sources */ = {isa = PBXBuildFile; fileRef = 66E40D531836D08D00E5B4A7 /* TestUndoTrackStore.m */; };
60F91EE4197D324B009F47D7 /* TestUndoTrack.m in Sources */ = {isa = PBXBuildFile; fileRef = 66E725CD18AF50610032F28F /* TestUndoTrack.m */; };
60F91EE5197D324B009F47D7 /* TestUndoStackTrackProtocol.m in Sources */ = {isa = PBXBuildFile; fileRef = 66E40D541836D08D00E5B4A7 /* TestUndoStackTrackProtocol.m */; };
60F91EE6197D324B009F47D7 /* TestUndoUseCases.m in Sources */ = {isa = PBXBuildFile; fileRef = 66E40D551836D08D00E5B4A7 /* TestUndoUseCases.m */; };
60F91EE7197D3263009F47D7 /* TestSynchronization.m in Sources */ = {isa = PBXBuildFile; fileRef = 66E40D4A1836D08D00E5B4A7 /* TestSynchronization.m */; };
60F91EE8197D3263009F47D7 /* TestSynchronizer.m in Sources */ = {isa = PBXBuildFile; fileRef = 66E40D4B1836D08D00E5B4A7 /* TestSynchronizer.m */; };
60F91EE9197D3263009F47D7 /* TestSynchronizerJSONTransport.m in Sources */ = {isa = PBXBuildFile; fileRef = 66E40D4C1836D08D00E5B4A7 /* TestSynchronizerJSONTransport.m */; };
60F91EEA197D3263009F47D7 /* TestSynchronizerMultiUser.m in Sources */ = {isa = PBXBuildFile; fileRef = 66E40D4D1836D08D00E5B4A7 /* TestSynchronizerMultiUser.m */; };
60F91EEB197D3263009F47D7 /* TestSynchronizerCommon.m in Sources */ = {isa = PBXBuildFile; fileRef = 664F2799188E2DC900DF36FC /* TestSynchronizerCommon.m */; };
60F91EEC197D3269009F47D7 /* COSynchronizerFakeMessageTransport.m in Sources */ = {isa = PBXBuildFile; fileRef = 66E40D491836D08D00E5B4A7 /* COSynchronizerFakeMessageTransport.m */; };
60F91EED197D326D009F47D7 /* TestBinaryReadWrite.m in Sources */ = {isa = PBXBuildFile; fileRef = 66E40D421836D08D00E5B4A7 /* TestBinaryReadWrite.m */; };
60F91EEE197D326D009F47D7 /* TestSQLiteStore.m in Sources */ = {isa = PBXBuildFile; fileRef = 66E40D431836D08D00E5B4A7 /* TestSQLiteStore.m */; };
60F91EEF197D326D009F47D7 /* TestSQLiteStoreErrorHandling.m in Sources */ = {isa = PBXBuildFile; fileRef = 66E40D441836D08D00E5B4A7 /* TestSQLiteStoreErrorHandling.m */; };
60F91EF0197D326D009F47D7 /* TestSQLiteStoreMultiPersistentRoots.m in Sources */ = {isa = PBXBuildFile; fileRef = 66E40D451836D08D00E5B4A7 /* TestSQLiteStoreMultiPersistentRoots.m */; };
60F91EF1197D326D009F47D7 /* TestSQLiteStoreSharedPersistentRoots.m in Sources */ = {isa = PBXBuildFile; fileRef = 66E40D461836D08D00E5B4A7 /* TestSQLiteStoreSharedPersistentRoots.m */; };
60F91EF2197D326D009F47D7 /* TestSQLiteStoreRevisionInfos.m in Sources */ = {isa = PBXBuildFile; fileRef = 664F27A3188F4E9600DF36FC /* TestSQLiteStoreRevisionInfos.m */; };
60F91EF3197D3273009F47D7 /* TestItemStableSerialization.m in Sources */ = {isa = PBXBuildFile; fileRef = 66BBB3BB18516ABC005430B1 /* TestItemStableSerialization.m */; };
60F91EF4197D3273009F47D7 /* TestItem.m in Sources */ = {isa = PBXBuildFile; fileRef = 66E40D401836D08D00E5B4A7 /* TestItem.m */; };
60F91EF5197D3273009F47D7 /* TestItemGraph.m in Sources */ = {isa = PBXBuildFile; fileRef = 66EEB2B6186D3CBA003695E6 /* TestItemGraph.m */; };
60F91EF6197D3282009F47D7 /* TestBranch.m in Sources */ = {isa = PBXBuildFile; fileRef = 66E40D2A1836D08D00E5B4A7 /* TestBranch.m */; };
60F91EF7197D3282009F47D7 /* TestConcurrentChanges.m in Sources */ = {isa = PBXBuildFile; fileRef = 66E40D2B1836D08D00E5B4A7 /* TestConcurrentChanges.m */; };
60F91EF8197D3282009F47D7 /* TestCOObjectSynthesizedAccessors.m in Sources */ = {isa = PBXBuildFile; fileRef = 66E40D2C1836D08D00E5B4A7 /* TestCOObjectSynthesizedAccessors.m */; };
60F91EF9197D3282009F47D7 /* TestCopier.m in Sources */ = {isa = PBXBuildFile; fileRef = 66E40D2D1836D08D00E5B4A7 /* TestCopier.m */; };
60F91EFA197D3282009F47D7 /* TestCopierWithIsShared.m in Sources */ = {isa = PBXBuildFile; fileRef = 66E40D2E1836D08D00E5B4A7 /* TestCopierWithIsShared.m */; };
60F91EFB197D3282009F47D7 /* TestCopierWithIsSharedFalseAndMultipleReferences.m in Sources */ = {isa = PBXBuildFile; fileRef = 66E40D2F1836D08D00E5B4A7 /* TestCopierWithIsSharedFalseAndMultipleReferences.m */; };
60F91EFC197D3282009F47D7 /* TestCrossPersistentRootReferences.m in Sources */ = {isa = PBXBuildFile; fileRef = 66E40D301836D08D00E5B4A7 /* TestCrossPersistentRootReferences.m */; };
60F91EFD197D3282009F47D7 /* TestEditingContext.m in Sources */ = {isa = PBXBuildFile; fileRef = 66E40D311836D08D00E5B4A7 /* TestEditingContext.m */; };
60F91EFE197D3282009F47D7 /* TestHistoryInspection.m in Sources */ = {isa = PBXBuildFile; fileRef = 66E40D321836D08D00E5B4A7 /* TestHistoryInspection.m */; };
60F91EFF197D3282009F47D7 /* TestNotifications.m in Sources */ = {isa = PBXBuildFile; fileRef = 66E40D331836D08D00E5B4A7 /* TestNotifications.m */; };
60F91F00197D3282009F47D7 /* TestObject.m in Sources */ = {isa = PBXBuildFile; fileRef = 66E40D341836D08D00E5B4A7 /* TestObject.m */; };
60F91F01197D3282009F47D7 /* TestObjectGraphContext.m in Sources */ = {isa = PBXBuildFile; fileRef = 66E40D351836D08D00E5B4A7 /* TestObjectGraphContext.m */; };
60F91F02197D3282009F47D7 /* TestObjectUpdate.m in Sources */ = {isa = PBXBuildFile; fileRef = 66E40D361836D08D00E5B4A7 /* TestObjectUpdate.m */; };
60F91F03197D3282009F47D7 /* TestPersistentRoot.m in Sources */ = {isa = PBXBuildFile; fileRef = 66E40D371836D08D00E5B4A7 /* TestPersistentRoot.m */; };
60F91F04197D3282009F47D7 /* TestRevisionNumber.m in Sources */ = {isa = PBXBuildFile; fileRef = 66E40D381836D08D00E5B4A7 /* TestRevisionNumber.m */; };
60F91F05197D3282009F47D7 /* TestSerialization.m in Sources */ = {isa = PBXBuildFile; fileRef = 6660B3951839522B009007FD /* TestSerialization.m */; };
60F91F06197D3282009F47D7 /* TestItemGraphDiff.m in Sources */ = {isa = PBXBuildFile; fileRef = 66E40D3A1836D08D00E5B4A7 /* TestItemGraphDiff.m */; };
60F91F07197D3282009F47D7 /* TestMerge.m in Sources */ = {isa = PBXBuildFile; fileRef = 66E40D3B1836D08D00E5B4A7 /* TestMerge.m */; };
60F91F08197D3282009F47D7 /* TestArrayDiff.m in Sources */ = {isa = PBXBuildFile; fileRef = 662CF34D1858547800B90D10 /* TestArrayDiff.m */; };
60F91F09197D3282009F47D7 /* TestDiffCAPI.m in Sources */ = {isa = PBXBuildFile; fileRef = 66EF4275186251A800E15C59 /* TestDiffCAPI.m */; };
60F91F0A197D3282009F47D7 /* TestDiffManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 66B6DC5B187A020900870370 /* TestDiffManager.m */; };
60F91F0B197D3282009F47D7 /* TestCollection.m in Sources */ = {isa = PBXBuildFile; fileRef = 66E40D3D1836D08D00E5B4A7 /* TestCollection.m */; };
60F91F0C197D3282009F47D7 /* TestLibrary.m in Sources */ = {isa = PBXBuildFile; fileRef = 66ACABB0190B180900341D72 /* TestLibrary.m */; };
60F91F0D197D3282009F47D7 /* TestMetamodelCornerCases.m in Sources */ = {isa = PBXBuildFile; fileRef = 66F1985819667265001EAEB0 /* TestMetamodelCornerCases.m */; };
60F91F0E197D3282009F47D7 /* TestValueTransformerAttribute.m in Sources */ = {isa = PBXBuildFile; fileRef = 66E62255185BECF0002A22C1 /* TestValueTransformerAttribute.m */; };
60F91F0F197D3290009F47D7 /* TestKeyedAttribute.m in Sources */ = {isa = PBXBuildFile; fileRef = 6610112B184D2D8A001A3E24 /* TestKeyedAttribute.m */; };
60F91F10197D3290009F47D7 /* TestOrderedAttribute.m in Sources */ = {isa = PBXBuildFile; fileRef = 6610112C184D2D8A001A3E24 /* TestOrderedAttribute.m */; };
60F91F11197D3290009F47D7 /* TestUnivaluedAttribute.m in Sources */ = {isa = PBXBuildFile; fileRef = 6610112D184D2D8A001A3E24 /* TestUnivaluedAttribute.m */; };
60F91F12197D3290009F47D7 /* TestUnorderedAttribute.m in Sources */ = {isa = PBXBuildFile; fileRef = 6610112E184D2D8A001A3E24 /* TestUnorderedAttribute.m */; };
60F91F13197D3290009F47D7 /* TestOrderedCompositeRelationship.m in Sources */ = {isa = PBXBuildFile; fileRef = 6699DDA4184887C30003E803 /* TestOrderedCompositeRelationship.m */; };
60F91F14197D3290009F47D7 /* TestUnivaluedCompositeRelationship.m in Sources */ = {isa = PBXBuildFile; fileRef = 6699DDA5184887C30003E803 /* TestUnivaluedCompositeRelationship.m */; };
60F91F15197D3290009F47D7 /* TestUnorderedCompositeRelationship.m in Sources */ = {isa = PBXBuildFile; fileRef = 6699DDA6184887C30003E803 /* TestUnorderedCompositeRelationship.m */; };
60F91F16197D3291009F47D7 /* TestOrderedRelationship.m in Sources */ = {isa = PBXBuildFile; fileRef = 6699DDAB184887E70003E803 /* TestOrderedRelationship.m */; };
60F91F17197D3291009F47D7 /* TestUnivaluedRelationship.m in Sources */ = {isa = PBXBuildFile; fileRef = 6699DDAE184887F60003E803 /* TestUnivaluedRelationship.m */; };
60F91F18197D3291009F47D7 /* TestUnorderedRelationship.m in Sources */ = {isa = PBXBuildFile; fileRef = 6699DDB1184888050003E803 /* TestUnorderedRelationship.m */; };
60F91F19197D3291009F47D7 /* TestOrderedRelationshipWithOpposite.m in Sources */ = {isa = PBXBuildFile; fileRef = 666888101849961300DBEB10 /* TestOrderedRelationshipWithOpposite.m */; };
60F91F1A197D3291009F47D7 /* TestUnivaluedRelationshipWithOpposite.m in Sources */ = {isa = PBXBuildFile; fileRef = 666888111849961300DBEB10 /* TestUnivaluedRelationshipWithOpposite.m */; };
60F91F1B197D3291009F47D7 /* TestUnorderedRelationshipWithOpposite.m in Sources */ = {isa = PBXBuildFile; fileRef = 666888121849961300DBEB10 /* TestUnorderedRelationshipWithOpposite.m */; };
60F91F1C197D3291009F47D7 /* TestKeyedRelationship.m in Sources */ = {isa = PBXBuildFile; fileRef = 661E2B79184C4C0200226D3D /* TestKeyedRelationship.m */; };
60F91F1D197D3294009F47D7 /* TestCommon.m in Sources */ = {isa = PBXBuildFile; fileRef = 609C00591704C24C00D01AAB /* TestCommon.m */; };
60F91F1E197D32C5009F47D7 /* FolderWithNoClass.m in Sources */ = {isa = PBXBuildFile; fileRef = 6634B3E4196B15AE00C7AD6A /* FolderWithNoClass.m */; };
60F91F1F197D32E2009F47D7 /* OutlineItem.m in Sources */ = {isa = PBXBuildFile; fileRef = 66E451D517CC461F00205679 /* OutlineItem.m */; };
60F91F20197D32E2009F47D7 /* Tag.m in Sources */ = {isa = PBXBuildFile; fileRef = 66E451D817CC565100205679 /* Tag.m */; };
60F91F21197D32E2009F47D7 /* Parent.m in Sources */ = {isa = PBXBuildFile; fileRef = 6621BF0F1847F06D000809CF /* Parent.m */; };
60F91F22197D32E2009F47D7 /* Child.m in Sources */ = {isa = PBXBuildFile; fileRef = 6621BF191847F077000809CF /* Child.m */; };
60F91F23197D32E2009F47D7 /* Folder.m in Sources */ = {isa = PBXBuildFile; fileRef = 6621BF2518482159000809CF /* Folder.m */; };
60F91F24197D32E2009F47D7 /* FolderWithNoClass.m in Sources */ = {isa = PBXBuildFile; fileRef = 6634B3E4196B15AE00C7AD6A /* FolderWithNoClass.m */; };
60F91F25197D32E2009F47D7 /* OrderedGroupNoOpposite.m in Sources */ = {isa = PBXBuildFile; fileRef = 66101154184D89A4001A3E24 /* OrderedGroupNoOpposite.m */; };
60F91F26197D32E2009F47D7 /* UnivaluedGroupNoOpposite.m in Sources */ = {isa = PBXBuildFile; fileRef = 66101157184D8ACB001A3E24 /* UnivaluedGroupNoOpposite.m */; };
60F91F27197D32E2009F47D7 /* UnorderedGroupNoOpposite.m in Sources */ = {isa = PBXBuildFile; fileRef = 6610115A184D8B9E001A3E24 /* UnorderedGroupNoOpposite.m */; };
60F91F28197D32E2009F47D7 /* OrderedGroupWithOpposite.m in Sources */ = {isa = PBXBuildFile; fileRef = 6610115D184D8C30001A3E24 /* OrderedGroupWithOpposite.m */; };
60F91F29197D32E2009F47D7 /* OrderedGroupContent.m in Sources */ = {isa = PBXBuildFile; fileRef = 66101160184D8C4C001A3E24 /* OrderedGroupContent.m */; };
60F91F2A197D32E2009F47D7 /* UnivaluedGroupWithOpposite.m in Sources */ = {isa = PBXBuildFile; fileRef = 66101163184D8C67001A3E24 /* UnivaluedGroupWithOpposite.m */; };
60F91F2B197D32E2009F47D7 /* UnivaluedGroupContent.m in Sources */ = {isa = PBXBuildFile; fileRef = 66101166184D8C83001A3E24 /* UnivaluedGroupContent.m */; };
60F91F2C197D32E2009F47D7 /* UnorderedGroupWithOpposite.m in Sources */ = {isa = PBXBuildFile; fileRef = 66101169184D8CA6001A3E24 /* UnorderedGroupWithOpposite.m */; };
60F91F2D197D32E2009F47D7 /* UnorderedGroupContent.m in Sources */ = {isa = PBXBuildFile; fileRef = 6610116C184D8CB0001A3E24 /* UnorderedGroupContent.m */; };
60F91F2E197D32E2009F47D7 /* KeyedRelationshipModel.m in Sources */ = {isa = PBXBuildFile; fileRef = 6610116F184D8E2D001A3E24 /* KeyedRelationshipModel.m */; };
60F91F2F197D32E2009F47D7 /* KeyedAttributeModel.m in Sources */ = {isa = PBXBuildFile; fileRef = 66101172184D8E7F001A3E24 /* KeyedAttributeModel.m */; };
60F91F30197D32E2009F47D7 /* OrderedAttributeModel.m in Sources */ = {isa = PBXBuildFile; fileRef = 66101175184D8EE5001A3E24 /* OrderedAttributeModel.m */; };
60F91F31197D32E2009F47D7 /* UnivaluedAttributeModel.m in Sources */ = {isa = PBXBuildFile; fileRef = 66101178184D8EF0001A3E24 /* UnivaluedAttributeModel.m */; };
60F91F32197D32E2009F47D7 /* UnorderedAttributeModel.m in Sources */ = {isa = PBXBuildFile; fileRef = 6610117B184D8EFD001A3E24 /* UnorderedAttributeModel.m */; };
60F91F33197D32E2009F47D7 /* OverriddenIsEqualObject.m in Sources */ = {isa = PBXBuildFile; fileRef = 664F8B0118741011001AD224 /* OverriddenIsEqualObject.m */; };
60F91F34197D32E9009F47D7 /* TestAttributedStringCommon.m in Sources */ = {isa = PBXBuildFile; fileRef = 660EE3B1186E3DA600E8C22C /* TestAttributedStringCommon.m */; };
60F91F35197D32E9009F47D7 /* TestAttributedString.m in Sources */ = {isa = PBXBuildFile; fileRef = 66B1FC71187377ED00745859 /* TestAttributedString.m */; };
60F91F36197D32E9009F47D7 /* TestAttributedStringMerge.m in Sources */ = {isa = PBXBuildFile; fileRef = 66A00A20187DFA8D005CFE16 /* TestAttributedStringMerge.m */; };
60F91F37197D32E9009F47D7 /* TestAttributedStringWrapper.m in Sources */ = {isa = PBXBuildFile; fileRef = 660EE3AE186E3D8700E8C22C /* TestAttributedStringWrapper.m */; };
60F91F38197D32E9009F47D7 /* TestAttributedStringAttribute.m in Sources */ = {isa = PBXBuildFile; fileRef = 66BA3D6218DACFAC00641D40 /* TestAttributedStringAttribute.m */; };
60F91F39197D32F2009F47D7 /* 1a.json in Resources */ = {isa = PBXBuildFile; fileRef = 664E075C18C9592700CBFF74 /* 1a.json */; };
60F91F3A197D32F2009F47D7 /* 1b.json in Resources */ = {isa = PBXBuildFile; fileRef = 664E075D18C9592700CBFF74 /* 1b.json */; };
60FA55E01A447A8600A2D8A7 /* COSchemaMigrationDriver.h in Headers */ = {isa = PBXBuildFile; fileRef = 60FA55DE1A447A8600A2D8A7 /* COSchemaMigrationDriver.h */; settings = {ATTRIBUTES = (Public, ); }; };
60FA55E11A447A8600A2D8A7 /* COSchemaMigrationDriver.m in Sources */ = {isa = PBXBuildFile; fileRef = 60FA55DF1A447A8600A2D8A7 /* COSchemaMigrationDriver.m */; };
60FB09D313C3079000C2AB94 /* EtoileFoundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 60FB087D13C3066300C2AB94 /* EtoileFoundation.framework */; };
660179C8182AFA4B006E7D7B /* COSynchronizerRevision.h in Headers */ = {isa = PBXBuildFile; fileRef = 660179C6182AFA4B006E7D7B /* COSynchronizerRevision.h */; settings = {ATTRIBUTES = (Public, ); }; };
660179C9182AFA4B006E7D7B /* COSynchronizerRevision.m in Sources */ = {isa = PBXBuildFile; fileRef = 660179C7182AFA4B006E7D7B /* COSynchronizerRevision.m */; };
660179CC182AFA5D006E7D7B /* COSynchronizerPushedRevisionsToClientMessage.h in Headers */ = {isa = PBXBuildFile; fileRef = 660179CA182AFA5D006E7D7B /* COSynchronizerPushedRevisionsToClientMessage.h */; settings = {ATTRIBUTES = (Public, ); }; };
660179CD182AFA5D006E7D7B /* COSynchronizerPushedRevisionsToClientMessage.m in Sources */ = {isa = PBXBuildFile; fileRef = 660179CB182AFA5D006E7D7B /* COSynchronizerPushedRevisionsToClientMessage.m */; };
660179D0182AFA6B006E7D7B /* COSynchronizerResponseToClientForSentRevisionsMessage.h in Headers */ = {isa = PBXBuildFile; fileRef = 660179CE182AFA6B006E7D7B /* COSynchronizerResponseToClientForSentRevisionsMessage.h */; settings = {ATTRIBUTES = (Public, ); }; };
660179D1182AFA6B006E7D7B /* COSynchronizerResponseToClientForSentRevisionsMessage.m in Sources */ = {isa = PBXBuildFile; fileRef = 660179CF182AFA6B006E7D7B /* COSynchronizerResponseToClientForSentRevisionsMessage.m */; };
660179D4182AFA78006E7D7B /* COSynchronizerPushedRevisionsFromClientMessage.h in Headers */ = {isa = PBXBuildFile; fileRef = 660179D2182AFA78006E7D7B /* COSynchronizerPushedRevisionsFromClientMessage.h */; settings = {ATTRIBUTES = (Public, ); }; };
660179D5182AFA78006E7D7B /* COSynchronizerPushedRevisionsFromClientMessage.m in Sources */ = {isa = PBXBuildFile; fileRef = 660179D3182AFA78006E7D7B /* COSynchronizerPushedRevisionsFromClientMessage.m */; };
66094847178794D40049468B /* COItem+JSON.m in Sources */ = {isa = PBXBuildFile; fileRef = 66094845178794D40049468B /* COItem+JSON.m */; };
66094848178794D40049468B /* COItem+JSON.h in Headers */ = {isa = PBXBuildFile; fileRef = 66094846178794D40049468B /* COItem+JSON.h */; settings = {ATTRIBUTES = (Public, ); }; };
6609485E1787A1160049468B /* CORelationshipCache.m in Sources */ = {isa = PBXBuildFile; fileRef = 6609485C1787A1160049468B /* CORelationshipCache.m */; };
6609485F1787A1160049468B /* CORelationshipCache.h in Headers */ = {isa = PBXBuildFile; fileRef = 6609485D1787A1160049468B /* CORelationshipCache.h */; settings = {ATTRIBUTES = (Public, ); }; };
660D4CD917D5C7CB003C9ACC /* COLeastCommonAncestor.h in Headers */ = {isa = PBXBuildFile; fileRef = 660D4CD717D5C7CB003C9ACC /* COLeastCommonAncestor.h */; settings = {ATTRIBUTES = (Public, ); }; };
660D4CDA17D5C7CB003C9ACC /* COLeastCommonAncestor.m in Sources */ = {isa = PBXBuildFile; fileRef = 660D4CD817D5C7CB003C9ACC /* COLeastCommonAncestor.m */; };
660D4CE517D689FC003C9ACC /* COMergeInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = 660D4CE317D689FC003C9ACC /* COMergeInfo.h */; settings = {ATTRIBUTES = (Public, ); }; };
660D4CE617D689FC003C9ACC /* COMergeInfo.m in Sources */ = {isa = PBXBuildFile; fileRef = 660D4CE417D689FC003C9ACC /* COMergeInfo.m */; };
660EE3A5186E072500E8C22C /* TestAttributedStringDiffOperations.m in Sources */ = {isa = PBXBuildFile; fileRef = 660EE3A4186E072500E8C22C /* TestAttributedStringDiffOperations.m */; };
660EE3AF186E3D8700E8C22C /* TestAttributedStringWrapper.m in Sources */ = {isa = PBXBuildFile; fileRef = 660EE3AE186E3D8700E8C22C /* TestAttributedStringWrapper.m */; };
660EE3B2186E3DA600E8C22C /* TestAttributedStringCommon.m in Sources */ = {isa = PBXBuildFile; fileRef = 660EE3B1186E3DA600E8C22C /* TestAttributedStringCommon.m */; };
6610112F184D2D8A001A3E24 /* TestKeyedAttribute.m in Sources */ = {isa = PBXBuildFile; fileRef = 6610112B184D2D8A001A3E24 /* TestKeyedAttribute.m */; };
66101130184D2D8A001A3E24 /* TestOrderedAttribute.m in Sources */ = {isa = PBXBuildFile; fileRef = 6610112C184D2D8A001A3E24 /* TestOrderedAttribute.m */; };
66101131184D2D8A001A3E24 /* TestUnivaluedAttribute.m in Sources */ = {isa = PBXBuildFile; fileRef = 6610112D184D2D8A001A3E24 /* TestUnivaluedAttribute.m */; };
66101132184D2D8A001A3E24 /* TestUnorderedAttribute.m in Sources */ = {isa = PBXBuildFile; fileRef = 6610112E184D2D8A001A3E24 /* TestUnorderedAttribute.m */; };
66101155184D89A4001A3E24 /* OrderedGroupNoOpposite.m in Sources */ = {isa = PBXBuildFile; fileRef = 66101154184D89A4001A3E24 /* OrderedGroupNoOpposite.m */; };
66101158184D8ACB001A3E24 /* UnivaluedGroupNoOpposite.m in Sources */ = {isa = PBXBuildFile; fileRef = 66101157184D8ACB001A3E24 /* UnivaluedGroupNoOpposite.m */; };
6610115B184D8B9E001A3E24 /* UnorderedGroupNoOpposite.m in Sources */ = {isa = PBXBuildFile; fileRef = 6610115A184D8B9E001A3E24 /* UnorderedGroupNoOpposite.m */; };
6610115E184D8C30001A3E24 /* OrderedGroupWithOpposite.m in Sources */ = {isa = PBXBuildFile; fileRef = 6610115D184D8C30001A3E24 /* OrderedGroupWithOpposite.m */; };
66101161184D8C4C001A3E24 /* OrderedGroupContent.m in Sources */ = {isa = PBXBuildFile; fileRef = 66101160184D8C4C001A3E24 /* OrderedGroupContent.m */; };
66101164184D8C67001A3E24 /* UnivaluedGroupWithOpposite.m in Sources */ = {isa = PBXBuildFile; fileRef = 66101163184D8C67001A3E24 /* UnivaluedGroupWithOpposite.m */; };
66101167184D8C83001A3E24 /* UnivaluedGroupContent.m in Sources */ = {isa = PBXBuildFile; fileRef = 66101166184D8C83001A3E24 /* UnivaluedGroupContent.m */; };
6610116A184D8CA6001A3E24 /* UnorderedGroupWithOpposite.m in Sources */ = {isa = PBXBuildFile; fileRef = 66101169184D8CA6001A3E24 /* UnorderedGroupWithOpposite.m */; };
6610116D184D8CB0001A3E24 /* UnorderedGroupContent.m in Sources */ = {isa = PBXBuildFile; fileRef = 6610116C184D8CB0001A3E24 /* UnorderedGroupContent.m */; };
66101170184D8E2D001A3E24 /* KeyedRelationshipModel.m in Sources */ = {isa = PBXBuildFile; fileRef = 6610116F184D8E2D001A3E24 /* KeyedRelationshipModel.m */; };
66101173184D8E7F001A3E24 /* KeyedAttributeModel.m in Sources */ = {isa = PBXBuildFile; fileRef = 66101172184D8E7F001A3E24 /* KeyedAttributeModel.m */; };
66101176184D8EE5001A3E24 /* OrderedAttributeModel.m in Sources */ = {isa = PBXBuildFile; fileRef = 66101175184D8EE5001A3E24 /* OrderedAttributeModel.m */; };
66101179184D8EF0001A3E24 /* UnivaluedAttributeModel.m in Sources */ = {isa = PBXBuildFile; fileRef = 66101178184D8EF0001A3E24 /* UnivaluedAttributeModel.m */; };
6610117C184D8EFD001A3E24 /* UnorderedAttributeModel.m in Sources */ = {isa = PBXBuildFile; fileRef = 6610117B184D8EFD001A3E24 /* UnorderedAttributeModel.m */; };
661211401821986B003AEC29 /* CODateSerialization.h in Headers */ = {isa = PBXBuildFile; fileRef = 6612113E1821986B003AEC29 /* CODateSerialization.h */; settings = {ATTRIBUTES = (Public, ); }; };
661211411821986B003AEC29 /* CODateSerialization.m in Sources */ = {isa = PBXBuildFile; fileRef = 6612113F1821986B003AEC29 /* CODateSerialization.m */; };
661E2B7A184C4C0200226D3D /* TestKeyedRelationship.m in Sources */ = {isa = PBXBuildFile; fileRef = 661E2B79184C4C0200226D3D /* TestKeyedRelationship.m */; };
6621BF101847F06D000809CF /* Parent.m in Sources */ = {isa = PBXBuildFile; fileRef = 6621BF0F1847F06D000809CF /* Parent.m */; };
6621BF1A1847F077000809CF /* Child.m in Sources */ = {isa = PBXBuildFile; fileRef = 6621BF191847F077000809CF /* Child.m */; };
6621BF2618482159000809CF /* Folder.m in Sources */ = {isa = PBXBuildFile; fileRef = 6621BF2518482159000809CF /* Folder.m */; };
662AC93D1802297100B088F2 /* COEndOfUndoTrackPlaceholderNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 662AC93B1802297100B088F2 /* COEndOfUndoTrackPlaceholderNode.h */; settings = {ATTRIBUTES = (Public, ); }; };
662AC93E1802297100B088F2 /* COEndOfUndoTrackPlaceholderNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 662AC93C1802297100B088F2 /* COEndOfUndoTrackPlaceholderNode.m */; };
662CF34E1858547800B90D10 /* TestArrayDiff.m in Sources */ = {isa = PBXBuildFile; fileRef = 662CF34D1858547800B90D10 /* TestArrayDiff.m */; };
662FFB7F17C2026000BA3F2F /* COCommandUndeletePersistentRoot.h in Headers */ = {isa = PBXBuildFile; fileRef = 662FFB7D17C2026000BA3F2F /* COCommandUndeletePersistentRoot.h */; settings = {ATTRIBUTES = (Public, ); }; };
662FFB8017C2026000BA3F2F /* COCommandUndeletePersistentRoot.m in Sources */ = {isa = PBXBuildFile; fileRef = 662FFB7E17C2026000BA3F2F /* COCommandUndeletePersistentRoot.m */; };
662FFB9E17C2DE8100BA3F2F /* COCommandUndeleteBranch.h in Headers */ = {isa = PBXBuildFile; fileRef = 662FFB9C17C2DE8100BA3F2F /* COCommandUndeleteBranch.h */; settings = {ATTRIBUTES = (Public, ); }; };
662FFB9F17C2DE8100BA3F2F /* COCommandUndeleteBranch.m in Sources */ = {isa = PBXBuildFile; fileRef = 662FFB9D17C2DE8100BA3F2F /* COCommandUndeleteBranch.m */; };
6633F10E185515F1009CE6F7 /* COColorToHTMLString.h in Headers */ = {isa = PBXBuildFile; fileRef = 6633F10A185515F1009CE6F7 /* COColorToHTMLString.h */; settings = {ATTRIBUTES = (Public, ); }; };
6633F10F185515F1009CE6F7 /* COColorToHTMLString.m in Sources */ = {isa = PBXBuildFile; fileRef = 6633F10B185515F1009CE6F7 /* COColorToHTMLString.m */; };
6633F110185515F1009CE6F7 /* CORectToString.h in Headers */ = {isa = PBXBuildFile; fileRef = 6633F10C185515F1009CE6F7 /* CORectToString.h */; settings = {ATTRIBUTES = (Public, ); }; };
6633F111185515F1009CE6F7 /* CORectToString.m in Sources */ = {isa = PBXBuildFile; fileRef = 6633F10D185515F1009CE6F7 /* CORectToString.m */; };
6633F1141855169E009CE6F7 /* COAttributedString.h in Headers */ = {isa = PBXBuildFile; fileRef = 6633F1121855169E009CE6F7 /* COAttributedString.h */; settings = {ATTRIBUTES = (Public, ); }; };
6633F1151855169E009CE6F7 /* COAttributedString.m in Sources */ = {isa = PBXBuildFile; fileRef = 6633F1131855169E009CE6F7 /* COAttributedString.m */; };
6633F118185516AB009CE6F7 /* COAttributedStringChunk.h in Headers */ = {isa = PBXBuildFile; fileRef = 6633F116185516AB009CE6F7 /* COAttributedStringChunk.h */; settings = {ATTRIBUTES = (Public, ); }; };
6633F119185516AB009CE6F7 /* COAttributedStringChunk.m in Sources */ = {isa = PBXBuildFile; fileRef = 6633F117185516AB009CE6F7 /* COAttributedStringChunk.m */; };
6633F11C185516B5009CE6F7 /* COBezierPath.h in Headers */ = {isa = PBXBuildFile; fileRef = 6633F11A185516B5009CE6F7 /* COBezierPath.h */; settings = {ATTRIBUTES = (Public, ); }; };
6633F11D185516B5009CE6F7 /* COBezierPath.m in Sources */ = {isa = PBXBuildFile; fileRef = 6633F11B185516B5009CE6F7 /* COBezierPath.m */; };
6633F12218552570009CE6F7 /* TestAttributedStringDiff.m in Sources */ = {isa = PBXBuildFile; fileRef = 6633F12118552570009CE6F7 /* TestAttributedStringDiff.m */; };
66392DD019122B4F006299EB /* COBranch+Private.h in Headers */ = {isa = PBXBuildFile; fileRef = 6646975517CDA94000A1B767 /* COBranch+Private.h */; settings = {ATTRIBUTES = (Public, ); }; };
663CE29517C07ED800E729F5 /* COCommand.h in Headers */ = {isa = PBXBuildFile; fileRef = 663CE28717C07ED800E729F5 /* COCommand.h */; settings = {ATTRIBUTES = (Public, ); }; };
663CE29617C07ED800E729F5 /* COCommand.m in Sources */ = {isa = PBXBuildFile; fileRef = 663CE28817C07ED800E729F5 /* COCommand.m */; };
663CE29917C07ED800E729F5 /* COCommandDeleteBranch.h in Headers */ = {isa = PBXBuildFile; fileRef = 663CE28B17C07ED800E729F5 /* COCommandDeleteBranch.h */; settings = {ATTRIBUTES = (Public, ); }; };
663CE29A17C07ED800E729F5 /* COCommandDeleteBranch.m in Sources */ = {isa = PBXBuildFile; fileRef = 663CE28C17C07ED800E729F5 /* COCommandDeleteBranch.m */; };
663CE29B17C07ED800E729F5 /* COCommandSetBranchMetadata.h in Headers */ = {isa = PBXBuildFile; fileRef = 663CE28D17C07ED800E729F5 /* COCommandSetBranchMetadata.h */; settings = {ATTRIBUTES = (Public, ); }; };
663CE29C17C07ED800E729F5 /* COCommandSetBranchMetadata.m in Sources */ = {isa = PBXBuildFile; fileRef = 663CE28E17C07ED800E729F5 /* COCommandSetBranchMetadata.m */; };
663CE29D17C07ED800E729F5 /* COCommandSetCurrentBranch.h in Headers */ = {isa = PBXBuildFile; fileRef = 663CE28F17C07ED800E729F5 /* COCommandSetCurrentBranch.h */; settings = {ATTRIBUTES = (Public, ); }; };
663CE29E17C07ED800E729F5 /* COCommandSetCurrentBranch.m in Sources */ = {isa = PBXBuildFile; fileRef = 663CE29017C07ED800E729F5 /* COCommandSetCurrentBranch.m */; };
663CE29F17C07ED800E729F5 /* COCommandSetCurrentVersionForBranch.h in Headers */ = {isa = PBXBuildFile; fileRef = 663CE29117C07ED800E729F5 /* COCommandSetCurrentVersionForBranch.h */; settings = {ATTRIBUTES = (Public, ); }; };
663CE2A017C07ED800E729F5 /* COCommandSetCurrentVersionForBranch.m in Sources */ = {isa = PBXBuildFile; fileRef = 663CE29217C07ED800E729F5 /* COCommandSetCurrentVersionForBranch.m */; };
663CE2A117C07ED800E729F5 /* COUndoTrackStore.h in Headers */ = {isa = PBXBuildFile; fileRef = 663CE29317C07ED800E729F5 /* COUndoTrackStore.h */; settings = {ATTRIBUTES = (Public, ); }; };
663CE2A217C07ED800E729F5 /* COUndoTrackStore.m in Sources */ = {isa = PBXBuildFile; fileRef = 663CE29417C07ED800E729F5 /* COUndoTrackStore.m */; };
663CE2B617C0B05900E729F5 /* COEditingContext+Undo.h in Headers */ = {isa = PBXBuildFile; fileRef = 663CE2B417C0B05800E729F5 /* COEditingContext+Undo.h */; settings = {ATTRIBUTES = (Public, ); }; };
663CE2B717C0B05900E729F5 /* COEditingContext+Undo.m in Sources */ = {isa = PBXBuildFile; fileRef = 663CE2B517C0B05800E729F5 /* COEditingContext+Undo.m */; };
663CE2BC17C15A4800E729F5 /* COCommandGroup.h in Headers */ = {isa = PBXBuildFile; fileRef = 663CE2BA17C15A4800E729F5 /* COCommandGroup.h */; settings = {ATTRIBUTES = (Public, ); }; };
663CE2BD17C15A4800E729F5 /* COCommandGroup.m in Sources */ = {isa = PBXBuildFile; fileRef = 663CE2BB17C15A4800E729F5 /* COCommandGroup.m */; };
663CE2BF17C1815B00E729F5 /* COCommandDeletePersistentRoot.m in Sources */ = {isa = PBXBuildFile; fileRef = 663CE2B217C09DE700E729F5 /* COCommandDeletePersistentRoot.m */; };
663E9B9F182B85790083AC46 /* COSynchronizerPersistentRootInfoToClientMessage.h in Headers */ = {isa = PBXBuildFile; fileRef = 663E9B9D182B85790083AC46 /* COSynchronizerPersistentRootInfoToClientMessage.h */; settings = {ATTRIBUTES = (Public, ); }; };
663E9BA0182B85790083AC46 /* COSynchronizerPersistentRootInfoToClientMessage.m in Sources */ = {isa = PBXBuildFile; fileRef = 663E9B9E182B85790083AC46 /* COSynchronizerPersistentRootInfoToClientMessage.m */; };
663E9BAA182D8A890083AC46 /* COSynchronizerUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 663E9BA8182D8A890083AC46 /* COSynchronizerUtils.h */; settings = {ATTRIBUTES = (Public, ); }; };
663E9BAB182D8A890083AC46 /* COSynchronizerUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = 663E9BA9182D8A890083AC46 /* COSynchronizerUtils.m */; };
66405DC3182A0D4D00A6EF7A /* COSynchronizerClient.h in Headers */ = {isa = PBXBuildFile; fileRef = 66405DC1182A0D4D00A6EF7A /* COSynchronizerClient.h */; settings = {ATTRIBUTES = (Public, ); }; };
66405DC4182A0D4D00A6EF7A /* COSynchronizerClient.m in Sources */ = {isa = PBXBuildFile; fileRef = 66405DC2182A0D4D00A6EF7A /* COSynchronizerClient.m */; };
66405DD1182A255800A6EF7A /* COSynchronizerServer.h in Headers */ = {isa = PBXBuildFile; fileRef = 66405DCF182A255800A6EF7A /* COSynchronizerServer.h */; settings = {ATTRIBUTES = (Public, ); }; };
66405DD2182A255800A6EF7A /* COSynchronizerServer.m in Sources */ = {isa = PBXBuildFile; fileRef = 66405DD0182A255800A6EF7A /* COSynchronizerServer.m */; };
66457FB517E8BFE5003C51A8 /* COStoreCreateBranch.h in Headers */ = {isa = PBXBuildFile; fileRef = 66457F9F17E8BFE5003C51A8 /* COStoreCreateBranch.h */; settings = {ATTRIBUTES = (Public, ); }; };
66457FB617E8BFE5003C51A8 /* COStoreCreateBranch.m in Sources */ = {isa = PBXBuildFile; fileRef = 66457FA017E8BFE5003C51A8 /* COStoreCreateBranch.m */; };
66457FB717E8BFE5003C51A8 /* COStoreCreatePersistentRoot.h in Headers */ = {isa = PBXBuildFile; fileRef = 66457FA117E8BFE5003C51A8 /* COStoreCreatePersistentRoot.h */; settings = {ATTRIBUTES = (Public, ); }; };
66457FB817E8BFE5003C51A8 /* COStoreCreatePersistentRoot.m in Sources */ = {isa = PBXBuildFile; fileRef = 66457FA217E8BFE5003C51A8 /* COStoreCreatePersistentRoot.m */; };
66457FB917E8BFE5003C51A8 /* COStoreDeleteBranch.h in Headers */ = {isa = PBXBuildFile; fileRef = 66457FA317E8BFE5003C51A8 /* COStoreDeleteBranch.h */; settings = {ATTRIBUTES = (Public, ); }; };
66457FBA17E8BFE5003C51A8 /* COStoreDeleteBranch.m in Sources */ = {isa = PBXBuildFile; fileRef = 66457FA417E8BFE5003C51A8 /* COStoreDeleteBranch.m */; };
66457FBB17E8BFE5003C51A8 /* COStoreDeletePersistentRoot.h in Headers */ = {isa = PBXBuildFile; fileRef = 66457FA517E8BFE5003C51A8 /* COStoreDeletePersistentRoot.h */; settings = {ATTRIBUTES = (Public, ); }; };
66457FBC17E8BFE5003C51A8 /* COStoreDeletePersistentRoot.m in Sources */ = {isa = PBXBuildFile; fileRef = 66457FA617E8BFE5003C51A8 /* COStoreDeletePersistentRoot.m */; };
66457FBD17E8BFE5003C51A8 /* COStoreSetBranchMetadata.h in Headers */ = {isa = PBXBuildFile; fileRef = 66457FA717E8BFE5003C51A8 /* COStoreSetBranchMetadata.h */; settings = {ATTRIBUTES = (Public, ); }; };
66457FBE17E8BFE5003C51A8 /* COStoreSetBranchMetadata.m in Sources */ = {isa = PBXBuildFile; fileRef = 66457FA817E8BFE5003C51A8 /* COStoreSetBranchMetadata.m */; };
66457FBF17E8BFE5003C51A8 /* COStoreSetCurrentBranch.h in Headers */ = {isa = PBXBuildFile; fileRef = 66457FA917E8BFE5003C51A8 /* COStoreSetCurrentBranch.h */; settings = {ATTRIBUTES = (Public, ); }; };
66457FC017E8BFE5003C51A8 /* COStoreSetCurrentBranch.m in Sources */ = {isa = PBXBuildFile; fileRef = 66457FAA17E8BFE5003C51A8 /* COStoreSetCurrentBranch.m */; };
66457FC117E8BFE5003C51A8 /* COStoreSetCurrentRevision.h in Headers */ = {isa = PBXBuildFile; fileRef = 66457FAB17E8BFE5003C51A8 /* COStoreSetCurrentRevision.h */; settings = {ATTRIBUTES = (Public, ); }; };
66457FC217E8BFE5003C51A8 /* COStoreSetCurrentRevision.m in Sources */ = {isa = PBXBuildFile; fileRef = 66457FAC17E8BFE5003C51A8 /* COStoreSetCurrentRevision.m */; };
66457FC317E8BFE5003C51A8 /* COStoreTransaction.h in Headers */ = {isa = PBXBuildFile; fileRef = 66457FAD17E8BFE5003C51A8 /* COStoreTransaction.h */; settings = {ATTRIBUTES = (Public, ); }; };
66457FC417E8BFE5003C51A8 /* COStoreTransaction.m in Sources */ = {isa = PBXBuildFile; fileRef = 66457FAE17E8BFE5003C51A8 /* COStoreTransaction.m */; };
66457FC517E8BFE5003C51A8 /* COStoreUndeleteBranch.h in Headers */ = {isa = PBXBuildFile; fileRef = 66457FAF17E8BFE5003C51A8 /* COStoreUndeleteBranch.h */; settings = {ATTRIBUTES = (Public, ); }; };
66457FC617E8BFE5003C51A8 /* COStoreUndeleteBranch.m in Sources */ = {isa = PBXBuildFile; fileRef = 66457FB017E8BFE5003C51A8 /* COStoreUndeleteBranch.m */; };
66457FC717E8BFE5003C51A8 /* COStoreUndeletePersistentRoot.h in Headers */ = {isa = PBXBuildFile; fileRef = 66457FB117E8BFE5003C51A8 /* COStoreUndeletePersistentRoot.h */; settings = {ATTRIBUTES = (Public, ); }; };
66457FC817E8BFE5003C51A8 /* COStoreUndeletePersistentRoot.m in Sources */ = {isa = PBXBuildFile; fileRef = 66457FB217E8BFE5003C51A8 /* COStoreUndeletePersistentRoot.m */; };
66457FC917E8BFE5003C51A8 /* COStoreWriteRevision.h in Headers */ = {isa = PBXBuildFile; fileRef = 66457FB317E8BFE5003C51A8 /* COStoreWriteRevision.h */; settings = {ATTRIBUTES = (Public, ); }; };
66457FCA17E8BFE5003C51A8 /* COStoreWriteRevision.m in Sources */ = {isa = PBXBuildFile; fileRef = 66457FB417E8BFE5003C51A8 /* COStoreWriteRevision.m */; };
66457FCF17E8C9D0003C51A8 /* COStoreAction.h in Headers */ = {isa = PBXBuildFile; fileRef = 66457FCD17E8C9CF003C51A8 /* COStoreAction.h */; settings = {ATTRIBUTES = (Public, ); }; };
66457FEC17E9683F003C51A8 /* CORevisionCache.h in Headers */ = {isa = PBXBuildFile; fileRef = 66457FEA17E9683E003C51A8 /* CORevisionCache.h */; settings = {ATTRIBUTES = (Public, ); }; };
66457FED17E9683F003C51A8 /* CORevisionCache.m in Sources */ = {isa = PBXBuildFile; fileRef = 66457FEB17E9683F003C51A8 /* CORevisionCache.m */; };
6646974A17CDA78300A1B767 /* COEditingContext+Private.h in Headers */ = {isa = PBXBuildFile; fileRef = 6646974917CDA78300A1B767 /* COEditingContext+Private.h */; settings = {ATTRIBUTES = (Public, ); }; };
6646975417CDA8DC00A1B767 /* COPersistentRoot+Private.h in Headers */ = {isa = PBXBuildFile; fileRef = 6646975317CDA8DB00A1B767 /* COPersistentRoot+Private.h */; settings = {ATTRIBUTES = (Public, ); }; };
6646976317CDB94300A1B767 /* COUndoTrack.h in Headers */ = {isa = PBXBuildFile; fileRef = 6646976117CDB94300A1B767 /* COUndoTrack.h */; settings = {ATTRIBUTES = (Public, ); }; };
6646976417CDB94300A1B767 /* COUndoTrack.m in Sources */ = {isa = PBXBuildFile; fileRef = 6646976217CDB94300A1B767 /* COUndoTrack.m */; };
6646977B17CE7CAC00A1B767 /* COSynchronizationClient.h in Headers */ = {isa = PBXBuildFile; fileRef = 6646977917CE7CAC00A1B767 /* COSynchronizationClient.h */; settings = {ATTRIBUTES = (Public, ); }; };
6646977C17CE7CAC00A1B767 /* COSynchronizationClient.m in Sources */ = {isa = PBXBuildFile; fileRef = 6646977A17CE7CAC00A1B767 /* COSynchronizationClient.m */; };
6646977F17CE7E2600A1B767 /* COSynchronizationServer.h in Headers */ = {isa = PBXBuildFile; fileRef = 6646977D17CE7E2600A1B767 /* COSynchronizationServer.h */; settings = {ATTRIBUTES = (Public, ); }; };
6646978017CE7E2600A1B767 /* COSynchronizationServer.m in Sources */ = {isa = PBXBuildFile; fileRef = 6646977E17CE7E2600A1B767 /* COSynchronizationServer.m */; };
6646982E17D1C50800A1B767 /* COSQLiteStore+Private.h in Headers */ = {isa = PBXBuildFile; fileRef = 6646982D17D1C50800A1B767 /* COSQLiteStore+Private.h */; settings = {ATTRIBUTES = (Public, ); }; };
6646985A17D3C55600A1B767 /* COObjectGraphContext+Private.h in Headers */ = {isa = PBXBuildFile; fileRef = 6646985917D3C55500A1B767 /* COObjectGraphContext+Private.h */; settings = {ATTRIBUTES = (Public, ); }; };
66488DFE18DA41B9009F4C55 /* TestAttributedStringDiffPerformance.m in Sources */ = {isa = PBXBuildFile; fileRef = 66488DEF18DA3F6D009F4C55 /* TestAttributedStringDiffPerformance.m */; };
664E076E18C95BF700CBFF74 /* 1a.json in CopyFiles */ = {isa = PBXBuildFile; fileRef = 664E075C18C9592700CBFF74 /* 1a.json */; };
664E076F18C95BF900CBFF74 /* 1b.json in CopyFiles */ = {isa = PBXBuildFile; fileRef = 664E075D18C9592700CBFF74 /* 1b.json */; };
664F279A188E2DC900DF36FC /* TestSynchronizerCommon.m in Sources */ = {isa = PBXBuildFile; fileRef = 664F2799188E2DC900DF36FC /* TestSynchronizerCommon.m */; };
664F279D188E683400DF36FC /* TestSynchronizerPerformance.m in Sources */ = {isa = PBXBuildFile; fileRef = 664F279C188E683400DF36FC /* TestSynchronizerPerformance.m */; };
664F279E188E699B00DF36FC /* OrderedGroupNoOpposite.m in Sources */ = {isa = PBXBuildFile; fileRef = 66101154184D89A4001A3E24 /* OrderedGroupNoOpposite.m */; };
664F279F188E699B00DF36FC /* UnorderedGroupNoOpposite.m in Sources */ = {isa = PBXBuildFile; fileRef = 6610115A184D8B9E001A3E24 /* UnorderedGroupNoOpposite.m */; };
664F27A0188E69AD00DF36FC /* TestSynchronizerCommon.m in Sources */ = {isa = PBXBuildFile; fileRef = 664F2799188E2DC900DF36FC /* TestSynchronizerCommon.m */; };
664F27A1188E69C000DF36FC /* COSynchronizerFakeMessageTransport.m in Sources */ = {isa = PBXBuildFile; fileRef = 66E40D491836D08D00E5B4A7 /* COSynchronizerFakeMessageTransport.m */; };
664F27A4188F4E9600DF36FC /* TestSQLiteStoreRevisionInfos.m in Sources */ = {isa = PBXBuildFile; fileRef = 664F27A3188F4E9600DF36FC /* TestSQLiteStoreRevisionInfos.m */; };
664F8B0218741011001AD224 /* OverriddenIsEqualObject.m in Sources */ = {isa = PBXBuildFile; fileRef = 664F8B0118741011001AD224 /* OverriddenIsEqualObject.m */; };
664F8B1618762411001AD224 /* CODiffManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 664F8B1418762411001AD224 /* CODiffManager.h */; settings = {ATTRIBUTES = (Public, ); }; };
664F8B1718762411001AD224 /* CODiffManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 664F8B1518762411001AD224 /* CODiffManager.m */; };
66539E0C1860472E0077FB18 /* COAttributedStringWrapper.h in Headers */ = {isa = PBXBuildFile; fileRef = 66539E0A1860472E0077FB18 /* COAttributedStringWrapper.h */; settings = {ATTRIBUTES = (Public, ); }; };
66539E0D1860472E0077FB18 /* COAttributedStringWrapper.m in Sources */ = {isa = PBXBuildFile; fileRef = 66539E0B1860472E0077FB18 /* COAttributedStringWrapper.m */; };
66550BF717D51CB100327657 /* main.m in Sources */ = {isa = PBXBuildFile; fileRef = 66550BF617D51CB100327657 /* main.m */; };
66550BF817D51CB800327657 /* TestObjectGraphPerformance.m in Sources */ = {isa = PBXBuildFile; fileRef = 66550BE817D51C6100327657 /* TestObjectGraphPerformance.m */; };
66550BF917D51CBD00327657 /* CoreObject.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6686BDAC12592BDA0065DE1A /* CoreObject.framework */; };
66550C0317D51D1800327657 /* TestCommon.m in Sources */ = {isa = PBXBuildFile; fileRef = 609C00591704C24C00D01AAB /* TestCommon.m */; };
66550C0417D51D2700327657 /* OutlineItem.m in Sources */ = {isa = PBXBuildFile; fileRef = 66E451D517CC461F00205679 /* OutlineItem.m */; };
66550C0517D51D2700327657 /* Tag.m in Sources */ = {isa = PBXBuildFile; fileRef = 66E451D817CC565100205679 /* Tag.m */; };
66550C0717D51D9000327657 /* TestSQLiteStorePerformance.m in Sources */ = {isa = PBXBuildFile; fileRef = 66550C0617D51D9000327657 /* TestSQLiteStorePerformance.m */; };
66550C0917D51E8F00327657 /* TestBinaryReadWritePerformance.m in Sources */ = {isa = PBXBuildFile; fileRef = 66550C0817D51E8F00327657 /* TestBinaryReadWritePerformance.m */; };
66568C92189598BB0075FD9A /* TestMultiplePersistentRootPerformance.m in Sources */ = {isa = PBXBuildFile; fileRef = 66568C91189598BB0075FD9A /* TestMultiplePersistentRootPerformance.m */; };
6660B3961839522B009007FD /* TestSerialization.m in Sources */ = {isa = PBXBuildFile; fileRef = 6660B3951839522B009007FD /* TestSerialization.m */; };
6660B3A01839659D009007FD /* COAttachmentID.h in Headers */ = {isa = PBXBuildFile; fileRef = 6660B39E1839659D009007FD /* COAttachmentID.h */; settings = {ATTRIBUTES = (Public, ); }; };
6660B3A11839659D009007FD /* COAttachmentID.m in Sources */ = {isa = PBXBuildFile; fileRef = 6660B39F1839659D009007FD /* COAttachmentID.m */; };
666888131849961300DBEB10 /* TestOrderedRelationshipWithOpposite.m in Sources */ = {isa = PBXBuildFile; fileRef = 666888101849961300DBEB10 /* TestOrderedRelationshipWithOpposite.m */; };
666888141849961300DBEB10 /* TestUnivaluedRelationshipWithOpposite.m in Sources */ = {isa = PBXBuildFile; fileRef = 666888111849961300DBEB10 /* TestUnivaluedRelationshipWithOpposite.m */; };
666888151849961300DBEB10 /* TestUnorderedRelationshipWithOpposite.m in Sources */ = {isa = PBXBuildFile; fileRef = 666888121849961300DBEB10 /* TestUnorderedRelationshipWithOpposite.m */; };
6675F8C11785C02A001E5622 /* COItem.h in Headers */ = {isa = PBXBuildFile; fileRef = 6675F8BA1785C02A001E5622 /* COItem.h */; settings = {ATTRIBUTES = (Public, ); }; };
6675F8C21785C02A001E5622 /* COItem.m in Sources */ = {isa = PBXBuildFile; fileRef = 6675F8BB1785C02A001E5622 /* COItem.m */; };
6675F8C31785C02A001E5622 /* COItemGraph.h in Headers */ = {isa = PBXBuildFile; fileRef = 6675F8BC1785C02A001E5622 /* COItemGraph.h */; settings = {ATTRIBUTES = (Public, ); }; };
6675F8C41785C02A001E5622 /* COItemGraph.m in Sources */ = {isa = PBXBuildFile; fileRef = 6675F8BD1785C02A001E5622 /* COItemGraph.m */; };
6675F8C51785C02A001E5622 /* COPath.h in Headers */ = {isa = PBXBuildFile; fileRef = 6675F8BE1785C02A001E5622 /* COPath.h */; settings = {ATTRIBUTES = (Public, ); }; };
6675F8C61785C02A001E5622 /* COPath.m in Sources */ = {isa = PBXBuildFile; fileRef = 6675F8BF1785C02A001E5622 /* COPath.m */; };
6675F8C71785C02A001E5622 /* COType.h in Headers */ = {isa = PBXBuildFile; fileRef = 6675F8C01785C02A001E5622 /* COType.h */; settings = {ATTRIBUTES = (Public, ); }; };
6680846D178CD526003A3CC6 /* COCopier.h in Headers */ = {isa = PBXBuildFile; fileRef = 6680846B178CD526003A3CC6 /* COCopier.h */; settings = {ATTRIBUTES = (Public, ); }; };
6680846E178CD526003A3CC6 /* COCopier.m in Sources */ = {isa = PBXBuildFile; fileRef = 6680846C178CD526003A3CC6 /* COCopier.m */; };
6680848A178DAFE3003A3CC6 /* COArrayDiff.h in Headers */ = {isa = PBXBuildFile; fileRef = 6680847F178DAFE3003A3CC6 /* COArrayDiff.h */; settings = {ATTRIBUTES = (Public, ); }; };
6680848B178DAFE3003A3CC6 /* COArrayDiff.m in Sources */ = {isa = PBXBuildFile; fileRef = 66808480178DAFE3003A3CC6 /* COArrayDiff.m */; };
6680848C178DAFE3003A3CC6 /* COItemGraphDiff.h in Headers */ = {isa = PBXBuildFile; fileRef = 66808481178DAFE3003A3CC6 /* COItemGraphDiff.h */; settings = {ATTRIBUTES = (Public, ); }; };
6680848D178DAFE3003A3CC6 /* COItemGraphDiff.m in Sources */ = {isa = PBXBuildFile; fileRef = 66808482178DAFE3003A3CC6 /* COItemGraphDiff.m */; };
66808490178DAFE3003A3CC6 /* COItemGraphEdit.h in Headers */ = {isa = PBXBuildFile; fileRef = 66808485178DAFE3003A3CC6 /* COItemGraphEdit.h */; settings = {ATTRIBUTES = (Public, ); }; };
66808491178DAFE3003A3CC6 /* COItemGraphEdit.m in Sources */ = {isa = PBXBuildFile; fileRef = 66808486178DAFE3003A3CC6 /* COItemGraphEdit.m */; };
66808492178DAFE3003A3CC6 /* diff.cc in Sources */ = {isa = PBXBuildFile; fileRef = 66808487178DAFE3003A3CC6 /* diff.cc */; };
66808493178DAFE3003A3CC6 /* diff.h in Headers */ = {isa = PBXBuildFile; fileRef = 66808488178DAFE3003A3CC6 /* diff.h */; settings = {ATTRIBUTES = (Public, ); }; };
66808494178DAFE3003A3CC6 /* diff.hh in Headers */ = {isa = PBXBuildFile; fileRef = 66808489178DAFE3003A3CC6 /* diff.hh */; settings = {ATTRIBUTES = (Public, ); }; };
668084CF17900C35003A3CC6 /* COType.m in Sources */ = {isa = PBXBuildFile; fileRef = 668084CE17900C35003A3CC6 /* COType.m */; };
668084EC1791FBA2003A3CC6 /* COObject+RelationshipCache.m in Sources */ = {isa = PBXBuildFile; fileRef = 668084EA1791FBA2003A3CC6 /* COObject+RelationshipCache.m */; };
668084ED1791FBA2003A3CC6 /* COObject+RelationshipCache.h in Headers */ = {isa = PBXBuildFile; fileRef = 668084EB1791FBA2003A3CC6 /* COObject+RelationshipCache.h */; settings = {ATTRIBUTES = (Public, ); }; };
668084F01791FBAB003A3CC6 /* COObjectGraphContext.h in Headers */ = {isa = PBXBuildFile; fileRef = 668084EE1791FBAB003A3CC6 /* COObjectGraphContext.h */; settings = {ATTRIBUTES = (Public, ); }; };
668084F11791FBAB003A3CC6 /* COObjectGraphContext.m in Sources */ = {isa = PBXBuildFile; fileRef = 668084EF1791FBAB003A3CC6 /* COObjectGraphContext.m */; };
669724D517D4610E0090B31A /* COSetAttribute.h in Headers */ = {isa = PBXBuildFile; fileRef = 669724D317D4610E0090B31A /* COSetAttribute.h */; settings = {ATTRIBUTES = (Public, ); }; };
669724D617D4610E0090B31A /* COSetAttribute.m in Sources */ = {isa = PBXBuildFile; fileRef = 669724D417D4610E0090B31A /* COSetAttribute.m */; };
669724D917D4614F0090B31A /* CODeleteAttribute.h in Headers */ = {isa = PBXBuildFile; fileRef = 669724D717D4614F0090B31A /* CODeleteAttribute.h */; settings = {ATTRIBUTES = (Public, ); }; };
669724DA17D4614F0090B31A /* CODeleteAttribute.m in Sources */ = {isa = PBXBuildFile; fileRef = 669724D817D4614F0090B31A /* CODeleteAttribute.m */; };
669724DD17D461750090B31A /* COSetInsertion.h in Headers */ = {isa = PBXBuildFile; fileRef = 669724DB17D461740090B31A /* COSetInsertion.h */; settings = {ATTRIBUTES = (Public, ); }; };
669724DE17D461750090B31A /* COSetInsertion.m in Sources */ = {isa = PBXBuildFile; fileRef = 669724DC17D461750090B31A /* COSetInsertion.m */; };
669724E117D461940090B31A /* COSetDeletion.h in Headers */ = {isa = PBXBuildFile; fileRef = 669724DF17D461940090B31A /* COSetDeletion.h */; settings = {ATTRIBUTES = (Public, ); }; };
669724E217D461940090B31A /* COSetDeletion.m in Sources */ = {isa = PBXBuildFile; fileRef = 669724E017D461940090B31A /* COSetDeletion.m */; };
669724E517D463B00090B31A /* COSequenceEdit.h in Headers */ = {isa = PBXBuildFile; fileRef = 669724E317D463B00090B31A /* COSequenceEdit.h */; settings = {ATTRIBUTES = (Public, ); }; };
669724E617D463B00090B31A /* COSequenceEdit.m in Sources */ = {isa = PBXBuildFile; fileRef = 669724E417D463B00090B31A /* COSequenceEdit.m */; };
669724E917D464170090B31A /* COSequenceDeletion.h in Headers */ = {isa = PBXBuildFile; fileRef = 669724E717D464170090B31A /* COSequenceDeletion.h */; settings = {ATTRIBUTES = (Public, ); }; };
669724EA17D464170090B31A /* COSequenceDeletion.m in Sources */ = {isa = PBXBuildFile; fileRef = 669724E817D464170090B31A /* COSequenceDeletion.m */; };
669724ED17D464400090B31A /* COSequenceInsertion.h in Headers */ = {isa = PBXBuildFile; fileRef = 669724EB17D464400090B31A /* COSequenceInsertion.h */; settings = {ATTRIBUTES = (Public, ); }; };
669724EE17D464400090B31A /* COSequenceInsertion.m in Sources */ = {isa = PBXBuildFile; fileRef = 669724EC17D464400090B31A /* COSequenceInsertion.m */; };
669724F117D4646E0090B31A /* COSequenceModification.h in Headers */ = {isa = PBXBuildFile; fileRef = 669724EF17D4646D0090B31A /* COSequenceModification.h */; settings = {ATTRIBUTES = (Public, ); }; };
669724F217D4646E0090B31A /* COSequenceModification.m in Sources */ = {isa = PBXBuildFile; fileRef = 669724F017D4646D0090B31A /* COSequenceModification.m */; };
6699DDA7184887C30003E803 /* TestOrderedCompositeRelationship.m in Sources */ = {isa = PBXBuildFile; fileRef = 6699DDA4184887C30003E803 /* TestOrderedCompositeRelationship.m */; };
6699DDA8184887C30003E803 /* TestUnivaluedCompositeRelationship.m in Sources */ = {isa = PBXBuildFile; fileRef = 6699DDA5184887C30003E803 /* TestUnivaluedCompositeRelationship.m */; };
6699DDA9184887C30003E803 /* TestUnorderedCompositeRelationship.m in Sources */ = {isa = PBXBuildFile; fileRef = 6699DDA6184887C30003E803 /* TestUnorderedCompositeRelationship.m */; };
6699DDAC184887E70003E803 /* TestOrderedRelationship.m in Sources */ = {isa = PBXBuildFile; fileRef = 6699DDAB184887E70003E803 /* TestOrderedRelationship.m */; };
6699DDAF184887F60003E803 /* TestUnivaluedRelationship.m in Sources */ = {isa = PBXBuildFile; fileRef = 6699DDAE184887F60003E803 /* TestUnivaluedRelationship.m */; };
6699DDB2184888050003E803 /* TestUnorderedRelationship.m in Sources */ = {isa = PBXBuildFile; fileRef = 6699DDB1184888050003E803 /* TestUnorderedRelationship.m */; };
66A00A21187DFA8D005CFE16 /* TestAttributedStringMerge.m in Sources */ = {isa = PBXBuildFile; fileRef = 66A00A20187DFA8D005CFE16 /* TestAttributedStringMerge.m */; };
66A00A29187E7BA1005CFE16 /* CORevision+Graphviz.h in Headers */ = {isa = PBXBuildFile; fileRef = 66A00A27187E7BA1005CFE16 /* CORevision+Graphviz.h */; settings = {ATTRIBUTES = (Public, ); }; };
66A00A2A187E7BA1005CFE16 /* CORevision+Graphviz.m in Sources */ = {isa = PBXBuildFile; fileRef = 66A00A28187E7BA1005CFE16 /* CORevision+Graphviz.m */; };
66A00A34187E7C83005CFE16 /* COPersistentRoot+Graphviz.h in Headers */ = {isa = PBXBuildFile; fileRef = 66A00A32187E7C83005CFE16 /* COPersistentRoot+Graphviz.h */; settings = {ATTRIBUTES = (Public, ); }; };
66A00A35187E7C83005CFE16 /* COPersistentRoot+Graphviz.m in Sources */ = {isa = PBXBuildFile; fileRef = 66A00A33187E7C83005CFE16 /* COPersistentRoot+Graphviz.m */; };
66A00A38187E7D12005CFE16 /* COBranch+Graphviz.h in Headers */ = {isa = PBXBuildFile; fileRef = 66A00A36187E7D12005CFE16 /* COBranch+Graphviz.h */; settings = {ATTRIBUTES = (Public, ); }; };
66A00A39187E7D12005CFE16 /* COBranch+Graphviz.m in Sources */ = {isa = PBXBuildFile; fileRef = 66A00A37187E7D12005CFE16 /* COBranch+Graphviz.m */; };
66ACABB1190B180900341D72 /* TestLibrary.m in Sources */ = {isa = PBXBuildFile; fileRef = 66ACABB0190B180900341D72 /* TestLibrary.m */; };
66B1FC6918727D7E00745859 /* TestAttributedStringHistory.m in Sources */ = {isa = PBXBuildFile; fileRef = 66B1FC6818727D7E00745859 /* TestAttributedStringHistory.m */; };
66B1FC72187377ED00745859 /* TestAttributedString.m in Sources */ = {isa = PBXBuildFile; fileRef = 66B1FC71187377ED00745859 /* TestAttributedString.m */; };
66B6DC5C187A020900870370 /* TestDiffManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 66B6DC5B187A020900870370 /* TestDiffManager.m */; };
66BA3D4A18DA6C4B00641D40 /* TestAttributedStringCommon.m in Sources */ = {isa = PBXBuildFile; fileRef = 660EE3B1186E3DA600E8C22C /* TestAttributedStringCommon.m */; };
66BA3D6318DACFAC00641D40 /* TestAttributedStringAttribute.m in Sources */ = {isa = PBXBuildFile; fileRef = 66BA3D6218DACFAC00641D40 /* TestAttributedStringAttribute.m */; };
66BBB3BC18516ABC005430B1 /* TestItemStableSerialization.m in Sources */ = {isa = PBXBuildFile; fileRef = 66BBB3BB18516ABC005430B1 /* TestItemStableSerialization.m */; };
66BDC4AF17B6ED27003B0EDA /* COBranchInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = 66C3670917B5F9AF009ACF2F /* COBranchInfo.h */; settings = {ATTRIBUTES = (Public, ); }; };
66BDC4B017B6ED27003B0EDA /* COPersistentRootInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = 66C3670D17B5FA0D009ACF2F /* COPersistentRootInfo.h */; settings = {ATTRIBUTES = (Public, ); }; };
66C3670C17B5F9B0009ACF2F /* COBranchInfo.m in Sources */ = {isa = PBXBuildFile; fileRef = 66C3670A17B5F9AF009ACF2F /* COBranchInfo.m */; };
66C3671017B5FA0E009ACF2F /* COPersistentRootInfo.m in Sources */ = {isa = PBXBuildFile; fileRef = 66C3670E17B5FA0D009ACF2F /* COPersistentRootInfo.m */; };
66D3FCCE1860E197009BDF50 /* COAttributedStringAttribute.h in Headers */ = {isa = PBXBuildFile; fileRef = 66D3FCCC1860E197009BDF50 /* COAttributedStringAttribute.h */; settings = {ATTRIBUTES = (Public, ); }; };
66D3FCCF1860E197009BDF50 /* COAttributedStringAttribute.m in Sources */ = {isa = PBXBuildFile; fileRef = 66D3FCCD1860E197009BDF50 /* COAttributedStringAttribute.m */; };
66D3FCDC1860EB61009BDF50 /* COAttributedStringDiff.h in Headers */ = {isa = PBXBuildFile; fileRef = 66D3FCD81860EB61009BDF50 /* COAttributedStringDiff.h */; settings = {ATTRIBUTES = (Public, ); }; };
66D3FCDE1860EB61009BDF50 /* COAttributedStringDiff.m in Sources */ = {isa = PBXBuildFile; fileRef = 66D3FCDA1860EB61009BDF50 /* COAttributedStringDiff.m */; };
66D7980917ED18A200B07A2A /* BenchmarkItem.m in Sources */ = {isa = PBXBuildFile; fileRef = 66D7980817ED18A200B07A2A /* BenchmarkItem.m */; };
66D96C70178AE41500D1553C /* TestCommon.m in Sources */ = {isa = PBXBuildFile; fileRef = 609C00591704C24C00D01AAB /* TestCommon.m */; };
66D96CB7178B717200D1553C /* COBinaryReader.h in Headers */ = {isa = PBXBuildFile; fileRef = 66D96CA2178B717000D1553C /* COBinaryReader.h */; settings = {ATTRIBUTES = (Public, ); }; };
66D96CB8178B717200D1553C /* COBinaryReader.m in Sources */ = {isa = PBXBuildFile; fileRef = 66D96CA3178B717000D1553C /* COBinaryReader.m */; };
66D96CB9178B717200D1553C /* COBinaryWriter.h in Headers */ = {isa = PBXBuildFile; fileRef = 66D96CA4178B717000D1553C /* COBinaryWriter.h */; settings = {ATTRIBUTES = (Public, ); }; };
66D96CBA178B717200D1553C /* COItem+Binary.h in Headers */ = {isa = PBXBuildFile; fileRef = 66D96CA5178B717000D1553C /* COItem+Binary.h */; settings = {ATTRIBUTES = (Public, ); }; };
66D96CBB178B717200D1553C /* COItem+Binary.m in Sources */ = {isa = PBXBuildFile; fileRef = 66D96CA6178B717000D1553C /* COItem+Binary.m */; };
66D96CC0178B717200D1553C /* CORevisionInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = 66D96CAB178B717100D1553C /* CORevisionInfo.h */; settings = {ATTRIBUTES = (Public, ); }; };
66D96CC1178B717200D1553C /* CORevisionInfo.m in Sources */ = {isa = PBXBuildFile; fileRef = 66D96CAC178B717100D1553C /* CORevisionInfo.m */; };
66D96CC2178B717200D1553C /* COSearchResult.h in Headers */ = {isa = PBXBuildFile; fileRef = 66D96CAD178B717100D1553C /* COSearchResult.h */; settings = {ATTRIBUTES = (Public, ); }; };
66D96CC3178B717200D1553C /* COSearchResult.m in Sources */ = {isa = PBXBuildFile; fileRef = 66D96CAE178B717100D1553C /* COSearchResult.m */; };
66D96CC4178B717200D1553C /* COSQLiteStore.h in Headers */ = {isa = PBXBuildFile; fileRef = 66D96CAF178B717100D1553C /* COSQLiteStore.h */; settings = {ATTRIBUTES = (Public, ); }; };
66D96CC5178B717200D1553C /* COSQLiteStore.m in Sources */ = {isa = PBXBuildFile; fileRef = 66D96CB0178B717100D1553C /* COSQLiteStore.m */; };
66D96CC6178B717200D1553C /* COSQLiteStore+Attachments.h in Headers */ = {isa = PBXBuildFile; fileRef = 66D96CB1178B717100D1553C /* COSQLiteStore+Attachments.h */; settings = {ATTRIBUTES = (Public, ); }; };
66D96CC7178B717200D1553C /* COSQLiteStore+Attachments.m in Sources */ = {isa = PBXBuildFile; fileRef = 66D96CB2178B717100D1553C /* COSQLiteStore+Attachments.m */; };
66D96CC8178B717200D1553C /* COSQLiteStorePersistentRootBackingStore.h in Headers */ = {isa = PBXBuildFile; fileRef = 66D96CB3178B717200D1553C /* COSQLiteStorePersistentRootBackingStore.h */; settings = {ATTRIBUTES = (Public, ); }; };
66D96CC9178B717200D1553C /* COSQLiteStorePersistentRootBackingStore.m in Sources */ = {isa = PBXBuildFile; fileRef = 66D96CB4178B717200D1553C /* COSQLiteStorePersistentRootBackingStore.m */; };
66D96CCA178B717200D1553C /* COSQLiteStorePersistentRootBackingStoreBinaryFormats.h in Headers */ = {isa = PBXBuildFile; fileRef = 66D96CB5178B717200D1553C /* COSQLiteStorePersistentRootBackingStoreBinaryFormats.h */; settings = {ATTRIBUTES = (Public, ); }; };
66D96CCB178B717200D1553C /* COSQLiteStorePersistentRootBackingStoreBinaryFormats.m in Sources */ = {isa = PBXBuildFile; fileRef = 66D96CB6178B717200D1553C /* COSQLiteStorePersistentRootBackingStoreBinaryFormats.m */; };
66E40D571836D08D00E5B4A7 /* TestBranch.m in Sources */ = {isa = PBXBuildFile; fileRef = 66E40D2A1836D08D00E5B4A7 /* TestBranch.m */; };
66E40D581836D08D00E5B4A7 /* TestConcurrentChanges.m in Sources */ = {isa = PBXBuildFile; fileRef = 66E40D2B1836D08D00E5B4A7 /* TestConcurrentChanges.m */; };
66E40D591836D08D00E5B4A7 /* TestCOObjectSynthesizedAccessors.m in Sources */ = {isa = PBXBuildFile; fileRef = 66E40D2C1836D08D00E5B4A7 /* TestCOObjectSynthesizedAccessors.m */; };
66E40D5A1836D08D00E5B4A7 /* TestCopier.m in Sources */ = {isa = PBXBuildFile; fileRef = 66E40D2D1836D08D00E5B4A7 /* TestCopier.m */; };
66E40D5B1836D08D00E5B4A7 /* TestCopierWithIsShared.m in Sources */ = {isa = PBXBuildFile; fileRef = 66E40D2E1836D08D00E5B4A7 /* TestCopierWithIsShared.m */; };
66E40D5C1836D08D00E5B4A7 /* TestCopierWithIsSharedFalseAndMultipleReferences.m in Sources */ = {isa = PBXBuildFile; fileRef = 66E40D2F1836D08D00E5B4A7 /* TestCopierWithIsSharedFalseAndMultipleReferences.m */; };
66E40D5D1836D08D00E5B4A7 /* TestCrossPersistentRootReferences.m in Sources */ = {isa = PBXBuildFile; fileRef = 66E40D301836D08D00E5B4A7 /* TestCrossPersistentRootReferences.m */; };
66E40D5E1836D08D00E5B4A7 /* TestEditingContext.m in Sources */ = {isa = PBXBuildFile; fileRef = 66E40D311836D08D00E5B4A7 /* TestEditingContext.m */; };
66E40D5F1836D08D00E5B4A7 /* TestHistoryInspection.m in Sources */ = {isa = PBXBuildFile; fileRef = 66E40D321836D08D00E5B4A7 /* TestHistoryInspection.m */; };
66E40D601836D08D00E5B4A7 /* TestNotifications.m in Sources */ = {isa = PBXBuildFile; fileRef = 66E40D331836D08D00E5B4A7 /* TestNotifications.m */; };
66E40D611836D08D00E5B4A7 /* TestObject.m in Sources */ = {isa = PBXBuildFile; fileRef = 66E40D341836D08D00E5B4A7 /* TestObject.m */; };
66E40D621836D08D00E5B4A7 /* TestObjectGraphContext.m in Sources */ = {isa = PBXBuildFile; fileRef = 66E40D351836D08D00E5B4A7 /* TestObjectGraphContext.m */; };
66E40D631836D08D00E5B4A7 /* TestObjectUpdate.m in Sources */ = {isa = PBXBuildFile; fileRef = 66E40D361836D08D00E5B4A7 /* TestObjectUpdate.m */; };
66E40D641836D08D00E5B4A7 /* TestPersistentRoot.m in Sources */ = {isa = PBXBuildFile; fileRef = 66E40D371836D08D00E5B4A7 /* TestPersistentRoot.m */; };
66E40D651836D08D00E5B4A7 /* TestRevisionNumber.m in Sources */ = {isa = PBXBuildFile; fileRef = 66E40D381836D08D00E5B4A7 /* TestRevisionNumber.m */; };
66E40D661836D08D00E5B4A7 /* TestItemGraphDiff.m in Sources */ = {isa = PBXBuildFile; fileRef = 66E40D3A1836D08D00E5B4A7 /* TestItemGraphDiff.m */; };
66E40D671836D08D00E5B4A7 /* TestMerge.m in Sources */ = {isa = PBXBuildFile; fileRef = 66E40D3B1836D08D00E5B4A7 /* TestMerge.m */; };
66E40D681836D08D00E5B4A7 /* TestCollection.m in Sources */ = {isa = PBXBuildFile; fileRef = 66E40D3D1836D08D00E5B4A7 /* TestCollection.m */; };
66E40D6A1836D08D00E5B4A7 /* TestItem.m in Sources */ = {isa = PBXBuildFile; fileRef = 66E40D401836D08D00E5B4A7 /* TestItem.m */; };
66E40D6B1836D08D00E5B4A7 /* TestBinaryReadWrite.m in Sources */ = {isa = PBXBuildFile; fileRef = 66E40D421836D08D00E5B4A7 /* TestBinaryReadWrite.m */; };
66E40D6C1836D08D00E5B4A7 /* TestSQLiteStore.m in Sources */ = {isa = PBXBuildFile; fileRef = 66E40D431836D08D00E5B4A7 /* TestSQLiteStore.m */; };
66E40D6D1836D08D00E5B4A7 /* TestSQLiteStoreErrorHandling.m in Sources */ = {isa = PBXBuildFile; fileRef = 66E40D441836D08D00E5B4A7 /* TestSQLiteStoreErrorHandling.m */; };
66E40D6E1836D08D00E5B4A7 /* TestSQLiteStoreMultiPersistentRoots.m in Sources */ = {isa = PBXBuildFile; fileRef = 66E40D451836D08D00E5B4A7 /* TestSQLiteStoreMultiPersistentRoots.m */; };
66E40D6F1836D08D00E5B4A7 /* TestSQLiteStoreSharedPersistentRoots.m in Sources */ = {isa = PBXBuildFile; fileRef = 66E40D461836D08D00E5B4A7 /* TestSQLiteStoreSharedPersistentRoots.m */; };
66E40D701836D08D00E5B4A7 /* COSynchronizerFakeMessageTransport.m in Sources */ = {isa = PBXBuildFile; fileRef = 66E40D491836D08D00E5B4A7 /* COSynchronizerFakeMessageTransport.m */; };
66E40D711836D08D00E5B4A7 /* TestSynchronization.m in Sources */ = {isa = PBXBuildFile; fileRef = 66E40D4A1836D08D00E5B4A7 /* TestSynchronization.m */; };
66E40D721836D08D00E5B4A7 /* TestSynchronizer.m in Sources */ = {isa = PBXBuildFile; fileRef = 66E40D4B1836D08D00E5B4A7 /* TestSynchronizer.m */; };
66E40D731836D08D00E5B4A7 /* TestSynchronizerJSONTransport.m in Sources */ = {isa = PBXBuildFile; fileRef = 66E40D4C1836D08D00E5B4A7 /* TestSynchronizerJSONTransport.m */; };
66E40D741836D08E00E5B4A7 /* TestSynchronizerMultiUser.m in Sources */ = {isa = PBXBuildFile; fileRef = 66E40D4D1836D08D00E5B4A7 /* TestSynchronizerMultiUser.m */; };
66E40D751836D08E00E5B4A7 /* TestCustomTrack.m in Sources */ = {isa = PBXBuildFile; fileRef = 66E40D4F1836D08D00E5B4A7 /* TestCustomTrack.m */; };
66E40D761836D08E00E5B4A7 /* TestHistoryTrack.m in Sources */ = {isa = PBXBuildFile; fileRef = 66E40D501836D08D00E5B4A7 /* TestHistoryTrack.m */; };
66E40D771836D08E00E5B4A7 /* TestUndo.m in Sources */ = {isa = PBXBuildFile; fileRef = 66E40D511836D08D00E5B4A7 /* TestUndo.m */; };
66E40D781836D08E00E5B4A7 /* TestUndoStackFailedNavigation.m in Sources */ = {isa = PBXBuildFile; fileRef = 66E40D521836D08D00E5B4A7 /* TestUndoStackFailedNavigation.m */; };
66E40D791836D08E00E5B4A7 /* TestUndoTrackStore.m in Sources */ = {isa = PBXBuildFile; fileRef = 66E40D531836D08D00E5B4A7 /* TestUndoTrackStore.m */; };
66E40D7A1836D08E00E5B4A7 /* TestUndoStackTrackProtocol.m in Sources */ = {isa = PBXBuildFile; fileRef = 66E40D541836D08D00E5B4A7 /* TestUndoStackTrackProtocol.m */; };
66E40D7B1836D08E00E5B4A7 /* TestUndoUseCases.m in Sources */ = {isa = PBXBuildFile; fileRef = 66E40D551836D08D00E5B4A7 /* TestUndoUseCases.m */; };
66E451D617CC461F00205679 /* OutlineItem.m in Sources */ = {isa = PBXBuildFile; fileRef = 66E451D517CC461F00205679 /* OutlineItem.m */; };
66E451D917CC565200205679 /* Tag.m in Sources */ = {isa = PBXBuildFile; fileRef = 66E451D817CC565100205679 /* Tag.m */; };
66E4CF4F1816F50300AAB0E6 /* COStoreSetPersistentRootMetadata.h in Headers */ = {isa = PBXBuildFile; fileRef = 66E4CF4D1816F50300AAB0E6 /* COStoreSetPersistentRootMetadata.h */; settings = {ATTRIBUTES = (Public, ); }; };
66E4CF501816F50300AAB0E6 /* COStoreSetPersistentRootMetadata.m in Sources */ = {isa = PBXBuildFile; fileRef = 66E4CF4E1816F50300AAB0E6 /* COStoreSetPersistentRootMetadata.m */; };
66E4CF531816FE9000AAB0E6 /* COCommandSetPersistentRootMetadata.h in Headers */ = {isa = PBXBuildFile; fileRef = 66E4CF511816FE9000AAB0E6 /* COCommandSetPersistentRootMetadata.h */; settings = {ATTRIBUTES = (Public, ); }; };
66E4CF541816FE9000AAB0E6 /* COCommandSetPersistentRootMetadata.m in Sources */ = {isa = PBXBuildFile; fileRef = 66E4CF521816FE9000AAB0E6 /* COCommandSetPersistentRootMetadata.m */; };
66E62253185BEA51002A22C1 /* COTrack.h in Headers */ = {isa = PBXBuildFile; fileRef = 66E62251185BEA51002A22C1 /* COTrack.h */; settings = {ATTRIBUTES = (Public, ); }; };
66E62256185BECF0002A22C1 /* TestValueTransformerAttribute.m in Sources */ = {isa = PBXBuildFile; fileRef = 66E62255185BECF0002A22C1 /* TestValueTransformerAttribute.m */; };
66E6225C185BEECE002A22C1 /* COSQLiteStore+Graphviz.m in Sources */ = {isa = PBXBuildFile; fileRef = 66E62258185BEECE002A22C1 /* COSQLiteStore+Graphviz.m */; };
66E6225D185BEECE002A22C1 /* COObjectGraphContext+Graphviz.h in Headers */ = {isa = PBXBuildFile; fileRef = 66E62259185BEECE002A22C1 /* COObjectGraphContext+Graphviz.h */; settings = {ATTRIBUTES = (Public, ); }; };
66E6225E185BEECE002A22C1 /* COObjectGraphContext+Graphviz.m in Sources */ = {isa = PBXBuildFile; fileRef = 66E6225A185BEECE002A22C1 /* COObjectGraphContext+Graphviz.m */; };
66E6225F185BEECE002A22C1 /* COSQLiteStore+Graphviz.h in Headers */ = {isa = PBXBuildFile; fileRef = 66E6225B185BEECE002A22C1 /* COSQLiteStore+Graphviz.h */; settings = {ATTRIBUTES = (Public, ); }; };
66E62285185CF875002A22C1 /* COPYING in Resources */ = {isa = PBXBuildFile; fileRef = 66E62284185CF875002A22C1 /* COPYING */; };
66E6820918B6E035003294EB /* UnitKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6048465518B6C03E006E4EDC /* UnitKit.framework */; };
66E6824118B972C4003294EB /* BenchmarkCommon.m in Sources */ = {isa = PBXBuildFile; fileRef = 66E6824018B972C4003294EB /* BenchmarkCommon.m */; };
66E6826118BA9B5D003294EB /* TestObjectPerformance.m in Sources */ = {isa = PBXBuildFile; fileRef = 66E6826018BA9B5D003294EB /* TestObjectPerformance.m */; };
66E725CE18AF50610032F28F /* TestUndoTrack.m in Sources */ = {isa = PBXBuildFile; fileRef = 66E725CD18AF50610032F28F /* TestUndoTrack.m */; };
66EE9FEC19D1E5B4005A35DE /* COSynchronizerImmediateMessageTransport.m in Sources */ = {isa = PBXBuildFile; fileRef = 66EE9FEB19D1E5B4005A35DE /* COSynchronizerImmediateMessageTransport.m */; };
66EEA00A19D1ECB8005A35DE /* TestSynchronizerImmediateDelivery.m in Sources */ = {isa = PBXBuildFile; fileRef = 66EE9FF919D1E7D4005A35DE /* TestSynchronizerImmediateDelivery.m */; };
66EEB2B7186D3CBA003695E6 /* TestItemGraph.m in Sources */ = {isa = PBXBuildFile; fileRef = 66EEB2B6186D3CBA003695E6 /* TestItemGraph.m */; };
66EF4276186251A800E15C59 /* TestDiffCAPI.m in Sources */ = {isa = PBXBuildFile; fileRef = 66EF4275186251A800E15C59 /* TestDiffCAPI.m */; };
66F1985919667265001EAEB0 /* TestMetamodelCornerCases.m in Sources */ = {isa = PBXBuildFile; fileRef = 66F1985819667265001EAEB0 /* TestMetamodelCornerCases.m */; };
66F1BE841BB1D9C900CC9E23 /* TestSQLiteBackingStore.m in Sources */ = {isa = PBXBuildFile; fileRef = 66F1BE831BB1D9C900CC9E23 /* TestSQLiteBackingStore.m */; };
66FB15DA17AB31F6003BFC9B /* COObject+Accessors.m in Sources */ = {isa = PBXBuildFile; fileRef = 66FB15D817AB31F5003BFC9B /* COObject+Accessors.m */; };
66FD348B1830B84C00898381 /* COSynchronizerJSONServer.m in Sources */ = {isa = PBXBuildFile; fileRef = 66FD34891830B84C00898381 /* COSynchronizerJSONServer.m */; };
66FD348E1830BB3800898381 /* COSynchronizerJSONClient.h in Headers */ = {isa = PBXBuildFile; fileRef = 66FD348C1830BB3800898381 /* COSynchronizerJSONClient.h */; settings = {ATTRIBUTES = (Public, ); }; };
66FD348F1830BB3800898381 /* COSynchronizerJSONClient.m in Sources */ = {isa = PBXBuildFile; fileRef = 66FD348D1830BB3800898381 /* COSynchronizerJSONClient.m */; };
66FD349A18314BC200898381 /* COSynchronizerJSONUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 66FD349818314BC200898381 /* COSynchronizerJSONUtils.h */; settings = {ATTRIBUTES = (Public, ); }; };
66FD349B18314BC200898381 /* COSynchronizerJSONUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = 66FD349918314BC200898381 /* COSynchronizerJSONUtils.m */; };
66FD34B61832055900898381 /* COSynchronizerJSONServer.h in Headers */ = {isa = PBXBuildFile; fileRef = 66FD34881830B84C00898381 /* COSynchronizerJSONServer.h */; settings = {ATTRIBUTES = (Public, ); }; };
791B4E4C1299C82200CCF472 /* CoreObject.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6686BDAC12592BDA0065DE1A /* CoreObject.framework */; };
791B4E721299C90900CCF472 /* FMDatabase.m in Sources */ = {isa = PBXBuildFile; fileRef = 791B4E6C1299C90900CCF472 /* FMDatabase.m */; };
791B4E741299C90900CCF472 /* FMDatabaseAdditions.m in Sources */ = {isa = PBXBuildFile; fileRef = 791B4E6E1299C90900CCF472 /* FMDatabaseAdditions.m */; };
791B4E761299C90900CCF472 /* FMResultSet.m in Sources */ = {isa = PBXBuildFile; fileRef = 791B4E701299C90900CCF472 /* FMResultSet.m */; };
/* End PBXBuildFile section */
/* Begin PBXContainerItemProxy section */
3D01D0511646BE2900917AC8 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = 6600AED3112E746F00C525BB /* EtoileFoundation.xcodeproj */;
proxyType = 1;
remoteGlobalIDString = 603647AB0E409244003377E0;
remoteInfo = EtoileFoundation;
};
6002E223197FD90300AC9150 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = 29B97313FDCFA39411CA2CEA /* Project object */;
proxyType = 1;
remoteGlobalIDString = 60E08C6119792BEA00D1B7AD;
remoteInfo = "CoreObject (iOS)";
};
6048464718B6C03E006E4EDC /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = 6600AED3112E746F00C525BB /* EtoileFoundation.xcodeproj */;
proxyType = 2;
remoteGlobalIDString = 602E12AE18B3A10E004F171B;
remoteInfo = "EtoileFoundation (iOS)";
};
6048465418B6C03E006E4EDC /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = 3D01D08A1646BEF400917AC8 /* UnitKit.xcodeproj */;
proxyType = 2;
remoteGlobalIDString = 8DC2EF5B0486A6940098B216;
remoteInfo = UnitKit;
};
6048465618B6C03E006E4EDC /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = 3D01D08A1646BEF400917AC8 /* UnitKit.xcodeproj */;
proxyType = 2;
remoteGlobalIDString = AE923B2C05C3B1CE00549058;
remoteInfo = ukrun;
};
6048465818B6C03E006E4EDC /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = 3D01D08A1646BEF400917AC8 /* UnitKit.xcodeproj */;
proxyType = 2;
remoteGlobalIDString = AE923B3605C3B1DF00549058;
remoteInfo = UnitKitTests;
};
6048465A18B6C03E006E4EDC /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = 3D01D08A1646BEF400917AC8 /* UnitKit.xcodeproj */;
proxyType = 2;
remoteGlobalIDString = AE70B65405F7100400D56367;
remoteInfo = TestBundle;
};
6048465C18B6C03E006E4EDC /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = 3D01D08A1646BEF400917AC8 /* UnitKit.xcodeproj */;
proxyType = 2;
remoteGlobalIDString = AEBED01906AFADB000451E26;
remoteInfo = TestFramework;
};
6048465E18B6C03E006E4EDC /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = 3D01D08A1646BEF400917AC8 /* UnitKit.xcodeproj */;
proxyType = 2;
remoteGlobalIDString = 60A71B4218B505DA0038CE05;
remoteInfo = "UnitKit (iOS)";
};
6048466018B6C03E006E4EDC /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = 3D01D08A1646BEF400917AC8 /* UnitKit.xcodeproj */;
proxyType = 2;
remoteGlobalIDString = 60E23C0818B5134100CE38D0;
remoteInfo = "TestUnitKit (iOS)";
};
6059E2C118D0C4190047D27D /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = 6600AED3112E746F00C525BB /* EtoileFoundation.xcodeproj */;
proxyType = 2;
remoteGlobalIDString = 609A557718C209FE0096927F;
remoteInfo = "TestEtoileFoundation (iOS)";
};
6061B8641C57E89700813C18 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = 3D01D08A1646BEF400917AC8 /* UnitKit.xcodeproj */;
proxyType = 1;
remoteGlobalIDString = 60A71B4118B505DA0038CE05;
remoteInfo = "UnitKit (iOS)";
};
6061B8661C57E89700813C18 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = 29B97313FDCFA39411CA2CEA /* Project object */;
proxyType = 1;
remoteGlobalIDString = 60E08C6119792BEA00D1B7AD;
remoteInfo = "CoreObject (iOS)";
};
60C8BC20163223D300A2B4EE /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = 6600AED3112E746F00C525BB /* EtoileFoundation.xcodeproj */;
proxyType = 2;
remoteGlobalIDString = 6072CF691360E144003256C5;
remoteInfo = PlugInExample;
};
60C913C2165BBEED00E0C5F4 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = 29B97313FDCFA39411CA2CEA /* Project object */;
proxyType = 1;
remoteGlobalIDString = 6686BDAB12592BDA0065DE1A;
remoteInfo = CoreObject;
};
60E08C7F19792ECA00D1B7AD /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = 6600AED3112E746F00C525BB /* EtoileFoundation.xcodeproj */;
proxyType = 1;
remoteGlobalIDString = 602E12AD18B3A10E004F171B;
remoteInfo = "EtoileFoundation (iOS)";
};
60F91ED2197D2BDE009F47D7 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = 29B97313FDCFA39411CA2CEA /* Project object */;
proxyType = 1;
remoteGlobalIDString = 60E08C6119792BEA00D1B7AD;
remoteInfo = "CoreObject (iOS)";
};
60F91ED4197D2C47009F47D7 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = 3D01D08A1646BEF400917AC8 /* UnitKit.xcodeproj */;
proxyType = 1;
remoteGlobalIDString = 60A71B4118B505DA0038CE05;
remoteInfo = "UnitKit (iOS)";
};
60FB087A13C3066300C2AB94 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = 6600AED3112E746F00C525BB /* EtoileFoundation.xcodeproj */;
proxyType = 2;
remoteGlobalIDString = 60073EAD10074D26007272E6;
remoteInfo = EtoileXML;
};
60FB087C13C3066300C2AB94 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = 6600AED3112E746F00C525BB /* EtoileFoundation.xcodeproj */;
proxyType = 2;
remoteGlobalIDString = 603647AC0E409244003377E0;
remoteInfo = EtoileFoundation;
};
60FB087E13C3066300C2AB94 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = 6600AED3112E746F00C525BB /* EtoileFoundation.xcodeproj */;
proxyType = 2;
remoteGlobalIDString = 609B66D70FEE80CE0007F842;
remoteInfo = TestEtoileFoundation;
};
60FB0A1A13C3264E00C2AB94 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = 6600AED3112E746F00C525BB /* EtoileFoundation.xcodeproj */;
proxyType = 1;
remoteGlobalIDString = 603647AB0E409244003377E0;
remoteInfo = EtoileFoundation;
};
66550BFA17D51CC000327657 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = 29B97313FDCFA39411CA2CEA /* Project object */;
proxyType = 1;
remoteGlobalIDString = 6686BDAB12592BDA0065DE1A;
remoteInfo = CoreObject;
};
66550BFF17D51D0500327657 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = 6600AED3112E746F00C525BB /* EtoileFoundation.xcodeproj */;
proxyType = 1;
remoteGlobalIDString = 603647AB0E409244003377E0;
remoteInfo = EtoileFoundation;
};
791B4E4A1299C81F00CCF472 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = 29B97313FDCFA39411CA2CEA /* Project object */;
proxyType = 1;
remoteGlobalIDString = 6686BDAB12592BDA0065DE1A;
remoteInfo = ObjectMerging;
};
/* End PBXContainerItemProxy section */
/* Begin PBXCopyFilesBuildPhase section */