-
Notifications
You must be signed in to change notification settings - Fork 283
Expand file tree
/
Copy pathproject.pbxproj
More file actions
2554 lines (2539 loc) · 209 KB
/
project.pbxproj
File metadata and controls
2554 lines (2539 loc) · 209 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
// !$*UTF8*$!
{
archiveVersion = 1;
classes = {
};
objectVersion = 46;
objects = {
/* Begin PBXAggregateTarget section */
F81CC0121B93355800FA6C0F /* libssh2-iOS */ = {
isa = PBXAggregateTarget;
buildConfigurationList = F81CC0151B93355800FA6C0F /* Build configuration list for PBXAggregateTarget "libssh2-iOS" */;
buildPhases = (
F81CC0161B93355E00FA6C0F /* libssh2-iOS */,
);
dependencies = (
F81CC01F1B933B3900FA6C0F /* PBXTargetDependency */,
);
name = "libssh2-iOS";
productName = libssh2;
};
F81CC0191B933A5100FA6C0F /* OpenSSL-iOS */ = {
isa = PBXAggregateTarget;
buildConfigurationList = F81CC01C1B933A5100FA6C0F /* Build configuration list for PBXAggregateTarget "OpenSSL-iOS" */;
buildPhases = (
F81CC01D1B933A5600FA6C0F /* OpenSSL-iOS */,
);
dependencies = (
);
name = "OpenSSL-iOS";
productName = "OpenSSL-iOS";
};
/* End PBXAggregateTarget section */
/* Begin PBXBuildFile section */
F804C2221B7BF2CD00C40501 /* annotated_commit.c in Sources */ = {isa = PBXBuildFile; fileRef = F804C10E1B7BF2CC00C40501 /* annotated_commit.c */; };
F804C2231B7BF2CD00C40501 /* annotated_commit.c in Sources */ = {isa = PBXBuildFile; fileRef = F804C10E1B7BF2CC00C40501 /* annotated_commit.c */; };
F804C2241B7BF2CD00C40501 /* annotated_commit.h in Headers */ = {isa = PBXBuildFile; fileRef = F804C10F1B7BF2CC00C40501 /* annotated_commit.h */; };
F804C2251B7BF2CD00C40501 /* annotated_commit.h in Headers */ = {isa = PBXBuildFile; fileRef = F804C10F1B7BF2CC00C40501 /* annotated_commit.h */; };
F804C2261B7BF2CD00C40501 /* array.h in Headers */ = {isa = PBXBuildFile; fileRef = F804C1101B7BF2CC00C40501 /* array.h */; };
F804C2271B7BF2CD00C40501 /* array.h in Headers */ = {isa = PBXBuildFile; fileRef = F804C1101B7BF2CC00C40501 /* array.h */; };
F804C2281B7BF2CD00C40501 /* attr.c in Sources */ = {isa = PBXBuildFile; fileRef = F804C1111B7BF2CC00C40501 /* attr.c */; };
F804C2291B7BF2CD00C40501 /* attr.c in Sources */ = {isa = PBXBuildFile; fileRef = F804C1111B7BF2CC00C40501 /* attr.c */; };
F804C22A1B7BF2CD00C40501 /* attr.h in Headers */ = {isa = PBXBuildFile; fileRef = F804C1121B7BF2CC00C40501 /* attr.h */; };
F804C22B1B7BF2CD00C40501 /* attr.h in Headers */ = {isa = PBXBuildFile; fileRef = F804C1121B7BF2CC00C40501 /* attr.h */; };
F804C22C1B7BF2CD00C40501 /* attr_file.c in Sources */ = {isa = PBXBuildFile; fileRef = F804C1131B7BF2CC00C40501 /* attr_file.c */; };
F804C22D1B7BF2CD00C40501 /* attr_file.c in Sources */ = {isa = PBXBuildFile; fileRef = F804C1131B7BF2CC00C40501 /* attr_file.c */; };
F804C22E1B7BF2CD00C40501 /* attr_file.h in Headers */ = {isa = PBXBuildFile; fileRef = F804C1141B7BF2CC00C40501 /* attr_file.h */; };
F804C22F1B7BF2CD00C40501 /* attr_file.h in Headers */ = {isa = PBXBuildFile; fileRef = F804C1141B7BF2CC00C40501 /* attr_file.h */; };
F804C2301B7BF2CD00C40501 /* attrcache.c in Sources */ = {isa = PBXBuildFile; fileRef = F804C1151B7BF2CC00C40501 /* attrcache.c */; };
F804C2311B7BF2CD00C40501 /* attrcache.c in Sources */ = {isa = PBXBuildFile; fileRef = F804C1151B7BF2CC00C40501 /* attrcache.c */; };
F804C2321B7BF2CD00C40501 /* attrcache.h in Headers */ = {isa = PBXBuildFile; fileRef = F804C1161B7BF2CC00C40501 /* attrcache.h */; };
F804C2331B7BF2CD00C40501 /* attrcache.h in Headers */ = {isa = PBXBuildFile; fileRef = F804C1161B7BF2CC00C40501 /* attrcache.h */; };
F804C2341B7BF2CD00C40501 /* bitvec.h in Headers */ = {isa = PBXBuildFile; fileRef = F804C1171B7BF2CC00C40501 /* bitvec.h */; };
F804C2351B7BF2CD00C40501 /* bitvec.h in Headers */ = {isa = PBXBuildFile; fileRef = F804C1171B7BF2CC00C40501 /* bitvec.h */; };
F804C2361B7BF2CD00C40501 /* blame.c in Sources */ = {isa = PBXBuildFile; fileRef = F804C1181B7BF2CC00C40501 /* blame.c */; };
F804C2371B7BF2CD00C40501 /* blame.c in Sources */ = {isa = PBXBuildFile; fileRef = F804C1181B7BF2CC00C40501 /* blame.c */; };
F804C2381B7BF2CD00C40501 /* blame.h in Headers */ = {isa = PBXBuildFile; fileRef = F804C1191B7BF2CC00C40501 /* blame.h */; };
F804C2391B7BF2CD00C40501 /* blame.h in Headers */ = {isa = PBXBuildFile; fileRef = F804C1191B7BF2CC00C40501 /* blame.h */; };
F804C23A1B7BF2CD00C40501 /* blame_git.c in Sources */ = {isa = PBXBuildFile; fileRef = F804C11A1B7BF2CC00C40501 /* blame_git.c */; };
F804C23B1B7BF2CD00C40501 /* blame_git.c in Sources */ = {isa = PBXBuildFile; fileRef = F804C11A1B7BF2CC00C40501 /* blame_git.c */; };
F804C23C1B7BF2CD00C40501 /* blame_git.h in Headers */ = {isa = PBXBuildFile; fileRef = F804C11B1B7BF2CC00C40501 /* blame_git.h */; };
F804C23D1B7BF2CD00C40501 /* blame_git.h in Headers */ = {isa = PBXBuildFile; fileRef = F804C11B1B7BF2CC00C40501 /* blame_git.h */; };
F804C23E1B7BF2CD00C40501 /* blob.c in Sources */ = {isa = PBXBuildFile; fileRef = F804C11C1B7BF2CC00C40501 /* blob.c */; };
F804C23F1B7BF2CD00C40501 /* blob.c in Sources */ = {isa = PBXBuildFile; fileRef = F804C11C1B7BF2CC00C40501 /* blob.c */; };
F804C2401B7BF2CD00C40501 /* blob.h in Headers */ = {isa = PBXBuildFile; fileRef = F804C11D1B7BF2CC00C40501 /* blob.h */; };
F804C2411B7BF2CD00C40501 /* blob.h in Headers */ = {isa = PBXBuildFile; fileRef = F804C11D1B7BF2CC00C40501 /* blob.h */; };
F804C2421B7BF2CD00C40501 /* branch.c in Sources */ = {isa = PBXBuildFile; fileRef = F804C11E1B7BF2CC00C40501 /* branch.c */; };
F804C2431B7BF2CD00C40501 /* branch.c in Sources */ = {isa = PBXBuildFile; fileRef = F804C11E1B7BF2CC00C40501 /* branch.c */; };
F804C2441B7BF2CD00C40501 /* branch.h in Headers */ = {isa = PBXBuildFile; fileRef = F804C11F1B7BF2CC00C40501 /* branch.h */; };
F804C2451B7BF2CD00C40501 /* branch.h in Headers */ = {isa = PBXBuildFile; fileRef = F804C11F1B7BF2CC00C40501 /* branch.h */; };
F804C2461B7BF2CD00C40501 /* buf_text.c in Sources */ = {isa = PBXBuildFile; fileRef = F804C1201B7BF2CC00C40501 /* buf_text.c */; };
F804C2471B7BF2CD00C40501 /* buf_text.c in Sources */ = {isa = PBXBuildFile; fileRef = F804C1201B7BF2CC00C40501 /* buf_text.c */; };
F804C2481B7BF2CD00C40501 /* buf_text.h in Headers */ = {isa = PBXBuildFile; fileRef = F804C1211B7BF2CC00C40501 /* buf_text.h */; };
F804C2491B7BF2CD00C40501 /* buf_text.h in Headers */ = {isa = PBXBuildFile; fileRef = F804C1211B7BF2CC00C40501 /* buf_text.h */; };
F804C24A1B7BF2CD00C40501 /* buffer.c in Sources */ = {isa = PBXBuildFile; fileRef = F804C1221B7BF2CC00C40501 /* buffer.c */; };
F804C24B1B7BF2CD00C40501 /* buffer.c in Sources */ = {isa = PBXBuildFile; fileRef = F804C1221B7BF2CC00C40501 /* buffer.c */; };
F804C24C1B7BF2CD00C40501 /* buffer.h in Headers */ = {isa = PBXBuildFile; fileRef = F804C1231B7BF2CC00C40501 /* buffer.h */; };
F804C24D1B7BF2CD00C40501 /* buffer.h in Headers */ = {isa = PBXBuildFile; fileRef = F804C1231B7BF2CC00C40501 /* buffer.h */; };
F804C24E1B7BF2CD00C40501 /* cache.c in Sources */ = {isa = PBXBuildFile; fileRef = F804C1241B7BF2CC00C40501 /* cache.c */; };
F804C24F1B7BF2CD00C40501 /* cache.c in Sources */ = {isa = PBXBuildFile; fileRef = F804C1241B7BF2CC00C40501 /* cache.c */; };
F804C2501B7BF2CD00C40501 /* cache.h in Headers */ = {isa = PBXBuildFile; fileRef = F804C1251B7BF2CC00C40501 /* cache.h */; };
F804C2511B7BF2CD00C40501 /* cache.h in Headers */ = {isa = PBXBuildFile; fileRef = F804C1251B7BF2CC00C40501 /* cache.h */; };
F804C2521B7BF2CD00C40501 /* cc-compat.h in Headers */ = {isa = PBXBuildFile; fileRef = F804C1261B7BF2CC00C40501 /* cc-compat.h */; };
F804C2531B7BF2CD00C40501 /* cc-compat.h in Headers */ = {isa = PBXBuildFile; fileRef = F804C1261B7BF2CC00C40501 /* cc-compat.h */; };
F804C2541B7BF2CD00C40501 /* checkout.c in Sources */ = {isa = PBXBuildFile; fileRef = F804C1271B7BF2CC00C40501 /* checkout.c */; };
F804C2551B7BF2CD00C40501 /* checkout.c in Sources */ = {isa = PBXBuildFile; fileRef = F804C1271B7BF2CC00C40501 /* checkout.c */; };
F804C2561B7BF2CD00C40501 /* checkout.h in Headers */ = {isa = PBXBuildFile; fileRef = F804C1281B7BF2CC00C40501 /* checkout.h */; };
F804C2571B7BF2CD00C40501 /* checkout.h in Headers */ = {isa = PBXBuildFile; fileRef = F804C1281B7BF2CC00C40501 /* checkout.h */; };
F804C2581B7BF2CD00C40501 /* cherrypick.c in Sources */ = {isa = PBXBuildFile; fileRef = F804C1291B7BF2CC00C40501 /* cherrypick.c */; };
F804C2591B7BF2CD00C40501 /* cherrypick.c in Sources */ = {isa = PBXBuildFile; fileRef = F804C1291B7BF2CC00C40501 /* cherrypick.c */; };
F804C25A1B7BF2CD00C40501 /* clone.c in Sources */ = {isa = PBXBuildFile; fileRef = F804C12A1B7BF2CC00C40501 /* clone.c */; };
F804C25B1B7BF2CD00C40501 /* clone.c in Sources */ = {isa = PBXBuildFile; fileRef = F804C12A1B7BF2CC00C40501 /* clone.c */; };
F804C25C1B7BF2CD00C40501 /* clone.h in Headers */ = {isa = PBXBuildFile; fileRef = F804C12B1B7BF2CC00C40501 /* clone.h */; };
F804C25D1B7BF2CD00C40501 /* clone.h in Headers */ = {isa = PBXBuildFile; fileRef = F804C12B1B7BF2CC00C40501 /* clone.h */; };
F804C25E1B7BF2CD00C40501 /* commit.c in Sources */ = {isa = PBXBuildFile; fileRef = F804C12C1B7BF2CC00C40501 /* commit.c */; };
F804C25F1B7BF2CD00C40501 /* commit.c in Sources */ = {isa = PBXBuildFile; fileRef = F804C12C1B7BF2CC00C40501 /* commit.c */; };
F804C2601B7BF2CD00C40501 /* commit.h in Headers */ = {isa = PBXBuildFile; fileRef = F804C12D1B7BF2CC00C40501 /* commit.h */; };
F804C2611B7BF2CD00C40501 /* commit.h in Headers */ = {isa = PBXBuildFile; fileRef = F804C12D1B7BF2CC00C40501 /* commit.h */; };
F804C2621B7BF2CD00C40501 /* commit_list.c in Sources */ = {isa = PBXBuildFile; fileRef = F804C12E1B7BF2CC00C40501 /* commit_list.c */; };
F804C2631B7BF2CD00C40501 /* commit_list.c in Sources */ = {isa = PBXBuildFile; fileRef = F804C12E1B7BF2CC00C40501 /* commit_list.c */; };
F804C2641B7BF2CD00C40501 /* commit_list.h in Headers */ = {isa = PBXBuildFile; fileRef = F804C12F1B7BF2CC00C40501 /* commit_list.h */; };
F804C2651B7BF2CD00C40501 /* commit_list.h in Headers */ = {isa = PBXBuildFile; fileRef = F804C12F1B7BF2CC00C40501 /* commit_list.h */; };
F804C2661B7BF2CD00C40501 /* common.h in Headers */ = {isa = PBXBuildFile; fileRef = F804C1301B7BF2CC00C40501 /* common.h */; };
F804C2671B7BF2CD00C40501 /* common.h in Headers */ = {isa = PBXBuildFile; fileRef = F804C1301B7BF2CC00C40501 /* common.h */; };
F804C2681B7BF2CE00C40501 /* config.c in Sources */ = {isa = PBXBuildFile; fileRef = F804C1311B7BF2CC00C40501 /* config.c */; };
F804C2691B7BF2CE00C40501 /* config.c in Sources */ = {isa = PBXBuildFile; fileRef = F804C1311B7BF2CC00C40501 /* config.c */; };
F804C26A1B7BF2CE00C40501 /* config.h in Headers */ = {isa = PBXBuildFile; fileRef = F804C1321B7BF2CC00C40501 /* config.h */; };
F804C26B1B7BF2CE00C40501 /* config.h in Headers */ = {isa = PBXBuildFile; fileRef = F804C1321B7BF2CC00C40501 /* config.h */; };
F804C26C1B7BF2CE00C40501 /* config_cache.c in Sources */ = {isa = PBXBuildFile; fileRef = F804C1331B7BF2CC00C40501 /* config_cache.c */; };
F804C26D1B7BF2CE00C40501 /* config_cache.c in Sources */ = {isa = PBXBuildFile; fileRef = F804C1331B7BF2CC00C40501 /* config_cache.c */; };
F804C26E1B7BF2CE00C40501 /* config_file.c in Sources */ = {isa = PBXBuildFile; fileRef = F804C1341B7BF2CC00C40501 /* config_file.c */; };
F804C26F1B7BF2CE00C40501 /* config_file.c in Sources */ = {isa = PBXBuildFile; fileRef = F804C1341B7BF2CC00C40501 /* config_file.c */; };
F804C2701B7BF2CE00C40501 /* config_file.h in Headers */ = {isa = PBXBuildFile; fileRef = F804C1351B7BF2CC00C40501 /* config_file.h */; };
F804C2711B7BF2CE00C40501 /* config_file.h in Headers */ = {isa = PBXBuildFile; fileRef = F804C1351B7BF2CC00C40501 /* config_file.h */; };
F804C2721B7BF2CE00C40501 /* crlf.c in Sources */ = {isa = PBXBuildFile; fileRef = F804C1361B7BF2CC00C40501 /* crlf.c */; };
F804C2731B7BF2CE00C40501 /* crlf.c in Sources */ = {isa = PBXBuildFile; fileRef = F804C1361B7BF2CC00C40501 /* crlf.c */; };
F804C2741B7BF2CE00C40501 /* curl_stream.c in Sources */ = {isa = PBXBuildFile; fileRef = F804C1371B7BF2CC00C40501 /* curl_stream.c */; };
F804C2751B7BF2CE00C40501 /* curl_stream.c in Sources */ = {isa = PBXBuildFile; fileRef = F804C1371B7BF2CC00C40501 /* curl_stream.c */; };
F804C2761B7BF2CE00C40501 /* curl_stream.h in Headers */ = {isa = PBXBuildFile; fileRef = F804C1381B7BF2CC00C40501 /* curl_stream.h */; };
F804C2771B7BF2CE00C40501 /* curl_stream.h in Headers */ = {isa = PBXBuildFile; fileRef = F804C1381B7BF2CC00C40501 /* curl_stream.h */; };
F804C2781B7BF2CE00C40501 /* date.c in Sources */ = {isa = PBXBuildFile; fileRef = F804C1391B7BF2CC00C40501 /* date.c */; };
F804C2791B7BF2CE00C40501 /* date.c in Sources */ = {isa = PBXBuildFile; fileRef = F804C1391B7BF2CC00C40501 /* date.c */; };
F804C27A1B7BF2CE00C40501 /* delta-apply.c in Sources */ = {isa = PBXBuildFile; fileRef = F804C13A1B7BF2CC00C40501 /* delta-apply.c */; };
F804C27B1B7BF2CE00C40501 /* delta-apply.c in Sources */ = {isa = PBXBuildFile; fileRef = F804C13A1B7BF2CC00C40501 /* delta-apply.c */; };
F804C27C1B7BF2CE00C40501 /* delta-apply.h in Headers */ = {isa = PBXBuildFile; fileRef = F804C13B1B7BF2CC00C40501 /* delta-apply.h */; };
F804C27D1B7BF2CE00C40501 /* delta-apply.h in Headers */ = {isa = PBXBuildFile; fileRef = F804C13B1B7BF2CC00C40501 /* delta-apply.h */; };
F804C27E1B7BF2CE00C40501 /* delta.c in Sources */ = {isa = PBXBuildFile; fileRef = F804C13C1B7BF2CC00C40501 /* delta.c */; };
F804C27F1B7BF2CE00C40501 /* delta.c in Sources */ = {isa = PBXBuildFile; fileRef = F804C13C1B7BF2CC00C40501 /* delta.c */; };
F804C2801B7BF2CE00C40501 /* delta.h in Headers */ = {isa = PBXBuildFile; fileRef = F804C13D1B7BF2CC00C40501 /* delta.h */; };
F804C2811B7BF2CE00C40501 /* delta.h in Headers */ = {isa = PBXBuildFile; fileRef = F804C13D1B7BF2CC00C40501 /* delta.h */; };
F804C2821B7BF2CE00C40501 /* describe.c in Sources */ = {isa = PBXBuildFile; fileRef = F804C13E1B7BF2CC00C40501 /* describe.c */; };
F804C2831B7BF2CE00C40501 /* describe.c in Sources */ = {isa = PBXBuildFile; fileRef = F804C13E1B7BF2CC00C40501 /* describe.c */; };
F804C2841B7BF2CE00C40501 /* diff.c in Sources */ = {isa = PBXBuildFile; fileRef = F804C13F1B7BF2CC00C40501 /* diff.c */; };
F804C2851B7BF2CE00C40501 /* diff.c in Sources */ = {isa = PBXBuildFile; fileRef = F804C13F1B7BF2CC00C40501 /* diff.c */; };
F804C2861B7BF2CE00C40501 /* diff.h in Headers */ = {isa = PBXBuildFile; fileRef = F804C1401B7BF2CC00C40501 /* diff.h */; };
F804C2871B7BF2CE00C40501 /* diff.h in Headers */ = {isa = PBXBuildFile; fileRef = F804C1401B7BF2CC00C40501 /* diff.h */; };
F804C2881B7BF2CE00C40501 /* diff_driver.c in Sources */ = {isa = PBXBuildFile; fileRef = F804C1411B7BF2CC00C40501 /* diff_driver.c */; };
F804C2891B7BF2CE00C40501 /* diff_driver.c in Sources */ = {isa = PBXBuildFile; fileRef = F804C1411B7BF2CC00C40501 /* diff_driver.c */; };
F804C28A1B7BF2CE00C40501 /* diff_driver.h in Headers */ = {isa = PBXBuildFile; fileRef = F804C1421B7BF2CC00C40501 /* diff_driver.h */; };
F804C28B1B7BF2CE00C40501 /* diff_driver.h in Headers */ = {isa = PBXBuildFile; fileRef = F804C1421B7BF2CC00C40501 /* diff_driver.h */; };
F804C28C1B7BF2CE00C40501 /* diff_file.c in Sources */ = {isa = PBXBuildFile; fileRef = F804C1431B7BF2CC00C40501 /* diff_file.c */; };
F804C28D1B7BF2CE00C40501 /* diff_file.c in Sources */ = {isa = PBXBuildFile; fileRef = F804C1431B7BF2CC00C40501 /* diff_file.c */; };
F804C28E1B7BF2CE00C40501 /* diff_file.h in Headers */ = {isa = PBXBuildFile; fileRef = F804C1441B7BF2CC00C40501 /* diff_file.h */; };
F804C28F1B7BF2CE00C40501 /* diff_file.h in Headers */ = {isa = PBXBuildFile; fileRef = F804C1441B7BF2CC00C40501 /* diff_file.h */; };
F804C2901B7BF2CE00C40501 /* diff_patch.c in Sources */ = {isa = PBXBuildFile; fileRef = F804C1451B7BF2CC00C40501 /* diff_patch.c */; };
F804C2911B7BF2CE00C40501 /* diff_patch.c in Sources */ = {isa = PBXBuildFile; fileRef = F804C1451B7BF2CC00C40501 /* diff_patch.c */; };
F804C2921B7BF2CE00C40501 /* diff_patch.h in Headers */ = {isa = PBXBuildFile; fileRef = F804C1461B7BF2CC00C40501 /* diff_patch.h */; };
F804C2931B7BF2CE00C40501 /* diff_patch.h in Headers */ = {isa = PBXBuildFile; fileRef = F804C1461B7BF2CC00C40501 /* diff_patch.h */; };
F804C2941B7BF2CE00C40501 /* diff_print.c in Sources */ = {isa = PBXBuildFile; fileRef = F804C1471B7BF2CC00C40501 /* diff_print.c */; };
F804C2951B7BF2CE00C40501 /* diff_print.c in Sources */ = {isa = PBXBuildFile; fileRef = F804C1471B7BF2CC00C40501 /* diff_print.c */; };
F804C2961B7BF2CE00C40501 /* diff_stats.c in Sources */ = {isa = PBXBuildFile; fileRef = F804C1481B7BF2CC00C40501 /* diff_stats.c */; };
F804C2971B7BF2CE00C40501 /* diff_stats.c in Sources */ = {isa = PBXBuildFile; fileRef = F804C1481B7BF2CC00C40501 /* diff_stats.c */; };
F804C2981B7BF2CE00C40501 /* diff_tform.c in Sources */ = {isa = PBXBuildFile; fileRef = F804C1491B7BF2CC00C40501 /* diff_tform.c */; };
F804C2991B7BF2CE00C40501 /* diff_tform.c in Sources */ = {isa = PBXBuildFile; fileRef = F804C1491B7BF2CC00C40501 /* diff_tform.c */; };
F804C29A1B7BF2CE00C40501 /* diff_xdiff.c in Sources */ = {isa = PBXBuildFile; fileRef = F804C14A1B7BF2CC00C40501 /* diff_xdiff.c */; };
F804C29B1B7BF2CE00C40501 /* diff_xdiff.c in Sources */ = {isa = PBXBuildFile; fileRef = F804C14A1B7BF2CC00C40501 /* diff_xdiff.c */; };
F804C29C1B7BF2CE00C40501 /* diff_xdiff.h in Headers */ = {isa = PBXBuildFile; fileRef = F804C14B1B7BF2CC00C40501 /* diff_xdiff.h */; };
F804C29D1B7BF2CE00C40501 /* diff_xdiff.h in Headers */ = {isa = PBXBuildFile; fileRef = F804C14B1B7BF2CC00C40501 /* diff_xdiff.h */; };
F804C29E1B7BF2CE00C40501 /* errors.c in Sources */ = {isa = PBXBuildFile; fileRef = F804C14C1B7BF2CC00C40501 /* errors.c */; };
F804C29F1B7BF2CE00C40501 /* errors.c in Sources */ = {isa = PBXBuildFile; fileRef = F804C14C1B7BF2CC00C40501 /* errors.c */; };
F804C2A01B7BF2CE00C40501 /* fetch.c in Sources */ = {isa = PBXBuildFile; fileRef = F804C14D1B7BF2CC00C40501 /* fetch.c */; };
F804C2A11B7BF2CE00C40501 /* fetch.c in Sources */ = {isa = PBXBuildFile; fileRef = F804C14D1B7BF2CC00C40501 /* fetch.c */; };
F804C2A21B7BF2CE00C40501 /* fetch.h in Headers */ = {isa = PBXBuildFile; fileRef = F804C14E1B7BF2CC00C40501 /* fetch.h */; };
F804C2A31B7BF2CE00C40501 /* fetch.h in Headers */ = {isa = PBXBuildFile; fileRef = F804C14E1B7BF2CC00C40501 /* fetch.h */; };
F804C2A41B7BF2CE00C40501 /* fetchhead.c in Sources */ = {isa = PBXBuildFile; fileRef = F804C14F1B7BF2CC00C40501 /* fetchhead.c */; };
F804C2A51B7BF2CE00C40501 /* fetchhead.c in Sources */ = {isa = PBXBuildFile; fileRef = F804C14F1B7BF2CC00C40501 /* fetchhead.c */; };
F804C2A61B7BF2CE00C40501 /* fetchhead.h in Headers */ = {isa = PBXBuildFile; fileRef = F804C1501B7BF2CC00C40501 /* fetchhead.h */; };
F804C2A71B7BF2CE00C40501 /* fetchhead.h in Headers */ = {isa = PBXBuildFile; fileRef = F804C1501B7BF2CC00C40501 /* fetchhead.h */; };
F804C2A81B7BF2CE00C40501 /* filebuf.c in Sources */ = {isa = PBXBuildFile; fileRef = F804C1511B7BF2CC00C40501 /* filebuf.c */; };
F804C2A91B7BF2CE00C40501 /* filebuf.c in Sources */ = {isa = PBXBuildFile; fileRef = F804C1511B7BF2CC00C40501 /* filebuf.c */; };
F804C2AA1B7BF2CE00C40501 /* filebuf.h in Headers */ = {isa = PBXBuildFile; fileRef = F804C1521B7BF2CC00C40501 /* filebuf.h */; };
F804C2AB1B7BF2CE00C40501 /* filebuf.h in Headers */ = {isa = PBXBuildFile; fileRef = F804C1521B7BF2CC00C40501 /* filebuf.h */; };
F804C2AC1B7BF2CF00C40501 /* fileops.c in Sources */ = {isa = PBXBuildFile; fileRef = F804C1531B7BF2CC00C40501 /* fileops.c */; };
F804C2AD1B7BF2CF00C40501 /* fileops.c in Sources */ = {isa = PBXBuildFile; fileRef = F804C1531B7BF2CC00C40501 /* fileops.c */; };
F804C2AE1B7BF2CF00C40501 /* fileops.h in Headers */ = {isa = PBXBuildFile; fileRef = F804C1541B7BF2CC00C40501 /* fileops.h */; };
F804C2AF1B7BF2CF00C40501 /* fileops.h in Headers */ = {isa = PBXBuildFile; fileRef = F804C1541B7BF2CC00C40501 /* fileops.h */; };
F804C2B01B7BF2CF00C40501 /* filter.c in Sources */ = {isa = PBXBuildFile; fileRef = F804C1551B7BF2CC00C40501 /* filter.c */; };
F804C2B11B7BF2CF00C40501 /* filter.c in Sources */ = {isa = PBXBuildFile; fileRef = F804C1551B7BF2CC00C40501 /* filter.c */; };
F804C2B21B7BF2CF00C40501 /* filter.h in Headers */ = {isa = PBXBuildFile; fileRef = F804C1561B7BF2CC00C40501 /* filter.h */; };
F804C2B31B7BF2CF00C40501 /* filter.h in Headers */ = {isa = PBXBuildFile; fileRef = F804C1561B7BF2CC00C40501 /* filter.h */; };
F804C2B41B7BF2CF00C40501 /* fnmatch.c in Sources */ = {isa = PBXBuildFile; fileRef = F804C1571B7BF2CC00C40501 /* fnmatch.c */; };
F804C2B51B7BF2CF00C40501 /* fnmatch.c in Sources */ = {isa = PBXBuildFile; fileRef = F804C1571B7BF2CC00C40501 /* fnmatch.c */; };
F804C2B61B7BF2CF00C40501 /* fnmatch.h in Headers */ = {isa = PBXBuildFile; fileRef = F804C1581B7BF2CC00C40501 /* fnmatch.h */; };
F804C2B71B7BF2CF00C40501 /* fnmatch.h in Headers */ = {isa = PBXBuildFile; fileRef = F804C1581B7BF2CC00C40501 /* fnmatch.h */; };
F804C2B81B7BF2CF00C40501 /* global.c in Sources */ = {isa = PBXBuildFile; fileRef = F804C1591B7BF2CC00C40501 /* global.c */; };
F804C2B91B7BF2CF00C40501 /* global.c in Sources */ = {isa = PBXBuildFile; fileRef = F804C1591B7BF2CC00C40501 /* global.c */; };
F804C2BA1B7BF2CF00C40501 /* global.h in Headers */ = {isa = PBXBuildFile; fileRef = F804C15A1B7BF2CC00C40501 /* global.h */; };
F804C2BB1B7BF2CF00C40501 /* global.h in Headers */ = {isa = PBXBuildFile; fileRef = F804C15A1B7BF2CC00C40501 /* global.h */; };
F804C2BC1B7BF2CF00C40501 /* graph.c in Sources */ = {isa = PBXBuildFile; fileRef = F804C15B1B7BF2CC00C40501 /* graph.c */; };
F804C2BD1B7BF2CF00C40501 /* graph.c in Sources */ = {isa = PBXBuildFile; fileRef = F804C15B1B7BF2CC00C40501 /* graph.c */; };
F804C2BE1B7BF2CF00C40501 /* hash_common_crypto.h in Headers */ = {isa = PBXBuildFile; fileRef = F804C15D1B7BF2CC00C40501 /* hash_common_crypto.h */; };
F804C2BF1B7BF2CF00C40501 /* hash_common_crypto.h in Headers */ = {isa = PBXBuildFile; fileRef = F804C15D1B7BF2CC00C40501 /* hash_common_crypto.h */; };
F804C2C01B7BF2CF00C40501 /* hash_generic.c in Sources */ = {isa = PBXBuildFile; fileRef = F804C15E1B7BF2CC00C40501 /* hash_generic.c */; };
F804C2C11B7BF2CF00C40501 /* hash_generic.c in Sources */ = {isa = PBXBuildFile; fileRef = F804C15E1B7BF2CC00C40501 /* hash_generic.c */; };
F804C2C21B7BF2CF00C40501 /* hash_generic.h in Headers */ = {isa = PBXBuildFile; fileRef = F804C15F1B7BF2CC00C40501 /* hash_generic.h */; };
F804C2C31B7BF2CF00C40501 /* hash_generic.h in Headers */ = {isa = PBXBuildFile; fileRef = F804C15F1B7BF2CC00C40501 /* hash_generic.h */; };
F804C2C41B7BF2CF00C40501 /* hash_openssl.h in Headers */ = {isa = PBXBuildFile; fileRef = F804C1601B7BF2CC00C40501 /* hash_openssl.h */; };
F804C2C51B7BF2CF00C40501 /* hash_openssl.h in Headers */ = {isa = PBXBuildFile; fileRef = F804C1601B7BF2CC00C40501 /* hash_openssl.h */; };
F804C2CA1B7BF2D000C40501 /* hash.c in Sources */ = {isa = PBXBuildFile; fileRef = F804C1631B7BF2CC00C40501 /* hash.c */; };
F804C2CB1B7BF2D000C40501 /* hash.c in Sources */ = {isa = PBXBuildFile; fileRef = F804C1631B7BF2CC00C40501 /* hash.c */; };
F804C2CC1B7BF2D000C40501 /* hash.h in Headers */ = {isa = PBXBuildFile; fileRef = F804C1641B7BF2CC00C40501 /* hash.h */; };
F804C2CD1B7BF2D000C40501 /* hash.h in Headers */ = {isa = PBXBuildFile; fileRef = F804C1641B7BF2CC00C40501 /* hash.h */; };
F804C2CE1B7BF2D000C40501 /* hashsig.c in Sources */ = {isa = PBXBuildFile; fileRef = F804C1651B7BF2CC00C40501 /* hashsig.c */; };
F804C2CF1B7BF2D000C40501 /* hashsig.c in Sources */ = {isa = PBXBuildFile; fileRef = F804C1651B7BF2CC00C40501 /* hashsig.c */; };
F804C2D01B7BF2D000C40501 /* ident.c in Sources */ = {isa = PBXBuildFile; fileRef = F804C1661B7BF2CC00C40501 /* ident.c */; };
F804C2D11B7BF2D000C40501 /* ident.c in Sources */ = {isa = PBXBuildFile; fileRef = F804C1661B7BF2CC00C40501 /* ident.c */; };
F804C2D21B7BF2D000C40501 /* ignore.c in Sources */ = {isa = PBXBuildFile; fileRef = F804C1671B7BF2CC00C40501 /* ignore.c */; };
F804C2D31B7BF2D000C40501 /* ignore.c in Sources */ = {isa = PBXBuildFile; fileRef = F804C1671B7BF2CC00C40501 /* ignore.c */; };
F804C2D41B7BF2D000C40501 /* ignore.h in Headers */ = {isa = PBXBuildFile; fileRef = F804C1681B7BF2CC00C40501 /* ignore.h */; };
F804C2D51B7BF2D000C40501 /* ignore.h in Headers */ = {isa = PBXBuildFile; fileRef = F804C1681B7BF2CC00C40501 /* ignore.h */; };
F804C2D61B7BF2D000C40501 /* index.c in Sources */ = {isa = PBXBuildFile; fileRef = F804C1691B7BF2CC00C40501 /* index.c */; };
F804C2D71B7BF2D000C40501 /* index.c in Sources */ = {isa = PBXBuildFile; fileRef = F804C1691B7BF2CC00C40501 /* index.c */; };
F804C2D81B7BF2D000C40501 /* index.h in Headers */ = {isa = PBXBuildFile; fileRef = F804C16A1B7BF2CC00C40501 /* index.h */; };
F804C2D91B7BF2D000C40501 /* index.h in Headers */ = {isa = PBXBuildFile; fileRef = F804C16A1B7BF2CC00C40501 /* index.h */; };
F804C2DC1B7BF2D000C40501 /* integer.h in Headers */ = {isa = PBXBuildFile; fileRef = F804C16C1B7BF2CC00C40501 /* integer.h */; };
F804C2DD1B7BF2D000C40501 /* integer.h in Headers */ = {isa = PBXBuildFile; fileRef = F804C16C1B7BF2CC00C40501 /* integer.h */; };
F804C2DE1B7BF2D000C40501 /* iterator.c in Sources */ = {isa = PBXBuildFile; fileRef = F804C16D1B7BF2CC00C40501 /* iterator.c */; };
F804C2DF1B7BF2D000C40501 /* iterator.c in Sources */ = {isa = PBXBuildFile; fileRef = F804C16D1B7BF2CC00C40501 /* iterator.c */; };
F804C2E01B7BF2D000C40501 /* iterator.h in Headers */ = {isa = PBXBuildFile; fileRef = F804C16E1B7BF2CC00C40501 /* iterator.h */; };
F804C2E11B7BF2D000C40501 /* iterator.h in Headers */ = {isa = PBXBuildFile; fileRef = F804C16E1B7BF2CC00C40501 /* iterator.h */; };
F804C2E21B7BF2D000C40501 /* khash.h in Headers */ = {isa = PBXBuildFile; fileRef = F804C16F1B7BF2CC00C40501 /* khash.h */; };
F804C2E31B7BF2D000C40501 /* khash.h in Headers */ = {isa = PBXBuildFile; fileRef = F804C16F1B7BF2CC00C40501 /* khash.h */; };
F804C2E41B7BF2D000C40501 /* map.h in Headers */ = {isa = PBXBuildFile; fileRef = F804C1701B7BF2CC00C40501 /* map.h */; };
F804C2E51B7BF2D000C40501 /* map.h in Headers */ = {isa = PBXBuildFile; fileRef = F804C1701B7BF2CC00C40501 /* map.h */; };
F804C2E61B7BF2D000C40501 /* merge.c in Sources */ = {isa = PBXBuildFile; fileRef = F804C1711B7BF2CC00C40501 /* merge.c */; };
F804C2E71B7BF2D000C40501 /* merge.c in Sources */ = {isa = PBXBuildFile; fileRef = F804C1711B7BF2CC00C40501 /* merge.c */; };
F804C2E81B7BF2D100C40501 /* merge.h in Headers */ = {isa = PBXBuildFile; fileRef = F804C1721B7BF2CD00C40501 /* merge.h */; };
F804C2E91B7BF2D100C40501 /* merge.h in Headers */ = {isa = PBXBuildFile; fileRef = F804C1721B7BF2CD00C40501 /* merge.h */; };
F804C2EA1B7BF2D100C40501 /* merge_file.c in Sources */ = {isa = PBXBuildFile; fileRef = F804C1731B7BF2CD00C40501 /* merge_file.c */; };
F804C2EB1B7BF2D100C40501 /* merge_file.c in Sources */ = {isa = PBXBuildFile; fileRef = F804C1731B7BF2CD00C40501 /* merge_file.c */; };
F804C2EE1B7BF2D100C40501 /* message.c in Sources */ = {isa = PBXBuildFile; fileRef = F804C1751B7BF2CD00C40501 /* message.c */; };
F804C2EF1B7BF2D100C40501 /* message.c in Sources */ = {isa = PBXBuildFile; fileRef = F804C1751B7BF2CD00C40501 /* message.c */; };
F804C2F01B7BF2D100C40501 /* message.h in Headers */ = {isa = PBXBuildFile; fileRef = F804C1761B7BF2CD00C40501 /* message.h */; };
F804C2F11B7BF2D100C40501 /* message.h in Headers */ = {isa = PBXBuildFile; fileRef = F804C1761B7BF2CD00C40501 /* message.h */; };
F804C2F21B7BF2D100C40501 /* mwindow.c in Sources */ = {isa = PBXBuildFile; fileRef = F804C1771B7BF2CD00C40501 /* mwindow.c */; };
F804C2F31B7BF2D100C40501 /* mwindow.c in Sources */ = {isa = PBXBuildFile; fileRef = F804C1771B7BF2CD00C40501 /* mwindow.c */; };
F804C2F41B7BF2D100C40501 /* mwindow.h in Headers */ = {isa = PBXBuildFile; fileRef = F804C1781B7BF2CD00C40501 /* mwindow.h */; };
F804C2F51B7BF2D100C40501 /* mwindow.h in Headers */ = {isa = PBXBuildFile; fileRef = F804C1781B7BF2CD00C40501 /* mwindow.h */; };
F804C2F61B7BF2D100C40501 /* netops.c in Sources */ = {isa = PBXBuildFile; fileRef = F804C1791B7BF2CD00C40501 /* netops.c */; };
F804C2F71B7BF2D100C40501 /* netops.c in Sources */ = {isa = PBXBuildFile; fileRef = F804C1791B7BF2CD00C40501 /* netops.c */; };
F804C2F81B7BF2D100C40501 /* netops.h in Headers */ = {isa = PBXBuildFile; fileRef = F804C17A1B7BF2CD00C40501 /* netops.h */; };
F804C2F91B7BF2D100C40501 /* netops.h in Headers */ = {isa = PBXBuildFile; fileRef = F804C17A1B7BF2CD00C40501 /* netops.h */; };
F804C2FA1B7BF2D100C40501 /* notes.c in Sources */ = {isa = PBXBuildFile; fileRef = F804C17B1B7BF2CD00C40501 /* notes.c */; };
F804C2FB1B7BF2D100C40501 /* notes.c in Sources */ = {isa = PBXBuildFile; fileRef = F804C17B1B7BF2CD00C40501 /* notes.c */; };
F804C2FC1B7BF2D100C40501 /* notes.h in Headers */ = {isa = PBXBuildFile; fileRef = F804C17C1B7BF2CD00C40501 /* notes.h */; };
F804C2FD1B7BF2D100C40501 /* notes.h in Headers */ = {isa = PBXBuildFile; fileRef = F804C17C1B7BF2CD00C40501 /* notes.h */; };
F804C2FE1B7BF2D100C40501 /* object.c in Sources */ = {isa = PBXBuildFile; fileRef = F804C17D1B7BF2CD00C40501 /* object.c */; };
F804C2FF1B7BF2D100C40501 /* object.c in Sources */ = {isa = PBXBuildFile; fileRef = F804C17D1B7BF2CD00C40501 /* object.c */; };
F804C3001B7BF2D100C40501 /* object.h in Headers */ = {isa = PBXBuildFile; fileRef = F804C17E1B7BF2CD00C40501 /* object.h */; };
F804C3011B7BF2D100C40501 /* object.h in Headers */ = {isa = PBXBuildFile; fileRef = F804C17E1B7BF2CD00C40501 /* object.h */; };
F804C3021B7BF2D200C40501 /* object_api.c in Sources */ = {isa = PBXBuildFile; fileRef = F804C17F1B7BF2CD00C40501 /* object_api.c */; };
F804C3031B7BF2D200C40501 /* object_api.c in Sources */ = {isa = PBXBuildFile; fileRef = F804C17F1B7BF2CD00C40501 /* object_api.c */; };
F804C3041B7BF2D200C40501 /* odb.c in Sources */ = {isa = PBXBuildFile; fileRef = F804C1801B7BF2CD00C40501 /* odb.c */; };
F804C3051B7BF2D200C40501 /* odb.c in Sources */ = {isa = PBXBuildFile; fileRef = F804C1801B7BF2CD00C40501 /* odb.c */; };
F804C3061B7BF2D200C40501 /* odb.h in Headers */ = {isa = PBXBuildFile; fileRef = F804C1811B7BF2CD00C40501 /* odb.h */; };
F804C3071B7BF2D200C40501 /* odb.h in Headers */ = {isa = PBXBuildFile; fileRef = F804C1811B7BF2CD00C40501 /* odb.h */; };
F804C3081B7BF2D200C40501 /* odb_loose.c in Sources */ = {isa = PBXBuildFile; fileRef = F804C1821B7BF2CD00C40501 /* odb_loose.c */; };
F804C3091B7BF2D200C40501 /* odb_loose.c in Sources */ = {isa = PBXBuildFile; fileRef = F804C1821B7BF2CD00C40501 /* odb_loose.c */; };
F804C30A1B7BF2D200C40501 /* odb_mempack.c in Sources */ = {isa = PBXBuildFile; fileRef = F804C1831B7BF2CD00C40501 /* odb_mempack.c */; };
F804C30B1B7BF2D200C40501 /* odb_mempack.c in Sources */ = {isa = PBXBuildFile; fileRef = F804C1831B7BF2CD00C40501 /* odb_mempack.c */; };
F804C30C1B7BF2D200C40501 /* odb_pack.c in Sources */ = {isa = PBXBuildFile; fileRef = F804C1841B7BF2CD00C40501 /* odb_pack.c */; };
F804C30D1B7BF2D200C40501 /* odb_pack.c in Sources */ = {isa = PBXBuildFile; fileRef = F804C1841B7BF2CD00C40501 /* odb_pack.c */; };
F804C30E1B7BF2D200C40501 /* offmap.h in Headers */ = {isa = PBXBuildFile; fileRef = F804C1851B7BF2CD00C40501 /* offmap.h */; };
F804C30F1B7BF2D200C40501 /* offmap.h in Headers */ = {isa = PBXBuildFile; fileRef = F804C1851B7BF2CD00C40501 /* offmap.h */; };
F804C3101B7BF2D200C40501 /* oid.c in Sources */ = {isa = PBXBuildFile; fileRef = F804C1861B7BF2CD00C40501 /* oid.c */; };
F804C3111B7BF2D200C40501 /* oid.c in Sources */ = {isa = PBXBuildFile; fileRef = F804C1861B7BF2CD00C40501 /* oid.c */; };
F804C3121B7BF2D200C40501 /* oid.h in Headers */ = {isa = PBXBuildFile; fileRef = F804C1871B7BF2CD00C40501 /* oid.h */; };
F804C3131B7BF2D200C40501 /* oid.h in Headers */ = {isa = PBXBuildFile; fileRef = F804C1871B7BF2CD00C40501 /* oid.h */; };
F804C3141B7BF2D200C40501 /* oidarray.c in Sources */ = {isa = PBXBuildFile; fileRef = F804C1881B7BF2CD00C40501 /* oidarray.c */; };
F804C3151B7BF2D200C40501 /* oidarray.c in Sources */ = {isa = PBXBuildFile; fileRef = F804C1881B7BF2CD00C40501 /* oidarray.c */; };
F804C3161B7BF2D200C40501 /* oidarray.h in Headers */ = {isa = PBXBuildFile; fileRef = F804C1891B7BF2CD00C40501 /* oidarray.h */; };
F804C3171B7BF2D200C40501 /* oidarray.h in Headers */ = {isa = PBXBuildFile; fileRef = F804C1891B7BF2CD00C40501 /* oidarray.h */; };
F804C3181B7BF2D200C40501 /* oidmap.h in Headers */ = {isa = PBXBuildFile; fileRef = F804C18A1B7BF2CD00C40501 /* oidmap.h */; };
F804C3191B7BF2D200C40501 /* oidmap.h in Headers */ = {isa = PBXBuildFile; fileRef = F804C18A1B7BF2CD00C40501 /* oidmap.h */; };
F804C31A1B7BF2D300C40501 /* openssl_stream.c in Sources */ = {isa = PBXBuildFile; fileRef = F804C18B1B7BF2CD00C40501 /* openssl_stream.c */; };
F804C31B1B7BF2D300C40501 /* openssl_stream.c in Sources */ = {isa = PBXBuildFile; fileRef = F804C18B1B7BF2CD00C40501 /* openssl_stream.c */; };
F804C31C1B7BF2D300C40501 /* openssl_stream.h in Headers */ = {isa = PBXBuildFile; fileRef = F804C18C1B7BF2CD00C40501 /* openssl_stream.h */; };
F804C31D1B7BF2D300C40501 /* openssl_stream.h in Headers */ = {isa = PBXBuildFile; fileRef = F804C18C1B7BF2CD00C40501 /* openssl_stream.h */; };
F804C31E1B7BF2D300C40501 /* pack-objects.c in Sources */ = {isa = PBXBuildFile; fileRef = F804C18D1B7BF2CD00C40501 /* pack-objects.c */; };
F804C31F1B7BF2D300C40501 /* pack-objects.c in Sources */ = {isa = PBXBuildFile; fileRef = F804C18D1B7BF2CD00C40501 /* pack-objects.c */; };
F804C3201B7BF2D300C40501 /* pack-objects.h in Headers */ = {isa = PBXBuildFile; fileRef = F804C18E1B7BF2CD00C40501 /* pack-objects.h */; };
F804C3211B7BF2D300C40501 /* pack-objects.h in Headers */ = {isa = PBXBuildFile; fileRef = F804C18E1B7BF2CD00C40501 /* pack-objects.h */; };
F804C3221B7BF2D300C40501 /* pack.c in Sources */ = {isa = PBXBuildFile; fileRef = F804C18F1B7BF2CD00C40501 /* pack.c */; };
F804C3231B7BF2D300C40501 /* pack.c in Sources */ = {isa = PBXBuildFile; fileRef = F804C18F1B7BF2CD00C40501 /* pack.c */; };
F804C3241B7BF2D300C40501 /* pack.h in Headers */ = {isa = PBXBuildFile; fileRef = F804C1901B7BF2CD00C40501 /* pack.h */; };
F804C3251B7BF2D300C40501 /* pack.h in Headers */ = {isa = PBXBuildFile; fileRef = F804C1901B7BF2CD00C40501 /* pack.h */; };
F804C3261B7BF2D300C40501 /* path.c in Sources */ = {isa = PBXBuildFile; fileRef = F804C1911B7BF2CD00C40501 /* path.c */; };
F804C3271B7BF2D300C40501 /* path.c in Sources */ = {isa = PBXBuildFile; fileRef = F804C1911B7BF2CD00C40501 /* path.c */; };
F804C3281B7BF2D300C40501 /* path.h in Headers */ = {isa = PBXBuildFile; fileRef = F804C1921B7BF2CD00C40501 /* path.h */; };
F804C3291B7BF2D300C40501 /* path.h in Headers */ = {isa = PBXBuildFile; fileRef = F804C1921B7BF2CD00C40501 /* path.h */; };
F804C32A1B7BF2D300C40501 /* pathspec.c in Sources */ = {isa = PBXBuildFile; fileRef = F804C1931B7BF2CD00C40501 /* pathspec.c */; };
F804C32B1B7BF2D300C40501 /* pathspec.c in Sources */ = {isa = PBXBuildFile; fileRef = F804C1931B7BF2CD00C40501 /* pathspec.c */; };
F804C32C1B7BF2D300C40501 /* pathspec.h in Headers */ = {isa = PBXBuildFile; fileRef = F804C1941B7BF2CD00C40501 /* pathspec.h */; };
F804C32D1B7BF2D300C40501 /* pathspec.h in Headers */ = {isa = PBXBuildFile; fileRef = F804C1941B7BF2CD00C40501 /* pathspec.h */; };
F804C32E1B7BF2D400C40501 /* pool.c in Sources */ = {isa = PBXBuildFile; fileRef = F804C1951B7BF2CD00C40501 /* pool.c */; };
F804C32F1B7BF2D400C40501 /* pool.c in Sources */ = {isa = PBXBuildFile; fileRef = F804C1951B7BF2CD00C40501 /* pool.c */; };
F804C3301B7BF2D400C40501 /* pool.h in Headers */ = {isa = PBXBuildFile; fileRef = F804C1961B7BF2CD00C40501 /* pool.h */; };
F804C3311B7BF2D400C40501 /* pool.h in Headers */ = {isa = PBXBuildFile; fileRef = F804C1961B7BF2CD00C40501 /* pool.h */; };
F804C3321B7BF2D400C40501 /* posix.c in Sources */ = {isa = PBXBuildFile; fileRef = F804C1971B7BF2CD00C40501 /* posix.c */; };
F804C3331B7BF2D400C40501 /* posix.c in Sources */ = {isa = PBXBuildFile; fileRef = F804C1971B7BF2CD00C40501 /* posix.c */; };
F804C3341B7BF2D400C40501 /* posix.h in Headers */ = {isa = PBXBuildFile; fileRef = F804C1981B7BF2CD00C40501 /* posix.h */; };
F804C3351B7BF2D400C40501 /* posix.h in Headers */ = {isa = PBXBuildFile; fileRef = F804C1981B7BF2CD00C40501 /* posix.h */; };
F804C3361B7BF2D400C40501 /* pqueue.c in Sources */ = {isa = PBXBuildFile; fileRef = F804C1991B7BF2CD00C40501 /* pqueue.c */; };
F804C3371B7BF2D400C40501 /* pqueue.c in Sources */ = {isa = PBXBuildFile; fileRef = F804C1991B7BF2CD00C40501 /* pqueue.c */; };
F804C3381B7BF2D400C40501 /* pqueue.h in Headers */ = {isa = PBXBuildFile; fileRef = F804C19A1B7BF2CD00C40501 /* pqueue.h */; };
F804C3391B7BF2D400C40501 /* pqueue.h in Headers */ = {isa = PBXBuildFile; fileRef = F804C19A1B7BF2CD00C40501 /* pqueue.h */; };
F804C33A1B7BF2D400C40501 /* push.c in Sources */ = {isa = PBXBuildFile; fileRef = F804C19B1B7BF2CD00C40501 /* push.c */; };
F804C33B1B7BF2D400C40501 /* push.c in Sources */ = {isa = PBXBuildFile; fileRef = F804C19B1B7BF2CD00C40501 /* push.c */; };
F804C33C1B7BF2D400C40501 /* push.h in Headers */ = {isa = PBXBuildFile; fileRef = F804C19C1B7BF2CD00C40501 /* push.h */; };
F804C33D1B7BF2D400C40501 /* push.h in Headers */ = {isa = PBXBuildFile; fileRef = F804C19C1B7BF2CD00C40501 /* push.h */; };
F804C33E1B7BF2D500C40501 /* rebase.c in Sources */ = {isa = PBXBuildFile; fileRef = F804C19D1B7BF2CD00C40501 /* rebase.c */; };
F804C33F1B7BF2D500C40501 /* rebase.c in Sources */ = {isa = PBXBuildFile; fileRef = F804C19D1B7BF2CD00C40501 /* rebase.c */; };
F804C3401B7BF2D500C40501 /* refdb.c in Sources */ = {isa = PBXBuildFile; fileRef = F804C19E1B7BF2CD00C40501 /* refdb.c */; };
F804C3411B7BF2D500C40501 /* refdb.c in Sources */ = {isa = PBXBuildFile; fileRef = F804C19E1B7BF2CD00C40501 /* refdb.c */; };
F804C3421B7BF2D500C40501 /* refdb.h in Headers */ = {isa = PBXBuildFile; fileRef = F804C19F1B7BF2CD00C40501 /* refdb.h */; };
F804C3431B7BF2D500C40501 /* refdb.h in Headers */ = {isa = PBXBuildFile; fileRef = F804C19F1B7BF2CD00C40501 /* refdb.h */; };
F804C3441B7BF2D500C40501 /* refdb_fs.c in Sources */ = {isa = PBXBuildFile; fileRef = F804C1A01B7BF2CD00C40501 /* refdb_fs.c */; };
F804C3451B7BF2D500C40501 /* refdb_fs.c in Sources */ = {isa = PBXBuildFile; fileRef = F804C1A01B7BF2CD00C40501 /* refdb_fs.c */; };
F804C3461B7BF2D500C40501 /* refdb_fs.h in Headers */ = {isa = PBXBuildFile; fileRef = F804C1A11B7BF2CD00C40501 /* refdb_fs.h */; };
F804C3471B7BF2D500C40501 /* refdb_fs.h in Headers */ = {isa = PBXBuildFile; fileRef = F804C1A11B7BF2CD00C40501 /* refdb_fs.h */; };
F804C3481B7BF2D500C40501 /* reflog.c in Sources */ = {isa = PBXBuildFile; fileRef = F804C1A21B7BF2CD00C40501 /* reflog.c */; };
F804C3491B7BF2D500C40501 /* reflog.c in Sources */ = {isa = PBXBuildFile; fileRef = F804C1A21B7BF2CD00C40501 /* reflog.c */; };
F804C34A1B7BF2D500C40501 /* reflog.h in Headers */ = {isa = PBXBuildFile; fileRef = F804C1A31B7BF2CD00C40501 /* reflog.h */; };
F804C34B1B7BF2D500C40501 /* reflog.h in Headers */ = {isa = PBXBuildFile; fileRef = F804C1A31B7BF2CD00C40501 /* reflog.h */; };
F804C34C1B7BF2D500C40501 /* refs.c in Sources */ = {isa = PBXBuildFile; fileRef = F804C1A41B7BF2CD00C40501 /* refs.c */; };
F804C34D1B7BF2D500C40501 /* refs.c in Sources */ = {isa = PBXBuildFile; fileRef = F804C1A41B7BF2CD00C40501 /* refs.c */; };
F804C34E1B7BF2D500C40501 /* refs.h in Headers */ = {isa = PBXBuildFile; fileRef = F804C1A51B7BF2CD00C40501 /* refs.h */; };
F804C34F1B7BF2D500C40501 /* refs.h in Headers */ = {isa = PBXBuildFile; fileRef = F804C1A51B7BF2CD00C40501 /* refs.h */; };
F804C3501B7BF2D600C40501 /* refspec.c in Sources */ = {isa = PBXBuildFile; fileRef = F804C1A61B7BF2CD00C40501 /* refspec.c */; };
F804C3511B7BF2D600C40501 /* refspec.c in Sources */ = {isa = PBXBuildFile; fileRef = F804C1A61B7BF2CD00C40501 /* refspec.c */; };
F804C3521B7BF2D600C40501 /* refspec.h in Headers */ = {isa = PBXBuildFile; fileRef = F804C1A71B7BF2CD00C40501 /* refspec.h */; };
F804C3531B7BF2D600C40501 /* refspec.h in Headers */ = {isa = PBXBuildFile; fileRef = F804C1A71B7BF2CD00C40501 /* refspec.h */; };
F804C3541B7BF2D600C40501 /* remote.c in Sources */ = {isa = PBXBuildFile; fileRef = F804C1A81B7BF2CD00C40501 /* remote.c */; };
F804C3551B7BF2D600C40501 /* remote.c in Sources */ = {isa = PBXBuildFile; fileRef = F804C1A81B7BF2CD00C40501 /* remote.c */; };
F804C3561B7BF2D600C40501 /* remote.h in Headers */ = {isa = PBXBuildFile; fileRef = F804C1A91B7BF2CD00C40501 /* remote.h */; };
F804C3571B7BF2D600C40501 /* remote.h in Headers */ = {isa = PBXBuildFile; fileRef = F804C1A91B7BF2CD00C40501 /* remote.h */; };
F804C3581B7BF2D600C40501 /* repo_template.h in Headers */ = {isa = PBXBuildFile; fileRef = F804C1AA1B7BF2CD00C40501 /* repo_template.h */; };
F804C3591B7BF2D600C40501 /* repo_template.h in Headers */ = {isa = PBXBuildFile; fileRef = F804C1AA1B7BF2CD00C40501 /* repo_template.h */; };
F804C35A1B7BF2D600C40501 /* repository.c in Sources */ = {isa = PBXBuildFile; fileRef = F804C1AB1B7BF2CD00C40501 /* repository.c */; };
F804C35B1B7BF2D600C40501 /* repository.c in Sources */ = {isa = PBXBuildFile; fileRef = F804C1AB1B7BF2CD00C40501 /* repository.c */; };
F804C35C1B7BF2D700C40501 /* repository.h in Headers */ = {isa = PBXBuildFile; fileRef = F804C1AC1B7BF2CD00C40501 /* repository.h */; };
F804C35D1B7BF2D700C40501 /* repository.h in Headers */ = {isa = PBXBuildFile; fileRef = F804C1AC1B7BF2CD00C40501 /* repository.h */; };
F804C35E1B7BF2D700C40501 /* reset.c in Sources */ = {isa = PBXBuildFile; fileRef = F804C1AD1B7BF2CD00C40501 /* reset.c */; };
F804C35F1B7BF2D700C40501 /* reset.c in Sources */ = {isa = PBXBuildFile; fileRef = F804C1AD1B7BF2CD00C40501 /* reset.c */; };
F804C3601B7BF2D700C40501 /* revert.c in Sources */ = {isa = PBXBuildFile; fileRef = F804C1AE1B7BF2CD00C40501 /* revert.c */; };
F804C3611B7BF2D700C40501 /* revert.c in Sources */ = {isa = PBXBuildFile; fileRef = F804C1AE1B7BF2CD00C40501 /* revert.c */; };
F804C3621B7BF2D700C40501 /* revparse.c in Sources */ = {isa = PBXBuildFile; fileRef = F804C1AF1B7BF2CD00C40501 /* revparse.c */; };
F804C3631B7BF2D700C40501 /* revparse.c in Sources */ = {isa = PBXBuildFile; fileRef = F804C1AF1B7BF2CD00C40501 /* revparse.c */; };
F804C3641B7BF2D700C40501 /* revwalk.c in Sources */ = {isa = PBXBuildFile; fileRef = F804C1B01B7BF2CD00C40501 /* revwalk.c */; };
F804C3651B7BF2D700C40501 /* revwalk.c in Sources */ = {isa = PBXBuildFile; fileRef = F804C1B01B7BF2CD00C40501 /* revwalk.c */; };
F804C3661B7BF2D700C40501 /* revwalk.h in Headers */ = {isa = PBXBuildFile; fileRef = F804C1B11B7BF2CD00C40501 /* revwalk.h */; };
F804C3671B7BF2D700C40501 /* revwalk.h in Headers */ = {isa = PBXBuildFile; fileRef = F804C1B11B7BF2CD00C40501 /* revwalk.h */; };
F804C3681B7BF2D700C40501 /* settings.c in Sources */ = {isa = PBXBuildFile; fileRef = F804C1B21B7BF2CD00C40501 /* settings.c */; };
F804C3691B7BF2D700C40501 /* settings.c in Sources */ = {isa = PBXBuildFile; fileRef = F804C1B21B7BF2CD00C40501 /* settings.c */; };
F804C36A1B7BF2D700C40501 /* sha1_lookup.c in Sources */ = {isa = PBXBuildFile; fileRef = F804C1B31B7BF2CD00C40501 /* sha1_lookup.c */; };
F804C36B1B7BF2D700C40501 /* sha1_lookup.c in Sources */ = {isa = PBXBuildFile; fileRef = F804C1B31B7BF2CD00C40501 /* sha1_lookup.c */; };
F804C36C1B7BF2D700C40501 /* sha1_lookup.h in Headers */ = {isa = PBXBuildFile; fileRef = F804C1B41B7BF2CD00C40501 /* sha1_lookup.h */; };
F804C36D1B7BF2D700C40501 /* sha1_lookup.h in Headers */ = {isa = PBXBuildFile; fileRef = F804C1B41B7BF2CD00C40501 /* sha1_lookup.h */; };
F804C36E1B7BF2D800C40501 /* signature.c in Sources */ = {isa = PBXBuildFile; fileRef = F804C1B51B7BF2CD00C40501 /* signature.c */; };
F804C36F1B7BF2D800C40501 /* signature.c in Sources */ = {isa = PBXBuildFile; fileRef = F804C1B51B7BF2CD00C40501 /* signature.c */; };
F804C3701B7BF2D800C40501 /* signature.h in Headers */ = {isa = PBXBuildFile; fileRef = F804C1B61B7BF2CD00C40501 /* signature.h */; };
F804C3711B7BF2D800C40501 /* signature.h in Headers */ = {isa = PBXBuildFile; fileRef = F804C1B61B7BF2CD00C40501 /* signature.h */; };
F804C3721B7BF2D800C40501 /* socket_stream.c in Sources */ = {isa = PBXBuildFile; fileRef = F804C1B71B7BF2CD00C40501 /* socket_stream.c */; };
F804C3731B7BF2D800C40501 /* socket_stream.c in Sources */ = {isa = PBXBuildFile; fileRef = F804C1B71B7BF2CD00C40501 /* socket_stream.c */; };
F804C3741B7BF2D800C40501 /* socket_stream.h in Headers */ = {isa = PBXBuildFile; fileRef = F804C1B81B7BF2CD00C40501 /* socket_stream.h */; };
F804C3751B7BF2D800C40501 /* socket_stream.h in Headers */ = {isa = PBXBuildFile; fileRef = F804C1B81B7BF2CD00C40501 /* socket_stream.h */; };
F804C3761B7BF2D800C40501 /* sortedcache.c in Sources */ = {isa = PBXBuildFile; fileRef = F804C1B91B7BF2CD00C40501 /* sortedcache.c */; };
F804C3771B7BF2D800C40501 /* sortedcache.c in Sources */ = {isa = PBXBuildFile; fileRef = F804C1B91B7BF2CD00C40501 /* sortedcache.c */; };
F804C3781B7BF2D900C40501 /* sortedcache.h in Headers */ = {isa = PBXBuildFile; fileRef = F804C1BA1B7BF2CD00C40501 /* sortedcache.h */; };
F804C3791B7BF2D900C40501 /* sortedcache.h in Headers */ = {isa = PBXBuildFile; fileRef = F804C1BA1B7BF2CD00C40501 /* sortedcache.h */; };
F804C37A1B7BF2D900C40501 /* stash.c in Sources */ = {isa = PBXBuildFile; fileRef = F804C1BB1B7BF2CD00C40501 /* stash.c */; };
F804C37B1B7BF2D900C40501 /* stash.c in Sources */ = {isa = PBXBuildFile; fileRef = F804C1BB1B7BF2CD00C40501 /* stash.c */; };
F804C37C1B7BF2D900C40501 /* status.c in Sources */ = {isa = PBXBuildFile; fileRef = F804C1BC1B7BF2CD00C40501 /* status.c */; };
F804C37D1B7BF2D900C40501 /* status.c in Sources */ = {isa = PBXBuildFile; fileRef = F804C1BC1B7BF2CD00C40501 /* status.c */; };
F804C37E1B7BF2D900C40501 /* status.h in Headers */ = {isa = PBXBuildFile; fileRef = F804C1BD1B7BF2CD00C40501 /* status.h */; };
F804C37F1B7BF2D900C40501 /* status.h in Headers */ = {isa = PBXBuildFile; fileRef = F804C1BD1B7BF2CD00C40501 /* status.h */; };
F804C3801B7BF2D900C40501 /* stransport_stream.c in Sources */ = {isa = PBXBuildFile; fileRef = F804C1BE1B7BF2CD00C40501 /* stransport_stream.c */; };
F804C3811B7BF2D900C40501 /* stransport_stream.c in Sources */ = {isa = PBXBuildFile; fileRef = F804C1BE1B7BF2CD00C40501 /* stransport_stream.c */; };
F804C3821B7BF2D900C40501 /* stransport_stream.h in Headers */ = {isa = PBXBuildFile; fileRef = F804C1BF1B7BF2CD00C40501 /* stransport_stream.h */; };
F804C3831B7BF2D900C40501 /* stransport_stream.h in Headers */ = {isa = PBXBuildFile; fileRef = F804C1BF1B7BF2CD00C40501 /* stransport_stream.h */; };
F804C3841B7BF2DA00C40501 /* stream.h in Headers */ = {isa = PBXBuildFile; fileRef = F804C1C01B7BF2CD00C40501 /* stream.h */; };
F804C3851B7BF2DA00C40501 /* stream.h in Headers */ = {isa = PBXBuildFile; fileRef = F804C1C01B7BF2CD00C40501 /* stream.h */; };
F804C3861B7BF2DA00C40501 /* strmap.c in Sources */ = {isa = PBXBuildFile; fileRef = F804C1C11B7BF2CD00C40501 /* strmap.c */; };
F804C3871B7BF2DA00C40501 /* strmap.c in Sources */ = {isa = PBXBuildFile; fileRef = F804C1C11B7BF2CD00C40501 /* strmap.c */; };
F804C3881B7BF2DA00C40501 /* strmap.h in Headers */ = {isa = PBXBuildFile; fileRef = F804C1C21B7BF2CD00C40501 /* strmap.h */; };
F804C3891B7BF2DA00C40501 /* strmap.h in Headers */ = {isa = PBXBuildFile; fileRef = F804C1C21B7BF2CD00C40501 /* strmap.h */; };
F804C38A1B7BF2DA00C40501 /* strnlen.h in Headers */ = {isa = PBXBuildFile; fileRef = F804C1C31B7BF2CD00C40501 /* strnlen.h */; };
F804C38B1B7BF2DA00C40501 /* strnlen.h in Headers */ = {isa = PBXBuildFile; fileRef = F804C1C31B7BF2CD00C40501 /* strnlen.h */; };
F804C38C1B7BF2DB00C40501 /* submodule.c in Sources */ = {isa = PBXBuildFile; fileRef = F804C1C41B7BF2CD00C40501 /* submodule.c */; };
F804C38D1B7BF2DB00C40501 /* submodule.c in Sources */ = {isa = PBXBuildFile; fileRef = F804C1C41B7BF2CD00C40501 /* submodule.c */; };
F804C38E1B7BF2DB00C40501 /* submodule.h in Headers */ = {isa = PBXBuildFile; fileRef = F804C1C51B7BF2CD00C40501 /* submodule.h */; };
F804C38F1B7BF2DB00C40501 /* submodule.h in Headers */ = {isa = PBXBuildFile; fileRef = F804C1C51B7BF2CD00C40501 /* submodule.h */; };
F804C3901B7BF2DB00C40501 /* sysdir.c in Sources */ = {isa = PBXBuildFile; fileRef = F804C1C61B7BF2CD00C40501 /* sysdir.c */; };
F804C3911B7BF2DB00C40501 /* sysdir.c in Sources */ = {isa = PBXBuildFile; fileRef = F804C1C61B7BF2CD00C40501 /* sysdir.c */; };
F804C3921B7BF2DB00C40501 /* sysdir.h in Headers */ = {isa = PBXBuildFile; fileRef = F804C1C71B7BF2CD00C40501 /* sysdir.h */; };
F804C3931B7BF2DB00C40501 /* sysdir.h in Headers */ = {isa = PBXBuildFile; fileRef = F804C1C71B7BF2CD00C40501 /* sysdir.h */; };
F804C3941B7BF2DB00C40501 /* tag.c in Sources */ = {isa = PBXBuildFile; fileRef = F804C1C81B7BF2CD00C40501 /* tag.c */; };
F804C3951B7BF2DB00C40501 /* tag.c in Sources */ = {isa = PBXBuildFile; fileRef = F804C1C81B7BF2CD00C40501 /* tag.c */; };
F804C3961B7BF2DC00C40501 /* tag.h in Headers */ = {isa = PBXBuildFile; fileRef = F804C1C91B7BF2CD00C40501 /* tag.h */; };
F804C3971B7BF2DC00C40501 /* tag.h in Headers */ = {isa = PBXBuildFile; fileRef = F804C1C91B7BF2CD00C40501 /* tag.h */; };
F804C3981B7BF2DC00C40501 /* thread-utils.c in Sources */ = {isa = PBXBuildFile; fileRef = F804C1CA1B7BF2CD00C40501 /* thread-utils.c */; };
F804C3991B7BF2DC00C40501 /* thread-utils.c in Sources */ = {isa = PBXBuildFile; fileRef = F804C1CA1B7BF2CD00C40501 /* thread-utils.c */; };
F804C39A1B7BF2DC00C40501 /* thread-utils.h in Headers */ = {isa = PBXBuildFile; fileRef = F804C1CB1B7BF2CD00C40501 /* thread-utils.h */; };
F804C39B1B7BF2DC00C40501 /* thread-utils.h in Headers */ = {isa = PBXBuildFile; fileRef = F804C1CB1B7BF2CD00C40501 /* thread-utils.h */; };
F804C39C1B7BF2DC00C40501 /* tls_stream.c in Sources */ = {isa = PBXBuildFile; fileRef = F804C1CC1B7BF2CD00C40501 /* tls_stream.c */; };
F804C39D1B7BF2DC00C40501 /* tls_stream.c in Sources */ = {isa = PBXBuildFile; fileRef = F804C1CC1B7BF2CD00C40501 /* tls_stream.c */; };
F804C39E1B7BF2DD00C40501 /* tls_stream.h in Headers */ = {isa = PBXBuildFile; fileRef = F804C1CD1B7BF2CD00C40501 /* tls_stream.h */; };
F804C39F1B7BF2DD00C40501 /* tls_stream.h in Headers */ = {isa = PBXBuildFile; fileRef = F804C1CD1B7BF2CD00C40501 /* tls_stream.h */; };
F804C3A01B7BF2DD00C40501 /* trace.c in Sources */ = {isa = PBXBuildFile; fileRef = F804C1CE1B7BF2CD00C40501 /* trace.c */; };
F804C3A11B7BF2DD00C40501 /* trace.c in Sources */ = {isa = PBXBuildFile; fileRef = F804C1CE1B7BF2CD00C40501 /* trace.c */; };
F804C3A21B7BF2DD00C40501 /* trace.h in Headers */ = {isa = PBXBuildFile; fileRef = F804C1CF1B7BF2CD00C40501 /* trace.h */; };
F804C3A31B7BF2DD00C40501 /* trace.h in Headers */ = {isa = PBXBuildFile; fileRef = F804C1CF1B7BF2CD00C40501 /* trace.h */; };
F804C3A41B7BF2DE00C40501 /* transaction.c in Sources */ = {isa = PBXBuildFile; fileRef = F804C1D01B7BF2CD00C40501 /* transaction.c */; };
F804C3A51B7BF2DE00C40501 /* transaction.c in Sources */ = {isa = PBXBuildFile; fileRef = F804C1D01B7BF2CD00C40501 /* transaction.c */; };
F804C3A61B7BF2DE00C40501 /* transport.c in Sources */ = {isa = PBXBuildFile; fileRef = F804C1D11B7BF2CD00C40501 /* transport.c */; };
F804C3A71B7BF2DE00C40501 /* transport.c in Sources */ = {isa = PBXBuildFile; fileRef = F804C1D11B7BF2CD00C40501 /* transport.c */; };
F804C3A81B7BF2DE00C40501 /* auth.c in Sources */ = {isa = PBXBuildFile; fileRef = F804C1D31B7BF2CD00C40501 /* auth.c */; };
F804C3A91B7BF2DE00C40501 /* auth.c in Sources */ = {isa = PBXBuildFile; fileRef = F804C1D31B7BF2CD00C40501 /* auth.c */; };
F804C3AA1B7BF2DE00C40501 /* auth.h in Headers */ = {isa = PBXBuildFile; fileRef = F804C1D41B7BF2CD00C40501 /* auth.h */; };
F804C3AB1B7BF2DE00C40501 /* auth.h in Headers */ = {isa = PBXBuildFile; fileRef = F804C1D41B7BF2CD00C40501 /* auth.h */; };
F804C3AC1B7BF2DE00C40501 /* auth_negotiate.c in Sources */ = {isa = PBXBuildFile; fileRef = F804C1D51B7BF2CD00C40501 /* auth_negotiate.c */; };
F804C3AD1B7BF2DE00C40501 /* auth_negotiate.c in Sources */ = {isa = PBXBuildFile; fileRef = F804C1D51B7BF2CD00C40501 /* auth_negotiate.c */; };
F804C3AE1B7BF2DE00C40501 /* auth_negotiate.h in Headers */ = {isa = PBXBuildFile; fileRef = F804C1D61B7BF2CD00C40501 /* auth_negotiate.h */; };
F804C3AF1B7BF2DE00C40501 /* auth_negotiate.h in Headers */ = {isa = PBXBuildFile; fileRef = F804C1D61B7BF2CD00C40501 /* auth_negotiate.h */; };
F804C3B01B7BF2DF00C40501 /* cred.c in Sources */ = {isa = PBXBuildFile; fileRef = F804C1D71B7BF2CD00C40501 /* cred.c */; };
F804C3B11B7BF2DF00C40501 /* cred.c in Sources */ = {isa = PBXBuildFile; fileRef = F804C1D71B7BF2CD00C40501 /* cred.c */; };
F804C3B21B7BF2DF00C40501 /* cred.h in Headers */ = {isa = PBXBuildFile; fileRef = F804C1D81B7BF2CD00C40501 /* cred.h */; };
F804C3B31B7BF2DF00C40501 /* cred.h in Headers */ = {isa = PBXBuildFile; fileRef = F804C1D81B7BF2CD00C40501 /* cred.h */; };
F804C3B41B7BF2E000C40501 /* cred_helpers.c in Sources */ = {isa = PBXBuildFile; fileRef = F804C1D91B7BF2CD00C40501 /* cred_helpers.c */; };
F804C3B51B7BF2E000C40501 /* cred_helpers.c in Sources */ = {isa = PBXBuildFile; fileRef = F804C1D91B7BF2CD00C40501 /* cred_helpers.c */; };
F804C3B61B7BF2E000C40501 /* git.c in Sources */ = {isa = PBXBuildFile; fileRef = F804C1DA1B7BF2CD00C40501 /* git.c */; };
F804C3B71B7BF2E000C40501 /* git.c in Sources */ = {isa = PBXBuildFile; fileRef = F804C1DA1B7BF2CD00C40501 /* git.c */; };
F804C3B81B7BF2E000C40501 /* http.c in Sources */ = {isa = PBXBuildFile; fileRef = F804C1DB1B7BF2CD00C40501 /* http.c */; };
F804C3B91B7BF2E000C40501 /* http.c in Sources */ = {isa = PBXBuildFile; fileRef = F804C1DB1B7BF2CD00C40501 /* http.c */; };
F804C3BA1B7BF2E000C40501 /* local.c in Sources */ = {isa = PBXBuildFile; fileRef = F804C1DC1B7BF2CD00C40501 /* local.c */; };
F804C3BB1B7BF2E000C40501 /* local.c in Sources */ = {isa = PBXBuildFile; fileRef = F804C1DC1B7BF2CD00C40501 /* local.c */; };
F804C3BC1B7BF2E000C40501 /* smart.c in Sources */ = {isa = PBXBuildFile; fileRef = F804C1DD1B7BF2CD00C40501 /* smart.c */; };
F804C3BD1B7BF2E000C40501 /* smart.c in Sources */ = {isa = PBXBuildFile; fileRef = F804C1DD1B7BF2CD00C40501 /* smart.c */; };
F804C3BE1B7BF2E000C40501 /* smart.h in Headers */ = {isa = PBXBuildFile; fileRef = F804C1DE1B7BF2CD00C40501 /* smart.h */; };
F804C3BF1B7BF2E000C40501 /* smart.h in Headers */ = {isa = PBXBuildFile; fileRef = F804C1DE1B7BF2CD00C40501 /* smart.h */; };
F804C3C01B7BF2E100C40501 /* smart_pkt.c in Sources */ = {isa = PBXBuildFile; fileRef = F804C1DF1B7BF2CD00C40501 /* smart_pkt.c */; };
F804C3C11B7BF2E100C40501 /* smart_pkt.c in Sources */ = {isa = PBXBuildFile; fileRef = F804C1DF1B7BF2CD00C40501 /* smart_pkt.c */; };
F804C3C21B7BF2E100C40501 /* smart_protocol.c in Sources */ = {isa = PBXBuildFile; fileRef = F804C1E01B7BF2CD00C40501 /* smart_protocol.c */; };
F804C3C31B7BF2E100C40501 /* smart_protocol.c in Sources */ = {isa = PBXBuildFile; fileRef = F804C1E01B7BF2CD00C40501 /* smart_protocol.c */; };
F804C3C41B7BF2E100C40501 /* ssh.c in Sources */ = {isa = PBXBuildFile; fileRef = F804C1E11B7BF2CD00C40501 /* ssh.c */; };
F804C3C51B7BF2E100C40501 /* ssh.c in Sources */ = {isa = PBXBuildFile; fileRef = F804C1E11B7BF2CD00C40501 /* ssh.c */; };
F804C3C61B7BF2E100C40501 /* winhttp.c in Sources */ = {isa = PBXBuildFile; fileRef = F804C1E21B7BF2CD00C40501 /* winhttp.c */; };
F804C3C71B7BF2E100C40501 /* winhttp.c in Sources */ = {isa = PBXBuildFile; fileRef = F804C1E21B7BF2CD00C40501 /* winhttp.c */; };
F804C3C81B7BF2E100C40501 /* tree-cache.c in Sources */ = {isa = PBXBuildFile; fileRef = F804C1E31B7BF2CD00C40501 /* tree-cache.c */; };
F804C3C91B7BF2E100C40501 /* tree-cache.c in Sources */ = {isa = PBXBuildFile; fileRef = F804C1E31B7BF2CD00C40501 /* tree-cache.c */; };
F804C3CA1B7BF2E200C40501 /* tree-cache.h in Headers */ = {isa = PBXBuildFile; fileRef = F804C1E41B7BF2CD00C40501 /* tree-cache.h */; };
F804C3CB1B7BF2E200C40501 /* tree-cache.h in Headers */ = {isa = PBXBuildFile; fileRef = F804C1E41B7BF2CD00C40501 /* tree-cache.h */; };
F804C3CC1B7BF2E200C40501 /* tree.c in Sources */ = {isa = PBXBuildFile; fileRef = F804C1E51B7BF2CD00C40501 /* tree.c */; };
F804C3CD1B7BF2E200C40501 /* tree.c in Sources */ = {isa = PBXBuildFile; fileRef = F804C1E51B7BF2CD00C40501 /* tree.c */; };
F804C3CE1B7BF2E200C40501 /* tree.h in Headers */ = {isa = PBXBuildFile; fileRef = F804C1E61B7BF2CD00C40501 /* tree.h */; };
F804C3CF1B7BF2E200C40501 /* tree.h in Headers */ = {isa = PBXBuildFile; fileRef = F804C1E61B7BF2CD00C40501 /* tree.h */; };
F804C3D01B7BF2E300C40501 /* tsort.c in Sources */ = {isa = PBXBuildFile; fileRef = F804C1E71B7BF2CD00C40501 /* tsort.c */; };
F804C3D11B7BF2E300C40501 /* tsort.c in Sources */ = {isa = PBXBuildFile; fileRef = F804C1E71B7BF2CD00C40501 /* tsort.c */; };
F804C3D21B7BF2E300C40501 /* map.c in Sources */ = {isa = PBXBuildFile; fileRef = F804C1E91B7BF2CD00C40501 /* map.c */; };
F804C3D31B7BF2E300C40501 /* map.c in Sources */ = {isa = PBXBuildFile; fileRef = F804C1E91B7BF2CD00C40501 /* map.c */; };
F804C3D41B7BF2E300C40501 /* posix.h in Headers */ = {isa = PBXBuildFile; fileRef = F804C1EA1B7BF2CD00C40501 /* posix.h */; };
F804C3D51B7BF2E300C40501 /* posix.h in Headers */ = {isa = PBXBuildFile; fileRef = F804C1EA1B7BF2CD00C40501 /* posix.h */; };
F804C3D61B7BF2E400C40501 /* realpath.c in Sources */ = {isa = PBXBuildFile; fileRef = F804C1EB1B7BF2CD00C40501 /* realpath.c */; };
F804C3D71B7BF2E400C40501 /* realpath.c in Sources */ = {isa = PBXBuildFile; fileRef = F804C1EB1B7BF2CD00C40501 /* realpath.c */; };
F804C3D81B7BF2E400C40501 /* userdiff.h in Headers */ = {isa = PBXBuildFile; fileRef = F804C1EC1B7BF2CD00C40501 /* userdiff.h */; };
F804C3D91B7BF2E400C40501 /* userdiff.h in Headers */ = {isa = PBXBuildFile; fileRef = F804C1EC1B7BF2CD00C40501 /* userdiff.h */; };
F804C3DA1B7BF2E400C40501 /* util.c in Sources */ = {isa = PBXBuildFile; fileRef = F804C1ED1B7BF2CD00C40501 /* util.c */; };
F804C3DB1B7BF2E400C40501 /* util.c in Sources */ = {isa = PBXBuildFile; fileRef = F804C1ED1B7BF2CD00C40501 /* util.c */; };
F804C3DC1B7BF2E400C40501 /* util.h in Headers */ = {isa = PBXBuildFile; fileRef = F804C1EE1B7BF2CD00C40501 /* util.h */; };
F804C3DD1B7BF2E400C40501 /* util.h in Headers */ = {isa = PBXBuildFile; fileRef = F804C1EE1B7BF2CD00C40501 /* util.h */; };
F804C3DE1B7BF2E500C40501 /* vector.c in Sources */ = {isa = PBXBuildFile; fileRef = F804C1EF1B7BF2CD00C40501 /* vector.c */; };
F804C3DF1B7BF2E500C40501 /* vector.c in Sources */ = {isa = PBXBuildFile; fileRef = F804C1EF1B7BF2CD00C40501 /* vector.c */; };
F804C3E01B7BF2E500C40501 /* vector.h in Headers */ = {isa = PBXBuildFile; fileRef = F804C1F01B7BF2CD00C40501 /* vector.h */; };
F804C3E11B7BF2E500C40501 /* vector.h in Headers */ = {isa = PBXBuildFile; fileRef = F804C1F01B7BF2CD00C40501 /* vector.h */; };
F804C41E1B7BF2F400C40501 /* xdiff.h in Headers */ = {isa = PBXBuildFile; fileRef = F804C2111B7BF2CD00C40501 /* xdiff.h */; };
F804C41F1B7BF2F400C40501 /* xdiff.h in Headers */ = {isa = PBXBuildFile; fileRef = F804C2111B7BF2CD00C40501 /* xdiff.h */; };
F804C4201B7BF2F500C40501 /* xdiffi.c in Sources */ = {isa = PBXBuildFile; fileRef = F804C2121B7BF2CD00C40501 /* xdiffi.c */; };
F804C4211B7BF2F500C40501 /* xdiffi.c in Sources */ = {isa = PBXBuildFile; fileRef = F804C2121B7BF2CD00C40501 /* xdiffi.c */; };
F804C4221B7BF2F500C40501 /* xdiffi.h in Headers */ = {isa = PBXBuildFile; fileRef = F804C2131B7BF2CD00C40501 /* xdiffi.h */; };
F804C4231B7BF2F500C40501 /* xdiffi.h in Headers */ = {isa = PBXBuildFile; fileRef = F804C2131B7BF2CD00C40501 /* xdiffi.h */; };
F804C4241B7BF2F600C40501 /* xemit.c in Sources */ = {isa = PBXBuildFile; fileRef = F804C2141B7BF2CD00C40501 /* xemit.c */; };
F804C4251B7BF2F600C40501 /* xemit.c in Sources */ = {isa = PBXBuildFile; fileRef = F804C2141B7BF2CD00C40501 /* xemit.c */; };
F804C4261B7BF2F600C40501 /* xemit.h in Headers */ = {isa = PBXBuildFile; fileRef = F804C2151B7BF2CD00C40501 /* xemit.h */; };
F804C4271B7BF2F600C40501 /* xemit.h in Headers */ = {isa = PBXBuildFile; fileRef = F804C2151B7BF2CD00C40501 /* xemit.h */; };
F804C4281B7BF2F700C40501 /* xhistogram.c in Sources */ = {isa = PBXBuildFile; fileRef = F804C2161B7BF2CD00C40501 /* xhistogram.c */; };
F804C4291B7BF2F700C40501 /* xhistogram.c in Sources */ = {isa = PBXBuildFile; fileRef = F804C2161B7BF2CD00C40501 /* xhistogram.c */; };
F804C42A1B7BF2F700C40501 /* xinclude.h in Headers */ = {isa = PBXBuildFile; fileRef = F804C2171B7BF2CD00C40501 /* xinclude.h */; };
F804C42B1B7BF2F700C40501 /* xinclude.h in Headers */ = {isa = PBXBuildFile; fileRef = F804C2171B7BF2CD00C40501 /* xinclude.h */; };
F804C42C1B7BF2F800C40501 /* xmacros.h in Headers */ = {isa = PBXBuildFile; fileRef = F804C2181B7BF2CD00C40501 /* xmacros.h */; };
F804C42D1B7BF2F800C40501 /* xmacros.h in Headers */ = {isa = PBXBuildFile; fileRef = F804C2181B7BF2CD00C40501 /* xmacros.h */; };
F804C42E1B7BF2F900C40501 /* xmerge.c in Sources */ = {isa = PBXBuildFile; fileRef = F804C2191B7BF2CD00C40501 /* xmerge.c */; };
F804C42F1B7BF2F900C40501 /* xmerge.c in Sources */ = {isa = PBXBuildFile; fileRef = F804C2191B7BF2CD00C40501 /* xmerge.c */; };
F804C4321B7BF2FA00C40501 /* xprepare.c in Sources */ = {isa = PBXBuildFile; fileRef = F804C21B1B7BF2CD00C40501 /* xprepare.c */; };
F804C4331B7BF2FA00C40501 /* xprepare.c in Sources */ = {isa = PBXBuildFile; fileRef = F804C21B1B7BF2CD00C40501 /* xprepare.c */; };
F804C4341B7BF2FA00C40501 /* xprepare.h in Headers */ = {isa = PBXBuildFile; fileRef = F804C21C1B7BF2CD00C40501 /* xprepare.h */; };
F804C4351B7BF2FA00C40501 /* xprepare.h in Headers */ = {isa = PBXBuildFile; fileRef = F804C21C1B7BF2CD00C40501 /* xprepare.h */; };
F804C4361B7BF2FB00C40501 /* xtypes.h in Headers */ = {isa = PBXBuildFile; fileRef = F804C21D1B7BF2CD00C40501 /* xtypes.h */; };
F804C4371B7BF2FB00C40501 /* xtypes.h in Headers */ = {isa = PBXBuildFile; fileRef = F804C21D1B7BF2CD00C40501 /* xtypes.h */; };
F804C4381B7BF2FC00C40501 /* xutils.c in Sources */ = {isa = PBXBuildFile; fileRef = F804C21E1B7BF2CD00C40501 /* xutils.c */; };
F804C4391B7BF2FC00C40501 /* xutils.c in Sources */ = {isa = PBXBuildFile; fileRef = F804C21E1B7BF2CD00C40501 /* xutils.c */; };
F804C43A1B7BF2FC00C40501 /* xutils.h in Headers */ = {isa = PBXBuildFile; fileRef = F804C21F1B7BF2CD00C40501 /* xutils.h */; };
F804C43B1B7BF2FC00C40501 /* xutils.h in Headers */ = {isa = PBXBuildFile; fileRef = F804C21F1B7BF2CD00C40501 /* xutils.h */; };
F804C43C1B7BF2FD00C40501 /* zstream.c in Sources */ = {isa = PBXBuildFile; fileRef = F804C2201B7BF2CD00C40501 /* zstream.c */; };
F804C43D1B7BF2FD00C40501 /* zstream.c in Sources */ = {isa = PBXBuildFile; fileRef = F804C2201B7BF2CD00C40501 /* zstream.c */; };
F804C43E1B7BF2FD00C40501 /* zstream.h in Headers */ = {isa = PBXBuildFile; fileRef = F804C2211B7BF2CD00C40501 /* zstream.h */; };
F804C43F1B7BF2FD00C40501 /* zstream.h in Headers */ = {isa = PBXBuildFile; fileRef = F804C2211B7BF2CD00C40501 /* zstream.h */; };
F82FC7331B87CBBD000F2896 /* Security.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = F82FC7321B87CBBD000F2896 /* Security.framework */; };
F82FC7351B87CBD6000F2896 /* CoreFoundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = F82FC7341B87CBD6000F2896 /* CoreFoundation.framework */; };
F82FC7371B87CC05000F2896 /* Security.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = F82FC7361B87CC05000F2896 /* Security.framework */; };
F82FC7391B87CC0A000F2896 /* CoreFoundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = F82FC7381B87CC0A000F2896 /* CoreFoundation.framework */; };
F834882C1B7BF4D900A5B932 /* git2.h in Headers */ = {isa = PBXBuildFile; fileRef = F8D67E7E1B7BB79E00021BDF /* git2.h */; };
F834882D1B7BF4E100A5B932 /* git2.h in Headers */ = {isa = PBXBuildFile; fileRef = F8D67E7E1B7BB79E00021BDF /* git2.h */; };
F83488601B7BFD4500A5B932 /* sys in Headers */ = {isa = PBXBuildFile; fileRef = F834885C1B7BFC9800A5B932 /* sys */; settings = {ATTRIBUTES = (Public, ); }; };
F834888F1B7D547D00A5B932 /* http_parser.c in Sources */ = {isa = PBXBuildFile; fileRef = F834886B1B7D547D00A5B932 /* http_parser.c */; };
F83488901B7D547D00A5B932 /* http_parser.c in Sources */ = {isa = PBXBuildFile; fileRef = F834886B1B7D547D00A5B932 /* http_parser.c */; };
F83488911B7D547D00A5B932 /* http_parser.h in Headers */ = {isa = PBXBuildFile; fileRef = F834886C1B7D547D00A5B932 /* http_parser.h */; };
F83488921B7D547D00A5B932 /* http_parser.h in Headers */ = {isa = PBXBuildFile; fileRef = F834886C1B7D547D00A5B932 /* http_parser.h */; };
F83488D21B7D55ED00A5B932 /* libz.tbd in Frameworks */ = {isa = PBXBuildFile; fileRef = F83488D11B7D55ED00A5B932 /* libz.tbd */; };
F85B3CFA1CAE0BDA00A1A225 /* ssh.h in Headers */ = {isa = PBXBuildFile; fileRef = F85B3CF91CAE0BDA00A1A225 /* ssh.h */; };
F85B3CFD1CAE0C1900A1A225 /* idxmap.h in Headers */ = {isa = PBXBuildFile; fileRef = F85B3CFB1CAE0C1900A1A225 /* idxmap.h */; };
F85B3CFE1CAE0C1900A1A225 /* transaction.h in Headers */ = {isa = PBXBuildFile; fileRef = F85B3CFC1CAE0C1900A1A225 /* transaction.h */; };
F85B3D151CAE163900A1A225 /* sys in Headers */ = {isa = PBXBuildFile; fileRef = F834885C1B7BFC9800A5B932 /* sys */; settings = {ATTRIBUTES = (Public, ); }; };
F8B37E0C1B83611C003CF5F7 /* git2.h in Headers */ = {isa = PBXBuildFile; fileRef = F8B37E0B1B83611C003CF5F7 /* git2.h */; settings = {ATTRIBUTES = (Public, ); }; };
F8B37E0E1B836122003CF5F7 /* git2.h in Headers */ = {isa = PBXBuildFile; fileRef = F8B37E0D1B836122003CF5F7 /* git2.h */; settings = {ATTRIBUTES = (Public, ); }; };
F8D67EB81B7BB7DA00021BDF /* annotated_commit.h in Headers */ = {isa = PBXBuildFile; fileRef = F8D67E841B7BB7DA00021BDF /* annotated_commit.h */; settings = {ATTRIBUTES = (Public, ); }; };
F8D67EB91B7BB7DA00021BDF /* annotated_commit.h in Headers */ = {isa = PBXBuildFile; fileRef = F8D67E841B7BB7DA00021BDF /* annotated_commit.h */; settings = {ATTRIBUTES = (Public, ); }; };
F8D67EBA1B7BB7DA00021BDF /* attr.h in Headers */ = {isa = PBXBuildFile; fileRef = F8D67E851B7BB7DA00021BDF /* attr.h */; settings = {ATTRIBUTES = (Public, ); }; };
F8D67EBB1B7BB7DA00021BDF /* attr.h in Headers */ = {isa = PBXBuildFile; fileRef = F8D67E851B7BB7DA00021BDF /* attr.h */; settings = {ATTRIBUTES = (Public, ); }; };
F8D67EBC1B7BB7DA00021BDF /* blame.h in Headers */ = {isa = PBXBuildFile; fileRef = F8D67E861B7BB7DA00021BDF /* blame.h */; settings = {ATTRIBUTES = (Public, ); }; };
F8D67EBD1B7BB7DA00021BDF /* blame.h in Headers */ = {isa = PBXBuildFile; fileRef = F8D67E861B7BB7DA00021BDF /* blame.h */; settings = {ATTRIBUTES = (Public, ); }; };
F8D67EBE1B7BB7DA00021BDF /* blob.h in Headers */ = {isa = PBXBuildFile; fileRef = F8D67E871B7BB7DA00021BDF /* blob.h */; settings = {ATTRIBUTES = (Public, ); }; };
F8D67EBF1B7BB7DA00021BDF /* blob.h in Headers */ = {isa = PBXBuildFile; fileRef = F8D67E871B7BB7DA00021BDF /* blob.h */; settings = {ATTRIBUTES = (Public, ); }; };
F8D67EC01B7BB7DA00021BDF /* branch.h in Headers */ = {isa = PBXBuildFile; fileRef = F8D67E881B7BB7DA00021BDF /* branch.h */; settings = {ATTRIBUTES = (Public, ); }; };
F8D67EC11B7BB7DA00021BDF /* branch.h in Headers */ = {isa = PBXBuildFile; fileRef = F8D67E881B7BB7DA00021BDF /* branch.h */; settings = {ATTRIBUTES = (Public, ); }; };
F8D67EC21B7BB7DA00021BDF /* buffer.h in Headers */ = {isa = PBXBuildFile; fileRef = F8D67E891B7BB7DA00021BDF /* buffer.h */; settings = {ATTRIBUTES = (Public, ); }; };
F8D67EC31B7BB7DA00021BDF /* buffer.h in Headers */ = {isa = PBXBuildFile; fileRef = F8D67E891B7BB7DA00021BDF /* buffer.h */; settings = {ATTRIBUTES = (Public, ); }; };
F8D67EC41B7BB7DA00021BDF /* checkout.h in Headers */ = {isa = PBXBuildFile; fileRef = F8D67E8A1B7BB7DA00021BDF /* checkout.h */; settings = {ATTRIBUTES = (Public, ); }; };
F8D67EC51B7BB7DA00021BDF /* checkout.h in Headers */ = {isa = PBXBuildFile; fileRef = F8D67E8A1B7BB7DA00021BDF /* checkout.h */; settings = {ATTRIBUTES = (Public, ); }; };
F8D67EC61B7BB7DA00021BDF /* cherrypick.h in Headers */ = {isa = PBXBuildFile; fileRef = F8D67E8B1B7BB7DA00021BDF /* cherrypick.h */; settings = {ATTRIBUTES = (Public, ); }; };
F8D67EC71B7BB7DA00021BDF /* cherrypick.h in Headers */ = {isa = PBXBuildFile; fileRef = F8D67E8B1B7BB7DA00021BDF /* cherrypick.h */; settings = {ATTRIBUTES = (Public, ); }; };
F8D67EC81B7BB7DA00021BDF /* clone.h in Headers */ = {isa = PBXBuildFile; fileRef = F8D67E8C1B7BB7DA00021BDF /* clone.h */; settings = {ATTRIBUTES = (Public, ); }; };
F8D67EC91B7BB7DA00021BDF /* clone.h in Headers */ = {isa = PBXBuildFile; fileRef = F8D67E8C1B7BB7DA00021BDF /* clone.h */; settings = {ATTRIBUTES = (Public, ); }; };
F8D67ECA1B7BB7DA00021BDF /* commit.h in Headers */ = {isa = PBXBuildFile; fileRef = F8D67E8D1B7BB7DA00021BDF /* commit.h */; settings = {ATTRIBUTES = (Public, ); }; };
F8D67ECB1B7BB7DA00021BDF /* commit.h in Headers */ = {isa = PBXBuildFile; fileRef = F8D67E8D1B7BB7DA00021BDF /* commit.h */; settings = {ATTRIBUTES = (Public, ); }; };
F8D67ECC1B7BB7DA00021BDF /* common.h in Headers */ = {isa = PBXBuildFile; fileRef = F8D67E8E1B7BB7DA00021BDF /* common.h */; settings = {ATTRIBUTES = (Public, ); }; };
F8D67ECD1B7BB7DA00021BDF /* common.h in Headers */ = {isa = PBXBuildFile; fileRef = F8D67E8E1B7BB7DA00021BDF /* common.h */; settings = {ATTRIBUTES = (Public, ); }; };
F8D67ECE1B7BB7DA00021BDF /* config.h in Headers */ = {isa = PBXBuildFile; fileRef = F8D67E8F1B7BB7DA00021BDF /* config.h */; settings = {ATTRIBUTES = (Public, ); }; };
F8D67ECF1B7BB7DA00021BDF /* config.h in Headers */ = {isa = PBXBuildFile; fileRef = F8D67E8F1B7BB7DA00021BDF /* config.h */; settings = {ATTRIBUTES = (Public, ); }; };
F8D67ED01B7BB7DA00021BDF /* cred_helpers.h in Headers */ = {isa = PBXBuildFile; fileRef = F8D67E901B7BB7DA00021BDF /* cred_helpers.h */; settings = {ATTRIBUTES = (Public, ); }; };
F8D67ED11B7BB7DA00021BDF /* cred_helpers.h in Headers */ = {isa = PBXBuildFile; fileRef = F8D67E901B7BB7DA00021BDF /* cred_helpers.h */; settings = {ATTRIBUTES = (Public, ); }; };
F8D67ED21B7BB7DA00021BDF /* describe.h in Headers */ = {isa = PBXBuildFile; fileRef = F8D67E911B7BB7DA00021BDF /* describe.h */; settings = {ATTRIBUTES = (Public, ); }; };
F8D67ED31B7BB7DA00021BDF /* describe.h in Headers */ = {isa = PBXBuildFile; fileRef = F8D67E911B7BB7DA00021BDF /* describe.h */; settings = {ATTRIBUTES = (Public, ); }; };
F8D67ED41B7BB7DA00021BDF /* diff.h in Headers */ = {isa = PBXBuildFile; fileRef = F8D67E921B7BB7DA00021BDF /* diff.h */; settings = {ATTRIBUTES = (Public, ); }; };
F8D67ED51B7BB7DA00021BDF /* diff.h in Headers */ = {isa = PBXBuildFile; fileRef = F8D67E921B7BB7DA00021BDF /* diff.h */; settings = {ATTRIBUTES = (Public, ); }; };
F8D67ED61B7BB7DA00021BDF /* errors.h in Headers */ = {isa = PBXBuildFile; fileRef = F8D67E931B7BB7DA00021BDF /* errors.h */; settings = {ATTRIBUTES = (Public, ); }; };
F8D67ED71B7BB7DA00021BDF /* errors.h in Headers */ = {isa = PBXBuildFile; fileRef = F8D67E931B7BB7DA00021BDF /* errors.h */; settings = {ATTRIBUTES = (Public, ); }; };
F8D67ED81B7BB7DA00021BDF /* filter.h in Headers */ = {isa = PBXBuildFile; fileRef = F8D67E941B7BB7DA00021BDF /* filter.h */; settings = {ATTRIBUTES = (Public, ); }; };
F8D67ED91B7BB7DA00021BDF /* filter.h in Headers */ = {isa = PBXBuildFile; fileRef = F8D67E941B7BB7DA00021BDF /* filter.h */; settings = {ATTRIBUTES = (Public, ); }; };
F8D67EDA1B7BB7DA00021BDF /* global.h in Headers */ = {isa = PBXBuildFile; fileRef = F8D67E951B7BB7DA00021BDF /* global.h */; settings = {ATTRIBUTES = (Public, ); }; };
F8D67EDB1B7BB7DA00021BDF /* global.h in Headers */ = {isa = PBXBuildFile; fileRef = F8D67E951B7BB7DA00021BDF /* global.h */; settings = {ATTRIBUTES = (Public, ); }; };
F8D67EDC1B7BB7DA00021BDF /* graph.h in Headers */ = {isa = PBXBuildFile; fileRef = F8D67E961B7BB7DA00021BDF /* graph.h */; settings = {ATTRIBUTES = (Public, ); }; };
F8D67EDD1B7BB7DA00021BDF /* graph.h in Headers */ = {isa = PBXBuildFile; fileRef = F8D67E961B7BB7DA00021BDF /* graph.h */; settings = {ATTRIBUTES = (Public, ); }; };
F8D67EDE1B7BB7DA00021BDF /* ignore.h in Headers */ = {isa = PBXBuildFile; fileRef = F8D67E971B7BB7DA00021BDF /* ignore.h */; settings = {ATTRIBUTES = (Public, ); }; };
F8D67EDF1B7BB7DA00021BDF /* ignore.h in Headers */ = {isa = PBXBuildFile; fileRef = F8D67E971B7BB7DA00021BDF /* ignore.h */; settings = {ATTRIBUTES = (Public, ); }; };
F8D67EE01B7BB7DA00021BDF /* index.h in Headers */ = {isa = PBXBuildFile; fileRef = F8D67E981B7BB7DA00021BDF /* index.h */; settings = {ATTRIBUTES = (Public, ); }; };
F8D67EE11B7BB7DA00021BDF /* index.h in Headers */ = {isa = PBXBuildFile; fileRef = F8D67E981B7BB7DA00021BDF /* index.h */; settings = {ATTRIBUTES = (Public, ); }; };
F8D67EE21B7BB7DA00021BDF /* indexer.h in Headers */ = {isa = PBXBuildFile; fileRef = F8D67E991B7BB7DA00021BDF /* indexer.h */; settings = {ATTRIBUTES = (Public, ); }; };
F8D67EE31B7BB7DA00021BDF /* indexer.h in Headers */ = {isa = PBXBuildFile; fileRef = F8D67E991B7BB7DA00021BDF /* indexer.h */; settings = {ATTRIBUTES = (Public, ); }; };
F8D67EE61B7BB7DA00021BDF /* merge.h in Headers */ = {isa = PBXBuildFile; fileRef = F8D67E9B1B7BB7DA00021BDF /* merge.h */; settings = {ATTRIBUTES = (Public, ); }; };
F8D67EE71B7BB7DA00021BDF /* merge.h in Headers */ = {isa = PBXBuildFile; fileRef = F8D67E9B1B7BB7DA00021BDF /* merge.h */; settings = {ATTRIBUTES = (Public, ); }; };
F8D67EE81B7BB7DA00021BDF /* message.h in Headers */ = {isa = PBXBuildFile; fileRef = F8D67E9C1B7BB7DA00021BDF /* message.h */; settings = {ATTRIBUTES = (Public, ); }; };
F8D67EE91B7BB7DA00021BDF /* message.h in Headers */ = {isa = PBXBuildFile; fileRef = F8D67E9C1B7BB7DA00021BDF /* message.h */; settings = {ATTRIBUTES = (Public, ); }; };
F8D67EEA1B7BB7DA00021BDF /* net.h in Headers */ = {isa = PBXBuildFile; fileRef = F8D67E9D1B7BB7DA00021BDF /* net.h */; settings = {ATTRIBUTES = (Public, ); }; };
F8D67EEB1B7BB7DA00021BDF /* net.h in Headers */ = {isa = PBXBuildFile; fileRef = F8D67E9D1B7BB7DA00021BDF /* net.h */; settings = {ATTRIBUTES = (Public, ); }; };
F8D67EEC1B7BB7DA00021BDF /* notes.h in Headers */ = {isa = PBXBuildFile; fileRef = F8D67E9E1B7BB7DA00021BDF /* notes.h */; settings = {ATTRIBUTES = (Public, ); }; };
F8D67EED1B7BB7DA00021BDF /* notes.h in Headers */ = {isa = PBXBuildFile; fileRef = F8D67E9E1B7BB7DA00021BDF /* notes.h */; settings = {ATTRIBUTES = (Public, ); }; };
F8D67EEE1B7BB7DA00021BDF /* object.h in Headers */ = {isa = PBXBuildFile; fileRef = F8D67E9F1B7BB7DA00021BDF /* object.h */; settings = {ATTRIBUTES = (Public, ); }; };
F8D67EEF1B7BB7DA00021BDF /* object.h in Headers */ = {isa = PBXBuildFile; fileRef = F8D67E9F1B7BB7DA00021BDF /* object.h */; settings = {ATTRIBUTES = (Public, ); }; };
F8D67EF01B7BB7DA00021BDF /* odb_backend.h in Headers */ = {isa = PBXBuildFile; fileRef = F8D67EA01B7BB7DA00021BDF /* odb_backend.h */; settings = {ATTRIBUTES = (Public, ); }; };
F8D67EF11B7BB7DA00021BDF /* odb_backend.h in Headers */ = {isa = PBXBuildFile; fileRef = F8D67EA01B7BB7DA00021BDF /* odb_backend.h */; settings = {ATTRIBUTES = (Public, ); }; };
F8D67EF21B7BB7DA00021BDF /* odb.h in Headers */ = {isa = PBXBuildFile; fileRef = F8D67EA11B7BB7DA00021BDF /* odb.h */; settings = {ATTRIBUTES = (Public, ); }; };
F8D67EF31B7BB7DA00021BDF /* odb.h in Headers */ = {isa = PBXBuildFile; fileRef = F8D67EA11B7BB7DA00021BDF /* odb.h */; settings = {ATTRIBUTES = (Public, ); }; };
F8D67EF41B7BB7DA00021BDF /* oid.h in Headers */ = {isa = PBXBuildFile; fileRef = F8D67EA21B7BB7DA00021BDF /* oid.h */; settings = {ATTRIBUTES = (Public, ); }; };
F8D67EF51B7BB7DA00021BDF /* oid.h in Headers */ = {isa = PBXBuildFile; fileRef = F8D67EA21B7BB7DA00021BDF /* oid.h */; settings = {ATTRIBUTES = (Public, ); }; };
F8D67EF61B7BB7DA00021BDF /* oidarray.h in Headers */ = {isa = PBXBuildFile; fileRef = F8D67EA31B7BB7DA00021BDF /* oidarray.h */; settings = {ATTRIBUTES = (Public, ); }; };
F8D67EF71B7BB7DA00021BDF /* oidarray.h in Headers */ = {isa = PBXBuildFile; fileRef = F8D67EA31B7BB7DA00021BDF /* oidarray.h */; settings = {ATTRIBUTES = (Public, ); }; };
F8D67EF81B7BB7DA00021BDF /* pack.h in Headers */ = {isa = PBXBuildFile; fileRef = F8D67EA41B7BB7DA00021BDF /* pack.h */; settings = {ATTRIBUTES = (Public, ); }; };
F8D67EF91B7BB7DA00021BDF /* pack.h in Headers */ = {isa = PBXBuildFile; fileRef = F8D67EA41B7BB7DA00021BDF /* pack.h */; settings = {ATTRIBUTES = (Public, ); }; };
F8D67EFA1B7BB7DA00021BDF /* patch.h in Headers */ = {isa = PBXBuildFile; fileRef = F8D67EA51B7BB7DA00021BDF /* patch.h */; settings = {ATTRIBUTES = (Public, ); }; };
F8D67EFB1B7BB7DA00021BDF /* patch.h in Headers */ = {isa = PBXBuildFile; fileRef = F8D67EA51B7BB7DA00021BDF /* patch.h */; settings = {ATTRIBUTES = (Public, ); }; };
F8D67EFC1B7BB7DA00021BDF /* pathspec.h in Headers */ = {isa = PBXBuildFile; fileRef = F8D67EA61B7BB7DA00021BDF /* pathspec.h */; settings = {ATTRIBUTES = (Public, ); }; };
F8D67EFD1B7BB7DA00021BDF /* pathspec.h in Headers */ = {isa = PBXBuildFile; fileRef = F8D67EA61B7BB7DA00021BDF /* pathspec.h */; settings = {ATTRIBUTES = (Public, ); }; };
F8D67EFE1B7BB7DA00021BDF /* rebase.h in Headers */ = {isa = PBXBuildFile; fileRef = F8D67EA71B7BB7DA00021BDF /* rebase.h */; settings = {ATTRIBUTES = (Public, ); }; };
F8D67EFF1B7BB7DA00021BDF /* rebase.h in Headers */ = {isa = PBXBuildFile; fileRef = F8D67EA71B7BB7DA00021BDF /* rebase.h */; settings = {ATTRIBUTES = (Public, ); }; };
F8D67F001B7BB7DA00021BDF /* refdb.h in Headers */ = {isa = PBXBuildFile; fileRef = F8D67EA81B7BB7DA00021BDF /* refdb.h */; settings = {ATTRIBUTES = (Public, ); }; };
F8D67F011B7BB7DA00021BDF /* refdb.h in Headers */ = {isa = PBXBuildFile; fileRef = F8D67EA81B7BB7DA00021BDF /* refdb.h */; settings = {ATTRIBUTES = (Public, ); }; };
F8D67F021B7BB7DA00021BDF /* reflog.h in Headers */ = {isa = PBXBuildFile; fileRef = F8D67EA91B7BB7DA00021BDF /* reflog.h */; settings = {ATTRIBUTES = (Public, ); }; };
F8D67F031B7BB7DA00021BDF /* reflog.h in Headers */ = {isa = PBXBuildFile; fileRef = F8D67EA91B7BB7DA00021BDF /* reflog.h */; settings = {ATTRIBUTES = (Public, ); }; };
F8D67F041B7BB7DA00021BDF /* refs.h in Headers */ = {isa = PBXBuildFile; fileRef = F8D67EAA1B7BB7DA00021BDF /* refs.h */; settings = {ATTRIBUTES = (Public, ); }; };
F8D67F051B7BB7DA00021BDF /* refs.h in Headers */ = {isa = PBXBuildFile; fileRef = F8D67EAA1B7BB7DA00021BDF /* refs.h */; settings = {ATTRIBUTES = (Public, ); }; };
F8D67F061B7BB7DA00021BDF /* refspec.h in Headers */ = {isa = PBXBuildFile; fileRef = F8D67EAB1B7BB7DA00021BDF /* refspec.h */; settings = {ATTRIBUTES = (Public, ); }; };
F8D67F071B7BB7DA00021BDF /* refspec.h in Headers */ = {isa = PBXBuildFile; fileRef = F8D67EAB1B7BB7DA00021BDF /* refspec.h */; settings = {ATTRIBUTES = (Public, ); }; };
F8D67F081B7BB7DA00021BDF /* remote.h in Headers */ = {isa = PBXBuildFile; fileRef = F8D67EAC1B7BB7DA00021BDF /* remote.h */; settings = {ATTRIBUTES = (Public, ); }; };
F8D67F091B7BB7DA00021BDF /* remote.h in Headers */ = {isa = PBXBuildFile; fileRef = F8D67EAC1B7BB7DA00021BDF /* remote.h */; settings = {ATTRIBUTES = (Public, ); }; };
F8D67F0A1B7BB7DA00021BDF /* repository.h in Headers */ = {isa = PBXBuildFile; fileRef = F8D67EAD1B7BB7DA00021BDF /* repository.h */; settings = {ATTRIBUTES = (Public, ); }; };
F8D67F0B1B7BB7DA00021BDF /* repository.h in Headers */ = {isa = PBXBuildFile; fileRef = F8D67EAD1B7BB7DA00021BDF /* repository.h */; settings = {ATTRIBUTES = (Public, ); }; };
F8D67F0C1B7BB7DA00021BDF /* reset.h in Headers */ = {isa = PBXBuildFile; fileRef = F8D67EAE1B7BB7DA00021BDF /* reset.h */; settings = {ATTRIBUTES = (Public, ); }; };
F8D67F0D1B7BB7DA00021BDF /* reset.h in Headers */ = {isa = PBXBuildFile; fileRef = F8D67EAE1B7BB7DA00021BDF /* reset.h */; settings = {ATTRIBUTES = (Public, ); }; };
F8D67F0E1B7BB7DA00021BDF /* revert.h in Headers */ = {isa = PBXBuildFile; fileRef = F8D67EAF1B7BB7DA00021BDF /* revert.h */; settings = {ATTRIBUTES = (Public, ); }; };
F8D67F0F1B7BB7DA00021BDF /* revert.h in Headers */ = {isa = PBXBuildFile; fileRef = F8D67EAF1B7BB7DA00021BDF /* revert.h */; settings = {ATTRIBUTES = (Public, ); }; };
F8D67F101B7BB7DA00021BDF /* revparse.h in Headers */ = {isa = PBXBuildFile; fileRef = F8D67EB01B7BB7DA00021BDF /* revparse.h */; settings = {ATTRIBUTES = (Public, ); }; };
F8D67F111B7BB7DA00021BDF /* revparse.h in Headers */ = {isa = PBXBuildFile; fileRef = F8D67EB01B7BB7DA00021BDF /* revparse.h */; settings = {ATTRIBUTES = (Public, ); }; };
F8D67F121B7BB7DA00021BDF /* revwalk.h in Headers */ = {isa = PBXBuildFile; fileRef = F8D67EB11B7BB7DA00021BDF /* revwalk.h */; settings = {ATTRIBUTES = (Public, ); }; };
F8D67F131B7BB7DA00021BDF /* revwalk.h in Headers */ = {isa = PBXBuildFile; fileRef = F8D67EB11B7BB7DA00021BDF /* revwalk.h */; settings = {ATTRIBUTES = (Public, ); }; };
F8D67F141B7BB7DA00021BDF /* signature.h in Headers */ = {isa = PBXBuildFile; fileRef = F8D67EB21B7BB7DA00021BDF /* signature.h */; settings = {ATTRIBUTES = (Public, ); }; };
F8D67F151B7BB7DA00021BDF /* signature.h in Headers */ = {isa = PBXBuildFile; fileRef = F8D67EB21B7BB7DA00021BDF /* signature.h */; settings = {ATTRIBUTES = (Public, ); }; };
F8D67F161B7BB7DA00021BDF /* stash.h in Headers */ = {isa = PBXBuildFile; fileRef = F8D67EB31B7BB7DA00021BDF /* stash.h */; settings = {ATTRIBUTES = (Public, ); }; };
F8D67F171B7BB7DA00021BDF /* stash.h in Headers */ = {isa = PBXBuildFile; fileRef = F8D67EB31B7BB7DA00021BDF /* stash.h */; settings = {ATTRIBUTES = (Public, ); }; };
F8D67F181B7BB7DA00021BDF /* status.h in Headers */ = {isa = PBXBuildFile; fileRef = F8D67EB41B7BB7DA00021BDF /* status.h */; settings = {ATTRIBUTES = (Public, ); }; };
F8D67F191B7BB7DA00021BDF /* status.h in Headers */ = {isa = PBXBuildFile; fileRef = F8D67EB41B7BB7DA00021BDF /* status.h */; settings = {ATTRIBUTES = (Public, ); }; };
F8D67F1C1B7BB7DA00021BDF /* strarray.h in Headers */ = {isa = PBXBuildFile; fileRef = F8D67EB61B7BB7DA00021BDF /* strarray.h */; settings = {ATTRIBUTES = (Public, ); }; };
F8D67F1D1B7BB7DA00021BDF /* strarray.h in Headers */ = {isa = PBXBuildFile; fileRef = F8D67EB61B7BB7DA00021BDF /* strarray.h */; settings = {ATTRIBUTES = (Public, ); }; };
F8D67F1E1B7BB7DA00021BDF /* submodule.h in Headers */ = {isa = PBXBuildFile; fileRef = F8D67EB71B7BB7DA00021BDF /* submodule.h */; settings = {ATTRIBUTES = (Public, ); }; };
F8D67F1F1B7BB7DA00021BDF /* submodule.h in Headers */ = {isa = PBXBuildFile; fileRef = F8D67EB71B7BB7DA00021BDF /* submodule.h */; settings = {ATTRIBUTES = (Public, ); }; };
F8D67F271B7BB7E800021BDF /* tag.h in Headers */ = {isa = PBXBuildFile; fileRef = F8D67F201B7BB7E800021BDF /* tag.h */; settings = {ATTRIBUTES = (Public, ); }; };
F8D67F281B7BB7E800021BDF /* tag.h in Headers */ = {isa = PBXBuildFile; fileRef = F8D67F201B7BB7E800021BDF /* tag.h */; settings = {ATTRIBUTES = (Public, ); }; };
F8D67F291B7BB7E800021BDF /* trace.h in Headers */ = {isa = PBXBuildFile; fileRef = F8D67F211B7BB7E800021BDF /* trace.h */; settings = {ATTRIBUTES = (Public, ); }; };
F8D67F2A1B7BB7E800021BDF /* trace.h in Headers */ = {isa = PBXBuildFile; fileRef = F8D67F211B7BB7E800021BDF /* trace.h */; settings = {ATTRIBUTES = (Public, ); }; };
F8D67F2B1B7BB7E800021BDF /* transaction.h in Headers */ = {isa = PBXBuildFile; fileRef = F8D67F221B7BB7E800021BDF /* transaction.h */; settings = {ATTRIBUTES = (Public, ); }; };
F8D67F2C1B7BB7E800021BDF /* transaction.h in Headers */ = {isa = PBXBuildFile; fileRef = F8D67F221B7BB7E800021BDF /* transaction.h */; settings = {ATTRIBUTES = (Public, ); }; };
F8D67F2D1B7BB7E800021BDF /* transport.h in Headers */ = {isa = PBXBuildFile; fileRef = F8D67F231B7BB7E800021BDF /* transport.h */; settings = {ATTRIBUTES = (Public, ); }; };
F8D67F2E1B7BB7E800021BDF /* transport.h in Headers */ = {isa = PBXBuildFile; fileRef = F8D67F231B7BB7E800021BDF /* transport.h */; settings = {ATTRIBUTES = (Public, ); }; };
F8D67F2F1B7BB7E800021BDF /* tree.h in Headers */ = {isa = PBXBuildFile; fileRef = F8D67F241B7BB7E800021BDF /* tree.h */; settings = {ATTRIBUTES = (Public, ); }; };
F8D67F301B7BB7E800021BDF /* tree.h in Headers */ = {isa = PBXBuildFile; fileRef = F8D67F241B7BB7E800021BDF /* tree.h */; settings = {ATTRIBUTES = (Public, ); }; };
F8D67F311B7BB7E800021BDF /* types.h in Headers */ = {isa = PBXBuildFile; fileRef = F8D67F251B7BB7E800021BDF /* types.h */; settings = {ATTRIBUTES = (Public, ); }; };
F8D67F321B7BB7E800021BDF /* types.h in Headers */ = {isa = PBXBuildFile; fileRef = F8D67F251B7BB7E800021BDF /* types.h */; settings = {ATTRIBUTES = (Public, ); }; };
F8D67F331B7BB7E800021BDF /* version.h in Headers */ = {isa = PBXBuildFile; fileRef = F8D67F261B7BB7E800021BDF /* version.h */; settings = {ATTRIBUTES = (Public, ); }; };
F8D67F341B7BB7E800021BDF /* version.h in Headers */ = {isa = PBXBuildFile; fileRef = F8D67F261B7BB7E800021BDF /* version.h */; settings = {ATTRIBUTES = (Public, ); }; };
F8F708CF1B7D579000F227F2 /* indexer.c in Sources */ = {isa = PBXBuildFile; fileRef = F8F708CE1B7D579000F227F2 /* indexer.c */; };
F8F708D11B7DB5CB00F227F2 /* xpatience.c in Sources */ = {isa = PBXBuildFile; fileRef = F8F708D01B7DB5CB00F227F2 /* xpatience.c */; };
F8F708D21B7DB96700F227F2 /* indexer.c in Sources */ = {isa = PBXBuildFile; fileRef = F8F708CE1B7D579000F227F2 /* indexer.c */; };
F8F708D31B7DB96F00F227F2 /* xpatience.c in Sources */ = {isa = PBXBuildFile; fileRef = F8F708D01B7DB5CB00F227F2 /* xpatience.c */; };
F8F708D51B7DB98F00F227F2 /* libz.tbd in Frameworks */ = {isa = PBXBuildFile; fileRef = F8F708D41B7DB98F00F227F2 /* libz.tbd */; };
F8FF92D51CBC049400FC7CAE /* libssh2-ios.a in Frameworks */ = {isa = PBXBuildFile; fileRef = F8FF92D41CBC049400FC7CAE /* libssh2-ios.a */; };
F8FF92D91CBC04AE00FC7CAE /* libssl.a in Frameworks */ = {isa = PBXBuildFile; fileRef = F8FF92D71CBC04AE00FC7CAE /* libssl.a */; };
F8FF92DA1CBC04DE00FC7CAE /* libcrypto.a in Frameworks */ = {isa = PBXBuildFile; fileRef = F8FF92D61CBC04AE00FC7CAE /* libcrypto.a */; };
F8FF92DC1CBC18F000FC7CAE /* libssh2.a in Frameworks */ = {isa = PBXBuildFile; fileRef = F8FF92DB1CBC18F000FC7CAE /* libssh2.a */; };
F8FF92DE1CBC199E00FC7CAE /* libiconv.tbd in Frameworks */ = {isa = PBXBuildFile; fileRef = F8FF92DD1CBC199E00FC7CAE /* libiconv.tbd */; };
F8FF92E01CBC19A700FC7CAE /* libiconv.tbd in Frameworks */ = {isa = PBXBuildFile; fileRef = F8FF92DF1CBC19A700FC7CAE /* libiconv.tbd */; };
/* End PBXBuildFile section */
/* Begin PBXContainerItemProxy section */
F81CC0171B9335C500FA6C0F /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = F8D67E2B1B7BA85D00021BDF /* Project object */;
proxyType = 1;
remoteGlobalIDString = F81CC0121B93355800FA6C0F;
remoteInfo = "libssh2-iOS";
};
F81CC01E1B933B3900FA6C0F /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = F8D67E2B1B7BA85D00021BDF /* Project object */;
proxyType = 1;
remoteGlobalIDString = F81CC0191B933A5100FA6C0F;
remoteInfo = "OpenSSL-iOS";
};
/* End PBXContainerItemProxy section */
/* Begin PBXFileReference section */
F804C10E1B7BF2CC00C40501 /* annotated_commit.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = annotated_commit.c; sourceTree = "<group>"; };
F804C10F1B7BF2CC00C40501 /* annotated_commit.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = annotated_commit.h; sourceTree = "<group>"; };
F804C1101B7BF2CC00C40501 /* array.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = array.h; sourceTree = "<group>"; };
F804C1111B7BF2CC00C40501 /* attr.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = attr.c; sourceTree = "<group>"; };
F804C1121B7BF2CC00C40501 /* attr.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = attr.h; sourceTree = "<group>"; };
F804C1131B7BF2CC00C40501 /* attr_file.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = attr_file.c; sourceTree = "<group>"; };
F804C1141B7BF2CC00C40501 /* attr_file.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = attr_file.h; sourceTree = "<group>"; };
F804C1151B7BF2CC00C40501 /* attrcache.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = attrcache.c; sourceTree = "<group>"; };
F804C1161B7BF2CC00C40501 /* attrcache.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = attrcache.h; sourceTree = "<group>"; };
F804C1171B7BF2CC00C40501 /* bitvec.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = bitvec.h; sourceTree = "<group>"; };
F804C1181B7BF2CC00C40501 /* blame.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = blame.c; sourceTree = "<group>"; };
F804C1191B7BF2CC00C40501 /* blame.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = blame.h; sourceTree = "<group>"; };
F804C11A1B7BF2CC00C40501 /* blame_git.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = blame_git.c; sourceTree = "<group>"; };
F804C11B1B7BF2CC00C40501 /* blame_git.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = blame_git.h; sourceTree = "<group>"; };
F804C11C1B7BF2CC00C40501 /* blob.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = blob.c; sourceTree = "<group>"; };
F804C11D1B7BF2CC00C40501 /* blob.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = blob.h; sourceTree = "<group>"; };
F804C11E1B7BF2CC00C40501 /* branch.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = branch.c; sourceTree = "<group>"; };
F804C11F1B7BF2CC00C40501 /* branch.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = branch.h; sourceTree = "<group>"; };
F804C1201B7BF2CC00C40501 /* buf_text.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = buf_text.c; sourceTree = "<group>"; };
F804C1211B7BF2CC00C40501 /* buf_text.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = buf_text.h; sourceTree = "<group>"; };
F804C1221B7BF2CC00C40501 /* buffer.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = buffer.c; sourceTree = "<group>"; };
F804C1231B7BF2CC00C40501 /* buffer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = buffer.h; sourceTree = "<group>"; };
F804C1241B7BF2CC00C40501 /* cache.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = cache.c; sourceTree = "<group>"; };
F804C1251B7BF2CC00C40501 /* cache.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = cache.h; sourceTree = "<group>"; };
F804C1261B7BF2CC00C40501 /* cc-compat.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "cc-compat.h"; sourceTree = "<group>"; };
F804C1271B7BF2CC00C40501 /* checkout.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = checkout.c; sourceTree = "<group>"; };
F804C1281B7BF2CC00C40501 /* checkout.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = checkout.h; sourceTree = "<group>"; };
F804C1291B7BF2CC00C40501 /* cherrypick.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = cherrypick.c; sourceTree = "<group>"; };
F804C12A1B7BF2CC00C40501 /* clone.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = clone.c; sourceTree = "<group>"; };
F804C12B1B7BF2CC00C40501 /* clone.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = clone.h; sourceTree = "<group>"; };
F804C12C1B7BF2CC00C40501 /* commit.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = commit.c; sourceTree = "<group>"; };
F804C12D1B7BF2CC00C40501 /* commit.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = commit.h; sourceTree = "<group>"; };
F804C12E1B7BF2CC00C40501 /* commit_list.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = commit_list.c; sourceTree = "<group>"; };
F804C12F1B7BF2CC00C40501 /* commit_list.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = commit_list.h; sourceTree = "<group>"; };
F804C1301B7BF2CC00C40501 /* common.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = common.h; sourceTree = "<group>"; };
F804C1311B7BF2CC00C40501 /* config.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = config.c; sourceTree = "<group>"; };
F804C1321B7BF2CC00C40501 /* config.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = config.h; sourceTree = "<group>"; };
F804C1331B7BF2CC00C40501 /* config_cache.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = config_cache.c; sourceTree = "<group>"; };
F804C1341B7BF2CC00C40501 /* config_file.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = config_file.c; sourceTree = "<group>"; };
F804C1351B7BF2CC00C40501 /* config_file.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = config_file.h; sourceTree = "<group>"; };
F804C1361B7BF2CC00C40501 /* crlf.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = crlf.c; sourceTree = "<group>"; };
F804C1371B7BF2CC00C40501 /* curl_stream.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = curl_stream.c; sourceTree = "<group>"; };
F804C1381B7BF2CC00C40501 /* curl_stream.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = curl_stream.h; sourceTree = "<group>"; };
F804C1391B7BF2CC00C40501 /* date.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = date.c; sourceTree = "<group>"; };
F804C13A1B7BF2CC00C40501 /* delta-apply.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = "delta-apply.c"; sourceTree = "<group>"; };
F804C13B1B7BF2CC00C40501 /* delta-apply.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "delta-apply.h"; sourceTree = "<group>"; };
F804C13C1B7BF2CC00C40501 /* delta.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = delta.c; sourceTree = "<group>"; };
F804C13D1B7BF2CC00C40501 /* delta.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = delta.h; sourceTree = "<group>"; };
F804C13E1B7BF2CC00C40501 /* describe.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = describe.c; sourceTree = "<group>"; };
F804C13F1B7BF2CC00C40501 /* diff.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = diff.c; sourceTree = "<group>"; };
F804C1401B7BF2CC00C40501 /* diff.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = diff.h; sourceTree = "<group>"; };
F804C1411B7BF2CC00C40501 /* diff_driver.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = diff_driver.c; sourceTree = "<group>"; };
F804C1421B7BF2CC00C40501 /* diff_driver.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = diff_driver.h; sourceTree = "<group>"; };
F804C1431B7BF2CC00C40501 /* diff_file.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = diff_file.c; sourceTree = "<group>"; };
F804C1441B7BF2CC00C40501 /* diff_file.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = diff_file.h; sourceTree = "<group>"; };
F804C1451B7BF2CC00C40501 /* diff_patch.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = diff_patch.c; sourceTree = "<group>"; };
F804C1461B7BF2CC00C40501 /* diff_patch.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = diff_patch.h; sourceTree = "<group>"; };
F804C1471B7BF2CC00C40501 /* diff_print.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = diff_print.c; sourceTree = "<group>"; };
F804C1481B7BF2CC00C40501 /* diff_stats.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = diff_stats.c; sourceTree = "<group>"; };
F804C1491B7BF2CC00C40501 /* diff_tform.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = diff_tform.c; sourceTree = "<group>"; };
F804C14A1B7BF2CC00C40501 /* diff_xdiff.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = diff_xdiff.c; sourceTree = "<group>"; };
F804C14B1B7BF2CC00C40501 /* diff_xdiff.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = diff_xdiff.h; sourceTree = "<group>"; };
F804C14C1B7BF2CC00C40501 /* errors.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = errors.c; sourceTree = "<group>"; };
F804C14D1B7BF2CC00C40501 /* fetch.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = fetch.c; sourceTree = "<group>"; };
F804C14E1B7BF2CC00C40501 /* fetch.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = fetch.h; sourceTree = "<group>"; };
F804C14F1B7BF2CC00C40501 /* fetchhead.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = fetchhead.c; sourceTree = "<group>"; };
F804C1501B7BF2CC00C40501 /* fetchhead.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = fetchhead.h; sourceTree = "<group>"; };
F804C1511B7BF2CC00C40501 /* filebuf.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = filebuf.c; sourceTree = "<group>"; };
F804C1521B7BF2CC00C40501 /* filebuf.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = filebuf.h; sourceTree = "<group>"; };
F804C1531B7BF2CC00C40501 /* fileops.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = fileops.c; sourceTree = "<group>"; };
F804C1541B7BF2CC00C40501 /* fileops.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = fileops.h; sourceTree = "<group>"; };
F804C1551B7BF2CC00C40501 /* filter.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = filter.c; sourceTree = "<group>"; };
F804C1561B7BF2CC00C40501 /* filter.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = filter.h; sourceTree = "<group>"; };
F804C1571B7BF2CC00C40501 /* fnmatch.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = fnmatch.c; sourceTree = "<group>"; };
F804C1581B7BF2CC00C40501 /* fnmatch.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = fnmatch.h; sourceTree = "<group>"; };
F804C1591B7BF2CC00C40501 /* global.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = global.c; sourceTree = "<group>"; };
F804C15A1B7BF2CC00C40501 /* global.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = global.h; sourceTree = "<group>"; };
F804C15B1B7BF2CC00C40501 /* graph.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = graph.c; sourceTree = "<group>"; };
F804C15D1B7BF2CC00C40501 /* hash_common_crypto.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = hash_common_crypto.h; sourceTree = "<group>"; };
F804C15E1B7BF2CC00C40501 /* hash_generic.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = hash_generic.c; sourceTree = "<group>"; };
F804C15F1B7BF2CC00C40501 /* hash_generic.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = hash_generic.h; sourceTree = "<group>"; };
F804C1601B7BF2CC00C40501 /* hash_openssl.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = hash_openssl.h; sourceTree = "<group>"; };
F804C1631B7BF2CC00C40501 /* hash.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = hash.c; sourceTree = "<group>"; };
F804C1641B7BF2CC00C40501 /* hash.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = hash.h; sourceTree = "<group>"; };
F804C1651B7BF2CC00C40501 /* hashsig.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = hashsig.c; sourceTree = "<group>"; };
F804C1661B7BF2CC00C40501 /* ident.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = ident.c; sourceTree = "<group>"; };
F804C1671B7BF2CC00C40501 /* ignore.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = ignore.c; sourceTree = "<group>"; };
F804C1681B7BF2CC00C40501 /* ignore.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ignore.h; sourceTree = "<group>"; };
F804C1691B7BF2CC00C40501 /* index.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = index.c; sourceTree = "<group>"; };
F804C16A1B7BF2CC00C40501 /* index.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = index.h; sourceTree = "<group>"; };
F804C16C1B7BF2CC00C40501 /* integer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = integer.h; sourceTree = "<group>"; };
F804C16D1B7BF2CC00C40501 /* iterator.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = iterator.c; sourceTree = "<group>"; };
F804C16E1B7BF2CC00C40501 /* iterator.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = iterator.h; sourceTree = "<group>"; };
F804C16F1B7BF2CC00C40501 /* khash.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = khash.h; sourceTree = "<group>"; };
F804C1701B7BF2CC00C40501 /* map.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = map.h; sourceTree = "<group>"; };
F804C1711B7BF2CC00C40501 /* merge.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = merge.c; sourceTree = "<group>"; };
F804C1721B7BF2CD00C40501 /* merge.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = merge.h; sourceTree = "<group>"; };
F804C1731B7BF2CD00C40501 /* merge_file.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = merge_file.c; sourceTree = "<group>"; };
F804C1751B7BF2CD00C40501 /* message.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = message.c; sourceTree = "<group>"; };
F804C1761B7BF2CD00C40501 /* message.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = message.h; sourceTree = "<group>"; };
F804C1771B7BF2CD00C40501 /* mwindow.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = mwindow.c; sourceTree = "<group>"; };
F804C1781B7BF2CD00C40501 /* mwindow.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = mwindow.h; sourceTree = "<group>"; };
F804C1791B7BF2CD00C40501 /* netops.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = netops.c; sourceTree = "<group>"; };
F804C17A1B7BF2CD00C40501 /* netops.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = netops.h; sourceTree = "<group>"; };
F804C17B1B7BF2CD00C40501 /* notes.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = notes.c; sourceTree = "<group>"; };
F804C17C1B7BF2CD00C40501 /* notes.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = notes.h; sourceTree = "<group>"; };
F804C17D1B7BF2CD00C40501 /* object.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = object.c; sourceTree = "<group>"; };
F804C17E1B7BF2CD00C40501 /* object.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = object.h; sourceTree = "<group>"; };
F804C17F1B7BF2CD00C40501 /* object_api.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = object_api.c; sourceTree = "<group>"; };
F804C1801B7BF2CD00C40501 /* odb.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = odb.c; sourceTree = "<group>"; };
F804C1811B7BF2CD00C40501 /* odb.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = odb.h; sourceTree = "<group>"; };
F804C1821B7BF2CD00C40501 /* odb_loose.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = odb_loose.c; sourceTree = "<group>"; };
F804C1831B7BF2CD00C40501 /* odb_mempack.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = odb_mempack.c; sourceTree = "<group>"; };
F804C1841B7BF2CD00C40501 /* odb_pack.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = odb_pack.c; sourceTree = "<group>"; };
F804C1851B7BF2CD00C40501 /* offmap.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = offmap.h; sourceTree = "<group>"; };
F804C1861B7BF2CD00C40501 /* oid.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = oid.c; sourceTree = "<group>"; };
F804C1871B7BF2CD00C40501 /* oid.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = oid.h; sourceTree = "<group>"; };
F804C1881B7BF2CD00C40501 /* oidarray.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = oidarray.c; sourceTree = "<group>"; };
F804C1891B7BF2CD00C40501 /* oidarray.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = oidarray.h; sourceTree = "<group>"; };
F804C18A1B7BF2CD00C40501 /* oidmap.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = oidmap.h; sourceTree = "<group>"; };
F804C18B1B7BF2CD00C40501 /* openssl_stream.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = openssl_stream.c; sourceTree = "<group>"; };
F804C18C1B7BF2CD00C40501 /* openssl_stream.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = openssl_stream.h; sourceTree = "<group>"; };
F804C18D1B7BF2CD00C40501 /* pack-objects.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = "pack-objects.c"; sourceTree = "<group>"; };
F804C18E1B7BF2CD00C40501 /* pack-objects.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "pack-objects.h"; sourceTree = "<group>"; };
F804C18F1B7BF2CD00C40501 /* pack.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = pack.c; sourceTree = "<group>"; };
F804C1901B7BF2CD00C40501 /* pack.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = pack.h; sourceTree = "<group>"; };
F804C1911B7BF2CD00C40501 /* path.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = path.c; sourceTree = "<group>"; };
F804C1921B7BF2CD00C40501 /* path.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = path.h; sourceTree = "<group>"; };
F804C1931B7BF2CD00C40501 /* pathspec.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = pathspec.c; sourceTree = "<group>"; };
F804C1941B7BF2CD00C40501 /* pathspec.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = pathspec.h; sourceTree = "<group>"; };
F804C1951B7BF2CD00C40501 /* pool.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = pool.c; sourceTree = "<group>"; };
F804C1961B7BF2CD00C40501 /* pool.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = pool.h; sourceTree = "<group>"; };
F804C1971B7BF2CD00C40501 /* posix.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = posix.c; sourceTree = "<group>"; };
F804C1981B7BF2CD00C40501 /* posix.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = posix.h; sourceTree = "<group>"; };
F804C1991B7BF2CD00C40501 /* pqueue.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = pqueue.c; sourceTree = "<group>"; };
F804C19A1B7BF2CD00C40501 /* pqueue.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = pqueue.h; sourceTree = "<group>"; };
F804C19B1B7BF2CD00C40501 /* push.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = push.c; sourceTree = "<group>"; };
F804C19C1B7BF2CD00C40501 /* push.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = push.h; sourceTree = "<group>"; };
F804C19D1B7BF2CD00C40501 /* rebase.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = rebase.c; sourceTree = "<group>"; };
F804C19E1B7BF2CD00C40501 /* refdb.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = refdb.c; sourceTree = "<group>"; };
F804C19F1B7BF2CD00C40501 /* refdb.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = refdb.h; sourceTree = "<group>"; };
F804C1A01B7BF2CD00C40501 /* refdb_fs.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = refdb_fs.c; sourceTree = "<group>"; };
F804C1A11B7BF2CD00C40501 /* refdb_fs.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = refdb_fs.h; sourceTree = "<group>"; };
F804C1A21B7BF2CD00C40501 /* reflog.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = reflog.c; sourceTree = "<group>"; };
F804C1A31B7BF2CD00C40501 /* reflog.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = reflog.h; sourceTree = "<group>"; };
F804C1A41B7BF2CD00C40501 /* refs.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = refs.c; sourceTree = "<group>"; };
F804C1A51B7BF2CD00C40501 /* refs.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = refs.h; sourceTree = "<group>"; };
F804C1A61B7BF2CD00C40501 /* refspec.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = refspec.c; sourceTree = "<group>"; };
F804C1A71B7BF2CD00C40501 /* refspec.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = refspec.h; sourceTree = "<group>"; };
F804C1A81B7BF2CD00C40501 /* remote.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = remote.c; sourceTree = "<group>"; };
F804C1A91B7BF2CD00C40501 /* remote.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = remote.h; sourceTree = "<group>"; };
F804C1AA1B7BF2CD00C40501 /* repo_template.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = repo_template.h; sourceTree = "<group>"; };
F804C1AB1B7BF2CD00C40501 /* repository.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = repository.c; sourceTree = "<group>"; };
F804C1AC1B7BF2CD00C40501 /* repository.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = repository.h; sourceTree = "<group>"; };
F804C1AD1B7BF2CD00C40501 /* reset.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = reset.c; sourceTree = "<group>"; };
F804C1AE1B7BF2CD00C40501 /* revert.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = revert.c; sourceTree = "<group>"; };
F804C1AF1B7BF2CD00C40501 /* revparse.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = revparse.c; sourceTree = "<group>"; };
F804C1B01B7BF2CD00C40501 /* revwalk.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = revwalk.c; sourceTree = "<group>"; };
F804C1B11B7BF2CD00C40501 /* revwalk.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = revwalk.h; sourceTree = "<group>"; };
F804C1B21B7BF2CD00C40501 /* settings.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = settings.c; sourceTree = "<group>"; };
F804C1B31B7BF2CD00C40501 /* sha1_lookup.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = sha1_lookup.c; sourceTree = "<group>"; };
F804C1B41B7BF2CD00C40501 /* sha1_lookup.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = sha1_lookup.h; sourceTree = "<group>"; };
F804C1B51B7BF2CD00C40501 /* signature.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = signature.c; sourceTree = "<group>"; };
F804C1B61B7BF2CD00C40501 /* signature.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = signature.h; sourceTree = "<group>"; };
F804C1B71B7BF2CD00C40501 /* socket_stream.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = socket_stream.c; sourceTree = "<group>"; };
F804C1B81B7BF2CD00C40501 /* socket_stream.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = socket_stream.h; sourceTree = "<group>"; };
F804C1B91B7BF2CD00C40501 /* sortedcache.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = sortedcache.c; sourceTree = "<group>"; };
F804C1BA1B7BF2CD00C40501 /* sortedcache.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = sortedcache.h; sourceTree = "<group>"; };
F804C1BB1B7BF2CD00C40501 /* stash.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = stash.c; sourceTree = "<group>"; };
F804C1BC1B7BF2CD00C40501 /* status.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = status.c; sourceTree = "<group>"; };
F804C1BD1B7BF2CD00C40501 /* status.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = status.h; sourceTree = "<group>"; };
F804C1BE1B7BF2CD00C40501 /* stransport_stream.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = stransport_stream.c; sourceTree = "<group>"; };
F804C1BF1B7BF2CD00C40501 /* stransport_stream.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = stransport_stream.h; sourceTree = "<group>"; };
F804C1C01B7BF2CD00C40501 /* stream.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = stream.h; sourceTree = "<group>"; };
F804C1C11B7BF2CD00C40501 /* strmap.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = strmap.c; sourceTree = "<group>"; };
F804C1C21B7BF2CD00C40501 /* strmap.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = strmap.h; sourceTree = "<group>"; };
F804C1C31B7BF2CD00C40501 /* strnlen.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = strnlen.h; sourceTree = "<group>"; };
F804C1C41B7BF2CD00C40501 /* submodule.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = submodule.c; sourceTree = "<group>"; };
F804C1C51B7BF2CD00C40501 /* submodule.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = submodule.h; sourceTree = "<group>"; };
F804C1C61B7BF2CD00C40501 /* sysdir.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = sysdir.c; sourceTree = "<group>"; };
F804C1C71B7BF2CD00C40501 /* sysdir.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = sysdir.h; sourceTree = "<group>"; };
F804C1C81B7BF2CD00C40501 /* tag.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tag.c; sourceTree = "<group>"; };
F804C1C91B7BF2CD00C40501 /* tag.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tag.h; sourceTree = "<group>"; };
F804C1CA1B7BF2CD00C40501 /* thread-utils.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = "thread-utils.c"; sourceTree = "<group>"; };
F804C1CB1B7BF2CD00C40501 /* thread-utils.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "thread-utils.h"; sourceTree = "<group>"; };
F804C1CC1B7BF2CD00C40501 /* tls_stream.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tls_stream.c; sourceTree = "<group>"; };
F804C1CD1B7BF2CD00C40501 /* tls_stream.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tls_stream.h; sourceTree = "<group>"; };
F804C1CE1B7BF2CD00C40501 /* trace.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = trace.c; sourceTree = "<group>"; };
F804C1CF1B7BF2CD00C40501 /* trace.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = trace.h; sourceTree = "<group>"; };
F804C1D01B7BF2CD00C40501 /* transaction.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = transaction.c; sourceTree = "<group>"; };
F804C1D11B7BF2CD00C40501 /* transport.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = transport.c; sourceTree = "<group>"; };
F804C1D31B7BF2CD00C40501 /* auth.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = auth.c; sourceTree = "<group>"; };
F804C1D41B7BF2CD00C40501 /* auth.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = auth.h; sourceTree = "<group>"; };
F804C1D51B7BF2CD00C40501 /* auth_negotiate.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = auth_negotiate.c; sourceTree = "<group>"; };
F804C1D61B7BF2CD00C40501 /* auth_negotiate.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = auth_negotiate.h; sourceTree = "<group>"; };
F804C1D71B7BF2CD00C40501 /* cred.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = cred.c; sourceTree = "<group>"; };
F804C1D81B7BF2CD00C40501 /* cred.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = cred.h; sourceTree = "<group>"; };
F804C1D91B7BF2CD00C40501 /* cred_helpers.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = cred_helpers.c; sourceTree = "<group>"; };
F804C1DA1B7BF2CD00C40501 /* git.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = git.c; sourceTree = "<group>"; };
F804C1DB1B7BF2CD00C40501 /* http.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = http.c; sourceTree = "<group>"; };
F804C1DC1B7BF2CD00C40501 /* local.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = local.c; sourceTree = "<group>"; };
F804C1DD1B7BF2CD00C40501 /* smart.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = smart.c; sourceTree = "<group>"; };
F804C1DE1B7BF2CD00C40501 /* smart.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = smart.h; sourceTree = "<group>"; };
F804C1DF1B7BF2CD00C40501 /* smart_pkt.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = smart_pkt.c; sourceTree = "<group>"; };
F804C1E01B7BF2CD00C40501 /* smart_protocol.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = smart_protocol.c; sourceTree = "<group>"; };
F804C1E11B7BF2CD00C40501 /* ssh.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = ssh.c; sourceTree = "<group>"; };
F804C1E21B7BF2CD00C40501 /* winhttp.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = winhttp.c; sourceTree = "<group>"; };
F804C1E31B7BF2CD00C40501 /* tree-cache.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = "tree-cache.c"; sourceTree = "<group>"; };
F804C1E41B7BF2CD00C40501 /* tree-cache.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "tree-cache.h"; sourceTree = "<group>"; };
F804C1E51B7BF2CD00C40501 /* tree.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tree.c; sourceTree = "<group>"; };
F804C1E61B7BF2CD00C40501 /* tree.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tree.h; sourceTree = "<group>"; };
F804C1E71B7BF2CD00C40501 /* tsort.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tsort.c; sourceTree = "<group>"; };
F804C1E91B7BF2CD00C40501 /* map.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = map.c; sourceTree = "<group>"; };
F804C1EA1B7BF2CD00C40501 /* posix.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = posix.h; sourceTree = "<group>"; };
F804C1EB1B7BF2CD00C40501 /* realpath.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = realpath.c; sourceTree = "<group>"; };
F804C1EC1B7BF2CD00C40501 /* userdiff.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = userdiff.h; sourceTree = "<group>"; };
F804C1ED1B7BF2CD00C40501 /* util.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = util.c; sourceTree = "<group>"; };
F804C1EE1B7BF2CD00C40501 /* util.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = util.h; sourceTree = "<group>"; };
F804C1EF1B7BF2CD00C40501 /* vector.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = vector.c; sourceTree = "<group>"; };
F804C1F01B7BF2CD00C40501 /* vector.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = vector.h; sourceTree = "<group>"; };
F804C2111B7BF2CD00C40501 /* xdiff.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = xdiff.h; sourceTree = "<group>"; };
F804C2121B7BF2CD00C40501 /* xdiffi.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = xdiffi.c; sourceTree = "<group>"; };
F804C2131B7BF2CD00C40501 /* xdiffi.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = xdiffi.h; sourceTree = "<group>"; };
F804C2141B7BF2CD00C40501 /* xemit.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = xemit.c; sourceTree = "<group>"; };
F804C2151B7BF2CD00C40501 /* xemit.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = xemit.h; sourceTree = "<group>"; };
F804C2161B7BF2CD00C40501 /* xhistogram.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = xhistogram.c; sourceTree = "<group>"; };
F804C2171B7BF2CD00C40501 /* xinclude.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = xinclude.h; sourceTree = "<group>"; };
F804C2181B7BF2CD00C40501 /* xmacros.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = xmacros.h; sourceTree = "<group>"; };
F804C2191B7BF2CD00C40501 /* xmerge.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = xmerge.c; sourceTree = "<group>"; };
F804C21B1B7BF2CD00C40501 /* xprepare.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = xprepare.c; sourceTree = "<group>"; };
F804C21C1B7BF2CD00C40501 /* xprepare.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = xprepare.h; sourceTree = "<group>"; };
F804C21D1B7BF2CD00C40501 /* xtypes.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = xtypes.h; sourceTree = "<group>"; };
F804C21E1B7BF2CD00C40501 /* xutils.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = xutils.c; sourceTree = "<group>"; };
F804C21F1B7BF2CD00C40501 /* xutils.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = xutils.h; sourceTree = "<group>"; };
F804C2201B7BF2CD00C40501 /* zstream.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = zstream.c; sourceTree = "<group>"; };
F804C2211B7BF2CD00C40501 /* zstream.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = zstream.h; sourceTree = "<group>"; };
F82FC7321B87CBBD000F2896 /* Security.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Security.framework; path = System/Library/Frameworks/Security.framework; sourceTree = SDKROOT; };
F82FC7341B87CBD6000F2896 /* CoreFoundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreFoundation.framework; path = System/Library/Frameworks/CoreFoundation.framework; sourceTree = SDKROOT; };
F82FC7361B87CC05000F2896 /* Security.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Security.framework; path = Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/Security.framework; sourceTree = DEVELOPER_DIR; };
F82FC7381B87CC0A000F2896 /* CoreFoundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreFoundation.framework; path = Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/CoreFoundation.framework; sourceTree = DEVELOPER_DIR; };
F834885C1B7BFC9800A5B932 /* sys */ = {isa = PBXFileReference; lastKnownFileType = folder; name = sys; path = ../External/libgit2/include/git2/sys; sourceTree = "<group>"; };
F83488611B7BFDD400A5B932 /* Info.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
F83488641B7BFF7200A5B932 /* git2.modulemap */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = "sourcecode.module-map"; path = git2.modulemap; sourceTree = "<group>"; };
F834886B1B7D547D00A5B932 /* http_parser.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = http_parser.c; sourceTree = "<group>"; };
F834886C1B7D547D00A5B932 /* http_parser.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = http_parser.h; sourceTree = "<group>"; };
F83488D11B7D55ED00A5B932 /* libz.tbd */ = {isa = PBXFileReference; lastKnownFileType = "sourcecode.text-based-dylib-definition"; name = libz.tbd; path = usr/lib/libz.tbd; sourceTree = SDKROOT; };
F85B3CF91CAE0BDA00A1A225 /* ssh.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ssh.h; sourceTree = "<group>"; };
F85B3CFB1CAE0C1900A1A225 /* idxmap.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = idxmap.h; sourceTree = "<group>"; };
F85B3CFC1CAE0C1900A1A225 /* transaction.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = transaction.h; sourceTree = "<group>"; };
F8B37E0B1B83611C003CF5F7 /* git2.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = git2.h; sourceTree = "<group>"; };
F8B37E0D1B836122003CF5F7 /* git2.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = git2.h; sourceTree = "<group>"; };
F8D67E341B7BA85D00021BDF /* git2.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = git2.framework; sourceTree = BUILT_PRODUCTS_DIR; };
F8D67E441B7BAA4900021BDF /* git2.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = git2.framework; sourceTree = BUILT_PRODUCTS_DIR; };
F8D67E481B7BAA4900021BDF /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
F8D67E7E1B7BB79E00021BDF /* git2.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = git2.h; path = ../External/libgit2/include/git2.h; sourceTree = "<group>"; };
F8D67E841B7BB7DA00021BDF /* annotated_commit.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = annotated_commit.h; path = ../External/libgit2/include/git2/annotated_commit.h; sourceTree = "<group>"; };
F8D67E851B7BB7DA00021BDF /* attr.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = attr.h; path = ../External/libgit2/include/git2/attr.h; sourceTree = "<group>"; };
F8D67E861B7BB7DA00021BDF /* blame.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = blame.h; path = ../External/libgit2/include/git2/blame.h; sourceTree = "<group>"; };
F8D67E871B7BB7DA00021BDF /* blob.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = blob.h; path = ../External/libgit2/include/git2/blob.h; sourceTree = "<group>"; };
F8D67E881B7BB7DA00021BDF /* branch.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = branch.h; path = ../External/libgit2/include/git2/branch.h; sourceTree = "<group>"; };
F8D67E891B7BB7DA00021BDF /* buffer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = buffer.h; path = ../External/libgit2/include/git2/buffer.h; sourceTree = "<group>"; };
F8D67E8A1B7BB7DA00021BDF /* checkout.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = checkout.h; path = ../External/libgit2/include/git2/checkout.h; sourceTree = "<group>"; };
F8D67E8B1B7BB7DA00021BDF /* cherrypick.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = cherrypick.h; path = ../External/libgit2/include/git2/cherrypick.h; sourceTree = "<group>"; };
F8D67E8C1B7BB7DA00021BDF /* clone.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = clone.h; path = ../External/libgit2/include/git2/clone.h; sourceTree = "<group>"; };
F8D67E8D1B7BB7DA00021BDF /* commit.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = commit.h; path = ../External/libgit2/include/git2/commit.h; sourceTree = "<group>"; };
F8D67E8E1B7BB7DA00021BDF /* common.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = common.h; path = ../External/libgit2/include/git2/common.h; sourceTree = "<group>"; };
F8D67E8F1B7BB7DA00021BDF /* config.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = config.h; path = ../External/libgit2/include/git2/config.h; sourceTree = "<group>"; };
F8D67E901B7BB7DA00021BDF /* cred_helpers.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = cred_helpers.h; path = ../External/libgit2/include/git2/cred_helpers.h; sourceTree = "<group>"; };
F8D67E911B7BB7DA00021BDF /* describe.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = describe.h; path = ../External/libgit2/include/git2/describe.h; sourceTree = "<group>"; };
F8D67E921B7BB7DA00021BDF /* diff.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = diff.h; path = ../External/libgit2/include/git2/diff.h; sourceTree = "<group>"; };
F8D67E931B7BB7DA00021BDF /* errors.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = errors.h; path = ../External/libgit2/include/git2/errors.h; sourceTree = "<group>"; };
F8D67E941B7BB7DA00021BDF /* filter.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = filter.h; path = ../External/libgit2/include/git2/filter.h; sourceTree = "<group>"; };
F8D67E951B7BB7DA00021BDF /* global.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = global.h; path = ../External/libgit2/include/git2/global.h; sourceTree = "<group>"; };
F8D67E961B7BB7DA00021BDF /* graph.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = graph.h; path = ../External/libgit2/include/git2/graph.h; sourceTree = "<group>"; };
F8D67E971B7BB7DA00021BDF /* ignore.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = ignore.h; path = ../External/libgit2/include/git2/ignore.h; sourceTree = "<group>"; };
F8D67E981B7BB7DA00021BDF /* index.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = index.h; path = ../External/libgit2/include/git2/index.h; sourceTree = "<group>"; };
F8D67E991B7BB7DA00021BDF /* indexer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = indexer.h; path = ../External/libgit2/include/git2/indexer.h; sourceTree = "<group>"; };
F8D67E9B1B7BB7DA00021BDF /* merge.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = merge.h; path = ../External/libgit2/include/git2/merge.h; sourceTree = "<group>"; };
F8D67E9C1B7BB7DA00021BDF /* message.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = message.h; path = ../External/libgit2/include/git2/message.h; sourceTree = "<group>"; };
F8D67E9D1B7BB7DA00021BDF /* net.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = net.h; path = ../External/libgit2/include/git2/net.h; sourceTree = "<group>"; };
F8D67E9E1B7BB7DA00021BDF /* notes.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = notes.h; path = ../External/libgit2/include/git2/notes.h; sourceTree = "<group>"; };
F8D67E9F1B7BB7DA00021BDF /* object.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = object.h; path = ../External/libgit2/include/git2/object.h; sourceTree = "<group>"; };
F8D67EA01B7BB7DA00021BDF /* odb_backend.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = odb_backend.h; path = ../External/libgit2/include/git2/odb_backend.h; sourceTree = "<group>"; };
F8D67EA11B7BB7DA00021BDF /* odb.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = odb.h; path = ../External/libgit2/include/git2/odb.h; sourceTree = "<group>"; };
F8D67EA21B7BB7DA00021BDF /* oid.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = oid.h; path = ../External/libgit2/include/git2/oid.h; sourceTree = "<group>"; };
F8D67EA31B7BB7DA00021BDF /* oidarray.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = oidarray.h; path = ../External/libgit2/include/git2/oidarray.h; sourceTree = "<group>"; };
F8D67EA41B7BB7DA00021BDF /* pack.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = pack.h; path = ../External/libgit2/include/git2/pack.h; sourceTree = "<group>"; };
F8D67EA51B7BB7DA00021BDF /* patch.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = patch.h; path = ../External/libgit2/include/git2/patch.h; sourceTree = "<group>"; };
F8D67EA61B7BB7DA00021BDF /* pathspec.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = pathspec.h; path = ../External/libgit2/include/git2/pathspec.h; sourceTree = "<group>"; };
F8D67EA71B7BB7DA00021BDF /* rebase.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = rebase.h; path = ../External/libgit2/include/git2/rebase.h; sourceTree = "<group>"; };
F8D67EA81B7BB7DA00021BDF /* refdb.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = refdb.h; path = ../External/libgit2/include/git2/refdb.h; sourceTree = "<group>"; };
F8D67EA91B7BB7DA00021BDF /* reflog.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = reflog.h; path = ../External/libgit2/include/git2/reflog.h; sourceTree = "<group>"; };
F8D67EAA1B7BB7DA00021BDF /* refs.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = refs.h; path = ../External/libgit2/include/git2/refs.h; sourceTree = "<group>"; };
F8D67EAB1B7BB7DA00021BDF /* refspec.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = refspec.h; path = ../External/libgit2/include/git2/refspec.h; sourceTree = "<group>"; };
F8D67EAC1B7BB7DA00021BDF /* remote.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = remote.h; path = ../External/libgit2/include/git2/remote.h; sourceTree = "<group>"; };
F8D67EAD1B7BB7DA00021BDF /* repository.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = repository.h; path = ../External/libgit2/include/git2/repository.h; sourceTree = "<group>"; };
F8D67EAE1B7BB7DA00021BDF /* reset.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = reset.h; path = ../External/libgit2/include/git2/reset.h; sourceTree = "<group>"; };
F8D67EAF1B7BB7DA00021BDF /* revert.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = revert.h; path = ../External/libgit2/include/git2/revert.h; sourceTree = "<group>"; };
F8D67EB01B7BB7DA00021BDF /* revparse.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = revparse.h; path = ../External/libgit2/include/git2/revparse.h; sourceTree = "<group>"; };
F8D67EB11B7BB7DA00021BDF /* revwalk.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = revwalk.h; path = ../External/libgit2/include/git2/revwalk.h; sourceTree = "<group>"; };
F8D67EB21B7BB7DA00021BDF /* signature.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = signature.h; path = ../External/libgit2/include/git2/signature.h; sourceTree = "<group>"; };
F8D67EB31B7BB7DA00021BDF /* stash.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = stash.h; path = ../External/libgit2/include/git2/stash.h; sourceTree = "<group>"; };
F8D67EB41B7BB7DA00021BDF /* status.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = status.h; path = ../External/libgit2/include/git2/status.h; sourceTree = "<group>"; };
F8D67EB61B7BB7DA00021BDF /* strarray.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = strarray.h; path = ../External/libgit2/include/git2/strarray.h; sourceTree = "<group>"; };
F8D67EB71B7BB7DA00021BDF /* submodule.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = submodule.h; path = ../External/libgit2/include/git2/submodule.h; sourceTree = "<group>"; };
F8D67F201B7BB7E800021BDF /* tag.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = tag.h; path = ../External/libgit2/include/git2/tag.h; sourceTree = "<group>"; };
F8D67F211B7BB7E800021BDF /* trace.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = trace.h; path = ../External/libgit2/include/git2/trace.h; sourceTree = "<group>"; };
F8D67F221B7BB7E800021BDF /* transaction.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = transaction.h; path = ../External/libgit2/include/git2/transaction.h; sourceTree = "<group>"; };
F8D67F231B7BB7E800021BDF /* transport.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = transport.h; path = ../External/libgit2/include/git2/transport.h; sourceTree = "<group>"; };
F8D67F241B7BB7E800021BDF /* tree.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = tree.h; path = ../External/libgit2/include/git2/tree.h; sourceTree = "<group>"; };
F8D67F251B7BB7E800021BDF /* types.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = types.h; path = ../External/libgit2/include/git2/types.h; sourceTree = "<group>"; };
F8D67F261B7BB7E800021BDF /* version.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = version.h; path = ../External/libgit2/include/git2/version.h; sourceTree = "<group>"; };
F8F708CE1B7D579000F227F2 /* indexer.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = indexer.c; sourceTree = "<group>"; };
F8F708D01B7DB5CB00F227F2 /* xpatience.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = xpatience.c; sourceTree = "<group>"; };
F8F708D41B7DB98F00F227F2 /* libz.tbd */ = {isa = PBXFileReference; lastKnownFileType = "sourcecode.text-based-dylib-definition"; name = libz.tbd; path = Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/usr/lib/libz.tbd; sourceTree = DEVELOPER_DIR; };
F8FF92D41CBC049400FC7CAE /* libssh2-ios.a */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; name = "libssh2-ios.a"; path = "../External/libssh2-ios/lib/libssh2-ios.a"; sourceTree = "<group>"; };
F8FF92D61CBC04AE00FC7CAE /* libcrypto.a */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; name = libcrypto.a; path = "../External/ios-openssl/lib/libcrypto.a"; sourceTree = "<group>"; };
F8FF92D71CBC04AE00FC7CAE /* libssl.a */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; name = libssl.a; path = "../External/ios-openssl/lib/libssl.a"; sourceTree = "<group>"; };
F8FF92DB1CBC18F000FC7CAE /* libssh2.a */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; name = libssh2.a; path = ../../../../../../usr/local/Cellar/libssh2/1.7.0/lib/libssh2.a; sourceTree = "<group>"; };
F8FF92DD1CBC199E00FC7CAE /* libiconv.tbd */ = {isa = PBXFileReference; lastKnownFileType = "sourcecode.text-based-dylib-definition"; name = libiconv.tbd; path = Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/usr/lib/libiconv.tbd; sourceTree = DEVELOPER_DIR; };
F8FF92DF1CBC19A700FC7CAE /* libiconv.tbd */ = {isa = PBXFileReference; lastKnownFileType = "sourcecode.text-based-dylib-definition"; name = libiconv.tbd; path = usr/lib/libiconv.tbd; sourceTree = SDKROOT; };
/* End PBXFileReference section */
/* Begin PBXFrameworksBuildPhase section */
F8D67E301B7BA85D00021BDF /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
F82FC7351B87CBD6000F2896 /* CoreFoundation.framework in Frameworks */,
F8FF92DA1CBC04DE00FC7CAE /* libcrypto.a in Frameworks */,