al
重庆迈尖科技有限公司
2021-08-21 fdc4d6df988cbfa3157649e707de264d82c15c93
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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
3500
3501
3502
3503
3504
3505
3506
3507
3508
3509
3510
3511
3512
3513
3514
3515
3516
3517
3518
3519
3520
3521
3522
3523
3524
3525
3526
3527
3528
3529
3530
3531
3532
3533
3534
3535
3536
3537
3538
3539
3540
// !$*UTF8*$!
{
    archiveVersion = 1;
    classes = {
    };
    objectVersion = 46;
    objects = {
 
/* Begin PBXBuildFile section */
        18052EA31E208379005997FC /* SafariServices.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 18052EA21E208379005997FC /* SafariServices.framework */; };
        181D3A091E1DFD5300CDBDE9 /* XYRUITextField.m in Sources */ = {isa = PBXBuildFile; fileRef = 181D3A081E1DFD5300CDBDE9 /* XYRUITextField.m */; };
        1823F4CA1DACC91F00C114C3 /* forgetPasswordViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 1823F4C81DACC91F00C114C3 /* forgetPasswordViewController.m */; };
        1823F4CB1DACC91F00C114C3 /* forgetPasswordViewController.xib in Resources */ = {isa = PBXBuildFile; fileRef = 1823F4C91DACC91F00C114C3 /* forgetPasswordViewController.xib */; };
        182F49632092D0E200FEAAF7 /* UINavigationBar+SJNav.m in Sources */ = {isa = PBXBuildFile; fileRef = 182F49622092D0E200FEAAF7 /* UINavigationBar+SJNav.m */; };
        182F49662092DF1200FEAAF7 /* SJTabbarViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 182F49652092DF1200FEAAF7 /* SJTabbarViewController.m */; };
        182F49682092FF1D00FEAAF7 /* 1125x2436.png in Resources */ = {isa = PBXBuildFile; fileRef = 182F49672092FF1D00FEAAF7 /* 1125x2436.png */; };
        183080D91E29CD2F0017DDD7 /* childCollectionViewCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 183080D41E29CD2F0017DDD7 /* childCollectionViewCell.m */; };
        183080DA1E29CD2F0017DDD7 /* childCollectionViewCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = 183080D51E29CD2F0017DDD7 /* childCollectionViewCell.xib */; };
        183080E01E29D0E60017DDD7 /* XYRChildTableViewCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 183080DE1E29D0E60017DDD7 /* XYRChildTableViewCell.m */; };
        183080E11E29D0E60017DDD7 /* XYRChildTableViewCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = 183080DF1E29D0E60017DDD7 /* XYRChildTableViewCell.xib */; };
        1845BB48209BF13D009C639B /* DisCoverTableViewCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 1845BB46209BF13D009C639B /* DisCoverTableViewCell.m */; };
        1845BB49209BF13D009C639B /* DisCoverTableViewCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = 1845BB47209BF13D009C639B /* DisCoverTableViewCell.xib */; };
        1845BB4B209BF212009C639B /* PassKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 1845BB4A209BF212009C639B /* PassKit.framework */; };
        184D34891E1F3728007B0131 /* ConfirmTheGoodsViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 184D34871E1F3728007B0131 /* ConfirmTheGoodsViewController.m */; };
        184D348A1E1F3728007B0131 /* ConfirmTheGoodsViewController.xib in Resources */ = {isa = PBXBuildFile; fileRef = 184D34881E1F3728007B0131 /* ConfirmTheGoodsViewController.xib */; };
        184DBB321DDB0BB00034B39B /* libc++abi.tbd in Frameworks */ = {isa = PBXBuildFile; fileRef = 184DBB311DDB0BB00034B39B /* libc++abi.tbd */; };
        18678ED920BE96D5000F5D54 /* recommendView.m in Sources */ = {isa = PBXBuildFile; fileRef = 7B32BD2E1D4F259300E96E75 /* recommendView.m */; };
        186BE3021DAA22B60003A943 /* RegisteViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 186BE3001DAA22B60003A943 /* RegisteViewController.m */; };
        186BE3031DAA22B60003A943 /* RegisteViewController.xib in Resources */ = {isa = PBXBuildFile; fileRef = 186BE3011DAA22B60003A943 /* RegisteViewController.xib */; };
        1877D1771DCAE100000CEC83 /* CoreData.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 1877D1761DCAE100000CEC83 /* CoreData.framework */; };
        1877D1791DCAE119000CEC83 /* JavaScriptCore.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 1877D1781DCAE119000CEC83 /* JavaScriptCore.framework */; };
        187A74571DF79DDF001E856F /* LXAlertView.m in Sources */ = {isa = PBXBuildFile; fileRef = 187A74541DF79DDF001E856F /* LXAlertView.m */; };
        187A74581DF79DDF001E856F /* UILabel+LXAdd.m in Sources */ = {isa = PBXBuildFile; fileRef = 187A74561DF79DDF001E856F /* UILabel+LXAdd.m */; };
        187A745E1DF7B1C6001E856F /* titleImage2.png in Resources */ = {isa = PBXBuildFile; fileRef = 187A745D1DF7B1C6001E856F /* titleImage2.png */; };
        188175201DC05C51004A2540 /* liveOnLineView.m in Sources */ = {isa = PBXBuildFile; fileRef = 1881751F1DC05C51004A2540 /* liveOnLineView.m */; };
        188322391F74B62400CCD0B4 /* HXEasyCustomShareView.m in Sources */ = {isa = PBXBuildFile; fileRef = 188322361F74AFFD00CCD0B4 /* HXEasyCustomShareView.m */; };
        1883223A1F74B62400CCD0B4 /* HXShareScrollView.m in Sources */ = {isa = PBXBuildFile; fileRef = 188322381F74AFFD00CCD0B4 /* HXShareScrollView.m */; };
        1884A6021E545D4900548480 /* PopoverAction.m in Sources */ = {isa = PBXBuildFile; fileRef = 1884A5FD1E545D4900548480 /* PopoverAction.m */; };
        1884A6031E545D4900548480 /* PopoverViewCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 1884A5FF1E545D4900548480 /* PopoverViewCell.m */; };
        1884A6041E545D4900548480 /* PopoverViews.m in Sources */ = {isa = PBXBuildFile; fileRef = 1884A6011E545D4900548480 /* PopoverViews.m */; };
        1884A6081E54630300548480 /* LGLAlertView.m in Sources */ = {isa = PBXBuildFile; fileRef = 1884A6071E54630300548480 /* LGLAlertView.m */; };
        189787821D9233E9006245B9 /* View.xib in Resources */ = {isa = PBXBuildFile; fileRef = 189787811D9233E9006245B9 /* View.xib */; };
        189787861D925B5D006245B9 /* GoogleAdTableViewCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 189787841D925B5D006245B9 /* GoogleAdTableViewCell.m */; };
        189787871D925B5D006245B9 /* GoogleAdTableViewCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = 189787851D925B5D006245B9 /* GoogleAdTableViewCell.xib */; };
        189EFECB1EF1465D00C59CAB /* yw_1222.jpg in Resources */ = {isa = PBXBuildFile; fileRef = 189EFECA1EF1465D00C59CAB /* yw_1222.jpg */; };
        18ABF6E31DDD9B4600C9257E /* YTHNetdata.m in Sources */ = {isa = PBXBuildFile; fileRef = 18ABF6E01DDD9B4600C9257E /* YTHNetdata.m */; };
        18ABF6E41DDD9B4600C9257E /* YTHNetInterface.m in Sources */ = {isa = PBXBuildFile; fileRef = 18ABF6E21DDD9B4600C9257E /* YTHNetInterface.m */; };
        18B1C25A1DB5B26B00AB709B /* HMSegmentedControl.m in Sources */ = {isa = PBXBuildFile; fileRef = 18B1C23C1DB5B26B00AB709B /* HMSegmentedControl.m */; };
        18B1C25B1DB5B26B00AB709B /* LICENSE.md in Sources */ = {isa = PBXBuildFile; fileRef = 18B1C23D1DB5B26B00AB709B /* LICENSE.md */; };
        18B1C25C1DB5B26B00AB709B /* README.md in Sources */ = {isa = PBXBuildFile; fileRef = 18B1C23E1DB5B26B00AB709B /* README.md */; };
        18B1C2661DB5B26B00AB709B /* LICENSE in Resources */ = {isa = PBXBuildFile; fileRef = 18B1C2551DB5B26B00AB709B /* LICENSE */; };
        18B1C2671DB5B26B00AB709B /* README.md in Sources */ = {isa = PBXBuildFile; fileRef = 18B1C2561DB5B26B00AB709B /* README.md */; };
        18B1C2681DB5B26B00AB709B /* SlideMenuController.m in Sources */ = {isa = PBXBuildFile; fileRef = 18B1C2591DB5B26B00AB709B /* SlideMenuController.m */; };
        18B6BE611DADC64A00DA4F63 /* Personal_informationViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 18B6BE5F1DADC64A00DA4F63 /* Personal_informationViewController.m */; };
        18B6BE621DADC64A00DA4F63 /* Personal_informationViewController.xib in Resources */ = {isa = PBXBuildFile; fileRef = 18B6BE601DADC64A00DA4F63 /* Personal_informationViewController.xib */; };
        18B6BE681DADDB2C00DA4F63 /* IconTableViewCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 18B6BE661DADDB2C00DA4F63 /* IconTableViewCell.m */; };
        18B6BE691DADDB2C00DA4F63 /* IconTableViewCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = 18B6BE671DADDB2C00DA4F63 /* IconTableViewCell.xib */; };
        18B6BE6D1DADDB4700DA4F63 /* InfoTableViewCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 18B6BE6B1DADDB4700DA4F63 /* InfoTableViewCell.m */; };
        18B6BE6E1DADDB4700DA4F63 /* InfoTableViewCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = 18B6BE6C1DADDB4700DA4F63 /* InfoTableViewCell.xib */; };
        18B6BE721DADDB6E00DA4F63 /* signatureTableViewCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 18B6BE701DADDB6E00DA4F63 /* signatureTableViewCell.m */; };
        18B6BE731DADDB6E00DA4F63 /* signatureTableViewCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = 18B6BE711DADDB6E00DA4F63 /* signatureTableViewCell.xib */; };
        18BBB9031E23977E00793EAB /* LSPageScrollView.m in Sources */ = {isa = PBXBuildFile; fileRef = 18BBB9011E23977E00793EAB /* LSPageScrollView.m */; };
        18BC12A71EDEA7AD001E2FB0 /* HotLiveTableViewCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 18BC12A51EDEA7AD001E2FB0 /* HotLiveTableViewCell.m */; };
        18BC12A81EDEA7AD001E2FB0 /* HotLiveTableViewCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = 18BC12A61EDEA7AD001E2FB0 /* HotLiveTableViewCell.xib */; };
        18BC12AC1EDEA838001E2FB0 /* AllLiveTypeTableViewCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 18BC12AA1EDEA838001E2FB0 /* AllLiveTypeTableViewCell.m */; };
        18BC12AD1EDEA838001E2FB0 /* AllLiveTypeTableViewCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = 18BC12AB1EDEA838001E2FB0 /* AllLiveTypeTableViewCell.xib */; };
        18BC12B11EDEA87D001E2FB0 /* LiveListTableViewCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 18BC12AF1EDEA87D001E2FB0 /* LiveListTableViewCell.m */; };
        18BC12B21EDEA87D001E2FB0 /* LiveListTableViewCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = 18BC12B01EDEA87D001E2FB0 /* LiveListTableViewCell.xib */; };
        18BC12B61EDEAB4A001E2FB0 /* HotLiveCollectionViewCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 18BC12B41EDEAB4A001E2FB0 /* HotLiveCollectionViewCell.m */; };
        18BC12B71EDEAB4A001E2FB0 /* HotLiveCollectionViewCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = 18BC12B51EDEAB4A001E2FB0 /* HotLiveCollectionViewCell.xib */; };
        18BC12BB1EDEAB68001E2FB0 /* AllLiveTypeCollectionViewCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 18BC12B91EDEAB68001E2FB0 /* AllLiveTypeCollectionViewCell.m */; };
        18BC12BC1EDEAB68001E2FB0 /* AllLiveTypeCollectionViewCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = 18BC12BA1EDEAB68001E2FB0 /* AllLiveTypeCollectionViewCell.xib */; };
        18BC12C01EDEAB8D001E2FB0 /* LiveListCollectionViewCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 18BC12BE1EDEAB8D001E2FB0 /* LiveListCollectionViewCell.m */; };
        18BC12C11EDEAB8D001E2FB0 /* LiveListCollectionViewCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = 18BC12BF1EDEAB8D001E2FB0 /* LiveListCollectionViewCell.xib */; };
        18C5F6401E1B8B0A00537707 /* findTitleTableViewCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 18C5F63C1E1B8B0A00537707 /* findTitleTableViewCell.m */; };
        18C5F6411E1B8B0A00537707 /* findTitleTableViewCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = 18C5F63D1E1B8B0A00537707 /* findTitleTableViewCell.xib */; };
        18C95F531D94DE2A009CBF0F /* GoogleService-Info.plist in Resources */ = {isa = PBXBuildFile; fileRef = 18C95F521D94DE2A009CBF0F /* GoogleService-Info.plist */; };
        18D94EAB1ECD7B6E00B6FA54 /* newADCollectionViewCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 18D94EA91ECD7B6E00B6FA54 /* newADCollectionViewCell.m */; };
        18D94EAC1ECD7B6E00B6FA54 /* newADCollectionViewCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = 18D94EAA1ECD7B6E00B6FA54 /* newADCollectionViewCell.xib */; };
        18E943E62057656C0019FD04 /* recommendViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 18E943E52057656C0019FD04 /* recommendViewController.m */; };
        18E943E9205766510019FD04 /* subregionViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 18E943E8205766510019FD04 /* subregionViewController.m */; };
        18E943EC2057667D0019FD04 /* MineViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 18E943EB2057667D0019FD04 /* MineViewController.m */; };
        18E943EF205767120019FD04 /* discoverViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 18E943EE205767120019FD04 /* discoverViewController.m */; };
        18E943F2205774D50019FD04 /* BaseViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 18E943F1205774D50019FD04 /* BaseViewController.m */; };
        18E943F52057C5720019FD04 /* JYNetWorking.m in Sources */ = {isa = PBXBuildFile; fileRef = 18E943F42057C5710019FD04 /* JYNetWorking.m */; };
        18ED606C1E1632E300AF8252 /* StartCollectionViewCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 18ED606A1E1632E300AF8252 /* StartCollectionViewCell.m */; };
        18ED606D1E1632E300AF8252 /* StartCollectionViewCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = 18ED606B1E1632E300AF8252 /* StartCollectionViewCell.xib */; };
        18ED60711E165CE000AF8252 /* findGoodsTableViewCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 18ED606F1E165CE000AF8252 /* findGoodsTableViewCell.m */; };
        18ED60721E165CE000AF8252 /* findGoodsTableViewCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = 18ED60701E165CE000AF8252 /* findGoodsTableViewCell.xib */; };
        18EF91E31D8E47610078C8BD /* WEBViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 18EF91E11D8E47610078C8BD /* WEBViewController.m */; };
        18F2541F1DF0090900826AD0 /* FuLiSheViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 18F2541D1DF0090900826AD0 /* FuLiSheViewController.m */; };
        18F254201DF0090900826AD0 /* FuLiSheViewController.xib in Resources */ = {isa = PBXBuildFile; fileRef = 18F2541E1DF0090900826AD0 /* FuLiSheViewController.xib */; };
        18F5CA971E1C862D001F526F /* libc++.tbd in Frameworks */ = {isa = PBXBuildFile; fileRef = 18F5CA961E1C862D001F526F /* libc++.tbd */; };
        18F5CA9B1E1C8895001F526F /* findcommentTableViewCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 18F5CA991E1C8895001F526F /* findcommentTableViewCell.m */; };
        18F5CA9C1E1C8895001F526F /* findcommentTableViewCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = 18F5CA9A1E1C8895001F526F /* findcommentTableViewCell.xib */; };
        18F5CAA01E1C8E79001F526F /* discoverGoodsDetailViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 18F5CA9E1E1C8E79001F526F /* discoverGoodsDetailViewController.m */; };
        18F5CAA11E1C8E79001F526F /* discoverGoodsDetailViewController.xib in Resources */ = {isa = PBXBuildFile; fileRef = 18F5CA9F1E1C8E79001F526F /* discoverGoodsDetailViewController.xib */; };
        18F5CAA51E1CD25E001F526F /* allCommentsViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 18F5CAA31E1CD25E001F526F /* allCommentsViewController.m */; };
        18F5CAA61E1CD25E001F526F /* allCommentsViewController.xib in Resources */ = {isa = PBXBuildFile; fileRef = 18F5CAA41E1CD25E001F526F /* allCommentsViewController.xib */; };
        18F5CAAB1E1CFE8C001F526F /* PublishGoodsViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 18F5CAA91E1CFE8C001F526F /* PublishGoodsViewController.m */; };
        18F5CAAC1E1CFE8C001F526F /* PublishGoodsViewController.xib in Resources */ = {isa = PBXBuildFile; fileRef = 18F5CAAA1E1CFE8C001F526F /* PublishGoodsViewController.xib */; };
        18FA68A520916CE300DDF6A6 /* 1125.png in Resources */ = {isa = PBXBuildFile; fileRef = 18FA689B20916CE300DDF6A6 /* 1125.png */; };
        18FA68A620916CE300DDF6A6 /* 320.png in Resources */ = {isa = PBXBuildFile; fileRef = 18FA689C20916CE300DDF6A6 /* 320.png */; };
        18FA68A720916CE300DDF6A6 /* 320x480.png in Resources */ = {isa = PBXBuildFile; fileRef = 18FA689D20916CE300DDF6A6 /* 320x480.png */; };
        18FA68A820916CE300DDF6A6 /* 320x568.png in Resources */ = {isa = PBXBuildFile; fileRef = 18FA689E20916CE300DDF6A6 /* 320x568.png */; };
        18FA68A920916CE300DDF6A6 /* 375.png in Resources */ = {isa = PBXBuildFile; fileRef = 18FA689F20916CE300DDF6A6 /* 375.png */; };
        18FA68AA20916CE300DDF6A6 /* 375x667.png in Resources */ = {isa = PBXBuildFile; fileRef = 18FA68A020916CE300DDF6A6 /* 375x667.png */; };
        18FA68AB20916CE300DDF6A6 /* 414.png in Resources */ = {isa = PBXBuildFile; fileRef = 18FA68A120916CE300DDF6A6 /* 414.png */; };
        18FA68AC20916CE300DDF6A6 /* 414x736.png in Resources */ = {isa = PBXBuildFile; fileRef = 18FA68A220916CE300DDF6A6 /* 414x736.png */; };
        18FA68AD20916CE300DDF6A6 /* 621x1104.png in Resources */ = {isa = PBXBuildFile; fileRef = 18FA68A320916CE300DDF6A6 /* 621x1104.png */; };
        18FA68AE20916CE300DDF6A6 /* 640x1136.png in Resources */ = {isa = PBXBuildFile; fileRef = 18FA68A420916CE300DDF6A6 /* 640x1136.png */; };
        18FB20DE1EE7E5330008AFD9 /* liveTopicViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 18FB20DC1EE7E5330008AFD9 /* liveTopicViewController.m */; };
        18FB20DF1EE7E5330008AFD9 /* liveTopicViewController.xib in Resources */ = {isa = PBXBuildFile; fileRef = 18FB20DD1EE7E5330008AFD9 /* liveTopicViewController.xib */; };
        18FC90F31D9142730041D298 /* googleADS.xib in Resources */ = {isa = PBXBuildFile; fileRef = 18FC90F21D9142730041D298 /* googleADS.xib */; };
        18FC90F71D9144320041D298 /* GoogleAdCollectionReusableView.m in Sources */ = {isa = PBXBuildFile; fileRef = 18FC90F51D9144320041D298 /* GoogleAdCollectionReusableView.m */; };
        18FC90F81D9144320041D298 /* GoogleAdCollectionReusableView.xib in Resources */ = {isa = PBXBuildFile; fileRef = 18FC90F61D9144320041D298 /* GoogleAdCollectionReusableView.xib */; };
        2D1198E5212E93CD0043EA39 /* UIViewController+Tools.m in Sources */ = {isa = PBXBuildFile; fileRef = 2D1198E3212E93CB0043EA39 /* UIViewController+Tools.m */; };
        2D1809FA26CCE6960039C3F6 /* Pods_BuWanVideo2_0.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = E04DB6AA7D031EA7A75EA35B /* Pods_BuWanVideo2_0.framework */; };
        2D1E3DB82134FF4C0021C50A /* BSKImagesPageView.m in Sources */ = {isa = PBXBuildFile; fileRef = 2D1E3DB62134FF4B0021C50A /* BSKImagesPageView.m */; };
        2D1E3DBB213536700021C50A /* NoNetworkView.m in Sources */ = {isa = PBXBuildFile; fileRef = 2D1E3DBA213536700021C50A /* NoNetworkView.m */; };
        2D3F513821AE716F00C50FA5 /* AdCollectionViewCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 2D3F513621AE716F00C50FA5 /* AdCollectionViewCell.m */; };
        2D3F513921AE716F00C50FA5 /* AdCollectionViewCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = 2D3F513721AE716F00C50FA5 /* AdCollectionViewCell.xib */; };
        2D433C162236684100083427 /* FaxianCReusableView.m in Sources */ = {isa = PBXBuildFile; fileRef = 2D433C142236684100083427 /* FaxianCReusableView.m */; };
        2D433C172236684100083427 /* FaxianCReusableView.xib in Resources */ = {isa = PBXBuildFile; fileRef = 2D433C152236684100083427 /* FaxianCReusableView.xib */; };
        2D73254A212D626000E09821 /* YYImage.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 2D732549212D626000E09821 /* YYImage.framework */; };
        2D73254C212D626600E09821 /* YYCache.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 2D73254B212D626600E09821 /* YYCache.framework */; };
        2D73254E212D626B00E09821 /* YYWebImage.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 2D73254D212D626B00E09821 /* YYWebImage.framework */; };
        2D732550212D6B5200E09821 /* WebP.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 2D73254F212D6B5200E09821 /* WebP.framework */; };
        2DBB90CE22320D2900E70439 /* DisCoverADView.m in Sources */ = {isa = PBXBuildFile; fileRef = 2DBB90CD22320D2900E70439 /* DisCoverADView.m */; };
        2DBB90D022320D3D00E70439 /* DisCoverADView.xib in Resources */ = {isa = PBXBuildFile; fileRef = 2DBB90CF22320D3D00E70439 /* DisCoverADView.xib */; };
        2DC9303C26C3B6C700B5C669 /* SearchADCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 2DC9303B26C3B6C700B5C669 /* SearchADCell.m */; };
        2DEC6E5C22017DC5009B06D4 /* UITabBar+mainTab.m in Sources */ = {isa = PBXBuildFile; fileRef = 2DEC6E5B22017DC5009B06D4 /* UITabBar+mainTab.m */; };
        2DECF92D22325172002FF49F /* GuessLikeViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 2DECF92C22325172002FF49F /* GuessLikeViewController.m */; };
        2DECF93122325854002FF49F /* GuessLTableViewCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 2DECF92F22325854002FF49F /* GuessLTableViewCell.m */; };
        2DECF93222325854002FF49F /* GuessLTableViewCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = 2DECF93022325854002FF49F /* GuessLTableViewCell.xib */; };
        702904B72687016200F93618 /* PlistFileOperator.m in Sources */ = {isa = PBXBuildFile; fileRef = 702904B12687016200F93618 /* PlistFileOperator.m */; };
        702904B82687016200F93618 /* ObtainProperty.m in Sources */ = {isa = PBXBuildFile; fileRef = 702904B22687016200F93618 /* ObtainProperty.m */; };
        702904BA2687016200F93618 /* FileOperator.m in Sources */ = {isa = PBXBuildFile; fileRef = 702904B62687016200F93618 /* FileOperator.m */; };
        702904BD2687292400F93618 /* SearchCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 702904BC2687292400F93618 /* SearchCell.m */; };
        7030BAA326A40201003050E0 /* BuyVipController.m in Sources */ = {isa = PBXBuildFile; fileRef = 7030BAA226A40201003050E0 /* BuyVipController.m */; };
        7030BAA626A404AB003050E0 /* NormolNavView.m in Sources */ = {isa = PBXBuildFile; fileRef = 7030BAA526A404AB003050E0 /* NormolNavView.m */; };
        7034AC8426638BF30056133F /* RecommendChangeFooterView.m in Sources */ = {isa = PBXBuildFile; fileRef = 7034AC8326638BF30056133F /* RecommendChangeFooterView.m */; };
        7034AC8E2663A03D0056133F /* SearchController.m in Sources */ = {isa = PBXBuildFile; fileRef = 7034AC8D2663A03D0056133F /* SearchController.m */; };
        7034AC922663A41C0056133F /* SearchNavView.m in Sources */ = {isa = PBXBuildFile; fileRef = 7034AC912663A41C0056133F /* SearchNavView.m */; };
        7034AC962663BC400056133F /* SearchHotCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 7034AC952663BC400056133F /* SearchHotCell.m */; };
        7034AC992663BCF00056133F /* SearchRecordCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 7034AC982663BCF00056133F /* SearchRecordCell.m */; };
        7034AC9C2663BD650056133F /* SearchHotSearchCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 7034AC9B2663BD650056133F /* SearchHotSearchCell.m */; };
        7034AC9F2663BDFE0056133F /* SearchRecordHeaderView.m in Sources */ = {isa = PBXBuildFile; fileRef = 7034AC9E2663BDFE0056133F /* SearchRecordHeaderView.m */; };
        703B2A75269062F2001137D1 /* js.txt in Resources */ = {isa = PBXBuildFile; fileRef = 703B2A74269062F2001137D1 /* js.txt */; };
        70452819250E2C610006C95E /* libGDTMobSDK.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 7045280E250E2C5F0006C95E /* libGDTMobSDK.a */; };
        704C1489265A936B009DAB98 /* BaseController.m in Sources */ = {isa = PBXBuildFile; fileRef = 704C1488265A936B009DAB98 /* BaseController.m */; };
        704C148C265A9393009DAB98 /* RecommendMainController.m in Sources */ = {isa = PBXBuildFile; fileRef = 704C148B265A9393009DAB98 /* RecommendMainController.m */; };
        704C14A1265A98A1009DAB98 /* RecommendNavView.m in Sources */ = {isa = PBXBuildFile; fileRef = 704C14A0265A98A1009DAB98 /* RecommendNavView.m */; };
        704C14B8265B72A5009DAB98 /* UIView+ZJFrame.m in Sources */ = {isa = PBXBuildFile; fileRef = 704C14A8265B72A5009DAB98 /* UIView+ZJFrame.m */; };
        704C14B9265B72A5009DAB98 /* ZJTitleView.m in Sources */ = {isa = PBXBuildFile; fileRef = 704C14AD265B72A5009DAB98 /* ZJTitleView.m */; };
        704C14BA265B72A5009DAB98 /* UIViewController+ZJScrollPageController.m in Sources */ = {isa = PBXBuildFile; fileRef = 704C14AE265B72A5009DAB98 /* UIViewController+ZJScrollPageController.m */; };
        704C14BB265B72A5009DAB98 /* ZJContentView.m in Sources */ = {isa = PBXBuildFile; fileRef = 704C14B1265B72A5009DAB98 /* ZJContentView.m */; };
        704C14BC265B72A5009DAB98 /* ZJCollectionView.m in Sources */ = {isa = PBXBuildFile; fileRef = 704C14B2265B72A5009DAB98 /* ZJCollectionView.m */; };
        704C14BD265B72A5009DAB98 /* ZJSegmentStyle.m in Sources */ = {isa = PBXBuildFile; fileRef = 704C14B3265B72A5009DAB98 /* ZJSegmentStyle.m */; };
        704C14BE265B72A5009DAB98 /* ZJScrollSegmentView.m in Sources */ = {isa = PBXBuildFile; fileRef = 704C14B4265B72A5009DAB98 /* ZJScrollSegmentView.m */; };
        704C14BF265B72A5009DAB98 /* ZJScrollPageView.m in Sources */ = {isa = PBXBuildFile; fileRef = 704C14B5265B72A5009DAB98 /* ZJScrollPageView.m */; };
        704C14C2265B7623009DAB98 /* RecommendController.m in Sources */ = {isa = PBXBuildFile; fileRef = 704C14C1265B7623009DAB98 /* RecommendController.m */; };
        704C14CB265B76D2009DAB98 /* ListController.m in Sources */ = {isa = PBXBuildFile; fileRef = 704C14CA265B76D2009DAB98 /* ListController.m */; };
        704C14CE265B8E38009DAB98 /* MainBaseController.m in Sources */ = {isa = PBXBuildFile; fileRef = 704C14CD265B8E38009DAB98 /* MainBaseController.m */; };
        705951F425161153008E0CDF /* SearchTitleView.m in Sources */ = {isa = PBXBuildFile; fileRef = 705951F325161153008E0CDF /* SearchTitleView.m */; };
        705951F7251633E9008E0CDF /* SearchDetailListCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 705951F6251633E9008E0CDF /* SearchDetailListCell.m */; };
        705F1E84251F085D0065350E /* Share.m in Sources */ = {isa = PBXBuildFile; fileRef = 705F1E82251F085D0065350E /* Share.m */; };
        705F1F6E251F1CA80065350E /* UIScrollView+MJRefresh.m in Sources */ = {isa = PBXBuildFile; fileRef = 705F1F37251F1CA70065350E /* UIScrollView+MJRefresh.m */; };
        705F1F6F251F1CA80065350E /* MJRefreshConst.m in Sources */ = {isa = PBXBuildFile; fileRef = 705F1F38251F1CA70065350E /* MJRefreshConst.m */; };
        705F1F70251F1CA80065350E /* MJRefreshConfig.m in Sources */ = {isa = PBXBuildFile; fileRef = 705F1F39251F1CA70065350E /* MJRefreshConfig.m */; };
        705F1F71251F1CA80065350E /* MJRefresh.bundle in Resources */ = {isa = PBXBuildFile; fileRef = 705F1F3D251F1CA70065350E /* MJRefresh.bundle */; };
        705F1F72251F1CA80065350E /* UIScrollView+MJExtension.m in Sources */ = {isa = PBXBuildFile; fileRef = 705F1F3F251F1CA70065350E /* UIScrollView+MJExtension.m */; };
        705F1F73251F1CA80065350E /* NSBundle+MJRefresh.m in Sources */ = {isa = PBXBuildFile; fileRef = 705F1F43251F1CA70065350E /* NSBundle+MJRefresh.m */; };
        705F1F74251F1CA80065350E /* UIView+MJExtension.m in Sources */ = {isa = PBXBuildFile; fileRef = 705F1F44251F1CA70065350E /* UIView+MJExtension.m */; };
        705F1F75251F1CA80065350E /* MJRefreshBackGifFooter.m in Sources */ = {isa = PBXBuildFile; fileRef = 705F1F4B251F1CA70065350E /* MJRefreshBackGifFooter.m */; };
        705F1F76251F1CA80065350E /* MJRefreshBackStateFooter.m in Sources */ = {isa = PBXBuildFile; fileRef = 705F1F4C251F1CA70065350E /* MJRefreshBackStateFooter.m */; };
        705F1F77251F1CA80065350E /* MJRefreshBackNormalFooter.m in Sources */ = {isa = PBXBuildFile; fileRef = 705F1F4D251F1CA70065350E /* MJRefreshBackNormalFooter.m */; };
        705F1F78251F1CA80065350E /* MJRefreshAutoStateFooter.m in Sources */ = {isa = PBXBuildFile; fileRef = 705F1F52251F1CA70065350E /* MJRefreshAutoStateFooter.m */; };
        705F1F79251F1CA80065350E /* MJRefreshAutoGifFooter.m in Sources */ = {isa = PBXBuildFile; fileRef = 705F1F53251F1CA70065350E /* MJRefreshAutoGifFooter.m */; };
        705F1F7A251F1CA80065350E /* MJRefreshAutoNormalFooter.m in Sources */ = {isa = PBXBuildFile; fileRef = 705F1F54251F1CA70065350E /* MJRefreshAutoNormalFooter.m */; };
        705F1F7B251F1CA80065350E /* MJRefreshStateTrailer.m in Sources */ = {isa = PBXBuildFile; fileRef = 705F1F57251F1CA70065350E /* MJRefreshStateTrailer.m */; };
        705F1F7C251F1CA80065350E /* MJRefreshNormalTrailer.m in Sources */ = {isa = PBXBuildFile; fileRef = 705F1F58251F1CA70065350E /* MJRefreshNormalTrailer.m */; };
        705F1F7D251F1CA80065350E /* MJRefreshNormalHeader.m in Sources */ = {isa = PBXBuildFile; fileRef = 705F1F5B251F1CA70065350E /* MJRefreshNormalHeader.m */; };
        705F1F7E251F1CA80065350E /* MJRefreshStateHeader.m in Sources */ = {isa = PBXBuildFile; fileRef = 705F1F5F251F1CA70065350E /* MJRefreshStateHeader.m */; };
        705F1F7F251F1CA80065350E /* MJRefreshGifHeader.m in Sources */ = {isa = PBXBuildFile; fileRef = 705F1F60251F1CA70065350E /* MJRefreshGifHeader.m */; };
        705F1F80251F1CA80065350E /* MJRefreshFooter.m in Sources */ = {isa = PBXBuildFile; fileRef = 705F1F62251F1CA70065350E /* MJRefreshFooter.m */; };
        705F1F81251F1CA80065350E /* MJRefreshHeader.m in Sources */ = {isa = PBXBuildFile; fileRef = 705F1F64251F1CA70065350E /* MJRefreshHeader.m */; };
        705F1F82251F1CA80065350E /* MJRefreshBackFooter.m in Sources */ = {isa = PBXBuildFile; fileRef = 705F1F67251F1CA70065350E /* MJRefreshBackFooter.m */; };
        705F1F83251F1CA80065350E /* MJRefreshAutoFooter.m in Sources */ = {isa = PBXBuildFile; fileRef = 705F1F68251F1CA70065350E /* MJRefreshAutoFooter.m */; };
        705F1F84251F1CA80065350E /* MJRefreshComponent.m in Sources */ = {isa = PBXBuildFile; fileRef = 705F1F6A251F1CA70065350E /* MJRefreshComponent.m */; };
        705F1F85251F1CA80065350E /* MJRefreshTrailer.m in Sources */ = {isa = PBXBuildFile; fileRef = 705F1F6D251F1CA70065350E /* MJRefreshTrailer.m */; };
        706CECC0264F76C1001FBEB7 /* PPTVNavView.m in Sources */ = {isa = PBXBuildFile; fileRef = 706CECBF264F76C1001FBEB7 /* PPTVNavView.m */; };
        706CECC5264F94CC001FBEB7 /* PPTVPppView.m in Sources */ = {isa = PBXBuildFile; fileRef = 706CECC4264F94CC001FBEB7 /* PPTVPppView.m */; };
        706CECC9264F97EB001FBEB7 /* PPTVPopCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 706CECC8264F97EB001FBEB7 /* PPTVPopCell.m */; };
        706CECD4264FB895001FBEB7 /* DSCallInfo.m in Sources */ = {isa = PBXBuildFile; fileRef = 706CECCD264FB895001FBEB7 /* DSCallInfo.m */; };
        706CECD5264FB895001FBEB7 /* InternalApis.m in Sources */ = {isa = PBXBuildFile; fileRef = 706CECD1264FB895001FBEB7 /* InternalApis.m */; };
        706CECD6264FB895001FBEB7 /* JSBUtil.m in Sources */ = {isa = PBXBuildFile; fileRef = 706CECD2264FB895001FBEB7 /* JSBUtil.m */; };
        706CECD7264FB895001FBEB7 /* DWKWebView.m in Sources */ = {isa = PBXBuildFile; fileRef = 706CECD3264FB895001FBEB7 /* DWKWebView.m */; };
        706CECDB264FB8CB001FBEB7 /* JSAPI.m in Sources */ = {isa = PBXBuildFile; fileRef = 706CECDA264FB8CB001FBEB7 /* JSAPI.m */; };
        706CECDE264FC2A7001FBEB7 /* PPTVBottomVIpVIew.m in Sources */ = {isa = PBXBuildFile; fileRef = 706CECDD264FC2A7001FBEB7 /* PPTVBottomVIpVIew.m */; };
        70C4921426AC1D6600D044F7 /* BUAdSDK.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 70C4921026AC1D6200D044F7 /* BUAdSDK.framework */; };
        70C4921526AC1D6600D044F7 /* BUCNAuxiliary.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 70C4921126AC1D6400D044F7 /* BUCNAuxiliary.framework */; };
        70C4921626AC1D6600D044F7 /* BUFoundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 70C4921226AC1D6600D044F7 /* BUFoundation.framework */; };
        70C4921726AC1D6600D044F7 /* BUAdSDK.bundle in Resources */ = {isa = PBXBuildFile; fileRef = 70C4921326AC1D6600D044F7 /* BUAdSDK.bundle */; };
        70D5934525EA1FAE00438F1A /* PPTVController.m in Sources */ = {isa = PBXBuildFile; fileRef = 70D5934425EA1FAE00438F1A /* PPTVController.m */; };
        70ED36BC266233EC00E51E79 /* CWCarousel.m in Sources */ = {isa = PBXBuildFile; fileRef = 70ED36B6266233EC00E51E79 /* CWCarousel.m */; };
        70ED36BD266233EC00E51E79 /* CWFlowLayout.m in Sources */ = {isa = PBXBuildFile; fileRef = 70ED36B8266233EC00E51E79 /* CWFlowLayout.m */; };
        70ED36C826623CCC00E51E79 /* 01.jpg in Resources */ = {isa = PBXBuildFile; fileRef = 70ED36C326623CCB00E51E79 /* 01.jpg */; };
        70ED36C926623CCC00E51E79 /* 02.jpg in Resources */ = {isa = PBXBuildFile; fileRef = 70ED36C426623CCB00E51E79 /* 02.jpg */; };
        70ED36CA26623CCC00E51E79 /* 03.jpg in Resources */ = {isa = PBXBuildFile; fileRef = 70ED36C526623CCB00E51E79 /* 03.jpg */; };
        70ED36CB26623CCC00E51E79 /* 04.jpg in Resources */ = {isa = PBXBuildFile; fileRef = 70ED36C626623CCC00E51E79 /* 04.jpg */; };
        70ED36CC26623CCC00E51E79 /* 05.jpg in Resources */ = {isa = PBXBuildFile; fileRef = 70ED36C726623CCC00E51E79 /* 05.jpg */; };
        70ED36D026624BAE00E51E79 /* UICollectionViewLeftAlignedLayout.m in Sources */ = {isa = PBXBuildFile; fileRef = 70ED36CF26624BAE00E51E79 /* UICollectionViewLeftAlignedLayout.m */; };
        70ED36D926624F4700E51E79 /* RecommendHeaderViewCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 70ED36D826624F4700E51E79 /* RecommendHeaderViewCell.m */; };
        70ED36DC266250B800E51E79 /* RecpmmendTitleView.m in Sources */ = {isa = PBXBuildFile; fileRef = 70ED36DB266250B800E51E79 /* RecpmmendTitleView.m */; };
        70ED36DF26625AF600E51E79 /* ToDayHotCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 70ED36DE26625AF600E51E79 /* ToDayHotCell.m */; };
        70ED36E2266264D900E51E79 /* RecommendTwoColumnCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 70ED36E1266264D900E51E79 /* RecommendTwoColumnCell.m */; };
        70ED36E526627D4500E51E79 /* RecommendThreeColumnCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 70ED36E426627D4500E51E79 /* RecommendThreeColumnCell.m */; };
        70ED36F6266280EA00E51E79 /* SDCycleScrollView.m in Sources */ = {isa = PBXBuildFile; fileRef = 70ED36EA266280EA00E51E79 /* SDCycleScrollView.m */; };
        70ED36F7266280EA00E51E79 /* UIView+SDExtension.m in Sources */ = {isa = PBXBuildFile; fileRef = 70ED36EB266280EA00E51E79 /* UIView+SDExtension.m */; };
        70ED36F8266280EA00E51E79 /* SDCollectionViewCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 70ED36EC266280EA00E51E79 /* SDCollectionViewCell.m */; };
        70ED36F9266280EA00E51E79 /* TADotView.m in Sources */ = {isa = PBXBuildFile; fileRef = 70ED36EF266280EA00E51E79 /* TADotView.m */; };
        70ED36FA266280EA00E51E79 /* TAPageControl.m in Sources */ = {isa = PBXBuildFile; fileRef = 70ED36F0266280EA00E51E79 /* TAPageControl.m */; };
        70ED36FB266280EA00E51E79 /* TAAnimatedDotView.m in Sources */ = {isa = PBXBuildFile; fileRef = 70ED36F1266280EA00E51E79 /* TAAnimatedDotView.m */; };
        70ED36FC266280EA00E51E79 /* TAAbstractDotView.m in Sources */ = {isa = PBXBuildFile; fileRef = 70ED36F2266280EA00E51E79 /* TAAbstractDotView.m */; };
        7B0D3B2C1D59BCAB003E74A8 /* AnimationTool.m in Sources */ = {isa = PBXBuildFile; fileRef = 7B0D3B271D59BCAB003E74A8 /* AnimationTool.m */; };
        7B0D3B2D1D59BCAB003E74A8 /* CMuneBar.m in Sources */ = {isa = PBXBuildFile; fileRef = 7B0D3B291D59BCAB003E74A8 /* CMuneBar.m */; };
        7B0D3B2E1D59BCAB003E74A8 /* CMuneItem.m in Sources */ = {isa = PBXBuildFile; fileRef = 7B0D3B2B1D59BCAB003E74A8 /* CMuneItem.m */; };
        7B1FF0951D6708FD00E6C207 /* discoverView.m in Sources */ = {isa = PBXBuildFile; fileRef = 7B1FF0941D6708FD00E6C207 /* discoverView.m */; };
        7B1FF0A61D67094500E6C207 /* CellOne.m in Sources */ = {isa = PBXBuildFile; fileRef = 7B1FF0981D67094500E6C207 /* CellOne.m */; };
        7B1FF0A71D67094500E6C207 /* CellOne.xib in Resources */ = {isa = PBXBuildFile; fileRef = 7B1FF0991D67094500E6C207 /* CellOne.xib */; };
        7B1FF0AE1D67094500E6C207 /* CellHead.m in Sources */ = {isa = PBXBuildFile; fileRef = 7B1FF0A41D67094500E6C207 /* CellHead.m */; };
        7B1FF0AF1D67094500E6C207 /* CellHead.xib in Resources */ = {isa = PBXBuildFile; fileRef = 7B1FF0A51D67094500E6C207 /* CellHead.xib */; };
        7B1FF0B71D670A1500E6C207 /* OnlySpecialController.m in Sources */ = {isa = PBXBuildFile; fileRef = 7B1FF0B61D670A1500E6C207 /* OnlySpecialController.m */; };
        7B1FF0BA1D670A1F00E6C207 /* AllSpecialController.m in Sources */ = {isa = PBXBuildFile; fileRef = 7B1FF0B91D670A1F00E6C207 /* AllSpecialController.m */; };
        7B1FF0C21D670A3B00E6C207 /* Starview.m in Sources */ = {isa = PBXBuildFile; fileRef = 7B1FF0BD1D670A3B00E6C207 /* Starview.m */; };
        7B1FF0C31D670A3B00E6C207 /* Starview.xib in Resources */ = {isa = PBXBuildFile; fileRef = 7B1FF0BE1D670A3B00E6C207 /* Starview.xib */; };
        7B1FF0C41D670A3B00E6C207 /* StarmovieCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 7B1FF0C01D670A3B00E6C207 /* StarmovieCell.m */; };
        7B1FF0C51D670A3B00E6C207 /* StarmovieCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = 7B1FF0C11D670A3B00E6C207 /* StarmovieCell.xib */; };
        7B1FF0C81D670A4E00E6C207 /* IndividualStarController.m in Sources */ = {isa = PBXBuildFile; fileRef = 7B1FF0C71D670A4E00E6C207 /* IndividualStarController.m */; };
        7B1FF0CB1D670A7F00E6C207 /* StarsController.m in Sources */ = {isa = PBXBuildFile; fileRef = 7B1FF0CA1D670A7F00E6C207 /* StarsController.m */; };
        7B1FF0D01D670AA900E6C207 /* TWScell.m in Sources */ = {isa = PBXBuildFile; fileRef = 7B1FF0CE1D670AA900E6C207 /* TWScell.m */; };
        7B1FF0D11D670AA900E6C207 /* TWScell.xib in Resources */ = {isa = PBXBuildFile; fileRef = 7B1FF0CF1D670AA900E6C207 /* TWScell.xib */; };
        7B1FF0D41D670AB200E6C207 /* TWScontroller.m in Sources */ = {isa = PBXBuildFile; fileRef = 7B1FF0D31D670AB200E6C207 /* TWScontroller.m */; };
        7B1FF0D91D670B7E00E6C207 /* AttentionCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 7B1FF0D71D670B7E00E6C207 /* AttentionCell.m */; };
        7B1FF0DA1D670B7E00E6C207 /* AttentionCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = 7B1FF0D81D670B7E00E6C207 /* AttentionCell.xib */; };
        7B1FF0DD1D670B8800E6C207 /* attentionView.m in Sources */ = {isa = PBXBuildFile; fileRef = 7B1FF0DC1D670B8800E6C207 /* attentionView.m */; };
        7B1FF0DF1D6711CF00E6C207 /* libiconv.tbd in Frameworks */ = {isa = PBXBuildFile; fileRef = 7B1FF0DE1D6711CF00E6C207 /* libiconv.tbd */; };
        7B1FF0E11D67121700E6C207 /* libstdc++.tbd in Frameworks */ = {isa = PBXBuildFile; fileRef = 7B1FF0E01D67121700E6C207 /* libstdc++.tbd */; };
        7B32BD321D4F26F500E96E75 /* subregionView.m in Sources */ = {isa = PBXBuildFile; fileRef = 7B32BD311D4F26F500E96E75 /* subregionView.m */; };
        7B32BD3D1D4F410F00E96E75 /* recommentCollectionViewCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 7B32BD3B1D4F410F00E96E75 /* recommentCollectionViewCell.m */; };
        7B32BD3E1D4F410F00E96E75 /* recommentCollectionViewCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = 7B32BD3C1D4F410F00E96E75 /* recommentCollectionViewCell.xib */; };
        7B389BDC1D61B1D10043A2F2 /* ModelIO.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 7B389BDB1D61B1D10043A2F2 /* ModelIO.framework */; settings = {ATTRIBUTES = (Weak, ); }; };
        7B389BDE1D61B1EC0043A2F2 /* VideoToolbox.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 7B389BDD1D61B1EC0043A2F2 /* VideoToolbox.framework */; };
        7B389BE01D61B2EF0043A2F2 /* libsqlite3.tbd in Frameworks */ = {isa = PBXBuildFile; fileRef = 7B389BDF1D61B2EF0043A2F2 /* libsqlite3.tbd */; };
        7B389BE21D61B2F90043A2F2 /* libc++.1.tbd in Frameworks */ = {isa = PBXBuildFile; fileRef = 7B389BE11D61B2F90043A2F2 /* libc++.1.tbd */; };
        7B389BE41D61B3070043A2F2 /* libbz2.1.0.tbd in Frameworks */ = {isa = PBXBuildFile; fileRef = 7B389BE31D61B3070043A2F2 /* libbz2.1.0.tbd */; };
        7B389BE61D61B3100043A2F2 /* libxml2.2.tbd in Frameworks */ = {isa = PBXBuildFile; fileRef = 7B389BE51D61B3100043A2F2 /* libxml2.2.tbd */; };
        7B389BE81D61B31C0043A2F2 /* libiconv.2.tbd in Frameworks */ = {isa = PBXBuildFile; fileRef = 7B389BE71D61B31C0043A2F2 /* libiconv.2.tbd */; };
        7B389BEA1D61B32C0043A2F2 /* libresolv.9.tbd in Frameworks */ = {isa = PBXBuildFile; fileRef = 7B389BE91D61B32C0043A2F2 /* libresolv.9.tbd */; };
        7B389BEC1D61B3370043A2F2 /* libz.1.tbd in Frameworks */ = {isa = PBXBuildFile; fileRef = 7B389BEB1D61B3370043A2F2 /* libz.1.tbd */; };
        7B41E99E1D4A04AE00F05CE2 /* main.m in Sources */ = {isa = PBXBuildFile; fileRef = 7B41E99D1D4A04AE00F05CE2 /* main.m */; };
        7B41E9A11D4A04AE00F05CE2 /* AppDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = 7B41E9A01D4A04AE00F05CE2 /* AppDelegate.m */; };
        7B41E9A71D4A04AE00F05CE2 /* Main.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 7B41E9A51D4A04AE00F05CE2 /* Main.storyboard */; };
        7B41E9A91D4A04AE00F05CE2 /* Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 7B41E9A81D4A04AE00F05CE2 /* Assets.xcassets */; };
        7B41E9AC1D4A04AE00F05CE2 /* LaunchScreen.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 7B41E9AA1D4A04AE00F05CE2 /* LaunchScreen.storyboard */; };
        7B4220ED1D6D7D34007345E6 /* AllSpecialCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 7B4220EB1D6D7D34007345E6 /* AllSpecialCell.m */; };
        7B4220EE1D6D7D34007345E6 /* AllSpecialCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = 7B4220EC1D6D7D34007345E6 /* AllSpecialCell.xib */; };
        7B4220F91D6D7DDE007345E6 /* OnlySpecialOne.m in Sources */ = {isa = PBXBuildFile; fileRef = 7B4220F11D6D7DDE007345E6 /* OnlySpecialOne.m */; };
        7B4220FA1D6D7DDE007345E6 /* OnlySpecialOne.xib in Resources */ = {isa = PBXBuildFile; fileRef = 7B4220F21D6D7DDE007345E6 /* OnlySpecialOne.xib */; };
        7B4220FB1D6D7DDE007345E6 /* OnlySpecialThere.m in Sources */ = {isa = PBXBuildFile; fileRef = 7B4220F41D6D7DDE007345E6 /* OnlySpecialThere.m */; };
        7B4220FC1D6D7DDE007345E6 /* OnlySpecialThere.xib in Resources */ = {isa = PBXBuildFile; fileRef = 7B4220F51D6D7DDE007345E6 /* OnlySpecialThere.xib */; };
        7B4220FD1D6D7DDE007345E6 /* OnlySpecialTwo.m in Sources */ = {isa = PBXBuildFile; fileRef = 7B4220F71D6D7DDE007345E6 /* OnlySpecialTwo.m */; };
        7B4220FE1D6D7DDE007345E6 /* OnlySpecialTwo.xib in Resources */ = {isa = PBXBuildFile; fileRef = 7B4220F81D6D7DDE007345E6 /* OnlySpecialTwo.xib */; };
        7B59CBFA1D5B1447000B357F /* GroupSection.m in Sources */ = {isa = PBXBuildFile; fileRef = 7B59CBF81D5B1447000B357F /* GroupSection.m */; };
        7B59CBFB1D5B1447000B357F /* GroupSection.xib in Resources */ = {isa = PBXBuildFile; fileRef = 7B59CBF91D5B1447000B357F /* GroupSection.xib */; };
        7B59CBFF1D5B15A3000B357F /* GroupCollectionViewCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 7B59CBFD1D5B15A3000B357F /* GroupCollectionViewCell.m */; };
        7B59CC001D5B15A3000B357F /* GroupCollectionViewCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = 7B59CBFE1D5B15A3000B357F /* GroupCollectionViewCell.xib */; };
        7B59CC041D5B15C4000B357F /* IntroductionCollectionViewCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 7B59CC021D5B15C4000B357F /* IntroductionCollectionViewCell.m */; };
        7B59CC051D5B15C4000B357F /* IntroductionCollectionViewCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = 7B59CC031D5B15C4000B357F /* IntroductionCollectionViewCell.xib */; };
        7B59CC091D5B162A000B357F /* GuessYouLikeCollectionViewCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 7B59CC071D5B162A000B357F /* GuessYouLikeCollectionViewCell.m */; };
        7B59CC0A1D5B162A000B357F /* GuessYouLikeCollectionViewCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = 7B59CC081D5B162A000B357F /* GuessYouLikeCollectionViewCell.xib */; };
        7B59CC0E1D5B16B7000B357F /* GroupSmallSection.m in Sources */ = {isa = PBXBuildFile; fileRef = 7B59CC0C1D5B16B7000B357F /* GroupSmallSection.m */; };
        7B59CC0F1D5B16B7000B357F /* GroupSmallSection.xib in Resources */ = {isa = PBXBuildFile; fileRef = 7B59CC0D1D5B16B7000B357F /* GroupSmallSection.xib */; };
        7B59CC131D5B16CC000B357F /* GroupfootSection.m in Sources */ = {isa = PBXBuildFile; fileRef = 7B59CC111D5B16CC000B357F /* GroupfootSection.m */; };
        7B59CC141D5B16CC000B357F /* GroupfootSection.xib in Resources */ = {isa = PBXBuildFile; fileRef = 7B59CC121D5B16CC000B357F /* GroupfootSection.xib */; };
        7B59CC181D5B16DC000B357F /* ADCollectionReusableView.m in Sources */ = {isa = PBXBuildFile; fileRef = 7B59CC161D5B16DC000B357F /* ADCollectionReusableView.m */; };
        7B59CC191D5B16DC000B357F /* ADCollectionReusableView.xib in Resources */ = {isa = PBXBuildFile; fileRef = 7B59CC171D5B16DC000B357F /* ADCollectionReusableView.xib */; };
        7B7BB82F1D65558500066939 /* SearchCollectionReusableView.m in Sources */ = {isa = PBXBuildFile; fileRef = 7B7BB82D1D65558500066939 /* SearchCollectionReusableView.m */; };
        7B7BB8301D65558500066939 /* SearchCollectionReusableView.xib in Resources */ = {isa = PBXBuildFile; fileRef = 7B7BB82E1D65558500066939 /* SearchCollectionReusableView.xib */; };
        7B7BB8341D65A3DA00066939 /* searchTableViewCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 7B7BB8321D65A3DA00066939 /* searchTableViewCell.m */; };
        7B7BB8351D65A3DA00066939 /* searchTableViewCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = 7B7BB8331D65A3DA00066939 /* searchTableViewCell.xib */; };
        7B893F461D7043030028A556 /* AttentionCollectionReusableView.m in Sources */ = {isa = PBXBuildFile; fileRef = 7B893F441D7043030028A556 /* AttentionCollectionReusableView.m */; };
        7B893F471D7043030028A556 /* AttentionCollectionReusableView.xib in Resources */ = {isa = PBXBuildFile; fileRef = 7B893F451D7043030028A556 /* AttentionCollectionReusableView.xib */; };
        7B893F4A1D7054580028A556 /* commentHeaderView.m in Sources */ = {isa = PBXBuildFile; fileRef = 7B893F491D7054580028A556 /* commentHeaderView.m */; };
        7B893F4E1D70549F0028A556 /* CommentTableViewCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 7B893F4C1D70549F0028A556 /* CommentTableViewCell.m */; };
        7B893F4F1D70549F0028A556 /* CommentTableViewCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = 7B893F4D1D70549F0028A556 /* CommentTableViewCell.xib */; };
        7B8AC4E61D5D7FE400450285 /* AVFoundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 7B8AC4E51D5D7FE400450285 /* AVFoundation.framework */; };
        7B8AC4E81D5D7FF400450285 /* AudioToolbox.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 7B8AC4E71D5D7FF400450285 /* AudioToolbox.framework */; };
        7B8AC4EA1D5D7FFC00450285 /* libz.tbd in Frameworks */ = {isa = PBXBuildFile; fileRef = 7B8AC4E91D5D7FFC00450285 /* libz.tbd */; };
        7B8AC4EC1D5D800B00450285 /* libsqlite3.0.tbd in Frameworks */ = {isa = PBXBuildFile; fileRef = 7B8AC4EB1D5D800B00450285 /* libsqlite3.0.tbd */; };
        7B8AC4EE1D5D801700450285 /* AdSupport.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 7B8AC4ED1D5D801700450285 /* AdSupport.framework */; settings = {ATTRIBUTES = (Weak, ); }; };
        7B8AC4F01D5D802200450285 /* CFNetwork.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 7B8AC4EF1D5D802200450285 /* CFNetwork.framework */; };
        7B8AC4F21D5D803000450285 /* CoreGraphics.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 7B8AC4F11D5D803000450285 /* CoreGraphics.framework */; };
        7B8AC4F41D5D803900450285 /* CoreLocation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 7B8AC4F31D5D803900450285 /* CoreLocation.framework */; };
        7B8AC4F61D5D804100450285 /* CoreMedia.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 7B8AC4F51D5D804100450285 /* CoreMedia.framework */; };
        7B8AC4F81D5D805000450285 /* CoreTelephony.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 7B8AC4F71D5D805000450285 /* CoreTelephony.framework */; };
        7B8AC4FA1D5D805900450285 /* CoreText.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 7B8AC4F91D5D805900450285 /* CoreText.framework */; };
        7B8AC4FD1D5D806A00450285 /* EventKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 7B8AC4FB1D5D806A00450285 /* EventKit.framework */; };
        7B8AC4FE1D5D806A00450285 /* EventKitUI.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 7B8AC4FC1D5D806A00450285 /* EventKitUI.framework */; };
        7B8AC5001D5D807500450285 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 7B8AC4FF1D5D807500450285 /* Foundation.framework */; };
        7B8AC5021D5D807F00450285 /* MapKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 7B8AC5011D5D807F00450285 /* MapKit.framework */; };
        7B8AC5041D5D808A00450285 /* MediaPlayer.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 7B8AC5031D5D808A00450285 /* MediaPlayer.framework */; };
        7B8AC5061D5D809300450285 /* MessageUI.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 7B8AC5051D5D809300450285 /* MessageUI.framework */; };
        7B8AC5081D5D809B00450285 /* QuartzCore.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 7B8AC5071D5D809B00450285 /* QuartzCore.framework */; };
        7B8AC50A1D5D80A500450285 /* Security.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 7B8AC5091D5D80A500450285 /* Security.framework */; };
        7B8AC50C1D5D80AE00450285 /* StoreKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 7B8AC50B1D5D80AE00450285 /* StoreKit.framework */; };
        7B8AC50E1D5D80B700450285 /* SystemConfiguration.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 7B8AC50D1D5D80B700450285 /* SystemConfiguration.framework */; };
        7B8AC5101D5D80BD00450285 /* UIKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 7B8AC50F1D5D80BD00450285 /* UIKit.framework */; };
        7B8AC5121D5D80F700450285 /* libxml2.tbd in Frameworks */ = {isa = PBXBuildFile; fileRef = 7B8AC5111D5D80F700450285 /* libxml2.tbd */; };
        7B8AC5141D5D810A00450285 /* Accelerate.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 7B8AC5131D5D810A00450285 /* Accelerate.framework */; };
        7B8AC5161D5D813B00450285 /* AddressBook.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 7B8AC5151D5D813B00450285 /* AddressBook.framework */; };
        7B8AC51A1D5D817C00450285 /* CoreAudio.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 7B8AC5191D5D817C00450285 /* CoreAudio.framework */; };
        7B8AC51C1D5D81EF00450285 /* CoreBluetooth.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 7B8AC51B1D5D81EF00450285 /* CoreBluetooth.framework */; };
        7B8AC51E1D5D820000450285 /* CoreFoundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 7B8AC51D1D5D820000450285 /* CoreFoundation.framework */; };
        7B8AC5201D5D821100450285 /* CoreImage.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 7B8AC51F1D5D821100450285 /* CoreImage.framework */; };
        7B8AC5221D5D822F00450285 /* CoreMotion.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 7B8AC5211D5D822F00450285 /* CoreMotion.framework */; };
        7B8AC5241D5D824100450285 /* CoreVideo.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 7B8AC5231D5D824100450285 /* CoreVideo.framework */; };
        7B8AC5261D5D825200450285 /* GameKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 7B8AC5251D5D825200450285 /* GameKit.framework */; };
        7B8AC5281D5D825E00450285 /* iAd.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 7B8AC5271D5D825E00450285 /* iAd.framework */; };
        7B8AC52A1D5D827500450285 /* ImageIO.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 7B8AC5291D5D827500450285 /* ImageIO.framework */; };
        7B8AC52C1D5D828000450285 /* libz.1.2.5.tbd in Frameworks */ = {isa = PBXBuildFile; fileRef = 7B8AC52B1D5D828000450285 /* libz.1.2.5.tbd */; };
        7B8AC52E1D5D829D00450285 /* MediaToolbox.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 7B8AC52D1D5D829D00450285 /* MediaToolbox.framework */; };
        7B8AC5301D5D82AA00450285 /* MobileCoreServices.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 7B8AC52F1D5D82AA00450285 /* MobileCoreServices.framework */; };
        7B8AC5321D5D82B100450285 /* OpenGLES.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 7B8AC5311D5D82B100450285 /* OpenGLES.framework */; };
        7B8AC5361D5D82D500450285 /* Social.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 7B8AC5351D5D82D500450285 /* Social.framework */; };
        7B8ADA391D585D43007A3FFD /* XYRVideoInfoModel.m in Sources */ = {isa = PBXBuildFile; fileRef = 7B8ADA381D585D43007A3FFD /* XYRVideoInfoModel.m */; };
        7B8ADA461D589448007A3FFD /* XYRVideoDetailModel.m in Sources */ = {isa = PBXBuildFile; fileRef = 7B8ADA451D589448007A3FFD /* XYRVideoDetailModel.m */; };
        7B9D31C31D5421E000EDED00 /* SubregionViewCollectionViewCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 7B9D31C11D5421E000EDED00 /* SubregionViewCollectionViewCell.m */; };
        7B9D31C41D5421E000EDED00 /* SubregionViewCollectionViewCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = 7B9D31C21D5421E000EDED00 /* SubregionViewCollectionViewCell.xib */; };
        7B9D31CC1D54481000EDED00 /* XYRDetailViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 7B9D31CA1D54481000EDED00 /* XYRDetailViewController.m */; };
        7B9D31CD1D54481000EDED00 /* XYRDetailViewController.xib in Resources */ = {isa = PBXBuildFile; fileRef = 7B9D31CB1D54481000EDED00 /* XYRDetailViewController.xib */; };
        7BA7E5C81D6BD4CB00D347D0 /* SubregionDetailViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 7BA7E5C61D6BD4CB00D347D0 /* SubregionDetailViewController.m */; };
        7BA7E5C91D6BD4CB00D347D0 /* SubregionDetailViewController.xib in Resources */ = {isa = PBXBuildFile; fileRef = 7BA7E5C71D6BD4CB00D347D0 /* SubregionDetailViewController.xib */; };
        7BB428FA1D4B43F400AA2D11 /* LeftViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 7BB428F81D4B43F400AA2D11 /* LeftViewController.m */; };
        7BB428FB1D4B43F400AA2D11 /* LeftViewController.xib in Resources */ = {isa = PBXBuildFile; fileRef = 7BB428F91D4B43F400AA2D11 /* LeftViewController.xib */; };
        7BB429021D4B463000AA2D11 /* MainViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 7BB429011D4B463000AA2D11 /* MainViewController.m */; };
        7BB429141D4B5FC900AA2D11 /* UIImage+YTH.m in Sources */ = {isa = PBXBuildFile; fileRef = 7BB4290D1D4B5FC900AA2D11 /* UIImage+YTH.m */; };
        7BB429151D4B5FC900AA2D11 /* UIImageView+YTH.m in Sources */ = {isa = PBXBuildFile; fileRef = 7BB4290F1D4B5FC900AA2D11 /* UIImageView+YTH.m */; };
        7BB429171D4B5FC900AA2D11 /* NSString+YTH.m in Sources */ = {isa = PBXBuildFile; fileRef = 7BB429131D4B5FC900AA2D11 /* NSString+YTH.m */; };
        7BC24A521D50282200F6D2D9 /* YTHsharedManger.m in Sources */ = {isa = PBXBuildFile; fileRef = 7BC24A511D50282200F6D2D9 /* YTHsharedManger.m */; };
        7BC24A561D5074FC00F6D2D9 /* shufflingCollectionReusableView.m in Sources */ = {isa = PBXBuildFile; fileRef = 7BC24A541D5074FC00F6D2D9 /* shufflingCollectionReusableView.m */; };
        7BC24A571D5074FC00F6D2D9 /* shufflingCollectionReusableView.xib in Resources */ = {isa = PBXBuildFile; fileRef = 7BC24A551D5074FC00F6D2D9 /* shufflingCollectionReusableView.xib */; };
        7BC24A5B1D50752B00F6D2D9 /* HeaderCollectionReusableView.m in Sources */ = {isa = PBXBuildFile; fileRef = 7BC24A591D50752B00F6D2D9 /* HeaderCollectionReusableView.m */; };
        7BC24A5C1D50752B00F6D2D9 /* HeaderCollectionReusableView.xib in Resources */ = {isa = PBXBuildFile; fileRef = 7BC24A5A1D50752B00F6D2D9 /* HeaderCollectionReusableView.xib */; };
        7BC24A601D50754600F6D2D9 /* FooterCollectionReusableView.m in Sources */ = {isa = PBXBuildFile; fileRef = 7BC24A5E1D50754600F6D2D9 /* FooterCollectionReusableView.m */; };
        7BC24A611D50754600F6D2D9 /* FooterCollectionReusableView.xib in Resources */ = {isa = PBXBuildFile; fileRef = 7BC24A5F1D50754600F6D2D9 /* FooterCollectionReusableView.xib */; };
        7BC600A71D63F1B9005CE8FD /* searchViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 7BC600A51D63F1B9005CE8FD /* searchViewController.m */; };
        7BC600A81D63F1B9005CE8FD /* searchViewController.xib in Resources */ = {isa = PBXBuildFile; fileRef = 7BC600A61D63F1B9005CE8FD /* searchViewController.xib */; };
        7BC600AC1D63F560005CE8FD /* searchDetailViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 7BC600AA1D63F560005CE8FD /* searchDetailViewController.m */; };
        7BC600AD1D63F560005CE8FD /* searchDetailViewController.xib in Resources */ = {isa = PBXBuildFile; fileRef = 7BC600AB1D63F560005CE8FD /* searchDetailViewController.xib */; };
        7BCC19CB1D5C73AD00FB6123 /* titleCollectionReusableView.m in Sources */ = {isa = PBXBuildFile; fileRef = 7BCC19C91D5C73AC00FB6123 /* titleCollectionReusableView.m */; };
        7BCC19CC1D5C73AD00FB6123 /* titleCollectionReusableView.xib in Resources */ = {isa = PBXBuildFile; fileRef = 7BCC19CA1D5C73AC00FB6123 /* titleCollectionReusableView.xib */; };
        7BCE16701D640A75004EAD5A /* YTHSearchTextField.m in Sources */ = {isa = PBXBuildFile; fileRef = 7BCE166F1D640A75004EAD5A /* YTHSearchTextField.m */; };
        7BCE16771D644EB8004EAD5A /* SearchCollectionViewCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 7BCE16751D644EB8004EAD5A /* SearchCollectionViewCell.m */; };
        7BCE16781D644EB8004EAD5A /* SearchCollectionViewCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = 7BCE16761D644EB8004EAD5A /* SearchCollectionViewCell.xib */; };
        7BF526591D7408A0004B9DBB /* CollectionController.m in Sources */ = {isa = PBXBuildFile; fileRef = 7BF526581D7408A0004B9DBB /* CollectionController.m */; };
        7BF526691D742C80004B9DBB /* WeiKouNetWorkRequest.m in Sources */ = {isa = PBXBuildFile; fileRef = 7BF526621D742C80004B9DBB /* WeiKouNetWorkRequest.m */; };
        7BF5266A1D742C80004B9DBB /* WeiKouAdView.m in Sources */ = {isa = PBXBuildFile; fileRef = 7BF526641D742C80004B9DBB /* WeiKouAdView.m */; };
        7BF5266B1D742C80004B9DBB /* adModel.m in Sources */ = {isa = PBXBuildFile; fileRef = 7BF526661D742C80004B9DBB /* adModel.m */; };
        7BF5266C1D742C80004B9DBB /* NSString+WeiKouAd.m in Sources */ = {isa = PBXBuildFile; fileRef = 7BF526681D742C80004B9DBB /* NSString+WeiKouAd.m */; };
        7BFBC6461D6703E40058FFEB /* WebControllerView.m in Sources */ = {isa = PBXBuildFile; fileRef = 7BFBC6451D6703E40058FFEB /* WebControllerView.m */; };
        7BFBC64A1D6704050058FFEB /* LoggingViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 7BFBC6491D6704050058FFEB /* LoggingViewController.m */; };
        7BFBC6501D6704710058FFEB /* RegardCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 7BFBC64E1D6704710058FFEB /* RegardCell.m */; };
        7BFBC6511D6704710058FFEB /* RegardCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = 7BFBC64F1D6704710058FFEB /* RegardCell.xib */; };
        7BFBC6541D6704780058FFEB /* MyRegardController.m in Sources */ = {isa = PBXBuildFile; fileRef = 7BFBC6531D6704780058FFEB /* MyRegardController.m */; };
        7BFBC65E1D6704E20058FFEB /* NoteCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 7BFBC65C1D6704E20058FFEB /* NoteCell.m */; };
        7BFBC65F1D6704E20058FFEB /* NoteCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = 7BFBC65D1D6704E20058FFEB /* NoteCell.xib */; };
        7BFBC6621D6704EF0058FFEB /* LookNoteController.m in Sources */ = {isa = PBXBuildFile; fileRef = 7BFBC6611D6704EF0058FFEB /* LookNoteController.m */; };
        7BFBC66B1D6705280058FFEB /* SystemMessageCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 7BFBC6661D6705280058FFEB /* SystemMessageCell.m */; };
        7BFBC66C1D6705280058FFEB /* SystemMessageCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = 7BFBC6671D6705280058FFEB /* SystemMessageCell.xib */; };
        7BFBC66D1D6705280058FFEB /* ComentCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 7BFBC6691D6705280058FFEB /* ComentCell.m */; };
        7BFBC66E1D6705280058FFEB /* ComentCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = 7BFBC66A1D6705280058FFEB /* ComentCell.xib */; };
        7BFBC6711D6705330058FFEB /* MymessageContrlloer.m in Sources */ = {isa = PBXBuildFile; fileRef = 7BFBC6701D6705330058FFEB /* MymessageContrlloer.m */; };
        7BFBC6751D67054A0058FFEB /* HelpViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 7BFBC6741D67054A0058FFEB /* HelpViewController.m */; };
        7BFBC6831D6705AB0058FFEB /* SettingWebView.m in Sources */ = {isa = PBXBuildFile; fileRef = 7BFBC67C1D6705AB0058FFEB /* SettingWebView.m */; };
        7BFBC6861D6705AB0058FFEB /* SettingController.m in Sources */ = {isa = PBXBuildFile; fileRef = 7BFBC6821D6705AB0058FFEB /* SettingController.m */; };
        7BFBC6901D6705DD0058FFEB /* StorageSpaceTableViewCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 7BFBC68C1D6705DD0058FFEB /* StorageSpaceTableViewCell.m */; };
        7BFBC6911D6705DD0058FFEB /* StorageSpaceTableViewCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = 7BFBC68D1D6705DD0058FFEB /* StorageSpaceTableViewCell.xib */; };
        AD73C5F51D4DE7DD0060437E /* GTMBase64.m in Sources */ = {isa = PBXBuildFile; fileRef = AD73C5F31D4DE7DD0060437E /* GTMBase64.m */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; };
        ADF0EF921D60C36F009310C9 /* WebKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = ADF0EF911D60C36F009310C9 /* WebKit.framework */; };
        ADF5E0A51D4E33C1005F8A9E /* LeftTableViewCell.m in Sources */ = {isa = PBXBuildFile; fileRef = ADF5E0A31D4E33C1005F8A9E /* LeftTableViewCell.m */; };
        ADF5E0A61D4E33C1005F8A9E /* LeftTableViewCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = ADF5E0A41D4E33C1005F8A9E /* LeftTableViewCell.xib */; };
        D45473551DBD9FC700EC002B /* 缓冲.gif in Resources */ = {isa = PBXBuildFile; fileRef = D45473541DBD9FC700EC002B /* 缓冲.gif */; };
