-
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 */
00CF4B6E90DE1CA28985730E9EA6A374 /* SwiftyJSON-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = D6417FF760681DB6F3CE8F3ABF27A564 /* SwiftyJSON-dummy.m */; };
0240EFC7E4D0475F05E27901CD065B2B /* ResponseSerialization.swift in Sources */ = {isa = PBXBuildFile; fileRef = 68C723D6C23605A6E88F78DDF2DA54A7 /* ResponseSerialization.swift */; };
058097EAA0C7BBEE522361472530755E /* Validation.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4E8EA8B317856CD4D63F162177624D17 /* Validation.swift */; };
06E25B7D39B0628EEDCE3A4E913FAC30 /* UIDevice+Extension.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6533BC91651A431BF1C0C7EF90092105 /* UIDevice+Extension.swift */; };
071EC65B29987AE0A38B267FF2537F52 /* Alamofire.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 1AFF342E7A6B31A01536DBD0F50D3A82 /* Alamofire.framework */; };
07F612198032CD3AF00198F98B33BE91 /* AHDatabase.swift in Sources */ = {isa = PBXBuildFile; fileRef = B72189FE7A79BFDE9798F2BA4750A2CF /* AHDatabase.swift */; };
09B60E42F470EBCE50323922700A39FC /* Pods-AHFMBottomPlayerManager_Example-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 0CF7CFCD7D328E9C313CD3EA74DAAB6B /* Pods-AHFMBottomPlayerManager_Example-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; };
1063F1B18DA0042FAB8D94446EDD4B6C /* AHFMBottomPlayerServices-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 24BD21103562CE8BE2415931406B08FB /* AHFMBottomPlayerServices-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; };
120CA66D2378357973AAB576A8EBD26D /* SwiftyJSON.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4829D35F19D113DCE405BDBBDFD070EB /* SwiftyJSON.swift */; };
125747A757B85E20569F4B242C425F86 /* AHFMBottomPlayerServices.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 63EFC80AD5A089DD0DB2E438510001DB /* AHFMBottomPlayerServices.framework */; };
1338DD31FAA753F40D3B2ED993187BEE /* Pods-AHFMBottomPlayerManager_Tests-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 11C091A5F0191A91A7AE02829079B2EF /* Pods-AHFMBottomPlayerManager_Tests-dummy.m */; };
171C20671121E6D90B226A2E957907B7 /* KeychainAccess-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = F3705C910C65B4DCBE89296EA877D3D3 /* KeychainAccess-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; };
1882D386F6F117FDE038B605923D98F9 /* OAuth2Handler.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4FB9B462685C54820114023258B45514 /* OAuth2Handler.swift */; };
1892B335C9B23DB62BA0B0CA441C159A /* UIDeviceExtension-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = C833EB41F16C83E871C52B9AE765ED7B /* UIDeviceExtension-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; };
221AF7FC7F8C065B6BD8A9D78718937F /* AHServiceRouter.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 05ED47BF2398821F8E6FF0B8E5C9BFED /* AHServiceRouter.framework */; };
239E5F130A59B803705BBEE0F0F35904 /* AHFMDataCenter-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 1639A249E2C172D6F334F5AC255F0ABC /* AHFMDataCenter-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; };
244D083069197139380F404217DCBC10 /* Response.swift in Sources */ = {isa = PBXBuildFile; fileRef = A64434C6FE1E6598B7AC539D4D93DE99 /* Response.swift */; };
24FA2DAE21A3CC971032567A8E69936E /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = D892237A2B595621712D7D6DECC7B888 /* Foundation.framework */; };
29C80D832DC99445D21C6A4A5BB73A3C /* AHFMSubscribedShow.swift in Sources */ = {isa = PBXBuildFile; fileRef = E7FAA1F9AE9258A42649F1C312B0C7F5 /* AHFMSubscribedShow.swift */; };
2B1049682D0023056B5161BA8FCC4D2E /* ParameterEncoding.swift in Sources */ = {isa = PBXBuildFile; fileRef = D0742D83CD3B82943DAE2973871C47A6 /* ParameterEncoding.swift */; };
2B5AD703147702A5A1112919826DD88F /* Manager.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4216003F51DBA4CA952E0AB9B0FE4F7D /* Manager.swift */; };
2C7CF4F69AD69BEC972765EC8640F81A /* AHFMDataTransformers-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = EC56A8831727E744BE9471A03F23751A /* AHFMDataTransformers-dummy.m */; };
2CD0C38FFE4CE6955EFAC94EC0D537BA /* ServerTrustPolicy.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8D351024D02EBC94C85ABAD0FF60C3AC /* ServerTrustPolicy.swift */; };
2E32738F629F33413E796B3B435267CF /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = D892237A2B595621712D7D6DECC7B888 /* Foundation.framework */; };
31C942E2ACFD80D63AEB99EF45C3DA50 /* AHDataModelQuery.swift in Sources */ = {isa = PBXBuildFile; fileRef = 358EF26ED38731E37B48EC4F20B37F29 /* AHDataModelQuery.swift */; };
32F68E74B90DB3D48666125C04EB08CE /* AHFMDataCenter.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = A5C21405122E5A7C065575F201334877 /* AHFMDataCenter.framework */; };
3304FD800B53564C6D09B4D7A9A80227 /* AHKeychain.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0F2B12FE55060265F097D369B4DF56BA /* AHKeychain.swift */; };
333BC93B1508E678B72D7E845ABDA0DD /* AHServiceRouter-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 03DAA38C47703B29A7F028786A7377A0 /* AHServiceRouter-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; };
3526B72B4F3F3E0DA719C7C71A0BE487 /* AHFMNetworking.swift in Sources */ = {isa = PBXBuildFile; fileRef = C878B3BD90B503DBAB0040C6EACD38A5 /* AHFMNetworking.swift */; };
35D0BE9C20AFD68B861A52AE813956D6 /* AHFMServices.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 33B7D31532D65A821DC7F9CE3A8BFE0E /* AHFMServices.framework */; };
3652F862189849DC77B5F6913D528BA1 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = D892237A2B595621712D7D6DECC7B888 /* Foundation.framework */; };
3A1A7E311AACF03848A60458E2069FAB /* AHFMBottomPlayerManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = 29672A88E430C48C985CD2BA0BF81E34 /* AHFMBottomPlayerManager.swift */; };
3A71A2983B24F0DCFBA9CA36E31F9DF5 /* DispatchQueue+Alamofire.swift in Sources */ = {isa = PBXBuildFile; fileRef = 39F9CCA13DBD2F348A2A73BA66D391E6 /* DispatchQueue+Alamofire.swift */; };
3A872EB205BD12B5A103A2B7AB739177 /* AHFMServices.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 33B7D31532D65A821DC7F9CE3A8BFE0E /* AHFMServices.framework */; };
3A8C92FD152A86325DD414A664504BE5 /* Alamofire.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 1AFF342E7A6B31A01536DBD0F50D3A82 /* Alamofire.framework */; };
3AEFE0EEEA61E28809C77910CBF4A6D6 /* AHFMShowTransform.swift in Sources */ = {isa = PBXBuildFile; fileRef = CC86165C41BA7320B6639E351E5BC029 /* AHFMShowTransform.swift */; };
3D9E75D266E51A906A6394BAA8C525AB /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = D892237A2B595621712D7D6DECC7B888 /* Foundation.framework */; };
3EBD268422B85E3D8E0C99235F2D3A4C /* AHNetworkConstants.swift in Sources */ = {isa = PBXBuildFile; fileRef = E8267BF7136185A1A8F9399950C884F5 /* AHNetworkConstants.swift */; };
3F1997212AEAF3695FF7856820121441 /* AHFMEpisode.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4DDE2C3206B68ECF567F5D1D294AD785 /* AHFMEpisode.swift */; };
420A01FF17B2EE55DDC0C57749C72117 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = D892237A2B595621712D7D6DECC7B888 /* Foundation.framework */; };
44A22D271AD37088556B5285ED52A89B /* Migration.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8192A689AC8910EBC21720332DD3B00A /* Migration.swift */; };
4599BBEBCEFD9060A950EF11E83BB57A /* AHFMEpisodeHistory.swift in Sources */ = {isa = PBXBuildFile; fileRef = 48F42CEEF12BFABE6575075CB8336648 /* AHFMEpisodeHistory.swift */; };
497778E1183E545DF40695CB4015CDD6 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = D892237A2B595621712D7D6DECC7B888 /* Foundation.framework */; };
4BC64843167E81EC6241F648388DA202 /* Notifications.swift in Sources */ = {isa = PBXBuildFile; fileRef = 920F30878A70D84B031DBBFB17B8B49C /* Notifications.swift */; };
4C4C06B7C294F2EB21FCA158A56A1535 /* AHFMServices.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 33B7D31532D65A821DC7F9CE3A8BFE0E /* AHFMServices.framework */; };
4EA76DF08AA7FA19A3BDB6DB095E3482 /* Timeline.swift in Sources */ = {isa = PBXBuildFile; fileRef = 603A4035B79696A70A0E2BFEBBAFF888 /* Timeline.swift */; };
4EFE55B0D59064C39A43AAB684E0FF2A /* Alamofire-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 5D0CFCE46D86CFB91F962694C97565A9 /* Alamofire-dummy.m */; };
50997560853C30AF57AF9414EE5BADBE /* AHFMEpisodeListVCServices.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 9A203DFFD66D2756F4C31B45110086B2 /* AHFMEpisodeListVCServices.framework */; };
56E36A5FFF882570369919B44C6E8D2F /* AHFMServices.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 33B7D31532D65A821DC7F9CE3A8BFE0E /* AHFMServices.framework */; };
57D9DCD5705F7A7665A5C6BA80068117 /* AHFMDataTransformers-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 9A50F59BE75EDA523A6AC167E848B05E /* AHFMDataTransformers-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; };
57E218D96E0011D09117932F4C07DF4D /* AHFMAudioPlayerVCServices.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 0D31CCCCE77BB2E9D50AEE60759D2FD6 /* AHFMAudioPlayerVCServices.framework */; };
60DAD4DB69C3296A8D31800BE05F04D1 /* AHFMServices-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 57BCB901B1CE5E20876D19D41A5C177F /* AHFMServices-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; };
62EB447CD35174F326FB00E3A90732F5 /* AHDB.swift in Sources */ = {isa = PBXBuildFile; fileRef = 229B66D1A8CCA1F2D4499FAFAA148554 /* AHDB.swift */; };
62EE39E6D5620D2A288EE805D077E753 /* AHFMHistoryVCServices-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 7544FA5DB4B5AE2DF47A41A89AED05D0 /* AHFMHistoryVCServices-dummy.m */; };
6614662FD89B96462D999E2F5791826C /* AHFMNetworking-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 0AB64C4C6F37F9CF9B41486386BC4058 /* AHFMNetworking-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; };
690ABCE2D843F785E9AEAF9030853F11 /* AHFMDataCenter.swift in Sources */ = {isa = PBXBuildFile; fileRef = E204EFA1B3161A0A66A87958CD746461 /* AHFMDataCenter.swift */; };
6A8C075C3C7853EAAEE6AEF007D54041 /* AHFMAudioPlayerVCServices-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = EAE4E8D0C594E0A100F01A00F750670B /* AHFMAudioPlayerVCServices-dummy.m */; };
6CCA60E425F0687455990004603A9877 /* AHFMShow.swift in Sources */ = {isa = PBXBuildFile; fileRef = D2B06E97667E453EBAF8EDD6DB23EE27 /* AHFMShow.swift */; };
7248CA7EE2A4F364F8B3C10C9640A60F /* AHFMHistoryVCServices-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = AC2BD65FAD68DFAEE4877D06F174B02C /* AHFMHistoryVCServices-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; };
729FEBD7B0CFA1478C085FD3C115C58B /* AHFMBottomPlayerServices-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 67BF0F1907550312B3CE40F8CE70229A /* AHFMBottomPlayerServices-dummy.m */; };
72C2FBEAF855E12E4EC3122D2DD9A978 /* Pods-AHFMBottomPlayerManager_Tests-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 4EEF3DCA4FE4948A0948D364CF2A55B8 /* Pods-AHFMBottomPlayerManager_Tests-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; };
7449722E81D51520F9882B94B3FEAA2C /* AHFMServices.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 33B7D31532D65A821DC7F9CE3A8BFE0E /* AHFMServices.framework */; };
744B59C076AF86581933089FE82992B7 /* Alamofire.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5FC85269CD99B822B5540D841673374D /* Alamofire.swift */; };
75BA35EA7B3C639D08D20156C970AEAE /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = D892237A2B595621712D7D6DECC7B888 /* Foundation.framework */; };
76EFDCDB7DDBE02B4D81396C6BD2B210 /* Keychain.swift in Sources */ = {isa = PBXBuildFile; fileRef = 939050770EEB629869616BF220558817 /* Keychain.swift */; };
7791B92F3DCFF20CDF1D2411FD0E2ABA /* AHFMBottomPlayerServices.swift in Sources */ = {isa = PBXBuildFile; fileRef = 121AD5F09F0AD38B8A6A9E9A93282888 /* AHFMBottomPlayerServices.swift */; };
78374FF2FEBA0D74110AA4DA173A49BC /* AHFMEpisodeTransform.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2B8C6ACCA5230BF5529017992F0B2CEC /* AHFMEpisodeTransform.swift */; };
7C5E247BF30BC6E6391D5220364FA737 /* Pods-AHFMBottomPlayerManager_Example-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 19A0B7F11381927DFD11E728D068EA77 /* Pods-AHFMBottomPlayerManager_Example-dummy.m */; };
816B89B457C4E75B04210A37DA4F3AE6 /* module.modulemap in Sources */ = {isa = PBXBuildFile; fileRef = 38748350F54EB4D57F26AD446ADD7371 /* module.modulemap */; };
82D247D850B88DAAD58597B425B17C1F /* AHDataModel.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 32D6F53A823D7DE2565A226A13B03293 /* AHDataModel.framework */; };
85056E6E2635AC6321D707C6FE56B096 /* AHFMModuleManager-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 584C78DD05948529FB1F0DB973CFC3BB /* AHFMModuleManager-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; };
86D560D0841A20F09076C3F874321244 /* Alamofire-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 7330993652968A342C9CCB562F8DED61 /* Alamofire-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; };
885AD958180CCB3276511813FF621E30 /* AHFMEpisodeListVCServices-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 4219FE1BBE585B731D177E73B7391111 /* AHFMEpisodeListVCServices-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; };
8B387AE80B7CE5528B5EA8530B7E9173 /* AHDataModel-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = DEC54ED30AF521122ACB88C6820C0A27 /* AHDataModel-dummy.m */; };
903EFCA68B1500F2472DD967E8683E62 /* AHDataModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4520C733C0F95FDC9AB01FF50F81B1B2 /* AHDataModel.swift */; };
93657E5F36131A42F83C7A6589A49A2B /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = D892237A2B595621712D7D6DECC7B888 /* Foundation.framework */; };
983893B8599FDCD1944D1CCCA3A4156F /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = D892237A2B595621712D7D6DECC7B888 /* Foundation.framework */; };
9FBA362E4AC29F0E26A934F6D52DD2C5 /* SessionDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = DCB0C92918BC3E8A7D3B95BA3C3746B8 /* SessionDelegate.swift */; };
A5BE67D7FD374694D8547219104764FF /* AHFMDataCenter-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 7A9509CCB7AAA0CEBA6AE0E781AD92F9 /* AHFMDataCenter-dummy.m */; };
A73630160858F94277F9970DB15EA2A8 /* AHFMAudioPlayerVCServices-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 7710E833146924B0EA4E560330A801A3 /* AHFMAudioPlayerVCServices-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; };
A7E3A1888F39349205FAB81173BCD97E /* AHFMModuleManager-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 2B3E143DAA445CC3DE3E5CD05FB5089E /* AHFMModuleManager-dummy.m */; };
AB9E7A741F6418AE6471CD89B0F11760 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = D892237A2B595621712D7D6DECC7B888 /* Foundation.framework */; };
ABE343715C24A3E6C5FC33CC12DED78B /* TaskDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5A0CE77C65B9917768BFB147F470F984 /* TaskDelegate.swift */; };
ABF3557D5C31EF5A054BCB3A1F226014 /* AHFMServices.swift in Sources */ = {isa = PBXBuildFile; fileRef = C864A7F3FC097E07B38FC0274117D0E2 /* AHFMServices.swift */; };
B04A5D76466F7E55C1457E95419F0D95 /* Result.swift in Sources */ = {isa = PBXBuildFile; fileRef = 604D46CCF38B273F06067142EE57BFB3 /* Result.swift */; };
B0FCF52F79B3888B6E2765B5D7A1A2E0 /* AHFMEpisodeListVCServices.swift in Sources */ = {isa = PBXBuildFile; fileRef = 277A4BDBE60A940FB969615698DF8E98 /* AHFMEpisodeListVCServices.swift */; };
B1603D54C7197E61F51C54F5FD59381B /* AHFMDataTransformers.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = DC70A1263D74ED54D09AE96806B4E77D /* AHFMDataTransformers.framework */; };
B57CEE57B04647B59DE4982AA7F14FCF /* AHFMModuleManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = D24534EAD61D8B15ED5BD91F863D5A7D /* AHFMModuleManager.swift */; };
BC9B52015A8ACFB970AC0512D3E2036A /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = D892237A2B595621712D7D6DECC7B888 /* Foundation.framework */; };
BE84B6B8DDFD21350769EC3CEB889E5B /* SwiftyJSON-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = FDB6A074A0A8E3D54F4502B991F386E2 /* SwiftyJSON-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; };
BF01997A2981057CF11B394C0BBD94DE /* AHFMModuleManager.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 786FD3CE3164914300841D96721A8F0A /* AHFMModuleManager.framework */; };
BF0824F67A601AC717923C73382A6A63 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = D892237A2B595621712D7D6DECC7B888 /* Foundation.framework */; };
C3CC14E830A2602B53F6DF267E89DFF9 /* UIDeviceExtension-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 12BBB23A88551D9CBEBA4F4F4D407332 /* UIDeviceExtension-dummy.m */; };
C7297006542A4D295C9D247BF08228F8 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = D892237A2B595621712D7D6DECC7B888 /* Foundation.framework */; };
CD3C1E69BEDB9C08B2596DE536F0B335 /* Migrator.swift in Sources */ = {isa = PBXBuildFile; fileRef = AC7B685A21234BA0D2AE5381BA58FAB4 /* Migrator.swift */; };
CFC657CB998D7FAF130F10CB645DD932 /* AHFMHistoryVCServices.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6B6CB3A280C988B3284A89D2A29A4AC6 /* AHFMHistoryVCServices.swift */; };
D2656F68CCF7D56A018E8C3283FEAB8A /* KeychainAccess.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = CA50FE1DDA3FD68C420F35A5271B457A /* KeychainAccess.framework */; };
D2A7AAB2766A5EF117422763FBA1E00B /* AHFMAudioPlayerVCServices.swift in Sources */ = {isa = PBXBuildFile; fileRef = 292ADD65EBED06915A32C50E0233ADE0 /* AHFMAudioPlayerVCServices.swift */; };
D4B639D2AF2B1CC2F574B94B47F841CB /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = D892237A2B595621712D7D6DECC7B888 /* Foundation.framework */; };
D53A1F022842E916EAF925360CA1B14B /* KeychainAccess.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = CA50FE1DDA3FD68C420F35A5271B457A /* KeychainAccess.framework */; };
D6CB7787DD1FE0480A1F4DB940C98185 /* AHServiceRouter.swift in Sources */ = {isa = PBXBuildFile; fileRef = C0D6EA0CA55EAC516DC28B4A93D2F2B3 /* AHServiceRouter.swift */; };
D6D7C7C19366E1763F31CCB5A0ED4925 /* module.modulemap in Sources */ = {isa = PBXBuildFile; fileRef = 262E607D7E9FB33D747387302F769A2A /* module.modulemap */; };
D7EEDEE8C2150B16D0C6494C28CDAA19 /* KeychainAccess-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 702E94BDD890CDEFD0A3C632721A60E1 /* KeychainAccess-dummy.m */; };
D93E62AB95A4DF975BDF0DB7E40C1FD8 /* Request.swift in Sources */ = {isa = PBXBuildFile; fileRef = E02CDF24CEBC95366E260CFE1DA12BCC /* Request.swift */; };
D9C596808F0A9125E5669627B3EA5B40 /* SwiftyJSON.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = CBC99320110A2C8B2278336D158EC316 /* SwiftyJSON.framework */; };
DAF1696217A6B117649E00E7544C0928 /* AHFMHistoryVCServices.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = C1EFF488FAB2A6F36CF2922B61C24925 /* AHFMHistoryVCServices.framework */; };
DB425E29621D49672B086B4B2613B058 /* AHFMBottomPlayerManager-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 57C005DBE5ACA0D45BCC949C44640387 /* AHFMBottomPlayerManager-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; };
DCC55D4AEB58BB94C7846DC6AE43216D /* AHFMEpisodeListVCServices-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = C3E334DD05229CFE15A130B8E64413E9 /* AHFMEpisodeListVCServices-dummy.m */; };
E063C7E495DE355F9AAD41A2468E0C97 /* NetworkReachabilityManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = C66698936226D37B20A67C10A778C004 /* NetworkReachabilityManager.swift */; };
E13E1EFAA83298D6A22076D650EB92B2 /* SwiftyJSON.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = CBC99320110A2C8B2278336D158EC316 /* SwiftyJSON.framework */; };
E334188C24A670C4E90CBAAF76588EAA /* UIDeviceExtension.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = A25E262AEF1DFD4B859B3DEF04C31CDD /* UIDeviceExtension.framework */; };
E44712533FBB591FA3F2EDB4BE05BDB1 /* AHDataModel.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 32D6F53A823D7DE2565A226A13B03293 /* AHDataModel.framework */; };
E48AD7BED3F041A3F3740518466ECCAA /* SessionManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = 317DE270C7102B22675D0D35002E2B86 /* SessionManager.swift */; };
E8856DCBBD8410624FFED283B38F64FA /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = D892237A2B595621712D7D6DECC7B888 /* Foundation.framework */; };
E8D8660871564D86B88085FDDCD3AF1D /* MultipartFormData.swift in Sources */ = {isa = PBXBuildFile; fileRef = 776F861EEAAF91276B14A0F709E8D5C0 /* MultipartFormData.swift */; };
EF14C86DE5958B13BE82B9521496196B /* AHFMNetworking-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 84C3259DEF8C60190101710905A956CB /* AHFMNetworking-dummy.m */; };
EFF032408EA6492D9E04AA746EBB4868 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = D892237A2B595621712D7D6DECC7B888 /* Foundation.framework */; };
F295BABF1A38598FC6C6F4761FF67F03 /* UIDeviceExtension.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = A25E262AEF1DFD4B859B3DEF04C31CDD /* UIDeviceExtension.framework */; };
F69DDE9C571AB84C951B8CF0767709D0 /* AHServiceRouter-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 4E24C433FA4190E22C3C1C76DAEF243F /* AHServiceRouter-dummy.m */; };
F734AC7646DB2727A1111B9DAC471E43 /* AHFMBottomPlayerManager-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 596C8891B33F09F12425616B30FB6B05 /* AHFMBottomPlayerManager-dummy.m */; };
F7ECA1D56564BD0368FA957BCB9ED6A7 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = D892237A2B595621712D7D6DECC7B888 /* Foundation.framework */; };
F9733CB4932C2DEBDBB574480D2A788F /* AHDataModel-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = A9CCE0322109C735EACC834F966868FB /* AHDataModel-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; };
F9F88B961E018BAF707A6C08D43FA0E2 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = D892237A2B595621712D7D6DECC7B888 /* Foundation.framework */; };
FB689180393B74160FF692FC8D8A3DBA /* AHFMNetworking.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = C2CB534CBD8F42FC65141589AB214290 /* AHFMNetworking.framework */; };
FBD9454CF1C35C63311A3857E2C12F6E /* AHFMServices-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 955C365097707465AE87AEA9EC2510A2 /* AHFMServices-dummy.m */; };
FBEB93C14BEB82C970FCCA3D63F295A4 /* AHDBColumnInfo.swift in Sources */ = {isa = PBXBuildFile; fileRef = A2E1F244A7782E596697DC60EF41A576 /* AHDBColumnInfo.swift */; };
FDC1194A0F195D4F18C3ECBD89F11047 /* AFError.swift in Sources */ = {isa = PBXBuildFile; fileRef = 41C043D4F37BCB1CB2FAC5ABDA257D83 /* AFError.swift */; };
FFE8A27EC42BCC27D24EC2DB0D423921 /* AHFMEpisodeInfo.swift in Sources */ = {isa = PBXBuildFile; fileRef = 083ACB1EAC2440D0891EA3210012592D /* AHFMEpisodeInfo.swift */; };
/* End PBXBuildFile section */
/* Begin PBXContainerItemProxy section */
0D692782135901354F75145D6CA82A78 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */;
proxyType = 1;
remoteGlobalIDString = 4AD610BDD0092362740DF47645BA8CD9;
remoteInfo = SwiftyJSON;
};
16473996913EFB93B1B235720D66129D /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */;
proxyType = 1;
remoteGlobalIDString = 2767723DBFF4BF411D3E80F15190F2B1;
remoteInfo = Alamofire;
};
1659CA19ADAB72FADA5761A10D22E891 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */;
proxyType = 1;
remoteGlobalIDString = BEF6A7F98020F19C17D7B5F1EDC58542;
remoteInfo = AHFMAudioPlayerVCServices;
};
1AED4C06FA3A36738B41BDF7C04B2B6B /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */;
proxyType = 1;
remoteGlobalIDString = CB968765850752B7A47BF2DF4D827E70;
remoteInfo = AHServiceRouter;
};
1E42A3F3D682266FC0D170BFFEB9FDEB /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */;
proxyType = 1;
remoteGlobalIDString = 1C5B9D40148958326789E3A87566EB11;
remoteInfo = AHFMDataCenter;
};
23BA2DE6BDFD9A338F6E28B245883CAF /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */;
proxyType = 1;
remoteGlobalIDString = 9C4EF35A8C552C596EBFFD499FD4EA5D;
remoteInfo = AHFMNetworking;
};
24504AF9D88C31886AE7DB10E0A87C0B /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */;
proxyType = 1;
remoteGlobalIDString = FBBF62B10F6695F712DD803FFE5C1A86;
remoteInfo = AHFMEpisodeListVCServices;
};
256500355E575A3A9C96658A83EF4CA1 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */;
proxyType = 1;
remoteGlobalIDString = 2767723DBFF4BF411D3E80F15190F2B1;
remoteInfo = Alamofire;
};
261F922011ED388B128E2527222CBD0C /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */;
proxyType = 1;
remoteGlobalIDString = 58B959FA607D16B45162E1722671DCC6;
remoteInfo = AHFMServices;
};
2941267E1440CDCABA93FD0EE5FA92A0 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */;
proxyType = 1;
remoteGlobalIDString = E1F6066DAC0E9293305836FE01990C48;
remoteInfo = AHDataModel;
};
331C6C86DD84B0CA45C40EF924181D03 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */;
proxyType = 1;
remoteGlobalIDString = E1F6066DAC0E9293305836FE01990C48;
remoteInfo = AHDataModel;
};
34F8D44013D56916BE1E974258EF5B2E /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */;
proxyType = 1;
remoteGlobalIDString = 0A346CD6310CFC971B8521A33BFF4542;
remoteInfo = AHFMModuleManager;
};
37918F6059966F4532EDE8E7AF5F65CA /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */;
proxyType = 1;
remoteGlobalIDString = 58B959FA607D16B45162E1722671DCC6;
remoteInfo = AHFMServices;
};
3F297EA95FF4107C668C0ED47101DA4F /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */;
proxyType = 1;
remoteGlobalIDString = 1DF39AFB420A30F98ECF313289E59116;
remoteInfo = UIDeviceExtension;
};
4584CE672F18ABEE50F2521ACAEA62AA /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */;
proxyType = 1;
remoteGlobalIDString = 58B959FA607D16B45162E1722671DCC6;
remoteInfo = AHFMServices;
};
517BDA959653E59F81823ECA4AC2D95A /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */;
proxyType = 1;
remoteGlobalIDString = BEF6A7F98020F19C17D7B5F1EDC58542;
remoteInfo = AHFMAudioPlayerVCServices;
};
55F84D0FD0B0D7166F41348F24900D07 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */;
proxyType = 1;
remoteGlobalIDString = 4AD610BDD0092362740DF47645BA8CD9;
remoteInfo = SwiftyJSON;
};
5BD9F4C3073BDA62D958056FDB13927E /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */;
proxyType = 1;
remoteGlobalIDString = 345A9514D5A9BD9C43216822CC92421D;
remoteInfo = AHFMBottomPlayerServices;
};
5DD3BDA95E239B8DC9D03EA04A43F3C8 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */;
proxyType = 1;
remoteGlobalIDString = E24B83C6E82A45E997B21B62047954AE;
remoteInfo = KeychainAccess;
};
62A4BFB36C1983284D2628DC87EFAF74 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */;
proxyType = 1;
remoteGlobalIDString = CB968765850752B7A47BF2DF4D827E70;
remoteInfo = AHServiceRouter;
};
6700DF37FD7F4B3699068D9F4734AB09 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */;
proxyType = 1;
remoteGlobalIDString = 4AD610BDD0092362740DF47645BA8CD9;
remoteInfo = SwiftyJSON;
};
70795A0DC901FF2B7A5489A61CEB183F /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */;
proxyType = 1;
remoteGlobalIDString = FE61975DE3329899230490A8DE0149E8;
remoteInfo = AHFMBottomPlayerManager;
};
87FEE53234C88DA9984B3DAA5D1373A5 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */;
proxyType = 1;
remoteGlobalIDString = E1F6066DAC0E9293305836FE01990C48;
remoteInfo = AHDataModel;
};
91C8EF9E268256E86A87F35780AF6CB0 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */;
proxyType = 1;
remoteGlobalIDString = 0A346CD6310CFC971B8521A33BFF4542;
remoteInfo = AHFMModuleManager;
};
9C6491DE25F1797260FA344F99D2DB58 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */;
proxyType = 1;
remoteGlobalIDString = 9C4EF35A8C552C596EBFFD499FD4EA5D;
remoteInfo = AHFMNetworking;
};
A56EB2B4435C2933980D5325225C7444 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */;
proxyType = 1;
remoteGlobalIDString = FBBF62B10F6695F712DD803FFE5C1A86;
remoteInfo = AHFMEpisodeListVCServices;
};
A666278648B5519857E4FD477A93063D /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */;
proxyType = 1;
remoteGlobalIDString = 1C5B9D40148958326789E3A87566EB11;
remoteInfo = AHFMDataCenter;
};
ABEDAB223AC957F3B1BD75709827B73B /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */;
proxyType = 1;
remoteGlobalIDString = A84FAB2FF56133EF4F11D24E4A7170B1;
remoteInfo = AHFMHistoryVCServices;
};
ACE3D25C8C445707E9B4AA301B7804D5 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */;
proxyType = 1;
remoteGlobalIDString = 518722F7211609E4A60A581B66687829;
remoteInfo = AHFMDataTransformers;
};
B5EC03274614018474FF0DFC23234BFE /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */;
proxyType = 1;
remoteGlobalIDString = 2767723DBFF4BF411D3E80F15190F2B1;
remoteInfo = Alamofire;
};
B6A4A03CD79903C6C65B09E9A3BBFB0D /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */;
proxyType = 1;
remoteGlobalIDString = 518722F7211609E4A60A581B66687829;
remoteInfo = AHFMDataTransformers;
};
C4A0CAC007321CE573AC16C66A16D685 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */;
proxyType = 1;
remoteGlobalIDString = E24B83C6E82A45E997B21B62047954AE;
remoteInfo = KeychainAccess;
};
C71758F81D49DF67E1B6360C093AD14E /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */;
proxyType = 1;
remoteGlobalIDString = 1DF39AFB420A30F98ECF313289E59116;
remoteInfo = UIDeviceExtension;
};
CFE936FD2784942C4E9759520858950E /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */;
proxyType = 1;
remoteGlobalIDString = 58B959FA607D16B45162E1722671DCC6;
remoteInfo = AHFMServices;
};
D4BDD80594CD0C7F39CDF76031E6F6D1 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */;
proxyType = 1;
remoteGlobalIDString = 58B959FA607D16B45162E1722671DCC6;
remoteInfo = AHFMServices;
};
D97BC628B050D3C962D653F3923C767F /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */;
proxyType = 1;
remoteGlobalIDString = 345A9514D5A9BD9C43216822CC92421D;
remoteInfo = AHFMBottomPlayerServices;
};
E04B28B5997E86BCF39B269C7834E1E4 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */;
proxyType = 1;
remoteGlobalIDString = 1DF39AFB420A30F98ECF313289E59116;
remoteInfo = UIDeviceExtension;
};
EE603FFA77A241452B2B37888B6B9FEE /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */;
proxyType = 1;
remoteGlobalIDString = 58B959FA607D16B45162E1722671DCC6;
remoteInfo = AHFMServices;
};
F65B9EB35CAFD944022F893B862714F1 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */;
proxyType = 1;
remoteGlobalIDString = A84FAB2FF56133EF4F11D24E4A7170B1;
remoteInfo = AHFMHistoryVCServices;
};
FEE44F5E1EB531FA865972AD5F5DB13A /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */;
proxyType = 1;
remoteGlobalIDString = E24B83C6E82A45E997B21B62047954AE;
remoteInfo = KeychainAccess;
};
/* End PBXContainerItemProxy section */
/* Begin PBXFileReference section */
00C2554147821904BADAF1DEF63CCF19 /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
014CB70FE7156CE8ED32A6F272B87488 /* AHFMBottomPlayerManager.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; path = AHFMBottomPlayerManager.modulemap; sourceTree = "<group>"; };
01A00CB5C2C10DF28EC9B5D91B04D8CD /* Alamofire-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Alamofire-prefix.pch"; sourceTree = "<group>"; };
02208CB365D87F0124D2517FF2C80244 /* AHFMNetworking.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = AHFMNetworking.framework; path = AHFMNetworking.framework; sourceTree = BUILT_PRODUCTS_DIR; };
038EEF155D0F88D699C0E96684ED9807 /* UIDeviceExtension-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "UIDeviceExtension-prefix.pch"; sourceTree = "<group>"; };
03A577112FC5751AA8E822BD1C89588E /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
03DAA38C47703B29A7F028786A7377A0 /* AHServiceRouter-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "AHServiceRouter-umbrella.h"; sourceTree = "<group>"; };
05ED47BF2398821F8E6FF0B8E5C9BFED /* AHServiceRouter.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = AHServiceRouter.framework; sourceTree = BUILT_PRODUCTS_DIR; };
0668B725DF237252302ECB198357605E /* SwiftyJSON.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = SwiftyJSON.framework; path = SwiftyJSON.framework; sourceTree = BUILT_PRODUCTS_DIR; };
06EDCC38892F16285E368DB4BB055ED4 /* Pods_AHFMBottomPlayerManager_Tests.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = Pods_AHFMBottomPlayerManager_Tests.framework; path = "Pods-AHFMBottomPlayerManager_Tests.framework"; sourceTree = BUILT_PRODUCTS_DIR; };
07E3D12708249ACFAFF316FAEE95C923 /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
083ACB1EAC2440D0891EA3210012592D /* AHFMEpisodeInfo.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AHFMEpisodeInfo.swift; path = AHFMDataCenter/Classes/AHFMEpisodeInfo.swift; sourceTree = "<group>"; };
09B4DAD6FAA1839FBB3AA227A67081DA /* Alamofire.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = Alamofire.xcconfig; sourceTree = "<group>"; };
0AB64C4C6F37F9CF9B41486386BC4058 /* AHFMNetworking-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "AHFMNetworking-umbrella.h"; sourceTree = "<group>"; };
0C4881BB20BD7CB7837E848FD0645BB9 /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
0CF7CFCD7D328E9C313CD3EA74DAAB6B /* Pods-AHFMBottomPlayerManager_Example-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Pods-AHFMBottomPlayerManager_Example-umbrella.h"; sourceTree = "<group>"; };
0D31CCCCE77BB2E9D50AEE60759D2FD6 /* AHFMAudioPlayerVCServices.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = AHFMAudioPlayerVCServices.framework; sourceTree = BUILT_PRODUCTS_DIR; };
0F2B12FE55060265F097D369B4DF56BA /* AHKeychain.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AHKeychain.swift; path = AHFMNetworking/Classes/AHKeychain.swift; sourceTree = "<group>"; };
11A2FFF51F18E55DC6E568C8D8379A30 /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
11C091A5F0191A91A7AE02829079B2EF /* Pods-AHFMBottomPlayerManager_Tests-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-AHFMBottomPlayerManager_Tests-dummy.m"; sourceTree = "<group>"; };
11EFBF1E2534F6CF3503D441E0CD66A5 /* Pods-AHFMBottomPlayerManager_Example-frameworks.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-AHFMBottomPlayerManager_Example-frameworks.sh"; sourceTree = "<group>"; };
121AD5F09F0AD38B8A6A9E9A93282888 /* AHFMBottomPlayerServices.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AHFMBottomPlayerServices.swift; path = AHFMBottomPlayerServices/Classes/AHFMBottomPlayerServices.swift; sourceTree = "<group>"; };
12BBB23A88551D9CBEBA4F4F4D407332 /* UIDeviceExtension-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "UIDeviceExtension-dummy.m"; sourceTree = "<group>"; };
1639A249E2C172D6F334F5AC255F0ABC /* AHFMDataCenter-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "AHFMDataCenter-umbrella.h"; sourceTree = "<group>"; };
16916E71CB4E1163A45BB7D1F9D49B77 /* Pods-AHFMBottomPlayerManager_Example.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-AHFMBottomPlayerManager_Example.release.xcconfig"; sourceTree = "<group>"; };
177B67DE4B676CC483E03984CD1730A3 /* AHDataModel.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; path = AHDataModel.modulemap; sourceTree = "<group>"; };
1887B09C8A61E8BE939B6E7EF2549980 /* AHFMModuleManager-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "AHFMModuleManager-prefix.pch"; sourceTree = "<group>"; };
19A0B7F11381927DFD11E728D068EA77 /* Pods-AHFMBottomPlayerManager_Example-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-AHFMBottomPlayerManager_Example-dummy.m"; sourceTree = "<group>"; };
1AFF342E7A6B31A01536DBD0F50D3A82 /* Alamofire.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Alamofire.framework; sourceTree = BUILT_PRODUCTS_DIR; };
229B66D1A8CCA1F2D4499FAFAA148554 /* AHDB.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AHDB.swift; path = AHDataModel/Classes/AHDB.swift; sourceTree = "<group>"; };
24AD76DEAF497F7A2BE59D80DBE453B4 /* Alamofire.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; path = Alamofire.modulemap; sourceTree = "<group>"; };
24BD21103562CE8BE2415931406B08FB /* AHFMBottomPlayerServices-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "AHFMBottomPlayerServices-umbrella.h"; sourceTree = "<group>"; };
262E607D7E9FB33D747387302F769A2A /* module.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; name = module.modulemap; path = ModuleMaps/iphonesimulator/module.modulemap; sourceTree = "<group>"; };
277A4BDBE60A940FB969615698DF8E98 /* AHFMEpisodeListVCServices.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AHFMEpisodeListVCServices.swift; path = AHFMEpisodeListVCServices/Classes/AHFMEpisodeListVCServices.swift; sourceTree = "<group>"; };
27B0DDF3C5828367FAA9A5CF1C52E580 /* KeychainAccess.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; path = KeychainAccess.modulemap; sourceTree = "<group>"; };
292ADD65EBED06915A32C50E0233ADE0 /* AHFMAudioPlayerVCServices.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AHFMAudioPlayerVCServices.swift; path = AHFMAudioPlayerVCServices/Classes/AHFMAudioPlayerVCServices.swift; sourceTree = "<group>"; };
29672A88E430C48C985CD2BA0BF81E34 /* AHFMBottomPlayerManager.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = AHFMBottomPlayerManager.swift; sourceTree = "<group>"; };
29E7E9A83E02C2A3794766509453566F /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
2B3E143DAA445CC3DE3E5CD05FB5089E /* AHFMModuleManager-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "AHFMModuleManager-dummy.m"; sourceTree = "<group>"; };
2B8C6ACCA5230BF5529017992F0B2CEC /* AHFMEpisodeTransform.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AHFMEpisodeTransform.swift; path = AHFMDataTransformers/Classes/AHFMEpisodeTransform.swift; sourceTree = "<group>"; };
2C52C03184B1CB6382A540E524F99C65 /* AHFMBottomPlayerManager.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = AHFMBottomPlayerManager.framework; path = AHFMBottomPlayerManager.framework; sourceTree = BUILT_PRODUCTS_DIR; };
2DA598F6B1A05E8DC3A6D62CCFB88E3C /* AHFMEpisodeListVCServices-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "AHFMEpisodeListVCServices-prefix.pch"; sourceTree = "<group>"; };
317DE270C7102B22675D0D35002E2B86 /* SessionManager.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SessionManager.swift; path = Source/SessionManager.swift; sourceTree = "<group>"; };
31BAA4F923687C31FC957BA244C12B93 /* AHServiceRouter.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = AHServiceRouter.framework; path = AHServiceRouter.framework; sourceTree = BUILT_PRODUCTS_DIR; };
325707B803E97D134BA3CC98795F3814 /* AHFMDataTransformers.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; path = AHFMDataTransformers.modulemap; sourceTree = "<group>"; };
32D6F53A823D7DE2565A226A13B03293 /* AHDataModel.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = AHDataModel.framework; sourceTree = BUILT_PRODUCTS_DIR; };
33B7D31532D65A821DC7F9CE3A8BFE0E /* AHFMServices.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = AHFMServices.framework; sourceTree = BUILT_PRODUCTS_DIR; };
358A3A7A60C44EB334D9417961AC1CC6 /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
358EF26ED38731E37B48EC4F20B37F29 /* AHDataModelQuery.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AHDataModelQuery.swift; path = AHDataModel/Classes/AHDataModelQuery.swift; sourceTree = "<group>"; };
3701BC30619B01DDBAACE9428DADF93F /* AHFMServices-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "AHFMServices-prefix.pch"; sourceTree = "<group>"; };
3833AFB79DDDE1B9B2C56DCC78035F83 /* AHServiceRouter.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; path = AHServiceRouter.modulemap; sourceTree = "<group>"; };
38748350F54EB4D57F26AD446ADD7371 /* module.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; name = module.modulemap; path = ModuleMaps/iphoneos/module.modulemap; sourceTree = "<group>"; };
39F9CCA13DBD2F348A2A73BA66D391E6 /* DispatchQueue+Alamofire.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "DispatchQueue+Alamofire.swift"; path = "Source/DispatchQueue+Alamofire.swift"; sourceTree = "<group>"; };
3D426159A78672451F53AD37A16955F5 /* AHFMServices.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; path = AHFMServices.modulemap; sourceTree = "<group>"; };
41C043D4F37BCB1CB2FAC5ABDA257D83 /* AFError.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AFError.swift; path = Source/AFError.swift; sourceTree = "<group>"; };
4216003F51DBA4CA952E0AB9B0FE4F7D /* Manager.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = Manager.swift; sourceTree = "<group>"; };
4219FE1BBE585B731D177E73B7391111 /* AHFMEpisodeListVCServices-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "AHFMEpisodeListVCServices-umbrella.h"; sourceTree = "<group>"; };
442F75CAB4733B8915B6760D7A352990 /* KeychainAccess.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = KeychainAccess.framework; path = KeychainAccess.framework; sourceTree = BUILT_PRODUCTS_DIR; };
4520C733C0F95FDC9AB01FF50F81B1B2 /* AHDataModel.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AHDataModel.swift; path = AHDataModel/Classes/AHDataModel.swift; sourceTree = "<group>"; };
45E37D8F9117BA6B7CC7FB198AC33D2E /* SwiftyJSON.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; path = SwiftyJSON.modulemap; sourceTree = "<group>"; };
4829D35F19D113DCE405BDBBDFD070EB /* SwiftyJSON.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SwiftyJSON.swift; path = Source/SwiftyJSON.swift; sourceTree = "<group>"; };
48F42CEEF12BFABE6575075CB8336648 /* AHFMEpisodeHistory.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AHFMEpisodeHistory.swift; path = AHFMDataCenter/Classes/AHFMEpisodeHistory.swift; sourceTree = "<group>"; };
4DDE2C3206B68ECF567F5D1D294AD785 /* AHFMEpisode.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AHFMEpisode.swift; path = AHFMDataCenter/Classes/AHFMEpisode.swift; sourceTree = "<group>"; };
4E24C433FA4190E22C3C1C76DAEF243F /* AHServiceRouter-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "AHServiceRouter-dummy.m"; sourceTree = "<group>"; };
4E50C19E9BFB58C6B2BDEAC1B15AE49C /* Pods-AHFMBottomPlayerManager_Tests-acknowledgements.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-AHFMBottomPlayerManager_Tests-acknowledgements.plist"; sourceTree = "<group>"; };
4E8EA8B317856CD4D63F162177624D17 /* Validation.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Validation.swift; path = Source/Validation.swift; sourceTree = "<group>"; };
4EEF3DCA4FE4948A0948D364CF2A55B8 /* Pods-AHFMBottomPlayerManager_Tests-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Pods-AHFMBottomPlayerManager_Tests-umbrella.h"; sourceTree = "<group>"; };
4FB9B462685C54820114023258B45514 /* OAuth2Handler.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = OAuth2Handler.swift; path = AHFMNetworking/Classes/OAuth2Handler.swift; sourceTree = "<group>"; };
50C026E636DF910BF66C10F3A9C638F2 /* AHFMBottomPlayerManager-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "AHFMBottomPlayerManager-prefix.pch"; sourceTree = "<group>"; };
5611994E2B12E5C3155E76B11865F4D7 /* Pods_AHFMBottomPlayerManager_Example.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = Pods_AHFMBottomPlayerManager_Example.framework; path = "Pods-AHFMBottomPlayerManager_Example.framework"; sourceTree = BUILT_PRODUCTS_DIR; };
57BCB901B1CE5E20876D19D41A5C177F /* AHFMServices-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "AHFMServices-umbrella.h"; sourceTree = "<group>"; };
57C005DBE5ACA0D45BCC949C44640387 /* AHFMBottomPlayerManager-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "AHFMBottomPlayerManager-umbrella.h"; sourceTree = "<group>"; };
584C78DD05948529FB1F0DB973CFC3BB /* AHFMModuleManager-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "AHFMModuleManager-umbrella.h"; sourceTree = "<group>"; };
596C8891B33F09F12425616B30FB6B05 /* AHFMBottomPlayerManager-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "AHFMBottomPlayerManager-dummy.m"; sourceTree = "<group>"; };
59CE9E166C5942B9F6D4BE4C718824F8 /* AHFMBottomPlayerManager.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = AHFMBottomPlayerManager.xcconfig; sourceTree = "<group>"; };
5A0CE77C65B9917768BFB147F470F984 /* TaskDelegate.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = TaskDelegate.swift; path = Source/TaskDelegate.swift; sourceTree = "<group>"; };
5A3E31D02777E28FFF2A6F9140FCB790 /* Pods-AHFMBottomPlayerManager_Tests-resources.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-AHFMBottomPlayerManager_Tests-resources.sh"; sourceTree = "<group>"; };
5D0CFCE46D86CFB91F962694C97565A9 /* Alamofire-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Alamofire-dummy.m"; sourceTree = "<group>"; };
5FC85269CD99B822B5540D841673374D /* Alamofire.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Alamofire.swift; path = Source/Alamofire.swift; sourceTree = "<group>"; };
603A4035B79696A70A0E2BFEBBAFF888 /* Timeline.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Timeline.swift; path = Source/Timeline.swift; sourceTree = "<group>"; };
604D46CCF38B273F06067142EE57BFB3 /* Result.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Result.swift; path = Source/Result.swift; sourceTree = "<group>"; };
6107C1D2893555CE4651ED61227C04CA /* AHFMDataTransformers-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "AHFMDataTransformers-prefix.pch"; sourceTree = "<group>"; };
622E40C48FDF4C51D6CB2FB399339932 /* AHServiceRouter.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = AHServiceRouter.xcconfig; sourceTree = "<group>"; };
63EFC80AD5A089DD0DB2E438510001DB /* AHFMBottomPlayerServices.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = AHFMBottomPlayerServices.framework; sourceTree = BUILT_PRODUCTS_DIR; };
6533BC91651A431BF1C0C7EF90092105 /* UIDevice+Extension.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "UIDevice+Extension.swift"; path = "UIDeviceExtension/Classes/UIDevice+Extension.swift"; sourceTree = "<group>"; };
65369777066600ADE7E535508FFDE021 /* SwiftyJSON.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = SwiftyJSON.xcconfig; sourceTree = "<group>"; };
6602AE314892764325693191ED104AC3 /* AHFMServices.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = AHFMServices.xcconfig; sourceTree = "<group>"; };
67BF0F1907550312B3CE40F8CE70229A /* AHFMBottomPlayerServices-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "AHFMBottomPlayerServices-dummy.m"; sourceTree = "<group>"; };
68AB74FD9DF934D412111B623DEB1B70 /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
68C2E1DF19E66D04744191B903AAB185 /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
68C723D6C23605A6E88F78DDF2DA54A7 /* ResponseSerialization.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ResponseSerialization.swift; path = Source/ResponseSerialization.swift; sourceTree = "<group>"; };
69CD9A3B8781A0EC4476A73010615531 /* Pods-AHFMBottomPlayerManager_Tests.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-AHFMBottomPlayerManager_Tests.debug.xcconfig"; sourceTree = "<group>"; };
6B6CB3A280C988B3284A89D2A29A4AC6 /* AHFMHistoryVCServices.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AHFMHistoryVCServices.swift; path = AHFMHistoryVCServices/Classes/AHFMHistoryVCServices.swift; sourceTree = "<group>"; };
6B91588B901F5CCC88C990B3E2041E45 /* Pods-AHFMBottomPlayerManager_Example-acknowledgements.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-AHFMBottomPlayerManager_Example-acknowledgements.plist"; sourceTree = "<group>"; };
6C56F6F8B8EBAD6857821E3BE43BD063 /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
702E94BDD890CDEFD0A3C632721A60E1 /* KeychainAccess-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "KeychainAccess-dummy.m"; sourceTree = "<group>"; };
715FAB51618B164854106F63BF680011 /* AHFMAudioPlayerVCServices.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; path = AHFMAudioPlayerVCServices.modulemap; sourceTree = "<group>"; };
7330993652968A342C9CCB562F8DED61 /* Alamofire-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Alamofire-umbrella.h"; sourceTree = "<group>"; };
743024995BE6C71CE4634B45F2FD8A2C /* AHDataModel-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "AHDataModel-prefix.pch"; sourceTree = "<group>"; };
7513F7C6DFA04C4BF9884C74C2FC9622 /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
7544FA5DB4B5AE2DF47A41A89AED05D0 /* AHFMHistoryVCServices-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "AHFMHistoryVCServices-dummy.m"; sourceTree = "<group>"; };
76FE68F8D61F2BB55758595DEAA55B86 /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
7710E833146924B0EA4E560330A801A3 /* AHFMAudioPlayerVCServices-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "AHFMAudioPlayerVCServices-umbrella.h"; sourceTree = "<group>"; };
7735B8149A6A47B1ADD80809746B192A /* AHFMHistoryVCServices.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; path = AHFMHistoryVCServices.modulemap; sourceTree = "<group>"; };
774F708505BCE132CA2BBC55D2F0065B /* AHFMBottomPlayerServices.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; path = AHFMBottomPlayerServices.modulemap; sourceTree = "<group>"; };
776F861EEAAF91276B14A0F709E8D5C0 /* MultipartFormData.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = MultipartFormData.swift; path = Source/MultipartFormData.swift; sourceTree = "<group>"; };
786FD3CE3164914300841D96721A8F0A /* AHFMModuleManager.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = AHFMModuleManager.framework; sourceTree = BUILT_PRODUCTS_DIR; };
7A9509CCB7AAA0CEBA6AE0E781AD92F9 /* AHFMDataCenter-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "AHFMDataCenter-dummy.m"; sourceTree = "<group>"; };
8128033409FF5B1CCEBB2E41690C761F /* UIDeviceExtension.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; path = UIDeviceExtension.modulemap; sourceTree = "<group>"; };
8192A689AC8910EBC21720332DD3B00A /* Migration.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Migration.swift; path = AHDataModel/Classes/Migration.swift; sourceTree = "<group>"; };
81F01A4284C0988FF93EE0A626CBEF02 /* AHFMDataTransformers.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = AHFMDataTransformers.xcconfig; sourceTree = "<group>"; };
84C3259DEF8C60190101710905A956CB /* AHFMNetworking-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "AHFMNetworking-dummy.m"; sourceTree = "<group>"; };
88EEDE387EF19B83D880A05844479D36 /* Pods-AHFMBottomPlayerManager_Tests-frameworks.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-AHFMBottomPlayerManager_Tests-frameworks.sh"; sourceTree = "<group>"; };
88F89FEB1FB348D6F826FC0221BB060D /* AHFMNetworking-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "AHFMNetworking-prefix.pch"; sourceTree = "<group>"; };
8A7F23AC6776578401E234519EFC7CA7 /* AHFMDataCenter.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; path = AHFMDataCenter.modulemap; sourceTree = "<group>"; };
8B8D3F520238AF6D179CB7C9A4359CD3 /* Pods-AHFMBottomPlayerManager_Example.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; path = "Pods-AHFMBottomPlayerManager_Example.modulemap"; sourceTree = "<group>"; };
8D351024D02EBC94C85ABAD0FF60C3AC /* ServerTrustPolicy.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ServerTrustPolicy.swift; path = Source/ServerTrustPolicy.swift; sourceTree = "<group>"; };
8EE79D8FC27ADEC4FFFCE01341822C82 /* UIDeviceExtension.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = UIDeviceExtension.framework; path = UIDeviceExtension.framework; sourceTree = BUILT_PRODUCTS_DIR; };
8FB89CC66B9E3F07D7C86F81FFDE708A /* AHDataModel.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = AHDataModel.framework; path = AHDataModel.framework; sourceTree = BUILT_PRODUCTS_DIR; };
920F30878A70D84B031DBBFB17B8B49C /* Notifications.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Notifications.swift; path = Source/Notifications.swift; sourceTree = "<group>"; };
929E8AE3F4314764195EEAA2BCE130A9 /* AHFMEpisodeListVCServices.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; path = AHFMEpisodeListVCServices.modulemap; sourceTree = "<group>"; };
93087639C35BF0B05677127C38012560 /* AHFMModuleManager.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = AHFMModuleManager.framework; path = AHFMModuleManager.framework; sourceTree = BUILT_PRODUCTS_DIR; };
939050770EEB629869616BF220558817 /* Keychain.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Keychain.swift; path = Lib/KeychainAccess/Keychain.swift; sourceTree = "<group>"; };
93A4A3777CF96A4AAC1D13BA6DCCEA73 /* Podfile */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; lastKnownFileType = text; name = Podfile; path = ../Podfile; sourceTree = SOURCE_ROOT; xcLanguageSpecificationIdentifier = xcode.lang.ruby; };
955C365097707465AE87AEA9EC2510A2 /* AHFMServices-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "AHFMServices-dummy.m"; sourceTree = "<group>"; };
995E160098C4C15184BA612AE226E012 /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
9A203DFFD66D2756F4C31B45110086B2 /* AHFMEpisodeListVCServices.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = AHFMEpisodeListVCServices.framework; sourceTree = BUILT_PRODUCTS_DIR; };
9A50F59BE75EDA523A6AC167E848B05E /* AHFMDataTransformers-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "AHFMDataTransformers-umbrella.h"; sourceTree = "<group>"; };
9CE84F572D3F1629B128D1ADCB9EFFF9 /* AHFMBottomPlayerServices.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = AHFMBottomPlayerServices.framework; path = AHFMBottomPlayerServices.framework; sourceTree = BUILT_PRODUCTS_DIR; };
9D86EADBC9451DD89C59E05639DAC389 /* AHFMDataCenter.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = AHFMDataCenter.framework; path = AHFMDataCenter.framework; sourceTree = BUILT_PRODUCTS_DIR; };
A13D66A91A6282B1C726CB55A15599A4 /* Pods-AHFMBottomPlayerManager_Tests.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; path = "Pods-AHFMBottomPlayerManager_Tests.modulemap"; sourceTree = "<group>"; };
A23058C00CD2432744E339FAFF4DFDEC /* Pods-AHFMBottomPlayerManager_Tests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-AHFMBottomPlayerManager_Tests.release.xcconfig"; sourceTree = "<group>"; };
A25E262AEF1DFD4B859B3DEF04C31CDD /* UIDeviceExtension.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = UIDeviceExtension.framework; sourceTree = BUILT_PRODUCTS_DIR; };
A2E1F244A7782E596697DC60EF41A576 /* AHDBColumnInfo.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AHDBColumnInfo.swift; path = AHDataModel/Classes/AHDBColumnInfo.swift; sourceTree = "<group>"; };
A3899F2E5A0DFCD404F39035BA87F638 /* AHFMEpisodeListVCServices.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = AHFMEpisodeListVCServices.framework; path = AHFMEpisodeListVCServices.framework; sourceTree = BUILT_PRODUCTS_DIR; };
A39152FBCC94EDAE1EE5D4B8CAF1075B /* SwiftyJSON-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "SwiftyJSON-prefix.pch"; sourceTree = "<group>"; };
A509CA928612AAC8101CD2155A301C09 /* AHFMHistoryVCServices.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = AHFMHistoryVCServices.xcconfig; sourceTree = "<group>"; };
A5C21405122E5A7C065575F201334877 /* AHFMDataCenter.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = AHFMDataCenter.framework; sourceTree = BUILT_PRODUCTS_DIR; };
A64434C6FE1E6598B7AC539D4D93DE99 /* Response.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Response.swift; path = Source/Response.swift; sourceTree = "<group>"; };
A84BB0B226584770A9C2262A547FB7FC /* Alamofire.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = Alamofire.framework; path = Alamofire.framework; sourceTree = BUILT_PRODUCTS_DIR; };
A9CCE0322109C735EACC834F966868FB /* AHDataModel-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "AHDataModel-umbrella.h"; sourceTree = "<group>"; };
AB0D67B52A104E296DAF29FA2E7961DA /* AHFMDataTransformers.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = AHFMDataTransformers.framework; path = AHFMDataTransformers.framework; sourceTree = BUILT_PRODUCTS_DIR; };
ABB1CBABCBAEF6AE5DFAB2F62D215BFC /* AHFMDataCenter-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "AHFMDataCenter-prefix.pch"; sourceTree = "<group>"; };
AC2BD65FAD68DFAEE4877D06F174B02C /* AHFMHistoryVCServices-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "AHFMHistoryVCServices-umbrella.h"; sourceTree = "<group>"; };
AC7B685A21234BA0D2AE5381BA58FAB4 /* Migrator.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Migrator.swift; path = AHDataModel/Classes/Migrator.swift; sourceTree = "<group>"; };
AD4B69AD58212F84EB25B86E9DC91551 /* AHFMBottomPlayerServices.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = AHFMBottomPlayerServices.xcconfig; sourceTree = "<group>"; };
B172350A5876F800F28B112AE6FA3982 /* AHFMNetworking.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = AHFMNetworking.xcconfig; sourceTree = "<group>"; };
B2C7D4DAB5E7256D70B2EE619787931F /* AHFMAudioPlayerVCServices.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = AHFMAudioPlayerVCServices.framework; path = AHFMAudioPlayerVCServices.framework; sourceTree = BUILT_PRODUCTS_DIR; };
B39F0556AD779B1DDA0BB6EAA3F0330D /* AHDataModel.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = AHDataModel.xcconfig; sourceTree = "<group>"; };
B6C3AF780EC8CCB7F0EB639253BC3314 /* KeychainAccess-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "KeychainAccess-prefix.pch"; sourceTree = "<group>"; };
B714249AACBDC97F99F44395EF9C3E6A /* AHFMServices.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = AHFMServices.framework; path = AHFMServices.framework; sourceTree = BUILT_PRODUCTS_DIR; };
B72189FE7A79BFDE9798F2BA4750A2CF /* AHDatabase.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AHDatabase.swift; path = AHDataModel/Classes/AHDatabase.swift; sourceTree = "<group>"; };
B83162C8F399F604965CA07019EDFFC8 /* AHFMAudioPlayerVCServices.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = AHFMAudioPlayerVCServices.xcconfig; sourceTree = "<group>"; };
B9F98BF020C59A1CC4FBAA96E8C6068B /* Pods-AHFMBottomPlayerManager_Example-resources.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-AHFMBottomPlayerManager_Example-resources.sh"; sourceTree = "<group>"; };
BBF819ADBAF197613F042EA3AE8A966B /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
BF8D51A01D677566FC1A2E1B56C76186 /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
C0D6EA0CA55EAC516DC28B4A93D2F2B3 /* AHServiceRouter.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AHServiceRouter.swift; path = AHServiceRouter/Classes/AHServiceRouter.swift; sourceTree = "<group>"; };
C19BFAC5ECC52015B76CE73B7A7A86BA /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
C1EFF488FAB2A6F36CF2922B61C24925 /* AHFMHistoryVCServices.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = AHFMHistoryVCServices.framework; sourceTree = BUILT_PRODUCTS_DIR; };
C2CB534CBD8F42FC65141589AB214290 /* AHFMNetworking.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = AHFMNetworking.framework; sourceTree = BUILT_PRODUCTS_DIR; };
C3E334DD05229CFE15A130B8E64413E9 /* AHFMEpisodeListVCServices-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "AHFMEpisodeListVCServices-dummy.m"; sourceTree = "<group>"; };
C66698936226D37B20A67C10A778C004 /* NetworkReachabilityManager.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = NetworkReachabilityManager.swift; path = Source/NetworkReachabilityManager.swift; sourceTree = "<group>"; };
C833EB41F16C83E871C52B9AE765ED7B /* UIDeviceExtension-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "UIDeviceExtension-umbrella.h"; sourceTree = "<group>"; };
C864A7F3FC097E07B38FC0274117D0E2 /* AHFMServices.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AHFMServices.swift; path = AHFMServices/Classes/AHFMServices.swift; sourceTree = "<group>"; };
C878B3BD90B503DBAB0040C6EACD38A5 /* AHFMNetworking.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AHFMNetworking.swift; path = AHFMNetworking/Classes/AHFMNetworking.swift; sourceTree = "<group>"; };
C9CD3FB45BEA2CFAA3924A9DE66F280F /* AHFMNetworking.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; path = AHFMNetworking.modulemap; sourceTree = "<group>"; };
CA50FE1DDA3FD68C420F35A5271B457A /* KeychainAccess.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = KeychainAccess.framework; sourceTree = BUILT_PRODUCTS_DIR; };
CBC99320110A2C8B2278336D158EC316 /* SwiftyJSON.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = SwiftyJSON.framework; sourceTree = BUILT_PRODUCTS_DIR; };
CC86165C41BA7320B6639E351E5BC029 /* AHFMShowTransform.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AHFMShowTransform.swift; path = AHFMDataTransformers/Classes/AHFMShowTransform.swift; sourceTree = "<group>"; };
D0742D83CD3B82943DAE2973871C47A6 /* ParameterEncoding.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ParameterEncoding.swift; path = Source/ParameterEncoding.swift; sourceTree = "<group>"; };
D24534EAD61D8B15ED5BD91F863D5A7D /* AHFMModuleManager.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AHFMModuleManager.swift; path = AHFMModuleManager/Classes/AHFMModuleManager.swift; sourceTree = "<group>"; };
D2B06E97667E453EBAF8EDD6DB23EE27 /* AHFMShow.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AHFMShow.swift; path = AHFMDataCenter/Classes/AHFMShow.swift; sourceTree = "<group>"; };
D6417FF760681DB6F3CE8F3ABF27A564 /* SwiftyJSON-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "SwiftyJSON-dummy.m"; sourceTree = "<group>"; };
D6CB62B37CD4F723B14974C75F353BA3 /* AHFMAudioPlayerVCServices-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "AHFMAudioPlayerVCServices-prefix.pch"; sourceTree = "<group>"; };
D892237A2B595621712D7D6DECC7B888 /* 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; };
D8D1776ED3313BEED39CFC69B0F04B91 /* AHFMEpisodeListVCServices.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = AHFMEpisodeListVCServices.xcconfig; sourceTree = "<group>"; };
DC70A1263D74ED54D09AE96806B4E77D /* AHFMDataTransformers.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = AHFMDataTransformers.framework; sourceTree = BUILT_PRODUCTS_DIR; };
DCB0C92918BC3E8A7D3B95BA3C3746B8 /* SessionDelegate.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SessionDelegate.swift; path = Source/SessionDelegate.swift; sourceTree = "<group>"; };
DD2CFBF7E79BBA8B903397059B9BAA1F /* AHFMModuleManager.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; path = AHFMModuleManager.modulemap; sourceTree = "<group>"; };
DE1E0951CA2636D8305D476779B0B0D2 /* Pods-AHFMBottomPlayerManager_Example.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-AHFMBottomPlayerManager_Example.debug.xcconfig"; sourceTree = "<group>"; };
DEC54ED30AF521122ACB88C6820C0A27 /* AHDataModel-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "AHDataModel-dummy.m"; sourceTree = "<group>"; };
DEE1E17B4FAD04D76859027EB44CB169 /* AHFMModuleManager.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = AHFMModuleManager.xcconfig; sourceTree = "<group>"; };
E01A34BC2506C3FADC4A753DA67C17F8 /* AHFMDataCenter.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = AHFMDataCenter.xcconfig; sourceTree = "<group>"; };
E02CDF24CEBC95366E260CFE1DA12BCC /* Request.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Request.swift; path = Source/Request.swift; sourceTree = "<group>"; };
E11CA1FB6C51343873E3A17B49AE8D7B /* Pods-AHFMBottomPlayerManager_Example-acknowledgements.markdown */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = "Pods-AHFMBottomPlayerManager_Example-acknowledgements.markdown"; sourceTree = "<group>"; };
E204EFA1B3161A0A66A87958CD746461 /* AHFMDataCenter.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AHFMDataCenter.swift; path = AHFMDataCenter/Classes/AHFMDataCenter.swift; sourceTree = "<group>"; };
E5AA443FB69DAFBD0025B391480D1391 /* AHServiceRouter-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "AHServiceRouter-prefix.pch"; sourceTree = "<group>"; };
E7FAA1F9AE9258A42649F1C312B0C7F5 /* AHFMSubscribedShow.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AHFMSubscribedShow.swift; path = AHFMDataCenter/Classes/AHFMSubscribedShow.swift; sourceTree = "<group>"; };
E8267BF7136185A1A8F9399950C884F5 /* AHNetworkConstants.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AHNetworkConstants.swift; path = AHFMNetworking/Classes/AHNetworkConstants.swift; sourceTree = "<group>"; };
E83E358696B213838664FA1A86D52A9A /* UIDeviceExtension.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UIDeviceExtension.xcconfig; sourceTree = "<group>"; };
EAD51A58AFC2EAF5EB9655602C8A0C5F /* AHFMBottomPlayerServices-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "AHFMBottomPlayerServices-prefix.pch"; sourceTree = "<group>"; };
EAE4E8D0C594E0A100F01A00F750670B /* AHFMAudioPlayerVCServices-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "AHFMAudioPlayerVCServices-dummy.m"; sourceTree = "<group>"; };
EC56A8831727E744BE9471A03F23751A /* AHFMDataTransformers-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "AHFMDataTransformers-dummy.m"; sourceTree = "<group>"; };
EC6FDB5F94FDC259956AA48F57093C55 /* AHFMHistoryVCServices.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = AHFMHistoryVCServices.framework; path = AHFMHistoryVCServices.framework; sourceTree = BUILT_PRODUCTS_DIR; };
ED5545D12BC4EEA203E9DA55263EC939 /* AHFMHistoryVCServices-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "AHFMHistoryVCServices-prefix.pch"; sourceTree = "<group>"; };
EEDA4909F76580D293C922164DC1996A /* KeychainAccess.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = KeychainAccess.xcconfig; sourceTree = "<group>"; };
EF6664B837061536169C35013989BF36 /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
F3705C910C65B4DCBE89296EA877D3D3 /* KeychainAccess-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "KeychainAccess-umbrella.h"; sourceTree = "<group>"; };
F8B3CC7A1DBFD875DF7A290F5E6BF9D4 /* Pods-AHFMBottomPlayerManager_Tests-acknowledgements.markdown */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = "Pods-AHFMBottomPlayerManager_Tests-acknowledgements.markdown"; sourceTree = "<group>"; };
FC14E3305C8226DA51B8AE34079696DE /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
FDB6A074A0A8E3D54F4502B991F386E2 /* SwiftyJSON-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "SwiftyJSON-umbrella.h"; sourceTree = "<group>"; };
/* End PBXFileReference section */
/* Begin PBXFrameworksBuildPhase section */
29C3060512F31758EF5B1EBB1E4E6324 /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
3A872EB205BD12B5A103A2B7AB739177 /* AHFMServices.framework in Frameworks */,
AB9E7A741F6418AE6471CD89B0F11760 /* Foundation.framework in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
61177F725E811FEB74A2EC4719DD716D /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
E8856DCBBD8410624FFED283B38F64FA /* Foundation.framework in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
69C3C5863B9E86731B78FD4E6DE6EF44 /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
497778E1183E545DF40695CB4015CDD6 /* Foundation.framework in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
6CC05739ABAE0A38C30C26D2ABF2ADF8 /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
82D247D850B88DAAD58597B425B17C1F /* AHDataModel.framework in Frameworks */,
57E218D96E0011D09117932F4C07DF4D /* AHFMAudioPlayerVCServices.framework in Frameworks */,
125747A757B85E20569F4B242C425F86 /* AHFMBottomPlayerServices.framework in Frameworks */,
32F68E74B90DB3D48666125C04EB08CE /* AHFMDataCenter.framework in Frameworks */,
B1603D54C7197E61F51C54F5FD59381B /* AHFMDataTransformers.framework in Frameworks */,
50997560853C30AF57AF9414EE5BADBE /* AHFMEpisodeListVCServices.framework in Frameworks */,
DAF1696217A6B117649E00E7544C0928 /* AHFMHistoryVCServices.framework in Frameworks */,
BF01997A2981057CF11B394C0BBD94DE /* AHFMModuleManager.framework in Frameworks */,
FB689180393B74160FF692FC8D8A3DBA /* AHFMNetworking.framework in Frameworks */,
7449722E81D51520F9882B94B3FEAA2C /* AHFMServices.framework in Frameworks */,
221AF7FC7F8C065B6BD8A9D78718937F /* AHServiceRouter.framework in Frameworks */,
3A8C92FD152A86325DD414A664504BE5 /* Alamofire.framework in Frameworks */,
3652F862189849DC77B5F6913D528BA1 /* Foundation.framework in Frameworks */,
D2656F68CCF7D56A018E8C3283FEAB8A /* KeychainAccess.framework in Frameworks */,
D9C596808F0A9125E5669627B3EA5B40 /* SwiftyJSON.framework in Frameworks */,
E334188C24A670C4E90CBAAF76588EAA /* UIDeviceExtension.framework in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
6ED6CE942FC5BD8C40069F1D8B0BA8B3 /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
F9F88B961E018BAF707A6C08D43FA0E2 /* Foundation.framework in Frameworks */,
E13E1EFAA83298D6A22076D650EB92B2 /* SwiftyJSON.framework in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
7060D9A3204DE118EF804ED4FAD8DFFC /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
35D0BE9C20AFD68B861A52AE813956D6 /* AHFMServices.framework in Frameworks */,
2E32738F629F33413E796B3B435267CF /* Foundation.framework in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
7696255D4FFF73CA519F46C9EC90C52E /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
93657E5F36131A42F83C7A6589A49A2B /* Foundation.framework in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
7AF98A23A985DC30157717743B5244D6 /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
D4B639D2AF2B1CC2F574B94B47F841CB /* Foundation.framework in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
90CDFDF10BDD9B62DE5189AF93A158D9 /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
F7ECA1D56564BD0368FA957BCB9ED6A7 /* Foundation.framework in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
9134C2AC0C205F49D2D08867C426B14F /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
071EC65B29987AE0A38B267FF2537F52 /* Alamofire.framework in Frameworks */,
420A01FF17B2EE55DDC0C57749C72117 /* Foundation.framework in Frameworks */,
D53A1F022842E916EAF925360CA1B14B /* KeychainAccess.framework in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
9559B823B0E0F558CDF0AB3D89515BCB /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
4C4C06B7C294F2EB21FCA158A56A1535 /* AHFMServices.framework in Frameworks */,
C7297006542A4D295C9D247BF08228F8 /* Foundation.framework in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
AC91B44333CDC692A190CC7C0BC13ECD /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
75BA35EA7B3C639D08D20156C970AEAE /* Foundation.framework in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
B2FDE2C4C2416B307823E399FEF6CDE3 /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
56E36A5FFF882570369919B44C6E8D2F /* AHFMServices.framework in Frameworks */,
BC9B52015A8ACFB970AC0512D3E2036A /* Foundation.framework in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
B4A9B4BAC0D348D51DB9FE71C622FC46 /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
EFF032408EA6492D9E04AA746EBB4868 /* Foundation.framework in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
C40C683A5ABE90A0C9A181F15651B8FB /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
24FA2DAE21A3CC971032567A8E69936E /* Foundation.framework in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
DB482EE2087084C1437BA93592AFDC00 /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
983893B8599FDCD1944D1CCCA3A4156F /* Foundation.framework in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
DD50CCAA86E256BEDFDD98250E5CE1AF /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
BF0824F67A601AC717923C73382A6A63 /* Foundation.framework in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
E5FE0B928ABDB0E9CED57C42742DC63D /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
E44712533FBB591FA3F2EDB4BE05BDB1 /* AHDataModel.framework in Frameworks */,
3D9E75D266E51A906A6394BAA8C525AB /* Foundation.framework in Frameworks */,
F295BABF1A38598FC6C6F4761FF67F03 /* UIDeviceExtension.framework in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXFrameworksBuildPhase section */
/* Begin PBXGroup section */
04890C256D1F96F5C8D75F219B3090B9 /* Support Files */ = {
isa = PBXGroup;
children = (
68C2E1DF19E66D04744191B903AAB185 /* Info.plist */,
27B0DDF3C5828367FAA9A5CF1C52E580 /* KeychainAccess.modulemap */,
EEDA4909F76580D293C922164DC1996A /* KeychainAccess.xcconfig */,
702E94BDD890CDEFD0A3C632721A60E1 /* KeychainAccess-dummy.m */,
B6C3AF780EC8CCB7F0EB639253BC3314 /* KeychainAccess-prefix.pch */,
F3705C910C65B4DCBE89296EA877D3D3 /* KeychainAccess-umbrella.h */,
);
name = "Support Files";
path = "../Target Support Files/KeychainAccess";
sourceTree = "<group>";
};
07F7EA851693C17B1A4B8D370ECF0487 /* AHFMModuleManager */ = {
isa = PBXGroup;
children = (
D24534EAD61D8B15ED5BD91F863D5A7D /* AHFMModuleManager.swift */,
7EFEF065D2627C35BA2EAB1113C6066B /* Support Files */,
);
name = AHFMModuleManager;
path = AHFMModuleManager;
sourceTree = "<group>";
};
0BAD288C14ED948AB44B3E9F55E95085 /* AHFMBottomPlayerManager */ = {
isa = PBXGroup;
children = (
D7F3696F5B470413D350BA863F86ED26 /* Classes */,
);
name = AHFMBottomPlayerManager;
path = AHFMBottomPlayerManager;
sourceTree = "<group>";
};
0BE7A332B9483BB2C02EF0E735D224C1 /* AHFMServices */ = {
isa = PBXGroup;
children = (
C864A7F3FC097E07B38FC0274117D0E2 /* AHFMServices.swift */,
485CEDC81CAD91CB491BF3246811B02F /* Support Files */,
);
name = AHFMServices;
path = AHFMServices;
sourceTree = "<group>";
};
0CE51D9E42C45F5848612249BABE8612 /* Support Files */ = {
isa = PBXGroup;
children = (
00C2554147821904BADAF1DEF63CCF19 /* Info.plist */,
8128033409FF5B1CCEBB2E41690C761F /* UIDeviceExtension.modulemap */,
E83E358696B213838664FA1A86D52A9A /* UIDeviceExtension.xcconfig */,
12BBB23A88551D9CBEBA4F4F4D407332 /* UIDeviceExtension-dummy.m */,
038EEF155D0F88D699C0E96684ED9807 /* UIDeviceExtension-prefix.pch */,
C833EB41F16C83E871C52B9AE765ED7B /* UIDeviceExtension-umbrella.h */,
);
name = "Support Files";
path = "../Target Support Files/UIDeviceExtension";
sourceTree = "<group>";
};
13C4E19EA253017EE9503C47A0E1A9D2 /* Pods */ = {
isa = PBXGroup;
children = (
608E5A6E5903053F279C76BBE2C924B6 /* AHDataModel */,
24D94DF66462B472AD5AFF14A5B7DD7F /* AHFMAudioPlayerVCServices */,
A2F13E21EAE6855E0A16F815716FBBCB /* AHFMBottomPlayerServices */,
633B18495177182A3CE103A12B53D8B6 /* AHFMDataCenter */,
9271702AEC40F2C83CFD7693ED44D9B4 /* AHFMDataTransformers */,
C27A109F4961BC2CBEAB3918E02F88AF /* AHFMEpisodeListVCServices */,
37FF039D63518F5D5F0B15A86FA19F15 /* AHFMHistoryVCServices */,
07F7EA851693C17B1A4B8D370ECF0487 /* AHFMModuleManager */,
F90405A892D43EADCFF3595C2D804525 /* AHFMNetworking */,
0BE7A332B9483BB2C02EF0E735D224C1 /* AHFMServices */,
F8CD3C594E3BD06E45AA89C4C582304C /* AHServiceRouter */,
BC8552AD02EB8706103D1EAFDCA29EAF /* Alamofire */,
F5EEADAC2F119DEA32F9565EB4446356 /* KeychainAccess */,
15353E205439563E62B6BEE52062AB56 /* SwiftyJSON */,
A19C31CF710D8985BFAFB32AB6512ED9 /* UIDeviceExtension */,
);
name = Pods;
sourceTree = "<group>";
};
15353E205439563E62B6BEE52062AB56 /* SwiftyJSON */ = {
isa = PBXGroup;
children = (
4829D35F19D113DCE405BDBBDFD070EB /* SwiftyJSON.swift */,
4B85C3A46E3713A662C57BA688027811 /* Support Files */,
);
name = SwiftyJSON;
path = SwiftyJSON;
sourceTree = "<group>";
};
1BAD8AF97F15C557F2D8AA2BA764FD8F /* Pods-AHFMBottomPlayerManager_Tests */ = {
isa = PBXGroup;
children = (
11A2FFF51F18E55DC6E568C8D8379A30 /* Info.plist */,
A13D66A91A6282B1C726CB55A15599A4 /* Pods-AHFMBottomPlayerManager_Tests.modulemap */,
F8B3CC7A1DBFD875DF7A290F5E6BF9D4 /* Pods-AHFMBottomPlayerManager_Tests-acknowledgements.markdown */,
4E50C19E9BFB58C6B2BDEAC1B15AE49C /* Pods-AHFMBottomPlayerManager_Tests-acknowledgements.plist */,
11C091A5F0191A91A7AE02829079B2EF /* Pods-AHFMBottomPlayerManager_Tests-dummy.m */,
88EEDE387EF19B83D880A05844479D36 /* Pods-AHFMBottomPlayerManager_Tests-frameworks.sh */,
5A3E31D02777E28FFF2A6F9140FCB790 /* Pods-AHFMBottomPlayerManager_Tests-resources.sh */,
4EEF3DCA4FE4948A0948D364CF2A55B8 /* Pods-AHFMBottomPlayerManager_Tests-umbrella.h */,
69CD9A3B8781A0EC4476A73010615531 /* Pods-AHFMBottomPlayerManager_Tests.debug.xcconfig */,
A23058C00CD2432744E339FAFF4DFDEC /* Pods-AHFMBottomPlayerManager_Tests.release.xcconfig */,
);
name = "Pods-AHFMBottomPlayerManager_Tests";
path = "Target Support Files/Pods-AHFMBottomPlayerManager_Tests";
sourceTree = "<group>";
};
2211823CD9DB83BEBFD99CB713124366 /* Products */ = {
isa = PBXGroup;
children = (
8FB89CC66B9E3F07D7C86F81FFDE708A /* AHDataModel.framework */,
B2C7D4DAB5E7256D70B2EE619787931F /* AHFMAudioPlayerVCServices.framework */,
2C52C03184B1CB6382A540E524F99C65 /* AHFMBottomPlayerManager.framework */,
9CE84F572D3F1629B128D1ADCB9EFFF9 /* AHFMBottomPlayerServices.framework */,
9D86EADBC9451DD89C59E05639DAC389 /* AHFMDataCenter.framework */,
AB0D67B52A104E296DAF29FA2E7961DA /* AHFMDataTransformers.framework */,
A3899F2E5A0DFCD404F39035BA87F638 /* AHFMEpisodeListVCServices.framework */,
EC6FDB5F94FDC259956AA48F57093C55 /* AHFMHistoryVCServices.framework */,
93087639C35BF0B05677127C38012560 /* AHFMModuleManager.framework */,
02208CB365D87F0124D2517FF2C80244 /* AHFMNetworking.framework */,
B714249AACBDC97F99F44395EF9C3E6A /* AHFMServices.framework */,
31BAA4F923687C31FC957BA244C12B93 /* AHServiceRouter.framework */,
A84BB0B226584770A9C2262A547FB7FC /* Alamofire.framework */,
442F75CAB4733B8915B6760D7A352990 /* KeychainAccess.framework */,
5611994E2B12E5C3155E76B11865F4D7 /* Pods_AHFMBottomPlayerManager_Example.framework */,
06EDCC38892F16285E368DB4BB055ED4 /* Pods_AHFMBottomPlayerManager_Tests.framework */,
0668B725DF237252302ECB198357605E /* SwiftyJSON.framework */,
8EE79D8FC27ADEC4FFFCE01341822C82 /* UIDeviceExtension.framework */,
);
name = Products;
sourceTree = "<group>";
};
2264EFEA1550968F826F2363DD896565 /* Support Files */ = {
isa = PBXGroup;
children = (
7735B8149A6A47B1ADD80809746B192A /* AHFMHistoryVCServices.modulemap */,
A509CA928612AAC8101CD2155A301C09 /* AHFMHistoryVCServices.xcconfig */,
7544FA5DB4B5AE2DF47A41A89AED05D0 /* AHFMHistoryVCServices-dummy.m */,
ED5545D12BC4EEA203E9DA55263EC939 /* AHFMHistoryVCServices-prefix.pch */,
AC2BD65FAD68DFAEE4877D06F174B02C /* AHFMHistoryVCServices-umbrella.h */,
BBF819ADBAF197613F042EA3AE8A966B /* Info.plist */,
);
name = "Support Files";
path = "../Target Support Files/AHFMHistoryVCServices";
sourceTree = "<group>";
};
24D94DF66462B472AD5AFF14A5B7DD7F /* AHFMAudioPlayerVCServices */ = {
isa = PBXGroup;
children = (
292ADD65EBED06915A32C50E0233ADE0 /* AHFMAudioPlayerVCServices.swift */,
43C93225F882AC0720B0CB7D0433109C /* Support Files */,
);
name = AHFMAudioPlayerVCServices;
path = AHFMAudioPlayerVCServices;
sourceTree = "<group>";
};
37FF039D63518F5D5F0B15A86FA19F15 /* AHFMHistoryVCServices */ = {
isa = PBXGroup;
children = (
6B6CB3A280C988B3284A89D2A29A4AC6 /* AHFMHistoryVCServices.swift */,
2264EFEA1550968F826F2363DD896565 /* Support Files */,
);
name = AHFMHistoryVCServices;
path = AHFMHistoryVCServices;
sourceTree = "<group>";
};
43C93225F882AC0720B0CB7D0433109C /* Support Files */ = {
isa = PBXGroup;
children = (
715FAB51618B164854106F63BF680011 /* AHFMAudioPlayerVCServices.modulemap */,
B83162C8F399F604965CA07019EDFFC8 /* AHFMAudioPlayerVCServices.xcconfig */,
EAE4E8D0C594E0A100F01A00F750670B /* AHFMAudioPlayerVCServices-dummy.m */,
D6CB62B37CD4F723B14974C75F353BA3 /* AHFMAudioPlayerVCServices-prefix.pch */,
7710E833146924B0EA4E560330A801A3 /* AHFMAudioPlayerVCServices-umbrella.h */,
6C56F6F8B8EBAD6857821E3BE43BD063 /* Info.plist */,
);
name = "Support Files";
path = "../Target Support Files/AHFMAudioPlayerVCServices";
sourceTree = "<group>";
};
485CEDC81CAD91CB491BF3246811B02F /* Support Files */ = {
isa = PBXGroup;
children = (
3D426159A78672451F53AD37A16955F5 /* AHFMServices.modulemap */,
6602AE314892764325693191ED104AC3 /* AHFMServices.xcconfig */,
955C365097707465AE87AEA9EC2510A2 /* AHFMServices-dummy.m */,
3701BC30619B01DDBAACE9428DADF93F /* AHFMServices-prefix.pch */,
57BCB901B1CE5E20876D19D41A5C177F /* AHFMServices-umbrella.h */,
76FE68F8D61F2BB55758595DEAA55B86 /* Info.plist */,
);
name = "Support Files";
path = "../Target Support Files/AHFMServices";
sourceTree = "<group>";
};
4B85C3A46E3713A662C57BA688027811 /* Support Files */ = {
isa = PBXGroup;
children = (
FC14E3305C8226DA51B8AE34079696DE /* Info.plist */,
45E37D8F9117BA6B7CC7FB198AC33D2E /* SwiftyJSON.modulemap */,
65369777066600ADE7E535508FFDE021 /* SwiftyJSON.xcconfig */,
D6417FF760681DB6F3CE8F3ABF27A564 /* SwiftyJSON-dummy.m */,
A39152FBCC94EDAE1EE5D4B8CAF1075B /* SwiftyJSON-prefix.pch */,