-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathproject.pbxproj
More file actions
executable file
·1591 lines (1580 loc) · 140 KB
/
project.pbxproj
File metadata and controls
executable file
·1591 lines (1580 loc) · 140 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
// !$*UTF8*$!
{
archiveVersion = 1;
classes = {
};
objectVersion = 46;
objects = {
/* Begin PBXBuildFile section */
7808CAB3145F3689007DC3B6 /* SF_Icon.png in Resources */ = {isa = PBXBuildFile; fileRef = 7808CAA9145F3689007DC3B6 /* SF_Icon.png */; };
7808CAB6145F3689007DC3B6 /* SF_Icon@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 7808CAAA145F3689007DC3B6 /* SF_Icon@2x.png */; };
7808CABB145F39E7007DC3B6 /* wells_icon.png in Resources */ = {isa = PBXBuildFile; fileRef = 7808CAB7145F39E7007DC3B6 /* wells_icon.png */; };
7808CABE145F39E7007DC3B6 /* wells_icon@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 7808CAB8145F39E7007DC3B6 /* wells_icon@2x.png */; };
7814840F14841CAB0002B33D /* SignTableViewCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 7814840C14841CAA0002B33D /* SignTableViewCell.m */; };
782EBF9614869F4A00A69AEE /* DrawableResultsTableView.m in Sources */ = {isa = PBXBuildFile; fileRef = 782EBF9314869F4A00A69AEE /* DrawableResultsTableView.m */; };
7838381B146865A7007C00C2 /* map_button.png in Resources */ = {isa = PBXBuildFile; fileRef = 78383817146865A7007C00C2 /* map_button.png */; };
7838381E146865A7007C00C2 /* map_button@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 78383818146865A7007C00C2 /* map_button@2x.png */; };
7841C194147C313B006871F1 /* Route.m in Sources */ = {isa = PBXBuildFile; fileRef = 7841C191147C313B006871F1 /* Route.m */; };
784B11E514859D5400E1FCF2 /* leftArrowButton.png in Resources */ = {isa = PBXBuildFile; fileRef = 784B11DF14859D5400E1FCF2 /* leftArrowButton.png */; };
784B11E814859D5400E1FCF2 /* leftArrowButton@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 784B11E014859D5400E1FCF2 /* leftArrowButton@2x.png */; };
784B11EB14859D5400E1FCF2 /* rightArrowButton.png in Resources */ = {isa = PBXBuildFile; fileRef = 784B11E114859D5400E1FCF2 /* rightArrowButton.png */; };
784B11EE14859D5400E1FCF2 /* rightArrowButton@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 784B11E214859D5400E1FCF2 /* rightArrowButton@2x.png */; };
785C5B08149FC4AE00C7C736 /* StopsList.m in Sources */ = {isa = PBXBuildFile; fileRef = 785C5B05149FC4AE00C7C736 /* StopsList.m */; };
786557F714ABF77E00AB9C8B /* StopSignView.m in Sources */ = {isa = PBXBuildFile; fileRef = 786557F414ABF77E00AB9C8B /* StopSignView.m */; };
786D77A614BE65DF00FDDA6C /* icon.png in Resources */ = {isa = PBXBuildFile; fileRef = 786D77A214BE65DF00FDDA6C /* icon.png */; };
786D77A914BE65DF00FDDA6C /* icon@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 786D77A314BE65DF00FDDA6C /* icon@2x.png */; };
786D77BF14BE70BF00FDDA6C /* att_logo.png in Resources */ = {isa = PBXBuildFile; fileRef = 786D77BB14BE70BF00FDDA6C /* att_logo.png */; };
786D77C214BE70BF00FDDA6C /* att_logo@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 786D77BC14BE70BF00FDDA6C /* att_logo@2x.png */; };
78756E4B149A65D000C20D8B /* PassThroughView.m in Sources */ = {isa = PBXBuildFile; fileRef = 78756E48149A65D000C20D8B /* PassThroughView.m */; };
787FDC23147B0592006CEFCB /* BlankSignView.m in Sources */ = {isa = PBXBuildFile; fileRef = 787FDC1C147B0592006CEFCB /* BlankSignView.m */; };
787FDC26147B0592006CEFCB /* SignsView.m in Sources */ = {isa = PBXBuildFile; fileRef = 787FDC1E147B0592006CEFCB /* SignsView.m */; };
787FDC29147B0592006CEFCB /* SignTableView.m in Sources */ = {isa = PBXBuildFile; fileRef = 787FDC20147B0592006CEFCB /* SignTableView.m */; };
787FDC2E147B0C71006CEFCB /* LocationCalloutView.m in Sources */ = {isa = PBXBuildFile; fileRef = 787FDC2B147B0C71006CEFCB /* LocationCalloutView.m */; };
7883B2A9148E9A2A00E68173 /* UIBarButtonItem+AppAdditions.m in Sources */ = {isa = PBXBuildFile; fileRef = 7883B2A6148E9A2A00E68173 /* UIBarButtonItem+AppAdditions.m */; };
7883B2B2148E9D2600E68173 /* selected.png in Resources */ = {isa = PBXBuildFile; fileRef = 7883B2AE148E9D2600E68173 /* selected.png */; };
7883B2B5148E9D2600E68173 /* selected@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 7883B2AF148E9D2600E68173 /* selected@2x.png */; };
7885CC2914A2ADBF00F8A212 /* GPSDisplayStart.png in Resources */ = {isa = PBXBuildFile; fileRef = 7885CC2514A2ADBF00F8A212 /* GPSDisplayStart.png */; };
7885CC2C14A2ADBF00F8A212 /* GPSDisplayStart@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 7885CC2614A2ADBF00F8A212 /* GPSDisplayStart@2x.png */; };
78863EC8148566B100B6E529 /* BearLeft.png in Resources */ = {isa = PBXBuildFile; fileRef = 78863EA0148566B100B6E529 /* BearLeft.png */; };
78863ECB148566B100B6E529 /* BearLeft@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 78863EA1148566B100B6E529 /* BearLeft@2x.png */; };
78863ECE148566B100B6E529 /* BearRight.png in Resources */ = {isa = PBXBuildFile; fileRef = 78863EA2148566B100B6E529 /* BearRight.png */; };
78863ED1148566B100B6E529 /* BearRight@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 78863EA3148566B100B6E529 /* BearRight@2x.png */; };
78863ED4148566B100B6E529 /* GetOffFerry.png in Resources */ = {isa = PBXBuildFile; fileRef = 78863EA4148566B100B6E529 /* GetOffFerry.png */; };
78863ED7148566B100B6E529 /* GetOffFerry@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 78863EA5148566B100B6E529 /* GetOffFerry@2x.png */; };
78863EDA148566B100B6E529 /* GetOnRoundabout.png in Resources */ = {isa = PBXBuildFile; fileRef = 78863EA6148566B100B6E529 /* GetOnRoundabout.png */; };
78863EDD148566B100B6E529 /* GetOnRoundabout@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 78863EA7148566B100B6E529 /* GetOnRoundabout@2x.png */; };
78863EE0148566B100B6E529 /* HighwayChange.png in Resources */ = {isa = PBXBuildFile; fileRef = 78863EA8148566B100B6E529 /* HighwayChange.png */; };
78863EE3148566B100B6E529 /* HighwayChange@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 78863EA9148566B100B6E529 /* HighwayChange@2x.png */; };
78863EE6148566B100B6E529 /* MergeOntoHighway.png in Resources */ = {isa = PBXBuildFile; fileRef = 78863EAA148566B100B6E529 /* MergeOntoHighway.png */; };
78863EE9148566B100B6E529 /* MergeOntoHighway@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 78863EAB148566B100B6E529 /* MergeOntoHighway@2x.png */; };
78863EEC148566B100B6E529 /* StraightArrow.png in Resources */ = {isa = PBXBuildFile; fileRef = 78863EAC148566B100B6E529 /* StraightArrow.png */; };
78863EEF148566B100B6E529 /* StraightArrow@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 78863EAD148566B100B6E529 /* StraightArrow@2x.png */; };
78863EF2148566B100B6E529 /* TakeCenterFork.png in Resources */ = {isa = PBXBuildFile; fileRef = 78863EAE148566B100B6E529 /* TakeCenterFork.png */; };
78863EF5148566B100B6E529 /* TakeCenterFork@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 78863EAF148566B100B6E529 /* TakeCenterFork@2x.png */; };
78863EF8148566B100B6E529 /* TakeExit.png in Resources */ = {isa = PBXBuildFile; fileRef = 78863EB0148566B100B6E529 /* TakeExit.png */; };
78863EFB148566B100B6E529 /* TakeExit@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 78863EB1148566B100B6E529 /* TakeExit@2x.png */; };
78863EFE148566B100B6E529 /* TakeFerry.png in Resources */ = {isa = PBXBuildFile; fileRef = 78863EB2148566B100B6E529 /* TakeFerry.png */; };
78863F01148566B100B6E529 /* TakeFerry@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 78863EB3148566B100B6E529 /* TakeFerry@2x.png */; };
78863F04148566B100B6E529 /* TakeForkLeft.png in Resources */ = {isa = PBXBuildFile; fileRef = 78863EB4148566B100B6E529 /* TakeForkLeft.png */; };
78863F07148566B100B6E529 /* TakeForkLeft@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 78863EB5148566B100B6E529 /* TakeForkLeft@2x.png */; };
78863F0A148566B100B6E529 /* TakeForkRight.png in Resources */ = {isa = PBXBuildFile; fileRef = 78863EB6148566B100B6E529 /* TakeForkRight.png */; };
78863F0D148566B100B6E529 /* TakeForkRight@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 78863EB7148566B100B6E529 /* TakeForkRight@2x.png */; };
78863F10148566B100B6E529 /* TakeRampLeft.png in Resources */ = {isa = PBXBuildFile; fileRef = 78863EB8148566B100B6E529 /* TakeRampLeft.png */; };
78863F13148566B100B6E529 /* TakeRampLeft@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 78863EB9148566B100B6E529 /* TakeRampLeft@2x.png */; };
78863F16148566B100B6E529 /* TakeRampRight.png in Resources */ = {isa = PBXBuildFile; fileRef = 78863EBA148566B100B6E529 /* TakeRampRight.png */; };
78863F19148566B100B6E529 /* TakeRampRight@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 78863EBB148566B100B6E529 /* TakeRampRight@2x.png */; };
78863F1C148566B100B6E529 /* TurnLeft.png in Resources */ = {isa = PBXBuildFile; fileRef = 78863EBC148566B100B6E529 /* TurnLeft.png */; };
78863F1F148566B100B6E529 /* TurnLeft@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 78863EBD148566B100B6E529 /* TurnLeft@2x.png */; };
78863F22148566B100B6E529 /* TurnRight.png in Resources */ = {isa = PBXBuildFile; fileRef = 78863EBE148566B100B6E529 /* TurnRight.png */; };
78863F25148566B100B6E529 /* TurnRight@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 78863EBF148566B100B6E529 /* TurnRight@2x.png */; };
78863F28148566B100B6E529 /* TurnSharpLeft.png in Resources */ = {isa = PBXBuildFile; fileRef = 78863EC0148566B100B6E529 /* TurnSharpLeft.png */; };
78863F2B148566B100B6E529 /* TurnSharpLeft@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 78863EC1148566B100B6E529 /* TurnSharpLeft@2x.png */; };
78863F2E148566B100B6E529 /* TurnSharpRight.png in Resources */ = {isa = PBXBuildFile; fileRef = 78863EC2148566B100B6E529 /* TurnSharpRight.png */; };
78863F31148566B100B6E529 /* TurnSharpRight@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 78863EC3148566B100B6E529 /* TurnSharpRight@2x.png */; };
78863F34148566B100B6E529 /* UTurn.png in Resources */ = {isa = PBXBuildFile; fileRef = 78863EC4148566B100B6E529 /* UTurn.png */; };
78863F37148566B100B6E529 /* UTurn@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 78863EC5148566B100B6E529 /* UTurn@2x.png */; };
789D95291496A4B100EFF776 /* upselected.png in Resources */ = {isa = PBXBuildFile; fileRef = 789D95251496A4B100EFF776 /* upselected.png */; };
789D952C1496A4B100EFF776 /* upselected@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 789D95261496A4B100EFF776 /* upselected@2x.png */; };
78A389ED148701EA00FB57E6 /* list.png in Resources */ = {isa = PBXBuildFile; fileRef = 78A389E9148701EA00FB57E6 /* list.png */; };
78A389F0148701EA00FB57E6 /* list@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 78A389EA148701EA00FB57E6 /* list@2x.png */; };
78BA0D7D1458C17500530ADD /* main.m in Sources */ = {isa = PBXBuildFile; fileRef = 78342C9F140D9CB400B0F354 /* main.m */; };
78BA0D7E1458C17500530ADD /* MapAppDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = 78342CA3140D9CB400B0F354 /* MapAppDelegate.m */; };
78BA0D7F1458C17500530ADD /* MapViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 78342CAB140D9CB500B0F354 /* MapViewController.m */; };
78BA0D811458C17500530ADD /* UIColor+Additions.m in Sources */ = {isa = PBXBuildFile; fileRef = 78693254140EA27B00B96F3F /* UIColor+Additions.m */; };
78BA0D821458C17500530ADD /* MapContentViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 7869325F140EA99C00B96F3F /* MapContentViewController.m */; };
78BA0D871458C17500530ADD /* GeocodeService.m in Sources */ = {isa = PBXBuildFile; fileRef = 789197931416761400E85321 /* GeocodeService.m */; };
78BA0D891458C17500530ADD /* ArcGISMobileConfig.m in Sources */ = {isa = PBXBuildFile; fileRef = 7891979A14167A4600E85321 /* ArcGISMobileConfig.m */; };
78BA0D8A1458C17500530ADD /* Location.m in Sources */ = {isa = PBXBuildFile; fileRef = 78852EEF14167AA00023CD0F /* Location.m */; };
78BA0D8C1458C17500530ADD /* BasemapsViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 7878C15C141ACD90000ACBBD /* BasemapsViewController.m */; };
78BA0D8D1458C17500530ADD /* BasemapsTableViewCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 78FCC112141E769A005926F6 /* BasemapsTableViewCell.m */; };
78BA0D8E1458C17500530ADD /* SectionHeaderView.m in Sources */ = {isa = PBXBuildFile; fileRef = 784695CA141EA9D500847AB6 /* SectionHeaderView.m */; };
78BA0D8F1458C17500530ADD /* SectionInfo.m in Sources */ = {isa = PBXBuildFile; fileRef = 784695CC141EA9D500847AB6 /* SectionInfo.m */; };
78BA0D901458C17500530ADD /* Basemaps.m in Sources */ = {isa = PBXBuildFile; fileRef = 784695E0141EC7D000847AB6 /* Basemaps.m */; };
78BA0D911458C17500530ADD /* ArcGISOnlineConnection.m in Sources */ = {isa = PBXBuildFile; fileRef = 784695E4141EC8C100847AB6 /* ArcGISOnlineConnection.m */; };
78BA0D921458C17500530ADD /* ArcGISOnlineServices.m in Sources */ = {isa = PBXBuildFile; fileRef = 784695E6141EC8C100847AB6 /* ArcGISOnlineServices.m */; };
78BA0D931458C17500530ADD /* NSDictionary+Additions.m in Sources */ = {isa = PBXBuildFile; fileRef = 784695F8141ECCAB00847AB6 /* NSDictionary+Additions.m */; };
78BA0D951458C17500530ADD /* ContentItem.m in Sources */ = {isa = PBXBuildFile; fileRef = 78469608141ECDD200847AB6 /* ContentItem.m */; };
78BA0D971458C17500530ADD /* ArcGISAppDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = 78469633141FCFB700847AB6 /* ArcGISAppDelegate.m */; };
78BA0D981458C17500530ADD /* AppSettings.m in Sources */ = {isa = PBXBuildFile; fileRef = 78469636141FD0D800847AB6 /* AppSettings.m */; };
78BA0D991458C17500530ADD /* MapAppSettings.m in Sources */ = {isa = PBXBuildFile; fileRef = 7846963D14201D0200847AB6 /* MapAppSettings.m */; };
78BA0D9A1458C17500530ADD /* SplashImageVC.m in Sources */ = {isa = PBXBuildFile; fileRef = 784696401420213900847AB6 /* SplashImageVC.m */; };
78BA0D9B1458C17500530ADD /* MapViewController+MapTapping.m in Sources */ = {isa = PBXBuildFile; fileRef = 78C80742142114CF00C4987C /* MapViewController+MapTapping.m */; };
78BA0D9C1458C17500530ADD /* AGSGeometry+AppAdditions.m in Sources */ = {isa = PBXBuildFile; fileRef = 78C807451421393000C4987C /* AGSGeometry+AppAdditions.m */; };
78BA0D9E1458C17500530ADD /* SettingsViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 783742121423AE400085A15A /* SettingsViewController.m */; };
78BA0DA01458C17500530ADD /* Search.m in Sources */ = {isa = PBXBuildFile; fileRef = 78D53BFD14241095005B0D82 /* Search.m */; };
78BA0DA11458C17500530ADD /* UserSearchResults.m in Sources */ = {isa = PBXBuildFile; fileRef = 78D53C0114241372005B0D82 /* UserSearchResults.m */; };
78BA0DA41458C17500530ADD /* IconDownloader.m in Sources */ = {isa = PBXBuildFile; fileRef = 78CBDBDA142981C100BEFB46 /* IconDownloader.m */; };
78BA0DA51458C17500530ADD /* CurrentLocation.m in Sources */ = {isa = PBXBuildFile; fileRef = 784E9AFA142A4F95006F5937 /* CurrentLocation.m */; };
78BA0DA81458C17500530ADD /* Direction.m in Sources */ = {isa = PBXBuildFile; fileRef = 7858321C142D326B006E0D95 /* Direction.m */; };
78BA0DA91458C17500530ADD /* DirectionsList.m in Sources */ = {isa = PBXBuildFile; fileRef = 78583227142D3F70006E0D95 /* DirectionsList.m */; };
78BA0DAA1458C17500530ADD /* DrawableList.m in Sources */ = {isa = PBXBuildFile; fileRef = 780501B7142FD7460048B099 /* DrawableList.m */; };
78BA0DAB1458C17500530ADD /* DrawableCollection.m in Sources */ = {isa = PBXBuildFile; fileRef = 780501BD142FDFD60048B099 /* DrawableCollection.m */; };
78BA0DB21458C17500530ADD /* LocationGraphic.m in Sources */ = {isa = PBXBuildFile; fileRef = 785139471447A399008D0E34 /* LocationGraphic.m */; };
78BA0DB31458C17500530ADD /* NSString+NSString_Additions.m in Sources */ = {isa = PBXBuildFile; fileRef = 7851394A1447AB33008D0E34 /* NSString+NSString_Additions.m */; };
78BA0DB51458C17500530ADD /* MapViewController+Search.m in Sources */ = {isa = PBXBuildFile; fileRef = 789C0A341448E26F00C4CFA3 /* MapViewController+Search.m */; };
78BA0DB61458C17500530ADD /* UIImage+AppAdditions.m in Sources */ = {isa = PBXBuildFile; fileRef = 78D13FA6144F994F00E8970A /* UIImage+AppAdditions.m */; };
78BA0DB71458C17500530ADD /* DirectionsPrintRenderer.m in Sources */ = {isa = PBXBuildFile; fileRef = 78F2A6171450CB1E0027DC56 /* DirectionsPrintRenderer.m */; };
78BA0DB81458C17500530ADD /* OverviewDirection.m in Sources */ = {isa = PBXBuildFile; fileRef = 78F2A61A1450E9B70027DC56 /* OverviewDirection.m */; };
78BA0DB91458C17500530ADD /* RecentSearches.m in Sources */ = {isa = PBXBuildFile; fileRef = 78F2A6311451E9930027DC56 /* RecentSearches.m */; };
78BA0DBC1458C17500530ADD /* MapShareUtility.m in Sources */ = {isa = PBXBuildFile; fileRef = 78F09FE9145629D600075819 /* MapShareUtility.m */; };
78BA0DBE1458C17500530ADD /* MessageUI.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 78C8073D1421085600C4987C /* MessageUI.framework */; };
78BA0DBF1458C17500530ADD /* libxml2.dylib in Frameworks */ = {isa = PBXBuildFile; fileRef = 78C8073F1421087C00C4987C /* libxml2.dylib */; };
78BA0DC11458C17500530ADD /* SystemConfiguration.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 788CA8D914202DA10025D2FD /* SystemConfiguration.framework */; };
78BA0DC21458C17500530ADD /* Security.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 7846963914201C2600847AB6 /* Security.framework */; };
78BA0DC31458C17500530ADD /* AddressBook.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 78B929A91419459C002415AB /* AddressBook.framework */; };
78BA0DC41458C17500530ADD /* AddressBookUI.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 78B929AA1419459C002415AB /* AddressBookUI.framework */; };
78BA0DC51458C17500530ADD /* UIKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 78342C89140D9CB400B0F354 /* UIKit.framework */; };
78BA0DC61458C17500530ADD /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 78342C8B140D9CB400B0F354 /* Foundation.framework */; };
78BA0DC71458C17500530ADD /* CoreGraphics.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 78342C8D140D9CB400B0F354 /* CoreGraphics.framework */; };
78BA0DC81458C17500530ADD /* CoreText.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 78342C8F140D9CB400B0F354 /* CoreText.framework */; };
78BA0DC91458C17500530ADD /* CoreLocation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 78342C91140D9CB400B0F354 /* CoreLocation.framework */; };
78BA0DCA1458C17500530ADD /* MediaPlayer.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 78342C93140D9CB400B0F354 /* MediaPlayer.framework */; };
78BA0DCB1458C17500530ADD /* MobileCoreServices.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 78342C95140D9CB400B0F354 /* MobileCoreServices.framework */; };
78BA0DCC1458C17500530ADD /* QuartzCore.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 78342C97140D9CB400B0F354 /* QuartzCore.framework */; };
78BA0DCE1458C17500530ADD /* InfoPlist.strings in Resources */ = {isa = PBXBuildFile; fileRef = 78342C9C140D9CB400B0F354 /* InfoPlist.strings */; };
78BA0DCF1458C17500530ADD /* MainWindow.xib in Resources */ = {isa = PBXBuildFile; fileRef = 78342CA5140D9CB400B0F354 /* MainWindow.xib */; };
78BA0DD01458C17500530ADD /* ArcGIS.bundle in Resources */ = {isa = PBXBuildFile; fileRef = 78342CA8140D9CB500B0F354 /* ArcGIS.bundle */; };
78BA0DD21458C17500530ADD /* MapContentViewController.xib in Resources */ = {isa = PBXBuildFile; fileRef = 789197561415B7BD00E85321 /* MapContentViewController.xib */; };
78BA0DD31458C17500530ADD /* MapLegendViewController.xib in Resources */ = {isa = PBXBuildFile; fileRef = 789197571415B7BD00E85321 /* MapLegendViewController.xib */; };
78BA0DD41458C17500530ADD /* MapViewController.xib in Resources */ = {isa = PBXBuildFile; fileRef = 789197581415B7BD00E85321 /* MapViewController.xib */; };
78BA0DD51458C17500530ADD /* DrawableContainerViewController.xib in Resources */ = {isa = PBXBuildFile; fileRef = 789197591415B7BD00E85321 /* DrawableContainerViewController.xib */; };
78BA0DD61458C17500530ADD /* ChangeBasemap.png in Resources */ = {isa = PBXBuildFile; fileRef = 7891975F1415B7EA00E85321 /* ChangeBasemap.png */; };
78BA0DD71458C17500530ADD /* ChangeBasemap@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 789197601415B7EA00E85321 /* ChangeBasemap@2x.png */; };
78BA0DD81458C17500530ADD /* ContentControllerMap.png in Resources */ = {isa = PBXBuildFile; fileRef = 789197611415B7EA00E85321 /* ContentControllerMap.png */; };
78BA0DD91458C17500530ADD /* ContentControllerMap@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 789197621415B7EA00E85321 /* ContentControllerMap@2x.png */; };
78BA0DDA1458C17500530ADD /* CurrentLocation.png in Resources */ = {isa = PBXBuildFile; fileRef = 789197631415B7EA00E85321 /* CurrentLocation.png */; };
78BA0DDB1458C17500530ADD /* CurrentLocation@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 789197641415B7EA00E85321 /* CurrentLocation@2x.png */; };
78BA0DDC1458C17500530ADD /* CurrentLocationEnabled.png in Resources */ = {isa = PBXBuildFile; fileRef = 789197651415B7EA00E85321 /* CurrentLocationEnabled.png */; };
78BA0DDD1458C17500530ADD /* CurrentLocationEnabled@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 789197661415B7EA00E85321 /* CurrentLocationEnabled@2x.png */; };
78BA0DDE1458C17500530ADD /* CurrentLocationSelected.png in Resources */ = {isa = PBXBuildFile; fileRef = 789197671415B7EA00E85321 /* CurrentLocationSelected.png */; };
78BA0DDF1458C17500530ADD /* CurrentLocationSelected@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 789197681415B7EA00E85321 /* CurrentLocationSelected@2x.png */; };
78BA0DE01458C17500530ADD /* MagnifyingGlass.png in Resources */ = {isa = PBXBuildFile; fileRef = 7891976B1415B7EA00E85321 /* MagnifyingGlass.png */; };
78BA0DE11458C17500530ADD /* MagnifyingGlass@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 7891976C1415B7EA00E85321 /* MagnifyingGlass@2x.png */; };
78BA0DE21458C17500530ADD /* Map.png in Resources */ = {isa = PBXBuildFile; fileRef = 7891976D1415B7EA00E85321 /* Map.png */; };
78BA0DE31458C17500530ADD /* Map@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 7891976E1415B7EA00E85321 /* Map@2x.png */; };
78BA0DE41458C17500530ADD /* settings.png in Resources */ = {isa = PBXBuildFile; fileRef = 789197731415B7EA00E85321 /* settings.png */; };
78BA0DE51458C17500530ADD /* settings@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 789197741415B7EA00E85321 /* settings@2x.png */; };
78BA0DE61458C17500530ADD /* Toolbar.png in Resources */ = {isa = PBXBuildFile; fileRef = 789197761415B7EA00E85321 /* Toolbar.png */; };
78BA0DE71458C17500530ADD /* Toolbar@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 789197771415B7EA00E85321 /* Toolbar@2x.png */; };
78BA0DE81458C17500530ADD /* BookmarksViewController.xib in Resources */ = {isa = PBXBuildFile; fileRef = 78ADFD4314180E5B00A771AF /* BookmarksViewController.xib */; };
78BA0DE91458C17500530ADD /* Info.png in Resources */ = {isa = PBXBuildFile; fileRef = 7878C133141A9287000ACBBD /* Info.png */; };
78BA0DEA1458C17500530ADD /* Info@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 7878C134141A9287000ACBBD /* Info@2x.png */; };
78BA0DEB1458C17500530ADD /* BasemapsViewController.xib in Resources */ = {isa = PBXBuildFile; fileRef = 78FCC116141E7B10005926F6 /* BasemapsViewController.xib */; };
78BA0DEC1458C17500530ADD /* SampleMapThumb.png in Resources */ = {isa = PBXBuildFile; fileRef = 78FCC11B141E867B005926F6 /* SampleMapThumb.png */; };
78BA0DED1458C17500530ADD /* basemaps_mask.png in Resources */ = {isa = PBXBuildFile; fileRef = 784695BD141EA3A400847AB6 /* basemaps_mask.png */; };
78BA0DEE1458C17500530ADD /* Default.png in Resources */ = {isa = PBXBuildFile; fileRef = 78C807361421027500C4987C /* Default.png */; };
78BA0DEF1458C17500530ADD /* Default@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 78C807371421027500C4987C /* Default@2x.png */; };
78BA0DF01458C17500530ADD /* bookmarks.png in Resources */ = {isa = PBXBuildFile; fileRef = 78C807471421558E00C4987C /* bookmarks.png */; };
78BA0DF11458C17500530ADD /* bookmarks@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 78C807481421558E00C4987C /* bookmarks@2x.png */; };
78BA0DF21458C17500530ADD /* hidepin.png in Resources */ = {isa = PBXBuildFile; fileRef = 78C8074B142155CF00C4987C /* hidepin.png */; };
78BA0DF31458C17500530ADD /* hidepin@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 78C8074C142155CF00C4987C /* hidepin@2x.png */; };
78BA0DF41458C17500530ADD /* WhiteChevron.png in Resources */ = {isa = PBXBuildFile; fileRef = 789FA3CF1422818A001EC0AF /* WhiteChevron.png */; };
78BA0DF51458C17500530ADD /* WhiteChevron@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 789FA3D01422818A001EC0AF /* WhiteChevron@2x.png */; };
78BA0DF61458C17500530ADD /* PinOvalBlueTableView.png in Resources */ = {isa = PBXBuildFile; fileRef = 78865A0F1422BBC800A51A08 /* PinOvalBlueTableView.png */; };
78BA0DF71458C17500530ADD /* PinOvalBlueTableView@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 78865A101422BBC800A51A08 /* PinOvalBlueTableView@2x.png */; };
78BA0DF81458C17500530ADD /* ActionSheet.png in Resources */ = {isa = PBXBuildFile; fileRef = 7880A04A14280C8E0026B1BD /* ActionSheet.png */; };
78BA0DF91458C17500530ADD /* ActionSheet@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 7880A04B14280C8E0026B1BD /* ActionSheet@2x.png */; };
78BA0DFA1458C17500530ADD /* LayerContent.png in Resources */ = {isa = PBXBuildFile; fileRef = 7880A04C14280C8E0026B1BD /* LayerContent.png */; };
78BA0DFB1458C17500530ADD /* LayerContent@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 7880A04D14280C8E0026B1BD /* LayerContent@2x.png */; };
78BA0DFC1458C17500530ADD /* Routing.png in Resources */ = {isa = PBXBuildFile; fileRef = 7880A04E14280C8E0026B1BD /* Routing.png */; };
78BA0DFD1458C17500530ADD /* Routing@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 7880A04F14280C8E0026B1BD /* Routing@2x.png */; };
78BA0DFE1458C17500530ADD /* Switch.png in Resources */ = {isa = PBXBuildFile; fileRef = 7880A05614280D8B0026B1BD /* Switch.png */; };
78BA0DFF1458C17500530ADD /* Switch@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 7880A05714280D8B0026B1BD /* Switch@2x.png */; };
78BA0E001458C17500530ADD /* RouteBar.png in Resources */ = {isa = PBXBuildFile; fileRef = 7880A05C14280E3C0026B1BD /* RouteBar.png */; };
78BA0E011458C17500530ADD /* RouteBar@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 7880A05D14280E3C0026B1BD /* RouteBar@2x.png */; };
78BA0E021458C17500530ADD /* MaxMinLayer-Open.png in Resources */ = {isa = PBXBuildFile; fileRef = 78286C861428111800705A3F /* MaxMinLayer-Open.png */; };
78BA0E031458C17500530ADD /* MaxMinLayer-Open@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 78286C871428111800705A3F /* MaxMinLayer-Open@2x.png */; };
78BA0E041458C17500530ADD /* MaxMinLayer.png in Resources */ = {isa = PBXBuildFile; fileRef = 78286C881428111800705A3F /* MaxMinLayer.png */; };
78BA0E051458C17500530ADD /* MaxMinLayer@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 78286C891428111800705A3F /* MaxMinLayer@2x.png */; };
78BA0E061458C17500530ADD /* OverlayChevron.png in Resources */ = {isa = PBXBuildFile; fileRef = 78286C9314282BC700705A3F /* OverlayChevron.png */; };
78BA0E071458C17500530ADD /* OverlayChevron@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 78286C9414282BC700705A3F /* OverlayChevron@2x.png */; };
78BA0E081458C17500530ADD /* MaxMinLayerTriangle-Open.png in Resources */ = {isa = PBXBuildFile; fileRef = 781F832E14290D5B00D063A5 /* MaxMinLayerTriangle-Open.png */; };
78BA0E091458C17500530ADD /* MaxMinLayerTriangle-Open@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 781F832F14290D5B00D063A5 /* MaxMinLayerTriangle-Open@2x.png */; };
78BA0E0A1458C17500530ADD /* MaxMinLayerTriangle.png in Resources */ = {isa = PBXBuildFile; fileRef = 781F833014290D5B00D063A5 /* MaxMinLayerTriangle.png */; };
78BA0E0B1458C17500530ADD /* MaxMinLayerTriangle@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 781F833114290D5B00D063A5 /* MaxMinLayerTriangle@2x.png */; };
78BA0E0C1458C17500530ADD /* BasemapsTableViewCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = 781F83411429133400D063A5 /* BasemapsTableViewCell.xib */; };
78BA0E0D1458C17500530ADD /* SettingsViewController.xib in Resources */ = {isa = PBXBuildFile; fileRef = 781F83421429133400D063A5 /* SettingsViewController.xib */; };
78BA0E0E1458C17500530ADD /* GreenPin.png in Resources */ = {isa = PBXBuildFile; fileRef = 784E9AF0142A4EDB006F5937 /* GreenPin.png */; };
78BA0E0F1458C17500530ADD /* GreenPin@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 784E9AF1142A4EDB006F5937 /* GreenPin@2x.png */; };
78BA0E101458C17500530ADD /* RedPin.png in Resources */ = {isa = PBXBuildFile; fileRef = 784E9AF2142A4EDB006F5937 /* RedPin.png */; };
78BA0E111458C17500530ADD /* RedPin@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 784E9AF3142A4EDB006F5937 /* RedPin@2x.png */; };
78BA0E121458C17500530ADD /* Refresh.png in Resources */ = {isa = PBXBuildFile; fileRef = 7814BED8142BB64600753F21 /* Refresh.png */; };
78BA0E131458C17500530ADD /* Refresh@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 7814BED9142BB64600753F21 /* Refresh@2x.png */; };
78BA0E141458C17500530ADD /* LeftArrow.png in Resources */ = {isa = PBXBuildFile; fileRef = 78340030142CF20E00DDC5B6 /* LeftArrow.png */; };
78BA0E151458C17500530ADD /* LeftArrow@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 78340031142CF20E00DDC5B6 /* LeftArrow@2x.png */; };
78BA0E161458C17500530ADD /* RightArrow.png in Resources */ = {isa = PBXBuildFile; fileRef = 78340032142CF20E00DDC5B6 /* RightArrow.png */; };
78BA0E171458C17500530ADD /* RightArrow@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 78340033142CF20E00DDC5B6 /* RightArrow@2x.png */; };
78BA0E181458C17500530ADD /* PullDownTabA.png in Resources */ = {isa = PBXBuildFile; fileRef = 78BD1D051431317300C43674 /* PullDownTabA.png */; };
78BA0E191458C17500530ADD /* PullDownTabA@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 78BD1D061431317300C43674 /* PullDownTabA@2x.png */; };
78BA0E341458C17500530ADD /* ContactPin.png in Resources */ = {isa = PBXBuildFile; fileRef = 780382F7144631D90066BF3E /* ContactPin.png */; };
78BA0E351458C17500530ADD /* ContactPin@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 780382F8144631DC0066BF3E /* ContactPin@2x.png */; };
78BA0E361458C17500530ADD /* AddressPin.png in Resources */ = {isa = PBXBuildFile; fileRef = 785139391447A17D008D0E34 /* AddressPin.png */; };
78BA0E371458C17500530ADD /* AddressPin@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 7851393A1447A17D008D0E34 /* AddressPin@2x.png */; };
78BA0E381458C17500530ADD /* BookmarkPin.png in Resources */ = {isa = PBXBuildFile; fileRef = 7851393B1447A17D008D0E34 /* BookmarkPin.png */; };
78BA0E391458C17500530ADD /* BookmarkPin@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 7851393C1447A17D008D0E34 /* BookmarkPin@2x.png */; };
78BA0E3A1458C17500530ADD /* PlacePin.png in Resources */ = {isa = PBXBuildFile; fileRef = 7851393D1447A17D008D0E34 /* PlacePin.png */; };
78BA0E3B1458C17500530ADD /* PlacePin@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 7851393E1447A17D008D0E34 /* PlacePin@2x.png */; };
78BA0E621458C7BE00530ADD /* Legend.m in Sources */ = {isa = PBXBuildFile; fileRef = 78BA0E601458C7BE00530ADD /* Legend.m */; };
78BA0E6A1458D33200530ADD /* MapLayerInfo+AppAdditions.m in Sources */ = {isa = PBXBuildFile; fileRef = 78BA0E681458D33200530ADD /* MapLayerInfo+AppAdditions.m */; };
78BFC28314A119A5001F1522 /* NSNull+Additions.m in Sources */ = {isa = PBXBuildFile; fileRef = 78BFC28014A119A5001F1522 /* NSNull+Additions.m */; };
78BFC28814A13303001F1522 /* MapViewController+PlanningRouting.m in Sources */ = {isa = PBXBuildFile; fileRef = 78BFC28514A13303001F1522 /* MapViewController+PlanningRouting.m */; };
78CA001D147D6EB3008446BA /* RouteSolver.m in Sources */ = {isa = PBXBuildFile; fileRef = 78CA001A147D6EB3008446BA /* RouteSolver.m */; };
78E903A31487E8EE004D5CA2 /* speedometer.png in Resources */ = {isa = PBXBuildFile; fileRef = 78E9039F1487E8EE004D5CA2 /* speedometer.png */; };
78E903A61487E8EE004D5CA2 /* speedometer@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 78E903A01487E8EE004D5CA2 /* speedometer@2x.png */; };
78E903AB1487E8FC004D5CA2 /* GoHereButton.png in Resources */ = {isa = PBXBuildFile; fileRef = 78E903A71487E8FC004D5CA2 /* GoHereButton.png */; };
78E903AE1487E8FC004D5CA2 /* GoHereButton@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 78E903A81487E8FC004D5CA2 /* GoHereButton@2x.png */; };
78EA4E8214686DAA003B5B95 /* RouteSolverSettings.m in Sources */ = {isa = PBXBuildFile; fileRef = 78EA4E7F14686DAA003B5B95 /* RouteSolverSettings.m */; };
78EEEDCE14903DAD00EBE720 /* ToggleSegmentedControl.m in Sources */ = {isa = PBXBuildFile; fileRef = 78EEEDCB14903DAD00EBE720 /* ToggleSegmentedControl.m */; };
78F69BFB1469F1D20041716B /* StreetSignView.m in Sources */ = {isa = PBXBuildFile; fileRef = 78F69BF81469F1D20041716B /* StreetSignView.m */; };
78F72B5C145F6178009269BC /* Default_icon.png in Resources */ = {isa = PBXBuildFile; fileRef = 78F72B58145F6178009269BC /* Default_icon.png */; };
78F72B5F145F6178009269BC /* Default_icon@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 78F72B59145F6178009269BC /* Default_icon@2x.png */; };
78F82B31149A853100C83034 /* AGSSymbol+AppAdditions.m in Sources */ = {isa = PBXBuildFile; fileRef = 78F82B2E149A853100C83034 /* AGSSymbol+AppAdditions.m */; };
882A01EB160BCE3100027BE2 /* Default-568h@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 882A01EA160BCE3100027BE2 /* Default-568h@2x.png */; };
8868F966161A018800FB9238 /* libstdc++.dylib in Frameworks */ = {isa = PBXBuildFile; fileRef = 882A01EF160BD16A00027BE2 /* libstdc++.dylib */; };
8868F967161A024200FB9238 /* AudioToolbox.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 88CFA5D416162DBA0084EB93 /* AudioToolbox.framework */; };
8868F96B161A024400FB9238 /* CoreAudio.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 8868F969161A024300FB9238 /* CoreAudio.framework */; };
8868F96C161A027A00FB9238 /* CFNetwork.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 8868F9551616325400FB9238 /* CFNetwork.framework */; };
8868F96D161A028600FB9238 /* AVFoundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 88CFA5D216162DAB0084EB93 /* AVFoundation.framework */; };
8868F96E161A029200FB9238 /* MapKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 882A01F41610D6AA00027BE2 /* MapKit.framework */; };
8868F977161C9A7100FB9238 /* WIDeskViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 8868F976161C9A7100FB9238 /* WIDeskViewController.m */; };
88DE34011628A9BA00D5D93B /* LocationMarker.m in Sources */ = {isa = PBXBuildFile; fileRef = 88DE34001628A9BA00D5D93B /* LocationMarker.m */; };
/* End PBXBuildFile section */
/* Begin PBXFileReference section */
780382F7144631D90066BF3E /* ContactPin.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = ContactPin.png; path = Resources/Images/ContactPin.png; sourceTree = "<group>"; };
780382F8144631DC0066BF3E /* ContactPin@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = "ContactPin@2x.png"; path = "Resources/Images/ContactPin@2x.png"; sourceTree = "<group>"; };
780501B6142FD7460048B099 /* DrawableList.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = DrawableList.h; sourceTree = "<group>"; };
780501B7142FD7460048B099 /* DrawableList.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = DrawableList.m; sourceTree = "<group>"; };
780501BC142FDFD60048B099 /* DrawableCollection.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = DrawableCollection.h; sourceTree = "<group>"; };
780501BD142FDFD60048B099 /* DrawableCollection.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = DrawableCollection.m; sourceTree = "<group>"; };
7808CAA9145F3689007DC3B6 /* SF_Icon.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = SF_Icon.png; path = Resources/TestImages/SF_Icon.png; sourceTree = "<group>"; };
7808CAAA145F3689007DC3B6 /* SF_Icon@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = "SF_Icon@2x.png"; path = "Resources/TestImages/SF_Icon@2x.png"; sourceTree = "<group>"; };
7808CAB7145F39E7007DC3B6 /* wells_icon.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = wells_icon.png; path = Resources/TestImages/wells_icon.png; sourceTree = "<group>"; };
7808CAB8145F39E7007DC3B6 /* wells_icon@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = "wells_icon@2x.png"; path = "Resources/TestImages/wells_icon@2x.png"; sourceTree = "<group>"; };
7814840B14841CAA0002B33D /* SignTableViewCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SignTableViewCell.h; sourceTree = "<group>"; };
7814840C14841CAA0002B33D /* SignTableViewCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SignTableViewCell.m; sourceTree = "<group>"; };
7814BED8142BB64600753F21 /* Refresh.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = Refresh.png; path = Resources/Images/Refresh.png; sourceTree = "<group>"; };
7814BED9142BB64600753F21 /* Refresh@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = "Refresh@2x.png"; path = "Resources/Images/Refresh@2x.png"; sourceTree = "<group>"; };
781F832E14290D5B00D063A5 /* MaxMinLayerTriangle-Open.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = "MaxMinLayerTriangle-Open.png"; path = "Resources/Images/MaxMinLayerTriangle-Open.png"; sourceTree = "<group>"; };
781F832F14290D5B00D063A5 /* MaxMinLayerTriangle-Open@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = "MaxMinLayerTriangle-Open@2x.png"; path = "Resources/Images/MaxMinLayerTriangle-Open@2x.png"; sourceTree = "<group>"; };
781F833014290D5B00D063A5 /* MaxMinLayerTriangle.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = MaxMinLayerTriangle.png; path = Resources/Images/MaxMinLayerTriangle.png; sourceTree = "<group>"; };
781F833114290D5B00D063A5 /* MaxMinLayerTriangle@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = "MaxMinLayerTriangle@2x.png"; path = "Resources/Images/MaxMinLayerTriangle@2x.png"; sourceTree = "<group>"; };
781F83411429133400D063A5 /* BasemapsTableViewCell.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; name = BasemapsTableViewCell.xib; path = Resources/Nibs/BasemapsTableViewCell.xib; sourceTree = "<group>"; };
781F83421429133400D063A5 /* SettingsViewController.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; name = SettingsViewController.xib; path = Resources/Nibs/SettingsViewController.xib; sourceTree = "<group>"; };
78286C861428111800705A3F /* MaxMinLayer-Open.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = "MaxMinLayer-Open.png"; path = "Resources/Images/MaxMinLayer-Open.png"; sourceTree = "<group>"; };
78286C871428111800705A3F /* MaxMinLayer-Open@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = "MaxMinLayer-Open@2x.png"; path = "Resources/Images/MaxMinLayer-Open@2x.png"; sourceTree = "<group>"; };
78286C881428111800705A3F /* MaxMinLayer.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = MaxMinLayer.png; path = Resources/Images/MaxMinLayer.png; sourceTree = "<group>"; };
78286C891428111800705A3F /* MaxMinLayer@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = "MaxMinLayer@2x.png"; path = "Resources/Images/MaxMinLayer@2x.png"; sourceTree = "<group>"; };
78286C9314282BC700705A3F /* OverlayChevron.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = OverlayChevron.png; path = Resources/Images/OverlayChevron.png; sourceTree = "<group>"; };
78286C9414282BC700705A3F /* OverlayChevron@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = "OverlayChevron@2x.png"; path = "Resources/Images/OverlayChevron@2x.png"; sourceTree = "<group>"; };
782C85B314B64DF500221A65 /* Directions-Info.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; path = "Directions-Info.plist"; sourceTree = SOURCE_ROOT; };
782EBF9214869F4A00A69AEE /* DrawableResultsTableView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = DrawableResultsTableView.h; sourceTree = "<group>"; };
782EBF9314869F4A00A69AEE /* DrawableResultsTableView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = DrawableResultsTableView.m; sourceTree = "<group>"; };
78340030142CF20E00DDC5B6 /* LeftArrow.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = LeftArrow.png; path = Resources/Images/LeftArrow.png; sourceTree = "<group>"; };
78340031142CF20E00DDC5B6 /* LeftArrow@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = "LeftArrow@2x.png"; path = "Resources/Images/LeftArrow@2x.png"; sourceTree = "<group>"; };
78340032142CF20E00DDC5B6 /* RightArrow.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = RightArrow.png; path = Resources/Images/RightArrow.png; sourceTree = "<group>"; };
78340033142CF20E00DDC5B6 /* RightArrow@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = "RightArrow@2x.png"; path = "Resources/Images/RightArrow@2x.png"; sourceTree = "<group>"; };
78342C89140D9CB400B0F354 /* UIKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = UIKit.framework; path = System/Library/Frameworks/UIKit.framework; sourceTree = SDKROOT; };
78342C8B140D9CB400B0F354 /* Foundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Foundation.framework; path = System/Library/Frameworks/Foundation.framework; sourceTree = SDKROOT; };
78342C8D140D9CB400B0F354 /* CoreGraphics.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreGraphics.framework; path = System/Library/Frameworks/CoreGraphics.framework; sourceTree = SDKROOT; };
78342C8F140D9CB400B0F354 /* CoreText.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreText.framework; path = System/Library/Frameworks/CoreText.framework; sourceTree = SDKROOT; };
78342C91140D9CB400B0F354 /* CoreLocation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreLocation.framework; path = System/Library/Frameworks/CoreLocation.framework; sourceTree = SDKROOT; };
78342C93140D9CB400B0F354 /* MediaPlayer.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = MediaPlayer.framework; path = System/Library/Frameworks/MediaPlayer.framework; sourceTree = SDKROOT; };
78342C95140D9CB400B0F354 /* MobileCoreServices.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = MobileCoreServices.framework; path = System/Library/Frameworks/MobileCoreServices.framework; sourceTree = SDKROOT; };
78342C97140D9CB400B0F354 /* QuartzCore.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = QuartzCore.framework; path = System/Library/Frameworks/QuartzCore.framework; sourceTree = SDKROOT; };
78342C9B140D9CB400B0F354 /* Map-Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = "Map-Info.plist"; sourceTree = "<group>"; };
78342C9D140D9CB400B0F354 /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/InfoPlist.strings; sourceTree = "<group>"; };
78342C9F140D9CB400B0F354 /* main.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = main.m; sourceTree = "<group>"; };
78342CA1140D9CB400B0F354 /* Map-Prefix.pch */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "Map-Prefix.pch"; sourceTree = "<group>"; };
78342CA2140D9CB400B0F354 /* MapAppDelegate.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = MapAppDelegate.h; sourceTree = "<group>"; };
78342CA3140D9CB400B0F354 /* MapAppDelegate.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = MapAppDelegate.m; sourceTree = "<group>"; };
78342CA6140D9CB400B0F354 /* en */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = en; path = en.lproj/MainWindow.xib; sourceTree = "<group>"; };
78342CA8140D9CB500B0F354 /* ArcGIS.bundle */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.plug-in"; path = ArcGIS.bundle; sourceTree = "<group>"; };
78342CAA140D9CB500B0F354 /* MapViewController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = MapViewController.h; sourceTree = "<group>"; };
78342CAB140D9CB500B0F354 /* MapViewController.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = MapViewController.m; sourceTree = "<group>"; };
783742111423AE400085A15A /* SettingsViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SettingsViewController.h; sourceTree = "<group>"; };
783742121423AE400085A15A /* SettingsViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SettingsViewController.m; sourceTree = "<group>"; };
78383817146865A7007C00C2 /* map_button.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = map_button.png; path = Resources/Images/map_button.png; sourceTree = "<group>"; };
78383818146865A7007C00C2 /* map_button@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = "map_button@2x.png"; path = "Resources/Images/map_button@2x.png"; sourceTree = "<group>"; };
7841C190147C313B006871F1 /* Route.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Route.h; sourceTree = "<group>"; };
7841C191147C313B006871F1 /* Route.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = Route.m; sourceTree = "<group>"; };
784695BD141EA3A400847AB6 /* basemaps_mask.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = basemaps_mask.png; path = Resources/Images/basemaps_mask.png; sourceTree = "<group>"; };
784695C9141EA9D500847AB6 /* SectionHeaderView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SectionHeaderView.h; sourceTree = "<group>"; };
784695CA141EA9D500847AB6 /* SectionHeaderView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SectionHeaderView.m; sourceTree = "<group>"; };
784695CB141EA9D500847AB6 /* SectionInfo.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SectionInfo.h; sourceTree = "<group>"; };
784695CC141EA9D500847AB6 /* SectionInfo.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SectionInfo.m; sourceTree = "<group>"; };
784695DE141EC32E00847AB6 /* NamedGeometry.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = NamedGeometry.h; sourceTree = "<group>"; };
784695DF141EC7D000847AB6 /* Basemaps.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Basemaps.h; sourceTree = "<group>"; };
784695E0141EC7D000847AB6 /* Basemaps.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = Basemaps.m; sourceTree = "<group>"; };
784695E3141EC8C100847AB6 /* ArcGISOnlineConnection.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ArcGISOnlineConnection.h; sourceTree = "<group>"; };
784695E4141EC8C100847AB6 /* ArcGISOnlineConnection.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ArcGISOnlineConnection.m; sourceTree = "<group>"; };
784695E5141EC8C100847AB6 /* ArcGISOnlineServices.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ArcGISOnlineServices.h; sourceTree = "<group>"; };
784695E6141EC8C100847AB6 /* ArcGISOnlineServices.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ArcGISOnlineServices.m; sourceTree = "<group>"; };
784695F7141ECCAB00847AB6 /* NSDictionary+Additions.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSDictionary+Additions.h"; sourceTree = "<group>"; };
784695F8141ECCAB00847AB6 /* NSDictionary+Additions.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSDictionary+Additions.m"; sourceTree = "<group>"; };
78469607141ECDD200847AB6 /* ContentItem.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ContentItem.h; sourceTree = "<group>"; };
78469608141ECDD200847AB6 /* ContentItem.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ContentItem.m; sourceTree = "<group>"; };
78469632141FCFB700847AB6 /* ArcGISAppDelegate.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ArcGISAppDelegate.h; sourceTree = "<group>"; };
78469633141FCFB700847AB6 /* ArcGISAppDelegate.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ArcGISAppDelegate.m; sourceTree = "<group>"; };
78469635141FD0D800847AB6 /* AppSettings.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AppSettings.h; sourceTree = "<group>"; };
78469636141FD0D800847AB6 /* AppSettings.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = AppSettings.m; sourceTree = "<group>"; };
7846963914201C2600847AB6 /* Security.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Security.framework; path = System/Library/Frameworks/Security.framework; sourceTree = SDKROOT; };
7846963C14201D0200847AB6 /* MapAppSettings.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MapAppSettings.h; sourceTree = "<group>"; };
7846963D14201D0200847AB6 /* MapAppSettings.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MapAppSettings.m; sourceTree = "<group>"; };
7846963F1420213800847AB6 /* SplashImageVC.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SplashImageVC.h; sourceTree = "<group>"; };
784696401420213900847AB6 /* SplashImageVC.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SplashImageVC.m; sourceTree = "<group>"; };
784B11DF14859D5400E1FCF2 /* leftArrowButton.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = leftArrowButton.png; path = Resources/Images/leftArrowButton.png; sourceTree = "<group>"; };
784B11E014859D5400E1FCF2 /* leftArrowButton@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = "leftArrowButton@2x.png"; path = "Resources/Images/leftArrowButton@2x.png"; sourceTree = "<group>"; };
784B11E114859D5400E1FCF2 /* rightArrowButton.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = rightArrowButton.png; path = Resources/Images/rightArrowButton.png; sourceTree = "<group>"; };
784B11E214859D5400E1FCF2 /* rightArrowButton@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = "rightArrowButton@2x.png"; path = "Resources/Images/rightArrowButton@2x.png"; sourceTree = "<group>"; };
784E9AF0142A4EDB006F5937 /* GreenPin.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = GreenPin.png; path = Resources/Images/GreenPin.png; sourceTree = "<group>"; };
784E9AF1142A4EDB006F5937 /* GreenPin@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = "GreenPin@2x.png"; path = "Resources/Images/GreenPin@2x.png"; sourceTree = "<group>"; };
784E9AF2142A4EDB006F5937 /* RedPin.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = RedPin.png; path = Resources/Images/RedPin.png; sourceTree = "<group>"; };
784E9AF3142A4EDB006F5937 /* RedPin@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = "RedPin@2x.png"; path = "Resources/Images/RedPin@2x.png"; sourceTree = "<group>"; };
784E9AF9142A4F95006F5937 /* CurrentLocation.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CurrentLocation.h; sourceTree = "<group>"; };
784E9AFA142A4F95006F5937 /* CurrentLocation.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CurrentLocation.m; sourceTree = "<group>"; };
785139391447A17D008D0E34 /* AddressPin.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = AddressPin.png; path = Resources/Images/AddressPin.png; sourceTree = "<group>"; };
7851393A1447A17D008D0E34 /* AddressPin@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = "AddressPin@2x.png"; path = "Resources/Images/AddressPin@2x.png"; sourceTree = "<group>"; };
7851393B1447A17D008D0E34 /* BookmarkPin.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = BookmarkPin.png; path = Resources/Images/BookmarkPin.png; sourceTree = "<group>"; };
7851393C1447A17D008D0E34 /* BookmarkPin@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = "BookmarkPin@2x.png"; path = "Resources/Images/BookmarkPin@2x.png"; sourceTree = "<group>"; };
7851393D1447A17D008D0E34 /* PlacePin.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = PlacePin.png; path = Resources/Images/PlacePin.png; sourceTree = "<group>"; };
7851393E1447A17D008D0E34 /* PlacePin@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = "PlacePin@2x.png"; path = "Resources/Images/PlacePin@2x.png"; sourceTree = "<group>"; };
785139461447A399008D0E34 /* LocationGraphic.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = LocationGraphic.h; sourceTree = "<group>"; };
785139471447A399008D0E34 /* LocationGraphic.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = LocationGraphic.m; sourceTree = "<group>"; };
785139491447AB33008D0E34 /* NSString+NSString_Additions.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSString+NSString_Additions.h"; sourceTree = "<group>"; };
7851394A1447AB33008D0E34 /* NSString+NSString_Additions.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSString+NSString_Additions.m"; sourceTree = "<group>"; };
7858321B142D326B006E0D95 /* Direction.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Direction.h; sourceTree = "<group>"; };
7858321C142D326B006E0D95 /* Direction.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = Direction.m; sourceTree = "<group>"; };
78583226142D3F70006E0D95 /* DirectionsList.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = DirectionsList.h; sourceTree = "<group>"; };
78583227142D3F70006E0D95 /* DirectionsList.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = DirectionsList.m; sourceTree = "<group>"; };
785C5B04149FC4AE00C7C736 /* StopsList.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = StopsList.h; sourceTree = "<group>"; };
785C5B05149FC4AE00C7C736 /* StopsList.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = StopsList.m; sourceTree = "<group>"; };
786557F314ABF77E00AB9C8B /* StopSignView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = StopSignView.h; sourceTree = "<group>"; };
786557F414ABF77E00AB9C8B /* StopSignView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = StopSignView.m; sourceTree = "<group>"; };
78693253140EA27B00B96F3F /* UIColor+Additions.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIColor+Additions.h"; sourceTree = "<group>"; };
78693254140EA27B00B96F3F /* UIColor+Additions.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIColor+Additions.m"; sourceTree = "<group>"; };
7869325E140EA99C00B96F3F /* MapContentViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MapContentViewController.h; sourceTree = "<group>"; };
7869325F140EA99C00B96F3F /* MapContentViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MapContentViewController.m; sourceTree = "<group>"; };
786D77A214BE65DF00FDDA6C /* icon.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = icon.png; path = Resources/Images/icon.png; sourceTree = "<group>"; };
786D77A314BE65DF00FDDA6C /* icon@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = "icon@2x.png"; path = "Resources/Images/icon@2x.png"; sourceTree = "<group>"; };
786D77BB14BE70BF00FDDA6C /* att_logo.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = att_logo.png; path = Resources/TestImages/att_logo.png; sourceTree = "<group>"; };
786D77BC14BE70BF00FDDA6C /* att_logo@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = "att_logo@2x.png"; path = "Resources/TestImages/att_logo@2x.png"; sourceTree = "<group>"; };
78756E47149A65D000C20D8B /* PassThroughView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PassThroughView.h; sourceTree = "<group>"; };
78756E48149A65D000C20D8B /* PassThroughView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = PassThroughView.m; sourceTree = "<group>"; };
7878C133141A9287000ACBBD /* Info.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = Info.png; path = Resources/Images/Info.png; sourceTree = "<group>"; };
7878C134141A9287000ACBBD /* Info@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = "Info@2x.png"; path = "Resources/Images/Info@2x.png"; sourceTree = "<group>"; };
7878C15B141ACD90000ACBBD /* BasemapsViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = BasemapsViewController.h; sourceTree = "<group>"; };
7878C15C141ACD90000ACBBD /* BasemapsViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = BasemapsViewController.m; sourceTree = "<group>"; };
787BC612142307CF001BFBFF /* DrawableContainerDelegate.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = DrawableContainerDelegate.h; sourceTree = "<group>"; };
787FDC1B147B0592006CEFCB /* BlankSignView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = BlankSignView.h; sourceTree = "<group>"; };
787FDC1C147B0592006CEFCB /* BlankSignView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = BlankSignView.m; sourceTree = "<group>"; };
787FDC1D147B0592006CEFCB /* SignsView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SignsView.h; sourceTree = "<group>"; };
787FDC1E147B0592006CEFCB /* SignsView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SignsView.m; sourceTree = "<group>"; };
787FDC1F147B0592006CEFCB /* SignTableView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SignTableView.h; sourceTree = "<group>"; };
787FDC20147B0592006CEFCB /* SignTableView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SignTableView.m; sourceTree = "<group>"; };
787FDC2A147B0C71006CEFCB /* LocationCalloutView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = LocationCalloutView.h; sourceTree = "<group>"; };
787FDC2B147B0C71006CEFCB /* LocationCalloutView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = LocationCalloutView.m; sourceTree = "<group>"; };
7880A04A14280C8E0026B1BD /* ActionSheet.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = ActionSheet.png; path = Resources/Images/ActionSheet.png; sourceTree = "<group>"; };
7880A04B14280C8E0026B1BD /* ActionSheet@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = "ActionSheet@2x.png"; path = "Resources/Images/ActionSheet@2x.png"; sourceTree = "<group>"; };
7880A04C14280C8E0026B1BD /* LayerContent.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = LayerContent.png; path = Resources/Images/LayerContent.png; sourceTree = "<group>"; };
7880A04D14280C8E0026B1BD /* LayerContent@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = "LayerContent@2x.png"; path = "Resources/Images/LayerContent@2x.png"; sourceTree = "<group>"; };
7880A04E14280C8E0026B1BD /* Routing.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = Routing.png; path = Resources/Images/Routing.png; sourceTree = "<group>"; };
7880A04F14280C8E0026B1BD /* Routing@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = "Routing@2x.png"; path = "Resources/Images/Routing@2x.png"; sourceTree = "<group>"; };
7880A05614280D8B0026B1BD /* Switch.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = Switch.png; path = Resources/Images/Switch.png; sourceTree = "<group>"; };
7880A05714280D8B0026B1BD /* Switch@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = "Switch@2x.png"; path = "Resources/Images/Switch@2x.png"; sourceTree = "<group>"; };
7880A05C14280E3C0026B1BD /* RouteBar.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = RouteBar.png; path = Resources/Images/RouteBar.png; sourceTree = "<group>"; };
7880A05D14280E3C0026B1BD /* RouteBar@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = "RouteBar@2x.png"; path = "Resources/Images/RouteBar@2x.png"; sourceTree = "<group>"; };
7883B2A5148E9A2A00E68173 /* UIBarButtonItem+AppAdditions.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIBarButtonItem+AppAdditions.h"; sourceTree = "<group>"; };
7883B2A6148E9A2A00E68173 /* UIBarButtonItem+AppAdditions.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIBarButtonItem+AppAdditions.m"; sourceTree = "<group>"; };
7883B2AE148E9D2600E68173 /* selected.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = selected.png; path = Resources/Images/selected.png; sourceTree = "<group>"; };
7883B2AF148E9D2600E68173 /* selected@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = "selected@2x.png"; path = "Resources/Images/selected@2x.png"; sourceTree = "<group>"; };
78852EEE14167AA00023CD0F /* Location.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Location.h; sourceTree = "<group>"; };
78852EEF14167AA00023CD0F /* Location.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = Location.m; sourceTree = "<group>"; };
7885CC2514A2ADBF00F8A212 /* GPSDisplayStart.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = GPSDisplayStart.png; path = Resources/Images/GPSDisplayStart.png; sourceTree = "<group>"; };
7885CC2614A2ADBF00F8A212 /* GPSDisplayStart@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = "GPSDisplayStart@2x.png"; path = "Resources/Images/GPSDisplayStart@2x.png"; sourceTree = "<group>"; };
78863EA0148566B100B6E529 /* BearLeft.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = BearLeft.png; path = "Resources/Images/Directions Icons/BearLeft.png"; sourceTree = "<group>"; };
78863EA1148566B100B6E529 /* BearLeft@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = "BearLeft@2x.png"; path = "Resources/Images/Directions Icons/BearLeft@2x.png"; sourceTree = "<group>"; };
78863EA2148566B100B6E529 /* BearRight.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = BearRight.png; path = "Resources/Images/Directions Icons/BearRight.png"; sourceTree = "<group>"; };
78863EA3148566B100B6E529 /* BearRight@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = "BearRight@2x.png"; path = "Resources/Images/Directions Icons/BearRight@2x.png"; sourceTree = "<group>"; };
78863EA4148566B100B6E529 /* GetOffFerry.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = GetOffFerry.png; path = "Resources/Images/Directions Icons/GetOffFerry.png"; sourceTree = "<group>"; };
78863EA5148566B100B6E529 /* GetOffFerry@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = "GetOffFerry@2x.png"; path = "Resources/Images/Directions Icons/GetOffFerry@2x.png"; sourceTree = "<group>"; };
78863EA6148566B100B6E529 /* GetOnRoundabout.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = GetOnRoundabout.png; path = "Resources/Images/Directions Icons/GetOnRoundabout.png"; sourceTree = "<group>"; };
78863EA7148566B100B6E529 /* GetOnRoundabout@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = "GetOnRoundabout@2x.png"; path = "Resources/Images/Directions Icons/GetOnRoundabout@2x.png"; sourceTree = "<group>"; };
78863EA8148566B100B6E529 /* HighwayChange.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = HighwayChange.png; path = "Resources/Images/Directions Icons/HighwayChange.png"; sourceTree = "<group>"; };
78863EA9148566B100B6E529 /* HighwayChange@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = "HighwayChange@2x.png"; path = "Resources/Images/Directions Icons/HighwayChange@2x.png"; sourceTree = "<group>"; };
78863EAA148566B100B6E529 /* MergeOntoHighway.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = MergeOntoHighway.png; path = "Resources/Images/Directions Icons/MergeOntoHighway.png"; sourceTree = "<group>"; };
78863EAB148566B100B6E529 /* MergeOntoHighway@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = "MergeOntoHighway@2x.png"; path = "Resources/Images/Directions Icons/MergeOntoHighway@2x.png"; sourceTree = "<group>"; };
78863EAC148566B100B6E529 /* StraightArrow.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = StraightArrow.png; path = "Resources/Images/Directions Icons/StraightArrow.png"; sourceTree = "<group>"; };
78863EAD148566B100B6E529 /* StraightArrow@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = "StraightArrow@2x.png"; path = "Resources/Images/Directions Icons/StraightArrow@2x.png"; sourceTree = "<group>"; };
78863EAE148566B100B6E529 /* TakeCenterFork.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = TakeCenterFork.png; path = "Resources/Images/Directions Icons/TakeCenterFork.png"; sourceTree = "<group>"; };
78863EAF148566B100B6E529 /* TakeCenterFork@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = "TakeCenterFork@2x.png"; path = "Resources/Images/Directions Icons/TakeCenterFork@2x.png"; sourceTree = "<group>"; };
78863EB0148566B100B6E529 /* TakeExit.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = TakeExit.png; path = "Resources/Images/Directions Icons/TakeExit.png"; sourceTree = "<group>"; };
78863EB1148566B100B6E529 /* TakeExit@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = "TakeExit@2x.png"; path = "Resources/Images/Directions Icons/TakeExit@2x.png"; sourceTree = "<group>"; };
78863EB2148566B100B6E529 /* TakeFerry.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = TakeFerry.png; path = "Resources/Images/Directions Icons/TakeFerry.png"; sourceTree = "<group>"; };
78863EB3148566B100B6E529 /* TakeFerry@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = "TakeFerry@2x.png"; path = "Resources/Images/Directions Icons/TakeFerry@2x.png"; sourceTree = "<group>"; };
78863EB4148566B100B6E529 /* TakeForkLeft.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = TakeForkLeft.png; path = "Resources/Images/Directions Icons/TakeForkLeft.png"; sourceTree = "<group>"; };
78863EB5148566B100B6E529 /* TakeForkLeft@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = "TakeForkLeft@2x.png"; path = "Resources/Images/Directions Icons/TakeForkLeft@2x.png"; sourceTree = "<group>"; };
78863EB6148566B100B6E529 /* TakeForkRight.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = TakeForkRight.png; path = "Resources/Images/Directions Icons/TakeForkRight.png"; sourceTree = "<group>"; };
78863EB7148566B100B6E529 /* TakeForkRight@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = "TakeForkRight@2x.png"; path = "Resources/Images/Directions Icons/TakeForkRight@2x.png"; sourceTree = "<group>"; };
78863EB8148566B100B6E529 /* TakeRampLeft.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = TakeRampLeft.png; path = "Resources/Images/Directions Icons/TakeRampLeft.png"; sourceTree = "<group>"; };
78863EB9148566B100B6E529 /* TakeRampLeft@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = "TakeRampLeft@2x.png"; path = "Resources/Images/Directions Icons/TakeRampLeft@2x.png"; sourceTree = "<group>"; };
78863EBA148566B100B6E529 /* TakeRampRight.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = TakeRampRight.png; path = "Resources/Images/Directions Icons/TakeRampRight.png"; sourceTree = "<group>"; };
78863EBB148566B100B6E529 /* TakeRampRight@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = "TakeRampRight@2x.png"; path = "Resources/Images/Directions Icons/TakeRampRight@2x.png"; sourceTree = "<group>"; };
78863EBC148566B100B6E529 /* TurnLeft.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = TurnLeft.png; path = "Resources/Images/Directions Icons/TurnLeft.png"; sourceTree = "<group>"; };
78863EBD148566B100B6E529 /* TurnLeft@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = "TurnLeft@2x.png"; path = "Resources/Images/Directions Icons/TurnLeft@2x.png"; sourceTree = "<group>"; };
78863EBE148566B100B6E529 /* TurnRight.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = TurnRight.png; path = "Resources/Images/Directions Icons/TurnRight.png"; sourceTree = "<group>"; };
78863EBF148566B100B6E529 /* TurnRight@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = "TurnRight@2x.png"; path = "Resources/Images/Directions Icons/TurnRight@2x.png"; sourceTree = "<group>"; };
78863EC0148566B100B6E529 /* TurnSharpLeft.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = TurnSharpLeft.png; path = "Resources/Images/Directions Icons/TurnSharpLeft.png"; sourceTree = "<group>"; };
78863EC1148566B100B6E529 /* TurnSharpLeft@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = "TurnSharpLeft@2x.png"; path = "Resources/Images/Directions Icons/TurnSharpLeft@2x.png"; sourceTree = "<group>"; };
78863EC2148566B100B6E529 /* TurnSharpRight.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = TurnSharpRight.png; path = "Resources/Images/Directions Icons/TurnSharpRight.png"; sourceTree = "<group>"; };
78863EC3148566B100B6E529 /* TurnSharpRight@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = "TurnSharpRight@2x.png"; path = "Resources/Images/Directions Icons/TurnSharpRight@2x.png"; sourceTree = "<group>"; };
78863EC4148566B100B6E529 /* UTurn.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = UTurn.png; path = "Resources/Images/Directions Icons/UTurn.png"; sourceTree = "<group>"; };
78863EC5148566B100B6E529 /* UTurn@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = "UTurn@2x.png"; path = "Resources/Images/Directions Icons/UTurn@2x.png"; sourceTree = "<group>"; };
78865A0F1422BBC800A51A08 /* PinOvalBlueTableView.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = PinOvalBlueTableView.png; path = Resources/Images/PinOvalBlueTableView.png; sourceTree = "<group>"; };
78865A101422BBC800A51A08 /* PinOvalBlueTableView@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = "PinOvalBlueTableView@2x.png"; path = "Resources/Images/PinOvalBlueTableView@2x.png"; sourceTree = "<group>"; };
788CA8D914202DA10025D2FD /* SystemConfiguration.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = SystemConfiguration.framework; path = System/Library/Frameworks/SystemConfiguration.framework; sourceTree = SDKROOT; };
789197561415B7BD00E85321 /* MapContentViewController.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; name = MapContentViewController.xib; path = Resources/Nibs/MapContentViewController.xib; sourceTree = "<group>"; };
789197571415B7BD00E85321 /* MapLegendViewController.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; name = MapLegendViewController.xib; path = Resources/Nibs/MapLegendViewController.xib; sourceTree = "<group>"; };
789197581415B7BD00E85321 /* MapViewController.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; name = MapViewController.xib; path = Resources/Nibs/MapViewController.xib; sourceTree = "<group>"; };
789197591415B7BD00E85321 /* DrawableContainerViewController.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; name = DrawableContainerViewController.xib; path = Resources/Nibs/DrawableContainerViewController.xib; sourceTree = "<group>"; };
7891975F1415B7EA00E85321 /* ChangeBasemap.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = ChangeBasemap.png; path = Resources/Images/ChangeBasemap.png; sourceTree = "<group>"; };
789197601415B7EA00E85321 /* ChangeBasemap@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = "ChangeBasemap@2x.png"; path = "Resources/Images/ChangeBasemap@2x.png"; sourceTree = "<group>"; };
789197611415B7EA00E85321 /* ContentControllerMap.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = ContentControllerMap.png; path = Resources/Images/ContentControllerMap.png; sourceTree = "<group>"; };
789197621415B7EA00E85321 /* ContentControllerMap@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = "ContentControllerMap@2x.png"; path = "Resources/Images/ContentControllerMap@2x.png"; sourceTree = "<group>"; };
789197631415B7EA00E85321 /* CurrentLocation.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = CurrentLocation.png; path = Resources/Images/CurrentLocation.png; sourceTree = "<group>"; };
789197641415B7EA00E85321 /* CurrentLocation@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = "CurrentLocation@2x.png"; path = "Resources/Images/CurrentLocation@2x.png"; sourceTree = "<group>"; };
789197651415B7EA00E85321 /* CurrentLocationEnabled.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = CurrentLocationEnabled.png; path = Resources/Images/CurrentLocationEnabled.png; sourceTree = "<group>"; };
789197661415B7EA00E85321 /* CurrentLocationEnabled@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = "CurrentLocationEnabled@2x.png"; path = "Resources/Images/CurrentLocationEnabled@2x.png"; sourceTree = "<group>"; };
789197671415B7EA00E85321 /* CurrentLocationSelected.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = CurrentLocationSelected.png; path = Resources/Images/CurrentLocationSelected.png; sourceTree = "<group>"; };
789197681415B7EA00E85321 /* CurrentLocationSelected@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = "CurrentLocationSelected@2x.png"; path = "Resources/Images/CurrentLocationSelected@2x.png"; sourceTree = "<group>"; };
7891976B1415B7EA00E85321 /* MagnifyingGlass.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = MagnifyingGlass.png; path = Resources/Images/MagnifyingGlass.png; sourceTree = "<group>"; };
7891976C1415B7EA00E85321 /* MagnifyingGlass@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = "MagnifyingGlass@2x.png"; path = "Resources/Images/MagnifyingGlass@2x.png"; sourceTree = "<group>"; };
7891976D1415B7EA00E85321 /* Map.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = Map.png; path = Resources/Images/Map.png; sourceTree = "<group>"; };
7891976E1415B7EA00E85321 /* Map@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = "Map@2x.png"; path = "Resources/Images/Map@2x.png"; sourceTree = "<group>"; };
789197731415B7EA00E85321 /* settings.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = settings.png; path = Resources/Images/settings.png; sourceTree = "<group>"; };
789197741415B7EA00E85321 /* settings@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = "settings@2x.png"; path = "Resources/Images/settings@2x.png"; sourceTree = "<group>"; };
789197761415B7EA00E85321 /* Toolbar.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = Toolbar.png; path = Resources/Images/Toolbar.png; sourceTree = "<group>"; };
789197771415B7EA00E85321 /* Toolbar@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = "Toolbar@2x.png"; path = "Resources/Images/Toolbar@2x.png"; sourceTree = "<group>"; };
789197921416761400E85321 /* GeocodeService.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = GeocodeService.h; sourceTree = "<group>"; };
789197931416761400E85321 /* GeocodeService.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = GeocodeService.m; sourceTree = "<group>"; };
7891979914167A4600E85321 /* ArcGISMobileConfig.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ArcGISMobileConfig.h; sourceTree = "<group>"; };
7891979A14167A4600E85321 /* ArcGISMobileConfig.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ArcGISMobileConfig.m; sourceTree = "<group>"; };
789C0A331448E26F00C4CFA3 /* MapViewController+Search.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "MapViewController+Search.h"; sourceTree = "<group>"; };
789C0A341448E26F00C4CFA3 /* MapViewController+Search.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "MapViewController+Search.m"; sourceTree = "<group>"; };
789D95251496A4B100EFF776 /* upselected.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = upselected.png; path = Resources/Images/upselected.png; sourceTree = "<group>"; };
789D95261496A4B100EFF776 /* upselected@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = "upselected@2x.png"; path = "Resources/Images/upselected@2x.png"; sourceTree = "<group>"; };
789FA3CF1422818A001EC0AF /* WhiteChevron.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = WhiteChevron.png; path = Resources/Images/WhiteChevron.png; sourceTree = "<group>"; };
789FA3D01422818A001EC0AF /* WhiteChevron@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = "WhiteChevron@2x.png"; path = "Resources/Images/WhiteChevron@2x.png"; sourceTree = "<group>"; };
78A389E9148701EA00FB57E6 /* list.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = list.png; path = Resources/Images/list.png; sourceTree = "<group>"; };
78A389EA148701EA00FB57E6 /* list@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = "list@2x.png"; path = "Resources/Images/list@2x.png"; sourceTree = "<group>"; };
78ADFD4314180E5B00A771AF /* BookmarksViewController.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; name = BookmarksViewController.xib; path = Resources/Nibs/BookmarksViewController.xib; sourceTree = "<group>"; };
78B929A91419459C002415AB /* AddressBook.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = AddressBook.framework; path = System/Library/Frameworks/AddressBook.framework; sourceTree = SDKROOT; };
78B929AA1419459C002415AB /* AddressBookUI.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = AddressBookUI.framework; path = System/Library/Frameworks/AddressBookUI.framework; sourceTree = SDKROOT; };
78BA0E3F1458C17500530ADD /* Directions.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = Directions.app; sourceTree = BUILT_PRODUCTS_DIR; };
78BA0E5F1458C7BE00530ADD /* Legend.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Legend.h; sourceTree = "<group>"; };
78BA0E601458C7BE00530ADD /* Legend.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = Legend.m; sourceTree = "<group>"; };
78BA0E671458D33200530ADD /* MapLayerInfo+AppAdditions.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "MapLayerInfo+AppAdditions.h"; sourceTree = "<group>"; };
78BA0E681458D33200530ADD /* MapLayerInfo+AppAdditions.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "MapLayerInfo+AppAdditions.m"; sourceTree = "<group>"; };
78BD1D051431317300C43674 /* PullDownTabA.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = PullDownTabA.png; path = Resources/Images/PullDownTabA.png; sourceTree = "<group>"; };
78BD1D061431317300C43674 /* PullDownTabA@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = "PullDownTabA@2x.png"; path = "Resources/Images/PullDownTabA@2x.png"; sourceTree = "<group>"; };
78BFC27F14A119A5001F1522 /* NSNull+Additions.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSNull+Additions.h"; sourceTree = "<group>"; };
78BFC28014A119A5001F1522 /* NSNull+Additions.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSNull+Additions.m"; sourceTree = "<group>"; };
78BFC28414A13303001F1522 /* MapViewController+PlanningRouting.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "MapViewController+PlanningRouting.h"; sourceTree = "<group>"; };
78BFC28514A13303001F1522 /* MapViewController+PlanningRouting.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "MapViewController+PlanningRouting.m"; sourceTree = "<group>"; };
78C807361421027500C4987C /* Default.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = Default.png; path = Resources/Images/Default.png; sourceTree = "<group>"; };
78C807371421027500C4987C /* Default@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = "Default@2x.png"; path = "Resources/Images/Default@2x.png"; sourceTree = "<group>"; };
78C8073B1421082A00C4987C /* libstdc++.dylib */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.dylib"; name = "libstdc++.dylib"; path = "usr/lib/gcc/arm-apple-darwin10/4.2.1/libstdc++.dylib"; sourceTree = SDKROOT; };
78C8073D1421085600C4987C /* MessageUI.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = MessageUI.framework; path = System/Library/Frameworks/MessageUI.framework; sourceTree = SDKROOT; };
78C8073F1421087C00C4987C /* libxml2.dylib */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.dylib"; name = libxml2.dylib; path = usr/lib/libxml2.dylib; sourceTree = SDKROOT; };
78C80741142114CF00C4987C /* MapViewController+MapTapping.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "MapViewController+MapTapping.h"; sourceTree = "<group>"; };
78C80742142114CF00C4987C /* MapViewController+MapTapping.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "MapViewController+MapTapping.m"; sourceTree = "<group>"; };
78C807441421393000C4987C /* AGSGeometry+AppAdditions.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "AGSGeometry+AppAdditions.h"; sourceTree = "<group>"; };
78C807451421393000C4987C /* AGSGeometry+AppAdditions.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "AGSGeometry+AppAdditions.m"; sourceTree = "<group>"; };
78C807471421558E00C4987C /* bookmarks.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = bookmarks.png; path = Resources/Images/bookmarks.png; sourceTree = "<group>"; };
78C807481421558E00C4987C /* bookmarks@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = "bookmarks@2x.png"; path = "Resources/Images/bookmarks@2x.png"; sourceTree = "<group>"; };
78C8074B142155CF00C4987C /* hidepin.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = hidepin.png; path = Resources/Images/hidepin.png; sourceTree = "<group>"; };
78C8074C142155CF00C4987C /* hidepin@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = "hidepin@2x.png"; path = "Resources/Images/hidepin@2x.png"; sourceTree = "<group>"; };
78CA0019147D6EB3008446BA /* RouteSolver.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = RouteSolver.h; sourceTree = "<group>"; };
78CA001A147D6EB3008446BA /* RouteSolver.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = RouteSolver.m; sourceTree = "<group>"; };
78CBDBD9142981C100BEFB46 /* IconDownloader.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IconDownloader.h; sourceTree = "<group>"; };
78CBDBDA142981C100BEFB46 /* IconDownloader.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = IconDownloader.m; sourceTree = "<group>"; };
78D13FA5144F994F00E8970A /* UIImage+AppAdditions.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIImage+AppAdditions.h"; sourceTree = "<group>"; };
78D13FA6144F994F00E8970A /* UIImage+AppAdditions.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIImage+AppAdditions.m"; sourceTree = "<group>"; };
78D53BFC14241095005B0D82 /* Search.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Search.h; sourceTree = "<group>"; };
78D53BFD14241095005B0D82 /* Search.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = Search.m; sourceTree = "<group>"; };
78D53C0014241372005B0D82 /* UserSearchResults.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = UserSearchResults.h; sourceTree = "<group>"; };
78D53C0114241372005B0D82 /* UserSearchResults.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = UserSearchResults.m; sourceTree = "<group>"; };
78D53C031424177C005B0D82 /* TableViewDrawable.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = TableViewDrawable.h; sourceTree = "<group>"; };
78E9039F1487E8EE004D5CA2 /* speedometer.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = speedometer.png; path = "Resources/Images/Directions Icons/speedometer.png"; sourceTree = "<group>"; };
78E903A01487E8EE004D5CA2 /* speedometer@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = "speedometer@2x.png"; path = "Resources/Images/Directions Icons/speedometer@2x.png"; sourceTree = "<group>"; };
78E903A71487E8FC004D5CA2 /* GoHereButton.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = GoHereButton.png; path = Resources/Images/GoHereButton.png; sourceTree = "<group>"; };
78E903A81487E8FC004D5CA2 /* GoHereButton@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = "GoHereButton@2x.png"; path = "Resources/Images/GoHereButton@2x.png"; sourceTree = "<group>"; };
78EA4E7E14686DAA003B5B95 /* RouteSolverSettings.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = RouteSolverSettings.h; sourceTree = "<group>"; };
78EA4E7F14686DAA003B5B95 /* RouteSolverSettings.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = RouteSolverSettings.m; sourceTree = "<group>"; };
78EEEDCA14903DAD00EBE720 /* ToggleSegmentedControl.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ToggleSegmentedControl.h; sourceTree = "<group>"; };
78EEEDCB14903DAD00EBE720 /* ToggleSegmentedControl.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ToggleSegmentedControl.m; sourceTree = "<group>"; };
78F09FE8145629D600075819 /* MapShareUtility.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MapShareUtility.h; sourceTree = "<group>"; };
78F09FE9145629D600075819 /* MapShareUtility.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MapShareUtility.m; sourceTree = "<group>"; };
78F2A6161450CB1E0027DC56 /* DirectionsPrintRenderer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = DirectionsPrintRenderer.h; sourceTree = "<group>"; };
78F2A6171450CB1E0027DC56 /* DirectionsPrintRenderer.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = DirectionsPrintRenderer.m; sourceTree = "<group>"; };
78F2A6191450E9B70027DC56 /* OverviewDirection.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OverviewDirection.h; sourceTree = "<group>"; };
78F2A61A1450E9B70027DC56 /* OverviewDirection.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = OverviewDirection.m; sourceTree = "<group>"; };
78F2A6301451E9930027DC56 /* RecentSearches.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = RecentSearches.h; sourceTree = "<group>"; };
78F2A6311451E9930027DC56 /* RecentSearches.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = RecentSearches.m; sourceTree = "<group>"; };
78F69BF71469F1D20041716B /* StreetSignView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = StreetSignView.h; sourceTree = "<group>"; };
78F69BF81469F1D20041716B /* StreetSignView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = StreetSignView.m; sourceTree = "<group>"; };
78F72B58145F6178009269BC /* Default_icon.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = Default_icon.png; path = Resources/TestImages/Default_icon.png; sourceTree = "<group>"; };
78F72B59145F6178009269BC /* Default_icon@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = "Default_icon@2x.png"; path = "Resources/TestImages/Default_icon@2x.png"; sourceTree = "<group>"; };
78F82B2D149A853100C83034 /* AGSSymbol+AppAdditions.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "AGSSymbol+AppAdditions.h"; sourceTree = "<group>"; };
78F82B2E149A853100C83034 /* AGSSymbol+AppAdditions.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "AGSSymbol+AppAdditions.m"; sourceTree = "<group>"; };
78FCC111141E769A005926F6 /* BasemapsTableViewCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = BasemapsTableViewCell.h; sourceTree = "<group>"; };
78FCC112141E769A005926F6 /* BasemapsTableViewCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = BasemapsTableViewCell.m; sourceTree = "<group>"; };
78FCC116141E7B10005926F6 /* BasemapsViewController.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; name = BasemapsViewController.xib; path = Resources/Nibs/BasemapsViewController.xib; sourceTree = "<group>"; };
78FCC11B141E867B005926F6 /* SampleMapThumb.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = SampleMapThumb.png; path = Resources/Images/SampleMapThumb.png; sourceTree = "<group>"; };
882A01EA160BCE3100027BE2 /* Default-568h@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "Default-568h@2x.png"; sourceTree = "<group>"; };
882A01ED160BD15300027BE2 /* libz.dylib */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.dylib"; name = libz.dylib; path = usr/lib/libz.dylib; sourceTree = SDKROOT; };
882A01EF160BD16A00027BE2 /* libstdc++.dylib */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.dylib"; name = "libstdc++.dylib"; path = "usr/lib/libstdc++.dylib"; sourceTree = SDKROOT; };
882A01F31610BD8400027BE2 /* NSDictionary+AGSAdditions.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = "NSDictionary+AGSAdditions.h"; path = "../../ArcGIS_iOS_3/Headers/NSDictionary+AGSAdditions.h"; sourceTree = "<group>"; };
882A01F41610D6AA00027BE2 /* MapKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = MapKit.framework; path = System/Library/Frameworks/MapKit.framework; sourceTree = SDKROOT; };
8868F9551616325400FB9238 /* CFNetwork.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CFNetwork.framework; path = System/Library/Frameworks/CFNetwork.framework; sourceTree = SDKROOT; };
8868F9581616480500FB9238 /* MapStates.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MapStates.h; sourceTree = "<group>"; };
8868F968161A024200FB9238 /* AudioUnit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = AudioUnit.framework; path = System/Library/Frameworks/AudioUnit.framework; sourceTree = SDKROOT; };
8868F969161A024300FB9238 /* CoreAudio.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreAudio.framework; path = System/Library/Frameworks/CoreAudio.framework; sourceTree = SDKROOT; };
8868F975161C9A7100FB9238 /* WIDeskViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = WIDeskViewController.h; sourceTree = "<group>"; };
8868F976161C9A7100FB9238 /* WIDeskViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = WIDeskViewController.m; sourceTree = "<group>"; };
88CFA5CE1615177B0084EB93 /* RoutingDelegate.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = RoutingDelegate.h; sourceTree = "<group>"; };
88CFA5D216162DAB0084EB93 /* AVFoundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = AVFoundation.framework; path = System/Library/Frameworks/AVFoundation.framework; sourceTree = SDKROOT; };
88CFA5D416162DBA0084EB93 /* AudioToolbox.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = AudioToolbox.framework; path = System/Library/Frameworks/AudioToolbox.framework; sourceTree = SDKROOT; };
88DE33FF1628A9BA00D5D93B /* LocationMarker.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = LocationMarker.h; path = Map/LocationMarker/LocationMarker.h; sourceTree = SOURCE_ROOT; };
88DE34001628A9BA00D5D93B /* LocationMarker.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = LocationMarker.m; path = Map/LocationMarker/LocationMarker.m; sourceTree = SOURCE_ROOT; };
/* End PBXFileReference section */
/* Begin PBXFrameworksBuildPhase section */
78BA0DBD1458C17500530ADD /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
8868F96E161A029200FB9238 /* MapKit.framework in Frameworks */,
8868F96D161A028600FB9238 /* AVFoundation.framework in Frameworks */,
8868F96C161A027A00FB9238 /* CFNetwork.framework in Frameworks */,
8868F96B161A024400FB9238 /* CoreAudio.framework in Frameworks */,
8868F967161A024200FB9238 /* AudioToolbox.framework in Frameworks */,
8868F966161A018800FB9238 /* libstdc++.dylib in Frameworks */,
78BA0DBE1458C17500530ADD /* MessageUI.framework in Frameworks */,
78BA0DBF1458C17500530ADD /* libxml2.dylib in Frameworks */,
78BA0DC11458C17500530ADD /* SystemConfiguration.framework in Frameworks */,
78BA0DC21458C17500530ADD /* Security.framework in Frameworks */,
78BA0DC31458C17500530ADD /* AddressBook.framework in Frameworks */,
78BA0DC41458C17500530ADD /* AddressBookUI.framework in Frameworks */,
78BA0DC51458C17500530ADD /* UIKit.framework in Frameworks */,
78BA0DC61458C17500530ADD /* Foundation.framework in Frameworks */,
78BA0DC71458C17500530ADD /* CoreGraphics.framework in Frameworks */,
78BA0DC81458C17500530ADD /* CoreText.framework in Frameworks */,
78BA0DC91458C17500530ADD /* CoreLocation.framework in Frameworks */,
78BA0DCA1458C17500530ADD /* MediaPlayer.framework in Frameworks */,
78BA0DCB1458C17500530ADD /* MobileCoreServices.framework in Frameworks */,
78BA0DCC1458C17500530ADD /* QuartzCore.framework in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXFrameworksBuildPhase section */
/* Begin PBXGroup section */
7804D98D147B04150026AF5D /* SignViews */ = {
isa = PBXGroup;
children = (
7814840B14841CAA0002B33D /* SignTableViewCell.h */,
7814840C14841CAA0002B33D /* SignTableViewCell.m */,
787FDC1B147B0592006CEFCB /* BlankSignView.h */,
787FDC1C147B0592006CEFCB /* BlankSignView.m */,
787FDC1D147B0592006CEFCB /* SignsView.h */,
787FDC1E147B0592006CEFCB /* SignsView.m */,
787FDC1F147B0592006CEFCB /* SignTableView.h */,
787FDC20147B0592006CEFCB /* SignTableView.m */,
78F69BF71469F1D20041716B /* StreetSignView.h */,
78F69BF81469F1D20041716B /* StreetSignView.m */,
787FDC2A147B0C71006CEFCB /* LocationCalloutView.h */,
787FDC2B147B0C71006CEFCB /* LocationCalloutView.m */,
786557F314ABF77E00AB9C8B /* StopSignView.h */,
786557F414ABF77E00AB9C8B /* StopSignView.m */,
);
name = SignViews;
sourceTree = "<group>";
};
780501BA142FDF410048B099 /* Lists and Collections */ = {
isa = PBXGroup;
children = (
780501B6142FD7460048B099 /* DrawableList.h */,
780501B7142FD7460048B099 /* DrawableList.m */,
780501BC142FDFD60048B099 /* DrawableCollection.h */,
780501BD142FDFD60048B099 /* DrawableCollection.m */,
);
name = "Lists and Collections";
sourceTree = "<group>";
};
7808CA8E145F26A4007DC3B6 /* Throwaway Testing Images */ = {
isa = PBXGroup;
children = (
786D77BB14BE70BF00FDDA6C /* att_logo.png */,
786D77BC14BE70BF00FDDA6C /* att_logo@2x.png */,
78383817146865A7007C00C2 /* map_button.png */,
78383818146865A7007C00C2 /* map_button@2x.png */,
78F72B58145F6178009269BC /* Default_icon.png */,
78F72B59145F6178009269BC /* Default_icon@2x.png */,
7808CAB7145F39E7007DC3B6 /* wells_icon.png */,
7808CAB8145F39E7007DC3B6 /* wells_icon@2x.png */,
7808CAA9145F3689007DC3B6 /* SF_Icon.png */,
7808CAAA145F3689007DC3B6 /* SF_Icon@2x.png */,
);
name = "Throwaway Testing Images";
sourceTree = "<group>";
};
782FFD6B1427AE7100E02896 /* Routing */ = {
isa = PBXGroup;
children = (
78F2A6191450E9B70027DC56 /* OverviewDirection.h */,
78F2A61A1450E9B70027DC56 /* OverviewDirection.m */,
7858321B142D326B006E0D95 /* Direction.h */,
7858321C142D326B006E0D95 /* Direction.m */,
78583226142D3F70006E0D95 /* DirectionsList.h */,
78583227142D3F70006E0D95 /* DirectionsList.m */,
7841C190147C313B006871F1 /* Route.h */,
7841C191147C313B006871F1 /* Route.m */,
78CA0019147D6EB3008446BA /* RouteSolver.h */,
78CA001A147D6EB3008446BA /* RouteSolver.m */,
785C5B04149FC4AE00C7C736 /* StopsList.h */,
785C5B05149FC4AE00C7C736 /* StopsList.m */,
);
name = Routing;
sourceTree = "<group>";
};
78342C7A140D9CB400B0F354 = {
isa = PBXGroup;
children = (
8868F968161A024200FB9238 /* AudioUnit.framework */,
8868F969161A024300FB9238 /* CoreAudio.framework */,
8868F9551616325400FB9238 /* CFNetwork.framework */,
88CFA5D416162DBA0084EB93 /* AudioToolbox.framework */,
88CFA5D216162DAB0084EB93 /* AVFoundation.framework */,
882A01F41610D6AA00027BE2 /* MapKit.framework */,
882A01EF160BD16A00027BE2 /* libstdc++.dylib */,
882A01ED160BD15300027BE2 /* libz.dylib */,
882A01EA160BCE3100027BE2 /* Default-568h@2x.png */,
78342C99140D9CB400B0F354 /* Map */,
78342C88140D9CB400B0F354 /* Frameworks */,
78342C86140D9CB400B0F354 /* Products */,
);
sourceTree = "<group>";
};
78342C86140D9CB400B0F354 /* Products */ = {
isa = PBXGroup;
children = (
78BA0E3F1458C17500530ADD /* Directions.app */,
);
name = Products;
sourceTree = "<group>";
};
78342C88140D9CB400B0F354 /* Frameworks */ = {
isa = PBXGroup;
children = (
78C8073F1421087C00C4987C /* libxml2.dylib */,
78C8073D1421085600C4987C /* MessageUI.framework */,
78C8073B1421082A00C4987C /* libstdc++.dylib */,
788CA8D914202DA10025D2FD /* SystemConfiguration.framework */,
7846963914201C2600847AB6 /* Security.framework */,
78B929A91419459C002415AB /* AddressBook.framework */,
78B929AA1419459C002415AB /* AddressBookUI.framework */,
78342C89140D9CB400B0F354 /* UIKit.framework */,
78342C8B140D9CB400B0F354 /* Foundation.framework */,
78342C8D140D9CB400B0F354 /* CoreGraphics.framework */,
78342C8F140D9CB400B0F354 /* CoreText.framework */,
78342C91140D9CB400B0F354 /* CoreLocation.framework */,
78342C93140D9CB400B0F354 /* MediaPlayer.framework */,
78342C95140D9CB400B0F354 /* MobileCoreServices.framework */,
78342C97140D9CB400B0F354 /* QuartzCore.framework */,
);
name = Frameworks;
sourceTree = "<group>";
};
78342C99140D9CB400B0F354 /* Map */ = {
isa = PBXGroup;
children = (
8868F978161CE90F00FB9238 /* LocationMarker */,
882A01F31610BD8400027BE2 /* NSDictionary+AGSAdditions.h */,
78342CA8140D9CB500B0F354 /* ArcGIS.bundle */,
78342CA2140D9CB400B0F354 /* MapAppDelegate.h */,
78342CA3140D9CB400B0F354 /* MapAppDelegate.m */,
7846963B14201CE200847AB6 /* App Settings */,
784695DD141EC2EA00847AB6 /* Container Classes */,
789197951416789C00E85321 /* Locations */,
78693256140EA8EB00B96F3F /* Main Map Page */,
78693258140EA92600B96F3F /* Map Content */,
782FFD6B1427AE7100E02896 /* Routing */,
787AD62C141139F7007DA7CA /* Search */,
784695E2141EC7FF00847AB6 /* Shared Code */,
78F2A6101450CA9B0027DC56 /* Sharing */,
7804D98D147B04150026AF5D /* SignViews */,
78342C9A140D9CB400B0F354 /* Supporting Files */,
78342CC0140DAC4100B0F354 /* Utililty */,
88CFA5CE1615177B0084EB93 /* RoutingDelegate.h */,
);
path = Map;
sourceTree = "<group>";
};
78342C9A140D9CB400B0F354 /* Supporting Files */ = {
isa = PBXGroup;
children = (
782C85B314B64DF500221A65 /* Directions-Info.plist */,
78693257140EA8FC00B96F3F /* Nibs */,
78342CB5140DA15300B0F354 /* Images */,
78342C9B140D9CB400B0F354 /* Map-Info.plist */,
78342C9C140D9CB400B0F354 /* InfoPlist.strings */,
78342C9F140D9CB400B0F354 /* main.m */,
78342CA1140D9CB400B0F354 /* Map-Prefix.pch */,
);
name = "Supporting Files";
sourceTree = "<group>";
};
78342CB5140DA15300B0F354 /* Images */ = {
isa = PBXGroup;
children = (
786D77A214BE65DF00FDDA6C /* icon.png */,
786D77A314BE65DF00FDDA6C /* icon@2x.png */,
7885CC2514A2ADBF00F8A212 /* GPSDisplayStart.png */,
7885CC2614A2ADBF00F8A212 /* GPSDisplayStart@2x.png */,
789D95251496A4B100EFF776 /* upselected.png */,
789D95261496A4B100EFF776 /* upselected@2x.png */,
786C8278146DE8FA00C8A002 /* Directions */,
7808CA8E145F26A4007DC3B6 /* Throwaway Testing Images */,
7883B2AE148E9D2600E68173 /* selected.png */,
7883B2AF148E9D2600E68173 /* selected@2x.png */,
78E903A71487E8FC004D5CA2 /* GoHereButton.png */,
78E903A81487E8FC004D5CA2 /* GoHereButton@2x.png */,
78A389E9148701EA00FB57E6 /* list.png */,
78A389EA148701EA00FB57E6 /* list@2x.png */,
784B11DF14859D5400E1FCF2 /* leftArrowButton.png */,
784B11E014859D5400E1FCF2 /* leftArrowButton@2x.png */,
784B11E114859D5400E1FCF2 /* rightArrowButton.png */,
784B11E214859D5400E1FCF2 /* rightArrowButton@2x.png */,
785139391447A17D008D0E34 /* AddressPin.png */,
7851393A1447A17D008D0E34 /* AddressPin@2x.png */,
7851393B1447A17D008D0E34 /* BookmarkPin.png */,
7851393C1447A17D008D0E34 /* BookmarkPin@2x.png */,
7851393D1447A17D008D0E34 /* PlacePin.png */,
7851393E1447A17D008D0E34 /* PlacePin@2x.png */,
780382F7144631D90066BF3E /* ContactPin.png */,
780382F8144631DC0066BF3E /* ContactPin@2x.png */,
78BD1D051431317300C43674 /* PullDownTabA.png */,
78BD1D061431317300C43674 /* PullDownTabA@2x.png */,
78340030142CF20E00DDC5B6 /* LeftArrow.png */,
78340031142CF20E00DDC5B6 /* LeftArrow@2x.png */,
78340032142CF20E00DDC5B6 /* RightArrow.png */,
78340033142CF20E00DDC5B6 /* RightArrow@2x.png */,
7814BED8142BB64600753F21 /* Refresh.png */,
7814BED9142BB64600753F21 /* Refresh@2x.png */,
784E9AF0142A4EDB006F5937 /* GreenPin.png */,
784E9AF1142A4EDB006F5937 /* GreenPin@2x.png */,
784E9AF2142A4EDB006F5937 /* RedPin.png */,
784E9AF3142A4EDB006F5937 /* RedPin@2x.png */,
781F832E14290D5B00D063A5 /* MaxMinLayerTriangle-Open.png */,
781F832F14290D5B00D063A5 /* MaxMinLayerTriangle-Open@2x.png */,
781F833014290D5B00D063A5 /* MaxMinLayerTriangle.png */,
781F833114290D5B00D063A5 /* MaxMinLayerTriangle@2x.png */,
78286C9314282BC700705A3F /* OverlayChevron.png */,
78286C9414282BC700705A3F /* OverlayChevron@2x.png */,
78286C861428111800705A3F /* MaxMinLayer-Open.png */,
78286C871428111800705A3F /* MaxMinLayer-Open@2x.png */,
78286C881428111800705A3F /* MaxMinLayer.png */,
78286C891428111800705A3F /* MaxMinLayer@2x.png */,
7880A05C14280E3C0026B1BD /* RouteBar.png */,
7880A05D14280E3C0026B1BD /* RouteBar@2x.png */,
7880A05614280D8B0026B1BD /* Switch.png */,
7880A05714280D8B0026B1BD /* Switch@2x.png */,
7880A04A14280C8E0026B1BD /* ActionSheet.png */,
7880A04B14280C8E0026B1BD /* ActionSheet@2x.png */,
7880A04C14280C8E0026B1BD /* LayerContent.png */,
7880A04D14280C8E0026B1BD /* LayerContent@2x.png */,
7880A04E14280C8E0026B1BD /* Routing.png */,
7880A04F14280C8E0026B1BD /* Routing@2x.png */,
78865A0F1422BBC800A51A08 /* PinOvalBlueTableView.png */,
78865A101422BBC800A51A08 /* PinOvalBlueTableView@2x.png */,
789FA3CF1422818A001EC0AF /* WhiteChevron.png */,
789FA3D01422818A001EC0AF /* WhiteChevron@2x.png */,
78C8074B142155CF00C4987C /* hidepin.png */,
78C8074C142155CF00C4987C /* hidepin@2x.png */,
78C807471421558E00C4987C /* bookmarks.png */,
78C807481421558E00C4987C /* bookmarks@2x.png */,
78C807361421027500C4987C /* Default.png */,
78C807371421027500C4987C /* Default@2x.png */,
784695BD141EA3A400847AB6 /* basemaps_mask.png */,
78FCC11B141E867B005926F6 /* SampleMapThumb.png */,
7878C133141A9287000ACBBD /* Info.png */,
7878C134141A9287000ACBBD /* Info@2x.png */,
7891975F1415B7EA00E85321 /* ChangeBasemap.png */,
789197601415B7EA00E85321 /* ChangeBasemap@2x.png */,
789197611415B7EA00E85321 /* ContentControllerMap.png */,
789197621415B7EA00E85321 /* ContentControllerMap@2x.png */,
789197631415B7EA00E85321 /* CurrentLocation.png */,
789197641415B7EA00E85321 /* CurrentLocation@2x.png */,
789197651415B7EA00E85321 /* CurrentLocationEnabled.png */,
789197661415B7EA00E85321 /* CurrentLocationEnabled@2x.png */,
789197671415B7EA00E85321 /* CurrentLocationSelected.png */,
789197681415B7EA00E85321 /* CurrentLocationSelected@2x.png */,
7891976B1415B7EA00E85321 /* MagnifyingGlass.png */,
7891976C1415B7EA00E85321 /* MagnifyingGlass@2x.png */,
7891976D1415B7EA00E85321 /* Map.png */,
7891976E1415B7EA00E85321 /* Map@2x.png */,
789197731415B7EA00E85321 /* settings.png */,
789197741415B7EA00E85321 /* settings@2x.png */,
789197761415B7EA00E85321 /* Toolbar.png */,
789197771415B7EA00E85321 /* Toolbar@2x.png */,
);
name = Images;
sourceTree = "<group>";
};
78342CC0140DAC4100B0F354 /* Utililty */ = {
isa = PBXGroup;
children = (
78EEEDC914903D7900EBE720 /* Custom Controls */,
785139491447AB33008D0E34 /* NSString+NSString_Additions.h */,
7851394A1447AB33008D0E34 /* NSString+NSString_Additions.m */,
78D13FA5144F994F00E8970A /* UIImage+AppAdditions.h */,
78D13FA6144F994F00E8970A /* UIImage+AppAdditions.m */,
7883B2A5148E9A2A00E68173 /* UIBarButtonItem+AppAdditions.h */,
7883B2A6148E9A2A00E68173 /* UIBarButtonItem+AppAdditions.m */,
78756E47149A65D000C20D8B /* PassThroughView.h */,
78756E48149A65D000C20D8B /* PassThroughView.m */,
78F82B2D149A853100C83034 /* AGSSymbol+AppAdditions.h */,
78F82B2E149A853100C83034 /* AGSSymbol+AppAdditions.m */,
78BFC27F14A119A5001F1522 /* NSNull+Additions.h */,
78BFC28014A119A5001F1522 /* NSNull+Additions.m */,
);
name = Utililty;
sourceTree = "<group>";
};
784695C8141EA9BB00847AB6 /* Legend/Content Control */ = {
isa = PBXGroup;
children = (
784695C9141EA9D500847AB6 /* SectionHeaderView.h */,
784695CA141EA9D500847AB6 /* SectionHeaderView.m */,
784695CB141EA9D500847AB6 /* SectionInfo.h */,
784695CC141EA9D500847AB6 /* SectionInfo.m */,
);
name = "Legend/Content Control";
sourceTree = "<group>";
};
784695DD141EC2EA00847AB6 /* Container Classes */ = {
isa = PBXGroup;
children = (
780501BA142FDF410048B099 /* Lists and Collections */,
787BC612142307CF001BFBFF /* DrawableContainerDelegate.h */,
784695DE141EC32E00847AB6 /* NamedGeometry.h */,
78D53C031424177C005B0D82 /* TableViewDrawable.h */,
782EBF9214869F4A00A69AEE /* DrawableResultsTableView.h */,
782EBF9314869F4A00A69AEE /* DrawableResultsTableView.m */,
);
name = "Container Classes";
sourceTree = "<group>";
};
784695E2141EC7FF00847AB6 /* Shared Code */ = {
isa = PBXGroup;
children = (
78BA0E5E1458C79000530ADD /* Legend */,
78BA0E5D1458C76500530ADD /* Categories */,
78469631141FCFA400847AB6 /* App Delegate */,
784695F1141EC8C500847AB6 /* Connection Stuff */,
78469607141ECDD200847AB6 /* ContentItem.h */,
78469608141ECDD200847AB6 /* ContentItem.m */,
78CBDBD9142981C100BEFB46 /* IconDownloader.h */,
78CBDBDA142981C100BEFB46 /* IconDownloader.m */,
);
name = "Shared Code";
sourceTree = "<group>";
};
784695F1141EC8C500847AB6 /* Connection Stuff */ = {
isa = PBXGroup;
children = (
789197921416761400E85321 /* GeocodeService.h */,
789197931416761400E85321 /* GeocodeService.m */,
7846963F1420213800847AB6 /* SplashImageVC.h */,
784696401420213900847AB6 /* SplashImageVC.m */,
784695E3141EC8C100847AB6 /* ArcGISOnlineConnection.h */,
784695E4141EC8C100847AB6 /* ArcGISOnlineConnection.m */,
784695E5141EC8C100847AB6 /* ArcGISOnlineServices.h */,
784695E6141EC8C100847AB6 /* ArcGISOnlineServices.m */,
7891979914167A4600E85321 /* ArcGISMobileConfig.h */,
7891979A14167A4600E85321 /* ArcGISMobileConfig.m */,
);
name = "Connection Stuff";
sourceTree = "<group>";
};
78469631141FCFA400847AB6 /* App Delegate */ = {
isa = PBXGroup;
children = (
78469632141FCFB700847AB6 /* ArcGISAppDelegate.h */,
78469633141FCFB700847AB6 /* ArcGISAppDelegate.m */,
78469635141FD0D800847AB6 /* AppSettings.h */,
78469636141FD0D800847AB6 /* AppSettings.m */,
);
name = "App Delegate";
sourceTree = "<group>";
};
7846963B14201CE200847AB6 /* App Settings */ = {
isa = PBXGroup;
children = (
8868F9581616480500FB9238 /* MapStates.h */,
7846963C14201D0200847AB6 /* MapAppSettings.h */,
7846963D14201D0200847AB6 /* MapAppSettings.m */,
78EA4E7E14686DAA003B5B95 /* RouteSolverSettings.h */,
78EA4E7F14686DAA003B5B95 /* RouteSolverSettings.m */,
);
name = "App Settings";
sourceTree = "<group>";
};
78693256140EA8EB00B96F3F /* Main Map Page */ = {
isa = PBXGroup;
children = (
78342CAA140D9CB500B0F354 /* MapViewController.h */,
78342CAB140D9CB500B0F354 /* MapViewController.m */,
78C80741142114CF00C4987C /* MapViewController+MapTapping.h */,
78C80742142114CF00C4987C /* MapViewController+MapTapping.m */,
789C0A331448E26F00C4CFA3 /* MapViewController+Search.h */,
789C0A341448E26F00C4CFA3 /* MapViewController+Search.m */,
78BFC28414A13303001F1522 /* MapViewController+PlanningRouting.h */,
78BFC28514A13303001F1522 /* MapViewController+PlanningRouting.m */,
);
name = "Main Map Page";
sourceTree = "<group>";
};
78693257140EA8FC00B96F3F /* Nibs */ = {
isa = PBXGroup;
children = (
781F83411429133400D063A5 /* BasemapsTableViewCell.xib */,
781F83421429133400D063A5 /* SettingsViewController.xib */,
78FCC116141E7B10005926F6 /* BasemapsViewController.xib */,
78ADFD4314180E5B00A771AF /* BookmarksViewController.xib */,
789197561415B7BD00E85321 /* MapContentViewController.xib */,
789197571415B7BD00E85321 /* MapLegendViewController.xib */,
789197581415B7BD00E85321 /* MapViewController.xib */,
789197591415B7BD00E85321 /* DrawableContainerViewController.xib */,
78342CA5140D9CB400B0F354 /* MainWindow.xib */,
);
name = Nibs;
sourceTree = "<group>";
};
78693258140EA92600B96F3F /* Map Content */ = {
isa = PBXGroup;
children = (
78EA63F7140F0A180046E31B /* Settings */,
78EA63F6140F0A060046E31B /* Map Content */,
);
name = "Map Content";
sourceTree = "<group>";
};
786C8278146DE8FA00C8A002 /* Directions */ = {
isa = PBXGroup;
children = (
78E9039F1487E8EE004D5CA2 /* speedometer.png */,
78E903A01487E8EE004D5CA2 /* speedometer@2x.png */,
78863EA0148566B100B6E529 /* BearLeft.png */,
78863EA1148566B100B6E529 /* BearLeft@2x.png */,
78863EA2148566B100B6E529 /* BearRight.png */,
78863EA3148566B100B6E529 /* BearRight@2x.png */,
78863EA4148566B100B6E529 /* GetOffFerry.png */,
78863EA5148566B100B6E529 /* GetOffFerry@2x.png */,
78863EA6148566B100B6E529 /* GetOnRoundabout.png */,
78863EA7148566B100B6E529 /* GetOnRoundabout@2x.png */,
78863EA8148566B100B6E529 /* HighwayChange.png */,
78863EA9148566B100B6E529 /* HighwayChange@2x.png */,
78863EAA148566B100B6E529 /* MergeOntoHighway.png */,
78863EAB148566B100B6E529 /* MergeOntoHighway@2x.png */,
78863EAC148566B100B6E529 /* StraightArrow.png */,
78863EAD148566B100B6E529 /* StraightArrow@2x.png */,
78863EAE148566B100B6E529 /* TakeCenterFork.png */,
78863EAF148566B100B6E529 /* TakeCenterFork@2x.png */,
78863EB0148566B100B6E529 /* TakeExit.png */,
78863EB1148566B100B6E529 /* TakeExit@2x.png */,
78863EB2148566B100B6E529 /* TakeFerry.png */,
78863EB3148566B100B6E529 /* TakeFerry@2x.png */,
78863EB4148566B100B6E529 /* TakeForkLeft.png */,