/* End PBXBuildFile section */
 
/* Begin PBXFileReference section */
        18052EA01E208343005997FC /* Twitter.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Twitter.framework; path = System/Library/Frameworks/Twitter.framework; sourceTree = SDKROOT; };
        18052EA21E208379005997FC /* SafariServices.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = SafariServices.framework; path = System/Library/Frameworks/SafariServices.framework; sourceTree = SDKROOT; };
        18052ECA1E20D4F5005997FC /* yw_1222.jpg */ = {isa = PBXFileReference; lastKnownFileType = image.jpeg; name = yw_1222.jpg; path = ../yw_1222.jpg; sourceTree = "<group>"; };
        181D3A071E1DFD5300CDBDE9 /* XYRUITextField.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = XYRUITextField.h; sourceTree = "<group>"; };
        181D3A081E1DFD5300CDBDE9 /* XYRUITextField.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = XYRUITextField.m; sourceTree = "<group>"; };
        1823F4C71DACC91F00C114C3 /* forgetPasswordViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = forgetPasswordViewController.h; sourceTree = "<group>"; };
        1823F4C81DACC91F00C114C3 /* forgetPasswordViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = forgetPasswordViewController.m; sourceTree = "<group>"; };
        1823F4C91DACC91F00C114C3 /* forgetPasswordViewController.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = forgetPasswordViewController.xib; sourceTree = "<group>"; };
        182F49612092D0E200FEAAF7 /* UINavigationBar+SJNav.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "UINavigationBar+SJNav.h"; sourceTree = "<group>"; };
        182F49622092D0E200FEAAF7 /* UINavigationBar+SJNav.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = "UINavigationBar+SJNav.m"; sourceTree = "<group>"; };
        182F49642092DF1200FEAAF7 /* SJTabbarViewController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = SJTabbarViewController.h; sourceTree = "<group>"; };
        182F49652092DF1200FEAAF7 /* SJTabbarViewController.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = SJTabbarViewController.m; sourceTree = "<group>"; };
        182F49672092FF1D00FEAAF7 /* 1125x2436.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = 1125x2436.png; sourceTree = "<group>"; };
        183080D31E29CD2F0017DDD7 /* childCollectionViewCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = childCollectionViewCell.h; sourceTree = "<group>"; };
        183080D41E29CD2F0017DDD7 /* childCollectionViewCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = childCollectionViewCell.m; sourceTree = "<group>"; };
        183080D51E29CD2F0017DDD7 /* childCollectionViewCell.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = childCollectionViewCell.xib; sourceTree = "<group>"; };
        183080DD1E29D0E60017DDD7 /* XYRChildTableViewCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = XYRChildTableViewCell.h; sourceTree = "<group>"; };
        183080DE1E29D0E60017DDD7 /* XYRChildTableViewCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = XYRChildTableViewCell.m; sourceTree = "<group>"; };
        183080DF1E29D0E60017DDD7 /* XYRChildTableViewCell.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = XYRChildTableViewCell.xib; sourceTree = "<group>"; };
        183FD261209ABE6300903765 /* UserNotifications.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = UserNotifications.framework; path = System/Library/Frameworks/UserNotifications.framework; sourceTree = SDKROOT; };
        183FD263209ABE6B00903765 /* UserNotificationsUI.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = UserNotificationsUI.framework; path = System/Library/Frameworks/UserNotificationsUI.framework; sourceTree = SDKROOT; };
        1845BB45209BF13D009C639B /* DisCoverTableViewCell.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = DisCoverTableViewCell.h; sourceTree = "<group>"; };
        1845BB46209BF13D009C639B /* DisCoverTableViewCell.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = DisCoverTableViewCell.m; sourceTree = "<group>"; };
        1845BB47209BF13D009C639B /* DisCoverTableViewCell.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = DisCoverTableViewCell.xib; sourceTree = "<group>"; };
        1845BB4A209BF212009C639B /* PassKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = PassKit.framework; path = System/Library/Frameworks/PassKit.framework; sourceTree = SDKROOT; };
        184D34861E1F3728007B0131 /* ConfirmTheGoodsViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ConfirmTheGoodsViewController.h; sourceTree = "<group>"; };
        184D34871E1F3728007B0131 /* ConfirmTheGoodsViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ConfirmTheGoodsViewController.m; sourceTree = "<group>"; };
        184D34881E1F3728007B0131 /* ConfirmTheGoodsViewController.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = ConfirmTheGoodsViewController.xib; sourceTree = "<group>"; };
        184DBB311DDB0BB00034B39B /* libc++abi.tbd */ = {isa = PBXFileReference; lastKnownFileType = "sourcecode.text-based-dylib-definition"; name = "libc++abi.tbd"; path = "usr/lib/libc++abi.tbd"; sourceTree = SDKROOT; };
        186BE2FF1DAA22B60003A943 /* RegisteViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = RegisteViewController.h; sourceTree = "<group>"; };
        186BE3001DAA22B60003A943 /* RegisteViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = RegisteViewController.m; sourceTree = "<group>"; };
        186BE3011DAA22B60003A943 /* RegisteViewController.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = RegisteViewController.xib; sourceTree = "<group>"; };
        1877D1761DCAE100000CEC83 /* CoreData.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreData.framework; path = System/Library/Frameworks/CoreData.framework; sourceTree = SDKROOT; };
        1877D1781DCAE119000CEC83 /* JavaScriptCore.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = JavaScriptCore.framework; path = System/Library/Frameworks/JavaScriptCore.framework; sourceTree = SDKROOT; };
        1877D17A1DCAE147000CEC83 /* libstdc++.6.0.9.tbd */ = {isa = PBXFileReference; lastKnownFileType = "sourcecode.text-based-dylib-definition"; name = "libstdc++.6.0.9.tbd"; path = "usr/lib/libstdc++.6.0.9.tbd"; sourceTree = SDKROOT; };
        187A74531DF79DDF001E856F /* LXAlertView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = LXAlertView.h; sourceTree = "<group>"; };
        187A74541DF79DDF001E856F /* LXAlertView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = LXAlertView.m; sourceTree = "<group>"; };
        187A74551DF79DDF001E856F /* UILabel+LXAdd.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UILabel+LXAdd.h"; sourceTree = "<group>"; };
        187A74561DF79DDF001E856F /* UILabel+LXAdd.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UILabel+LXAdd.m"; sourceTree = "<group>"; };
        187A745D1DF7B1C6001E856F /* titleImage2.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = titleImage2.png; sourceTree = "<group>"; };
        1881751E1DC05C51004A2540 /* liveOnLineView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = liveOnLineView.h; sourceTree = "<group>"; };
        1881751F1DC05C51004A2540 /* liveOnLineView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = liveOnLineView.m; sourceTree = "<group>"; };
        188322351F74AFFD00CCD0B4 /* HXEasyCustomShareView.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = HXEasyCustomShareView.h; sourceTree = "<group>"; };
        188322361F74AFFD00CCD0B4 /* HXEasyCustomShareView.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = HXEasyCustomShareView.m; sourceTree = "<group>"; };
        188322371F74AFFD00CCD0B4 /* HXShareScrollView.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = HXShareScrollView.h; sourceTree = "<group>"; };
        188322381F74AFFD00CCD0B4 /* HXShareScrollView.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = HXShareScrollView.m; sourceTree = "<group>"; };
        1884A5FC1E545D4900548480 /* PopoverAction.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PopoverAction.h; sourceTree = "<group>"; };
        1884A5FD1E545D4900548480 /* PopoverAction.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = PopoverAction.m; sourceTree = "<group>"; };
        1884A5FE1E545D4900548480 /* PopoverViewCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PopoverViewCell.h; sourceTree = "<group>"; };
        1884A5FF1E545D4900548480 /* PopoverViewCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = PopoverViewCell.m; sourceTree = "<group>"; };
        1884A6001E545D4900548480 /* PopoverViews.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PopoverViews.h; sourceTree = "<group>"; };
        1884A6011E545D4900548480 /* PopoverViews.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = PopoverViews.m; sourceTree = "<group>"; };
        1884A6061E54630300548480 /* LGLAlertView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = LGLAlertView.h; sourceTree = "<group>"; };
        1884A6071E54630300548480 /* LGLAlertView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = LGLAlertView.m; sourceTree = "<group>"; };
        189787811D9233E9006245B9 /* View.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = View.xib; sourceTree = "<group>"; };
        189787831D925B5D006245B9 /* GoogleAdTableViewCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = GoogleAdTableViewCell.h; sourceTree = "<group>"; };
        189787841D925B5D006245B9 /* GoogleAdTableViewCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = GoogleAdTableViewCell.m; sourceTree = "<group>"; };
        189787851D925B5D006245B9 /* GoogleAdTableViewCell.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = GoogleAdTableViewCell.xib; sourceTree = "<group>"; };
        189EFECA1EF1465D00C59CAB /* yw_1222.jpg */ = {isa = PBXFileReference; lastKnownFileType = image.jpeg; path = yw_1222.jpg; sourceTree = "<group>"; };
        18ABF6DE1DDD9B4600C9257E /* Nethader.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Nethader.h; sourceTree = "<group>"; };
        18ABF6DF1DDD9B4600C9257E /* YTHNetdata.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = YTHNetdata.h; sourceTree = "<group>"; };
        18ABF6E01DDD9B4600C9257E /* YTHNetdata.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = YTHNetdata.m; sourceTree = "<group>"; };
        18ABF6E11DDD9B4600C9257E /* YTHNetInterface.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = YTHNetInterface.h; sourceTree = "<group>"; wrapsLines = 0; };
        18ABF6E21DDD9B4600C9257E /* YTHNetInterface.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = YTHNetInterface.m; sourceTree = "<group>"; };
        18B1C23B1DB5B26B00AB709B /* HMSegmentedControl.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = HMSegmentedControl.h; sourceTree = "<group>"; };
        18B1C23C1DB5B26B00AB709B /* HMSegmentedControl.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = HMSegmentedControl.m; sourceTree = "<group>"; };
        18B1C23D1DB5B26B00AB709B /* LICENSE.md */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = net.daringfireball.markdown; path = LICENSE.md; sourceTree = "<group>"; };
        18B1C23E1DB5B26B00AB709B /* README.md */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = net.daringfireball.markdown; path = README.md; sourceTree = "<group>"; };
        18B1C2551DB5B26B00AB709B /* LICENSE */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = LICENSE; sourceTree = "<group>"; };
        18B1C2561DB5B26B00AB709B /* README.md */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = net.daringfireball.markdown; path = README.md; sourceTree = "<group>"; };
        18B1C2581DB5B26B00AB709B /* SlideMenuController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SlideMenuController.h; sourceTree = "<group>"; };
        18B1C2591DB5B26B00AB709B /* SlideMenuController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SlideMenuController.m; sourceTree = "<group>"; };
        18B6BE5E1DADC64A00DA4F63 /* Personal_informationViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Personal_informationViewController.h; sourceTree = "<group>"; };
        18B6BE5F1DADC64A00DA4F63 /* Personal_informationViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = Personal_informationViewController.m; sourceTree = "<group>"; };
        18B6BE601DADC64A00DA4F63 /* Personal_informationViewController.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = Personal_informationViewController.xib; sourceTree = "<group>"; };
        18B6BE651DADDB2C00DA4F63 /* IconTableViewCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IconTableViewCell.h; sourceTree = "<group>"; };
        18B6BE661DADDB2C00DA4F63 /* IconTableViewCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = IconTableViewCell.m; sourceTree = "<group>"; };
        18B6BE671DADDB2C00DA4F63 /* IconTableViewCell.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = IconTableViewCell.xib; sourceTree = "<group>"; };
        18B6BE6A1DADDB4700DA4F63 /* InfoTableViewCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = InfoTableViewCell.h; sourceTree = "<group>"; };
        18B6BE6B1DADDB4700DA4F63 /* InfoTableViewCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = InfoTableViewCell.m; sourceTree = "<group>"; };
        18B6BE6C1DADDB4700DA4F63 /* InfoTableViewCell.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = InfoTableViewCell.xib; sourceTree = "<group>"; };
        18B6BE6F1DADDB6E00DA4F63 /* signatureTableViewCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = signatureTableViewCell.h; sourceTree = "<group>"; };
        18B6BE701DADDB6E00DA4F63 /* signatureTableViewCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = signatureTableViewCell.m; sourceTree = "<group>"; };
        18B6BE711DADDB6E00DA4F63 /* signatureTableViewCell.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = signatureTableViewCell.xib; sourceTree = "<group>"; };
        18BBB9011E23977E00793EAB /* LSPageScrollView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = LSPageScrollView.m; sourceTree = "<group>"; };
        18BBB9021E23977E00793EAB /* LSPageScrollView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = LSPageScrollView.h; sourceTree = "<group>"; };
        18BC12A41EDEA7AD001E2FB0 /* HotLiveTableViewCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = HotLiveTableViewCell.h; sourceTree = "<group>"; };
        18BC12A51EDEA7AD001E2FB0 /* HotLiveTableViewCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = HotLiveTableViewCell.m; sourceTree = "<group>"; };
        18BC12A61EDEA7AD001E2FB0 /* HotLiveTableViewCell.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = HotLiveTableViewCell.xib; sourceTree = "<group>"; };
        18BC12A91EDEA838001E2FB0 /* AllLiveTypeTableViewCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AllLiveTypeTableViewCell.h; sourceTree = "<group>"; };
        18BC12AA1EDEA838001E2FB0 /* AllLiveTypeTableViewCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = AllLiveTypeTableViewCell.m; sourceTree = "<group>"; };
        18BC12AB1EDEA838001E2FB0 /* AllLiveTypeTableViewCell.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = AllLiveTypeTableViewCell.xib; sourceTree = "<group>"; };
        18BC12AE1EDEA87D001E2FB0 /* LiveListTableViewCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = LiveListTableViewCell.h; sourceTree = "<group>"; };
        18BC12AF1EDEA87D001E2FB0 /* LiveListTableViewCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = LiveListTableViewCell.m; sourceTree = "<group>"; };
        18BC12B01EDEA87D001E2FB0 /* LiveListTableViewCell.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = LiveListTableViewCell.xib; sourceTree = "<group>"; };
        18BC12B31EDEAB4A001E2FB0 /* HotLiveCollectionViewCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = HotLiveCollectionViewCell.h; sourceTree = "<group>"; };
        18BC12B41EDEAB4A001E2FB0 /* HotLiveCollectionViewCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = HotLiveCollectionViewCell.m; sourceTree = "<group>"; };
        18BC12B51EDEAB4A001E2FB0 /* HotLiveCollectionViewCell.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = HotLiveCollectionViewCell.xib; sourceTree = "<group>"; };
        18BC12B81EDEAB68001E2FB0 /* AllLiveTypeCollectionViewCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AllLiveTypeCollectionViewCell.h; sourceTree = "<group>"; };
        18BC12B91EDEAB68001E2FB0 /* AllLiveTypeCollectionViewCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = AllLiveTypeCollectionViewCell.m; sourceTree = "<group>"; };
        18BC12BA1EDEAB68001E2FB0 /* AllLiveTypeCollectionViewCell.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = AllLiveTypeCollectionViewCell.xib; sourceTree = "<group>"; };
        18BC12BD1EDEAB8D001E2FB0 /* LiveListCollectionViewCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = LiveListCollectionViewCell.h; sourceTree = "<group>"; };
        18BC12BE1EDEAB8D001E2FB0 /* LiveListCollectionViewCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = LiveListCollectionViewCell.m; sourceTree = "<group>"; };
        18BC12BF1EDEAB8D001E2FB0 /* LiveListCollectionViewCell.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = LiveListCollectionViewCell.xib; sourceTree = "<group>"; };
        18C5F63B1E1B8B0A00537707 /* findTitleTableViewCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = findTitleTableViewCell.h; sourceTree = "<group>"; };
        18C5F63C1E1B8B0A00537707 /* findTitleTableViewCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = findTitleTableViewCell.m; sourceTree = "<group>"; };
        18C5F63D1E1B8B0A00537707 /* findTitleTableViewCell.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = findTitleTableViewCell.xib; sourceTree = "<group>"; };
        18C95F521D94DE2A009CBF0F /* GoogleService-Info.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; path = "GoogleService-Info.plist"; sourceTree = "<group>"; };
        18D94EA81ECD7B6E00B6FA54 /* newADCollectionViewCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = newADCollectionViewCell.h; sourceTree = "<group>"; };
        18D94EA91ECD7B6E00B6FA54 /* newADCollectionViewCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = newADCollectionViewCell.m; sourceTree = "<group>"; };
        18D94EAA1ECD7B6E00B6FA54 /* newADCollectionViewCell.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = newADCollectionViewCell.xib; sourceTree = "<group>"; };
        18E943E42057656C0019FD04 /* recommendViewController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = recommendViewController.h; sourceTree = "<group>"; };
        18E943E52057656C0019FD04 /* recommendViewController.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = recommendViewController.m; sourceTree = "<group>"; };
        18E943E7205766510019FD04 /* subregionViewController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = subregionViewController.h; sourceTree = "<group>"; };
        18E943E8205766510019FD04 /* subregionViewController.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = subregionViewController.m; sourceTree = "<group>"; };
        18E943EA2057667D0019FD04 /* MineViewController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = MineViewController.h; sourceTree = "<group>"; };
        18E943EB2057667D0019FD04 /* MineViewController.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = MineViewController.m; sourceTree = "<group>"; };
        18E943ED205767120019FD04 /* discoverViewController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = discoverViewController.h; sourceTree = "<group>"; };
        18E943EE205767120019FD04 /* discoverViewController.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = discoverViewController.m; sourceTree = "<group>"; };
        18E943F0205774D50019FD04 /* BaseViewController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = BaseViewController.h; sourceTree = "<group>"; };
        18E943F1205774D50019FD04 /* BaseViewController.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = BaseViewController.m; sourceTree = "<group>"; };
        18E943F32057C5710019FD04 /* JYNetWorking.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = JYNetWorking.h; sourceTree = "<group>"; };
        18E943F42057C5710019FD04 /* JYNetWorking.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = JYNetWorking.m; sourceTree = "<group>"; };
        18ED60691E1632E300AF8252 /* StartCollectionViewCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = StartCollectionViewCell.h; sourceTree = "<group>"; };
        18ED606A1E1632E300AF8252 /* StartCollectionViewCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = StartCollectionViewCell.m; sourceTree = "<group>"; };
        18ED606B1E1632E300AF8252 /* StartCollectionViewCell.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = StartCollectionViewCell.xib; sourceTree = "<group>"; };
        18ED606E1E165CE000AF8252 /* findGoodsTableViewCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = findGoodsTableViewCell.h; sourceTree = "<group>"; };
        18ED606F1E165CE000AF8252 /* findGoodsTableViewCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = findGoodsTableViewCell.m; sourceTree = "<group>"; };
        18ED60701E165CE000AF8252 /* findGoodsTableViewCell.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = findGoodsTableViewCell.xib; sourceTree = "<group>"; };
        18EF91E01D8E47610078C8BD /* WEBViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = WEBViewController.h; sourceTree = "<group>"; };
        18EF91E11D8E47610078C8BD /* WEBViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = WEBViewController.m; sourceTree = "<group>"; };
        18F2541C1DF0090900826AD0 /* FuLiSheViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = FuLiSheViewController.h; sourceTree = "<group>"; };
        18F2541D1DF0090900826AD0 /* FuLiSheViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = FuLiSheViewController.m; sourceTree = "<group>"; };
        18F2541E1DF0090900826AD0 /* FuLiSheViewController.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = FuLiSheViewController.xib; sourceTree = "<group>"; };
        18F5CA961E1C862D001F526F /* libc++.tbd */ = {isa = PBXFileReference; lastKnownFileType = "sourcecode.text-based-dylib-definition"; name = "libc++.tbd"; path = "usr/lib/libc++.tbd"; sourceTree = SDKROOT; };
        18F5CA981E1C8895001F526F /* findcommentTableViewCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = findcommentTableViewCell.h; sourceTree = "<group>"; };
        18F5CA991E1C8895001F526F /* findcommentTableViewCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = findcommentTableViewCell.m; sourceTree = "<group>"; };
        18F5CA9A1E1C8895001F526F /* findcommentTableViewCell.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = findcommentTableViewCell.xib; sourceTree = "<group>"; };
        18F5CA9D1E1C8E79001F526F /* discoverGoodsDetailViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = discoverGoodsDetailViewController.h; sourceTree = "<group>"; };
        18F5CA9E1E1C8E79001F526F /* discoverGoodsDetailViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = discoverGoodsDetailViewController.m; sourceTree = "<group>"; };
        18F5CA9F1E1C8E79001F526F /* discoverGoodsDetailViewController.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = discoverGoodsDetailViewController.xib; sourceTree = "<group>"; };
        18F5CAA21E1CD25E001F526F /* allCommentsViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = allCommentsViewController.h; sourceTree = "<group>"; };
        18F5CAA31E1CD25E001F526F /* allCommentsViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = allCommentsViewController.m; sourceTree = "<group>"; };
        18F5CAA41E1CD25E001F526F /* allCommentsViewController.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = allCommentsViewController.xib; sourceTree = "<group>"; };
        18F5CAA81E1CFE8C001F526F /* PublishGoodsViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PublishGoodsViewController.h; sourceTree = "<group>"; };
        18F5CAA91E1CFE8C001F526F /* PublishGoodsViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = PublishGoodsViewController.m; sourceTree = "<group>"; };
        18F5CAAA1E1CFE8C001F526F /* PublishGoodsViewController.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = PublishGoodsViewController.xib; sourceTree = "<group>"; };
        18FA689B20916CE300DDF6A6 /* 1125.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = 1125.png; sourceTree = "<group>"; };
        18FA689C20916CE300DDF6A6 /* 320.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = 320.png; sourceTree = "<group>"; };
        18FA689D20916CE300DDF6A6 /* 320x480.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = 320x480.png; sourceTree = "<group>"; };
        18FA689E20916CE300DDF6A6 /* 320x568.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = 320x568.png; sourceTree = "<group>"; };
        18FA689F20916CE300DDF6A6 /* 375.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = 375.png; sourceTree = "<group>"; };
        18FA68A020916CE300DDF6A6 /* 375x667.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = 375x667.png; sourceTree = "<group>"; };
        18FA68A120916CE300DDF6A6 /* 414.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = 414.png; sourceTree = "<group>"; };
        18FA68A220916CE300DDF6A6 /* 414x736.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = 414x736.png; sourceTree = "<group>"; };
        18FA68A320916CE300DDF6A6 /* 621x1104.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = 621x1104.png; sourceTree = "<group>"; };
        18FA68A420916CE300DDF6A6 /* 640x1136.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = 640x1136.png; sourceTree = "<group>"; };
        18FB20DB1EE7E5330008AFD9 /* liveTopicViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = liveTopicViewController.h; sourceTree = "<group>"; };
        18FB20DC1EE7E5330008AFD9 /* liveTopicViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = liveTopicViewController.m; sourceTree = "<group>"; };
        18FB20DD1EE7E5330008AFD9 /* liveTopicViewController.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = liveTopicViewController.xib; sourceTree = "<group>"; };
        18FB72711D896B7E00077D69 /* BuWanVideo2.0.entitlements */ = {isa = PBXFileReference; lastKnownFileType = text.plist.entitlements; path = BuWanVideo2.0.entitlements; sourceTree = "<group>"; };
        18FC90F21D9142730041D298 /* googleADS.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = googleADS.xib; sourceTree = "<group>"; };
        18FC90F41D9144320041D298 /* GoogleAdCollectionReusableView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = GoogleAdCollectionReusableView.h; sourceTree = "<group>"; };
        18FC90F51D9144320041D298 /* GoogleAdCollectionReusableView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = GoogleAdCollectionReusableView.m; sourceTree = "<group>"; };
        18FC90F61D9144320041D298 /* GoogleAdCollectionReusableView.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = GoogleAdCollectionReusableView.xib; sourceTree = "<group>"; };
        2C139B9B5CB9A7C07D2CEE9C /* Pods-BuWanVideo2.0.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-BuWanVideo2.0.debug.xcconfig"; path = "Pods/Target Support Files/Pods-BuWanVideo2.0/Pods-BuWanVideo2.0.debug.xcconfig"; sourceTree = "<group>"; };
        2D1198E3212E93CB0043EA39 /* UIViewController+Tools.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIViewController+Tools.m"; sourceTree = "<group>"; };
        2D1198E4212E93CC0043EA39 /* UIViewController+Tools.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIViewController+Tools.h"; sourceTree = "<group>"; };
        2D1E3DB62134FF4B0021C50A /* BSKImagesPageView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = BSKImagesPageView.m; sourceTree = "<group>"; };
        2D1E3DB72134FF4C0021C50A /* BSKImagesPageView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = BSKImagesPageView.h; sourceTree = "<group>"; };
        2D1E3DB9213536700021C50A /* NoNetworkView.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = NoNetworkView.h; sourceTree = "<group>"; };
        2D1E3DBA213536700021C50A /* NoNetworkView.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = NoNetworkView.m; sourceTree = "<group>"; };
        2D3F513521AE716F00C50FA5 /* AdCollectionViewCell.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = AdCollectionViewCell.h; sourceTree = "<group>"; };
        2D3F513621AE716F00C50FA5 /* AdCollectionViewCell.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = AdCollectionViewCell.m; sourceTree = "<group>"; };
        2D3F513721AE716F00C50FA5 /* AdCollectionViewCell.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = AdCollectionViewCell.xib; sourceTree = "<group>"; };
        2D433C132236684100083427 /* FaxianCReusableView.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = FaxianCReusableView.h; sourceTree = "<group>"; };
        2D433C142236684100083427 /* FaxianCReusableView.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = FaxianCReusableView.m; sourceTree = "<group>"; };
        2D433C152236684100083427 /* FaxianCReusableView.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = FaxianCReusableView.xib; sourceTree = "<group>"; };
        2D732549212D626000E09821 /* YYImage.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; path = YYImage.framework; sourceTree = BUILT_PRODUCTS_DIR; };
        2D73254B212D626600E09821 /* YYCache.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; path = YYCache.framework; sourceTree = BUILT_PRODUCTS_DIR; };
        2D73254D212D626B00E09821 /* YYWebImage.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; path = YYWebImage.framework; sourceTree = BUILT_PRODUCTS_DIR; };
        2D73254F212D6B5200E09821 /* WebP.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = WebP.framework; path = Pods/YYImage/Vendor/WebP.framework; sourceTree = "<group>"; };
        2DBB90CC22320D2900E70439 /* DisCoverADView.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = DisCoverADView.h; sourceTree = "<group>"; };
        2DBB90CD22320D2900E70439 /* DisCoverADView.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = DisCoverADView.m; sourceTree = "<group>"; };
        2DBB90CF22320D3D00E70439 /* DisCoverADView.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = DisCoverADView.xib; sourceTree = "<group>"; };
        2DC9303726C3B65400B5C669 /* SearchADCell.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = SearchADCell.h; sourceTree = "<group>"; };
        2DC9303B26C3B6C700B5C669 /* SearchADCell.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = SearchADCell.m; sourceTree = "<group>"; };
        2DEC6E5A22017DC5009B06D4 /* UITabBar+mainTab.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "UITabBar+mainTab.h"; sourceTree = "<group>"; };
        2DEC6E5B22017DC5009B06D4 /* UITabBar+mainTab.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = "UITabBar+mainTab.m"; sourceTree = "<group>"; };
        2DECF92B22325172002FF49F /* GuessLikeViewController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = GuessLikeViewController.h; sourceTree = "<group>"; };
        2DECF92C22325172002FF49F /* GuessLikeViewController.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = GuessLikeViewController.m; sourceTree = "<group>"; };
        2DECF92E22325854002FF49F /* GuessLTableViewCell.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = GuessLTableViewCell.h; sourceTree = "<group>"; };
        2DECF92F22325854002FF49F /* GuessLTableViewCell.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = GuessLTableViewCell.m; sourceTree = "<group>"; };
        2DECF93022325854002FF49F /* GuessLTableViewCell.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = GuessLTableViewCell.xib; sourceTree = "<group>"; };
        5326AC3933907F23F3929227 /* Pods-BuWanVideo2.0.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-BuWanVideo2.0.release.xcconfig"; path = "Pods/Target Support Files/Pods-BuWanVideo2.0/Pods-BuWanVideo2.0.release.xcconfig"; sourceTree = "<group>"; };
        7029049E2686FA4100F93618 /* SearchDelegate.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = SearchDelegate.h; sourceTree = "<group>"; };
        702904AE2687016200F93618 /* ObtainProperty.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ObtainProperty.h; sourceTree = "<group>"; };
        702904B02687016200F93618 /* FileOperator.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = FileOperator.h; sourceTree = "<group>"; };
        702904B12687016200F93618 /* PlistFileOperator.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = PlistFileOperator.m; sourceTree = "<group>"; };
        702904B22687016200F93618 /* ObtainProperty.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ObtainProperty.m; sourceTree = "<group>"; };
        702904B52687016200F93618 /* PlistFileOperator.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PlistFileOperator.h; sourceTree = "<group>"; };
        702904B62687016200F93618 /* FileOperator.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = FileOperator.m; sourceTree = "<group>"; };
        702904BB2687292400F93618 /* SearchCell.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = SearchCell.h; sourceTree = "<group>"; };
        702904BC2687292400F93618 /* SearchCell.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = SearchCell.m; sourceTree = "<group>"; };
        7030BAA126A40201003050E0 /* BuyVipController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = BuyVipController.h; sourceTree = "<group>"; };
        7030BAA226A40201003050E0 /* BuyVipController.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = BuyVipController.m; sourceTree = "<group>"; };
        7030BAA426A404AB003050E0 /* NormolNavView.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = NormolNavView.h; sourceTree = "<group>"; };
        7030BAA526A404AB003050E0 /* NormolNavView.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = NormolNavView.m; sourceTree = "<group>"; };
        7034AC8226638BF30056133F /* RecommendChangeFooterView.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = RecommendChangeFooterView.h; sourceTree = "<group>"; };
        7034AC8326638BF30056133F /* RecommendChangeFooterView.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = RecommendChangeFooterView.m; sourceTree = "<group>"; };
        7034AC8C2663A03D0056133F /* SearchController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = SearchController.h; sourceTree = "<group>"; };
        7034AC8D2663A03D0056133F /* SearchController.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = SearchController.m; sourceTree = "<group>"; };
        7034AC902663A41C0056133F /* SearchNavView.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = SearchNavView.h; sourceTree = "<group>"; };
        7034AC912663A41C0056133F /* SearchNavView.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = SearchNavView.m; sourceTree = "<group>"; };
        7034AC942663BC400056133F /* SearchHotCell.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = SearchHotCell.h; sourceTree = "<group>"; };
        7034AC952663BC400056133F /* SearchHotCell.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = SearchHotCell.m; sourceTree = "<group>"; };
        7034AC972663BCF00056133F /* SearchRecordCell.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = SearchRecordCell.h; sourceTree = "<group>"; };
        7034AC982663BCF00056133F /* SearchRecordCell.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = SearchRecordCell.m; sourceTree = "<group>"; };
        7034AC9A2663BD650056133F /* SearchHotSearchCell.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = SearchHotSearchCell.h; sourceTree = "<group>"; };
        7034AC9B2663BD650056133F /* SearchHotSearchCell.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = SearchHotSearchCell.m; sourceTree = "<group>"; };
        7034AC9D2663BDFE0056133F /* SearchRecordHeaderView.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = SearchRecordHeaderView.h; sourceTree = "<group>"; };
        7034AC9E2663BDFE0056133F /* SearchRecordHeaderView.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = SearchRecordHeaderView.m; sourceTree = "<group>"; };
        703B2A74269062F2001137D1 /* js.txt */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = js.txt; sourceTree = "<group>"; };
        70452801250E2C5C0006C95E /* GDTSDKDefines.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = GDTSDKDefines.h; sourceTree = "<group>"; };
        70452802250E2C5C0006C95E /* GDTRewardVideoAdNetworkConnectorProtocol.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = GDTRewardVideoAdNetworkConnectorProtocol.h; sourceTree = "<group>"; };
        70452803250E2C5C0006C95E /* GDTMediaView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = GDTMediaView.h; sourceTree = "<group>"; };
        70452804250E2C5C0006C95E /* GDTAdTestSetting.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = GDTAdTestSetting.h; sourceTree = "<group>"; };
        70452805250E2C5D0006C95E /* GDTNativeExpressAdView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = GDTNativeExpressAdView.h; sourceTree = "<group>"; };
        70452806250E2C5D0006C95E /* GDTHybridAd.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = GDTHybridAd.h; sourceTree = "<group>"; };
        70452807250E2C5D0006C95E /* GDTRewardVideoAd.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = GDTRewardVideoAd.h; sourceTree = "<group>"; };
        70452808250E2C5D0006C95E /* GDTNativeExpressProAdView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = GDTNativeExpressProAdView.h; sourceTree = "<group>"; };
        70452809250E2C5D0006C95E /* GDTVideoConfig.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = GDTVideoConfig.h; sourceTree = "<group>"; };
        7045280A250E2C5D0006C95E /* GDTLoadAdParams.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = GDTLoadAdParams.h; sourceTree = "<group>"; };
        7045280B250E2C5D0006C95E /* GDTAdParams.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = GDTAdParams.h; sourceTree = "<group>"; };
        7045280C250E2C5D0006C95E /* GDTUnifiedNativeAdDataObject.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = GDTUnifiedNativeAdDataObject.h; sourceTree = "<group>"; };
        7045280D250E2C5E0006C95E /* GDTSplashAd.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = GDTSplashAd.h; sourceTree = "<group>"; };
        7045280E250E2C5F0006C95E /* libGDTMobSDK.a */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; path = libGDTMobSDK.a; sourceTree = "<group>"; };
        7045280F250E2C600006C95E /* GDTNativeExpressProAdManager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = GDTNativeExpressProAdManager.h; sourceTree = "<group>"; };
        70452810250E2C600006C95E /* GDTLogoView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = GDTLogoView.h; sourceTree = "<group>"; };
        70452811250E2C600006C95E /* GDTNativeExpressAd.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = GDTNativeExpressAd.h; sourceTree = "<group>"; };
        70452812250E2C600006C95E /* GDTSDKConfig.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = GDTSDKConfig.h; sourceTree = "<group>"; };
        70452813250E2C600006C95E /* GDTBaseAdNetworkAdapterProtocol.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = GDTBaseAdNetworkAdapterProtocol.h; sourceTree = "<group>"; };
        70452814250E2C600006C95E /* GDTUnifiedBannerView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = GDTUnifiedBannerView.h; sourceTree = "<group>"; };
        70452815250E2C600006C95E /* GDTUnifiedInterstitialAd.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = GDTUnifiedInterstitialAd.h; sourceTree = "<group>"; };
        70452816250E2C600006C95E /* GDTRewardVideoAdNetworkAdapterProtocol.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = GDTRewardVideoAdNetworkAdapterProtocol.h; sourceTree = "<group>"; };
        70452817250E2C600006C95E /* GDTUnifiedNativeAd.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = GDTUnifiedNativeAd.h; sourceTree = "<group>"; };
        70452818250E2C610006C95E /* GDTUnifiedNativeAdView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = GDTUnifiedNativeAdView.h; sourceTree = "<group>"; };
        704C1487265A936B009DAB98 /* BaseController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = BaseController.h; sourceTree = "<group>"; };
        704C1488265A936B009DAB98 /* BaseController.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = BaseController.m; sourceTree = "<group>"; };
        704C148A265A9393009DAB98 /* RecommendMainController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = RecommendMainController.h; sourceTree = "<group>"; };
        704C148B265A9393009DAB98 /* RecommendMainController.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = RecommendMainController.m; sourceTree = "<group>"; };
        704C149F265A98A1009DAB98 /* RecommendNavView.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = RecommendNavView.h; sourceTree = "<group>"; };
        704C14A0265A98A1009DAB98 /* RecommendNavView.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = RecommendNavView.m; sourceTree = "<group>"; };
        704C14A7265B72A5009DAB98 /* ZJContentView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ZJContentView.h; sourceTree = "<group>"; };
        704C14A8265B72A5009DAB98 /* UIView+ZJFrame.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIView+ZJFrame.m"; sourceTree = "<group>"; };
        704C14A9265B72A5009DAB98 /* ZJCollectionView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ZJCollectionView.h; sourceTree = "<group>"; };
        704C14AA265B72A5009DAB98 /* ZJScrollSegmentView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ZJScrollSegmentView.h; sourceTree = "<group>"; };
        704C14AB265B72A5009DAB98 /* ZJScrollPageViewDelegate.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ZJScrollPageViewDelegate.h; sourceTree = "<group>"; };
        704C14AC265B72A5009DAB98 /* ZJSegmentStyle.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ZJSegmentStyle.h; sourceTree = "<group>"; };
        704C14AD265B72A5009DAB98 /* ZJTitleView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ZJTitleView.m; sourceTree = "<group>"; };
        704C14AE265B72A5009DAB98 /* UIViewController+ZJScrollPageController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIViewController+ZJScrollPageController.m"; sourceTree = "<group>"; };
        704C14AF265B72A5009DAB98 /* ZJScrollPageView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ZJScrollPageView.h; sourceTree = "<group>"; };
        704C14B0265B72A5009DAB98 /* UIView+ZJFrame.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIView+ZJFrame.h"; sourceTree = "<group>"; };
        704C14B1265B72A5009DAB98 /* ZJContentView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ZJContentView.m; sourceTree = "<group>"; };
        704C14B2265B72A5009DAB98 /* ZJCollectionView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ZJCollectionView.m; sourceTree = "<group>"; };
        704C14B3265B72A5009DAB98 /* ZJSegmentStyle.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ZJSegmentStyle.m; sourceTree = "<group>"; };
        704C14B4265B72A5009DAB98 /* ZJScrollSegmentView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ZJScrollSegmentView.m; sourceTree = "<group>"; };
        704C14B5265B72A5009DAB98 /* ZJScrollPageView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ZJScrollPageView.m; sourceTree = "<group>"; };
        704C14B6265B72A5009DAB98 /* UIViewController+ZJScrollPageController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIViewController+ZJScrollPageController.h"; sourceTree = "<group>"; };
        704C14B7265B72A5009DAB98 /* ZJTitleView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ZJTitleView.h; sourceTree = "<group>"; };
        704C14C0265B7623009DAB98 /* RecommendController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = RecommendController.h; sourceTree = "<group>"; };
        704C14C1265B7623009DAB98 /* RecommendController.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = RecommendController.m; sourceTree = "<group>"; };
        704C14C9265B76D2009DAB98 /* ListController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ListController.h; sourceTree = "<group>"; };
        704C14CA265B76D2009DAB98 /* ListController.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = ListController.m; sourceTree = "<group>"; };
        704C14CC265B8E38009DAB98 /* MainBaseController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = MainBaseController.h; sourceTree = "<group>"; };
        704C14CD265B8E38009DAB98 /* MainBaseController.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = MainBaseController.m; sourceTree = "<group>"; };
        7054B445266B8625002B6504 /* RecommendDelegate.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = RecommendDelegate.h; sourceTree = "<group>"; };
        705951F225161153008E0CDF /* SearchTitleView.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = SearchTitleView.h; sourceTree = "<group>"; };
        705951F325161153008E0CDF /* SearchTitleView.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = SearchTitleView.m; sourceTree = "<group>"; };
        705951F5251633E9008E0CDF /* SearchDetailListCell.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = SearchDetailListCell.h; sourceTree = "<group>"; };
        705951F6251633E9008E0CDF /* SearchDetailListCell.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = SearchDetailListCell.m; sourceTree = "<group>"; };
        705F1E82251F085D0065350E /* Share.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = Share.m; sourceTree = "<group>"; };
        705F1E83251F085D0065350E /* Share.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Share.h; sourceTree = "<group>"; };
        705F1F37251F1CA70065350E /* UIScrollView+MJRefresh.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIScrollView+MJRefresh.m"; sourceTree = "<group>"; };
        705F1F38251F1CA70065350E /* MJRefreshConst.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MJRefreshConst.m; sourceTree = "<group>"; };
        705F1F39251F1CA70065350E /* MJRefreshConfig.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MJRefreshConfig.m; sourceTree = "<group>"; };
        705F1F3A251F1CA70065350E /* UIScrollView+MJExtension.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIScrollView+MJExtension.h"; sourceTree = "<group>"; };
        705F1F3B251F1CA70065350E /* MJRefresh.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MJRefresh.h; sourceTree = "<group>"; };
        705F1F3C251F1CA70065350E /* NSBundle+MJRefresh.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSBundle+MJRefresh.h"; sourceTree = "<group>"; };
        705F1F3D251F1CA70065350E /* MJRefresh.bundle */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.plug-in"; path = MJRefresh.bundle; sourceTree = "<group>"; };
        705F1F3E251F1CA70065350E /* UIView+MJExtension.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIView+MJExtension.h"; sourceTree = "<group>"; };
        705F1F3F251F1CA70065350E /* UIScrollView+MJExtension.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIScrollView+MJExtension.m"; sourceTree = "<group>"; };
        705F1F40251F1CA70065350E /* MJRefreshConfig.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MJRefreshConfig.h; sourceTree = "<group>"; };
        705F1F41251F1CA70065350E /* MJRefreshConst.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MJRefreshConst.h; sourceTree = "<group>"; };
        705F1F42251F1CA70065350E /* UIScrollView+MJRefresh.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIScrollView+MJRefresh.h"; sourceTree = "<group>"; };
        705F1F43251F1CA70065350E /* NSBundle+MJRefresh.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSBundle+MJRefresh.m"; sourceTree = "<group>"; };
        705F1F44251F1CA70065350E /* UIView+MJExtension.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIView+MJExtension.m"; sourceTree = "<group>"; };
        705F1F48251F1CA70065350E /* MJRefreshBackGifFooter.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MJRefreshBackGifFooter.h; sourceTree = "<group>"; };
        705F1F49251F1CA70065350E /* MJRefreshBackStateFooter.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MJRefreshBackStateFooter.h; sourceTree = "<group>"; };
        705F1F4A251F1CA70065350E /* MJRefreshBackNormalFooter.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MJRefreshBackNormalFooter.h; sourceTree = "<group>"; };
        705F1F4B251F1CA70065350E /* MJRefreshBackGifFooter.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MJRefreshBackGifFooter.m; sourceTree = "<group>"; };
        705F1F4C251F1CA70065350E /* MJRefreshBackStateFooter.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MJRefreshBackStateFooter.m; sourceTree = "<group>"; };
        705F1F4D251F1CA70065350E /* MJRefreshBackNormalFooter.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MJRefreshBackNormalFooter.m; sourceTree = "<group>"; };
        705F1F4F251F1CA70065350E /* MJRefreshAutoStateFooter.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MJRefreshAutoStateFooter.h; sourceTree = "<group>"; };
        705F1F50251F1CA70065350E /* MJRefreshAutoNormalFooter.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MJRefreshAutoNormalFooter.h; sourceTree = "<group>"; };
        705F1F51251F1CA70065350E /* MJRefreshAutoGifFooter.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MJRefreshAutoGifFooter.h; sourceTree = "<group>"; };
        705F1F52251F1CA70065350E /* MJRefreshAutoStateFooter.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MJRefreshAutoStateFooter.m; sourceTree = "<group>"; };
        705F1F53251F1CA70065350E /* MJRefreshAutoGifFooter.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MJRefreshAutoGifFooter.m; sourceTree = "<group>"; };
        705F1F54251F1CA70065350E /* MJRefreshAutoNormalFooter.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MJRefreshAutoNormalFooter.m; sourceTree = "<group>"; };
        705F1F56251F1CA70065350E /* MJRefreshNormalTrailer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MJRefreshNormalTrailer.h; sourceTree = "<group>"; };
        705F1F57251F1CA70065350E /* MJRefreshStateTrailer.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MJRefreshStateTrailer.m; sourceTree = "<group>"; };
        705F1F58251F1CA70065350E /* MJRefreshNormalTrailer.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MJRefreshNormalTrailer.m; sourceTree = "<group>"; };
        705F1F59251F1CA70065350E /* MJRefreshStateTrailer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MJRefreshStateTrailer.h; sourceTree = "<group>"; };
        705F1F5B251F1CA70065350E /* MJRefreshNormalHeader.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MJRefreshNormalHeader.m; sourceTree = "<group>"; };
        705F1F5C251F1CA70065350E /* MJRefreshStateHeader.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MJRefreshStateHeader.h; sourceTree = "<group>"; };
        705F1F5D251F1CA70065350E /* MJRefreshGifHeader.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MJRefreshGifHeader.h; sourceTree = "<group>"; };
        705F1F5E251F1CA70065350E /* MJRefreshNormalHeader.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MJRefreshNormalHeader.h; sourceTree = "<group>"; };
        705F1F5F251F1CA70065350E /* MJRefreshStateHeader.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MJRefreshStateHeader.m; sourceTree = "<group>"; };
        705F1F60251F1CA70065350E /* MJRefreshGifHeader.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MJRefreshGifHeader.m; sourceTree = "<group>"; };
        705F1F62251F1CA70065350E /* MJRefreshFooter.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MJRefreshFooter.m; sourceTree = "<group>"; };
        705F1F63251F1CA70065350E /* MJRefreshComponent.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MJRefreshComponent.h; sourceTree = "<group>"; };
        705F1F64251F1CA70065350E /* MJRefreshHeader.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MJRefreshHeader.m; sourceTree = "<group>"; };
        705F1F65251F1CA70065350E /* MJRefreshAutoFooter.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MJRefreshAutoFooter.h; sourceTree = "<group>"; };
        705F1F66251F1CA70065350E /* MJRefreshTrailer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MJRefreshTrailer.h; sourceTree = "<group>"; };
        705F1F67251F1CA70065350E /* MJRefreshBackFooter.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MJRefreshBackFooter.m; sourceTree = "<group>"; };
        705F1F68251F1CA70065350E /* MJRefreshAutoFooter.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MJRefreshAutoFooter.m; sourceTree = "<group>"; };
        705F1F69251F1CA70065350E /* MJRefreshHeader.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MJRefreshHeader.h; sourceTree = "<group>"; };
        705F1F6A251F1CA70065350E /* MJRefreshComponent.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MJRefreshComponent.m; sourceTree = "<group>"; };
        705F1F6B251F1CA70065350E /* MJRefreshFooter.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MJRefreshFooter.h; sourceTree = "<group>"; };
        705F1F6C251F1CA70065350E /* MJRefreshBackFooter.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MJRefreshBackFooter.h; sourceTree = "<group>"; };
        705F1F6D251F1CA70065350E /* MJRefreshTrailer.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MJRefreshTrailer.m; sourceTree = "<group>"; };
        706CECBE264F76C1001FBEB7 /* PPTVNavView.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = PPTVNavView.h; sourceTree = "<group>"; };
        706CECBF264F76C1001FBEB7 /* PPTVNavView.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = PPTVNavView.m; sourceTree = "<group>"; };
        706CECC2264F7C31001FBEB7 /* PPTVDelegate.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = PPTVDelegate.h; sourceTree = "<group>"; };
        706CECC3264F94CC001FBEB7 /* PPTVPppView.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = PPTVPppView.h; sourceTree = "<group>"; };
        706CECC4264F94CC001FBEB7 /* PPTVPppView.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = PPTVPppView.m; sourceTree = "<group>"; };
        706CECC7264F97EB001FBEB7 /* PPTVPopCell.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = PPTVPopCell.h; sourceTree = "<group>"; };
        706CECC8264F97EB001FBEB7 /* PPTVPopCell.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = PPTVPopCell.m; sourceTree = "<group>"; };
        706CECCB264FB895001FBEB7 /* dsbridge.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = dsbridge.h; sourceTree = "<group>"; };
        706CECCC264FB895001FBEB7 /* InternalApis.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = InternalApis.h; sourceTree = "<group>"; };
        706CECCD264FB895001FBEB7 /* DSCallInfo.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = DSCallInfo.m; sourceTree = "<group>"; };
        706CECCE264FB895001FBEB7 /* JSBUtil.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = JSBUtil.h; sourceTree = "<group>"; };
        706CECCF264FB895001FBEB7 /* DWKWebView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = DWKWebView.h; sourceTree = "<group>"; };
        706CECD0264FB895001FBEB7 /* DSCallInfo.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = DSCallInfo.h; sourceTree = "<group>"; };
        706CECD1264FB895001FBEB7 /* InternalApis.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = InternalApis.m; sourceTree = "<group>"; };
        706CECD2264FB895001FBEB7 /* JSBUtil.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = JSBUtil.m; sourceTree = "<group>"; };
        706CECD3264FB895001FBEB7 /* DWKWebView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = DWKWebView.m; sourceTree = "<group>"; };
        706CECD9264FB8CB001FBEB7 /* JSAPI.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = JSAPI.h; sourceTree = "<group>"; };
        706CECDA264FB8CB001FBEB7 /* JSAPI.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = JSAPI.m; sourceTree = "<group>"; };
        706CECDC264FC2A7001FBEB7 /* PPTVBottomVIpVIew.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = PPTVBottomVIpVIew.h; sourceTree = "<group>"; };
        706CECDD264FC2A7001FBEB7 /* PPTVBottomVIpVIew.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = PPTVBottomVIpVIew.m; sourceTree = "<group>"; };
        70C4921026AC1D6200D044F7 /* BUAdSDK.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; path = BUAdSDK.framework; sourceTree = "<group>"; };
        70C4921126AC1D6400D044F7 /* BUCNAuxiliary.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; path = BUCNAuxiliary.framework; sourceTree = "<group>"; };
        70C4921226AC1D6600D044F7 /* BUFoundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; path = BUFoundation.framework; sourceTree = "<group>"; };
        70C4921326AC1D6600D044F7 /* BUAdSDK.bundle */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.plug-in"; path = BUAdSDK.bundle; sourceTree = "<group>"; };
        70D5934325EA1FAE00438F1A /* PPTVController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = PPTVController.h; sourceTree = "<group>"; };
        70D5934425EA1FAE00438F1A /* PPTVController.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = PPTVController.m; sourceTree = "<group>"; };
        70ED36B6266233EC00E51E79 /* CWCarousel.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CWCarousel.m; sourceTree = "<group>"; };
        70ED36B7266233EC00E51E79 /* CWCarouselHeader.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CWCarouselHeader.h; sourceTree = "<group>"; };
        70ED36B8266233EC00E51E79 /* CWFlowLayout.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CWFlowLayout.m; sourceTree = "<group>"; };
        70ED36B9266233EC00E51E79 /* CWCarouselProtocol.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CWCarouselProtocol.h; sourceTree = "<group>"; };
        70ED36BA266233EC00E51E79 /* CWCarousel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CWCarousel.h; sourceTree = "<group>"; };
        70ED36BB266233EC00E51E79 /* CWFlowLayout.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CWFlowLayout.h; sourceTree = "<group>"; };
        70ED36C326623CCB00E51E79 /* 01.jpg */ = {isa = PBXFileReference; lastKnownFileType = image.jpeg; path = 01.jpg; sourceTree = "<group>"; };
        70ED36C426623CCB00E51E79 /* 02.jpg */ = {isa = PBXFileReference; lastKnownFileType = image.jpeg; path = 02.jpg; sourceTree = "<group>"; };
        70ED36C526623CCB00E51E79 /* 03.jpg */ = {isa = PBXFileReference; lastKnownFileType = image.jpeg; path = 03.jpg; sourceTree = "<group>"; };
        70ED36C626623CCC00E51E79 /* 04.jpg */ = {isa = PBXFileReference; lastKnownFileType = image.jpeg; path = 04.jpg; sourceTree = "<group>"; };
        70ED36C726623CCC00E51E79 /* 05.jpg */ = {isa = PBXFileReference; lastKnownFileType = image.jpeg; path = 05.jpg; sourceTree = "<group>"; };
        70ED36CE26624BAE00E51E79 /* UICollectionViewLeftAlignedLayout.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = UICollectionViewLeftAlignedLayout.h; sourceTree = "<group>"; };
        70ED36CF26624BAE00E51E79 /* UICollectionViewLeftAlignedLayout.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = UICollectionViewLeftAlignedLayout.m; sourceTree = "<group>"; };
        70ED36D726624F4700E51E79 /* RecommendHeaderViewCell.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = RecommendHeaderViewCell.h; sourceTree = "<group>"; };
        70ED36D826624F4700E51E79 /* RecommendHeaderViewCell.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = RecommendHeaderViewCell.m; sourceTree = "<group>"; };
        70ED36DA266250B800E51E79 /* RecpmmendTitleView.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = RecpmmendTitleView.h; sourceTree = "<group>"; };
        70ED36DB266250B800E51E79 /* RecpmmendTitleView.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = RecpmmendTitleView.m; sourceTree = "<group>"; };
        70ED36DD26625AF600E51E79 /* ToDayHotCell.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ToDayHotCell.h; sourceTree = "<group>"; };
        70ED36DE26625AF600E51E79 /* ToDayHotCell.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = ToDayHotCell.m; sourceTree = "<group>"; };
        70ED36E0266264D900E51E79 /* RecommendTwoColumnCell.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = RecommendTwoColumnCell.h; sourceTree = "<group>"; };
        70ED36E1266264D900E51E79 /* RecommendTwoColumnCell.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = RecommendTwoColumnCell.m; sourceTree = "<group>"; };
        70ED36E326627D4500E51E79 /* RecommendThreeColumnCell.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = RecommendThreeColumnCell.h; sourceTree = "<group>"; };
        70ED36E426627D4500E51E79 /* RecommendThreeColumnCell.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = RecommendThreeColumnCell.m; sourceTree = "<group>"; };
        70ED36E7266280EA00E51E79 /* UIView+SDExtension.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIView+SDExtension.h"; sourceTree = "<group>"; };
        70ED36E8266280EA00E51E79 /* SDCycleScrollView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDCycleScrollView.h; sourceTree = "<group>"; };
        70ED36E9266280EA00E51E79 /* SDCollectionViewCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDCollectionViewCell.h; sourceTree = "<group>"; };
        70ED36EA266280EA00E51E79 /* SDCycleScrollView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDCycleScrollView.m; sourceTree = "<group>"; };
        70ED36EB266280EA00E51E79 /* UIView+SDExtension.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIView+SDExtension.m"; sourceTree = "<group>"; };
        70ED36EC266280EA00E51E79 /* SDCollectionViewCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDCollectionViewCell.m; sourceTree = "<group>"; };
        70ED36EE266280EA00E51E79 /* TAAbstractDotView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = TAAbstractDotView.h; sourceTree = "<group>"; };
        70ED36EF266280EA00E51E79 /* TADotView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = TADotView.m; sourceTree = "<group>"; };
        70ED36F0266280EA00E51E79 /* TAPageControl.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = TAPageControl.m; sourceTree = "<group>"; };
        70ED36F1266280EA00E51E79 /* TAAnimatedDotView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = TAAnimatedDotView.m; sourceTree = "<group>"; };
        70ED36F2266280EA00E51E79 /* TAAbstractDotView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = TAAbstractDotView.m; sourceTree = "<group>"; };
        70ED36F3266280EA00E51E79 /* TADotView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = TADotView.h; sourceTree = "<group>"; };
        70ED36F4266280EA00E51E79 /* TAAnimatedDotView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = TAAnimatedDotView.h; sourceTree = "<group>"; };
        70ED36F5266280EA00E51E79 /* TAPageControl.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = TAPageControl.h; sourceTree = "<group>"; };
        7B0D3B261D59BCAB003E74A8 /* AnimationTool.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AnimationTool.h; sourceTree = "<group>"; };
        7B0D3B271D59BCAB003E74A8 /* AnimationTool.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = AnimationTool.m; sourceTree = "<group>"; };
        7B0D3B281D59BCAB003E74A8 /* CMuneBar.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CMuneBar.h; sourceTree = "<group>"; };
        7B0D3B291D59BCAB003E74A8 /* CMuneBar.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CMuneBar.m; sourceTree = "<group>"; };
        7B0D3B2A1D59BCAB003E74A8 /* CMuneItem.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CMuneItem.h; sourceTree = "<group>"; };
        7B0D3B2B1D59BCAB003E74A8 /* CMuneItem.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CMuneItem.m; sourceTree = "<group>"; };
        7B1FF0931D6708FD00E6C207 /* discoverView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = discoverView.h; sourceTree = "<group>"; };
        7B1FF0941D6708FD00E6C207 /* discoverView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = discoverView.m; sourceTree = "<group>"; };
        7B1FF0971D67094500E6C207 /* CellOne.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CellOne.h; sourceTree = "<group>"; };
        7B1FF0981D67094500E6C207 /* CellOne.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CellOne.m; sourceTree = "<group>"; };
        7B1FF0991D67094500E6C207 /* CellOne.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = CellOne.xib; sourceTree = "<group>"; };
        7B1FF0A31D67094500E6C207 /* CellHead.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CellHead.h; sourceTree = "<group>"; };
        7B1FF0A41D67094500E6C207 /* CellHead.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CellHead.m; sourceTree = "<group>"; };
        7B1FF0A51D67094500E6C207 /* CellHead.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = CellHead.xib; sourceTree = "<group>"; };
        7B1FF0B51D670A1500E6C207 /* OnlySpecialController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OnlySpecialController.h; sourceTree = "<group>"; };
        7B1FF0B61D670A1500E6C207 /* OnlySpecialController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = OnlySpecialController.m; sourceTree = "<group>"; };
        7B1FF0B81D670A1F00E6C207 /* AllSpecialController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AllSpecialController.h; sourceTree = "<group>"; };
        7B1FF0B91D670A1F00E6C207 /* AllSpecialController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = AllSpecialController.m; sourceTree = "<group>"; };
        7B1FF0BC1D670A3B00E6C207 /* Starview.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Starview.h; sourceTree = "<group>"; };
        7B1FF0BD1D670A3B00E6C207 /* Starview.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = Starview.m; sourceTree = "<group>"; };
        7B1FF0BE1D670A3B00E6C207 /* Starview.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = Starview.xib; sourceTree = "<group>"; };
        7B1FF0BF1D670A3B00E6C207 /* StarmovieCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = StarmovieCell.h; sourceTree = "<group>"; };
        7B1FF0C01D670A3B00E6C207 /* StarmovieCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = StarmovieCell.m; sourceTree = "<group>"; };
        7B1FF0C11D670A3B00E6C207 /* StarmovieCell.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = StarmovieCell.xib; sourceTree = "<group>"; };
        7B1FF0C61D670A4E00E6C207 /* IndividualStarController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IndividualStarController.h; sourceTree = "<group>"; };
        7B1FF0C71D670A4E00E6C207 /* IndividualStarController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = IndividualStarController.m; sourceTree = "<group>"; };
        7B1FF0C91D670A7F00E6C207 /* StarsController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = StarsController.h; sourceTree = "<group>"; };
        7B1FF0CA1D670A7F00E6C207 /* StarsController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = StarsController.m; sourceTree = "<group>"; };
        7B1FF0CD1D670AA900E6C207 /* TWScell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = TWScell.h; sourceTree = "<group>"; };
        7B1FF0CE1D670AA900E6C207 /* TWScell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = TWScell.m; sourceTree = "<group>"; };
        7B1FF0CF1D670AA900E6C207 /* TWScell.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = TWScell.xib; sourceTree = "<group>"; };
        7B1FF0D21D670AB200E6C207 /* TWScontroller.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = TWScontroller.h; sourceTree = "<group>"; };
        7B1FF0D31D670AB200E6C207 /* TWScontroller.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = TWScontroller.m; sourceTree = "<group>"; };
        7B1FF0D61D670B7E00E6C207 /* AttentionCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AttentionCell.h; sourceTree = "<group>"; };
        7B1FF0D71D670B7E00E6C207 /* AttentionCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = AttentionCell.m; sourceTree = "<group>"; };
        7B1FF0D81D670B7E00E6C207 /* AttentionCell.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = AttentionCell.xib; sourceTree = "<group>"; };
        7B1FF0DB1D670B8800E6C207 /* attentionView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = attentionView.h; sourceTree = "<group>"; };
        7B1FF0DC1D670B8800E6C207 /* attentionView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = attentionView.m; sourceTree = "<group>"; };
        7B1FF0DE1D6711CF00E6C207 /* libiconv.tbd */ = {isa = PBXFileReference; lastKnownFileType = "sourcecode.text-based-dylib-definition"; name = libiconv.tbd; path = usr/lib/libiconv.tbd; sourceTree = SDKROOT; };
        7B1FF0E01D67121700E6C207 /* libstdc++.tbd */ = {isa = PBXFileReference; lastKnownFileType = "sourcecode.text-based-dylib-definition"; name = "libstdc++.tbd"; path = "usr/lib/libstdc++.tbd"; sourceTree = SDKROOT; };
        7B32BD2D1D4F259300E96E75 /* recommendView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = recommendView.h; sourceTree = "<group>"; };
        7B32BD2E1D4F259300E96E75 /* recommendView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = recommendView.m; sourceTree = "<group>"; wrapsLines = 1; };
        7B32BD301D4F26F500E96E75 /* subregionView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = subregionView.h; sourceTree = "<group>"; };
        7B32BD311D4F26F500E96E75 /* subregionView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = subregionView.m; sourceTree = "<group>"; };
        7B32BD3A1D4F410F00E96E75 /* recommentCollectionViewCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = recommentCollectionViewCell.h; sourceTree = "<group>"; };
        7B32BD3B1D4F410F00E96E75 /* recommentCollectionViewCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = recommentCollectionViewCell.m; sourceTree = "<group>"; };
        7B32BD3C1D4F410F00E96E75 /* recommentCollectionViewCell.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = recommentCollectionViewCell.xib; sourceTree = "<group>"; };
        7B389BDB1D61B1D10043A2F2 /* ModelIO.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = ModelIO.framework; path = System/Library/Frameworks/ModelIO.framework; sourceTree = SDKROOT; };
        7B389BDD1D61B1EC0043A2F2 /* VideoToolbox.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = VideoToolbox.framework; path = System/Library/Frameworks/VideoToolbox.framework; sourceTree = SDKROOT; };
        7B389BDF1D61B2EF0043A2F2 /* libsqlite3.tbd */ = {isa = PBXFileReference; lastKnownFileType = "sourcecode.text-based-dylib-definition"; name = libsqlite3.tbd; path = usr/lib/libsqlite3.tbd; sourceTree = SDKROOT; };
        7B389BE11D61B2F90043A2F2 /* libc++.1.tbd */ = {isa = PBXFileReference; lastKnownFileType = "sourcecode.text-based-dylib-definition"; name = "libc++.1.tbd"; path = "usr/lib/libc++.1.tbd"; sourceTree = SDKROOT; };
        7B389BE31D61B3070043A2F2 /* libbz2.1.0.tbd */ = {isa = PBXFileReference; lastKnownFileType = "sourcecode.text-based-dylib-definition"; name = libbz2.1.0.tbd; path = usr/lib/libbz2.1.0.tbd; sourceTree = SDKROOT; };
        7B389BE51D61B3100043A2F2 /* libxml2.2.tbd */ = {isa = PBXFileReference; lastKnownFileType = "sourcecode.text-based-dylib-definition"; name = libxml2.2.tbd; path = usr/lib/libxml2.2.tbd; sourceTree = SDKROOT; };
        7B389BE71D61B31C0043A2F2 /* libiconv.2.tbd */ = {isa = PBXFileReference; lastKnownFileType = "sourcecode.text-based-dylib-definition"; name = libiconv.2.tbd; path = usr/lib/libiconv.2.tbd; sourceTree = SDKROOT; };
        7B389BE91D61B32C0043A2F2 /* libresolv.9.tbd */ = {isa = PBXFileReference; lastKnownFileType = "sourcecode.text-based-dylib-definition"; name = libresolv.9.tbd; path = usr/lib/libresolv.9.tbd; sourceTree = SDKROOT; };
        7B389BEB1D61B3370043A2F2 /* libz.1.tbd */ = {isa = PBXFileReference; lastKnownFileType = "sourcecode.text-based-dylib-definition"; name = libz.1.tbd; path = usr/lib/libz.1.tbd; sourceTree = SDKROOT; };
        7B41E9991D4A04AE00F05CE2 /* BuWanVideo2.0.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = BuWanVideo2.0.app; sourceTree = BUILT_PRODUCTS_DIR; };
        7B41E99D1D4A04AE00F05CE2 /* main.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = main.m; sourceTree = "<group>"; };
        7B41E99F1D4A04AE00F05CE2 /* AppDelegate.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = AppDelegate.h; sourceTree = "<group>"; };
        7B41E9A01D4A04AE00F05CE2 /* AppDelegate.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = AppDelegate.m; sourceTree = "<group>"; };
        7B41E9A61D4A04AE00F05CE2 /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/Main.storyboard; sourceTree = "<group>"; };
        7B41E9A81D4A04AE00F05CE2 /* Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Assets.xcassets; sourceTree = "<group>"; };
        7B41E9AB1D4A04AE00F05CE2 /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/LaunchScreen.storyboard; sourceTree = "<group>"; };
        7B41E9AD1D4A04AE00F05CE2 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
        7B4220EA1D6D7D34007345E6 /* AllSpecialCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AllSpecialCell.h; sourceTree = "<group>"; };
        7B4220EB1D6D7D34007345E6 /* AllSpecialCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = AllSpecialCell.m; sourceTree = "<group>"; };
        7B4220EC1D6D7D34007345E6 /* AllSpecialCell.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = AllSpecialCell.xib; sourceTree = "<group>"; };
        7B4220F01D6D7DDE007345E6 /* OnlySpecialOne.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OnlySpecialOne.h; sourceTree = "<group>"; };
        7B4220F11D6D7DDE007345E6 /* OnlySpecialOne.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = OnlySpecialOne.m; sourceTree = "<group>"; };
        7B4220F21D6D7DDE007345E6 /* OnlySpecialOne.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = OnlySpecialOne.xib; sourceTree = "<group>"; };
        7B4220F31D6D7DDE007345E6 /* OnlySpecialThere.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OnlySpecialThere.h; sourceTree = "<group>"; };
        7B4220F41D6D7DDE007345E6 /* OnlySpecialThere.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = OnlySpecialThere.m; sourceTree = "<group>"; };
        7B4220F51D6D7DDE007345E6 /* OnlySpecialThere.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = OnlySpecialThere.xib; sourceTree = "<group>"; };
        7B4220F61D6D7DDE007345E6 /* OnlySpecialTwo.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OnlySpecialTwo.h; sourceTree = "<group>"; };
        7B4220F71D6D7DDE007345E6 /* OnlySpecialTwo.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = OnlySpecialTwo.m; sourceTree = "<group>"; };
        7B4220F81D6D7DDE007345E6 /* OnlySpecialTwo.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = OnlySpecialTwo.xib; sourceTree = "<group>"; };
        7B59CBF71D5B1447000B357F /* GroupSection.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = GroupSection.h; sourceTree = "<group>"; };
        7B59CBF81D5B1447000B357F /* GroupSection.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = GroupSection.m; sourceTree = "<group>"; };
        7B59CBF91D5B1447000B357F /* GroupSection.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = GroupSection.xib; sourceTree = "<group>"; };
        7B59CBFC1D5B15A3000B357F /* GroupCollectionViewCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = GroupCollectionViewCell.h; sourceTree = "<group>"; };
        7B59CBFD1D5B15A3000B357F /* GroupCollectionViewCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = GroupCollectionViewCell.m; sourceTree = "<group>"; };
        7B59CBFE1D5B15A3000B357F /* GroupCollectionViewCell.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = GroupCollectionViewCell.xib; sourceTree = "<group>"; };
        7B59CC011D5B15C4000B357F /* IntroductionCollectionViewCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IntroductionCollectionViewCell.h; sourceTree = "<group>"; };
        7B59CC021D5B15C4000B357F /* IntroductionCollectionViewCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = IntroductionCollectionViewCell.m; sourceTree = "<group>"; };
        7B59CC031D5B15C4000B357F /* IntroductionCollectionViewCell.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = IntroductionCollectionViewCell.xib; sourceTree = "<group>"; };
        7B59CC061D5B162A000B357F /* GuessYouLikeCollectionViewCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = GuessYouLikeCollectionViewCell.h; sourceTree = "<group>"; };
        7B59CC071D5B162A000B357F /* GuessYouLikeCollectionViewCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = GuessYouLikeCollectionViewCell.m; sourceTree = "<group>"; };
        7B59CC081D5B162A000B357F /* GuessYouLikeCollectionViewCell.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = GuessYouLikeCollectionViewCell.xib; sourceTree = "<group>"; };
        7B59CC0B1D5B16B7000B357F /* GroupSmallSection.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = GroupSmallSection.h; sourceTree = "<group>"; };
        7B59CC0C1D5B16B7000B357F /* GroupSmallSection.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = GroupSmallSection.m; sourceTree = "<group>"; };
        7B59CC0D1D5B16B7000B357F /* GroupSmallSection.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = GroupSmallSection.xib; sourceTree = "<group>"; };
        7B59CC101D5B16CC000B357F /* GroupfootSection.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = GroupfootSection.h; sourceTree = "<group>"; };
        7B59CC111D5B16CC000B357F /* GroupfootSection.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = GroupfootSection.m; sourceTree = "<group>"; };
        7B59CC121D5B16CC000B357F /* GroupfootSection.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = GroupfootSection.xib; sourceTree = "<group>"; };
        7B59CC151D5B16DC000B357F /* ADCollectionReusableView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ADCollectionReusableView.h; sourceTree = "<group>"; };
        7B59CC161D5B16DC000B357F /* ADCollectionReusableView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ADCollectionReusableView.m; sourceTree = "<group>"; };
        7B59CC171D5B16DC000B357F /* ADCollectionReusableView.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = ADCollectionReusableView.xib; sourceTree = "<group>"; };
        7B62B0DE1D4B0F0D00BBC30D /* PrefixHeader.pch */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = PrefixHeader.pch; path = ../PrefixHeader.pch; sourceTree = "<group>"; };
        7B7BB82C1D65558500066939 /* SearchCollectionReusableView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SearchCollectionReusableView.h; sourceTree = "<group>"; };
        7B7BB82D1D65558500066939 /* SearchCollectionReusableView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SearchCollectionReusableView.m; sourceTree = "<group>"; };
        7B7BB82E1D65558500066939 /* SearchCollectionReusableView.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = SearchCollectionReusableView.xib; sourceTree = "<group>"; };
        7B7BB8311D65A3DA00066939 /* searchTableViewCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = searchTableViewCell.h; sourceTree = "<group>"; };
        7B7BB8321D65A3DA00066939 /* searchTableViewCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = searchTableViewCell.m; sourceTree = "<group>"; };
        7B7BB8331D65A3DA00066939 /* searchTableViewCell.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = searchTableViewCell.xib; sourceTree = "<group>"; };
        7B893F431D7043030028A556 /* AttentionCollectionReusableView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AttentionCollectionReusableView.h; sourceTree = "<group>"; };
        7B893F441D7043030028A556 /* AttentionCollectionReusableView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = AttentionCollectionReusableView.m; sourceTree = "<group>"; };
        7B893F451D7043030028A556 /* AttentionCollectionReusableView.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = AttentionCollectionReusableView.xib; sourceTree = "<group>"; };
        7B893F481D7054580028A556 /* commentHeaderView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = commentHeaderView.h; sourceTree = "<group>"; };
        7B893F491D7054580028A556 /* commentHeaderView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = commentHeaderView.m; sourceTree = "<group>"; };
        7B893F4B1D70549F0028A556 /* CommentTableViewCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CommentTableViewCell.h; sourceTree = "<group>"; };
        7B893F4C1D70549F0028A556 /* CommentTableViewCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CommentTableViewCell.m; sourceTree = "<group>"; };
        7B893F4D1D70549F0028A556 /* CommentTableViewCell.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = CommentTableViewCell.xib; sourceTree = "<group>"; };
        7B8AC4E51D5D7FE400450285 /* AVFoundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = AVFoundation.framework; path = System/Library/Frameworks/AVFoundation.framework; sourceTree = SDKROOT; };
        7B8AC4E71D5D7FF400450285 /* AudioToolbox.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = AudioToolbox.framework; path = System/Library/Frameworks/AudioToolbox.framework; sourceTree = SDKROOT; };
        7B8AC4E91D5D7FFC00450285 /* libz.tbd */ = {isa = PBXFileReference; lastKnownFileType = "sourcecode.text-based-dylib-definition"; name = libz.tbd; path = usr/lib/libz.tbd; sourceTree = SDKROOT; };
        7B8AC4EB1D5D800B00450285 /* libsqlite3.0.tbd */ = {isa = PBXFileReference; lastKnownFileType = "sourcecode.text-based-dylib-definition"; name = libsqlite3.0.tbd; path = usr/lib/libsqlite3.0.tbd; sourceTree = SDKROOT; };
        7B8AC4ED1D5D801700450285 /* AdSupport.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = AdSupport.framework; path = System/Library/Frameworks/AdSupport.framework; sourceTree = SDKROOT; };
        7B8AC4EF1D5D802200450285 /* CFNetwork.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CFNetwork.framework; path = System/Library/Frameworks/CFNetwork.framework; sourceTree = SDKROOT; };
        7B8AC4F11D5D803000450285 /* CoreGraphics.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreGraphics.framework; path = System/Library/Frameworks/CoreGraphics.framework; sourceTree = SDKROOT; };
        7B8AC4F31D5D803900450285 /* CoreLocation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreLocation.framework; path = System/Library/Frameworks/CoreLocation.framework; sourceTree = SDKROOT; };
        7B8AC4F51D5D804100450285 /* CoreMedia.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreMedia.framework; path = System/Library/Frameworks/CoreMedia.framework; sourceTree = SDKROOT; };
        7B8AC4F71D5D805000450285 /* CoreTelephony.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreTelephony.framework; path = System/Library/Frameworks/CoreTelephony.framework; sourceTree = SDKROOT; };
        7B8AC4F91D5D805900450285 /* CoreText.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreText.framework; path = System/Library/Frameworks/CoreText.framework; sourceTree = SDKROOT; };
        7B8AC4FB1D5D806A00450285 /* EventKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = EventKit.framework; path = System/Library/Frameworks/EventKit.framework; sourceTree = SDKROOT; };
        7B8AC4FC1D5D806A00450285 /* EventKitUI.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = EventKitUI.framework; path = System/Library/Frameworks/EventKitUI.framework; sourceTree = SDKROOT; };
        7B8AC4FF1D5D807500450285 /* Foundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Foundation.framework; path = System/Library/Frameworks/Foundation.framework; sourceTree = SDKROOT; };
        7B8AC5011D5D807F00450285 /* MapKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = MapKit.framework; path = System/Library/Frameworks/MapKit.framework; sourceTree = SDKROOT; };
        7B8AC5031D5D808A00450285 /* MediaPlayer.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = MediaPlayer.framework; path = System/Library/Frameworks/MediaPlayer.framework; sourceTree = SDKROOT; };
        7B8AC5051D5D809300450285 /* MessageUI.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = MessageUI.framework; path = System/Library/Frameworks/MessageUI.framework; sourceTree = SDKROOT; };
        7B8AC5071D5D809B00450285 /* QuartzCore.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = QuartzCore.framework; path = System/Library/Frameworks/QuartzCore.framework; sourceTree = SDKROOT; };
        7B8AC5091D5D80A500450285 /* Security.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Security.framework; path = System/Library/Frameworks/Security.framework; sourceTree = SDKROOT; };
        7B8AC50B1D5D80AE00450285 /* StoreKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = StoreKit.framework; path = System/Library/Frameworks/StoreKit.framework; sourceTree = SDKROOT; };
        7B8AC50D1D5D80B700450285 /* SystemConfiguration.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = SystemConfiguration.framework; path = System/Library/Frameworks/SystemConfiguration.framework; sourceTree = SDKROOT; };
        7B8AC50F1D5D80BD00450285 /* UIKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = UIKit.framework; path = System/Library/Frameworks/UIKit.framework; sourceTree = SDKROOT; };
        7B8AC5111D5D80F700450285 /* libxml2.tbd */ = {isa = PBXFileReference; lastKnownFileType = "sourcecode.text-based-dylib-definition"; name = libxml2.tbd; path = usr/lib/libxml2.tbd; sourceTree = SDKROOT; };
        7B8AC5131D5D810A00450285 /* Accelerate.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Accelerate.framework; path = System/Library/Frameworks/Accelerate.framework; sourceTree = SDKROOT; };
        7B8AC5151D5D813B00450285 /* AddressBook.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = AddressBook.framework; path = System/Library/Frameworks/AddressBook.framework; sourceTree = SDKROOT; };
        7B8AC5171D5D815600450285 /* AudioUnit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = AudioUnit.framework; path = System/Library/Frameworks/AudioUnit.framework; sourceTree = SDKROOT; };
        7B8AC5191D5D817C00450285 /* CoreAudio.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreAudio.framework; path = System/Library/Frameworks/CoreAudio.framework; sourceTree = SDKROOT; };
        7B8AC51B1D5D81EF00450285 /* CoreBluetooth.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreBluetooth.framework; path = System/Library/Frameworks/CoreBluetooth.framework; sourceTree = SDKROOT; };
        7B8AC51D1D5D820000450285 /* CoreFoundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreFoundation.framework; path = System/Library/Frameworks/CoreFoundation.framework; sourceTree = SDKROOT; };
        7B8AC51F1D5D821100450285 /* CoreImage.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreImage.framework; path = System/Library/Frameworks/CoreImage.framework; sourceTree = SDKROOT; };
        7B8AC5211D5D822F00450285 /* CoreMotion.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreMotion.framework; path = System/Library/Frameworks/CoreMotion.framework; sourceTree = SDKROOT; };
        7B8AC5231D5D824100450285 /* CoreVideo.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreVideo.framework; path = System/Library/Frameworks/CoreVideo.framework; sourceTree = SDKROOT; };
        7B8AC5251D5D825200450285 /* GameKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = GameKit.framework; path = System/Library/Frameworks/GameKit.framework; sourceTree = SDKROOT; };
        7B8AC5271D5D825E00450285 /* iAd.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = iAd.framework; path = System/Library/Frameworks/iAd.framework; sourceTree = SDKROOT; };
        7B8AC5291D5D827500450285 /* ImageIO.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = ImageIO.framework; path = System/Library/Frameworks/ImageIO.framework; sourceTree = SDKROOT; };
        7B8AC52B1D5D828000450285 /* libz.1.2.5.tbd */ = {isa = PBXFileReference; lastKnownFileType = "sourcecode.text-based-dylib-definition"; name = libz.1.2.5.tbd; path = usr/lib/libz.1.2.5.tbd; sourceTree = SDKROOT; };
        7B8AC52D1D5D829D00450285 /* MediaToolbox.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = MediaToolbox.framework; path = System/Library/Frameworks/MediaToolbox.framework; sourceTree = SDKROOT; };
        7B8AC52F1D5D82AA00450285 /* MobileCoreServices.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = MobileCoreServices.framework; path = System/Library/Frameworks/MobileCoreServices.framework; sourceTree = SDKROOT; };
        7B8AC5311D5D82B100450285 /* OpenGLES.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = OpenGLES.framework; path = System/Library/Frameworks/OpenGLES.framework; sourceTree = SDKROOT; };
        7B8AC5351D5D82D500450285 /* Social.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Social.framework; path = System/Library/Frameworks/Social.framework; sourceTree = SDKROOT; };
        7B8ADA371D585D43007A3FFD /* XYRVideoInfoModel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = XYRVideoInfoModel.h; sourceTree = "<group>"; };
        7B8ADA381D585D43007A3FFD /* XYRVideoInfoModel.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = XYRVideoInfoModel.m; sourceTree = "<group>"; };
        7B8ADA441D589448007A3FFD /* XYRVideoDetailModel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = XYRVideoDetailModel.h; sourceTree = "<group>"; };
        7B8ADA451D589448007A3FFD /* XYRVideoDetailModel.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = XYRVideoDetailModel.m; sourceTree = "<group>"; };
        7B9D31C01D5421E000EDED00 /* SubregionViewCollectionViewCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SubregionViewCollectionViewCell.h; sourceTree = "<group>"; };
        7B9D31C11D5421E000EDED00 /* SubregionViewCollectionViewCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SubregionViewCollectionViewCell.m; sourceTree = "<group>"; };
        7B9D31C21D5421E000EDED00 /* SubregionViewCollectionViewCell.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = SubregionViewCollectionViewCell.xib; sourceTree = "<group>"; };
        7B9D31C91D54481000EDED00 /* XYRDetailViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = XYRDetailViewController.h; sourceTree = "<group>"; };
        7B9D31CA1D54481000EDED00 /* XYRDetailViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = XYRDetailViewController.m; sourceTree = "<group>"; };
        7B9D31CB1D54481000EDED00 /* XYRDetailViewController.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = XYRDetailViewController.xib; sourceTree = "<group>"; };
        7BA7E5C51D6BD4CB00D347D0 /* SubregionDetailViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SubregionDetailViewController.h; sourceTree = "<group>"; };
        7BA7E5C61D6BD4CB00D347D0 /* SubregionDetailViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SubregionDetailViewController.m; sourceTree = "<group>"; };
        7BA7E5C71D6BD4CB00D347D0 /* SubregionDetailViewController.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = SubregionDetailViewController.xib; sourceTree = "<group>"; };
        7BB428F71D4B43F400AA2D11 /* LeftViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = LeftViewController.h; sourceTree = "<group>"; };
        7BB428F81D4B43F400AA2D11 /* LeftViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = LeftViewController.m; sourceTree = "<group>"; };
        7BB428F91D4B43F400AA2D11 /* LeftViewController.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = LeftViewController.xib; sourceTree = "<group>"; };
        7BB429001D4B463000AA2D11 /* MainViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MainViewController.h; sourceTree = "<group>"; };
        7BB429011D4B463000AA2D11 /* MainViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MainViewController.m; sourceTree = "<group>"; };
        7BB4290C1D4B5FC900AA2D11 /* UIImage+YTH.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIImage+YTH.h"; sourceTree = "<group>"; };
        7BB4290D1D4B5FC900AA2D11 /* UIImage+YTH.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIImage+YTH.m"; sourceTree = "<group>"; };
        7BB4290E1D4B5FC900AA2D11 /* UIImageView+YTH.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIImageView+YTH.h"; sourceTree = "<group>"; };
        7BB4290F1D4B5FC900AA2D11 /* UIImageView+YTH.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIImageView+YTH.m"; sourceTree = "<group>"; };
        7BB429121D4B5FC900AA2D11 /* NSString+YTH.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSString+YTH.h"; sourceTree = "<group>"; };
        7BB429131D4B5FC900AA2D11 /* NSString+YTH.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSString+YTH.m"; sourceTree = "<group>"; };
        7BBD77801D4AFCD3004D6FE4 /* zh-Hans */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "zh-Hans"; path = "zh-Hans.lproj/Main.strings"; sourceTree = "<group>"; };
        7BBD77811D4AFCD3004D6FE4 /* zh-Hans */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "zh-Hans"; path = "zh-Hans.lproj/LaunchScreen.strings"; sourceTree = "<group>"; };
        7BC24A501D50282200F6D2D9 /* YTHsharedManger.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = YTHsharedManger.h; sourceTree = "<group>"; };
        7BC24A511D50282200F6D2D9 /* YTHsharedManger.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = YTHsharedManger.m; sourceTree = "<group>"; };
        7BC24A531D5074FC00F6D2D9 /* shufflingCollectionReusableView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = shufflingCollectionReusableView.h; sourceTree = "<group>"; };
        7BC24A541D5074FC00F6D2D9 /* shufflingCollectionReusableView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = shufflingCollectionReusableView.m; sourceTree = "<group>"; };
        7BC24A551D5074FC00F6D2D9 /* shufflingCollectionReusableView.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = shufflingCollectionReusableView.xib; sourceTree = "<group>"; };
        7BC24A581D50752B00F6D2D9 /* HeaderCollectionReusableView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = HeaderCollectionReusableView.h; sourceTree = "<group>"; };
        7BC24A591D50752B00F6D2D9 /* HeaderCollectionReusableView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = HeaderCollectionReusableView.m; sourceTree = "<group>"; };
        7BC24A5A1D50752B00F6D2D9 /* HeaderCollectionReusableView.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = HeaderCollectionReusableView.xib; sourceTree = "<group>"; };
        7BC24A5D1D50754600F6D2D9 /* FooterCollectionReusableView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = FooterCollectionReusableView.h; sourceTree = "<group>"; };
        7BC24A5E1D50754600F6D2D9 /* FooterCollectionReusableView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = FooterCollectionReusableView.m; sourceTree = "<group>"; };
        7BC24A5F1D50754600F6D2D9 /* FooterCollectionReusableView.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = FooterCollectionReusableView.xib; sourceTree = "<group>"; };
        7BC600A41D63F1B9005CE8FD /* searchViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = searchViewController.h; sourceTree = "<group>"; };
        7BC600A51D63F1B9005CE8FD /* searchViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = searchViewController.m; sourceTree = "<group>"; };
        7BC600A61D63F1B9005CE8FD /* searchViewController.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = searchViewController.xib; sourceTree = "<group>"; };
        7BC600A91D63F560005CE8FD /* searchDetailViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = searchDetailViewController.h; sourceTree = "<group>"; };
        7BC600AA1D63F560005CE8FD /* searchDetailViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = searchDetailViewController.m; sourceTree = "<group>"; };
        7BC600AB1D63F560005CE8FD /* searchDetailViewController.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = searchDetailViewController.xib; sourceTree = "<group>"; };
        7BCC19C81D5C73AC00FB6123 /* titleCollectionReusableView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = titleCollectionReusableView.h; sourceTree = "<group>"; };
        7BCC19C91D5C73AC00FB6123 /* titleCollectionReusableView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = titleCollectionReusableView.m; sourceTree = "<group>"; };
        7BCC19CA1D5C73AC00FB6123 /* titleCollectionReusableView.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = titleCollectionReusableView.xib; sourceTree = "<group>"; };
        7BCE166E1D640A75004EAD5A /* YTHSearchTextField.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = YTHSearchTextField.h; sourceTree = "<group>"; };
        7BCE166F1D640A75004EAD5A /* YTHSearchTextField.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = YTHSearchTextField.m; sourceTree = "<group>"; };
        7BCE16741D644EB8004EAD5A /* SearchCollectionViewCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SearchCollectionViewCell.h; sourceTree = "<group>"; };
        7BCE16751D644EB8004EAD5A /* SearchCollectionViewCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SearchCollectionViewCell.m; sourceTree = "<group>"; };
        7BCE16761D644EB8004EAD5A /* SearchCollectionViewCell.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = SearchCollectionViewCell.xib; sourceTree = "<group>"; };
        7BF526571D7408A0004B9DBB /* CollectionController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CollectionController.h; sourceTree = "<group>"; };
        7BF526581D7408A0004B9DBB /* CollectionController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CollectionController.m; sourceTree = "<group>"; };
        7BF526601D742C80004B9DBB /* WeiKouHeader.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = WeiKouHeader.h; sourceTree = "<group>"; };
        7BF526611D742C80004B9DBB /* WeiKouNetWorkRequest.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = WeiKouNetWorkRequest.h; sourceTree = "<group>"; };
        7BF526621D742C80004B9DBB /* WeiKouNetWorkRequest.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = WeiKouNetWorkRequest.m; sourceTree = "<group>"; };
        7BF526631D742C80004B9DBB /* WeiKouAdView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = WeiKouAdView.h; sourceTree = "<group>"; };
        7BF526641D742C80004B9DBB /* WeiKouAdView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = WeiKouAdView.m; sourceTree = "<group>"; };
        7BF526651D742C80004B9DBB /* adModel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = adModel.h; sourceTree = "<group>"; };
        7BF526661D742C80004B9DBB /* adModel.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = adModel.m; sourceTree = "<group>"; };
        7BF526671D742C80004B9DBB /* NSString+WeiKouAd.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSString+WeiKouAd.h"; sourceTree = "<group>"; };
        7BF526681D742C80004B9DBB /* NSString+WeiKouAd.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSString+WeiKouAd.m"; sourceTree = "<group>"; };
        7BFBC6441D6703E40058FFEB /* WebControllerView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = WebControllerView.h; sourceTree = "<group>"; };
        7BFBC6451D6703E40058FFEB /* WebControllerView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = WebControllerView.m; sourceTree = "<group>"; };
        7BFBC6481D6704050058FFEB /* LoggingViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = LoggingViewController.h; sourceTree = "<group>"; };
        7BFBC6491D6704050058FFEB /* LoggingViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = LoggingViewController.m; sourceTree = "<group>"; };
        7BFBC64D1D6704710058FFEB /* RegardCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = RegardCell.h; sourceTree = "<group>"; };
        7BFBC64E1D6704710058FFEB /* RegardCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = RegardCell.m; sourceTree = "<group>"; };
        7BFBC64F1D6704710058FFEB /* RegardCell.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = RegardCell.xib; sourceTree = "<group>"; };
        7BFBC6521D6704780058FFEB /* MyRegardController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MyRegardController.h; sourceTree = "<group>"; };
        7BFBC6531D6704780058FFEB /* MyRegardController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MyRegardController.m; sourceTree = "<group>"; };
        7BFBC65B1D6704E20058FFEB /* NoteCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = NoteCell.h; sourceTree = "<group>"; };
        7BFBC65C1D6704E20058FFEB /* NoteCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = NoteCell.m; sourceTree = "<group>"; };
        7BFBC65D1D6704E20058FFEB /* NoteCell.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = NoteCell.xib; sourceTree = "<group>"; };
        7BFBC6601D6704EF0058FFEB /* LookNoteController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = LookNoteController.h; sourceTree = "<group>"; };
        7BFBC6611D6704EF0058FFEB /* LookNoteController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = LookNoteController.m; sourceTree = "<group>"; };
        7BFBC6651D6705280058FFEB /* SystemMessageCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SystemMessageCell.h; sourceTree = "<group>"; };
        7BFBC6661D6705280058FFEB /* SystemMessageCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SystemMessageCell.m; sourceTree = "<group>"; };
        7BFBC6671D6705280058FFEB /* SystemMessageCell.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = SystemMessageCell.xib; sourceTree = "<group>"; };
        7BFBC6681D6705280058FFEB /* ComentCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ComentCell.h; sourceTree = "<group>"; };
        7BFBC6691D6705280058FFEB /* ComentCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ComentCell.m; sourceTree = "<group>"; };
        7BFBC66A1D6705280058FFEB /* ComentCell.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = ComentCell.xib; sourceTree = "<group>"; };
        7BFBC66F1D6705330058FFEB /* MymessageContrlloer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MymessageContrlloer.h; sourceTree = "<group>"; };
        7BFBC6701D6705330058FFEB /* MymessageContrlloer.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MymessageContrlloer.m; sourceTree = "<group>"; };
        7BFBC6731D67054A0058FFEB /* HelpViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = HelpViewController.h; sourceTree = "<group>"; };
        7BFBC6741D67054A0058FFEB /* HelpViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = HelpViewController.m; sourceTree = "<group>"; };
        7BFBC67B1D6705AB0058FFEB /* SettingWebView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SettingWebView.h; sourceTree = "<group>"; };
        7BFBC67C1D6705AB0058FFEB /* SettingWebView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SettingWebView.m; sourceTree = "<group>"; };
        7BFBC6811D6705AB0058FFEB /* SettingController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SettingController.h; sourceTree = "<group>"; };
        7BFBC6821D6705AB0058FFEB /* SettingController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SettingController.m; sourceTree = "<group>"; };
        7BFBC68B1D6705DD0058FFEB /* StorageSpaceTableViewCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = StorageSpaceTableViewCell.h; sourceTree = "<group>"; };
        7BFBC68C1D6705DD0058FFEB /* StorageSpaceTableViewCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = StorageSpaceTableViewCell.m; sourceTree = "<group>"; };
        7BFBC68D1D6705DD0058FFEB /* StorageSpaceTableViewCell.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = StorageSpaceTableViewCell.xib; sourceTree = "<group>"; };
        AD73C5EC1D4DD7E50060437E /* Common.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = Common.h; sourceTree = "<group>"; };
        AD73C5F21D4DE7DD0060437E /* GTMBase64.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = GTMBase64.h; sourceTree = "<group>"; };
        AD73C5F31D4DE7DD0060437E /* GTMBase64.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = GTMBase64.m; sourceTree = "<group>"; };
        AD73C5F41D4DE7DD0060437E /* GTMDefines.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = GTMDefines.h; sourceTree = "<group>"; };
        ADF0EF911D60C36F009310C9 /* WebKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = WebKit.framework; path = System/Library/Frameworks/WebKit.framework; sourceTree = SDKROOT; };
        ADF5E0A21D4E33C1005F8A9E /* LeftTableViewCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = LeftTableViewCell.h; sourceTree = "<group>"; };
        ADF5E0A31D4E33C1005F8A9E /* LeftTableViewCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = LeftTableViewCell.m; sourceTree = "<group>"; };
        ADF5E0A41D4E33C1005F8A9E /* LeftTableViewCell.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = LeftTableViewCell.xib; sourceTree = "<group>"; };
        D45473541DBD9FC700EC002B /* 缓冲.gif */ = {isa = PBXFileReference; lastKnownFileType = image.gif; path = "缓冲.gif"; sourceTree = "<group>"; };
        E04DB6AA7D031EA7A75EA35B /* Pods_BuWanVideo2_0.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_BuWanVideo2_0.framework; sourceTree = BUILT_PRODUCTS_DIR; };
/* End PBXFileReference section */
 
