-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathproject.pbxproj
More file actions
3897 lines (3885 loc) · 214 KB
/
project.pbxproj
File metadata and controls
3897 lines (3885 loc) · 214 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 */
008689BBBC709FF567AF878307840F2D /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = C4C0D8B7FC00B07827346A4611420BBB /* Foundation.framework */; };
017BA3B3A4C3F22BC4F92122A7D55BF3 /* AHFMServices.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 7288B38577A17A8476D0408043CB7210 /* AHFMServices.framework */; };
06474D36FF555AD4C9536657B0397B6B /* AHFMEpisodeListVCServices.swift in Sources */ = {isa = PBXBuildFile; fileRef = BD2C43CDADEB3199C38AB8EC9E83DDA5 /* AHFMEpisodeListVCServices.swift */; };
07F612198032CD3AF00198F98B33BE91 /* AHDatabase.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3534887A6E54C0EA4993D1525A60B8E6 /* AHDatabase.swift */; };
0CACBE36FA0317FE3F7CD139E71F3F03 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = C4C0D8B7FC00B07827346A4611420BBB /* Foundation.framework */; };
0DBF7367C033830E2882548334EDC978 /* AHFMAudioPlayerVCServices.swift in Sources */ = {isa = PBXBuildFile; fileRef = C17A61A203AA87F61BEABF59E5602EF0 /* AHFMAudioPlayerVCServices.swift */; };
0DD6AB3A05BDEDFE3E4CB6B25DFC3E3D /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = C4C0D8B7FC00B07827346A4611420BBB /* Foundation.framework */; };
12788B13212F5FA3F5F774413529326A /* AHFMNetworking.swift in Sources */ = {isa = PBXBuildFile; fileRef = FA117DB72C15FF7CE513B7FFC041794E /* AHFMNetworking.swift */; };
13318833623342861809706C98FBBBD2 /* UIDeviceExtension.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = E86583B4CB85C7621159EDBB3DF6A640 /* UIDeviceExtension.framework */; };
170FF7D7F398E0334537DEC55280BAAD /* AHFMAudioPlayerVCManager-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 902483E0E0B5EF47C65DD3828331C2D3 /* AHFMAudioPlayerVCManager-dummy.m */; };
18F018B40969D50CB12F3CF53E48161B /* AHFMModuleManager-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = F45BA3AD2192722C65F1DB9AD580884B /* AHFMModuleManager-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; };
19257A0609452E5392BB302E3AE30CF2 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = C4C0D8B7FC00B07827346A4611420BBB /* Foundation.framework */; };
1A72CFAD71375799A80A74BEBFFF670F /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = C4C0D8B7FC00B07827346A4611420BBB /* Foundation.framework */; };
231EBBE083ACAA212E654A1439D05B4A /* AHFMServices.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 7288B38577A17A8476D0408043CB7210 /* AHFMServices.framework */; };
2771A53FE5B4C4B15DB05F754889FB21 /* AHFMAudioPlayerVCManager-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 709C8B820DB37D46A6AC98572AB4D3A9 /* AHFMAudioPlayerVCManager-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; };
2BFFA174BC2901C3FCBCC2FA1B0197B4 /* AHFMModuleManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = 14C7B76092A96879E1D2ED77AD407B4A /* AHFMModuleManager.swift */; };
2D7579466D80DFDE893446C028623689 /* SessionManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = C204E739535AC1204338C68305DCA63E /* SessionManager.swift */; };
2DF4D2ED1B1FB58CFFD5D1B268750932 /* AHFMEpisodeHistory.swift in Sources */ = {isa = PBXBuildFile; fileRef = B46B6F7E7D744EA40D3C2EA8042C5F6D /* AHFMEpisodeHistory.swift */; };
2EBB7DC3449EC492BBF7C74C0C916671 /* TaskDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = C1B1C0EDC750DC69661E89199C480A21 /* TaskDelegate.swift */; };
30F23734FCEC2357C0AA86E678B07C4F /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = C4C0D8B7FC00B07827346A4611420BBB /* Foundation.framework */; };
31C942E2ACFD80D63AEB99EF45C3DA50 /* AHDataModelQuery.swift in Sources */ = {isa = PBXBuildFile; fileRef = 54EAD35870561AF08A54B2218217736D /* AHDataModelQuery.swift */; };
32FB414D09D94C424B2706E1E1A18FF9 /* Timeline.swift in Sources */ = {isa = PBXBuildFile; fileRef = E1F27DEBA6C1EBB05920BC60D159AB11 /* Timeline.swift */; };
3490E24C00F2FADB6B96175AB6719EBA /* DispatchQueue+Alamofire.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8C3ABB4C4D07BBD8970ECC37D8D94E96 /* DispatchQueue+Alamofire.swift */; };
3C0731253A8019B6E989C22BB578FC8F /* AHFMServices-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = BABF8CF64F1F564640B3C8CBC6823769 /* AHFMServices-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; };
417601FE21C231D6CE55DB7B795395E4 /* AHFMEpisodeListVCServices-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 705886DBDCA9916556A2B364AD0CCC91 /* AHFMEpisodeListVCServices-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; };
42D23232241A7A96B0BA67487C635DF5 /* UIDeviceExtension.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = E86583B4CB85C7621159EDBB3DF6A640 /* UIDeviceExtension.framework */; };
448455EF43501F485E680475BE34A262 /* AHFMModuleManager-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = CF5071A1ECA1FDE8FEF7401358DE6BD3 /* AHFMModuleManager-dummy.m */; };
44A22D271AD37088556B5285ED52A89B /* Migration.swift in Sources */ = {isa = PBXBuildFile; fileRef = 60CAE5E4638225604328BB9E7EAFA336 /* Migration.swift */; };
44C6F888B23FCE593D82153EC1E36709 /* SwiftyJSON-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 96C61947DEECCCF5EEFA718A02E8C3F1 /* SwiftyJSON-dummy.m */; };
44F1AC857FA6DC9A64ED08D7047CF061 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = C4C0D8B7FC00B07827346A4611420BBB /* Foundation.framework */; };
4C6284D68E76F9EC809B6D05B6950A02 /* AHFMShowPageServices-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 8F7F6AB73954EA26D8D3E66D6F308DB3 /* AHFMShowPageServices-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; };
4CFFD27ED999E4FFD69AD341D0BDCF2F /* Alamofire.swift in Sources */ = {isa = PBXBuildFile; fileRef = A4EB19391A417A04CA73A007DEF38C7C /* Alamofire.swift */; };
4DE3148C555A382312051055F7C307F9 /* AHFMEpisodeListVCServices-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 957C5E96A0D880F484E99D2026834CF5 /* AHFMEpisodeListVCServices-dummy.m */; };
55A896B612754969C1415908744A76E4 /* UIDeviceExtension-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 8F4552693A6E47DFEB6E44F0D6684805 /* UIDeviceExtension-dummy.m */; };
566514C1327CFF263FB6A0E539BDDC68 /* AHFMShowPageServices.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 12CA291FE09A500EDD9F36A20161076F /* AHFMShowPageServices.framework */; };
57B46717364667A05ABC7FF13AF658D8 /* AHFMDataCenter.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = D16923F3DBDDB9E2651C9BA505E5A7FA /* AHFMDataCenter.framework */; };
588077E8BCDEB8CD89B9D8B67ECB5DDD /* ServerTrustPolicy.swift in Sources */ = {isa = PBXBuildFile; fileRef = B43B8D9F310471DBC12BE911F477DFE1 /* ServerTrustPolicy.swift */; };
5A597684DBF6849328C579C99D57C806 /* AHFMShowTransform.swift in Sources */ = {isa = PBXBuildFile; fileRef = 725809A01B254DFC8D0E663EDC07A5DC /* AHFMShowTransform.swift */; };
5CB5D2BF4E15DAC8C13E1DACE54449EF /* AHFMAudioPlayerVCServices.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 46E1B0E38D07149826A6D291BC486FFD /* AHFMAudioPlayerVCServices.framework */; };
6088383430ED46160B3ED5E84795616B /* AHFMServices.swift in Sources */ = {isa = PBXBuildFile; fileRef = 22E6E18F7E804F512944BB591849D57F /* AHFMServices.swift */; };
6169978361613EF07BF70ED528772A76 /* AHServiceRouter.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 5BD5929AD1544163650684C0BF244F28 /* AHServiceRouter.framework */; };
616D7CCED0C2A9A61767027CFC3E4C30 /* UIDeviceExtension-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 6ACBA6CFF3DFBAF5FA85E43D470766FA /* UIDeviceExtension-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; };
62EB447CD35174F326FB00E3A90732F5 /* AHDB.swift in Sources */ = {isa = PBXBuildFile; fileRef = A090C1C17C1D6DE36D721686C582CF9D /* AHDB.swift */; };
6358577C3272F699B8CF8FC71FC93625 /* AHFMAudioPlayerVCServices-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 18342E6CD439D4374D4F5B800EE10DD1 /* AHFMAudioPlayerVCServices-dummy.m */; };
65B2A6C81DB20DB618D581C9BF29007C /* Keychain.swift in Sources */ = {isa = PBXBuildFile; fileRef = D6ECBF7716D05B78CB20000D24384D63 /* Keychain.swift */; };
663557F8616BCC9BE423895C305B3EC6 /* NetworkReachabilityManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = D83F41FC2E4E0C00C51B1E8661A97A59 /* NetworkReachabilityManager.swift */; };
66EDBC5331658D31631CB7AADC8263D6 /* AHDataModel.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 288BC429E1FDBB55CDE137A41ED54C2D /* AHDataModel.framework */; };
69B5C5CB933F8457F057377A8D4D45EB /* AHFMModuleManager.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = BF237D51B10FD85010B65AA306DA4E28 /* AHFMModuleManager.framework */; };
6AA6464EE2ED388F88075D5ADDF6B667 /* AHFMEpisodeInfo.swift in Sources */ = {isa = PBXBuildFile; fileRef = FEF6E9A8C872ECB2094F448CCC5334A5 /* AHFMEpisodeInfo.swift */; };
6CE62CFAAE270762B2FCFC2451FC7FB1 /* OAuth2Handler.swift in Sources */ = {isa = PBXBuildFile; fileRef = 914A99B54B45E3C90D679C1C7583CB32 /* OAuth2Handler.swift */; };
7157C31004C28F7B4BC98DCB902A1055 /* AHNetworkConstants.swift in Sources */ = {isa = PBXBuildFile; fileRef = 47D3BE28C38E6AFA8F0C6A9F884777E9 /* AHNetworkConstants.swift */; };
72FE145BE2231B4436E18046E80A0166 /* AHFMServices.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 7288B38577A17A8476D0408043CB7210 /* AHFMServices.framework */; };
73969BFEFB130D310872E1D3F73B2D17 /* AHFMDataTransformers-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 72DD9919C4BEBFDB5F22889ABE207150 /* AHFMDataTransformers-dummy.m */; };
748968426DE438FFA0B102B95A9639BD /* AHFMBottomPlayerServices-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = F0D512A03C3C968A818B124D3BB7C539 /* AHFMBottomPlayerServices-dummy.m */; };
784139FDE7D63A35CA7477D8BA7CDC1F /* ParameterEncoding.swift in Sources */ = {isa = PBXBuildFile; fileRef = D6F994229012FA744DC0A28A090A5036 /* ParameterEncoding.swift */; };
7CD4D584C94072CD74C16D0B94964B48 /* UIDevice+Extension.swift in Sources */ = {isa = PBXBuildFile; fileRef = 00F9FA1398E3B677C6749852BC18C28A /* UIDevice+Extension.swift */; };
7DFA460408C9F5E392D9097A7D183141 /* Alamofire.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 925AA80D5D136D05C397F95AABE8F40E /* Alamofire.framework */; };
816B89B457C4E75B04210A37DA4F3AE6 /* module.modulemap in Sources */ = {isa = PBXBuildFile; fileRef = A97562C5382ECFDF15F3E9F61975F5DD /* module.modulemap */; };
82FB9E17D620BF5DB4578D6DDD95C9AB /* KeychainAccess.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = B35BFAC0880227349F861776D802F355 /* KeychainAccess.framework */; };
84F3874CCACA927DD7FE720825936DC1 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = C4C0D8B7FC00B07827346A4611420BBB /* Foundation.framework */; };
88C92FC2B4C551D7C43A8A58536E584C /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = C4C0D8B7FC00B07827346A4611420BBB /* Foundation.framework */; };
8932B1167F06594E6ECB3F080BF3DFAF /* AHFMEpisode.swift in Sources */ = {isa = PBXBuildFile; fileRef = D3146137287417338634A6CED549F957 /* AHFMEpisode.swift */; };
8A1DC4C91AD287A70426A22455B4EF48 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = C4C0D8B7FC00B07827346A4611420BBB /* Foundation.framework */; };
8B387AE80B7CE5528B5EA8530B7E9173 /* AHDataModel-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 0D7E7287831F4134CD2667D9217713B1 /* AHDataModel-dummy.m */; };
8FD8E9553A85947925B86CF3D0D92DA5 /* AFError.swift in Sources */ = {isa = PBXBuildFile; fileRef = 716B1F119499D5C29D493D752AF85146 /* AFError.swift */; };
8FFC811B6A129B13D699BAE0BCF6BEB9 /* Alamofire.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 925AA80D5D136D05C397F95AABE8F40E /* Alamofire.framework */; };
903EFCA68B1500F2472DD967E8683E62 /* AHDataModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = 245936B7F11211BE0B165992121B6056 /* AHDataModel.swift */; };
91B40E538CCD92FA1E396C8329593D0F /* MultipartFormData.swift in Sources */ = {isa = PBXBuildFile; fileRef = BCC3704262176C1B33A5FE80A3DA6280 /* MultipartFormData.swift */; };
930E2534446E21252C682622FA6311AF /* AHFMServices.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 7288B38577A17A8476D0408043CB7210 /* AHFMServices.framework */; };
935C0B842FFE4EDE0B26D6EEA9C11574 /* Validation.swift in Sources */ = {isa = PBXBuildFile; fileRef = C4DC3AC11B91D98B54D61624F4804E0F /* Validation.swift */; };
93A33DC0D7CC490369C54F60300D77E0 /* AHFMNetworking-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = C228A1A57D15627540A0D3423A20B45E /* AHFMNetworking-dummy.m */; };
999DD5D72F7E14EB053FB72905AF072C /* AHFMNetworking-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 89D7C31518EF7670BD39E140BFE50F3E /* AHFMNetworking-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; };
9A3ACF52102C68DAA294388331755579 /* AHDataModel.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 288BC429E1FDBB55CDE137A41ED54C2D /* AHDataModel.framework */; };
9B7EAA2B1AC6C319FF869D532EA362A6 /* AHFMDataTransformers.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 7E5E7D2F040111A450120DC135B2318F /* AHFMDataTransformers.framework */; };
9E8697184655CC05BD6C100E98D396F6 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = C4C0D8B7FC00B07827346A4611420BBB /* Foundation.framework */; };
9ECFF95A4ED105565713328D23E31437 /* SwiftyJSON.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = E89A60CE6AD9837ADC1E14749DED956E /* SwiftyJSON.framework */; };
9F5076E8967244E95699E77DFEEC3D8C /* AHServiceRouter.swift in Sources */ = {isa = PBXBuildFile; fileRef = 37F11C3D5943EB7E8BEB81A9E396C387 /* AHServiceRouter.swift */; };
A32F6194DFAE6B62B1598F6164B9220D /* AHFMBottomPlayerServices-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 19CB88C1B63819A1A82925D3C056D987 /* AHFMBottomPlayerServices-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; };
A4BC8E8AF82A295494D464EE3A34DCD6 /* AHFMDataCenter-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = FB7337DC8F55D9CDC97FCF775D7FFA4B /* AHFMDataCenter-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; };
A7C5480E992700F2B1D2333839171737 /* Notifications.swift in Sources */ = {isa = PBXBuildFile; fileRef = 82F6D6E45892821703CEA5558BA3B28C /* Notifications.swift */; };
A8BBA7C0BD8F90B397EC7F2DA94906BE /* AHFMDataCenter.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5BD84FE65B1B03D952DED2F838F5B9CD /* AHFMDataCenter.swift */; };
AD626546DEAB0AF2B4D186AB3D56BF00 /* SessionDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = C68E98C108F60776654E048A4ED278BF /* SessionDelegate.swift */; };
AE60BECD59F18EAF40C880872BE91348 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = C4C0D8B7FC00B07827346A4611420BBB /* Foundation.framework */; };
B10B897B6BFB4928E70053FD8463FE82 /* AHFMAudioPlayerVCServices-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = E4BB26C0D94C8E6997880FDA4536BF93 /* AHFMAudioPlayerVCServices-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; };
B24F2C009E377382EA7D673F8E21AD23 /* Pods-AHFMAudioPlayerVCManager_Tests-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = D1555D0A818F1C21CF9DD603E3537BA6 /* Pods-AHFMAudioPlayerVCManager_Tests-dummy.m */; };
B397BA69B7520472DF849B097E3E08C3 /* KeychainAccess.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = B35BFAC0880227349F861776D802F355 /* KeychainAccess.framework */; };
B5342B7D6D8B40E19F47C5E9AA209779 /* SwiftyJSON-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = C3585C4CA2094105A0C80CC8812D21ED /* SwiftyJSON-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; };
B5689E8A76A78C42AB593A4A6748FFE4 /* AHFMSubscribedShow.swift in Sources */ = {isa = PBXBuildFile; fileRef = 533EA37C203B6AA6BAAFB9D05872DB45 /* AHFMSubscribedShow.swift */; };
B7A2FAE1ECBF59835E60F8F677BE5AD7 /* AHFMServices-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 7ACD739C8655EDCE5B2A1830D2D46750 /* AHFMServices-dummy.m */; };
BA4D50BB4AB4252CE2CEF1E78B3B09B6 /* AHFMNetworking.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = DCB641E5B58C2E9897CB46B079464DDE /* AHFMNetworking.framework */; };
BB65FEAF7154A13D2CA7DF0BA548D0E2 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = C4C0D8B7FC00B07827346A4611420BBB /* Foundation.framework */; };
C1BDCC328F67CD83E3927295CB023241 /* Alamofire-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 001EF98D6638E2750994B0555CAEBB9D /* Alamofire-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; };
C9357EDEDA2825BD0BD647E2993F31FE /* SwiftyJSON.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6532B14FA01932B0C17F9366E19567A1 /* SwiftyJSON.swift */; };
CA2344CA0EB6E050D711E7220B0BBB63 /* AHKeychain.swift in Sources */ = {isa = PBXBuildFile; fileRef = 708C45B2C477452DD6EE15A1E387D224 /* AHKeychain.swift */; };
CCEA12AAED8ABCFAB579514EA84BE794 /* AHFMShowPageServices.swift in Sources */ = {isa = PBXBuildFile; fileRef = E8A92417A1DB9BDBEC4CF3BD012E92D4 /* AHFMShowPageServices.swift */; };
CD3C1E69BEDB9C08B2596DE536F0B335 /* Migrator.swift in Sources */ = {isa = PBXBuildFile; fileRef = C43A0ACD020CBE01B17E73D7BAE55C1F /* Migrator.swift */; };
D0B1BDA2AC8BF182C1765B0C3F258649 /* Alamofire-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = C0C181C80B79C11ECA1D309EE88EB591 /* Alamofire-dummy.m */; };
D0E8A597E5523E99CE550BA917E9E41A /* AHFMBottomPlayerServices.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 4D0A5DE2084D0BFC3A8A17C050184BDD /* AHFMBottomPlayerServices.framework */; };
D1EE121784EA5C68603AA76604236746 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = C4C0D8B7FC00B07827346A4611420BBB /* Foundation.framework */; };
D2218BC399483A9BD75DE3D620B6BBCC /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = C4C0D8B7FC00B07827346A4611420BBB /* Foundation.framework */; };
D6D7C7C19366E1763F31CCB5A0ED4925 /* module.modulemap in Sources */ = {isa = PBXBuildFile; fileRef = 95F9A7AF71177D808677E6DF7CAA84E4 /* module.modulemap */; };
D8C1A61B31357F39C639F647B657C28A /* ResponseSerialization.swift in Sources */ = {isa = PBXBuildFile; fileRef = 090D73B67999C25D6A6164474D64F7B6 /* ResponseSerialization.swift */; };
D9905B34B38F9EEB57AE248FAA206F3D /* AHFMEpisodeListVCServices.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 564E9B9AFAB0C48DC3E5D0BF293C7EFA /* AHFMEpisodeListVCServices.framework */; };
DB3E2D41C0DED87A919F5D63689EFC1A /* AHFMAudioPlayerVCManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = A996BAC34E04881BA851F96F3F82B79B /* AHFMAudioPlayerVCManager.swift */; };
DD799B53BCDC78684BB7D6E9302C0174 /* AHFMManagerHandler.swift in Sources */ = {isa = PBXBuildFile; fileRef = B5B58FC5929A0CEF2C1E723DECB19316 /* AHFMManagerHandler.swift */; };
DFCDCBA8F79C3CFF5DA49E17442FFFBD /* AHFMShowPageServices-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = CFA6147DAB43AD61732DBDF93141E30C /* AHFMShowPageServices-dummy.m */; };
E1E766892CC97CD6F362D90ECBD213FB /* SwiftyJSON.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = E89A60CE6AD9837ADC1E14749DED956E /* SwiftyJSON.framework */; };
E5231C638CA7AAF3881FF9268F481895 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = C4C0D8B7FC00B07827346A4611420BBB /* Foundation.framework */; };
E66E00691CA891E3EE90D57AAE483950 /* AHFMEpisodeTransform.swift in Sources */ = {isa = PBXBuildFile; fileRef = A74DF6CC111166D6680581E212CC4538 /* AHFMEpisodeTransform.swift */; };
E8856DCBBD8410624FFED283B38F64FA /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = C4C0D8B7FC00B07827346A4611420BBB /* Foundation.framework */; };
EA886925F9A2B264F5B236A4FB0755ED /* KeychainAccess-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = BA2AB25AEEFA57E2F5F037BC9843F7DE /* KeychainAccess-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; };
EE298AEF2BA6B0D3079E37D5F69F7A09 /* AHFMDataCenter-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = D6C1593AF3AD593AF53C3F2125101344 /* AHFMDataCenter-dummy.m */; };
F11F233FE0DADDD8548A17BBBB772346 /* AHFMBottomPlayerServices.swift in Sources */ = {isa = PBXBuildFile; fileRef = A7C1ED9ECB93EE6094C0659CF6E0A4A0 /* AHFMBottomPlayerServices.swift */; };
F29C23C0A9B249B5E81F9F346CA48DA0 /* Request.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7502E6DC1EF3E73DCF79E386CA7D18F8 /* Request.swift */; };
F32333EE803052838DB8E0DCFCD53967 /* AHFMServices.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 7288B38577A17A8476D0408043CB7210 /* AHFMServices.framework */; };
F3708A6DE8FAA867540EB8FEB067D410 /* AHFMShow.swift in Sources */ = {isa = PBXBuildFile; fileRef = 80E8857A0C114061F8160EDEF5029B74 /* AHFMShow.swift */; };
F386727CEAFCA42756F8C3C8815D53F7 /* KeychainAccess-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 9E492A0A43BAC6C23F28F4CB5FF5E515 /* KeychainAccess-dummy.m */; };
F39A3AD21FD721EC377FC7E06842C9E0 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = C4C0D8B7FC00B07827346A4611420BBB /* Foundation.framework */; };
F3BFAA45D4D7A1DB071911FA94D03B4F /* Pods-AHFMAudioPlayerVCManager_Example-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = A57CDDA629B4D8749F7AA37B90286700 /* Pods-AHFMAudioPlayerVCManager_Example-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; };
F6C2CCC70B2AC47DA1EF6FFFCDD12D1B /* AHServiceRouter-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 7977D6C4459D7B7118B93E058208CECF /* AHServiceRouter-dummy.m */; };
F8726A9EE4F41134F1751621DA0D7E0B /* AHServiceRouter-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = F4CAB1DA388523930456D64FEDE99D83 /* AHServiceRouter-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; };
F9733CB4932C2DEBDBB574480D2A788F /* AHDataModel-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 0B98AC8C13C55A5AAFE036594982B355 /* AHDataModel-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; };
F979BA3DE9CF5FB20E71E606F37E5D6A /* AHFMDataTransformers-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = BDF4A261E16B8FD48844CEBB2A8D4F87 /* AHFMDataTransformers-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; };
FA61EDC984C0D5DA50EC137F3FE1B2D8 /* Pods-AHFMAudioPlayerVCManager_Example-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 694BB110FB73F478534C2AF7F298878A /* Pods-AHFMAudioPlayerVCManager_Example-dummy.m */; };
FBEB93C14BEB82C970FCCA3D63F295A4 /* AHDBColumnInfo.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6FE62E7398DBD40A84E726B632BC4964 /* AHDBColumnInfo.swift */; };
FD7C4F7285DEFE8478F38632B1BEAC07 /* Pods-AHFMAudioPlayerVCManager_Tests-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 33D869B65D91B30D5BE03518AB0BE91D /* Pods-AHFMAudioPlayerVCManager_Tests-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; };
FDE5E0B9C9AA13BD92E01F52F6A2455A /* Response.swift in Sources */ = {isa = PBXBuildFile; fileRef = 908E552698F5234B4E4773CA7ECC7560 /* Response.swift */; };
FEB9B708E85A105689953195E8DEB9EF /* Result.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3871AB405854C9C3389DF1C2C27A303E /* Result.swift */; };
/* End PBXBuildFile section */
/* Begin PBXContainerItemProxy section */
03647FE19CBD2B0CB09F944FAA06BE6D /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */;
proxyType = 1;
remoteGlobalIDString = C172266DB26750548DFE5E6D8172E4F6;
remoteInfo = AHFMShowPageServices;
};
05EC8E7F0E350094593F5ED8D77FF939 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */;
proxyType = 1;
remoteGlobalIDString = 6B858B5EA2DC733AD3FBB134B770EFDA;
remoteInfo = AHFMDataCenter;
};
0FA378506F8A7416AC58F009A7DA9383 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */;
proxyType = 1;
remoteGlobalIDString = 692696E3ABAAF75C2182487D448113F6;
remoteInfo = AHFMServices;
};
116E4EE0588260EA39A20B7BA85193F2 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */;
proxyType = 1;
remoteGlobalIDString = 8DE6D70C16360B43EC37C9EC2B4A87C0;
remoteInfo = AHFMNetworking;
};
121A83BF6915B8D6ED81F232511B945E /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */;
proxyType = 1;
remoteGlobalIDString = 8DE6D70C16360B43EC37C9EC2B4A87C0;
remoteInfo = AHFMNetworking;
};
223CC2C8A5DD519F97EE9C61CF09C400 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */;
proxyType = 1;
remoteGlobalIDString = A242D8531F5446FC6D39034314FC373B;
remoteInfo = UIDeviceExtension;
};
2610A192CEDB2492195115D4EB7C8593 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */;
proxyType = 1;
remoteGlobalIDString = 8E167EB781D09A330EE1E190EB036143;
remoteInfo = AHFMDataTransformers;
};
2FA39F6F8BB11E34EA1F937E94AEC7FA /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */;
proxyType = 1;
remoteGlobalIDString = 692696E3ABAAF75C2182487D448113F6;
remoteInfo = AHFMServices;
};
39C177B44FE1282953E44043AD2D29E8 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */;
proxyType = 1;
remoteGlobalIDString = 65AE71730AC5F64B2653FB9558A4E7EF;
remoteInfo = AHServiceRouter;
};
587A748CA57F96A7951F6D920DA60C2D /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */;
proxyType = 1;
remoteGlobalIDString = A242D8531F5446FC6D39034314FC373B;
remoteInfo = UIDeviceExtension;
};
5894EAA2603C3FC8404FE69F4496FF0C /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */;
proxyType = 1;
remoteGlobalIDString = 9380DF2CBC4EDCEB8038207589AFA0BC;
remoteInfo = KeychainAccess;
};
617DF8ACE52090929B15F000CCC10995 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */;
proxyType = 1;
remoteGlobalIDString = C172266DB26750548DFE5E6D8172E4F6;
remoteInfo = AHFMShowPageServices;
};
63C8740E4E9FA1D5C2D23CFEF3447396 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */;
proxyType = 1;
remoteGlobalIDString = 692696E3ABAAF75C2182487D448113F6;
remoteInfo = AHFMServices;
};
64D1493F2BFA2080A4210FD8A2454D1C /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */;
proxyType = 1;
remoteGlobalIDString = 692696E3ABAAF75C2182487D448113F6;
remoteInfo = AHFMServices;
};
657C98089D3C16D1A89FFAAA55C7A712 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */;
proxyType = 1;
remoteGlobalIDString = F4A3C331A9809205B7A35744CF120589;
remoteInfo = AHFMModuleManager;
};
6763ACF06BF749FCBF845635F762F63C /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */;
proxyType = 1;
remoteGlobalIDString = 692696E3ABAAF75C2182487D448113F6;
remoteInfo = AHFMServices;
};
67A96B9E1E4A71AEF84D17032C1678AF /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */;
proxyType = 1;
remoteGlobalIDString = BC169AF9E958D0640904DB8C442FA727;
remoteInfo = SwiftyJSON;
};
6DAE25C2B637D7CE72B83A141AC52DB8 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */;
proxyType = 1;
remoteGlobalIDString = 692696E3ABAAF75C2182487D448113F6;
remoteInfo = AHFMServices;
};
77C67B8C03C54068284018095C8C6C6D /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */;
proxyType = 1;
remoteGlobalIDString = BC169AF9E958D0640904DB8C442FA727;
remoteInfo = SwiftyJSON;
};
864FC4F3638995DC08B5486953088C0B /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */;
proxyType = 1;
remoteGlobalIDString = 771D1266E734917052B0F81BECCD5E4C;
remoteInfo = AHFMAudioPlayerVCServices;
};
8940772DEC402D4F57B5E218596B9A10 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */;
proxyType = 1;
remoteGlobalIDString = C54F7440F5B3DB63154EEEBC6337A5CD;
remoteInfo = AHFMAudioPlayerVCManager;
};
8F32471BA77BA77AC5C59A12B8D8021C /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */;
proxyType = 1;
remoteGlobalIDString = BAE2136FDFBDAD98F433B717F94A1E3E;
remoteInfo = Alamofire;
};
9958688F72ABFFBCB0AB5621B674E46B /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */;
proxyType = 1;
remoteGlobalIDString = A242D8531F5446FC6D39034314FC373B;
remoteInfo = UIDeviceExtension;
};
995E217A014B8783286EAB69D08CD92B /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */;
proxyType = 1;
remoteGlobalIDString = E1F6066DAC0E9293305836FE01990C48;
remoteInfo = AHDataModel;
};
A03816E42975D40FFCFFCD394ADB432C /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */;
proxyType = 1;
remoteGlobalIDString = BAE2136FDFBDAD98F433B717F94A1E3E;
remoteInfo = Alamofire;
};
A34F1BF5F63D1A1B1691CB12466C232C /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */;
proxyType = 1;
remoteGlobalIDString = E1F6066DAC0E9293305836FE01990C48;
remoteInfo = AHDataModel;
};
AFA16947318AC5C9D9E6E05E8F962FC9 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */;
proxyType = 1;
remoteGlobalIDString = 6D1C1BB9E75DD73DF97D04AFC6372F2E;
remoteInfo = AHFMEpisodeListVCServices;
};
B0170437B348B78D8E49A02498D59684 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */;
proxyType = 1;
remoteGlobalIDString = F4A3C331A9809205B7A35744CF120589;
remoteInfo = AHFMModuleManager;
};
B3B09959D190423F3613191AC8674596 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */;
proxyType = 1;
remoteGlobalIDString = 655EA299AF97A515DE25DF58CF2BF911;
remoteInfo = AHFMBottomPlayerServices;
};
C71B1F3329E4243FD5C9F40CF8A04558 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */;
proxyType = 1;
remoteGlobalIDString = 6B858B5EA2DC733AD3FBB134B770EFDA;
remoteInfo = AHFMDataCenter;
};
CA933249C0F7CA645F237459DBE0B88F /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */;
proxyType = 1;
remoteGlobalIDString = 65AE71730AC5F64B2653FB9558A4E7EF;
remoteInfo = AHServiceRouter;
};
CDD4203BDBA47C512E742EE85AA2C038 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */;
proxyType = 1;
remoteGlobalIDString = 6D1C1BB9E75DD73DF97D04AFC6372F2E;
remoteInfo = AHFMEpisodeListVCServices;
};
DAA6EA64541D53E5B3C40A52A7D3ECBE /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */;
proxyType = 1;
remoteGlobalIDString = BAE2136FDFBDAD98F433B717F94A1E3E;
remoteInfo = Alamofire;
};
DAFD0724C3D35B0C640A1640F179A355 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */;
proxyType = 1;
remoteGlobalIDString = 655EA299AF97A515DE25DF58CF2BF911;
remoteInfo = AHFMBottomPlayerServices;
};
DD92FBC48DC7F0B4E97A03F616B2F5E5 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */;
proxyType = 1;
remoteGlobalIDString = 771D1266E734917052B0F81BECCD5E4C;
remoteInfo = AHFMAudioPlayerVCServices;
};
EB40E207A3DEF4326F7EC60F50E73EE9 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */;
proxyType = 1;
remoteGlobalIDString = 9380DF2CBC4EDCEB8038207589AFA0BC;
remoteInfo = KeychainAccess;
};
EDB0DA089685AE14A5AE9BD6492F5902 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */;
proxyType = 1;
remoteGlobalIDString = 9380DF2CBC4EDCEB8038207589AFA0BC;
remoteInfo = KeychainAccess;
};
F66682740DCF9CB4F1E2E3882A584A09 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */;
proxyType = 1;
remoteGlobalIDString = 8E167EB781D09A330EE1E190EB036143;
remoteInfo = AHFMDataTransformers;
};
F68C9DC440A387B6D0823988A9CBEEDA /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */;
proxyType = 1;
remoteGlobalIDString = BC169AF9E958D0640904DB8C442FA727;
remoteInfo = SwiftyJSON;
};
F7D94420D2E1DE6D1F150128043E5C24 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */;
proxyType = 1;
remoteGlobalIDString = E1F6066DAC0E9293305836FE01990C48;
remoteInfo = AHDataModel;
};
/* End PBXContainerItemProxy section */
/* Begin PBXFileReference section */
001EF98D6638E2750994B0555CAEBB9D /* Alamofire-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Alamofire-umbrella.h"; sourceTree = "<group>"; };
004122160F0C7DD08D4FEE56E32EA3A3 /* AHFMAudioPlayerVCManager-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "AHFMAudioPlayerVCManager-prefix.pch"; sourceTree = "<group>"; };
00F9FA1398E3B677C6749852BC18C28A /* UIDevice+Extension.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "UIDevice+Extension.swift"; path = "UIDeviceExtension/Classes/UIDevice+Extension.swift"; sourceTree = "<group>"; };
03CF4C6F1EEC5B98457404F40FAD958E /* UIDeviceExtension.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; path = UIDeviceExtension.modulemap; sourceTree = "<group>"; };
0670F553FE2A6523EE63C7583D8D9168 /* KeychainAccess-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "KeychainAccess-prefix.pch"; sourceTree = "<group>"; };
073CA4E646280D2CA2A41208D5F1B49C /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
090D73B67999C25D6A6164474D64F7B6 /* ResponseSerialization.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ResponseSerialization.swift; path = Source/ResponseSerialization.swift; sourceTree = "<group>"; };
0B7C6CD97993282CA45328B28A5C0AA6 /* AHFMDataCenter.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = AHFMDataCenter.framework; path = AHFMDataCenter.framework; sourceTree = BUILT_PRODUCTS_DIR; };
0B82FFCD0157762E931CC1BB2ACF5428 /* AHFMDataCenter-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "AHFMDataCenter-prefix.pch"; sourceTree = "<group>"; };
0B98AC8C13C55A5AAFE036594982B355 /* AHDataModel-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "AHDataModel-umbrella.h"; sourceTree = "<group>"; };
0C0B1718E1310E42B696538B1CE8171D /* AHFMAudioPlayerVCManager.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = AHFMAudioPlayerVCManager.framework; path = AHFMAudioPlayerVCManager.framework; sourceTree = BUILT_PRODUCTS_DIR; };
0D7E7287831F4134CD2667D9217713B1 /* AHDataModel-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "AHDataModel-dummy.m"; sourceTree = "<group>"; };
0DA9252D5DE0BDF99848F68AC89D37AE /* AHFMEpisodeListVCServices.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = AHFMEpisodeListVCServices.framework; path = AHFMEpisodeListVCServices.framework; sourceTree = BUILT_PRODUCTS_DIR; };
0EA1AF1EC7215FA64DF658DEECC007D4 /* AHFMModuleManager.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = AHFMModuleManager.xcconfig; sourceTree = "<group>"; };
0EDE7367C61094469580907A026506FE /* AHFMBottomPlayerServices.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = AHFMBottomPlayerServices.xcconfig; sourceTree = "<group>"; };
1109E2A0D823F65D735459735DE45CA5 /* AHServiceRouter.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = AHServiceRouter.framework; path = AHServiceRouter.framework; sourceTree = BUILT_PRODUCTS_DIR; };
120D9FA7AFDFABA632C4D36004D7FC25 /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
1221431E686D1A66956752111D72DBCB /* Pods-AHFMAudioPlayerVCManager_Tests-acknowledgements.markdown */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = "Pods-AHFMAudioPlayerVCManager_Tests-acknowledgements.markdown"; sourceTree = "<group>"; };
12CA291FE09A500EDD9F36A20161076F /* AHFMShowPageServices.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = AHFMShowPageServices.framework; sourceTree = BUILT_PRODUCTS_DIR; };
144040BB25D9B4ACC5433DD067A6A364 /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
14C7B76092A96879E1D2ED77AD407B4A /* AHFMModuleManager.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AHFMModuleManager.swift; path = AHFMModuleManager/Classes/AHFMModuleManager.swift; sourceTree = "<group>"; };
18342E6CD439D4374D4F5B800EE10DD1 /* AHFMAudioPlayerVCServices-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "AHFMAudioPlayerVCServices-dummy.m"; sourceTree = "<group>"; };
19CB88C1B63819A1A82925D3C056D987 /* AHFMBottomPlayerServices-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "AHFMBottomPlayerServices-umbrella.h"; sourceTree = "<group>"; };
1C0B572779D4D255029FEFBD09118297 /* AHFMDataTransformers-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "AHFMDataTransformers-prefix.pch"; sourceTree = "<group>"; };
1D73D507C1B97DE74ECE66FCB716AE5B /* AHFMServices.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = AHFMServices.xcconfig; sourceTree = "<group>"; };
1ED0312039EF9B0583BDD035B343B906 /* Pods-AHFMAudioPlayerVCManager_Example.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; path = "Pods-AHFMAudioPlayerVCManager_Example.modulemap"; sourceTree = "<group>"; };
22E6E18F7E804F512944BB591849D57F /* AHFMServices.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AHFMServices.swift; path = AHFMServices/Classes/AHFMServices.swift; sourceTree = "<group>"; };
245936B7F11211BE0B165992121B6056 /* AHDataModel.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AHDataModel.swift; path = AHDataModel/Classes/AHDataModel.swift; sourceTree = "<group>"; };
24BFF3487D7F11ED04C4ACD90BCCAE4B /* AHFMShowPageServices.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; path = AHFMShowPageServices.modulemap; sourceTree = "<group>"; };
28299CEDF1C41D73B39D2668876136E7 /* UIDeviceExtension-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "UIDeviceExtension-prefix.pch"; sourceTree = "<group>"; };
288BC429E1FDBB55CDE137A41ED54C2D /* AHDataModel.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = AHDataModel.framework; sourceTree = BUILT_PRODUCTS_DIR; };
2A65A01C3D66CD4E511B0072E21737CA /* Pods-AHFMAudioPlayerVCManager_Example-acknowledgements.markdown */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = "Pods-AHFMAudioPlayerVCManager_Example-acknowledgements.markdown"; sourceTree = "<group>"; };
2C4953B755F16FF3ADEE8602C544C23E /* AHFMDataTransformers.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; path = AHFMDataTransformers.modulemap; sourceTree = "<group>"; };
2D8FD028DC404C4E52E4AA70D7931E6A /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
3203D3DA12A083740F46EC1D166BE196 /* AHFMShowPageServices.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = AHFMShowPageServices.xcconfig; sourceTree = "<group>"; };
33D869B65D91B30D5BE03518AB0BE91D /* Pods-AHFMAudioPlayerVCManager_Tests-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Pods-AHFMAudioPlayerVCManager_Tests-umbrella.h"; sourceTree = "<group>"; };
3440038EEA5F963D773423B76DCBFE81 /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
3534887A6E54C0EA4993D1525A60B8E6 /* AHDatabase.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AHDatabase.swift; path = AHDataModel/Classes/AHDatabase.swift; sourceTree = "<group>"; };
37F11C3D5943EB7E8BEB81A9E396C387 /* AHServiceRouter.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AHServiceRouter.swift; path = AHServiceRouter/Classes/AHServiceRouter.swift; sourceTree = "<group>"; };
3871AB405854C9C3389DF1C2C27A303E /* Result.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Result.swift; path = Source/Result.swift; sourceTree = "<group>"; };
3958F873F6CE48411BA07B32BF1DE2A3 /* AHFMDataTransformers.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = AHFMDataTransformers.framework; path = AHFMDataTransformers.framework; sourceTree = BUILT_PRODUCTS_DIR; };
3AA42C08718FD6068F595D6A90A6DC8D /* AHFMModuleManager-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "AHFMModuleManager-prefix.pch"; sourceTree = "<group>"; };
40CA8CE4ABBC16C4F0831DBBA0327064 /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
428BF89A4DDFB454186AA9AB63F00403 /* AHFMNetworking.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = AHFMNetworking.framework; path = AHFMNetworking.framework; sourceTree = BUILT_PRODUCTS_DIR; };
438AD7FDB53B380935602A379185A7A2 /* Alamofire.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = Alamofire.xcconfig; sourceTree = "<group>"; };
450183A61D1005274CA4B262FC05796C /* AHFMEpisodeListVCServices.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; path = AHFMEpisodeListVCServices.modulemap; sourceTree = "<group>"; };
46E1B0E38D07149826A6D291BC486FFD /* AHFMAudioPlayerVCServices.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = AHFMAudioPlayerVCServices.framework; sourceTree = BUILT_PRODUCTS_DIR; };
47D3BE28C38E6AFA8F0C6A9F884777E9 /* AHNetworkConstants.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AHNetworkConstants.swift; path = AHFMNetworking/Classes/AHNetworkConstants.swift; sourceTree = "<group>"; };
4B4DD37EC51D819B02459C8A56EAF135 /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
4D0A5DE2084D0BFC3A8A17C050184BDD /* AHFMBottomPlayerServices.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = AHFMBottomPlayerServices.framework; sourceTree = BUILT_PRODUCTS_DIR; };
50F7A521E8A7DC4A3B3049183AE19F55 /* SwiftyJSON-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "SwiftyJSON-prefix.pch"; sourceTree = "<group>"; };
533EA37C203B6AA6BAAFB9D05872DB45 /* AHFMSubscribedShow.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AHFMSubscribedShow.swift; path = AHFMDataCenter/Classes/AHFMSubscribedShow.swift; sourceTree = "<group>"; };
54EAD35870561AF08A54B2218217736D /* AHDataModelQuery.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AHDataModelQuery.swift; path = AHDataModel/Classes/AHDataModelQuery.swift; sourceTree = "<group>"; };
564E9B9AFAB0C48DC3E5D0BF293C7EFA /* AHFMEpisodeListVCServices.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = AHFMEpisodeListVCServices.framework; sourceTree = BUILT_PRODUCTS_DIR; };
56A9241215E706B3EABAA92867514231 /* KeychainAccess.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; path = KeychainAccess.modulemap; sourceTree = "<group>"; };
56B4264D174552737EB3108034D8977E /* SwiftyJSON.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = SwiftyJSON.xcconfig; sourceTree = "<group>"; };
575A5E0C16BBBBFCF4A1B9E911749610 /* Pods-AHFMAudioPlayerVCManager_Tests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-AHFMAudioPlayerVCManager_Tests.release.xcconfig"; sourceTree = "<group>"; };
5B1CAACF742D7E84EA8347E181152A9C /* Pods-AHFMAudioPlayerVCManager_Tests.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; path = "Pods-AHFMAudioPlayerVCManager_Tests.modulemap"; sourceTree = "<group>"; };
5B3312BF751DBFF7FF3B4D7FA6E7D2A2 /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
5BD5929AD1544163650684C0BF244F28 /* AHServiceRouter.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = AHServiceRouter.framework; sourceTree = BUILT_PRODUCTS_DIR; };
5BD84FE65B1B03D952DED2F838F5B9CD /* AHFMDataCenter.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AHFMDataCenter.swift; path = AHFMDataCenter/Classes/AHFMDataCenter.swift; sourceTree = "<group>"; };
60CAE5E4638225604328BB9E7EAFA336 /* Migration.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Migration.swift; path = AHDataModel/Classes/Migration.swift; sourceTree = "<group>"; };
624E51B5BD1696E5BA0330FA0209E151 /* AHServiceRouter-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "AHServiceRouter-prefix.pch"; sourceTree = "<group>"; };
62F4E311556E3E827D00C14AEDB5998F /* AHFMDataCenter.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = AHFMDataCenter.xcconfig; sourceTree = "<group>"; };
6532B14FA01932B0C17F9366E19567A1 /* SwiftyJSON.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SwiftyJSON.swift; path = Source/SwiftyJSON.swift; sourceTree = "<group>"; };
694BB110FB73F478534C2AF7F298878A /* Pods-AHFMAudioPlayerVCManager_Example-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-AHFMAudioPlayerVCManager_Example-dummy.m"; sourceTree = "<group>"; };
6ACBA6CFF3DFBAF5FA85E43D470766FA /* UIDeviceExtension-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "UIDeviceExtension-umbrella.h"; sourceTree = "<group>"; };
6E411A15004415E9996B26D7557F363E /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
6FB663794097DF782E76DF064B858084 /* Pods-AHFMAudioPlayerVCManager_Example.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-AHFMAudioPlayerVCManager_Example.debug.xcconfig"; sourceTree = "<group>"; };
6FE62E7398DBD40A84E726B632BC4964 /* AHDBColumnInfo.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AHDBColumnInfo.swift; path = AHDataModel/Classes/AHDBColumnInfo.swift; sourceTree = "<group>"; };
705886DBDCA9916556A2B364AD0CCC91 /* AHFMEpisodeListVCServices-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "AHFMEpisodeListVCServices-umbrella.h"; sourceTree = "<group>"; };
708C45B2C477452DD6EE15A1E387D224 /* AHKeychain.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AHKeychain.swift; path = AHFMNetworking/Classes/AHKeychain.swift; sourceTree = "<group>"; };
709C8B820DB37D46A6AC98572AB4D3A9 /* AHFMAudioPlayerVCManager-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "AHFMAudioPlayerVCManager-umbrella.h"; sourceTree = "<group>"; };
716B1F119499D5C29D493D752AF85146 /* AFError.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AFError.swift; path = Source/AFError.swift; sourceTree = "<group>"; };
725809A01B254DFC8D0E663EDC07A5DC /* AHFMShowTransform.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AHFMShowTransform.swift; path = AHFMDataTransformers/Classes/AHFMShowTransform.swift; sourceTree = "<group>"; };
7288B38577A17A8476D0408043CB7210 /* AHFMServices.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = AHFMServices.framework; sourceTree = BUILT_PRODUCTS_DIR; };
72DD9919C4BEBFDB5F22889ABE207150 /* AHFMDataTransformers-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "AHFMDataTransformers-dummy.m"; sourceTree = "<group>"; };
73ADD4456024AF8237130BEFF2C9B2EB /* AHFMBottomPlayerServices-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "AHFMBottomPlayerServices-prefix.pch"; sourceTree = "<group>"; };
7502E6DC1EF3E73DCF79E386CA7D18F8 /* Request.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Request.swift; path = Source/Request.swift; sourceTree = "<group>"; };
782ABD1AC53EBCA9C5C6D4A905BED46A /* AHFMModuleManager.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; path = AHFMModuleManager.modulemap; sourceTree = "<group>"; };
7977D6C4459D7B7118B93E058208CECF /* AHServiceRouter-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "AHServiceRouter-dummy.m"; sourceTree = "<group>"; };
7A1A602225A6A740AE37168C703E001E /* Pods-AHFMAudioPlayerVCManager_Tests.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-AHFMAudioPlayerVCManager_Tests.debug.xcconfig"; sourceTree = "<group>"; };
7ACD739C8655EDCE5B2A1830D2D46750 /* AHFMServices-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "AHFMServices-dummy.m"; sourceTree = "<group>"; };
7B322593DC2C4258EA1FC06BADDB5B13 /* AHFMShowPageServices-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "AHFMShowPageServices-prefix.pch"; sourceTree = "<group>"; };
7CAA2D1B804DFED12296980071A2D282 /* AHFMBottomPlayerServices.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; path = AHFMBottomPlayerServices.modulemap; sourceTree = "<group>"; };
7CEF41D4CD23467DF6C131552A56A132 /* Pods-AHFMAudioPlayerVCManager_Example-frameworks.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-AHFMAudioPlayerVCManager_Example-frameworks.sh"; sourceTree = "<group>"; };
7E5E7D2F040111A450120DC135B2318F /* AHFMDataTransformers.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = AHFMDataTransformers.framework; sourceTree = BUILT_PRODUCTS_DIR; };
80E8857A0C114061F8160EDEF5029B74 /* AHFMShow.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AHFMShow.swift; path = AHFMDataCenter/Classes/AHFMShow.swift; sourceTree = "<group>"; };
817F7C639FFFD486C5CF3CB93D3CB74B /* AHFMAudioPlayerVCManager.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; path = AHFMAudioPlayerVCManager.modulemap; sourceTree = "<group>"; };
82F6D6E45892821703CEA5558BA3B28C /* Notifications.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Notifications.swift; path = Source/Notifications.swift; sourceTree = "<group>"; };
8446C856FA7C77ECFB7CC39F3CAA68B7 /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
87A07F5B39E7176F8C94899FFD5EF337 /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
89D7C31518EF7670BD39E140BFE50F3E /* AHFMNetworking-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "AHFMNetworking-umbrella.h"; sourceTree = "<group>"; };
8C3ABB4C4D07BBD8970ECC37D8D94E96 /* DispatchQueue+Alamofire.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "DispatchQueue+Alamofire.swift"; path = "Source/DispatchQueue+Alamofire.swift"; sourceTree = "<group>"; };
8CC41819CDBEA8DEF3C5B8F3BE51AD79 /* AHFMEpisodeListVCServices.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = AHFMEpisodeListVCServices.xcconfig; sourceTree = "<group>"; };
8CCDFBBBFE282CFA7CAD8527101ED48C /* SwiftyJSON.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = SwiftyJSON.framework; path = SwiftyJSON.framework; sourceTree = BUILT_PRODUCTS_DIR; };
8E0A8305E6EB1BFE941C704702588EE8 /* AHFMAudioPlayerVCServices-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "AHFMAudioPlayerVCServices-prefix.pch"; sourceTree = "<group>"; };
8F2C15388A534E15D7ED059D536A13E6 /* Alamofire-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Alamofire-prefix.pch"; sourceTree = "<group>"; };
8F4552693A6E47DFEB6E44F0D6684805 /* UIDeviceExtension-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "UIDeviceExtension-dummy.m"; sourceTree = "<group>"; };
8F7F6AB73954EA26D8D3E66D6F308DB3 /* AHFMShowPageServices-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "AHFMShowPageServices-umbrella.h"; sourceTree = "<group>"; };
902483E0E0B5EF47C65DD3828331C2D3 /* AHFMAudioPlayerVCManager-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "AHFMAudioPlayerVCManager-dummy.m"; sourceTree = "<group>"; };
904D32EF98FACE75FDAD2CDF8A9D80AE /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
907D12421A9D10A7A1C204EFDBADD959 /* UIDeviceExtension.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UIDeviceExtension.xcconfig; sourceTree = "<group>"; };
908E552698F5234B4E4773CA7ECC7560 /* Response.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Response.swift; path = Source/Response.swift; sourceTree = "<group>"; };
914A99B54B45E3C90D679C1C7583CB32 /* OAuth2Handler.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = OAuth2Handler.swift; path = AHFMNetworking/Classes/OAuth2Handler.swift; sourceTree = "<group>"; };
925AA80D5D136D05C397F95AABE8F40E /* Alamofire.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Alamofire.framework; sourceTree = BUILT_PRODUCTS_DIR; };
93A4A3777CF96A4AAC1D13BA6DCCEA73 /* Podfile */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; lastKnownFileType = text; name = Podfile; path = ../Podfile; sourceTree = SOURCE_ROOT; xcLanguageSpecificationIdentifier = xcode.lang.ruby; };
957C5E96A0D880F484E99D2026834CF5 /* AHFMEpisodeListVCServices-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "AHFMEpisodeListVCServices-dummy.m"; sourceTree = "<group>"; };
95F9A7AF71177D808677E6DF7CAA84E4 /* module.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; name = module.modulemap; path = ModuleMaps/iphonesimulator/module.modulemap; sourceTree = "<group>"; };
96C61947DEECCCF5EEFA718A02E8C3F1 /* SwiftyJSON-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "SwiftyJSON-dummy.m"; sourceTree = "<group>"; };
96F6747E0EA148B1971914DCCFCF1B86 /* AHFMShowPageServices.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = AHFMShowPageServices.framework; path = AHFMShowPageServices.framework; sourceTree = BUILT_PRODUCTS_DIR; };
984BE8ECD5BC98795C9276E6BB9C25C5 /* Pods-AHFMAudioPlayerVCManager_Example-resources.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-AHFMAudioPlayerVCManager_Example-resources.sh"; sourceTree = "<group>"; };
987D2752E5AA8E9F3C06213081FF47E0 /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
9A82CA36CA59F53060C6659295FEE3CB /* AHServiceRouter.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; path = AHServiceRouter.modulemap; sourceTree = "<group>"; };
9AEC3C89D19CC08AE5B9E27E62A8EF76 /* Pods-AHFMAudioPlayerVCManager_Example.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-AHFMAudioPlayerVCManager_Example.release.xcconfig"; sourceTree = "<group>"; };
9E492A0A43BAC6C23F28F4CB5FF5E515 /* KeychainAccess-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "KeychainAccess-dummy.m"; sourceTree = "<group>"; };
A090C1C17C1D6DE36D721686C582CF9D /* AHDB.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AHDB.swift; path = AHDataModel/Classes/AHDB.swift; sourceTree = "<group>"; };
A3A7EA2B3808B3BDD1E6EAFF32D72711 /* KeychainAccess.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = KeychainAccess.xcconfig; sourceTree = "<group>"; };
A4EB19391A417A04CA73A007DEF38C7C /* Alamofire.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Alamofire.swift; path = Source/Alamofire.swift; sourceTree = "<group>"; };
A57CDDA629B4D8749F7AA37B90286700 /* Pods-AHFMAudioPlayerVCManager_Example-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Pods-AHFMAudioPlayerVCManager_Example-umbrella.h"; sourceTree = "<group>"; };
A5A6379D62F83AF62F8036D7737796A4 /* AHFMDataCenter.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; path = AHFMDataCenter.modulemap; sourceTree = "<group>"; };
A74DF6CC111166D6680581E212CC4538 /* AHFMEpisodeTransform.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AHFMEpisodeTransform.swift; path = AHFMDataTransformers/Classes/AHFMEpisodeTransform.swift; sourceTree = "<group>"; };
A7C1ED9ECB93EE6094C0659CF6E0A4A0 /* AHFMBottomPlayerServices.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AHFMBottomPlayerServices.swift; path = AHFMBottomPlayerServices/Classes/AHFMBottomPlayerServices.swift; sourceTree = "<group>"; };
A97562C5382ECFDF15F3E9F61975F5DD /* module.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; name = module.modulemap; path = ModuleMaps/iphoneos/module.modulemap; sourceTree = "<group>"; };
A996BAC34E04881BA851F96F3F82B79B /* AHFMAudioPlayerVCManager.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = AHFMAudioPlayerVCManager.swift; sourceTree = "<group>"; };
AA8ECE59670826CF7F6E0E57BF17806A /* Pods-AHFMAudioPlayerVCManager_Example-acknowledgements.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-AHFMAudioPlayerVCManager_Example-acknowledgements.plist"; sourceTree = "<group>"; };
AEFE001423F54B43B9D4627FFB4978C7 /* Pods_AHFMAudioPlayerVCManager_Tests.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = Pods_AHFMAudioPlayerVCManager_Tests.framework; path = "Pods-AHFMAudioPlayerVCManager_Tests.framework"; sourceTree = BUILT_PRODUCTS_DIR; };
AF58EB4E5BC68833B94A34F98FA66C92 /* Alamofire.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = Alamofire.framework; path = Alamofire.framework; sourceTree = BUILT_PRODUCTS_DIR; };
AFB5F6CB15521C374AD5047CF536D131 /* Pods_AHFMAudioPlayerVCManager_Example.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = Pods_AHFMAudioPlayerVCManager_Example.framework; path = "Pods-AHFMAudioPlayerVCManager_Example.framework"; sourceTree = BUILT_PRODUCTS_DIR; };
B35BFAC0880227349F861776D802F355 /* KeychainAccess.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = KeychainAccess.framework; sourceTree = BUILT_PRODUCTS_DIR; };
B43B8D9F310471DBC12BE911F477DFE1 /* ServerTrustPolicy.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ServerTrustPolicy.swift; path = Source/ServerTrustPolicy.swift; sourceTree = "<group>"; };
B46B6F7E7D744EA40D3C2EA8042C5F6D /* AHFMEpisodeHistory.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AHFMEpisodeHistory.swift; path = AHFMDataCenter/Classes/AHFMEpisodeHistory.swift; sourceTree = "<group>"; };
B4AC09C9AAA016112EE73337DF0333C9 /* Alamofire.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; path = Alamofire.modulemap; sourceTree = "<group>"; };
B5B58FC5929A0CEF2C1E723DECB19316 /* AHFMManagerHandler.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = AHFMManagerHandler.swift; sourceTree = "<group>"; };
B869F42C3D8D1E17136DA0628E3F939A /* UIDeviceExtension.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = UIDeviceExtension.framework; path = UIDeviceExtension.framework; sourceTree = BUILT_PRODUCTS_DIR; };
B8916B9007F8E5317E85BCAFCD623850 /* Pods-AHFMAudioPlayerVCManager_Tests-resources.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-AHFMAudioPlayerVCManager_Tests-resources.sh"; sourceTree = "<group>"; };
B96414CACFA69CC8A60B614E0DB560BA /* AHFMAudioPlayerVCServices.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = AHFMAudioPlayerVCServices.xcconfig; sourceTree = "<group>"; };
B9CAD13733D3949D9CD39C9CC9CEA60B /* AHFMServices.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; path = AHFMServices.modulemap; sourceTree = "<group>"; };
BA2AB25AEEFA57E2F5F037BC9843F7DE /* KeychainAccess-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "KeychainAccess-umbrella.h"; sourceTree = "<group>"; };
BABF8CF64F1F564640B3C8CBC6823769 /* AHFMServices-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "AHFMServices-umbrella.h"; sourceTree = "<group>"; };
BCC3704262176C1B33A5FE80A3DA6280 /* MultipartFormData.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = MultipartFormData.swift; path = Source/MultipartFormData.swift; sourceTree = "<group>"; };
BD2C43CDADEB3199C38AB8EC9E83DDA5 /* AHFMEpisodeListVCServices.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AHFMEpisodeListVCServices.swift; path = AHFMEpisodeListVCServices/Classes/AHFMEpisodeListVCServices.swift; sourceTree = "<group>"; };
BDF4A261E16B8FD48844CEBB2A8D4F87 /* AHFMDataTransformers-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "AHFMDataTransformers-umbrella.h"; sourceTree = "<group>"; };
BF237D51B10FD85010B65AA306DA4E28 /* AHFMModuleManager.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = AHFMModuleManager.framework; sourceTree = BUILT_PRODUCTS_DIR; };
BFA8611E993B1707A26D4333BCE18AF6 /* Pods-AHFMAudioPlayerVCManager_Tests-acknowledgements.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-AHFMAudioPlayerVCManager_Tests-acknowledgements.plist"; sourceTree = "<group>"; };
C06E06D034E52EBCA92D36C5C04EA39D /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
C0C181C80B79C11ECA1D309EE88EB591 /* Alamofire-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Alamofire-dummy.m"; sourceTree = "<group>"; };
C17A61A203AA87F61BEABF59E5602EF0 /* AHFMAudioPlayerVCServices.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AHFMAudioPlayerVCServices.swift; path = AHFMAudioPlayerVCServices/Classes/AHFMAudioPlayerVCServices.swift; sourceTree = "<group>"; };
C1B1C0EDC750DC69661E89199C480A21 /* TaskDelegate.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = TaskDelegate.swift; path = Source/TaskDelegate.swift; sourceTree = "<group>"; };
C204E739535AC1204338C68305DCA63E /* SessionManager.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SessionManager.swift; path = Source/SessionManager.swift; sourceTree = "<group>"; };
C228A1A57D15627540A0D3423A20B45E /* AHFMNetworking-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "AHFMNetworking-dummy.m"; sourceTree = "<group>"; };
C28696F5CA483216095C981EA32E7DFA /* AHFMAudioPlayerVCManager.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = AHFMAudioPlayerVCManager.xcconfig; sourceTree = "<group>"; };
C2D2FCAC43A1E21CF5E6BFF1E0AA0404 /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
C3585C4CA2094105A0C80CC8812D21ED /* SwiftyJSON-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "SwiftyJSON-umbrella.h"; sourceTree = "<group>"; };
C43A0ACD020CBE01B17E73D7BAE55C1F /* Migrator.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Migrator.swift; path = AHDataModel/Classes/Migrator.swift; sourceTree = "<group>"; };
C4C0D8B7FC00B07827346A4611420BBB /* Foundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Foundation.framework; path = Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.3.sdk/System/Library/Frameworks/Foundation.framework; sourceTree = DEVELOPER_DIR; };
C4DC3AC11B91D98B54D61624F4804E0F /* Validation.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Validation.swift; path = Source/Validation.swift; sourceTree = "<group>"; };
C4F6CA035771CC2D7FF81AB6FF61DFD0 /* AHFMDataTransformers.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = AHFMDataTransformers.xcconfig; sourceTree = "<group>"; };
C5334828A61C5E2B6DB82034999EFFB7 /* AHFMServices.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = AHFMServices.framework; path = AHFMServices.framework; sourceTree = BUILT_PRODUCTS_DIR; };
C5F3970B1C78FA8C0A44D34B467C6F7D /* AHFMNetworking.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; path = AHFMNetworking.modulemap; sourceTree = "<group>"; };
C68E98C108F60776654E048A4ED278BF /* SessionDelegate.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SessionDelegate.swift; path = Source/SessionDelegate.swift; sourceTree = "<group>"; };
CAEDF80EEF60F9FA1D0FE3FAC70B12A6 /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
CB5E1DF4CB0AC66D0FD9CEBA50EE362E /* AHFMModuleManager.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = AHFMModuleManager.framework; path = AHFMModuleManager.framework; sourceTree = BUILT_PRODUCTS_DIR; };
CF5071A1ECA1FDE8FEF7401358DE6BD3 /* AHFMModuleManager-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "AHFMModuleManager-dummy.m"; sourceTree = "<group>"; };
CFA6147DAB43AD61732DBDF93141E30C /* AHFMShowPageServices-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "AHFMShowPageServices-dummy.m"; sourceTree = "<group>"; };
D083D09EE7FBCEFBFCEB655ECF927FB4 /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
D1555D0A818F1C21CF9DD603E3537BA6 /* Pods-AHFMAudioPlayerVCManager_Tests-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-AHFMAudioPlayerVCManager_Tests-dummy.m"; sourceTree = "<group>"; };
D16923F3DBDDB9E2651C9BA505E5A7FA /* AHFMDataCenter.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = AHFMDataCenter.framework; sourceTree = BUILT_PRODUCTS_DIR; };
D3146137287417338634A6CED549F957 /* AHFMEpisode.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AHFMEpisode.swift; path = AHFMDataCenter/Classes/AHFMEpisode.swift; sourceTree = "<group>"; };
D6C1593AF3AD593AF53C3F2125101344 /* AHFMDataCenter-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "AHFMDataCenter-dummy.m"; sourceTree = "<group>"; };
D6ECBF7716D05B78CB20000D24384D63 /* Keychain.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Keychain.swift; path = Lib/KeychainAccess/Keychain.swift; sourceTree = "<group>"; };
D6F994229012FA744DC0A28A090A5036 /* ParameterEncoding.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ParameterEncoding.swift; path = Source/ParameterEncoding.swift; sourceTree = "<group>"; };
D7608197CD833BFF6453068E09C920E4 /* AHFMBottomPlayerServices.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = AHFMBottomPlayerServices.framework; path = AHFMBottomPlayerServices.framework; sourceTree = BUILT_PRODUCTS_DIR; };
D83F41FC2E4E0C00C51B1E8661A97A59 /* NetworkReachabilityManager.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = NetworkReachabilityManager.swift; path = Source/NetworkReachabilityManager.swift; sourceTree = "<group>"; };
D8ABA0FE9EF75E4547C0AE18E09FFF96 /* AHFMEpisodeListVCServices-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "AHFMEpisodeListVCServices-prefix.pch"; sourceTree = "<group>"; };
D9B7F09A24B5965A75C837B8F6FBECFC /* AHFMAudioPlayerVCServices.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; path = AHFMAudioPlayerVCServices.modulemap; sourceTree = "<group>"; };
DCB641E5B58C2E9897CB46B079464DDE /* AHFMNetworking.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = AHFMNetworking.framework; sourceTree = BUILT_PRODUCTS_DIR; };
DDC295EF6CA742219E4C283D7F58804F /* KeychainAccess.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = KeychainAccess.framework; path = KeychainAccess.framework; sourceTree = BUILT_PRODUCTS_DIR; };
DE760749849BCF417516134BECB0BBDF /* AHDataModel.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = AHDataModel.framework; path = AHDataModel.framework; sourceTree = BUILT_PRODUCTS_DIR; };
E05899FE6D83238BEEF011AB1C4EE383 /* AHDataModel-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "AHDataModel-prefix.pch"; sourceTree = "<group>"; };
E1F27DEBA6C1EBB05920BC60D159AB11 /* Timeline.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Timeline.swift; path = Source/Timeline.swift; sourceTree = "<group>"; };
E4BB26C0D94C8E6997880FDA4536BF93 /* AHFMAudioPlayerVCServices-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "AHFMAudioPlayerVCServices-umbrella.h"; sourceTree = "<group>"; };
E86583B4CB85C7621159EDBB3DF6A640 /* UIDeviceExtension.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = UIDeviceExtension.framework; sourceTree = BUILT_PRODUCTS_DIR; };
E89A60CE6AD9837ADC1E14749DED956E /* SwiftyJSON.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = SwiftyJSON.framework; sourceTree = BUILT_PRODUCTS_DIR; };
E8A92417A1DB9BDBEC4CF3BD012E92D4 /* AHFMShowPageServices.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AHFMShowPageServices.swift; path = AHFMShowPageServices/Classes/AHFMShowPageServices.swift; sourceTree = "<group>"; };
E9E472EDB0CF7EF25084046A25EBCE60 /* AHFMAudioPlayerVCServices.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = AHFMAudioPlayerVCServices.framework; path = AHFMAudioPlayerVCServices.framework; sourceTree = BUILT_PRODUCTS_DIR; };
EA9D742283590DDEF0F36E42B5E62BC9 /* AHFMNetworking.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = AHFMNetworking.xcconfig; sourceTree = "<group>"; };
EB4D4A2BB23E6C253040CAE2358BCF80 /* AHServiceRouter.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = AHServiceRouter.xcconfig; sourceTree = "<group>"; };
EF1564854D204754814B63BBD26390E0 /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
EFB7F76E2D10BEE51CFA44707F8EBCFE /* AHDataModel.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = AHDataModel.xcconfig; sourceTree = "<group>"; };
EFCB3E23E19A2E83B38E30DFFFB4350C /* AHFMNetworking-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "AHFMNetworking-prefix.pch"; sourceTree = "<group>"; };
F06BA2A66ADD8145038CFFAE8D2DCA70 /* AHDataModel.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; path = AHDataModel.modulemap; sourceTree = "<group>"; };
F0D512A03C3C968A818B124D3BB7C539 /* AHFMBottomPlayerServices-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "AHFMBottomPlayerServices-dummy.m"; sourceTree = "<group>"; };
F3B710EE6965BAFC2B5B7B1F667F661E /* Pods-AHFMAudioPlayerVCManager_Tests-frameworks.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-AHFMAudioPlayerVCManager_Tests-frameworks.sh"; sourceTree = "<group>"; };
F45BA3AD2192722C65F1DB9AD580884B /* AHFMModuleManager-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "AHFMModuleManager-umbrella.h"; sourceTree = "<group>"; };
F4CAB1DA388523930456D64FEDE99D83 /* AHServiceRouter-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "AHServiceRouter-umbrella.h"; sourceTree = "<group>"; };
F564CEE36BF33CE0A0D88B2C8938676C /* SwiftyJSON.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; path = SwiftyJSON.modulemap; sourceTree = "<group>"; };
FA117DB72C15FF7CE513B7FFC041794E /* AHFMNetworking.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AHFMNetworking.swift; path = AHFMNetworking/Classes/AHFMNetworking.swift; sourceTree = "<group>"; };
FB7337DC8F55D9CDC97FCF775D7FFA4B /* AHFMDataCenter-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "AHFMDataCenter-umbrella.h"; sourceTree = "<group>"; };
FC3C5A12E28BDCC5D99B52DF0686AC73 /* AHFMServices-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "AHFMServices-prefix.pch"; sourceTree = "<group>"; };
FEF6E9A8C872ECB2094F448CCC5334A5 /* AHFMEpisodeInfo.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AHFMEpisodeInfo.swift; path = AHFMDataCenter/Classes/AHFMEpisodeInfo.swift; sourceTree = "<group>"; };
/* End PBXFileReference section */
/* Begin PBXFrameworksBuildPhase section */
0E6F7CBC54DBFE77DD8BB2D634631FDC /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
88C92FC2B4C551D7C43A8A58536E584C /* Foundation.framework in Frameworks */,
9ECFF95A4ED105565713328D23E31437 /* SwiftyJSON.framework in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
155C28E42FC68A70623288214A906330 /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
0DD6AB3A05BDEDFE3E4CB6B25DFC3E3D /* Foundation.framework in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
1E555B2C38D43E91CE565990DBA840B7 /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
D1EE121784EA5C68603AA76604236746 /* Foundation.framework in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
280A04EC2562361FB81C19D3ADD75334 /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
008689BBBC709FF567AF878307840F2D /* Foundation.framework in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
3ECF814E63905D66C9BC14F8D869E274 /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
231EBBE083ACAA212E654A1439D05B4A /* AHFMServices.framework in Frameworks */,
BB65FEAF7154A13D2CA7DF0BA548D0E2 /* Foundation.framework in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
40CF1BEF97204143C30C44BFAEF56D0E /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
8FFC811B6A129B13D699BAE0BCF6BEB9 /* Alamofire.framework in Frameworks */,
AE60BECD59F18EAF40C880872BE91348 /* Foundation.framework in Frameworks */,
B397BA69B7520472DF849B097E3E08C3 /* KeychainAccess.framework in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
5609B28996BD4CE9647523E6355A10CB /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
66EDBC5331658D31631CB7AADC8263D6 /* AHDataModel.framework in Frameworks */,
8A1DC4C91AD287A70426A22455B4EF48 /* Foundation.framework in Frameworks */,
13318833623342861809706C98FBBBD2 /* UIDeviceExtension.framework in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
61177F725E811FEB74A2EC4719DD716D /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
E8856DCBBD8410624FFED283B38F64FA /* Foundation.framework in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
74BDE53995B664650AB5B11C9141F35A /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
930E2534446E21252C682622FA6311AF /* AHFMServices.framework in Frameworks */,
1A72CFAD71375799A80A74BEBFFF670F /* Foundation.framework in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
7A4485F93F35BA3510E9FA86A6387444 /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
F32333EE803052838DB8E0DCFCD53967 /* AHFMServices.framework in Frameworks */,
9E8697184655CC05BD6C100E98D396F6 /* Foundation.framework in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
8085822909A79A3C1AB37E0F71331D60 /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
E5231C638CA7AAF3881FF9268F481895 /* Foundation.framework in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
822384CD383737F535464CFF041E9369 /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
0CACBE36FA0317FE3F7CD139E71F3F03 /* Foundation.framework in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
A530C03E041E53DA758F81C967875D0F /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
017BA3B3A4C3F22BC4F92122A7D55BF3 /* AHFMServices.framework in Frameworks */,
30F23734FCEC2357C0AA86E678B07C4F /* Foundation.framework in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
ABDACB91F509F3DE7660CA03285703E3 /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
F39A3AD21FD721EC377FC7E06842C9E0 /* Foundation.framework in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
BA081512AC54201EB14CB9EB038D49A9 /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
D2218BC399483A9BD75DE3D620B6BBCC /* Foundation.framework in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
D57F3ADB98B7FA6B5A35CB4EC33207B0 /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
9A3ACF52102C68DAA294388331755579 /* AHDataModel.framework in Frameworks */,
5CB5D2BF4E15DAC8C13E1DACE54449EF /* AHFMAudioPlayerVCServices.framework in Frameworks */,
D0E8A597E5523E99CE550BA917E9E41A /* AHFMBottomPlayerServices.framework in Frameworks */,
57B46717364667A05ABC7FF13AF658D8 /* AHFMDataCenter.framework in Frameworks */,
9B7EAA2B1AC6C319FF869D532EA362A6 /* AHFMDataTransformers.framework in Frameworks */,
D9905B34B38F9EEB57AE248FAA206F3D /* AHFMEpisodeListVCServices.framework in Frameworks */,
69B5C5CB933F8457F057377A8D4D45EB /* AHFMModuleManager.framework in Frameworks */,
BA4D50BB4AB4252CE2CEF1E78B3B09B6 /* AHFMNetworking.framework in Frameworks */,
72FE145BE2231B4436E18046E80A0166 /* AHFMServices.framework in Frameworks */,
566514C1327CFF263FB6A0E539BDDC68 /* AHFMShowPageServices.framework in Frameworks */,
6169978361613EF07BF70ED528772A76 /* AHServiceRouter.framework in Frameworks */,
7DFA460408C9F5E392D9097A7D183141 /* Alamofire.framework in Frameworks */,
84F3874CCACA927DD7FE720825936DC1 /* Foundation.framework in Frameworks */,
82FB9E17D620BF5DB4578D6DDD95C9AB /* KeychainAccess.framework in Frameworks */,
E1E766892CC97CD6F362D90ECBD213FB /* SwiftyJSON.framework in Frameworks */,
42D23232241A7A96B0BA67487C635DF5 /* UIDeviceExtension.framework in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
E7DDD12B8772E064EE7F00A54CB56725 /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
44F1AC857FA6DC9A64ED08D7047CF061 /* Foundation.framework in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
E7DEB3E33CEE1F9977693228FF849E24 /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
19257A0609452E5392BB302E3AE30CF2 /* Foundation.framework in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXFrameworksBuildPhase section */
/* Begin PBXGroup section */
0A90E132D10A2E56C9400A2CD493A537 /* Pods-AHFMAudioPlayerVCManager_Example */ = {
isa = PBXGroup;
children = (
3440038EEA5F963D773423B76DCBFE81 /* Info.plist */,
1ED0312039EF9B0583BDD035B343B906 /* Pods-AHFMAudioPlayerVCManager_Example.modulemap */,
2A65A01C3D66CD4E511B0072E21737CA /* Pods-AHFMAudioPlayerVCManager_Example-acknowledgements.markdown */,
AA8ECE59670826CF7F6E0E57BF17806A /* Pods-AHFMAudioPlayerVCManager_Example-acknowledgements.plist */,
694BB110FB73F478534C2AF7F298878A /* Pods-AHFMAudioPlayerVCManager_Example-dummy.m */,
7CEF41D4CD23467DF6C131552A56A132 /* Pods-AHFMAudioPlayerVCManager_Example-frameworks.sh */,
984BE8ECD5BC98795C9276E6BB9C25C5 /* Pods-AHFMAudioPlayerVCManager_Example-resources.sh */,
A57CDDA629B4D8749F7AA37B90286700 /* Pods-AHFMAudioPlayerVCManager_Example-umbrella.h */,
6FB663794097DF782E76DF064B858084 /* Pods-AHFMAudioPlayerVCManager_Example.debug.xcconfig */,
9AEC3C89D19CC08AE5B9E27E62A8EF76 /* Pods-AHFMAudioPlayerVCManager_Example.release.xcconfig */,
);
name = "Pods-AHFMAudioPlayerVCManager_Example";
path = "Target Support Files/Pods-AHFMAudioPlayerVCManager_Example";
sourceTree = "<group>";
};
0CBE2C54C0A41C8B225FC57A8307B36B /* AHFMDataTransformers */ = {
isa = PBXGroup;
children = (
A74DF6CC111166D6680581E212CC4538 /* AHFMEpisodeTransform.swift */,
725809A01B254DFC8D0E663EDC07A5DC /* AHFMShowTransform.swift */,
6246C0F5D6CC65935465C7262209D698 /* Support Files */,
);
name = AHFMDataTransformers;
path = AHFMDataTransformers;
sourceTree = "<group>";
};
0CD04104773C30BF8939E4017DEFFE24 /* AHFMAudioPlayerVCManager */ = {
isa = PBXGroup;
children = (
9191B531C46A754814D08E536C86DCBD /* AHFMAudioPlayerVCManager */,
B4C7C90AC1BE342468108B30F5D615A0 /* Support Files */,
);
name = AHFMAudioPlayerVCManager;
path = ../..;
sourceTree = "<group>";
};
0EED9B7A5240CEAD4487BA42A5809AD3 /* Support Files */ = {
isa = PBXGroup;
children = (
7CAA2D1B804DFED12296980071A2D282 /* AHFMBottomPlayerServices.modulemap */,
0EDE7367C61094469580907A026506FE /* AHFMBottomPlayerServices.xcconfig */,
F0D512A03C3C968A818B124D3BB7C539 /* AHFMBottomPlayerServices-dummy.m */,
73ADD4456024AF8237130BEFF2C9B2EB /* AHFMBottomPlayerServices-prefix.pch */,
19CB88C1B63819A1A82925D3C056D987 /* AHFMBottomPlayerServices-umbrella.h */,
5B3312BF751DBFF7FF3B4D7FA6E7D2A2 /* Info.plist */,
);
name = "Support Files";
path = "../Target Support Files/AHFMBottomPlayerServices";
sourceTree = "<group>";
};
0F5B7ECC02956F05FE0C17232F250B43 /* Support Files */ = {
isa = PBXGroup;
children = (
D9B7F09A24B5965A75C837B8F6FBECFC /* AHFMAudioPlayerVCServices.modulemap */,
B96414CACFA69CC8A60B614E0DB560BA /* AHFMAudioPlayerVCServices.xcconfig */,
18342E6CD439D4374D4F5B800EE10DD1 /* AHFMAudioPlayerVCServices-dummy.m */,
8E0A8305E6EB1BFE941C704702588EE8 /* AHFMAudioPlayerVCServices-prefix.pch */,
E4BB26C0D94C8E6997880FDA4536BF93 /* AHFMAudioPlayerVCServices-umbrella.h */,
CAEDF80EEF60F9FA1D0FE3FAC70B12A6 /* Info.plist */,
);
name = "Support Files";
path = "../Target Support Files/AHFMAudioPlayerVCServices";
sourceTree = "<group>";
};
1CD64E8E8B4AAB5BECD9CDA068566BC3 /* Support Files */ = {
isa = PBXGroup;
children = (
782ABD1AC53EBCA9C5C6D4A905BED46A /* AHFMModuleManager.modulemap */,
0EA1AF1EC7215FA64DF658DEECC007D4 /* AHFMModuleManager.xcconfig */,
CF5071A1ECA1FDE8FEF7401358DE6BD3 /* AHFMModuleManager-dummy.m */,
3AA42C08718FD6068F595D6A90A6DC8D /* AHFMModuleManager-prefix.pch */,
F45BA3AD2192722C65F1DB9AD580884B /* AHFMModuleManager-umbrella.h */,
2D8FD028DC404C4E52E4AA70D7931E6A /* Info.plist */,
);
name = "Support Files";
path = "../Target Support Files/AHFMModuleManager";
sourceTree = "<group>";
};
1D7CFD9AD7DF70B460535BEFD86B732A /* Support Files */ = {
isa = PBXGroup;
children = (
B9CAD13733D3949D9CD39C9CC9CEA60B /* AHFMServices.modulemap */,
1D73D507C1B97DE74ECE66FCB716AE5B /* AHFMServices.xcconfig */,
7ACD739C8655EDCE5B2A1830D2D46750 /* AHFMServices-dummy.m */,
FC3C5A12E28BDCC5D99B52DF0686AC73 /* AHFMServices-prefix.pch */,
BABF8CF64F1F564640B3C8CBC6823769 /* AHFMServices-umbrella.h */,
073CA4E646280D2CA2A41208D5F1B49C /* Info.plist */,
);
name = "Support Files";
path = "../Target Support Files/AHFMServices";
sourceTree = "<group>";
};
22EC1DDE14A86C1716B7C0A9FEBA4CA1 /* Support Files */ = {
isa = PBXGroup;
children = (
6E411A15004415E9996B26D7557F363E /* Info.plist */,
03CF4C6F1EEC5B98457404F40FAD958E /* UIDeviceExtension.modulemap */,
907D12421A9D10A7A1C204EFDBADD959 /* UIDeviceExtension.xcconfig */,
8F4552693A6E47DFEB6E44F0D6684805 /* UIDeviceExtension-dummy.m */,
28299CEDF1C41D73B39D2668876136E7 /* UIDeviceExtension-prefix.pch */,
6ACBA6CFF3DFBAF5FA85E43D470766FA /* UIDeviceExtension-umbrella.h */,
);
name = "Support Files";
path = "../Target Support Files/UIDeviceExtension";
sourceTree = "<group>";
};
251E6CDCEC685D8EFF4224C3419C03CC /* Development Pods */ = {
isa = PBXGroup;
children = (
0CD04104773C30BF8939E4017DEFFE24 /* AHFMAudioPlayerVCManager */,
);
name = "Development Pods";
sourceTree = "<group>";
};
36011549F07F1BE0EA6BBC2B3ED0FB27 /* KeychainAccess */ = {
isa = PBXGroup;
children = (
D6ECBF7716D05B78CB20000D24384D63 /* Keychain.swift */,
AFADC164C6241FE9FFED79E10D7F868D /* Support Files */,
);
name = KeychainAccess;
path = KeychainAccess;
sourceTree = "<group>";
};
3CFD46D82E8A5CFDCDE31DDCEC95227F /* Products */ = {
isa = PBXGroup;
children = (
DE760749849BCF417516134BECB0BBDF /* AHDataModel.framework */,
0C0B1718E1310E42B696538B1CE8171D /* AHFMAudioPlayerVCManager.framework */,
E9E472EDB0CF7EF25084046A25EBCE60 /* AHFMAudioPlayerVCServices.framework */,
D7608197CD833BFF6453068E09C920E4 /* AHFMBottomPlayerServices.framework */,
0B7C6CD97993282CA45328B28A5C0AA6 /* AHFMDataCenter.framework */,
3958F873F6CE48411BA07B32BF1DE2A3 /* AHFMDataTransformers.framework */,
0DA9252D5DE0BDF99848F68AC89D37AE /* AHFMEpisodeListVCServices.framework */,
CB5E1DF4CB0AC66D0FD9CEBA50EE362E /* AHFMModuleManager.framework */,
428BF89A4DDFB454186AA9AB63F00403 /* AHFMNetworking.framework */,
C5334828A61C5E2B6DB82034999EFFB7 /* AHFMServices.framework */,
96F6747E0EA148B1971914DCCFCF1B86 /* AHFMShowPageServices.framework */,
1109E2A0D823F65D735459735DE45CA5 /* AHServiceRouter.framework */,
AF58EB4E5BC68833B94A34F98FA66C92 /* Alamofire.framework */,
DDC295EF6CA742219E4C283D7F58804F /* KeychainAccess.framework */,
AFB5F6CB15521C374AD5047CF536D131 /* Pods_AHFMAudioPlayerVCManager_Example.framework */,
AEFE001423F54B43B9D4627FFB4978C7 /* Pods_AHFMAudioPlayerVCManager_Tests.framework */,
8CCDFBBBFE282CFA7CAD8527101ED48C /* SwiftyJSON.framework */,
B869F42C3D8D1E17136DA0628E3F939A /* UIDeviceExtension.framework */,
);
name = Products;
sourceTree = "<group>";
};
4D6A0BEB5B5DFED1FF94BB2579EA0780 /* AHFMNetworking */ = {
isa = PBXGroup;
children = (
FA117DB72C15FF7CE513B7FFC041794E /* AHFMNetworking.swift */,
708C45B2C477452DD6EE15A1E387D224 /* AHKeychain.swift */,
47D3BE28C38E6AFA8F0C6A9F884777E9 /* AHNetworkConstants.swift */,
914A99B54B45E3C90D679C1C7583CB32 /* OAuth2Handler.swift */,
AB5B84857470F6F9DA567D98B0F9A0CD /* Support Files */,
);
name = AHFMNetworking;
path = AHFMNetworking;
sourceTree = "<group>";
};
4D96838F51C68CBF1059553999EFB118 /* Classes */ = {
isa = PBXGroup;
children = (
A996BAC34E04881BA851F96F3F82B79B /* AHFMAudioPlayerVCManager.swift */,
B5B58FC5929A0CEF2C1E723DECB19316 /* AHFMManagerHandler.swift */,
);
name = Classes;
path = Classes;
sourceTree = "<group>";
};
52CCBACEEE760DE4542B55DBA57DD45C /* AHFMDataCenter */ = {
isa = PBXGroup;
children = (
5BD84FE65B1B03D952DED2F838F5B9CD /* AHFMDataCenter.swift */,
D3146137287417338634A6CED549F957 /* AHFMEpisode.swift */,
B46B6F7E7D744EA40D3C2EA8042C5F6D /* AHFMEpisodeHistory.swift */,
FEF6E9A8C872ECB2094F448CCC5334A5 /* AHFMEpisodeInfo.swift */,
80E8857A0C114061F8160EDEF5029B74 /* AHFMShow.swift */,
533EA37C203B6AA6BAAFB9D05872DB45 /* AHFMSubscribedShow.swift */,
C82471EBF7F32ACB298DBD60904DB9F2 /* Support Files */,
);
name = AHFMDataCenter;
path = AHFMDataCenter;
sourceTree = "<group>";
};
531E4BB03A3B56C1CAADF2082522E908 /* AHFMShowPageServices */ = {
isa = PBXGroup;
children = (
E8A92417A1DB9BDBEC4CF3BD012E92D4 /* AHFMShowPageServices.swift */,
74DBC3112DBA52E3311458C780B7C113 /* Support Files */,
);
name = AHFMShowPageServices;
path = AHFMShowPageServices;
sourceTree = "<group>";
};
5924E8BCEFEF6461D69657CBA9776134 /* Pods-AHFMAudioPlayerVCManager_Tests */ = {
isa = PBXGroup;