forked from nygard/class-dump
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathproject.pbxproj
1503 lines (1487 loc) · 97.4 KB
/
project.pbxproj
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
// !$*UTF8*$!
{
archiveVersion = 1;
classes = {
};
objectVersion = 46;
objects = {
/* Begin PBXAggregateTarget section */
01B02D2E13A5B5D50047BC53 /* all */ = {
isa = PBXAggregateTarget;
buildConfigurationList = 01B02D2F13A5B5D50047BC53 /* Build configuration list for PBXAggregateTarget "all" */;
buildPhases = (
);
dependencies = (
0106C8221412D07C00B29890 /* PBXTargetDependency */,
01B02D3313A5B5E20047BC53 /* PBXTargetDependency */,
01B02D3513A5B5E20047BC53 /* PBXTargetDependency */,
01B02D3913A5B5E20047BC53 /* PBXTargetDependency */,
);
name = all;
productName = all;
};
/* End PBXAggregateTarget section */
/* Begin PBXBuildFile section */
0132DD4521816C0A009CE078 /* CDLCBuildVersion.h in Headers */ = {isa = PBXBuildFile; fileRef = 0132DD4321816C09009CE078 /* CDLCBuildVersion.h */; };
0132DD4621816C0A009CE078 /* CDLCBuildVersion.m in Sources */ = {isa = PBXBuildFile; fileRef = 0132DD4421816C09009CE078 /* CDLCBuildVersion.m */; };
013D1F1913A5AEA100BF0A67 /* CDTopoSortNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 01EB830F13A591D8003EDE60 /* CDTopoSortNode.m */; };
013D1F1A13A5AEA100BF0A67 /* NSArray-CDExtensions.m in Sources */ = {isa = PBXBuildFile; fileRef = 01EB828813A591A5003EDE60 /* NSArray-CDExtensions.m */; };
013D1F1B13A5AEA100BF0A67 /* NSData-CDExtensions.m in Sources */ = {isa = PBXBuildFile; fileRef = 01EB828A13A591A5003EDE60 /* NSData-CDExtensions.m */; };
013D1F1C13A5AEA100BF0A67 /* NSError-CDExtensions.m in Sources */ = {isa = PBXBuildFile; fileRef = 01EB828C13A591A5003EDE60 /* NSError-CDExtensions.m */; };
013D1F1D13A5AEA100BF0A67 /* NSScanner-CDExtensions.m in Sources */ = {isa = PBXBuildFile; fileRef = 01EB828E13A591A5003EDE60 /* NSScanner-CDExtensions.m */; };
013D1F1E13A5AEA100BF0A67 /* NSString-CDExtensions.m in Sources */ = {isa = PBXBuildFile; fileRef = 01EB829013A591A5003EDE60 /* NSString-CDExtensions.m */; };
013D1F1F13A5AEA100BF0A67 /* CDDataCursor.m in Sources */ = {isa = PBXBuildFile; fileRef = 01EB82A013A591D7003EDE60 /* CDDataCursor.m */; };
013D1F2013A5AEA100BF0A67 /* CDMachOFileDataCursor.m in Sources */ = {isa = PBXBuildFile; fileRef = 01EB82DE13A591D8003EDE60 /* CDMachOFileDataCursor.m */; };
013D1F2113A5AEA100BF0A67 /* CDLCDyldInfo.m in Sources */ = {isa = PBXBuildFile; fileRef = 01EB82AA13A591D7003EDE60 /* CDLCDyldInfo.m */; };
013D1F2213A5AEA100BF0A67 /* CDLCDylib.m in Sources */ = {isa = PBXBuildFile; fileRef = 01EB82AC13A591D7003EDE60 /* CDLCDylib.m */; };
013D1F2313A5AEA100BF0A67 /* CDLCDylinker.m in Sources */ = {isa = PBXBuildFile; fileRef = 01EB82AE13A591D7003EDE60 /* CDLCDylinker.m */; };
013D1F2413A5AEA100BF0A67 /* CDLCDynamicSymbolTable.m in Sources */ = {isa = PBXBuildFile; fileRef = 01EB82B013A591D7003EDE60 /* CDLCDynamicSymbolTable.m */; };
013D1F2513A5AEA100BF0A67 /* CDLCEncryptionInfo.m in Sources */ = {isa = PBXBuildFile; fileRef = 01EB82B213A591D7003EDE60 /* CDLCEncryptionInfo.m */; };
013D1F2613A5AEA100BF0A67 /* CDLCLinkeditData.m in Sources */ = {isa = PBXBuildFile; fileRef = 01EB82B413A591D7003EDE60 /* CDLCLinkeditData.m */; };
013D1F2713A5AEA100BF0A67 /* CDLCPrebindChecksum.m in Sources */ = {isa = PBXBuildFile; fileRef = 01EB82B613A591D7003EDE60 /* CDLCPrebindChecksum.m */; };
013D1F2813A5AEA100BF0A67 /* CDLCPreboundDylib.m in Sources */ = {isa = PBXBuildFile; fileRef = 01EB82B813A591D7003EDE60 /* CDLCPreboundDylib.m */; };
013D1F2913A5AEA100BF0A67 /* CDLCRoutines32.m in Sources */ = {isa = PBXBuildFile; fileRef = 01EB82BA13A591D8003EDE60 /* CDLCRoutines32.m */; };
013D1F2A13A5AEA100BF0A67 /* CDLCRoutines64.m in Sources */ = {isa = PBXBuildFile; fileRef = 01EB82BC13A591D8003EDE60 /* CDLCRoutines64.m */; };
013D1F2B13A5AEA100BF0A67 /* CDLCRunPath.m in Sources */ = {isa = PBXBuildFile; fileRef = 01EB82BE13A591D8003EDE60 /* CDLCRunPath.m */; };
013D1F2C13A5AEA100BF0A67 /* CDLCSegment.m in Sources */ = {isa = PBXBuildFile; fileRef = 01EB82C013A591D8003EDE60 /* CDLCSegment.m */; };
013D1F2F13A5AEA100BF0A67 /* CDLCSubClient.m in Sources */ = {isa = PBXBuildFile; fileRef = 01EB82C613A591D8003EDE60 /* CDLCSubClient.m */; };
013D1F3013A5AEA100BF0A67 /* CDLCSubFramework.m in Sources */ = {isa = PBXBuildFile; fileRef = 01EB82C813A591D8003EDE60 /* CDLCSubFramework.m */; };
013D1F3113A5AEA100BF0A67 /* CDLCSubLibrary.m in Sources */ = {isa = PBXBuildFile; fileRef = 01EB82CA13A591D8003EDE60 /* CDLCSubLibrary.m */; };
013D1F3213A5AEA100BF0A67 /* CDLCSubUmbrella.m in Sources */ = {isa = PBXBuildFile; fileRef = 01EB82CC13A591D8003EDE60 /* CDLCSubUmbrella.m */; };
013D1F3313A5AEA100BF0A67 /* CDLCSymbolTable.m in Sources */ = {isa = PBXBuildFile; fileRef = 01EB82CE13A591D8003EDE60 /* CDLCSymbolTable.m */; };
013D1F3413A5AEA100BF0A67 /* CDLCTwoLevelHints.m in Sources */ = {isa = PBXBuildFile; fileRef = 01EB82D013A591D8003EDE60 /* CDLCTwoLevelHints.m */; };
013D1F3513A5AEA100BF0A67 /* CDLCUnixThread.m in Sources */ = {isa = PBXBuildFile; fileRef = 01EB82D213A591D8003EDE60 /* CDLCUnixThread.m */; };
013D1F3613A5AEA100BF0A67 /* CDLCUnknown.m in Sources */ = {isa = PBXBuildFile; fileRef = 01EB82D413A591D8003EDE60 /* CDLCUnknown.m */; };
013D1F3713A5AEA100BF0A67 /* CDLCUUID.m in Sources */ = {isa = PBXBuildFile; fileRef = 01EB82D613A591D8003EDE60 /* CDLCUUID.m */; };
013D1F3813A5AEA100BF0A67 /* CDLCVersionMinimum.m in Sources */ = {isa = PBXBuildFile; fileRef = 01EB82D813A591D8003EDE60 /* CDLCVersionMinimum.m */; };
013D1F3913A5AEA100BF0A67 /* CDLoadCommand.m in Sources */ = {isa = PBXBuildFile; fileRef = 01EB82DA13A591D8003EDE60 /* CDLoadCommand.m */; };
013D1F3A13A5AEA100BF0A67 /* CDFile.m in Sources */ = {isa = PBXBuildFile; fileRef = 01EB82A613A591D7003EDE60 /* CDFile.m */; };
013D1F3B13A5AEA100BF0A67 /* CDFatFile.m in Sources */ = {isa = PBXBuildFile; fileRef = 01EB82A413A591D7003EDE60 /* CDFatFile.m */; };
013D1F3C13A5AEA100BF0A67 /* CDFatArch.m in Sources */ = {isa = PBXBuildFile; fileRef = 01EB82A213A591D7003EDE60 /* CDFatArch.m */; };
013D1F3D13A5AEA100BF0A67 /* CDMachOFile.m in Sources */ = {isa = PBXBuildFile; fileRef = 01EB82DC13A591D8003EDE60 /* CDMachOFile.m */; };
013D1F3E13A5AEA100BF0A67 /* CDSection.m in Sources */ = {isa = PBXBuildFile; fileRef = 01EB82FE13A591D8003EDE60 /* CDSection.m */; };
013D1F4113A5AEA100BF0A67 /* CDSymbol.m in Sources */ = {isa = PBXBuildFile; fileRef = 01EB830813A591D8003EDE60 /* CDSymbol.m */; };
013D1F4213A5AEA100BF0A67 /* CDRelocationInfo.m in Sources */ = {isa = PBXBuildFile; fileRef = 01EB82FA13A591D8003EDE60 /* CDRelocationInfo.m */; };
013D1F4313A5AEA100BF0A67 /* CDObjectiveCProcessor.m in Sources */ = {isa = PBXBuildFile; fileRef = 01EB82E813A591D8003EDE60 /* CDObjectiveCProcessor.m */; };
013D1F4413A5AEA100BF0A67 /* CDObjectiveC1Processor.m in Sources */ = {isa = PBXBuildFile; fileRef = 01EB82E413A591D8003EDE60 /* CDObjectiveC1Processor.m */; };
013D1F4513A5AEA100BF0A67 /* CDObjectiveC2Processor.m in Sources */ = {isa = PBXBuildFile; fileRef = 01EB82E613A591D8003EDE60 /* CDObjectiveC2Processor.m */; };
013D1F4613A5AEA100BF0A67 /* CDVisitorPropertyState.m in Sources */ = {isa = PBXBuildFile; fileRef = 01EB832013A591D8003EDE60 /* CDVisitorPropertyState.m */; };
013D1F4713A5AEA100BF0A67 /* CDOCCategory.m in Sources */ = {isa = PBXBuildFile; fileRef = 01EB82EA13A591D8003EDE60 /* CDOCCategory.m */; };
013D1F4813A5AEA100BF0A67 /* CDOCClass.m in Sources */ = {isa = PBXBuildFile; fileRef = 01EB82EC13A591D8003EDE60 /* CDOCClass.m */; };
013D1F4913A5AEA100BF0A67 /* CDOCInstanceVariable.m in Sources */ = {isa = PBXBuildFile; fileRef = 01EB82EE13A591D8003EDE60 /* CDOCInstanceVariable.m */; };
013D1F4A13A5AEA100BF0A67 /* CDOCMethod.m in Sources */ = {isa = PBXBuildFile; fileRef = 01EB82F013A591D8003EDE60 /* CDOCMethod.m */; };
013D1F4B13A5AEA100BF0A67 /* CDOCModule.m in Sources */ = {isa = PBXBuildFile; fileRef = 01EB82F213A591D8003EDE60 /* CDOCModule.m */; };
013D1F4C13A5AEA100BF0A67 /* CDOCProperty.m in Sources */ = {isa = PBXBuildFile; fileRef = 01EB82F413A591D8003EDE60 /* CDOCProperty.m */; };
013D1F4D13A5AEA100BF0A67 /* CDOCProtocol.m in Sources */ = {isa = PBXBuildFile; fileRef = 01EB82F613A591D8003EDE60 /* CDOCProtocol.m */; };
013D1F4E13A5AEA100BF0A67 /* CDOCSymtab.m in Sources */ = {isa = PBXBuildFile; fileRef = 01EB82F813A591D8003EDE60 /* CDOCSymtab.m */; };
013D1F4F13A5AEA100BF0A67 /* CDBalanceFormatter.m in Sources */ = {isa = PBXBuildFile; fileRef = 01EB829813A591D7003EDE60 /* CDBalanceFormatter.m */; };
013D1F5013A5AEA100BF0A67 /* CDMethodType.m in Sources */ = {isa = PBXBuildFile; fileRef = 01EB82E013A591D8003EDE60 /* CDMethodType.m */; };
013D1F5113A5AEA100BF0A67 /* CDType.m in Sources */ = {isa = PBXBuildFile; fileRef = 01EB831113A591D8003EDE60 /* CDType.m */; };
013D1F5213A5AEA100BF0A67 /* CDTypeFormatter.m in Sources */ = {isa = PBXBuildFile; fileRef = 01EB831513A591D8003EDE60 /* CDTypeFormatter.m */; };
013D1F5313A5AEA100BF0A67 /* CDTypeLexer.m in Sources */ = {isa = PBXBuildFile; fileRef = 01EB831713A591D8003EDE60 /* CDTypeLexer.m */; };
013D1F5413A5AEA100BF0A67 /* CDTypeName.m in Sources */ = {isa = PBXBuildFile; fileRef = 01EB831913A591D8003EDE60 /* CDTypeName.m */; };
013D1F5513A5AEA100BF0A67 /* CDTypeParser.m in Sources */ = {isa = PBXBuildFile; fileRef = 01EB831B13A591D8003EDE60 /* CDTypeParser.m */; };
013D1F5613A5AF1E00BF0A67 /* libMachObjC.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 013D1F1113A5AE5A00BF0A67 /* libMachObjC.a */; };
013D1F5813A5AF4C00BF0A67 /* deprotect.m in Sources */ = {isa = PBXBuildFile; fileRef = 013D1F0913A5A11100BF0A67 /* deprotect.m */; };
013D1F5A13A5AF6500BF0A67 /* libMachObjC.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 013D1F1113A5AE5A00BF0A67 /* libMachObjC.a */; };
0165B8B91827137D00CC647F /* InfoPlist.strings in Resources */ = {isa = PBXBuildFile; fileRef = 0165B8B71827137D00CC647F /* InfoPlist.strings */; };
0165B8C31827182000CC647F /* TestCDNameForCPUType.m in Sources */ = {isa = PBXBuildFile; fileRef = 011E484E1604DF3700722F8D /* TestCDNameForCPUType.m */; };
0165B8C41827184700CC647F /* libMachObjC.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 013D1F1113A5AE5A00BF0A67 /* libMachObjC.a */; };
0165B8D81827198900CC647F /* TestBlockSignature.m in Sources */ = {isa = PBXBuildFile; fileRef = 0165B8C71827198900CC647F /* TestBlockSignature.m */; };
0165B8D91827198900CC647F /* TestCDArchFromName.m in Sources */ = {isa = PBXBuildFile; fileRef = 0165B8C91827198900CC647F /* TestCDArchFromName.m */; };
0165B8DA1827198900CC647F /* TestCDArchUses64BitABI.m in Sources */ = {isa = PBXBuildFile; fileRef = 0165B8CB1827198900CC647F /* TestCDArchUses64BitABI.m */; };
0165B8DB1827198900CC647F /* TestFatFile_armv7_v7s.m in Sources */ = {isa = PBXBuildFile; fileRef = 0165B8CD1827198900CC647F /* TestFatFile_armv7_v7s.m */; };
0165B8DC1827198900CC647F /* TestFatFile_Intel32_64_lib64.m in Sources */ = {isa = PBXBuildFile; fileRef = 0165B8CF1827198900CC647F /* TestFatFile_Intel32_64_lib64.m */; };
0165B8DD1827198900CC647F /* TestFatFile_Intel32_64.m in Sources */ = {isa = PBXBuildFile; fileRef = 0165B8D11827198900CC647F /* TestFatFile_Intel32_64.m */; };
0165B8DE1827198900CC647F /* TestFatFile_Intel64_32.m in Sources */ = {isa = PBXBuildFile; fileRef = 0165B8D31827198900CC647F /* TestFatFile_Intel64_32.m */; };
0165B8DF1827198900CC647F /* TestThinFile_Intel64_lib64.m in Sources */ = {isa = PBXBuildFile; fileRef = 0165B8D51827198900CC647F /* TestThinFile_Intel64_lib64.m */; };
0165B8E01827198900CC647F /* TestThinFile_Intel64.m in Sources */ = {isa = PBXBuildFile; fileRef = 0165B8D71827198900CC647F /* TestThinFile_Intel64.m */; };
0168C98713E4AB3200926EC3 /* CDLCFunctionStarts.h in Headers */ = {isa = PBXBuildFile; fileRef = 0168C98513E4AB3200926EC3 /* CDLCFunctionStarts.h */; };
0168C98813E4AB3200926EC3 /* CDLCFunctionStarts.m in Sources */ = {isa = PBXBuildFile; fileRef = 0168C98613E4AB3200926EC3 /* CDLCFunctionStarts.m */; };
0179B9E614F2025E00EC98F7 /* CDLCMain.h in Headers */ = {isa = PBXBuildFile; fileRef = 0179B9E414F2025E00EC98F7 /* CDLCMain.h */; };
0179B9E714F2025E00EC98F7 /* CDLCMain.m in Sources */ = {isa = PBXBuildFile; fileRef = 0179B9E514F2025E00EC98F7 /* CDLCMain.m */; };
0179B9EB14F204AA00EC98F7 /* CDLCSourceVersion.h in Headers */ = {isa = PBXBuildFile; fileRef = 0179B9E914F204AA00EC98F7 /* CDLCSourceVersion.h */; };
0179B9EC14F204AA00EC98F7 /* CDLCSourceVersion.m in Sources */ = {isa = PBXBuildFile; fileRef = 0179B9EA14F204AA00EC98F7 /* CDLCSourceVersion.m */; };
0179B9F714F20E9800EC98F7 /* CDLCDataInCode.h in Headers */ = {isa = PBXBuildFile; fileRef = 0179B9F514F20E9800EC98F7 /* CDLCDataInCode.h */; };
0179B9F814F20E9800EC98F7 /* CDLCDataInCode.m in Sources */ = {isa = PBXBuildFile; fileRef = 0179B9F614F20E9800EC98F7 /* CDLCDataInCode.m */; };
018BFD4214F65DB600190F07 /* CDExtensions.h in Headers */ = {isa = PBXBuildFile; fileRef = 018BFD4114F65DB600190F07 /* CDExtensions.h */; };
0194945C1673F8F400A29005 /* CDProtocolUniquer.h in Headers */ = {isa = PBXBuildFile; fileRef = 0194945A1673F8F100A29005 /* CDProtocolUniquer.h */; };
0194945D1673F8F400A29005 /* CDProtocolUniquer.m in Sources */ = {isa = PBXBuildFile; fileRef = 0194945B1673F8F200A29005 /* CDProtocolUniquer.m */; };
01B02D0E13A5B0FB0047BC53 /* formatType.m in Sources */ = {isa = PBXBuildFile; fileRef = 01B02D0D13A5B0FB0047BC53 /* formatType.m */; };
01B02D1113A5B1460047BC53 /* class-dump.m in Sources */ = {isa = PBXBuildFile; fileRef = 01B02D1013A5B1460047BC53 /* class-dump.m */; };
01B02D1313A5B1CE0047BC53 /* libMachObjC.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 013D1F1113A5AE5A00BF0A67 /* libMachObjC.a */; };
01B02D2013A5B4D70047BC53 /* CDClassDump.m in Sources */ = {isa = PBXBuildFile; fileRef = 01EB829A13A591D7003EDE60 /* CDClassDump.m */; };
01B02D2113A5B4D70047BC53 /* CDStructureTable.m in Sources */ = {isa = PBXBuildFile; fileRef = 01EB830613A591D8003EDE60 /* CDStructureTable.m */; };
01B02D2213A5B4D70047BC53 /* CDTypeController.m in Sources */ = {isa = PBXBuildFile; fileRef = 01EB831313A591D8003EDE60 /* CDTypeController.m */; };
01B02D2313A5B4D70047BC53 /* CDStructureInfo.m in Sources */ = {isa = PBXBuildFile; fileRef = 01EB830413A591D8003EDE60 /* CDStructureInfo.m */; };
01B02D2513A5B4D70047BC53 /* CDClassDumpVisitor.m in Sources */ = {isa = PBXBuildFile; fileRef = 01EB829C13A591D7003EDE60 /* CDClassDumpVisitor.m */; };
01B02D2613A5B4D70047BC53 /* CDFindMethodVisitor.m in Sources */ = {isa = PBXBuildFile; fileRef = 01EB82A813A591D7003EDE60 /* CDFindMethodVisitor.m */; };
01B02D2713A5B4D70047BC53 /* CDVisitor.m in Sources */ = {isa = PBXBuildFile; fileRef = 01EB831E13A591D8003EDE60 /* CDVisitor.m */; };
01B02D2813A5B4D70047BC53 /* CDClassFrameworkVisitor.m in Sources */ = {isa = PBXBuildFile; fileRef = 01EB829E13A591D7003EDE60 /* CDClassFrameworkVisitor.m */; };
01B02D2913A5B4D70047BC53 /* CDMultiFileVisitor.m in Sources */ = {isa = PBXBuildFile; fileRef = 01EB82E213A591D8003EDE60 /* CDMultiFileVisitor.m */; };
01B02D2A13A5B4D70047BC53 /* CDTextClassDumpVisitor.m in Sources */ = {isa = PBXBuildFile; fileRef = 01EB830C13A591D8003EDE60 /* CDTextClassDumpVisitor.m */; };
01B02D2B13A5B4D70047BC53 /* CDSearchPathState.m in Sources */ = {isa = PBXBuildFile; fileRef = 01EB82FC13A591D8003EDE60 /* CDSearchPathState.m */; };
01FB2151222A86C40012A5D3 /* blowfish.h in Headers */ = {isa = PBXBuildFile; fileRef = 01FB214F222A86C40012A5D3 /* blowfish.h */; };
01FB2152222A86C40012A5D3 /* blowfish.c in Sources */ = {isa = PBXBuildFile; fileRef = 01FB2150222A86C40012A5D3 /* blowfish.c */; };
0D288C10187BC2EE0026E2A0 /* CDOCClassReference.h in Headers */ = {isa = PBXBuildFile; fileRef = 0D288C0E187BC2EE0026E2A0 /* CDOCClassReference.h */; };
0D288C11187BC2EE0026E2A0 /* CDOCClassReference.m in Sources */ = {isa = PBXBuildFile; fileRef = 0D288C0F187BC2EE0026E2A0 /* CDOCClassReference.m */; };
C270B5C616C54AD6006CA75D /* ULEB128.m in Sources */ = {isa = PBXBuildFile; fileRef = C270B5C516C54AD5006CA75D /* ULEB128.m */; };
C270B5C816C54B0C006CA75D /* ULEB128.h in Headers */ = {isa = PBXBuildFile; fileRef = C270B5C716C54B0A006CA75D /* ULEB128.h */; };
/* End PBXBuildFile section */
/* Begin PBXContainerItemProxy section */
0106C81D1412D05F00B29890 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = 01EB825613A590D9003EDE60 /* Project object */;
proxyType = 1;
remoteGlobalIDString = 013D1F1013A5AE5A00BF0A67;
remoteInfo = MachObjC;
};
0106C81F1412D07000B29890 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = 01EB825613A590D9003EDE60 /* Project object */;
proxyType = 1;
remoteGlobalIDString = 013D1F1013A5AE5A00BF0A67;
remoteInfo = MachObjC;
};
0106C8211412D07C00B29890 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = 01EB825613A590D9003EDE60 /* Project object */;
proxyType = 1;
remoteGlobalIDString = 013D1F1013A5AE5A00BF0A67;
remoteInfo = MachObjC;
};
0158A8151412DED0003FEB91 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = 01EB825613A590D9003EDE60 /* Project object */;
proxyType = 1;
remoteGlobalIDString = 013D1F1013A5AE5A00BF0A67;
remoteInfo = MachObjC;
};
0165B8BD1827137D00CC647F /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = 01EB825613A590D9003EDE60 /* Project object */;
proxyType = 1;
remoteGlobalIDString = 01B02D2E13A5B5D50047BC53;
remoteInfo = all;
};
01B02D3213A5B5E20047BC53 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = 01EB825613A590D9003EDE60 /* Project object */;
proxyType = 1;
remoteGlobalIDString = 01EB825E13A590D9003EDE60;
remoteInfo = "class-dump";
};
01B02D3413A5B5E20047BC53 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = 01EB825613A590D9003EDE60 /* Project object */;
proxyType = 1;
remoteGlobalIDString = 013D1EFA13A5A0F100BF0A67;
remoteInfo = deprotect;
};
01B02D3813A5B5E20047BC53 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = 01EB825613A590D9003EDE60 /* Project object */;
proxyType = 1;
remoteGlobalIDString = 01B02CFE13A5B0DC0047BC53;
remoteInfo = formatType;
};
/* End PBXContainerItemProxy section */
/* Begin PBXCopyFilesBuildPhase section */
013D1EF913A5A0F100BF0A67 /* CopyFiles */ = {
isa = PBXCopyFilesBuildPhase;
buildActionMask = 2147483647;
dstPath = /usr/share/man/man1/;
dstSubfolderSpec = 0;
files = (
);
runOnlyForDeploymentPostprocessing = 1;
};
01B02CFD13A5B0DC0047BC53 /* CopyFiles */ = {
isa = PBXCopyFilesBuildPhase;
buildActionMask = 2147483647;
dstPath = /usr/share/man/man1/;
dstSubfolderSpec = 0;
files = (
);
runOnlyForDeploymentPostprocessing = 1;
};
01EB825D13A590D9003EDE60 /* CopyFiles */ = {
isa = PBXCopyFilesBuildPhase;
buildActionMask = 2147483647;
dstPath = /usr/share/man/man1/;
dstSubfolderSpec = 0;
files = (
);
runOnlyForDeploymentPostprocessing = 1;
};
/* End PBXCopyFilesBuildPhase section */
/* Begin PBXFileReference section */
011E484E1604DF3700722F8D /* TestCDNameForCPUType.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = TestCDNameForCPUType.m; sourceTree = "<group>"; };
0132DD4321816C09009CE078 /* CDLCBuildVersion.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = CDLCBuildVersion.h; path = Source/CDLCBuildVersion.h; sourceTree = "<group>"; };
0132DD4421816C09009CE078 /* CDLCBuildVersion.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = CDLCBuildVersion.m; path = Source/CDLCBuildVersion.m; sourceTree = "<group>"; };
0133F1771EE784DA0086686F /* README.md */ = {isa = PBXFileReference; lastKnownFileType = net.daringfireball.markdown; path = README.md; sourceTree = "<group>"; };
013D1EFB13A5A0F100BF0A67 /* deprotect */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.executable"; includeInIndex = 0; path = deprotect; sourceTree = BUILT_PRODUCTS_DIR; };
013D1F0913A5A11100BF0A67 /* deprotect.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = deprotect.m; sourceTree = SOURCE_ROOT; };
013D1F1113A5AE5A00BF0A67 /* libMachObjC.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = libMachObjC.a; sourceTree = BUILT_PRODUCTS_DIR; };
0165B8B11827137D00CC647F /* UnitTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = UnitTests.xctest; sourceTree = BUILT_PRODUCTS_DIR; };
0165B8B61827137D00CC647F /* UnitTests-Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = "UnitTests-Info.plist"; sourceTree = "<group>"; };
0165B8B81827137D00CC647F /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/InfoPlist.strings; sourceTree = "<group>"; };
0165B8BC1827137D00CC647F /* UnitTests-Prefix.pch */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "UnitTests-Prefix.pch"; sourceTree = "<group>"; };
0165B8C71827198900CC647F /* TestBlockSignature.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = TestBlockSignature.m; sourceTree = "<group>"; };
0165B8C91827198900CC647F /* TestCDArchFromName.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = TestCDArchFromName.m; sourceTree = "<group>"; };
0165B8CB1827198900CC647F /* TestCDArchUses64BitABI.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = TestCDArchUses64BitABI.m; sourceTree = "<group>"; };
0165B8CD1827198900CC647F /* TestFatFile_armv7_v7s.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = TestFatFile_armv7_v7s.m; sourceTree = "<group>"; };
0165B8CF1827198900CC647F /* TestFatFile_Intel32_64_lib64.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = TestFatFile_Intel32_64_lib64.m; sourceTree = "<group>"; };
0165B8D11827198900CC647F /* TestFatFile_Intel32_64.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = TestFatFile_Intel32_64.m; sourceTree = "<group>"; };
0165B8D31827198900CC647F /* TestFatFile_Intel64_32.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = TestFatFile_Intel64_32.m; sourceTree = "<group>"; };
0165B8D51827198900CC647F /* TestThinFile_Intel64_lib64.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = TestThinFile_Intel64_lib64.m; sourceTree = "<group>"; };
0165B8D71827198900CC647F /* TestThinFile_Intel64.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = TestThinFile_Intel64.m; sourceTree = "<group>"; };
0168C98513E4AB3200926EC3 /* CDLCFunctionStarts.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = CDLCFunctionStarts.h; path = Source/CDLCFunctionStarts.h; sourceTree = "<group>"; };
0168C98613E4AB3200926EC3 /* CDLCFunctionStarts.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = CDLCFunctionStarts.m; path = Source/CDLCFunctionStarts.m; sourceTree = "<group>"; };
0179B9E414F2025E00EC98F7 /* CDLCMain.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = CDLCMain.h; path = Source/CDLCMain.h; sourceTree = "<group>"; };
0179B9E514F2025E00EC98F7 /* CDLCMain.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = CDLCMain.m; path = Source/CDLCMain.m; sourceTree = "<group>"; };
0179B9E914F204AA00EC98F7 /* CDLCSourceVersion.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = CDLCSourceVersion.h; path = Source/CDLCSourceVersion.h; sourceTree = "<group>"; };
0179B9EA14F204AA00EC98F7 /* CDLCSourceVersion.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = CDLCSourceVersion.m; path = Source/CDLCSourceVersion.m; sourceTree = "<group>"; };
0179B9F514F20E9800EC98F7 /* CDLCDataInCode.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = CDLCDataInCode.h; path = Source/CDLCDataInCode.h; sourceTree = "<group>"; };
0179B9F614F20E9800EC98F7 /* CDLCDataInCode.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = CDLCDataInCode.m; path = Source/CDLCDataInCode.m; sourceTree = "<group>"; };
018BFD4114F65DB600190F07 /* CDExtensions.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = CDExtensions.h; path = Source/CDExtensions.h; sourceTree = "<group>"; };
0194945A1673F8F100A29005 /* CDProtocolUniquer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = CDProtocolUniquer.h; path = Source/CDProtocolUniquer.h; sourceTree = "<group>"; };
0194945B1673F8F200A29005 /* CDProtocolUniquer.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = CDProtocolUniquer.m; path = Source/CDProtocolUniquer.m; sourceTree = "<group>"; };
01B02CFF13A5B0DC0047BC53 /* formatType */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.executable"; includeInIndex = 0; path = formatType; sourceTree = BUILT_PRODUCTS_DIR; };
01B02D0D13A5B0FB0047BC53 /* formatType.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = formatType.m; sourceTree = SOURCE_ROOT; };
01B02D0F13A5B1220047BC53 /* formatType-Prefix.pch */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "formatType-Prefix.pch"; sourceTree = SOURCE_ROOT; };
01B02D1013A5B1460047BC53 /* class-dump.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "class-dump.m"; sourceTree = SOURCE_ROOT; };
01B02D1213A5B16E0047BC53 /* deprotect-Prefix.pch */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "deprotect-Prefix.pch"; sourceTree = SOURCE_ROOT; };
01B02D1B13A5B2A40047BC53 /* class-dump-Prefix.pch */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "class-dump-Prefix.pch"; sourceTree = SOURCE_ROOT; };
01B02D4913A5B9090047BC53 /* Info.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = SOURCE_ROOT; };
01EB825F13A590D9003EDE60 /* class-dump */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.executable"; includeInIndex = 0; path = "class-dump"; sourceTree = BUILT_PRODUCTS_DIR; };
01EB828213A5916D003EDE60 /* MachObjC-Prefix.pch */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "MachObjC-Prefix.pch"; sourceTree = "<group>"; };
01EB828713A591A5003EDE60 /* NSArray-CDExtensions.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = "NSArray-CDExtensions.h"; path = "Source/NSArray-CDExtensions.h"; sourceTree = SOURCE_ROOT; };
01EB828813A591A5003EDE60 /* NSArray-CDExtensions.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = "NSArray-CDExtensions.m"; path = "Source/NSArray-CDExtensions.m"; sourceTree = SOURCE_ROOT; };
01EB828913A591A5003EDE60 /* NSData-CDExtensions.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = "NSData-CDExtensions.h"; path = "Source/NSData-CDExtensions.h"; sourceTree = SOURCE_ROOT; };
01EB828A13A591A5003EDE60 /* NSData-CDExtensions.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = "NSData-CDExtensions.m"; path = "Source/NSData-CDExtensions.m"; sourceTree = SOURCE_ROOT; };
01EB828B13A591A5003EDE60 /* NSError-CDExtensions.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = "NSError-CDExtensions.h"; path = "Source/NSError-CDExtensions.h"; sourceTree = SOURCE_ROOT; };
01EB828C13A591A5003EDE60 /* NSError-CDExtensions.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = "NSError-CDExtensions.m"; path = "Source/NSError-CDExtensions.m"; sourceTree = SOURCE_ROOT; };
01EB828D13A591A5003EDE60 /* NSScanner-CDExtensions.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = "NSScanner-CDExtensions.h"; path = "Source/NSScanner-CDExtensions.h"; sourceTree = SOURCE_ROOT; };
01EB828E13A591A5003EDE60 /* NSScanner-CDExtensions.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = "NSScanner-CDExtensions.m"; path = "Source/NSScanner-CDExtensions.m"; sourceTree = SOURCE_ROOT; };
01EB828F13A591A5003EDE60 /* NSString-CDExtensions.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = "NSString-CDExtensions.h"; path = "Source/NSString-CDExtensions.h"; sourceTree = SOURCE_ROOT; };
01EB829013A591A5003EDE60 /* NSString-CDExtensions.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = "NSString-CDExtensions.m"; path = "Source/NSString-CDExtensions.m"; sourceTree = SOURCE_ROOT; };
01EB829613A591D7003EDE60 /* cd_objc2.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = cd_objc2.h; path = Source/cd_objc2.h; sourceTree = SOURCE_ROOT; };
01EB829713A591D7003EDE60 /* CDBalanceFormatter.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = CDBalanceFormatter.h; path = Source/CDBalanceFormatter.h; sourceTree = SOURCE_ROOT; };
01EB829813A591D7003EDE60 /* CDBalanceFormatter.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = CDBalanceFormatter.m; path = Source/CDBalanceFormatter.m; sourceTree = SOURCE_ROOT; };
01EB829913A591D7003EDE60 /* CDClassDump.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = CDClassDump.h; path = Source/CDClassDump.h; sourceTree = SOURCE_ROOT; };
01EB829A13A591D7003EDE60 /* CDClassDump.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = CDClassDump.m; path = Source/CDClassDump.m; sourceTree = SOURCE_ROOT; };
01EB829B13A591D7003EDE60 /* CDClassDumpVisitor.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = CDClassDumpVisitor.h; path = Source/CDClassDumpVisitor.h; sourceTree = SOURCE_ROOT; };
01EB829C13A591D7003EDE60 /* CDClassDumpVisitor.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = CDClassDumpVisitor.m; path = Source/CDClassDumpVisitor.m; sourceTree = SOURCE_ROOT; };
01EB829D13A591D7003EDE60 /* CDClassFrameworkVisitor.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = CDClassFrameworkVisitor.h; path = Source/CDClassFrameworkVisitor.h; sourceTree = SOURCE_ROOT; };
01EB829E13A591D7003EDE60 /* CDClassFrameworkVisitor.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = CDClassFrameworkVisitor.m; path = Source/CDClassFrameworkVisitor.m; sourceTree = SOURCE_ROOT; };
01EB829F13A591D7003EDE60 /* CDDataCursor.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = CDDataCursor.h; path = Source/CDDataCursor.h; sourceTree = SOURCE_ROOT; };
01EB82A013A591D7003EDE60 /* CDDataCursor.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = CDDataCursor.m; path = Source/CDDataCursor.m; sourceTree = SOURCE_ROOT; };
01EB82A113A591D7003EDE60 /* CDFatArch.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = CDFatArch.h; path = Source/CDFatArch.h; sourceTree = SOURCE_ROOT; };
01EB82A213A591D7003EDE60 /* CDFatArch.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = CDFatArch.m; path = Source/CDFatArch.m; sourceTree = SOURCE_ROOT; };
01EB82A313A591D7003EDE60 /* CDFatFile.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = CDFatFile.h; path = Source/CDFatFile.h; sourceTree = SOURCE_ROOT; };
01EB82A413A591D7003EDE60 /* CDFatFile.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = CDFatFile.m; path = Source/CDFatFile.m; sourceTree = SOURCE_ROOT; };
01EB82A513A591D7003EDE60 /* CDFile.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = CDFile.h; path = Source/CDFile.h; sourceTree = SOURCE_ROOT; };
01EB82A613A591D7003EDE60 /* CDFile.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = CDFile.m; path = Source/CDFile.m; sourceTree = SOURCE_ROOT; };
01EB82A713A591D7003EDE60 /* CDFindMethodVisitor.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = CDFindMethodVisitor.h; path = Source/CDFindMethodVisitor.h; sourceTree = SOURCE_ROOT; };
01EB82A813A591D7003EDE60 /* CDFindMethodVisitor.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = CDFindMethodVisitor.m; path = Source/CDFindMethodVisitor.m; sourceTree = SOURCE_ROOT; };
01EB82A913A591D7003EDE60 /* CDLCDyldInfo.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = CDLCDyldInfo.h; path = Source/CDLCDyldInfo.h; sourceTree = SOURCE_ROOT; };
01EB82AA13A591D7003EDE60 /* CDLCDyldInfo.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = CDLCDyldInfo.m; path = Source/CDLCDyldInfo.m; sourceTree = SOURCE_ROOT; };
01EB82AB13A591D7003EDE60 /* CDLCDylib.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = CDLCDylib.h; path = Source/CDLCDylib.h; sourceTree = SOURCE_ROOT; };
01EB82AC13A591D7003EDE60 /* CDLCDylib.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = CDLCDylib.m; path = Source/CDLCDylib.m; sourceTree = SOURCE_ROOT; };
01EB82AD13A591D7003EDE60 /* CDLCDylinker.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = CDLCDylinker.h; path = Source/CDLCDylinker.h; sourceTree = SOURCE_ROOT; };
01EB82AE13A591D7003EDE60 /* CDLCDylinker.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = CDLCDylinker.m; path = Source/CDLCDylinker.m; sourceTree = SOURCE_ROOT; };
01EB82AF13A591D7003EDE60 /* CDLCDynamicSymbolTable.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = CDLCDynamicSymbolTable.h; path = Source/CDLCDynamicSymbolTable.h; sourceTree = SOURCE_ROOT; };
01EB82B013A591D7003EDE60 /* CDLCDynamicSymbolTable.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = CDLCDynamicSymbolTable.m; path = Source/CDLCDynamicSymbolTable.m; sourceTree = SOURCE_ROOT; };
01EB82B113A591D7003EDE60 /* CDLCEncryptionInfo.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = CDLCEncryptionInfo.h; path = Source/CDLCEncryptionInfo.h; sourceTree = SOURCE_ROOT; };
01EB82B213A591D7003EDE60 /* CDLCEncryptionInfo.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = CDLCEncryptionInfo.m; path = Source/CDLCEncryptionInfo.m; sourceTree = SOURCE_ROOT; };
01EB82B313A591D7003EDE60 /* CDLCLinkeditData.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = CDLCLinkeditData.h; path = Source/CDLCLinkeditData.h; sourceTree = SOURCE_ROOT; };
01EB82B413A591D7003EDE60 /* CDLCLinkeditData.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = CDLCLinkeditData.m; path = Source/CDLCLinkeditData.m; sourceTree = SOURCE_ROOT; };
01EB82B513A591D7003EDE60 /* CDLCPrebindChecksum.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = CDLCPrebindChecksum.h; path = Source/CDLCPrebindChecksum.h; sourceTree = SOURCE_ROOT; };
01EB82B613A591D7003EDE60 /* CDLCPrebindChecksum.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = CDLCPrebindChecksum.m; path = Source/CDLCPrebindChecksum.m; sourceTree = SOURCE_ROOT; };
01EB82B713A591D7003EDE60 /* CDLCPreboundDylib.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = CDLCPreboundDylib.h; path = Source/CDLCPreboundDylib.h; sourceTree = SOURCE_ROOT; };
01EB82B813A591D7003EDE60 /* CDLCPreboundDylib.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = CDLCPreboundDylib.m; path = Source/CDLCPreboundDylib.m; sourceTree = SOURCE_ROOT; };
01EB82B913A591D7003EDE60 /* CDLCRoutines32.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = CDLCRoutines32.h; path = Source/CDLCRoutines32.h; sourceTree = SOURCE_ROOT; };
01EB82BA13A591D8003EDE60 /* CDLCRoutines32.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = CDLCRoutines32.m; path = Source/CDLCRoutines32.m; sourceTree = SOURCE_ROOT; };
01EB82BB13A591D8003EDE60 /* CDLCRoutines64.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = CDLCRoutines64.h; path = Source/CDLCRoutines64.h; sourceTree = SOURCE_ROOT; };
01EB82BC13A591D8003EDE60 /* CDLCRoutines64.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = CDLCRoutines64.m; path = Source/CDLCRoutines64.m; sourceTree = SOURCE_ROOT; };
01EB82BD13A591D8003EDE60 /* CDLCRunPath.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = CDLCRunPath.h; path = Source/CDLCRunPath.h; sourceTree = SOURCE_ROOT; };
01EB82BE13A591D8003EDE60 /* CDLCRunPath.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = CDLCRunPath.m; path = Source/CDLCRunPath.m; sourceTree = SOURCE_ROOT; };
01EB82BF13A591D8003EDE60 /* CDLCSegment.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = CDLCSegment.h; path = Source/CDLCSegment.h; sourceTree = SOURCE_ROOT; };
01EB82C013A591D8003EDE60 /* CDLCSegment.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = CDLCSegment.m; path = Source/CDLCSegment.m; sourceTree = SOURCE_ROOT; };
01EB82C513A591D8003EDE60 /* CDLCSubClient.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = CDLCSubClient.h; path = Source/CDLCSubClient.h; sourceTree = SOURCE_ROOT; };
01EB82C613A591D8003EDE60 /* CDLCSubClient.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = CDLCSubClient.m; path = Source/CDLCSubClient.m; sourceTree = SOURCE_ROOT; };
01EB82C713A591D8003EDE60 /* CDLCSubFramework.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = CDLCSubFramework.h; path = Source/CDLCSubFramework.h; sourceTree = SOURCE_ROOT; };
01EB82C813A591D8003EDE60 /* CDLCSubFramework.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = CDLCSubFramework.m; path = Source/CDLCSubFramework.m; sourceTree = SOURCE_ROOT; };
01EB82C913A591D8003EDE60 /* CDLCSubLibrary.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = CDLCSubLibrary.h; path = Source/CDLCSubLibrary.h; sourceTree = SOURCE_ROOT; };
01EB82CA13A591D8003EDE60 /* CDLCSubLibrary.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = CDLCSubLibrary.m; path = Source/CDLCSubLibrary.m; sourceTree = SOURCE_ROOT; };
01EB82CB13A591D8003EDE60 /* CDLCSubUmbrella.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = CDLCSubUmbrella.h; path = Source/CDLCSubUmbrella.h; sourceTree = SOURCE_ROOT; };
01EB82CC13A591D8003EDE60 /* CDLCSubUmbrella.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = CDLCSubUmbrella.m; path = Source/CDLCSubUmbrella.m; sourceTree = SOURCE_ROOT; };
01EB82CD13A591D8003EDE60 /* CDLCSymbolTable.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = CDLCSymbolTable.h; path = Source/CDLCSymbolTable.h; sourceTree = SOURCE_ROOT; };
01EB82CE13A591D8003EDE60 /* CDLCSymbolTable.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = CDLCSymbolTable.m; path = Source/CDLCSymbolTable.m; sourceTree = SOURCE_ROOT; };
01EB82CF13A591D8003EDE60 /* CDLCTwoLevelHints.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = CDLCTwoLevelHints.h; path = Source/CDLCTwoLevelHints.h; sourceTree = SOURCE_ROOT; };
01EB82D013A591D8003EDE60 /* CDLCTwoLevelHints.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = CDLCTwoLevelHints.m; path = Source/CDLCTwoLevelHints.m; sourceTree = SOURCE_ROOT; };
01EB82D113A591D8003EDE60 /* CDLCUnixThread.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = CDLCUnixThread.h; path = Source/CDLCUnixThread.h; sourceTree = SOURCE_ROOT; };
01EB82D213A591D8003EDE60 /* CDLCUnixThread.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = CDLCUnixThread.m; path = Source/CDLCUnixThread.m; sourceTree = SOURCE_ROOT; };
01EB82D313A591D8003EDE60 /* CDLCUnknown.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = CDLCUnknown.h; path = Source/CDLCUnknown.h; sourceTree = SOURCE_ROOT; };
01EB82D413A591D8003EDE60 /* CDLCUnknown.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = CDLCUnknown.m; path = Source/CDLCUnknown.m; sourceTree = SOURCE_ROOT; };
01EB82D513A591D8003EDE60 /* CDLCUUID.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = CDLCUUID.h; path = Source/CDLCUUID.h; sourceTree = SOURCE_ROOT; };
01EB82D613A591D8003EDE60 /* CDLCUUID.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = CDLCUUID.m; path = Source/CDLCUUID.m; sourceTree = SOURCE_ROOT; };
01EB82D713A591D8003EDE60 /* CDLCVersionMinimum.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = CDLCVersionMinimum.h; path = Source/CDLCVersionMinimum.h; sourceTree = SOURCE_ROOT; };
01EB82D813A591D8003EDE60 /* CDLCVersionMinimum.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = CDLCVersionMinimum.m; path = Source/CDLCVersionMinimum.m; sourceTree = SOURCE_ROOT; };
01EB82D913A591D8003EDE60 /* CDLoadCommand.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = CDLoadCommand.h; path = Source/CDLoadCommand.h; sourceTree = SOURCE_ROOT; };
01EB82DA13A591D8003EDE60 /* CDLoadCommand.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = CDLoadCommand.m; path = Source/CDLoadCommand.m; sourceTree = SOURCE_ROOT; };
01EB82DB13A591D8003EDE60 /* CDMachOFile.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = CDMachOFile.h; path = Source/CDMachOFile.h; sourceTree = SOURCE_ROOT; };
01EB82DC13A591D8003EDE60 /* CDMachOFile.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = CDMachOFile.m; path = Source/CDMachOFile.m; sourceTree = SOURCE_ROOT; };
01EB82DD13A591D8003EDE60 /* CDMachOFileDataCursor.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = CDMachOFileDataCursor.h; path = Source/CDMachOFileDataCursor.h; sourceTree = SOURCE_ROOT; };
01EB82DE13A591D8003EDE60 /* CDMachOFileDataCursor.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = CDMachOFileDataCursor.m; path = Source/CDMachOFileDataCursor.m; sourceTree = SOURCE_ROOT; };
01EB82DF13A591D8003EDE60 /* CDMethodType.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = CDMethodType.h; path = Source/CDMethodType.h; sourceTree = SOURCE_ROOT; };
01EB82E013A591D8003EDE60 /* CDMethodType.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = CDMethodType.m; path = Source/CDMethodType.m; sourceTree = SOURCE_ROOT; };
01EB82E113A591D8003EDE60 /* CDMultiFileVisitor.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = CDMultiFileVisitor.h; path = Source/CDMultiFileVisitor.h; sourceTree = SOURCE_ROOT; };
01EB82E213A591D8003EDE60 /* CDMultiFileVisitor.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = CDMultiFileVisitor.m; path = Source/CDMultiFileVisitor.m; sourceTree = SOURCE_ROOT; };
01EB82E313A591D8003EDE60 /* CDObjectiveC1Processor.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = CDObjectiveC1Processor.h; path = Source/CDObjectiveC1Processor.h; sourceTree = SOURCE_ROOT; };
01EB82E413A591D8003EDE60 /* CDObjectiveC1Processor.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = CDObjectiveC1Processor.m; path = Source/CDObjectiveC1Processor.m; sourceTree = SOURCE_ROOT; };
01EB82E513A591D8003EDE60 /* CDObjectiveC2Processor.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = CDObjectiveC2Processor.h; path = Source/CDObjectiveC2Processor.h; sourceTree = SOURCE_ROOT; };
01EB82E613A591D8003EDE60 /* CDObjectiveC2Processor.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = CDObjectiveC2Processor.m; path = Source/CDObjectiveC2Processor.m; sourceTree = SOURCE_ROOT; };
01EB82E713A591D8003EDE60 /* CDObjectiveCProcessor.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = CDObjectiveCProcessor.h; path = Source/CDObjectiveCProcessor.h; sourceTree = SOURCE_ROOT; };
01EB82E813A591D8003EDE60 /* CDObjectiveCProcessor.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = CDObjectiveCProcessor.m; path = Source/CDObjectiveCProcessor.m; sourceTree = SOURCE_ROOT; };
01EB82E913A591D8003EDE60 /* CDOCCategory.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = CDOCCategory.h; path = Source/CDOCCategory.h; sourceTree = SOURCE_ROOT; };
01EB82EA13A591D8003EDE60 /* CDOCCategory.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = CDOCCategory.m; path = Source/CDOCCategory.m; sourceTree = SOURCE_ROOT; };
01EB82EB13A591D8003EDE60 /* CDOCClass.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = CDOCClass.h; path = Source/CDOCClass.h; sourceTree = SOURCE_ROOT; };
01EB82EC13A591D8003EDE60 /* CDOCClass.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = CDOCClass.m; path = Source/CDOCClass.m; sourceTree = SOURCE_ROOT; };
01EB82ED13A591D8003EDE60 /* CDOCInstanceVariable.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = CDOCInstanceVariable.h; path = Source/CDOCInstanceVariable.h; sourceTree = SOURCE_ROOT; };
01EB82EE13A591D8003EDE60 /* CDOCInstanceVariable.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = CDOCInstanceVariable.m; path = Source/CDOCInstanceVariable.m; sourceTree = SOURCE_ROOT; };
01EB82EF13A591D8003EDE60 /* CDOCMethod.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = CDOCMethod.h; path = Source/CDOCMethod.h; sourceTree = SOURCE_ROOT; };
01EB82F013A591D8003EDE60 /* CDOCMethod.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = CDOCMethod.m; path = Source/CDOCMethod.m; sourceTree = SOURCE_ROOT; };
01EB82F113A591D8003EDE60 /* CDOCModule.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = CDOCModule.h; path = Source/CDOCModule.h; sourceTree = SOURCE_ROOT; };
01EB82F213A591D8003EDE60 /* CDOCModule.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = CDOCModule.m; path = Source/CDOCModule.m; sourceTree = SOURCE_ROOT; };
01EB82F313A591D8003EDE60 /* CDOCProperty.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = CDOCProperty.h; path = Source/CDOCProperty.h; sourceTree = SOURCE_ROOT; };
01EB82F413A591D8003EDE60 /* CDOCProperty.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = CDOCProperty.m; path = Source/CDOCProperty.m; sourceTree = SOURCE_ROOT; };
01EB82F513A591D8003EDE60 /* CDOCProtocol.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = CDOCProtocol.h; path = Source/CDOCProtocol.h; sourceTree = SOURCE_ROOT; };
01EB82F613A591D8003EDE60 /* CDOCProtocol.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = CDOCProtocol.m; path = Source/CDOCProtocol.m; sourceTree = SOURCE_ROOT; };
01EB82F713A591D8003EDE60 /* CDOCSymtab.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = CDOCSymtab.h; path = Source/CDOCSymtab.h; sourceTree = SOURCE_ROOT; };
01EB82F813A591D8003EDE60 /* CDOCSymtab.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = CDOCSymtab.m; path = Source/CDOCSymtab.m; sourceTree = SOURCE_ROOT; };
01EB82F913A591D8003EDE60 /* CDRelocationInfo.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = CDRelocationInfo.h; path = Source/CDRelocationInfo.h; sourceTree = SOURCE_ROOT; };
01EB82FA13A591D8003EDE60 /* CDRelocationInfo.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = CDRelocationInfo.m; path = Source/CDRelocationInfo.m; sourceTree = SOURCE_ROOT; };
01EB82FB13A591D8003EDE60 /* CDSearchPathState.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = CDSearchPathState.h; path = Source/CDSearchPathState.h; sourceTree = SOURCE_ROOT; };
01EB82FC13A591D8003EDE60 /* CDSearchPathState.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = CDSearchPathState.m; path = Source/CDSearchPathState.m; sourceTree = SOURCE_ROOT; };
01EB82FD13A591D8003EDE60 /* CDSection.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = CDSection.h; path = Source/CDSection.h; sourceTree = SOURCE_ROOT; };
01EB82FE13A591D8003EDE60 /* CDSection.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = CDSection.m; path = Source/CDSection.m; sourceTree = SOURCE_ROOT; };
01EB830313A591D8003EDE60 /* CDStructureInfo.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = CDStructureInfo.h; path = Source/CDStructureInfo.h; sourceTree = SOURCE_ROOT; };
01EB830413A591D8003EDE60 /* CDStructureInfo.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = CDStructureInfo.m; path = Source/CDStructureInfo.m; sourceTree = SOURCE_ROOT; };
01EB830513A591D8003EDE60 /* CDStructureTable.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = CDStructureTable.h; path = Source/CDStructureTable.h; sourceTree = SOURCE_ROOT; };
01EB830613A591D8003EDE60 /* CDStructureTable.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = CDStructureTable.m; path = Source/CDStructureTable.m; sourceTree = SOURCE_ROOT; };
01EB830713A591D8003EDE60 /* CDSymbol.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = CDSymbol.h; path = Source/CDSymbol.h; sourceTree = SOURCE_ROOT; };
01EB830813A591D8003EDE60 /* CDSymbol.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = CDSymbol.m; path = Source/CDSymbol.m; sourceTree = SOURCE_ROOT; };
01EB830B13A591D8003EDE60 /* CDTextClassDumpVisitor.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = CDTextClassDumpVisitor.h; path = Source/CDTextClassDumpVisitor.h; sourceTree = SOURCE_ROOT; };
01EB830C13A591D8003EDE60 /* CDTextClassDumpVisitor.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = CDTextClassDumpVisitor.m; path = Source/CDTextClassDumpVisitor.m; sourceTree = SOURCE_ROOT; };
01EB830D13A591D8003EDE60 /* CDTopologicalSortProtocol.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = CDTopologicalSortProtocol.h; path = Source/CDTopologicalSortProtocol.h; sourceTree = SOURCE_ROOT; };
01EB830E13A591D8003EDE60 /* CDTopoSortNode.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = CDTopoSortNode.h; path = Source/CDTopoSortNode.h; sourceTree = SOURCE_ROOT; };
01EB830F13A591D8003EDE60 /* CDTopoSortNode.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = CDTopoSortNode.m; path = Source/CDTopoSortNode.m; sourceTree = SOURCE_ROOT; };
01EB831013A591D8003EDE60 /* CDType.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = CDType.h; path = Source/CDType.h; sourceTree = SOURCE_ROOT; };
01EB831113A591D8003EDE60 /* CDType.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = CDType.m; path = Source/CDType.m; sourceTree = SOURCE_ROOT; };
01EB831213A591D8003EDE60 /* CDTypeController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = CDTypeController.h; path = Source/CDTypeController.h; sourceTree = SOURCE_ROOT; };
01EB831313A591D8003EDE60 /* CDTypeController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = CDTypeController.m; path = Source/CDTypeController.m; sourceTree = SOURCE_ROOT; };
01EB831413A591D8003EDE60 /* CDTypeFormatter.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = CDTypeFormatter.h; path = Source/CDTypeFormatter.h; sourceTree = SOURCE_ROOT; };
01EB831513A591D8003EDE60 /* CDTypeFormatter.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = CDTypeFormatter.m; path = Source/CDTypeFormatter.m; sourceTree = SOURCE_ROOT; };
01EB831613A591D8003EDE60 /* CDTypeLexer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = CDTypeLexer.h; path = Source/CDTypeLexer.h; sourceTree = SOURCE_ROOT; };
01EB831713A591D8003EDE60 /* CDTypeLexer.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = CDTypeLexer.m; path = Source/CDTypeLexer.m; sourceTree = SOURCE_ROOT; };
01EB831813A591D8003EDE60 /* CDTypeName.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = CDTypeName.h; path = Source/CDTypeName.h; sourceTree = SOURCE_ROOT; };
01EB831913A591D8003EDE60 /* CDTypeName.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = CDTypeName.m; path = Source/CDTypeName.m; sourceTree = SOURCE_ROOT; };
01EB831A13A591D8003EDE60 /* CDTypeParser.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = CDTypeParser.h; path = Source/CDTypeParser.h; sourceTree = SOURCE_ROOT; };
01EB831B13A591D8003EDE60 /* CDTypeParser.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = CDTypeParser.m; path = Source/CDTypeParser.m; sourceTree = SOURCE_ROOT; };
01EB831D13A591D8003EDE60 /* CDVisitor.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = CDVisitor.h; path = Source/CDVisitor.h; sourceTree = SOURCE_ROOT; };
01EB831E13A591D8003EDE60 /* CDVisitor.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = CDVisitor.m; path = Source/CDVisitor.m; sourceTree = SOURCE_ROOT; };
01EB831F13A591D8003EDE60 /* CDVisitorPropertyState.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = CDVisitorPropertyState.h; path = Source/CDVisitorPropertyState.h; sourceTree = SOURCE_ROOT; };
01EB832013A591D8003EDE60 /* CDVisitorPropertyState.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = CDVisitorPropertyState.m; path = Source/CDVisitorPropertyState.m; sourceTree = SOURCE_ROOT; };
01FB214F222A86C40012A5D3 /* blowfish.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = blowfish.h; path = ThirdParty/blowfish.h; sourceTree = "<group>"; };
01FB2150222A86C40012A5D3 /* blowfish.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = blowfish.c; path = ThirdParty/blowfish.c; sourceTree = "<group>"; };
0D288C0E187BC2EE0026E2A0 /* CDOCClassReference.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = CDOCClassReference.h; path = Source/CDOCClassReference.h; sourceTree = "<group>"; };
0D288C0F187BC2EE0026E2A0 /* CDOCClassReference.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = CDOCClassReference.m; path = Source/CDOCClassReference.m; sourceTree = "<group>"; };
C270B5C516C54AD5006CA75D /* ULEB128.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = ULEB128.m; path = Source/ULEB128.m; sourceTree = "<group>"; };
C270B5C716C54B0A006CA75D /* ULEB128.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = ULEB128.h; path = Source/ULEB128.h; sourceTree = "<group>"; };
/* End PBXFileReference section */
/* Begin PBXFrameworksBuildPhase section */
013D1EF813A5A0F100BF0A67 /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
013D1F5613A5AF1E00BF0A67 /* libMachObjC.a in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
013D1F0E13A5AE5A00BF0A67 /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
);
runOnlyForDeploymentPostprocessing = 0;
};
0165B8AE1827137D00CC647F /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
0165B8C41827184700CC647F /* libMachObjC.a in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
01B02CFC13A5B0DC0047BC53 /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
01B02D1313A5B1CE0047BC53 /* libMachObjC.a in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
01EB825C13A590D9003EDE60 /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
013D1F5A13A5AF6500BF0A67 /* libMachObjC.a in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXFrameworksBuildPhase section */
/* Begin PBXGroup section */
011F1D6214F8EB9F00CF8AE2 /* Structure / Union handling */ = {
isa = PBXGroup;
children = (
01EB830513A591D8003EDE60 /* CDStructureTable.h */,
01EB830613A591D8003EDE60 /* CDStructureTable.m */,
01EB831213A591D8003EDE60 /* CDTypeController.h */,
01EB831313A591D8003EDE60 /* CDTypeController.m */,
01EB830313A591D8003EDE60 /* CDStructureInfo.h */,
01EB830413A591D8003EDE60 /* CDStructureInfo.m */,
);
name = "Structure / Union handling";
sourceTree = "<group>";
};
0134F49914FA7F2C001E34DF /* Multi-file generation */ = {
isa = PBXGroup;
children = (
01EB82E113A591D8003EDE60 /* CDMultiFileVisitor.h */,
01EB82E213A591D8003EDE60 /* CDMultiFileVisitor.m */,
01EB829D13A591D7003EDE60 /* CDClassFrameworkVisitor.h */,
01EB829E13A591D7003EDE60 /* CDClassFrameworkVisitor.m */,
);
name = "Multi-file generation";
sourceTree = "<group>";
};
013D1EFE13A5A0F100BF0A67 /* deprotect */ = {
isa = PBXGroup;
children = (
01B02D1213A5B16E0047BC53 /* deprotect-Prefix.pch */,
013D1F0913A5A11100BF0A67 /* deprotect.m */,
);
indentWidth = 4;
name = deprotect;
sourceTree = "<group>";
tabWidth = 4;
usesTabs = 0;
};
0165B8B41827137D00CC647F /* UnitTests */ = {
isa = PBXGroup;
children = (
0165B8C71827198900CC647F /* TestBlockSignature.m */,
011E484E1604DF3700722F8D /* TestCDNameForCPUType.m */,
0165B8C91827198900CC647F /* TestCDArchFromName.m */,
0165B8CB1827198900CC647F /* TestCDArchUses64BitABI.m */,
0165B8CD1827198900CC647F /* TestFatFile_armv7_v7s.m */,
0165B8CF1827198900CC647F /* TestFatFile_Intel32_64_lib64.m */,
0165B8D11827198900CC647F /* TestFatFile_Intel32_64.m */,
0165B8D31827198900CC647F /* TestFatFile_Intel64_32.m */,
0165B8D51827198900CC647F /* TestThinFile_Intel64_lib64.m */,
0165B8D71827198900CC647F /* TestThinFile_Intel64.m */,
0165B8B51827137D00CC647F /* Supporting Files */,
);
path = UnitTests;
sourceTree = "<group>";
};
0165B8B51827137D00CC647F /* Supporting Files */ = {
isa = PBXGroup;
children = (
0165B8B61827137D00CC647F /* UnitTests-Info.plist */,
0165B8B71827137D00CC647F /* InfoPlist.strings */,
0165B8BC1827137D00CC647F /* UnitTests-Prefix.pch */,
);
name = "Supporting Files";
sourceTree = "<group>";
};
01984AC013AA9EA900EABFF6 /* Visitors */ = {
isa = PBXGroup;
children = (
01EB829B13A591D7003EDE60 /* CDClassDumpVisitor.h */,
01EB829C13A591D7003EDE60 /* CDClassDumpVisitor.m */,
01EB82A713A591D7003EDE60 /* CDFindMethodVisitor.h */,
01EB82A813A591D7003EDE60 /* CDFindMethodVisitor.m */,
01EB831D13A591D8003EDE60 /* CDVisitor.h */,
01EB831E13A591D8003EDE60 /* CDVisitor.m */,
0134F49914FA7F2C001E34DF /* Multi-file generation */,
01EB830B13A591D8003EDE60 /* CDTextClassDumpVisitor.h */,
01EB830C13A591D8003EDE60 /* CDTextClassDumpVisitor.m */,
);
name = Visitors;
sourceTree = "<group>";
};
01AFB28E13E6365800896CC7 /* Cursor */ = {
isa = PBXGroup;
children = (
01EB829F13A591D7003EDE60 /* CDDataCursor.h */,
01EB82A013A591D7003EDE60 /* CDDataCursor.m */,
01EB82DD13A591D8003EDE60 /* CDMachOFileDataCursor.h */,
01EB82DE13A591D8003EDE60 /* CDMachOFileDataCursor.m */,
);
name = Cursor;
sourceTree = "<group>";
};
01B02D0213A5B0DC0047BC53 /* formatType */ = {
isa = PBXGroup;
children = (
01B02D0F13A5B1220047BC53 /* formatType-Prefix.pch */,
01B02D0D13A5B0FB0047BC53 /* formatType.m */,
);
indentWidth = 4;
name = formatType;
sourceTree = "<group>";
tabWidth = 4;
usesTabs = 0;
};
01EB825413A590D9003EDE60 = {
isa = PBXGroup;
children = (
01EB828013A5916D003EDE60 /* MachObjC */,
01EB826513A590D9003EDE60 /* class-dump */,
013D1EFE13A5A0F100BF0A67 /* deprotect */,
01B02D0213A5B0DC0047BC53 /* formatType */,
0165B8B41827137D00CC647F /* UnitTests */,
01EB826013A590D9003EDE60 /* Products */,
);
sourceTree = "<group>";
};
01EB826013A590D9003EDE60 /* Products */ = {
isa = PBXGroup;
children = (
01EB825F13A590D9003EDE60 /* class-dump */,
013D1EFB13A5A0F100BF0A67 /* deprotect */,
013D1F1113A5AE5A00BF0A67 /* libMachObjC.a */,
01B02CFF13A5B0DC0047BC53 /* formatType */,
0165B8B11827137D00CC647F /* UnitTests.xctest */,
);
name = Products;
sourceTree = "<group>";
};
01EB826513A590D9003EDE60 /* class-dump */ = {
isa = PBXGroup;
children = (
01B02D1B13A5B2A40047BC53 /* class-dump-Prefix.pch */,
01B02D4913A5B9090047BC53 /* Info.plist */,
0133F1771EE784DA0086686F /* README.md */,
01EB829913A591D7003EDE60 /* CDClassDump.h */,
01EB829A13A591D7003EDE60 /* CDClassDump.m */,
011F1D6214F8EB9F00CF8AE2 /* Structure / Union handling */,
01984AC013AA9EA900EABFF6 /* Visitors */,
01EB82FB13A591D8003EDE60 /* CDSearchPathState.h */,
01EB82FC13A591D8003EDE60 /* CDSearchPathState.m */,
01B02D1013A5B1460047BC53 /* class-dump.m */,
);
indentWidth = 4;
name = "class-dump";
sourceTree = "<group>";
tabWidth = 4;
usesTabs = 0;
};
01EB828013A5916D003EDE60 /* MachObjC */ = {
isa = PBXGroup;
children = (
01EB828213A5916D003EDE60 /* MachObjC-Prefix.pch */,
01EB836513A59202003EDE60 /* Extensions */,
01AFB28E13E6365800896CC7 /* Cursor */,
01EB836713A592A2003EDE60 /* Load Commands */,
01EB836613A59227003EDE60 /* Mach-O */,
01EB836913A593C7003EDE60 /* Objective-C */,
01EB836A13A59414003EDE60 /* Type Parsing/Lexing */,
01FB214E222A86950012A5D3 /* Third Party */,
);
indentWidth = 4;
name = MachObjC;
sourceTree = "<group>";
tabWidth = 4;
usesTabs = 0;
};
01EB836513A59202003EDE60 /* Extensions */ = {
isa = PBXGroup;
children = (
018BFD4114F65DB600190F07 /* CDExtensions.h */,
01EB830D13A591D8003EDE60 /* CDTopologicalSortProtocol.h */,
01EB830E13A591D8003EDE60 /* CDTopoSortNode.h */,
01EB830F13A591D8003EDE60 /* CDTopoSortNode.m */,
01EB828713A591A5003EDE60 /* NSArray-CDExtensions.h */,
01EB828813A591A5003EDE60 /* NSArray-CDExtensions.m */,
01EB828913A591A5003EDE60 /* NSData-CDExtensions.h */,
01EB828A13A591A5003EDE60 /* NSData-CDExtensions.m */,
01EB828B13A591A5003EDE60 /* NSError-CDExtensions.h */,
01EB828C13A591A5003EDE60 /* NSError-CDExtensions.m */,
01EB828D13A591A5003EDE60 /* NSScanner-CDExtensions.h */,
01EB828E13A591A5003EDE60 /* NSScanner-CDExtensions.m */,
01EB828F13A591A5003EDE60 /* NSString-CDExtensions.h */,
01EB829013A591A5003EDE60 /* NSString-CDExtensions.m */,
C270B5C716C54B0A006CA75D /* ULEB128.h */,
C270B5C516C54AD5006CA75D /* ULEB128.m */,
);
name = Extensions;
sourceTree = "<group>";
};
01EB836613A59227003EDE60 /* Mach-O */ = {
isa = PBXGroup;
children = (
01EB82A513A591D7003EDE60 /* CDFile.h */,
01EB82A613A591D7003EDE60 /* CDFile.m */,
01EB82A313A591D7003EDE60 /* CDFatFile.h */,
01EB82A413A591D7003EDE60 /* CDFatFile.m */,
01EB82A113A591D7003EDE60 /* CDFatArch.h */,
01EB82A213A591D7003EDE60 /* CDFatArch.m */,
01EB82DB13A591D8003EDE60 /* CDMachOFile.h */,
01EB82DC13A591D8003EDE60 /* CDMachOFile.m */,
01EB82FD13A591D8003EDE60 /* CDSection.h */,
01EB82FE13A591D8003EDE60 /* CDSection.m */,
01EB830713A591D8003EDE60 /* CDSymbol.h */,
01EB830813A591D8003EDE60 /* CDSymbol.m */,
01EB82F913A591D8003EDE60 /* CDRelocationInfo.h */,
01EB82FA13A591D8003EDE60 /* CDRelocationInfo.m */,
0194945A1673F8F100A29005 /* CDProtocolUniquer.h */,
0194945B1673F8F200A29005 /* CDProtocolUniquer.m */,
01EB82E713A591D8003EDE60 /* CDObjectiveCProcessor.h */,
01EB82E813A591D8003EDE60 /* CDObjectiveCProcessor.m */,
01EB82E313A591D8003EDE60 /* CDObjectiveC1Processor.h */,
01EB82E413A591D8003EDE60 /* CDObjectiveC1Processor.m */,
01EB829613A591D7003EDE60 /* cd_objc2.h */,
01EB82E513A591D8003EDE60 /* CDObjectiveC2Processor.h */,
01EB82E613A591D8003EDE60 /* CDObjectiveC2Processor.m */,
);
name = "Mach-O";
sourceTree = "<group>";
};
01EB836713A592A2003EDE60 /* Load Commands */ = {
isa = PBXGroup;
children = (
01EB82A913A591D7003EDE60 /* CDLCDyldInfo.h */,
01EB82AA13A591D7003EDE60 /* CDLCDyldInfo.m */,
01EB82AB13A591D7003EDE60 /* CDLCDylib.h */,
01EB82AC13A591D7003EDE60 /* CDLCDylib.m */,
01EB82AD13A591D7003EDE60 /* CDLCDylinker.h */,
01EB82AE13A591D7003EDE60 /* CDLCDylinker.m */,
01EB82AF13A591D7003EDE60 /* CDLCDynamicSymbolTable.h */,
01EB82B013A591D7003EDE60 /* CDLCDynamicSymbolTable.m */,
01EB82B113A591D7003EDE60 /* CDLCEncryptionInfo.h */,
01EB82B213A591D7003EDE60 /* CDLCEncryptionInfo.m */,
0168C98513E4AB3200926EC3 /* CDLCFunctionStarts.h */,
0168C98613E4AB3200926EC3 /* CDLCFunctionStarts.m */,
01EB82B313A591D7003EDE60 /* CDLCLinkeditData.h */,
01EB82B413A591D7003EDE60 /* CDLCLinkeditData.m */,
01EB82B513A591D7003EDE60 /* CDLCPrebindChecksum.h */,
01EB82B613A591D7003EDE60 /* CDLCPrebindChecksum.m */,
01EB82B713A591D7003EDE60 /* CDLCPreboundDylib.h */,
01EB82B813A591D7003EDE60 /* CDLCPreboundDylib.m */,
01EB82B913A591D7003EDE60 /* CDLCRoutines32.h */,
01EB82BA13A591D8003EDE60 /* CDLCRoutines32.m */,
01EB82BB13A591D8003EDE60 /* CDLCRoutines64.h */,
01EB82BC13A591D8003EDE60 /* CDLCRoutines64.m */,
01EB82BD13A591D8003EDE60 /* CDLCRunPath.h */,
01EB82BE13A591D8003EDE60 /* CDLCRunPath.m */,
01EB82BF13A591D8003EDE60 /* CDLCSegment.h */,
01EB82C013A591D8003EDE60 /* CDLCSegment.m */,
01EB82C513A591D8003EDE60 /* CDLCSubClient.h */,
01EB82C613A591D8003EDE60 /* CDLCSubClient.m */,
01EB82C713A591D8003EDE60 /* CDLCSubFramework.h */,
01EB82C813A591D8003EDE60 /* CDLCSubFramework.m */,
01EB82C913A591D8003EDE60 /* CDLCSubLibrary.h */,
01EB82CA13A591D8003EDE60 /* CDLCSubLibrary.m */,
01EB82CB13A591D8003EDE60 /* CDLCSubUmbrella.h */,
01EB82CC13A591D8003EDE60 /* CDLCSubUmbrella.m */,
01EB82CD13A591D8003EDE60 /* CDLCSymbolTable.h */,
01EB82CE13A591D8003EDE60 /* CDLCSymbolTable.m */,
01EB82CF13A591D8003EDE60 /* CDLCTwoLevelHints.h */,
01EB82D013A591D8003EDE60 /* CDLCTwoLevelHints.m */,
01EB82D113A591D8003EDE60 /* CDLCUnixThread.h */,
01EB82D213A591D8003EDE60 /* CDLCUnixThread.m */,
01EB82D313A591D8003EDE60 /* CDLCUnknown.h */,
01EB82D413A591D8003EDE60 /* CDLCUnknown.m */,
01EB82D513A591D8003EDE60 /* CDLCUUID.h */,
01EB82D613A591D8003EDE60 /* CDLCUUID.m */,
01EB82D713A591D8003EDE60 /* CDLCVersionMinimum.h */,
01EB82D813A591D8003EDE60 /* CDLCVersionMinimum.m */,
01EB82D913A591D8003EDE60 /* CDLoadCommand.h */,
01EB82DA13A591D8003EDE60 /* CDLoadCommand.m */,
0179B9E414F2025E00EC98F7 /* CDLCMain.h */,
0179B9E514F2025E00EC98F7 /* CDLCMain.m */,
0179B9F514F20E9800EC98F7 /* CDLCDataInCode.h */,
0179B9F614F20E9800EC98F7 /* CDLCDataInCode.m */,
0179B9E914F204AA00EC98F7 /* CDLCSourceVersion.h */,
0179B9EA14F204AA00EC98F7 /* CDLCSourceVersion.m */,
0132DD4321816C09009CE078 /* CDLCBuildVersion.h */,
0132DD4421816C09009CE078 /* CDLCBuildVersion.m */,
);
name = "Load Commands";
sourceTree = "<group>";
};
01EB836913A593C7003EDE60 /* Objective-C */ = {
isa = PBXGroup;
children = (
0D288C0E187BC2EE0026E2A0 /* CDOCClassReference.h */,
0D288C0F187BC2EE0026E2A0 /* CDOCClassReference.m */,
01EB831F13A591D8003EDE60 /* CDVisitorPropertyState.h */,
01EB832013A591D8003EDE60 /* CDVisitorPropertyState.m */,
01EB82E913A591D8003EDE60 /* CDOCCategory.h */,
01EB82EA13A591D8003EDE60 /* CDOCCategory.m */,
01EB82EB13A591D8003EDE60 /* CDOCClass.h */,
01EB82EC13A591D8003EDE60 /* CDOCClass.m */,
01EB82ED13A591D8003EDE60 /* CDOCInstanceVariable.h */,
01EB82EE13A591D8003EDE60 /* CDOCInstanceVariable.m */,
01EB82EF13A591D8003EDE60 /* CDOCMethod.h */,
01EB82F013A591D8003EDE60 /* CDOCMethod.m */,
01EB82F113A591D8003EDE60 /* CDOCModule.h */,
01EB82F213A591D8003EDE60 /* CDOCModule.m */,
01EB82F313A591D8003EDE60 /* CDOCProperty.h */,
01EB82F413A591D8003EDE60 /* CDOCProperty.m */,
01EB82F513A591D8003EDE60 /* CDOCProtocol.h */,
01EB82F613A591D8003EDE60 /* CDOCProtocol.m */,
01EB82F713A591D8003EDE60 /* CDOCSymtab.h */,
01EB82F813A591D8003EDE60 /* CDOCSymtab.m */,
);
name = "Objective-C";
sourceTree = "<group>";
};
01EB836A13A59414003EDE60 /* Type Parsing/Lexing */ = {
isa = PBXGroup;
children = (
01EB829713A591D7003EDE60 /* CDBalanceFormatter.h */,
01EB829813A591D7003EDE60 /* CDBalanceFormatter.m */,
01EB82DF13A591D8003EDE60 /* CDMethodType.h */,
01EB82E013A591D8003EDE60 /* CDMethodType.m */,
01EB831013A591D8003EDE60 /* CDType.h */,
01EB831113A591D8003EDE60 /* CDType.m */,
01EB831413A591D8003EDE60 /* CDTypeFormatter.h */,
01EB831513A591D8003EDE60 /* CDTypeFormatter.m */,
01EB831613A591D8003EDE60 /* CDTypeLexer.h */,
01EB831713A591D8003EDE60 /* CDTypeLexer.m */,
01EB831813A591D8003EDE60 /* CDTypeName.h */,
01EB831913A591D8003EDE60 /* CDTypeName.m */,
01EB831A13A591D8003EDE60 /* CDTypeParser.h */,
01EB831B13A591D8003EDE60 /* CDTypeParser.m */,
);
name = "Type Parsing/Lexing";
sourceTree = "<group>";
};
01FB214E222A86950012A5D3 /* Third Party */ = {
isa = PBXGroup;
children = (
01FB2150222A86C40012A5D3 /* blowfish.c */,
01FB214F222A86C40012A5D3 /* blowfish.h */,
);
name = "Third Party";
sourceTree = "<group>";
};
/* End PBXGroup section */
/* Begin PBXHeadersBuildPhase section */
013D1F0F13A5AE5A00BF0A67 /* Headers */ = {
isa = PBXHeadersBuildPhase;
buildActionMask = 2147483647;
files = (
0132DD4521816C0A009CE078 /* CDLCBuildVersion.h in Headers */,
0D288C10187BC2EE0026E2A0 /* CDOCClassReference.h in Headers */,
0168C98713E4AB3200926EC3 /* CDLCFunctionStarts.h in Headers */,
018BFD4214F65DB600190F07 /* CDExtensions.h in Headers */,
01FB2151222A86C40012A5D3 /* blowfish.h in Headers */,
0179B9E614F2025E00EC98F7 /* CDLCMain.h in Headers */,
0179B9EB14F204AA00EC98F7 /* CDLCSourceVersion.h in Headers */,
0179B9F714F20E9800EC98F7 /* CDLCDataInCode.h in Headers */,
0194945C1673F8F400A29005 /* CDProtocolUniquer.h in Headers */,
C270B5C816C54B0C006CA75D /* ULEB128.h in Headers */,
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXHeadersBuildPhase section */
/* Begin PBXNativeTarget section */
013D1EFA13A5A0F100BF0A67 /* deprotect */ = {
isa = PBXNativeTarget;
buildConfigurationList = 013D1F0713A5A0F200BF0A67 /* Build configuration list for PBXNativeTarget "deprotect" */;
buildPhases = (
013D1EF713A5A0F100BF0A67 /* Sources */,
013D1EF813A5A0F100BF0A67 /* Frameworks */,
013D1EF913A5A0F100BF0A67 /* CopyFiles */,
);
buildRules = (
);
dependencies = (
0106C81E1412D05F00B29890 /* PBXTargetDependency */,
);
name = deprotect;
productName = deprotect;
productReference = 013D1EFB13A5A0F100BF0A67 /* deprotect */;
productType = "com.apple.product-type.tool";
};
013D1F1013A5AE5A00BF0A67 /* MachObjC */ = {
isa = PBXNativeTarget;
buildConfigurationList = 013D1F1613A5AE5A00BF0A67 /* Build configuration list for PBXNativeTarget "MachObjC" */;
buildPhases = (
013D1F0D13A5AE5A00BF0A67 /* Sources */,
013D1F0E13A5AE5A00BF0A67 /* Frameworks */,
013D1F0F13A5AE5A00BF0A67 /* Headers */,
);
buildRules = (
);
dependencies = (
);
name = MachObjC;
productName = MachObjC;
productReference = 013D1F1113A5AE5A00BF0A67 /* libMachObjC.a */;
productType = "com.apple.product-type.library.static";
};
0165B8B01827137D00CC647F /* UnitTests */ = {
isa = PBXNativeTarget;
buildConfigurationList = 0165B8BF1827137D00CC647F /* Build configuration list for PBXNativeTarget "UnitTests" */;
buildPhases = (
0165B8AD1827137D00CC647F /* Sources */,
0165B8AE1827137D00CC647F /* Frameworks */,
0165B8AF1827137D00CC647F /* Resources */,
);
buildRules = (
);
dependencies = (
0165B8BE1827137D00CC647F /* PBXTargetDependency */,
);
name = UnitTests;
productName = UnitTests;
productReference = 0165B8B11827137D00CC647F /* UnitTests.xctest */;
productType = "com.apple.product-type.bundle.unit-test";
};
01B02CFE13A5B0DC0047BC53 /* formatType */ = {
isa = PBXNativeTarget;
buildConfigurationList = 01B02D0B13A5B0DC0047BC53 /* Build configuration list for PBXNativeTarget "formatType" */;
buildPhases = (
01B02CFB13A5B0DC0047BC53 /* Sources */,
01B02CFC13A5B0DC0047BC53 /* Frameworks */,
01B02CFD13A5B0DC0047BC53 /* CopyFiles */,
);
buildRules = (
);
dependencies = (
0106C8201412D07000B29890 /* PBXTargetDependency */,
);
name = formatType;
productName = formatType;
productReference = 01B02CFF13A5B0DC0047BC53 /* formatType */;
productType = "com.apple.product-type.tool";
};
01EB825E13A590D9003EDE60 /* class-dump */ = {
isa = PBXNativeTarget;
buildConfigurationList = 01EB826E13A590D9003EDE60 /* Build configuration list for PBXNativeTarget "class-dump" */;
buildPhases = (
01EB825B13A590D9003EDE60 /* Sources */,
01EB825C13A590D9003EDE60 /* Frameworks */,
01EB825D13A590D9003EDE60 /* CopyFiles */,
);
buildRules = (
);
dependencies = (
0158A8161412DED0003FEB91 /* PBXTargetDependency */,
);
name = "class-dump";
productName = "class-dump";
productReference = 01EB825F13A590D9003EDE60 /* class-dump */;
productType = "com.apple.product-type.tool";
};
/* End PBXNativeTarget section */
/* Begin PBXProject section */
01EB825613A590D9003EDE60 /* Project object */ = {
isa = PBXProject;
attributes = {
LastUpgradeCheck = 1000;
};
buildConfigurationList = 01EB825913A590D9003EDE60 /* Build configuration list for PBXProject "class-dump" */;
compatibilityVersion = "Xcode 3.2";
developmentRegion = English;
hasScannedForEncodings = 0;
knownRegions = (
en,
);
mainGroup = 01EB825413A590D9003EDE60;
productRefGroup = 01EB826013A590D9003EDE60 /* Products */;
projectDirPath = "";
projectRoot = "";
targets = (
01B02D2E13A5B5D50047BC53 /* all */,
013D1F1013A5AE5A00BF0A67 /* MachObjC */,
01EB825E13A590D9003EDE60 /* class-dump */,
013D1EFA13A5A0F100BF0A67 /* deprotect */,
01B02CFE13A5B0DC0047BC53 /* formatType */,
0165B8B01827137D00CC647F /* UnitTests */,
);
};
/* End PBXProject section */
/* Begin PBXResourcesBuildPhase section */
0165B8AF1827137D00CC647F /* Resources */ = {
isa = PBXResourcesBuildPhase;
buildActionMask = 2147483647;
files = (
0165B8B91827137D00CC647F /* InfoPlist.strings in Resources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXResourcesBuildPhase section */
/* Begin PBXSourcesBuildPhase section */
013D1EF713A5A0F100BF0A67 /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
013D1F5813A5AF4C00BF0A67 /* deprotect.m in Sources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
013D1F0D13A5AE5A00BF0A67 /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
013D1F1913A5AEA100BF0A67 /* CDTopoSortNode.m in Sources */,
013D1F1A13A5AEA100BF0A67 /* NSArray-CDExtensions.m in Sources */,
013D1F1B13A5AEA100BF0A67 /* NSData-CDExtensions.m in Sources */,
013D1F1C13A5AEA100BF0A67 /* NSError-CDExtensions.m in Sources */,
013D1F1D13A5AEA100BF0A67 /* NSScanner-CDExtensions.m in Sources */,
013D1F1E13A5AEA100BF0A67 /* NSString-CDExtensions.m in Sources */,
013D1F1F13A5AEA100BF0A67 /* CDDataCursor.m in Sources */,
013D1F2013A5AEA100BF0A67 /* CDMachOFileDataCursor.m in Sources */,
013D1F2113A5AEA100BF0A67 /* CDLCDyldInfo.m in Sources */,
013D1F2213A5AEA100BF0A67 /* CDLCDylib.m in Sources */,
013D1F2313A5AEA100BF0A67 /* CDLCDylinker.m in Sources */,
013D1F2413A5AEA100BF0A67 /* CDLCDynamicSymbolTable.m in Sources */,
013D1F2513A5AEA100BF0A67 /* CDLCEncryptionInfo.m in Sources */,
013D1F2613A5AEA100BF0A67 /* CDLCLinkeditData.m in Sources */,
0132DD4621816C0A009CE078 /* CDLCBuildVersion.m in Sources */,
013D1F2713A5AEA100BF0A67 /* CDLCPrebindChecksum.m in Sources */,
013D1F2813A5AEA100BF0A67 /* CDLCPreboundDylib.m in Sources */,
013D1F2913A5AEA100BF0A67 /* CDLCRoutines32.m in Sources */,
013D1F2A13A5AEA100BF0A67 /* CDLCRoutines64.m in Sources */,
013D1F2B13A5AEA100BF0A67 /* CDLCRunPath.m in Sources */,
013D1F2C13A5AEA100BF0A67 /* CDLCSegment.m in Sources */,
013D1F2F13A5AEA100BF0A67 /* CDLCSubClient.m in Sources */,
013D1F3013A5AEA100BF0A67 /* CDLCSubFramework.m in Sources */,
013D1F3113A5AEA100BF0A67 /* CDLCSubLibrary.m in Sources */,
013D1F3213A5AEA100BF0A67 /* CDLCSubUmbrella.m in Sources */,
013D1F3313A5AEA100BF0A67 /* CDLCSymbolTable.m in Sources */,
013D1F3413A5AEA100BF0A67 /* CDLCTwoLevelHints.m in Sources */,
013D1F3513A5AEA100BF0A67 /* CDLCUnixThread.m in Sources */,
013D1F3613A5AEA100BF0A67 /* CDLCUnknown.m in Sources */,
013D1F3713A5AEA100BF0A67 /* CDLCUUID.m in Sources */,
013D1F3813A5AEA100BF0A67 /* CDLCVersionMinimum.m in Sources */,
013D1F3913A5AEA100BF0A67 /* CDLoadCommand.m in Sources */,
013D1F3A13A5AEA100BF0A67 /* CDFile.m in Sources */,
013D1F3B13A5AEA100BF0A67 /* CDFatFile.m in Sources */,
013D1F3C13A5AEA100BF0A67 /* CDFatArch.m in Sources */,
013D1F3D13A5AEA100BF0A67 /* CDMachOFile.m in Sources */,
013D1F3E13A5AEA100BF0A67 /* CDSection.m in Sources */,
013D1F4113A5AEA100BF0A67 /* CDSymbol.m in Sources */,
013D1F4213A5AEA100BF0A67 /* CDRelocationInfo.m in Sources */,
013D1F4313A5AEA100BF0A67 /* CDObjectiveCProcessor.m in Sources */,
013D1F4413A5AEA100BF0A67 /* CDObjectiveC1Processor.m in Sources */,
013D1F4513A5AEA100BF0A67 /* CDObjectiveC2Processor.m in Sources */,
013D1F4613A5AEA100BF0A67 /* CDVisitorPropertyState.m in Sources */,
013D1F4713A5AEA100BF0A67 /* CDOCCategory.m in Sources */,