/* Begin PBXFrameworksBuildPhase section */
        7B41E9961D4A04AE00F05CE2 /* Frameworks */ = {
            isa = PBXFrameworksBuildPhase;
            buildActionMask = 2147483647;
            files = (
                184DBB321DDB0BB00034B39B /* libc++abi.tbd in Frameworks */,
                18F5CA971E1C862D001F526F /* libc++.tbd in Frameworks */,
                7B389BE21D61B2F90043A2F2 /* libc++.1.tbd in Frameworks */,
                2D732550212D6B5200E09821 /* WebP.framework in Frameworks */,
                2D73254E212D626B00E09821 /* YYWebImage.framework in Frameworks */,
                2D73254C212D626600E09821 /* YYCache.framework in Frameworks */,
                2D73254A212D626000E09821 /* YYImage.framework in Frameworks */,
                7B8AC4F01D5D802200450285 /* CFNetwork.framework in Frameworks */,
                2D1809FA26CCE6960039C3F6 /* Pods_BuWanVideo2_0.framework in Frameworks */,
                7B8AC5221D5D822F00450285 /* CoreMotion.framework in Frameworks */,
                70C4921526AC1D6600D044F7 /* BUCNAuxiliary.framework in Frameworks */,
                7B8AC50A1D5D80A500450285 /* Security.framework in Frameworks */,
                7B8AC4EA1D5D7FFC00450285 /* libz.tbd in Frameworks */,
                7B8AC4F61D5D804100450285 /* CoreMedia.framework in Frameworks */,
                7B8AC5081D5D809B00450285 /* QuartzCore.framework in Frameworks */,
                7B8AC4EE1D5D801700450285 /* AdSupport.framework in Frameworks */,
                7B8AC50C1D5D80AE00450285 /* StoreKit.framework in Frameworks */,
                7B8AC4E81D5D7FF400450285 /* AudioToolbox.framework in Frameworks */,
                7B8AC5041D5D808A00450285 /* MediaPlayer.framework in Frameworks */,
                7B8AC4E61D5D7FE400450285 /* AVFoundation.framework in Frameworks */,
                7B8AC5061D5D809300450285 /* MessageUI.framework in Frameworks */,
                7B8AC4F41D5D803900450285 /* CoreLocation.framework in Frameworks */,
                7B8AC4F81D5D805000450285 /* CoreTelephony.framework in Frameworks */,
                7B8AC50E1D5D80B700450285 /* SystemConfiguration.framework in Frameworks */,
                7B8AC5101D5D80BD00450285 /* UIKit.framework in Frameworks */,
                7B8AC5001D5D807500450285 /* Foundation.framework in Frameworks */,
                7B8AC4F21D5D803000450285 /* CoreGraphics.framework in Frameworks */,
                ADF0EF921D60C36F009310C9 /* WebKit.framework in Frameworks */,
                18052EA31E208379005997FC /* SafariServices.framework in Frameworks */,
                7B389BEC1D61B3370043A2F2 /* libz.1.tbd in Frameworks */,
                7B389BEA1D61B32C0043A2F2 /* libresolv.9.tbd in Frameworks */,
                7B389BE81D61B31C0043A2F2 /* libiconv.2.tbd in Frameworks */,
                7B389BE61D61B3100043A2F2 /* libxml2.2.tbd in Frameworks */,
                7B389BE41D61B3070043A2F2 /* libbz2.1.0.tbd in Frameworks */,
                7B389BE01D61B2EF0043A2F2 /* libsqlite3.tbd in Frameworks */,
                7B8AC5321D5D82B100450285 /* OpenGLES.framework in Frameworks */,
                7B8AC4FA1D5D805900450285 /* CoreText.framework in Frameworks */,
                70452819250E2C610006C95E /* libGDTMobSDK.a in Frameworks */,
                7B8AC4FD1D5D806A00450285 /* EventKit.framework in Frameworks */,
                7B8AC5361D5D82D500450285 /* Social.framework in Frameworks */,
                7B8AC5301D5D82AA00450285 /* MobileCoreServices.framework in Frameworks */,
                7B389BDE1D61B1EC0043A2F2 /* VideoToolbox.framework in Frameworks */,
                7B389BDC1D61B1D10043A2F2 /* ModelIO.framework in Frameworks */,
                1845BB4B209BF212009C639B /* PassKit.framework in Frameworks */,
                7B8AC52C1D5D828000450285 /* libz.1.2.5.tbd in Frameworks */,
                70C4921426AC1D6600D044F7 /* BUAdSDK.framework in Frameworks */,
                7B1FF0DF1D6711CF00E6C207 /* libiconv.tbd in Frameworks */,
                1877D1791DCAE119000CEC83 /* JavaScriptCore.framework in Frameworks */,
                1877D1771DCAE100000CEC83 /* CoreData.framework in Frameworks */,
                7B1FF0E11D67121700E6C207 /* libstdc++.tbd in Frameworks */,
                7B8AC52A1D5D827500450285 /* ImageIO.framework in Frameworks */,
                7B8AC52E1D5D829D00450285 /* MediaToolbox.framework in Frameworks */,
                7B8AC5281D5D825E00450285 /* iAd.framework in Frameworks */,
                7B8AC5261D5D825200450285 /* GameKit.framework in Frameworks */,
                7B8AC5241D5D824100450285 /* CoreVideo.framework in Frameworks */,
                7B8AC5201D5D821100450285 /* CoreImage.framework in Frameworks */,
                7B8AC51E1D5D820000450285 /* CoreFoundation.framework in Frameworks */,
                7B8AC51C1D5D81EF00450285 /* CoreBluetooth.framework in Frameworks */,
                7B8AC51A1D5D817C00450285 /* CoreAudio.framework in Frameworks */,
                7B8AC5161D5D813B00450285 /* AddressBook.framework in Frameworks */,
                7B8AC5141D5D810A00450285 /* Accelerate.framework in Frameworks */,
                7B8AC5121D5D80F700450285 /* libxml2.tbd in Frameworks */,
                7B8AC5021D5D807F00450285 /* MapKit.framework in Frameworks */,
                70C4921626AC1D6600D044F7 /* BUFoundation.framework in Frameworks */,
                7B8AC4FE1D5D806A00450285 /* EventKitUI.framework in Frameworks */,
                7B8AC4EC1D5D800B00450285 /* libsqlite3.0.tbd in Frameworks */,
            );
            runOnlyForDeploymentPostprocessing = 0;
        };
