forked from boai/BABaseProject
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathproject.pbxproj
More file actions
executable file
·3938 lines (3924 loc) · 274 KB
/
Copy pathproject.pbxproj
File metadata and controls
executable file
·3938 lines (3924 loc) · 274 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 */
0A2263DDA3BEC585020264E0 /* libPods-BABaseProjectUITests.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 77795B692E80399FDA1BD963 /* libPods-BABaseProjectUITests.a */; };
5C5C57EED15443424D1F9E04 /* libPods-BABaseProjectTests.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 1574EF9FCBB113FDCC972156 /* libPods-BABaseProjectTests.a */; };
6E470DCC8E8F7DFE93E782E5 /* libPods-BABaseProject-BABaseProjectUITests.a in Frameworks */ = {isa = PBXBuildFile; fileRef = EB54BFBC1CA5F4765E84B54C /* libPods-BABaseProject-BABaseProjectUITests.a */; };
C3F6369929471C65565BE195 /* libPods-BABaseProject-BABaseProjectTests.a in Frameworks */ = {isa = PBXBuildFile; fileRef = BF87F3C10B89949A3DB1CDEC /* libPods-BABaseProject-BABaseProjectTests.a */; };
C408527C1CD990B00004A671 /* BABaseTableViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = C408527B1CD990B00004A671 /* BABaseTableViewController.m */; };
C40852801CD995200004A671 /* Reachability.m in Sources */ = {isa = PBXBuildFile; fileRef = C408527F1CD995200004A671 /* Reachability.m */; };
C40852881CD9C34F0004A671 /* BABaseView.m in Sources */ = {isa = PBXBuildFile; fileRef = C40852871CD9C34F0004A671 /* BABaseView.m */; };
C408529E1CD9CD860004A671 /* Lato-Bold.ttf in Resources */ = {isa = PBXBuildFile; fileRef = C40852991CD9CD860004A671 /* Lato-Bold.ttf */; };
C408529F1CD9CD860004A671 /* Lato-Light.ttf in Resources */ = {isa = PBXBuildFile; fileRef = C408529A1CD9CD860004A671 /* Lato-Light.ttf */; };
C40852A01CD9CD860004A671 /* Lato-Regular.ttf in Resources */ = {isa = PBXBuildFile; fileRef = C408529B1CD9CD860004A671 /* Lato-Regular.ttf */; };
C40852A11CD9CD860004A671 /* Lato-Thin.ttf in Resources */ = {isa = PBXBuildFile; fileRef = C408529C1CD9CD860004A671 /* Lato-Thin.ttf */; };
C40852A21CD9CD860004A671 /* Lato-ThinItalic.ttf in Resources */ = {isa = PBXBuildFile; fileRef = C408529D1CD9CD860004A671 /* Lato-ThinItalic.ttf */; };
C40852A91CD9FD760004A671 /* BAHomeViewCell.m in Sources */ = {isa = PBXBuildFile; fileRef = C40852A81CD9FD750004A671 /* BAHomeViewCell.m */; };
C40852AD1CD9FDD50004A671 /* BAHomeVCModel.m in Sources */ = {isa = PBXBuildFile; fileRef = C40852AC1CD9FDD50004A671 /* BAHomeVCModel.m */; };
C40852B81CDA08F10004A671 /* DemoVC1.m in Sources */ = {isa = PBXBuildFile; fileRef = C40852B71CDA08F10004A671 /* DemoVC1.m */; };
C40852BC1CDA09100004A671 /* DemoVC2.m in Sources */ = {isa = PBXBuildFile; fileRef = C40852BB1CDA09100004A671 /* DemoVC2.m */; };
C40852E31CDA229B0004A671 /* BANavigationController.m in Sources */ = {isa = PBXBuildFile; fileRef = C40852E21CDA229B0004A671 /* BANavigationController.m */; };
C40852E81CDA263B0004A671 /* RDVTabBarItem.m in Sources */ = {isa = PBXBuildFile; fileRef = C40852E51CDA263B0004A671 /* RDVTabBarItem.m */; };
C40852E91CDA263B0004A671 /* RDVTabBar.m in Sources */ = {isa = PBXBuildFile; fileRef = C40852E71CDA263B0004A671 /* RDVTabBar.m */; };
C40852EC1CDA26680004A671 /* RDVTabBarController.m in Sources */ = {isa = PBXBuildFile; fileRef = C40852EB1CDA26680004A671 /* RDVTabBarController.m */; };
C41CA8C41D3FA049006296BD /* DemoVC2_02_studentModel.m in Sources */ = {isa = PBXBuildFile; fileRef = C41CA8C31D3FA049006296BD /* DemoVC2_02_studentModel.m */; };
C41CA8C71D3FA185006296BD /* DemoVC2_02_classModel.m in Sources */ = {isa = PBXBuildFile; fileRef = C41CA8C61D3FA185006296BD /* DemoVC2_02_classModel.m */; };
C41CA8CA1D3FA3BF006296BD /* DemoVC2_02_studentCell.m in Sources */ = {isa = PBXBuildFile; fileRef = C41CA8C91D3FA3BF006296BD /* DemoVC2_02_studentCell.m */; };
C41F62561CFC250500294C35 /* DemoVC10Cell.m in Sources */ = {isa = PBXBuildFile; fileRef = C41F62551CFC250500294C35 /* DemoVC10Cell.m */; };
C41F62591CFC253600294C35 /* DemoVC10Model.m in Sources */ = {isa = PBXBuildFile; fileRef = C41F62581CFC253600294C35 /* DemoVC10Model.m */; };
C41F625C1CFC265300294C35 /* DemoVC10_ReusableView.m in Sources */ = {isa = PBXBuildFile; fileRef = C41F625B1CFC265300294C35 /* DemoVC10_ReusableView.m */; };
C423217F1CE72ABC00D91F45 /* DemoVC6.m in Sources */ = {isa = PBXBuildFile; fileRef = C423217E1CE72ABC00D91F45 /* DemoVC6.m */; };
C427811D1D2D2881003E6694 /* BABaseCell.m in Sources */ = {isa = PBXBuildFile; fileRef = C427811C1D2D2881003E6694 /* BABaseCell.m */; };
C42781201D2D315B003E6694 /* BABaseCollectionCell.m in Sources */ = {isa = PBXBuildFile; fileRef = C427811F1D2D315B003E6694 /* BABaseCollectionCell.m */; };
C42781231D2D338F003E6694 /* DemoVC2_01_cell.m in Sources */ = {isa = PBXBuildFile; fileRef = C42781221D2D338F003E6694 /* DemoVC2_01_cell.m */; };
C427812E1D2D39B1003E6694 /* GCDGroup.m in Sources */ = {isa = PBXBuildFile; fileRef = C42781271D2D39B1003E6694 /* GCDGroup.m */; };
C427812F1D2D39B1003E6694 /* GCDQueue.m in Sources */ = {isa = PBXBuildFile; fileRef = C42781291D2D39B1003E6694 /* GCDQueue.m */; };
C42781301D2D39B1003E6694 /* GCDSemaphore.m in Sources */ = {isa = PBXBuildFile; fileRef = C427812B1D2D39B1003E6694 /* GCDSemaphore.m */; };
C42781311D2D39B1003E6694 /* GCDTimer.m in Sources */ = {isa = PBXBuildFile; fileRef = C427812D1D2D39B1003E6694 /* GCDTimer.m */; };
C42A6AE31CDAE10500D534EE /* BATabBar.m in Sources */ = {isa = PBXBuildFile; fileRef = C42A6ADE1CDAE10500D534EE /* BATabBar.m */; };
C42A6AE41CDAE10500D534EE /* BATabBarButton.m in Sources */ = {isa = PBXBuildFile; fileRef = C42A6AE01CDAE10500D534EE /* BATabBarButton.m */; };
C42A6AE51CDAE10500D534EE /* BABadgeView.m in Sources */ = {isa = PBXBuildFile; fileRef = C42A6AE21CDAE10500D534EE /* BABadgeView.m */; };
C42A6AE81CDAE10D00D534EE /* BATabBarController.m in Sources */ = {isa = PBXBuildFile; fileRef = C42A6AE71CDAE10D00D534EE /* BATabBarController.m */; };
C42DAA431D37269300FE8B3E /* DemoVC2_03.m in Sources */ = {isa = PBXBuildFile; fileRef = C42DAA421D37269300FE8B3E /* DemoVC2_03.m */; };
C42DAA481D3763A800FE8B3E /* discoverVC.bundle in Resources */ = {isa = PBXBuildFile; fileRef = C42DAA441D3763A700FE8B3E /* discoverVC.bundle */; };
C42DAA491D3763A800FE8B3E /* homeVC.bundle in Resources */ = {isa = PBXBuildFile; fileRef = C42DAA451D3763A700FE8B3E /* homeVC.bundle */; };
C42DAA4A1D3763A800FE8B3E /* messageVC.bundle in Resources */ = {isa = PBXBuildFile; fileRef = C42DAA461D3763A700FE8B3E /* messageVC.bundle */; };
C42DAA4B1D3763A800FE8B3E /* profileVC.bundle in Resources */ = {isa = PBXBuildFile; fileRef = C42DAA471D3763A700FE8B3E /* profileVC.bundle */; };
C42DAA4D1D37669C00FE8B3E /* otherImages.bundle in Resources */ = {isa = PBXBuildFile; fileRef = C42DAA4C1D37669C00FE8B3E /* otherImages.bundle */; };
C430AB761CDC8A360086DDD6 /* DemoVC3.m in Sources */ = {isa = PBXBuildFile; fileRef = C430AB751CDC8A360086DDD6 /* DemoVC3.m */; };
C44423261D2E5D67004ACAA8 /* BAKitManager.m in Sources */ = {isa = PBXBuildFile; fileRef = C44423251D2E5D66004ACAA8 /* BAKitManager.m */; };
C444232A1D2E5E07004ACAA8 /* BAKitManager+BALabel.m in Sources */ = {isa = PBXBuildFile; fileRef = C44423291D2E5E07004ACAA8 /* BAKitManager+BALabel.m */; };
C44423301D2E738A004ACAA8 /* BAAlertView.m in Sources */ = {isa = PBXBuildFile; fileRef = C444232D1D2E738A004ACAA8 /* BAAlertView.m */; };
C44423311D2E738A004ACAA8 /* BAModal.m in Sources */ = {isa = PBXBuildFile; fileRef = C444232F1D2E738A004ACAA8 /* BAModal.m */; };
C44423341D2E7775004ACAA8 /* BABaseHeaderFooterView.m in Sources */ = {isa = PBXBuildFile; fileRef = C44423331D2E7775004ACAA8 /* BABaseHeaderFooterView.m */; };
C44423381D2E7E69004ACAA8 /* UIView+BARotateAnimationProtocol.m in Sources */ = {isa = PBXBuildFile; fileRef = C44423371D2E7E69004ACAA8 /* UIView+BARotateAnimationProtocol.m */; };
C44423451D2E824D004ACAA8 /* BARotateView.m in Sources */ = {isa = PBXBuildFile; fileRef = C44423441D2E824D004ACAA8 /* BARotateView.m */; };
C44423491D2E85B8004ACAA8 /* DemoVC2_02.m in Sources */ = {isa = PBXBuildFile; fileRef = C44423481D2E85B8004ACAA8 /* DemoVC2_02.m */; };
C444234C1D2E8680004ACAA8 /* DemoVC2_02_HeaderView.m in Sources */ = {isa = PBXBuildFile; fileRef = C444234B1D2E8680004ACAA8 /* DemoVC2_02_HeaderView.m */; };
C445E1CE1D1B86FE00D7654A /* SXColorGradientView.m in Sources */ = {isa = PBXBuildFile; fileRef = C445E1C11D1B86FE00D7654A /* SXColorGradientView.m */; };
C445E1CF1D1B86FE00D7654A /* SXColorLabel.m in Sources */ = {isa = PBXBuildFile; fileRef = C445E1C31D1B86FE00D7654A /* SXColorLabel.m */; };
C445E1D01D1B86FE00D7654A /* SXHeadLine.m in Sources */ = {isa = PBXBuildFile; fileRef = C445E1C51D1B86FE00D7654A /* SXHeadLine.m */; };
C445E1D11D1B86FE00D7654A /* SXMarquee.m in Sources */ = {isa = PBXBuildFile; fileRef = C445E1C71D1B86FE00D7654A /* SXMarquee.m */; };
C445E1D21D1B86FE00D7654A /* UIColor+Separate.m in Sources */ = {isa = PBXBuildFile; fileRef = C445E1C91D1B86FE00D7654A /* UIColor+Separate.m */; };
C445E1D31D1B86FE00D7654A /* UIColor+Wonderful.m in Sources */ = {isa = PBXBuildFile; fileRef = C445E1CB1D1B86FE00D7654A /* UIColor+Wonderful.m */; };
C445E1D41D1B86FE00D7654A /* UILabel+Wonderful.m in Sources */ = {isa = PBXBuildFile; fileRef = C445E1CD1D1B86FE00D7654A /* UILabel+Wonderful.m */; };
C445E1F51D1BF10A00D7654A /* DemoVC13.m in Sources */ = {isa = PBXBuildFile; fileRef = C445E1F41D1BF10A00D7654A /* DemoVC13.m */; };
C4562C6B1CDD9F05000F5710 /* DemoVC4.m in Sources */ = {isa = PBXBuildFile; fileRef = C4562C6A1CDD9F05000F5710 /* DemoVC4.m */; };
C4562C7E1CDDBE44000F5710 /* DemoVC5.m in Sources */ = {isa = PBXBuildFile; fileRef = C4562C7D1CDDBE44000F5710 /* DemoVC5.m */; };
C46B89F91CE055DD00005E2B /* DemoVC5Cell.m in Sources */ = {isa = PBXBuildFile; fileRef = C46B89F81CE055DD00005E2B /* DemoVC5Cell.m */; };
C46B89FC1CE0AE3400005E2B /* DemoVC5_TextPart.m in Sources */ = {isa = PBXBuildFile; fileRef = C46B89FB1CE0AE3400005E2B /* DemoVC5_TextPart.m */; };
C46B8A041CE0BAC200005E2B /* RegexKitLite.m in Sources */ = {isa = PBXBuildFile; fileRef = C46B8A031CE0BAC200005E2B /* RegexKitLite.m */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; };
C46B8A061CE0BB7D00005E2B /* libicucore.tbd in Frameworks */ = {isa = PBXBuildFile; fileRef = C46B8A051CE0BB7D00005E2B /* libicucore.tbd */; };
C46C5AB91CDB75B9002F707F /* BAHomeViewModel.m in Sources */ = {isa = PBXBuildFile; fileRef = C46C5AB81CDB75B9002F707F /* BAHomeViewModel.m */; };
C473CC791CF72372001883A9 /* DemoVC9.m in Sources */ = {isa = PBXBuildFile; fileRef = C473CC781CF72372001883A9 /* DemoVC9.m */; };
C473CC7B1CF72439001883A9 /* BACollectionView.bundle in Resources */ = {isa = PBXBuildFile; fileRef = C473CC7A1CF72439001883A9 /* BACollectionView.bundle */; };
C473CC811CF72960001883A9 /* DemoVC9_Model.m in Sources */ = {isa = PBXBuildFile; fileRef = C473CC801CF72960001883A9 /* DemoVC9_Model.m */; };
C48026C71D191EC90087BBB9 /* DemoVC11.m in Sources */ = {isa = PBXBuildFile; fileRef = C48026C01D191EC90087BBB9 /* DemoVC11.m */; };
C48026C81D191EC90087BBB9 /* DemoVC11_AutoLayout.m in Sources */ = {isa = PBXBuildFile; fileRef = C48026C21D191EC90087BBB9 /* DemoVC11_AutoLayout.m */; };
C48026C91D191EC90087BBB9 /* DemoVC11_Cell.m in Sources */ = {isa = PBXBuildFile; fileRef = C48026C41D191EC90087BBB9 /* DemoVC11_Cell.m */; };
C48026CA1D191EC90087BBB9 /* DemoVC11_model.m in Sources */ = {isa = PBXBuildFile; fileRef = C48026C61D191EC90087BBB9 /* DemoVC11_model.m */; };
C48026CE1D191F720087BBB9 /* DemoVC12.m in Sources */ = {isa = PBXBuildFile; fileRef = C48026CD1D191F720087BBB9 /* DemoVC12.m */; };
C48026D11D1920110087BBB9 /* DemoVC12View.m in Sources */ = {isa = PBXBuildFile; fileRef = C48026D01D1920110087BBB9 /* DemoVC12View.m */; };
C480272D1D1928290087BBB9 /* BAAPP.m in Sources */ = {isa = PBXBuildFile; fileRef = C48026D51D1928290087BBB9 /* BAAPP.m */; };
C480272E1D1928290087BBB9 /* BAAutoSizeWithWH.m in Sources */ = {isa = PBXBuildFile; fileRef = C48026D71D1928290087BBB9 /* BAAutoSizeWithWH.m */; };
C480272F1D1928290087BBB9 /* BALog.m in Sources */ = {isa = PBXBuildFile; fileRef = C48026D91D1928290087BBB9 /* BALog.m */; };
C48027311D1928290087BBB9 /* BAPassword.m in Sources */ = {isa = PBXBuildFile; fileRef = C48026DD1D1928290087BBB9 /* BAPassword.m */; };
C48027321D1928290087BBB9 /* BARegularExpression.m in Sources */ = {isa = PBXBuildFile; fileRef = C48026DF1D1928290087BBB9 /* BARegularExpression.m */; };
C48027341D1928290087BBB9 /* BASystemSound.m in Sources */ = {isa = PBXBuildFile; fileRef = C48026E31D1928290087BBB9 /* BASystemSound.m */; };
C48027351D1928290087BBB9 /* BATouchID.m in Sources */ = {isa = PBXBuildFile; fileRef = C48026E51D1928290087BBB9 /* BATouchID.m */; };
C48027361D1928290087BBB9 /* NSArray+BAKit.m in Sources */ = {isa = PBXBuildFile; fileRef = C48026E91D1928290087BBB9 /* NSArray+BAKit.m */; };
C48027371D1928290087BBB9 /* NSData+BAKit.m in Sources */ = {isa = PBXBuildFile; fileRef = C48026EB1D1928290087BBB9 /* NSData+BAKit.m */; };
C48027381D1928290087BBB9 /* NSDate+BAKit.m in Sources */ = {isa = PBXBuildFile; fileRef = C48026ED1D1928290087BBB9 /* NSDate+BAKit.m */; };
C48027391D1928290087BBB9 /* NSDictionary+BAKit.m in Sources */ = {isa = PBXBuildFile; fileRef = C48026EF1D1928290087BBB9 /* NSDictionary+BAKit.m */; };
C480273A1D1928290087BBB9 /* NSFileManager+BAKit.m in Sources */ = {isa = PBXBuildFile; fileRef = C48026F11D1928290087BBB9 /* NSFileManager+BAKit.m */; };
C480273B1D1928290087BBB9 /* NSMutableArray+BAKit.m in Sources */ = {isa = PBXBuildFile; fileRef = C48026F31D1928290087BBB9 /* NSMutableArray+BAKit.m */; };
C480273C1D1928290087BBB9 /* NSMutableDictionary+BAKit.m in Sources */ = {isa = PBXBuildFile; fileRef = C48026F51D1928290087BBB9 /* NSMutableDictionary+BAKit.m */; };
C480273D1D1928290087BBB9 /* NSNumber+BAKit.m in Sources */ = {isa = PBXBuildFile; fileRef = C48026F71D1928290087BBB9 /* NSNumber+BAKit.m */; };
C480273E1D1928290087BBB9 /* NSProcessInfo+BAKit.m in Sources */ = {isa = PBXBuildFile; fileRef = C48026F91D1928290087BBB9 /* NSProcessInfo+BAKit.m */; };
C48027401D1928290087BBB9 /* NSThread+BAKit.m in Sources */ = {isa = PBXBuildFile; fileRef = C48026FD1D1928290087BBB9 /* NSThread+BAKit.m */; };
C48027411D1928290087BBB9 /* BACustomModalTransition.m in Sources */ = {isa = PBXBuildFile; fileRef = C48027001D1928290087BBB9 /* BACustomModalTransition.m */; };
C48027421D1928290087BBB9 /* BAPickerView.m in Sources */ = {isa = PBXBuildFile; fileRef = C48027021D1928290087BBB9 /* BAPickerView.m */; };
C48027431D1928290087BBB9 /* BATextView.m in Sources */ = {isa = PBXBuildFile; fileRef = C48027041D1928290087BBB9 /* BATextView.m */; };
C48027441D1928290087BBB9 /* UIButton+BAKit.m in Sources */ = {isa = PBXBuildFile; fileRef = C48027061D1928290087BBB9 /* UIButton+BAKit.m */; };
C48027451D1928290087BBB9 /* UIColor+BAKit.m in Sources */ = {isa = PBXBuildFile; fileRef = C48027081D1928290087BBB9 /* UIColor+BAKit.m */; };
C48027461D1928290087BBB9 /* UIDevice+BAKit.m in Sources */ = {isa = PBXBuildFile; fileRef = C480270A1D1928290087BBB9 /* UIDevice+BAKit.m */; };
C48027471D1928290087BBB9 /* UIFont+BAKit.m in Sources */ = {isa = PBXBuildFile; fileRef = C480270C1D1928290087BBB9 /* UIFont+BAKit.m */; };
C48027481D1928290087BBB9 /* UIImage+BAKit.m in Sources */ = {isa = PBXBuildFile; fileRef = C480270E1D1928290087BBB9 /* UIImage+BAKit.m */; };
C48027491D1928290087BBB9 /* UIImageView+BAKit.m in Sources */ = {isa = PBXBuildFile; fileRef = C48027101D1928290087BBB9 /* UIImageView+BAKit.m */; };
C480274A1D1928290087BBB9 /* UILabel+BAKit.m in Sources */ = {isa = PBXBuildFile; fileRef = C48027121D1928290087BBB9 /* UILabel+BAKit.m */; };
C480274B1D1928290087BBB9 /* UIScrollView+BAKit.m in Sources */ = {isa = PBXBuildFile; fileRef = C48027141D1928290087BBB9 /* UIScrollView+BAKit.m */; };
C480274C1D1928290087BBB9 /* UITableView+BAKit.m in Sources */ = {isa = PBXBuildFile; fileRef = C48027161D1928290087BBB9 /* UITableView+BAKit.m */; };
C480274D1D1928290087BBB9 /* UITextField+BAKit.m in Sources */ = {isa = PBXBuildFile; fileRef = C48027181D1928290087BBB9 /* UITextField+BAKit.m */; };
C480274E1D1928290087BBB9 /* UIView+BAKit.m in Sources */ = {isa = PBXBuildFile; fileRef = C480271A1D1928290087BBB9 /* UIView+BAKit.m */; };
C480274F1D1928290087BBB9 /* UIWebView+BAKit.m in Sources */ = {isa = PBXBuildFile; fileRef = C480271C1D1928290087BBB9 /* UIWebView+BAKit.m */; };
C48027501D1928290087BBB9 /* UIWindow+BAKit.m in Sources */ = {isa = PBXBuildFile; fileRef = C480271E1D1928290087BBB9 /* UIWindow+BAKit.m */; };
C48027511D1928290087BBB9 /* BAFadeBlackView.m in Sources */ = {isa = PBXBuildFile; fileRef = C48027221D1928290087BBB9 /* BAFadeBlackView.m */; };
C48027521D1928290087BBB9 /* BASnowView.m in Sources */ = {isa = PBXBuildFile; fileRef = C48027241D1928290087BBB9 /* BASnowView.m */; };
C48027531D1928290087BBB9 /* BAUpdatingView.m in Sources */ = {isa = PBXBuildFile; fileRef = C48027261D1928290087BBB9 /* BAUpdatingView.m */; };
C48027541D1928290087BBB9 /* CALayer+BAMaskLayer.m in Sources */ = {isa = PBXBuildFile; fileRef = C48027281D1928290087BBB9 /* CALayer+BAMaskLayer.m */; };
C48027551D1928290087BBB9 /* EmitterLayerView.m in Sources */ = {isa = PBXBuildFile; fileRef = C480272A1D1928290087BBB9 /* EmitterLayerView.m */; };
C48027561D1928290087BBB9 /* UIView+BAGlowView.m in Sources */ = {isa = PBXBuildFile; fileRef = C480272C1D1928290087BBB9 /* UIView+BAGlowView.m */; };
C485562C1D3CB01700002FA2 /* UINavigationController+BAKit.m in Sources */ = {isa = PBXBuildFile; fileRef = C485562B1D3CB01700002FA2 /* UINavigationController+BAKit.m */; };
C48556301D3CB2DD00002FA2 /* UINavigationBar+BAKit.m in Sources */ = {isa = PBXBuildFile; fileRef = C485562F1D3CB2DD00002FA2 /* UINavigationBar+BAKit.m */; };
C48556331D3CC39900002FA2 /* UIBarButtonItem+BAKit.m in Sources */ = {isa = PBXBuildFile; fileRef = C48556321D3CC39900002FA2 /* UIBarButtonItem+BAKit.m */; };
C48556361D3CC74600002FA2 /* NSDateFormatter+BAKit.m in Sources */ = {isa = PBXBuildFile; fileRef = C48556351D3CC74600002FA2 /* NSDateFormatter+BAKit.m */; };
C4ACE2FC1CF5C19500313DD4 /* WebKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = C4ACE2FB1CF5C19500313DD4 /* WebKit.framework */; };
C4ACE2FF1CF5C53100313DD4 /* DemoVC7.m in Sources */ = {isa = PBXBuildFile; fileRef = C4ACE2FE1CF5C53100313DD4 /* DemoVC7.m */; };
C4ACE3031CF5C90C00313DD4 /* DemoVC8.m in Sources */ = {isa = PBXBuildFile; fileRef = C4ACE3021CF5C90C00313DD4 /* DemoVC8.m */; };
C4ACE3051CF5C96200313DD4 /* EventKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = C4ACE3041CF5C96200313DD4 /* EventKit.framework */; };
C4ACE3071CF5C96B00313DD4 /* CoreGraphics.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = C4ACE3061CF5C96B00313DD4 /* CoreGraphics.framework */; };
C4B963D01D33A5AF005926B8 /* Contents.json in Resources */ = {isa = PBXBuildFile; fileRef = C4B963141D33A5AF005926B8 /* Contents.json */; };
C4B963D11D33A5B1005926B8 /* dropdown_anim__0001@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = C4B963151D33A5AF005926B8 /* dropdown_anim__0001@2x.png */; };
C4B963D21D33A5B1005926B8 /* Contents.json in Resources */ = {isa = PBXBuildFile; fileRef = C4B963171D33A5AF005926B8 /* Contents.json */; };
C4B963D31D33A5B1005926B8 /* dropdown_anim__00010@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = C4B963181D33A5AF005926B8 /* dropdown_anim__00010@2x.png */; };
C4B963D41D33A5B1005926B8 /* Contents.json in Resources */ = {isa = PBXBuildFile; fileRef = C4B9631A1D33A5AF005926B8 /* Contents.json */; };
C4B963D51D33A5B1005926B8 /* dropdown_anim__00011@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = C4B9631B1D33A5AF005926B8 /* dropdown_anim__00011@2x.png */; };
C4B963D61D33A5B1005926B8 /* Contents.json in Resources */ = {isa = PBXBuildFile; fileRef = C4B9631D1D33A5AF005926B8 /* Contents.json */; };
C4B963D71D33A5B1005926B8 /* dropdown_anim__00012@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = C4B9631E1D33A5AF005926B8 /* dropdown_anim__00012@2x.png */; };
C4B963D81D33A5B1005926B8 /* Contents.json in Resources */ = {isa = PBXBuildFile; fileRef = C4B963201D33A5AF005926B8 /* Contents.json */; };
C4B963D91D33A5B1005926B8 /* dropdown_anim__00013@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = C4B963211D33A5AF005926B8 /* dropdown_anim__00013@2x.png */; };
C4B963DA1D33A5B1005926B8 /* Contents.json in Resources */ = {isa = PBXBuildFile; fileRef = C4B963231D33A5AF005926B8 /* Contents.json */; };
C4B963DB1D33A5B1005926B8 /* dropdown_anim__00014@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = C4B963241D33A5AF005926B8 /* dropdown_anim__00014@2x.png */; };
C4B963DC1D33A5B1005926B8 /* Contents.json in Resources */ = {isa = PBXBuildFile; fileRef = C4B963261D33A5AF005926B8 /* Contents.json */; };
C4B963DD1D33A5B1005926B8 /* dropdown_anim__00015@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = C4B963271D33A5AF005926B8 /* dropdown_anim__00015@2x.png */; };
C4B963DE1D33A5B1005926B8 /* Contents.json in Resources */ = {isa = PBXBuildFile; fileRef = C4B963291D33A5AF005926B8 /* Contents.json */; };
C4B963DF1D33A5B1005926B8 /* dropdown_anim__00016@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = C4B9632A1D33A5AF005926B8 /* dropdown_anim__00016@2x.png */; };
C4B963E01D33A5B1005926B8 /* Contents.json in Resources */ = {isa = PBXBuildFile; fileRef = C4B9632C1D33A5AF005926B8 /* Contents.json */; };
C4B963E11D33A5B1005926B8 /* dropdown_anim__00017@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = C4B9632D1D33A5AF005926B8 /* dropdown_anim__00017@2x.png */; };
C4B963E21D33A5B1005926B8 /* Contents.json in Resources */ = {isa = PBXBuildFile; fileRef = C4B9632F1D33A5AF005926B8 /* Contents.json */; };
C4B963E31D33A5B1005926B8 /* dropdown_anim__00018@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = C4B963301D33A5AF005926B8 /* dropdown_anim__00018@2x.png */; };
C4B963E41D33A5B1005926B8 /* Contents.json in Resources */ = {isa = PBXBuildFile; fileRef = C4B963321D33A5AF005926B8 /* Contents.json */; };
C4B963E51D33A5B1005926B8 /* dropdown_anim__00019@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = C4B963331D33A5AF005926B8 /* dropdown_anim__00019@2x.png */; };
C4B963E61D33A5B1005926B8 /* Contents.json in Resources */ = {isa = PBXBuildFile; fileRef = C4B963351D33A5AF005926B8 /* Contents.json */; };
C4B963E71D33A5B1005926B8 /* dropdown_anim__0002@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = C4B963361D33A5AF005926B8 /* dropdown_anim__0002@2x.png */; };
C4B963E81D33A5B1005926B8 /* Contents.json in Resources */ = {isa = PBXBuildFile; fileRef = C4B963381D33A5AF005926B8 /* Contents.json */; };
C4B963E91D33A5B1005926B8 /* dropdown_anim__00020@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = C4B963391D33A5AF005926B8 /* dropdown_anim__00020@2x.png */; };
C4B963EA1D33A5B1005926B8 /* Contents.json in Resources */ = {isa = PBXBuildFile; fileRef = C4B9633B1D33A5AF005926B8 /* Contents.json */; };
C4B963EB1D33A5B1005926B8 /* dropdown_anim__00021@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = C4B9633C1D33A5AF005926B8 /* dropdown_anim__00021@2x.png */; };
C4B963EC1D33A5B1005926B8 /* Contents.json in Resources */ = {isa = PBXBuildFile; fileRef = C4B9633E1D33A5AF005926B8 /* Contents.json */; };
C4B963ED1D33A5B1005926B8 /* dropdown_anim__00022@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = C4B9633F1D33A5AF005926B8 /* dropdown_anim__00022@2x.png */; };
C4B963EE1D33A5B1005926B8 /* Contents.json in Resources */ = {isa = PBXBuildFile; fileRef = C4B963411D33A5AF005926B8 /* Contents.json */; };
C4B963EF1D33A5B1005926B8 /* dropdown_anim__00023@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = C4B963421D33A5AF005926B8 /* dropdown_anim__00023@2x.png */; };
C4B963F01D33A5B1005926B8 /* Contents.json in Resources */ = {isa = PBXBuildFile; fileRef = C4B963441D33A5AF005926B8 /* Contents.json */; };
C4B963F11D33A5B1005926B8 /* dropdown_anim__00024@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = C4B963451D33A5AF005926B8 /* dropdown_anim__00024@2x.png */; };
C4B963F21D33A5B1005926B8 /* Contents.json in Resources */ = {isa = PBXBuildFile; fileRef = C4B963471D33A5AF005926B8 /* Contents.json */; };
C4B963F31D33A5B1005926B8 /* dropdown_anim__00025@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = C4B963481D33A5AF005926B8 /* dropdown_anim__00025@2x.png */; };
C4B963F41D33A5B1005926B8 /* Contents.json in Resources */ = {isa = PBXBuildFile; fileRef = C4B9634A1D33A5AF005926B8 /* Contents.json */; };
C4B963F51D33A5B1005926B8 /* dropdown_anim__00026@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = C4B9634B1D33A5AF005926B8 /* dropdown_anim__00026@2x.png */; };
C4B963F61D33A5B1005926B8 /* Contents.json in Resources */ = {isa = PBXBuildFile; fileRef = C4B9634D1D33A5AF005926B8 /* Contents.json */; };
C4B963F71D33A5B1005926B8 /* dropdown_anim__00027@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = C4B9634E1D33A5AF005926B8 /* dropdown_anim__00027@2x.png */; };
C4B963F81D33A5B1005926B8 /* Contents.json in Resources */ = {isa = PBXBuildFile; fileRef = C4B963501D33A5AF005926B8 /* Contents.json */; };
C4B963F91D33A5B1005926B8 /* dropdown_anim__00028@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = C4B963511D33A5AF005926B8 /* dropdown_anim__00028@2x.png */; };
C4B963FA1D33A5B1005926B8 /* Contents.json in Resources */ = {isa = PBXBuildFile; fileRef = C4B963531D33A5AF005926B8 /* Contents.json */; };
C4B963FB1D33A5B1005926B8 /* dropdown_anim__00029@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = C4B963541D33A5AF005926B8 /* dropdown_anim__00029@2x.png */; };
C4B963FC1D33A5B1005926B8 /* Contents.json in Resources */ = {isa = PBXBuildFile; fileRef = C4B963561D33A5AF005926B8 /* Contents.json */; };
C4B963FD1D33A5B1005926B8 /* dropdown_anim__0003@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = C4B963571D33A5AF005926B8 /* dropdown_anim__0003@2x.png */; };
C4B963FE1D33A5B1005926B8 /* Contents.json in Resources */ = {isa = PBXBuildFile; fileRef = C4B963591D33A5AF005926B8 /* Contents.json */; };
C4B963FF1D33A5B1005926B8 /* dropdown_anim__00030@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = C4B9635A1D33A5AF005926B8 /* dropdown_anim__00030@2x.png */; };
C4B964001D33A5B1005926B8 /* Contents.json in Resources */ = {isa = PBXBuildFile; fileRef = C4B9635C1D33A5AF005926B8 /* Contents.json */; };
C4B964011D33A5B1005926B8 /* dropdown_anim__00031@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = C4B9635D1D33A5AF005926B8 /* dropdown_anim__00031@2x.png */; };
C4B964021D33A5B1005926B8 /* Contents.json in Resources */ = {isa = PBXBuildFile; fileRef = C4B9635F1D33A5AF005926B8 /* Contents.json */; };
C4B964031D33A5B1005926B8 /* dropdown_anim__00032@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = C4B963601D33A5AF005926B8 /* dropdown_anim__00032@2x.png */; };
C4B964041D33A5B1005926B8 /* Contents.json in Resources */ = {isa = PBXBuildFile; fileRef = C4B963621D33A5AF005926B8 /* Contents.json */; };
C4B964051D33A5B1005926B8 /* dropdown_anim__00033@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = C4B963631D33A5AF005926B8 /* dropdown_anim__00033@2x.png */; };
C4B964061D33A5B1005926B8 /* Contents.json in Resources */ = {isa = PBXBuildFile; fileRef = C4B963651D33A5AF005926B8 /* Contents.json */; };
C4B964071D33A5B1005926B8 /* dropdown_anim__00034@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = C4B963661D33A5AF005926B8 /* dropdown_anim__00034@2x.png */; };
C4B964081D33A5B1005926B8 /* Contents.json in Resources */ = {isa = PBXBuildFile; fileRef = C4B963681D33A5AF005926B8 /* Contents.json */; };
C4B964091D33A5B1005926B8 /* dropdown_anim__00035@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = C4B963691D33A5AF005926B8 /* dropdown_anim__00035@2x.png */; };
C4B9640A1D33A5B1005926B8 /* Contents.json in Resources */ = {isa = PBXBuildFile; fileRef = C4B9636B1D33A5AF005926B8 /* Contents.json */; };
C4B9640B1D33A5B1005926B8 /* dropdown_anim__00036@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = C4B9636C1D33A5AF005926B8 /* dropdown_anim__00036@2x.png */; };
C4B9640C1D33A5B1005926B8 /* Contents.json in Resources */ = {isa = PBXBuildFile; fileRef = C4B9636E1D33A5AF005926B8 /* Contents.json */; };
C4B9640D1D33A5B1005926B8 /* dropdown_anim__00037@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = C4B9636F1D33A5AF005926B8 /* dropdown_anim__00037@2x.png */; };
C4B9640E1D33A5B1005926B8 /* Contents.json in Resources */ = {isa = PBXBuildFile; fileRef = C4B963711D33A5AF005926B8 /* Contents.json */; };
C4B9640F1D33A5B1005926B8 /* dropdown_anim__00038@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = C4B963721D33A5AF005926B8 /* dropdown_anim__00038@2x.png */; };
C4B964101D33A5B1005926B8 /* Contents.json in Resources */ = {isa = PBXBuildFile; fileRef = C4B963741D33A5AF005926B8 /* Contents.json */; };
C4B964111D33A5B1005926B8 /* dropdown_anim__00039@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = C4B963751D33A5AF005926B8 /* dropdown_anim__00039@2x.png */; };
C4B964121D33A5B1005926B8 /* Contents.json in Resources */ = {isa = PBXBuildFile; fileRef = C4B963771D33A5AF005926B8 /* Contents.json */; };
C4B964131D33A5B1005926B8 /* dropdown_anim__0004@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = C4B963781D33A5AF005926B8 /* dropdown_anim__0004@2x.png */; };
C4B964141D33A5B1005926B8 /* Contents.json in Resources */ = {isa = PBXBuildFile; fileRef = C4B9637A1D33A5AF005926B8 /* Contents.json */; };
C4B964151D33A5B1005926B8 /* dropdown_anim__00040@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = C4B9637B1D33A5AF005926B8 /* dropdown_anim__00040@2x.png */; };
C4B964161D33A5B1005926B8 /* Contents.json in Resources */ = {isa = PBXBuildFile; fileRef = C4B9637D1D33A5AF005926B8 /* Contents.json */; };
C4B964171D33A5B1005926B8 /* dropdown_anim__00041@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = C4B9637E1D33A5AF005926B8 /* dropdown_anim__00041@2x.png */; };
C4B964181D33A5B1005926B8 /* Contents.json in Resources */ = {isa = PBXBuildFile; fileRef = C4B963801D33A5AF005926B8 /* Contents.json */; };
C4B964191D33A5B1005926B8 /* dropdown_anim__00042@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = C4B963811D33A5AF005926B8 /* dropdown_anim__00042@2x.png */; };
C4B9641A1D33A5B1005926B8 /* Contents.json in Resources */ = {isa = PBXBuildFile; fileRef = C4B963831D33A5AF005926B8 /* Contents.json */; };
C4B9641B1D33A5B1005926B8 /* dropdown_anim__00043@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = C4B963841D33A5AF005926B8 /* dropdown_anim__00043@2x.png */; };
C4B9641C1D33A5B1005926B8 /* Contents.json in Resources */ = {isa = PBXBuildFile; fileRef = C4B963861D33A5AF005926B8 /* Contents.json */; };
C4B9641D1D33A5B1005926B8 /* dropdown_anim__00044@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = C4B963871D33A5AF005926B8 /* dropdown_anim__00044@2x.png */; };
C4B9641E1D33A5B1005926B8 /* Contents.json in Resources */ = {isa = PBXBuildFile; fileRef = C4B963891D33A5AF005926B8 /* Contents.json */; };
C4B9641F1D33A5B1005926B8 /* dropdown_anim__00045@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = C4B9638A1D33A5AF005926B8 /* dropdown_anim__00045@2x.png */; };
C4B964201D33A5B1005926B8 /* Contents.json in Resources */ = {isa = PBXBuildFile; fileRef = C4B9638C1D33A5AF005926B8 /* Contents.json */; };
C4B964211D33A5B1005926B8 /* dropdown_anim__00046@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = C4B9638D1D33A5AF005926B8 /* dropdown_anim__00046@2x.png */; };
C4B964221D33A5B1005926B8 /* Contents.json in Resources */ = {isa = PBXBuildFile; fileRef = C4B9638F1D33A5AF005926B8 /* Contents.json */; };
C4B964231D33A5B1005926B8 /* dropdown_anim__00047@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = C4B963901D33A5AF005926B8 /* dropdown_anim__00047@2x.png */; };
C4B964241D33A5B1005926B8 /* Contents.json in Resources */ = {isa = PBXBuildFile; fileRef = C4B963921D33A5AF005926B8 /* Contents.json */; };
C4B964251D33A5B1005926B8 /* dropdown_anim__00048@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = C4B963931D33A5AF005926B8 /* dropdown_anim__00048@2x.png */; };
C4B964261D33A5B1005926B8 /* Contents.json in Resources */ = {isa = PBXBuildFile; fileRef = C4B963951D33A5AF005926B8 /* Contents.json */; };
C4B964271D33A5B1005926B8 /* dropdown_anim__00049@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = C4B963961D33A5AF005926B8 /* dropdown_anim__00049@2x.png */; };
C4B964281D33A5B1005926B8 /* Contents.json in Resources */ = {isa = PBXBuildFile; fileRef = C4B963981D33A5AF005926B8 /* Contents.json */; };
C4B964291D33A5B1005926B8 /* dropdown_anim__0005@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = C4B963991D33A5AF005926B8 /* dropdown_anim__0005@2x.png */; };
C4B9642A1D33A5B1005926B8 /* Contents.json in Resources */ = {isa = PBXBuildFile; fileRef = C4B9639B1D33A5AF005926B8 /* Contents.json */; };
C4B9642B1D33A5B1005926B8 /* dropdown_anim__00050@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = C4B9639C1D33A5AF005926B8 /* dropdown_anim__00050@2x.png */; };
C4B9642C1D33A5B1005926B8 /* Contents.json in Resources */ = {isa = PBXBuildFile; fileRef = C4B9639E1D33A5AF005926B8 /* Contents.json */; };
C4B9642D1D33A5B1005926B8 /* dropdown_anim__00051@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = C4B9639F1D33A5AF005926B8 /* dropdown_anim__00051@2x.png */; };
C4B9642E1D33A5B1005926B8 /* Contents.json in Resources */ = {isa = PBXBuildFile; fileRef = C4B963A11D33A5AF005926B8 /* Contents.json */; };
C4B9642F1D33A5B1005926B8 /* dropdown_anim__00052@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = C4B963A21D33A5AF005926B8 /* dropdown_anim__00052@2x.png */; };
C4B964301D33A5B1005926B8 /* Contents.json in Resources */ = {isa = PBXBuildFile; fileRef = C4B963A41D33A5AF005926B8 /* Contents.json */; };
C4B964311D33A5B1005926B8 /* dropdown_anim__00053@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = C4B963A51D33A5AF005926B8 /* dropdown_anim__00053@2x.png */; };
C4B964321D33A5B1005926B8 /* Contents.json in Resources */ = {isa = PBXBuildFile; fileRef = C4B963A71D33A5AF005926B8 /* Contents.json */; };
C4B964331D33A5B1005926B8 /* dropdown_anim__00054@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = C4B963A81D33A5AF005926B8 /* dropdown_anim__00054@2x.png */; };
C4B964341D33A5B1005926B8 /* Contents.json in Resources */ = {isa = PBXBuildFile; fileRef = C4B963AA1D33A5AF005926B8 /* Contents.json */; };
C4B964351D33A5B1005926B8 /* dropdown_anim__00055@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = C4B963AB1D33A5AF005926B8 /* dropdown_anim__00055@2x.png */; };
C4B964361D33A5B1005926B8 /* Contents.json in Resources */ = {isa = PBXBuildFile; fileRef = C4B963AD1D33A5AF005926B8 /* Contents.json */; };
C4B964371D33A5B1005926B8 /* dropdown_anim__00056@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = C4B963AE1D33A5AF005926B8 /* dropdown_anim__00056@2x.png */; };
C4B964381D33A5B1005926B8 /* Contents.json in Resources */ = {isa = PBXBuildFile; fileRef = C4B963B01D33A5AF005926B8 /* Contents.json */; };
C4B964391D33A5B1005926B8 /* dropdown_anim__00057@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = C4B963B11D33A5AF005926B8 /* dropdown_anim__00057@2x.png */; };
C4B9643A1D33A5B1005926B8 /* Contents.json in Resources */ = {isa = PBXBuildFile; fileRef = C4B963B31D33A5AF005926B8 /* Contents.json */; };
C4B9643B1D33A5B1005926B8 /* dropdown_anim__00058@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = C4B963B41D33A5AF005926B8 /* dropdown_anim__00058@2x.png */; };
C4B9643C1D33A5B1005926B8 /* Contents.json in Resources */ = {isa = PBXBuildFile; fileRef = C4B963B61D33A5AF005926B8 /* Contents.json */; };
C4B9643D1D33A5B1005926B8 /* dropdown_anim__00059@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = C4B963B71D33A5AF005926B8 /* dropdown_anim__00059@2x.png */; };
C4B9643E1D33A5B1005926B8 /* Contents.json in Resources */ = {isa = PBXBuildFile; fileRef = C4B963B91D33A5AF005926B8 /* Contents.json */; };
C4B9643F1D33A5B1005926B8 /* dropdown_anim__0006@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = C4B963BA1D33A5AF005926B8 /* dropdown_anim__0006@2x.png */; };
C4B964401D33A5B1005926B8 /* Contents.json in Resources */ = {isa = PBXBuildFile; fileRef = C4B963BC1D33A5AF005926B8 /* Contents.json */; };
C4B964411D33A5B1005926B8 /* dropdown_anim__00060@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = C4B963BD1D33A5AF005926B8 /* dropdown_anim__00060@2x.png */; };
C4B964421D33A5B1005926B8 /* Contents.json in Resources */ = {isa = PBXBuildFile; fileRef = C4B963BF1D33A5AF005926B8 /* Contents.json */; };
C4B964431D33A5B1005926B8 /* dropdown_anim__0007@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = C4B963C01D33A5AF005926B8 /* dropdown_anim__0007@2x.png */; };
C4B964441D33A5B1005926B8 /* Contents.json in Resources */ = {isa = PBXBuildFile; fileRef = C4B963C21D33A5AF005926B8 /* Contents.json */; };
C4B964451D33A5B1005926B8 /* dropdown_anim__0008@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = C4B963C31D33A5AF005926B8 /* dropdown_anim__0008@2x.png */; };
C4B964461D33A5B1005926B8 /* Contents.json in Resources */ = {isa = PBXBuildFile; fileRef = C4B963C51D33A5AF005926B8 /* Contents.json */; };
C4B964471D33A5B1005926B8 /* dropdown_anim__0009@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = C4B963C61D33A5AF005926B8 /* dropdown_anim__0009@2x.png */; };
C4B964481D33A5B1005926B8 /* Contents.json in Resources */ = {isa = PBXBuildFile; fileRef = C4B963C81D33A5AF005926B8 /* Contents.json */; };
C4B964491D33A5B1005926B8 /* dropdown_loading_01@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = C4B963C91D33A5AF005926B8 /* dropdown_loading_01@2x.png */; };
C4B9644A1D33A5B1005926B8 /* Contents.json in Resources */ = {isa = PBXBuildFile; fileRef = C4B963CB1D33A5AF005926B8 /* Contents.json */; };
C4B9644B1D33A5B1005926B8 /* dropdown_loading_02@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = C4B963CC1D33A5AF005926B8 /* dropdown_loading_02@2x.png */; };
C4B9644C1D33A5B1005926B8 /* Contents.json in Resources */ = {isa = PBXBuildFile; fileRef = C4B963CE1D33A5AF005926B8 /* Contents.json */; };
C4B9644D1D33A5B1005926B8 /* dropdown_loading_03@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = C4B963CF1D33A5AF005926B8 /* dropdown_loading_03@2x.png */; };
C4B964511D33A630005926B8 /* BACustomMJFooter.m in Sources */ = {isa = PBXBuildFile; fileRef = C4B964501D33A630005926B8 /* BACustomMJFooter.m */; };
C4B964541D33B5E8005926B8 /* BACustomMJHeader.m in Sources */ = {isa = PBXBuildFile; fileRef = C4B964531D33B5E8005926B8 /* BACustomMJHeader.m */; };
C4C802511CF5AFAE00AD5B3B /* BAWebViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = C4C8024F1CF5AFAE00AD5B3B /* BAWebViewController.m */; };
C4D108021CE2FC1C00F735B9 /* view1.m in Sources */ = {isa = PBXBuildFile; fileRef = C4D107FB1CE2FC1C00F735B9 /* view1.m */; };
C4D108031CE2FC1C00F735B9 /* view2.m in Sources */ = {isa = PBXBuildFile; fileRef = C4D107FD1CE2FC1C00F735B9 /* view2.m */; };
C4D108041CE2FC1C00F735B9 /* view3.m in Sources */ = {isa = PBXBuildFile; fileRef = C4D107FF1CE2FC1C00F735B9 /* view3.m */; };
C4D108051CE2FC1C00F735B9 /* view4.m in Sources */ = {isa = PBXBuildFile; fileRef = C4D108011CE2FC1C00F735B9 /* view4.m */; };
C4DEB3741D0C2FC8001F1585 /* BANetManager.m in Sources */ = {isa = PBXBuildFile; fileRef = C4DEB3721D0C2FC8001F1585 /* BANetManager.m */; };
C4DEB3771D0C332C001F1585 /* BATabBarController2.m in Sources */ = {isa = PBXBuildFile; fileRef = C4DEB3761D0C332C001F1585 /* BATabBarController2.m */; };
C4DEB37A1D0C3351001F1585 /* BATabBar2.m in Sources */ = {isa = PBXBuildFile; fileRef = C4DEB3791D0C3351001F1585 /* BATabBar2.m */; };
C4DEB37D1D0C33E8001F1585 /* BANavigationController2.m in Sources */ = {isa = PBXBuildFile; fileRef = C4DEB37C1D0C33E8001F1585 /* BANavigationController2.m */; };
C4DEB3851D0C34B0001F1585 /* BAPublishViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = C4DEB3841D0C34B0001F1585 /* BAPublishViewController.m */; };
C4EA25811CF7DFEC00F6081C /* DemoVC10.m in Sources */ = {isa = PBXBuildFile; fileRef = C4EA25801CF7DFEC00F6081C /* DemoVC10.m */; };
C4EA25841CF7E10600F6081C /* DemoVC10_CollectionView.m in Sources */ = {isa = PBXBuildFile; fileRef = C4EA25831CF7E10600F6081C /* DemoVC10_CollectionView.m */; };
C4EADCE51D02C0130086979C /* Localizable.strings in Resources */ = {isa = PBXBuildFile; fileRef = C4EADCE71D02C0130086979C /* Localizable.strings */; };
C4EADCE91D02C0200086979C /* InfoPlist.strings in Resources */ = {isa = PBXBuildFile; fileRef = C4EADCEB1D02C0200086979C /* InfoPlist.strings */; };
C4EB5AA51CD8B04B003A7094 /* main.m in Sources */ = {isa = PBXBuildFile; fileRef = C4EB5AA41CD8B04B003A7094 /* main.m */; };
C4EB5AA81CD8B04B003A7094 /* AppDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = C4EB5AA71CD8B04B003A7094 /* AppDelegate.m */; };
C4EB5AAE1CD8B04B003A7094 /* Main.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = C4EB5AAC1CD8B04B003A7094 /* Main.storyboard */; };
C4EB5AB01CD8B04B003A7094 /* Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = C4EB5AAF1CD8B04B003A7094 /* Assets.xcassets */; };
C4EB5AB31CD8B04B003A7094 /* LaunchScreen.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = C4EB5AB11CD8B04B003A7094 /* LaunchScreen.storyboard */; };
C4EB5ABE1CD8B04B003A7094 /* BABaseProjectTests.m in Sources */ = {isa = PBXBuildFile; fileRef = C4EB5ABD1CD8B04B003A7094 /* BABaseProjectTests.m */; };
C4EB5AC91CD8B04B003A7094 /* BABaseProjectUITests.m in Sources */ = {isa = PBXBuildFile; fileRef = C4EB5AC81CD8B04B003A7094 /* BABaseProjectUITests.m */; };
C4EB5BB41CD8B250003A7094 /* BABaseModel.m in Sources */ = {isa = PBXBuildFile; fileRef = C4EB5ADA1CD8B24F003A7094 /* BABaseModel.m */; };
C4EB5BB51CD8B250003A7094 /* BABaseViewModel.m in Sources */ = {isa = PBXBuildFile; fileRef = C4EB5ADC1CD8B24F003A7094 /* BABaseViewModel.m */; };
C4EB5BB61CD8B250003A7094 /* BAVideoModel.m in Sources */ = {isa = PBXBuildFile; fileRef = C4EB5ADE1CD8B24F003A7094 /* BAVideoModel.m */; };
C4EB5BB71CD8B250003A7094 /* BAFPSLabel.m in Sources */ = {isa = PBXBuildFile; fileRef = C4EB5AE11CD8B24F003A7094 /* BAFPSLabel.m */; };
C4EB5BB81CD8B250003A7094 /* BANavigationBar.m in Sources */ = {isa = PBXBuildFile; fileRef = C4EB5AE31CD8B24F003A7094 /* BANavigationBar.m */; };
C4EB5BB91CD8B250003A7094 /* BABaseViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = C4EB5AE61CD8B24F003A7094 /* BABaseViewController.m */; };
C4EB5BBB1CD8B250003A7094 /* BAGIFImageView.m in Sources */ = {isa = PBXBuildFile; fileRef = C4EB5AEB1CD8B24F003A7094 /* BAGIFImageView.m */; };
C4EB5BBC1CD8B250003A7094 /* BADiscoverViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = C4EB5AF41CD8B24F003A7094 /* BADiscoverViewController.m */; };
C4EB5BBD1CD8B250003A7094 /* BAHomeViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = C4EB5AFA1CD8B24F003A7094 /* BAHomeViewController.m */; };
C4EB5BBE1CD8B250003A7094 /* BAMessageViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = C4EB5B021CD8B24F003A7094 /* BAMessageViewController.m */; };
C4EB5BBF1CD8B250003A7094 /* BAProfileViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = C4EB5B081CD8B24F003A7094 /* BAProfileViewController.m */; };
C4EB5BC21CD8B250003A7094 /* LPLevelView.bundle in Resources */ = {isa = PBXBuildFile; fileRef = C4EB5B121CD8B24F003A7094 /* LPLevelView.bundle */; };
C4EB5BC31CD8B250003A7094 /* LPLevelView.m in Sources */ = {isa = PBXBuildFile; fileRef = C4EB5B141CD8B24F003A7094 /* LPLevelView.m */; };
C4EB5BCB1CD8B250003A7094 /* AppDelegate+BACategory.m in Sources */ = {isa = PBXBuildFile; fileRef = C4EB5B291CD8B24F003A7094 /* AppDelegate+BACategory.m */; };
C4EB5BCC1CD8B250003A7094 /* NSObject+BAMJParse.m in Sources */ = {isa = PBXBuildFile; fileRef = C4EB5B2B1CD8B24F003A7094 /* NSObject+BAMJParse.m */; };
C4EB5BCD1CD8B250003A7094 /* NSObject+BAProgressHUD.m in Sources */ = {isa = PBXBuildFile; fileRef = C4EB5B2D1CD8B24F003A7094 /* NSObject+BAProgressHUD.m */; };
C4EB5BCE1CD8B250003A7094 /* NSObject+BANetwork.m in Sources */ = {isa = PBXBuildFile; fileRef = C4EB5B2F1CD8B24F003A7094 /* NSObject+BANetwork.m */; };
C4EB5BCF1CD8B250003A7094 /* UIBarButtonItem+Item.m in Sources */ = {isa = PBXBuildFile; fileRef = C4EB5B311CD8B24F003A7094 /* UIBarButtonItem+Item.m */; };
C4EB5BD11CD8B250003A7094 /* UIViewController+BAAlertView.m in Sources */ = {isa = PBXBuildFile; fileRef = C4EB5B351CD8B24F003A7094 /* UIViewController+BAAlertView.m */; };
C4EB5BD21CD8B250003A7094 /* BABaseNetManager.m in Sources */ = {isa = PBXBuildFile; fileRef = C4EB5B3F1CD8B24F003A7094 /* BABaseNetManager.m */; };
C4EB5BD31CD8B250003A7094 /* BANewsNetManager.m in Sources */ = {isa = PBXBuildFile; fileRef = C4EB5B411CD8B24F003A7094 /* BANewsNetManager.m */; };
C4EB5BD41CD8B250003A7094 /* area.plist in Resources */ = {isa = PBXBuildFile; fileRef = C4EB5B461CD8B24F003A7094 /* area.plist */; };
C4EB5BD61CD8B250003A7094 /* img0.jpg in Resources */ = {isa = PBXBuildFile; fileRef = C4EB5B4A1CD8B24F003A7094 /* img0.jpg */; };
C4EB5BD71CD8B250003A7094 /* img1.jpg in Resources */ = {isa = PBXBuildFile; fileRef = C4EB5B4B1CD8B24F003A7094 /* img1.jpg */; };
C4EB5BD81CD8B250003A7094 /* img10.jpg in Resources */ = {isa = PBXBuildFile; fileRef = C4EB5B4C1CD8B24F003A7094 /* img10.jpg */; };
C4EB5BD91CD8B250003A7094 /* img11.jpg in Resources */ = {isa = PBXBuildFile; fileRef = C4EB5B4D1CD8B24F003A7094 /* img11.jpg */; };
C4EB5BDA1CD8B250003A7094 /* img12.jpg in Resources */ = {isa = PBXBuildFile; fileRef = C4EB5B4E1CD8B24F003A7094 /* img12.jpg */; };
C4EB5BDB1CD8B250003A7094 /* img13.jpg in Resources */ = {isa = PBXBuildFile; fileRef = C4EB5B4F1CD8B24F003A7094 /* img13.jpg */; };
C4EB5BDC1CD8B250003A7094 /* img14.jpg in Resources */ = {isa = PBXBuildFile; fileRef = C4EB5B501CD8B24F003A7094 /* img14.jpg */; };
C4EB5BDD1CD8B250003A7094 /* img2.jpg in Resources */ = {isa = PBXBuildFile; fileRef = C4EB5B511CD8B24F003A7094 /* img2.jpg */; };
C4EB5BDE1CD8B250003A7094 /* img3.jpg in Resources */ = {isa = PBXBuildFile; fileRef = C4EB5B521CD8B24F003A7094 /* img3.jpg */; };
C4EB5BDF1CD8B250003A7094 /* img4.jpg in Resources */ = {isa = PBXBuildFile; fileRef = C4EB5B531CD8B24F003A7094 /* img4.jpg */; };
C4EB5BE01CD8B250003A7094 /* img5.jpg in Resources */ = {isa = PBXBuildFile; fileRef = C4EB5B541CD8B24F003A7094 /* img5.jpg */; };
C4EB5BE11CD8B250003A7094 /* img6.jpg in Resources */ = {isa = PBXBuildFile; fileRef = C4EB5B551CD8B24F003A7094 /* img6.jpg */; };
C4EB5BE21CD8B250003A7094 /* img7.jpg in Resources */ = {isa = PBXBuildFile; fileRef = C4EB5B561CD8B24F003A7094 /* img7.jpg */; };
C4EB5BE31CD8B250003A7094 /* img8.jpg in Resources */ = {isa = PBXBuildFile; fileRef = C4EB5B571CD8B24F003A7094 /* img8.jpg */; };
C4EB5BE41CD8B250003A7094 /* img9.jpg in Resources */ = {isa = PBXBuildFile; fileRef = C4EB5B581CD8B24F003A7094 /* img9.jpg */; };
C4EB5BE51CD8B250003A7094 /* case_cell_Line@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = C4EB5B5A1CD8B24F003A7094 /* case_cell_Line@2x.png */; };
C4EB5BE61CD8B250003A7094 /* icon-10@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = C4EB5B5B1CD8B24F003A7094 /* icon-10@2x.png */; };
C4EB5BE71CD8B250003A7094 /* icon-1@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = C4EB5B5C1CD8B24F003A7094 /* icon-1@2x.png */; };
C4EB5BE81CD8B250003A7094 /* icon-2@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = C4EB5B5D1CD8B24F003A7094 /* icon-2@2x.png */; };
C4EB5BE91CD8B250003A7094 /* icon-3@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = C4EB5B5E1CD8B24F003A7094 /* icon-3@2x.png */; };
C4EB5BEA1CD8B250003A7094 /* icon-4@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = C4EB5B5F1CD8B24F003A7094 /* icon-4@2x.png */; };
C4EB5BEB1CD8B250003A7094 /* icon-5@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = C4EB5B601CD8B24F003A7094 /* icon-5@2x.png */; };
C4EB5BEC1CD8B250003A7094 /* icon-6@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = C4EB5B611CD8B24F003A7094 /* icon-6@2x.png */; };
C4EB5BED1CD8B250003A7094 /* icon-7@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = C4EB5B621CD8B24F003A7094 /* icon-7@2x.png */; };
C4EB5BEE1CD8B250003A7094 /* icon-8@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = C4EB5B631CD8B24F003A7094 /* icon-8@2x.png */; };
C4EB5BEF1CD8B250003A7094 /* icon-9@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = C4EB5B641CD8B24F003A7094 /* icon-9@2x.png */; };
C4EB5BF01CD8B250003A7094 /* icon-sjt@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = C4EB5B651CD8B24F003A7094 /* icon-sjt@2x.png */; };
C4EB5BF11CD8B250003A7094 /* icon-xjt@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = C4EB5B661CD8B24F003A7094 /* icon-xjt@2x.png */; };
C4EB5BF21CD8B250003A7094 /* gif1.gif in Resources */ = {isa = PBXBuildFile; fileRef = C4EB5B681CD8B24F003A7094 /* gif1.gif */; };
C4EB5BF31CD8B250003A7094 /* gif2.gif in Resources */ = {isa = PBXBuildFile; fileRef = C4EB5B691CD8B24F003A7094 /* gif2.gif */; };
C4EB5BF41CD8B250003A7094 /* 0.jpg in Resources */ = {isa = PBXBuildFile; fileRef = C4EB5B6C1CD8B24F003A7094 /* 0.jpg */; };
C4EB5BF51CD8B250003A7094 /* 1.jpg in Resources */ = {isa = PBXBuildFile; fileRef = C4EB5B6D1CD8B24F003A7094 /* 1.jpg */; };
C4EB5BF61CD8B250003A7094 /* 10.jpg in Resources */ = {isa = PBXBuildFile; fileRef = C4EB5B6E1CD8B24F003A7094 /* 10.jpg */; };
C4EB5BF71CD8B250003A7094 /* 11.jpg in Resources */ = {isa = PBXBuildFile; fileRef = C4EB5B6F1CD8B24F003A7094 /* 11.jpg */; };
C4EB5BF81CD8B250003A7094 /* 12.jpg in Resources */ = {isa = PBXBuildFile; fileRef = C4EB5B701CD8B24F003A7094 /* 12.jpg */; };
C4EB5BF91CD8B250003A7094 /* 13.jpg in Resources */ = {isa = PBXBuildFile; fileRef = C4EB5B711CD8B24F003A7094 /* 13.jpg */; };
C4EB5BFA1CD8B250003A7094 /* 14.jpg in Resources */ = {isa = PBXBuildFile; fileRef = C4EB5B721CD8B24F003A7094 /* 14.jpg */; };
C4EB5BFB1CD8B251003A7094 /* 15.jpg in Resources */ = {isa = PBXBuildFile; fileRef = C4EB5B731CD8B24F003A7094 /* 15.jpg */; };
C4EB5BFC1CD8B251003A7094 /* 16.jpg in Resources */ = {isa = PBXBuildFile; fileRef = C4EB5B741CD8B24F003A7094 /* 16.jpg */; };
C4EB5BFD1CD8B251003A7094 /* 17.jpg in Resources */ = {isa = PBXBuildFile; fileRef = C4EB5B751CD8B24F003A7094 /* 17.jpg */; };
C4EB5BFE1CD8B251003A7094 /* 18.jpg in Resources */ = {isa = PBXBuildFile; fileRef = C4EB5B761CD8B24F003A7094 /* 18.jpg */; };
C4EB5BFF1CD8B251003A7094 /* 19.jpg in Resources */ = {isa = PBXBuildFile; fileRef = C4EB5B771CD8B24F003A7094 /* 19.jpg */; };
C4EB5C001CD8B251003A7094 /* 2.jpg in Resources */ = {isa = PBXBuildFile; fileRef = C4EB5B781CD8B24F003A7094 /* 2.jpg */; };
C4EB5C011CD8B251003A7094 /* 20.jpg in Resources */ = {isa = PBXBuildFile; fileRef = C4EB5B791CD8B24F003A7094 /* 20.jpg */; };
C4EB5C021CD8B251003A7094 /* 21.jpg in Resources */ = {isa = PBXBuildFile; fileRef = C4EB5B7A1CD8B24F003A7094 /* 21.jpg */; };
C4EB5C031CD8B251003A7094 /* 22.jpg in Resources */ = {isa = PBXBuildFile; fileRef = C4EB5B7B1CD8B24F003A7094 /* 22.jpg */; };
C4EB5C041CD8B251003A7094 /* 23.jpg in Resources */ = {isa = PBXBuildFile; fileRef = C4EB5B7C1CD8B24F003A7094 /* 23.jpg */; };
C4EB5C051CD8B251003A7094 /* 3.jpg in Resources */ = {isa = PBXBuildFile; fileRef = C4EB5B7D1CD8B24F003A7094 /* 3.jpg */; };
C4EB5C061CD8B251003A7094 /* 4.jpg in Resources */ = {isa = PBXBuildFile; fileRef = C4EB5B7E1CD8B24F003A7094 /* 4.jpg */; };
C4EB5C071CD8B251003A7094 /* 5.jpg in Resources */ = {isa = PBXBuildFile; fileRef = C4EB5B7F1CD8B24F003A7094 /* 5.jpg */; };
C4EB5C081CD8B251003A7094 /* 6.jpg in Resources */ = {isa = PBXBuildFile; fileRef = C4EB5B801CD8B24F003A7094 /* 6.jpg */; };
C4EB5C091CD8B251003A7094 /* 7.jpg in Resources */ = {isa = PBXBuildFile; fileRef = C4EB5B811CD8B24F003A7094 /* 7.jpg */; };
C4EB5C0A1CD8B251003A7094 /* 8.jpg in Resources */ = {isa = PBXBuildFile; fileRef = C4EB5B821CD8B24F003A7094 /* 8.jpg */; };
C4EB5C0B1CD8B251003A7094 /* 9.jpg in Resources */ = {isa = PBXBuildFile; fileRef = C4EB5B831CD8B24F003A7094 /* 9.jpg */; };
C4EB5C0C1CD8B251003A7094 /* Home.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = C4EB5B841CD8B24F003A7094 /* Home.xcassets */; };
C4EB5C0D1CD8B251003A7094 /* icon0.jpg in Resources */ = {isa = PBXBuildFile; fileRef = C4EB5B851CD8B24F003A7094 /* icon0.jpg */; };
C4EB5C0E1CD8B251003A7094 /* icon1.jpg in Resources */ = {isa = PBXBuildFile; fileRef = C4EB5B861CD8B24F003A7094 /* icon1.jpg */; };
C4EB5C0F1CD8B251003A7094 /* icon2.jpg in Resources */ = {isa = PBXBuildFile; fileRef = C4EB5B871CD8B24F003A7094 /* icon2.jpg */; };
C4EB5C101CD8B251003A7094 /* icon3.jpg in Resources */ = {isa = PBXBuildFile; fileRef = C4EB5B881CD8B24F003A7094 /* icon3.jpg */; };
C4EB5C111CD8B251003A7094 /* icon4.jpg in Resources */ = {isa = PBXBuildFile; fileRef = C4EB5B891CD8B24F003A7094 /* icon4.jpg */; };
C4EB5C121CD8B251003A7094 /* pbg.jpg in Resources */ = {isa = PBXBuildFile; fileRef = C4EB5B8A1CD8B24F003A7094 /* pbg.jpg */; };
C4EB5C131CD8B251003A7094 /* pic0.jpg in Resources */ = {isa = PBXBuildFile; fileRef = C4EB5B8B1CD8B24F003A7094 /* pic0.jpg */; };
C4EB5C141CD8B251003A7094 /* pic1.jpg in Resources */ = {isa = PBXBuildFile; fileRef = C4EB5B8C1CD8B24F003A7094 /* pic1.jpg */; };
C4EB5C151CD8B251003A7094 /* pic2.jpg in Resources */ = {isa = PBXBuildFile; fileRef = C4EB5B8D1CD8B24F003A7094 /* pic2.jpg */; };
C4EB5C161CD8B251003A7094 /* pic3.jpg in Resources */ = {isa = PBXBuildFile; fileRef = C4EB5B8E1CD8B24F003A7094 /* pic3.jpg */; };
C4EB5C171CD8B251003A7094 /* pic4.jpg in Resources */ = {isa = PBXBuildFile; fileRef = C4EB5B8F1CD8B24F003A7094 /* pic4.jpg */; };
C4EB5C181CD8B251003A7094 /* pic5.jpg in Resources */ = {isa = PBXBuildFile; fileRef = C4EB5B901CD8B250003A7094 /* pic5.jpg */; };
C4EB5C191CD8B251003A7094 /* pic6.jpg in Resources */ = {isa = PBXBuildFile; fileRef = C4EB5B911CD8B250003A7094 /* pic6.jpg */; };
C4EB5C1A1CD8B251003A7094 /* pic7.jpg in Resources */ = {isa = PBXBuildFile; fileRef = C4EB5B921CD8B250003A7094 /* pic7.jpg */; };
C4EB5C1B1CD8B251003A7094 /* pic8.jpg in Resources */ = {isa = PBXBuildFile; fileRef = C4EB5B931CD8B250003A7094 /* pic8.jpg */; };
C4EB5C1C1CD8B251003A7094 /* picon.jpg in Resources */ = {isa = PBXBuildFile; fileRef = C4EB5B941CD8B250003A7094 /* picon.jpg */; };
C4EB5C1D1CD8B251003A7094 /* test0.jpg in Resources */ = {isa = PBXBuildFile; fileRef = C4EB5B961CD8B250003A7094 /* test0.jpg */; };
C4EB5C1E1CD8B251003A7094 /* test1.jpg in Resources */ = {isa = PBXBuildFile; fileRef = C4EB5B971CD8B250003A7094 /* test1.jpg */; };
C4EB5C1F1CD8B251003A7094 /* test2.jpg in Resources */ = {isa = PBXBuildFile; fileRef = C4EB5B981CD8B250003A7094 /* test2.jpg */; };
C4EB5C201CD8B251003A7094 /* test3.jpg in Resources */ = {isa = PBXBuildFile; fileRef = C4EB5B991CD8B250003A7094 /* test3.jpg */; };
C4EB5C211CD8B251003A7094 /* test4.jpg in Resources */ = {isa = PBXBuildFile; fileRef = C4EB5B9A1CD8B250003A7094 /* test4.jpg */; };
C4EB5C221CD8B251003A7094 /* ball.png in Resources */ = {isa = PBXBuildFile; fileRef = C4EB5B9C1CD8B250003A7094 /* ball.png */; };
C4EB5C231CD8B251003A7094 /* fire.png in Resources */ = {isa = PBXBuildFile; fileRef = C4EB5B9D1CD8B250003A7094 /* fire.png */; };
C4EB5C241CD8B251003A7094 /* snow2.png in Resources */ = {isa = PBXBuildFile; fileRef = C4EB5B9E1CD8B250003A7094 /* snow2.png */; };
C4EB5C251CD8B251003A7094 /* snowbg.jpg in Resources */ = {isa = PBXBuildFile; fileRef = C4EB5B9F1CD8B250003A7094 /* snowbg.jpg */; };
C4EB5C261CD8B251003A7094 /* 樱花树1.jpg in Resources */ = {isa = PBXBuildFile; fileRef = C4EB5BA01CD8B250003A7094 /* 樱花树1.jpg */; };
C4EB5C271CD8B251003A7094 /* 樱花树2.jpg in Resources */ = {isa = PBXBuildFile; fileRef = C4EB5BA11CD8B250003A7094 /* 樱花树2.jpg */; };
C4EB5C281CD8B251003A7094 /* 樱花树3.jpg in Resources */ = {isa = PBXBuildFile; fileRef = C4EB5BA21CD8B250003A7094 /* 樱花树3.jpg */; };
C4EB5C291CD8B251003A7094 /* 樱花瓣1.jpg in Resources */ = {isa = PBXBuildFile; fileRef = C4EB5BA31CD8B250003A7094 /* 樱花瓣1.jpg */; };
C4EB5C2A1CD8B251003A7094 /* 樱花瓣2.jpg in Resources */ = {isa = PBXBuildFile; fileRef = C4EB5BA41CD8B250003A7094 /* 樱花瓣2.jpg */; };
C4EB5C2B1CD8B251003A7094 /* 烟花背景.jpg in Resources */ = {isa = PBXBuildFile; fileRef = C4EB5BA51CD8B250003A7094 /* 烟花背景.jpg */; };
C4EB5C2C1CD8B251003A7094 /* 金元宝.png in Resources */ = {isa = PBXBuildFile; fileRef = C4EB5BA61CD8B250003A7094 /* 金元宝.png */; };
C4EB5C2D1CD8B251003A7094 /* 雪花.png in Resources */ = {isa = PBXBuildFile; fileRef = C4EB5BA71CD8B250003A7094 /* 雪花.png */; };
C4EE1C5E1D2288BF005046A6 /* DemoVC2_01.m in Sources */ = {isa = PBXBuildFile; fileRef = C4EE1C5D1D2288BF005046A6 /* DemoVC2_01.m */; };
C4EE1C611D228AE9005046A6 /* DemoVC2_01_Model.m in Sources */ = {isa = PBXBuildFile; fileRef = C4EE1C601D228AE9005046A6 /* DemoVC2_01_Model.m */; };
C4EE1C651D228E34005046A6 /* NSString+BAKit.m in Sources */ = {isa = PBXBuildFile; fileRef = C4EE1C641D228E34005046A6 /* NSString+BAKit.m */; };
C4EE1C691D2295E2005046A6 /* BACellDataAdapter.m in Sources */ = {isa = PBXBuildFile; fileRef = C4EE1C681D2295E2005046A6 /* BACellDataAdapter.m */; };
C4F59F871D54680E00AA822A /* BANewFeatureVC.m in Sources */ = {isa = PBXBuildFile; fileRef = C4F59F861D54680E00AA822A /* BANewFeatureVC.m */; };
C4F59F8A1D54684E00AA822A /* BAADScrollView.m in Sources */ = {isa = PBXBuildFile; fileRef = C4F59F891D54684E00AA822A /* BAADScrollView.m */; };
C4F59F8D1D5468B900AA822A /* BAADLabel.m in Sources */ = {isa = PBXBuildFile; fileRef = C4F59F8C1D5468B900AA822A /* BAADLabel.m */; };
C4F74A881D37BDEB0014C396 /* BAClearCacheManager.m in Sources */ = {isa = PBXBuildFile; fileRef = C4F74A871D37BDEB0014C396 /* BAClearCacheManager.m */; };
C4F74A9C1D37C1BD0014C396 /* BALocalNotification.m in Sources */ = {isa = PBXBuildFile; fileRef = C4F74A8B1D37C1BD0014C396 /* BALocalNotification.m */; };
C4F74A9D1D37C1BD0014C396 /* BACustomBarItem.m in Sources */ = {isa = PBXBuildFile; fileRef = C4F74A8E1D37C1BD0014C396 /* BACustomBarItem.m */; };
C4F74A9E1D37C1BD0014C396 /* UINavigationItem+CustomItem.m in Sources */ = {isa = PBXBuildFile; fileRef = C4F74A901D37C1BD0014C396 /* UINavigationItem+CustomItem.m */; };
C4F74A9F1D37C1BD0014C396 /* HMSegmentedControl.m in Sources */ = {isa = PBXBuildFile; fileRef = C4F74A931D37C1BD0014C396 /* HMSegmentedControl.m */; };
C4F74AA01D37C1BD0014C396 /* BAShareAnimationView.m in Sources */ = {isa = PBXBuildFile; fileRef = C4F74A961D37C1BD0014C396 /* BAShareAnimationView.m */; };
C4F74AA11D37C1BD0014C396 /* BAShareManage.m in Sources */ = {isa = PBXBuildFile; fileRef = C4F74A981D37C1BD0014C396 /* BAShareManage.m */; };
C4F74AA21D37C1BD0014C396 /* BAShareManageView.m in Sources */ = {isa = PBXBuildFile; fileRef = C4F74A9A1D37C1BD0014C396 /* BAShareManageView.m */; };
C4F74AA31D37C1BD0014C396 /* BASharManager.bundle in Resources */ = {isa = PBXBuildFile; fileRef = C4F74A9B1D37C1BD0014C396 /* BASharManager.bundle */; };
E1C6EFD156F8206BA6582EBE /* libPods-BABaseProject.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 46504BE330E8BECB1887138B /* libPods-BABaseProject.a */; };
/* End PBXBuildFile section */
/* Begin PBXContainerItemProxy section */
C4EB5ABA1CD8B04B003A7094 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = C4EB5A981CD8B04B003A7094 /* Project object */;
proxyType = 1;
remoteGlobalIDString = C4EB5A9F1CD8B04B003A7094;
remoteInfo = BABaseProject;
};
C4EB5AC51CD8B04B003A7094 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = C4EB5A981CD8B04B003A7094 /* Project object */;
proxyType = 1;
remoteGlobalIDString = C4EB5A9F1CD8B04B003A7094;
remoteInfo = BABaseProject;
};
/* End PBXContainerItemProxy section */
/* Begin PBXFileReference section */
0C9CD344414868DF018ED31B /* Pods-BABaseProjectUITests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-BABaseProjectUITests.release.xcconfig"; path = "Pods/Target Support Files/Pods-BABaseProjectUITests/Pods-BABaseProjectUITests.release.xcconfig"; sourceTree = "<group>"; };
1574EF9FCBB113FDCC972156 /* libPods-BABaseProjectTests.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libPods-BABaseProjectTests.a"; sourceTree = BUILT_PRODUCTS_DIR; };
46504BE330E8BECB1887138B /* libPods-BABaseProject.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libPods-BABaseProject.a"; sourceTree = BUILT_PRODUCTS_DIR; };
4AD2C0DE7422AACAB30B1B51 /* Pods-BABaseProject.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-BABaseProject.debug.xcconfig"; path = "Pods/Target Support Files/Pods-BABaseProject/Pods-BABaseProject.debug.xcconfig"; sourceTree = "<group>"; };
4E9FC567E3607A554D963AC3 /* Pods-BABaseProject-BABaseProjectUITests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-BABaseProject-BABaseProjectUITests.release.xcconfig"; path = "Pods/Target Support Files/Pods-BABaseProject-BABaseProjectUITests/Pods-BABaseProject-BABaseProjectUITests.release.xcconfig"; sourceTree = "<group>"; };
77795B692E80399FDA1BD963 /* libPods-BABaseProjectUITests.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libPods-BABaseProjectUITests.a"; sourceTree = BUILT_PRODUCTS_DIR; };
7E6875B539C22C6BAC2A5D03 /* Pods-BABaseProject.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-BABaseProject.release.xcconfig"; path = "Pods/Target Support Files/Pods-BABaseProject/Pods-BABaseProject.release.xcconfig"; sourceTree = "<group>"; };
85433259C94DA94EF8BE73D7 /* Pods-BABaseProjectTests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-BABaseProjectTests.release.xcconfig"; path = "Pods/Target Support Files/Pods-BABaseProjectTests/Pods-BABaseProjectTests.release.xcconfig"; sourceTree = "<group>"; };
9F749E1D19424B075A7198FF /* Pods-BABaseProject-BABaseProjectTests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-BABaseProject-BABaseProjectTests.release.xcconfig"; path = "Pods/Target Support Files/Pods-BABaseProject-BABaseProjectTests/Pods-BABaseProject-BABaseProjectTests.release.xcconfig"; sourceTree = "<group>"; };
AE682D062D927BDA40F4BE28 /* Pods-BABaseProject-BABaseProjectTests.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-BABaseProject-BABaseProjectTests.debug.xcconfig"; path = "Pods/Target Support Files/Pods-BABaseProject-BABaseProjectTests/Pods-BABaseProject-BABaseProjectTests.debug.xcconfig"; sourceTree = "<group>"; };
B1C444FFA4B8F0D1E86C9B57 /* Pods-BABaseProject-BABaseProjectUITests.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-BABaseProject-BABaseProjectUITests.debug.xcconfig"; path = "Pods/Target Support Files/Pods-BABaseProject-BABaseProjectUITests/Pods-BABaseProject-BABaseProjectUITests.debug.xcconfig"; sourceTree = "<group>"; };
B703AA4647AF54EFA05E072A /* Pods-BABaseProjectTests.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-BABaseProjectTests.debug.xcconfig"; path = "Pods/Target Support Files/Pods-BABaseProjectTests/Pods-BABaseProjectTests.debug.xcconfig"; sourceTree = "<group>"; };
BF87F3C10B89949A3DB1CDEC /* libPods-BABaseProject-BABaseProjectTests.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libPods-BABaseProject-BABaseProjectTests.a"; sourceTree = BUILT_PRODUCTS_DIR; };
C408527A1CD990B00004A671 /* BABaseTableViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = BABaseTableViewController.h; sourceTree = "<group>"; };
C408527B1CD990B00004A671 /* BABaseTableViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = BABaseTableViewController.m; sourceTree = "<group>"; };
C408527E1CD995200004A671 /* Reachability.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Reachability.h; sourceTree = "<group>"; };
C408527F1CD995200004A671 /* Reachability.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = Reachability.m; sourceTree = "<group>"; };
C40852861CD9C34F0004A671 /* BABaseView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = BABaseView.h; sourceTree = "<group>"; };
C40852871CD9C34F0004A671 /* BABaseView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = BABaseView.m; sourceTree = "<group>"; };
C40852991CD9CD860004A671 /* Lato-Bold.ttf */ = {isa = PBXFileReference; lastKnownFileType = file; path = "Lato-Bold.ttf"; sourceTree = "<group>"; };
C408529A1CD9CD860004A671 /* Lato-Light.ttf */ = {isa = PBXFileReference; lastKnownFileType = file; path = "Lato-Light.ttf"; sourceTree = "<group>"; };
C408529B1CD9CD860004A671 /* Lato-Regular.ttf */ = {isa = PBXFileReference; lastKnownFileType = file; path = "Lato-Regular.ttf"; sourceTree = "<group>"; };
C408529C1CD9CD860004A671 /* Lato-Thin.ttf */ = {isa = PBXFileReference; lastKnownFileType = file; path = "Lato-Thin.ttf"; sourceTree = "<group>"; };
C408529D1CD9CD860004A671 /* Lato-ThinItalic.ttf */ = {isa = PBXFileReference; lastKnownFileType = file; path = "Lato-ThinItalic.ttf"; sourceTree = "<group>"; };
C40852A31CD9CD9A0004A671 /* AddedFont.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AddedFont.h; sourceTree = "<group>"; };
C40852A71CD9FD750004A671 /* BAHomeViewCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = BAHomeViewCell.h; sourceTree = "<group>"; };
C40852A81CD9FD750004A671 /* BAHomeViewCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = BAHomeViewCell.m; sourceTree = "<group>"; };
C40852AB1CD9FDD50004A671 /* BAHomeVCModel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = BAHomeVCModel.h; sourceTree = "<group>"; };
C40852AC1CD9FDD50004A671 /* BAHomeVCModel.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = BAHomeVCModel.m; sourceTree = "<group>"; };
C40852B61CDA08F10004A671 /* DemoVC1.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = DemoVC1.h; sourceTree = "<group>"; };
C40852B71CDA08F10004A671 /* DemoVC1.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = DemoVC1.m; sourceTree = "<group>"; };
C40852BA1CDA09100004A671 /* DemoVC2.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = DemoVC2.h; sourceTree = "<group>"; };
C40852BB1CDA09100004A671 /* DemoVC2.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = DemoVC2.m; sourceTree = "<group>"; };
C40852E11CDA229B0004A671 /* BANavigationController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = BANavigationController.h; sourceTree = "<group>"; };
C40852E21CDA229B0004A671 /* BANavigationController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = BANavigationController.m; sourceTree = "<group>"; };
C40852E41CDA263B0004A671 /* RDVTabBarItem.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = RDVTabBarItem.h; sourceTree = "<group>"; };
C40852E51CDA263B0004A671 /* RDVTabBarItem.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = RDVTabBarItem.m; sourceTree = "<group>"; };
C40852E61CDA263B0004A671 /* RDVTabBar.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = RDVTabBar.h; sourceTree = "<group>"; };
C40852E71CDA263B0004A671 /* RDVTabBar.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = RDVTabBar.m; sourceTree = "<group>"; };
C40852EA1CDA26680004A671 /* RDVTabBarController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = RDVTabBarController.h; sourceTree = "<group>"; };
C40852EB1CDA26680004A671 /* RDVTabBarController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = RDVTabBarController.m; sourceTree = "<group>"; };
C41CA8C21D3FA049006296BD /* DemoVC2_02_studentModel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = DemoVC2_02_studentModel.h; sourceTree = "<group>"; };
C41CA8C31D3FA049006296BD /* DemoVC2_02_studentModel.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = DemoVC2_02_studentModel.m; sourceTree = "<group>"; };
C41CA8C51D3FA185006296BD /* DemoVC2_02_classModel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = DemoVC2_02_classModel.h; sourceTree = "<group>"; };
C41CA8C61D3FA185006296BD /* DemoVC2_02_classModel.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = DemoVC2_02_classModel.m; sourceTree = "<group>"; };
C41CA8C81D3FA3BF006296BD /* DemoVC2_02_studentCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = DemoVC2_02_studentCell.h; sourceTree = "<group>"; };
C41CA8C91D3FA3BF006296BD /* DemoVC2_02_studentCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = DemoVC2_02_studentCell.m; sourceTree = "<group>"; };
C41F62541CFC250500294C35 /* DemoVC10Cell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = DemoVC10Cell.h; sourceTree = "<group>"; };
C41F62551CFC250500294C35 /* DemoVC10Cell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = DemoVC10Cell.m; sourceTree = "<group>"; };
C41F62571CFC253600294C35 /* DemoVC10Model.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = DemoVC10Model.h; sourceTree = "<group>"; };
C41F62581CFC253600294C35 /* DemoVC10Model.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = DemoVC10Model.m; sourceTree = "<group>"; };
C41F625A1CFC265300294C35 /* DemoVC10_ReusableView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = DemoVC10_ReusableView.h; sourceTree = "<group>"; };
C41F625B1CFC265300294C35 /* DemoVC10_ReusableView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = DemoVC10_ReusableView.m; sourceTree = "<group>"; };
C423217D1CE72ABC00D91F45 /* DemoVC6.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = DemoVC6.h; sourceTree = "<group>"; };
C423217E1CE72ABC00D91F45 /* DemoVC6.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = DemoVC6.m; sourceTree = "<group>"; };
C427811B1D2D2881003E6694 /* BABaseCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = BABaseCell.h; sourceTree = "<group>"; };
C427811C1D2D2881003E6694 /* BABaseCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = BABaseCell.m; sourceTree = "<group>"; };
C427811E1D2D315B003E6694 /* BABaseCollectionCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = BABaseCollectionCell.h; sourceTree = "<group>"; };
C427811F1D2D315B003E6694 /* BABaseCollectionCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = BABaseCollectionCell.m; sourceTree = "<group>"; };
C42781211D2D338F003E6694 /* DemoVC2_01_cell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = DemoVC2_01_cell.h; sourceTree = "<group>"; };
C42781221D2D338F003E6694 /* DemoVC2_01_cell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = DemoVC2_01_cell.m; sourceTree = "<group>"; };
C42781251D2D39B1003E6694 /* GCD.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = GCD.h; sourceTree = "<group>"; };
C42781261D2D39B1003E6694 /* GCDGroup.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = GCDGroup.h; sourceTree = "<group>"; };
C42781271D2D39B1003E6694 /* GCDGroup.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = GCDGroup.m; sourceTree = "<group>"; };
C42781281D2D39B1003E6694 /* GCDQueue.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = GCDQueue.h; sourceTree = "<group>"; };
C42781291D2D39B1003E6694 /* GCDQueue.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = GCDQueue.m; sourceTree = "<group>"; };
C427812A1D2D39B1003E6694 /* GCDSemaphore.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = GCDSemaphore.h; sourceTree = "<group>"; };
C427812B1D2D39B1003E6694 /* GCDSemaphore.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = GCDSemaphore.m; sourceTree = "<group>"; };
C427812C1D2D39B1003E6694 /* GCDTimer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = GCDTimer.h; sourceTree = "<group>"; };
C427812D1D2D39B1003E6694 /* GCDTimer.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = GCDTimer.m; sourceTree = "<group>"; };
C42A6ADD1CDAE10500D534EE /* BATabBar.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = BATabBar.h; sourceTree = "<group>"; };
C42A6ADE1CDAE10500D534EE /* BATabBar.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = BATabBar.m; sourceTree = "<group>"; };
C42A6ADF1CDAE10500D534EE /* BATabBarButton.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = BATabBarButton.h; sourceTree = "<group>"; };
C42A6AE01CDAE10500D534EE /* BATabBarButton.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = BATabBarButton.m; sourceTree = "<group>"; };
C42A6AE11CDAE10500D534EE /* BABadgeView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = BABadgeView.h; sourceTree = "<group>"; };
C42A6AE21CDAE10500D534EE /* BABadgeView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = BABadgeView.m; sourceTree = "<group>"; };
C42A6AE61CDAE10D00D534EE /* BATabBarController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = BATabBarController.h; sourceTree = "<group>"; };
C42A6AE71CDAE10D00D534EE /* BATabBarController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = BATabBarController.m; sourceTree = "<group>"; };
C42DAA411D37269300FE8B3E /* DemoVC2_03.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = DemoVC2_03.h; sourceTree = "<group>"; };
C42DAA421D37269300FE8B3E /* DemoVC2_03.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = DemoVC2_03.m; sourceTree = "<group>"; };
C42DAA441D3763A700FE8B3E /* discoverVC.bundle */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.plug-in"; path = discoverVC.bundle; sourceTree = "<group>"; };
C42DAA451D3763A700FE8B3E /* homeVC.bundle */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.plug-in"; path = homeVC.bundle; sourceTree = "<group>"; };
C42DAA461D3763A700FE8B3E /* messageVC.bundle */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.plug-in"; path = messageVC.bundle; sourceTree = "<group>"; };
C42DAA471D3763A700FE8B3E /* profileVC.bundle */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.plug-in"; path = profileVC.bundle; sourceTree = "<group>"; };
C42DAA4C1D37669C00FE8B3E /* otherImages.bundle */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.plug-in"; path = otherImages.bundle; sourceTree = "<group>"; };
C430AB741CDC8A360086DDD6 /* DemoVC3.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = DemoVC3.h; sourceTree = "<group>"; };
C430AB751CDC8A360086DDD6 /* DemoVC3.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = DemoVC3.m; sourceTree = "<group>"; };
C44423241D2E5D66004ACAA8 /* BAKitManager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = BAKitManager.h; sourceTree = "<group>"; };
C44423251D2E5D66004ACAA8 /* BAKitManager.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = BAKitManager.m; sourceTree = "<group>"; };
C44423281D2E5E07004ACAA8 /* BAKitManager+BALabel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "BAKitManager+BALabel.h"; sourceTree = "<group>"; };
C44423291D2E5E07004ACAA8 /* BAKitManager+BALabel.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "BAKitManager+BALabel.m"; sourceTree = "<group>"; };
C444232C1D2E738A004ACAA8 /* BAAlertView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = BAAlertView.h; sourceTree = "<group>"; };
C444232D1D2E738A004ACAA8 /* BAAlertView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = BAAlertView.m; sourceTree = "<group>"; };
C444232E1D2E738A004ACAA8 /* BAModal.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = BAModal.h; sourceTree = "<group>"; };
C444232F1D2E738A004ACAA8 /* BAModal.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = BAModal.m; sourceTree = "<group>"; };
C44423321D2E7775004ACAA8 /* BABaseHeaderFooterView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = BABaseHeaderFooterView.h; sourceTree = "<group>"; };
C44423331D2E7775004ACAA8 /* BABaseHeaderFooterView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = BABaseHeaderFooterView.m; sourceTree = "<group>"; };
C44423361D2E7E69004ACAA8 /* UIView+BARotateAnimationProtocol.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIView+BARotateAnimationProtocol.h"; sourceTree = "<group>"; };
C44423371D2E7E69004ACAA8 /* UIView+BARotateAnimationProtocol.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIView+BARotateAnimationProtocol.m"; sourceTree = "<group>"; };
C44423401D2E81AC004ACAA8 /* BARotateAnimationProtocol.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = BARotateAnimationProtocol.h; sourceTree = "<group>"; };
C44423431D2E824D004ACAA8 /* BARotateView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = BARotateView.h; sourceTree = "<group>"; };
C44423441D2E824D004ACAA8 /* BARotateView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = BARotateView.m; sourceTree = "<group>"; };
C44423471D2E85B8004ACAA8 /* DemoVC2_02.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = DemoVC2_02.h; sourceTree = "<group>"; };
C44423481D2E85B8004ACAA8 /* DemoVC2_02.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = DemoVC2_02.m; sourceTree = "<group>"; };
C444234A1D2E8680004ACAA8 /* DemoVC2_02_HeaderView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = DemoVC2_02_HeaderView.h; sourceTree = "<group>"; };
C444234B1D2E8680004ACAA8 /* DemoVC2_02_HeaderView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = DemoVC2_02_HeaderView.m; sourceTree = "<group>"; };
C445E1C01D1B86FE00D7654A /* SXColorGradientView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SXColorGradientView.h; sourceTree = "<group>"; };
C445E1C11D1B86FE00D7654A /* SXColorGradientView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SXColorGradientView.m; sourceTree = "<group>"; };
C445E1C21D1B86FE00D7654A /* SXColorLabel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SXColorLabel.h; sourceTree = "<group>"; };
C445E1C31D1B86FE00D7654A /* SXColorLabel.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SXColorLabel.m; sourceTree = "<group>"; };
C445E1C41D1B86FE00D7654A /* SXHeadLine.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SXHeadLine.h; sourceTree = "<group>"; };
C445E1C51D1B86FE00D7654A /* SXHeadLine.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SXHeadLine.m; sourceTree = "<group>"; };
C445E1C61D1B86FE00D7654A /* SXMarquee.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SXMarquee.h; sourceTree = "<group>"; };
C445E1C71D1B86FE00D7654A /* SXMarquee.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SXMarquee.m; sourceTree = "<group>"; };
C445E1C81D1B86FE00D7654A /* UIColor+Separate.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIColor+Separate.h"; sourceTree = "<group>"; };
C445E1C91D1B86FE00D7654A /* UIColor+Separate.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIColor+Separate.m"; sourceTree = "<group>"; };
C445E1CA1D1B86FE00D7654A /* UIColor+Wonderful.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIColor+Wonderful.h"; sourceTree = "<group>"; };
C445E1CB1D1B86FE00D7654A /* UIColor+Wonderful.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIColor+Wonderful.m"; sourceTree = "<group>"; };
C445E1CC1D1B86FE00D7654A /* UILabel+Wonderful.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UILabel+Wonderful.h"; sourceTree = "<group>"; };
C445E1CD1D1B86FE00D7654A /* UILabel+Wonderful.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UILabel+Wonderful.m"; sourceTree = "<group>"; };
C445E1F31D1BF10A00D7654A /* DemoVC13.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = DemoVC13.h; sourceTree = "<group>"; };
C445E1F41D1BF10A00D7654A /* DemoVC13.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = DemoVC13.m; sourceTree = "<group>"; };
C4562C641CDD8969000F5710 /* BABaseProjectNoti.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = BABaseProjectNoti.h; sourceTree = "<group>"; };
C4562C691CDD9F05000F5710 /* DemoVC4.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = DemoVC4.h; sourceTree = "<group>"; };
C4562C6A1CDD9F05000F5710 /* DemoVC4.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = DemoVC4.m; sourceTree = "<group>"; };
C4562C7C1CDDBE44000F5710 /* DemoVC5.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = DemoVC5.h; sourceTree = "<group>"; };
C4562C7D1CDDBE44000F5710 /* DemoVC5.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = DemoVC5.m; sourceTree = "<group>"; };
C46B89F71CE055DD00005E2B /* DemoVC5Cell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = DemoVC5Cell.h; sourceTree = "<group>"; };
C46B89F81CE055DD00005E2B /* DemoVC5Cell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = DemoVC5Cell.m; sourceTree = "<group>"; };
C46B89FA1CE0AE3400005E2B /* DemoVC5_TextPart.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = DemoVC5_TextPart.h; sourceTree = "<group>"; };
C46B89FB1CE0AE3400005E2B /* DemoVC5_TextPart.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = DemoVC5_TextPart.m; sourceTree = "<group>"; };
C46B8A021CE0BAC200005E2B /* RegexKitLite.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = RegexKitLite.h; sourceTree = "<group>"; };
C46B8A031CE0BAC200005E2B /* RegexKitLite.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = RegexKitLite.m; sourceTree = "<group>"; };
C46B8A051CE0BB7D00005E2B /* libicucore.tbd */ = {isa = PBXFileReference; lastKnownFileType = "sourcecode.text-based-dylib-definition"; name = libicucore.tbd; path = usr/lib/libicucore.tbd; sourceTree = SDKROOT; };
C46C5AB71CDB75B9002F707F /* BAHomeViewModel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = BAHomeViewModel.h; sourceTree = "<group>"; };
C46C5AB81CDB75B9002F707F /* BAHomeViewModel.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = BAHomeViewModel.m; sourceTree = "<group>"; };
C473CC771CF72372001883A9 /* DemoVC9.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = DemoVC9.h; sourceTree = "<group>"; };
C473CC781CF72372001883A9 /* DemoVC9.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = DemoVC9.m; sourceTree = "<group>"; };
C473CC7A1CF72439001883A9 /* BACollectionView.bundle */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.plug-in"; path = BACollectionView.bundle; sourceTree = "<group>"; };
C473CC7F1CF72960001883A9 /* DemoVC9_Model.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = DemoVC9_Model.h; sourceTree = "<group>"; };
C473CC801CF72960001883A9 /* DemoVC9_Model.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = DemoVC9_Model.m; sourceTree = "<group>"; };
C48026BF1D191EC90087BBB9 /* DemoVC11.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = DemoVC11.h; sourceTree = "<group>"; };
C48026C01D191EC90087BBB9 /* DemoVC11.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = DemoVC11.m; sourceTree = "<group>"; };
C48026C11D191EC90087BBB9 /* DemoVC11_AutoLayout.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = DemoVC11_AutoLayout.h; sourceTree = "<group>"; };
C48026C21D191EC90087BBB9 /* DemoVC11_AutoLayout.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = DemoVC11_AutoLayout.m; sourceTree = "<group>"; };
C48026C31D191EC90087BBB9 /* DemoVC11_Cell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = DemoVC11_Cell.h; sourceTree = "<group>"; };
C48026C41D191EC90087BBB9 /* DemoVC11_Cell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = DemoVC11_Cell.m; sourceTree = "<group>"; };
C48026C51D191EC90087BBB9 /* DemoVC11_model.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = DemoVC11_model.h; sourceTree = "<group>"; };
C48026C61D191EC90087BBB9 /* DemoVC11_model.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = DemoVC11_model.m; sourceTree = "<group>"; };
C48026CC1D191F720087BBB9 /* DemoVC12.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = DemoVC12.h; sourceTree = "<group>"; };
C48026CD1D191F720087BBB9 /* DemoVC12.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = DemoVC12.m; sourceTree = "<group>"; };
C48026CF1D1920110087BBB9 /* DemoVC12View.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = DemoVC12View.h; sourceTree = "<group>"; };
C48026D01D1920110087BBB9 /* DemoVC12View.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = DemoVC12View.m; sourceTree = "<group>"; };
C48026D41D1928290087BBB9 /* BAAPP.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = BAAPP.h; sourceTree = "<group>"; };
C48026D51D1928290087BBB9 /* BAAPP.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = BAAPP.m; sourceTree = "<group>"; };
C48026D61D1928290087BBB9 /* BAAutoSizeWithWH.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = BAAutoSizeWithWH.h; sourceTree = "<group>"; };
C48026D71D1928290087BBB9 /* BAAutoSizeWithWH.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = BAAutoSizeWithWH.m; sourceTree = "<group>"; };
C48026D81D1928290087BBB9 /* BALog.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = BALog.h; sourceTree = "<group>"; };
C48026D91D1928290087BBB9 /* BALog.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = BALog.m; sourceTree = "<group>"; };
C48026DC1D1928290087BBB9 /* BAPassword.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = BAPassword.h; sourceTree = "<group>"; };
C48026DD1D1928290087BBB9 /* BAPassword.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = BAPassword.m; sourceTree = "<group>"; };
C48026DE1D1928290087BBB9 /* BARegularExpression.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = BARegularExpression.h; sourceTree = "<group>"; };
C48026DF1D1928290087BBB9 /* BARegularExpression.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = BARegularExpression.m; sourceTree = "<group>"; };
C48026E21D1928290087BBB9 /* BASystemSound.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = BASystemSound.h; sourceTree = "<group>"; };
C48026E31D1928290087BBB9 /* BASystemSound.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = BASystemSound.m; sourceTree = "<group>"; };
C48026E41D1928290087BBB9 /* BATouchID.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = BATouchID.h; sourceTree = "<group>"; };
C48026E51D1928290087BBB9 /* BATouchID.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = BATouchID.m; sourceTree = "<group>"; };
C48026E61D1928290087BBB9 /* BAKit.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = BAKit.h; sourceTree = "<group>"; };
C48026E81D1928290087BBB9 /* NSArray+BAKit.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSArray+BAKit.h"; sourceTree = "<group>"; };
C48026E91D1928290087BBB9 /* NSArray+BAKit.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSArray+BAKit.m"; sourceTree = "<group>"; };
C48026EA1D1928290087BBB9 /* NSData+BAKit.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSData+BAKit.h"; sourceTree = "<group>"; };
C48026EB1D1928290087BBB9 /* NSData+BAKit.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSData+BAKit.m"; sourceTree = "<group>"; };
C48026EC1D1928290087BBB9 /* NSDate+BAKit.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSDate+BAKit.h"; sourceTree = "<group>"; };
C48026ED1D1928290087BBB9 /* NSDate+BAKit.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSDate+BAKit.m"; sourceTree = "<group>"; };
C48026EE1D1928290087BBB9 /* NSDictionary+BAKit.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSDictionary+BAKit.h"; sourceTree = "<group>"; };
C48026EF1D1928290087BBB9 /* NSDictionary+BAKit.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSDictionary+BAKit.m"; sourceTree = "<group>"; };
C48026F01D1928290087BBB9 /* NSFileManager+BAKit.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSFileManager+BAKit.h"; sourceTree = "<group>"; };
C48026F11D1928290087BBB9 /* NSFileManager+BAKit.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSFileManager+BAKit.m"; sourceTree = "<group>"; };
C48026F21D1928290087BBB9 /* NSMutableArray+BAKit.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSMutableArray+BAKit.h"; sourceTree = "<group>"; };
C48026F31D1928290087BBB9 /* NSMutableArray+BAKit.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSMutableArray+BAKit.m"; sourceTree = "<group>"; };
C48026F41D1928290087BBB9 /* NSMutableDictionary+BAKit.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSMutableDictionary+BAKit.h"; sourceTree = "<group>"; };
C48026F51D1928290087BBB9 /* NSMutableDictionary+BAKit.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSMutableDictionary+BAKit.m"; sourceTree = "<group>"; };
C48026F61D1928290087BBB9 /* NSNumber+BAKit.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSNumber+BAKit.h"; sourceTree = "<group>"; };
C48026F71D1928290087BBB9 /* NSNumber+BAKit.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSNumber+BAKit.m"; sourceTree = "<group>"; };
C48026F81D1928290087BBB9 /* NSProcessInfo+BAKit.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSProcessInfo+BAKit.h"; sourceTree = "<group>"; };
C48026F91D1928290087BBB9 /* NSProcessInfo+BAKit.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSProcessInfo+BAKit.m"; sourceTree = "<group>"; };
C48026FC1D1928290087BBB9 /* NSThread+BAKit.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSThread+BAKit.h"; sourceTree = "<group>"; };
C48026FD1D1928290087BBB9 /* NSThread+BAKit.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSThread+BAKit.m"; sourceTree = "<group>"; };
C48026FF1D1928290087BBB9 /* BACustomModalTransition.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = BACustomModalTransition.h; sourceTree = "<group>"; };
C48027001D1928290087BBB9 /* BACustomModalTransition.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = BACustomModalTransition.m; sourceTree = "<group>"; };
C48027011D1928290087BBB9 /* BAPickerView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = BAPickerView.h; sourceTree = "<group>"; };
C48027021D1928290087BBB9 /* BAPickerView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = BAPickerView.m; sourceTree = "<group>"; };
C48027031D1928290087BBB9 /* BATextView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = BATextView.h; sourceTree = "<group>"; };
C48027041D1928290087BBB9 /* BATextView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = BATextView.m; sourceTree = "<group>"; };
C48027051D1928290087BBB9 /* UIButton+BAKit.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIButton+BAKit.h"; sourceTree = "<group>"; };
C48027061D1928290087BBB9 /* UIButton+BAKit.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIButton+BAKit.m"; sourceTree = "<group>"; };
C48027071D1928290087BBB9 /* UIColor+BAKit.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIColor+BAKit.h"; sourceTree = "<group>"; };
C48027081D1928290087BBB9 /* UIColor+BAKit.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIColor+BAKit.m"; sourceTree = "<group>"; };
C48027091D1928290087BBB9 /* UIDevice+BAKit.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIDevice+BAKit.h"; sourceTree = "<group>"; };
C480270A1D1928290087BBB9 /* UIDevice+BAKit.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIDevice+BAKit.m"; sourceTree = "<group>"; };
C480270B1D1928290087BBB9 /* UIFont+BAKit.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIFont+BAKit.h"; sourceTree = "<group>"; };
C480270C1D1928290087BBB9 /* UIFont+BAKit.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIFont+BAKit.m"; sourceTree = "<group>"; };
C480270D1D1928290087BBB9 /* UIImage+BAKit.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIImage+BAKit.h"; sourceTree = "<group>"; };
C480270E1D1928290087BBB9 /* UIImage+BAKit.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIImage+BAKit.m"; sourceTree = "<group>"; };
C480270F1D1928290087BBB9 /* UIImageView+BAKit.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIImageView+BAKit.h"; sourceTree = "<group>"; };
C48027101D1928290087BBB9 /* UIImageView+BAKit.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIImageView+BAKit.m"; sourceTree = "<group>"; };
C48027111D1928290087BBB9 /* UILabel+BAKit.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UILabel+BAKit.h"; sourceTree = "<group>"; };
C48027121D1928290087BBB9 /* UILabel+BAKit.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UILabel+BAKit.m"; sourceTree = "<group>"; };
C48027131D1928290087BBB9 /* UIScrollView+BAKit.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIScrollView+BAKit.h"; sourceTree = "<group>"; };
C48027141D1928290087BBB9 /* UIScrollView+BAKit.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIScrollView+BAKit.m"; sourceTree = "<group>"; };
C48027151D1928290087BBB9 /* UITableView+BAKit.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UITableView+BAKit.h"; sourceTree = "<group>"; };
C48027161D1928290087BBB9 /* UITableView+BAKit.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UITableView+BAKit.m"; sourceTree = "<group>"; };
C48027171D1928290087BBB9 /* UITextField+BAKit.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UITextField+BAKit.h"; sourceTree = "<group>"; };
C48027181D1928290087BBB9 /* UITextField+BAKit.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UITextField+BAKit.m"; sourceTree = "<group>"; };
C48027191D1928290087BBB9 /* UIView+BAKit.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIView+BAKit.h"; sourceTree = "<group>"; };
C480271A1D1928290087BBB9 /* UIView+BAKit.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIView+BAKit.m"; sourceTree = "<group>"; };
C480271B1D1928290087BBB9 /* UIWebView+BAKit.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIWebView+BAKit.h"; sourceTree = "<group>"; };
C480271C1D1928290087BBB9 /* UIWebView+BAKit.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIWebView+BAKit.m"; sourceTree = "<group>"; };
C480271D1D1928290087BBB9 /* UIWindow+BAKit.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIWindow+BAKit.h"; sourceTree = "<group>"; };
C480271E1D1928290087BBB9 /* UIWindow+BAKit.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIWindow+BAKit.m"; sourceTree = "<group>"; };
C48027211D1928290087BBB9 /* BAFadeBlackView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = BAFadeBlackView.h; sourceTree = "<group>"; };
C48027221D1928290087BBB9 /* BAFadeBlackView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = BAFadeBlackView.m; sourceTree = "<group>"; };
C48027231D1928290087BBB9 /* BASnowView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = BASnowView.h; sourceTree = "<group>"; };
C48027241D1928290087BBB9 /* BASnowView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = BASnowView.m; sourceTree = "<group>"; };
C48027251D1928290087BBB9 /* BAUpdatingView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = BAUpdatingView.h; sourceTree = "<group>"; };
C48027261D1928290087BBB9 /* BAUpdatingView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = BAUpdatingView.m; sourceTree = "<group>"; };
C48027271D1928290087BBB9 /* CALayer+BAMaskLayer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "CALayer+BAMaskLayer.h"; sourceTree = "<group>"; };
C48027281D1928290087BBB9 /* CALayer+BAMaskLayer.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "CALayer+BAMaskLayer.m"; sourceTree = "<group>"; };
C48027291D1928290087BBB9 /* EmitterLayerView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = EmitterLayerView.h; sourceTree = "<group>"; };
C480272A1D1928290087BBB9 /* EmitterLayerView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = EmitterLayerView.m; sourceTree = "<group>"; };
C480272B1D1928290087BBB9 /* UIView+BAGlowView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIView+BAGlowView.h"; sourceTree = "<group>"; };
C480272C1D1928290087BBB9 /* UIView+BAGlowView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIView+BAGlowView.m"; sourceTree = "<group>"; };
C485562B1D3CB01700002FA2 /* UINavigationController+BAKit.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UINavigationController+BAKit.m"; sourceTree = "<group>"; };
C485562D1D3CB02000002FA2 /* UINavigationController+BAKit.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "UINavigationController+BAKit.h"; sourceTree = "<group>"; };
C485562E1D3CB2DD00002FA2 /* UINavigationBar+BAKit.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UINavigationBar+BAKit.h"; sourceTree = "<group>"; };
C485562F1D3CB2DD00002FA2 /* UINavigationBar+BAKit.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UINavigationBar+BAKit.m"; sourceTree = "<group>"; };
C48556311D3CC39900002FA2 /* UIBarButtonItem+BAKit.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIBarButtonItem+BAKit.h"; sourceTree = "<group>"; };
C48556321D3CC39900002FA2 /* UIBarButtonItem+BAKit.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIBarButtonItem+BAKit.m"; sourceTree = "<group>"; };
C48556341D3CC74600002FA2 /* NSDateFormatter+BAKit.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSDateFormatter+BAKit.h"; sourceTree = "<group>"; };
C48556351D3CC74600002FA2 /* NSDateFormatter+BAKit.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSDateFormatter+BAKit.m"; sourceTree = "<group>"; };
C4ACE2FB1CF5C19500313DD4 /* WebKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = WebKit.framework; path = System/Library/Frameworks/WebKit.framework; sourceTree = SDKROOT; };
C4ACE2FD1CF5C53100313DD4 /* DemoVC7.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = DemoVC7.h; sourceTree = "<group>"; };
C4ACE2FE1CF5C53100313DD4 /* DemoVC7.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = DemoVC7.m; sourceTree = "<group>"; };
C4ACE3011CF5C90C00313DD4 /* DemoVC8.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = DemoVC8.h; sourceTree = "<group>"; };
C4ACE3021CF5C90C00313DD4 /* DemoVC8.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = DemoVC8.m; sourceTree = "<group>"; };
C4ACE3041CF5C96200313DD4 /* EventKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = EventKit.framework; path = System/Library/Frameworks/EventKit.framework; sourceTree = SDKROOT; };
C4ACE3061CF5C96B00313DD4 /* CoreGraphics.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreGraphics.framework; path = System/Library/Frameworks/CoreGraphics.framework; sourceTree = SDKROOT; };
C4B963141D33A5AF005926B8 /* Contents.json */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.json; path = Contents.json; sourceTree = "<group>"; };
C4B963151D33A5AF005926B8 /* dropdown_anim__0001@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "dropdown_anim__0001@2x.png"; sourceTree = "<group>"; };
C4B963171D33A5AF005926B8 /* Contents.json */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.json; path = Contents.json; sourceTree = "<group>"; };
C4B963181D33A5AF005926B8 /* dropdown_anim__00010@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "dropdown_anim__00010@2x.png"; sourceTree = "<group>"; };
C4B9631A1D33A5AF005926B8 /* Contents.json */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.json; path = Contents.json; sourceTree = "<group>"; };
C4B9631B1D33A5AF005926B8 /* dropdown_anim__00011@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "dropdown_anim__00011@2x.png"; sourceTree = "<group>"; };
C4B9631D1D33A5AF005926B8 /* Contents.json */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.json; path = Contents.json; sourceTree = "<group>"; };
C4B9631E1D33A5AF005926B8 /* dropdown_anim__00012@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "dropdown_anim__00012@2x.png"; sourceTree = "<group>"; };
C4B963201D33A5AF005926B8 /* Contents.json */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.json; path = Contents.json; sourceTree = "<group>"; };
C4B963211D33A5AF005926B8 /* dropdown_anim__00013@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "dropdown_anim__00013@2x.png"; sourceTree = "<group>"; };
C4B963231D33A5AF005926B8 /* Contents.json */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.json; path = Contents.json; sourceTree = "<group>"; };
C4B963241D33A5AF005926B8 /* dropdown_anim__00014@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "dropdown_anim__00014@2x.png"; sourceTree = "<group>"; };
C4B963261D33A5AF005926B8 /* Contents.json */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.json; path = Contents.json; sourceTree = "<group>"; };
C4B963271D33A5AF005926B8 /* dropdown_anim__00015@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "dropdown_anim__00015@2x.png"; sourceTree = "<group>"; };
C4B963291D33A5AF005926B8 /* Contents.json */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.json; path = Contents.json; sourceTree = "<group>"; };
C4B9632A1D33A5AF005926B8 /* dropdown_anim__00016@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "dropdown_anim__00016@2x.png"; sourceTree = "<group>"; };
C4B9632C1D33A5AF005926B8 /* Contents.json */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.json; path = Contents.json; sourceTree = "<group>"; };
C4B9632D1D33A5AF005926B8 /* dropdown_anim__00017@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "dropdown_anim__00017@2x.png"; sourceTree = "<group>"; };
C4B9632F1D33A5AF005926B8 /* Contents.json */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.json; path = Contents.json; sourceTree = "<group>"; };
C4B963301D33A5AF005926B8 /* dropdown_anim__00018@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "dropdown_anim__00018@2x.png"; sourceTree = "<group>"; };
C4B963321D33A5AF005926B8 /* Contents.json */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.json; path = Contents.json; sourceTree = "<group>"; };
C4B963331D33A5AF005926B8 /* dropdown_anim__00019@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "dropdown_anim__00019@2x.png"; sourceTree = "<group>"; };
C4B963351D33A5AF005926B8 /* Contents.json */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.json; path = Contents.json; sourceTree = "<group>"; };
C4B963361D33A5AF005926B8 /* dropdown_anim__0002@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "dropdown_anim__0002@2x.png"; sourceTree = "<group>"; };
C4B963381D33A5AF005926B8 /* Contents.json */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.json; path = Contents.json; sourceTree = "<group>"; };
C4B963391D33A5AF005926B8 /* dropdown_anim__00020@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "dropdown_anim__00020@2x.png"; sourceTree = "<group>"; };
C4B9633B1D33A5AF005926B8 /* Contents.json */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.json; path = Contents.json; sourceTree = "<group>"; };
C4B9633C1D33A5AF005926B8 /* dropdown_anim__00021@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "dropdown_anim__00021@2x.png"; sourceTree = "<group>"; };
C4B9633E1D33A5AF005926B8 /* Contents.json */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.json; path = Contents.json; sourceTree = "<group>"; };
C4B9633F1D33A5AF005926B8 /* dropdown_anim__00022@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "dropdown_anim__00022@2x.png"; sourceTree = "<group>"; };
C4B963411D33A5AF005926B8 /* Contents.json */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.json; path = Contents.json; sourceTree = "<group>"; };
C4B963421D33A5AF005926B8 /* dropdown_anim__00023@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "dropdown_anim__00023@2x.png"; sourceTree = "<group>"; };
C4B963441D33A5AF005926B8 /* Contents.json */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.json; path = Contents.json; sourceTree = "<group>"; };
C4B963451D33A5AF005926B8 /* dropdown_anim__00024@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "dropdown_anim__00024@2x.png"; sourceTree = "<group>"; };
C4B963471D33A5AF005926B8 /* Contents.json */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.json; path = Contents.json; sourceTree = "<group>"; };
C4B963481D33A5AF005926B8 /* dropdown_anim__00025@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "dropdown_anim__00025@2x.png"; sourceTree = "<group>"; };
C4B9634A1D33A5AF005926B8 /* Contents.json */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.json; path = Contents.json; sourceTree = "<group>"; };
C4B9634B1D33A5AF005926B8 /* dropdown_anim__00026@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "dropdown_anim__00026@2x.png"; sourceTree = "<group>"; };
C4B9634D1D33A5AF005926B8 /* Contents.json */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.json; path = Contents.json; sourceTree = "<group>"; };
C4B9634E1D33A5AF005926B8 /* dropdown_anim__00027@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "dropdown_anim__00027@2x.png"; sourceTree = "<group>"; };
C4B963501D33A5AF005926B8 /* Contents.json */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.json; path = Contents.json; sourceTree = "<group>"; };
C4B963511D33A5AF005926B8 /* dropdown_anim__00028@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "dropdown_anim__00028@2x.png"; sourceTree = "<group>"; };
C4B963531D33A5AF005926B8 /* Contents.json */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.json; path = Contents.json; sourceTree = "<group>"; };
C4B963541D33A5AF005926B8 /* dropdown_anim__00029@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "dropdown_anim__00029@2x.png"; sourceTree = "<group>"; };
C4B963561D33A5AF005926B8 /* Contents.json */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.json; path = Contents.json; sourceTree = "<group>"; };
C4B963571D33A5AF005926B8 /* dropdown_anim__0003@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "dropdown_anim__0003@2x.png"; sourceTree = "<group>"; };
C4B963591D33A5AF005926B8 /* Contents.json */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.json; path = Contents.json; sourceTree = "<group>"; };
C4B9635A1D33A5AF005926B8 /* dropdown_anim__00030@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "dropdown_anim__00030@2x.png"; sourceTree = "<group>"; };
C4B9635C1D33A5AF005926B8 /* Contents.json */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.json; path = Contents.json; sourceTree = "<group>"; };
C4B9635D1D33A5AF005926B8 /* dropdown_anim__00031@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "dropdown_anim__00031@2x.png"; sourceTree = "<group>"; };
C4B9635F1D33A5AF005926B8 /* Contents.json */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.json; path = Contents.json; sourceTree = "<group>"; };
C4B963601D33A5AF005926B8 /* dropdown_anim__00032@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "dropdown_anim__00032@2x.png"; sourceTree = "<group>"; };
C4B963621D33A5AF005926B8 /* Contents.json */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.json; path = Contents.json; sourceTree = "<group>"; };
C4B963631D33A5AF005926B8 /* dropdown_anim__00033@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "dropdown_anim__00033@2x.png"; sourceTree = "<group>"; };
C4B963651D33A5AF005926B8 /* Contents.json */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.json; path = Contents.json; sourceTree = "<group>"; };
C4B963661D33A5AF005926B8 /* dropdown_anim__00034@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "dropdown_anim__00034@2x.png"; sourceTree = "<group>"; };
C4B963681D33A5AF005926B8 /* Contents.json */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.json; path = Contents.json; sourceTree = "<group>"; };
C4B963691D33A5AF005926B8 /* dropdown_anim__00035@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "dropdown_anim__00035@2x.png"; sourceTree = "<group>"; };
C4B9636B1D33A5AF005926B8 /* Contents.json */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.json; path = Contents.json; sourceTree = "<group>"; };
C4B9636C1D33A5AF005926B8 /* dropdown_anim__00036@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "dropdown_anim__00036@2x.png"; sourceTree = "<group>"; };
C4B9636E1D33A5AF005926B8 /* Contents.json */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.json; path = Contents.json; sourceTree = "<group>"; };
C4B9636F1D33A5AF005926B8 /* dropdown_anim__00037@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "dropdown_anim__00037@2x.png"; sourceTree = "<group>"; };
C4B963711D33A5AF005926B8 /* Contents.json */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.json; path = Contents.json; sourceTree = "<group>"; };
C4B963721D33A5AF005926B8 /* dropdown_anim__00038@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "dropdown_anim__00038@2x.png"; sourceTree = "<group>"; };
C4B963741D33A5AF005926B8 /* Contents.json */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.json; path = Contents.json; sourceTree = "<group>"; };
C4B963751D33A5AF005926B8 /* dropdown_anim__00039@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "dropdown_anim__00039@2x.png"; sourceTree = "<group>"; };
C4B963771D33A5AF005926B8 /* Contents.json */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.json; path = Contents.json; sourceTree = "<group>"; };
C4B963781D33A5AF005926B8 /* dropdown_anim__0004@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "dropdown_anim__0004@2x.png"; sourceTree = "<group>"; };
C4B9637A1D33A5AF005926B8 /* Contents.json */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.json; path = Contents.json; sourceTree = "<group>"; };
C4B9637B1D33A5AF005926B8 /* dropdown_anim__00040@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "dropdown_anim__00040@2x.png"; sourceTree = "<group>"; };
C4B9637D1D33A5AF005926B8 /* Contents.json */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.json; path = Contents.json; sourceTree = "<group>"; };
C4B9637E1D33A5AF005926B8 /* dropdown_anim__00041@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "dropdown_anim__00041@2x.png"; sourceTree = "<group>"; };
C4B963801D33A5AF005926B8 /* Contents.json */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.json; path = Contents.json; sourceTree = "<group>"; };
C4B963811D33A5AF005926B8 /* dropdown_anim__00042@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "dropdown_anim__00042@2x.png"; sourceTree = "<group>"; };
C4B963831D33A5AF005926B8 /* Contents.json */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.json; path = Contents.json; sourceTree = "<group>"; };
C4B963841D33A5AF005926B8 /* dropdown_anim__00043@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "dropdown_anim__00043@2x.png"; sourceTree = "<group>"; };
C4B963861D33A5AF005926B8 /* Contents.json */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.json; path = Contents.json; sourceTree = "<group>"; };
C4B963871D33A5AF005926B8 /* dropdown_anim__00044@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "dropdown_anim__00044@2x.png"; sourceTree = "<group>"; };
C4B963891D33A5AF005926B8 /* Contents.json */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.json; path = Contents.json; sourceTree = "<group>"; };
C4B9638A1D33A5AF005926B8 /* dropdown_anim__00045@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "dropdown_anim__00045@2x.png"; sourceTree = "<group>"; };
C4B9638C1D33A5AF005926B8 /* Contents.json */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.json; path = Contents.json; sourceTree = "<group>"; };
C4B9638D1D33A5AF005926B8 /* dropdown_anim__00046@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "dropdown_anim__00046@2x.png"; sourceTree = "<group>"; };
C4B9638F1D33A5AF005926B8 /* Contents.json */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.json; path = Contents.json; sourceTree = "<group>"; };
C4B963901D33A5AF005926B8 /* dropdown_anim__00047@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "dropdown_anim__00047@2x.png"; sourceTree = "<group>"; };
C4B963921D33A5AF005926B8 /* Contents.json */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.json; path = Contents.json; sourceTree = "<group>"; };
C4B963931D33A5AF005926B8 /* dropdown_anim__00048@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "dropdown_anim__00048@2x.png"; sourceTree = "<group>"; };
C4B963951D33A5AF005926B8 /* Contents.json */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.json; path = Contents.json; sourceTree = "<group>"; };
C4B963961D33A5AF005926B8 /* dropdown_anim__00049@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "dropdown_anim__00049@2x.png"; sourceTree = "<group>"; };
C4B963981D33A5AF005926B8 /* Contents.json */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.json; path = Contents.json; sourceTree = "<group>"; };
C4B963991D33A5AF005926B8 /* dropdown_anim__0005@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "dropdown_anim__0005@2x.png"; sourceTree = "<group>"; };
C4B9639B1D33A5AF005926B8 /* Contents.json */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.json; path = Contents.json; sourceTree = "<group>"; };
C4B9639C1D33A5AF005926B8 /* dropdown_anim__00050@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "dropdown_anim__00050@2x.png"; sourceTree = "<group>"; };
C4B9639E1D33A5AF005926B8 /* Contents.json */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.json; path = Contents.json; sourceTree = "<group>"; };
C4B9639F1D33A5AF005926B8 /* dropdown_anim__00051@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "dropdown_anim__00051@2x.png"; sourceTree = "<group>"; };
C4B963A11D33A5AF005926B8 /* Contents.json */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.json; path = Contents.json; sourceTree = "<group>"; };
C4B963A21D33A5AF005926B8 /* dropdown_anim__00052@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "dropdown_anim__00052@2x.png"; sourceTree = "<group>"; };
C4B963A41D33A5AF005926B8 /* Contents.json */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.json; path = Contents.json; sourceTree = "<group>"; };
C4B963A51D33A5AF005926B8 /* dropdown_anim__00053@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "dropdown_anim__00053@2x.png"; sourceTree = "<group>"; };
C4B963A71D33A5AF005926B8 /* Contents.json */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.json; path = Contents.json; sourceTree = "<group>"; };
C4B963A81D33A5AF005926B8 /* dropdown_anim__00054@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "dropdown_anim__00054@2x.png"; sourceTree = "<group>"; };
C4B963AA1D33A5AF005926B8 /* Contents.json */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.json; path = Contents.json; sourceTree = "<group>"; };
C4B963AB1D33A5AF005926B8 /* dropdown_anim__00055@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "dropdown_anim__00055@2x.png"; sourceTree = "<group>"; };
C4B963AD1D33A5AF005926B8 /* Contents.json */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.json; path = Contents.json; sourceTree = "<group>"; };
C4B963AE1D33A5AF005926B8 /* dropdown_anim__00056@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "dropdown_anim__00056@2x.png"; sourceTree = "<group>"; };
C4B963B01D33A5AF005926B8 /* Contents.json */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.json; path = Contents.json; sourceTree = "<group>"; };
C4B963B11D33A5AF005926B8 /* dropdown_anim__00057@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "dropdown_anim__00057@2x.png"; sourceTree = "<group>"; };
C4B963B31D33A5AF005926B8 /* Contents.json */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.json; path = Contents.json; sourceTree = "<group>"; };
C4B963B41D33A5AF005926B8 /* dropdown_anim__00058@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "dropdown_anim__00058@2x.png"; sourceTree = "<group>"; };
C4B963B61D33A5AF005926B8 /* Contents.json */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.json; path = Contents.json; sourceTree = "<group>"; };
C4B963B71D33A5AF005926B8 /* dropdown_anim__00059@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "dropdown_anim__00059@2x.png"; sourceTree = "<group>"; };
C4B963B91D33A5AF005926B8 /* Contents.json */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.json; path = Contents.json; sourceTree = "<group>"; };
C4B963BA1D33A5AF005926B8 /* dropdown_anim__0006@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "dropdown_anim__0006@2x.png"; sourceTree = "<group>"; };
C4B963BC1D33A5AF005926B8 /* Contents.json */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.json; path = Contents.json; sourceTree = "<group>"; };
C4B963BD1D33A5AF005926B8 /* dropdown_anim__00060@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "dropdown_anim__00060@2x.png"; sourceTree = "<group>"; };
C4B963BF1D33A5AF005926B8 /* Contents.json */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.json; path = Contents.json; sourceTree = "<group>"; };
C4B963C01D33A5AF005926B8 /* dropdown_anim__0007@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "dropdown_anim__0007@2x.png"; sourceTree = "<group>"; };
C4B963C21D33A5AF005926B8 /* Contents.json */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.json; path = Contents.json; sourceTree = "<group>"; };
C4B963C31D33A5AF005926B8 /* dropdown_anim__0008@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "dropdown_anim__0008@2x.png"; sourceTree = "<group>"; };
C4B963C51D33A5AF005926B8 /* Contents.json */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.json; path = Contents.json; sourceTree = "<group>"; };
C4B963C61D33A5AF005926B8 /* dropdown_anim__0009@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "dropdown_anim__0009@2x.png"; sourceTree = "<group>"; };
C4B963C81D33A5AF005926B8 /* Contents.json */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.json; path = Contents.json; sourceTree = "<group>"; };
C4B963C91D33A5AF005926B8 /* dropdown_loading_01@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "dropdown_loading_01@2x.png"; sourceTree = "<group>"; };
C4B963CB1D33A5AF005926B8 /* Contents.json */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.json; path = Contents.json; sourceTree = "<group>"; };
C4B963CC1D33A5AF005926B8 /* dropdown_loading_02@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "dropdown_loading_02@2x.png"; sourceTree = "<group>"; };
C4B963CE1D33A5AF005926B8 /* Contents.json */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.json; path = Contents.json; sourceTree = "<group>"; };
C4B963CF1D33A5AF005926B8 /* dropdown_loading_03@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "dropdown_loading_03@2x.png"; sourceTree = "<group>"; };
C4B9644F1D33A630005926B8 /* BACustomMJFooter.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = BACustomMJFooter.h; sourceTree = "<group>"; };
C4B964501D33A630005926B8 /* BACustomMJFooter.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = BACustomMJFooter.m; sourceTree = "<group>"; };
C4B964521D33B5E8005926B8 /* BACustomMJHeader.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = BACustomMJHeader.h; sourceTree = "<group>"; };
C4B964531D33B5E8005926B8 /* BACustomMJHeader.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = BACustomMJHeader.m; sourceTree = "<group>"; };
C4C8024F1CF5AFAE00AD5B3B /* BAWebViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = BAWebViewController.m; sourceTree = "<group>"; };
C4C802501CF5AFAE00AD5B3B /* BAWebViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = BAWebViewController.h; sourceTree = "<group>"; };
C4D107FA1CE2FC1C00F735B9 /* view1.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = view1.h; sourceTree = "<group>"; };
C4D107FB1CE2FC1C00F735B9 /* view1.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = view1.m; sourceTree = "<group>"; };
C4D107FC1CE2FC1C00F735B9 /* view2.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = view2.h; sourceTree = "<group>"; };
C4D107FD1CE2FC1C00F735B9 /* view2.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = view2.m; sourceTree = "<group>"; };
C4D107FE1CE2FC1C00F735B9 /* view3.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = view3.h; sourceTree = "<group>"; };
C4D107FF1CE2FC1C00F735B9 /* view3.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = view3.m; sourceTree = "<group>"; };
C4D108001CE2FC1C00F735B9 /* view4.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = view4.h; sourceTree = "<group>"; };
C4D108011CE2FC1C00F735B9 /* view4.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = view4.m; sourceTree = "<group>"; };
C4DEB3721D0C2FC8001F1585 /* BANetManager.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = BANetManager.m; sourceTree = "<group>"; };
C4DEB3731D0C2FC8001F1585 /* BANetManager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = BANetManager.h; sourceTree = "<group>"; };
C4DEB3751D0C332C001F1585 /* BATabBarController2.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = BATabBarController2.h; sourceTree = "<group>"; };
C4DEB3761D0C332C001F1585 /* BATabBarController2.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = BATabBarController2.m; sourceTree = "<group>"; };
C4DEB3781D0C3351001F1585 /* BATabBar2.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = BATabBar2.h; path = ../Controller/BATabBar2.h; sourceTree = "<group>"; };
C4DEB3791D0C3351001F1585 /* BATabBar2.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = BATabBar2.m; path = ../Controller/BATabBar2.m; sourceTree = "<group>"; };
C4DEB37B1D0C33E8001F1585 /* BANavigationController2.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = BANavigationController2.h; sourceTree = "<group>"; };
C4DEB37C1D0C33E8001F1585 /* BANavigationController2.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = BANavigationController2.m; sourceTree = "<group>"; };
C4DEB3831D0C34B0001F1585 /* BAPublishViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = BAPublishViewController.h; sourceTree = "<group>"; };
C4DEB3841D0C34B0001F1585 /* BAPublishViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = BAPublishViewController.m; sourceTree = "<group>"; };
C4EA257F1CF7DFEC00F6081C /* DemoVC10.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = DemoVC10.h; sourceTree = "<group>"; };
C4EA25801CF7DFEC00F6081C /* DemoVC10.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = DemoVC10.m; sourceTree = "<group>"; };
C4EA25821CF7E10600F6081C /* DemoVC10_CollectionView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = DemoVC10_CollectionView.h; sourceTree = "<group>"; };
C4EA25831CF7E10600F6081C /* DemoVC10_CollectionView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = DemoVC10_CollectionView.m; sourceTree = "<group>"; };
C4EADCDF1D02BFAF0086979C /* zh-Hans */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "zh-Hans"; path = "zh-Hans.lproj/Main.strings"; sourceTree = "<group>"; };
C4EADCE01D02BFAF0086979C /* zh-Hans */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "zh-Hans"; path = "zh-Hans.lproj/LaunchScreen.strings"; sourceTree = "<group>"; };
C4EADCE61D02C0130086979C /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/Localizable.strings; sourceTree = "<group>"; };
C4EADCE81D02C0150086979C /* zh-Hans */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "zh-Hans"; path = "zh-Hans.lproj/Localizable.strings"; sourceTree = "<group>"; };
C4EADCEA1D02C0200086979C /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/InfoPlist.strings; sourceTree = "<group>"; };
C4EADCEC1D02C0230086979C /* zh-Hans */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "zh-Hans"; path = "zh-Hans.lproj/InfoPlist.strings"; sourceTree = "<group>"; };
C4EB5AA01CD8B04B003A7094 /* BABaseProject.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = BABaseProject.app; sourceTree = BUILT_PRODUCTS_DIR; };
C4EB5AA41CD8B04B003A7094 /* main.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = main.m; sourceTree = "<group>"; };
C4EB5AA61CD8B04B003A7094 /* AppDelegate.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = AppDelegate.h; sourceTree = "<group>"; };
C4EB5AA71CD8B04B003A7094 /* AppDelegate.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = AppDelegate.m; sourceTree = "<group>"; };
C4EB5AAD1CD8B04B003A7094 /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/Main.storyboard; sourceTree = "<group>"; };
C4EB5AAF1CD8B04B003A7094 /* Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Assets.xcassets; sourceTree = "<group>"; };
C4EB5AB21CD8B04B003A7094 /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/LaunchScreen.storyboard; sourceTree = "<group>"; };
C4EB5AB91CD8B04B003A7094 /* BABaseProjectTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = BABaseProjectTests.xctest; sourceTree = BUILT_PRODUCTS_DIR; };
C4EB5ABD1CD8B04B003A7094 /* BABaseProjectTests.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = BABaseProjectTests.m; sourceTree = "<group>"; };
C4EB5ABF1CD8B04B003A7094 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
C4EB5AC41CD8B04B003A7094 /* BABaseProjectUITests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = BABaseProjectUITests.xctest; sourceTree = BUILT_PRODUCTS_DIR; };
C4EB5AC81CD8B04B003A7094 /* BABaseProjectUITests.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = BABaseProjectUITests.m; sourceTree = "<group>"; };
C4EB5ACA1CD8B04B003A7094 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
C4EB5AD91CD8B24F003A7094 /* BABaseModel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = BABaseModel.h; sourceTree = "<group>"; };
C4EB5ADA1CD8B24F003A7094 /* BABaseModel.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = BABaseModel.m; sourceTree = "<group>"; };
C4EB5ADB1CD8B24F003A7094 /* BABaseViewModel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = BABaseViewModel.h; sourceTree = "<group>"; };
C4EB5ADC1CD8B24F003A7094 /* BABaseViewModel.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = BABaseViewModel.m; sourceTree = "<group>"; };
C4EB5ADD1CD8B24F003A7094 /* BAVideoModel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = BAVideoModel.h; sourceTree = "<group>"; };
C4EB5ADE1CD8B24F003A7094 /* BAVideoModel.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = BAVideoModel.m; sourceTree = "<group>"; };
C4EB5AE01CD8B24F003A7094 /* BAFPSLabel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = BAFPSLabel.h; sourceTree = "<group>"; };
C4EB5AE11CD8B24F003A7094 /* BAFPSLabel.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = BAFPSLabel.m; sourceTree = "<group>"; };
C4EB5AE21CD8B24F003A7094 /* BANavigationBar.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = BANavigationBar.h; sourceTree = "<group>"; };
C4EB5AE31CD8B24F003A7094 /* BANavigationBar.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = BANavigationBar.m; sourceTree = "<group>"; };
C4EB5AE51CD8B24F003A7094 /* BABaseViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = BABaseViewController.h; sourceTree = "<group>"; };
C4EB5AE61CD8B24F003A7094 /* BABaseViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = BABaseViewController.m; sourceTree = "<group>"; };
C4EB5AEA1CD8B24F003A7094 /* BAGIFImageView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = BAGIFImageView.h; sourceTree = "<group>"; };
C4EB5AEB1CD8B24F003A7094 /* BAGIFImageView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = BAGIFImageView.m; sourceTree = "<group>"; };
C4EB5AF31CD8B24F003A7094 /* BADiscoverViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = BADiscoverViewController.h; sourceTree = "<group>"; };
C4EB5AF41CD8B24F003A7094 /* BADiscoverViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = BADiscoverViewController.m; sourceTree = "<group>"; };
C4EB5AF91CD8B24F003A7094 /* BAHomeViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = BAHomeViewController.h; sourceTree = "<group>"; };
C4EB5AFA1CD8B24F003A7094 /* BAHomeViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = BAHomeViewController.m; sourceTree = "<group>"; };
C4EB5B011CD8B24F003A7094 /* BAMessageViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = BAMessageViewController.h; sourceTree = "<group>"; };
C4EB5B021CD8B24F003A7094 /* BAMessageViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = BAMessageViewController.m; sourceTree = "<group>"; };
C4EB5B071CD8B24F003A7094 /* BAProfileViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = BAProfileViewController.h; sourceTree = "<group>"; };
C4EB5B081CD8B24F003A7094 /* BAProfileViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = BAProfileViewController.m; sourceTree = "<group>"; };
C4EB5B121CD8B24F003A7094 /* LPLevelView.bundle */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.plug-in"; path = LPLevelView.bundle; sourceTree = "<group>"; };
C4EB5B131CD8B24F003A7094 /* LPLevelView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = LPLevelView.h; sourceTree = "<group>"; };
C4EB5B141CD8B24F003A7094 /* LPLevelView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = LPLevelView.m; sourceTree = "<group>"; };
C4EB5B281CD8B24F003A7094 /* AppDelegate+BACategory.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "AppDelegate+BACategory.h"; sourceTree = "<group>"; };
C4EB5B291CD8B24F003A7094 /* AppDelegate+BACategory.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "AppDelegate+BACategory.m"; sourceTree = "<group>"; };
C4EB5B2A1CD8B24F003A7094 /* NSObject+BAMJParse.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSObject+BAMJParse.h"; sourceTree = "<group>"; };
C4EB5B2B1CD8B24F003A7094 /* NSObject+BAMJParse.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSObject+BAMJParse.m"; sourceTree = "<group>"; };
C4EB5B2C1CD8B24F003A7094 /* NSObject+BAProgressHUD.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSObject+BAProgressHUD.h"; sourceTree = "<group>"; };
C4EB5B2D1CD8B24F003A7094 /* NSObject+BAProgressHUD.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSObject+BAProgressHUD.m"; sourceTree = "<group>"; };
C4EB5B2E1CD8B24F003A7094 /* NSObject+BANetwork.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSObject+BANetwork.h"; sourceTree = "<group>"; };
C4EB5B2F1CD8B24F003A7094 /* NSObject+BANetwork.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSObject+BANetwork.m"; sourceTree = "<group>"; };
C4EB5B301CD8B24F003A7094 /* UIBarButtonItem+Item.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIBarButtonItem+Item.h"; sourceTree = "<group>"; };
C4EB5B311CD8B24F003A7094 /* UIBarButtonItem+Item.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIBarButtonItem+Item.m"; sourceTree = "<group>"; };
C4EB5B341CD8B24F003A7094 /* UIViewController+BAAlertView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIViewController+BAAlertView.h"; sourceTree = "<group>"; };
C4EB5B351CD8B24F003A7094 /* UIViewController+BAAlertView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIViewController+BAAlertView.m"; sourceTree = "<group>"; };
C4EB5B381CD8B24F003A7094 /* BAColorHeader.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = BAColorHeader.h; sourceTree = "<group>"; };
C4EB5B391CD8B24F003A7094 /* BADefin.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = BADefin.h; sourceTree = "<group>"; };
C4EB5B3B1CD8B24F003A7094 /* BAFrameHeader.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = BAFrameHeader.h; sourceTree = "<group>"; };
C4EB5B3E1CD8B24F003A7094 /* BABaseNetManager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = BABaseNetManager.h; sourceTree = "<group>"; };
C4EB5B3F1CD8B24F003A7094 /* BABaseNetManager.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = BABaseNetManager.m; sourceTree = "<group>"; };
C4EB5B401CD8B24F003A7094 /* BANewsNetManager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = BANewsNetManager.h; sourceTree = "<group>"; };
C4EB5B411CD8B24F003A7094 /* BANewsNetManager.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = BANewsNetManager.m; sourceTree = "<group>"; };
C4EB5B421CD8B24F003A7094 /* BAURLsPath.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = BAURLsPath.h; sourceTree = "<group>"; };
C4EB5B461CD8B24F003A7094 /* area.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; path = area.plist; sourceTree = "<group>"; };
C4EB5B4A1CD8B24F003A7094 /* img0.jpg */ = {isa = PBXFileReference; lastKnownFileType = image.jpeg; path = img0.jpg; sourceTree = "<group>"; };
C4EB5B4B1CD8B24F003A7094 /* img1.jpg */ = {isa = PBXFileReference; lastKnownFileType = image.jpeg; path = img1.jpg; sourceTree = "<group>"; };
C4EB5B4C1CD8B24F003A7094 /* img10.jpg */ = {isa = PBXFileReference; lastKnownFileType = image.jpeg; path = img10.jpg; sourceTree = "<group>"; };
C4EB5B4D1CD8B24F003A7094 /* img11.jpg */ = {isa = PBXFileReference; lastKnownFileType = image.jpeg; path = img11.jpg; sourceTree = "<group>"; };
C4EB5B4E1CD8B24F003A7094 /* img12.jpg */ = {isa = PBXFileReference; lastKnownFileType = image.jpeg; path = img12.jpg; sourceTree = "<group>"; };
C4EB5B4F1CD8B24F003A7094 /* img13.jpg */ = {isa = PBXFileReference; lastKnownFileType = image.jpeg; path = img13.jpg; sourceTree = "<group>"; };
C4EB5B501CD8B24F003A7094 /* img14.jpg */ = {isa = PBXFileReference; lastKnownFileType = image.jpeg; path = img14.jpg; sourceTree = "<group>"; };
C4EB5B511CD8B24F003A7094 /* img2.jpg */ = {isa = PBXFileReference; lastKnownFileType = image.jpeg; path = img2.jpg; sourceTree = "<group>"; };
C4EB5B521CD8B24F003A7094 /* img3.jpg */ = {isa = PBXFileReference; lastKnownFileType = image.jpeg; path = img3.jpg; sourceTree = "<group>"; };
C4EB5B531CD8B24F003A7094 /* img4.jpg */ = {isa = PBXFileReference; lastKnownFileType = image.jpeg; path = img4.jpg; sourceTree = "<group>"; };
C4EB5B541CD8B24F003A7094 /* img5.jpg */ = {isa = PBXFileReference; lastKnownFileType = image.jpeg; path = img5.jpg; sourceTree = "<group>"; };
C4EB5B551CD8B24F003A7094 /* img6.jpg */ = {isa = PBXFileReference; lastKnownFileType = image.jpeg; path = img6.jpg; sourceTree = "<group>"; };
C4EB5B561CD8B24F003A7094 /* img7.jpg */ = {isa = PBXFileReference; lastKnownFileType = image.jpeg; path = img7.jpg; sourceTree = "<group>"; };
C4EB5B571CD8B24F003A7094 /* img8.jpg */ = {isa = PBXFileReference; lastKnownFileType = image.jpeg; path = img8.jpg; sourceTree = "<group>"; };
C4EB5B581CD8B24F003A7094 /* img9.jpg */ = {isa = PBXFileReference; lastKnownFileType = image.jpeg; path = img9.jpg; sourceTree = "<group>"; };
C4EB5B5A1CD8B24F003A7094 /* case_cell_Line@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "case_cell_Line@2x.png"; sourceTree = "<group>"; };
C4EB5B5B1CD8B24F003A7094 /* icon-10@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "icon-10@2x.png"; sourceTree = "<group>"; };
C4EB5B5C1CD8B24F003A7094 /* icon-1@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "icon-1@2x.png"; sourceTree = "<group>"; };
C4EB5B5D1CD8B24F003A7094 /* icon-2@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "icon-2@2x.png"; sourceTree = "<group>"; };
C4EB5B5E1CD8B24F003A7094 /* icon-3@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "icon-3@2x.png"; sourceTree = "<group>"; };
C4EB5B5F1CD8B24F003A7094 /* icon-4@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "icon-4@2x.png"; sourceTree = "<group>"; };
C4EB5B601CD8B24F003A7094 /* icon-5@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "icon-5@2x.png"; sourceTree = "<group>"; };
C4EB5B611CD8B24F003A7094 /* icon-6@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "icon-6@2x.png"; sourceTree = "<group>"; };
C4EB5B621CD8B24F003A7094 /* icon-7@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "icon-7@2x.png"; sourceTree = "<group>"; };
C4EB5B631CD8B24F003A7094 /* icon-8@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "icon-8@2x.png"; sourceTree = "<group>"; };
C4EB5B641CD8B24F003A7094 /* icon-9@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "icon-9@2x.png"; sourceTree = "<group>"; };
C4EB5B651CD8B24F003A7094 /* icon-sjt@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "icon-sjt@2x.png"; sourceTree = "<group>"; };
C4EB5B661CD8B24F003A7094 /* icon-xjt@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "icon-xjt@2x.png"; sourceTree = "<group>"; };
C4EB5B681CD8B24F003A7094 /* gif1.gif */ = {isa = PBXFileReference; lastKnownFileType = image.gif; path = gif1.gif; sourceTree = "<group>"; };
C4EB5B691CD8B24F003A7094 /* gif2.gif */ = {isa = PBXFileReference; lastKnownFileType = image.gif; path = gif2.gif; sourceTree = "<group>"; };
C4EB5B6C1CD8B24F003A7094 /* 0.jpg */ = {isa = PBXFileReference; lastKnownFileType = image.jpeg; path = 0.jpg; sourceTree = "<group>"; };
C4EB5B6D1CD8B24F003A7094 /* 1.jpg */ = {isa = PBXFileReference; lastKnownFileType = image.jpeg; path = 1.jpg; sourceTree = "<group>"; };
C4EB5B6E1CD8B24F003A7094 /* 10.jpg */ = {isa = PBXFileReference; lastKnownFileType = image.jpeg; path = 10.jpg; sourceTree = "<group>"; };
C4EB5B6F1CD8B24F003A7094 /* 11.jpg */ = {isa = PBXFileReference; lastKnownFileType = image.jpeg; path = 11.jpg; sourceTree = "<group>"; };
C4EB5B701CD8B24F003A7094 /* 12.jpg */ = {isa = PBXFileReference; lastKnownFileType = image.jpeg; path = 12.jpg; sourceTree = "<group>"; };
C4EB5B711CD8B24F003A7094 /* 13.jpg */ = {isa = PBXFileReference; lastKnownFileType = image.jpeg; path = 13.jpg; sourceTree = "<group>"; };
C4EB5B721CD8B24F003A7094 /* 14.jpg */ = {isa = PBXFileReference; lastKnownFileType = image.jpeg; path = 14.jpg; sourceTree = "<group>"; };
C4EB5B731CD8B24F003A7094 /* 15.jpg */ = {isa = PBXFileReference; lastKnownFileType = image.jpeg; path = 15.jpg; sourceTree = "<group>"; };
C4EB5B741CD8B24F003A7094 /* 16.jpg */ = {isa = PBXFileReference; lastKnownFileType = image.jpeg; path = 16.jpg; sourceTree = "<group>"; };
C4EB5B751CD8B24F003A7094 /* 17.jpg */ = {isa = PBXFileReference; lastKnownFileType = image.jpeg; path = 17.jpg; sourceTree = "<group>"; };
C4EB5B761CD8B24F003A7094 /* 18.jpg */ = {isa = PBXFileReference; lastKnownFileType = image.jpeg; path = 18.jpg; sourceTree = "<group>"; };
C4EB5B771CD8B24F003A7094 /* 19.jpg */ = {isa = PBXFileReference; lastKnownFileType = image.jpeg; path = 19.jpg; sourceTree = "<group>"; };
C4EB5B781CD8B24F003A7094 /* 2.jpg */ = {isa = PBXFileReference; lastKnownFileType = image.jpeg; path = 2.jpg; sourceTree = "<group>"; };
C4EB5B791CD8B24F003A7094 /* 20.jpg */ = {isa = PBXFileReference; lastKnownFileType = image.jpeg; path = 20.jpg; sourceTree = "<group>"; };
C4EB5B7A1CD8B24F003A7094 /* 21.jpg */ = {isa = PBXFileReference; lastKnownFileType = image.jpeg; path = 21.jpg; sourceTree = "<group>"; };
C4EB5B7B1CD8B24F003A7094 /* 22.jpg */ = {isa = PBXFileReference; lastKnownFileType = image.jpeg; path = 22.jpg; sourceTree = "<group>"; };
C4EB5B7C1CD8B24F003A7094 /* 23.jpg */ = {isa = PBXFileReference; lastKnownFileType = image.jpeg; path = 23.jpg; sourceTree = "<group>"; };
C4EB5B7D1CD8B24F003A7094 /* 3.jpg */ = {isa = PBXFileReference; lastKnownFileType = image.jpeg; path = 3.jpg; sourceTree = "<group>"; };
C4EB5B7E1CD8B24F003A7094 /* 4.jpg */ = {isa = PBXFileReference; lastKnownFileType = image.jpeg; path = 4.jpg; sourceTree = "<group>"; };
C4EB5B7F1CD8B24F003A7094 /* 5.jpg */ = {isa = PBXFileReference; lastKnownFileType = image.jpeg; path = 5.jpg; sourceTree = "<group>"; };
C4EB5B801CD8B24F003A7094 /* 6.jpg */ = {isa = PBXFileReference; lastKnownFileType = image.jpeg; path = 6.jpg; sourceTree = "<group>"; };
C4EB5B811CD8B24F003A7094 /* 7.jpg */ = {isa = PBXFileReference; lastKnownFileType = image.jpeg; path = 7.jpg; sourceTree = "<group>"; };
C4EB5B821CD8B24F003A7094 /* 8.jpg */ = {isa = PBXFileReference; lastKnownFileType = image.jpeg; path = 8.jpg; sourceTree = "<group>"; };
C4EB5B831CD8B24F003A7094 /* 9.jpg */ = {isa = PBXFileReference; lastKnownFileType = image.jpeg; path = 9.jpg; sourceTree = "<group>"; };
C4EB5B841CD8B24F003A7094 /* Home.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Home.xcassets; sourceTree = "<group>"; };
C4EB5B851CD8B24F003A7094 /* icon0.jpg */ = {isa = PBXFileReference; lastKnownFileType = image.jpeg; path = icon0.jpg; sourceTree = "<group>"; };
C4EB5B861CD8B24F003A7094 /* icon1.jpg */ = {isa = PBXFileReference; lastKnownFileType = image.jpeg; path = icon1.jpg; sourceTree = "<group>"; };
C4EB5B871CD8B24F003A7094 /* icon2.jpg */ = {isa = PBXFileReference; lastKnownFileType = image.jpeg; path = icon2.jpg; sourceTree = "<group>"; };
C4EB5B881CD8B24F003A7094 /* icon3.jpg */ = {isa = PBXFileReference; lastKnownFileType = image.jpeg; path = icon3.jpg; sourceTree = "<group>"; };
C4EB5B891CD8B24F003A7094 /* icon4.jpg */ = {isa = PBXFileReference; lastKnownFileType = image.jpeg; path = icon4.jpg; sourceTree = "<group>"; };
C4EB5B8A1CD8B24F003A7094 /* pbg.jpg */ = {isa = PBXFileReference; lastKnownFileType = image.jpeg; path = pbg.jpg; sourceTree = "<group>"; };
C4EB5B8B1CD8B24F003A7094 /* pic0.jpg */ = {isa = PBXFileReference; lastKnownFileType = image.jpeg; path = pic0.jpg; sourceTree = "<group>"; };
C4EB5B8C1CD8B24F003A7094 /* pic1.jpg */ = {isa = PBXFileReference; lastKnownFileType = image.jpeg; path = pic1.jpg; sourceTree = "<group>"; };
C4EB5B8D1CD8B24F003A7094 /* pic2.jpg */ = {isa = PBXFileReference; lastKnownFileType = image.jpeg; path = pic2.jpg; sourceTree = "<group>"; };
C4EB5B8E1CD8B24F003A7094 /* pic3.jpg */ = {isa = PBXFileReference; lastKnownFileType = image.jpeg; path = pic3.jpg; sourceTree = "<group>"; };
C4EB5B8F1CD8B24F003A7094 /* pic4.jpg */ = {isa = PBXFileReference; lastKnownFileType = image.jpeg; path = pic4.jpg; sourceTree = "<group>"; };
C4EB5B901CD8B250003A7094 /* pic5.jpg */ = {isa = PBXFileReference; lastKnownFileType = image.jpeg; path = pic5.jpg; sourceTree = "<group>"; };
C4EB5B911CD8B250003A7094 /* pic6.jpg */ = {isa = PBXFileReference; lastKnownFileType = image.jpeg; path = pic6.jpg; sourceTree = "<group>"; };
C4EB5B921CD8B250003A7094 /* pic7.jpg */ = {isa = PBXFileReference; lastKnownFileType = image.jpeg; path = pic7.jpg; sourceTree = "<group>"; };
C4EB5B931CD8B250003A7094 /* pic8.jpg */ = {isa = PBXFileReference; lastKnownFileType = image.jpeg; path = pic8.jpg; sourceTree = "<group>"; };
C4EB5B941CD8B250003A7094 /* picon.jpg */ = {isa = PBXFileReference; lastKnownFileType = image.jpeg; path = picon.jpg; sourceTree = "<group>"; };
C4EB5B961CD8B250003A7094 /* test0.jpg */ = {isa = PBXFileReference; lastKnownFileType = image.jpeg; path = test0.jpg; sourceTree = "<group>"; };
C4EB5B971CD8B250003A7094 /* test1.jpg */ = {isa = PBXFileReference; lastKnownFileType = image.jpeg; path = test1.jpg; sourceTree = "<group>"; };
C4EB5B981CD8B250003A7094 /* test2.jpg */ = {isa = PBXFileReference; lastKnownFileType = image.jpeg; path = test2.jpg; sourceTree = "<group>"; };
C4EB5B991CD8B250003A7094 /* test3.jpg */ = {isa = PBXFileReference; lastKnownFileType = image.jpeg; path = test3.jpg; sourceTree = "<group>"; };
C4EB5B9A1CD8B250003A7094 /* test4.jpg */ = {isa = PBXFileReference; lastKnownFileType = image.jpeg; path = test4.jpg; sourceTree = "<group>"; };
C4EB5B9C1CD8B250003A7094 /* ball.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = ball.png; sourceTree = "<group>"; };
C4EB5B9D1CD8B250003A7094 /* fire.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = fire.png; sourceTree = "<group>"; };
C4EB5B9E1CD8B250003A7094 /* snow2.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = snow2.png; sourceTree = "<group>"; };
C4EB5B9F1CD8B250003A7094 /* snowbg.jpg */ = {isa = PBXFileReference; lastKnownFileType = image.jpeg; path = snowbg.jpg; sourceTree = "<group>"; };
C4EB5BA01CD8B250003A7094 /* 樱花树1.jpg */ = {isa = PBXFileReference; lastKnownFileType = image.jpeg; path = "樱花树1.jpg"; sourceTree = "<group>"; };
C4EB5BA11CD8B250003A7094 /* 樱花树2.jpg */ = {isa = PBXFileReference; lastKnownFileType = image.jpeg; path = "樱花树2.jpg"; sourceTree = "<group>"; };
C4EB5BA21CD8B250003A7094 /* 樱花树3.jpg */ = {isa = PBXFileReference; lastKnownFileType = image.jpeg; path = "樱花树3.jpg"; sourceTree = "<group>"; };
C4EB5BA31CD8B250003A7094 /* 樱花瓣1.jpg */ = {isa = PBXFileReference; lastKnownFileType = image.jpeg; path = "樱花瓣1.jpg"; sourceTree = "<group>"; };
C4EB5BA41CD8B250003A7094 /* 樱花瓣2.jpg */ = {isa = PBXFileReference; lastKnownFileType = image.jpeg; path = "樱花瓣2.jpg"; sourceTree = "<group>"; };
C4EB5BA51CD8B250003A7094 /* 烟花背景.jpg */ = {isa = PBXFileReference; lastKnownFileType = image.jpeg; path = "烟花背景.jpg"; sourceTree = "<group>"; };
C4EB5BA61CD8B250003A7094 /* 金元宝.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "金元宝.png"; sourceTree = "<group>"; };
C4EB5BA71CD8B250003A7094 /* 雪花.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "雪花.png"; sourceTree = "<group>"; };
C4EB5C321CD8B530003A7094 /* BABaseProject.pch */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = BABaseProject.pch; sourceTree = "<group>"; };
C4EB5C9D1CD8BDAE003A7094 /* Info.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
C4EE1C5C1D2288BF005046A6 /* DemoVC2_01.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = DemoVC2_01.h; sourceTree = "<group>"; };
C4EE1C5D1D2288BF005046A6 /* DemoVC2_01.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = DemoVC2_01.m; sourceTree = "<group>"; };
C4EE1C5F1D228AE9005046A6 /* DemoVC2_01_Model.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = DemoVC2_01_Model.h; sourceTree = "<group>"; };
C4EE1C601D228AE9005046A6 /* DemoVC2_01_Model.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = DemoVC2_01_Model.m; sourceTree = "<group>"; };
C4EE1C631D228E34005046A6 /* NSString+BAKit.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSString+BAKit.h"; sourceTree = "<group>"; };
C4EE1C641D228E34005046A6 /* NSString+BAKit.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSString+BAKit.m"; sourceTree = "<group>"; };
C4EE1C671D2295E2005046A6 /* BACellDataAdapter.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = BACellDataAdapter.h; sourceTree = "<group>"; };
C4EE1C681D2295E2005046A6 /* BACellDataAdapter.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = BACellDataAdapter.m; sourceTree = "<group>"; };
C4F59F851D54680E00AA822A /* BANewFeatureVC.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = BANewFeatureVC.h; sourceTree = "<group>"; };
C4F59F861D54680E00AA822A /* BANewFeatureVC.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = BANewFeatureVC.m; sourceTree = "<group>"; };
C4F59F881D54684E00AA822A /* BAADScrollView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = BAADScrollView.h; sourceTree = "<group>"; };
C4F59F891D54684E00AA822A /* BAADScrollView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = BAADScrollView.m; sourceTree = "<group>"; };
C4F59F8B1D5468B900AA822A /* BAADLabel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = BAADLabel.h; sourceTree = "<group>"; };