-
Notifications
You must be signed in to change notification settings - Fork 81
Expand file tree
/
Copy pathproject.pbxproj
More file actions
4400 lines (4388 loc) · 427 KB
/
project.pbxproj
File metadata and controls
4400 lines (4388 loc) · 427 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 */
0595C6611C84292700210852 /* APCLocalJSONParser.h in Headers */ = {isa = PBXBuildFile; fileRef = 0595C65F1C84292700210852 /* APCLocalJSONParser.h */; };
0595C6621C84292700210852 /* APCLocalJSONParser.m in Sources */ = {isa = PBXBuildFile; fileRef = 0595C6601C84292700210852 /* APCLocalJSONParser.m */; };
08023C4F1AA94F48008E6DDA /* APCAllSetContentViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = 08023C4D1AA94F48008E6DDA /* APCAllSetContentViewController.h */; };
08023C501AA94F48008E6DDA /* APCAllSetContentViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 08023C4E1AA94F48008E6DDA /* APCAllSetContentViewController.m */; };
08023C531AAA12DF008E6DDA /* APCAllSetTableViewCell.h in Headers */ = {isa = PBXBuildFile; fileRef = 08023C511AAA12DF008E6DDA /* APCAllSetTableViewCell.h */; };
08023C541AAA12DF008E6DDA /* APCAllSetTableViewCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 08023C521AAA12DF008E6DDA /* APCAllSetTableViewCell.m */; };
08027A771A7319AC00B358CC /* consent_01@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 08027A3D1A7319AC00B358CC /* consent_01@2x.png */; };
08027A781A7319AC00B358CC /* consent_02@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 08027A3E1A7319AC00B358CC /* consent_02@2x.png */; };
08027A791A7319AC00B358CC /* consent_03@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 08027A3F1A7319AC00B358CC /* consent_03@2x.png */; };
08027A7A1A7319AC00B358CC /* consent_04@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 08027A401A7319AC00B358CC /* consent_04@2x.png */; };
08027A7B1A7319AC00B358CC /* consent_05@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 08027A411A7319AC00B358CC /* consent_05@2x.png */; };
08027A7C1A7319AC00B358CC /* consent_06@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 08027A421A7319AC00B358CC /* consent_06@2x.png */; };
08027A7D1A7319AC00B358CC /* consent_07@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 08027A431A7319AC00B358CC /* consent_07@2x.png */; };
08027A7F1A7319AC00B358CC /* consent_02@3x.png in Resources */ = {isa = PBXBuildFile; fileRef = 08027A461A7319AC00B358CC /* consent_02@3x.png */; };
08027A801A7319AC00B358CC /* consent_03@3x.png in Resources */ = {isa = PBXBuildFile; fileRef = 08027A471A7319AC00B358CC /* consent_03@3x.png */; };
08027A811A7319AC00B358CC /* consent_04@3x.png in Resources */ = {isa = PBXBuildFile; fileRef = 08027A481A7319AC00B358CC /* consent_04@3x.png */; };
08027A821A7319AC00B358CC /* consent_05@3x.png in Resources */ = {isa = PBXBuildFile; fileRef = 08027A491A7319AC00B358CC /* consent_05@3x.png */; };
08027A831A7319AC00B358CC /* consent_06@3x.png in Resources */ = {isa = PBXBuildFile; fileRef = 08027A4A1A7319AC00B358CC /* consent_06@3x.png */; };
08027A851A7319AC00B358CC /* handtapping01@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 08027A4E1A7319AC00B358CC /* handtapping01@2x.png */; };
08027A861A7319AC00B358CC /* handtapping02@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 08027A4F1A7319AC00B358CC /* handtapping02@2x.png */; };
08027A871A7319AC00B358CC /* heart-fitness@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 08027A501A7319AC00B358CC /* heart-fitness@2x.png */; };
08027A881A7319AC00B358CC /* heartbeat@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 08027A511A7319AC00B358CC /* heartbeat@2x.png */; };
08027A891A7319AC00B358CC /* phonesoundwaves@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 08027A521A7319AC00B358CC /* phonesoundwaves@2x.png */; };
08027A8A1A7319AC00B358CC /* phonetapping@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 08027A531A7319AC00B358CC /* phonetapping@2x.png */; };
08027A8B1A7319AC00B358CC /* phonewaves@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 08027A541A7319AC00B358CC /* phonewaves@2x.png */; };
08027A8D1A7319AC00B358CC /* sittingman@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 08027A561A7319AC00B358CC /* sittingman@2x.png */; };
08027A8E1A7319AC00B358CC /* walkingman@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 08027A571A7319AC00B358CC /* walkingman@2x.png */; };
08027A8F1A7319AC00B358CC /* walkingman_monitor@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 08027A581A7319AC00B358CC /* walkingman_monitor@2x.png */; };
08027A901A7319AC00B358CC /* handtapping01@3x.png in Resources */ = {isa = PBXBuildFile; fileRef = 08027A5A1A7319AC00B358CC /* handtapping01@3x.png */; };
08027A921A7319AC00B358CC /* heart-fitness@3x.png in Resources */ = {isa = PBXBuildFile; fileRef = 08027A5C1A7319AC00B358CC /* heart-fitness@3x.png */; };
08027A931A7319AC00B358CC /* heartbeat@3x.png in Resources */ = {isa = PBXBuildFile; fileRef = 08027A5D1A7319AC00B358CC /* heartbeat@3x.png */; };
08027A941A7319AC00B358CC /* phonesoundwaves@3x.png in Resources */ = {isa = PBXBuildFile; fileRef = 08027A5E1A7319AC00B358CC /* phonesoundwaves@3x.png */; };
08027A951A7319AC00B358CC /* phonetapping@3x.png in Resources */ = {isa = PBXBuildFile; fileRef = 08027A5F1A7319AC00B358CC /* phonetapping@3x.png */; };
08027A961A7319AC00B358CC /* phonewaves@3x.png in Resources */ = {isa = PBXBuildFile; fileRef = 08027A601A7319AC00B358CC /* phonewaves@3x.png */; };
08027A971A7319AC00B358CC /* pocket@3x.png in Resources */ = {isa = PBXBuildFile; fileRef = 08027A611A7319AC00B358CC /* pocket@3x.png */; };
08027A981A7319AC00B358CC /* sittingman@3x.png in Resources */ = {isa = PBXBuildFile; fileRef = 08027A621A7319AC00B358CC /* sittingman@3x.png */; };
08027A991A7319AC00B358CC /* walkingman@3x.png in Resources */ = {isa = PBXBuildFile; fileRef = 08027A631A7319AC00B358CC /* walkingman@3x.png */; };
08027A9A1A7319AC00B358CC /* walkingman_monitor@3x.png in Resources */ = {isa = PBXBuildFile; fileRef = 08027A641A7319AC00B358CC /* walkingman_monitor@3x.png */; };
081A477A1A93EC4700E13148 /* APCBadgeLabel.h in Headers */ = {isa = PBXBuildFile; fileRef = 081A47781A93EC4700E13148 /* APCBadgeLabel.h */; settings = {ATTRIBUTES = (Public, ); }; };
081A477B1A93EC4700E13148 /* APCBadgeLabel.m in Sources */ = {isa = PBXBuildFile; fileRef = 081A47791A93EC4700E13148 /* APCBadgeLabel.m */; };
0833AE1E1A76C016001D8AA0 /* (null) in Sources */ = {isa = PBXBuildFile; };
0871A3931A8F4244002EA80D /* APCDashboardFoodInsightTableViewCell.h in Headers */ = {isa = PBXBuildFile; fileRef = 0871A3911A8F4244002EA80D /* APCDashboardFoodInsightTableViewCell.h */; settings = {ATTRIBUTES = (Public, ); }; };
0871A3941A8F4244002EA80D /* APCDashboardFoodInsightTableViewCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 0871A3921A8F4244002EA80D /* APCDashboardFoodInsightTableViewCell.m */; };
087255C01ABA390500586492 /* APCJSONSerializer.h in Headers */ = {isa = PBXBuildFile; fileRef = 087255BE1ABA390500586492 /* APCJSONSerializer.h */; settings = {ATTRIBUTES = (Public, ); }; };
087255C11ABA390500586492 /* APCJSONSerializer.m in Sources */ = {isa = PBXBuildFile; fileRef = 087255BF1ABA390500586492 /* APCJSONSerializer.m */; };
087468061AA691A400BE2572 /* APCThankYouViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = 087468041AA691A400BE2572 /* APCThankYouViewController.h */; };
087468071AA691A400BE2572 /* APCThankYouViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 087468051AA691A400BE2572 /* APCThankYouViewController.m */; };
0875C3D81A797A7B00CE50FB /* APCButton.h in Headers */ = {isa = PBXBuildFile; fileRef = 0875C3D61A797A7B00CE50FB /* APCButton.h */; settings = {ATTRIBUTES = (Public, ); }; };
0875C3D91A797A7B00CE50FB /* APCButton.m in Sources */ = {isa = PBXBuildFile; fileRef = 0875C3D71A797A7B00CE50FB /* APCButton.m */; };
089465451A8C179700A983AC /* APCDashboardInsightsTableViewCell.h in Headers */ = {isa = PBXBuildFile; fileRef = 0894653F1A8C179700A983AC /* APCDashboardInsightsTableViewCell.h */; settings = {ATTRIBUTES = (Public, ); }; };
089465461A8C179700A983AC /* APCDashboardInsightsTableViewCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 089465401A8C179700A983AC /* APCDashboardInsightsTableViewCell.m */; };
089465471A8C179700A983AC /* APCDashboardInsightSummaryTableViewCell.h in Headers */ = {isa = PBXBuildFile; fileRef = 089465411A8C179700A983AC /* APCDashboardInsightSummaryTableViewCell.h */; settings = {ATTRIBUTES = (Public, ); }; };
089465481A8C179700A983AC /* APCDashboardInsightSummaryTableViewCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 089465421A8C179700A983AC /* APCDashboardInsightSummaryTableViewCell.m */; };
089465491A8C179700A983AC /* APCDashboardInsightTableViewCell.h in Headers */ = {isa = PBXBuildFile; fileRef = 089465431A8C179700A983AC /* APCDashboardInsightTableViewCell.h */; settings = {ATTRIBUTES = (Public, ); }; };
0894654A1A8C179700A983AC /* APCDashboardInsightTableViewCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 089465441A8C179700A983AC /* APCDashboardInsightTableViewCell.m */; };
0894654D1A8C1F0200A983AC /* APCInsightBarView.h in Headers */ = {isa = PBXBuildFile; fileRef = 0894654B1A8C1F0200A983AC /* APCInsightBarView.h */; settings = {ATTRIBUTES = (Public, ); }; };
0894654E1A8C1F0200A983AC /* APCInsightBarView.m in Sources */ = {isa = PBXBuildFile; fileRef = 0894654C1A8C1F0200A983AC /* APCInsightBarView.m */; };
089465521A8C211100A983AC /* APCInsights.h in Headers */ = {isa = PBXBuildFile; fileRef = 089465501A8C211100A983AC /* APCInsights.h */; settings = {ATTRIBUTES = (Public, ); }; };
089465531A8C211100A983AC /* APCInsights.m in Sources */ = {isa = PBXBuildFile; fileRef = 089465511A8C211100A983AC /* APCInsights.m */; };
08970F121A8D407600EA46C3 /* APCFoodInsight.h in Headers */ = {isa = PBXBuildFile; fileRef = 08970F101A8D407600EA46C3 /* APCFoodInsight.h */; settings = {ATTRIBUTES = (Public, ); }; };
08970F131A8D407600EA46C3 /* APCFoodInsight.m in Sources */ = {isa = PBXBuildFile; fileRef = 08970F111A8D407600EA46C3 /* APCFoodInsight.m */; };
08BABB421AD62D5D00059C35 /* APCExampleLabel.h in Headers */ = {isa = PBXBuildFile; fileRef = 08BABB401AD62D5D00059C35 /* APCExampleLabel.h */; settings = {ATTRIBUTES = (Public, ); }; };
08BABB431AD62D5D00059C35 /* APCExampleLabel.m in Sources */ = {isa = PBXBuildFile; fileRef = 08BABB411AD62D5D00059C35 /* APCExampleLabel.m */; };
08EA2AB31A7AD564007549C0 /* UIImage+ImageEffects.h in Headers */ = {isa = PBXBuildFile; fileRef = 08EA2AB11A7AD564007549C0 /* UIImage+ImageEffects.h */; };
08EA2AB41A7AD564007549C0 /* UIImage+ImageEffects.m in Sources */ = {isa = PBXBuildFile; fileRef = 08EA2AB21A7AD564007549C0 /* UIImage+ImageEffects.m */; };
360C63D11A339746002EC86C /* NSDateComponentsHelperTests.m in Sources */ = {isa = PBXBuildFile; fileRef = 360C63D01A339746002EC86C /* NSDateComponentsHelperTests.m */; };
36257FBD1AA714B60060B95A /* CMMotionActivity+Helper.h in Headers */ = {isa = PBXBuildFile; fileRef = 36257FBB1AA714B60060B95A /* CMMotionActivity+Helper.h */; settings = {ATTRIBUTES = (Public, ); }; };
36257FBE1AA714B60060B95A /* CMMotionActivity+Helper.m in Sources */ = {isa = PBXBuildFile; fileRef = 36257FBC1AA714B60060B95A /* CMMotionActivity+Helper.m */; };
3627D3481A9A7517006B02E8 /* APCMedTrackerMedication.h in Headers */ = {isa = PBXBuildFile; fileRef = 3627D3461A9A7517006B02E8 /* APCMedTrackerMedication.h */; settings = {ATTRIBUTES = (Public, ); }; };
3627D3491A9A7517006B02E8 /* APCMedTrackerMedication.m in Sources */ = {isa = PBXBuildFile; fileRef = 3627D3471A9A7517006B02E8 /* APCMedTrackerMedication.m */; };
3627D34C1A9A7517006B02E8 /* APCMedTrackerPossibleDosage.h in Headers */ = {isa = PBXBuildFile; fileRef = 3627D34A1A9A7517006B02E8 /* APCMedTrackerPossibleDosage.h */; settings = {ATTRIBUTES = (Public, ); }; };
3627D34D1A9A7517006B02E8 /* APCMedTrackerPossibleDosage.m in Sources */ = {isa = PBXBuildFile; fileRef = 3627D34B1A9A7517006B02E8 /* APCMedTrackerPossibleDosage.m */; };
364D348A1A7B1C8F0060B3F5 /* APCDataVerificationClient.h in Headers */ = {isa = PBXBuildFile; fileRef = 364D34881A7B1C8F0060B3F5 /* APCDataVerificationClient.h */; settings = {ATTRIBUTES = (Public, ); }; };
364D348B1A7B1C8F0060B3F5 /* APCDataVerificationClient.m in Sources */ = {isa = PBXBuildFile; fileRef = 364D34891A7B1C8F0060B3F5 /* APCDataVerificationClient.m */; };
3650C65B1AA29BB50075C935 /* APCCatastrophicErrorViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = 3650C6581AA29BB50075C935 /* APCCatastrophicErrorViewController.h */; };
3650C65C1AA29BB50075C935 /* APCCatastrophicErrorViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 3650C6591AA29BB50075C935 /* APCCatastrophicErrorViewController.m */; };
3650C65D1AA29BB50075C935 /* CatastrophicError.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 3650C65A1AA29BB50075C935 /* CatastrophicError.storyboard */; };
3651424D1AA78521008A5CFA /* APCDataArchiverAndUploader.h in Headers */ = {isa = PBXBuildFile; fileRef = 3651424B1AA78521008A5CFA /* APCDataArchiverAndUploader.h */; settings = {ATTRIBUTES = (Public, ); }; };
3651424E1AA78521008A5CFA /* APCDataArchiverAndUploader.m in Sources */ = {isa = PBXBuildFile; fileRef = 3651424C1AA78521008A5CFA /* APCDataArchiverAndUploader.m */; };
3654318D1A9A7BC200D66D97 /* APCMedTrackerInflatableItem.h in Headers */ = {isa = PBXBuildFile; fileRef = 3654318B1A9A7BC200D66D97 /* APCMedTrackerInflatableItem.h */; settings = {ATTRIBUTES = (Public, ); }; };
3654318E1A9A7BC200D66D97 /* APCMedTrackerInflatableItem.m in Sources */ = {isa = PBXBuildFile; fileRef = 3654318C1A9A7BC200D66D97 /* APCMedTrackerInflatableItem.m */; };
3663457F1B1F857C003CC0EF /* APCDataMigrationMetadata_Model4ToModel6.h in Headers */ = {isa = PBXBuildFile; fileRef = 3663457B1B1F857C003CC0EF /* APCDataMigrationMetadata_Model4ToModel6.h */; };
366345801B1F857C003CC0EF /* APCDataMigrationMetadata_Model4ToModel6.m in Sources */ = {isa = PBXBuildFile; fileRef = 3663457C1B1F857C003CC0EF /* APCDataMigrationMetadata_Model4ToModel6.m */; };
366345811B1F857C003CC0EF /* APCDataMigrationPolicy_Model4ToModel6.h in Headers */ = {isa = PBXBuildFile; fileRef = 3663457D1B1F857C003CC0EF /* APCDataMigrationPolicy_Model4ToModel6.h */; };
366345821B1F857C003CC0EF /* APCDataMigrationPolicy_Model4ToModel6.m in Sources */ = {isa = PBXBuildFile; fileRef = 3663457E1B1F857C003CC0EF /* APCDataMigrationPolicy_Model4ToModel6.m */; };
366345841B1F8597003CC0EF /* APCMappingModel4ToModel6.xcmappingmodel in Sources */ = {isa = PBXBuildFile; fileRef = 366345831B1F8597003CC0EF /* APCMappingModel4ToModel6.xcmappingmodel */; };
366345861B1F85B7003CC0EF /* MODEL_MIGRATION_README.txt in Resources */ = {isa = PBXBuildFile; fileRef = 366345851B1F85B7003CC0EF /* MODEL_MIGRATION_README.txt */; };
366345891B1F85EA003CC0EF /* APCPotentialScheduledTask.h in Headers */ = {isa = PBXBuildFile; fileRef = 366345871B1F85EA003CC0EF /* APCPotentialScheduledTask.h */; settings = {ATTRIBUTES = (Public, ); }; };
3663458A1B1F85EA003CC0EF /* APCPotentialScheduledTask.m in Sources */ = {isa = PBXBuildFile; fileRef = 366345881B1F85EA003CC0EF /* APCPotentialScheduledTask.m */; };
3663458D1B1F860A003CC0EF /* APCTaskGroup.h in Headers */ = {isa = PBXBuildFile; fileRef = 3663458B1B1F860A003CC0EF /* APCTaskGroup.h */; settings = {ATTRIBUTES = (Public, ); }; };
3663458E1B1F860A003CC0EF /* APCTaskGroup.m in Sources */ = {isa = PBXBuildFile; fileRef = 3663458C1B1F860A003CC0EF /* APCTaskGroup.m */; };
366345911B1F8627003CC0EF /* NSArray+APCHelper.h in Headers */ = {isa = PBXBuildFile; fileRef = 3663458F1B1F8627003CC0EF /* NSArray+APCHelper.h */; };
366345921B1F8627003CC0EF /* NSArray+APCHelper.m in Sources */ = {isa = PBXBuildFile; fileRef = 366345901B1F8627003CC0EF /* NSArray+APCHelper.m */; };
366345951B1F863A003CC0EF /* SBBSchedule+APCHelper.h in Headers */ = {isa = PBXBuildFile; fileRef = 366345931B1F863A003CC0EF /* SBBSchedule+APCHelper.h */; };
366345961B1F863A003CC0EF /* SBBSchedule+APCHelper.m in Sources */ = {isa = PBXBuildFile; fileRef = 366345941B1F863A003CC0EF /* SBBSchedule+APCHelper.m */; };
3663459D1B1F865B003CC0EF /* APCActivitiesDateState.h in Headers */ = {isa = PBXBuildFile; fileRef = 366345971B1F865B003CC0EF /* APCActivitiesDateState.h */; settings = {ATTRIBUTES = (Public, ); }; };
3663459E1B1F865B003CC0EF /* APCActivitiesDateState.m in Sources */ = {isa = PBXBuildFile; fileRef = 366345981B1F865B003CC0EF /* APCActivitiesDateState.m */; };
3663459F1B1F865B003CC0EF /* APCScheduleDebugPrinter.h in Headers */ = {isa = PBXBuildFile; fileRef = 366345991B1F865B003CC0EF /* APCScheduleDebugPrinter.h */; };
366345A01B1F865B003CC0EF /* APCScheduleDebugPrinter.m in Sources */ = {isa = PBXBuildFile; fileRef = 3663459A1B1F865B003CC0EF /* APCScheduleDebugPrinter.m */; };
366345A11B1F865B003CC0EF /* APCScheduleIntervalEnumerator.h in Headers */ = {isa = PBXBuildFile; fileRef = 3663459B1B1F865B003CC0EF /* APCScheduleIntervalEnumerator.h */; };
366345A21B1F865B003CC0EF /* APCScheduleIntervalEnumerator.m in Sources */ = {isa = PBXBuildFile; fileRef = 3663459C1B1F865B003CC0EF /* APCScheduleIntervalEnumerator.m */; };
366345A71B1F8666003CC0EF /* APCTaskGroupCacheEntry.h in Headers */ = {isa = PBXBuildFile; fileRef = 366345A31B1F8666003CC0EF /* APCTaskGroupCacheEntry.h */; };
366345A81B1F8666003CC0EF /* APCTaskGroupCacheEntry.m in Sources */ = {isa = PBXBuildFile; fileRef = 366345A41B1F8666003CC0EF /* APCTaskGroupCacheEntry.m */; };
366345A91B1F8666003CC0EF /* APCTopLevelScheduleEnumerator.h in Headers */ = {isa = PBXBuildFile; fileRef = 366345A51B1F8666003CC0EF /* APCTopLevelScheduleEnumerator.h */; };
366345AA1B1F8666003CC0EF /* APCTopLevelScheduleEnumerator.m in Sources */ = {isa = PBXBuildFile; fileRef = 366345A61B1F8666003CC0EF /* APCTopLevelScheduleEnumerator.m */; };
36829A411A96B937000AA2AB /* APCMedTrackerPredefinedMedications.plist in Resources */ = {isa = PBXBuildFile; fileRef = 369E27E41A96B7A200D35DFA /* APCMedTrackerPredefinedMedications.plist */; };
36829A421A96B937000AA2AB /* APCMedTrackerPredefinedPossibleDosages.plist in Resources */ = {isa = PBXBuildFile; fileRef = 369E27E51A96B7A200D35DFA /* APCMedTrackerPredefinedPossibleDosages.plist */; };
36829A431A96B937000AA2AB /* APCMedTrackerPredefinedPrescriptionColors.plist in Resources */ = {isa = PBXBuildFile; fileRef = 369E27E61A96B7A200D35DFA /* APCMedTrackerPredefinedPrescriptionColors.plist */; };
36829A531A96B98F000AA2AB /* NSOperationQueue+Helper.h in Headers */ = {isa = PBXBuildFile; fileRef = 36829A511A96B98F000AA2AB /* NSOperationQueue+Helper.h */; settings = {ATTRIBUTES = (Public, ); }; };
36829A541A96B98F000AA2AB /* NSOperationQueue+Helper.m in Sources */ = {isa = PBXBuildFile; fileRef = 36829A521A96B98F000AA2AB /* NSOperationQueue+Helper.m */; };
368BAFE91A9AD91A00F04ABB /* APCMedTrackerDailyDosageRecord.h in Headers */ = {isa = PBXBuildFile; fileRef = 368BAFE71A9AD91A00F04ABB /* APCMedTrackerDailyDosageRecord.h */; settings = {ATTRIBUTES = (Public, ); }; };
368BAFEA1A9AD91A00F04ABB /* APCMedTrackerDailyDosageRecord.m in Sources */ = {isa = PBXBuildFile; fileRef = 368BAFE81A9AD91A00F04ABB /* APCMedTrackerDailyDosageRecord.m */; };
368C85441B4FAD1500E71050 /* APCScheduleQueryEngine.h in Headers */ = {isa = PBXBuildFile; fileRef = 368C85431B4FAD1500E71050 /* APCScheduleQueryEngine.h */; settings = {ATTRIBUTES = (Public, ); }; };
369B47551A853E8500777639 /* APCUtilities.h in Headers */ = {isa = PBXBuildFile; fileRef = 369B47531A853E8500777639 /* APCUtilities.h */; settings = {ATTRIBUTES = (Public, ); }; };
369B47561A853E8500777639 /* APCUtilities.m in Sources */ = {isa = PBXBuildFile; fileRef = 369B47541A853E8500777639 /* APCUtilities.m */; };
369C77931B1F9171007DD687 /* APCDataVerificationServerAccessControl.h in Headers */ = {isa = PBXBuildFile; fileRef = 369C77921B1F9171007DD687 /* APCDataVerificationServerAccessControl.h */; settings = {ATTRIBUTES = (Public, ); }; };
369C77961B1FB317007DD687 /* APCActivitiesViewSection.h in Headers */ = {isa = PBXBuildFile; fileRef = 369C77941B1FB317007DD687 /* APCActivitiesViewSection.h */; };
369C77971B1FB317007DD687 /* APCActivitiesViewSection.m in Sources */ = {isa = PBXBuildFile; fileRef = 369C77951B1FB317007DD687 /* APCActivitiesViewSection.m */; };
369E27EB1A96B7A200D35DFA /* APCMedicationActualMedicine.h in Headers */ = {isa = PBXBuildFile; fileRef = 369E27BB1A96B7A200D35DFA /* APCMedicationActualMedicine.h */; };
369E27EC1A96B7A200D35DFA /* APCMedicationActualMedicine.m in Sources */ = {isa = PBXBuildFile; fileRef = 369E27BC1A96B7A200D35DFA /* APCMedicationActualMedicine.m */; };
369E27ED1A96B7A200D35DFA /* APCMedicationColor.h in Headers */ = {isa = PBXBuildFile; fileRef = 369E27BD1A96B7A200D35DFA /* APCMedicationColor.h */; };
369E27EE1A96B7A200D35DFA /* APCMedicationColor.m in Sources */ = {isa = PBXBuildFile; fileRef = 369E27BE1A96B7A200D35DFA /* APCMedicationColor.m */; };
369E27EF1A96B7A200D35DFA /* APCMedicationDataStorageEngine.h in Headers */ = {isa = PBXBuildFile; fileRef = 369E27BF1A96B7A200D35DFA /* APCMedicationDataStorageEngine.h */; };
369E27F01A96B7A200D35DFA /* APCMedicationDataStorageEngine.m in Sources */ = {isa = PBXBuildFile; fileRef = 369E27C01A96B7A200D35DFA /* APCMedicationDataStorageEngine.m */; };
369E27F11A96B7A200D35DFA /* APCMedicationDosageTaken.h in Headers */ = {isa = PBXBuildFile; fileRef = 369E27C11A96B7A200D35DFA /* APCMedicationDosageTaken.h */; };
369E27F21A96B7A200D35DFA /* APCMedicationDosageTaken.m in Sources */ = {isa = PBXBuildFile; fileRef = 369E27C21A96B7A200D35DFA /* APCMedicationDosageTaken.m */; };
369E27F31A96B7A200D35DFA /* APCMedicationLozenge.h in Headers */ = {isa = PBXBuildFile; fileRef = 369E27C31A96B7A200D35DFA /* APCMedicationLozenge.h */; };
369E27F41A96B7A200D35DFA /* APCMedicationLozenge.m in Sources */ = {isa = PBXBuildFile; fileRef = 369E27C41A96B7A200D35DFA /* APCMedicationLozenge.m */; };
369E27F51A96B7A200D35DFA /* APCMedicationPossibleDosage.h in Headers */ = {isa = PBXBuildFile; fileRef = 369E27C51A96B7A200D35DFA /* APCMedicationPossibleDosage.h */; };
369E27F61A96B7A200D35DFA /* APCMedicationPossibleDosage.m in Sources */ = {isa = PBXBuildFile; fileRef = 369E27C61A96B7A200D35DFA /* APCMedicationPossibleDosage.m */; };
369E27F71A96B7A200D35DFA /* APCMedicationSampleDosesTaken.plist in Resources */ = {isa = PBXBuildFile; fileRef = 369E27C71A96B7A200D35DFA /* APCMedicationSampleDosesTaken.plist */; };
369E27F81A96B7A200D35DFA /* APCMedicationSampleSchedules.plist in Resources */ = {isa = PBXBuildFile; fileRef = 369E27C81A96B7A200D35DFA /* APCMedicationSampleSchedules.plist */; };
369E27FA1A96B7A200D35DFA /* APCMedicationUltraSimpleSelfInflator.h in Headers */ = {isa = PBXBuildFile; fileRef = 369E27CA1A96B7A200D35DFA /* APCMedicationUltraSimpleSelfInflator.h */; };
369E27FB1A96B7A200D35DFA /* APCMedicationUltraSimpleSelfInflator.m in Sources */ = {isa = PBXBuildFile; fileRef = 369E27CB1A96B7A200D35DFA /* APCMedicationUltraSimpleSelfInflator.m */; };
369E27FC1A96B7A200D35DFA /* APCMedicationWeeklySchedule.h in Headers */ = {isa = PBXBuildFile; fileRef = 369E27CC1A96B7A200D35DFA /* APCMedicationWeeklySchedule.h */; };
369E27FD1A96B7A200D35DFA /* APCMedicationWeeklySchedule.m in Sources */ = {isa = PBXBuildFile; fileRef = 369E27CD1A96B7A200D35DFA /* APCMedicationWeeklySchedule.m */; };
369E27FE1A96B7A200D35DFA /* APCMedTrackerDailyDosageRecord+Helper.h in Headers */ = {isa = PBXBuildFile; fileRef = 369E27CE1A96B7A200D35DFA /* APCMedTrackerDailyDosageRecord+Helper.h */; settings = {ATTRIBUTES = (Public, ); }; };
369E27FF1A96B7A200D35DFA /* APCMedTrackerDailyDosageRecord+Helper.m in Sources */ = {isa = PBXBuildFile; fileRef = 369E27CF1A96B7A200D35DFA /* APCMedTrackerDailyDosageRecord+Helper.m */; };
369E28021A96B7A200D35DFA /* APCMedTrackerDataStorageManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 369E27D21A96B7A200D35DFA /* APCMedTrackerDataStorageManager.h */; settings = {ATTRIBUTES = (Public, ); }; };
369E28031A96B7A200D35DFA /* APCMedTrackerDataStorageManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 369E27D31A96B7A200D35DFA /* APCMedTrackerDataStorageManager.m */; };
369E28041A96B7A200D35DFA /* APCMedTrackerInflatableItem+Helper.h in Headers */ = {isa = PBXBuildFile; fileRef = 369E27D41A96B7A200D35DFA /* APCMedTrackerInflatableItem+Helper.h */; settings = {ATTRIBUTES = (Public, ); }; };
369E28051A96B7A200D35DFA /* APCMedTrackerInflatableItem+Helper.m in Sources */ = {isa = PBXBuildFile; fileRef = 369E27D51A96B7A200D35DFA /* APCMedTrackerInflatableItem+Helper.m */; };
369E28081A96B7A200D35DFA /* APCMedTrackerMedication+Helper.h in Headers */ = {isa = PBXBuildFile; fileRef = 369E27D81A96B7A200D35DFA /* APCMedTrackerMedication+Helper.h */; settings = {ATTRIBUTES = (Public, ); }; };
369E28091A96B7A200D35DFA /* APCMedTrackerMedication+Helper.m in Sources */ = {isa = PBXBuildFile; fileRef = 369E27D91A96B7A200D35DFA /* APCMedTrackerMedication+Helper.m */; };
369E280C1A96B7A200D35DFA /* APCMedTrackerPrescription+Helper.h in Headers */ = {isa = PBXBuildFile; fileRef = 369E27DC1A96B7A200D35DFA /* APCMedTrackerPrescription+Helper.h */; settings = {ATTRIBUTES = (Public, ); }; };
369E280D1A96B7A200D35DFA /* APCMedTrackerPrescription+Helper.m in Sources */ = {isa = PBXBuildFile; fileRef = 369E27DD1A96B7A200D35DFA /* APCMedTrackerPrescription+Helper.m */; };
369E28101A96B7A200D35DFA /* APCMedTrackerPossibleDosage+Helper.h in Headers */ = {isa = PBXBuildFile; fileRef = 369E27E01A96B7A200D35DFA /* APCMedTrackerPossibleDosage+Helper.h */; settings = {ATTRIBUTES = (Public, ); }; };
369E28111A96B7A200D35DFA /* APCMedTrackerPossibleDosage+Helper.m in Sources */ = {isa = PBXBuildFile; fileRef = 369E27E11A96B7A200D35DFA /* APCMedTrackerPossibleDosage+Helper.m */; };
369E28141A96B7A200D35DFA /* APCMedTrackerPredefinedMedications.plist in Resources */ = {isa = PBXBuildFile; fileRef = 369E27E41A96B7A200D35DFA /* APCMedTrackerPredefinedMedications.plist */; };
369E28151A96B7A200D35DFA /* APCMedTrackerPredefinedPossibleDosages.plist in Resources */ = {isa = PBXBuildFile; fileRef = 369E27E51A96B7A200D35DFA /* APCMedTrackerPredefinedPossibleDosages.plist */; };
369E28161A96B7A200D35DFA /* APCMedTrackerPredefinedPrescriptionColors.plist in Resources */ = {isa = PBXBuildFile; fileRef = 369E27E61A96B7A200D35DFA /* APCMedTrackerPredefinedPrescriptionColors.plist */; };
369E28171A96B7A200D35DFA /* APCMedTrackerPrescriptionColor+Helper.h in Headers */ = {isa = PBXBuildFile; fileRef = 369E27E71A96B7A200D35DFA /* APCMedTrackerPrescriptionColor+Helper.h */; settings = {ATTRIBUTES = (Public, ); }; };
369E28181A96B7A200D35DFA /* APCMedTrackerPrescriptionColor+Helper.m in Sources */ = {isa = PBXBuildFile; fileRef = 369E27E81A96B7A200D35DFA /* APCMedTrackerPrescriptionColor+Helper.m */; };
36A979971B5807E60042B6C5 /* APCScheduleImporter.h in Headers */ = {isa = PBXBuildFile; fileRef = 36A979781B5807E60042B6C5 /* APCScheduleImporter.h */; };
36A979981B5807E60042B6C5 /* APCScheduleImporter.m in Sources */ = {isa = PBXBuildFile; fileRef = 36A979791B5807E60042B6C5 /* APCScheduleImporter.m */; };
36A9799D1B5807E60042B6C5 /* APCCompletedOneTimeTaskFilter.h in Headers */ = {isa = PBXBuildFile; fileRef = 36A979821B5807E60042B6C5 /* APCCompletedOneTimeTaskFilter.h */; };
36A9799E1B5807E60042B6C5 /* APCCompletedOneTimeTaskFilter.m in Sources */ = {isa = PBXBuildFile; fileRef = 36A979831B5807E60042B6C5 /* APCCompletedOneTimeTaskFilter.m */; };
36A9799F1B5807E60042B6C5 /* APCExistingTaskFilter.h in Headers */ = {isa = PBXBuildFile; fileRef = 36A979841B5807E60042B6C5 /* APCExistingTaskFilter.h */; };
36A979A01B5807E60042B6C5 /* APCExistingTaskFilter.m in Sources */ = {isa = PBXBuildFile; fileRef = 36A979851B5807E60042B6C5 /* APCExistingTaskFilter.m */; };
36A979A11B5807E60042B6C5 /* APCMatchingScheduleFilter.h in Headers */ = {isa = PBXBuildFile; fileRef = 36A979861B5807E60042B6C5 /* APCMatchingScheduleFilter.h */; };
36A979A21B5807E60042B6C5 /* APCMatchingScheduleFilter.m in Sources */ = {isa = PBXBuildFile; fileRef = 36A979871B5807E60042B6C5 /* APCMatchingScheduleFilter.m */; };
36A979A31B5807E60042B6C5 /* APCMatchingSourceFilter.h in Headers */ = {isa = PBXBuildFile; fileRef = 36A979881B5807E60042B6C5 /* APCMatchingSourceFilter.h */; };
36A979A41B5807E60042B6C5 /* APCMatchingSourceFilter.m in Sources */ = {isa = PBXBuildFile; fileRef = 36A979891B5807E60042B6C5 /* APCMatchingSourceFilter.m */; };
36A979A51B5807E60042B6C5 /* APCScheduleInMapFilter.h in Headers */ = {isa = PBXBuildFile; fileRef = 36A9798A1B5807E60042B6C5 /* APCScheduleInMapFilter.h */; };
36A979A61B5807E60042B6C5 /* APCScheduleInMapFilter.m in Sources */ = {isa = PBXBuildFile; fileRef = 36A9798B1B5807E60042B6C5 /* APCScheduleInMapFilter.m */; };
36A979A71B5807E60042B6C5 /* APCScheduleSourceFilter.h in Headers */ = {isa = PBXBuildFile; fileRef = 36A9798C1B5807E60042B6C5 /* APCScheduleSourceFilter.h */; };
36A979A81B5807E60042B6C5 /* APCScheduleSourceFilter.m in Sources */ = {isa = PBXBuildFile; fileRef = 36A9798D1B5807E60042B6C5 /* APCScheduleSourceFilter.m */; };
36A979A91B5807E60042B6C5 /* APCScheduleStartDateFilter.h in Headers */ = {isa = PBXBuildFile; fileRef = 36A9798E1B5807E60042B6C5 /* APCScheduleStartDateFilter.h */; };
36A979AA1B5807E60042B6C5 /* APCScheduleStartDateFilter.m in Sources */ = {isa = PBXBuildFile; fileRef = 36A9798F1B5807E60042B6C5 /* APCScheduleStartDateFilter.m */; };
36A979AB1B5807E60042B6C5 /* APCUniqueTaskIdFilter.h in Headers */ = {isa = PBXBuildFile; fileRef = 36A979901B5807E60042B6C5 /* APCUniqueTaskIdFilter.h */; };
36A979AC1B5807E60042B6C5 /* APCUniqueTaskIdFilter.m in Sources */ = {isa = PBXBuildFile; fileRef = 36A979911B5807E60042B6C5 /* APCUniqueTaskIdFilter.m */; };
36A979AD1B5807E60042B6C5 /* APCScheduleTaskMap.h in Headers */ = {isa = PBXBuildFile; fileRef = 36A979931B5807E60042B6C5 /* APCScheduleTaskMap.h */; };
36A979AE1B5807E60042B6C5 /* APCScheduleTaskMap.m in Sources */ = {isa = PBXBuildFile; fileRef = 36A979941B5807E60042B6C5 /* APCScheduleTaskMap.m */; };
36A979AF1B5807E60042B6C5 /* APCScheduleTaskMapEntry.h in Headers */ = {isa = PBXBuildFile; fileRef = 36A979951B5807E60042B6C5 /* APCScheduleTaskMapEntry.h */; };
36A979B01B5807E60042B6C5 /* APCScheduleTaskMapEntry.m in Sources */ = {isa = PBXBuildFile; fileRef = 36A979961B5807E60042B6C5 /* APCScheduleTaskMapEntry.m */; };
36A979B31B5844670042B6C5 /* APCScheduleFilter.h in Headers */ = {isa = PBXBuildFile; fileRef = 36A979B11B5844670042B6C5 /* APCScheduleFilter.h */; };
36A979B41B5844670042B6C5 /* APCScheduleFilter.m in Sources */ = {isa = PBXBuildFile; fileRef = 36A979B21B5844670042B6C5 /* APCScheduleFilter.m */; };
36AAB34F1A9A75BB00FAC255 /* APCMedTrackerPrescription.h in Headers */ = {isa = PBXBuildFile; fileRef = 36AAB34D1A9A75BB00FAC255 /* APCMedTrackerPrescription.h */; settings = {ATTRIBUTES = (Public, ); }; };
36AAB3501A9A75BB00FAC255 /* APCMedTrackerPrescription.m in Sources */ = {isa = PBXBuildFile; fileRef = 36AAB34E1A9A75BB00FAC255 /* APCMedTrackerPrescription.m */; };
36AAB3541A9A760D00FAC255 /* APCMedTrackerPrescriptionColor.h in Headers */ = {isa = PBXBuildFile; fileRef = 36AAB3521A9A760D00FAC255 /* APCMedTrackerPrescriptionColor.h */; settings = {ATTRIBUTES = (Public, ); }; };
36AAB3551A9A760D00FAC255 /* APCMedTrackerPrescriptionColor.m in Sources */ = {isa = PBXBuildFile; fileRef = 36AAB3531A9A760D00FAC255 /* APCMedTrackerPrescriptionColor.m */; };
36B1AAE51A38DEA800CE7DB5 /* Security.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 36C8B3EB1A38D9FF0051096B /* Security.framework */; };
36B1AAE61A38DEAF00CE7DB5 /* SystemConfiguration.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 36C8B3ED1A38DA4C0051096B /* SystemConfiguration.framework */; };
36B7D2551A8D848D0043F968 /* ORKAnswerFormat+Helper.h in Headers */ = {isa = PBXBuildFile; fileRef = 36B7D2531A8D848D0043F968 /* ORKAnswerFormat+Helper.h */; };
36B7D2561A8D848D0043F968 /* ORKAnswerFormat+Helper.m in Sources */ = {isa = PBXBuildFile; fileRef = 36B7D2541A8D848D0043F968 /* ORKAnswerFormat+Helper.m */; };
36C8B3EC1A38D9FF0051096B /* Security.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 36C8B3EB1A38D9FF0051096B /* Security.framework */; };
36C8B3EE1A38DA4C0051096B /* SystemConfiguration.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 36C8B3ED1A38DA4C0051096B /* SystemConfiguration.framework */; };
36CCF38A1AA4572F0086CD1D /* APCLog.m in Sources */ = {isa = PBXBuildFile; fileRef = F5B9476A1A73272C0034C522 /* APCLog.m */; };
36CCF38B1AA4573D0086CD1D /* APCDayOfMonthSelector.m in Sources */ = {isa = PBXBuildFile; fileRef = F5B947961A73272C0034C522 /* APCDayOfMonthSelector.m */; };
36CCF38C1AA4573D0086CD1D /* APCListSelector.m in Sources */ = {isa = PBXBuildFile; fileRef = F5B947981A73272C0034C522 /* APCListSelector.m */; };
36CCF38D1AA4573D0086CD1D /* APCPointSelector.m in Sources */ = {isa = PBXBuildFile; fileRef = F5B9479A1A73272C0034C522 /* APCPointSelector.m */; };
36CCF38E1AA4573D0086CD1D /* APCScheduleEnumerator.m in Sources */ = {isa = PBXBuildFile; fileRef = F5B9479C1A73272C0034C522 /* APCScheduleEnumerator.m */; };
36CCF38F1AA4573D0086CD1D /* APCScheduleExpressionParser.m in Sources */ = {isa = PBXBuildFile; fileRef = F5B9479E1A73272C0034C522 /* APCScheduleExpressionParser.m */; };
36CCF3901AA4573D0086CD1D /* APCScheduleExpressionToken.m in Sources */ = {isa = PBXBuildFile; fileRef = F5B947A01A73272C0034C522 /* APCScheduleExpressionToken.m */; };
36CCF3911AA4573D0086CD1D /* APCScheduleExpressionTokenizer.m in Sources */ = {isa = PBXBuildFile; fileRef = F5B947A21A73272C0034C522 /* APCScheduleExpressionTokenizer.m */; };
36CCF3921AA4573D0086CD1D /* APCTimeSelector.m in Sources */ = {isa = PBXBuildFile; fileRef = F5B947A41A73272C0034C522 /* APCTimeSelector.m */; };
36CCF3931AA4573D0086CD1D /* APCTimeSelectorEnumerator.m in Sources */ = {isa = PBXBuildFile; fileRef = F5B947A61A73272C0034C522 /* APCTimeSelectorEnumerator.m */; };
36CCF3951AA457420086CD1D /* APCScheduleExpression.m in Sources */ = {isa = PBXBuildFile; fileRef = F5B947931A73272C0034C522 /* APCScheduleExpression.m */; };
36CCF3A01AA45B790086CD1D /* APCConstants.m in Sources */ = {isa = PBXBuildFile; fileRef = F5B947701A73272C0034C522 /* APCConstants.m */; };
36CCF3A11AA45B9D0086CD1D /* NSDateComponents+Helper.m in Sources */ = {isa = PBXBuildFile; fileRef = F5B9474B1A73272C0034C522 /* NSDateComponents+Helper.m */; };
36CCF3A21AA45BC40086CD1D /* NSDate+Helper.m in Sources */ = {isa = PBXBuildFile; fileRef = F5B947491A73272C0034C522 /* NSDate+Helper.m */; };
36D0510E1ABB92F0008FC9B3 /* NSFileManager+Helper.h in Headers */ = {isa = PBXBuildFile; fileRef = 36D0510C1ABB92F0008FC9B3 /* NSFileManager+Helper.h */; };
36D0510F1ABB92F0008FC9B3 /* NSFileManager+Helper.m in Sources */ = {isa = PBXBuildFile; fileRef = 36D0510D1ABB92F0008FC9B3 /* NSFileManager+Helper.m */; };
36E06F1C1A33F071005D6EB0 /* APCScheduleExpressionRealLifeTests.m in Sources */ = {isa = PBXBuildFile; fileRef = 36E06F1B1A33F071005D6EB0 /* APCScheduleExpressionRealLifeTests.m */; };
5B04329F1A318AA2000DC9ED /* APCSignInTask.h in Headers */ = {isa = PBXBuildFile; fileRef = 5B04329D1A318AA2000DC9ED /* APCSignInTask.h */; settings = {ATTRIBUTES = (Public, ); }; };
5B0432A01A318AA2000DC9ED /* APCSignInTask.m in Sources */ = {isa = PBXBuildFile; fileRef = 5B04329E1A318AA2000DC9ED /* APCSignInTask.m */; };
5B0432A71A322BEE000DC9ED /* APCOnboardingTask.h in Headers */ = {isa = PBXBuildFile; fileRef = 5B0432A51A322BEE000DC9ED /* APCOnboardingTask.h */; settings = {ATTRIBUTES = (Public, ); }; };
5B0432A81A322BEE000DC9ED /* APCOnboardingTask.m in Sources */ = {isa = PBXBuildFile; fileRef = 5B0432A61A322BEE000DC9ED /* APCOnboardingTask.m */; };
5B0601C21AE79AE0009D6D65 /* APCFeedParser.h in Headers */ = {isa = PBXBuildFile; fileRef = 5B0601C01AE79AE0009D6D65 /* APCFeedParser.h */; settings = {ATTRIBUTES = (Public, ); }; };
5B0601C31AE79AE0009D6D65 /* APCFeedParser.m in Sources */ = {isa = PBXBuildFile; fileRef = 5B0601C11AE79AE0009D6D65 /* APCFeedParser.m */; };
5B0601CD1AE79B50009D6D65 /* APCFeedTableViewCell.h in Headers */ = {isa = PBXBuildFile; fileRef = 5B0601CB1AE79B50009D6D65 /* APCFeedTableViewCell.h */; settings = {ATTRIBUTES = (Public, ); }; };
5B0601CE1AE79B50009D6D65 /* APCFeedTableViewCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 5B0601CC1AE79B50009D6D65 /* APCFeedTableViewCell.m */; };
5B09ED1F1ABC1BEF003C5061 /* APCLicenseInfoViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = 5B09ED1D1ABC1BEF003C5061 /* APCLicenseInfoViewController.h */; };
5B09ED201ABC1BEF003C5061 /* APCLicenseInfoViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 5B09ED1E1ABC1BEF003C5061 /* APCLicenseInfoViewController.m */; };
5B234E141A329BF300A5A3A0 /* APCWithdrawDescriptionViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = 5B234E121A329BF300A5A3A0 /* APCWithdrawDescriptionViewController.h */; };
5B234E151A329BF300A5A3A0 /* APCWithdrawDescriptionViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 5B234E131A329BF300A5A3A0 /* APCWithdrawDescriptionViewController.m */; };
5B4574CA1ABFD07A00601DCC /* License_BridgeSDK.txt in Resources */ = {isa = PBXBuildFile; fileRef = 5B4574C71ABFD07A00601DCC /* License_BridgeSDK.txt */; };
5B4574CC1ABFD07A00601DCC /* License_ZipZap.txt in Resources */ = {isa = PBXBuildFile; fileRef = 5B4574C91ABFD07A00601DCC /* License_ZipZap.txt */; };
5B534ED41B2179550049C6AB /* APCNewsFeedManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 5B534ED21B2179550049C6AB /* APCNewsFeedManager.h */; settings = {ATTRIBUTES = (Public, ); }; };
5B534ED51B2179550049C6AB /* APCNewsFeedManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 5B534ED31B2179550049C6AB /* APCNewsFeedManager.m */; };
5B5523AA1AC915140068B51D /* Social.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 5B5523A91AC915140068B51D /* Social.framework */; };
5B73CAF21A8B3B8C00FFE79C /* APCDashboard.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 5B73CAF11A8B3B8C00FFE79C /* APCDashboard.storyboard */; };
5B7D471C1B0549FA00958921 /* APCCubicCurveAlgorithm.h in Headers */ = {isa = PBXBuildFile; fileRef = 5B7D47181B0549FA00958921 /* APCCubicCurveAlgorithm.h */; settings = {ATTRIBUTES = (Public, ); }; };
5B7D471D1B0549FA00958921 /* APCCubicCurveAlgorithm.m in Sources */ = {isa = PBXBuildFile; fileRef = 5B7D47191B0549FA00958921 /* APCCubicCurveAlgorithm.m */; };
5B7D471E1B0549FA00958921 /* APCNormalDistributionGraphView.h in Headers */ = {isa = PBXBuildFile; fileRef = 5B7D471A1B0549FA00958921 /* APCNormalDistributionGraphView.h */; settings = {ATTRIBUTES = (Public, ); }; };
5B7D471F1B0549FA00958921 /* APCNormalDistributionGraphView.m in Sources */ = {isa = PBXBuildFile; fileRef = 5B7D471B1B0549FA00958921 /* APCNormalDistributionGraphView.m */; };
5B7EA0231A44C21200924DEE /* APCFormTextField.h in Headers */ = {isa = PBXBuildFile; fileRef = 5B7EA0211A44C21200924DEE /* APCFormTextField.h */; settings = {ATTRIBUTES = (Public, ); }; };
5B7EA0241A44C21200924DEE /* APCFormTextField.m in Sources */ = {isa = PBXBuildFile; fileRef = 5B7EA0221A44C21200924DEE /* APCFormTextField.m */; };
5B827B4C1A80A39900C685A3 /* APCDashboardMoreInfoViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = 5B827B4A1A80A39900C685A3 /* APCDashboardMoreInfoViewController.h */; settings = {ATTRIBUTES = (Public, ); }; };
5B827B4D1A80A39900C685A3 /* APCDashboardMoreInfoViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 5B827B4B1A80A39900C685A3 /* APCDashboardMoreInfoViewController.m */; };
5B827B551A80CB0400C685A3 /* APCFadeAnimator.h in Headers */ = {isa = PBXBuildFile; fileRef = 5B827B531A80CB0400C685A3 /* APCFadeAnimator.h */; settings = {ATTRIBUTES = (Public, ); }; };
5B827B561A80CB0400C685A3 /* APCFadeAnimator.m in Sources */ = {isa = PBXBuildFile; fileRef = 5B827B541A80CB0400C685A3 /* APCFadeAnimator.m */; };
5B827B601A81CAE200C685A3 /* APCDashboardTableViewCell.h in Headers */ = {isa = PBXBuildFile; fileRef = 5B827B5E1A81CAE200C685A3 /* APCDashboardTableViewCell.h */; settings = {ATTRIBUTES = (Public, ); }; };
5B827B611A81CAE200C685A3 /* APCDashboardTableViewCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 5B827B5F1A81CAE200C685A3 /* APCDashboardTableViewCell.m */; };
5B9B36A31A95D9B500389F42 /* APCActivitiesTintedTableViewCell.h in Headers */ = {isa = PBXBuildFile; fileRef = 5B9B36A11A95D9B500389F42 /* APCActivitiesTintedTableViewCell.h */; settings = {ATTRIBUTES = (Public, ); }; };
5B9B36A41A95D9B500389F42 /* APCActivitiesTintedTableViewCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 5B9B36A21A95D9B500389F42 /* APCActivitiesTintedTableViewCell.m */; };
5B9B36A71A95D9C900389F42 /* APCActivitiesBasicTableViewCell.h in Headers */ = {isa = PBXBuildFile; fileRef = 5B9B36A51A95D9C900389F42 /* APCActivitiesBasicTableViewCell.h */; settings = {ATTRIBUTES = (Public, ); }; };
5B9B36A81A95D9C900389F42 /* APCActivitiesBasicTableViewCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 5B9B36A61A95D9C900389F42 /* APCActivitiesBasicTableViewCell.m */; };
5B9B36AB1A95DC1700389F42 /* APCActivitiesTableViewCell.h in Headers */ = {isa = PBXBuildFile; fileRef = 5B9B36A91A95DC1700389F42 /* APCActivitiesTableViewCell.h */; settings = {ATTRIBUTES = (Public, ); }; };
5B9B36AC1A95DC1700389F42 /* APCActivitiesTableViewCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 5B9B36AA1A95DC1700389F42 /* APCActivitiesTableViewCell.m */; };
5B9B36AF1A95DEEB00389F42 /* APCActivitiesSectionHeaderView.h in Headers */ = {isa = PBXBuildFile; fileRef = 5B9B36AD1A95DEEB00389F42 /* APCActivitiesSectionHeaderView.h */; settings = {ATTRIBUTES = (Public, ); }; };
5B9B36B01A95DEEB00389F42 /* APCActivitiesSectionHeaderView.m in Sources */ = {isa = PBXBuildFile; fileRef = 5B9B36AE1A95DEEB00389F42 /* APCActivitiesSectionHeaderView.m */; };
5B9B36B21A95DF0C00389F42 /* APCActivitiesSectionHeaderView.xib in Resources */ = {isa = PBXBuildFile; fileRef = 5B9B36B11A95DF0C00389F42 /* APCActivitiesSectionHeaderView.xib */; };
5BB10C0A1A91D540002D2DD2 /* APCStudyVideoCollectionViewCell.h in Headers */ = {isa = PBXBuildFile; fileRef = 5BB10C081A91D540002D2DD2 /* APCStudyVideoCollectionViewCell.h */; settings = {ATTRIBUTES = (Public, ); }; };
5BB10C0B1A91D540002D2DD2 /* APCStudyVideoCollectionViewCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 5BB10C091A91D540002D2DD2 /* APCStudyVideoCollectionViewCell.m */; };
5BB10C131A91F970002D2DD2 /* APCWebViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = 5BB10C111A91F970002D2DD2 /* APCWebViewController.h */; settings = {ATTRIBUTES = (Public, ); }; };
5BB10C141A91F970002D2DD2 /* APCWebViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 5BB10C121A91F970002D2DD2 /* APCWebViewController.m */; };
5BD4CA071AF0E46F008D97AE /* APCNewsFeed.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 5BD4CA041AF0E46F008D97AE /* APCNewsFeed.storyboard */; };
5BD4CA081AF0E46F008D97AE /* APCNewsFeedViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = 5BD4CA051AF0E46F008D97AE /* APCNewsFeedViewController.h */; settings = {ATTRIBUTES = (Public, ); }; };
5BD4CA091AF0E46F008D97AE /* APCNewsFeedViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 5BD4CA061AF0E46F008D97AE /* APCNewsFeedViewController.m */; };
5BD6EBA21A9A46BB00C3BFB0 /* APCStudyLandingCollectionViewCell.h in Headers */ = {isa = PBXBuildFile; fileRef = 5BD6EBA01A9A46BB00C3BFB0 /* APCStudyLandingCollectionViewCell.h */; settings = {ATTRIBUTES = (Public, ); }; };
5BD6EBA31A9A46BB00C3BFB0 /* APCStudyLandingCollectionViewCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 5BD6EBA11A9A46BB00C3BFB0 /* APCStudyLandingCollectionViewCell.m */; };
5BD6EBB71A9C77D900C3BFB0 /* APCBaseGraphView.h in Headers */ = {isa = PBXBuildFile; fileRef = 5BD6EBB31A9C77D900C3BFB0 /* APCBaseGraphView.h */; settings = {ATTRIBUTES = (Public, ); }; };
5BD6EBB81A9C77D900C3BFB0 /* APCBaseGraphView.m in Sources */ = {isa = PBXBuildFile; fileRef = 5BD6EBB41A9C77D900C3BFB0 /* APCBaseGraphView.m */; };
5BD6EBB91A9C77D900C3BFB0 /* APCDiscreteGraphView.h in Headers */ = {isa = PBXBuildFile; fileRef = 5BD6EBB51A9C77D900C3BFB0 /* APCDiscreteGraphView.h */; settings = {ATTRIBUTES = (Public, ); }; };
5BD6EBBA1A9C77D900C3BFB0 /* APCDiscreteGraphView.m in Sources */ = {isa = PBXBuildFile; fileRef = 5BD6EBB61A9C77D900C3BFB0 /* APCDiscreteGraphView.m */; };
5BD6EBC41A9D905100C3BFB0 /* APCPermissionPrimingViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = 5BD6EBC21A9D905100C3BFB0 /* APCPermissionPrimingViewController.h */; settings = {ATTRIBUTES = (Public, ); }; };
5BD6EBC51A9D905100C3BFB0 /* APCPermissionPrimingViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 5BD6EBC31A9D905100C3BFB0 /* APCPermissionPrimingViewController.m */; };
5BE106F01A9EE2D900CA5A07 /* APCDashboardGraphTableViewCell.h in Headers */ = {isa = PBXBuildFile; fileRef = 5BE106EE1A9EE2D900CA5A07 /* APCDashboardGraphTableViewCell.h */; settings = {ATTRIBUTES = (Public, ); }; };
5BE106F11A9EE2D900CA5A07 /* APCDashboardGraphTableViewCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 5BE106EF1A9EE2D900CA5A07 /* APCDashboardGraphTableViewCell.m */; };
5BFEB41D1AA72CCD0089DEF7 /* APCSharingOptionsViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = 5BFEB41B1AA72CCD0089DEF7 /* APCSharingOptionsViewController.h */; settings = {ATTRIBUTES = (Public, ); }; };
5BFEB41E1AA72CCD0089DEF7 /* APCSharingOptionsViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 5BFEB41C1AA72CCD0089DEF7 /* APCSharingOptionsViewController.m */; };
6C6AA27D1B4E056C0056AD47 /* APCDataArchiveUploader.h in Headers */ = {isa = PBXBuildFile; fileRef = 6C6AA2751B4E056C0056AD47 /* APCDataArchiveUploader.h */; settings = {ATTRIBUTES = (Public, ); }; };
6C6AA27E1B4E056C0056AD47 /* APCDataArchiveUploader.m in Sources */ = {isa = PBXBuildFile; fileRef = 6C6AA2761B4E056C0056AD47 /* APCDataArchiveUploader.m */; };
6C6AA27F1B4E056C0056AD47 /* APCDataEncryptor.h in Headers */ = {isa = PBXBuildFile; fileRef = 6C6AA2771B4E056C0056AD47 /* APCDataEncryptor.h */; settings = {ATTRIBUTES = (Public, ); }; };
6C6AA2801B4E056C0056AD47 /* APCDataEncryptor.m in Sources */ = {isa = PBXBuildFile; fileRef = 6C6AA2781B4E056C0056AD47 /* APCDataEncryptor.m */; };
6C6AA2811B4E056C0056AD47 /* APCDataUploader.h in Headers */ = {isa = PBXBuildFile; fileRef = 6C6AA2791B4E056C0056AD47 /* APCDataUploader.h */; settings = {ATTRIBUTES = (Public, ); }; };
6C6AA2821B4E056C0056AD47 /* APCDataUploader.m in Sources */ = {isa = PBXBuildFile; fileRef = 6C6AA27A1B4E056C0056AD47 /* APCDataUploader.m */; };
6C6AA2831B4E056C0056AD47 /* APCDataVerificationDaemon.h in Headers */ = {isa = PBXBuildFile; fileRef = 6C6AA27B1B4E056C0056AD47 /* APCDataVerificationDaemon.h */; };
6C6AA2841B4E056C0056AD47 /* APCDataVerificationDaemon.m in Sources */ = {isa = PBXBuildFile; fileRef = 6C6AA27C1B4E056C0056AD47 /* APCDataVerificationDaemon.m */; };
6C6AA2891B4E057D0056AD47 /* APCDataArchive.h in Headers */ = {isa = PBXBuildFile; fileRef = 6C6AA2851B4E057D0056AD47 /* APCDataArchive.h */; settings = {ATTRIBUTES = (Public, ); }; };
6C6AA28A1B4E057D0056AD47 /* APCDataArchive.m in Sources */ = {isa = PBXBuildFile; fileRef = 6C6AA2861B4E057D0056AD47 /* APCDataArchive.m */; };
6C6AA3401B55EA6C0056AD47 /* ORKFileResult+Filename.h in Headers */ = {isa = PBXBuildFile; fileRef = 6C6AA33E1B55EA6C0056AD47 /* ORKFileResult+Filename.h */; settings = {ATTRIBUTES = (Public, ); }; };
6C6AA3411B55EA6C0056AD47 /* ORKFileResult+Filename.m in Sources */ = {isa = PBXBuildFile; fileRef = 6C6AA33F1B55EA6C0056AD47 /* ORKFileResult+Filename.m */; };
6C7346081A7ECD3B00DA9CD8 /* APCConsentTaskViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = 6C7346061A7ECD3B00DA9CD8 /* APCConsentTaskViewController.h */; settings = {ATTRIBUTES = (Public, ); }; };
6C7346091A7ECD3B00DA9CD8 /* APCConsentTaskViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 6C7346071A7ECD3B00DA9CD8 /* APCConsentTaskViewController.m */; };
6C8646401AF8077300B46C49 /* APCCorrelationsSelectorViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = 6C86463E1AF8077300B46C49 /* APCCorrelationsSelectorViewController.h */; settings = {ATTRIBUTES = (Public, ); }; };
6C8646411AF8077300B46C49 /* APCCorrelationsSelectorViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 6C86463F1AF8077300B46C49 /* APCCorrelationsSelectorViewController.m */; };
6CD8B6741AC5011D0061E6D6 /* APCTaskReminder.h in Headers */ = {isa = PBXBuildFile; fileRef = 6CD8B6721AC5011D0061E6D6 /* APCTaskReminder.h */; settings = {ATTRIBUTES = (Public, ); }; };
6CD8B6751AC5011D0061E6D6 /* APCTaskReminder.m in Sources */ = {isa = PBXBuildFile; fileRef = 6CD8B6731AC5011D0061E6D6 /* APCTaskReminder.m */; };
712AB44C1A9E692400556DA2 /* APCMotionHistoryData.h in Headers */ = {isa = PBXBuildFile; fileRef = 712AB4481A9E692400556DA2 /* APCMotionHistoryData.h */; settings = {ATTRIBUTES = (Public, ); }; };
712AB44D1A9E692400556DA2 /* APCMotionHistoryData.m in Sources */ = {isa = PBXBuildFile; fileRef = 712AB4491A9E692400556DA2 /* APCMotionHistoryData.m */; };
712AB44E1A9E692400556DA2 /* APCMotionHistoryReporter.h in Headers */ = {isa = PBXBuildFile; fileRef = 712AB44A1A9E692400556DA2 /* APCMotionHistoryReporter.h */; settings = {ATTRIBUTES = (Public, ); }; };
712AB44F1A9E692400556DA2 /* APCMotionHistoryReporter.m in Sources */ = {isa = PBXBuildFile; fileRef = 712AB44B1A9E692400556DA2 /* APCMotionHistoryReporter.m */; };
7423AB5B1AA3FFD8004A325A /* APCConsentRedirector.h in Headers */ = {isa = PBXBuildFile; fileRef = 7423AB591AA3FFD8004A325A /* APCConsentRedirector.h */; settings = {ATTRIBUTES = (Public, ); }; };
74423B531AD981F8008AC7B3 /* APCCMS.m in Sources */ = {isa = PBXBuildFile; fileRef = 369DD5561AC0E26900327729 /* APCCMS.m */; };
747307101A96E1DE0071D863 /* APCCMS.h in Headers */ = {isa = PBXBuildFile; fileRef = 7473070E1A96E1DE0071D863 /* APCCMS.h */; settings = {ATTRIBUTES = (Public, ); }; };
747FB1451ABDDFAE00345000 /* ResearchKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 747FB1441ABDDFAE00345000 /* ResearchKit.framework */; };
7B07B8AE1ACDD7B400734558 /* APCHealthKitBackgroundDataCollector.h in Headers */ = {isa = PBXBuildFile; fileRef = 7B07B8AA1ACDD7B400734558 /* APCHealthKitBackgroundDataCollector.h */; settings = {ATTRIBUTES = (Public, ); }; };
7B07B8AF1ACDD7B400734558 /* APCHealthKitBackgroundDataCollector.m in Sources */ = {isa = PBXBuildFile; fileRef = 7B07B8AB1ACDD7B400734558 /* APCHealthKitBackgroundDataCollector.m */; };
7B362C061B02A34500127051 /* APCDataArchiver.h in Headers */ = {isa = PBXBuildFile; fileRef = 7B362C041B02A34500127051 /* APCDataArchiver.h */; settings = {ATTRIBUTES = (Public, ); }; };
7B362C071B02A34500127051 /* APCDataArchiver.m in Sources */ = {isa = PBXBuildFile; fileRef = 7B362C051B02A34500127051 /* APCDataArchiver.m */; };
7B544B331ADF084F00361FB6 /* APCDisplacementTrackingCollector.h in Headers */ = {isa = PBXBuildFile; fileRef = 7B544B311ADF084F00361FB6 /* APCDisplacementTrackingCollector.h */; settings = {ATTRIBUTES = (Public, ); }; };
7B544B341ADF084F00361FB6 /* APCDisplacementTrackingCollector.m in Sources */ = {isa = PBXBuildFile; fileRef = 7B544B321ADF084F00361FB6 /* APCDisplacementTrackingCollector.m */; };
7B544B3B1ADF09E900361FB6 /* APCPassiveDisplacementTrackingDataUploader.h in Headers */ = {isa = PBXBuildFile; fileRef = 7B544B391ADF09E900361FB6 /* APCPassiveDisplacementTrackingDataUploader.h */; settings = {ATTRIBUTES = (Public, ); }; };
7B544B3C1ADF09E900361FB6 /* APCPassiveDisplacementTrackingDataUploader.m in Sources */ = {isa = PBXBuildFile; fileRef = 7B544B3A1ADF09E900361FB6 /* APCPassiveDisplacementTrackingDataUploader.m */; };
7B558D281AE587DF00129167 /* CLLocation+APCAdditions.h in Headers */ = {isa = PBXBuildFile; fileRef = 7B558D261AE587DF00129167 /* CLLocation+APCAdditions.h */; settings = {ATTRIBUTES = (Public, ); }; };
7B558D291AE587DF00129167 /* CLLocation+APCAdditions.m in Sources */ = {isa = PBXBuildFile; fileRef = 7B558D271AE587DF00129167 /* CLLocation+APCAdditions.m */; };
7B6C8CB71AA26ECE0007B560 /* APCConsentBooleanQuestion.h in Headers */ = {isa = PBXBuildFile; fileRef = 7B6C8CAD1AA26ECE0007B560 /* APCConsentBooleanQuestion.h */; settings = {ATTRIBUTES = (Public, ); }; };
7B6C8CB81AA26ECE0007B560 /* APCConsentBooleanQuestion.m in Sources */ = {isa = PBXBuildFile; fileRef = 7B6C8CAE1AA26ECE0007B560 /* APCConsentBooleanQuestion.m */; };
7B6C8CB91AA26ECE0007B560 /* APCConsentInstructionQuestion.h in Headers */ = {isa = PBXBuildFile; fileRef = 7B6C8CAF1AA26ECE0007B560 /* APCConsentInstructionQuestion.h */; settings = {ATTRIBUTES = (Public, ); }; };
7B6C8CBA1AA26ECE0007B560 /* APCConsentInstructionQuestion.m in Sources */ = {isa = PBXBuildFile; fileRef = 7B6C8CB01AA26ECE0007B560 /* APCConsentInstructionQuestion.m */; };
7B6C8CBB1AA26ECE0007B560 /* APCConsentQuestion.h in Headers */ = {isa = PBXBuildFile; fileRef = 7B6C8CB11AA26ECE0007B560 /* APCConsentQuestion.h */; settings = {ATTRIBUTES = (Public, ); }; };
7B6C8CBC1AA26ECE0007B560 /* APCConsentQuestion.m in Sources */ = {isa = PBXBuildFile; fileRef = 7B6C8CB21AA26ECE0007B560 /* APCConsentQuestion.m */; };
7B6C8CBD1AA26ECE0007B560 /* APCConsentTask.h in Headers */ = {isa = PBXBuildFile; fileRef = 7B6C8CB31AA26ECE0007B560 /* APCConsentTask.h */; settings = {ATTRIBUTES = (Public, ); }; };
7B6C8CBE1AA26ECE0007B560 /* APCConsentTask.m in Sources */ = {isa = PBXBuildFile; fileRef = 7B6C8CB41AA26ECE0007B560 /* APCConsentTask.m */; };
7B6C8CBF1AA26ECE0007B560 /* APCConsentTextChoiceQuestion.h in Headers */ = {isa = PBXBuildFile; fileRef = 7B6C8CB51AA26ECE0007B560 /* APCConsentTextChoiceQuestion.h */; settings = {ATTRIBUTES = (Public, ); }; };
7B6C8CC01AA26ECE0007B560 /* APCConsentTextChoiceQuestion.m in Sources */ = {isa = PBXBuildFile; fileRef = 7B6C8CB61AA26ECE0007B560 /* APCConsentTextChoiceQuestion.m */; };
7B6C8CC41AA26F150007B560 /* APCStack.h in Headers */ = {isa = PBXBuildFile; fileRef = 7B6C8CC21AA26F150007B560 /* APCStack.h */; };
7B6C8CC51AA26F150007B560 /* APCStack.m in Sources */ = {isa = PBXBuildFile; fileRef = 7B6C8CC31AA26F150007B560 /* APCStack.m */; };
7B751D571B0A61A600E77BD2 /* NSDictionary+APCStringify.h in Headers */ = {isa = PBXBuildFile; fileRef = 7B751D551B0A61A600E77BD2 /* NSDictionary+APCStringify.h */; settings = {ATTRIBUTES = (Public, ); }; };
7B751D581B0A61A600E77BD2 /* NSDictionary+APCStringify.m in Sources */ = {isa = PBXBuildFile; fileRef = 7B751D561B0A61A600E77BD2 /* NSDictionary+APCStringify.m */; };
7B76F94B1AD34A72003508EB /* APCCoreMotionBackgroundDataCollector.h in Headers */ = {isa = PBXBuildFile; fileRef = 7B76F9491AD34A72003508EB /* APCCoreMotionBackgroundDataCollector.h */; settings = {ATTRIBUTES = (Public, ); }; };
7B76F94C1AD34A72003508EB /* APCCoreMotionBackgroundDataCollector.m in Sources */ = {isa = PBXBuildFile; fileRef = 7B76F94A1AD34A72003508EB /* APCCoreMotionBackgroundDataCollector.m */; };
7B8C20131AA3AB8600BFEFDA /* APCTheme.h in Headers */ = {isa = PBXBuildFile; fileRef = 7B8C20111AA3AB8600BFEFDA /* APCTheme.h */; settings = {ATTRIBUTES = (Public, ); }; };
7B8C20141AA3AB8600BFEFDA /* APCTheme.m in Sources */ = {isa = PBXBuildFile; fileRef = 7B8C20121AA3AB8600BFEFDA /* APCTheme.m */; };
7B8DBEC21AA186B2007B4026 /* APCVerticalThinLineView.h in Headers */ = {isa = PBXBuildFile; fileRef = 7BF54F8F1AA1354D0081C935 /* APCVerticalThinLineView.h */; settings = {ATTRIBUTES = (Public, ); }; };
7B8DBEC31AA186C4007B4026 /* APCHorizontalThinLineView.m in Sources */ = {isa = PBXBuildFile; fileRef = 7BF54F8E1AA1354D0081C935 /* APCHorizontalThinLineView.m */; };
7B8DBEC41AA186C6007B4026 /* APCHorizontalThinLineView.h in Headers */ = {isa = PBXBuildFile; fileRef = 7BF54F8D1AA1354D0081C935 /* APCHorizontalThinLineView.h */; settings = {ATTRIBUTES = (Public, ); }; };
7B8DBEC51AA1871D007B4026 /* APCVerticalThinLineView.m in Sources */ = {isa = PBXBuildFile; fileRef = 7BF54F901AA1354D0081C935 /* APCVerticalThinLineView.m */; };
7BA5D99E1AA43F50006F505F /* APCStoredUserData.h in Headers */ = {isa = PBXBuildFile; fileRef = 7BA5D99C1AA43F50006F505F /* APCStoredUserData.h */; settings = {ATTRIBUTES = (Public, ); }; };
7BA5D99F1AA43F50006F505F /* APCStoredUserData.m in Sources */ = {isa = PBXBuildFile; fileRef = 7BA5D99D1AA43F50006F505F /* APCStoredUserData.m */; };
7BA67A7A1AB174B500238899 /* APCTasksAndSchedulesMigrationUtility.h in Headers */ = {isa = PBXBuildFile; fileRef = 7BA67A781AB174B500238899 /* APCTasksAndSchedulesMigrationUtility.h */; };
7BA67A7B1AB174B500238899 /* APCTasksAndSchedulesMigrationUtility.m in Sources */ = {isa = PBXBuildFile; fileRef = 7BA67A791AB174B500238899 /* APCTasksAndSchedulesMigrationUtility.m */; };
7BBC9BCB1ACF416700E022DB /* APCDataCollector.h in Headers */ = {isa = PBXBuildFile; fileRef = 7BBC9BC91ACF416700E022DB /* APCDataCollector.h */; settings = {ATTRIBUTES = (Public, ); }; };
7BBC9BCC1ACF416700E022DB /* APCDataCollector.m in Sources */ = {isa = PBXBuildFile; fileRef = 7BBC9BCA1ACF416700E022DB /* APCDataCollector.m */; };
7BCF70321ACB6C5C00838717 /* APCPassiveDataCollector.h in Headers */ = {isa = PBXBuildFile; fileRef = 7BCF70301ACB6C5C00838717 /* APCPassiveDataCollector.h */; settings = {ATTRIBUTES = (Public, ); }; };
7BCF70331ACB6C5C00838717 /* APCPassiveDataCollector.m in Sources */ = {isa = PBXBuildFile; fileRef = 7BCF70311ACB6C5C00838717 /* APCPassiveDataCollector.m */; };
7BD1D3D41A702ED200D6A377 /* APCDataResult.h in Headers */ = {isa = PBXBuildFile; fileRef = 7BD1D3D21A702ED200D6A377 /* APCDataResult.h */; settings = {ATTRIBUTES = (Public, ); }; };
7BD1D3D51A702ED200D6A377 /* APCDataResult.m in Sources */ = {isa = PBXBuildFile; fileRef = 7BD1D3D31A702ED200D6A377 /* APCDataResult.m */; };
7BDF4D321AE5492400ACC1F8 /* HKWorkout+APCHelper.h in Headers */ = {isa = PBXBuildFile; fileRef = 7BDF4D301AE5492400ACC1F8 /* HKWorkout+APCHelper.h */; settings = {ATTRIBUTES = (Public, ); }; };
7BDF4D331AE5492400ACC1F8 /* HKWorkout+APCHelper.m in Sources */ = {isa = PBXBuildFile; fileRef = 7BDF4D311AE5492400ACC1F8 /* HKWorkout+APCHelper.m */; };
7BEC13D31AA3AA5B00CA316C /* APCActivityTracking.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 7BEC13CE1AA3AA5B00CA316C /* APCActivityTracking.storyboard */; };
7BEC13D41AA3AA5B00CA316C /* APCActivityTrackingStepViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = 7BEC13CF1AA3AA5B00CA316C /* APCActivityTrackingStepViewController.h */; settings = {ATTRIBUTES = (Public, ); }; };
7BEC13D51AA3AA5B00CA316C /* APCActivityTrackingStepViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 7BEC13D01AA3AA5B00CA316C /* APCActivityTrackingStepViewController.m */; };
7BEC13D61AA3AA5B00CA316C /* APCFitnessAllocation.h in Headers */ = {isa = PBXBuildFile; fileRef = 7BEC13D11AA3AA5B00CA316C /* APCFitnessAllocation.h */; settings = {ATTRIBUTES = (Public, ); }; };
7BEC13D71AA3AA5B00CA316C /* APCFitnessAllocation.m in Sources */ = {isa = PBXBuildFile; fileRef = 7BEC13D21AA3AA5B00CA316C /* APCFitnessAllocation.m */; };
7BEFD7DD1AD596070087F46C /* APCCollectorProtocol.h in Headers */ = {isa = PBXBuildFile; fileRef = 7BEFD7D61AD596070087F46C /* APCCollectorProtocol.h */; settings = {ATTRIBUTES = (Public, ); }; };
7BEFD7E01AD596070087F46C /* APCPassiveDataSink.h in Headers */ = {isa = PBXBuildFile; fileRef = 7BEFD7D91AD596070087F46C /* APCPassiveDataSink.h */; settings = {ATTRIBUTES = (Public, ); }; };
7BEFD7E11AD596070087F46C /* APCPassiveDataSink.m in Sources */ = {isa = PBXBuildFile; fileRef = 7BEFD7DA1AD596070087F46C /* APCPassiveDataSink.m */; };
7BF54F971AA158E50081C935 /* APCHorizontalBottomThinLineView.h in Headers */ = {isa = PBXBuildFile; fileRef = 7BF54F951AA158E50081C935 /* APCHorizontalBottomThinLineView.h */; settings = {ATTRIBUTES = (Public, ); }; };
7BF54F981AA158E50081C935 /* APCHorizontalBottomThinLineView.m in Sources */ = {isa = PBXBuildFile; fileRef = 7BF54F961AA158E50081C935 /* APCHorizontalBottomThinLineView.m */; };
806F24331B3388E700B50664 /* APCCMSSupport.h in Headers */ = {isa = PBXBuildFile; fileRef = 806F24321B3388E700B50664 /* APCCMSSupport.h */; settings = {ATTRIBUTES = (Public, ); }; };
A7CFE4B51A8B05F4009A171C /* APCStudyOverviewCollectionViewCell.h in Headers */ = {isa = PBXBuildFile; fileRef = A7CFE4B11A8B05F4009A171C /* APCStudyOverviewCollectionViewCell.h */; settings = {ATTRIBUTES = (Public, ); }; };
A7CFE4B61A8B05F4009A171C /* APCStudyOverviewCollectionViewCell.m in Sources */ = {isa = PBXBuildFile; fileRef = A7CFE4B21A8B05F4009A171C /* APCStudyOverviewCollectionViewCell.m */; };
A7CFE4B71A8B05F4009A171C /* APCStudyOverviewCollectionViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = A7CFE4B31A8B05F4009A171C /* APCStudyOverviewCollectionViewController.h */; };
A7CFE4B81A8B05F4009A171C /* APCStudyOverviewCollectionViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = A7CFE4B41A8B05F4009A171C /* APCStudyOverviewCollectionViewController.m */; };
CF03CD021AA23DA2000437FF /* APCMedicationDetailsTableViewCell.h in Headers */ = {isa = PBXBuildFile; fileRef = CF03CCFF1AA23DA2000437FF /* APCMedicationDetailsTableViewCell.h */; settings = {ATTRIBUTES = (Public, ); }; };
CF03CD031AA23DA2000437FF /* APCMedicationDetailsTableViewCell.m in Sources */ = {isa = PBXBuildFile; fileRef = CF03CD001AA23DA2000437FF /* APCMedicationDetailsTableViewCell.m */; };
CF03CD041AA23DA2000437FF /* APCMedicationDetailsTableViewCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = CF03CD011AA23DA2000437FF /* APCMedicationDetailsTableViewCell.xib */; };
CF130B781A9E8DCD002DA023 /* APCSetupButtonTableViewCell.h in Headers */ = {isa = PBXBuildFile; fileRef = CF130B751A9E8DCD002DA023 /* APCSetupButtonTableViewCell.h */; settings = {ATTRIBUTES = (Public, ); }; };
CF130B791A9E8DCD002DA023 /* APCSetupButtonTableViewCell.m in Sources */ = {isa = PBXBuildFile; fileRef = CF130B761A9E8DCD002DA023 /* APCSetupButtonTableViewCell.m */; };
CF130B7A1A9E8DCD002DA023 /* APCSetupButtonTableViewCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = CF130B771A9E8DCD002DA023 /* APCSetupButtonTableViewCell.xib */; };
CF64CF2D1AE860CC000795B5 /* APCDemographicUploader.m in Sources */ = {isa = PBXBuildFile; fileRef = CF64CF2B1AE860CC000795B5 /* APCDemographicUploader.m */; };
CF7945861AA7AEC70019160F /* APCFrequencyEverydayTableViewCell.h in Headers */ = {isa = PBXBuildFile; fileRef = CF7945831AA7AEC70019160F /* APCFrequencyEverydayTableViewCell.h */; settings = {ATTRIBUTES = (Public, ); }; };
CF7945871AA7AEC70019160F /* APCFrequencyEverydayTableViewCell.m in Sources */ = {isa = PBXBuildFile; fileRef = CF7945841AA7AEC70019160F /* APCFrequencyEverydayTableViewCell.m */; };
CF7945881AA7AEC70019160F /* APCFrequencyEverydayTableViewCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = CF7945851AA7AEC70019160F /* APCFrequencyEverydayTableViewCell.xib */; };
CFBD289A1AA4408800F49161 /* APCMedicationNameTableViewCell.h in Headers */ = {isa = PBXBuildFile; fileRef = CFBD28971AA4408800F49161 /* APCMedicationNameTableViewCell.h */; settings = {ATTRIBUTES = (Public, ); }; };
CFBD289B1AA4408800F49161 /* APCMedicationNameTableViewCell.m in Sources */ = {isa = PBXBuildFile; fileRef = CFBD28981AA4408800F49161 /* APCMedicationNameTableViewCell.m */; };
CFBD289C1AA4408800F49161 /* APCMedicationNameTableViewCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = CFBD28991AA4408800F49161 /* APCMedicationNameTableViewCell.xib */; };
CFEF5CAD1A807DE4009A8634 /* APCCustomBackButton.h in Headers */ = {isa = PBXBuildFile; fileRef = CFEF5CAB1A807DE4009A8634 /* APCCustomBackButton.h */; settings = {ATTRIBUTES = (Public, ); }; };
CFEF5CAE1A807DE4009A8634 /* APCCustomBackButton.m in Sources */ = {isa = PBXBuildFile; fileRef = CFEF5CAC1A807DE4009A8634 /* APCCustomBackButton.m */; };
CFFDED6E1A95731F00B25581 /* APCMedicationTrackerCalendarDailyView.h in Headers */ = {isa = PBXBuildFile; fileRef = CFFDED5A1A95731F00B25581 /* APCMedicationTrackerCalendarDailyView.h */; settings = {ATTRIBUTES = (Public, ); }; };
CFFDED6F1A95731F00B25581 /* APCMedicationTrackerCalendarDailyView.m in Sources */ = {isa = PBXBuildFile; fileRef = CFFDED5B1A95731F00B25581 /* APCMedicationTrackerCalendarDailyView.m */; };
CFFDED701A95731F00B25581 /* APCMedicationTrackerCalendarViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = CFFDED5C1A95731F00B25581 /* APCMedicationTrackerCalendarViewController.h */; settings = {ATTRIBUTES = (Public, ); }; };
CFFDED711A95731F00B25581 /* APCMedicationTrackerCalendarViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = CFFDED5D1A95731F00B25581 /* APCMedicationTrackerCalendarViewController.m */; };
CFFDED721A95731F00B25581 /* APCMedicationTrackerCalendarViewController.xib in Resources */ = {isa = PBXBuildFile; fileRef = CFFDED5E1A95731F00B25581 /* APCMedicationTrackerCalendarViewController.xib */; };
CFFDED731A95731F00B25581 /* APCMedicationTrackerCalendarWeeklyView.h in Headers */ = {isa = PBXBuildFile; fileRef = CFFDED5F1A95731F00B25581 /* APCMedicationTrackerCalendarWeeklyView.h */; settings = {ATTRIBUTES = (Public, ); }; };
CFFDED741A95731F00B25581 /* APCMedicationTrackerCalendarWeeklyView.m in Sources */ = {isa = PBXBuildFile; fileRef = CFFDED601A95731F00B25581 /* APCMedicationTrackerCalendarWeeklyView.m */; };
CFFDED751A95731F00B25581 /* APCMedicationTrackerDayTitleLabel.h in Headers */ = {isa = PBXBuildFile; fileRef = CFFDED611A95731F00B25581 /* APCMedicationTrackerDayTitleLabel.h */; settings = {ATTRIBUTES = (Public, ); }; };
CFFDED761A95731F00B25581 /* APCMedicationTrackerDayTitleLabel.m in Sources */ = {isa = PBXBuildFile; fileRef = CFFDED621A95731F00B25581 /* APCMedicationTrackerDayTitleLabel.m */; };
CFFDED771A95731F00B25581 /* APCMedicationTrackerDetailViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = CFFDED631A95731F00B25581 /* APCMedicationTrackerDetailViewController.h */; settings = {ATTRIBUTES = (Public, ); }; };
CFFDED781A95731F00B25581 /* APCMedicationTrackerDetailViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = CFFDED641A95731F00B25581 /* APCMedicationTrackerDetailViewController.m */; };
CFFDED791A95731F00B25581 /* APCMedicationTrackerDetailViewController.xib in Resources */ = {isa = PBXBuildFile; fileRef = CFFDED651A95731F00B25581 /* APCMedicationTrackerDetailViewController.xib */; };
CFFDED7A1A95731F00B25581 /* APCMedicationTrackerMedicationsDisplayView.h in Headers */ = {isa = PBXBuildFile; fileRef = CFFDED661A95731F00B25581 /* APCMedicationTrackerMedicationsDisplayView.h */; settings = {ATTRIBUTES = (Public, ); }; };
CFFDED7B1A95731F00B25581 /* APCMedicationTrackerMedicationsDisplayView.m in Sources */ = {isa = PBXBuildFile; fileRef = CFFDED671A95731F00B25581 /* APCMedicationTrackerMedicationsDisplayView.m */; };
CFFDED7C1A95731F00B25581 /* NSDate+MedicationTracker.h in Headers */ = {isa = PBXBuildFile; fileRef = CFFDED681A95731F00B25581 /* NSDate+MedicationTracker.h */; settings = {ATTRIBUTES = (Public, ); }; };
CFFDED7D1A95731F00B25581 /* NSDate+MedicationTracker.m in Sources */ = {isa = PBXBuildFile; fileRef = CFFDED691A95731F00B25581 /* NSDate+MedicationTracker.m */; };
CFFDED7E1A95731F00B25581 /* NSDictionary+MedicationTracker.h in Headers */ = {isa = PBXBuildFile; fileRef = CFFDED6A1A95731F00B25581 /* NSDictionary+MedicationTracker.h */; settings = {ATTRIBUTES = (Public, ); }; };
CFFDED7F1A95731F00B25581 /* NSDictionary+MedicationTracker.m in Sources */ = {isa = PBXBuildFile; fileRef = CFFDED6B1A95731F00B25581 /* NSDictionary+MedicationTracker.m */; };
CFFDED801A95731F00B25581 /* UIColor+MedicationTracker.h in Headers */ = {isa = PBXBuildFile; fileRef = CFFDED6C1A95731F00B25581 /* UIColor+MedicationTracker.h */; settings = {ATTRIBUTES = (Public, ); }; };
CFFDED811A95731F00B25581 /* UIColor+MedicationTracker.m in Sources */ = {isa = PBXBuildFile; fileRef = CFFDED6D1A95731F00B25581 /* UIColor+MedicationTracker.m */; };
CFFDEDD71A95734000B25581 /* APCMedicationDosageViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = CFFDED981A95734000B25581 /* APCMedicationDosageViewController.h */; settings = {ATTRIBUTES = (Public, ); }; };
CFFDEDD81A95734000B25581 /* APCMedicationDosageViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = CFFDED991A95734000B25581 /* APCMedicationDosageViewController.m */; };
CFFDEDD91A95734000B25581 /* APCMedicationDosageViewController.xib in Resources */ = {isa = PBXBuildFile; fileRef = CFFDED9A1A95734000B25581 /* APCMedicationDosageViewController.xib */; };
CFFDEDDA1A95734000B25581 /* APCFrequencyDayTableViewCell.h in Headers */ = {isa = PBXBuildFile; fileRef = CFFDED9C1A95734000B25581 /* APCFrequencyDayTableViewCell.h */; settings = {ATTRIBUTES = (Public, ); }; };
CFFDEDDB1A95734000B25581 /* APCFrequencyDayTableViewCell.m in Sources */ = {isa = PBXBuildFile; fileRef = CFFDED9D1A95734000B25581 /* APCFrequencyDayTableViewCell.m */; };
CFFDEDDC1A95734000B25581 /* APCFrequencyDayTableViewCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = CFFDED9E1A95734000B25581 /* APCFrequencyDayTableViewCell.xib */; };
CFFDEDDD1A95734000B25581 /* APCFrequencyTableViewTimesCell.h in Headers */ = {isa = PBXBuildFile; fileRef = CFFDED9F1A95734000B25581 /* APCFrequencyTableViewTimesCell.h */; settings = {ATTRIBUTES = (Public, ); }; };
CFFDEDDE1A95734000B25581 /* APCFrequencyTableViewTimesCell.m in Sources */ = {isa = PBXBuildFile; fileRef = CFFDEDA01A95734000B25581 /* APCFrequencyTableViewTimesCell.m */; };
CFFDEDDF1A95734000B25581 /* APCFrequencyTableViewTimesCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = CFFDEDA11A95734000B25581 /* APCFrequencyTableViewTimesCell.xib */; };
CFFDEDE01A95734000B25581 /* APCMedicationFrequencyViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = CFFDEDA21A95734000B25581 /* APCMedicationFrequencyViewController.h */; settings = {ATTRIBUTES = (Public, ); }; };
CFFDEDE11A95734000B25581 /* APCMedicationFrequencyViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = CFFDEDA31A95734000B25581 /* APCMedicationFrequencyViewController.m */; };
CFFDEDE21A95734000B25581 /* APCMedicationFrequencyViewController.xib in Resources */ = {isa = PBXBuildFile; fileRef = CFFDEDA41A95734000B25581 /* APCMedicationFrequencyViewController.xib */; };
CFFDEDE31A95734000B25581 /* APCColorSwatchTableViewCell.h in Headers */ = {isa = PBXBuildFile; fileRef = CFFDEDA61A95734000B25581 /* APCColorSwatchTableViewCell.h */; settings = {ATTRIBUTES = (Public, ); }; };
CFFDEDE41A95734000B25581 /* APCColorSwatchTableViewCell.m in Sources */ = {isa = PBXBuildFile; fileRef = CFFDEDA71A95734000B25581 /* APCColorSwatchTableViewCell.m */; };
CFFDEDE51A95734000B25581 /* APCColorSwatchTableViewCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = CFFDEDA81A95734000B25581 /* APCColorSwatchTableViewCell.xib */; };
CFFDEDE61A95734000B25581 /* APCMedicationColorViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = CFFDEDA91A95734000B25581 /* APCMedicationColorViewController.h */; settings = {ATTRIBUTES = (Public, ); }; };
CFFDEDE71A95734000B25581 /* APCMedicationColorViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = CFFDEDAA1A95734000B25581 /* APCMedicationColorViewController.m */; };
CFFDEDE81A95734000B25581 /* APCMedicationColorViewController.xib in Resources */ = {isa = PBXBuildFile; fileRef = CFFDEDAB1A95734000B25581 /* APCMedicationColorViewController.xib */; };
CFFDEDE91A95734000B25581 /* APCLozengeButton.h in Headers */ = {isa = PBXBuildFile; fileRef = CFFDEDAD1A95734000B25581 /* APCLozengeButton.h */; settings = {ATTRIBUTES = (Public, ); }; };
CFFDEDEA1A95734000B25581 /* APCLozengeButton.m in Sources */ = {isa = PBXBuildFile; fileRef = CFFDEDAE1A95734000B25581 /* APCLozengeButton.m */; };
CFFDEDEF1A95734000B25581 /* APCMedicationNameViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = CFFDEDB41A95734000B25581 /* APCMedicationNameViewController.h */; settings = {ATTRIBUTES = (Public, ); }; };
CFFDEDF01A95734000B25581 /* APCMedicationNameViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = CFFDEDB51A95734000B25581 /* APCMedicationNameViewController.m */; };
CFFDEDF11A95734000B25581 /* APCMedicationNameViewController.xib in Resources */ = {isa = PBXBuildFile; fileRef = CFFDEDB61A95734000B25581 /* APCMedicationNameViewController.xib */; };
CFFDEDF21A95734000B25581 /* APCMedicationSummaryTableViewCell.h in Headers */ = {isa = PBXBuildFile; fileRef = CFFDEDB81A95734000B25581 /* APCMedicationSummaryTableViewCell.h */; settings = {ATTRIBUTES = (Public, ); }; };
CFFDEDF31A95734000B25581 /* APCMedicationSummaryTableViewCell.m in Sources */ = {isa = PBXBuildFile; fileRef = CFFDEDB91A95734000B25581 /* APCMedicationSummaryTableViewCell.m */; };
CFFDEDF41A95734000B25581 /* APCMedicationSummaryTableViewCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = CFFDEDBA1A95734000B25581 /* APCMedicationSummaryTableViewCell.xib */; };
CFFDEDF51A95734000B25581 /* APCMedicationTrackerSetupViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = CFFDEDBB1A95734000B25581 /* APCMedicationTrackerSetupViewController.h */; settings = {ATTRIBUTES = (Public, ); }; };
CFFDEDF61A95734000B25581 /* APCMedicationTrackerSetupViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = CFFDEDBC1A95734000B25581 /* APCMedicationTrackerSetupViewController.m */; };
CFFDEDF71A95734000B25581 /* APCMedicationTrackerSetupViewController.xib in Resources */ = {isa = PBXBuildFile; fileRef = CFFDEDBD1A95734000B25581 /* APCMedicationTrackerSetupViewController.xib */; };
CFFDEDFA1A95734000B25581 /* APCSetupTableViewCell.h in Headers */ = {isa = PBXBuildFile; fileRef = CFFDEDC01A95734000B25581 /* APCSetupTableViewCell.h */; settings = {ATTRIBUTES = (Public, ); }; };
CFFDEDFB1A95734000B25581 /* APCSetupTableViewCell.m in Sources */ = {isa = PBXBuildFile; fileRef = CFFDEDC11A95734000B25581 /* APCSetupTableViewCell.m */; };
CFFDEDFC1A95734000B25581 /* APCSetupTableViewCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = CFFDEDC21A95734000B25581 /* APCSetupTableViewCell.xib */; };
EE028FE31AF94B36001C8251 /* APCKeychainStore+Passcode.h in Headers */ = {isa = PBXBuildFile; fileRef = EE028FE11AF94B36001C8251 /* APCKeychainStore+Passcode.h */; settings = {ATTRIBUTES = (Public, ); }; };
EE028FE41AF94B36001C8251 /* APCKeychainStore+Passcode.m in Sources */ = {isa = PBXBuildFile; fileRef = EE028FE21AF94B36001C8251 /* APCKeychainStore+Passcode.m */; };
EE4B95251AF82BA6000097C7 /* NSError+Bridge.h in Headers */ = {isa = PBXBuildFile; fileRef = EE4B95231AF82BA6000097C7 /* NSError+Bridge.h */; };
EE4B95261AF82BA6000097C7 /* NSError+Bridge.m in Sources */ = {isa = PBXBuildFile; fileRef = EE4B95241AF82BA6000097C7 /* NSError+Bridge.m */; };
EE64F4311B02517000A402A7 /* APCOnboardingManager.h in Headers */ = {isa = PBXBuildFile; fileRef = EE64F42F1B02517000A402A7 /* APCOnboardingManager.h */; settings = {ATTRIBUTES = (Public, ); }; };
EE64F4321B02517000A402A7 /* APCOnboardingManager.m in Sources */ = {isa = PBXBuildFile; fileRef = EE64F4301B02517000A402A7 /* APCOnboardingManager.m */; };
F50738C01A682E12004CF100 /* APCDateRange.h in Headers */ = {isa = PBXBuildFile; fileRef = F50738BE1A682E12004CF100 /* APCDateRange.h */; settings = {ATTRIBUTES = (Public, ); }; };
F50738C11A682E12004CF100 /* APCDateRange.m in Sources */ = {isa = PBXBuildFile; fileRef = F50738BF1A682E12004CF100 /* APCDateRange.m */; };
F5306CCD1A8BE7F600732E60 /* ORKQuestionResult+APCHelper.h in Headers */ = {isa = PBXBuildFile; fileRef = F5306CCB1A8BE7F600732E60 /* ORKQuestionResult+APCHelper.h */; settings = {ATTRIBUTES = (Public, ); }; };
F5306CCE1A8BE7F600732E60 /* ORKQuestionResult+APCHelper.m in Sources */ = {isa = PBXBuildFile; fileRef = F5306CCC1A8BE7F600732E60 /* ORKQuestionResult+APCHelper.m */; };
F55653B21A6F08E0003E0B0C /* libMobileGestalt.dylib in Frameworks */ = {isa = PBXBuildFile; fileRef = F55653B11A6F08E0003E0B0C /* libMobileGestalt.dylib */; };
F55653B31A6F0918003E0B0C /* libMobileGestalt.dylib in Frameworks */ = {isa = PBXBuildFile; fileRef = F55653B11A6F08E0003E0B0C /* libMobileGestalt.dylib */; };
F556549B1A701337003E0B0C /* Localizable.strings in Resources */ = {isa = PBXBuildFile; fileRef = F556549A1A701337003E0B0C /* Localizable.strings */; };
F5B946211A7309A20034C522 /* zipzap.h in Headers */ = {isa = PBXBuildFile; fileRef = F5B945F61A7309A20034C522 /* zipzap.h */; settings = {ATTRIBUTES = (Public, ); }; };
F5B946221A7309A20034C522 /* ZZAESDecryptInputStream.h in Headers */ = {isa = PBXBuildFile; fileRef = F5B945F71A7309A20034C522 /* ZZAESDecryptInputStream.h */; };
F5B946231A7309A20034C522 /* ZZAESDecryptInputStream.mm in Sources */ = {isa = PBXBuildFile; fileRef = F5B945F81A7309A20034C522 /* ZZAESDecryptInputStream.mm */; };
F5B946241A7309A20034C522 /* ZZArchive.h in Headers */ = {isa = PBXBuildFile; fileRef = F5B945F91A7309A20034C522 /* ZZArchive.h */; settings = {ATTRIBUTES = (Public, ); }; };
F5B946251A7309A20034C522 /* ZZArchive.mm in Sources */ = {isa = PBXBuildFile; fileRef = F5B945FA1A7309A20034C522 /* ZZArchive.mm */; };
F5B946261A7309A20034C522 /* ZZArchiveEntry.h in Headers */ = {isa = PBXBuildFile; fileRef = F5B945FB1A7309A20034C522 /* ZZArchiveEntry.h */; settings = {ATTRIBUTES = (Public, ); }; };
F5B946271A7309A20034C522 /* ZZArchiveEntry.m in Sources */ = {isa = PBXBuildFile; fileRef = F5B945FC1A7309A20034C522 /* ZZArchiveEntry.m */; };
F5B946281A7309A20034C522 /* ZZArchiveEntryWriter.h in Headers */ = {isa = PBXBuildFile; fileRef = F5B945FD1A7309A20034C522 /* ZZArchiveEntryWriter.h */; };
F5B946291A7309A20034C522 /* ZZChannel.h in Headers */ = {isa = PBXBuildFile; fileRef = F5B945FE1A7309A20034C522 /* ZZChannel.h */; };
F5B9462A1A7309A20034C522 /* ZZChannelOutput.h in Headers */ = {isa = PBXBuildFile; fileRef = F5B945FF1A7309A20034C522 /* ZZChannelOutput.h */; };
F5B9462B1A7309A20034C522 /* ZZConstants.h in Headers */ = {isa = PBXBuildFile; fileRef = F5B946001A7309A20034C522 /* ZZConstants.h */; settings = {ATTRIBUTES = (Public, ); }; };
F5B9462C1A7309A20034C522 /* ZZConstants.m in Sources */ = {isa = PBXBuildFile; fileRef = F5B946011A7309A20034C522 /* ZZConstants.m */; };
F5B9462D1A7309A20034C522 /* ZZDataChannel.h in Headers */ = {isa = PBXBuildFile; fileRef = F5B946021A7309A20034C522 /* ZZDataChannel.h */; };
F5B9462E1A7309A20034C522 /* ZZDataChannel.m in Sources */ = {isa = PBXBuildFile; fileRef = F5B946031A7309A20034C522 /* ZZDataChannel.m */; };
F5B9462F1A7309A20034C522 /* ZZDataChannelOutput.h in Headers */ = {isa = PBXBuildFile; fileRef = F5B946041A7309A20034C522 /* ZZDataChannelOutput.h */; };
F5B946301A7309A20034C522 /* ZZDataChannelOutput.m in Sources */ = {isa = PBXBuildFile; fileRef = F5B946051A7309A20034C522 /* ZZDataChannelOutput.m */; };
F5B946311A7309A20034C522 /* ZZDataProvider.h in Headers */ = {isa = PBXBuildFile; fileRef = F5B946061A7309A20034C522 /* ZZDataProvider.h */; };
F5B946321A7309A20034C522 /* ZZDeflateOutputStream.h in Headers */ = {isa = PBXBuildFile; fileRef = F5B946071A7309A20034C522 /* ZZDeflateOutputStream.h */; };
F5B946331A7309A20034C522 /* ZZDeflateOutputStream.m in Sources */ = {isa = PBXBuildFile; fileRef = F5B946081A7309A20034C522 /* ZZDeflateOutputStream.m */; };
F5B946341A7309A20034C522 /* ZZError.h in Headers */ = {isa = PBXBuildFile; fileRef = F5B946091A7309A20034C522 /* ZZError.h */; settings = {ATTRIBUTES = (Public, ); }; };
F5B946351A7309A20034C522 /* ZZError.m in Sources */ = {isa = PBXBuildFile; fileRef = F5B9460A1A7309A20034C522 /* ZZError.m */; };
F5B946361A7309A20034C522 /* ZZFileChannel.h in Headers */ = {isa = PBXBuildFile; fileRef = F5B9460B1A7309A20034C522 /* ZZFileChannel.h */; };
F5B946371A7309A20034C522 /* ZZFileChannel.m in Sources */ = {isa = PBXBuildFile; fileRef = F5B9460C1A7309A20034C522 /* ZZFileChannel.m */; };
F5B946381A7309A20034C522 /* ZZFileChannelOutput.h in Headers */ = {isa = PBXBuildFile; fileRef = F5B9460D1A7309A20034C522 /* ZZFileChannelOutput.h */; };
F5B946391A7309A20034C522 /* ZZFileChannelOutput.m in Sources */ = {isa = PBXBuildFile; fileRef = F5B9460E1A7309A20034C522 /* ZZFileChannelOutput.m */; };
F5B9463A1A7309A20034C522 /* ZZHeaders.h in Headers */ = {isa = PBXBuildFile; fileRef = F5B9460F1A7309A20034C522 /* ZZHeaders.h */; };
F5B9463B1A7309A20034C522 /* ZZInflateInputStream.h in Headers */ = {isa = PBXBuildFile; fileRef = F5B946101A7309A20034C522 /* ZZInflateInputStream.h */; };
F5B9463C1A7309A20034C522 /* ZZInflateInputStream.m in Sources */ = {isa = PBXBuildFile; fileRef = F5B946111A7309A20034C522 /* ZZInflateInputStream.m */; };
F5B9463D1A7309A20034C522 /* ZZNewArchiveEntry.h in Headers */ = {isa = PBXBuildFile; fileRef = F5B946121A7309A20034C522 /* ZZNewArchiveEntry.h */; };
F5B9463E1A7309A20034C522 /* ZZNewArchiveEntry.mm in Sources */ = {isa = PBXBuildFile; fileRef = F5B946131A7309A20034C522 /* ZZNewArchiveEntry.mm */; };
F5B9463F1A7309A20034C522 /* ZZNewArchiveEntryWriter.h in Headers */ = {isa = PBXBuildFile; fileRef = F5B946141A7309A20034C522 /* ZZNewArchiveEntryWriter.h */; };
F5B946401A7309A20034C522 /* ZZNewArchiveEntryWriter.mm in Sources */ = {isa = PBXBuildFile; fileRef = F5B946151A7309A20034C522 /* ZZNewArchiveEntryWriter.mm */; };
F5B946411A7309A20034C522 /* ZZOldArchiveEntry.h in Headers */ = {isa = PBXBuildFile; fileRef = F5B946161A7309A20034C522 /* ZZOldArchiveEntry.h */; };
F5B946421A7309A20034C522 /* ZZOldArchiveEntry.mm in Sources */ = {isa = PBXBuildFile; fileRef = F5B946171A7309A20034C522 /* ZZOldArchiveEntry.mm */; };
F5B946431A7309A20034C522 /* ZZOldArchiveEntryWriter.h in Headers */ = {isa = PBXBuildFile; fileRef = F5B946181A7309A20034C522 /* ZZOldArchiveEntryWriter.h */; };
F5B946441A7309A20034C522 /* ZZOldArchiveEntryWriter.mm in Sources */ = {isa = PBXBuildFile; fileRef = F5B946191A7309A20034C522 /* ZZOldArchiveEntryWriter.mm */; };
F5B946451A7309A20034C522 /* ZZScopeGuard.h in Headers */ = {isa = PBXBuildFile; fileRef = F5B9461A1A7309A20034C522 /* ZZScopeGuard.h */; };
F5B946461A7309A20034C522 /* ZZStandardCryptoEngine.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F5B9461B1A7309A20034C522 /* ZZStandardCryptoEngine.cpp */; };
F5B946471A7309A20034C522 /* ZZStandardCryptoEngine.h in Headers */ = {isa = PBXBuildFile; fileRef = F5B9461C1A7309A20034C522 /* ZZStandardCryptoEngine.h */; };
F5B946481A7309A20034C522 /* ZZStandardDecryptInputStream.h in Headers */ = {isa = PBXBuildFile; fileRef = F5B9461D1A7309A20034C522 /* ZZStandardDecryptInputStream.h */; };
F5B946491A7309A20034C522 /* ZZStandardDecryptInputStream.mm in Sources */ = {isa = PBXBuildFile; fileRef = F5B9461E1A7309A20034C522 /* ZZStandardDecryptInputStream.mm */; };
F5B9464A1A7309A20034C522 /* ZZStoreOutputStream.h in Headers */ = {isa = PBXBuildFile; fileRef = F5B9461F1A7309A20034C522 /* ZZStoreOutputStream.h */; };
F5B9464B1A7309A20034C522 /* ZZStoreOutputStream.m in Sources */ = {isa = PBXBuildFile; fileRef = F5B946201A7309A20034C522 /* ZZStoreOutputStream.m */; };
F5B947AD1A73272C0034C522 /* APCAppearanceInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = F5B947361A73272C0034C522 /* APCAppearanceInfo.h */; settings = {ATTRIBUTES = (Public, ); }; };
F5B947AE1A73272C0034C522 /* APCAppearanceInfo.m in Sources */ = {isa = PBXBuildFile; fileRef = F5B947371A73272C0034C522 /* APCAppearanceInfo.m */; };
F5B947AF1A73272C0034C522 /* UIColor+APCAppearance.h in Headers */ = {isa = PBXBuildFile; fileRef = F5B947381A73272C0034C522 /* UIColor+APCAppearance.h */; settings = {ATTRIBUTES = (Public, ); }; };
F5B947B01A73272C0034C522 /* UIColor+APCAppearance.m in Sources */ = {isa = PBXBuildFile; fileRef = F5B947391A73272C0034C522 /* UIColor+APCAppearance.m */; };
F5B947B11A73272C0034C522 /* UIFont+APCAppearance.h in Headers */ = {isa = PBXBuildFile; fileRef = F5B9473A1A73272C0034C522 /* UIFont+APCAppearance.h */; settings = {ATTRIBUTES = (Public, ); }; };
F5B947B21A73272C0034C522 /* UIFont+APCAppearance.m in Sources */ = {isa = PBXBuildFile; fileRef = F5B9473B1A73272C0034C522 /* UIFont+APCAppearance.m */; };
F5B947B31A73272C0034C522 /* APCAssertionHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = F5B9473D1A73272C0034C522 /* APCAssertionHandler.h */; settings = {ATTRIBUTES = (Public, ); }; };
F5B947B41A73272C0034C522 /* APCAssertionHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = F5B9473E1A73272C0034C522 /* APCAssertionHandler.m */; };
F5B947B51A73272C0034C522 /* APCDeviceHardware+APCHelper.h in Headers */ = {isa = PBXBuildFile; fileRef = F5B947401A73272C0034C522 /* APCDeviceHardware+APCHelper.h */; settings = {ATTRIBUTES = (Public, ); }; };
F5B947B61A73272C0034C522 /* APCDeviceHardware+APCHelper.m in Sources */ = {isa = PBXBuildFile; fileRef = F5B947411A73272C0034C522 /* APCDeviceHardware+APCHelper.m */; };
F5B947B71A73272C0034C522 /* APCStepProgressBar+Appearance.h in Headers */ = {isa = PBXBuildFile; fileRef = F5B947421A73272C0034C522 /* APCStepProgressBar+Appearance.h */; settings = {ATTRIBUTES = (Public, ); }; };
F5B947B81A73272C0034C522 /* APCStepProgressBar+Appearance.m in Sources */ = {isa = PBXBuildFile; fileRef = F5B947431A73272C0034C522 /* APCStepProgressBar+Appearance.m */; };
F5B947B91A73272C0034C522 /* HKHealthStore+APCExtensions.h in Headers */ = {isa = PBXBuildFile; fileRef = F5B947441A73272C0034C522 /* HKHealthStore+APCExtensions.h */; settings = {ATTRIBUTES = (Public, ); }; };
F5B947BA1A73272C0034C522 /* HKHealthStore+APCExtensions.m in Sources */ = {isa = PBXBuildFile; fileRef = F5B947451A73272C0034C522 /* HKHealthStore+APCExtensions.m */; };
F5B947BB1A73272C0034C522 /* NSBundle+Helper.h in Headers */ = {isa = PBXBuildFile; fileRef = F5B947461A73272C0034C522 /* NSBundle+Helper.h */; settings = {ATTRIBUTES = (Public, ); }; };
F5B947BC1A73272C0034C522 /* NSBundle+Helper.m in Sources */ = {isa = PBXBuildFile; fileRef = F5B947471A73272C0034C522 /* NSBundle+Helper.m */; };
F5B947BD1A73272C0034C522 /* NSDate+Helper.h in Headers */ = {isa = PBXBuildFile; fileRef = F5B947481A73272C0034C522 /* NSDate+Helper.h */; settings = {ATTRIBUTES = (Public, ); }; };
F5B947BE1A73272C0034C522 /* NSDate+Helper.m in Sources */ = {isa = PBXBuildFile; fileRef = F5B947491A73272C0034C522 /* NSDate+Helper.m */; };
F5B947BF1A73272C0034C522 /* NSDateComponents+Helper.h in Headers */ = {isa = PBXBuildFile; fileRef = F5B9474A1A73272C0034C522 /* NSDateComponents+Helper.h */; settings = {ATTRIBUTES = (Public, ); }; };
F5B947C01A73272C0034C522 /* NSDateComponents+Helper.m in Sources */ = {isa = PBXBuildFile; fileRef = F5B9474B1A73272C0034C522 /* NSDateComponents+Helper.m */; };
F5B947C11A73272C0034C522 /* NSDictionary+APCAdditions.h in Headers */ = {isa = PBXBuildFile; fileRef = F5B9474C1A73272C0034C522 /* NSDictionary+APCAdditions.h */; settings = {ATTRIBUTES = (Public, ); }; };
F5B947C21A73272C0034C522 /* NSDictionary+APCAdditions.m in Sources */ = {isa = PBXBuildFile; fileRef = F5B9474D1A73272C0034C522 /* NSDictionary+APCAdditions.m */; };
F5B947C31A73272C0034C522 /* NSError+APCAdditions.h in Headers */ = {isa = PBXBuildFile; fileRef = F5B9474E1A73272C0034C522 /* NSError+APCAdditions.h */; settings = {ATTRIBUTES = (Public, ); }; };
F5B947C41A73272C0034C522 /* NSError+APCAdditions.m in Sources */ = {isa = PBXBuildFile; fileRef = F5B9474F1A73272C0034C522 /* NSError+APCAdditions.m */; };
F5B947C51A73272C0034C522 /* NSManagedObject+APCHelper.h in Headers */ = {isa = PBXBuildFile; fileRef = F5B947501A73272C0034C522 /* NSManagedObject+APCHelper.h */; settings = {ATTRIBUTES = (Public, ); }; };
F5B947C61A73272C0034C522 /* NSManagedObject+APCHelper.m in Sources */ = {isa = PBXBuildFile; fileRef = F5B947511A73272C0034C522 /* NSManagedObject+APCHelper.m */; };
F5B947C71A73272C0034C522 /* NSObject+Helper.h in Headers */ = {isa = PBXBuildFile; fileRef = F5B947521A73272C0034C522 /* NSObject+Helper.h */; settings = {ATTRIBUTES = (Public, ); }; };
F5B947C81A73272C0034C522 /* NSObject+Helper.m in Sources */ = {isa = PBXBuildFile; fileRef = F5B947531A73272C0034C522 /* NSObject+Helper.m */; };
F5B947C91A73272C0034C522 /* NSString+Helper.h in Headers */ = {isa = PBXBuildFile; fileRef = F5B947541A73272C0034C522 /* NSString+Helper.h */; settings = {ATTRIBUTES = (Public, ); }; };
F5B947CA1A73272C0034C522 /* NSString+Helper.m in Sources */ = {isa = PBXBuildFile; fileRef = F5B947551A73272C0034C522 /* NSString+Helper.m */; };
F5B947CF1A73272C0034C522 /* UIAlertController+Helper.h in Headers */ = {isa = PBXBuildFile; fileRef = F5B9475A1A73272C0034C522 /* UIAlertController+Helper.h */; settings = {ATTRIBUTES = (Public, ); }; };
F5B947D01A73272C0034C522 /* UIAlertController+Helper.m in Sources */ = {isa = PBXBuildFile; fileRef = F5B9475B1A73272C0034C522 /* UIAlertController+Helper.m */; };
F5B947D11A73272C0034C522 /* UIImage+APCHelper.h in Headers */ = {isa = PBXBuildFile; fileRef = F5B9475C1A73272C0034C522 /* UIImage+APCHelper.h */; settings = {ATTRIBUTES = (Public, ); }; };
F5B947D21A73272C0034C522 /* UIImage+APCHelper.m in Sources */ = {isa = PBXBuildFile; fileRef = F5B9475D1A73272C0034C522 /* UIImage+APCHelper.m */; };
F5B947D31A73272C0034C522 /* UIScrollView+Helper.h in Headers */ = {isa = PBXBuildFile; fileRef = F5B9475E1A73272C0034C522 /* UIScrollView+Helper.h */; settings = {ATTRIBUTES = (Public, ); }; };
F5B947D41A73272C0034C522 /* UIScrollView+Helper.m in Sources */ = {isa = PBXBuildFile; fileRef = F5B9475F1A73272C0034C522 /* UIScrollView+Helper.m */; };
F5B947D51A73272C0034C522 /* UIView+Helper.h in Headers */ = {isa = PBXBuildFile; fileRef = F5B947601A73272C0034C522 /* UIView+Helper.h */; settings = {ATTRIBUTES = (Public, ); }; };
F5B947D61A73272C0034C522 /* UIView+Helper.m in Sources */ = {isa = PBXBuildFile; fileRef = F5B947611A73272C0034C522 /* UIView+Helper.m */; };
F5B947DB1A73272C0034C522 /* APCLog.h in Headers */ = {isa = PBXBuildFile; fileRef = F5B947691A73272C0034C522 /* APCLog.h */; settings = {ATTRIBUTES = (Public, ); }; };
F5B947DC1A73272C0034C522 /* APCLog.m in Sources */ = {isa = PBXBuildFile; fileRef = F5B9476A1A73272C0034C522 /* APCLog.m */; };
F5B947DF1A73272C0034C522 /* APCConstants.h in Headers */ = {isa = PBXBuildFile; fileRef = F5B9476F1A73272C0034C522 /* APCConstants.h */; settings = {ATTRIBUTES = (Public, ); }; };
F5B947E01A73272C0034C522 /* APCConstants.m in Sources */ = {isa = PBXBuildFile; fileRef = F5B947701A73272C0034C522 /* APCConstants.m */; };
F5B947E11A73272C0034C522 /* APCDeviceHardware.h in Headers */ = {isa = PBXBuildFile; fileRef = F5B947711A73272C0034C522 /* APCDeviceHardware.h */; settings = {ATTRIBUTES = (Public, ); }; };
F5B947E21A73272C0034C522 /* APCDeviceHardware.m in Sources */ = {isa = PBXBuildFile; fileRef = F5B947721A73272C0034C522 /* APCDeviceHardware.m */; };
F5B947E31A73272C0034C522 /* APCGroupedScheduledTask.h in Headers */ = {isa = PBXBuildFile; fileRef = F5B947731A73272C0034C522 /* APCGroupedScheduledTask.h */; settings = {ATTRIBUTES = (Public, ); }; };
F5B947E41A73272C0034C522 /* APCGroupedScheduledTask.m in Sources */ = {isa = PBXBuildFile; fileRef = F5B947741A73272C0034C522 /* APCGroupedScheduledTask.m */; };
F5B947E51A73272C0034C522 /* APCKeychainStore.h in Headers */ = {isa = PBXBuildFile; fileRef = F5B947751A73272C0034C522 /* APCKeychainStore.h */; settings = {ATTRIBUTES = (Public, ); }; };
F5B947E61A73272C0034C522 /* APCKeychainStore.m in Sources */ = {isa = PBXBuildFile; fileRef = F5B947761A73272C0034C522 /* APCKeychainStore.m */; };
F5B947E71A73272C0034C522 /* APCSegmentedButton.h in Headers */ = {isa = PBXBuildFile; fileRef = F5B947771A73272C0034C522 /* APCSegmentedButton.h */; settings = {ATTRIBUTES = (Public, ); }; };
F5B947E81A73272C0034C522 /* APCSegmentedButton.m in Sources */ = {isa = PBXBuildFile; fileRef = F5B947781A73272C0034C522 /* APCSegmentedButton.m */; };
F5B947E91A73272C0034C522 /* APCTasksReminderManager.h in Headers */ = {isa = PBXBuildFile; fileRef = F5B947791A73272C0034C522 /* APCTasksReminderManager.h */; settings = {ATTRIBUTES = (Public, ); }; };
F5B947EA1A73272C0034C522 /* APCTasksReminderManager.m in Sources */ = {isa = PBXBuildFile; fileRef = F5B9477A1A73272C0034C522 /* APCTasksReminderManager.m */; };
F5B947EB1A73272C0034C522 /* APCDebugWindow.h in Headers */ = {isa = PBXBuildFile; fileRef = F5B9477C1A73272C0034C522 /* APCDebugWindow.h */; };
F5B947EC1A73272C0034C522 /* APCDebugWindow.m in Sources */ = {isa = PBXBuildFile; fileRef = F5B9477D1A73272C0034C522 /* APCDebugWindow.m */; };
F5B947ED1A73272C0034C522 /* APCParameters+Settings.h in Headers */ = {isa = PBXBuildFile; fileRef = F5B9477E1A73272C0034C522 /* APCParameters+Settings.h */; settings = {ATTRIBUTES = (Public, ); }; };
F5B947EE1A73272C0034C522 /* APCParameters+Settings.m in Sources */ = {isa = PBXBuildFile; fileRef = F5B9477F1A73272C0034C522 /* APCParameters+Settings.m */; };
F5B947EF1A73272C0034C522 /* APCParameters.h in Headers */ = {isa = PBXBuildFile; fileRef = F5B947801A73272C0034C522 /* APCParameters.h */; settings = {ATTRIBUTES = (Public, ); }; };
F5B947F01A73272C0034C522 /* APCParameters.m in Sources */ = {isa = PBXBuildFile; fileRef = F5B947811A73272C0034C522 /* APCParameters.m */; };
F5B947F11A73272C0034C522 /* APCParameters.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = F5B947821A73272C0034C522 /* APCParameters.storyboard */; };
F5B947F21A73272C0034C522 /* APCParametersCell.h in Headers */ = {isa = PBXBuildFile; fileRef = F5B947831A73272C0034C522 /* APCParametersCell.h */; };
F5B947F31A73272C0034C522 /* APCParametersCell.m in Sources */ = {isa = PBXBuildFile; fileRef = F5B947841A73272C0034C522 /* APCParametersCell.m */; };
F5B947F41A73272C0034C522 /* APCParametersCoreDataCell.h in Headers */ = {isa = PBXBuildFile; fileRef = F5B947851A73272C0034C522 /* APCParametersCoreDataCell.h */; };
F5B947F51A73272C0034C522 /* APCParametersCoreDataCell.m in Sources */ = {isa = PBXBuildFile; fileRef = F5B947861A73272C0034C522 /* APCParametersCoreDataCell.m */; };
F5B947F61A73272C0034C522 /* APCParametersDashboardTableViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = F5B947871A73272C0034C522 /* APCParametersDashboardTableViewController.h */; };
F5B947F71A73272C0034C522 /* APCParametersDashboardTableViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = F5B947881A73272C0034C522 /* APCParametersDashboardTableViewController.m */; };
F5B947F81A73272C0034C522 /* APCParametersUserDefaultCell.h in Headers */ = {isa = PBXBuildFile; fileRef = F5B947891A73272C0034C522 /* APCParametersUserDefaultCell.h */; };
F5B947F91A73272C0034C522 /* APCParametersUserDefaultCell.m in Sources */ = {isa = PBXBuildFile; fileRef = F5B9478A1A73272C0034C522 /* APCParametersUserDefaultCell.m */; };
F5B947FC1A73272C0034C522 /* APCPermissionsManager.h in Headers */ = {isa = PBXBuildFile; fileRef = F5B9478F1A73272C0034C522 /* APCPermissionsManager.h */; settings = {ATTRIBUTES = (Public, ); }; };
F5B947FD1A73272C0034C522 /* APCPermissionsManager.m in Sources */ = {isa = PBXBuildFile; fileRef = F5B947901A73272C0034C522 /* APCPermissionsManager.m */; };
F5B947FE1A73272C0034C522 /* APCScheduleExpression.h in Headers */ = {isa = PBXBuildFile; fileRef = F5B947921A73272C0034C522 /* APCScheduleExpression.h */; settings = {ATTRIBUTES = (Public, ); }; };
F5B947FF1A73272C0034C522 /* APCScheduleExpression.m in Sources */ = {isa = PBXBuildFile; fileRef = F5B947931A73272C0034C522 /* APCScheduleExpression.m */; };
F5B948001A73272C0034C522 /* APCDayOfMonthSelector.h in Headers */ = {isa = PBXBuildFile; fileRef = F5B947951A73272C0034C522 /* APCDayOfMonthSelector.h */; settings = {ATTRIBUTES = (Public, ); }; };
F5B948011A73272C0034C522 /* APCDayOfMonthSelector.m in Sources */ = {isa = PBXBuildFile; fileRef = F5B947961A73272C0034C522 /* APCDayOfMonthSelector.m */; };
F5B948021A73272C0034C522 /* APCListSelector.h in Headers */ = {isa = PBXBuildFile; fileRef = F5B947971A73272C0034C522 /* APCListSelector.h */; settings = {ATTRIBUTES = (Public, ); }; };
F5B948031A73272C0034C522 /* APCListSelector.m in Sources */ = {isa = PBXBuildFile; fileRef = F5B947981A73272C0034C522 /* APCListSelector.m */; };
F5B948041A73272C0034C522 /* APCPointSelector.h in Headers */ = {isa = PBXBuildFile; fileRef = F5B947991A73272C0034C522 /* APCPointSelector.h */; settings = {ATTRIBUTES = (Public, ); }; };
F5B948051A73272C0034C522 /* APCPointSelector.m in Sources */ = {isa = PBXBuildFile; fileRef = F5B9479A1A73272C0034C522 /* APCPointSelector.m */; };
F5B948061A73272C0034C522 /* APCScheduleEnumerator.h in Headers */ = {isa = PBXBuildFile; fileRef = F5B9479B1A73272C0034C522 /* APCScheduleEnumerator.h */; settings = {ATTRIBUTES = (Public, ); }; };
F5B948071A73272C0034C522 /* APCScheduleEnumerator.m in Sources */ = {isa = PBXBuildFile; fileRef = F5B9479C1A73272C0034C522 /* APCScheduleEnumerator.m */; };
F5B948081A73272C0034C522 /* APCScheduleExpressionParser.h in Headers */ = {isa = PBXBuildFile; fileRef = F5B9479D1A73272C0034C522 /* APCScheduleExpressionParser.h */; settings = {ATTRIBUTES = (Public, ); }; };
F5B948091A73272C0034C522 /* APCScheduleExpressionParser.m in Sources */ = {isa = PBXBuildFile; fileRef = F5B9479E1A73272C0034C522 /* APCScheduleExpressionParser.m */; };
F5B9480A1A73272C0034C522 /* APCScheduleExpressionToken.h in Headers */ = {isa = PBXBuildFile; fileRef = F5B9479F1A73272C0034C522 /* APCScheduleExpressionToken.h */; settings = {ATTRIBUTES = (Public, ); }; };
F5B9480B1A73272C0034C522 /* APCScheduleExpressionToken.m in Sources */ = {isa = PBXBuildFile; fileRef = F5B947A01A73272C0034C522 /* APCScheduleExpressionToken.m */; };
F5B9480C1A73272C0034C522 /* APCScheduleExpressionTokenizer.h in Headers */ = {isa = PBXBuildFile; fileRef = F5B947A11A73272C0034C522 /* APCScheduleExpressionTokenizer.h */; settings = {ATTRIBUTES = (Public, ); }; };
F5B9480D1A73272C0034C522 /* APCScheduleExpressionTokenizer.m in Sources */ = {isa = PBXBuildFile; fileRef = F5B947A21A73272C0034C522 /* APCScheduleExpressionTokenizer.m */; };
F5B9480E1A73272C0034C522 /* APCTimeSelector.h in Headers */ = {isa = PBXBuildFile; fileRef = F5B947A31A73272C0034C522 /* APCTimeSelector.h */; settings = {ATTRIBUTES = (Public, ); }; };
F5B9480F1A73272C0034C522 /* APCTimeSelector.m in Sources */ = {isa = PBXBuildFile; fileRef = F5B947A41A73272C0034C522 /* APCTimeSelector.m */; };
F5B948101A73272C0034C522 /* APCTimeSelectorEnumerator.h in Headers */ = {isa = PBXBuildFile; fileRef = F5B947A51A73272C0034C522 /* APCTimeSelectorEnumerator.h */; settings = {ATTRIBUTES = (Public, ); }; };
F5B948111A73272C0034C522 /* APCTimeSelectorEnumerator.m in Sources */ = {isa = PBXBuildFile; fileRef = F5B947A61A73272C0034C522 /* APCTimeSelectorEnumerator.m */; };
F5B948121A73272C0034C522 /* APCScheduler.h in Headers */ = {isa = PBXBuildFile; fileRef = F5B947A81A73272C0034C522 /* APCScheduler.h */; settings = {ATTRIBUTES = (Public, ); }; };
F5B948131A73272C0034C522 /* APCScheduler.m in Sources */ = {isa = PBXBuildFile; fileRef = F5B947A91A73272C0034C522 /* APCScheduler.m */; };
F5B948141A73272C0034C522 /* APCScoring.h in Headers */ = {isa = PBXBuildFile; fileRef = F5B947AB1A73272C0034C522 /* APCScoring.h */; settings = {ATTRIBUTES = (Public, ); }; };
F5B948151A73272C0034C522 /* APCScoring.m in Sources */ = {isa = PBXBuildFile; fileRef = F5B947AC1A73272C0034C522 /* APCScoring.m */; };
F5B948171A7328F30034C522 /* ImageIO.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = F5B948161A7328F30034C522 /* ImageIO.framework */; };
F5C363601A40E21000113129 /* APCSmartSurveyTask.h in Headers */ = {isa = PBXBuildFile; fileRef = F5C3635E1A40E21000113129 /* APCSmartSurveyTask.h */; settings = {ATTRIBUTES = (Public, ); }; };
F5C363611A40E21000113129 /* APCSmartSurveyTask.m in Sources */ = {isa = PBXBuildFile; fileRef = F5C3635F1A40E21000113129 /* APCSmartSurveyTask.m */; };
F5F129E11A2F78490015982C /* APCAppCore.h in Headers */ = {isa = PBXBuildFile; fileRef = F5F128831A2F78490015982C /* APCAppCore.h */; settings = {ATTRIBUTES = (Public, ); }; };
F5F129E21A2F78490015982C /* APCDataMonitor+Bridge.h in Headers */ = {isa = PBXBuildFile; fileRef = F5F128851A2F78490015982C /* APCDataMonitor+Bridge.h */; settings = {ATTRIBUTES = (Public, ); }; };
F5F129E31A2F78490015982C /* APCDataMonitor+Bridge.m in Sources */ = {isa = PBXBuildFile; fileRef = F5F128861A2F78490015982C /* APCDataMonitor+Bridge.m */; };
F5F129E41A2F78490015982C /* APCDataMonitor.h in Headers */ = {isa = PBXBuildFile; fileRef = F5F128871A2F78490015982C /* APCDataMonitor.h */; settings = {ATTRIBUTES = (Public, ); }; };
F5F129E51A2F78490015982C /* APCDataMonitor.m in Sources */ = {isa = PBXBuildFile; fileRef = F5F128881A2F78490015982C /* APCDataMonitor.m */; };
F5F129EA1A2F78490015982C /* APCDataSubstrate+ResearchKit.h in Headers */ = {isa = PBXBuildFile; fileRef = F5F1288E1A2F78490015982C /* APCDataSubstrate+ResearchKit.h */; settings = {ATTRIBUTES = (Public, ); }; };
F5F129EB1A2F78490015982C /* APCDataSubstrate+ResearchKit.m in Sources */ = {isa = PBXBuildFile; fileRef = F5F1288F1A2F78490015982C /* APCDataSubstrate+ResearchKit.m */; };
F5F129EC1A2F78490015982C /* APCDataSubstrate.h in Headers */ = {isa = PBXBuildFile; fileRef = F5F128901A2F78490015982C /* APCDataSubstrate.h */; settings = {ATTRIBUTES = (Public, ); }; };
F5F129ED1A2F78490015982C /* APCDataSubstrate.m in Sources */ = {isa = PBXBuildFile; fileRef = F5F128911A2F78490015982C /* APCDataSubstrate.m */; };
F5F129EE1A2F78490015982C /* APCDBStatus+AddOn.h in Headers */ = {isa = PBXBuildFile; fileRef = F5F128931A2F78490015982C /* APCDBStatus+AddOn.h */; settings = {ATTRIBUTES = (Public, ); }; };
F5F129EF1A2F78490015982C /* APCDBStatus+AddOn.m in Sources */ = {isa = PBXBuildFile; fileRef = F5F128941A2F78490015982C /* APCDBStatus+AddOn.m */; };
F5F129F01A2F78490015982C /* APCDBStatus.h in Headers */ = {isa = PBXBuildFile; fileRef = F5F128951A2F78490015982C /* APCDBStatus.h */; settings = {ATTRIBUTES = (Public, ); }; };
F5F129F11A2F78490015982C /* APCDBStatus.m in Sources */ = {isa = PBXBuildFile; fileRef = F5F128961A2F78490015982C /* APCDBStatus.m */; };
F5F129F21A2F78490015982C /* APCModel.h in Headers */ = {isa = PBXBuildFile; fileRef = F5F128971A2F78490015982C /* APCModel.h */; settings = {ATTRIBUTES = (Public, ); }; };
F5F129F31A2F78490015982C /* APCModel.xcdatamodeld in Sources */ = {isa = PBXBuildFile; fileRef = F5F128981A2F78490015982C /* APCModel.xcdatamodeld */; };
F5F129F41A2F78490015982C /* APCResult+AddOn.h in Headers */ = {isa = PBXBuildFile; fileRef = F5F1289A1A2F78490015982C /* APCResult+AddOn.h */; settings = {ATTRIBUTES = (Public, ); }; };
F5F129F51A2F78490015982C /* APCResult+AddOn.m in Sources */ = {isa = PBXBuildFile; fileRef = F5F1289B1A2F78490015982C /* APCResult+AddOn.m */; };
F5F129F61A2F78490015982C /* APCResult+Bridge.h in Headers */ = {isa = PBXBuildFile; fileRef = F5F1289C1A2F78490015982C /* APCResult+Bridge.h */; settings = {ATTRIBUTES = (Public, ); }; };
F5F129F71A2F78490015982C /* APCResult+Bridge.m in Sources */ = {isa = PBXBuildFile; fileRef = F5F1289D1A2F78490015982C /* APCResult+Bridge.m */; };
F5F129F81A2F78490015982C /* APCResult.h in Headers */ = {isa = PBXBuildFile; fileRef = F5F1289E1A2F78490015982C /* APCResult.h */; settings = {ATTRIBUTES = (Public, ); }; };
F5F129F91A2F78490015982C /* APCResult.m in Sources */ = {isa = PBXBuildFile; fileRef = F5F1289F1A2F78490015982C /* APCResult.m */; };
F5F129FA1A2F78490015982C /* APCSchedule+AddOn.h in Headers */ = {isa = PBXBuildFile; fileRef = F5F128A01A2F78490015982C /* APCSchedule+AddOn.h */; settings = {ATTRIBUTES = (Public, ); }; };
F5F129FB1A2F78490015982C /* APCSchedule+AddOn.m in Sources */ = {isa = PBXBuildFile; fileRef = F5F128A11A2F78490015982C /* APCSchedule+AddOn.m */; };
F5F129FE1A2F78490015982C /* APCSchedule.h in Headers */ = {isa = PBXBuildFile; fileRef = F5F128A41A2F78490015982C /* APCSchedule.h */; settings = {ATTRIBUTES = (Public, ); }; };
F5F129FF1A2F78490015982C /* APCSchedule.m in Sources */ = {isa = PBXBuildFile; fileRef = F5F128A51A2F78490015982C /* APCSchedule.m */; };
F5F12A001A2F78490015982C /* APCScheduledTask+AddOn.h in Headers */ = {isa = PBXBuildFile; fileRef = F5F128A61A2F78490015982C /* APCScheduledTask+AddOn.h */; settings = {ATTRIBUTES = (Public, ); }; };
F5F12A011A2F78490015982C /* APCScheduledTask+AddOn.m in Sources */ = {isa = PBXBuildFile; fileRef = F5F128A71A2F78490015982C /* APCScheduledTask+AddOn.m */; };
F5F12A021A2F78490015982C /* APCScheduledTask.h in Headers */ = {isa = PBXBuildFile; fileRef = F5F128A81A2F78490015982C /* APCScheduledTask.h */; settings = {ATTRIBUTES = (Public, ); }; };
F5F12A031A2F78490015982C /* APCScheduledTask.m in Sources */ = {isa = PBXBuildFile; fileRef = F5F128A91A2F78490015982C /* APCScheduledTask.m */; };
F5F12A061A2F78490015982C /* APCTask+AddOn.h in Headers */ = {isa = PBXBuildFile; fileRef = F5F128AC1A2F78490015982C /* APCTask+AddOn.h */; settings = {ATTRIBUTES = (Public, ); }; };
F5F12A071A2F78490015982C /* APCTask+AddOn.m in Sources */ = {isa = PBXBuildFile; fileRef = F5F128AD1A2F78490015982C /* APCTask+AddOn.m */; };
F5F12A081A2F78490015982C /* APCTask+Bridge.h in Headers */ = {isa = PBXBuildFile; fileRef = F5F128AE1A2F78490015982C /* APCTask+Bridge.h */; settings = {ATTRIBUTES = (Public, ); }; };
F5F12A091A2F78490015982C /* APCTask+Bridge.m in Sources */ = {isa = PBXBuildFile; fileRef = F5F128AF1A2F78490015982C /* APCTask+Bridge.m */; };
F5F12A0A1A2F78490015982C /* APCTask.h in Headers */ = {isa = PBXBuildFile; fileRef = F5F128B01A2F78490015982C /* APCTask.h */; settings = {ATTRIBUTES = (Public, ); }; };
F5F12A0B1A2F78490015982C /* APCTask.m in Sources */ = {isa = PBXBuildFile; fileRef = F5F128B11A2F78490015982C /* APCTask.m */; };
F5F12A0C1A2F78490015982C /* APCUser+Bridge.h in Headers */ = {isa = PBXBuildFile; fileRef = F5F128B21A2F78490015982C /* APCUser+Bridge.h */; settings = {ATTRIBUTES = (Public, ); }; };
F5F12A0D1A2F78490015982C /* APCUser+Bridge.m in Sources */ = {isa = PBXBuildFile; fileRef = F5F128B31A2F78490015982C /* APCUser+Bridge.m */; };
F5F12A0E1A2F78490015982C /* APCUser+UserData.h in Headers */ = {isa = PBXBuildFile; fileRef = F5F128B41A2F78490015982C /* APCUser+UserData.h */; settings = {ATTRIBUTES = (Public, ); }; };
F5F12A0F1A2F78490015982C /* APCUser+UserData.m in Sources */ = {isa = PBXBuildFile; fileRef = F5F128B51A2F78490015982C /* APCUser+UserData.m */; };
F5F12A101A2F78490015982C /* APCUser.h in Headers */ = {isa = PBXBuildFile; fileRef = F5F128B61A2F78490015982C /* APCUser.h */; settings = {ATTRIBUTES = (Public, ); }; };
F5F12A111A2F78490015982C /* APCUser.m in Sources */ = {isa = PBXBuildFile; fileRef = F5F128B71A2F78490015982C /* APCUser.m */; };
F5F12A121A2F78490015982C /* MODEL_README.txt in Resources */ = {isa = PBXBuildFile; fileRef = F5F128B81A2F78490015982C /* MODEL_README.txt */; };
F5F12A6C1A2F78490015982C /* APCAppDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = F5F129201A2F78490015982C /* APCAppDelegate.h */; settings = {ATTRIBUTES = (Public, ); }; };
F5F12A6D1A2F78490015982C /* APCAppDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = F5F129211A2F78490015982C /* APCAppDelegate.m */; };
F5F12A6F1A2F78490015982C /* APCCircularProgressView.h in Headers */ = {isa = PBXBuildFile; fileRef = F5F129251A2F78490015982C /* APCCircularProgressView.h */; settings = {ATTRIBUTES = (Public, ); }; };
F5F12A701A2F78490015982C /* APCCircularProgressView.m in Sources */ = {isa = PBXBuildFile; fileRef = F5F129261A2F78490015982C /* APCCircularProgressView.m */; };
F5F12A711A2F78490015982C /* APCConcentricProgressView.h in Headers */ = {isa = PBXBuildFile; fileRef = F5F129271A2F78490015982C /* APCConcentricProgressView.h */; settings = {ATTRIBUTES = (Public, ); }; };
F5F12A721A2F78490015982C /* APCConcentricProgressView.m in Sources */ = {isa = PBXBuildFile; fileRef = F5F129281A2F78490015982C /* APCConcentricProgressView.m */; };
F5F12A731A2F78490015982C /* APCConfirmationView.h in Headers */ = {isa = PBXBuildFile; fileRef = F5F129291A2F78490015982C /* APCConfirmationView.h */; settings = {ATTRIBUTES = (Public, ); }; };
F5F12A741A2F78490015982C /* APCConfirmationView.m in Sources */ = {isa = PBXBuildFile; fileRef = F5F1292A1A2F78490015982C /* APCConfirmationView.m */; };
F5F12A751A2F78490015982C /* APCPieGraphView.h in Headers */ = {isa = PBXBuildFile; fileRef = F5F1292B1A2F78490015982C /* APCPieGraphView.h */; settings = {ATTRIBUTES = (Public, ); }; };
F5F12A761A2F78490015982C /* APCPieGraphView.m in Sources */ = {isa = PBXBuildFile; fileRef = F5F1292C1A2F78490015982C /* APCPieGraphView.m */; };
F5F12A771A2F78490015982C /* APCStepProgressBar.h in Headers */ = {isa = PBXBuildFile; fileRef = F5F1292D1A2F78490015982C /* APCStepProgressBar.h */; settings = {ATTRIBUTES = (Public, ); }; };
F5F12A781A2F78490015982C /* APCStepProgressBar.m in Sources */ = {isa = PBXBuildFile; fileRef = F5F1292E1A2F78490015982C /* APCStepProgressBar.m */; };
F5F12A791A2F78490015982C /* APCAxisView.h in Headers */ = {isa = PBXBuildFile; fileRef = F5F129301A2F78490015982C /* APCAxisView.h */; settings = {ATTRIBUTES = (Public, ); }; };
F5F12A7A1A2F78490015982C /* APCAxisView.m in Sources */ = {isa = PBXBuildFile; fileRef = F5F129311A2F78490015982C /* APCAxisView.m */; };
F5F12A7B1A2F78490015982C /* APCCircleView.h in Headers */ = {isa = PBXBuildFile; fileRef = F5F129321A2F78490015982C /* APCCircleView.h */; settings = {ATTRIBUTES = (Public, ); }; };
F5F12A7C1A2F78490015982C /* APCCircleView.m in Sources */ = {isa = PBXBuildFile; fileRef = F5F129331A2F78490015982C /* APCCircleView.m */; };
F5F12A7D1A2F78490015982C /* APCGraph.h in Headers */ = {isa = PBXBuildFile; fileRef = F5F129341A2F78490015982C /* APCGraph.h */; settings = {ATTRIBUTES = (Public, ); }; };
F5F12A7E1A2F78490015982C /* APCGraphConstants.h in Headers */ = {isa = PBXBuildFile; fileRef = F5F129351A2F78490015982C /* APCGraphConstants.h */; settings = {ATTRIBUTES = (Public, ); }; };
F5F12A7F1A2F78490015982C /* APCLineGraphView.h in Headers */ = {isa = PBXBuildFile; fileRef = F5F129361A2F78490015982C /* APCLineGraphView.h */; settings = {ATTRIBUTES = (Public, ); }; };
F5F12A801A2F78490015982C /* APCLineGraphView.m in Sources */ = {isa = PBXBuildFile; fileRef = F5F129371A2F78490015982C /* APCLineGraphView.m */; };
F5F12A811A2F78490015982C /* APCPresentAnimator.h in Headers */ = {isa = PBXBuildFile; fileRef = F5F129381A2F78490015982C /* APCPresentAnimator.h */; settings = {ATTRIBUTES = (Public, ); }; };
F5F12A821A2F78490015982C /* APCPresentAnimator.m in Sources */ = {isa = PBXBuildFile; fileRef = F5F129391A2F78490015982C /* APCPresentAnimator.m */; };
F5F12A831A2F78490015982C /* APCResizeView.h in Headers */ = {isa = PBXBuildFile; fileRef = F5F1293A1A2F78490015982C /* APCResizeView.h */; settings = {ATTRIBUTES = (Public, ); }; };
F5F12A841A2F78490015982C /* APCResizeView.m in Sources */ = {isa = PBXBuildFile; fileRef = F5F1293B1A2F78490015982C /* APCResizeView.m */; };
F5F12A851A2F78490015982C /* APCOnboarding.h in Headers */ = {isa = PBXBuildFile; fileRef = F5F1293D1A2F78490015982C /* APCOnboarding.h */; settings = {ATTRIBUTES = (Public, ); }; };
F5F12A861A2F78490015982C /* APCOnboarding.m in Sources */ = {isa = PBXBuildFile; fileRef = F5F1293E1A2F78490015982C /* APCOnboarding.m */; };
F5F12A871A2F78490015982C /* APCSignUpTask.h in Headers */ = {isa = PBXBuildFile; fileRef = F5F1293F1A2F78490015982C /* APCSignUpTask.h */; settings = {ATTRIBUTES = (Public, ); }; };
F5F12A881A2F78490015982C /* APCSignUpTask.m in Sources */ = {isa = PBXBuildFile; fileRef = F5F129401A2F78490015982C /* APCSignUpTask.m */; };
F5F12A891A2F78490015982C /* APCTableViewItem.h in Headers */ = {isa = PBXBuildFile; fileRef = F5F129411A2F78490015982C /* APCTableViewItem.h */; settings = {ATTRIBUTES = (Public, ); }; };
F5F12A8A1A2F78490015982C /* APCTableViewItem.m in Sources */ = {isa = PBXBuildFile; fileRef = F5F129421A2F78490015982C /* APCTableViewItem.m */; };
F5F12A8B1A2F78490015982C /* APCIntroVideoViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = F5F129441A2F78490015982C /* APCIntroVideoViewController.h */; settings = {ATTRIBUTES = (Public, ); }; };
F5F12A8C1A2F78490015982C /* APCIntroVideoViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = F5F129451A2F78490015982C /* APCIntroVideoViewController.m */; };
F5F12A8D1A2F78490015982C /* APCOnboarding.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = F5F129461A2F78490015982C /* APCOnboarding.storyboard */; };
F5F12A8E1A2F78490015982C /* APCShareViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = F5F129471A2F78490015982C /* APCShareViewController.h */; settings = {ATTRIBUTES = (Public, ); }; };
F5F12A8F1A2F78490015982C /* APCShareViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = F5F129481A2F78490015982C /* APCShareViewController.m */; };
F5F12A901A2F78490015982C /* APCSpinnerViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = F5F129491A2F78490015982C /* APCSpinnerViewController.h */; settings = {ATTRIBUTES = (Public, ); }; };
F5F12A911A2F78490015982C /* APCSpinnerViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = F5F1294A1A2F78490015982C /* APCSpinnerViewController.m */; };
F5F12A921A2F78490015982C /* APCSpinnerViewController.xib in Resources */ = {isa = PBXBuildFile; fileRef = F5F1294B1A2F78490015982C /* APCSpinnerViewController.xib */; };
F5F12A931A2F78490015982C /* APCStudyDetailsViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = F5F1294C1A2F78490015982C /* APCStudyDetailsViewController.h */; settings = {ATTRIBUTES = (Public, ); }; };
F5F12A941A2F78490015982C /* APCStudyDetailsViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = F5F1294D1A2F78490015982C /* APCStudyDetailsViewController.m */; };
F5F12A951A2F78490015982C /* APCStudyOverviewViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = F5F1294E1A2F78490015982C /* APCStudyOverviewViewController.h */; settings = {ATTRIBUTES = (Public, ); }; };
F5F12A961A2F78490015982C /* APCStudyOverviewViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = F5F1294F1A2F78490015982C /* APCStudyOverviewViewController.m */; };
F5F12A971A2F78490015982C /* APCUserInfoConstants.h in Headers */ = {isa = PBXBuildFile; fileRef = F5F129501A2F78490015982C /* APCUserInfoConstants.h */; settings = {ATTRIBUTES = (Public, ); }; };
F5F12A981A2F78490015982C /* APCChangeEmailViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = F5F129521A2F78490015982C /* APCChangeEmailViewController.h */; settings = {ATTRIBUTES = (Public, ); }; };
F5F12A991A2F78490015982C /* APCChangeEmailViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = F5F129531A2F78490015982C /* APCChangeEmailViewController.m */; };
F5F12A9A1A2F78490015982C /* APCEmailVerify.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = F5F129541A2F78490015982C /* APCEmailVerify.storyboard */; };
F5F12A9B1A2F78490015982C /* APCEmailVerifyViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = F5F129551A2F78490015982C /* APCEmailVerifyViewController.h */; settings = {ATTRIBUTES = (Public, ); }; };
F5F12A9C1A2F78490015982C /* APCEmailVerifyViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = F5F129561A2F78490015982C /* APCEmailVerifyViewController.m */; };
F5F12AA21A2F78490015982C /* APCForgotPasswordViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = F5F1295E1A2F78490015982C /* APCForgotPasswordViewController.h */; settings = {ATTRIBUTES = (Public, ); }; };
F5F12AA31A2F78490015982C /* APCForgotPasswordViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = F5F1295F1A2F78490015982C /* APCForgotPasswordViewController.m */; };
F5F12AA41A2F78490015982C /* APCSignInViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = F5F129601A2F78490015982C /* APCSignInViewController.h */; settings = {ATTRIBUTES = (Public, ); }; };
F5F12AA51A2F78490015982C /* APCSignInViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = F5F129611A2F78490015982C /* APCSignInViewController.m */; };
F5F12AA61A2F78490015982C /* APCEligibleViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = F5F129631A2F78490015982C /* APCEligibleViewController.h */; settings = {ATTRIBUTES = (Public, ); }; };
F5F12AA71A2F78490015982C /* APCEligibleViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = F5F129641A2F78490015982C /* APCEligibleViewController.m */; };
F5F12AA81A2F78490015982C /* APCInclusionCriteriaViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = F5F129651A2F78490015982C /* APCInclusionCriteriaViewController.h */; settings = {ATTRIBUTES = (Public, ); }; };
F5F12AA91A2F78490015982C /* APCInclusionCriteriaViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = F5F129661A2F78490015982C /* APCInclusionCriteriaViewController.m */; };
F5F12AAA1A2F78490015982C /* APCInEligibleViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = F5F129671A2F78490015982C /* APCInEligibleViewController.h */; settings = {ATTRIBUTES = (Public, ); }; };
F5F12AAB1A2F78490015982C /* APCInEligibleViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = F5F129681A2F78490015982C /* APCInEligibleViewController.m */; };
F5F12AAC1A2F78490015982C /* APCSignUpGeneralInfoViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = F5F129691A2F78490015982C /* APCSignUpGeneralInfoViewController.h */; settings = {ATTRIBUTES = (Public, ); }; };
F5F12AAD1A2F78490015982C /* APCSignUpGeneralInfoViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = F5F1296A1A2F78490015982C /* APCSignUpGeneralInfoViewController.m */; };
F5F12AAE1A2F78490015982C /* APCSignUpInfoViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = F5F1296B1A2F78490015982C /* APCSignUpInfoViewController.h */; settings = {ATTRIBUTES = (Public, ); }; };
F5F12AAF1A2F78490015982C /* APCSignUpInfoViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = F5F1296C1A2F78490015982C /* APCSignUpInfoViewController.m */; };
F5F12AB01A2F78490015982C /* APCSignUpMedicalInfoViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = F5F1296D1A2F78490015982C /* APCSignUpMedicalInfoViewController.h */; settings = {ATTRIBUTES = (Public, ); }; };
F5F12AB11A2F78490015982C /* APCSignUpMedicalInfoViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = F5F1296E1A2F78490015982C /* APCSignUpMedicalInfoViewController.m */; };
F5F12AB21A2F78490015982C /* APCSignupPasscodeViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = F5F1296F1A2F78490015982C /* APCSignupPasscodeViewController.h */; settings = {ATTRIBUTES = (Public, ); }; };
F5F12AB31A2F78490015982C /* APCSignupPasscodeViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = F5F129701A2F78490015982C /* APCSignupPasscodeViewController.m */; };
F5F12AB41A2F78490015982C /* APCSignUpPermissionsViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = F5F129711A2F78490015982C /* APCSignUpPermissionsViewController.h */; settings = {ATTRIBUTES = (Public, ); }; };
F5F12AB51A2F78490015982C /* APCSignUpPermissionsViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = F5F129721A2F78490015982C /* APCSignUpPermissionsViewController.m */; };
F5F12AB61A2F78490015982C /* APCSignUpProgressing.h in Headers */ = {isa = PBXBuildFile; fileRef = F5F129731A2F78490015982C /* APCSignUpProgressing.h */; settings = {ATTRIBUTES = (Public, ); }; };
F5F12AB71A2F78490015982C /* APCTermsAndConditionsViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = F5F129741A2F78490015982C /* APCTermsAndConditionsViewController.h */; settings = {ATTRIBUTES = (Public, ); }; };
F5F12AB81A2F78490015982C /* APCTermsAndConditionsViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = F5F129751A2F78490015982C /* APCTermsAndConditionsViewController.m */; };
F5F12AB91A2F78490015982C /* APCActivities.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = F5F129781A2F78490015982C /* APCActivities.storyboard */; };
F5F12ABA1A2F78490015982C /* APCActivitiesViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = F5F129791A2F78490015982C /* APCActivitiesViewController.h */; settings = {ATTRIBUTES = (Public, ); }; };
F5F12ABB1A2F78490015982C /* APCActivitiesViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = F5F1297A1A2F78490015982C /* APCActivitiesViewController.m */; };
F5F12ABC1A2F78490015982C /* APCDashboardEditViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = F5F1297C1A2F78490015982C /* APCDashboardEditViewController.h */; settings = {ATTRIBUTES = (Public, ); }; };
F5F12ABD1A2F78490015982C /* APCDashboardEditViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = F5F1297D1A2F78490015982C /* APCDashboardEditViewController.m */; };
F5F12ABE1A2F78490015982C /* APCDashboardViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = F5F1297E1A2F78490015982C /* APCDashboardViewController.h */; settings = {ATTRIBUTES = (Public, ); }; };
F5F12ABF1A2F78490015982C /* APCDashboardViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = F5F1297F1A2F78490015982C /* APCDashboardViewController.m */; };
F5F12AC01A2F78490015982C /* APCGraphViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = F5F129801A2F78490015982C /* APCGraphViewController.h */; settings = {ATTRIBUTES = (Public, ); }; };
F5F12AC11A2F78490015982C /* APCGraphViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = F5F129811A2F78490015982C /* APCGraphViewController.m */; };
F5F12AC21A2F78490015982C /* APCLearn.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = F5F129831A2F78490015982C /* APCLearn.storyboard */; };
F5F12AC31A2F78490015982C /* APCLearnMasterViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = F5F129841A2F78490015982C /* APCLearnMasterViewController.h */; settings = {ATTRIBUTES = (Public, ); }; };
F5F12AC41A2F78490015982C /* APCLearnMasterViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = F5F129851A2F78490015982C /* APCLearnMasterViewController.m */; };
F5F12AC51A2F78490015982C /* APCLearnStudyDetailsViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = F5F129861A2F78490015982C /* APCLearnStudyDetailsViewController.h */; settings = {ATTRIBUTES = (Public, ); }; };
F5F12AC61A2F78490015982C /* APCLearnStudyDetailsViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = F5F129871A2F78490015982C /* APCLearnStudyDetailsViewController.m */; };
F5F12AC71A2F78490015982C /* APCChangePasscodeViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = F5F129891A2F78490015982C /* APCChangePasscodeViewController.h */; settings = {ATTRIBUTES = (Public, ); }; };
F5F12AC81A2F78490015982C /* APCChangePasscodeViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = F5F1298A1A2F78490015982C /* APCChangePasscodeViewController.m */; };
F5F12AC91A2F78490015982C /* APCProfile.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = F5F1298B1A2F78490015982C /* APCProfile.storyboard */; };
F5F12ACA1A2F78490015982C /* APCProfileViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = F5F1298C1A2F78490015982C /* APCProfileViewController.h */; settings = {ATTRIBUTES = (Public, ); }; };
F5F12ACB1A2F78490015982C /* APCProfileViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = F5F1298D1A2F78490015982C /* APCProfileViewController.m */; };
F5F12ACC1A2F78490015982C /* APCSettingsViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = F5F1298E1A2F78490015982C /* APCSettingsViewController.h */; settings = {ATTRIBUTES = (Public, ); }; };
F5F12ACD1A2F78490015982C /* APCSettingsViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = F5F1298F1A2F78490015982C /* APCSettingsViewController.m */; };
F5F12ACE1A2F78490015982C /* APCWithdrawCompleteViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = F5F129901A2F78490015982C /* APCWithdrawCompleteViewController.h */; settings = {ATTRIBUTES = (Public, ); }; };
F5F12ACF1A2F78490015982C /* APCWithdrawCompleteViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = F5F129911A2F78490015982C /* APCWithdrawCompleteViewController.m */; };
F5F12AD01A2F78490015982C /* APCWithdrawSurveyViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = F5F129921A2F78490015982C /* APCWithdrawSurveyViewController.h */; settings = {ATTRIBUTES = (Public, ); }; };
F5F12AD11A2F78490015982C /* APCWithdrawSurveyViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = F5F129931A2F78490015982C /* APCWithdrawSurveyViewController.m */; };
F5F12AD21A2F78490015982C /* APCAddressTableViewCell.h in Headers */ = {isa = PBXBuildFile; fileRef = F5F129951A2F78490015982C /* APCAddressTableViewCell.h */; settings = {ATTRIBUTES = (Public, ); }; };
F5F12AD31A2F78490015982C /* APCAddressTableViewCell.m in Sources */ = {isa = PBXBuildFile; fileRef = F5F129961A2F78490015982C /* APCAddressTableViewCell.m */; };
F5F12AD41A2F78490015982C /* APCCheckTableViewCell.h in Headers */ = {isa = PBXBuildFile; fileRef = F5F129971A2F78490015982C /* APCCheckTableViewCell.h */; settings = {ATTRIBUTES = (Public, ); }; };
F5F12AD51A2F78490015982C /* APCCheckTableViewCell.m in Sources */ = {isa = PBXBuildFile; fileRef = F5F129981A2F78490015982C /* APCCheckTableViewCell.m */; };
F5F12AD61A2F78490015982C /* APCDefaultTableViewCell.h in Headers */ = {isa = PBXBuildFile; fileRef = F5F129991A2F78490015982C /* APCDefaultTableViewCell.h */; settings = {ATTRIBUTES = (Public, ); }; };
F5F12AD71A2F78490015982C /* APCDefaultTableViewCell.m in Sources */ = {isa = PBXBuildFile; fileRef = F5F1299A1A2F78490015982C /* APCDefaultTableViewCell.m */; };
F5F12AD81A2F78490015982C /* APCPermissionsCell.h in Headers */ = {isa = PBXBuildFile; fileRef = F5F1299B1A2F78490015982C /* APCPermissionsCell.h */; settings = {ATTRIBUTES = (Public, ); }; };
F5F12AD91A2F78490015982C /* APCPermissionsCell.m in Sources */ = {isa = PBXBuildFile; fileRef = F5F1299C1A2F78490015982C /* APCPermissionsCell.m */; };
F5F12ADA1A2F78490015982C /* APCPickerTableViewCell.h in Headers */ = {isa = PBXBuildFile; fileRef = F5F1299D1A2F78490015982C /* APCPickerTableViewCell.h */; settings = {ATTRIBUTES = (Public, ); }; };
F5F12ADB1A2F78490015982C /* APCPickerTableViewCell.m in Sources */ = {isa = PBXBuildFile; fileRef = F5F1299E1A2F78490015982C /* APCPickerTableViewCell.m */; };
F5F12ADC1A2F78490015982C /* APCSegmentedTableViewCell.h in Headers */ = {isa = PBXBuildFile; fileRef = F5F1299F1A2F78490015982C /* APCSegmentedTableViewCell.h */; settings = {ATTRIBUTES = (Public, ); }; };
F5F12ADD1A2F78490015982C /* APCSegmentedTableViewCell.m in Sources */ = {isa = PBXBuildFile; fileRef = F5F129A01A2F78490015982C /* APCSegmentedTableViewCell.m */; };
F5F12ADE1A2F78490015982C /* APCShareTableViewCell.h in Headers */ = {isa = PBXBuildFile; fileRef = F5F129A11A2F78490015982C /* APCShareTableViewCell.h */; settings = {ATTRIBUTES = (Public, ); }; };
F5F12ADF1A2F78490015982C /* APCShareTableViewCell.m in Sources */ = {isa = PBXBuildFile; fileRef = F5F129A21A2F78490015982C /* APCShareTableViewCell.m */; };
F5F12AE01A2F78490015982C /* APCSwitchTableViewCell.h in Headers */ = {isa = PBXBuildFile; fileRef = F5F129A31A2F78490015982C /* APCSwitchTableViewCell.h */; settings = {ATTRIBUTES = (Public, ); }; };
F5F12AE11A2F78490015982C /* APCSwitchTableViewCell.m in Sources */ = {isa = PBXBuildFile; fileRef = F5F129A41A2F78490015982C /* APCSwitchTableViewCell.m */; };
F5F12AE21A2F78490015982C /* APCTextFieldTableViewCell.h in Headers */ = {isa = PBXBuildFile; fileRef = F5F129A51A2F78490015982C /* APCTextFieldTableViewCell.h */; settings = {ATTRIBUTES = (Public, ); }; };
F5F12AE31A2F78490015982C /* APCTextFieldTableViewCell.m in Sources */ = {isa = PBXBuildFile; fileRef = F5F129A61A2F78490015982C /* APCTextFieldTableViewCell.m */; };
F5F12AE41A2F78490015982C /* APCTintedTableViewCell.h in Headers */ = {isa = PBXBuildFile; fileRef = F5F129A71A2F78490015982C /* APCTintedTableViewCell.h */; settings = {ATTRIBUTES = (Public, ); }; };
F5F12AE51A2F78490015982C /* APCTintedTableViewCell.m in Sources */ = {isa = PBXBuildFile; fileRef = F5F129A81A2F78490015982C /* APCTintedTableViewCell.m */; };
F5F12AE81A2F78490015982C /* APCDashboardEditTableViewCell.h in Headers */ = {isa = PBXBuildFile; fileRef = F5F129AC1A2F78490015982C /* APCDashboardEditTableViewCell.h */; settings = {ATTRIBUTES = (Public, ); }; };
F5F12AE91A2F78490015982C /* APCDashboardEditTableViewCell.m in Sources */ = {isa = PBXBuildFile; fileRef = F5F129AD1A2F78490015982C /* APCDashboardEditTableViewCell.m */; };
F5F12AEC1A2F78490015982C /* APCDashboardMessageTableViewCell.h in Headers */ = {isa = PBXBuildFile; fileRef = F5F129B01A2F78490015982C /* APCDashboardMessageTableViewCell.h */; settings = {ATTRIBUTES = (Public, ); }; };
F5F12AED1A2F78490015982C /* APCDashboardMessageTableViewCell.m in Sources */ = {isa = PBXBuildFile; fileRef = F5F129B11A2F78490015982C /* APCDashboardMessageTableViewCell.m */; };
F5F12AEE1A2F78490015982C /* APCDashboardPieGraphTableViewCell.h in Headers */ = {isa = PBXBuildFile; fileRef = F5F129B21A2F78490015982C /* APCDashboardPieGraphTableViewCell.h */; settings = {ATTRIBUTES = (Public, ); }; };
F5F12AEF1A2F78490015982C /* APCDashboardPieGraphTableViewCell.m in Sources */ = {isa = PBXBuildFile; fileRef = F5F129B31A2F78490015982C /* APCDashboardPieGraphTableViewCell.m */; };
F5F12AF01A2F78490015982C /* APCDashboardProgressTableViewCell.h in Headers */ = {isa = PBXBuildFile; fileRef = F5F129B41A2F78490015982C /* APCDashboardProgressTableViewCell.h */; settings = {ATTRIBUTES = (Public, ); }; };
F5F12AF11A2F78490015982C /* APCDashboardProgressTableViewCell.m in Sources */ = {isa = PBXBuildFile; fileRef = F5F129B51A2F78490015982C /* APCDashboardProgressTableViewCell.m */; };
F5F12AF21A2F78490015982C /* APCBaseTaskViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = F5F129B71A2F78490015982C /* APCBaseTaskViewController.h */; settings = {ATTRIBUTES = (Public, ); }; };
F5F12AF31A2F78490015982C /* APCBaseTaskViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = F5F129B81A2F78490015982C /* APCBaseTaskViewController.m */; };
F5F12AF41A2F78490015982C /* APCBaseWithProgressTaskViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = F5F129B91A2F78490015982C /* APCBaseWithProgressTaskViewController.h */; settings = {ATTRIBUTES = (Public, ); }; };
F5F12AF51A2F78490015982C /* APCBaseWithProgressTaskViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = F5F129BA1A2F78490015982C /* APCBaseWithProgressTaskViewController.m */; };
F5F12AF61A2F78490015982C /* APCStepViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = F5F129BB1A2F78490015982C /* APCStepViewController.h */; settings = {ATTRIBUTES = (Public, ); }; };
F5F12AF71A2F78490015982C /* APCStepViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = F5F129BC1A2F78490015982C /* APCStepViewController.m */; };
F5F12AF81A2F78490015982C /* APCGenericSurveyTaskViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = F5F129BF1A2F78490015982C /* APCGenericSurveyTaskViewController.h */; settings = {ATTRIBUTES = (Public, ); }; };
F5F12AF91A2F78490015982C /* APCGenericSurveyTaskViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = F5F129C01A2F78490015982C /* APCGenericSurveyTaskViewController.m */; };
F5F12AFA1A2F78490015982C /* APCInstructionStep.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = F5F129C21A2F78490015982C /* APCInstructionStep.storyboard */; };
F5F12AFB1A2F78490015982C /* APCInstructionStepViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = F5F129C31A2F78490015982C /* APCInstructionStepViewController.h */; settings = {ATTRIBUTES = (Public, ); }; };
F5F12AFC1A2F78490015982C /* APCInstructionStepViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = F5F129C41A2F78490015982C /* APCInstructionStepViewController.m */; };
F5F12AFD1A2F78490015982C /* APCIntroductionViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = F5F129C51A2F78490015982C /* APCIntroductionViewController.h */; settings = {ATTRIBUTES = (Public, ); }; };
F5F12AFE1A2F78490015982C /* APCIntroductionViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = F5F129C61A2F78490015982C /* APCIntroductionViewController.m */; };
F5F12AFF1A2F78490015982C /* APCIntroductionViewController.xib in Resources */ = {isa = PBXBuildFile; fileRef = F5F129C71A2F78490015982C /* APCIntroductionViewController.xib */; };
F5F12B001A2F78490015982C /* APCSimpleTaskSummaryViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = F5F129C91A2F78490015982C /* APCSimpleTaskSummaryViewController.h */; settings = {ATTRIBUTES = (Public, ); }; };
F5F12B011A2F78490015982C /* APCSimpleTaskSummaryViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = F5F129CA1A2F78490015982C /* APCSimpleTaskSummaryViewController.m */; };
F5F12B021A2F78490015982C /* APCSimpleTaskSummaryViewController.xib in Resources */ = {isa = PBXBuildFile; fileRef = F5F129CB1A2F78490015982C /* APCSimpleTaskSummaryViewController.xib */; };
F5F12B031A2F78490015982C /* APCPasscode.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = F5F129CD1A2F78490015982C /* APCPasscode.storyboard */; };
F5F12B041A2F78490015982C /* APCPasscodeViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = F5F129CE1A2F78490015982C /* APCPasscodeViewController.h */; settings = {ATTRIBUTES = (Public, ); }; };
F5F12B051A2F78490015982C /* APCPasscodeViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = F5F129CF1A2F78490015982C /* APCPasscodeViewController.m */; };
F5F12B061A2F78490015982C /* APCUserInfoViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = F5F129D01A2F78490015982C /* APCUserInfoViewController.h */; settings = {ATTRIBUTES = (Public, ); }; };
F5F12B071A2F78490015982C /* APCUserInfoViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = F5F129D11A2F78490015982C /* APCUserInfoViewController.m */; };
F5F12B081A2F78490015982C /* APCImageButton.h in Headers */ = {isa = PBXBuildFile; fileRef = F5F129D31A2F78490015982C /* APCImageButton.h */; settings = {ATTRIBUTES = (Public, ); }; };
F5F12B091A2F78490015982C /* APCImageButton.m in Sources */ = {isa = PBXBuildFile; fileRef = F5F129D41A2F78490015982C /* APCImageButton.m */; };
F5F12B0A1A2F78490015982C /* APCPasscodeView.h in Headers */ = {isa = PBXBuildFile; fileRef = F5F129D51A2F78490015982C /* APCPasscodeView.h */; settings = {ATTRIBUTES = (Public, ); }; };
F5F12B0B1A2F78490015982C /* APCPasscodeView.m in Sources */ = {isa = PBXBuildFile; fileRef = F5F129D61A2F78490015982C /* APCPasscodeView.m */; };
F5F12B0C1A2F78490015982C /* APCPermissionButton.h in Headers */ = {isa = PBXBuildFile; fileRef = F5F129D71A2F78490015982C /* APCPermissionButton.h */; settings = {ATTRIBUTES = (Public, ); }; };
F5F12B0D1A2F78490015982C /* APCPermissionButton.m in Sources */ = {isa = PBXBuildFile; fileRef = F5F129D81A2F78490015982C /* APCPermissionButton.m */; };
F5F12B151A2F78870015982C /* APCScheduleExpressionListSelectorTests.m in Sources */ = {isa = PBXBuildFile; fileRef = F5F129DA1A2F78490015982C /* APCScheduleExpressionListSelectorTests.m */; };
F5F12B171A2F78870015982C /* APCScheduleExpressionPointSelectorTests.m in Sources */ = {isa = PBXBuildFile; fileRef = F5F129DC1A2F78490015982C /* APCScheduleExpressionPointSelectorTests.m */; };
F5F12B181A2F78870015982C /* APCScheduleExpressionParserTests.m in Sources */ = {isa = PBXBuildFile; fileRef = F5F129DD1A2F78490015982C /* APCScheduleExpressionParserTests.m */; };
F5F12B1A1A2F78870015982C /* APCScheduleExpressionEnumeratorTests.m in Sources */ = {isa = PBXBuildFile; fileRef = F5F129DF1A2F78490015982C /* APCScheduleExpressionEnumeratorTests.m */; };
F5F12B231A2F861F0015982C /* CoreLocation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = F5F12B221A2F861F0015982C /* CoreLocation.framework */; };
F5F12B251A2F86280015982C /* HealthKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = F5F12B241A2F86280015982C /* HealthKit.framework */; };
F5F12B2B1A2F864B0015982C /* libz.dylib in Frameworks */ = {isa = PBXBuildFile; fileRef = F5F12B2A1A2F864B0015982C /* libz.dylib */; };
F5F12B2D1A2F86550015982C /* libarchive.dylib in Frameworks */ = {isa = PBXBuildFile; fileRef = F5F12B2C1A2F86550015982C /* libarchive.dylib */; };
F5F12B2F1A2F86600015982C /* libbz2.dylib in Frameworks */ = {isa = PBXBuildFile; fileRef = F5F12B2E1A2F86600015982C /* libbz2.dylib */; };
/* End PBXBuildFile section */
/* Begin PBXFileReference section */
0595C65F1C84292700210852 /* APCLocalJSONParser.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = APCLocalJSONParser.h; sourceTree = "<group>"; };
0595C6601C84292700210852 /* APCLocalJSONParser.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = APCLocalJSONParser.m; sourceTree = "<group>"; };
08023C4D1AA94F48008E6DDA /* APCAllSetContentViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = APCAllSetContentViewController.h; sourceTree = "<group>"; };
08023C4E1AA94F48008E6DDA /* APCAllSetContentViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = APCAllSetContentViewController.m; sourceTree = "<group>"; };
08023C511AAA12DF008E6DDA /* APCAllSetTableViewCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = APCAllSetTableViewCell.h; sourceTree = "<group>"; };
08023C521AAA12DF008E6DDA /* APCAllSetTableViewCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = APCAllSetTableViewCell.m; sourceTree = "<group>"; };
08027A3D1A7319AC00B358CC /* consent_01@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "consent_01@2x.png"; sourceTree = "<group>"; };
08027A3E1A7319AC00B358CC /* consent_02@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "consent_02@2x.png"; sourceTree = "<group>"; };
08027A3F1A7319AC00B358CC /* consent_03@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "consent_03@2x.png"; sourceTree = "<group>"; };
08027A401A7319AC00B358CC /* consent_04@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "consent_04@2x.png"; sourceTree = "<group>"; };
08027A411A7319AC00B358CC /* consent_05@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "consent_05@2x.png"; sourceTree = "<group>"; };
08027A421A7319AC00B358CC /* consent_06@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "consent_06@2x.png"; sourceTree = "<group>"; };
08027A431A7319AC00B358CC /* consent_07@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "consent_07@2x.png"; sourceTree = "<group>"; };
08027A451A7319AC00B358CC /* consent_01@3x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "consent_01@3x.png"; sourceTree = "<group>"; };
08027A461A7319AC00B358CC /* consent_02@3x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "consent_02@3x.png"; sourceTree = "<group>"; };
08027A471A7319AC00B358CC /* consent_03@3x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "consent_03@3x.png"; sourceTree = "<group>"; };
08027A481A7319AC00B358CC /* consent_04@3x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "consent_04@3x.png"; sourceTree = "<group>"; };
08027A491A7319AC00B358CC /* consent_05@3x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "consent_05@3x.png"; sourceTree = "<group>"; };
08027A4A1A7319AC00B358CC /* consent_06@3x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "consent_06@3x.png"; sourceTree = "<group>"; };
08027A4B1A7319AC00B358CC /* consent_07@3x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "consent_07@3x.png"; sourceTree = "<group>"; };
08027A4E1A7319AC00B358CC /* handtapping01@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "handtapping01@2x.png"; sourceTree = "<group>"; };
08027A4F1A7319AC00B358CC /* handtapping02@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "handtapping02@2x.png"; sourceTree = "<group>"; };
08027A501A7319AC00B358CC /* heart-fitness@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "heart-fitness@2x.png"; sourceTree = "<group>"; };
08027A511A7319AC00B358CC /* heartbeat@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "heartbeat@2x.png"; sourceTree = "<group>"; };
08027A521A7319AC00B358CC /* phonesoundwaves@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "phonesoundwaves@2x.png"; sourceTree = "<group>"; };
08027A531A7319AC00B358CC /* phonetapping@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "phonetapping@2x.png"; sourceTree = "<group>"; };
08027A541A7319AC00B358CC /* phonewaves@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "phonewaves@2x.png"; sourceTree = "<group>"; };
08027A551A7319AC00B358CC /* pocket@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "pocket@2x.png"; sourceTree = "<group>"; };
08027A561A7319AC00B358CC /* sittingman@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "sittingman@2x.png"; sourceTree = "<group>"; };
08027A571A7319AC00B358CC /* walkingman@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "walkingman@2x.png"; sourceTree = "<group>"; };
08027A581A7319AC00B358CC /* walkingman_monitor@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "walkingman_monitor@2x.png"; sourceTree = "<group>"; };
08027A5A1A7319AC00B358CC /* handtapping01@3x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "handtapping01@3x.png"; sourceTree = "<group>"; };
08027A5B1A7319AC00B358CC /* handtapping02@3x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "handtapping02@3x.png"; sourceTree = "<group>"; };
08027A5C1A7319AC00B358CC /* heart-fitness@3x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "heart-fitness@3x.png"; sourceTree = "<group>"; };
08027A5D1A7319AC00B358CC /* heartbeat@3x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "heartbeat@3x.png"; sourceTree = "<group>"; };
08027A5E1A7319AC00B358CC /* phonesoundwaves@3x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "phonesoundwaves@3x.png"; sourceTree = "<group>"; };
08027A5F1A7319AC00B358CC /* phonetapping@3x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "phonetapping@3x.png"; sourceTree = "<group>"; };
08027A601A7319AC00B358CC /* phonewaves@3x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "phonewaves@3x.png"; sourceTree = "<group>"; };
08027A611A7319AC00B358CC /* pocket@3x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "pocket@3x.png"; sourceTree = "<group>"; };
08027A621A7319AC00B358CC /* sittingman@3x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "sittingman@3x.png"; sourceTree = "<group>"; };
08027A631A7319AC00B358CC /* walkingman@3x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "walkingman@3x.png"; sourceTree = "<group>"; };
08027A641A7319AC00B358CC /* walkingman_monitor@3x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "walkingman_monitor@3x.png"; sourceTree = "<group>"; };
081A47781A93EC4700E13148 /* APCBadgeLabel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = APCBadgeLabel.h; sourceTree = "<group>"; };
081A47791A93EC4700E13148 /* APCBadgeLabel.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = APCBadgeLabel.m; sourceTree = "<group>"; };
0871A3911A8F4244002EA80D /* APCDashboardFoodInsightTableViewCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = APCDashboardFoodInsightTableViewCell.h; sourceTree = "<group>"; };
0871A3921A8F4244002EA80D /* APCDashboardFoodInsightTableViewCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = APCDashboardFoodInsightTableViewCell.m; sourceTree = "<group>"; };
087255BE1ABA390500586492 /* APCJSONSerializer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = APCJSONSerializer.h; sourceTree = "<group>"; };
087255BF1ABA390500586492 /* APCJSONSerializer.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = APCJSONSerializer.m; sourceTree = "<group>"; };
087468041AA691A400BE2572 /* APCThankYouViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = APCThankYouViewController.h; sourceTree = "<group>"; };
087468051AA691A400BE2572 /* APCThankYouViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = APCThankYouViewController.m; sourceTree = "<group>"; };
0875C3D61A797A7B00CE50FB /* APCButton.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = APCButton.h; sourceTree = "<group>"; };
0875C3D71A797A7B00CE50FB /* APCButton.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = APCButton.m; sourceTree = "<group>"; };
0894653F1A8C179700A983AC /* APCDashboardInsightsTableViewCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = APCDashboardInsightsTableViewCell.h; sourceTree = "<group>"; };
089465401A8C179700A983AC /* APCDashboardInsightsTableViewCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = APCDashboardInsightsTableViewCell.m; sourceTree = "<group>"; };
089465411A8C179700A983AC /* APCDashboardInsightSummaryTableViewCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = APCDashboardInsightSummaryTableViewCell.h; sourceTree = "<group>"; };
089465421A8C179700A983AC /* APCDashboardInsightSummaryTableViewCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = APCDashboardInsightSummaryTableViewCell.m; sourceTree = "<group>"; };
089465431A8C179700A983AC /* APCDashboardInsightTableViewCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = APCDashboardInsightTableViewCell.h; sourceTree = "<group>"; };
089465441A8C179700A983AC /* APCDashboardInsightTableViewCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = APCDashboardInsightTableViewCell.m; sourceTree = "<group>"; };
0894654B1A8C1F0200A983AC /* APCInsightBarView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = APCInsightBarView.h; sourceTree = "<group>"; };
0894654C1A8C1F0200A983AC /* APCInsightBarView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = APCInsightBarView.m; sourceTree = "<group>"; };
089465501A8C211100A983AC /* APCInsights.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = APCInsights.h; sourceTree = "<group>"; };
089465511A8C211100A983AC /* APCInsights.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = APCInsights.m; sourceTree = "<group>"; };
08970F101A8D407600EA46C3 /* APCFoodInsight.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = APCFoodInsight.h; sourceTree = "<group>"; };
08970F111A8D407600EA46C3 /* APCFoodInsight.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = APCFoodInsight.m; sourceTree = "<group>"; };
08BABB401AD62D5D00059C35 /* APCExampleLabel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = APCExampleLabel.h; sourceTree = "<group>"; };
08BABB411AD62D5D00059C35 /* APCExampleLabel.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = APCExampleLabel.m; sourceTree = "<group>"; };
08EA2AB11A7AD564007549C0 /* UIImage+ImageEffects.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIImage+ImageEffects.h"; sourceTree = "<group>"; };
08EA2AB21A7AD564007549C0 /* UIImage+ImageEffects.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIImage+ImageEffects.m"; sourceTree = "<group>"; };
360C63D01A339746002EC86C /* NSDateComponentsHelperTests.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = NSDateComponentsHelperTests.m; sourceTree = "<group>"; };
3624092A1A8181350005B1A7 /* get_debug_ip_address.sh */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.script.sh; path = get_debug_ip_address.sh; sourceTree = "<group>"; };
36257FBB1AA714B60060B95A /* CMMotionActivity+Helper.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "CMMotionActivity+Helper.h"; sourceTree = "<group>"; };
36257FBC1AA714B60060B95A /* CMMotionActivity+Helper.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "CMMotionActivity+Helper.m"; sourceTree = "<group>"; };
3627D3461A9A7517006B02E8 /* APCMedTrackerMedication.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; lineEnding = 0; path = APCMedTrackerMedication.h; sourceTree = "<group>"; xcLanguageSpecificationIdentifier = xcode.lang.objcpp; };
3627D3471A9A7517006B02E8 /* APCMedTrackerMedication.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; lineEnding = 0; path = APCMedTrackerMedication.m; sourceTree = "<group>"; xcLanguageSpecificationIdentifier = xcode.lang.objc; };
3627D34A1A9A7517006B02E8 /* APCMedTrackerPossibleDosage.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; lineEnding = 0; path = APCMedTrackerPossibleDosage.h; sourceTree = "<group>"; xcLanguageSpecificationIdentifier = xcode.lang.objcpp; };
3627D34B1A9A7517006B02E8 /* APCMedTrackerPossibleDosage.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; lineEnding = 0; path = APCMedTrackerPossibleDosage.m; sourceTree = "<group>"; xcLanguageSpecificationIdentifier = xcode.lang.objc; };
36469C311AA1433700C10CA7 /* APCModel 2.xcdatamodel */ = {isa = PBXFileReference; lastKnownFileType = wrapper.xcdatamodel; path = "APCModel 2.xcdatamodel"; sourceTree = "<group>"; };
36469C321AA1650F00C10CA7 /* APCModel 3.xcdatamodel */ = {isa = PBXFileReference; lastKnownFileType = wrapper.xcdatamodel; path = "APCModel 3.xcdatamodel"; sourceTree = "<group>"; };
3648DC551B59E7B8006B5491 /* ScheduleImportProcess-fourPages.pdf */ = {isa = PBXFileReference; lastKnownFileType = image.pdf; path = "ScheduleImportProcess-fourPages.pdf"; sourceTree = "<group>"; };
364D34881A7B1C8F0060B3F5 /* APCDataVerificationClient.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = APCDataVerificationClient.h; sourceTree = "<group>"; };
364D34891A7B1C8F0060B3F5 /* APCDataVerificationClient.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = APCDataVerificationClient.m; sourceTree = "<group>"; };
3650C6581AA29BB50075C935 /* APCCatastrophicErrorViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = APCCatastrophicErrorViewController.h; sourceTree = "<group>"; };
3650C6591AA29BB50075C935 /* APCCatastrophicErrorViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = APCCatastrophicErrorViewController.m; sourceTree = "<group>"; };
3650C65A1AA29BB50075C935 /* CatastrophicError.storyboard */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.storyboard; path = CatastrophicError.storyboard; sourceTree = "<group>"; };
3651424B1AA78521008A5CFA /* APCDataArchiverAndUploader.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = APCDataArchiverAndUploader.h; sourceTree = "<group>"; };
3651424C1AA78521008A5CFA /* APCDataArchiverAndUploader.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = APCDataArchiverAndUploader.m; sourceTree = "<group>"; };
3654318B1A9A7BC200D66D97 /* APCMedTrackerInflatableItem.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = APCMedTrackerInflatableItem.h; sourceTree = "<group>"; };
3654318C1A9A7BC200D66D97 /* APCMedTrackerInflatableItem.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = APCMedTrackerInflatableItem.m; sourceTree = "<group>"; };
366345781B1F84DD003CC0EF /* APCModel 5.xcdatamodel */ = {isa = PBXFileReference; lastKnownFileType = wrapper.xcdatamodel; path = "APCModel 5.xcdatamodel"; sourceTree = "<group>"; };
366345791B1F84F0003CC0EF /* APCModel 6.xcdatamodel */ = {isa = PBXFileReference; lastKnownFileType = wrapper.xcdatamodel; path = "APCModel 6.xcdatamodel"; sourceTree = "<group>"; };
3663457B1B1F857C003CC0EF /* APCDataMigrationMetadata_Model4ToModel6.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = APCDataMigrationMetadata_Model4ToModel6.h; sourceTree = "<group>"; };
3663457C1B1F857C003CC0EF /* APCDataMigrationMetadata_Model4ToModel6.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = APCDataMigrationMetadata_Model4ToModel6.m; sourceTree = "<group>"; };
3663457D1B1F857C003CC0EF /* APCDataMigrationPolicy_Model4ToModel6.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = APCDataMigrationPolicy_Model4ToModel6.h; sourceTree = "<group>"; };
3663457E1B1F857C003CC0EF /* APCDataMigrationPolicy_Model4ToModel6.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = APCDataMigrationPolicy_Model4ToModel6.m; sourceTree = "<group>"; };
366345831B1F8597003CC0EF /* APCMappingModel4ToModel6.xcmappingmodel */ = {isa = PBXFileReference; lastKnownFileType = wrapper.xcmappingmodel; path = APCMappingModel4ToModel6.xcmappingmodel; sourceTree = "<group>"; };
366345851B1F85B7003CC0EF /* MODEL_MIGRATION_README.txt */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = MODEL_MIGRATION_README.txt; sourceTree = "<group>"; };
366345871B1F85EA003CC0EF /* APCPotentialScheduledTask.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = APCPotentialScheduledTask.h; sourceTree = "<group>"; };
366345881B1F85EA003CC0EF /* APCPotentialScheduledTask.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = APCPotentialScheduledTask.m; sourceTree = "<group>"; };
3663458B1B1F860A003CC0EF /* APCTaskGroup.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = APCTaskGroup.h; sourceTree = "<group>"; };
3663458C1B1F860A003CC0EF /* APCTaskGroup.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = APCTaskGroup.m; sourceTree = "<group>"; };
3663458F1B1F8627003CC0EF /* NSArray+APCHelper.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSArray+APCHelper.h"; sourceTree = "<group>"; };
366345901B1F8627003CC0EF /* NSArray+APCHelper.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSArray+APCHelper.m"; sourceTree = "<group>"; };
366345931B1F863A003CC0EF /* SBBSchedule+APCHelper.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "SBBSchedule+APCHelper.h"; sourceTree = "<group>"; };
366345941B1F863A003CC0EF /* SBBSchedule+APCHelper.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "SBBSchedule+APCHelper.m"; sourceTree = "<group>"; };
366345971B1F865B003CC0EF /* APCActivitiesDateState.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = APCActivitiesDateState.h; sourceTree = "<group>"; };
366345981B1F865B003CC0EF /* APCActivitiesDateState.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = APCActivitiesDateState.m; sourceTree = "<group>"; };
366345991B1F865B003CC0EF /* APCScheduleDebugPrinter.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = APCScheduleDebugPrinter.h; sourceTree = "<group>"; };
3663459A1B1F865B003CC0EF /* APCScheduleDebugPrinter.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = APCScheduleDebugPrinter.m; sourceTree = "<group>"; };
3663459B1B1F865B003CC0EF /* APCScheduleIntervalEnumerator.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = APCScheduleIntervalEnumerator.h; sourceTree = "<group>"; };
3663459C1B1F865B003CC0EF /* APCScheduleIntervalEnumerator.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = APCScheduleIntervalEnumerator.m; sourceTree = "<group>"; };
366345A31B1F8666003CC0EF /* APCTaskGroupCacheEntry.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = APCTaskGroupCacheEntry.h; sourceTree = "<group>"; };
366345A41B1F8666003CC0EF /* APCTaskGroupCacheEntry.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = APCTaskGroupCacheEntry.m; sourceTree = "<group>"; };
366345A51B1F8666003CC0EF /* APCTopLevelScheduleEnumerator.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = APCTopLevelScheduleEnumerator.h; sourceTree = "<group>"; };
366345A61B1F8666003CC0EF /* APCTopLevelScheduleEnumerator.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = APCTopLevelScheduleEnumerator.m; sourceTree = "<group>"; };
36829A511A96B98F000AA2AB /* NSOperationQueue+Helper.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSOperationQueue+Helper.h"; sourceTree = "<group>"; };
36829A521A96B98F000AA2AB /* NSOperationQueue+Helper.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSOperationQueue+Helper.m"; sourceTree = "<group>"; };
368BAFE71A9AD91A00F04ABB /* APCMedTrackerDailyDosageRecord.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = APCMedTrackerDailyDosageRecord.h; sourceTree = "<group>"; };
368BAFE81A9AD91A00F04ABB /* APCMedTrackerDailyDosageRecord.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = APCMedTrackerDailyDosageRecord.m; sourceTree = "<group>"; };
368C85431B4FAD1500E71050 /* APCScheduleQueryEngine.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = APCScheduleQueryEngine.h; sourceTree = "<group>"; };
369B47531A853E8500777639 /* APCUtilities.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = APCUtilities.h; sourceTree = "<group>"; };
369B47541A853E8500777639 /* APCUtilities.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = APCUtilities.m; sourceTree = "<group>"; };
369C77921B1F9171007DD687 /* APCDataVerificationServerAccessControl.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = APCDataVerificationServerAccessControl.h; sourceTree = "<group>"; };
369C77941B1FB317007DD687 /* APCActivitiesViewSection.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = APCActivitiesViewSection.h; sourceTree = "<group>"; };
369C77951B1FB317007DD687 /* APCActivitiesViewSection.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = APCActivitiesViewSection.m; sourceTree = "<group>"; };
369DD5541AC0DF8100327729 /* ENCRYPTION_README.txt */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; name = ENCRYPTION_README.txt; path = CMS/ENCRYPTION_README.txt; sourceTree = "<group>"; };
369DD5561AC0E26900327729 /* APCCMS.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = APCCMS.m; path = CMS/APCCMS.m; sourceTree = "<group>"; };
369E27BB1A96B7A200D35DFA /* APCMedicationActualMedicine.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = APCMedicationActualMedicine.h; sourceTree = "<group>"; };
369E27BC1A96B7A200D35DFA /* APCMedicationActualMedicine.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = APCMedicationActualMedicine.m; sourceTree = "<group>"; };
369E27BD1A96B7A200D35DFA /* APCMedicationColor.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = APCMedicationColor.h; sourceTree = "<group>"; };
369E27BE1A96B7A200D35DFA /* APCMedicationColor.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = APCMedicationColor.m; sourceTree = "<group>"; };
369E27BF1A96B7A200D35DFA /* APCMedicationDataStorageEngine.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = APCMedicationDataStorageEngine.h; sourceTree = "<group>"; };
369E27C01A96B7A200D35DFA /* APCMedicationDataStorageEngine.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = APCMedicationDataStorageEngine.m; sourceTree = "<group>"; };
369E27C11A96B7A200D35DFA /* APCMedicationDosageTaken.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = APCMedicationDosageTaken.h; sourceTree = "<group>"; };
369E27C21A96B7A200D35DFA /* APCMedicationDosageTaken.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = APCMedicationDosageTaken.m; sourceTree = "<group>"; };
369E27C31A96B7A200D35DFA /* APCMedicationLozenge.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = APCMedicationLozenge.h; sourceTree = "<group>"; };
369E27C41A96B7A200D35DFA /* APCMedicationLozenge.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = APCMedicationLozenge.m; sourceTree = "<group>"; };
369E27C51A96B7A200D35DFA /* APCMedicationPossibleDosage.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = APCMedicationPossibleDosage.h; sourceTree = "<group>"; };
369E27C61A96B7A200D35DFA /* APCMedicationPossibleDosage.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = APCMedicationPossibleDosage.m; sourceTree = "<group>"; };
369E27C71A96B7A200D35DFA /* APCMedicationSampleDosesTaken.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; path = APCMedicationSampleDosesTaken.plist; sourceTree = "<group>"; };
369E27C81A96B7A200D35DFA /* APCMedicationSampleSchedules.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; path = APCMedicationSampleSchedules.plist; sourceTree = "<group>"; };
369E27CA1A96B7A200D35DFA /* APCMedicationUltraSimpleSelfInflator.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = APCMedicationUltraSimpleSelfInflator.h; sourceTree = "<group>"; };
369E27CB1A96B7A200D35DFA /* APCMedicationUltraSimpleSelfInflator.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = APCMedicationUltraSimpleSelfInflator.m; sourceTree = "<group>"; };
369E27CC1A96B7A200D35DFA /* APCMedicationWeeklySchedule.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = APCMedicationWeeklySchedule.h; sourceTree = "<group>"; };
369E27CD1A96B7A200D35DFA /* APCMedicationWeeklySchedule.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = APCMedicationWeeklySchedule.m; sourceTree = "<group>"; };
369E27CE1A96B7A200D35DFA /* APCMedTrackerDailyDosageRecord+Helper.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; lineEnding = 0; path = "APCMedTrackerDailyDosageRecord+Helper.h"; sourceTree = "<group>"; xcLanguageSpecificationIdentifier = xcode.lang.objcpp; };
369E27CF1A96B7A200D35DFA /* APCMedTrackerDailyDosageRecord+Helper.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; lineEnding = 0; path = "APCMedTrackerDailyDosageRecord+Helper.m"; sourceTree = "<group>"; xcLanguageSpecificationIdentifier = xcode.lang.objc; };
369E27D21A96B7A200D35DFA /* APCMedTrackerDataStorageManager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = APCMedTrackerDataStorageManager.h; sourceTree = "<group>"; };
369E27D31A96B7A200D35DFA /* APCMedTrackerDataStorageManager.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; lineEnding = 0; path = APCMedTrackerDataStorageManager.m; sourceTree = "<group>"; xcLanguageSpecificationIdentifier = xcode.lang.objc; };
369E27D41A96B7A200D35DFA /* APCMedTrackerInflatableItem+Helper.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "APCMedTrackerInflatableItem+Helper.h"; sourceTree = "<group>"; };
369E27D51A96B7A200D35DFA /* APCMedTrackerInflatableItem+Helper.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "APCMedTrackerInflatableItem+Helper.m"; sourceTree = "<group>"; };
369E27D81A96B7A200D35DFA /* APCMedTrackerMedication+Helper.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "APCMedTrackerMedication+Helper.h"; sourceTree = "<group>"; };
369E27D91A96B7A200D35DFA /* APCMedTrackerMedication+Helper.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "APCMedTrackerMedication+Helper.m"; sourceTree = "<group>"; };
369E27DC1A96B7A200D35DFA /* APCMedTrackerPrescription+Helper.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; lineEnding = 0; path = "APCMedTrackerPrescription+Helper.h"; sourceTree = "<group>"; xcLanguageSpecificationIdentifier = xcode.lang.objcpp; };
369E27DD1A96B7A200D35DFA /* APCMedTrackerPrescription+Helper.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; lineEnding = 0; path = "APCMedTrackerPrescription+Helper.m"; sourceTree = "<group>"; xcLanguageSpecificationIdentifier = xcode.lang.objc; };
369E27E01A96B7A200D35DFA /* APCMedTrackerPossibleDosage+Helper.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "APCMedTrackerPossibleDosage+Helper.h"; sourceTree = "<group>"; };
369E27E11A96B7A200D35DFA /* APCMedTrackerPossibleDosage+Helper.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "APCMedTrackerPossibleDosage+Helper.m"; sourceTree = "<group>"; };
369E27E41A96B7A200D35DFA /* APCMedTrackerPredefinedMedications.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; path = APCMedTrackerPredefinedMedications.plist; sourceTree = "<group>"; };
369E27E51A96B7A200D35DFA /* APCMedTrackerPredefinedPossibleDosages.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; path = APCMedTrackerPredefinedPossibleDosages.plist; sourceTree = "<group>"; };
369E27E61A96B7A200D35DFA /* APCMedTrackerPredefinedPrescriptionColors.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; path = APCMedTrackerPredefinedPrescriptionColors.plist; sourceTree = "<group>"; };
369E27E71A96B7A200D35DFA /* APCMedTrackerPrescriptionColor+Helper.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; lineEnding = 0; path = "APCMedTrackerPrescriptionColor+Helper.h"; sourceTree = "<group>"; xcLanguageSpecificationIdentifier = xcode.lang.objcpp; };
369E27E81A96B7A200D35DFA /* APCMedTrackerPrescriptionColor+Helper.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; lineEnding = 0; path = "APCMedTrackerPrescriptionColor+Helper.m"; sourceTree = "<group>"; xcLanguageSpecificationIdentifier = xcode.lang.objc; };
36A979781B5807E60042B6C5 /* APCScheduleImporter.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = APCScheduleImporter.h; sourceTree = "<group>"; };
36A979791B5807E60042B6C5 /* APCScheduleImporter.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = APCScheduleImporter.m; sourceTree = "<group>"; };
36A9797B1B5807E60042B6C5 /* ScheduleImportProcess.graffle */ = {isa = PBXFileReference; lastKnownFileType = file; path = ScheduleImportProcess.graffle; sourceTree = "<group>"; };
36A9797C1B5807E60042B6C5 /* ScheduleImportProcess.pdf */ = {isa = PBXFileReference; lastKnownFileType = image.pdf; path = ScheduleImportProcess.pdf; sourceTree = "<group>"; };
36A979821B5807E60042B6C5 /* APCCompletedOneTimeTaskFilter.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = APCCompletedOneTimeTaskFilter.h; sourceTree = "<group>"; };
36A979831B5807E60042B6C5 /* APCCompletedOneTimeTaskFilter.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = APCCompletedOneTimeTaskFilter.m; sourceTree = "<group>"; };
36A979841B5807E60042B6C5 /* APCExistingTaskFilter.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = APCExistingTaskFilter.h; sourceTree = "<group>"; };
36A979851B5807E60042B6C5 /* APCExistingTaskFilter.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = APCExistingTaskFilter.m; sourceTree = "<group>"; };
36A979861B5807E60042B6C5 /* APCMatchingScheduleFilter.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = APCMatchingScheduleFilter.h; sourceTree = "<group>"; };
36A979871B5807E60042B6C5 /* APCMatchingScheduleFilter.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = APCMatchingScheduleFilter.m; sourceTree = "<group>"; };
36A979881B5807E60042B6C5 /* APCMatchingSourceFilter.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = APCMatchingSourceFilter.h; sourceTree = "<group>"; };
36A979891B5807E60042B6C5 /* APCMatchingSourceFilter.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = APCMatchingSourceFilter.m; sourceTree = "<group>"; };
36A9798A1B5807E60042B6C5 /* APCScheduleInMapFilter.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = APCScheduleInMapFilter.h; sourceTree = "<group>"; };
36A9798B1B5807E60042B6C5 /* APCScheduleInMapFilter.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = APCScheduleInMapFilter.m; sourceTree = "<group>"; };
36A9798C1B5807E60042B6C5 /* APCScheduleSourceFilter.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = APCScheduleSourceFilter.h; sourceTree = "<group>"; };
36A9798D1B5807E60042B6C5 /* APCScheduleSourceFilter.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = APCScheduleSourceFilter.m; sourceTree = "<group>"; };
36A9798E1B5807E60042B6C5 /* APCScheduleStartDateFilter.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = APCScheduleStartDateFilter.h; sourceTree = "<group>"; };
36A9798F1B5807E60042B6C5 /* APCScheduleStartDateFilter.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = APCScheduleStartDateFilter.m; sourceTree = "<group>"; };
36A979901B5807E60042B6C5 /* APCUniqueTaskIdFilter.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = APCUniqueTaskIdFilter.h; sourceTree = "<group>"; };
36A979911B5807E60042B6C5 /* APCUniqueTaskIdFilter.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = APCUniqueTaskIdFilter.m; sourceTree = "<group>"; };
36A979931B5807E60042B6C5 /* APCScheduleTaskMap.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = APCScheduleTaskMap.h; sourceTree = "<group>"; };
36A979941B5807E60042B6C5 /* APCScheduleTaskMap.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = APCScheduleTaskMap.m; sourceTree = "<group>"; };
36A979951B5807E60042B6C5 /* APCScheduleTaskMapEntry.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = APCScheduleTaskMapEntry.h; sourceTree = "<group>"; };
36A979961B5807E60042B6C5 /* APCScheduleTaskMapEntry.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = APCScheduleTaskMapEntry.m; sourceTree = "<group>"; };
36A979B11B5844670042B6C5 /* APCScheduleFilter.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = APCScheduleFilter.h; sourceTree = "<group>"; };
36A979B21B5844670042B6C5 /* APCScheduleFilter.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = APCScheduleFilter.m; sourceTree = "<group>"; };
36AAB34D1A9A75BB00FAC255 /* APCMedTrackerPrescription.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; lineEnding = 0; path = APCMedTrackerPrescription.h; sourceTree = "<group>"; xcLanguageSpecificationIdentifier = xcode.lang.objcpp; };
36AAB34E1A9A75BB00FAC255 /* APCMedTrackerPrescription.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; lineEnding = 0; path = APCMedTrackerPrescription.m; sourceTree = "<group>"; xcLanguageSpecificationIdentifier = xcode.lang.objc; };
36AAB3521A9A760D00FAC255 /* APCMedTrackerPrescriptionColor.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = APCMedTrackerPrescriptionColor.h; sourceTree = "<group>"; };
36AAB3531A9A760D00FAC255 /* APCMedTrackerPrescriptionColor.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = APCMedTrackerPrescriptionColor.m; sourceTree = "<group>"; };
36B7D2531A8D848D0043F968 /* ORKAnswerFormat+Helper.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "ORKAnswerFormat+Helper.h"; sourceTree = "<group>"; };
36B7D2541A8D848D0043F968 /* ORKAnswerFormat+Helper.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "ORKAnswerFormat+Helper.m"; sourceTree = "<group>"; };
36C8B3EB1A38D9FF0051096B /* Security.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Security.framework; path = System/Library/Frameworks/Security.framework; sourceTree = SDKROOT; };
36C8B3ED1A38DA4C0051096B /* SystemConfiguration.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = SystemConfiguration.framework; path = System/Library/Frameworks/SystemConfiguration.framework; sourceTree = SDKROOT; };
36D0510C1ABB92F0008FC9B3 /* NSFileManager+Helper.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSFileManager+Helper.h"; sourceTree = "<group>"; };
36D0510D1ABB92F0008FC9B3 /* NSFileManager+Helper.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSFileManager+Helper.m"; sourceTree = "<group>"; };
36E06F1B1A33F071005D6EB0 /* APCScheduleExpressionRealLifeTests.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = APCScheduleExpressionRealLifeTests.m; sourceTree = "<group>"; };
5B04329D1A318AA2000DC9ED /* APCSignInTask.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = APCSignInTask.h; sourceTree = "<group>"; };
5B04329E1A318AA2000DC9ED /* APCSignInTask.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = APCSignInTask.m; sourceTree = "<group>"; };
5B0432A51A322BEE000DC9ED /* APCOnboardingTask.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = APCOnboardingTask.h; sourceTree = "<group>"; };
5B0432A61A322BEE000DC9ED /* APCOnboardingTask.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = APCOnboardingTask.m; sourceTree = "<group>"; };
5B0601C01AE79AE0009D6D65 /* APCFeedParser.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = APCFeedParser.h; sourceTree = "<group>"; };
5B0601C11AE79AE0009D6D65 /* APCFeedParser.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = APCFeedParser.m; sourceTree = "<group>"; };
5B0601CB1AE79B50009D6D65 /* APCFeedTableViewCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = APCFeedTableViewCell.h; sourceTree = "<group>"; };
5B0601CC1AE79B50009D6D65 /* APCFeedTableViewCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = APCFeedTableViewCell.m; sourceTree = "<group>"; };
5B09ED1D1ABC1BEF003C5061 /* APCLicenseInfoViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = APCLicenseInfoViewController.h; sourceTree = "<group>"; };
5B09ED1E1ABC1BEF003C5061 /* APCLicenseInfoViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = APCLicenseInfoViewController.m; sourceTree = "<group>"; };
5B234E121A329BF300A5A3A0 /* APCWithdrawDescriptionViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = APCWithdrawDescriptionViewController.h; sourceTree = "<group>"; };
5B234E131A329BF300A5A3A0 /* APCWithdrawDescriptionViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = APCWithdrawDescriptionViewController.m; sourceTree = "<group>"; };
5B4574C71ABFD07A00601DCC /* License_BridgeSDK.txt */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = License_BridgeSDK.txt; sourceTree = "<group>"; };
5B4574C91ABFD07A00601DCC /* License_ZipZap.txt */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = License_ZipZap.txt; sourceTree = "<group>"; };
5B534ED21B2179550049C6AB /* APCNewsFeedManager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = APCNewsFeedManager.h; sourceTree = "<group>"; };
5B534ED31B2179550049C6AB /* APCNewsFeedManager.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = APCNewsFeedManager.m; sourceTree = "<group>"; };
5B5523A91AC915140068B51D /* Social.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Social.framework; path = System/Library/Frameworks/Social.framework; sourceTree = SDKROOT; };
5B73CAF11A8B3B8C00FFE79C /* APCDashboard.storyboard */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.storyboard; path = APCDashboard.storyboard; sourceTree = "<group>"; };
5B7D47181B0549FA00958921 /* APCCubicCurveAlgorithm.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = APCCubicCurveAlgorithm.h; sourceTree = "<group>"; };
5B7D47191B0549FA00958921 /* APCCubicCurveAlgorithm.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = APCCubicCurveAlgorithm.m; sourceTree = "<group>"; };
5B7D471A1B0549FA00958921 /* APCNormalDistributionGraphView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = APCNormalDistributionGraphView.h; sourceTree = "<group>"; };