/* End PBXFrameworksBuildPhase section */
 
/* Begin PBXGroup section */
        183360291DC3335000391627 /* 数据 */ = {
            isa = PBXGroup;
            children = (
                AD73C5EC1D4DD7E50060437E /* Common.h */,
                7B1FF0E21D67166C00E6C207 /* Share(公共) */,
                AD73C5ED1D4DDBAE0060437E /* lib(第三方库) */,
                7BB4290B1D4B5F1600AA2D11 /* Category(扩展类) */,
                7BB429031D4B5DD800AA2D11 /* DataNet(接口文档) */,
            );
            name = "数据";
            sourceTree = "<group>";
        };
        1833602A1DC3336400391627 /* 界面 */ = {
            isa = PBXGroup;
            children = (
                70D5934225EA1F6D00438F1A /* PPTV */,
                18A8D14A1DC32B5B00A03FB7 /* Sideslip(侧边栏) */,
                18A8D14B1DC32CDB00A03FB7 /* Main(主视图) */,
                7BC600A01D63F134005CE8FD /* searchView(搜索) */,
                7BFBC6471D6703F00058FFEB /* Login(登录) */,
                7B9D31C51D54477B00EDED00 /* MovieDetailView(详情页面) */,
                7B1C098F1D6308C9005D8665 /* subregionDetail(分类二级界面) */,
                7B32BD361D4F272500E96E75 /* 发现跳转的视图 */,
            );
            name = "界面";
            sourceTree = "<group>";
        };
        187A74521DF79DDF001E856F /* LXAlertView */ = {
            isa = PBXGroup;
            children = (
                2D1E3DB72134FF4C0021C50A /* BSKImagesPageView.h */,
                2D1E3DB62134FF4B0021C50A /* BSKImagesPageView.m */,
                187A74531DF79DDF001E856F /* LXAlertView.h */,
                187A74541DF79DDF001E856F /* LXAlertView.m */,
                187A74551DF79DDF001E856F /* UILabel+LXAdd.h */,
                187A74561DF79DDF001E856F /* UILabel+LXAdd.m */,
            );
            path = LXAlertView;
            sourceTree = "<group>";
        };
        188175211DC07EF3004A2540 /* cell */ = {
            isa = PBXGroup;
            children = (
                18BC12A41EDEA7AD001E2FB0 /* HotLiveTableViewCell.h */,
                18BC12A51EDEA7AD001E2FB0 /* HotLiveTableViewCell.m */,
                18BC12A61EDEA7AD001E2FB0 /* HotLiveTableViewCell.xib */,
                18BC12B31EDEAB4A001E2FB0 /* HotLiveCollectionViewCell.h */,
                18BC12B41EDEAB4A001E2FB0 /* HotLiveCollectionViewCell.m */,
                18BC12B51EDEAB4A001E2FB0 /* HotLiveCollectionViewCell.xib */,
                18BC12A91EDEA838001E2FB0 /* AllLiveTypeTableViewCell.h */,
                18BC12AA1EDEA838001E2FB0 /* AllLiveTypeTableViewCell.m */,
                18BC12AB1EDEA838001E2FB0 /* AllLiveTypeTableViewCell.xib */,
                18BC12B81EDEAB68001E2FB0 /* AllLiveTypeCollectionViewCell.h */,
                18BC12B91EDEAB68001E2FB0 /* AllLiveTypeCollectionViewCell.m */,
                18BC12BA1EDEAB68001E2FB0 /* AllLiveTypeCollectionViewCell.xib */,
                18BC12AE1EDEA87D001E2FB0 /* LiveListTableViewCell.h */,
                18BC12AF1EDEA87D001E2FB0 /* LiveListTableViewCell.m */,
                18BC12B01EDEA87D001E2FB0 /* LiveListTableViewCell.xib */,
                18BC12BD1EDEAB8D001E2FB0 /* LiveListCollectionViewCell.h */,
                18BC12BE1EDEAB8D001E2FB0 /* LiveListCollectionViewCell.m */,
                18BC12BF1EDEAB8D001E2FB0 /* LiveListCollectionViewCell.xib */,
            );
            name = cell;
            sourceTree = "<group>";
        };
        188322341F74AFFD00CCD0B4 /* HXEasyCustomShare */ = {
            isa = PBXGroup;
            children = (
                188322351F74AFFD00CCD0B4 /* HXEasyCustomShareView.h */,
                188322361F74AFFD00CCD0B4 /* HXEasyCustomShareView.m */,
                188322371F74AFFD00CCD0B4 /* HXShareScrollView.h */,
                188322381F74AFFD00CCD0B4 /* HXShareScrollView.m */,
            );
            path = HXEasyCustomShare;
            sourceTree = "<group>";
        };
        1884A5FB1E545D4900548480 /* PopoverView */ = {
            isa = PBXGroup;
            children = (
                1884A5FC1E545D4900548480 /* PopoverAction.h */,
                1884A5FD1E545D4900548480 /* PopoverAction.m */,
                1884A5FE1E545D4900548480 /* PopoverViewCell.h */,
                1884A5FF1E545D4900548480 /* PopoverViewCell.m */,
                1884A6001E545D4900548480 /* PopoverViews.h */,
                1884A6011E545D4900548480 /* PopoverViews.m */,
            );
            path = PopoverView;
            sourceTree = "<group>";
        };
        1884A6051E54630300548480 /* LGLAlertView */ = {
            isa = PBXGroup;
            children = (
                1884A6061E54630300548480 /* LGLAlertView.h */,
                1884A6071E54630300548480 /* LGLAlertView.m */,
            );
            path = LGLAlertView;
            sourceTree = "<group>";
        };
        1896FB811F7360D300720355 /* GDT_iOS_SDK */ = {
            isa = PBXGroup;
            children = (
                7045280B250E2C5D0006C95E /* GDTAdParams.h */,
                70452804250E2C5C0006C95E /* GDTAdTestSetting.h */,
                70452813250E2C600006C95E /* GDTBaseAdNetworkAdapterProtocol.h */,
                70452806250E2C5D0006C95E /* GDTHybridAd.h */,
                7045280A250E2C5D0006C95E /* GDTLoadAdParams.h */,
                70452810250E2C600006C95E /* GDTLogoView.h */,
                70452803250E2C5C0006C95E /* GDTMediaView.h */,
                70452811250E2C600006C95E /* GDTNativeExpressAd.h */,
                70452805250E2C5D0006C95E /* GDTNativeExpressAdView.h */,
                7045280F250E2C600006C95E /* GDTNativeExpressProAdManager.h */,
                70452808250E2C5D0006C95E /* GDTNativeExpressProAdView.h */,
                70452807250E2C5D0006C95E /* GDTRewardVideoAd.h */,
                70452816250E2C600006C95E /* GDTRewardVideoAdNetworkAdapterProtocol.h */,
                70452802250E2C5C0006C95E /* GDTRewardVideoAdNetworkConnectorProtocol.h */,
                70452812250E2C600006C95E /* GDTSDKConfig.h */,
                70452801250E2C5C0006C95E /* GDTSDKDefines.h */,
                7045280D250E2C5E0006C95E /* GDTSplashAd.h */,
                70452814250E2C600006C95E /* GDTUnifiedBannerView.h */,
                70452815250E2C600006C95E /* GDTUnifiedInterstitialAd.h */,
                70452817250E2C600006C95E /* GDTUnifiedNativeAd.h */,
                7045280C250E2C5D0006C95E /* GDTUnifiedNativeAdDataObject.h */,
                70452818250E2C610006C95E /* GDTUnifiedNativeAdView.h */,
                70452809250E2C5D0006C95E /* GDTVideoConfig.h */,
                7045280E250E2C5F0006C95E /* libGDTMobSDK.a */,
            );
            path = GDT_iOS_SDK;
            sourceTree = "<group>";
        };
        18A8D14A1DC32B5B00A03FB7 /* Sideslip(侧边栏) */ = {
            isa = PBXGroup;
            children = (
                7BB428F71D4B43F400AA2D11 /* LeftViewController.h */,
                7BB428F81D4B43F400AA2D11 /* LeftViewController.m */,
                7BB428F91D4B43F400AA2D11 /* LeftViewController.xib */,
                ADF5E0A21D4E33C1005F8A9E /* LeftTableViewCell.h */,
                ADF5E0A31D4E33C1005F8A9E /* LeftTableViewCell.m */,
                ADF5E0A41D4E33C1005F8A9E /* LeftTableViewCell.xib */,
                18B6BE631DADCBB000DA4F63 /* Personal_information(个人信息) */,
                7BFBC6551D67048C0058FFEB /* MyCollection(我的收藏) */,
                7BFBC6591D6704B50058FFEB /* LookNote(观看记录) */,
                7BFBC64B1D6704140058FFEB /* Regard(我的关注) */,
                7BFBC6631D6705030058FFEB /* MyMessag(我的消息) */,
                7BFBC6721D67053F0058FFEB /* Help(帮助与反馈) */,
                18F5CAA71E1CFE46001F526F /* Publish_goods(发布商品) */,
                7BFBC67A1D6705750058FFEB /* Setting(设置) */,
            );
            name = "Sideslip(侧边栏)";
            sourceTree = "<group>";
        };
        18A8D14B1DC32CDB00A03FB7 /* Main(主视图) */ = {
            isa = PBXGroup;
            children = (
                18E943F0205774D50019FD04 /* BaseViewController.h */,
                18E943F1205774D50019FD04 /* BaseViewController.m */,
                7BB429001D4B463000AA2D11 /* MainViewController.h */,
                7BB429011D4B463000AA2D11 /* MainViewController.m */,
                7B8ADA371D585D43007A3FFD /* XYRVideoInfoModel.h */,
                7B8ADA381D585D43007A3FFD /* XYRVideoInfoModel.m */,
                182F49612092D0E200FEAAF7 /* UINavigationBar+SJNav.h */,
                182F49622092D0E200FEAAF7 /* UINavigationBar+SJNav.m */,
                182F49642092DF1200FEAAF7 /* SJTabbarViewController.h */,
                182F49652092DF1200FEAAF7 /* SJTabbarViewController.m */,
                2DEC6E5A22017DC5009B06D4 /* UITabBar+mainTab.h */,
                2DEC6E5B22017DC5009B06D4 /* UITabBar+mainTab.m */,
                18A8D14C1DC32CFD00A03FB7 /* 推荐 */,
                2DECF92A22325126002FF49F /* 猜你喜欢 */,
                18A8D14D1DC32D1400A03FB7 /* 直播 */,
                18A8D14E1DC32D1E00A03FB7 /* 分区 */,
                18A8D14F1DC32D2800A03FB7 /* 发现 */,
                18A8D1501DC32D3400A03FB7 /* 关注 */,
            );
            name = "Main(主视图)";
            sourceTree = "<group>";
        };
        18A8D14C1DC32CFD00A03FB7 /* 推荐 */ = {
            isa = PBXGroup;
            children = (
                704C148D265A93E2009DAB98 /* Recommend */,
                18E943E42057656C0019FD04 /* recommendViewController.h */,
                18E943E52057656C0019FD04 /* recommendViewController.m */,
                7B32BD2D1D4F259300E96E75 /* recommendView.h */,
                7B32BD2E1D4F259300E96E75 /* recommendView.m */,
                7B0A1E1F1D4B1437000518FA /* cell */,
            );
            name = "推荐";
            sourceTree = "<group>";
        };
        18A8D14D1DC32D1400A03FB7 /* 直播 */ = {
            isa = PBXGroup;
            children = (
                1881751E1DC05C51004A2540 /* liveOnLineView.h */,
                1881751F1DC05C51004A2540 /* liveOnLineView.m */,
                18FB20DB1EE7E5330008AFD9 /* liveTopicViewController.h */,
                18FB20DC1EE7E5330008AFD9 /* liveTopicViewController.m */,
                18FB20DD1EE7E5330008AFD9 /* liveTopicViewController.xib */,
                188175211DC07EF3004A2540 /* cell */,
            );
            name = "直播";
            sourceTree = "<group>";
        };
        18A8D14E1DC32D1E00A03FB7 /* 分区 */ = {
            isa = PBXGroup;
            children = (
                18E943E7205766510019FD04 /* subregionViewController.h */,
                18E943E8205766510019FD04 /* subregionViewController.m */,
                7B32BD301D4F26F500E96E75 /* subregionView.h */,
                7B32BD311D4F26F500E96E75 /* subregionView.m */,
                7B0A1E201D4B1449000518FA /* cell */,
            );
            name = "分区";
            sourceTree = "<group>";
        };
        18A8D14F1DC32D2800A03FB7 /* 发现 */ = {
            isa = PBXGroup;
            children = (
                18E943ED205767120019FD04 /* discoverViewController.h */,
                18E943EE205767120019FD04 /* discoverViewController.m */,
                7B1FF0931D6708FD00E6C207 /* discoverView.h */,
                7B1FF0941D6708FD00E6C207 /* discoverView.m */,
                2DBB90CC22320D2900E70439 /* DisCoverADView.h */,
                2DBB90CD22320D2900E70439 /* DisCoverADView.m */,
                2DBB90CF22320D3D00E70439 /* DisCoverADView.xib */,
                18F5CA9D1E1C8E79001F526F /* discoverGoodsDetailViewController.h */,
                18F5CA9E1E1C8E79001F526F /* discoverGoodsDetailViewController.m */,
                18F5CA9F1E1C8E79001F526F /* discoverGoodsDetailViewController.xib */,
                18F5CAA21E1CD25E001F526F /* allCommentsViewController.h */,
                18F5CAA31E1CD25E001F526F /* allCommentsViewController.m */,
                18F5CAA41E1CD25E001F526F /* allCommentsViewController.xib */,
                18C5F6371E1B8AFD00537707 /* detailCell */,
                7B1FF0961D67091300E6C207 /* cell */,
            );
            name = "发现";
            sourceTree = "<group>";
        };
        18A8D1501DC32D3400A03FB7 /* 关注 */ = {
            isa = PBXGroup;
            children = (
                18E943EA2057667D0019FD04 /* MineViewController.h */,
                18E943EB2057667D0019FD04 /* MineViewController.m */,
                7B1FF0DB1D670B8800E6C207 /* attentionView.h */,
                7B1FF0DC1D670B8800E6C207 /* attentionView.m */,
                7B1FF0D51D670B7100E6C207 /* cell */,
            );
            name = "关注";
            sourceTree = "<group>";
        };
        18B1C2391DB5B26B00AB709B /* HMSegmentedControl */ = {
            isa = PBXGroup;
            children = (
                18B1C23A1DB5B26B00AB709B /* HMSegmentedControl */,
                18B1C23D1DB5B26B00AB709B /* LICENSE.md */,
                18B1C23E1DB5B26B00AB709B /* README.md */,
            );
            path = HMSegmentedControl;
            sourceTree = "<group>";
        };
        18B1C23A1DB5B26B00AB709B /* HMSegmentedControl */ = {
            isa = PBXGroup;
            children = (
                18B1C23B1DB5B26B00AB709B /* HMSegmentedControl.h */,
                18B1C23C1DB5B26B00AB709B /* HMSegmentedControl.m */,
            );
            path = HMSegmentedControl;
            sourceTree = "<group>";
        };
        18B1C2541DB5B26B00AB709B /* SlideMenuControllerOC */ = {
            isa = PBXGroup;
            children = (
                18B1C2551DB5B26B00AB709B /* LICENSE */,
                18B1C2561DB5B26B00AB709B /* README.md */,
                18B1C2571DB5B26B00AB709B /* Source */,
            );
            path = SlideMenuControllerOC;
            sourceTree = "<group>";
        };
        18B1C2571DB5B26B00AB709B /* Source */ = {
            isa = PBXGroup;
            children = (
                18B1C2581DB5B26B00AB709B /* SlideMenuController.h */,
                18B1C2591DB5B26B00AB709B /* SlideMenuController.m */,
            );
            path = Source;
            sourceTree = "<group>";
        };
        18B6BE631DADCBB000DA4F63 /* Personal_information(个人信息) */ = {
            isa = PBXGroup;
            children = (
                18B6BE5E1DADC64A00DA4F63 /* Personal_informationViewController.h */,
                18B6BE5F1DADC64A00DA4F63 /* Personal_informationViewController.m */,
                18B6BE601DADC64A00DA4F63 /* Personal_informationViewController.xib */,
                18B6BE641DADCBB900DA4F63 /* Personal_informationCell */,
            );
            name = "Personal_information(个人信息)";
            sourceTree = "<group>";
        };
        18B6BE641DADCBB900DA4F63 /* Personal_informationCell */ = {
            isa = PBXGroup;
            children = (
                18B6BE651DADDB2C00DA4F63 /* IconTableViewCell.h */,
                18B6BE661DADDB2C00DA4F63 /* IconTableViewCell.m */,
                18B6BE671DADDB2C00DA4F63 /* IconTableViewCell.xib */,
                18B6BE6A1DADDB4700DA4F63 /* InfoTableViewCell.h */,
                18B6BE6B1DADDB4700DA4F63 /* InfoTableViewCell.m */,
                18B6BE6C1DADDB4700DA4F63 /* InfoTableViewCell.xib */,
                18B6BE6F1DADDB6E00DA4F63 /* signatureTableViewCell.h */,
                18B6BE701DADDB6E00DA4F63 /* signatureTableViewCell.m */,
                18B6BE711DADDB6E00DA4F63 /* signatureTableViewCell.xib */,
            );
            name = Personal_informationCell;
            sourceTree = "<group>";
        };
        18C5F6371E1B8AFD00537707 /* detailCell */ = {
            isa = PBXGroup;
            children = (
                18C5F63B1E1B8B0A00537707 /* findTitleTableViewCell.h */,
                18C5F63C1E1B8B0A00537707 /* findTitleTableViewCell.m */,
                18C5F63D1E1B8B0A00537707 /* findTitleTableViewCell.xib */,
                18F5CA981E1C8895001F526F /* findcommentTableViewCell.h */,
                18F5CA991E1C8895001F526F /* findcommentTableViewCell.m */,
                18F5CA9A1E1C8895001F526F /* findcommentTableViewCell.xib */,
            );
            path = detailCell;
            sourceTree = "<group>";
        };
        18F2541B1DF008AA00826AD0 /* 福利社(专用) */ = {
            isa = PBXGroup;
            children = (
                18F2541C1DF0090900826AD0 /* FuLiSheViewController.h */,
                18F2541D1DF0090900826AD0 /* FuLiSheViewController.m */,
                18F2541E1DF0090900826AD0 /* FuLiSheViewController.xib */,
            );
            name = "福利社(专用)";
            sourceTree = "<group>";
        };
        18F5CAA71E1CFE46001F526F /* Publish_goods(发布商品) */ = {
            isa = PBXGroup;
            children = (
                18F5CAA81E1CFE8C001F526F /* PublishGoodsViewController.h */,
                18F5CAA91E1CFE8C001F526F /* PublishGoodsViewController.m */,
                18F5CAAA1E1CFE8C001F526F /* PublishGoodsViewController.xib */,
                184D34861E1F3728007B0131 /* ConfirmTheGoodsViewController.h */,
                184D34871E1F3728007B0131 /* ConfirmTheGoodsViewController.m */,
                184D34881E1F3728007B0131 /* ConfirmTheGoodsViewController.xib */,
                181D3A071E1DFD5300CDBDE9 /* XYRUITextField.h */,
                181D3A081E1DFD5300CDBDE9 /* XYRUITextField.m */,
            );
            name = "Publish_goods(发布商品)";
            sourceTree = "<group>";
        };
        18FA689A20916CE300DDF6A6 /* 启动图 */ = {
            isa = PBXGroup;
            children = (
                182F49672092FF1D00FEAAF7 /* 1125x2436.png */,
                18FA689B20916CE300DDF6A6 /* 1125.png */,
                18FA689C20916CE300DDF6A6 /* 320.png */,
                18FA689D20916CE300DDF6A6 /* 320x480.png */,
                18FA689E20916CE300DDF6A6 /* 320x568.png */,
                18FA689F20916CE300DDF6A6 /* 375.png */,
                18FA68A020916CE300DDF6A6 /* 375x667.png */,
                18FA68A120916CE300DDF6A6 /* 414.png */,
                18FA68A220916CE300DDF6A6 /* 414x736.png */,
                18FA68A320916CE300DDF6A6 /* 621x1104.png */,
                18FA68A420916CE300DDF6A6 /* 640x1136.png */,
            );
            path = "启动图";
            sourceTree = "<group>";
        };
        2DECF92A22325126002FF49F /* 猜你喜欢 */ = {
            isa = PBXGroup;
            children = (
                2DECF92B22325172002FF49F /* GuessLikeViewController.h */,
                2DECF92C22325172002FF49F /* GuessLikeViewController.m */,
                2DECF92E22325854002FF49F /* GuessLTableViewCell.h */,
                2DECF92F22325854002FF49F /* GuessLTableViewCell.m */,
                2DECF93022325854002FF49F /* GuessLTableViewCell.xib */,
            );
            path = "猜你喜欢";
            sourceTree = "<group>";
        };
        7029049D2686FA0000F93618 /* SearchDelegate */ = {
            isa = PBXGroup;
            children = (
                7029049E2686FA4100F93618 /* SearchDelegate.h */,
            );
            name = SearchDelegate;
            sourceTree = "<group>";
        };
        702904AD2687016200F93618 /* InfoPlist */ = {
            isa = PBXGroup;
            children = (
                702904AE2687016200F93618 /* ObtainProperty.h */,
                702904B02687016200F93618 /* FileOperator.h */,
                702904B12687016200F93618 /* PlistFileOperator.m */,
                702904B22687016200F93618 /* ObtainProperty.m */,
                702904B52687016200F93618 /* PlistFileOperator.h */,
                702904B62687016200F93618 /* FileOperator.m */,
            );
            path = InfoPlist;
            sourceTree = "<group>";
        };
        7034AC8A26639BC80056133F /* ListControlelr */ = {
            isa = PBXGroup;
            children = (
                704C14C9265B76D2009DAB98 /* ListController.h */,
                704C14CA265B76D2009DAB98 /* ListController.m */,
            );
            path = ListControlelr;
            sourceTree = "<group>";
        };
        7034AC8B2663A0200056133F /* SearchNew */ = {
            isa = PBXGroup;
            children = (
                7029049D2686FA0000F93618 /* SearchDelegate */,
                7034AC932663BBCA0056133F /* Cell */,
                7034AC8F2663A4060056133F /* View */,
                7034AC8C2663A03D0056133F /* SearchController.h */,
                7034AC8D2663A03D0056133F /* SearchController.m */,
            );
            name = SearchNew;
            sourceTree = "<group>";
        };
        7034AC8F2663A4060056133F /* View */ = {
            isa = PBXGroup;
            children = (
                7034AC902663A41C0056133F /* SearchNavView.h */,
                7034AC912663A41C0056133F /* SearchNavView.m */,
            );
            name = View;
            sourceTree = "<group>";
        };
        7034AC932663BBCA0056133F /* Cell */ = {
            isa = PBXGroup;
            children = (
                702904BB2687292400F93618 /* SearchCell.h */,
                702904BC2687292400F93618 /* SearchCell.m */,
                7034AC942663BC400056133F /* SearchHotCell.h */,
                7034AC952663BC400056133F /* SearchHotCell.m */,
                7034AC972663BCF00056133F /* SearchRecordCell.h */,
                7034AC982663BCF00056133F /* SearchRecordCell.m */,
                7034AC9A2663BD650056133F /* SearchHotSearchCell.h */,
                7034AC9B2663BD650056133F /* SearchHotSearchCell.m */,
                7034AC9D2663BDFE0056133F /* SearchRecordHeaderView.h */,
                7034AC9E2663BDFE0056133F /* SearchRecordHeaderView.m */,
                2DC9303726C3B65400B5C669 /* SearchADCell.h */,
                2DC9303B26C3B6C700B5C669 /* SearchADCell.m */,
            );
            name = Cell;
            sourceTree = "<group>";
        };
        7042C94A2515A4FE0017F5D8 /* CSJ */ = {
            isa = PBXGroup;
            children = (
                70C4921326AC1D6600D044F7 /* BUAdSDK.bundle */,
                70C4921026AC1D6200D044F7 /* BUAdSDK.framework */,
                70C4921126AC1D6400D044F7 /* BUCNAuxiliary.framework */,
                70C4921226AC1D6600D044F7 /* BUFoundation.framework */,
            );
            path = CSJ;
            sourceTree = "<group>";
        };
        704C148D265A93E2009DAB98 /* Recommend */ = {
            isa = PBXGroup;
            children = (
                70ED36B4266233CE00E51E79 /* lib */,
                704C149E265A9888009DAB98 /* View */,
                704C1487265A936B009DAB98 /* BaseController.h */,
                704C1488265A936B009DAB98 /* BaseController.m */,
                704C14CC265B8E38009DAB98 /* MainBaseController.h */,
                704C14CD265B8E38009DAB98 /* MainBaseController.m */,
                704C148A265A9393009DAB98 /* RecommendMainController.h */,
                704C148B265A9393009DAB98 /* RecommendMainController.m */,
                70ED36BE2662381200E51E79 /* Recommend */,
                7034AC8A26639BC80056133F /* ListControlelr */,
            );
            path = Recommend;
            sourceTree = "<group>";
        };
        704C149E265A9888009DAB98 /* View */ = {
            isa = PBXGroup;
            children = (
                704C149F265A98A1009DAB98 /* RecommendNavView.h */,
                704C14A0265A98A1009DAB98 /* RecommendNavView.m */,
            );
            path = View;
            sourceTree = "<group>";
        };
        704C14A6265B72A5009DAB98 /* ZJScrollPageView */ = {
            isa = PBXGroup;
            children = (
                704C14B7265B72A5009DAB98 /* ZJTitleView.h */,
                704C14AD265B72A5009DAB98 /* ZJTitleView.m */,
                704C14A7265B72A5009DAB98 /* ZJContentView.h */,
                704C14B1265B72A5009DAB98 /* ZJContentView.m */,
                704C14AC265B72A5009DAB98 /* ZJSegmentStyle.h */,
                704C14B3265B72A5009DAB98 /* ZJSegmentStyle.m */,
                704C14B0265B72A5009DAB98 /* UIView+ZJFrame.h */,
                704C14A8265B72A5009DAB98 /* UIView+ZJFrame.m */,
                704C14A9265B72A5009DAB98 /* ZJCollectionView.h */,
                704C14B2265B72A5009DAB98 /* ZJCollectionView.m */,
                704C14AF265B72A5009DAB98 /* ZJScrollPageView.h */,
                704C14B5265B72A5009DAB98 /* ZJScrollPageView.m */,
                704C14B6265B72A5009DAB98 /* UIViewController+ZJScrollPageController.h */,
                704C14AE265B72A5009DAB98 /* UIViewController+ZJScrollPageController.m */,
                704C14AA265B72A5009DAB98 /* ZJScrollSegmentView.h */,
                704C14B4265B72A5009DAB98 /* ZJScrollSegmentView.m */,
                704C14AB265B72A5009DAB98 /* ZJScrollPageViewDelegate.h */,
            );
            path = ZJScrollPageView;
            sourceTree = "<group>";
        };
        7054B444266B8611002B6504 /* Delegate */ = {
            isa = PBXGroup;
            children = (
                7054B445266B8625002B6504 /* RecommendDelegate.h */,
            );
            path = Delegate;
            sourceTree = "<group>";
        };
        705951F12516112D008E0CDF /* View */ = {
            isa = PBXGroup;
            children = (
                705951F225161153008E0CDF /* SearchTitleView.h */,
                705951F325161153008E0CDF /* SearchTitleView.m */,
                705951F5251633E9008E0CDF /* SearchDetailListCell.h */,
                705951F6251633E9008E0CDF /* SearchDetailListCell.m */,
            );
            name = View;
            sourceTree = "<group>";
        };
        705F1F36251F1CA70065350E /* MJRefresh */ = {
            isa = PBXGroup;
            children = (
                705F1F37251F1CA70065350E /* UIScrollView+MJRefresh.m */,
                705F1F38251F1CA70065350E /* MJRefreshConst.m */,
                705F1F39251F1CA70065350E /* MJRefreshConfig.m */,
                705F1F3A251F1CA70065350E /* UIScrollView+MJExtension.h */,
                705F1F3B251F1CA70065350E /* MJRefresh.h */,
                705F1F3C251F1CA70065350E /* NSBundle+MJRefresh.h */,
                705F1F3D251F1CA70065350E /* MJRefresh.bundle */,
                705F1F3E251F1CA70065350E /* UIView+MJExtension.h */,
                705F1F3F251F1CA70065350E /* UIScrollView+MJExtension.m */,
                705F1F40251F1CA70065350E /* MJRefreshConfig.h */,
                705F1F41251F1CA70065350E /* MJRefreshConst.h */,
                705F1F42251F1CA70065350E /* UIScrollView+MJRefresh.h */,
                705F1F43251F1CA70065350E /* NSBundle+MJRefresh.m */,
                705F1F44251F1CA70065350E /* UIView+MJExtension.m */,
                705F1F45251F1CA70065350E /* Custom */,
                705F1F61251F1CA70065350E /* Base */,
            );
            path = MJRefresh;
            sourceTree = "<group>";
        };
        705F1F45251F1CA70065350E /* Custom */ = {
            isa = PBXGroup;
            children = (
                705F1F46251F1CA70065350E /* Footer */,
                705F1F55251F1CA70065350E /* Trailer */,
                705F1F5A251F1CA70065350E /* Header */,
            );
            path = Custom;
            sourceTree = "<group>";
        };
        705F1F46251F1CA70065350E /* Footer */ = {
            isa = PBXGroup;
            children = (
                705F1F47251F1CA70065350E /* Back */,
                705F1F4E251F1CA70065350E /* Auto */,
            );
            path = Footer;
            sourceTree = "<group>";
        };
        705F1F47251F1CA70065350E /* Back */ = {
            isa = PBXGroup;
            children = (
                705F1F48251F1CA70065350E /* MJRefreshBackGifFooter.h */,
                705F1F49251F1CA70065350E /* MJRefreshBackStateFooter.h */,
                705F1F4A251F1CA70065350E /* MJRefreshBackNormalFooter.h */,
                705F1F4B251F1CA70065350E /* MJRefreshBackGifFooter.m */,
                705F1F4C251F1CA70065350E /* MJRefreshBackStateFooter.m */,
                705F1F4D251F1CA70065350E /* MJRefreshBackNormalFooter.m */,
            );
            path = Back;
            sourceTree = "<group>";
        };
        705F1F4E251F1CA70065350E /* Auto */ = {
            isa = PBXGroup;
            children = (
                705F1F4F251F1CA70065350E /* MJRefreshAutoStateFooter.h */,
                705F1F50251F1CA70065350E /* MJRefreshAutoNormalFooter.h */,
                705F1F51251F1CA70065350E /* MJRefreshAutoGifFooter.h */,
                705F1F52251F1CA70065350E /* MJRefreshAutoStateFooter.m */,
                705F1F53251F1CA70065350E /* MJRefreshAutoGifFooter.m */,
                705F1F54251F1CA70065350E /* MJRefreshAutoNormalFooter.m */,
            );
            path = Auto;
            sourceTree = "<group>";
        };
        705F1F55251F1CA70065350E /* Trailer */ = {
            isa = PBXGroup;
            children = (
                705F1F56251F1CA70065350E /* MJRefreshNormalTrailer.h */,
                705F1F57251F1CA70065350E /* MJRefreshStateTrailer.m */,
                705F1F58251F1CA70065350E /* MJRefreshNormalTrailer.m */,
                705F1F59251F1CA70065350E /* MJRefreshStateTrailer.h */,
            );
            path = Trailer;
            sourceTree = "<group>";
        };
        705F1F5A251F1CA70065350E /* Header */ = {
            isa = PBXGroup;
            children = (
                705F1F5B251F1CA70065350E /* MJRefreshNormalHeader.m */,
                705F1F5C251F1CA70065350E /* MJRefreshStateHeader.h */,
                705F1F5D251F1CA70065350E /* MJRefreshGifHeader.h */,
                705F1F5E251F1CA70065350E /* MJRefreshNormalHeader.h */,
                705F1F5F251F1CA70065350E /* MJRefreshStateHeader.m */,
                705F1F60251F1CA70065350E /* MJRefreshGifHeader.m */,
            );
            path = Header;
            sourceTree = "<group>";
        };
        705F1F61251F1CA70065350E /* Base */ = {
            isa = PBXGroup;
            children = (
                705F1F62251F1CA70065350E /* MJRefreshFooter.m */,
                705F1F63251F1CA70065350E /* MJRefreshComponent.h */,
                705F1F64251F1CA70065350E /* MJRefreshHeader.m */,
                705F1F65251F1CA70065350E /* MJRefreshAutoFooter.h */,
                705F1F66251F1CA70065350E /* MJRefreshTrailer.h */,
                705F1F67251F1CA70065350E /* MJRefreshBackFooter.m */,
                705F1F68251F1CA70065350E /* MJRefreshAutoFooter.m */,
                705F1F69251F1CA70065350E /* MJRefreshHeader.h */,
                705F1F6A251F1CA70065350E /* MJRefreshComponent.m */,
                705F1F6B251F1CA70065350E /* MJRefreshFooter.h */,
                705F1F6C251F1CA70065350E /* MJRefreshBackFooter.h */,
                705F1F6D251F1CA70065350E /* MJRefreshTrailer.m */,
            );
            path = Base;
            sourceTree = "<group>";
        };
        706CECBD264F76A1001FBEB7 /* View */ = {
            isa = PBXGroup;
            children = (
                706CECC6264F97C7001FBEB7 /* Cell */,
                706CECBE264F76C1001FBEB7 /* PPTVNavView.h */,
                706CECBF264F76C1001FBEB7 /* PPTVNavView.m */,
                7030BAA426A404AB003050E0 /* NormolNavView.h */,
                7030BAA526A404AB003050E0 /* NormolNavView.m */,
                706CECC3264F94CC001FBEB7 /* PPTVPppView.h */,
                706CECC4264F94CC001FBEB7 /* PPTVPppView.m */,
                706CECDC264FC2A7001FBEB7 /* PPTVBottomVIpVIew.h */,
                706CECDD264FC2A7001FBEB7 /* PPTVBottomVIpVIew.m */,
            );
            name = View;
            sourceTree = "<group>";
        };
        706CECC1264F7C16001FBEB7 /* Delegate */ = {
            isa = PBXGroup;
            children = (
                706CECC2264F7C31001FBEB7 /* PPTVDelegate.h */,
            );
            name = Delegate;
            sourceTree = "<group>";
        };
        706CECC6264F97C7001FBEB7 /* Cell */ = {
            isa = PBXGroup;
            children = (
                706CECC7264F97EB001FBEB7 /* PPTVPopCell.h */,
                706CECC8264F97EB001FBEB7 /* PPTVPopCell.m */,
            );
            name = Cell;
            sourceTree = "<group>";
        };
        706CECCA264FB895001FBEB7 /* dsbridge */ = {
            isa = PBXGroup;
            children = (
                706CECCB264FB895001FBEB7 /* dsbridge.h */,
                706CECCC264FB895001FBEB7 /* InternalApis.h */,
                706CECCD264FB895001FBEB7 /* DSCallInfo.m */,
                706CECCE264FB895001FBEB7 /* JSBUtil.h */,
                706CECCF264FB895001FBEB7 /* DWKWebView.h */,
                706CECD0264FB895001FBEB7 /* DSCallInfo.h */,
                706CECD1264FB895001FBEB7 /* InternalApis.m */,
                706CECD2264FB895001FBEB7 /* JSBUtil.m */,
                706CECD3264FB895001FBEB7 /* DWKWebView.m */,
            );
            path = dsbridge;
            sourceTree = "<group>";
        };
        706CECD8264FB8BA001FBEB7 /* Model */ = {
            isa = PBXGroup;
            children = (
                703B2A74269062F2001137D1 /* js.txt */,
                706CECD9264FB8CB001FBEB7 /* JSAPI.h */,
                706CECDA264FB8CB001FBEB7 /* JSAPI.m */,
            );
            name = Model;
            sourceTree = "<group>";
        };
        70D5934225EA1F6D00438F1A /* PPTV */ = {
            isa = PBXGroup;
            children = (
                706CECD8264FB8BA001FBEB7 /* Model */,
                706CECC1264F7C16001FBEB7 /* Delegate */,
                706CECBD264F76A1001FBEB7 /* View */,
                70D5934325EA1FAE00438F1A /* PPTVController.h */,
                70D5934425EA1FAE00438F1A /* PPTVController.m */,
                7030BAA126A40201003050E0 /* BuyVipController.h */,
                7030BAA226A40201003050E0 /* BuyVipController.m */,
            );
            name = PPTV;
            sourceTree = "<group>";
        };
        70ED36B4266233CE00E51E79 /* lib */ = {
            isa = PBXGroup;
            children = (
                70ED36E6266280EA00E51E79 /* SDCycleScrollView */,
                70ED36CD26624BAE00E51E79 /* UICollectionViewLeftAlignedLayout */,
                70ED36B5266233EC00E51E79 /* OC_CWCarousel */,
            );
            path = lib;
            sourceTree = "<group>";
        };
        70ED36B5266233EC00E51E79 /* OC_CWCarousel */ = {
            isa = PBXGroup;
            children = (
                70ED36B9266233EC00E51E79 /* CWCarouselProtocol.h */,
                70ED36B7266233EC00E51E79 /* CWCarouselHeader.h */,
                70ED36BB266233EC00E51E79 /* CWFlowLayout.h */,
                70ED36B8266233EC00E51E79 /* CWFlowLayout.m */,
                70ED36BA266233EC00E51E79 /* CWCarousel.h */,
                70ED36B6266233EC00E51E79 /* CWCarousel.m */,
            );
            path = OC_CWCarousel;
            sourceTree = "<group>";
        };
        70ED36BE2662381200E51E79 /* Recommend */ = {
            isa = PBXGroup;
            children = (
                7054B444266B8611002B6504 /* Delegate */,
                70ED36BF2662382F00E51E79 /* Cell */,
                704C14C0265B7623009DAB98 /* RecommendController.h */,
                704C14C1265B7623009DAB98 /* RecommendController.m */,
            );
            path = Recommend;
            sourceTree = "<group>";
        };
        70ED36BF2662382F00E51E79 /* Cell */ = {
            isa = PBXGroup;
            children = (
                70ED36C326623CCB00E51E79 /* 01.jpg */,
                70ED36C426623CCB00E51E79 /* 02.jpg */,
                70ED36C526623CCB00E51E79 /* 03.jpg */,
                70ED36C626623CCC00E51E79 /* 04.jpg */,
                70ED36C726623CCC00E51E79 /* 05.jpg */,
                70ED36DA266250B800E51E79 /* RecpmmendTitleView.h */,
                70ED36DB266250B800E51E79 /* RecpmmendTitleView.m */,
                7034AC8226638BF30056133F /* RecommendChangeFooterView.h */,
                7034AC8326638BF30056133F /* RecommendChangeFooterView.m */,
                70ED36D726624F4700E51E79 /* RecommendHeaderViewCell.h */,
                70ED36D826624F4700E51E79 /* RecommendHeaderViewCell.m */,
                70ED36DD26625AF600E51E79 /* ToDayHotCell.h */,
                70ED36DE26625AF600E51E79 /* ToDayHotCell.m */,
                70ED36E0266264D900E51E79 /* RecommendTwoColumnCell.h */,
                70ED36E1266264D900E51E79 /* RecommendTwoColumnCell.m */,
                70ED36E326627D4500E51E79 /* RecommendThreeColumnCell.h */,
                70ED36E426627D4500E51E79 /* RecommendThreeColumnCell.m */,
            );
            path = Cell;
            sourceTree = "<group>";
        };
        70ED36CD26624BAE00E51E79 /* UICollectionViewLeftAlignedLayout */ = {
            isa = PBXGroup;
            children = (
                70ED36CE26624BAE00E51E79 /* UICollectionViewLeftAlignedLayout.h */,
                70ED36CF26624BAE00E51E79 /* UICollectionViewLeftAlignedLayout.m */,
            );
            path = UICollectionViewLeftAlignedLayout;
            sourceTree = "<group>";
        };
        70ED36E6266280EA00E51E79 /* SDCycleScrollView */ = {
            isa = PBXGroup;
            children = (
                70ED36E8266280EA00E51E79 /* SDCycleScrollView.h */,
                70ED36EA266280EA00E51E79 /* SDCycleScrollView.m */,
                70ED36E7266280EA00E51E79 /* UIView+SDExtension.h */,
                70ED36EB266280EA00E51E79 /* UIView+SDExtension.m */,
                70ED36E9266280EA00E51E79 /* SDCollectionViewCell.h */,
                70ED36EC266280EA00E51E79 /* SDCollectionViewCell.m */,
                70ED36ED266280EA00E51E79 /* PageControl */,
            );
            path = SDCycleScrollView;
            sourceTree = "<group>";
        };
        70ED36ED266280EA00E51E79 /* PageControl */ = {
            isa = PBXGroup;
            children = (
                70ED36EE266280EA00E51E79 /* TAAbstractDotView.h */,
                70ED36EF266280EA00E51E79 /* TADotView.m */,
                70ED36F0266280EA00E51E79 /* TAPageControl.m */,
                70ED36F1266280EA00E51E79 /* TAAnimatedDotView.m */,
                70ED36F2266280EA00E51E79 /* TAAbstractDotView.m */,
                70ED36F3266280EA00E51E79 /* TADotView.h */,
                70ED36F4266280EA00E51E79 /* TAAnimatedDotView.h */,
                70ED36F5266280EA00E51E79 /* TAPageControl.h */,
            );
            path = PageControl;
            sourceTree = "<group>";
        };
        7B0A1E1F1D4B1437000518FA /* cell */ = {
            isa = PBXGroup;
            children = (
                7B32BD3A1D4F410F00E96E75 /* recommentCollectionViewCell.h */,
                7B32BD3B1D4F410F00E96E75 /* recommentCollectionViewCell.m */,
                7B32BD3C1D4F410F00E96E75 /* recommentCollectionViewCell.xib */,
                18ED60691E1632E300AF8252 /* StartCollectionViewCell.h */,
                18ED606A1E1632E300AF8252 /* StartCollectionViewCell.m */,
                18ED606B1E1632E300AF8252 /* StartCollectionViewCell.xib */,
                7BC24A531D5074FC00F6D2D9 /* shufflingCollectionReusableView.h */,
                7BC24A541D5074FC00F6D2D9 /* shufflingCollectionReusableView.m */,
                7BC24A551D5074FC00F6D2D9 /* shufflingCollectionReusableView.xib */,
                7BC24A581D50752B00F6D2D9 /* HeaderCollectionReusableView.h */,
                7BC24A591D50752B00F6D2D9 /* HeaderCollectionReusableView.m */,
                7BC24A5A1D50752B00F6D2D9 /* HeaderCollectionReusableView.xib */,
                7BC24A5D1D50754600F6D2D9 /* FooterCollectionReusableView.h */,
                7BC24A5E1D50754600F6D2D9 /* FooterCollectionReusableView.m */,
                7BC24A5F1D50754600F6D2D9 /* FooterCollectionReusableView.xib */,
                18FC90F41D9144320041D298 /* GoogleAdCollectionReusableView.h */,
                18FC90F51D9144320041D298 /* GoogleAdCollectionReusableView.m */,
                18FC90F61D9144320041D298 /* GoogleAdCollectionReusableView.xib */,
                18FC90F21D9142730041D298 /* googleADS.xib */,
                2D1E3DB9213536700021C50A /* NoNetworkView.h */,
                2D1E3DBA213536700021C50A /* NoNetworkView.m */,
                2D3F513521AE716F00C50FA5 /* AdCollectionViewCell.h */,
                2D3F513621AE716F00C50FA5 /* AdCollectionViewCell.m */,
                2D3F513721AE716F00C50FA5 /* AdCollectionViewCell.xib */,
            );
            name = cell;
            sourceTree = "<group>";
        };
        7B0A1E201D4B1449000518FA /* cell */ = {
            isa = PBXGroup;
            children = (
                7B9D31C01D5421E000EDED00 /* SubregionViewCollectionViewCell.h */,
                7B9D31C11D5421E000EDED00 /* SubregionViewCollectionViewCell.m */,
                7B9D31C21D5421E000EDED00 /* SubregionViewCollectionViewCell.xib */,
                2D433C132236684100083427 /* FaxianCReusableView.h */,
                2D433C142236684100083427 /* FaxianCReusableView.m */,
                2D433C152236684100083427 /* FaxianCReusableView.xib */,
            );
            name = cell;
            sourceTree = "<group>";
        };
        7B1C098F1D6308C9005D8665 /* subregionDetail(分类二级界面) */ = {
            isa = PBXGroup;
            children = (
                18F2541B1DF008AA00826AD0 /* 福利社(专用) */,
                7B1C09901D630BAB005D8665 /* viewController */,
                7B1C09921D630BC0005D8665 /* 谷歌广告 */,
            );
            name = "subregionDetail(分类二级界面)";
            sourceTree = "<group>";
        };
        7B1C09901D630BAB005D8665 /* viewController */ = {
            isa = PBXGroup;
            children = (
                7BA7E5C51D6BD4CB00D347D0 /* SubregionDetailViewController.h */,
                7BA7E5C61D6BD4CB00D347D0 /* SubregionDetailViewController.m */,
                7BA7E5C71D6BD4CB00D347D0 /* SubregionDetailViewController.xib */,
            );
            name = viewController;
            sourceTree = "<group>";
        };
        7B1C09921D630BC0005D8665 /* 谷歌广告 */ = {
            isa = PBXGroup;
            children = (
                189787811D9233E9006245B9 /* View.xib */,
                189787831D925B5D006245B9 /* GoogleAdTableViewCell.h */,
                189787841D925B5D006245B9 /* GoogleAdTableViewCell.m */,
                189787851D925B5D006245B9 /* GoogleAdTableViewCell.xib */,
            );
            name = "谷歌广告";
            sourceTree = "<group>";
        };
        7B1FF0961D67091300E6C207 /* cell */ = {
            isa = PBXGroup;
            children = (
                7B1FF0971D67094500E6C207 /* CellOne.h */,
                7B1FF0981D67094500E6C207 /* CellOne.m */,
                7B1FF0991D67094500E6C207 /* CellOne.xib */,
                7B1FF0A31D67094500E6C207 /* CellHead.h */,
                7B1FF0A41D67094500E6C207 /* CellHead.m */,
                7B1FF0A51D67094500E6C207 /* CellHead.xib */,
                18ED606E1E165CE000AF8252 /* findGoodsTableViewCell.h */,
                18ED606F1E165CE000AF8252 /* findGoodsTableViewCell.m */,
                18ED60701E165CE000AF8252 /* findGoodsTableViewCell.xib */,
                183080D31E29CD2F0017DDD7 /* childCollectionViewCell.h */,
                183080D41E29CD2F0017DDD7 /* childCollectionViewCell.m */,
                183080D51E29CD2F0017DDD7 /* childCollectionViewCell.xib */,
                183080DD1E29D0E60017DDD7 /* XYRChildTableViewCell.h */,
                183080DE1E29D0E60017DDD7 /* XYRChildTableViewCell.m */,
                183080DF1E29D0E60017DDD7 /* XYRChildTableViewCell.xib */,
                1845BB45209BF13D009C639B /* DisCoverTableViewCell.h */,
                1845BB46209BF13D009C639B /* DisCoverTableViewCell.m */,
                1845BB47209BF13D009C639B /* DisCoverTableViewCell.xib */,
            );
            name = cell;
            sourceTree = "<group>";
        };
        7B1FF0B01D6709A400E6C207 /* 专题详细界面 */ = {
            isa = PBXGroup;
            children = (
                7B1FF0B51D670A1500E6C207 /* OnlySpecialController.h */,
                7B1FF0B61D670A1500E6C207 /* OnlySpecialController.m */,
                7B4220EF1D6D7DBD007345E6 /* cell */,
            );
            name = "专题详细界面";
            sourceTree = "<group>";
        };
        7B1FF0B11D6709B800E6C207 /* 专题合集 */ = {
            isa = PBXGroup;
            children = (
                7B1FF0B81D670A1F00E6C207 /* AllSpecialController.h */,
                7B1FF0B91D670A1F00E6C207 /* AllSpecialController.m */,
                7B4220E91D6D7D2B007345E6 /* cell */,
            );
            name = "专题合集";
            sourceTree = "<group>";
        };
        7B1FF0B21D6709E200E6C207 /* 明星详细界面 */ = {
            isa = PBXGroup;
            children = (
                7B1FF0C61D670A4E00E6C207 /* IndividualStarController.h */,
                7B1FF0C71D670A4E00E6C207 /* IndividualStarController.m */,
                7B1FF0BB1D670A2E00E6C207 /* cell */,
            );
            name = "明星详细界面";
            sourceTree = "<group>";
        };
        7B1FF0B31D6709FB00E6C207 /* 明星合集 */ = {
            isa = PBXGroup;
            children = (
                7B1FF0C91D670A7F00E6C207 /* StarsController.h */,
                7B1FF0CA1D670A7F00E6C207 /* StarsController.m */,
            );
            name = "明星合集";
            sourceTree = "<group>";
        };
        7B1FF0B41D670A0800E6C207 /* TWScontroller(图文社) */ = {
            isa = PBXGroup;
            children = (
                7B1FF0D21D670AB200E6C207 /* TWScontroller.h */,
                7B1FF0D31D670AB200E6C207 /* TWScontroller.m */,
                7BFBC6441D6703E40058FFEB /* WebControllerView.h */,
                7BFBC6451D6703E40058FFEB /* WebControllerView.m */,
                7B1FF0CC1D670A9A00E6C207 /* cell */,
            );
            name = "TWScontroller(图文社)";
            sourceTree = "<group>";
        };
        7B1FF0BB1D670A2E00E6C207 /* cell */ = {
            isa = PBXGroup;
            children = (
                7B1FF0BC1D670A3B00E6C207 /* Starview.h */,
                7B1FF0BD1D670A3B00E6C207 /* Starview.m */,
                7B1FF0BE1D670A3B00E6C207 /* Starview.xib */,
                7B1FF0BF1D670A3B00E6C207 /* StarmovieCell.h */,
                7B1FF0C01D670A3B00E6C207 /* StarmovieCell.m */,
                7B1FF0C11D670A3B00E6C207 /* StarmovieCell.xib */,
            );
            name = cell;
            sourceTree = "<group>";
        };
        7B1FF0CC1D670A9A00E6C207 /* cell */ = {
            isa = PBXGroup;
            children = (
                7B1FF0CD1D670AA900E6C207 /* TWScell.h */,
                7B1FF0CE1D670AA900E6C207 /* TWScell.m */,
                7B1FF0CF1D670AA900E6C207 /* TWScell.xib */,
            );
            name = cell;
            sourceTree = "<group>";
        };
        7B1FF0D51D670B7100E6C207 /* cell */ = {
            isa = PBXGroup;
            children = (
                7B1FF0D61D670B7E00E6C207 /* AttentionCell.h */,
                7B1FF0D71D670B7E00E6C207 /* AttentionCell.m */,
                7B1FF0D81D670B7E00E6C207 /* AttentionCell.xib */,
            );
            name = cell;
            sourceTree = "<group>";
        };
        7B1FF0E21D67166C00E6C207 /* Share(公共) */ = {
            isa = PBXGroup;
            children = (
                705F1E83251F085D0065350E /* Share.h */,
                705F1E82251F085D0065350E /* Share.m */,
                7BC24A501D50282200F6D2D9 /* YTHsharedManger.h */,
                7BC24A511D50282200F6D2D9 /* YTHsharedManger.m */,
                18BBB9021E23977E00793EAB /* LSPageScrollView.h */,
                18BBB9011E23977E00793EAB /* LSPageScrollView.m */,
            );
            name = "Share(公共)";
            sourceTree = "<group>";
        };
        7B32BD361D4F272500E96E75 /* 发现跳转的视图 */ = {
            isa = PBXGroup;
            children = (
                7B1FF0B31D6709FB00E6C207 /* 明星合集 */,
                7B1FF0B21D6709E200E6C207 /* 明星详细界面 */,
                7B1FF0B11D6709B800E6C207 /* 专题合集 */,
                7B1FF0B01D6709A400E6C207 /* 专题详细界面 */,
                7B1FF0B41D670A0800E6C207 /* TWScontroller(图文社) */,
            );
            name = "发现跳转的视图";
            sourceTree = "<group>";
        };
        7B41E9901D4A04AE00F05CE2 = {
            isa = PBXGroup;
            children = (
                7B41E99B1D4A04AE00F05CE2 /* BuWanVideo2.0 */,
                7B41E99A1D4A04AE00F05CE2 /* Products */,
                7B41E9AA1D4A04AE00F05CE2 /* LaunchScreen.storyboard */,
                D45473531DBD9FC700EC002B /* Resources */,
                E6ACB6E946C53CD75FE2299C /* Frameworks */,
                E437EA7A96AE3ECC4DC1B5AA /* Pods */,
            );
            sourceTree = "<group>";
        };
        7B41E99A1D4A04AE00F05CE2 /* Products */ = {
            isa = PBXGroup;
            children = (
                7B41E9991D4A04AE00F05CE2 /* BuWanVideo2.0.app */,
            );
            name = Products;
            sourceTree = "<group>";
        };
        7B41E99B1D4A04AE00F05CE2 /* BuWanVideo2.0 */ = {
            isa = PBXGroup;
            children = (
                18FB72711D896B7E00077D69 /* BuWanVideo2.0.entitlements */,
                7B41E99F1D4A04AE00F05CE2 /* AppDelegate.h */,
                7B41E9A01D4A04AE00F05CE2 /* AppDelegate.m */,
                183360291DC3335000391627 /* 数据 */,
                1833602A1DC3336400391627 /* 界面 */,
                7B41E9A51D4A04AE00F05CE2 /* Main.storyboard */,
                187A745D1DF7B1C6001E856F /* titleImage2.png */,
                18FA689A20916CE300DDF6A6 /* 启动图 */,
                189EFECA1EF1465D00C59CAB /* yw_1222.jpg */,
                7B62B0DE1D4B0F0D00BBC30D /* PrefixHeader.pch */,
                7B41E9A81D4A04AE00F05CE2 /* Assets.xcassets */,
                18C95F521D94DE2A009CBF0F /* GoogleService-Info.plist */,
                7B41E9AD1D4A04AE00F05CE2 /* Info.plist */,
                7B41E99C1D4A04AE00F05CE2 /* Supporting Files */,
            );
            path = BuWanVideo2.0;
            sourceTree = "<group>";
        };
        7B41E99C1D4A04AE00F05CE2 /* Supporting Files */ = {
            isa = PBXGroup;
            children = (
                7B41E99D1D4A04AE00F05CE2 /* main.m */,
            );
            name = "Supporting Files";
            sourceTree = "<group>";
        };
        7B4220E91D6D7D2B007345E6 /* cell */ = {
            isa = PBXGroup;
            children = (
                7B4220EA1D6D7D34007345E6 /* AllSpecialCell.h */,
                7B4220EB1D6D7D34007345E6 /* AllSpecialCell.m */,
                7B4220EC1D6D7D34007345E6 /* AllSpecialCell.xib */,
            );
            name = cell;
            sourceTree = "<group>";
        };
        7B4220EF1D6D7DBD007345E6 /* cell */ = {
            isa = PBXGroup;
            children = (
                7B4220F01D6D7DDE007345E6 /* OnlySpecialOne.h */,
                7B4220F11D6D7DDE007345E6 /* OnlySpecialOne.m */,
                7B4220F21D6D7DDE007345E6 /* OnlySpecialOne.xib */,
                7B4220F31D6D7DDE007345E6 /* OnlySpecialThere.h */,
                7B4220F41D6D7DDE007345E6 /* OnlySpecialThere.m */,
                7B4220F51D6D7DDE007345E6 /* OnlySpecialThere.xib */,
                7B4220F61D6D7DDE007345E6 /* OnlySpecialTwo.h */,
                7B4220F71D6D7DDE007345E6 /* OnlySpecialTwo.m */,
                7B4220F81D6D7DDE007345E6 /* OnlySpecialTwo.xib */,
            );
            name = cell;
            sourceTree = "<group>";
        };
        7B8ADA3A1D588C6C007A3FFD /* MuneBar */ = {
            isa = PBXGroup;
            children = (
                7B0D3B261D59BCAB003E74A8 /* AnimationTool.h */,
                7B0D3B271D59BCAB003E74A8 /* AnimationTool.m */,
                7B0D3B281D59BCAB003E74A8 /* CMuneBar.h */,
                7B0D3B291D59BCAB003E74A8 /* CMuneBar.m */,
                7B0D3B2A1D59BCAB003E74A8 /* CMuneItem.h */,
                7B0D3B2B1D59BCAB003E74A8 /* CMuneItem.m */,
            );
            name = MuneBar;
            sourceTree = "<group>";
        };
        7B9D31C51D54477B00EDED00 /* MovieDetailView(详情页面) */ = {
            isa = PBXGroup;
            children = (
                7B9D31C81D5447C800EDED00 /* controller */,
                7B9D31C71D5447C000EDED00 /* model */,
                7B9D31C61D5447B500EDED00 /* cell */,
            );
            name = "MovieDetailView(详情页面)";
            sourceTree = "<group>";
        };
        7B9D31C61D5447B500EDED00 /* cell */ = {
            isa = PBXGroup;
            children = (
                7B893F4B1D70549F0028A556 /* CommentTableViewCell.h */,
                7B893F4C1D70549F0028A556 /* CommentTableViewCell.m */,
                7B893F4D1D70549F0028A556 /* CommentTableViewCell.xib */,
                7B893F481D7054580028A556 /* commentHeaderView.h */,
                7B893F491D7054580028A556 /* commentHeaderView.m */,
                7B59CBFC1D5B15A3000B357F /* GroupCollectionViewCell.h */,
                7B59CBFD1D5B15A3000B357F /* GroupCollectionViewCell.m */,
                7B59CBFE1D5B15A3000B357F /* GroupCollectionViewCell.xib */,
                7B59CC011D5B15C4000B357F /* IntroductionCollectionViewCell.h */,
                7B59CC021D5B15C4000B357F /* IntroductionCollectionViewCell.m */,
                7B59CC031D5B15C4000B357F /* IntroductionCollectionViewCell.xib */,
                7B59CC061D5B162A000B357F /* GuessYouLikeCollectionViewCell.h */,
                7B59CC071D5B162A000B357F /* GuessYouLikeCollectionViewCell.m */,
                7B59CC081D5B162A000B357F /* GuessYouLikeCollectionViewCell.xib */,
                7B59CBF71D5B1447000B357F /* GroupSection.h */,
                7B59CBF81D5B1447000B357F /* GroupSection.m */,
                7B59CBF91D5B1447000B357F /* GroupSection.xib */,
                7B59CC0B1D5B16B7000B357F /* GroupSmallSection.h */,
                7B59CC0C1D5B16B7000B357F /* GroupSmallSection.m */,
                7B59CC0D1D5B16B7000B357F /* GroupSmallSection.xib */,
                7B59CC101D5B16CC000B357F /* GroupfootSection.h */,
                7B59CC111D5B16CC000B357F /* GroupfootSection.m */,
                7B59CC121D5B16CC000B357F /* GroupfootSection.xib */,
                7B59CC151D5B16DC000B357F /* ADCollectionReusableView.h */,
                7B59CC161D5B16DC000B357F /* ADCollectionReusableView.m */,
                7B59CC171D5B16DC000B357F /* ADCollectionReusableView.xib */,
                7BCC19C81D5C73AC00FB6123 /* titleCollectionReusableView.h */,
                7BCC19C91D5C73AC00FB6123 /* titleCollectionReusableView.m */,
                7BCC19CA1D5C73AC00FB6123 /* titleCollectionReusableView.xib */,
                7B893F431D7043030028A556 /* AttentionCollectionReusableView.h */,
                7B893F441D7043030028A556 /* AttentionCollectionReusableView.m */,
                7B893F451D7043030028A556 /* AttentionCollectionReusableView.xib */,
                18D94EA81ECD7B6E00B6FA54 /* newADCollectionViewCell.h */,
                18D94EA91ECD7B6E00B6FA54 /* newADCollectionViewCell.m */,
                18D94EAA1ECD7B6E00B6FA54 /* newADCollectionViewCell.xib */,
            );
            name = cell;
            sourceTree = "<group>";
        };
        7B9D31C71D5447C000EDED00 /* model */ = {
            isa = PBXGroup;
            children = (
                7B8ADA441D589448007A3FFD /* XYRVideoDetailModel.h */,
                7B8ADA451D589448007A3FFD /* XYRVideoDetailModel.m */,
            );
            name = model;
            sourceTree = "<group>";
        };
        7B9D31C81D5447C800EDED00 /* controller */ = {
            isa = PBXGroup;
            children = (
                7B9D31C91D54481000EDED00 /* XYRDetailViewController.h */,
                7B9D31CA1D54481000EDED00 /* XYRDetailViewController.m */,
                7B9D31CB1D54481000EDED00 /* XYRDetailViewController.xib */,
                18EF91E01D8E47610078C8BD /* WEBViewController.h */,
                18EF91E11D8E47610078C8BD /* WEBViewController.m */,
            );
            name = controller;
            sourceTree = "<group>";
        };
        7BB429031D4B5DD800AA2D11 /* DataNet(接口文档) */ = {
            isa = PBXGroup;
            children = (
                18ABF6DE1DDD9B4600C9257E /* Nethader.h */,
                18ABF6DF1DDD9B4600C9257E /* YTHNetdata.h */,
                18ABF6E01DDD9B4600C9257E /* YTHNetdata.m */,
                18ABF6E11DDD9B4600C9257E /* YTHNetInterface.h */,
                18ABF6E21DDD9B4600C9257E /* YTHNetInterface.m */,
                18E943F32057C5710019FD04 /* JYNetWorking.h */,
                18E943F42057C5710019FD04 /* JYNetWorking.m */,
            );
            name = "DataNet(接口文档)";
            sourceTree = "<group>";
        };
        7BB4290B1D4B5F1600AA2D11 /* Category(扩展类) */ = {
            isa = PBXGroup;
            children = (
                2D1198E4212E93CC0043EA39 /* UIViewController+Tools.h */,
                2D1198E3212E93CB0043EA39 /* UIViewController+Tools.m */,
                7BB4290C1D4B5FC900AA2D11 /* UIImage+YTH.h */,
                7BB4290D1D4B5FC900AA2D11 /* UIImage+YTH.m */,
                7BB4290E1D4B5FC900AA2D11 /* UIImageView+YTH.h */,
                7BB4290F1D4B5FC900AA2D11 /* UIImageView+YTH.m */,
                7BB429121D4B5FC900AA2D11 /* NSString+YTH.h */,
                7BB429131D4B5FC900AA2D11 /* NSString+YTH.m */,
            );
            name = "Category(扩展类)";
            sourceTree = "<group>";
        };
        7BC600A01D63F134005CE8FD /* searchView(搜索) */ = {
            isa = PBXGroup;
            children = (
                7034AC8B2663A0200056133F /* SearchNew */,
                705951F12516112D008E0CDF /* View */,
                7BC600A31D63F187005CE8FD /* viewController */,
                7BC600A11D63F167005CE8FD /* view */,
            );
            name = "searchView(搜索)";
            sourceTree = "<group>";
        };
        7BC600A11D63F167005CE8FD /* view */ = {
            isa = PBXGroup;
            children = (
                7BCE166E1D640A75004EAD5A /* YTHSearchTextField.h */,
                7BCE166F1D640A75004EAD5A /* YTHSearchTextField.m */,
                7BCE16741D644EB8004EAD5A /* SearchCollectionViewCell.h */,
                7BCE16751D644EB8004EAD5A /* SearchCollectionViewCell.m */,
                7BCE16761D644EB8004EAD5A /* SearchCollectionViewCell.xib */,
                7B7BB82C1D65558500066939 /* SearchCollectionReusableView.h */,
                7B7BB82D1D65558500066939 /* SearchCollectionReusableView.m */,
                7B7BB82E1D65558500066939 /* SearchCollectionReusableView.xib */,
                7B7BB8311D65A3DA00066939 /* searchTableViewCell.h */,
                7B7BB8321D65A3DA00066939 /* searchTableViewCell.m */,
                7B7BB8331D65A3DA00066939 /* searchTableViewCell.xib */,
            );
            name = view;
            sourceTree = "<group>";
        };
        7BC600A31D63F187005CE8FD /* viewController */ = {
            isa = PBXGroup;
            children = (
                7BC600A41D63F1B9005CE8FD /* searchViewController.h */,
                7BC600A51D63F1B9005CE8FD /* searchViewController.m */,
                7BC600A61D63F1B9005CE8FD /* searchViewController.xib */,
                7BC600A91D63F560005CE8FD /* searchDetailViewController.h */,
                7BC600AA1D63F560005CE8FD /* searchDetailViewController.m */,
                7BC600AB1D63F560005CE8FD /* searchDetailViewController.xib */,
            );
            name = viewController;
            sourceTree = "<group>";
        };
        7BF5265F1D742C65004B9DBB /* weikouAD */ = {
            isa = PBXGroup;
            children = (
                7BF526601D742C80004B9DBB /* WeiKouHeader.h */,
                7BF526611D742C80004B9DBB /* WeiKouNetWorkRequest.h */,
                7BF526621D742C80004B9DBB /* WeiKouNetWorkRequest.m */,
                7BF526631D742C80004B9DBB /* WeiKouAdView.h */,
                7BF526641D742C80004B9DBB /* WeiKouAdView.m */,
                7BF526651D742C80004B9DBB /* adModel.h */,
                7BF526661D742C80004B9DBB /* adModel.m */,
                7BF526671D742C80004B9DBB /* NSString+WeiKouAd.h */,
                7BF526681D742C80004B9DBB /* NSString+WeiKouAd.m */,
            );
            name = weikouAD;
            sourceTree = "<group>";
        };
        7BFBC6471D6703F00058FFEB /* Login(登录) */ = {
            isa = PBXGroup;
            children = (
                7BFBC6481D6704050058FFEB /* LoggingViewController.h */,
                7BFBC6491D6704050058FFEB /* LoggingViewController.m */,
                186BE2FF1DAA22B60003A943 /* RegisteViewController.h */,
                186BE3001DAA22B60003A943 /* RegisteViewController.m */,
                186BE3011DAA22B60003A943 /* RegisteViewController.xib */,
                1823F4C71DACC91F00C114C3 /* forgetPasswordViewController.h */,
                1823F4C81DACC91F00C114C3 /* forgetPasswordViewController.m */,
                1823F4C91DACC91F00C114C3 /* forgetPasswordViewController.xib */,
            );
            name = "Login(登录)";
            sourceTree = "<group>";
        };
        7BFBC64B1D6704140058FFEB /* Regard(我的关注) */ = {
            isa = PBXGroup;
            children = (
                7BFBC6521D6704780058FFEB /* MyRegardController.h */,
                7BFBC6531D6704780058FFEB /* MyRegardController.m */,
                7BFBC64C1D6704420058FFEB /* RegardCell */,
            );
            name = "Regard(我的关注)";
            sourceTree = "<group>";
        };
        7BFBC64C1D6704420058FFEB /* RegardCell */ = {
            isa = PBXGroup;
            children = (
                7BFBC64D1D6704710058FFEB /* RegardCell.h */,
                7BFBC64E1D6704710058FFEB /* RegardCell.m */,
                7BFBC64F1D6704710058FFEB /* RegardCell.xib */,
            );
            name = RegardCell;
            sourceTree = "<group>";
        };
        7BFBC6551D67048C0058FFEB /* MyCollection(我的收藏) */ = {
            isa = PBXGroup;
            children = (
                7BF526571D7408A0004B9DBB /* CollectionController.h */,
                7BF526581D7408A0004B9DBB /* CollectionController.m */,
            );
            name = "MyCollection(我的收藏)";
            sourceTree = "<group>";
        };
        7BFBC6591D6704B50058FFEB /* LookNote(观看记录) */ = {
            isa = PBXGroup;
            children = (
                7BFBC6601D6704EF0058FFEB /* LookNoteController.h */,
                7BFBC6611D6704EF0058FFEB /* LookNoteController.m */,
                7BFBC65A1D6704CA0058FFEB /* NoteCell */,
            );
            name = "LookNote(观看记录)";
            sourceTree = "<group>";
        };
        7BFBC65A1D6704CA0058FFEB /* NoteCell */ = {
            isa = PBXGroup;
            children = (
                7BFBC65B1D6704E20058FFEB /* NoteCell.h */,
                7BFBC65C1D6704E20058FFEB /* NoteCell.m */,
                7BFBC65D1D6704E20058FFEB /* NoteCell.xib */,
            );
            name = NoteCell;
            sourceTree = "<group>";
        };
        7BFBC6631D6705030058FFEB /* MyMessag(我的消息) */ = {
            isa = PBXGroup;
            children = (
                7BFBC66F1D6705330058FFEB /* MymessageContrlloer.h */,
                7BFBC6701D6705330058FFEB /* MymessageContrlloer.m */,
                7BFBC6641D6705170058FFEB /* MessageCell */,
            );
            name = "MyMessag(我的消息)";
            sourceTree = "<group>";
        };
        7BFBC6641D6705170058FFEB /* MessageCell */ = {
            isa = PBXGroup;
            children = (
                7BFBC6651D6705280058FFEB /* SystemMessageCell.h */,
                7BFBC6661D6705280058FFEB /* SystemMessageCell.m */,
                7BFBC6671D6705280058FFEB /* SystemMessageCell.xib */,
                7BFBC6681D6705280058FFEB /* ComentCell.h */,
                7BFBC6691D6705280058FFEB /* ComentCell.m */,
                7BFBC66A1D6705280058FFEB /* ComentCell.xib */,
            );
            name = MessageCell;
            sourceTree = "<group>";
        };
        7BFBC6721D67053F0058FFEB /* Help(帮助与反馈) */ = {
            isa = PBXGroup;
            children = (
                7BFBC6731D67054A0058FFEB /* HelpViewController.h */,
                7BFBC6741D67054A0058FFEB /* HelpViewController.m */,
            );
            name = "Help(帮助与反馈)";
            sourceTree = "<group>";
        };
        7BFBC67A1D6705750058FFEB /* Setting(设置) */ = {
            isa = PBXGroup;
            children = (
                7BFBC6871D6705C40058FFEB /* settingCell */,
                7BFBC6811D6705AB0058FFEB /* SettingController.h */,
                7BFBC6821D6705AB0058FFEB /* SettingController.m */,
                7BFBC67B1D6705AB0058FFEB /* SettingWebView.h */,
                7BFBC67C1D6705AB0058FFEB /* SettingWebView.m */,
            );
            name = "Setting(设置)";
            sourceTree = "<group>";
        };
        7BFBC6871D6705C40058FFEB /* settingCell */ = {
            isa = PBXGroup;
            children = (
                7BFBC68B1D6705DD0058FFEB /* StorageSpaceTableViewCell.h */,
                7BFBC68C1D6705DD0058FFEB /* StorageSpaceTableViewCell.m */,
                7BFBC68D1D6705DD0058FFEB /* StorageSpaceTableViewCell.xib */,
            );
            name = settingCell;
            sourceTree = "<group>";
        };
        AD73C5ED1D4DDBAE0060437E /* lib(第三方库) */ = {
            isa = PBXGroup;
            children = (
                702904AD2687016200F93618 /* InfoPlist */,
                704C14A6265B72A5009DAB98 /* ZJScrollPageView */,
                706CECCA264FB895001FBEB7 /* dsbridge */,
                705F1F36251F1CA70065350E /* MJRefresh */,
                7042C94A2515A4FE0017F5D8 /* CSJ */,
                188322341F74AFFD00CCD0B4 /* HXEasyCustomShare */,
                1896FB811F7360D300720355 /* GDT_iOS_SDK */,
                1884A6051E54630300548480 /* LGLAlertView */,
                1884A5FB1E545D4900548480 /* PopoverView */,
                187A74521DF79DDF001E856F /* LXAlertView */,
                18B1C2391DB5B26B00AB709B /* HMSegmentedControl */,
                18B1C2541DB5B26B00AB709B /* SlideMenuControllerOC */,
                7BF5265F1D742C65004B9DBB /* weikouAD */,
                7B8ADA3A1D588C6C007A3FFD /* MuneBar */,
                AD73C5F11D4DE72E0060437E /* GTMBase64 */,
            );
            name = "lib(第三方库)";
            sourceTree = "<group>";
        };
        AD73C5F11D4DE72E0060437E /* GTMBase64 */ = {
            isa = PBXGroup;
            children = (
                AD73C5F21D4DE7DD0060437E /* GTMBase64.h */,
                AD73C5F31D4DE7DD0060437E /* GTMBase64.m */,
                AD73C5F41D4DE7DD0060437E /* GTMDefines.h */,
            );
            name = GTMBase64;
            sourceTree = "<group>";
        };
        D45473531DBD9FC700EC002B /* Resources */ = {
            isa = PBXGroup;
            children = (
                D45473541DBD9FC700EC002B /* 缓冲.gif */,
            );
            name = Resources;
            path = BuWanVideo2.0/Resources;
            sourceTree = "<group>";
        };
        E437EA7A96AE3ECC4DC1B5AA /* Pods */ = {
            isa = PBXGroup;
            children = (
                2C139B9B5CB9A7C07D2CEE9C /* Pods-BuWanVideo2.0.debug.xcconfig */,
                5326AC3933907F23F3929227 /* Pods-BuWanVideo2.0.release.xcconfig */,
            );
            name = Pods;
            sourceTree = "<group>";
        };
        E6ACB6E946C53CD75FE2299C /* Frameworks */ = {
            isa = PBXGroup;
            children = (
                2D73254F212D6B5200E09821 /* WebP.framework */,
                2D73254D212D626B00E09821 /* YYWebImage.framework */,
                2D73254B212D626600E09821 /* YYCache.framework */,
                2D732549212D626000E09821 /* YYImage.framework */,
                1845BB4A209BF212009C639B /* PassKit.framework */,
                183FD263209ABE6B00903765 /* UserNotificationsUI.framework */,
                183FD261209ABE6300903765 /* UserNotifications.framework */,
                18052ECA1E20D4F5005997FC /* yw_1222.jpg */,
                18052EA21E208379005997FC /* SafariServices.framework */,
                18052EA01E208343005997FC /* Twitter.framework */,
                18F5CA961E1C862D001F526F /* libc++.tbd */,
                184DBB311DDB0BB00034B39B /* libc++abi.tbd */,
                1877D17A1DCAE147000CEC83 /* libstdc++.6.0.9.tbd */,
                1877D1781DCAE119000CEC83 /* JavaScriptCore.framework */,
                1877D1761DCAE100000CEC83 /* CoreData.framework */,
                7B1FF0E01D67121700E6C207 /* libstdc++.tbd */,
                7B1FF0DE1D6711CF00E6C207 /* libiconv.tbd */,
                7B389BEB1D61B3370043A2F2 /* libz.1.tbd */,
                7B389BE91D61B32C0043A2F2 /* libresolv.9.tbd */,
                7B389BE71D61B31C0043A2F2 /* libiconv.2.tbd */,
                7B389BE51D61B3100043A2F2 /* libxml2.2.tbd */,
                7B389BE31D61B3070043A2F2 /* libbz2.1.0.tbd */,
                7B389BE11D61B2F90043A2F2 /* libc++.1.tbd */,
                7B389BDF1D61B2EF0043A2F2 /* libsqlite3.tbd */,
                7B389BDD1D61B1EC0043A2F2 /* VideoToolbox.framework */,
                7B389BDB1D61B1D10043A2F2 /* ModelIO.framework */,
                ADF0EF911D60C36F009310C9 /* WebKit.framework */,
                7B8AC5351D5D82D500450285 /* Social.framework */,
                7B8AC5311D5D82B100450285 /* OpenGLES.framework */,
                7B8AC52F1D5D82AA00450285 /* MobileCoreServices.framework */,
                7B8AC52D1D5D829D00450285 /* MediaToolbox.framework */,
                7B8AC52B1D5D828000450285 /* libz.1.2.5.tbd */,
                7B8AC5291D5D827500450285 /* ImageIO.framework */,
                7B8AC5271D5D825E00450285 /* iAd.framework */,
                7B8AC5251D5D825200450285 /* GameKit.framework */,
                7B8AC5231D5D824100450285 /* CoreVideo.framework */,
                7B8AC5211D5D822F00450285 /* CoreMotion.framework */,
                7B8AC51F1D5D821100450285 /* CoreImage.framework */,
                7B8AC51D1D5D820000450285 /* CoreFoundation.framework */,
                7B8AC51B1D5D81EF00450285 /* CoreBluetooth.framework */,
                7B8AC5191D5D817C00450285 /* CoreAudio.framework */,
                7B8AC5171D5D815600450285 /* AudioUnit.framework */,
                7B8AC5151D5D813B00450285 /* AddressBook.framework */,
                7B8AC5131D5D810A00450285 /* Accelerate.framework */,
                7B8AC5111D5D80F700450285 /* libxml2.tbd */,
                7B8AC50F1D5D80BD00450285 /* UIKit.framework */,
                7B8AC50D1D5D80B700450285 /* SystemConfiguration.framework */,
                7B8AC50B1D5D80AE00450285 /* StoreKit.framework */,
                7B8AC5091D5D80A500450285 /* Security.framework */,
                7B8AC5071D5D809B00450285 /* QuartzCore.framework */,
                7B8AC5051D5D809300450285 /* MessageUI.framework */,
                7B8AC5031D5D808A00450285 /* MediaPlayer.framework */,
                7B8AC5011D5D807F00450285 /* MapKit.framework */,
                7B8AC4FF1D5D807500450285 /* Foundation.framework */,
                7B8AC4FB1D5D806A00450285 /* EventKit.framework */,
                7B8AC4FC1D5D806A00450285 /* EventKitUI.framework */,
                7B8AC4F91D5D805900450285 /* CoreText.framework */,
                7B8AC4F71D5D805000450285 /* CoreTelephony.framework */,
                7B8AC4F51D5D804100450285 /* CoreMedia.framework */,
                7B8AC4F31D5D803900450285 /* CoreLocation.framework */,
                7B8AC4F11D5D803000450285 /* CoreGraphics.framework */,
                7B8AC4EF1D5D802200450285 /* CFNetwork.framework */,
                7B8AC4ED1D5D801700450285 /* AdSupport.framework */,
                7B8AC4EB1D5D800B00450285 /* libsqlite3.0.tbd */,
                7B8AC4E91D5D7FFC00450285 /* libz.tbd */,
                7B8AC4E71D5D7FF400450285 /* AudioToolbox.framework */,
                7B8AC4E51D5D7FE400450285 /* AVFoundation.framework */,
                E04DB6AA7D031EA7A75EA35B /* Pods_BuWanVideo2_0.framework */,
            );
            name = Frameworks;
            sourceTree = "<group>";
        };
/* End PBXGroup section */
 
/* Begin PBXNativeTarget section */
        7B41E9981D4A04AE00F05CE2 /* BuWanVideo2.0 */ = {
            isa = PBXNativeTarget;
            buildConfigurationList = 7B41E9B01D4A04AE00F05CE2 /* Build configuration list for PBXNativeTarget "BuWanVideo2.0" */;
            buildPhases = (
                6C9D8D553410E6A199D16E34 /* [CP] Check Pods Manifest.lock */,
                7B41E9951D4A04AE00F05CE2 /* Sources */,
                7B41E9961D4A04AE00F05CE2 /* Frameworks */,
                7B41E9971D4A04AE00F05CE2 /* Resources */,
                FE8605A55E7B8A38B0D237D5 /* [CP] Embed Pods Frameworks */,
            );
            buildRules = (
            );
            dependencies = (
            );
            name = BuWanVideo2.0;
            productName = BuWanVideo2.0;
            productReference = 7B41E9991D4A04AE00F05CE2 /* BuWanVideo2.0.app */;
            productType = "com.apple.product-type.application";
        };
/* End PBXNativeTarget section */
 
/* Begin PBXProject section */
        7B41E9911D4A04AE00F05CE2 /* Project object */ = {
            isa = PBXProject;
            attributes = {
                LastUpgradeCheck = 0800;
                ORGANIZATIONNAME = com.yeshi.buwansheque.ios;
                TargetAttributes = {
                    7B41E9981D4A04AE00F05CE2 = {
                        CreatedOnToolsVersion = 7.3;
                        DevelopmentTeam = 98HSDT7AP4;
                        ProvisioningStyle = Automatic;
                        SystemCapabilities = {
                            com.apple.BackgroundModes = {
                                enabled = 0;
                            };
                            com.apple.Push = {
                                enabled = 1;
                            };
                            com.apple.Wallet = {
                                enabled = 1;
                            };
                        };
                    };
                };
            };
            buildConfigurationList = 7B41E9941D4A04AE00F05CE2 /* Build configuration list for PBXProject "BuWanVideo2.0" */;
            compatibilityVersion = "Xcode 3.2";
            developmentRegion = English;
            hasScannedForEncodings = 0;
            knownRegions = (
                English,
                en,
                Base,
                "zh-Hans",
            );
            mainGroup = 7B41E9901D4A04AE00F05CE2;
            productRefGroup = 7B41E99A1D4A04AE00F05CE2 /* Products */;
            projectDirPath = "";
            projectRoot = "";
            targets = (
                7B41E9981D4A04AE00F05CE2 /* BuWanVideo2.0 */,
            );
        };
/* End PBXProject section */
 
/* Begin PBXResourcesBuildPhase section */
        7B41E9971D4A04AE00F05CE2 /* Resources */ = {
            isa = PBXResourcesBuildPhase;
            buildActionMask = 2147483647;
            files = (
                182F49682092FF1D00FEAAF7 /* 1125x2436.png in Resources */,
                18FC90F31D9142730041D298 /* googleADS.xib in Resources */,
                18B6BE731DADDB6E00DA4F63 /* signatureTableViewCell.xib in Resources */,
                18FA68A620916CE300DDF6A6 /* 320.png in Resources */,
                18FA68AE20916CE300DDF6A6 /* 640x1136.png in Resources */,
                18BC12B71EDEAB4A001E2FB0 /* HotLiveCollectionViewCell.xib in Resources */,
                2DECF93222325854002FF49F /* GuessLTableViewCell.xib in Resources */,
                18B6BE6E1DADDB4700DA4F63 /* InfoTableViewCell.xib in Resources */,
                7B4220FA1D6D7DDE007345E6 /* OnlySpecialOne.xib in Resources */,
                18BC12A81EDEA7AD001E2FB0 /* HotLiveTableViewCell.xib in Resources */,
                7B9D31CD1D54481000EDED00 /* XYRDetailViewController.xib in Resources */,
                7B59CC001D5B15A3000B357F /* GroupCollectionViewCell.xib in Resources */,
                7B4220FC1D6D7DDE007345E6 /* OnlySpecialThere.xib in Resources */,
                7BFBC66C1D6705280058FFEB /* SystemMessageCell.xib in Resources */,
                18ED606D1E1632E300AF8252 /* StartCollectionViewCell.xib in Resources */,
                7BC24A5C1D50752B00F6D2D9 /* HeaderCollectionReusableView.xib in Resources */,
                ADF5E0A61D4E33C1005F8A9E /* LeftTableViewCell.xib in Resources */,
                18BC12C11EDEAB8D001E2FB0 /* LiveListCollectionViewCell.xib in Resources */,
                18FA68A820916CE300DDF6A6 /* 320x568.png in Resources */,
                7BCE16781D644EB8004EAD5A /* SearchCollectionViewCell.xib in Resources */,
                18FC90F81D9144320041D298 /* GoogleAdCollectionReusableView.xib in Resources */,
                2DBB90D022320D3D00E70439 /* DisCoverADView.xib in Resources */,
                70ED36CC26623CCC00E51E79 /* 05.jpg in Resources */,
                7BC600AD1D63F560005CE8FD /* searchDetailViewController.xib in Resources */,
                7B59CC141D5B16CC000B357F /* GroupfootSection.xib in Resources */,
                703B2A75269062F2001137D1 /* js.txt in Resources */,
                18F5CAA61E1CD25E001F526F /* allCommentsViewController.xib in Resources */,
                7BA7E5C91D6BD4CB00D347D0 /* SubregionDetailViewController.xib in Resources */,
                7B1FF0DA1D670B7E00E6C207 /* AttentionCell.xib in Resources */,
                7BFBC66E1D6705280058FFEB /* ComentCell.xib in Resources */,
                18BC12BC1EDEAB68001E2FB0 /* AllLiveTypeCollectionViewCell.xib in Resources */,
                7B1FF0AF1D67094500E6C207 /* CellHead.xib in Resources */,
                186BE3031DAA22B60003A943 /* RegisteViewController.xib in Resources */,
                7B41E9AC1D4A04AE00F05CE2 /* LaunchScreen.storyboard in Resources */,
                18B6BE691DADDB2C00DA4F63 /* IconTableViewCell.xib in Resources */,
                18C5F6411E1B8B0A00537707 /* findTitleTableViewCell.xib in Resources */,
                7BB428FB1D4B43F400AA2D11 /* LeftViewController.xib in Resources */,
                7B32BD3E1D4F410F00E96E75 /* recommentCollectionViewCell.xib in Resources */,
                18FA68A920916CE300DDF6A6 /* 375.png in Resources */,
                7BFBC65F1D6704E20058FFEB /* NoteCell.xib in Resources */,
                189787871D925B5D006245B9 /* GoogleAdTableViewCell.xib in Resources */,
                70ED36CB26623CCC00E51E79 /* 04.jpg in Resources */,
                7B1FF0A71D67094500E6C207 /* CellOne.xib in Resources */,
                7B59CC191D5B16DC000B357F /* ADCollectionReusableView.xib in Resources */,
                18D94EAC1ECD7B6E00B6FA54 /* newADCollectionViewCell.xib in Resources */,
                18BC12B21EDEA87D001E2FB0 /* LiveListTableViewCell.xib in Resources */,
                18FB20DF1EE7E5330008AFD9 /* liveTopicViewController.xib in Resources */,
                7BFBC6511D6704710058FFEB /* RegardCell.xib in Resources */,
                184D348A1E1F3728007B0131 /* ConfirmTheGoodsViewController.xib in Resources */,
                18FA68AB20916CE300DDF6A6 /* 414.png in Resources */,
                18F5CA9C1E1C8895001F526F /* findcommentTableViewCell.xib in Resources */,
                18FA68A520916CE300DDF6A6 /* 1125.png in Resources */,
                18FA68A720916CE300DDF6A6 /* 320x480.png in Resources */,
                183080DA1E29CD2F0017DDD7 /* childCollectionViewCell.xib in Resources */,
                7B41E9A91D4A04AE00F05CE2 /* Assets.xcassets in Resources */,
                7B4220FE1D6D7DDE007345E6 /* OnlySpecialTwo.xib in Resources */,
                D45473551DBD9FC700EC002B /* 缓冲.gif in Resources */,
                70ED36C926623CCC00E51E79 /* 02.jpg in Resources */,
                7B9D31C41D5421E000EDED00 /* SubregionViewCollectionViewCell.xib in Resources */,
                189787821D9233E9006245B9 /* View.xib in Resources */,
                18FA68AC20916CE300DDF6A6 /* 414x736.png in Resources */,
                7B41E9A71D4A04AE00F05CE2 /* Main.storyboard in Resources */,
                18F254201DF0090900826AD0 /* FuLiSheViewController.xib in Resources */,
                7BC24A571D5074FC00F6D2D9 /* shufflingCollectionReusableView.xib in Resources */,
                70C4921726AC1D6600D044F7 /* BUAdSDK.bundle in Resources */,
                7B59CC051D5B15C4000B357F /* IntroductionCollectionViewCell.xib in Resources */,
                18F5CAAC1E1CFE8C001F526F /* PublishGoodsViewController.xib in Resources */,
                18B1C2661DB5B26B00AB709B /* LICENSE in Resources */,
                18BC12AD1EDEA838001E2FB0 /* AllLiveTypeTableViewCell.xib in Resources */,
                2D433C172236684100083427 /* FaxianCReusableView.xib in Resources */,
                7B1FF0D11D670AA900E6C207 /* TWScell.xib in Resources */,
                183080E11E29D0E60017DDD7 /* XYRChildTableViewCell.xib in Resources */,
                18C95F531D94DE2A009CBF0F /* GoogleService-Info.plist in Resources */,
                7B4220EE1D6D7D34007345E6 /* AllSpecialCell.xib in Resources */,
                189EFECB1EF1465D00C59CAB /* yw_1222.jpg in Resources */,
                7BC600A81D63F1B9005CE8FD /* searchViewController.xib in Resources */,
                7B7BB8351D65A3DA00066939 /* searchTableViewCell.xib in Resources */,
                18F5CAA11E1C8E79001F526F /* discoverGoodsDetailViewController.xib in Resources */,
                7BCC19CC1D5C73AD00FB6123 /* titleCollectionReusableView.xib in Resources */,
                70ED36C826623CCC00E51E79 /* 01.jpg in Resources */,
                7B1FF0C51D670A3B00E6C207 /* StarmovieCell.xib in Resources */,
                7BC24A611D50754600F6D2D9 /* FooterCollectionReusableView.xib in Resources */,
                1823F4CB1DACC91F00C114C3 /* forgetPasswordViewController.xib in Resources */,
                7B893F4F1D70549F0028A556 /* CommentTableViewCell.xib in Resources */,
                2D3F513921AE716F00C50FA5 /* AdCollectionViewCell.xib in Resources */,
                18FA68AD20916CE300DDF6A6 /* 621x1104.png in Resources */,
                70ED36CA26623CCC00E51E79 /* 03.jpg in Resources */,
                7B7BB8301D65558500066939 /* SearchCollectionReusableView.xib in Resources */,
                7BFBC6911D6705DD0058FFEB /* StorageSpaceTableViewCell.xib in Resources */,
                7B1FF0C31D670A3B00E6C207 /* Starview.xib in Resources */,
                18FA68AA20916CE300DDF6A6 /* 375x667.png in Resources */,
                1845BB49209BF13D009C639B /* DisCoverTableViewCell.xib in Resources */,
                7B59CBFB1D5B1447000B357F /* GroupSection.xib in Resources */,
                18ED60721E165CE000AF8252 /* findGoodsTableViewCell.xib in Resources */,
                18B6BE621DADC64A00DA4F63 /* Personal_informationViewController.xib in Resources */,
                7B59CC0F1D5B16B7000B357F /* GroupSmallSection.xib in Resources */,
                705F1F71251F1CA80065350E /* MJRefresh.bundle in Resources */,
                7B893F471D7043030028A556 /* AttentionCollectionReusableView.xib in Resources */,
                7B59CC0A1D5B162A000B357F /* GuessYouLikeCollectionViewCell.xib in Resources */,
                187A745E1DF7B1C6001E856F /* titleImage2.png in Resources */,
            );
            runOnlyForDeploymentPostprocessing = 0;
        };
/* End PBXResourcesBuildPhase section */
 
/* Begin PBXShellScriptBuildPhase section */
        6C9D8D553410E6A199D16E34 /* [CP] Check Pods Manifest.lock */ = {
            isa = PBXShellScriptBuildPhase;
            buildActionMask = 2147483647;
            files = (
            );
            inputPaths = (
                "${PODS_PODFILE_DIR_PATH}/Podfile.lock",
                "${PODS_ROOT}/Manifest.lock",
            );
            name = "[CP] Check Pods Manifest.lock";
            outputPaths = (
                "$(DERIVED_FILE_DIR)/Pods-BuWanVideo2.0-checkManifestLockResult.txt",
            );
            runOnlyForDeploymentPostprocessing = 0;
            shellPath = /bin/sh;
            shellScript = "diff \"${PODS_PODFILE_DIR_PATH}/Podfile.lock\" \"${PODS_ROOT}/Manifest.lock\" > /dev/null\nif [ $? != 0 ] ; then\n    # print error to STDERR\n    echo \"error: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.\" >&2\n    exit 1\nfi\n# This output is used by Xcode 'outputs' to avoid re-running this script phase.\necho \"SUCCESS\" > \"${SCRIPT_OUTPUT_FILE_0}\"\n";
            showEnvVarsInLog = 0;
        };
        FE8605A55E7B8A38B0D237D5 /* [CP] Embed Pods Frameworks */ = {
            isa = PBXShellScriptBuildPhase;
            buildActionMask = 2147483647;
            files = (
            );
            inputPaths = (
                "${PODS_ROOT}/Target Support Files/Pods-BuWanVideo2.0/Pods-BuWanVideo2.0-frameworks.sh",
                "${BUILT_PRODUCTS_DIR}/AFNetworking/AFNetworking.framework",
                "${BUILT_PRODUCTS_DIR}/IQKeyboardManager/IQKeyboardManager.framework",
                "${BUILT_PRODUCTS_DIR}/ReactiveCocoa/ReactiveCocoa.framework",
                "${BUILT_PRODUCTS_DIR}/SDAutoLayout/SDAutoLayout.framework",
                "${BUILT_PRODUCTS_DIR}/SDWebImage/SDWebImage.framework",
                "${BUILT_PRODUCTS_DIR}/SVProgressHUD/SVProgressHUD.framework",
                "${BUILT_PRODUCTS_DIR}/YYCache/YYCache.framework",
                "${BUILT_PRODUCTS_DIR}/YYImage/YYImage.framework",
                "${BUILT_PRODUCTS_DIR}/YYModel/YYModel.framework",
                "${BUILT_PRODUCTS_DIR}/YYWebImage/YYWebImage.framework",
            );
            name = "[CP] Embed Pods Frameworks";
            outputPaths = (
                "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/AFNetworking.framework",
                "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/IQKeyboardManager.framework",
                "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/ReactiveCocoa.framework",
                "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/SDAutoLayout.framework",
                "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/SDWebImage.framework",
                "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/SVProgressHUD.framework",
                "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/YYCache.framework",
                "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/YYImage.framework",
                "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/YYModel.framework",
                "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/YYWebImage.framework",
            );
            runOnlyForDeploymentPostprocessing = 0;
            shellPath = /bin/sh;
            shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-BuWanVideo2.0/Pods-BuWanVideo2.0-frameworks.sh\"\n";
            showEnvVarsInLog = 0;
        };
/* End PBXShellScriptBuildPhase section */
 
/* Begin PBXSourcesBuildPhase section */
        7B41E9951D4A04AE00F05CE2 /* Sources */ = {
            isa = PBXSourcesBuildPhase;
            buildActionMask = 2147483647;
            files = (
                704C148C265A9393009DAB98 /* RecommendMainController.m in Sources */,
                705F1F74251F1CA80065350E /* UIView+MJExtension.m in Sources */,
                705F1F79251F1CA80065350E /* MJRefreshAutoGifFooter.m in Sources */,
                18678ED920BE96D5000F5D54 /* recommendView.m in Sources */,
                188322391F74B62400CCD0B4 /* HXEasyCustomShareView.m in Sources */,
                2DEC6E5C22017DC5009B06D4 /* UITabBar+mainTab.m in Sources */,
                1883223A1F74B62400CCD0B4 /* HXShareScrollView.m in Sources */,
                18BBB9031E23977E00793EAB /* LSPageScrollView.m in Sources */,
                70ED36D026624BAE00E51E79 /* UICollectionViewLeftAlignedLayout.m in Sources */,
                18B6BE721DADDB6E00DA4F63 /* signatureTableViewCell.m in Sources */,
                18B6BE6D1DADDB4700DA4F63 /* InfoTableViewCell.m in Sources */,
                7BCC19CB1D5C73AD00FB6123 /* titleCollectionReusableView.m in Sources */,
                1884A6021E545D4900548480 /* PopoverAction.m in Sources */,
                70ED36E526627D4500E51E79 /* RecommendThreeColumnCell.m in Sources */,
                706CECC9264F97EB001FBEB7 /* PPTVPopCell.m in Sources */,
                7B893F4A1D7054580028A556 /* commentHeaderView.m in Sources */,
                7BFBC6751D67054A0058FFEB /* HelpViewController.m in Sources */,
                7034AC922663A41C0056133F /* SearchNavView.m in Sources */,
                7BB429151D4B5FC900AA2D11 /* UIImageView+YTH.m in Sources */,
                706CECD6264FB895001FBEB7 /* JSBUtil.m in Sources */,
                7B59CC181D5B16DC000B357F /* ADCollectionReusableView.m in Sources */,
                183080E01E29D0E60017DDD7 /* XYRChildTableViewCell.m in Sources */,
                705F1F7A251F1CA80065350E /* MJRefreshAutoNormalFooter.m in Sources */,
                70ED36FB266280EA00E51E79 /* TAAnimatedDotView.m in Sources */,
                705F1F84251F1CA80065350E /* MJRefreshComponent.m in Sources */,
                7B41E9A11D4A04AE00F05CE2 /* AppDelegate.m in Sources */,
                18F5CAA51E1CD25E001F526F /* allCommentsViewController.m in Sources */,
                18E943EC2057667D0019FD04 /* MineViewController.m in Sources */,
                704C14BA265B72A5009DAB98 /* UIViewController+ZJScrollPageController.m in Sources */,
                7BC24A601D50754600F6D2D9 /* FooterCollectionReusableView.m in Sources */,
                7B4220FD1D6D7DDE007345E6 /* OnlySpecialTwo.m in Sources */,
                7B4220ED1D6D7D34007345E6 /* AllSpecialCell.m in Sources */,
                705F1F77251F1CA80065350E /* MJRefreshBackNormalFooter.m in Sources */,
                7030BAA626A404AB003050E0 /* NormolNavView.m in Sources */,
                183080D91E29CD2F0017DDD7 /* childCollectionViewCell.m in Sources */,
                2D1E3DB82134FF4C0021C50A /* BSKImagesPageView.m in Sources */,
                7B59CBFA1D5B1447000B357F /* GroupSection.m in Sources */,
                7BFBC6831D6705AB0058FFEB /* SettingWebView.m in Sources */,
                7B59CC0E1D5B16B7000B357F /* GroupSmallSection.m in Sources */,
                7B0D3B2C1D59BCAB003E74A8 /* AnimationTool.m in Sources */,
                705951F425161153008E0CDF /* SearchTitleView.m in Sources */,
                7B59CC041D5B15C4000B357F /* IntroductionCollectionViewCell.m in Sources */,
                7B1FF0C21D670A3B00E6C207 /* Starview.m in Sources */,
                706CECD7264FB895001FBEB7 /* DWKWebView.m in Sources */,
                704C14B9265B72A5009DAB98 /* ZJTitleView.m in Sources */,
                706CECD5264FB895001FBEB7 /* InternalApis.m in Sources */,
                7BFBC6621D6704EF0058FFEB /* LookNoteController.m in Sources */,
                2D3F513821AE716F00C50FA5 /* AdCollectionViewCell.m in Sources */,
                702904B82687016200F93618 /* ObtainProperty.m in Sources */,
                18B1C25C1DB5B26B00AB709B /* README.md in Sources */,
                18B1C2681DB5B26B00AB709B /* SlideMenuController.m in Sources */,
                7034AC8426638BF30056133F /* RecommendChangeFooterView.m in Sources */,
                705F1F78251F1CA80065350E /* MJRefreshAutoStateFooter.m in Sources */,
                702904BA2687016200F93618 /* FileOperator.m in Sources */,
                18E943E9205766510019FD04 /* subregionViewController.m in Sources */,
                70ED36F9266280EA00E51E79 /* TADotView.m in Sources */,
                7B0D3B2E1D59BCAB003E74A8 /* CMuneItem.m in Sources */,
                18E943F52057C5720019FD04 /* JYNetWorking.m in Sources */,
                704C14B8265B72A5009DAB98 /* UIView+ZJFrame.m in Sources */,
                181D3A091E1DFD5300CDBDE9 /* XYRUITextField.m in Sources */,
                705F1F83251F1CA80065350E /* MJRefreshAutoFooter.m in Sources */,
                705F1F85251F1CA80065350E /* MJRefreshTrailer.m in Sources */,
                18F5CAA01E1C8E79001F526F /* discoverGoodsDetailViewController.m in Sources */,
                7B59CBFF1D5B15A3000B357F /* GroupCollectionViewCell.m in Sources */,
                18B1C25A1DB5B26B00AB709B /* HMSegmentedControl.m in Sources */,
                18ABF6E41DDD9B4600C9257E /* YTHNetInterface.m in Sources */,
                2D433C162236684100083427 /* FaxianCReusableView.m in Sources */,
                18D94EAB1ECD7B6E00B6FA54 /* newADCollectionViewCell.m in Sources */,
                705F1F73251F1CA80065350E /* NSBundle+MJRefresh.m in Sources */,
                7BFBC66D1D6705280058FFEB /* ComentCell.m in Sources */,
                7B1FF0D01D670AA900E6C207 /* TWScell.m in Sources */,
                18E943F2205774D50019FD04 /* BaseViewController.m in Sources */,
                1884A6081E54630300548480 /* LGLAlertView.m in Sources */,
                7BF526591D7408A0004B9DBB /* CollectionController.m in Sources */,
                18C5F6401E1B8B0A00537707 /* findTitleTableViewCell.m in Sources */,
                705F1F6F251F1CA80065350E /* MJRefreshConst.m in Sources */,
                7BF5266B1D742C80004B9DBB /* adModel.m in Sources */,
                187A74571DF79DDF001E856F /* LXAlertView.m in Sources */,
                7BF526691D742C80004B9DBB /* WeiKouNetWorkRequest.m in Sources */,
                18B6BE611DADC64A00DA4F63 /* Personal_informationViewController.m in Sources */,
                702904B72687016200F93618 /* PlistFileOperator.m in Sources */,
                7BFBC66B1D6705280058FFEB /* SystemMessageCell.m in Sources */,
                18F5CA9B1E1C8895001F526F /* findcommentTableViewCell.m in Sources */,
                1884A6041E545D4900548480 /* PopoverViews.m in Sources */,
                184D34891E1F3728007B0131 /* ConfirmTheGoodsViewController.m in Sources */,
                7BB428FA1D4B43F400AA2D11 /* LeftViewController.m in Sources */,
                7BFBC64A1D6704050058FFEB /* LoggingViewController.m in Sources */,
                7B1FF0B71D670A1500E6C207 /* OnlySpecialController.m in Sources */,
                18F2541F1DF0090900826AD0 /* FuLiSheViewController.m in Sources */,
                7BA7E5C81D6BD4CB00D347D0 /* SubregionDetailViewController.m in Sources */,
                1823F4CA1DACC91F00C114C3 /* forgetPasswordViewController.m in Sources */,
                18B1C2671DB5B26B00AB709B /* README.md in Sources */,
                704C14CE265B8E38009DAB98 /* MainBaseController.m in Sources */,
                7BC24A561D5074FC00F6D2D9 /* shufflingCollectionReusableView.m in Sources */,
                7B1FF0C41D670A3B00E6C207 /* StarmovieCell.m in Sources */,
                18BC12B61EDEAB4A001E2FB0 /* HotLiveCollectionViewCell.m in Sources */,
                186BE3021DAA22B60003A943 /* RegisteViewController.m in Sources */,
                704C14A1265A98A1009DAB98 /* RecommendNavView.m in Sources */,
                7B1FF0CB1D670A7F00E6C207 /* StarsController.m in Sources */,
                70ED36BC266233EC00E51E79 /* CWCarousel.m in Sources */,
                7B1FF0D41D670AB200E6C207 /* TWScontroller.m in Sources */,
                18BC12C01EDEAB8D001E2FB0 /* LiveListCollectionViewCell.m in Sources */,
                705F1F72251F1CA80065350E /* UIScrollView+MJExtension.m in Sources */,
                704C14BE265B72A5009DAB98 /* ZJScrollSegmentView.m in Sources */,
                706CECC0264F76C1001FBEB7 /* PPTVNavView.m in Sources */,
                705F1F76251F1CA80065350E /* MJRefreshBackStateFooter.m in Sources */,
                18BC12AC1EDEA838001E2FB0 /* AllLiveTypeTableViewCell.m in Sources */,
                18ABF6E31DDD9B4600C9257E /* YTHNetdata.m in Sources */,
                7B1FF0A61D67094500E6C207 /* CellOne.m in Sources */,
                7BB429021D4B463000AA2D11 /* MainViewController.m in Sources */,
                7BFBC6501D6704710058FFEB /* RegardCell.m in Sources */,
                7B59CC091D5B162A000B357F /* GuessYouLikeCollectionViewCell.m in Sources */,
                7B0D3B2D1D59BCAB003E74A8 /* CMuneBar.m in Sources */,
                7B4220F91D6D7DDE007345E6 /* OnlySpecialOne.m in Sources */,
                2DBB90CE22320D2900E70439 /* DisCoverADView.m in Sources */,
                7BF5266A1D742C80004B9DBB /* WeiKouAdView.m in Sources */,
                705F1F7C251F1CA80065350E /* MJRefreshNormalTrailer.m in Sources */,
                1845BB48209BF13D009C639B /* DisCoverTableViewCell.m in Sources */,
                706CECDB264FB8CB001FBEB7 /* JSAPI.m in Sources */,
                18F5CAAB1E1CFE8C001F526F /* PublishGoodsViewController.m in Sources */,
                70ED36E2266264D900E51E79 /* RecommendTwoColumnCell.m in Sources */,
                18FB20DE1EE7E5330008AFD9 /* liveTopicViewController.m in Sources */,
                7B4220FB1D6D7DDE007345E6 /* OnlySpecialThere.m in Sources */,
                70ED36FA266280EA00E51E79 /* TAPageControl.m in Sources */,
                7BFBC6711D6705330058FFEB /* MymessageContrlloer.m in Sources */,
                18B1C25B1DB5B26B00AB709B /* LICENSE.md in Sources */,
                7BFBC6541D6704780058FFEB /* MyRegardController.m in Sources */,
                7B893F4E1D70549F0028A556 /* CommentTableViewCell.m in Sources */,
                7BFBC65E1D6704E20058FFEB /* NoteCell.m in Sources */,
                182F49632092D0E200FEAAF7 /* UINavigationBar+SJNav.m in Sources */,
                7B893F461D7043030028A556 /* AttentionCollectionReusableView.m in Sources */,
                705951F7251633E9008E0CDF /* SearchDetailListCell.m in Sources */,
                705F1F7E251F1CA80065350E /* MJRefreshStateHeader.m in Sources */,
                7034AC8E2663A03D0056133F /* SearchController.m in Sources */,
                18EF91E31D8E47610078C8BD /* WEBViewController.m in Sources */,
                2D1E3DBB213536700021C50A /* NoNetworkView.m in Sources */,
                7B32BD3D1D4F410F00E96E75 /* recommentCollectionViewCell.m in Sources */,
                18BC12BB1EDEAB68001E2FB0 /* AllLiveTypeCollectionViewCell.m in Sources */,
                7B8ADA391D585D43007A3FFD /* XYRVideoInfoModel.m in Sources */,
                ADF5E0A51D4E33C1005F8A9E /* LeftTableViewCell.m in Sources */,
                705F1F75251F1CA80065350E /* MJRefreshBackGifFooter.m in Sources */,
                7B9D31C31D5421E000EDED00 /* SubregionViewCollectionViewCell.m in Sources */,
                7034AC962663BC400056133F /* SearchHotCell.m in Sources */,
                705F1F82251F1CA80065350E /* MJRefreshBackFooter.m in Sources */,
                189787861D925B5D006245B9 /* GoogleAdTableViewCell.m in Sources */,
                705F1F70251F1CA80065350E /* MJRefreshConfig.m in Sources */,
                70ED36FC266280EA00E51E79 /* TAAbstractDotView.m in Sources */,
                70ED36BD266233EC00E51E79 /* CWFlowLayout.m in Sources */,
                7034AC9C2663BD650056133F /* SearchHotSearchCell.m in Sources */,
                704C14C2265B7623009DAB98 /* RecommendController.m in Sources */,
                188175201DC05C51004A2540 /* liveOnLineView.m in Sources */,
                704C14BD265B72A5009DAB98 /* ZJSegmentStyle.m in Sources */,
                7BB429171D4B5FC900AA2D11 /* NSString+YTH.m in Sources */,
                7BF5266C1D742C80004B9DBB /* NSString+WeiKouAd.m in Sources */,
                18ED60711E165CE000AF8252 /* findGoodsTableViewCell.m in Sources */,
                7B9D31CC1D54481000EDED00 /* XYRDetailViewController.m in Sources */,
                18B6BE681DADDB2C00DA4F63 /* IconTableViewCell.m in Sources */,
                70ED36F6266280EA00E51E79 /* SDCycleScrollView.m in Sources */,
                7B1FF0951D6708FD00E6C207 /* discoverView.m in Sources */,
                706CECD4264FB895001FBEB7 /* DSCallInfo.m in Sources */,
                705F1F81251F1CA80065350E /* MJRefreshHeader.m in Sources */,
                7BFBC6861D6705AB0058FFEB /* SettingController.m in Sources */,
                7B32BD321D4F26F500E96E75 /* subregionView.m in Sources */,
                7BC600AC1D63F560005CE8FD /* searchDetailViewController.m in Sources */,
                7B1FF0C81D670A4E00E6C207 /* IndividualStarController.m in Sources */,
                182F49662092DF1200FEAAF7 /* SJTabbarViewController.m in Sources */,
                7B1FF0D91D670B7E00E6C207 /* AttentionCell.m in Sources */,
                70ED36DC266250B800E51E79 /* RecpmmendTitleView.m in Sources */,
                704C14BC265B72A5009DAB98 /* ZJCollectionView.m in Sources */,
                7BCE16701D640A75004EAD5A /* YTHSearchTextField.m in Sources */,
                AD73C5F51D4DE7DD0060437E /* GTMBase64.m in Sources */,
                7B41E99E1D4A04AE00F05CE2 /* main.m in Sources */,
                705F1E84251F085D0065350E /* Share.m in Sources */,
                7BC600A71D63F1B9005CE8FD /* searchViewController.m in Sources */,
                70ED36F7266280EA00E51E79 /* UIView+SDExtension.m in Sources */,
                2DECF93122325854002FF49F /* GuessLTableViewCell.m in Sources */,
                7BC24A5B1D50752B00F6D2D9 /* HeaderCollectionReusableView.m in Sources */,
                706CECC5264F94CC001FBEB7 /* PPTVPppView.m in Sources */,
                2DECF92D22325172002FF49F /* GuessLikeViewController.m in Sources */,
                7B7BB8341D65A3DA00066939 /* searchTableViewCell.m in Sources */,
                18FC90F71D9144320041D298 /* GoogleAdCollectionReusableView.m in Sources */,
                70ED36F8266280EA00E51E79 /* SDCollectionViewCell.m in Sources */,
                704C14BB265B72A5009DAB98 /* ZJContentView.m in Sources */,
                2D1198E5212E93CD0043EA39 /* UIViewController+Tools.m in Sources */,
                706CECDE264FC2A7001FBEB7 /* PPTVBottomVIpVIew.m in Sources */,
                7B7BB82F1D65558500066939 /* SearchCollectionReusableView.m in Sources */,
                705F1F80251F1CA80065350E /* MJRefreshFooter.m in Sources */,
                7BFBC6901D6705DD0058FFEB /* StorageSpaceTableViewCell.m in Sources */,
                7034AC992663BCF00056133F /* SearchRecordCell.m in Sources */,
                7B1FF0BA1D670A1F00E6C207 /* AllSpecialController.m in Sources */,
                7BC24A521D50282200F6D2D9 /* YTHsharedManger.m in Sources */,
                187A74581DF79DDF001E856F /* UILabel+LXAdd.m in Sources */,
                7BCE16771D644EB8004EAD5A /* SearchCollectionViewCell.m in Sources */,
                7B8ADA461D589448007A3FFD /* XYRVideoDetailModel.m in Sources */,
                18E943EF205767120019FD04 /* discoverViewController.m in Sources */,
                704C14CB265B76D2009DAB98 /* ListController.m in Sources */,
                705F1F7B251F1CA80065350E /* MJRefreshStateTrailer.m in Sources */,
                705F1F7D251F1CA80065350E /* MJRefreshNormalHeader.m in Sources */,
                705F1F7F251F1CA80065350E /* MJRefreshGifHeader.m in Sources */,
                18E943E62057656C0019FD04 /* recommendViewController.m in Sources */,
                70ED36DF26625AF600E51E79 /* ToDayHotCell.m in Sources */,
                7BB429141D4B5FC900AA2D11 /* UIImage+YTH.m in Sources */,
                7B1FF0DD1D670B8800E6C207 /* attentionView.m in Sources */,
                70D5934525EA1FAE00438F1A /* PPTVController.m in Sources */,
                1884A6031E545D4900548480 /* PopoverViewCell.m in Sources */,
                7030BAA326A40201003050E0 /* BuyVipController.m in Sources */,
                7BFBC6461D6703E40058FFEB /* WebControllerView.m in Sources */,
                18BC12B11EDEA87D001E2FB0 /* LiveListTableViewCell.m in Sources */,
                7B1FF0AE1D67094500E6C207 /* CellHead.m in Sources */,
                705F1F6E251F1CA80065350E /* UIScrollView+MJRefresh.m in Sources */,
                18BC12A71EDEA7AD001E2FB0 /* HotLiveTableViewCell.m in Sources */,
                7034AC9F2663BDFE0056133F /* SearchRecordHeaderView.m in Sources */,
                704C14BF265B72A5009DAB98 /* ZJScrollPageView.m in Sources */,
                70ED36D926624F4700E51E79 /* RecommendHeaderViewCell.m in Sources */,
                7B59CC131D5B16CC000B357F /* GroupfootSection.m in Sources */,
                2DC9303C26C3B6C700B5C669 /* SearchADCell.m in Sources */,
                702904BD2687292400F93618 /* SearchCell.m in Sources */,
                704C1489265A936B009DAB98 /* BaseController.m in Sources */,
                18ED606C1E1632E300AF8252 /* StartCollectionViewCell.m in Sources */,
            );
            runOnlyForDeploymentPostprocessing = 0;
        };
/* End PBXSourcesBuildPhase section */
 
/* Begin PBXVariantGroup section */
        7B41E9A51D4A04AE00F05CE2 /* Main.storyboard */ = {
            isa = PBXVariantGroup;
            children = (
                7B41E9A61D4A04AE00F05CE2 /* Base */,
                7BBD77801D4AFCD3004D6FE4 /* zh-Hans */,
            );
            name = Main.storyboard;
            sourceTree = "<group>";
        };
        7B41E9AA1D4A04AE00F05CE2 /* LaunchScreen.storyboard */ = {
            isa = PBXVariantGroup;
            children = (
                7B41E9AB1D4A04AE00F05CE2 /* Base */,
                7BBD77811D4AFCD3004D6FE4 /* zh-Hans */,
            );
            name = LaunchScreen.storyboard;
            path = BuWanVideo2.0;
            sourceTree = "<group>";
        };
/* End PBXVariantGroup section */
 
/* Begin XCBuildConfiguration section */
        7B41E9AE1D4A04AE00F05CE2 /* Debug */ = {
            isa = XCBuildConfiguration;
            buildSettings = {
                ALWAYS_SEARCH_USER_PATHS = NO;
                CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED = YES;
                CLANG_ANALYZER_NONNULL = YES;
                CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
                CLANG_CXX_LIBRARY = "libc++";
                CLANG_ENABLE_MODULES = YES;
                CLANG_ENABLE_OBJC_ARC = YES;
                CLANG_WARN_BOOL_CONVERSION = YES;
                CLANG_WARN_CONSTANT_CONVERSION = YES;
                CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
                CLANG_WARN_EMPTY_BODY = YES;
                CLANG_WARN_ENUM_CONVERSION = YES;
                CLANG_WARN_INFINITE_RECURSION = YES;
                CLANG_WARN_INT_CONVERSION = YES;
                CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
                CLANG_WARN_SUSPICIOUS_MOVE = YES;
                CLANG_WARN_UNREACHABLE_CODE = YES;
                CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
                "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
                COPY_PHASE_STRIP = NO;
                DEBUG_INFORMATION_FORMAT = dwarf;
                ENABLE_STRICT_OBJC_MSGSEND = YES;
                ENABLE_TESTABILITY = YES;
                GCC_C_LANGUAGE_STANDARD = gnu99;
                GCC_DYNAMIC_NO_PIC = NO;
                GCC_NO_COMMON_BLOCKS = YES;
                GCC_OPTIMIZATION_LEVEL = 0;
                GCC_PREPROCESSOR_DEFINITIONS = (
                    "DEBUG=1",
                    "$(inherited)",
                );
                GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
                GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
                GCC_WARN_UNDECLARED_SELECTOR = YES;
                GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
                GCC_WARN_UNUSED_FUNCTION = YES;
                GCC_WARN_UNUSED_VARIABLE = YES;
                IPHONEOS_DEPLOYMENT_TARGET = 8.1;
                MTL_ENABLE_DEBUG_INFO = YES;
                ONLY_ACTIVE_ARCH = YES;
                SDKROOT = iphoneos;
            };
            name = Debug;
        };
        7B41E9AF1D4A04AE00F05CE2 /* Release */ = {
            isa = XCBuildConfiguration;
            buildSettings = {
                ALWAYS_SEARCH_USER_PATHS = NO;
                CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED = YES;
                CLANG_ANALYZER_NONNULL = YES;
                CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
                CLANG_CXX_LIBRARY = "libc++";
                CLANG_ENABLE_MODULES = YES;
                CLANG_ENABLE_OBJC_ARC = YES;
                CLANG_WARN_BOOL_CONVERSION = YES;
                CLANG_WARN_CONSTANT_CONVERSION = YES;
                CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
                CLANG_WARN_EMPTY_BODY = YES;
                CLANG_WARN_ENUM_CONVERSION = YES;
                CLANG_WARN_INFINITE_RECURSION = YES;
                CLANG_WARN_INT_CONVERSION = YES;
                CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
                CLANG_WARN_SUSPICIOUS_MOVE = YES;
                CLANG_WARN_UNREACHABLE_CODE = YES;
                CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
                "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
                COPY_PHASE_STRIP = NO;
                DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
                ENABLE_NS_ASSERTIONS = NO;
                ENABLE_STRICT_OBJC_MSGSEND = YES;
                GCC_C_LANGUAGE_STANDARD = gnu99;
                GCC_NO_COMMON_BLOCKS = YES;
                GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
                GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
                GCC_WARN_UNDECLARED_SELECTOR = YES;
                GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
                GCC_WARN_UNUSED_FUNCTION = YES;
                GCC_WARN_UNUSED_VARIABLE = YES;
                IPHONEOS_DEPLOYMENT_TARGET = 8.1;
                MTL_ENABLE_DEBUG_INFO = NO;
                SDKROOT = iphoneos;
                VALIDATE_PRODUCT = YES;
            };
            name = Release;
        };
        7B41E9B11D4A04AE00F05CE2 /* Debug */ = {
            isa = XCBuildConfiguration;
            baseConfigurationReference = 2C139B9B5CB9A7C07D2CEE9C /* Pods-BuWanVideo2.0.debug.xcconfig */;
            buildSettings = {
                ARCHS = "$(ARCHS_STANDARD)";
                ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
                ASSETCATALOG_COMPILER_LAUNCHIMAGE_NAME = LaunchImage;
                CLANG_ENABLE_OBJC_WEAK = YES;
                CODE_SIGN_ENTITLEMENTS = BuWanVideo2.0/BuWanVideo2.0.entitlements;
                CODE_SIGN_IDENTITY = "iPhone Developer";
                "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
                CODE_SIGN_STYLE = Automatic;
                CURRENT_PROJECT_VERSION = 88;
                DEVELOPMENT_TEAM = 98HSDT7AP4;
                ENABLE_BITCODE = NO;
                FRAMEWORK_SEARCH_PATHS = (
                    "$(inherited)",
                    "$(PROJECT_DIR)/BuWanVideo2.0",
                    "$(PROJECT_DIR)/BuWanVideo2.0/ALiTrade\\ -\\ 3.0.3",
                    "$(PROJECT_DIR)/Pods/YYImage/Vendor",
                    "$(PROJECT_DIR)/BuWanVideo2.0/CSJ",
                );
                GCC_PREFIX_HEADER = "$(SRCROOT)/PrefixHeader.pch";
                GCC_PREPROCESSOR_DEFINITIONS = (
                    "$(inherited)",
                    "COCOAPODS=1",
                    "$(inherited)",
                    "PB_FIELD_32BIT=1",
                    "PB_NO_PACKED_STRUCTS=1",
                    "SD_WEBP=1",
                );
                HEADER_SEARCH_PATHS = (
                    "$(inherited)",
                    "${PODS_ROOT}/Firebase/Core/Sources",
                    "$(inherited)",
                    "\"${PODS_ROOT}/Headers/Public\"",
                    "\"${PODS_ROOT}/Headers/Public/AFNetworking\"",
                    "\"${PODS_ROOT}/Headers/Public/Firebase\"",
                    "\"${PODS_ROOT}/Headers/Public/FirebaseAnalytics\"",
                    "\"${PODS_ROOT}/Headers/Public/FirebaseCore\"",
                    "\"${PODS_ROOT}/Headers/Public/FirebaseInstanceID\"",
                    "\"${PODS_ROOT}/Headers/Public/Google-Mobile-Ads-SDK\"",
                    "\"${PODS_ROOT}/Headers/Public/GoogleInterchangeUtilities\"",
                    "\"${PODS_ROOT}/Headers/Public/GoogleSymbolUtilities\"",
                    "\"${PODS_ROOT}/Headers/Public/GoogleUtilities\"",
                    "\"${PODS_ROOT}/Headers/Public/MJRefresh\"",
                    "\"${PODS_ROOT}/Headers/Public/SDWebImage\"",
                    "\"${PODS_ROOT}/Headers/Public/SVProgressHUD\"",
                    "\"${PODS_ROOT}/Headers/Public/UMengAnalytics\"",
                    "\"${PODS_ROOT}/Headers/Public/UMengSocialCOM\"",
                    "\"${PODS_ROOT}/Headers/Public/YYCache\"",
                    "\"${PODS_ROOT}/Headers/Public/YYImage\"",
                    "\"${PODS_ROOT}/Headers/Public/YYModel\"",
                    "\"${PODS_ROOT}/Headers/Public/YYWebImage\"",
                );
                INFOPLIST_FILE = BuWanVideo2.0/Info.plist;
                IPHONEOS_DEPLOYMENT_TARGET = 8.0;
                LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
                LIBRARY_SEARCH_PATHS = (
                    "$(inherited)",
                    "$(PROJECT_DIR)/BuWanVideo2.0/AdsMoGoSDK",
                    "$(PROJECT_DIR)/BuWanVideo2.0/GDTMob_SDK_430/libs",
                    "$(PROJECT_DIR)/BuWanVideo2.0/YouTuEngineMediaPlayer",
                    "$(PROJECT_DIR)/BuWanVideo2.0/GDTMob_SDK_430/AdsMoGoAdapter/libs",
                    "$(PROJECT_DIR)/BuWanVideo2.0/InMobi_SDK_521/Libs",
                    "$(PROJECT_DIR)/BuWanVideo2.0/UMSocial_Sdk_5.2.1",
                    "$(PROJECT_DIR)/BuWanVideo2.0",
                    "$(PROJECT_DIR)/BuWanVideo2.0/MobileTracking",
                    "$(PROJECT_DIR)/BuWanVideo2.0/SDK4.3.1/Libs",
                    "$(PROJECT_DIR)/BuWanVideo2.0/DKADSetLibs/DK_SDK_1.2.1",
                    "$(PROJECT_DIR)/BuWanVideo2.0/DKADSetLibs/GDT_SDK_4.5.1",
                    "$(PROJECT_DIR)/BuWanVideo2.0/DKADSet_iOS_SDK_1.2.0_iphoneOS",
                    "$(PROJECT_DIR)/BuWanVideo2.0/GDT_iOS_SDK",
                );
                MARKETING_VERSION = 3.1.2;
                ONLY_ACTIVE_ARCH = YES;
                OTHER_LDFLAGS = (
                    "$(inherited)",
                    "-ObjC",
                    "-l\"c++\"",
                    "-l\"iconv\"",
                    "-l\"sqlite3\"",
                    "-l\"stdc++\"",
                    "-l\"z\"",
                    "-framework",
                    "\"AFNetworking\"",
                    "-framework",
                    "\"AVFoundation\"",
                    "-framework",
                    "\"Accounts\"",
                    "-framework",
                    "\"AddressBook\"",
                    "-framework",
                    "\"AudioToolbox\"",
                    "-framework",
                    "\"CoreData\"",
                    "-framework",
                    "\"CoreGraphics\"",
                    "-framework",
                    "\"CoreMedia\"",
                    "-framework",
                    "\"CoreMotion\"",
                    "-framework",
                    "\"CoreTelephony\"",
                    "-framework",
                    "\"CoreVideo\"",
                    "-framework",
                    "\"GLKit\"",
                    "-framework",
                    "\"ImageIO\"",
                    "-framework",
                    "\"MediaPlayer\"",
                    "-framework",
                    "\"MessageUI\"",
                    "-framework",
                    "\"MobileCoreServices\"",
                    "-framework",
                    "\"OpenGLES\"",
                    "-framework",
                    "\"SDWebImage\"",
                    "-framework",
                    "\"SVProgressHUD\"",
                    "-framework",
                    "\"Social\"",
                    "-framework",
                    "\"StoreKit\"",
                    "-framework",
                    "\"SystemConfiguration\"",
                    "-framework",
                    "\"YYCache\"",
                    "-framework",
                    "\"YYImage\"",
                    "-framework",
                    "\"YYModel\"",
                    "-framework",
                    "\"YYWebImage\"",
                    "-weak_framework",
                    "\"AdSupport\"",
                    "-weak_framework",
                    "\"SafariServices\"",
                    "-weak_framework",
                    "\"WebKit\"",
                    "-lstdc++",
                );
                PRODUCT_BUNDLE_IDENTIFIER = com.yeshi.buwanshequ.ios;
                PRODUCT_NAME = "$(TARGET_NAME)";
                PROVISIONING_PROFILE = "";
                PROVISIONING_PROFILE_SPECIFIER = "";
                TARGETED_DEVICE_FAMILY = "1,2";
            };
            name = Debug;
        };
        7B41E9B21D4A04AE00F05CE2 /* Release */ = {
            isa = XCBuildConfiguration;
            baseConfigurationReference = 5326AC3933907F23F3929227 /* Pods-BuWanVideo2.0.release.xcconfig */;
            buildSettings = {
                ARCHS = "$(ARCHS_STANDARD)";
                ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
                ASSETCATALOG_COMPILER_LAUNCHIMAGE_NAME = LaunchImage;
                CLANG_ENABLE_OBJC_WEAK = YES;
                CODE_SIGN_ENTITLEMENTS = BuWanVideo2.0/BuWanVideo2.0.entitlements;
                CODE_SIGN_IDENTITY = "iPhone Developer";
                "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
                CODE_SIGN_STYLE = Automatic;
                CURRENT_PROJECT_VERSION = 88;
                DEVELOPMENT_TEAM = 98HSDT7AP4;
                ENABLE_BITCODE = NO;
                FRAMEWORK_SEARCH_PATHS = (
                    "$(inherited)",
                    "$(PROJECT_DIR)/BuWanVideo2.0",
                    "$(PROJECT_DIR)/BuWanVideo2.0/ALiTrade\\ -\\ 3.0.3",
                    "$(PROJECT_DIR)/Pods/YYImage/Vendor",
                    "$(PROJECT_DIR)/BuWanVideo2.0/CSJ",
                );
                GCC_PREFIX_HEADER = "$(SRCROOT)/PrefixHeader.pch";
                GCC_PREPROCESSOR_DEFINITIONS = (
                    "$(inherited)",
                    "COCOAPODS=1",
                    "$(inherited)",
                    "PB_FIELD_32BIT=1",
                    "PB_NO_PACKED_STRUCTS=1",
                    "SD_WEBP=1",
                );
                HEADER_SEARCH_PATHS = (
                    "$(inherited)",
                    "${PODS_ROOT}/Firebase/Core/Sources",
                    "$(inherited)",
                    "\"${PODS_ROOT}/Headers/Public\"",
                    "\"${PODS_ROOT}/Headers/Public/AFNetworking\"",
                    "\"${PODS_ROOT}/Headers/Public/Firebase\"",
                    "\"${PODS_ROOT}/Headers/Public/FirebaseAnalytics\"",
                    "\"${PODS_ROOT}/Headers/Public/FirebaseCore\"",
                    "\"${PODS_ROOT}/Headers/Public/FirebaseInstanceID\"",
                    "\"${PODS_ROOT}/Headers/Public/Google-Mobile-Ads-SDK\"",
                    "\"${PODS_ROOT}/Headers/Public/GoogleInterchangeUtilities\"",
                    "\"${PODS_ROOT}/Headers/Public/GoogleSymbolUtilities\"",
                    "\"${PODS_ROOT}/Headers/Public/GoogleUtilities\"",
                    "\"${PODS_ROOT}/Headers/Public/MJRefresh\"",
                    "\"${PODS_ROOT}/Headers/Public/SDWebImage\"",
                    "\"${PODS_ROOT}/Headers/Public/SVProgressHUD\"",
                    "\"${PODS_ROOT}/Headers/Public/UMengAnalytics\"",
                    "\"${PODS_ROOT}/Headers/Public/UMengSocialCOM\"",
                    "\"${PODS_ROOT}/Headers/Public/YYCache\"",
                    "\"${PODS_ROOT}/Headers/Public/YYImage\"",
                    "\"${PODS_ROOT}/Headers/Public/YYModel\"",
                    "\"${PODS_ROOT}/Headers/Public/YYWebImage\"",
                );
                INFOPLIST_FILE = BuWanVideo2.0/Info.plist;
                IPHONEOS_DEPLOYMENT_TARGET = 8.0;
                LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
                LIBRARY_SEARCH_PATHS = (
                    "$(inherited)",
                    "$(PROJECT_DIR)/BuWanVideo2.0/AdsMoGoSDK",
                    "$(PROJECT_DIR)/BuWanVideo2.0/GDTMob_SDK_430/libs",
                    "$(PROJECT_DIR)/BuWanVideo2.0/YouTuEngineMediaPlayer",
                    "$(PROJECT_DIR)/BuWanVideo2.0/GDTMob_SDK_430/AdsMoGoAdapter/libs",
                    "$(PROJECT_DIR)/BuWanVideo2.0/InMobi_SDK_521/Libs",
                    "$(PROJECT_DIR)/BuWanVideo2.0/UMSocial_Sdk_5.2.1",
                    "$(PROJECT_DIR)/BuWanVideo2.0",
                    "$(PROJECT_DIR)/BuWanVideo2.0/MobileTracking",
                    "$(PROJECT_DIR)/BuWanVideo2.0/SDK4.3.1/Libs",
                    "$(PROJECT_DIR)/BuWanVideo2.0/DKADSetLibs/DK_SDK_1.2.1",
                    "$(PROJECT_DIR)/BuWanVideo2.0/DKADSetLibs/GDT_SDK_4.5.1",
                    "$(PROJECT_DIR)/BuWanVideo2.0/DKADSet_iOS_SDK_1.2.0_iphoneOS",
                    "$(PROJECT_DIR)/BuWanVideo2.0/GDT_iOS_SDK",
                );
                MARKETING_VERSION = 3.1.2;
                ONLY_ACTIVE_ARCH = NO;
                OTHER_LDFLAGS = (
                    "$(inherited)",
                    "-ObjC",
                    "-l\"c++\"",
                    "-l\"iconv\"",
                    "-l\"sqlite3\"",
                    "-l\"stdc++\"",
                    "-l\"z\"",
                    "-framework",
                    "\"AFNetworking\"",
                    "-framework",
                    "\"AVFoundation\"",
                    "-framework",
                    "\"Accounts\"",
                    "-framework",
                    "\"AddressBook\"",
                    "-framework",
                    "\"AudioToolbox\"",
                    "-framework",
                    "\"CoreData\"",
                    "-framework",
                    "\"CoreGraphics\"",
                    "-framework",
                    "\"CoreMedia\"",
                    "-framework",
                    "\"CoreMotion\"",
                    "-framework",
                    "\"CoreTelephony\"",
                    "-framework",
                    "\"CoreVideo\"",
                    "-framework",
                    "\"GLKit\"",
                    "-framework",
                    "\"ImageIO\"",
                    "-framework",
                    "\"MediaPlayer\"",
                    "-framework",
                    "\"MessageUI\"",
                    "-framework",
                    "\"MobileCoreServices\"",
                    "-framework",
                    "\"OpenGLES\"",
                    "-framework",
                    "\"SDWebImage\"",
                    "-framework",
                    "\"SVProgressHUD\"",
                    "-framework",
                    "\"Social\"",
                    "-framework",
                    "\"StoreKit\"",
                    "-framework",
                    "\"SystemConfiguration\"",
                    "-framework",
                    "\"YYCache\"",
                    "-framework",
                    "\"YYImage\"",
                    "-framework",
                    "\"YYModel\"",
                    "-framework",
                    "\"YYWebImage\"",
                    "-weak_framework",
                    "\"AdSupport\"",
                    "-weak_framework",
                    "\"SafariServices\"",
                    "-weak_framework",
                    "\"WebKit\"",
                    "-lstdc++",
                );
                PRODUCT_BUNDLE_IDENTIFIER = com.yeshi.buwanshequ.ios;
                PRODUCT_NAME = "$(TARGET_NAME)";
                PROVISIONING_PROFILE = "";
                PROVISIONING_PROFILE_SPECIFIER = "";
                TARGETED_DEVICE_FAMILY = "1,2";
            };
            name = Release;
        };
/* End XCBuildConfiguration section */
 
/* Begin XCConfigurationList section */
        7B41E9941D4A04AE00F05CE2 /* Build configuration list for PBXProject "BuWanVideo2.0" */ = {
            isa = XCConfigurationList;
            buildConfigurations = (
                7B41E9AE1D4A04AE00F05CE2 /* Debug */,
                7B41E9AF1D4A04AE00F05CE2 /* Release */,
            );
            defaultConfigurationIsVisible = 0;
            defaultConfigurationName = Release;
        };
        7B41E9B01D4A04AE00F05CE2 /* Build configuration list for PBXNativeTarget "BuWanVideo2.0" */ = {
            isa = XCConfigurationList;
            buildConfigurations = (
                7B41E9B11D4A04AE00F05CE2 /* Debug */,
                7B41E9B21D4A04AE00F05CE2 /* Release */,
            );
            defaultConfigurationIsVisible = 0;
            defaultConfigurationName = Release;
        };
/* End XCConfigurationList section */
    };
    rootObject = 7B41E9911D4A04AE00F05CE2 /* Project object */;
}