admin
2020-08-08 3945f9a2c70335958c64c73894e3a1a14a7113b3
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
3541
3542
3543
3544
3545
3546
3547
3548
3549
3550
3551
3552
3553
3554
3555
3556
3557
3558
3559
3560
3561
3562
3563
3564
3565
3566
3567
3568
3569
3570
3571
3572
3573
3574
3575
3576
3577
3578
3579
3580
3581
3582
3583
3584
3585
3586
3587
3588
3589
3590
3591
3592
3593
3594
3595
3596
3597
3598
3599
3600
3601
3602
3603
3604
3605
3606
3607
3608
3609
3610
3611
3612
3613
3614
3615
3616
3617
3618
3619
3620
3621
3622
3623
3624
3625
3626
3627
3628
3629
3630
3631
3632
3633
3634
3635
3636
3637
3638
3639
3640
3641
3642
3643
3644
3645
3646
3647
3648
3649
3650
3651
3652
3653
3654
3655
3656
3657
3658
3659
3660
3661
3662
3663
3664
3665
3666
3667
3668
3669
3670
3671
3672
3673
3674
3675
3676
3677
3678
3679
3680
3681
3682
3683
3684
3685
3686
3687
3688
3689
3690
3691
3692
3693
3694
3695
3696
3697
3698
3699
3700
3701
3702
3703
3704
3705
3706
3707
3708
3709
3710
3711
3712
3713
3714
3715
3716
3717
3718
3719
3720
3721
3722
3723
3724
3725
3726
3727
3728
3729
3730
3731
3732
3733
3734
3735
3736
3737
3738
3739
3740
3741
3742
3743
3744
3745
3746
3747
3748
3749
3750
3751
3752
3753
3754
3755
3756
3757
3758
3759
3760
3761
3762
3763
3764
3765
3766
3767
3768
3769
3770
3771
3772
3773
3774
3775
3776
3777
3778
3779
3780
3781
3782
3783
3784
3785
3786
3787
3788
3789
3790
3791
3792
3793
3794
3795
3796
3797
3798
3799
3800
3801
3802
3803
3804
3805
3806
3807
3808
3809
3810
3811
3812
3813
3814
3815
3816
3817
3818
3819
3820
3821
3822
3823
3824
3825
3826
3827
3828
3829
3830
3831
3832
3833
3834
3835
3836
3837
3838
3839
3840
3841
3842
3843
3844
3845
3846
3847
3848
3849
3850
3851
3852
3853
3854
3855
3856
3857
3858
3859
3860
3861
3862
3863
3864
3865
3866
3867
3868
3869
3870
3871
3872
3873
3874
3875
3876
3877
3878
3879
3880
3881
3882
3883
3884
3885
3886
3887
3888
3889
3890
3891
3892
3893
3894
3895
3896
3897
3898
3899
3900
3901
3902
3903
3904
3905
3906
3907
3908
3909
3910
3911
3912
3913
3914
3915
3916
3917
3918
3919
3920
3921
3922
3923
3924
3925
3926
3927
3928
3929
3930
3931
3932
3933
3934
3935
3936
3937
3938
3939
3940
3941
3942
3943
3944
3945
3946
3947
3948
3949
3950
3951
3952
3953
3954
3955
3956
3957
3958
3959
3960
3961
3962
3963
3964
3965
3966
3967
3968
3969
3970
3971
3972
3973
3974
3975
3976
3977
3978
3979
3980
3981
3982
3983
3984
3985
3986
3987
3988
3989
3990
3991
3992
3993
3994
3995
3996
3997
3998
3999
4000
4001
4002
4003
4004
4005
4006
4007
4008
4009
4010
4011
4012
4013
4014
4015
4016
4017
4018
4019
4020
4021
4022
4023
4024
4025
4026
4027
4028
4029
4030
4031
4032
4033
4034
4035
4036
4037
4038
4039
4040
4041
4042
4043
4044
4045
4046
4047
4048
4049
4050
4051
4052
4053
4054
4055
4056
4057
4058
4059
4060
4061
4062
4063
4064
4065
4066
4067
4068
4069
4070
4071
4072
4073
4074
4075
4076
4077
4078
4079
4080
4081
4082
4083
4084
4085
4086
4087
4088
4089
4090
4091
4092
4093
4094
4095
4096
4097
4098
4099
4100
4101
4102
4103
4104
4105
4106
4107
4108
4109
4110
4111
4112
4113
4114
4115
4116
4117
4118
4119
4120
4121
4122
4123
4124
4125
4126
4127
4128
4129
4130
4131
4132
4133
4134
4135
4136
4137
4138
4139
4140
4141
4142
4143
4144
4145
4146
4147
4148
4149
4150
4151
4152
4153
4154
4155
4156
4157
4158
4159
4160
4161
4162
4163
4164
4165
4166
4167
4168
4169
4170
4171
4172
4173
4174
4175
4176
4177
4178
4179
4180
4181
4182
4183
4184
4185
4186
4187
4188
4189
4190
4191
4192
4193
4194
4195
4196
4197
4198
4199
4200
4201
4202
4203
4204
4205
4206
4207
4208
4209
4210
4211
4212
4213
4214
4215
4216
4217
4218
4219
4220
4221
4222
4223
4224
4225
4226
4227
4228
4229
4230
4231
4232
4233
4234
4235
4236
4237
4238
4239
4240
4241
4242
4243
4244
4245
4246
4247
4248
4249
4250
4251
4252
4253
4254
4255
4256
4257
4258
4259
4260
4261
4262
4263
4264
4265
4266
4267
4268
4269
4270
4271
4272
4273
4274
4275
4276
4277
4278
4279
4280
4281
4282
4283
4284
4285
4286
4287
4288
4289
4290
4291
4292
4293
4294
4295
4296
4297
4298
4299
4300
4301
4302
4303
4304
4305
4306
4307
4308
4309
4310
4311
4312
4313
4314
4315
4316
4317
4318
4319
4320
4321
4322
4323
4324
4325
4326
4327
4328
4329
4330
4331
4332
4333
4334
4335
4336
4337
4338
4339
4340
4341
4342
4343
4344
4345
4346
4347
4348
4349
4350
4351
4352
4353
4354
4355
4356
4357
4358
4359
4360
4361
4362
4363
4364
4365
4366
4367
4368
4369
4370
4371
4372
4373
4374
4375
4376
4377
4378
4379
4380
4381
4382
4383
4384
4385
4386
4387
4388
4389
4390
4391
4392
4393
4394
4395
4396
4397
4398
4399
4400
4401
4402
4403
4404
4405
4406
4407
4408
4409
4410
4411
4412
4413
4414
4415
4416
4417
4418
4419
4420
4421
4422
4423
4424
4425
4426
4427
4428
4429
4430
4431
4432
4433
4434
4435
4436
4437
4438
4439
4440
4441
4442
4443
4444
4445
4446
4447
4448
4449
4450
4451
4452
4453
4454
4455
4456
4457
4458
4459
4460
4461
4462
4463
4464
4465
4466
4467
4468
4469
4470
4471
4472
4473
4474
4475
4476
4477
4478
4479
4480
4481
4482
4483
4484
4485
4486
4487
4488
4489
4490
4491
4492
4493
4494
4495
4496
4497
4498
4499
4500
4501
4502
4503
4504
4505
4506
4507
4508
4509
4510
4511
4512
4513
4514
4515
4516
4517
4518
4519
4520
4521
4522
4523
4524
4525
4526
4527
4528
4529
4530
4531
4532
4533
4534
4535
4536
4537
4538
4539
4540
4541
4542
4543
4544
4545
4546
4547
4548
4549
4550
4551
4552
4553
4554
4555
4556
4557
4558
4559
4560
4561
4562
4563
4564
4565
4566
4567
4568
4569
4570
4571
4572
4573
4574
4575
4576
4577
4578
4579
4580
4581
4582
4583
4584
4585
4586
4587
4588
4589
4590
4591
4592
4593
4594
4595
4596
4597
4598
4599
4600
4601
4602
4603
4604
4605
4606
4607
4608
4609
4610
4611
4612
4613
4614
4615
4616
4617
4618
4619
4620
4621
4622
4623
4624
4625
4626
4627
4628
4629
4630
4631
4632
4633
4634
4635
4636
4637
4638
4639
4640
4641
4642
4643
4644
4645
4646
4647
4648
4649
4650
4651
4652
4653
4654
4655
4656
4657
4658
4659
4660
4661
4662
4663
4664
4665
4666
4667
4668
4669
4670
4671
4672
4673
4674
4675
4676
4677
4678
4679
4680
4681
4682
4683
4684
4685
4686
4687
4688
4689
4690
4691
4692
4693
4694
4695
4696
4697
4698
4699
4700
4701
4702
4703
4704
4705
4706
4707
4708
4709
4710
4711
4712
4713
4714
4715
4716
4717
4718
4719
4720
4721
4722
4723
4724
4725
4726
4727
4728
4729
4730
4731
4732
4733
4734
4735
4736
4737
4738
int anim abc_fade_in 0x7f010000
int anim abc_fade_out 0x7f010001
int anim abc_grow_fade_in_from_bottom 0x7f010002
int anim abc_popup_enter 0x7f010003
int anim abc_popup_exit 0x7f010004
int anim abc_shrink_fade_out_from_bottom 0x7f010005
int anim abc_slide_in_bottom 0x7f010006
int anim abc_slide_in_top 0x7f010007
int anim abc_slide_out_bottom 0x7f010008
int anim abc_slide_out_top 0x7f010009
int anim abc_tooltip_enter 0x7f01000a
int anim abc_tooltip_exit 0x7f01000b
int anim bottom_dialog_enter 0x7f01000c
int anim bottom_dialog_exit 0x7f01000d
int anim footer_appear 0x7f01000e
int anim footer_disappear 0x7f01000f
int anim pop_dismiss 0x7f010010
int anim pop_show 0x7f010011
int anim rotate_animation 0x7f010012
int anim shake_umeng_socialize_cycle_5 0x7f010013
int anim shake_umeng_socialize_dlg_alpha 0x7f010014
int anim shake_umeng_socialize_dlg_scale 0x7f010015
int anim shake_umeng_socialize_edit_anim 0x7f010016
int anim shake_umeng_socialize_imageview_rotate 0x7f010017
int anim shake_umeng_socialize_scrshot_dlg 0x7f010018
int anim sliding_dialog_enter 0x7f010019
int anim sliding_dialog_exit 0x7f01001a
int anim tt_dislike_animation_dismiss 0x7f01001b
int anim tt_dislike_animation_show 0x7f01001c
int anim umeng_socialize_fade_in 0x7f01001d
int anim umeng_socialize_fade_out 0x7f01001e
int anim umeng_socialize_shareboard_animation_in 0x7f01001f
int anim umeng_socialize_shareboard_animation_out 0x7f010020
int anim umeng_socialize_slide_in_from_bottom 0x7f010021
int anim umeng_socialize_slide_out_from_bottom 0x7f010022
int anim update_loading_progressbar 0x7f010023
int attr actionBarDivider 0x7f020000
int attr actionBarItemBackground 0x7f020001
int attr actionBarPopupTheme 0x7f020002
int attr actionBarSize 0x7f020003
int attr actionBarSplitStyle 0x7f020004
int attr actionBarStyle 0x7f020005
int attr actionBarTabBarStyle 0x7f020006
int attr actionBarTabStyle 0x7f020007
int attr actionBarTabTextStyle 0x7f020008
int attr actionBarTheme 0x7f020009
int attr actionBarWidgetTheme 0x7f02000a
int attr actionButtonStyle 0x7f02000b
int attr actionDropDownStyle 0x7f02000c
int attr actionLayout 0x7f02000d
int attr actionMenuTextAppearance 0x7f02000e
int attr actionMenuTextColor 0x7f02000f
int attr actionModeBackground 0x7f020010
int attr actionModeCloseButtonStyle 0x7f020011
int attr actionModeCloseDrawable 0x7f020012
int attr actionModeCopyDrawable 0x7f020013
int attr actionModeCutDrawable 0x7f020014
int attr actionModeFindDrawable 0x7f020015
int attr actionModePasteDrawable 0x7f020016
int attr actionModePopupWindowStyle 0x7f020017
int attr actionModeSelectAllDrawable 0x7f020018
int attr actionModeShareDrawable 0x7f020019
int attr actionModeSplitBackground 0x7f02001a
int attr actionModeStyle 0x7f02001b
int attr actionModeWebSearchDrawable 0x7f02001c
int attr actionOverflowButtonStyle 0x7f02001d
int attr actionOverflowMenuStyle 0x7f02001e
int attr actionProviderClass 0x7f02001f
int attr actionViewClass 0x7f020020
int attr activityChooserViewStyle 0x7f020021
int attr alertDialogButtonGroupStyle 0x7f020022
int attr alertDialogCenterButtons 0x7f020023
int attr alertDialogStyle 0x7f020024
int attr alertDialogTheme 0x7f020025
int attr allowStacking 0x7f020026
int attr alpha 0x7f020027
int attr alphabeticModifiers 0x7f020028
int attr arcRadius 0x7f020029
int attr arrowHeadLength 0x7f02002a
int attr arrowShaftLength 0x7f02002b
int attr autoCompleteTextViewStyle 0x7f02002c
int attr autoSizeMaxTextSize 0x7f02002d
int attr autoSizeMinTextSize 0x7f02002e
int attr autoSizePresetSizes 0x7f02002f
int attr autoSizeStepGranularity 0x7f020030
int attr autoSizeTextType 0x7f020031
int attr auto_play 0x7f020032
int attr background 0x7f020033
int attr backgroundSplit 0x7f020034
int attr backgroundStacked 0x7f020035
int attr backgroundTint 0x7f020036
int attr backgroundTintMode 0x7f020037
int attr barLength 0x7f020038
int attr border_color 0x7f020039
int attr border_width 0x7f02003a
int attr borderlessButtonStyle 0x7f02003b
int attr buttonBarButtonStyle 0x7f02003c
int attr buttonBarNegativeButtonStyle 0x7f02003d
int attr buttonBarNeutralButtonStyle 0x7f02003e
int attr buttonBarPositiveButtonStyle 0x7f02003f
int attr buttonBarStyle 0x7f020040
int attr buttonGravity 0x7f020041
int attr buttonIconDimen 0x7f020042
int attr buttonPanelSideLayout 0x7f020043
int attr buttonStyle 0x7f020044
int attr buttonStyleSmall 0x7f020045
int attr buttonTint 0x7f020046
int attr buttonTintMode 0x7f020047
int attr centered 0x7f020048
int attr checkboxStyle 0x7f020049
int attr checkedTextViewStyle 0x7f02004a
int attr clipPadding 0x7f02004b
int attr closeIcon 0x7f02004c
int attr closeItemLayout 0x7f02004d
int attr closeOnClick 0x7f02004e
int attr collapseContentDescription 0x7f02004f
int attr collapseIcon 0x7f020050
int attr color 0x7f020051
int attr colorAccent 0x7f020052
int attr colorBackgroundFloating 0x7f020053
int attr colorButtonNormal 0x7f020054
int attr colorControlActivated 0x7f020055
int attr colorControlHighlight 0x7f020056
int attr colorControlNormal 0x7f020057
int attr colorError 0x7f020058
int attr colorPrimary 0x7f020059
int attr colorPrimaryDark 0x7f02005a
int attr colorSwitchThumbNormal 0x7f02005b
int attr column 0x7f02005c
int attr com_facebook_auxiliary_view_position 0x7f02005d
int attr com_facebook_confirm_logout 0x7f02005e
int attr com_facebook_foreground_color 0x7f02005f
int attr com_facebook_horizontal_alignment 0x7f020060
int attr com_facebook_is_cropped 0x7f020061
int attr com_facebook_login_text 0x7f020062
int attr com_facebook_logout_text 0x7f020063
int attr com_facebook_object_id 0x7f020064
int attr com_facebook_object_type 0x7f020065
int attr com_facebook_preset_size 0x7f020066
int attr com_facebook_style 0x7f020067
int attr com_facebook_tooltip_mode 0x7f020068
int attr commitIcon 0x7f020069
int attr contentDescription 0x7f02006a
int attr contentInsetEnd 0x7f02006b
int attr contentInsetEndWithActions 0x7f02006c
int attr contentInsetLeft 0x7f02006d
int attr contentInsetRight 0x7f02006e
int attr contentInsetStart 0x7f02006f
int attr contentInsetStartWithNavigation 0x7f020070
int attr controlBackground 0x7f020071
int attr coordinatorLayoutStyle 0x7f020072
int attr customNavigationLayout 0x7f020073
int attr dashGap 0x7f020074
int attr dashOrientation 0x7f020075
int attr dashWidth 0x7f020076
int attr defaultQueryHint 0x7f020077
int attr dialogPreferredPadding 0x7f020078
int attr dialogTheme 0x7f020079
int attr displayOptions 0x7f02007a
int attr divider 0x7f02007b
int attr dividerHorizontal 0x7f02007c
int attr dividerPadding 0x7f02007d
int attr dividerVertical 0x7f02007e
int attr drawableSize 0x7f02007f
int attr drawerArrowStyle 0x7f020080
int attr dropDownListViewStyle 0x7f020081
int attr dropdownListPreferredItemHeight 0x7f020082
int attr duration 0x7f020083
int attr editTextBackground 0x7f020084
int attr editTextColor 0x7f020085
int attr editTextStyle 0x7f020086
int attr elevation 0x7f020087
int attr emotionHeight 0x7f020088
int attr emotionSize 0x7f020089
int attr emotionWidth 0x7f02008a
int attr expandActivityOverflowButtonDrawable 0x7f02008b
int attr fadeDelay 0x7f02008c
int attr fadeLength 0x7f02008d
int attr fades 0x7f02008e
int attr fastScrollEnabled 0x7f02008f
int attr fastScrollHorizontalThumbDrawable 0x7f020090
int attr fastScrollHorizontalTrackDrawable 0x7f020091
int attr fastScrollVerticalThumbDrawable 0x7f020092
int attr fastScrollVerticalTrackDrawable 0x7f020093
int attr fillColor 0x7f020094
int attr font 0x7f020095
int attr fontFamily 0x7f020096
int attr fontProviderAuthority 0x7f020097
int attr fontProviderCerts 0x7f020098
int attr fontProviderFetchStrategy 0x7f020099
int attr fontProviderFetchTimeout 0x7f02009a
int attr fontProviderPackage 0x7f02009b
int attr fontProviderQuery 0x7f02009c
int attr fontStyle 0x7f02009d
int attr fontWeight 0x7f02009e
int attr footerColor 0x7f02009f
int attr footerIndicatorHeight 0x7f0200a0
int attr footerIndicatorStyle 0x7f0200a1
int attr footerIndicatorUnderlinePadding 0x7f0200a2
int attr footerLineHeight 0x7f0200a3
int attr footerPadding 0x7f0200a4
int attr fromDegrees 0x7f0200a5
int attr gapBetweenBars 0x7f0200a6
int attr gapWidth 0x7f0200a7
int attr gif 0x7f0200a8
int attr gifMoviewViewStyle 0x7f0200a9
int attr goIcon 0x7f0200aa
int attr height 0x7f0200ab
int attr hideOnContentScroll 0x7f0200ac
int attr homeAsUpIndicator 0x7f0200ad
int attr homeLayout 0x7f0200ae
int attr icon 0x7f0200af
int attr iconTint 0x7f0200b0
int attr iconTintMode 0x7f0200b1
int attr iconifiedByDefault 0x7f0200b2
int attr imageButtonStyle 0x7f0200b3
int attr indeterminateProgressStyle 0x7f0200b4
int attr initialActivityCount 0x7f0200b5
int attr isLightTheme 0x7f0200b6
int attr itemPadding 0x7f0200b7
int attr keylines 0x7f0200b8
int attr layout 0x7f0200b9
int attr layoutManager 0x7f0200ba
int attr layout_anchor 0x7f0200bb
int attr layout_anchorGravity 0x7f0200bc
int attr layout_behavior 0x7f0200bd
int attr layout_dodgeInsetEdges 0x7f0200be
int attr layout_insetEdge 0x7f0200bf
int attr layout_keyline 0x7f0200c0
int attr lineColor 0x7f0200c1
int attr linePosition 0x7f0200c2
int attr lineWidth 0x7f0200c3
int attr listChoiceBackgroundIndicator 0x7f0200c4
int attr listDividerAlertDialog 0x7f0200c5
int attr listItemLayout 0x7f0200c6
int attr listLayout 0x7f0200c7
int attr listMenuViewStyle 0x7f0200c8
int attr listPopupWindowStyle 0x7f0200c9
int attr listPreferredItemHeight 0x7f0200ca
int attr listPreferredItemHeightLarge 0x7f0200cb
int attr listPreferredItemHeightSmall 0x7f0200cc
int attr listPreferredItemPaddingLeft 0x7f0200cd
int attr listPreferredItemPaddingRight 0x7f0200ce
int attr logo 0x7f0200cf
int attr logoDescription 0x7f0200d0
int attr lxyTabPageIndicatorStyle 0x7f0200d1
int attr mainImage 0x7f0200d2
int attr maxButtonHeight 0x7f0200d3
int attr maxHeight 0x7f0200d4
int attr measureWithLargestChild 0x7f0200d5
int attr multiChoiceItemLayout 0x7f0200d6
int attr navigationContentDescription 0x7f0200d7
int attr navigationIcon 0x7f0200d8
int attr navigationMode 0x7f0200d9
int attr numericModifiers 0x7f0200da
int attr overlapAnchor 0x7f0200db
int attr paddingBottomNoButtons 0x7f0200dc
int attr paddingEnd 0x7f0200dd
int attr paddingStart 0x7f0200de
int attr paddingTopNoTitle 0x7f0200df
int attr pageColor 0x7f0200e0
int attr panelBackground 0x7f0200e1
int attr panelMenuListTheme 0x7f0200e2
int attr panelMenuListWidth 0x7f0200e3
int attr paused 0x7f0200e4
int attr popupMenuStyle 0x7f0200e5
int attr popupTheme 0x7f0200e6
int attr popupWindowStyle 0x7f0200e7
int attr preserveIconSpacing 0x7f0200e8
int attr progressBarPadding 0x7f0200e9
int attr progressBarStyle 0x7f0200ea
int attr queryBackground 0x7f0200eb
int attr queryHint 0x7f0200ec
int attr radioButtonStyle 0x7f0200ed
int attr radius 0x7f0200ee
int attr ratingBarStyle 0x7f0200ef
int attr ratingBarStyleIndicator 0x7f0200f0
int attr ratingBarStyleSmall 0x7f0200f1
int attr ratio 0x7f0200f2
int attr reverseLayout 0x7f0200f3
int attr rightPadding 0x7f0200f4
int attr scDividerWidth 0x7f0200f5
int attr scNextUnderLineColor 0x7f0200f6
int attr scTextColor 0x7f0200f7
int attr scTextCount 0x7f0200f8
int attr scTextFont 0x7f0200f9
int attr scTextSize 0x7f0200fa
int attr scUnderLineColor 0x7f0200fb
int attr scUnderLineStrokeWidth 0x7f0200fc
int attr searchHintIcon 0x7f0200fd
int attr searchIcon 0x7f0200fe
int attr searchViewStyle 0x7f0200ff
int attr seekBarStyle 0x7f020100
int attr selectableItemBackground 0x7f020101
int attr selectableItemBackgroundBorderless 0x7f020102
int attr selectedBold 0x7f020103
int attr selectedColor 0x7f020104
int attr shelfBackground 0x7f020105
int attr showAsAction 0x7f020106
int attr showDividers 0x7f020107
int attr showText 0x7f020108
int attr showTitle 0x7f020109
int attr singleChoiceItemLayout 0x7f02010a
int attr snap 0x7f02010b
int attr spanCount 0x7f02010c
int attr spinBars 0x7f02010d
int attr spinnerDropDownItemStyle 0x7f02010e
int attr spinnerStyle 0x7f02010f
int attr splitTrack 0x7f020110
int attr srcCompat 0x7f020111
int attr stackFromEnd 0x7f020112
int attr state_above_anchor 0x7f020113
int attr statusBarBackground 0x7f020114
int attr strokeColor 0x7f020115
int attr strokeWidth 0x7f020116
int attr subMenuArrow 0x7f020117
int attr submitBackground 0x7f020118
int attr subtitle 0x7f020119
int attr subtitleTextAppearance 0x7f02011a
int attr subtitleTextColor 0x7f02011b
int attr subtitleTextStyle 0x7f02011c
int attr suggestionRowLayout 0x7f02011d
int attr switchMinWidth 0x7f02011e
int attr switchPadding 0x7f02011f
int attr switchStyle 0x7f020120
int attr switchTextAppearance 0x7f020121
int attr textAllCaps 0x7f020122
int attr textAppearanceLargePopupMenu 0x7f020123
int attr textAppearanceListItem 0x7f020124
int attr textAppearanceListItemSecondary 0x7f020125
int attr textAppearanceListItemSmall 0x7f020126
int attr textAppearancePopupMenuHeader 0x7f020127
int attr textAppearanceSearchResultSubtitle 0x7f020128
int attr textAppearanceSearchResultTitle 0x7f020129
int attr textAppearanceSmallPopupMenu 0x7f02012a
int attr textColorAlertDialogListItem 0x7f02012b
int attr textColorSearchUrl 0x7f02012c
int attr theme 0x7f02012d
int attr thickness 0x7f02012e
int attr thumbTextPadding 0x7f02012f
int attr thumbTint 0x7f020130
int attr thumbTintMode 0x7f020131
int attr tickMark 0x7f020132
int attr tickMarkTint 0x7f020133
int attr tickMarkTintMode 0x7f020134
int attr tint 0x7f020135
int attr tintMode 0x7f020136
int attr title 0x7f020137
int attr titleMargin 0x7f020138
int attr titleMarginBottom 0x7f020139
int attr titleMarginEnd 0x7f02013a
int attr titleMarginStart 0x7f02013b
int attr titleMarginTop 0x7f02013c
int attr titleMargins 0x7f02013d
int attr titlePadding 0x7f02013e
int attr titleTextAppearance 0x7f02013f
int attr titleTextColor 0x7f020140
int attr titleTextStyle 0x7f020141
int attr toDegrees 0x7f020142
int attr toolbarNavigationButtonStyle 0x7f020143
int attr toolbarStyle 0x7f020144
int attr tooltipForegroundColor 0x7f020145
int attr tooltipFrameBackground 0x7f020146
int attr tooltipText 0x7f020147
int attr topPadding 0x7f020148
int attr track 0x7f020149
int attr trackTint 0x7f02014a
int attr trackTintMode 0x7f02014b
int attr unselectedColor 0x7f02014c
int attr viewInflaterClass 0x7f02014d
int attr voiceIcon 0x7f02014e
int attr vpiCirclePageIndicatorStyle 0x7f02014f
int attr vpiIconPageIndicatorStyle 0x7f020150
int attr vpiLinePageIndicatorStyle 0x7f020151
int attr vpiTabPageIndicatorStyle 0x7f020152
int attr vpiTabPageIndicatorStyle1 0x7f020153
int attr vpiTitlePageIndicatorStyle 0x7f020154
int attr vpiUnderlinePageIndicatorStyle 0x7f020155
int attr windowActionBar 0x7f020156
int attr windowActionBarOverlay 0x7f020157
int attr windowActionModeOverlay 0x7f020158
int attr windowFixedHeightMajor 0x7f020159
int attr windowFixedHeightMinor 0x7f02015a
int attr windowFixedWidthMajor 0x7f02015b
int attr windowFixedWidthMinor 0x7f02015c
int attr windowMinWidthMajor 0x7f02015d
int attr windowMinWidthMinor 0x7f02015e
int attr windowNoTitle 0x7f02015f
int bool abc_action_bar_embed_tabs 0x7f030000
int bool abc_allow_stacked_button_bar 0x7f030001
int bool abc_config_actionMenuItemAllCaps 0x7f030002
int bool abc_config_showMenuShortcutsWhenKeyboardPresent 0x7f030003
int bool default_circle_indicator_centered 0x7f030004
int bool default_circle_indicator_snap 0x7f030005
int bool default_line_indicator_centered 0x7f030006
int bool default_title_indicator_selected_bold 0x7f030007
int bool default_underline_indicator_fades 0x7f030008
int color abc_background_cache_hint_selector_material_dark 0x7f040000
int color abc_background_cache_hint_selector_material_light 0x7f040001
int color abc_btn_colored_borderless_text_material 0x7f040002
int color abc_btn_colored_text_material 0x7f040003
int color abc_color_highlight_material 0x7f040004
int color abc_hint_foreground_material_dark 0x7f040005
int color abc_hint_foreground_material_light 0x7f040006
int color abc_input_method_navigation_guard 0x7f040007
int color abc_primary_text_disable_only_material_dark 0x7f040008
int color abc_primary_text_disable_only_material_light 0x7f040009
int color abc_primary_text_material_dark 0x7f04000a
int color abc_primary_text_material_light 0x7f04000b
int color abc_search_url_text 0x7f04000c
int color abc_search_url_text_normal 0x7f04000d
int color abc_search_url_text_pressed 0x7f04000e
int color abc_search_url_text_selected 0x7f04000f
int color abc_secondary_text_material_dark 0x7f040010
int color abc_secondary_text_material_light 0x7f040011
int color abc_tint_btn_checkable 0x7f040012
int color abc_tint_default 0x7f040013
int color abc_tint_edittext 0x7f040014
int color abc_tint_seek_thumb 0x7f040015
int color abc_tint_spinner 0x7f040016
int color abc_tint_switch_track 0x7f040017
int color accent_material_dark 0x7f040018
int color accent_material_light 0x7f040019
int color alibc_transparent 0x7f04001a
int color aliuser_color_dark_gray 0x7f04001b
int color aliuser_color_light_gray 0x7f04001c
int color aliuser_default_text_color 0x7f04001d
int color aliuser_edittext_bg_color_activated 0x7f04001e
int color aliuser_edittext_bg_color_normal 0x7f04001f
int color aliuser_func_text_color 0x7f040020
int color aliuser_global_background 0x7f040021
int color aliuser_send_sms_disable_textcolor 0x7f040022
int color aliuser_send_sms_text_color_new 0x7f040023
int color aliuser_text_color_hint 0x7f040024
int color appdownloader_notification_material_background_color 0x7f040025
int color appdownloader_notification_title_color 0x7f040026
int color appdownloader_s1 0x7f040027
int color appdownloader_s13 0x7f040028
int color appdownloader_s18 0x7f040029
int color appdownloader_s4 0x7f04002a
int color appdownloader_s8 0x7f04002b
int color backgroud_gray 0x7f04002c
int color background_floating_material_dark 0x7f04002d
int color background_floating_material_light 0x7f04002e
int color background_material_dark 0x7f04002f
int color background_material_light 0x7f040030
int color bg 0x7f040031
int color bg_download_so 0x7f040032
int color black 0x7f040033
int color black1 0x7f040034
int color blue 0x7f040035
int color blue1 0x7f040036
int color blue2 0x7f040037
int color blue3 0x7f040038
int color bright_foreground_disabled_material_dark 0x7f040039
int color bright_foreground_disabled_material_light 0x7f04003a
int color bright_foreground_inverse_material_dark 0x7f04003b
int color bright_foreground_inverse_material_light 0x7f04003c
int color bright_foreground_material_dark 0x7f04003d
int color bright_foreground_material_light 0x7f04003e
int color button_material_dark 0x7f04003f
int color button_material_light 0x7f040040
int color category_star_tv_font 0x7f040041
int color category_unique_lv_item 0x7f040042
int color colorAccent 0x7f040043
int color colorPrimary 0x7f040044
int color colorPrimaryDark 0x7f040045
int color com_facebook_blue 0x7f040046
int color com_facebook_button_background_color 0x7f040047
int color com_facebook_button_background_color_disabled 0x7f040048
int color com_facebook_button_background_color_pressed 0x7f040049
int color com_facebook_button_like_background_color_selected 0x7f04004a
int color com_facebook_button_login_silver_background_color 0x7f04004b
int color com_facebook_button_login_silver_background_color_pressed 0x7f04004c
int color com_facebook_button_send_background_color 0x7f04004d
int color com_facebook_button_send_background_color_pressed 0x7f04004e
int color com_facebook_likeboxcountview_border_color 0x7f04004f
int color com_facebook_likeboxcountview_text_color 0x7f040050
int color com_facebook_likeview_text_color 0x7f040051
int color com_facebook_share_button_text_color 0x7f040052
int color cutline 0x7f040053
int color default_circle_indicator_fill_color 0x7f040054
int color default_circle_indicator_page_color 0x7f040055
int color default_circle_indicator_stroke_color 0x7f040056
int color default_line_indicator_selected_color 0x7f040057
int color default_line_indicator_unselected_color 0x7f040058
int color default_title_indicator_footer_color 0x7f040059
int color default_title_indicator_selected_color 0x7f04005a
int color default_title_indicator_text_color 0x7f04005b
int color default_underline_indicator_selected_color 0x7f04005c
int color dim_foreground_dark 0x7f04005d
int color dim_foreground_disabled_material_dark 0x7f04005e
int color dim_foreground_disabled_material_light 0x7f04005f
int color dim_foreground_material_dark 0x7f040060
int color dim_foreground_material_light 0x7f040061
int color error_color_material 0x7f040062
int color fill_color 0x7f040063
int color foreground_material_dark 0x7f040064
int color foreground_material_light 0x7f040065
int color goods_divider_color 0x7f040066
int color gray 0x7f040067
int color gray1 0x7f040068
int color gray2 0x7f040069
int color gray6 0x7f04006a
int color green 0x7f04006b
int color highlighted_text_material_dark 0x7f04006c
int color highlighted_text_material_light 0x7f04006d
int color light_gray 0x7f04006e
int color light_light_gray 0x7f04006f
int color lxy_bg_diaphanous 0x7f040070
int color main_color 0x7f040071
int color material_blue_grey_800 0x7f040072
int color material_blue_grey_900 0x7f040073
int color material_blue_grey_950 0x7f040074
int color material_deep_teal_200 0x7f040075
int color material_deep_teal_500 0x7f040076
int color material_grey_100 0x7f040077
int color material_grey_300 0x7f040078
int color material_grey_50 0x7f040079
int color material_grey_600 0x7f04007a
int color material_grey_800 0x7f04007b
int color material_grey_850 0x7f04007c
int color material_grey_900 0x7f04007d
int color message_backgroud_gray 0x7f04007e
int color news_title_color_gray 0x7f04007f
int color notification_action_color_filter 0x7f040080
int color notification_icon_bg_color 0x7f040081
int color page_color 0x7f040082
int color primary_dark_material_dark 0x7f040083
int color primary_dark_material_light 0x7f040084
int color primary_material_dark 0x7f040085
int color primary_material_light 0x7f040086
int color primary_text_default_material_dark 0x7f040087
int color primary_text_default_material_light 0x7f040088
int color primary_text_disabled_material_dark 0x7f040089
int color primary_text_disabled_material_light 0x7f04008a
int color qq_blue 0x7f04008b
int color red 0x7f04008c
int color register_gray 0x7f04008d
int color register_gray1 0x7f04008e
int color ripple_material_dark 0x7f04008f
int color ripple_material_light 0x7f040090
int color search_bar_color 0x7f040091
int color secondary_text_default_material_dark 0x7f040092
int color secondary_text_default_material_light 0x7f040093
int color secondary_text_disabled_material_dark 0x7f040094
int color secondary_text_disabled_material_light 0x7f040095
int color selector_banner_show 0x7f040096
int color selector_bottom_bar_text 0x7f040097
int color selector_btn_recent_text 0x7f040098
int color selector_category_live_text 0x7f040099
int color selector_category_two_text 0x7f04009a
int color selector_top_bar_text 0x7f04009b
int color switch_thumb_disabled_material_dark 0x7f04009c
int color switch_thumb_disabled_material_light 0x7f04009d
int color switch_thumb_material_dark 0x7f04009e
int color switch_thumb_material_light 0x7f04009f
int color switch_thumb_normal_material_dark 0x7f0400a0
int color switch_thumb_normal_material_light 0x7f0400a1
int color tb_munion_item_force 0x7f0400a2
int color text_color_small 0x7f0400a3
int color tooltip_background_dark 0x7f0400a4
int color tooltip_background_light 0x7f0400a5
int color top_bar_color 0x7f0400a6
int color top_blue 0x7f0400a7
int color transparent 0x7f0400a8
int color transparent_gray 0x7f0400a9
int color tt_cancle_bg 0x7f0400aa
int color tt_dislike_transparent 0x7f0400ab
int color tt_divider 0x7f0400ac
int color tt_download_app_name 0x7f0400ad
int color tt_download_bar_background 0x7f0400ae
int color tt_download_bar_background_new 0x7f0400af
int color tt_download_text_background 0x7f0400b0
int color tt_draw_btn_back 0x7f0400b1
int color tt_full_screen_skip_bg 0x7f0400b2
int color tt_header_font 0x7f0400b3
int color tt_heise3 0x7f0400b4
int color tt_listview 0x7f0400b5
int color tt_listview_press 0x7f0400b6
int color tt_rating_comment 0x7f0400b7
int color tt_rating_comment_vertical 0x7f0400b8
int color tt_rating_star 0x7f0400b9
int color tt_skip_red 0x7f0400ba
int color tt_ssxinbaise4 0x7f0400bb
int color tt_ssxinbaise4_press 0x7f0400bc
int color tt_ssxinheihui3 0x7f0400bd
int color tt_ssxinhongse1 0x7f0400be
int color tt_ssxinmian1 0x7f0400bf
int color tt_ssxinmian11 0x7f0400c0
int color tt_ssxinmian15 0x7f0400c1
int color tt_ssxinmian6 0x7f0400c2
int color tt_ssxinmian7 0x7f0400c3
int color tt_ssxinmian8 0x7f0400c4
int color tt_ssxinxian11 0x7f0400c5
int color tt_ssxinxian11_selected 0x7f0400c6
int color tt_ssxinxian3 0x7f0400c7
int color tt_ssxinxian3_press 0x7f0400c8
int color tt_ssxinzi12 0x7f0400c9
int color tt_ssxinzi15 0x7f0400ca
int color tt_ssxinzi4 0x7f0400cb
int color tt_ssxinzi9 0x7f0400cc
int color tt_text_font 0x7f0400cd
int color tt_titlebar_background_dark 0x7f0400ce
int color tt_titlebar_background_ffffff 0x7f0400cf
int color tt_titlebar_background_light 0x7f0400d0
int color tt_trans_black 0x7f0400d1
int color tt_trans_half_black 0x7f0400d2
int color tt_transparent 0x7f0400d3
int color tt_video_player_text 0x7f0400d4
int color tt_video_player_text_withoutnight 0x7f0400d5
int color tt_video_playerbg_color 0x7f0400d6
int color tt_video_shadow_color 0x7f0400d7
int color tt_video_shaoow_color_fullscreen 0x7f0400d8
int color tt_video_time_color 0x7f0400d9
int color tt_video_traffic_tip_background_color 0x7f0400da
int color tt_video_transparent 0x7f0400db
int color tt_white 0x7f0400dc
int color ttdownloader_transparent 0x7f0400dd
int color umeng_background 0x7f0400de
int color umeng_black 0x7f0400df
int color umeng_blue 0x7f0400e0
int color umeng_divide 0x7f0400e1
int color umeng_socialize_color_group 0x7f0400e2
int color umeng_socialize_comments_bg 0x7f0400e3
int color umeng_socialize_divider 0x7f0400e4
int color umeng_socialize_edit_bg 0x7f0400e5
int color umeng_socialize_grid_divider_line 0x7f0400e6
int color umeng_socialize_list_item_bgcolor 0x7f0400e7
int color umeng_socialize_list_item_textcolor 0x7f0400e8
int color umeng_socialize_shareactivity 0x7f0400e9
int color umeng_socialize_shareactivitydefault 0x7f0400ea
int color umeng_socialize_text_friends_list 0x7f0400eb
int color umeng_socialize_text_share_content 0x7f0400ec
int color umeng_socialize_text_time 0x7f0400ed
int color umeng_socialize_text_title 0x7f0400ee
int color umeng_socialize_text_ucenter 0x7f0400ef
int color umeng_socialize_ucenter_bg 0x7f0400f0
int color umeng_socialize_web_bg 0x7f0400f1
int color umeng_text_color 0x7f0400f2
int color umeng_white 0x7f0400f3
int color vk_black 0x7f0400f4
int color vk_black_pressed 0x7f0400f5
int color vk_clear 0x7f0400f6
int color vk_color 0x7f0400f7
int color vk_grey_color 0x7f0400f8
int color vk_light_color 0x7f0400f9
int color vk_share_blue_color 0x7f0400fa
int color vk_share_gray_line 0x7f0400fb
int color vk_share_link_color 0x7f0400fc
int color vk_share_link_title_color 0x7f0400fd
int color vk_share_top_blue_color 0x7f0400fe
int color vk_white 0x7f0400ff
int color vpi__background_holo_dark 0x7f040100
int color vpi__background_holo_light 0x7f040101
int color vpi__bright_foreground_disabled_holo_dark 0x7f040102
int color vpi__bright_foreground_disabled_holo_light 0x7f040103
int color vpi__bright_foreground_holo_dark 0x7f040104
int color vpi__bright_foreground_holo_light 0x7f040105
int color vpi__bright_foreground_inverse_holo_dark 0x7f040106
int color vpi__bright_foreground_inverse_holo_light 0x7f040107
int color vpi__dark_theme 0x7f040108
int color vpi__light_theme 0x7f040109
int color vpi_bg_gray 0x7f04010a
int color vpi_bg_white 0x7f04010b
int color white 0x7f04010c
int color white_discover 0x7f04010d
int color white_special 0x7f04010e
int color yellow 0x7f04010f
int dimen abc_action_bar_content_inset_material 0x7f050000
int dimen abc_action_bar_content_inset_with_nav 0x7f050001
int dimen abc_action_bar_default_height_material 0x7f050002
int dimen abc_action_bar_default_padding_end_material 0x7f050003
int dimen abc_action_bar_default_padding_start_material 0x7f050004
int dimen abc_action_bar_elevation_material 0x7f050005
int dimen abc_action_bar_icon_vertical_padding_material 0x7f050006
int dimen abc_action_bar_overflow_padding_end_material 0x7f050007
int dimen abc_action_bar_overflow_padding_start_material 0x7f050008
int dimen abc_action_bar_progress_bar_size 0x7f050009
int dimen abc_action_bar_stacked_max_height 0x7f05000a
int dimen abc_action_bar_stacked_tab_max_width 0x7f05000b
int dimen abc_action_bar_subtitle_bottom_margin_material 0x7f05000c
int dimen abc_action_bar_subtitle_top_margin_material 0x7f05000d
int dimen abc_action_button_min_height_material 0x7f05000e
int dimen abc_action_button_min_width_material 0x7f05000f
int dimen abc_action_button_min_width_overflow_material 0x7f050010
int dimen abc_alert_dialog_button_bar_height 0x7f050011
int dimen abc_alert_dialog_button_dimen 0x7f050012
int dimen abc_button_inset_horizontal_material 0x7f050013
int dimen abc_button_inset_vertical_material 0x7f050014
int dimen abc_button_padding_horizontal_material 0x7f050015
int dimen abc_button_padding_vertical_material 0x7f050016
int dimen abc_cascading_menus_min_smallest_width 0x7f050017
int dimen abc_config_prefDialogWidth 0x7f050018
int dimen abc_control_corner_material 0x7f050019
int dimen abc_control_inset_material 0x7f05001a
int dimen abc_control_padding_material 0x7f05001b
int dimen abc_dialog_fixed_height_major 0x7f05001c
int dimen abc_dialog_fixed_height_minor 0x7f05001d
int dimen abc_dialog_fixed_width_major 0x7f05001e
int dimen abc_dialog_fixed_width_minor 0x7f05001f
int dimen abc_dialog_list_padding_bottom_no_buttons 0x7f050020
int dimen abc_dialog_list_padding_top_no_title 0x7f050021
int dimen abc_dialog_min_width_major 0x7f050022
int dimen abc_dialog_min_width_minor 0x7f050023
int dimen abc_dialog_padding_material 0x7f050024
int dimen abc_dialog_padding_top_material 0x7f050025
int dimen abc_dialog_title_divider_material 0x7f050026
int dimen abc_disabled_alpha_material_dark 0x7f050027
int dimen abc_disabled_alpha_material_light 0x7f050028
int dimen abc_dropdownitem_icon_width 0x7f050029
int dimen abc_dropdownitem_text_padding_left 0x7f05002a
int dimen abc_dropdownitem_text_padding_right 0x7f05002b
int dimen abc_edit_text_inset_bottom_material 0x7f05002c
int dimen abc_edit_text_inset_horizontal_material 0x7f05002d
int dimen abc_edit_text_inset_top_material 0x7f05002e
int dimen abc_floating_window_z 0x7f05002f
int dimen abc_list_item_padding_horizontal_material 0x7f050030
int dimen abc_panel_menu_list_width 0x7f050031
int dimen abc_progress_bar_height_material 0x7f050032
int dimen abc_search_view_preferred_height 0x7f050033
int dimen abc_search_view_preferred_width 0x7f050034
int dimen abc_seekbar_track_background_height_material 0x7f050035
int dimen abc_seekbar_track_progress_height_material 0x7f050036
int dimen abc_select_dialog_padding_start_material 0x7f050037
int dimen abc_switch_padding 0x7f050038
int dimen abc_text_size_body_1_material 0x7f050039
int dimen abc_text_size_body_2_material 0x7f05003a
int dimen abc_text_size_button_material 0x7f05003b
int dimen abc_text_size_caption_material 0x7f05003c
int dimen abc_text_size_display_1_material 0x7f05003d
int dimen abc_text_size_display_2_material 0x7f05003e
int dimen abc_text_size_display_3_material 0x7f05003f
int dimen abc_text_size_display_4_material 0x7f050040
int dimen abc_text_size_headline_material 0x7f050041
int dimen abc_text_size_large_material 0x7f050042
int dimen abc_text_size_medium_material 0x7f050043
int dimen abc_text_size_menu_header_material 0x7f050044
int dimen abc_text_size_menu_material 0x7f050045
int dimen abc_text_size_small_material 0x7f050046
int dimen abc_text_size_subhead_material 0x7f050047
int dimen abc_text_size_subtitle_material_toolbar 0x7f050048
int dimen abc_text_size_title_material 0x7f050049
int dimen abc_text_size_title_material_toolbar 0x7f05004a
int dimen actionbar_height 0x7f05004b
int dimen actionbar_item_height 0x7f05004c
int dimen actionbar_item_width 0x7f05004d
int dimen activity_horizontal_margin 0x7f05004e
int dimen activity_vertical_margin 0x7f05004f
int dimen album_item_width_short 0x7f050050
int dimen ali_auth_space_10 0x7f050051
int dimen ali_auth_space_160 0x7f050052
int dimen ali_auth_space_20 0x7f050053
int dimen ali_auth_space_300 0x7f050054
int dimen ali_auth_space_48 0x7f050055
int dimen ali_auth_titlebar_height 0x7f050056
int dimen alphabet_size 0x7f050057
int dimen body_padding_large 0x7f050058
int dimen body_padding_medium 0x7f050059
int dimen checkmark_area 0x7f05005a
int dimen com_facebook_likeboxcountview_border_radius 0x7f05005b
int dimen com_facebook_likeboxcountview_border_width 0x7f05005c
int dimen com_facebook_likeboxcountview_caret_height 0x7f05005d
int dimen com_facebook_likeboxcountview_caret_width 0x7f05005e
int dimen com_facebook_likeboxcountview_text_padding 0x7f05005f
int dimen com_facebook_likeboxcountview_text_size 0x7f050060
int dimen com_facebook_likeview_edge_padding 0x7f050061
int dimen com_facebook_likeview_internal_padding 0x7f050062
int dimen com_facebook_likeview_text_size 0x7f050063
int dimen com_facebook_profilepictureview_preset_size_large 0x7f050064
int dimen com_facebook_profilepictureview_preset_size_normal 0x7f050065
int dimen com_facebook_profilepictureview_preset_size_small 0x7f050066
int dimen com_facebook_share_button_compound_drawable_padding 0x7f050067
int dimen com_facebook_share_button_padding_bottom 0x7f050068
int dimen com_facebook_share_button_padding_left 0x7f050069
int dimen com_facebook_share_button_padding_right 0x7f05006a
int dimen com_facebook_share_button_padding_top 0x7f05006b
int dimen com_facebook_share_button_text_size 0x7f05006c
int dimen com_facebook_tooltip_horizontal_padding 0x7f05006d
int dimen compat_button_inset_horizontal_material 0x7f05006e
int dimen compat_button_inset_vertical_material 0x7f05006f
int dimen compat_button_padding_horizontal_material 0x7f050070
int dimen compat_button_padding_vertical_material 0x7f050071
int dimen compat_control_corner_material 0x7f050072
int dimen default_circle_indicator_radius 0x7f050073
int dimen default_circle_indicator_stroke_width 0x7f050074
int dimen default_line_indicator_gap_width 0x7f050075
int dimen default_line_indicator_line_width 0x7f050076
int dimen default_line_indicator_stroke_width 0x7f050077
int dimen default_title_indicator_clip_padding 0x7f050078
int dimen default_title_indicator_footer_indicator_height 0x7f050079
int dimen default_title_indicator_footer_indicator_underline_padding 0x7f05007a
int dimen default_title_indicator_footer_line_height 0x7f05007b
int dimen default_title_indicator_footer_padding 0x7f05007c
int dimen default_title_indicator_text_size 0x7f05007d
int dimen default_title_indicator_title_padding 0x7f05007e
int dimen default_title_indicator_top_padding 0x7f05007f
int dimen disabled_alpha_material_dark 0x7f050080
int dimen disabled_alpha_material_light 0x7f050081
int dimen fastscroll_default_thickness 0x7f050082
int dimen fastscroll_margin 0x7f050083
int dimen fastscroll_minimum_range 0x7f050084
int dimen highlight_alpha_material_colored 0x7f050085
int dimen highlight_alpha_material_dark 0x7f050086
int dimen highlight_alpha_material_light 0x7f050087
int dimen hint_alpha_material_dark 0x7f050088
int dimen hint_alpha_material_light 0x7f050089
int dimen hint_pressed_alpha_material_dark 0x7f05008a
int dimen hint_pressed_alpha_material_light 0x7f05008b
int dimen item_touch_helper_max_drag_scroll_per_frame 0x7f05008c
int dimen item_touch_helper_swipe_escape_max_velocity 0x7f05008d
int dimen item_touch_helper_swipe_escape_velocity 0x7f05008e
int dimen notification_action_icon_size 0x7f05008f
int dimen notification_action_text_size 0x7f050090
int dimen notification_big_circle_margin 0x7f050091
int dimen notification_content_margin_start 0x7f050092
int dimen notification_large_icon_height 0x7f050093
int dimen notification_large_icon_width 0x7f050094
int dimen notification_main_column_padding_top 0x7f050095
int dimen notification_media_narrow_margin 0x7f050096
int dimen notification_right_icon_size 0x7f050097
int dimen notification_right_side_padding_top 0x7f050098
int dimen notification_small_icon_background_padding 0x7f050099
int dimen notification_small_icon_size_as_large 0x7f05009a
int dimen notification_subtext_size 0x7f05009b
int dimen notification_top_pad 0x7f05009c
int dimen notification_top_pad_large_text 0x7f05009d
int dimen page_title_height 0x7f05009e
int dimen shadow_width 0x7f05009f
int dimen slidingmenu_offset 0x7f0500a0
int dimen speaker_image_padding 0x7f0500a1
int dimen speaker_image_size 0x7f0500a2
int dimen text_size_large 0x7f0500a3
int dimen text_size_medium 0x7f0500a4
int dimen text_size_micro 0x7f0500a5
int dimen text_size_small 0x7f0500a6
int dimen text_size_very_micro 0x7f0500a7
int dimen text_size_xlarge 0x7f0500a8
int dimen text_size_xmicro 0x7f0500a9
int dimen titlebar 0x7f0500aa
int dimen tooltip_corner_radius 0x7f0500ab
int dimen tooltip_horizontal_padding 0x7f0500ac
int dimen tooltip_margin 0x7f0500ad
int dimen tooltip_precise_anchor_extra_offset 0x7f0500ae
int dimen tooltip_precise_anchor_threshold 0x7f0500af
int dimen tooltip_vertical_padding 0x7f0500b0
int dimen tooltip_y_offset_non_touch 0x7f0500b1
int dimen tooltip_y_offset_touch 0x7f0500b2
int dimen tt_video_container_maxheight 0x7f0500b3
int dimen tt_video_container_minheight 0x7f0500b4
int dimen tt_video_cover_padding_horizon 0x7f0500b5
int dimen tt_video_cover_padding_vertical 0x7f0500b6
int dimen umeng_socialize_pad_window_height 0x7f0500b7
int dimen umeng_socialize_pad_window_width 0x7f0500b8
int dimen vendor_image_size 0x7f0500b9
int dimen vk_share_dialog_padding 0x7f0500ba
int dimen vk_share_dialog_padding_top 0x7f0500bb
int dimen vk_share_dialog_view_padding 0x7f0500bc
int dimen vk_share_link_top_margin 0x7f0500bd
int dimen vk_share_send_text_size 0x7f0500be
int dimen vk_share_settings_button_min_height 0x7f0500bf
int dimen vk_share_title_link_host_size 0x7f0500c0
int dimen vk_share_title_link_title_size 0x7f0500c1
int dimen vk_share_title_text_size 0x7f0500c2
int dimen vk_share_top_button_padding_left 0x7f0500c3
int dimen vk_share_top_button_padding_right 0x7f0500c4
int dimen vk_share_top_image_margin 0x7f0500c5
int dimen vk_share_top_line_margin 0x7f0500c6
int dimen vk_share_top_panel_height 0x7f0500c7
int dimen vk_share_top_title_margin 0x7f0500c8
int drawable a 0x7f060000
int drawable abc_ab_share_pack_mtrl_alpha 0x7f060001
int drawable abc_action_bar_item_background_material 0x7f060002
int drawable abc_btn_borderless_material 0x7f060003
int drawable abc_btn_check_material 0x7f060004
int drawable abc_btn_check_to_on_mtrl_000 0x7f060005
int drawable abc_btn_check_to_on_mtrl_015 0x7f060006
int drawable abc_btn_colored_material 0x7f060007
int drawable abc_btn_default_mtrl_shape 0x7f060008
int drawable abc_btn_radio_material 0x7f060009
int drawable abc_btn_radio_to_on_mtrl_000 0x7f06000a
int drawable abc_btn_radio_to_on_mtrl_015 0x7f06000b
int drawable abc_btn_switch_to_on_mtrl_00001 0x7f06000c
int drawable abc_btn_switch_to_on_mtrl_00012 0x7f06000d
int drawable abc_cab_background_internal_bg 0x7f06000e
int drawable abc_cab_background_top_material 0x7f06000f
int drawable abc_cab_background_top_mtrl_alpha 0x7f060010
int drawable abc_control_background_material 0x7f060011
int drawable abc_dialog_material_background 0x7f060012
int drawable abc_edit_text_material 0x7f060013
int drawable abc_ic_ab_back_material 0x7f060014
int drawable abc_ic_arrow_drop_right_black_24dp 0x7f060015
int drawable abc_ic_clear_material 0x7f060016
int drawable abc_ic_commit_search_api_mtrl_alpha 0x7f060017
int drawable abc_ic_go_search_api_material 0x7f060018
int drawable abc_ic_menu_copy_mtrl_am_alpha 0x7f060019
int drawable abc_ic_menu_cut_mtrl_alpha 0x7f06001a
int drawable abc_ic_menu_overflow_material 0x7f06001b
int drawable abc_ic_menu_paste_mtrl_am_alpha 0x7f06001c
int drawable abc_ic_menu_selectall_mtrl_alpha 0x7f06001d
int drawable abc_ic_menu_share_mtrl_alpha 0x7f06001e
int drawable abc_ic_search_api_material 0x7f06001f
int drawable abc_ic_star_black_16dp 0x7f060020
int drawable abc_ic_star_black_36dp 0x7f060021
int drawable abc_ic_star_black_48dp 0x7f060022
int drawable abc_ic_star_half_black_16dp 0x7f060023
int drawable abc_ic_star_half_black_36dp 0x7f060024
int drawable abc_ic_star_half_black_48dp 0x7f060025
int drawable abc_ic_voice_search_api_material 0x7f060026
int drawable abc_item_background_holo_dark 0x7f060027
int drawable abc_item_background_holo_light 0x7f060028
int drawable abc_list_divider_mtrl_alpha 0x7f060029
int drawable abc_list_focused_holo 0x7f06002a
int drawable abc_list_longpressed_holo 0x7f06002b
int drawable abc_list_pressed_holo_dark 0x7f06002c
int drawable abc_list_pressed_holo_light 0x7f06002d
int drawable abc_list_selector_background_transition_holo_dark 0x7f06002e
int drawable abc_list_selector_background_transition_holo_light 0x7f06002f
int drawable abc_list_selector_disabled_holo_dark 0x7f060030
int drawable abc_list_selector_disabled_holo_light 0x7f060031
int drawable abc_list_selector_holo_dark 0x7f060032
int drawable abc_list_selector_holo_light 0x7f060033
int drawable abc_menu_hardkey_panel_mtrl_mult 0x7f060034
int drawable abc_popup_background_mtrl_mult 0x7f060035
int drawable abc_ratingbar_indicator_material 0x7f060036
int drawable abc_ratingbar_material 0x7f060037
int drawable abc_ratingbar_small_material 0x7f060038
int drawable abc_scrubber_control_off_mtrl_alpha 0x7f060039
int drawable abc_scrubber_control_to_pressed_mtrl_000 0x7f06003a
int drawable abc_scrubber_control_to_pressed_mtrl_005 0x7f06003b
int drawable abc_scrubber_primary_mtrl_alpha 0x7f06003c
int drawable abc_scrubber_track_mtrl_alpha 0x7f06003d
int drawable abc_seekbar_thumb_material 0x7f06003e
int drawable abc_seekbar_tick_mark_material 0x7f06003f
int drawable abc_seekbar_track_material 0x7f060040
int drawable abc_spinner_mtrl_am_alpha 0x7f060041
int drawable abc_spinner_textfield_background_material 0x7f060042
int drawable abc_switch_thumb_material 0x7f060043
int drawable abc_switch_track_mtrl_alpha 0x7f060044
int drawable abc_tab_indicator_material 0x7f060045
int drawable abc_tab_indicator_mtrl_alpha 0x7f060046
int drawable abc_text_cursor_material 0x7f060047
int drawable abc_text_select_handle_left_mtrl_dark 0x7f060048
int drawable abc_text_select_handle_left_mtrl_light 0x7f060049
int drawable abc_text_select_handle_middle_mtrl_dark 0x7f06004a
int drawable abc_text_select_handle_middle_mtrl_light 0x7f06004b
int drawable abc_text_select_handle_right_mtrl_dark 0x7f06004c
int drawable abc_text_select_handle_right_mtrl_light 0x7f06004d
int drawable abc_textfield_activated_mtrl_alpha 0x7f06004e
int drawable abc_textfield_default_mtrl_alpha 0x7f06004f
int drawable abc_textfield_search_activated_mtrl_alpha 0x7f060050
int drawable abc_textfield_search_default_mtrl_alpha 0x7f060051
int drawable abc_textfield_search_material 0x7f060052
int drawable abc_vector_test 0x7f060053
int drawable aliuser_bg_send_sms_btn_new 0x7f060054
int drawable aliuser_btn_lucency 0x7f060055
int drawable aliuser_send_sms_bg_btn_round 0x7f060056
int drawable appdownloader_action_bg 0x7f060057
int drawable appdownloader_action_new_bg 0x7f060058
int drawable appdownloader_ad_detail_download_progress 0x7f060059
int drawable appdownloader_detail_download_success_bg 0x7f06005a
int drawable appdownloader_download_progress_bar_horizontal 0x7f06005b
int drawable appdownloader_download_progress_bar_horizontal_new 0x7f06005c
int drawable appdownloader_download_progress_bar_horizontal_night 0x7f06005d
int drawable arrow_right 0x7f06005e
int drawable b 0x7f06005f
int drawable bannerclose 0x7f060060
int drawable bg_accumulate_able 0x7f060061
int drawable bg_accumulate_disable 0x7f060062
int drawable bg_bottom 0x7f060063
int drawable bg_definition 0x7f060064
int drawable bg_definition_normal 0x7f060065
int drawable bg_definition_pressed 0x7f060066
int drawable bg_person_top 0x7f060067
int drawable blued 0x7f060068
int drawable btn_blue_corner 0x7f060069
int drawable btn_blue_corner_highlight 0x7f06006a
int drawable btnbg 0x7f06006b
int drawable cache_masking 0x7f06006c
int drawable checkbox_normal 0x7f06006d
int drawable checkbox_selected 0x7f06006e
int drawable close 0x7f06006f
int drawable color_item_bg 0x7f060070
int drawable color_item_bg_highlight 0x7f060071
int drawable color_progressbar 0x7f060072
int drawable com_alibaba_bc_auth_cancle_btn 0x7f060073
int drawable com_alibaba_bc_auth_ll_bg 0x7f060074
int drawable com_alibaba_bc_auth_success_btn 0x7f060075
int drawable com_alibc_trade_auth_close 0x7f060076
int drawable com_facebook_button_background 0x7f060077
int drawable com_facebook_button_icon 0x7f060078
int drawable com_facebook_button_like_background 0x7f060079
int drawable com_facebook_button_like_icon_selected 0x7f06007a
int drawable com_facebook_button_login_silver_background 0x7f06007b
int drawable com_facebook_button_send_background 0x7f06007c
int drawable com_facebook_button_send_icon 0x7f06007d
int drawable com_facebook_close 0x7f06007e
int drawable com_facebook_profile_picture_blank_portrait 0x7f06007f
int drawable com_facebook_profile_picture_blank_square 0x7f060080
int drawable com_facebook_tooltip_black_background 0x7f060081
int drawable com_facebook_tooltip_black_bottomnub 0x7f060082
int drawable com_facebook_tooltip_black_topnub 0x7f060083
int drawable com_facebook_tooltip_black_xout 0x7f060084
int drawable com_facebook_tooltip_blue_background 0x7f060085
int drawable com_facebook_tooltip_blue_bottomnub 0x7f060086
int drawable com_facebook_tooltip_blue_topnub 0x7f060087
int drawable com_facebook_tooltip_blue_xout 0x7f060088
int drawable com_taobao_nb_sdk_web_view_title_bar_back 0x7f060089
int drawable com_taobao_nb_sdk_web_view_title_bar_close 0x7f06008a
int drawable com_taobao_tae_sdk_web_view_title_bar_back 0x7f06008b
int drawable com_taobao_tae_sdk_web_view_title_bar_close 0x7f06008c
int drawable custom_tab_indicator_divider 0x7f06008d
int drawable default_ptr_rotate_gray 0x7f06008e
int drawable dialog_background 0x7f06008f
int drawable dialog_button1 0x7f060090
int drawable dialog_button2 0x7f060091
int drawable dim_bg 0x7f060092
int drawable download_failure 0x7f060093
int drawable edit_view_bg 0x7f060094
int drawable editbg 0x7f060095
int drawable empty_favourite_bg 0x7f060096
int drawable empty_follow 0x7f060097
int drawable empty_history_bg 0x7f060098
int drawable episode_offlined 0x7f060099
int drawable episode_offlined2 0x7f06009a
int drawable episode_playing 0x7f06009b
int drawable episode_playing2 0x7f06009c
int drawable episode_unwatched 0x7f06009d
int drawable episode_unwatched2 0x7f06009e
int drawable episode_watched 0x7f06009f
int drawable fenxiang 0x7f0600a0
int drawable folder_bg 0x7f0600a1
int drawable folder_fg 0x7f0600a2
int drawable from_other 0x7f0600a3
int drawable gdt_ic_back 0x7f0600a4
int drawable gdt_ic_browse 0x7f0600a5
int drawable gdt_ic_download 0x7f0600a6
int drawable gdt_ic_enter_fullscreen 0x7f0600a7
int drawable gdt_ic_exit_fullscreen 0x7f0600a8
int drawable gdt_ic_express_back_to_port 0x7f0600a9
int drawable gdt_ic_express_close 0x7f0600aa
int drawable gdt_ic_express_enter_fullscreen 0x7f0600ab
int drawable gdt_ic_express_pause 0x7f0600ac
int drawable gdt_ic_express_play 0x7f0600ad
int drawable gdt_ic_express_volume_off 0x7f0600ae
int drawable gdt_ic_express_volume_on 0x7f0600af
int drawable gdt_ic_native_back 0x7f0600b0
int drawable gdt_ic_native_download 0x7f0600b1
int drawable gdt_ic_native_volume_off 0x7f0600b2
int drawable gdt_ic_native_volume_on 0x7f0600b3
int drawable gdt_ic_pause 0x7f0600b4
int drawable gdt_ic_play 0x7f0600b5
int drawable gdt_ic_progress_thumb_normal 0x7f0600b6
int drawable gdt_ic_replay 0x7f0600b7
int drawable gdt_ic_seekbar_background 0x7f0600b8
int drawable gdt_ic_seekbar_progress 0x7f0600b9
int drawable gdt_ic_volume_off 0x7f0600ba
int drawable gdt_ic_volume_on 0x7f0600bb
int drawable gdt_native_ad 0x7f0600bc
int drawable gengxin 0x7f0600bd
int drawable gif_loading 0x7f0600be
int drawable gif_play 0x7f0600bf
int drawable grade 0x7f0600c0
int drawable hot_categories 0x7f0600c1
int drawable hot_categories_pointed 0x7f0600c2
int drawable hot_point 0x7f0600c3
int drawable ic_ab_app 0x7f0600c4
int drawable ic_ab_done 0x7f0600c5
int drawable ic_accumulate 0x7f0600c6
int drawable ic_activity_main_download 0x7f0600c7
int drawable ic_activity_main_search 0x7f0600c8
int drawable ic_apps 0x7f0600c9
int drawable ic_back 0x7f0600ca
int drawable ic_back_news 0x7f0600cb
int drawable ic_back_two 0x7f0600cc
int drawable ic_back_two_highlight 0x7f0600cd
int drawable ic_bg_live_top 0x7f0600ce
int drawable ic_brightness 0x7f0600cf
int drawable ic_brightness_small 0x7f0600d0
int drawable ic_category 0x7f0600d1
int drawable ic_category_des 0x7f0600d2
int drawable ic_category_des1 0x7f0600d3
int drawable ic_category_highlight 0x7f0600d4
int drawable ic_checked 0x7f0600d5
int drawable ic_choose_ep_two 0x7f0600d6
int drawable ic_choose_ep_two_highlight 0x7f0600d7
int drawable ic_clear 0x7f0600d8
int drawable ic_click_theme 0x7f0600d9
int drawable ic_close 0x7f0600da
int drawable ic_comment_num 0x7f0600db
int drawable ic_comment_num_large 0x7f0600dc
int drawable ic_default 0x7f0600dd
int drawable ic_default_cover 0x7f0600de
int drawable ic_delete 0x7f0600df
int drawable ic_discover 0x7f0600e0
int drawable ic_discover_highlight 0x7f0600e1
int drawable ic_discover_more 0x7f0600e2
int drawable ic_discover_something 0x7f0600e3
int drawable ic_download 0x7f0600e4
int drawable ic_download1 0x7f0600e5
int drawable ic_download_1 0x7f0600e6
int drawable ic_download_misc_file_type 0x7f0600e7
int drawable ic_download_so 0x7f0600e8
int drawable ic_empty 0x7f0600e9
int drawable ic_favourite 0x7f0600ea
int drawable ic_favourite_highlight 0x7f0600eb
int drawable ic_favourite_shop 0x7f0600ec
int drawable ic_favourite_shop_hight 0x7f0600ed
int drawable ic_favourite_two 0x7f0600ee
int drawable ic_favourite_two_highlight 0x7f0600ef
int drawable ic_favourites 0x7f0600f0
int drawable ic_first_page_favourite 0x7f0600f1
int drawable ic_friend_circle 0x7f0600f2
int drawable ic_friend_circle_2 0x7f0600f3
int drawable ic_full_media_pause 0x7f0600f4
int drawable ic_full_media_play 0x7f0600f5
int drawable ic_gif_loading 0x7f0600f6
int drawable ic_goods_guess_like 0x7f0600f7
int drawable ic_goods_space 0x7f0600f8
int drawable ic_guess_like 0x7f0600f9
int drawable ic_guess_like_highlight 0x7f0600fa
int drawable ic_hot 0x7f0600fb
int drawable ic_hot_search1 0x7f0600fc
int drawable ic_hot_search2 0x7f0600fd
int drawable ic_hot_search3 0x7f0600fe
int drawable ic_image_text 0x7f0600ff
int drawable ic_input 0x7f060100
int drawable ic_kongjian 0x7f060101
int drawable ic_kongjian_2 0x7f060102
int drawable ic_launcher 0x7f060103
int drawable ic_link_copy_1 0x7f060104
int drawable ic_link_copy_2 0x7f060105
int drawable ic_live_girl 0x7f060106
int drawable ic_live_girl_highlight 0x7f060107
int drawable ic_live_new 0x7f060108
int drawable ic_live_num_online 0x7f060109
int drawable ic_live_off_live 0x7f06010a
int drawable ic_live_on_live 0x7f06010b
int drawable ic_live_top 0x7f06010c
int drawable ic_locked 0x7f06010d
int drawable ic_login_top 0x7f06010e
int drawable ic_media_full_screen 0x7f06010f
int drawable ic_media_pause 0x7f060110
int drawable ic_media_play 0x7f060111
int drawable ic_media_volume 0x7f060112
int drawable ic_media_volume_mute 0x7f060113
int drawable ic_menu_desk_clock 0x7f060114
int drawable ic_mid_show 0x7f060115
int drawable ic_mine 0x7f060116
int drawable ic_mine_download 0x7f060117
int drawable ic_mine_download1 0x7f060118
int drawable ic_mine_favourite 0x7f060119
int drawable ic_mine_follow 0x7f06011a
int drawable ic_mine_help 0x7f06011b
int drawable ic_mine_highlight 0x7f06011c
int drawable ic_mine_message 0x7f06011d
int drawable ic_mine_release 0x7f06011e
int drawable ic_mine_settings 0x7f06011f
int drawable ic_mine_share 0x7f060120
int drawable ic_mine_watch_history 0x7f060121
int drawable ic_mine_watch_history1 0x7f060122
int drawable ic_mint_favourite 0x7f060123
int drawable ic_next 0x7f060124
int drawable ic_next1 0x7f060125
int drawable ic_next_two 0x7f060126
int drawable ic_next_two_highlight 0x7f060127
int drawable ic_no_login 0x7f060128
int drawable ic_off 0x7f060129
int drawable ic_offline_two 0x7f06012a
int drawable ic_offline_two_highlight 0x7f06012b
int drawable ic_offlinecache 0x7f06012c
int drawable ic_offlinecache_highlight 0x7f06012d
int drawable ic_on 0x7f06012e
int drawable ic_pause 0x7f06012f
int drawable ic_pending 0x7f060130
int drawable ic_play 0x7f060131
int drawable ic_play_num 0x7f060132
int drawable ic_play_num_large 0x7f060133
int drawable ic_portrait_default 0x7f060134
int drawable ic_prev 0x7f060135
int drawable ic_qq 0x7f060136
int drawable ic_qq_2 0x7f060137
int drawable ic_read_num 0x7f060138
int drawable ic_read_num_large 0x7f060139
int drawable ic_recent 0x7f06013a
int drawable ic_recent_highlight 0x7f06013b
int drawable ic_recommend 0x7f06013c
int drawable ic_recommend_download 0x7f06013d
int drawable ic_recommend_highlight 0x7f06013e
int drawable ic_recommend_watch_history 0x7f06013f
int drawable ic_red_dot 0x7f060140
int drawable ic_red_point 0x7f060141
int drawable ic_report 0x7f060142
int drawable ic_report_highlight 0x7f060143
int drawable ic_review 0x7f060144
int drawable ic_review_edit 0x7f060145
int drawable ic_review_shop 0x7f060146
int drawable ic_score 0x7f060147
int drawable ic_search 0x7f060148
int drawable ic_search_search 0x7f060149
int drawable ic_select1 0x7f06014a
int drawable ic_select2 0x7f06014b
int drawable ic_select_play 0x7f06014c
int drawable ic_settings 0x7f06014d
int drawable ic_share 0x7f06014e
int drawable ic_share_two 0x7f06014f
int drawable ic_share_two_highlight 0x7f060150
int drawable ic_show_girl 0x7f060151
int drawable ic_sina 0x7f060152
int drawable ic_sina_2 0x7f060153
int drawable ic_sliding_hint 0x7f060154
int drawable ic_splash_logo 0x7f060155
int drawable ic_spread 0x7f060156
int drawable ic_star_portrait_defailt 0x7f060157
int drawable ic_stars_collection 0x7f060158
int drawable ic_start_play 0x7f060159
int drawable ic_suggestion 0x7f06015a
int drawable ic_system_message 0x7f06015b
int drawable ic_title_spread 0x7f06015c
int drawable ic_unchecked 0x7f06015d
int drawable ic_unlocked 0x7f06015e
int drawable ic_user_agreement_checked 0x7f06015f
int drawable ic_user_agreement_unchecked 0x7f060160
int drawable ic_video_detail_download 0x7f060161
int drawable ic_video_detail_favourite1 0x7f060162
int drawable ic_video_detail_favourite2 0x7f060163
int drawable ic_video_detail_share 0x7f060164
int drawable ic_video_play 0x7f060165
int drawable ic_wechat 0x7f060166
int drawable ic_wechat_2 0x7f060167
int drawable ic_youku_show 0x7f060168
int drawable icon_download_url 0x7f060169
int drawable icon_hotapp 0x7f06016a
int drawable icon_more_top 0x7f06016b
int drawable img_arrow_r 0x7f06016c
int drawable img_arrows 0x7f06016d
int drawable img_head_portrait 0x7f06016e
int drawable img_head_portrait_large 0x7f06016f
int drawable img_qq 0x7f060170
int drawable img_qq2 0x7f060171
int drawable img_setting_exit_f 0x7f060172
int drawable img_setting_exit_t 0x7f060173
int drawable info_icon_1 0x7f060174
int drawable iv_report_more 0x7f060175
int drawable linenum 0x7f060176
int drawable liuyifei 0x7f060177
int drawable lxy__tab_indicator 0x7f060178
int drawable media_status_bg 0x7f060179
int drawable messenger_bubble_large_blue 0x7f06017a
int drawable messenger_bubble_large_white 0x7f06017b
int drawable messenger_bubble_small_blue 0x7f06017c
int drawable messenger_bubble_small_white 0x7f06017d
int drawable messenger_button_blue_bg_round 0x7f06017e
int drawable messenger_button_blue_bg_selector 0x7f06017f
int drawable messenger_button_send_round_shadow 0x7f060180
int drawable messenger_button_white_bg_round 0x7f060181
int drawable messenger_button_white_bg_selector 0x7f060182
int drawable more_introduction 0x7f060183
int drawable more_introduction2 0x7f060184
int drawable msg_arrow 0x7f060185
int drawable mvpi__tab_indicator 0x7f060186
int drawable notification_action_background 0x7f060187
int drawable notification_bg 0x7f060188
int drawable notification_bg_low 0x7f060189
int drawable notification_bg_low_normal 0x7f06018a
int drawable notification_bg_low_pressed 0x7f06018b
int drawable notification_bg_normal 0x7f06018c
int drawable notification_bg_normal_pressed 0x7f06018d
int drawable notification_icon_background 0x7f06018e
int drawable notification_template_icon_bg 0x7f06018f
int drawable notification_template_icon_low_bg 0x7f060190
int drawable notification_tile_bg 0x7f060191
int drawable notify_panel_notification_icon_bg 0x7f060192
int drawable person_img 0x7f060193
int drawable player_backward 0x7f060194
int drawable player_forward 0x7f060195
int drawable player_gesture_bg 0x7f060196
int drawable power1 0x7f060197
int drawable power10 0x7f060198
int drawable power2 0x7f060199
int drawable power3 0x7f06019a
int drawable power4 0x7f06019b
int drawable power5 0x7f06019c
int drawable power6 0x7f06019d
int drawable power7 0x7f06019e
int drawable power8 0x7f06019f
int drawable power9 0x7f0601a0
int drawable pro_bg 0x7f0601a1
int drawable progress_background 0x7f0601a2
int drawable progress_bar_fox_tail 0x7f0601a3
int drawable progress_drawable 0x7f0601a4
int drawable progress_drawable1 0x7f0601a5
int drawable progress_drawable2 0x7f0601a6
int drawable progress_progress1 0x7f0601a7
int drawable progress_secondary 0x7f0601a8
int drawable radio_btn_normal 0x7f0601a9
int drawable radio_btn_selected 0x7f0601aa
int drawable recommend_left 0x7f0601ab
int drawable reply_comment 0x7f0601ac
int drawable review_deliver_button 0x7f0601ad
int drawable review_reply 0x7f0601ae
int drawable search_input_bg 0x7f0601af
int drawable select_pic__dialog_bottom 0x7f0601b0
int drawable select_pic__dialog_top 0x7f0601b1
int drawable select_tab_color_indicator 0x7f0601b2
int drawable selector_back_two 0x7f0601b3
int drawable selector_bg_accumelate_ability 0x7f0601b4
int drawable selector_bg_channel_hot_item 0x7f0601b5
int drawable selector_bg_control_layout 0x7f0601b6
int drawable selector_bg_setting_exit 0x7f0601b7
int drawable selector_blue_bg 0x7f0601b8
int drawable selector_btn_recent 0x7f0601b9
int drawable selector_btn_recent_color 0x7f0601ba
int drawable selector_button 0x7f0601bb
int drawable selector_category 0x7f0601bc
int drawable selector_category_rb_font 0x7f0601bd
int drawable selector_checkbox 0x7f0601be
int drawable selector_checked 0x7f0601bf
int drawable selector_choose_ep_two 0x7f0601c0
int drawable selector_color_cate_item 0x7f0601c1
int drawable selector_color_item_bg 0x7f0601c2
int drawable selector_delete 0x7f0601c3
int drawable selector_discover 0x7f0601c4
int drawable selector_favourite 0x7f0601c5
int drawable selector_favourite_two 0x7f0601c6
int drawable selector_guess_like 0x7f0601c7
int drawable selector_hot_cate 0x7f0601c8
int drawable selector_item_point 0x7f0601c9
int drawable selector_live_girl 0x7f0601ca
int drawable selector_mine 0x7f0601cb
int drawable selector_next_play 0x7f0601cc
int drawable selector_next_two 0x7f0601cd
int drawable selector_offline 0x7f0601ce
int drawable selector_offline_two 0x7f0601cf
int drawable selector_qqblue_font 0x7f0601d0
int drawable selector_recent 0x7f0601d1
int drawable selector_recommend 0x7f0601d2
int drawable selector_report 0x7f0601d3
int drawable selector_share_item_bg 0x7f0601d4
int drawable selector_share_two 0x7f0601d5
int drawable selector_switch_left_bg 0x7f0601d6
int drawable selector_switch_middle_bg 0x7f0601d7
int drawable selector_switch_right_bg 0x7f0601d8
int drawable selector_user_agreement_checkbox 0x7f0601d9
int drawable shade_translucence_to_black 0x7f0601da
int drawable shake_umeng_socialize_close 0x7f0601db
int drawable shake_umeng_socialize_close_button_style 0x7f0601dc
int drawable shake_umeng_socialize_close_pressed 0x7f0601dd
int drawable shake_umeng_socialize_edittext_corner 0x7f0601de
int drawable shake_umeng_socialize_imgview_border 0x7f0601df
int drawable shake_umeng_socialize_preview_edit_corners_style 0x7f0601e0
int drawable shake_umeng_socialize_shake_layout_corner 0x7f0601e1
int drawable shake_umeng_socialize_share_btn_style 0x7f0601e2
int drawable shape_ad_cancle 0x7f0601e3
int drawable shape_ad_confirm 0x7f0601e4
int drawable shape_ad_prompt 0x7f0601e5
int drawable shape_bg_goods_detail 0x7f0601e6
int drawable shape_blue_corner 0x7f0601e7
int drawable shape_blue_corner_highlight 0x7f0601e8
int drawable shape_dialog_user_protocol_negative 0x7f0601e9
int drawable shape_dialog_user_protocol_positive 0x7f0601ea
int drawable shape_goreview_hint_bottom 0x7f0601eb
int drawable shape_goreview_hint_top 0x7f0601ec
int drawable shape_guess_like_from_bg 0x7f0601ed
int drawable shape_guess_like_gradient_bottom 0x7f0601ee
int drawable shape_guess_like_gradient_top 0x7f0601ef
int drawable shape_input_bg 0x7f0601f0
int drawable shape_login 0x7f0601f1
int drawable shape_login_hint2 0x7f0601f2
int drawable shape_login_select 0x7f0601f3
int drawable shape_movie_card 0x7f0601f4
int drawable shape_obtain_verfication_code 0x7f0601f5
int drawable shape_pic_dialog_bottom 0x7f0601f6
int drawable shape_pic_dialog_bottom_highlight 0x7f0601f7
int drawable shape_pic_dialog_top 0x7f0601f8
int drawable shape_pic_dialog_top_highlight 0x7f0601f9
int drawable shape_register 0x7f0601fa
int drawable shape_register_activity_confirm 0x7f0601fb
int drawable shape_register_email 0x7f0601fc
int drawable shape_register_pwd 0x7f0601fd
int drawable shape_search_bg 0x7f0601fe
int drawable shape_splash_ad 0x7f0601ff
int drawable shape_transparent 0x7f060200
int drawable shape_update_left 0x7f060201
int drawable shape_update_right 0x7f060202
int drawable shape_user_protocol_dialog_bg 0x7f060203
int drawable shape_withdraw_cash 0x7f060204
int drawable shape_withdraw_cash2 0x7f060205
int drawable shape_withdraw_cash_bg 0x7f060206
int drawable share_item_bg 0x7f060207
int drawable share_item_bg_highlight 0x7f060208
int drawable splace 0x7f060209
int drawable splash 0x7f06020a
int drawable splash_ad_input 0x7f06020b
int drawable splash_center 0x7f06020c
int drawable spotlight 0x7f06020d
int drawable spotlight_blue 0x7f06020e
int drawable spread 0x7f06020f
int drawable switch_left_bg 0x7f060210
int drawable switch_left_bg_highlight 0x7f060211
int drawable switch_middle_bg 0x7f060212
int drawable switch_middle_bg_highlight 0x7f060213
int drawable switch_right_bg 0x7f060214
int drawable switch_right_bg_highlight 0x7f060215
int drawable tab_selected_holo 0x7f060216
int drawable tb_munion_icon 0x7f060217
int drawable tb_munion_item_selector 0x7f060218
int drawable thumb_dn 0x7f060219
int drawable thumb_dn1 0x7f06021a
int drawable tooltip_frame_dark 0x7f06021b
int drawable tooltip_frame_light 0x7f06021c
int drawable tsa_ad_logo 0x7f06021d
int drawable tt_ad_backup_bk 0x7f06021e
int drawable tt_ad_backup_bk2 0x7f06021f
int drawable tt_ad_cover_btn_begin_bg 0x7f060220
int drawable tt_ad_cover_btn_draw_begin_bg 0x7f060221
int drawable tt_ad_download_progress_bar_horizontal 0x7f060222
int drawable tt_ad_logo 0x7f060223
int drawable tt_ad_logo_background 0x7f060224
int drawable tt_ad_logo_reward_full 0x7f060225
int drawable tt_ad_logo_small 0x7f060226
int drawable tt_ad_skip_btn_bg 0x7f060227
int drawable tt_back_video 0x7f060228
int drawable tt_backup_btn_1 0x7f060229
int drawable tt_backup_btn_2 0x7f06022a
int drawable tt_browser_download_selector 0x7f06022b
int drawable tt_browser_progress_style 0x7f06022c
int drawable tt_circle_solid_mian 0x7f06022d
int drawable tt_close_move_detail 0x7f06022e
int drawable tt_close_move_details_normal 0x7f06022f
int drawable tt_close_move_details_pressed 0x7f060230
int drawable tt_comment_tv 0x7f060231
int drawable tt_custom_dialog_bg 0x7f060232
int drawable tt_detail_video_btn_bg 0x7f060233
int drawable tt_dislike_bottom_seletor 0x7f060234
int drawable tt_dislike_cancle_bg_selector 0x7f060235
int drawable tt_dislike_dialog_bg 0x7f060236
int drawable tt_dislike_icon 0x7f060237
int drawable tt_dislike_icon2 0x7f060238
int drawable tt_dislike_middle_seletor 0x7f060239
int drawable tt_dislike_son_tag 0x7f06023a
int drawable tt_dislike_top_bg 0x7f06023b
int drawable tt_dislike_top_seletor 0x7f06023c
int drawable tt_download_corner_bg 0x7f06023d
int drawable tt_draw_back_bg 0x7f06023e
int drawable tt_enlarge_video 0x7f06023f
int drawable tt_forward_video 0x7f060240
int drawable tt_install_bk 0x7f060241
int drawable tt_install_btn_bk 0x7f060242
int drawable tt_leftbackbutton_titlebar_photo_preview 0x7f060243
int drawable tt_leftbackicon_selector 0x7f060244
int drawable tt_leftbackicon_selector_for_dark 0x7f060245
int drawable tt_lefterbackicon_titlebar 0x7f060246
int drawable tt_lefterbackicon_titlebar_for_dark 0x7f060247
int drawable tt_lefterbackicon_titlebar_press 0x7f060248
int drawable tt_lefterbackicon_titlebar_press_for_dark 0x7f060249
int drawable tt_mute 0x7f06024a
int drawable tt_mute_btn_bg 0x7f06024b
int drawable tt_new_pause_video 0x7f06024c
int drawable tt_new_pause_video_press 0x7f06024d
int drawable tt_new_play_video 0x7f06024e
int drawable tt_normalscreen_loading 0x7f06024f
int drawable tt_play_movebar_textpage 0x7f060250
int drawable tt_playable_btn_bk 0x7f060251
int drawable tt_playable_l_logo 0x7f060252
int drawable tt_playable_progress_style 0x7f060253
int drawable tt_refreshing_video_textpage 0x7f060254
int drawable tt_refreshing_video_textpage_normal 0x7f060255
int drawable tt_refreshing_video_textpage_pressed 0x7f060256
int drawable tt_reward_countdown_bg 0x7f060257
int drawable tt_reward_dislike_icon 0x7f060258
int drawable tt_reward_full_new_bar_bg 0x7f060259
int drawable tt_reward_full_new_bar_btn_bg 0x7f06025a
int drawable tt_reward_full_video_backup_btn_bg 0x7f06025b
int drawable tt_reward_video_download_btn_bg 0x7f06025c
int drawable tt_seek_progress 0x7f06025d
int drawable tt_seek_thumb 0x7f06025e
int drawable tt_seek_thumb_fullscreen 0x7f06025f
int drawable tt_seek_thumb_fullscreen_press 0x7f060260
int drawable tt_seek_thumb_fullscreen_selector 0x7f060261
int drawable tt_seek_thumb_normal 0x7f060262
int drawable tt_seek_thumb_press 0x7f060263
int drawable tt_shadow_btn_back 0x7f060264
int drawable tt_shadow_btn_back_withoutnight 0x7f060265
int drawable tt_shadow_fullscreen_top 0x7f060266
int drawable tt_shadow_lefterback_titlebar 0x7f060267
int drawable tt_shadow_lefterback_titlebar_press 0x7f060268
int drawable tt_shadow_lefterback_titlebar_press_withoutnight 0x7f060269
int drawable tt_shadow_lefterback_titlebar_withoutnight 0x7f06026a
int drawable tt_shrink_fullscreen 0x7f06026b
int drawable tt_shrink_video 0x7f06026c
int drawable tt_skip_text_bg 0x7f06026d
int drawable tt_splash_mute 0x7f06026e
int drawable tt_splash_unmute 0x7f06026f
int drawable tt_star_empty_bg 0x7f060270
int drawable tt_star_full_bg 0x7f060271
int drawable tt_stop_movebar_textpage 0x7f060272
int drawable tt_suggestion_logo 0x7f060273
int drawable tt_titlebar_close_drawable 0x7f060274
int drawable tt_titlebar_close_for_dark 0x7f060275
int drawable tt_titlebar_close_press 0x7f060276
int drawable tt_titlebar_close_press_for_dark 0x7f060277
int drawable tt_titlebar_close_seletor 0x7f060278
int drawable tt_titlebar_close_seletor_for_dark 0x7f060279
int drawable tt_unmute 0x7f06027a
int drawable tt_video_black_desc_gradient 0x7f06027b
int drawable tt_video_close_drawable 0x7f06027c
int drawable tt_video_loading_progress_bar 0x7f06027d
int drawable tt_video_progress_drawable 0x7f06027e
int drawable tt_video_traffic_continue_play_bg 0x7f06027f
int drawable tt_white_lefterbackicon_titlebar 0x7f060280
int drawable tt_white_lefterbackicon_titlebar_press 0x7f060281
int drawable ttdownloader_bg_ad_corner_red_button 0x7f060282
int drawable ttdownloader_bg_ad_install_vivo 0x7f060283
int drawable ttdownloader_bg_ad_left_corner_gray 0x7f060284
int drawable ttdownloader_bg_ad_right_corner_gray 0x7f060285
int drawable ttdownloader_bg_ad_white_top_corner 0x7f060286
int drawable ttdownloader_bg_button_blue_corner 0x7f060287
int drawable ttdownloader_bg_huawei_btn1 0x7f060288
int drawable ttdownloader_bg_huawei_btn2 0x7f060289
int drawable ttdownloader_bg_kllk_btn1 0x7f06028a
int drawable ttdownloader_bg_kllk_btn2 0x7f06028b
int drawable ttdownloader_bg_phone_border 0x7f06028c
int drawable ttdownloader_bg_phone_cover 0x7f06028d
int drawable ttdownloader_bg_transparent 0x7f06028e
int drawable ttdownloader_bg_vivo_btn1 0x7f06028f
int drawable ttdownloader_bg_vivo_btn2 0x7f060290
int drawable ttdownloader_bg_white_corner 0x7f060291
int drawable ttdownloader_icon_finger 0x7f060292
int drawable tv_review_deliver 0x7f060293
int drawable tv_review_deliver_but 0x7f060294
int drawable tv_review_edit 0x7f060295
int drawable umeng_arrow 0x7f060296
int drawable umeng_back_icon 0x7f060297
int drawable umeng_common_gradient_green 0x7f060298
int drawable umeng_common_gradient_orange 0x7f060299
int drawable umeng_common_gradient_red 0x7f06029a
int drawable umeng_socialize_action_back 0x7f06029b
int drawable umeng_socialize_action_back_normal 0x7f06029c
int drawable umeng_socialize_action_back_selected 0x7f06029d
int drawable umeng_socialize_back_icon 0x7f06029e
int drawable umeng_socialize_bind_bg 0x7f06029f
int drawable umeng_socialize_btn_bg 0x7f0602a0
int drawable umeng_socialize_button_blue 0x7f0602a1
int drawable umeng_socialize_button_grey 0x7f0602a2
int drawable umeng_socialize_button_grey_blue 0x7f0602a3
int drawable umeng_socialize_button_login 0x7f0602a4
int drawable umeng_socialize_button_login_normal 0x7f0602a5
int drawable umeng_socialize_button_login_pressed 0x7f0602a6
int drawable umeng_socialize_button_red 0x7f0602a7
int drawable umeng_socialize_button_red_blue 0x7f0602a8
int drawable umeng_socialize_button_white 0x7f0602a9
int drawable umeng_socialize_button_white_blue 0x7f0602aa
int drawable umeng_socialize_checked 0x7f0602ab
int drawable umeng_socialize_comment_bg 0x7f0602ac
int drawable umeng_socialize_comment_icon 0x7f0602ad
int drawable umeng_socialize_comment_item_bg_shape 0x7f0602ae
int drawable umeng_socialize_comment_normal 0x7f0602af
int drawable umeng_socialize_comment_selected 0x7f0602b0
int drawable umeng_socialize_commnet_header_bg 0x7f0602b1
int drawable umeng_socialize_copy 0x7f0602b2
int drawable umeng_socialize_copyurl 0x7f0602b3
int drawable umeng_socialize_default_avatar 0x7f0602b4
int drawable umeng_socialize_delete 0x7f0602b5
int drawable umeng_socialize_ding 0x7f0602b6
int drawable umeng_socialize_divider_line 0x7f0602b7
int drawable umeng_socialize_douban 0x7f0602b8
int drawable umeng_socialize_douban_off 0x7f0602b9
int drawable umeng_socialize_douban_on 0x7f0602ba
int drawable umeng_socialize_dropbox 0x7f0602bb
int drawable umeng_socialize_edit_bg 0x7f0602bc
int drawable umeng_socialize_evernote 0x7f0602bd
int drawable umeng_socialize_evernote_gray 0x7f0602be
int drawable umeng_socialize_facebook 0x7f0602bf
int drawable umeng_socialize_facebook_close 0x7f0602c0
int drawable umeng_socialize_facebook_off 0x7f0602c1
int drawable umeng_socialize_fav 0x7f0602c2
int drawable umeng_socialize_fbmessage 0x7f0602c3
int drawable umeng_socialize_fetch_image 0x7f0602c4
int drawable umeng_socialize_fetch_location_disabled 0x7f0602c5
int drawable umeng_socialize_flickr 0x7f0602c6
int drawable umeng_socialize_flickr_gray 0x7f0602c7
int drawable umeng_socialize_follow_check 0x7f0602c8
int drawable umeng_socialize_follow_off 0x7f0602c9
int drawable umeng_socialize_follow_on 0x7f0602ca
int drawable umeng_socialize_foursquare 0x7f0602cb
int drawable umeng_socialize_foursquare_gray 0x7f0602cc
int drawable umeng_socialize_gmail 0x7f0602cd
int drawable umeng_socialize_gmail_off 0x7f0602ce
int drawable umeng_socialize_gmail_on 0x7f0602cf
int drawable umeng_socialize_google 0x7f0602d0
int drawable umeng_socialize_instagram 0x7f0602d1
int drawable umeng_socialize_instagram_off 0x7f0602d2
int drawable umeng_socialize_instagram_on 0x7f0602d3
int drawable umeng_socialize_kakao 0x7f0602d4
int drawable umeng_socialize_kakao_gray 0x7f0602d5
int drawable umeng_socialize_laiwang 0x7f0602d6
int drawable umeng_socialize_laiwang_dynamic 0x7f0602d7
int drawable umeng_socialize_laiwang_dynamic_gray 0x7f0602d8
int drawable umeng_socialize_light_bar_bg_pad 0x7f0602d9
int drawable umeng_socialize_location_grey 0x7f0602da
int drawable umeng_socialize_location_ic 0x7f0602db
int drawable umeng_socialize_location_mark 0x7f0602dc
int drawable umeng_socialize_location_off 0x7f0602dd
int drawable umeng_socialize_location_on 0x7f0602de
int drawable umeng_socialize_menu_default 0x7f0602df
int drawable umeng_socialize_more 0x7f0602e0
int drawable umeng_socialize_nav_bar_bg 0x7f0602e1
int drawable umeng_socialize_nav_bar_bg_pad 0x7f0602e2
int drawable umeng_socialize_oauth_check 0x7f0602e3
int drawable umeng_socialize_oauth_check_off 0x7f0602e4
int drawable umeng_socialize_oauth_check_on 0x7f0602e5
int drawable umeng_socialize_pinterest 0x7f0602e6
int drawable umeng_socialize_pinterest_gray 0x7f0602e7
int drawable umeng_socialize_pocket 0x7f0602e8
int drawable umeng_socialize_pocket_gray 0x7f0602e9
int drawable umeng_socialize_pulltorefresh_arrow 0x7f0602ea
int drawable umeng_socialize_pv 0x7f0602eb
int drawable umeng_socialize_qq 0x7f0602ec
int drawable umeng_socialize_qq_off 0x7f0602ed
int drawable umeng_socialize_qq_on 0x7f0602ee
int drawable umeng_socialize_refersh 0x7f0602ef
int drawable umeng_socialize_search_icon 0x7f0602f0
int drawable umeng_socialize_shape_solid_black 0x7f0602f1
int drawable umeng_socialize_shape_solid_grey 0x7f0602f2
int drawable umeng_socialize_share_music 0x7f0602f3
int drawable umeng_socialize_share_pic 0x7f0602f4
int drawable umeng_socialize_share_to_button 0x7f0602f5
int drawable umeng_socialize_share_transparent_corner 0x7f0602f6
int drawable umeng_socialize_share_video 0x7f0602f7
int drawable umeng_socialize_shareboard_item_background 0x7f0602f8
int drawable umeng_socialize_sidebar_normal 0x7f0602f9
int drawable umeng_socialize_sidebar_selected 0x7f0602fa
int drawable umeng_socialize_sidebar_selector 0x7f0602fb
int drawable umeng_socialize_sina 0x7f0602fc
int drawable umeng_socialize_sina_off 0x7f0602fd
int drawable umeng_socialize_sina_on 0x7f0602fe
int drawable umeng_socialize_sms_off 0x7f0602ff
int drawable umeng_socialize_sms_on 0x7f060300
int drawable umeng_socialize_switchimage_choose 0x7f060301
int drawable umeng_socialize_switchimage_unchoose 0x7f060302
int drawable umeng_socialize_title_back_bt 0x7f060303
int drawable umeng_socialize_title_back_bt_normal 0x7f060304
int drawable umeng_socialize_title_back_bt_selected 0x7f060305
int drawable umeng_socialize_title_right_bt 0x7f060306
int drawable umeng_socialize_title_right_bt_normal 0x7f060307
int drawable umeng_socialize_title_right_bt_selected 0x7f060308
int drawable umeng_socialize_title_tab_button_left 0x7f060309
int drawable umeng_socialize_title_tab_button_right 0x7f06030a
int drawable umeng_socialize_title_tab_left_normal 0x7f06030b
int drawable umeng_socialize_title_tab_left_pressed 0x7f06030c
int drawable umeng_socialize_title_tab_right_normal 0x7f06030d
int drawable umeng_socialize_title_tab_right_pressed 0x7f06030e
int drawable umeng_socialize_wechat 0x7f06030f
int drawable umeng_socialize_wechat_gray 0x7f060310
int drawable umeng_socialize_window_shadow_pad 0x7f060311
int drawable umeng_socialize_x_button 0x7f060312
int drawable umeng_socialize_ynote 0x7f060313
int drawable umeng_socialize_ynote_gray 0x7f060314
int drawable umeng_update_btn_check_off_focused_holo_light 0x7f060315
int drawable umeng_update_btn_check_off_holo_light 0x7f060316
int drawable umeng_update_btn_check_off_pressed_holo_light 0x7f060317
int drawable umeng_update_btn_check_on_focused_holo_light 0x7f060318
int drawable umeng_update_btn_check_on_holo_light 0x7f060319
int drawable umeng_update_btn_check_on_pressed_holo_light 0x7f06031a
int drawable umeng_update_button_cancel_bg_focused 0x7f06031b
int drawable umeng_update_button_cancel_bg_normal 0x7f06031c
int drawable umeng_update_button_cancel_bg_selector 0x7f06031d
int drawable umeng_update_button_cancel_bg_tap 0x7f06031e
int drawable umeng_update_button_check_selector 0x7f06031f
int drawable umeng_update_button_close_bg_selector 0x7f060320
int drawable umeng_update_button_ok_bg_focused 0x7f060321
int drawable umeng_update_button_ok_bg_normal 0x7f060322
int drawable umeng_update_button_ok_bg_selector 0x7f060323
int drawable umeng_update_button_ok_bg_tap 0x7f060324
int drawable umeng_update_close_bg_normal 0x7f060325
int drawable umeng_update_close_bg_tap 0x7f060326
int drawable umeng_update_dialog_bg 0x7f060327
int drawable umeng_update_title_bg 0x7f060328
int drawable umeng_update_wifi_disable 0x7f060329
int drawable umsocial_defaultwatermark 0x7f06032a
int drawable update_bottom 0x7f06032b
int drawable video_review 0x7f06032c
int drawable video_review_click 0x7f06032d
int drawable vk_clear_shape 0x7f06032e
int drawable vk_gray_transparent_shape 0x7f06032f
int drawable vk_icon 0x7f060330
int drawable vk_share_send_button_background 0x7f060331
int drawable vpi__tab_indicator 0x7f060332
int drawable vpi__tab_indicator1 0x7f060333
int drawable vpi__tab_indicator2 0x7f060334
int drawable vpi__tab_selected_focused_holo 0x7f060335
int drawable vpi__tab_selected_holo 0x7f060336
int drawable vpi__tab_selected_holo1 0x7f060337
int drawable vpi__tab_selected_pressed_holo 0x7f060338
int drawable vpi__tab_unselected_focused_holo 0x7f060339
int drawable vpi__tab_unselected_holo 0x7f06033a
int drawable vpi__tab_unselected_pressed_holo 0x7f06033b
int drawable water 0x7f06033c
int drawable wifi1 0x7f06033d
int drawable wifi2 0x7f06033e
int drawable wifi3 0x7f06033f
int drawable wifi4 0x7f060340
int drawable yw_1222 0x7f060341
int id ALT 0x7f070000
int id CTRL 0x7f070001
int id FUNCTION 0x7f070002
int id META 0x7f070003
int id SHIFT 0x7f070004
int id SYM 0x7f070005
int id action_bar 0x7f070006
int id action_bar_activity_content 0x7f070007
int id action_bar_container 0x7f070008
int id action_bar_root 0x7f070009
int id action_bar_spinner 0x7f07000a
int id action_bar_subtitle 0x7f07000b
int id action_bar_title 0x7f07000c
int id action_container 0x7f07000d
int id action_context_bar 0x7f07000e
int id action_divider 0x7f07000f
int id action_image 0x7f070010
int id action_menu_divider 0x7f070011
int id action_menu_presenter 0x7f070012
int id action_mode_bar 0x7f070013
int id action_mode_bar_stub 0x7f070014
int id action_mode_close_button 0x7f070015
int id action_settings 0x7f070016
int id action_text 0x7f070017
int id actions 0x7f070018
int id activity_chooser_view_content 0x7f070019
int id ad_close_time 0x7f07001a
int id ad_image 0x7f07001b
int id ad_input 0x7f07001c
int id adapter_image 0x7f07001d
int id add 0x7f07001e
int id alertTitle 0x7f07001f
int id ali_auth_mobile_tv 0x7f070020
int id ali_auth_nqrview 0x7f070021
int id ali_auth_nqrview_error_main 0x7f070022
int id ali_auth_nqrview_error_refresh 0x7f070023
int id ali_auth_nqrview_error_sub 0x7f070024
int id ali_auth_nqrview_lay_error_pic 0x7f070025
int id ali_auth_nqrview_lay_errortips 0x7f070026
int id ali_auth_nqrview_lay_qr 0x7f070027
int id ali_auth_nqrview_lay_scaned_pic 0x7f070028
int id ali_auth_nqrview_lay_scanedtips 0x7f070029
int id ali_auth_nqrview_lay_successedtips 0x7f07002a
int id ali_auth_nqrview_qr_image 0x7f07002b
int id ali_auth_nqrview_scaned_main 0x7f07002c
int id ali_auth_nqrview_scaned_sub 0x7f07002d
int id ali_auth_qrview 0x7f07002e
int id ali_auth_send_smscode_btn 0x7f07002f
int id ali_auth_sms_code_view 0x7f070030
int id ali_auth_verify_rl 0x7f070031
int id ali_auth_webview 0x7f070032
int id all 0x7f070033
int id always 0x7f070034
int id appIcon 0x7f070035
int id app_icon_iv 0x7f070036
int id app_name_tv 0x7f070037
int id app_store_tv 0x7f070038
int id appdownloader_action 0x7f070039
int id appdownloader_desc 0x7f07003a
int id appdownloader_download_progress 0x7f07003b
int id appdownloader_download_progress_new 0x7f07003c
int id appdownloader_download_size 0x7f07003d
int id appdownloader_download_status 0x7f07003e
int id appdownloader_download_success 0x7f07003f
int id appdownloader_download_success_size 0x7f070040
int id appdownloader_download_success_status 0x7f070041
int id appdownloader_download_text 0x7f070042
int id appdownloader_icon 0x7f070043
int id appdownloader_root 0x7f070044
int id async 0x7f070045
int id attachmentLinkLayout 0x7f070046
int id auth_button 0x7f070047
int id automatic 0x7f070048
int id back 0x7f070049
int id bannner_ad_webview 0x7f07004a
int id beginning 0x7f07004b
int id blocking 0x7f07004c
int id bottom 0x7f07004d
int id box_count 0x7f07004e
int id brightness 0x7f07004f
int id btn_confirm 0x7f070050
int id btn_copy 0x7f070051
int id btn_definition 0x7f070052
int id btn_delete 0x7f070053
int id btn_delete_download 0x7f070054
int id btn_delete_item 0x7f070055
int id btn_episode_more 0x7f070056
int id btn_offline_cache 0x7f070057
int id btn_pause_download 0x7f070058
int id btn_select_all 0x7f070059
int id btn_start_play 0x7f07005a
int id btn_watch 0x7f07005b
int id button 0x7f07005c
int id buttonPanel 0x7f07005d
int id button_definition 0x7f07005e
int id cancel_tv 0x7f07005f
int id captchaAnswer 0x7f070060
int id captcha_container 0x7f070061
int id category_channel_gv_hotsort 0x7f070062
int id category_channel_gv_sort 0x7f070063
int id category_channel_tv_hot 0x7f070064
int id cb_storage_mobile 0x7f070065
int id cb_storage_sdcard 0x7f070066
int id cb_user_agreement 0x7f070067
int id center 0x7f070068
int id center_horizontal 0x7f070069
int id center_vertical 0x7f07006a
int id channel_ptrsv 0x7f07006b
int id chb_delete 0x7f07006c
int id chb_download 0x7f07006d
int id chb_only_wifi_download 0x7f07006e
int id checkalipay 0x7f07006f
int id checkbox 0x7f070070
int id checkbtn 0x7f070071
int id checkfb 0x7f070072
int id checkqq 0x7f070073
int id checksign 0x7f070074
int id checksina 0x7f070075
int id checkvk 0x7f070076
int id checkwx 0x7f070077
int id choose_ep 0x7f070078
int id chronometer 0x7f070079
int id clip_horizontal 0x7f07007a
int id clip_vertical 0x7f07007b
int id collapseActionView 0x7f07007c
int id com_alibc_auth_progressbar 0x7f07007d
int id com_facebook_fragment_container 0x7f07007e
int id com_facebook_login_activity_progress_bar 0x7f07007f
int id com_taobao_nb_sdk_web_view_title_bar 0x7f070080
int id com_taobao_nb_sdk_web_view_title_bar_back_button 0x7f070081
int id com_taobao_nb_sdk_web_view_title_bar_close_button 0x7f070082
int id com_taobao_nb_sdk_web_view_title_bar_title 0x7f070083
int id com_taobao_nb_sdk_webview_click 0x7f070084
int id com_taobao_tae_sdk_web_view_title_bar 0x7f070085
int id confirm_tv 0x7f070086
int id contentPanel 0x7f070087
int id content_ll 0x7f070088
int id content_view_image 0x7f070089
int id content_view_per 0x7f07008a
int id content_view_progress 0x7f07008b
int id content_view_text1 0x7f07008c
int id copyUrl 0x7f07008d
int id count_down 0x7f07008e
int id custom 0x7f07008f
int id customPanel 0x7f070090
int id cutline 0x7f070091
int id datePicker 0x7f070092
int id date_ordered_list 0x7f070093
int id decor_content_parent 0x7f070094
int id default_activity_button 0x7f070095
int id description 0x7f070096
int id deselect_all 0x7f070097
int id disableHome 0x7f070098
int id display_always 0x7f070099
int id divider 0x7f07009a
int id download_checkbox 0x7f07009b
int id download_icon 0x7f07009c
int id download_menu_sort_by_date 0x7f07009d
int id download_menu_sort_by_size 0x7f07009e
int id download_progress 0x7f07009f
int id download_rate 0x7f0700a0
int id download_title 0x7f0700a1
int id edit_query 0x7f0700a2
int id editcheck 0x7f0700a3
int id empty 0x7f0700a4
int id end 0x7f0700a5
int id et_dialog_message 0x7f0700a6
int id et_email 0x7f0700a7
int id et_get_link 0x7f0700a8
int id et_name 0x7f0700a9
int id et_pwd 0x7f0700aa
int id et_recommend_reason 0x7f0700ab
int id et_search_key 0x7f0700ac
int id et_suggestion 0x7f0700ad
int id et_url 0x7f0700ae
int id et_verfication_code 0x7f0700af
int id expand_activities_button 0x7f0700b0
int id expanded_menu 0x7f0700b1
int id favourite 0x7f0700b2
int id favourite_empty 0x7f0700b3
int id ffwd 0x7f0700b4
int id fill 0x7f0700b5
int id fill_horizontal 0x7f0700b6
int id fill_vertical 0x7f0700b7
int id fl_ad 0x7f0700b8
int id fl_ad_shop 0x7f0700b9
int id fl_ad_show 0x7f0700ba
int id fl_add_container 0x7f0700bb
int id fl_add_to_favourite 0x7f0700bc
int id fl_advertisement 0x7f0700bd
int id fl_banner 0x7f0700be
int id fl_bottom 0x7f0700bf
int id fl_container 0x7f0700c0
int id fl_content 0x7f0700c1
int id fl_delete 0x7f0700c2
int id fl_download 0x7f0700c3
int id fl_download_fragment_container 0x7f0700c4
int id fl_empty 0x7f0700c5
int id fl_full_play 0x7f0700c6
int id fl_gdtnative_ad 0x7f0700c7
int id fl_go_buy 0x7f0700c8
int id fl_goods_detail 0x7f0700c9
int id fl_indicator 0x7f0700ca
int id fl_input 0x7f0700cb
int id fl_list 0x7f0700cc
int id fl_main_fragment_container 0x7f0700cd
int id fl_mvideosfragment_download_failure 0x7f0700ce
int id fl_nat 0x7f0700cf
int id fl_native_ad_1 0x7f0700d0
int id fl_native_ad_2 0x7f0700d1
int id fl_native_ad_3 0x7f0700d2
int id fl_offline_cache 0x7f0700d3
int id fl_offlinecache_fragment_container 0x7f0700d4
int id fl_recent_fragment_container 0x7f0700d5
int id fl_report 0x7f0700d6
int id fl_review 0x7f0700d7
int id fl_share 0x7f0700d8
int id fl_share_qzone 0x7f0700d9
int id fl_share_to_circle 0x7f0700da
int id fl_share_to_qq 0x7f0700db
int id fl_share_to_sina 0x7f0700dc
int id fl_share_to_wechat 0x7f0700dd
int id fl_splash_ad 0x7f0700de
int id fl_video_detail 0x7f0700df
int id fl_video_play_background 0x7f0700e0
int id fl_video_select 0x7f0700e1
int id fl_videosfragment_download_failure 0x7f0700e2
int id fl_watch_history 0x7f0700e3
int id fl_webview 0x7f0700e4
int id footer_hint_textview 0x7f0700e5
int id footer_progressbar 0x7f0700e6
int id forever 0x7f0700e7
int id fragment_specific_detail_container 0x7f0700e8
int id fragment_star_detail_container 0x7f0700e9
int id fragment_video_detail_container 0x7f0700ea
int id fragment_video_episode_container 0x7f0700eb
int id fragment_video_play_container 0x7f0700ec
int id fragment_video_play_container1 0x7f0700ed
int id from 0x7f0700ee
int id full_holder 0x7f0700ef
int id full_screen 0x7f0700f0
int id fullscreen_custom_content 0x7f0700f1
int id fxlive_webview 0x7f0700f2
int id gdt_nativead_logo 0x7f0700f3
int id gdt_nativead_poster 0x7f0700f4
int id gdt_nativead_text_desc 0x7f0700f5
int id gdt_nativead_text_name 0x7f0700f6
int id gdt_nativead_text_status 0x7f0700f7
int id gesture_backward_progress 0x7f0700f8
int id gesture_cur_progress 0x7f0700f9
int id gesture_forward_progress 0x7f0700fa
int id gesture_icon_volumn 0x7f0700fb
int id gesture_layout_progress 0x7f0700fc
int id gesture_layout_volumn 0x7f0700fd
int id gesture_percent_volumn 0x7f0700fe
int id gesture_tip_progress 0x7f0700ff
int id gesture_total_progress 0x7f070100
int id getbtn 0x7f070101
int id group_list 0x7f070102
int id gv_cate_recommend 0x7f070103
int id gv_emotion 0x7f070104
int id gv_episode2 0x7f070105
int id gv_episode3 0x7f070106
int id gv_episode4 0x7f070107
int id gv_fragment_episode 0x7f070108
int id gv_guess 0x7f070109
int id gv_history_search 0x7f07010a
int id gv_hot_search 0x7f07010b
int id gv_video 0x7f07010c
int id gv_video_category 0x7f07010d
int id gv_video_container2 0x7f07010e
int id gv_video_container3 0x7f07010f
int id gv_video_everybody_look 0x7f070110
int id gv_video_guess_like 0x7f070111
int id gv_video_related_video 0x7f070112
int id gv_video_search 0x7f070113
int id help_iv 0x7f070114
int id help_tv1 0x7f070115
int id help_tv_cancel 0x7f070116
int id help_tv_commonquestion 0x7f070117
int id help_tv_num 0x7f070118
int id home 0x7f070119
int id homeAsUp 0x7f07011a
int id horizontal 0x7f07011b
int id ic_referee_portrait 0x7f07011c
int id icon 0x7f07011d
int id icon_group 0x7f07011e
int id ifRoom 0x7f07011f
int id image 0x7f070120
int id imageView 0x7f070121
int id imagesContainer 0x7f070122
int id imagesScrollView 0x7f070123
int id include_notice 0x7f070124
int id include_view1 0x7f070125
int id include_view2 0x7f070126
int id indicator_discover 0x7f070127
int id indicator_recommend 0x7f070128
int id info 0x7f070129
int id inline 0x7f07012a
int id install_app_tv 0x7f07012b
int id install_dialog_click_layout 0x7f07012c
int id install_dialog_description 0x7f07012d
int id install_hijack_view 0x7f07012e
int id install_huawei_btn2 0x7f07012f
int id install_kllk_btn1 0x7f070130
int id install_kllk_btn2 0x7f070131
int id italic 0x7f070132
int id item_channel_gv_hot_iv 0x7f070133
int id item_channel_gv_hot_tv 0x7f070134
int id item_channel_gv_iv 0x7f070135
int id item_channel_gv_tv 0x7f070136
int id item_star_iv 0x7f070137
int id item_star_iv1 0x7f070138
int id item_star_iv2 0x7f070139
int id item_star_tv 0x7f07013a
int id item_star_tv1 0x7f07013b
int id item_star_tv2 0x7f07013c
int id item_touch_helper_previous_elevation 0x7f07013d
int id item_unique_iv 0x7f07013e
int id item_unique_tv 0x7f07013f
int id iv_activity_main_download 0x7f070140
int id iv_activity_main_search 0x7f070141
int id iv_activity_protrait 0x7f070142
int id iv_ad_full_img 0x7f070143
int id iv_ad_logo 0x7f070144
int id iv_ad_pic 0x7f070145
int id iv_add_to_favourite 0x7f070146
int id iv_back 0x7f070147
int id iv_banner_close 0x7f070148
int id iv_category_icon 0x7f070149
int id iv_close 0x7f07014a
int id iv_comment_msg_portrait 0x7f07014b
int id iv_cover 0x7f07014c
int id iv_download 0x7f07014d
int id iv_download_failure 0x7f07014e
int id iv_fast_backward 0x7f07014f
int id iv_fast_forward 0x7f070150
int id iv_flaunt_news 0x7f070151
int id iv_flaunt_news1 0x7f070152
int id iv_flaunt_news2 0x7f070153
int id iv_flaunt_news3 0x7f070154
int id iv_gif_load 0x7f070155
int id iv_girl_portrait 0x7f070156
int id iv_girl_portrait2 0x7f070157
int id iv_goods_img 0x7f070158
int id iv_img 0x7f070159
int id iv_live_girl_cover 0x7f07015a
int id iv_live_girl_cover1 0x7f07015b
int id iv_login_top 0x7f07015c
int id iv_logo 0x7f07015d
int id iv_mid_show 0x7f07015e
int id iv_moive_from 0x7f07015f
int id iv_moive_img 0x7f070160
int id iv_movie_cover 0x7f070161
int id iv_movie_cover1 0x7f070162
int id iv_movie_cover2 0x7f070163
int id iv_msg_dot 0x7f070164
int id iv_offline_cache 0x7f070165
int id iv_pause_download 0x7f070166
int id iv_pic 0x7f070167
int id iv_play_loading 0x7f070168
int id iv_play_or_pause 0x7f070169
int id iv_player_next 0x7f07016a
int id iv_portrai_select 0x7f07016b
int id iv_previous 0x7f07016c
int id iv_recommend_download 0x7f07016d
int id iv_recommend_watch_history 0x7f07016e
int id iv_red_dot 0x7f07016f
int id iv_referee_portrait 0x7f070170
int id iv_register_top 0x7f070171
int id iv_report_more 0x7f070172
int id iv_resource 0x7f070173
int id iv_review_edit 0x7f070174
int id iv_review_portrait 0x7f070175
int id iv_right_ad 0x7f070176
int id iv_room_img 0x7f070177
int id iv_room_img2 0x7f070178
int id iv_room_status 0x7f070179
int id iv_room_status2 0x7f07017a
int id iv_search_ad 0x7f07017b
int id iv_search_result_ad 0x7f07017c
int id iv_select_play 0x7f07017d
int id iv_setting 0x7f07017e
int id iv_share 0x7f07017f
int id iv_sliding_hint 0x7f070180
int id iv_splash_bottom 0x7f070181
int id iv_splash_logo 0x7f070182
int id iv_spread 0x7f070183
int id iv_spread1 0x7f070184
int id iv_spread2 0x7f070185
int id iv_star_img 0x7f070186
int id iv_top_banner 0x7f070187
int id iv_top_bar_right 0x7f070188
int id iv_video_episode_more 0x7f070189
int id iv_video_play 0x7f07018a
int id iv_video_play1 0x7f07018b
int id iv_video_play2 0x7f07018c
int id iv_video_play3 0x7f07018d
int id iv_video_play_background 0x7f07018e
int id iv_videosfragment_download_failure 0x7f07018f
int id iv_volume 0x7f070190
int id iv_wifi 0x7f070191
int id kllk_install_tv 0x7f070192
int id large 0x7f070193
int id last_modified_date 0x7f070194
int id layout_controller_bar 0x7f070195
int id layout_controller_title 0x7f070196
int id left 0x7f070197
int id letv_media_controller 0x7f070198
int id letv_videoview 0x7f070199
int id li1 0x7f07019a
int id line1 0x7f07019b
int id line3 0x7f07019c
int id linearlay_select_definition 0x7f07019d
int id linkHost 0x7f07019e
int id linkTitle 0x7f07019f
int id list 0x7f0701a0
int id listMode 0x7f0701a1
int id list_item 0x7f0701a2
int id list_reply 0x7f0701a3
int id ll_activity_login 0x7f0701a4
int id ll_activity_main_search 0x7f0701a5
int id ll_ad_containner 0x7f0701a6
int id ll_add_attention 0x7f0701a7
int id ll_all 0x7f0701a8
int id ll_all_moive_item 0x7f0701a9
int id ll_autograph 0x7f0701aa
int id ll_birthday 0x7f0701ab
int id ll_bottom 0x7f0701ac
int id ll_container 0x7f0701ad
int id ll_content 0x7f0701ae
int id ll_download_so 0x7f0701af
int id ll_favourite 0x7f0701b0
int id ll_img_and_text 0x7f0701b1
int id ll_live_cate 0x7f0701b2
int id ll_live_girl_show 0x7f0701b3
int id ll_live_girl_show1 0x7f0701b4
int id ll_live_girl_show2 0x7f0701b5
int id ll_live_recommend 0x7f0701b6
int id ll_live_top 0x7f0701b7
int id ll_login_content 0x7f0701b8
int id ll_mine_info 0x7f0701b9
int id ll_moive_item 0x7f0701ba
int id ll_moive_item1 0x7f0701bb
int id ll_moive_item2 0x7f0701bc
int id ll_nickName 0x7f0701bd
int id ll_no_data 0x7f0701be
int id ll_no_login 0x7f0701bf
int id ll_offline_storage 0x7f0701c0
int id ll_portrait_select 0x7f0701c1
int id ll_recent_bottom 0x7f0701c2
int id ll_review 0x7f0701c3
int id ll_sex 0x7f0701c4
int id ll_star 0x7f0701c5
int id ll_star1 0x7f0701c6
int id ll_star2 0x7f0701c7
int id ll_top 0x7f0701c8
int id ll_video_container 0x7f0701c9
int id ll_video_detail 0x7f0701ca
int id ll_video_info 0x7f0701cb
int id ll_video_show 0x7f0701cc
int id ll_video_show1 0x7f0701cd
int id ll_video_show2 0x7f0701ce
int id ll_video_show3 0x7f0701cf
int id load_rate 0x7f0701d0
int id load_tip 0x7f0701d1
int id loading 0x7f0701d2
int id local_install_hijack_layout 0x7f0701d3
int id login_tv_cancel 0x7f0701d4
int id login_tv_qq 0x7f0701d5
int id lv_activity_follow 0x7f0701d6
int id lv_category_video 0x7f0701d7
int id lv_fragment_discover_res 0x7f0701d8
int id lv_fragment_follow 0x7f0701d9
int id lv_guess_like 0x7f0701da
int id lv_live_category 0x7f0701db
int id lv_live_news 0x7f0701dc
int id lv_message_list 0x7f0701dd
int id lv_recommend_content 0x7f0701de
int id lv_review 0x7f0701df
int id lv_review_list 0x7f0701e0
int id lv_specific_detail 0x7f0701e1
int id lv_star_detail 0x7f0701e2
int id lv_video 0x7f0701e3
int id main_content 0x7f0701e4
int id media_controller 0x7f0701e5
int id media_ib_lock 0x7f0701e6
int id mediacontroller_progress 0x7f0701e7
int id menu_frame 0x7f0701e8
int id message 0x7f0701e9
int id middle 0x7f0701ea
int id mine_ci_head 0x7f0701eb
int id mine_rl_head 0x7f0701ec
int id mine_tv_login 0x7f0701ed
int id mine_tv_name 0x7f0701ee
int id mine_tv_name2 0x7f0701ef
int id mm_gv_video 0x7f0701f0
int id multiply 0x7f0701f1
int id myProgressBar 0x7f0701f2
int id name 0x7f0701f3
int id nat 0x7f0701f4
int id never 0x7f0701f5
int id never_display 0x7f0701f6
int id next 0x7f0701f7
int id none 0x7f0701f8
int id normal 0x7f0701f9
int id notification_background 0x7f0701fa
int id notification_main_column 0x7f0701fb
int id notification_main_column_container 0x7f0701fc
int id offline 0x7f0701fd
int id open_auth_btn_cancel 0x7f0701fe
int id open_auth_btn_close 0x7f0701ff
int id open_auth_btn_grant 0x7f070200
int id open_auth_desc 0x7f070201
int id open_auth_rl 0x7f070202
int id open_auth_title 0x7f070203
int id open_graph 0x7f070204
int id option 0x7f070205
int id option_list 0x7f070206
int id page 0x7f070207
int id pager 0x7f070208
int id pager_recomend_category 0x7f070209
int id parentPanel 0x7f07020a
int id pause 0x7f07020b
int id paused_text 0x7f07020c
int id pb_download_progress 0x7f07020d
int id pb_storage 0x7f07020e
int id player_ad 0x7f07020f
int id player_ad_close 0x7f070210
int id player_ad_count_and_skip 0x7f070211
int id player_ad_view 0x7f070212
int id postContentLayout 0x7f070213
int id postSettingsLayout 0x7f070214
int id power_clock 0x7f070215
int id ppmedia_controller 0x7f070216
int id prev 0x7f070217
int id probar 0x7f070218
int id progress 0x7f070219
int id progressBar 0x7f07021a
int id progress_bar 0x7f07021b
int id progress_bar_parent 0x7f07021c
int id progress_circular 0x7f07021d
int id progress_frame 0x7f07021e
int id progress_horizontal 0x7f07021f
int id progress_text 0x7f070220
int id progressbar 0x7f070221
int id progressness 0x7f070222
int id promoter_frame 0x7f070223
int id ptsv_container 0x7f070224
int id radio 0x7f070225
int id rb_comment_msg 0x7f070226
int id rb_guess_like 0x7f070227
int id rb_nav_category 0x7f070228
int id rb_nav_discover 0x7f070229
int id rb_nav_mine 0x7f07022a
int id rb_nav_recommend 0x7f07022b
int id rb_offline_download 0x7f07022c
int id rb_system_msg 0x7f07022d
int id rb_watch_history 0x7f07022e
int id reply_comment 0x7f07022f
int id reply_name 0x7f070230
int id reply_time 0x7f070231
int id result 0x7f070232
int id rew 0x7f070233
int id rg_msg 0x7f070234
int id rg_nav 0x7f070235
int id rg_recent 0x7f070236
int id right 0x7f070237
int id right_icon 0x7f070238
int id right_side 0x7f070239
int id rl_about_us 0x7f07023a
int id rl_cate_recommend 0x7f07023b
int id rl_category_video 0x7f07023c
int id rl_check_update 0x7f07023d
int id rl_clear_cache 0x7f07023e
int id rl_controller_top 0x7f07023f
int id rl_detail 0x7f070240
int id rl_disclaimer 0x7f070241
int id rl_discover 0x7f070242
int id rl_follow_activity 0x7f070243
int id rl_friends 0x7f070244
int id rl_guess_like 0x7f070245
int id rl_live_category 0x7f070246
int id rl_live_girl 0x7f070247
int id rl_mine_download 0x7f070248
int id rl_mine_favourite 0x7f070249
int id rl_mine_follow 0x7f07024a
int id rl_mine_message 0x7f07024b
int id rl_mine_watch_history 0x7f07024c
int id rl_only_img 0x7f07024d
int id rl_privacy_policy 0x7f07024e
int id rl_qq 0x7f07024f
int id rl_qqzone 0x7f070250
int id rl_recommend 0x7f070251
int id rl_recommend_content 0x7f070252
int id rl_recommend_top 0x7f070253
int id rl_release 0x7f070254
int id rl_review 0x7f070255
int id rl_review_goods 0x7f070256
int id rl_search_result 0x7f070257
int id rl_settings 0x7f070258
int id rl_share 0x7f070259
int id rl_sina 0x7f07025a
int id rl_specific_detail 0x7f07025b
int id rl_starView 0x7f07025c
int id rl_storage_sdcard 0x7f07025d
int id rl_suggestion 0x7f07025e
int id rl_title_item 0x7f07025f
int id rl_unique_ptrlv 0x7f070260
int id rl_user_agreement 0x7f070261
int id rl_video 0x7f070262
int id rl_walfare 0x7f070263
int id rl_wxchat 0x7f070264
int id root 0x7f070265
int id rv_content 0x7f070266
int id rv_recommend 0x7f070267
int id sb_brightness 0x7f070268
int id screen 0x7f070269
int id screen_container 0x7f07026a
int id screen_mask 0x7f07026b
int id scrollIndicatorDown 0x7f07026c
int id scrollIndicatorUp 0x7f07026d
int id scrollView 0x7f07026e
int id search_badge 0x7f07026f
int id search_bar 0x7f070270
int id search_button 0x7f070271
int id search_close_btn 0x7f070272
int id search_edit_frame 0x7f070273
int id search_go_btn 0x7f070274
int id search_mag_icon 0x7f070275
int id search_plate 0x7f070276
int id search_src_text 0x7f070277
int id search_voice_btn 0x7f070278
int id seekbar_load_so 0x7f070279
int id seekbar_progress 0x7f07027a
int id seekbar_volume 0x7f07027b
int id select_dialog_listview 0x7f07027c
int id selected 0x7f07027d
int id selection_delete 0x7f07027e
int id selection_menu 0x7f07027f
int id sendButton 0x7f070280
int id sendButtonLayout 0x7f070281
int id sendProgress 0x7f070282
int id setting_btn_exit 0x7f070283
int id share 0x7f070284
int id shareText 0x7f070285
int id shortcut 0x7f070286
int id showCustom 0x7f070287
int id showHome 0x7f070288
int id showTitle 0x7f070289
int id show_download_list_button 0x7f07028a
int id size_ordered_list 0x7f07028b
int id size_text 0x7f07028c
int id small 0x7f07028d
int id socialize_image_view 0x7f07028e
int id socialize_text_view 0x7f07028f
int id sp_movie_cover 0x7f070290
int id sp_movie_cover2 0x7f070291
int id sp_movie_cover3 0x7f070292
int id sp_movie_frame1 0x7f070293
int id sp_movie_frame2 0x7f070294
int id sp_movie_frame3 0x7f070295
int id sp_movie_rating 0x7f070296
int id sp_movie_rating2 0x7f070297
int id sp_movie_rating3 0x7f070298
int id sp_movie_title 0x7f070299
int id sp_movie_title2 0x7f07029a
int id sp_movie_title3 0x7f07029b
int id spacer 0x7f07029c
int id specific_detail_banner 0x7f07029d
int id specific_detail_introduction 0x7f07029e
int id specific_detail_name 0x7f07029f
int id split_action_bar 0x7f0702a0
int id sr_follow 0x7f0702a1
int id src_atop 0x7f0702a2
int id src_in 0x7f0702a3
int id src_over 0x7f0702a4
int id srl_favourite 0x7f0702a5
int id srl_recommend 0x7f0702a6
int id standard 0x7f0702a7
int id star_detail_country 0x7f0702a8
int id star_detail_job 0x7f0702a9
int id star_detail_name 0x7f0702aa
int id star_detail_portrait 0x7f0702ab
int id star_detail_works 0x7f0702ac
int id star_ptrgv 0x7f0702ad
int id start 0x7f0702ae
int id start_download_button 0x7f0702af
int id status_msg 0x7f0702b0
int id status_text 0x7f0702b1
int id submenuarrow 0x7f0702b2
int id submit_area 0x7f0702b3
int id sv_detail 0x7f0702b4
int id sv_live_cate_min 0x7f0702b5
int id sv_live_hot 0x7f0702b6
int id tabMode 0x7f0702b7
int id tag_ignore 0x7f0702b8
int id tag_transition_group 0x7f0702b9
int id tag_view_name 0x7f0702ba
int id text 0x7f0702bb
int id text2 0x7f0702bc
int id textSpacerNoButtons 0x7f0702bd
int id textSpacerNoTitle 0x7f0702be
int id textView 0x7f0702bf
int id textView2 0x7f0702c0
int id textView3 0x7f0702c1
int id textView4 0x7f0702c2
int id time 0x7f0702c3
int id time_current 0x7f0702c4
int id title 0x7f0702c5
int id titleDividerNoCustom 0x7f0702c6
int id title_bar 0x7f0702c7
int id title_template 0x7f0702c8
int id top 0x7f0702c9
int id topBarLayout 0x7f0702ca
int id topPanel 0x7f0702cb
int id triangle 0x7f0702cc
int id tt_ad_logo 0x7f0702cd
int id tt_backup_draw_bg 0x7f0702ce
int id tt_battery_time_layout 0x7f0702cf
int id tt_browser_download_btn 0x7f0702d0
int id tt_browser_download_btn_stub 0x7f0702d1
int id tt_browser_progress 0x7f0702d2
int id tt_browser_titlebar_dark_view_stub 0x7f0702d3
int id tt_browser_titlebar_view_stub 0x7f0702d4
int id tt_browser_webview 0x7f0702d5
int id tt_browser_webview_loading 0x7f0702d6
int id tt_bu_close 0x7f0702d7
int id tt_bu_desc 0x7f0702d8
int id tt_bu_dislike 0x7f0702d9
int id tt_bu_download 0x7f0702da
int id tt_bu_icon 0x7f0702db
int id tt_bu_img 0x7f0702dc
int id tt_bu_img_1 0x7f0702dd
int id tt_bu_img_2 0x7f0702de
int id tt_bu_img_3 0x7f0702df
int id tt_bu_img_container 0x7f0702e0
int id tt_bu_img_content 0x7f0702e1
int id tt_bu_name 0x7f0702e2
int id tt_bu_score 0x7f0702e3
int id tt_bu_score_bar 0x7f0702e4
int id tt_bu_title 0x7f0702e5
int id tt_bu_video_container 0x7f0702e6
int id tt_bu_video_container_inner 0x7f0702e7
int id tt_bu_video_icon 0x7f0702e8
int id tt_bu_video_name1 0x7f0702e9
int id tt_bu_video_name2 0x7f0702ea
int id tt_bu_video_score 0x7f0702eb
int id tt_bu_video_score_bar 0x7f0702ec
int id tt_click_lower_non_content_layout 0x7f0702ed
int id tt_click_upper_non_content_layout 0x7f0702ee
int id tt_column_line 0x7f0702ef
int id tt_comment_backup 0x7f0702f0
int id tt_comment_close 0x7f0702f1
int id tt_comment_commit 0x7f0702f2
int id tt_comment_content 0x7f0702f3
int id tt_comment_number 0x7f0702f4
int id tt_comment_vertical 0x7f0702f5
int id tt_dislike_header_back 0x7f0702f6
int id tt_dislike_header_tv 0x7f0702f7
int id tt_dislike_line1 0x7f0702f8
int id tt_dislike_title_content 0x7f0702f9
int id tt_edit_suggestion 0x7f0702fa
int id tt_filer_words_lv 0x7f0702fb
int id tt_filer_words_lv_second 0x7f0702fc
int id tt_image 0x7f0702fd
int id tt_insert_ad_img 0x7f0702fe
int id tt_insert_ad_logo 0x7f0702ff
int id tt_insert_ad_text 0x7f070300
int id tt_insert_dislike_icon_img 0x7f070301
int id tt_insert_express_ad_fl 0x7f070302
int id tt_install_btn_no 0x7f070303
int id tt_install_btn_yes 0x7f070304
int id tt_install_content 0x7f070305
int id tt_install_title 0x7f070306
int id tt_item_tv 0x7f070307
int id tt_item_tv_son 0x7f070308
int id tt_message 0x7f070309
int id tt_native_video_container 0x7f07030a
int id tt_native_video_frame 0x7f07030b
int id tt_native_video_img_cover 0x7f07030c
int id tt_native_video_img_cover_viewStub 0x7f07030d
int id tt_native_video_img_id 0x7f07030e
int id tt_native_video_layout 0x7f07030f
int id tt_native_video_play 0x7f070310
int id tt_native_video_titlebar 0x7f070311
int id tt_negtive 0x7f070312
int id tt_playable_ad_close 0x7f070313
int id tt_playable_ad_close_layout 0x7f070314
int id tt_playable_loading 0x7f070315
int id tt_playable_pb_view 0x7f070316
int id tt_playable_play 0x7f070317
int id tt_playable_progress_tip 0x7f070318
int id tt_positive 0x7f070319
int id tt_rb_score 0x7f07031a
int id tt_rb_score_backup 0x7f07031b
int id tt_reward_ad_appname 0x7f07031c
int id tt_reward_ad_appname_backup 0x7f07031d
int id tt_reward_ad_download 0x7f07031e
int id tt_reward_ad_download_backup 0x7f07031f
int id tt_reward_ad_download_layout 0x7f070320
int id tt_reward_ad_icon 0x7f070321
int id tt_reward_ad_icon_backup 0x7f070322
int id tt_reward_browser_webview 0x7f070323
int id tt_reward_full_endcard_backup 0x7f070324
int id tt_reward_playable_loading 0x7f070325
int id tt_reward_root 0x7f070326
int id tt_rl_download 0x7f070327
int id tt_root_view 0x7f070328
int id tt_splash_ad_gif 0x7f070329
int id tt_splash_express_container 0x7f07032a
int id tt_splash_skip_btn 0x7f07032b
int id tt_splash_video_ad_mute 0x7f07032c
int id tt_splash_video_container 0x7f07032d
int id tt_title 0x7f07032e
int id tt_titlebar_back 0x7f07032f
int id tt_titlebar_close 0x7f070330
int id tt_titlebar_dislike 0x7f070331
int id tt_titlebar_title 0x7f070332
int id tt_top_countdown 0x7f070333
int id tt_top_dislike 0x7f070334
int id tt_top_layout_proxy 0x7f070335
int id tt_top_mute 0x7f070336
int id tt_top_skip 0x7f070337
int id tt_video_ad_bottom_layout 0x7f070338
int id tt_video_ad_button 0x7f070339
int id tt_video_ad_button_draw 0x7f07033a
int id tt_video_ad_close 0x7f07033b
int id tt_video_ad_close_layout 0x7f07033c
int id tt_video_ad_cover 0x7f07033d
int id tt_video_ad_cover_center_layout 0x7f07033e
int id tt_video_ad_cover_center_layout_draw 0x7f07033f
int id tt_video_ad_covers 0x7f070340
int id tt_video_ad_finish_cover_image 0x7f070341
int id tt_video_ad_full_screen 0x7f070342
int id tt_video_ad_logo_image 0x7f070343
int id tt_video_ad_name 0x7f070344
int id tt_video_ad_replay 0x7f070345
int id tt_video_back 0x7f070346
int id tt_video_btn_ad_image_tv 0x7f070347
int id tt_video_close 0x7f070348
int id tt_video_current_time 0x7f070349
int id tt_video_draw_layout_viewStub 0x7f07034a
int id tt_video_fullscreen_back 0x7f07034b
int id tt_video_loading_cover_image 0x7f07034c
int id tt_video_loading_progress 0x7f07034d
int id tt_video_loading_retry 0x7f07034e
int id tt_video_loading_retry_layout 0x7f07034f
int id tt_video_play 0x7f070350
int id tt_video_progress 0x7f070351
int id tt_video_retry 0x7f070352
int id tt_video_retry_des 0x7f070353
int id tt_video_reward_bar 0x7f070354
int id tt_video_reward_container 0x7f070355
int id tt_video_seekbar 0x7f070356
int id tt_video_time_left_time 0x7f070357
int id tt_video_time_play 0x7f070358
int id tt_video_title 0x7f070359
int id tt_video_top_layout 0x7f07035a
int id tt_video_top_title 0x7f07035b
int id tt_video_traffic_continue_play_btn 0x7f07035c
int id tt_video_traffic_continue_play_tv 0x7f07035d
int id tt_video_traffic_tip_layout 0x7f07035e
int id tt_video_traffic_tip_layout_viewStub 0x7f07035f
int id tt_video_traffic_tip_tv 0x7f070360
int id tv_activity_main_login 0x7f070361
int id tv_activity_main_search 0x7f070362
int id tv_add_review 0x7f070363
int id tv_add_to_favourite 0x7f070364
int id tv_atonce_update 0x7f070365
int id tv_autograph 0x7f070366
int id tv_back 0x7f070367
int id tv_banner_descrip 0x7f070368
int id tv_banner_title 0x7f070369
int id tv_birthday 0x7f07036a
int id tv_cancel 0x7f07036b
int id tv_cancle 0x7f07036c
int id tv_cancle_follow 0x7f07036d
int id tv_category_icon 0x7f07036e
int id tv_category_name 0x7f07036f
int id tv_category_name2 0x7f070370
int id tv_collection_more 0x7f070371
int id tv_comment_from_context 0x7f070372
int id tv_comment_from_who 0x7f070373
int id tv_comment_link 0x7f070374
int id tv_comment_reply 0x7f070375
int id tv_comment_time 0x7f070376
int id tv_confirm 0x7f070377
int id tv_content 0x7f070378
int id tv_controller_title 0x7f070379
int id tv_current_time 0x7f07037a
int id tv_date 0x7f07037b
int id tv_dialog_cancel 0x7f07037c
int id tv_dialog_content 0x7f07037d
int id tv_dialog_noti_wifi 0x7f07037e
int id tv_dialog_title 0x7f07037f
int id tv_download 0x7f070380
int id tv_download_byte 0x7f070381
int id tv_download_progress 0x7f070382
int id tv_download_status 0x7f070383
int id tv_empty 0x7f070384
int id tv_episode 0x7f070385
int id tv_favourite 0x7f070386
int id tv_favourite_goods 0x7f070387
int id tv_favourite_num 0x7f070388
int id tv_follow_login 0x7f070389
int id tv_forget_pwd 0x7f07038a
int id tv_from 0x7f07038b
int id tv_get_goods_info 0x7f07038c
int id tv_girl_nickname 0x7f07038d
int id tv_girl_nickname2 0x7f07038e
int id tv_go_search 0x7f07038f
int id tv_goods_des 0x7f070390
int id tv_goods_name 0x7f070391
int id tv_goods_price 0x7f070392
int id tv_info 0x7f070393
int id tv_list 0x7f070394
int id tv_live_girl_num_online 0x7f070395
int id tv_live_girl_num_online1 0x7f070396
int id tv_live_girl_title 0x7f070397
int id tv_live_girl_title1 0x7f070398
int id tv_login 0x7f070399
int id tv_mine_download 0x7f07039a
int id tv_mine_favourite 0x7f07039b
int id tv_mine_follow 0x7f07039c
int id tv_mine_history 0x7f07039d
int id tv_mine_msg 0x7f07039e
int id tv_moive 0x7f07039f
int id tv_moive_all 0x7f0703a0
int id tv_moive_comment_num 0x7f0703a1
int id tv_moive_name 0x7f0703a2
int id tv_moive_play_num 0x7f0703a3
int id tv_moive_score 0x7f0703a4
int id tv_moive_special 0x7f0703a5
int id tv_moive_time 0x7f0703a6
int id tv_moive_title 0x7f0703a7
int id tv_more 0x7f0703a8
int id tv_more_comment 0x7f0703a9
int id tv_more_hot 0x7f0703aa
int id tv_more_new 0x7f0703ab
int id tv_movie_comment_num 0x7f0703ac
int id tv_movie_comment_num1 0x7f0703ad
int id tv_movie_comment_num2 0x7f0703ae
int id tv_movie_intro 0x7f0703af
int id tv_movie_intro1 0x7f0703b0
int id tv_movie_level 0x7f0703b1
int id tv_movie_level1 0x7f0703b2
int id tv_movie_play_num 0x7f0703b3
int id tv_movie_play_num1 0x7f0703b4
int id tv_movie_play_num2 0x7f0703b5
int id tv_movie_rating 0x7f0703b6
int id tv_movie_rating1 0x7f0703b7
int id tv_movie_rating2 0x7f0703b8
int id tv_movie_title 0x7f0703b9
int id tv_movie_title1 0x7f0703ba
int id tv_movie_title2 0x7f0703bb
int id tv_msg_nickname 0x7f0703bc
int id tv_my_comment 0x7f0703bd
int id tv_negative 0x7f0703be
int id tv_nickName 0x7f0703bf
int id tv_no_network 0x7f0703c0
int id tv_no_review 0x7f0703c1
int id tv_no_update 0x7f0703c2
int id tv_notice 0x7f0703c3
int id tv_obtain_verfication_code 0x7f0703c4
int id tv_offline_cache 0x7f0703c5
int id tv_offline_storage 0x7f0703c6
int id tv_on_line_num 0x7f0703c7
int id tv_on_line_num2 0x7f0703c8
int id tv_pic_dialog_bottom 0x7f0703c9
int id tv_pic_dialog_top 0x7f0703ca
int id tv_positive 0x7f0703cb
int id tv_privacy_policy 0x7f0703cc
int id tv_progrerss 0x7f0703cd
int id tv_progresscurtime 0x7f0703ce
int id tv_progresstime 0x7f0703cf
int id tv_readcount 0x7f0703d0
int id tv_recommend_language 0x7f0703d1
int id tv_referee_nickname 0x7f0703d2
int id tv_register 0x7f0703d3
int id tv_release_nickname 0x7f0703d4
int id tv_relsease_confirm 0x7f0703d5
int id tv_resource 0x7f0703d6
int id tv_review 0x7f0703d7
int id tv_review_content 0x7f0703d8
int id tv_review_deliver 0x7f0703d9
int id tv_review_edit 0x7f0703da
int id tv_review_layout 0x7f0703db
int id tv_review_nickname 0x7f0703dc
int id tv_review_num 0x7f0703dd
int id tv_review_reply 0x7f0703de
int id tv_review_time 0x7f0703df
int id tv_search_cancel 0x7f0703e0
int id tv_search_clear_his 0x7f0703e1
int id tv_see_review 0x7f0703e2
int id tv_sex 0x7f0703e3
int id tv_share 0x7f0703e4
int id tv_share_qzone 0x7f0703e5
int id tv_share_to_circle 0x7f0703e6
int id tv_share_to_qq 0x7f0703e7
int id tv_share_to_sina 0x7f0703e8
int id tv_share_to_wechat 0x7f0703e9
int id tv_size 0x7f0703ea
int id tv_star_name 0x7f0703eb
int id tv_storage_mobile 0x7f0703ec
int id tv_storage_sdcard 0x7f0703ed
int id tv_suggestion 0x7f0703ee
int id tv_text 0x7f0703ef
int id tv_time 0x7f0703f0
int id tv_title 0x7f0703f1
int id tv_top_bar_left 0x7f0703f2
int id tv_top_bar_left2 0x7f0703f3
int id tv_top_bar_middle 0x7f0703f4
int id tv_top_bar_right 0x7f0703f5
int id tv_top_right 0x7f0703f6
int id tv_top_ten 0x7f0703f7
int id tv_total_byte 0x7f0703f8
int id tv_tuiguang 0x7f0703f9
int id tv_update_time 0x7f0703fa
int id tv_user_agreement 0x7f0703fb
int id tv_version 0x7f0703fc
int id tv_version_name 0x7f0703fd
int id tv_video_episode_more 0x7f0703fe
int id tv_video_introduction 0x7f0703ff
int id tv_watch_time 0x7f070400
int id umeng_back 0x7f070401
int id umeng_clear 0x7f070402
int id umeng_common_icon_view 0x7f070403
int id umeng_common_notification 0x7f070404
int id umeng_common_notification_controller 0x7f070405
int id umeng_common_progress_bar 0x7f070406
int id umeng_common_progress_text 0x7f070407
int id umeng_common_rich_notification_cancel 0x7f070408
int id umeng_common_rich_notification_continue 0x7f070409
int id umeng_common_title 0x7f07040a
int id umeng_copy 0x7f07040b
int id umeng_del 0x7f07040c
int id umeng_image_edge 0x7f07040d
int id umeng_menu_bottom 0x7f07040e
int id umeng_menu_bottom2 0x7f07040f
int id umeng_menu_center 0x7f070410
int id umeng_menu_center2 0x7f070411
int id umeng_share_btn 0x7f070412
int id umeng_share_icon 0x7f070413
int id umeng_socialize_follow 0x7f070414
int id umeng_socialize_follow_check 0x7f070415
int id umeng_socialize_share_bottom_area 0x7f070416
int id umeng_socialize_share_edittext 0x7f070417
int id umeng_socialize_share_titlebar 0x7f070418
int id umeng_socialize_share_word_num 0x7f070419
int id umeng_socialize_titlebar 0x7f07041a
int id umeng_title 0x7f07041b
int id umeng_update_content 0x7f07041c
int id umeng_update_frame 0x7f07041d
int id umeng_update_id_cancel 0x7f07041e
int id umeng_update_id_check 0x7f07041f
int id umeng_update_id_close 0x7f070420
int id umeng_update_id_ignore 0x7f070421
int id umeng_update_id_ok 0x7f070422
int id umeng_update_wifi_indicator 0x7f070423
int id umeng_web_title 0x7f070424
int id underline 0x7f070425
int id uniform 0x7f070426
int id unique_ptrlv 0x7f070427
int id unknown 0x7f070428
int id up 0x7f070429
int id url_input_edittext 0x7f07042a
int id useLogo 0x7f07042b
int id v_1 0x7f07042c
int id v_2 0x7f07042d
int id v_list 0x7f07042e
int id v_message_detail 0x7f07042f
int id v_review 0x7f070430
int id v_status_bar 0x7f070431
int id vertical 0x7f070432
int id video_actor 0x7f070433
int id video_episode_tv_lookmore 0x7f070434
int id video_introduction 0x7f070435
int id video_introduction_more 0x7f070436
int id video_more_image 0x7f070437
int id video_more_text 0x7f070438
int id video_score 0x7f070439
int id video_type 0x7f07043a
int id video_view 0x7f07043b
int id video_year 0x7f07043c
int id view_top 0x7f07043d
int id volume 0x7f07043e
int id volumeness 0x7f07043f
int id vp_banner 0x7f070440
int id vp_discover 0x7f070441
int id vp_episode 0x7f070442
int id vp_recommend 0x7f070443
int id vv_video 0x7f070444
int id webView 0x7f070445
int id webview 0x7f070446
int id webview_player 0x7f070447
int id webviewload_monitor_cancel_point 0x7f070448
int id withText 0x7f070449
int id wrap_content 0x7f07044a
int integer abc_config_activityDefaultDur 0x7f080000
int integer abc_config_activityShortDur 0x7f080001
int integer cancel_button_image_alpha 0x7f080002
int integer config_tooltipAnimTime 0x7f080003
int integer default_circle_indicator_orientation 0x7f080004
int integer default_title_indicator_footer_indicator_style 0x7f080005
int integer default_title_indicator_line_position 0x7f080006
int integer default_underline_indicator_fade_delay 0x7f080007
int integer default_underline_indicator_fade_length 0x7f080008
int integer status_bar_notification_info_maxnum 0x7f080009
int integer tt_video_progress_max 0x7f08000a
int layout abc_action_bar_title_item 0x7f090000
int layout abc_action_bar_up_container 0x7f090001
int layout abc_action_menu_item_layout 0x7f090002
int layout abc_action_menu_layout 0x7f090003
int layout abc_action_mode_bar 0x7f090004
int layout abc_action_mode_close_item_material 0x7f090005
int layout abc_activity_chooser_view 0x7f090006
int layout abc_activity_chooser_view_list_item 0x7f090007
int layout abc_alert_dialog_button_bar_material 0x7f090008
int layout abc_alert_dialog_material 0x7f090009
int layout abc_alert_dialog_title_material 0x7f09000a
int layout abc_dialog_title_material 0x7f09000b
int layout abc_expanded_menu_layout 0x7f09000c
int layout abc_list_menu_item_checkbox 0x7f09000d
int layout abc_list_menu_item_icon 0x7f09000e
int layout abc_list_menu_item_layout 0x7f09000f
int layout abc_list_menu_item_radio 0x7f090010
int layout abc_popup_menu_header_item_layout 0x7f090011
int layout abc_popup_menu_item_layout 0x7f090012
int layout abc_screen_content_include 0x7f090013
int layout abc_screen_simple 0x7f090014
int layout abc_screen_simple_overlay_action_mode 0x7f090015
int layout abc_screen_toolbar 0x7f090016
int layout abc_search_dropdown_item_icons_2line 0x7f090017
int layout abc_search_view 0x7f090018
int layout abc_select_dialog_material 0x7f090019
int layout abc_tooltip 0x7f09001a
int layout act_help 0x7f09001b
int layout act_login 0x7f09001c
int layout act_mine_message 0x7f09001d
int layout activity_download 0x7f09001e
int layout activity_follow 0x7f09001f
int layout activity_forget_pwd 0x7f090020
int layout activity_goods_detail 0x7f090021
int layout activity_goods_review 0x7f090022
int layout activity_main 0x7f090023
int layout activity_permissions 0x7f090024
int layout activity_person_info 0x7f090025
int layout activity_player 0x7f090026
int layout activity_register 0x7f090027
int layout activity_release_goods 0x7f090028
int layout activity_release_prompt 0x7f090029
int layout activity_specific_list 0x7f09002a
int layout activity_splash 0x7f09002b
int layout activity_stars 0x7f09002c
int layout activity_watch_history 0x7f09002d
int layout activty_live_category 0x7f09002e
int layout ad_browser_activity 0x7f09002f
int layout ad_item 0x7f090030
int layout ali_auth_nqrview 0x7f090031
int layout ali_auth_qrview 0x7f090032
int layout ali_auth_sms_verification 0x7f090033
int layout app_authadapter 0x7f090034
int layout app_shareadapter 0x7f090035
int layout app_styleadapter 0x7f090036
int layout appdownloader_notification_layout 0x7f090037
int layout banner_layout 0x7f090038
int layout banner_show 0x7f090039
int layout browser_activity 0x7f09003a
int layout browser_fengxing_activity 0x7f09003b
int layout category_channel 0x7f09003c
int layout category_fragment 0x7f09003d
int layout category_item 0x7f09003e
int layout category_movie_item 0x7f09003f
int layout category_star 0x7f090040
int layout category_top_bar 0x7f090041
int layout category_unique 0x7f090042
int layout com_alibaba_bc_layout 0x7f090043
int layout com_alibc_auth_actiivty 0x7f090044
int layout com_facebook_activity_layout 0x7f090045
int layout com_facebook_login_fragment 0x7f090046
int layout com_taobao_nb_sdk_web_view_activity 0x7f090047
int layout com_taobao_nb_sdk_web_view_title_bar 0x7f090048
int layout comment_message_item 0x7f090049
int layout commentinfo 0x7f09004a
int layout custom_dialog 0x7f09004b
int layout custom_share_bottom_dialog 0x7f09004c
int layout cutline 0x7f09004d
int layout definition_item 0x7f09004e
int layout dialog_user_protocol 0x7f09004f
int layout download_group_activity 0x7f090050
int layout download_group_item 0x7f090051
int layout download_item 0x7f090052
int layout download_list 0x7f090053
int layout download_list_item 0x7f090054
int layout download_url_activity 0x7f090055
int layout emotion_grid 0x7f090056
int layout emotion_item 0x7f090057
int layout fav_item 0x7f090058
int layout favourites_activity 0x7f090059
int layout fragment_cate_recommend 0x7f09005a
int layout fragment_discover 0x7f09005b
int layout fragment_discover_top 0x7f09005c
int layout fragment_episode 0x7f09005d
int layout fragment_follow 0x7f09005e
int layout fragment_guess_like 0x7f09005f
int layout fragment_iqiyi_video 0x7f090060
int layout fragment_letv 0x7f090061
int layout fragment_live_girl 0x7f090062
int layout fragment_live_top 0x7f090063
int layout fragment_live_top2 0x7f090064
int layout fragment_pptv_player 0x7f090065
int layout fragment_recommend_category 0x7f090066
int layout fragment_recommend_content 0x7f090067
int layout fragment_sohu_player 0x7f090068
int layout fragment_webview_video 0x7f090069
int layout gdtnativead_item_nativelistitem 0x7f09006a
int layout hot_star_item 0x7f09006b
int layout indictor 0x7f09006c
int layout infodetail 0x7f09006d
int layout item_ad_csj_list_column1 0x7f09006e
int layout item_ad_csj_list_column2 0x7f09006f
int layout item_ad_list_small 0x7f090070
int layout item_ad_prompt 0x7f090071
int layout item_bind 0x7f090072
int layout item_cate_recommend_top 0x7f090073
int layout item_category_channel_gv 0x7f090074
int layout item_category_channel_hot_gv 0x7f090075
int layout item_category_live 0x7f090076
int layout item_category_star_gv 0x7f090077
int layout item_category_unique_lv 0x7f090078
int layout item_datepicker 0x7f090079
int layout item_discover_res 0x7f09007a
int layout item_edit_dialog 0x7f09007b
int layout item_episode 0x7f09007c
int layout item_exit 0x7f09007d
int layout item_flaunt1 0x7f09007e
int layout item_flaunt2 0x7f09007f
int layout item_flaunt3 0x7f090080
int layout item_flaunt4 0x7f090081
int layout item_flaunt5 0x7f090082
int layout item_follow1 0x7f090083
int layout item_follow2 0x7f090084
int layout item_fragment_discover_top 0x7f090085
int layout item_go_review 0x7f090086
int layout item_good_detail_bottom 0x7f090087
int layout item_goods_detail_top 0x7f090088
int layout item_goods_guess 0x7f090089
int layout item_goods_review 0x7f09008a
int layout item_guess_like 0x7f09008b
int layout item_live_category 0x7f09008c
int layout item_live_girl 0x7f09008d
int layout item_live_recommend 0x7f09008e
int layout item_login_first 0x7f09008f
int layout item_movie 0x7f090090
int layout item_news_bottom 0x7f090091
int layout item_pic_dialog 0x7f090092
int layout item_recommend_home_type 0x7f090093
int layout item_recommend_home_type_ad 0x7f090094
int layout item_recommend_star 0x7f090095
int layout item_reply 0x7f090096
int layout item_resource 0x7f090097
int layout item_review 0x7f090098
int layout item_star_work 0x7f090099
int layout item_top_favourite 0x7f09009a
int layout layout_controller_bar 0x7f09009b
int layout layout_controller_title 0x7f09009c
int layout list_group_header 0x7f09009d
int layout listview_footer 0x7f09009e
int layout live_browser_activity 0x7f09009f
int layout live_download_push 0x7f0900a0
int layout live_moive_item 0x7f0900a1
int layout live_moive_item1 0x7f0900a2
int layout main 0x7f0900a3
int layout media_controller 0x7f0900a4
int layout menu_frame_left 0x7f0900a5
int layout message_item 0x7f0900a6
int layout mine_fragment 0x7f0900a7
int layout movie_item 0x7f0900a8
int layout movie_item1 0x7f0900a9
int layout movie_item2 0x7f0900aa
int layout movie_item3 0x7f0900ab
int layout movie_item4 0x7f0900ac
int layout movie_item5 0x7f0900ad
int layout movie_item6 0x7f0900ae
int layout msuggestion_grid_item 0x7f0900af
int layout mvideo_activity 0x7f0900b0
int layout mvideos_activity 0x7f0900b1
int layout myfavourites_activity 0x7f0900b2
int layout mywatch_history_fragment 0x7f0900b3
int layout native_ad_item 0x7f0900b4
int layout navigation_bottom_bar 0x7f0900b5
int layout navigation_top_bar 0x7f0900b6
int layout navigation_top_bar_goods 0x7f0900b7
int layout newcategory 0x7f0900b8
int layout no_network 0x7f0900b9
int layout notice 0x7f0900ba
int layout notification_action 0x7f0900bb
int layout notification_action_tombstone 0x7f0900bc
int layout notification_template_custom_big 0x7f0900bd
int layout notification_template_icon_group 0x7f0900be
int layout notification_template_part_chronometer 0x7f0900bf
int layout notification_template_part_time 0x7f0900c0
int layout notify_item 0x7f0900c1
int layout offine_cache_fragment2 0x7f0900c2
int layout offine_cache_group_fragment 0x7f0900c3
int layout option_item 0x7f0900c4
int layout option_list 0x7f0900c5
int layout player_ad_view 0x7f0900c6
int layout popup_controller 0x7f0900c7
int layout pull_to_load_footer 0x7f0900c8
int layout recent_fragment 0x7f0900c9
int layout recommend_advertisement 0x7f0900ca
int layout recommend_fragment 0x7f0900cb
int layout recommend_top 0x7f0900cc
int layout recommend_type_item 0x7f0900cd
int layout recommendfooter 0x7f0900ce
int layout search_actvity 0x7f0900cf
int layout search_bar 0x7f0900d0
int layout search_result_activity 0x7f0900d1
int layout search_result_top_bar 0x7f0900d2
int layout second 0x7f0900d3
int layout select_dialog_item_material 0x7f0900d4
int layout select_dialog_multichoice_material 0x7f0900d5
int layout select_dialog_singlechoice_material 0x7f0900d6
int layout settings_activity 0x7f0900d7
int layout share_app_activity 0x7f0900d8
int layout share_app_dialog_fragment 0x7f0900d9
int layout share_detail 0x7f0900da
int layout share_video_dialog_fragment 0x7f0900db
int layout socialize_share_menu_item 0x7f0900dc
int layout specific_detail_activity 0x7f0900dd
int layout specific_detail_fragment 0x7f0900de
int layout specific_detail_movie_item 0x7f0900df
int layout specific_detail_top 0x7f0900e0
int layout star_detail_activity 0x7f0900e1
int layout star_detail_fragment 0x7f0900e2
int layout star_detail_min_top 0x7f0900e3
int layout star_detail_top 0x7f0900e4
int layout star_item 0x7f0900e5
int layout statement 0x7f0900e6
int layout status_bar_ongoing_event_progress_bar 0x7f0900e7
int layout suggestion_activity 0x7f0900e8
int layout suggestion_grid_item 0x7f0900e9
int layout support_simple_spinner_dropdown_item 0x7f0900ea
int layout system_message_activity 0x7f0900eb
int layout tb_munion_aditem 0x7f0900ec
int layout tb_munion_adview 0x7f0900ed
int layout textview_live_girl 0x7f0900ee
int layout textview_live_girl_news 0x7f0900ef
int layout titlebar 0x7f0900f0
int layout top_goods_review 0x7f0900f1
int layout top_list_live_girl 0x7f0900f2
int layout tt_activity_full_video 0x7f0900f3
int layout tt_activity_full_video_new_bar_3_style 0x7f0900f4
int layout tt_activity_full_video_newstyle 0x7f0900f5
int layout tt_activity_reward_and_full_video_bar 0x7f0900f6
int layout tt_activity_reward_and_full_video_new_bar 0x7f0900f7
int layout tt_activity_reward_video_newstyle 0x7f0900f8
int layout tt_activity_rewardvideo 0x7f0900f9
int layout tt_activity_rewardvideo_new_bar_3_style 0x7f0900fa
int layout tt_activity_ttlandingpage 0x7f0900fb
int layout tt_activity_ttlandingpage_playable 0x7f0900fc
int layout tt_activity_videolandingpage 0x7f0900fd
int layout tt_backup_ad 0x7f0900fe
int layout tt_backup_ad1 0x7f0900ff
int layout tt_backup_ad2 0x7f090100
int layout tt_backup_banner_layout1 0x7f090101
int layout tt_backup_banner_layout2 0x7f090102
int layout tt_backup_banner_layout3 0x7f090103
int layout tt_backup_draw 0x7f090104
int layout tt_backup_feed_horizontal 0x7f090105
int layout tt_backup_feed_img_group 0x7f090106
int layout tt_backup_feed_img_small 0x7f090107
int layout tt_backup_feed_vertical 0x7f090108
int layout tt_backup_feed_video 0x7f090109
int layout tt_backup_full_reward 0x7f09010a
int layout tt_backup_insert_layout1 0x7f09010b
int layout tt_backup_insert_layout2 0x7f09010c
int layout tt_backup_insert_layout3 0x7f09010d
int layout tt_browser_download_layout 0x7f09010e
int layout tt_browser_titlebar 0x7f09010f
int layout tt_browser_titlebar_for_dark 0x7f090110
int layout tt_custom_dailog_layout 0x7f090111
int layout tt_dialog_listview_item 0x7f090112
int layout tt_dislike_comment_layout 0x7f090113
int layout tt_dislike_dialog_layout 0x7f090114
int layout tt_dislike_dialog_layout1 0x7f090115
int layout tt_dislike_dialog_layout2 0x7f090116
int layout tt_dislike_flowlayout_tv 0x7f090117
int layout tt_insert_ad_layout 0x7f090118
int layout tt_install_dialog_layout 0x7f090119
int layout tt_native_video_ad_view 0x7f09011a
int layout tt_native_video_img_cover_layout 0x7f09011b
int layout tt_playable_loading_layout 0x7f09011c
int layout tt_splash_view 0x7f09011d
int layout tt_top_full_1 0x7f09011e
int layout tt_top_reward_1 0x7f09011f
int layout tt_top_reward_dislike_2 0x7f090120
int layout tt_video_ad_cover_layout 0x7f090121
int layout tt_video_detail_layout 0x7f090122
int layout tt_video_draw_btn_layout 0x7f090123
int layout tt_video_play_layout_for_live 0x7f090124
int layout tt_video_traffic_tip 0x7f090125
int layout tt_video_traffic_tips_layout 0x7f090126
int layout ttdownloader_dialog_apk_install_guide 0x7f090127
int layout ttdownloader_dialog_reserve_wifi 0x7f090128
int layout ttdownloader_layout_install_hijack_huawei 0x7f090129
int layout ttdownloader_layout_install_hijack_kllk 0x7f09012a
int layout ttdownloader_layout_install_hijack_vivo 0x7f09012b
int layout ttdownloader_layout_install_hijack_xiaomi 0x7f09012c
int layout umeng_auth 0x7f09012d
int layout umeng_check 0x7f09012e
int layout umeng_common_download_notification 0x7f09012f
int layout umeng_menu 0x7f090130
int layout umeng_share 0x7f090131
int layout umeng_socialize_activity_kakao_webview 0x7f090132
int layout umeng_socialize_oauth_dialog 0x7f090133
int layout umeng_socialize_share 0x7f090134
int layout umeng_update_dialog 0x7f090135
int layout video_detail_activity 0x7f090136
int layout video_detail_fragment 0x7f090137
int layout video_episode_fragment 0x7f090138
int layout video_episode_fragment2 0x7f090139
int layout video_episode_fragment3 0x7f09013a
int layout video_episode_fragment4 0x7f09013b
int layout video_introduction 0x7f09013c
int layout video_introduction_fragment 0x7f09013d
int layout video_player_fragment 0x7f09013e
int layout video_review_fragment 0x7f09013f
int layout video_review_popupwindow 0x7f090140
int layout videoplayer_dialog_item 0x7f090141
int layout videos_activity 0x7f090142
int layout videos_live_activity 0x7f090143
int layout vk_captcha_dialog 0x7f090144
int layout vk_open_auth_dialog 0x7f090145
int layout vk_share_dialog 0x7f090146
int layout watch_history_fragment 0x7f090147
int layout watch_history_item 0x7f090148
int menu download_ui_menu 0x7f0a0000
int menu menu_main 0x7f0a0001
int raw keep 0x7f0b0000
int raw shake_sound 0x7f0b0001
int string UMAppUpdate 0x7f0c0000
int string UMBreak_Network 0x7f0c0001
int string UMDialog_InstallAPK 0x7f0c0002
int string UMGprsCondition 0x7f0c0003
int string UMIgnore 0x7f0c0004
int string UMNewVersion 0x7f0c0005
int string UMNotNow 0x7f0c0006
int string UMTargetSize 0x7f0c0007
int string UMToast_IsUpdating 0x7f0c0008
int string UMUpdateCheck 0x7f0c0009
int string UMUpdateContent 0x7f0c000a
int string UMUpdateNow 0x7f0c000b
int string UMUpdateSize 0x7f0c000c
int string UMUpdateTitle 0x7f0c000d
int string WIFI_NOTI 0x7f0c000e
int string abc_action_bar_home_description 0x7f0c000f
int string abc_action_bar_up_description 0x7f0c0010
int string abc_action_menu_overflow_description 0x7f0c0011
int string abc_action_mode_done 0x7f0c0012
int string abc_activity_chooser_view_see_all 0x7f0c0013
int string abc_activitychooserview_choose_application 0x7f0c0014
int string abc_capital_off 0x7f0c0015
int string abc_capital_on 0x7f0c0016
int string abc_font_family_body_1_material 0x7f0c0017
int string abc_font_family_body_2_material 0x7f0c0018
int string abc_font_family_button_material 0x7f0c0019
int string abc_font_family_caption_material 0x7f0c001a
int string abc_font_family_display_1_material 0x7f0c001b
int string abc_font_family_display_2_material 0x7f0c001c
int string abc_font_family_display_3_material 0x7f0c001d
int string abc_font_family_display_4_material 0x7f0c001e
int string abc_font_family_headline_material 0x7f0c001f
int string abc_font_family_menu_material 0x7f0c0020
int string abc_font_family_subhead_material 0x7f0c0021
int string abc_font_family_title_material 0x7f0c0022
int string abc_search_hint 0x7f0c0023
int string abc_searchview_description_clear 0x7f0c0024
int string abc_searchview_description_query 0x7f0c0025
int string abc_searchview_description_search 0x7f0c0026
int string abc_searchview_description_submit 0x7f0c0027
int string abc_searchview_description_voice 0x7f0c0028
int string abc_shareactionprovider_share_with 0x7f0c0029
int string abc_shareactionprovider_share_with_application 0x7f0c002a
int string abc_toolbar_collapse_description 0x7f0c002b
int string about_us 0x7f0c002c
int string accumulate 0x7f0c002d
int string accumulate_tip 0x7f0c002e
int string activity_main_login 0x7f0c002f
int string add_accumulate 0x7f0c0030
int string add_to_favourite 0x7f0c0031
int string after_login 0x7f0c0032
int string alert_apikey_error 0x7f0c0033
int string alert_apikey_missing 0x7f0c0034
int string alert_illigal_argument 0x7f0c0035
int string alert_loading_error_fail 0x7f0c0036
int string alert_loading_error_iplimit 0x7f0c0037
int string alert_loading_error_mobile_limit 0x7f0c0038
int string alert_loading_error_network 0x7f0c0039
int string alert_loading_error_no_next 0x7f0c003a
int string alert_loading_error_no_previous 0x7f0c003b
int string alert_player_error 0x7f0c003c
int string alert_player_error_network 0x7f0c003d
int string alert_player_error_unknown 0x7f0c003e
int string alert_title_hint 0x7f0c003f
int string alert_title_player_setting 0x7f0c0040
int string ali_auth_sms_code_success_hint 0x7f0c0041
int string ali_auth_sms_veri_title 0x7f0c0042
int string ali_auth_verification_reGetCode 0x7f0c0043
int string alisdk_message_10008_action 0x7f0c0044
int string alisdk_message_10008_message 0x7f0c0045
int string alisdk_message_10008_name 0x7f0c0046
int string alisdk_message_10008_type 0x7f0c0047
int string alisdk_message_10009_action 0x7f0c0048
int string alisdk_message_10009_message 0x7f0c0049
int string alisdk_message_10009_name 0x7f0c004a
int string alisdk_message_10009_type 0x7f0c004b
int string alisdk_message_14_message 0x7f0c004c
int string alisdk_message_17_action 0x7f0c004d
int string alisdk_message_17_message 0x7f0c004e
int string alisdk_message_17_name 0x7f0c004f
int string alisdk_message_17_type 0x7f0c0050
int string alisdk_message_801_action 0x7f0c0051
int string alisdk_message_801_message 0x7f0c0052
int string alisdk_message_801_name 0x7f0c0053
int string alisdk_message_801_type 0x7f0c0054
int string alisdk_message_802_action 0x7f0c0055
int string alisdk_message_802_message 0x7f0c0056
int string alisdk_message_802_name 0x7f0c0057
int string alisdk_message_802_type 0x7f0c0058
int string alisdk_message_803_action 0x7f0c0059
int string alisdk_message_803_message 0x7f0c005a
int string alisdk_message_803_name 0x7f0c005b
int string alisdk_message_803_type 0x7f0c005c
int string alisdk_message_804_action 0x7f0c005d
int string alisdk_message_804_message 0x7f0c005e
int string alisdk_message_804_name 0x7f0c005f
int string alisdk_message_804_type 0x7f0c0060
int string alisdk_message_805_action 0x7f0c0061
int string alisdk_message_805_message 0x7f0c0062
int string alisdk_message_805_name 0x7f0c0063
int string alisdk_message_805_type 0x7f0c0064
int string alisdk_message_806_action 0x7f0c0065
int string alisdk_message_806_message 0x7f0c0066
int string alisdk_message_806_name 0x7f0c0067
int string alisdk_message_806_type 0x7f0c0068
int string alisdk_message_807_action 0x7f0c0069
int string alisdk_message_807_message 0x7f0c006a
int string alisdk_message_807_name 0x7f0c006b
int string alisdk_message_807_type 0x7f0c006c
int string alisdk_message_808_action 0x7f0c006d
int string alisdk_message_808_message 0x7f0c006e
int string alisdk_message_808_name 0x7f0c006f
int string alisdk_message_808_type 0x7f0c0070
int string alisdk_message_809_message 0x7f0c0071
int string aliuser_cancel 0x7f0c0072
int string aliuser_common_ok 0x7f0c0073
int string aliuser_network_error 0x7f0c0074
int string aliuser_param_invalid 0x7f0c0075
int string aliuser_ssl_error_info 0x7f0c0076
int string aliuser_ssl_error_title 0x7f0c0077
int string aliusersdk_api_unauthorized 0x7f0c0078
int string aliusersdk_network_error 0x7f0c0079
int string aliusersdk_session_error 0x7f0c007a
int string all 0x7f0c007b
int string app_name 0x7f0c007c
int string appdownloader_button_cancel_download 0x7f0c007d
int string appdownloader_button_queue_for_wifi 0x7f0c007e
int string appdownloader_button_start_now 0x7f0c007f
int string appdownloader_download_percent 0x7f0c0080
int string appdownloader_download_remaining 0x7f0c0081
int string appdownloader_download_unknown_title 0x7f0c0082
int string appdownloader_duration_hours 0x7f0c0083
int string appdownloader_duration_minutes 0x7f0c0084
int string appdownloader_duration_seconds 0x7f0c0085
int string appdownloader_jump_unknown_source 0x7f0c0086
int string appdownloader_label_cancel 0x7f0c0087
int string appdownloader_label_ok 0x7f0c0088
int string appdownloader_notification_download 0x7f0c0089
int string appdownloader_notification_download_complete_open 0x7f0c008a
int string appdownloader_notification_download_complete_with_install 0x7f0c008b
int string appdownloader_notification_download_complete_without_install 0x7f0c008c
int string appdownloader_notification_download_delete 0x7f0c008d
int string appdownloader_notification_download_failed 0x7f0c008e
int string appdownloader_notification_download_install 0x7f0c008f
int string appdownloader_notification_download_open 0x7f0c0090
int string appdownloader_notification_download_pause 0x7f0c0091
int string appdownloader_notification_download_restart 0x7f0c0092
int string appdownloader_notification_download_resume 0x7f0c0093
int string appdownloader_notification_download_space_failed 0x7f0c0094
int string appdownloader_notification_download_waiting_net 0x7f0c0095
int string appdownloader_notification_download_waiting_wifi 0x7f0c0096
int string appdownloader_notification_downloading 0x7f0c0097
int string appdownloader_notification_install_finished_open 0x7f0c0098
int string appdownloader_notification_need_wifi_for_size 0x7f0c0099
int string appdownloader_notification_paused_in_background 0x7f0c009a
int string appdownloader_notification_pausing 0x7f0c009b
int string appdownloader_notification_prepare 0x7f0c009c
int string appdownloader_notification_request_btn_no 0x7f0c009d
int string appdownloader_notification_request_btn_yes 0x7f0c009e
int string appdownloader_notification_request_message 0x7f0c009f
int string appdownloader_notification_request_title 0x7f0c00a0
int string appdownloader_notification_waiting_download_complete_handler 0x7f0c00a1
int string appdownloader_tip 0x7f0c00a2
int string appdownloader_wifi_recommended_body 0x7f0c00a3
int string appdownloader_wifi_recommended_title 0x7f0c00a4
int string appdownloader_wifi_required_body 0x7f0c00a5
int string appdownloader_wifi_required_title 0x7f0c00a6
int string auth_sdk_message_10003_action 0x7f0c00a7
int string auth_sdk_message_10003_message 0x7f0c00a8
int string auth_sdk_message_10003_name 0x7f0c00a9
int string auth_sdk_message_10003_type 0x7f0c00aa
int string auth_sdk_message_10004_action 0x7f0c00ab
int string auth_sdk_message_10004_message 0x7f0c00ac
int string auth_sdk_message_10004_name 0x7f0c00ad
int string auth_sdk_message_10004_type 0x7f0c00ae
int string auth_sdk_message_10005_action 0x7f0c00af
int string auth_sdk_message_10005_message 0x7f0c00b0
int string auth_sdk_message_10005_name 0x7f0c00b1
int string auth_sdk_message_10005_type 0x7f0c00b2
int string auth_sdk_message_10010_action 0x7f0c00b3
int string auth_sdk_message_10010_message 0x7f0c00b4
int string auth_sdk_message_10010_name 0x7f0c00b5
int string auth_sdk_message_10010_type 0x7f0c00b6
int string auth_sdk_message_10015_action 0x7f0c00b7
int string auth_sdk_message_10015_message 0x7f0c00b8
int string auth_sdk_message_10015_name 0x7f0c00b9
int string auth_sdk_message_10015_type 0x7f0c00ba
int string auth_sdk_message_10101_action 0x7f0c00bb
int string auth_sdk_message_10101_message 0x7f0c00bc
int string auth_sdk_message_10101_name 0x7f0c00bd
int string auth_sdk_message_10101_type 0x7f0c00be
int string auth_sdk_message_15_action 0x7f0c00bf
int string auth_sdk_message_15_message 0x7f0c00c0
int string auth_sdk_message_15_name 0x7f0c00c1
int string auth_sdk_message_15_type 0x7f0c00c2
int string auth_sdk_message_qr_expired 0x7f0c00c3
int string auth_sdk_message_qr_expired_sub 0x7f0c00c4
int string auth_sdk_message_qr_login_success 0x7f0c00c5
int string auth_sdk_message_qr_refresh 0x7f0c00c6
int string auth_sdk_message_qr_scaned 0x7f0c00c7
int string auth_sdk_message_qr_scaned_sub 0x7f0c00c8
int string auto_next 0x7f0c00c9
int string backwrard 0x7f0c00ca
int string banner_close 0x7f0c00cb
int string banner_download_img 0x7f0c00cc
int string banner_full_img 0x7f0c00cd
int string banner_img 0x7f0c00ce
int string btn_cancel 0x7f0c00cf
int string btn_confirm 0x7f0c00d0
int string btn_retry 0x7f0c00d1
int string button_cancel_download 0x7f0c00d2
int string button_queue_for_wifi 0x7f0c00d3
int string button_start_now 0x7f0c00d4
int string cancel 0x7f0c00d5
int string cancel_running_download 0x7f0c00d6
int string category 0x7f0c00d7
int string check_update 0x7f0c00d8
int string clear_cache 0x7f0c00d9
int string clear_history_search 0x7f0c00da
int string com_alibc_auth_actiivty_auth_ok 0x7f0c00db
int string com_alibc_auth_actiivty_cancel 0x7f0c00dc
int string com_alibc_auth_actiivty_get 0x7f0c00dd
int string com_facebook_dialogloginactivity_ok_button 0x7f0c00de
int string com_facebook_image_download_unknown_error 0x7f0c00df
int string com_facebook_internet_permission_error_message 0x7f0c00e0
int string com_facebook_internet_permission_error_title 0x7f0c00e1
int string com_facebook_like_button_liked 0x7f0c00e2
int string com_facebook_like_button_not_liked 0x7f0c00e3
int string com_facebook_loading 0x7f0c00e4
int string com_facebook_loginview_cancel_action 0x7f0c00e5
int string com_facebook_loginview_log_in_button 0x7f0c00e6
int string com_facebook_loginview_log_in_button_long 0x7f0c00e7
int string com_facebook_loginview_log_out_action 0x7f0c00e8
int string com_facebook_loginview_log_out_button 0x7f0c00e9
int string com_facebook_loginview_logged_in_as 0x7f0c00ea
int string com_facebook_loginview_logged_in_using_facebook 0x7f0c00eb
int string com_facebook_requesterror_password_changed 0x7f0c00ec
int string com_facebook_requesterror_permissions 0x7f0c00ed
int string com_facebook_requesterror_reconnect 0x7f0c00ee
int string com_facebook_send_button_text 0x7f0c00ef
int string com_facebook_share_button_text 0x7f0c00f0
int string com_facebook_tooltip_default 0x7f0c00f1
int string com_taobao_nb_sdk_loading_progress_message 0x7f0c00f2
int string com_taobao_tae_sdk_alert_message 0x7f0c00f3
int string com_taobao_tae_sdk_authorize_title 0x7f0c00f4
int string com_taobao_tae_sdk_bind_title 0x7f0c00f5
int string com_taobao_tae_sdk_confirm 0x7f0c00f6
int string com_taobao_tae_sdk_confirm_cancel 0x7f0c00f7
int string com_taobao_tae_sdk_loading_progress_message 0x7f0c00f8
int string com_taobao_tae_sdk_logout_fail_message 0x7f0c00f9
int string com_taobao_tae_sdk_network_not_available_message 0x7f0c00fa
int string com_taobao_tae_sdk_ssl_error_info 0x7f0c00fb
int string com_taobao_tae_sdk_ssl_error_title 0x7f0c00fc
int string com_taobao_tae_sdk_system_exception 0x7f0c00fd
int string definition_fluency 0x7f0c00fe
int string definition_high 0x7f0c00ff
int string definition_original 0x7f0c0100
int string definition_super 0x7f0c0101
int string delete 0x7f0c0102
int string delete_download 0x7f0c0103
int string deselect_all 0x7f0c0104
int string dialog_cannot_resume 0x7f0c0105
int string dialog_failed_body 0x7f0c0106
int string dialog_file_already_exists 0x7f0c0107
int string dialog_file_missing_body 0x7f0c0108
int string dialog_insufficient_space_on_cache 0x7f0c0109
int string dialog_insufficient_space_on_external 0x7f0c010a
int string dialog_media_not_found 0x7f0c010b
int string dialog_paused_body 0x7f0c010c
int string dialog_queued_body 0x7f0c010d
int string dialog_running_body 0x7f0c010e
int string dialog_title_not_available 0x7f0c010f
int string dialog_title_queued_body 0x7f0c0110
int string disclaimer 0x7f0c0111
int string discover 0x7f0c0112
int string discover_everybody_play 0x7f0c0113
int string discover_game_more 0x7f0c0114
int string download_error 0x7f0c0115
int string download_menu_sort_by_date 0x7f0c0116
int string download_menu_sort_by_size 0x7f0c0117
int string download_no_application_title 0x7f0c0118
int string download_paused 0x7f0c0119
int string download_queued 0x7f0c011b
int string download_running 0x7f0c011c
int string download_success 0x7f0c011d
int string download_title 0x7f0c011e
int string download_unknown_title 0x7f0c011f
int string download_url 0x7f0c0120
int string episode_more 0x7f0c0121
int string everybody_look 0x7f0c0122
int string facebook_app_id 0x7f0c0123
int string faq 0x7f0c0124
int string favourites_count 0x7f0c0125
int string flickr_content 0x7f0c0126
int string flickr_no_client 0x7f0c0127
int string flickr_no_content 0x7f0c0128
int string flickr_showword 0x7f0c0129
int string forward 0x7f0c012a
int string foursquare_content 0x7f0c012b
int string foursquare_no_client 0x7f0c012c
int string foursquare_showword 0x7f0c012d
int string friend_circle 0x7f0c012e
int string guess_like 0x7f0c012f
int string help 0x7f0c0130
int string history_search 0x7f0c0131
int string hot_search 0x7f0c0132
int string hot_star 0x7f0c0133
int string init_success 0x7f0c0134
int string kakao_content 0x7f0c0135
int string kakao_no_client 0x7f0c0136
int string kakao_no_content 0x7f0c0137
int string kakao_showword 0x7f0c0138
int string keep_queued_download 0x7f0c0139
int string line_content 0x7f0c013a
int string line_no_client 0x7f0c013b
int string line_no_content 0x7f0c013c
int string line_showword 0x7f0c013d
int string linkedin_content 0x7f0c013e
int string linkedin_no_client 0x7f0c013f
int string linkedin_showword 0x7f0c0140
int string load_tip 0x7f0c0141
int string messenger_send_button_text 0x7f0c0142
int string mine 0x7f0c0143
int string mine_follow 0x7f0c0144
int string mine_message 0x7f0c0145
int string minus_accumulate 0x7f0c0146
int string missing_title 0x7f0c0147
int string more 0x7f0c0148
int string movie 0x7f0c0149
int string msg_empty 0x7f0c014a
int string msg_no_network 0x7f0c014b
int string my_accumulate 0x7f0c014c
int string my_favourites 0x7f0c014d
int string my_score 0x7f0c014e
int string no_downloads 0x7f0c014f
int string no_review 0x7f0c0150
int string notification_download_complete 0x7f0c0151
int string notification_download_failed 0x7f0c0152
int string notification_filename_extras 0x7f0c0153
int string notification_filename_separator 0x7f0c0154
int string notification_need_wifi_for_size 0x7f0c0155
int string oauth 0x7f0c0156
int string offline_cache 0x7f0c0157
int string offline_cache_title 0x7f0c0158
int string only_wifi_download 0x7f0c0159
int string pause_download 0x7f0c015a
int string permdesc_accessAllDownloads 0x7f0c015b
int string permdesc_downloadCacheNonPurgeable 0x7f0c015c
int string permdesc_downloadCompletedIntent 0x7f0c015d
int string permdesc_downloadManager 0x7f0c015e
int string permdesc_downloadManagerAdvanced 0x7f0c015f
int string permlab_accessAllDownloads 0x7f0c0160
int string permlab_downloadCacheNonPurgeable 0x7f0c0161
int string permlab_downloadCompletedIntent 0x7f0c0162
int string permlab_downloadManager 0x7f0c0163
int string permlab_downloadManagerAdvanced 0x7f0c0164
int string pocket_content 0x7f0c0165
int string pocket_no_client 0x7f0c0166
int string pocket_showword 0x7f0c0167
int string post 0x7f0c0168
int string privacy_policy 0x7f0c0169
int string pull_to_refresh_pull_label 0x7f0c016a
int string pull_to_refresh_refreshing_label 0x7f0c016b
int string pull_to_refresh_release_label 0x7f0c016c
int string pull_to_refresh_tap_label 0x7f0c016d
int string qq_friend 0x7f0c016e
int string qq_kongjian 0x7f0c016f
int string quit 0x7f0c0170
int string rating_score 0x7f0c0171
int string recommend 0x7f0c0172
int string related_video 0x7f0c0173
int string remove_download 0x7f0c0174
int string remove_from_favourite 0x7f0c0175
int string report 0x7f0c0176
int string resume_download 0x7f0c0177
int string retry_download 0x7f0c0178
int string review_deliver 0x7f0c0179
int string review_edit 0x7f0c017a
int string review_tip 0x7f0c017b
int string rule_email 0x7f0c017c
int string rule_password 0x7f0c017d
int string score_tip 0x7f0c017e
int string search 0x7f0c017f
int string search_menu_title 0x7f0c0180
int string select_all 0x7f0c0181
int string settings 0x7f0c0182
int string share_right_now 0x7f0c0183
int string share_to 0x7f0c0184
int string sina_weibo 0x7f0c0185
int string skip_header 0x7f0c0186
int string skip_tail 0x7f0c0187
int string statement 0x7f0c0188
int string status_bar_notification_info_overflow 0x7f0c0189
int string string_help_text 0x7f0c018a
int string suggestion 0x7f0c018b
int string suggestion_tip 0x7f0c018c
int string system_alarm 0x7f0c018d
int string tb_munion_tip_download_prefix 0x7f0c018e
int string to_review 0x7f0c018f
int string tt_00_00 0x7f0c0190
int string tt_ad 0x7f0c0191
int string tt_ad_logo_txt 0x7f0c0192
int string tt_app_name 0x7f0c0193
int string tt_auto_play_cancel_text 0x7f0c0194
int string tt_cancel 0x7f0c0195
int string tt_comment_num 0x7f0c0196
int string tt_comment_num_backup 0x7f0c0197
int string tt_comment_score 0x7f0c0198
int string tt_confirm_download 0x7f0c0199
int string tt_confirm_download_have_app_name 0x7f0c019a
int string tt_dislike_header_tv_back 0x7f0c019b
int string tt_dislike_header_tv_title 0x7f0c019c
int string tt_full_screen_skip_tx 0x7f0c019d
int string tt_label_cancel 0x7f0c019e
int string tt_label_ok 0x7f0c019f
int string tt_no_network 0x7f0c01a0
int string tt_permission_denied 0x7f0c01a1
int string tt_playable_btn_play 0x7f0c01a2
int string tt_request_permission_descript_external_storage 0x7f0c01a3
int string tt_request_permission_descript_location 0x7f0c01a4
int string tt_request_permission_descript_read_phone_state 0x7f0c01a5
int string tt_reward_feedback 0x7f0c01a6
int string tt_reward_screen_skip_tx 0x7f0c01a7
int string tt_splash_skip_tv_text 0x7f0c01a8
int string tt_tip 0x7f0c01a9
int string tt_unlike 0x7f0c01aa
int string tt_video_bytesize 0x7f0c01ab
int string tt_video_bytesize_M 0x7f0c01ac
int string tt_video_bytesize_MB 0x7f0c01ad
int string tt_video_continue_play 0x7f0c01ae
int string tt_video_dial_phone 0x7f0c01af
int string tt_video_download_apk 0x7f0c01b0
int string tt_video_mobile_go_detail 0x7f0c01b1
int string tt_video_retry_des_txt 0x7f0c01b2
int string tt_video_without_wifi_tips 0x7f0c01b3
int string tt_web_title_default 0x7f0c01b4
int string tt_will_play 0x7f0c01b5
int string tumblr_content 0x7f0c01b6
int string tumblr_no_client 0x7f0c01b7
int string tumblr_no_content 0x7f0c01b8
int string tumblr_showword 0x7f0c01b9
int string tvshow 0x7f0c01ba
int string umeng_auth_title 0x7f0c01bb
int string umeng_check_alipay 0x7f0c01bc
int string umeng_check_fb 0x7f0c01bd
int string umeng_check_qq 0x7f0c01be
int string umeng_check_sign 0x7f0c01bf
int string umeng_check_sina 0x7f0c01c0
int string umeng_check_title 0x7f0c01c1
int string umeng_check_vk 0x7f0c01c2
int string umeng_check_wx 0x7f0c01c3
int string umeng_choose_style 0x7f0c01c4
int string umeng_common_action_cancel 0x7f0c01c5
int string umeng_common_action_continue 0x7f0c01c6
int string umeng_common_action_info_exist 0x7f0c01c7
int string umeng_common_action_pause 0x7f0c01c8
int string umeng_common_download_failed 0x7f0c01c9
int string umeng_common_download_finish 0x7f0c01ca
int string umeng_common_download_notification_prefix 0x7f0c01cb
int string umeng_common_icon 0x7f0c01cc
int string umeng_common_info_interrupt 0x7f0c01cd
int string umeng_common_network_break_alert 0x7f0c01ce
int string umeng_common_patch_finish 0x7f0c01cf
int string umeng_common_pause_notification_prefix 0x7f0c01d0
int string umeng_common_silent_download_finish 0x7f0c01d1
int string umeng_common_start_download_notification 0x7f0c01d2
int string umeng_common_start_patch_notification 0x7f0c01d3
int string umeng_delauth_title 0x7f0c01d4
int string umeng_example_home_btn_plus 0x7f0c01d5
int string umeng_getinfo_title 0x7f0c01d6
int string umeng_home_title 0x7f0c01d7
int string umeng_home_update 0x7f0c01d8
int string umeng_menu_title 0x7f0c01d9
int string umeng_share_title 0x7f0c01da
int string umeng_sharebutton_copy 0x7f0c01db
int string umeng_sharebutton_copyurl 0x7f0c01dc
int string umeng_socialize_back 0x7f0c01dd
int string umeng_socialize_cancel_btn_str 0x7f0c01de
int string umeng_socialize_comment 0x7f0c01df
int string umeng_socialize_comment_detail 0x7f0c01e0
int string umeng_socialize_content_hint 0x7f0c01e1
int string umeng_socialize_female 0x7f0c01e2
int string umeng_socialize_friends 0x7f0c01e3
int string umeng_socialize_img_des 0x7f0c01e4
int string umeng_socialize_laiwang_default_content 0x7f0c01e5
int string umeng_socialize_login 0x7f0c01e6
int string umeng_socialize_login_qq 0x7f0c01e7
int string umeng_socialize_mail 0x7f0c01e8
int string umeng_socialize_male 0x7f0c01e9
int string umeng_socialize_msg_hor 0x7f0c01ea
int string umeng_socialize_msg_min 0x7f0c01eb
int string umeng_socialize_msg_sec 0x7f0c01ec
int string umeng_socialize_near_At 0x7f0c01ed
int string umeng_socialize_network_break_alert 0x7f0c01ee
int string umeng_socialize_send 0x7f0c01ef
int string umeng_socialize_send_btn_str 0x7f0c01f0
int string umeng_socialize_share 0x7f0c01f1
int string umeng_socialize_share_content 0x7f0c01f2
int string umeng_socialize_sharetodouban 0x7f0c01f3
int string umeng_socialize_sharetolinkin 0x7f0c01f4
int string umeng_socialize_sharetorenren 0x7f0c01f5
int string umeng_socialize_sharetosina 0x7f0c01f6
int string umeng_socialize_sharetotencent 0x7f0c01f7
int string umeng_socialize_sharetotwitter 0x7f0c01f8
int string umeng_socialize_sina 0x7f0c01f9
int string umeng_socialize_sms 0x7f0c01fa
int string umeng_socialize_text_add_custom_platform 0x7f0c01fb
int string umeng_socialize_text_alipay_key 0x7f0c01fc
int string umeng_socialize_text_authorize 0x7f0c01fd
int string umeng_socialize_text_choose_account 0x7f0c01fe
int string umeng_socialize_text_comment_hint 0x7f0c01ff
int string umeng_socialize_text_dingding_key 0x7f0c0200
int string umeng_socialize_text_douban_key 0x7f0c0201
int string umeng_socialize_text_dropbox_key 0x7f0c0202
int string umeng_socialize_text_evernote_key 0x7f0c0203
int string umeng_socialize_text_facebook_key 0x7f0c0204
int string umeng_socialize_text_facebookmessager_key 0x7f0c0205
int string umeng_socialize_text_flickr_key 0x7f0c0206
int string umeng_socialize_text_foursquare_key 0x7f0c0207
int string umeng_socialize_text_friend_list 0x7f0c0208
int string umeng_socialize_text_googleplus_key 0x7f0c0209
int string umeng_socialize_text_instagram_key 0x7f0c020a
int string umeng_socialize_text_kakao_key 0x7f0c020b
int string umeng_socialize_text_laiwang_dynamic_key 0x7f0c020c
int string umeng_socialize_text_laiwang_key 0x7f0c020d
int string umeng_socialize_text_laiwangdynamic_key 0x7f0c020e
int string umeng_socialize_text_line_key 0x7f0c020f
int string umeng_socialize_text_linkedin_key 0x7f0c0210
int string umeng_socialize_text_loading_message 0x7f0c0211
int string umeng_socialize_text_login_fail 0x7f0c0212
int string umeng_socialize_text_more_key 0x7f0c0213
int string umeng_socialize_text_pinterest_key 0x7f0c0214
int string umeng_socialize_text_pocket_key 0x7f0c0215
int string umeng_socialize_text_qq_key 0x7f0c0216
int string umeng_socialize_text_qq_zone_key 0x7f0c0217
int string umeng_socialize_text_renren_key 0x7f0c0218
int string umeng_socialize_text_sina_key 0x7f0c0219
int string umeng_socialize_text_tencent_key 0x7f0c021a
int string umeng_socialize_text_tencent_no_connection 0x7f0c021b
int string umeng_socialize_text_tencent_no_install 0x7f0c021c
int string umeng_socialize_text_tencent_oauth_login_fail 0x7f0c021d
int string umeng_socialize_text_tencent_version_no_match 0x7f0c021e
int string umeng_socialize_text_tumblr_key 0x7f0c021f
int string umeng_socialize_text_twitter_key 0x7f0c0220
int string umeng_socialize_text_ucenter 0x7f0c0221
int string umeng_socialize_text_unauthorize 0x7f0c0222
int string umeng_socialize_text_visitor 0x7f0c0223
int string umeng_socialize_text_vkontakte_key 0x7f0c0224
int string umeng_socialize_text_waitting 0x7f0c0225
int string umeng_socialize_text_waitting_message 0x7f0c0226
int string umeng_socialize_text_waitting_qq 0x7f0c0227
int string umeng_socialize_text_waitting_qzone 0x7f0c0228
int string umeng_socialize_text_waitting_redirect 0x7f0c0229
int string umeng_socialize_text_waitting_share 0x7f0c022a
int string umeng_socialize_text_waitting_weixin 0x7f0c022b
int string umeng_socialize_text_waitting_weixin_circle 0x7f0c022c
int string umeng_socialize_text_waitting_yixin 0x7f0c022d
int string umeng_socialize_text_waitting_yixin_circle 0x7f0c022e
int string umeng_socialize_text_weixin_circle_key 0x7f0c022f
int string umeng_socialize_text_weixin_fav_key 0x7f0c0230
int string umeng_socialize_text_weixin_key 0x7f0c0231
int string umeng_socialize_text_wenxin_fav 0x7f0c0232
int string umeng_socialize_text_whatsapp_key 0x7f0c0233
int string umeng_socialize_text_ydnote_key 0x7f0c0234
int string umeng_socialize_text_yixin_key 0x7f0c0235
int string umeng_socialize_text_yixincircle_key 0x7f0c0236
int string umeng_socialize_tip_blacklist 0x7f0c0237
int string umeng_socialize_tip_loginfailed 0x7f0c0238
int string umeng_socialize_ucenter_login_title_guide 0x7f0c0239
int string umeng_socialize_ucenter_login_title_platform 0x7f0c023a
int string umeng_update_content 0x7f0c023b
int string update_linkedin_app_cancel 0x7f0c023c
int string update_linkedin_app_download 0x7f0c023d
int string update_linkedin_app_message 0x7f0c023e
int string update_linkedin_app_title 0x7f0c023f
int string use 0x7f0c0240
int string user_agreement 0x7f0c0241
int string vk_enter_captcha_text 0x7f0c0242
int string vk_name 0x7f0c0243
int string vk_new_message_text 0x7f0c0244
int string vk_new_post_settings 0x7f0c0245
int string vk_retry 0x7f0c0246
int string vk_send 0x7f0c0247
int string vk_share 0x7f0c0248
int string watch_history 0x7f0c0249
int string watch_history_time 0x7f0c024a
int string wechat_friend 0x7f0c024b
int string whatsapp_content 0x7f0c024c
int string whatsapp_no_client 0x7f0c024d
int string whatsapp_no_content 0x7f0c024e
int string whatsapp_showword 0x7f0c024f
int string wifi_recommended_body 0x7f0c0250
int string wifi_recommended_title 0x7f0c0251
int string wifi_required_body 0x7f0c0252
int string wifi_required_title 0x7f0c0253
int string wonderful_channel 0x7f0c0254
int string ynote_content 0x7f0c0255
int string ynote_no_client 0x7f0c0256
int string ynote_no_content 0x7f0c0257
int string ynote_showword 0x7f0c0258
int string your_current_accumulate 0x7f0c0259
int style ACPLDialog 0x7f0d0000
int style ActionBarTheme 0x7f0d0001
int style AlertDialog_AppCompat 0x7f0d0002
int style AlertDialog_AppCompat_Light 0x7f0d0003
int style Animation_AppCompat_Dialog 0x7f0d0004
int style Animation_AppCompat_DropDownUp 0x7f0d0005
int style Animation_AppCompat_Tooltip 0x7f0d0006
int style AppBaseTheme 0x7f0d0007
int style AppTabTheme 0x7f0d0008
int style AppTabTheme1 0x7f0d0009
int style AppTabTheme2 0x7f0d000a
int style AppTabTheme3 0x7f0d000b
int style AppTheme 0x7f0d000c
int style AppThemeBrowser 0x7f0d000d
int style Base_AlertDialog_AppCompat 0x7f0d000e
int style Base_AlertDialog_AppCompat_Light 0x7f0d000f
int style Base_Animation_AppCompat_Dialog 0x7f0d0010
int style Base_Animation_AppCompat_DropDownUp 0x7f0d0011
int style Base_Animation_AppCompat_Tooltip 0x7f0d0012
int style Base_DialogWindowTitle_AppCompat 0x7f0d0013
int style Base_DialogWindowTitleBackground_AppCompat 0x7f0d0014
int style Base_TextAppearance_AppCompat 0x7f0d0015
int style Base_TextAppearance_AppCompat_Body1 0x7f0d0016
int style Base_TextAppearance_AppCompat_Body2 0x7f0d0017
int style Base_TextAppearance_AppCompat_Button 0x7f0d0018
int style Base_TextAppearance_AppCompat_Caption 0x7f0d0019
int style Base_TextAppearance_AppCompat_Display1 0x7f0d001a
int style Base_TextAppearance_AppCompat_Display2 0x7f0d001b
int style Base_TextAppearance_AppCompat_Display3 0x7f0d001c
int style Base_TextAppearance_AppCompat_Display4 0x7f0d001d
int style Base_TextAppearance_AppCompat_Headline 0x7f0d001e
int style Base_TextAppearance_AppCompat_Inverse 0x7f0d001f
int style Base_TextAppearance_AppCompat_Large 0x7f0d0020
int style Base_TextAppearance_AppCompat_Large_Inverse 0x7f0d0021
int style Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Large 0x7f0d0022
int style Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Small 0x7f0d0023
int style Base_TextAppearance_AppCompat_Medium 0x7f0d0024
int style Base_TextAppearance_AppCompat_Medium_Inverse 0x7f0d0025
int style Base_TextAppearance_AppCompat_Menu 0x7f0d0026
int style Base_TextAppearance_AppCompat_SearchResult 0x7f0d0027
int style Base_TextAppearance_AppCompat_SearchResult_Subtitle 0x7f0d0028
int style Base_TextAppearance_AppCompat_SearchResult_Title 0x7f0d0029
int style Base_TextAppearance_AppCompat_Small 0x7f0d002a
int style Base_TextAppearance_AppCompat_Small_Inverse 0x7f0d002b
int style Base_TextAppearance_AppCompat_Subhead 0x7f0d002c
int style Base_TextAppearance_AppCompat_Subhead_Inverse 0x7f0d002d
int style Base_TextAppearance_AppCompat_Title 0x7f0d002e
int style Base_TextAppearance_AppCompat_Title_Inverse 0x7f0d002f
int style Base_TextAppearance_AppCompat_Tooltip 0x7f0d0030
int style Base_TextAppearance_AppCompat_Widget_ActionBar_Menu 0x7f0d0031
int style Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle 0x7f0d0032
int style Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse 0x7f0d0033
int style Base_TextAppearance_AppCompat_Widget_ActionBar_Title 0x7f0d0034
int style Base_TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse 0x7f0d0035
int style Base_TextAppearance_AppCompat_Widget_ActionMode_Subtitle 0x7f0d0036
int style Base_TextAppearance_AppCompat_Widget_ActionMode_Title 0x7f0d0037
int style Base_TextAppearance_AppCompat_Widget_Button 0x7f0d0038
int style Base_TextAppearance_AppCompat_Widget_Button_Borderless_Colored 0x7f0d0039
int style Base_TextAppearance_AppCompat_Widget_Button_Colored 0x7f0d003a
int style Base_TextAppearance_AppCompat_Widget_Button_Inverse 0x7f0d003b
int style Base_TextAppearance_AppCompat_Widget_DropDownItem 0x7f0d003c
int style Base_TextAppearance_AppCompat_Widget_PopupMenu_Header 0x7f0d003d
int style Base_TextAppearance_AppCompat_Widget_PopupMenu_Large 0x7f0d003e
int style Base_TextAppearance_AppCompat_Widget_PopupMenu_Small 0x7f0d003f
int style Base_TextAppearance_AppCompat_Widget_Switch 0x7f0d0040
int style Base_TextAppearance_AppCompat_Widget_TextView_SpinnerItem 0x7f0d0041
int style Base_TextAppearance_Widget_AppCompat_ExpandedMenu_Item 0x7f0d0042
int style Base_TextAppearance_Widget_AppCompat_Toolbar_Subtitle 0x7f0d0043
int style Base_TextAppearance_Widget_AppCompat_Toolbar_Title 0x7f0d0044
int style Base_Theme_AppCompat 0x7f0d0045
int style Base_Theme_AppCompat_CompactMenu 0x7f0d0046
int style Base_Theme_AppCompat_Dialog 0x7f0d0047
int style Base_Theme_AppCompat_Dialog_Alert 0x7f0d0048
int style Base_Theme_AppCompat_Dialog_FixedSize 0x7f0d0049
int style Base_Theme_AppCompat_Dialog_MinWidth 0x7f0d004a
int style Base_Theme_AppCompat_DialogWhenLarge 0x7f0d004b
int style Base_Theme_AppCompat_Light 0x7f0d004c
int style Base_Theme_AppCompat_Light_DarkActionBar 0x7f0d004d
int style Base_Theme_AppCompat_Light_Dialog 0x7f0d004e
int style Base_Theme_AppCompat_Light_Dialog_Alert 0x7f0d004f
int style Base_Theme_AppCompat_Light_Dialog_FixedSize 0x7f0d0050
int style Base_Theme_AppCompat_Light_Dialog_MinWidth 0x7f0d0051
int style Base_Theme_AppCompat_Light_DialogWhenLarge 0x7f0d0052
int style Base_ThemeOverlay_AppCompat 0x7f0d0053
int style Base_ThemeOverlay_AppCompat_ActionBar 0x7f0d0054
int style Base_ThemeOverlay_AppCompat_Dark 0x7f0d0055
int style Base_ThemeOverlay_AppCompat_Dark_ActionBar 0x7f0d0056
int style Base_ThemeOverlay_AppCompat_Dialog 0x7f0d0057
int style Base_ThemeOverlay_AppCompat_Dialog_Alert 0x7f0d0058
int style Base_ThemeOverlay_AppCompat_Light 0x7f0d0059
int style Base_V21_Theme_AppCompat 0x7f0d005a
int style Base_V21_Theme_AppCompat_Dialog 0x7f0d005b
int style Base_V21_Theme_AppCompat_Light 0x7f0d005c
int style Base_V21_Theme_AppCompat_Light_Dialog 0x7f0d005d
int style Base_V21_ThemeOverlay_AppCompat_Dialog 0x7f0d005e
int style Base_V22_Theme_AppCompat 0x7f0d005f
int style Base_V22_Theme_AppCompat_Light 0x7f0d0060
int style Base_V23_Theme_AppCompat 0x7f0d0061
int style Base_V23_Theme_AppCompat_Light 0x7f0d0062
int style Base_V26_Theme_AppCompat 0x7f0d0063
int style Base_V26_Theme_AppCompat_Light 0x7f0d0064
int style Base_V26_Widget_AppCompat_Toolbar 0x7f0d0065
int style Base_V7_Theme_AppCompat 0x7f0d0066
int style Base_V7_Theme_AppCompat_Dialog 0x7f0d0067
int style Base_V7_Theme_AppCompat_Light 0x7f0d0068
int style Base_V7_Theme_AppCompat_Light_Dialog 0x7f0d0069
int style Base_V7_ThemeOverlay_AppCompat_Dialog 0x7f0d006a
int style Base_V7_Widget_AppCompat_AutoCompleteTextView 0x7f0d006b
int style Base_V7_Widget_AppCompat_EditText 0x7f0d006c
int style Base_V7_Widget_AppCompat_Toolbar 0x7f0d006d
int style Base_Widget_AppCompat_ActionBar 0x7f0d006e
int style Base_Widget_AppCompat_ActionBar_Solid 0x7f0d006f
int style Base_Widget_AppCompat_ActionBar_TabBar 0x7f0d0070
int style Base_Widget_AppCompat_ActionBar_TabText 0x7f0d0071
int style Base_Widget_AppCompat_ActionBar_TabView 0x7f0d0072
int style Base_Widget_AppCompat_ActionButton 0x7f0d0073
int style Base_Widget_AppCompat_ActionButton_CloseMode 0x7f0d0074
int style Base_Widget_AppCompat_ActionButton_Overflow 0x7f0d0075
int style Base_Widget_AppCompat_ActionMode 0x7f0d0076
int style Base_Widget_AppCompat_ActivityChooserView 0x7f0d0077
int style Base_Widget_AppCompat_AutoCompleteTextView 0x7f0d0078
int style Base_Widget_AppCompat_Button 0x7f0d0079
int style Base_Widget_AppCompat_Button_Borderless 0x7f0d007a
int style Base_Widget_AppCompat_Button_Borderless_Colored 0x7f0d007b
int style Base_Widget_AppCompat_Button_ButtonBar_AlertDialog 0x7f0d007c
int style Base_Widget_AppCompat_Button_Colored 0x7f0d007d
int style Base_Widget_AppCompat_Button_Small 0x7f0d007e
int style Base_Widget_AppCompat_ButtonBar 0x7f0d007f
int style Base_Widget_AppCompat_ButtonBar_AlertDialog 0x7f0d0080
int style Base_Widget_AppCompat_CompoundButton_CheckBox 0x7f0d0081
int style Base_Widget_AppCompat_CompoundButton_RadioButton 0x7f0d0082
int style Base_Widget_AppCompat_CompoundButton_Switch 0x7f0d0083
int style Base_Widget_AppCompat_DrawerArrowToggle 0x7f0d0084
int style Base_Widget_AppCompat_DrawerArrowToggle_Common 0x7f0d0085
int style Base_Widget_AppCompat_DropDownItem_Spinner 0x7f0d0086
int style Base_Widget_AppCompat_EditText 0x7f0d0087
int style Base_Widget_AppCompat_ImageButton 0x7f0d0088
int style Base_Widget_AppCompat_Light_ActionBar 0x7f0d0089
int style Base_Widget_AppCompat_Light_ActionBar_Solid 0x7f0d008a
int style Base_Widget_AppCompat_Light_ActionBar_TabBar 0x7f0d008b
int style Base_Widget_AppCompat_Light_ActionBar_TabText 0x7f0d008c
int style Base_Widget_AppCompat_Light_ActionBar_TabText_Inverse 0x7f0d008d
int style Base_Widget_AppCompat_Light_ActionBar_TabView 0x7f0d008e
int style Base_Widget_AppCompat_Light_PopupMenu 0x7f0d008f
int style Base_Widget_AppCompat_Light_PopupMenu_Overflow 0x7f0d0090
int style Base_Widget_AppCompat_ListMenuView 0x7f0d0091
int style Base_Widget_AppCompat_ListPopupWindow 0x7f0d0092
int style Base_Widget_AppCompat_ListView 0x7f0d0093
int style Base_Widget_AppCompat_ListView_DropDown 0x7f0d0094
int style Base_Widget_AppCompat_ListView_Menu 0x7f0d0095
int style Base_Widget_AppCompat_PopupMenu 0x7f0d0096
int style Base_Widget_AppCompat_PopupMenu_Overflow 0x7f0d0097
int style Base_Widget_AppCompat_PopupWindow 0x7f0d0098
int style Base_Widget_AppCompat_ProgressBar 0x7f0d0099
int style Base_Widget_AppCompat_ProgressBar_Horizontal 0x7f0d009a
int style Base_Widget_AppCompat_RatingBar 0x7f0d009b
int style Base_Widget_AppCompat_RatingBar_Indicator 0x7f0d009c
int style Base_Widget_AppCompat_RatingBar_Small 0x7f0d009d
int style Base_Widget_AppCompat_SearchView 0x7f0d009e
int style Base_Widget_AppCompat_SearchView_ActionBar 0x7f0d009f
int style Base_Widget_AppCompat_SeekBar 0x7f0d00a0
int style Base_Widget_AppCompat_SeekBar_Discrete 0x7f0d00a1
int style Base_Widget_AppCompat_Spinner 0x7f0d00a2
int style Base_Widget_AppCompat_Spinner_Underlined 0x7f0d00a3
int style Base_Widget_AppCompat_TextView_SpinnerItem 0x7f0d00a4
int style Base_Widget_AppCompat_Toolbar 0x7f0d00a5
int style Base_Widget_AppCompat_Toolbar_Button_Navigation 0x7f0d00a6
int style CustomCirclePageIndicator 0x7f0d00a7
int style CustomTabPageIndicator 0x7f0d00a8
int style CustomTabPageIndicator_Text 0x7f0d00a9
int style CustomTabPageIndicator1 0x7f0d00aa
int style CustomTabPageIndicator2 0x7f0d00ab
int style Dialog 0x7f0d00ac
int style Dialog_Fullscreen 0x7f0d00ad
int style EditTextStyle 0x7f0d00ae
int style LxyTabPageIndicator 0x7f0d00af
int style MessengerButton 0x7f0d00b0
int style MessengerButton_Blue 0x7f0d00b1
int style MessengerButton_Blue_Large 0x7f0d00b2
int style MessengerButton_Blue_Small 0x7f0d00b3
int style MessengerButton_White 0x7f0d00b4
int style MessengerButton_White_Large 0x7f0d00b5
int style MessengerButton_White_Small 0x7f0d00b6
int style MessengerButtonText 0x7f0d00b7
int style MessengerButtonText_Blue 0x7f0d00b8
int style MessengerButtonText_Blue_Large 0x7f0d00b9
int style MessengerButtonText_Blue_Small 0x7f0d00ba
int style MessengerButtonText_White 0x7f0d00bb
int style MessengerButtonText_White_Large 0x7f0d00bc
int style MessengerButtonText_White_Small 0x7f0d00bd
int style Notitle_Fullscreen 0x7f0d00be
int style PicDialog 0x7f0d00bf
int style Platform_AppCompat 0x7f0d00c0
int style Platform_AppCompat_Light 0x7f0d00c1
int style Platform_ThemeOverlay_AppCompat 0x7f0d00c2
int style Platform_ThemeOverlay_AppCompat_Dark 0x7f0d00c3
int style Platform_ThemeOverlay_AppCompat_Light 0x7f0d00c4
int style Platform_V21_AppCompat 0x7f0d00c5
int style Platform_V21_AppCompat_Light 0x7f0d00c6
int style Platform_V25_AppCompat 0x7f0d00c7
int style Platform_V25_AppCompat_Light 0x7f0d00c8
int style Platform_Widget_AppCompat_Spinner 0x7f0d00c9
int style PopupAnimation 0x7f0d00ca
int style RtlOverlay_DialogWindowTitle_AppCompat 0x7f0d00cb
int style RtlOverlay_Widget_AppCompat_ActionBar_TitleItem 0x7f0d00cc
int style RtlOverlay_Widget_AppCompat_DialogTitle_Icon 0x7f0d00cd
int style RtlOverlay_Widget_AppCompat_PopupMenuItem 0x7f0d00ce
int style RtlOverlay_Widget_AppCompat_PopupMenuItem_InternalGroup 0x7f0d00cf
int style RtlOverlay_Widget_AppCompat_PopupMenuItem_Text 0x7f0d00d0
int style RtlOverlay_Widget_AppCompat_Search_DropDown 0x7f0d00d1
int style RtlOverlay_Widget_AppCompat_Search_DropDown_Icon1 0x7f0d00d2
int style RtlOverlay_Widget_AppCompat_Search_DropDown_Icon2 0x7f0d00d3
int style RtlOverlay_Widget_AppCompat_Search_DropDown_Query 0x7f0d00d4
int style RtlOverlay_Widget_AppCompat_Search_DropDown_Text 0x7f0d00d5
int style RtlOverlay_Widget_AppCompat_SearchView_MagIcon 0x7f0d00d6
int style RtlUnderlay_Widget_AppCompat_ActionButton 0x7f0d00d7
int style RtlUnderlay_Widget_AppCompat_ActionButton_Overflow 0x7f0d00d8
int style SlidingDialogAnimation 0x7f0d00d9
int style SlidingDialogTheme 0x7f0d00da
int style TextAppearance_AppCompat 0x7f0d00db
int style TextAppearance_AppCompat_Body1 0x7f0d00dc
int style TextAppearance_AppCompat_Body2 0x7f0d00dd
int style TextAppearance_AppCompat_Button 0x7f0d00de
int style TextAppearance_AppCompat_Caption 0x7f0d00df
int style TextAppearance_AppCompat_Display1 0x7f0d00e0
int style TextAppearance_AppCompat_Display2 0x7f0d00e1
int style TextAppearance_AppCompat_Display3 0x7f0d00e2
int style TextAppearance_AppCompat_Display4 0x7f0d00e3
int style TextAppearance_AppCompat_Headline 0x7f0d00e4
int style TextAppearance_AppCompat_Inverse 0x7f0d00e5
int style TextAppearance_AppCompat_Large 0x7f0d00e6
int style TextAppearance_AppCompat_Large_Inverse 0x7f0d00e7
int style TextAppearance_AppCompat_Light_SearchResult_Subtitle 0x7f0d00e8
int style TextAppearance_AppCompat_Light_SearchResult_Title 0x7f0d00e9
int style TextAppearance_AppCompat_Light_Widget_PopupMenu_Large 0x7f0d00ea
int style TextAppearance_AppCompat_Light_Widget_PopupMenu_Small 0x7f0d00eb
int style TextAppearance_AppCompat_Medium 0x7f0d00ec
int style TextAppearance_AppCompat_Medium_Inverse 0x7f0d00ed
int style TextAppearance_AppCompat_Menu 0x7f0d00ee
int style TextAppearance_AppCompat_SearchResult_Subtitle 0x7f0d00ef
int style TextAppearance_AppCompat_SearchResult_Title 0x7f0d00f0
int style TextAppearance_AppCompat_Small 0x7f0d00f1
int style TextAppearance_AppCompat_Small_Inverse 0x7f0d00f2
int style TextAppearance_AppCompat_Subhead 0x7f0d00f3
int style TextAppearance_AppCompat_Subhead_Inverse 0x7f0d00f4
int style TextAppearance_AppCompat_Title 0x7f0d00f5
int style TextAppearance_AppCompat_Title_Inverse 0x7f0d00f6
int style TextAppearance_AppCompat_Tooltip 0x7f0d00f7
int style TextAppearance_AppCompat_Widget_ActionBar_Menu 0x7f0d00f8
int style TextAppearance_AppCompat_Widget_ActionBar_Subtitle 0x7f0d00f9
int style TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse 0x7f0d00fa
int style TextAppearance_AppCompat_Widget_ActionBar_Title 0x7f0d00fb
int style TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse 0x7f0d00fc
int style TextAppearance_AppCompat_Widget_ActionMode_Subtitle 0x7f0d00fd
int style TextAppearance_AppCompat_Widget_ActionMode_Subtitle_Inverse 0x7f0d00fe
int style TextAppearance_AppCompat_Widget_ActionMode_Title 0x7f0d00ff
int style TextAppearance_AppCompat_Widget_ActionMode_Title_Inverse 0x7f0d0100
int style TextAppearance_AppCompat_Widget_Button 0x7f0d0101
int style TextAppearance_AppCompat_Widget_Button_Borderless_Colored 0x7f0d0102
int style TextAppearance_AppCompat_Widget_Button_Colored 0x7f0d0103
int style TextAppearance_AppCompat_Widget_Button_Inverse 0x7f0d0104
int style TextAppearance_AppCompat_Widget_DropDownItem 0x7f0d0105
int style TextAppearance_AppCompat_Widget_PopupMenu_Header 0x7f0d0106
int style TextAppearance_AppCompat_Widget_PopupMenu_Large 0x7f0d0107
int style TextAppearance_AppCompat_Widget_PopupMenu_Small 0x7f0d0108
int style TextAppearance_AppCompat_Widget_Switch 0x7f0d0109
int style TextAppearance_AppCompat_Widget_TextView_SpinnerItem 0x7f0d010a
int style TextAppearance_Compat_Notification 0x7f0d010b
int style TextAppearance_Compat_Notification_Info 0x7f0d010c
int style TextAppearance_Compat_Notification_Line2 0x7f0d010d
int style TextAppearance_Compat_Notification_Time 0x7f0d010e
int style TextAppearance_Compat_Notification_Title 0x7f0d010f
int style TextAppearance_LxyTabPageIndicator 0x7f0d0110
int style TextAppearance_TabPageIndicator 0x7f0d0111
int style TextAppearance_Widget_AppCompat_ExpandedMenu_Item 0x7f0d0112
int style TextAppearance_Widget_AppCompat_Toolbar_Subtitle 0x7f0d0113
int style TextAppearance_Widget_AppCompat_Toolbar_Title 0x7f0d0114
int style TextBlackMedium 0x7f0d0115
int style TextBlackNormal 0x7f0d0116
int style TextBlackSmall 0x7f0d0117
int style TextBule 0x7f0d0118
int style TextBule1 0x7f0d0119
int style TextBule2 0x7f0d011a
int style TextBuleLarge 0x7f0d011b
int style TextBuleMedium 0x7f0d011c
int style TextBuleNormal 0x7f0d011d
int style TextBuleSmall 0x7f0d011e
int style TextGray 0x7f0d011f
int style TextGrayMedium 0x7f0d0120
int style TextGrayNormal 0x7f0d0121
int style TextGraySmall 0x7f0d0122
int style TextWhiteNormal 0x7f0d0123
int style TextWhiteSmall 0x7f0d0124
int style Theme_AppCompat 0x7f0d0125
int style Theme_AppCompat_CompactMenu 0x7f0d0126
int style Theme_AppCompat_DayNight 0x7f0d0127
int style Theme_AppCompat_DayNight_DarkActionBar 0x7f0d0128
int style Theme_AppCompat_DayNight_Dialog 0x7f0d0129
int style Theme_AppCompat_DayNight_Dialog_Alert 0x7f0d012a
int style Theme_AppCompat_DayNight_Dialog_MinWidth 0x7f0d012b
int style Theme_AppCompat_DayNight_DialogWhenLarge 0x7f0d012c
int style Theme_AppCompat_DayNight_NoActionBar 0x7f0d012d
int style Theme_AppCompat_Dialog 0x7f0d012e
int style Theme_AppCompat_Dialog_Alert 0x7f0d012f
int style Theme_AppCompat_Dialog_MinWidth 0x7f0d0130
int style Theme_AppCompat_DialogWhenLarge 0x7f0d0131
int style Theme_AppCompat_Light 0x7f0d0132
int style Theme_AppCompat_Light_DarkActionBar 0x7f0d0133
int style Theme_AppCompat_Light_Dialog 0x7f0d0134
int style Theme_AppCompat_Light_Dialog_Alert 0x7f0d0135
int style Theme_AppCompat_Light_Dialog_MinWidth 0x7f0d0136
int style Theme_AppCompat_Light_DialogWhenLarge 0x7f0d0137
int style Theme_AppCompat_Light_NoActionBar 0x7f0d0138
int style Theme_AppCompat_NoActionBar 0x7f0d0139
int style Theme_Dialog_TTDownload 0x7f0d013a
int style Theme_Dialog_TTDownloadOld 0x7f0d013b
int style Theme_PageIndicatorDefaults 0x7f0d013c
int style Theme_Sliding_Dialog 0x7f0d013d
int style Theme_Translucent 0x7f0d013e
int style Theme_UMDefault 0x7f0d013f
int style Theme_UMDialog 0x7f0d0140
int style ThemeOverlay_AppCompat 0x7f0d0141
int style ThemeOverlay_AppCompat_ActionBar 0x7f0d0142
int style ThemeOverlay_AppCompat_Dark 0x7f0d0143
int style ThemeOverlay_AppCompat_Dark_ActionBar 0x7f0d0144
int style ThemeOverlay_AppCompat_Dialog 0x7f0d0145
int style ThemeOverlay_AppCompat_Dialog_Alert 0x7f0d0146
int style ThemeOverlay_AppCompat_Light 0x7f0d0147
int style VK_Transparent 0x7f0d0148
int style VKAlertDialog 0x7f0d0149
int style VerticalDivider 0x7f0d014a
int style Widget 0x7f0d014b
int style Widget_AppCompat_ActionBar 0x7f0d014c
int style Widget_AppCompat_ActionBar_Solid 0x7f0d014d
int style Widget_AppCompat_ActionBar_TabBar 0x7f0d014e
int style Widget_AppCompat_ActionBar_TabText 0x7f0d014f
int style Widget_AppCompat_ActionBar_TabView 0x7f0d0150
int style Widget_AppCompat_ActionButton 0x7f0d0151
int style Widget_AppCompat_ActionButton_CloseMode 0x7f0d0152
int style Widget_AppCompat_ActionButton_Overflow 0x7f0d0153
int style Widget_AppCompat_ActionMode 0x7f0d0154
int style Widget_AppCompat_ActivityChooserView 0x7f0d0155
int style Widget_AppCompat_AutoCompleteTextView 0x7f0d0156
int style Widget_AppCompat_Button 0x7f0d0157
int style Widget_AppCompat_Button_Borderless 0x7f0d0158
int style Widget_AppCompat_Button_Borderless_Colored 0x7f0d0159
int style Widget_AppCompat_Button_ButtonBar_AlertDialog 0x7f0d015a
int style Widget_AppCompat_Button_Colored 0x7f0d015b
int style Widget_AppCompat_Button_Small 0x7f0d015c
int style Widget_AppCompat_ButtonBar 0x7f0d015d
int style Widget_AppCompat_ButtonBar_AlertDialog 0x7f0d015e
int style Widget_AppCompat_CompoundButton_CheckBox 0x7f0d015f
int style Widget_AppCompat_CompoundButton_RadioButton 0x7f0d0160
int style Widget_AppCompat_CompoundButton_Switch 0x7f0d0161
int style Widget_AppCompat_DrawerArrowToggle 0x7f0d0162
int style Widget_AppCompat_DropDownItem_Spinner 0x7f0d0163
int style Widget_AppCompat_EditText 0x7f0d0164
int style Widget_AppCompat_ImageButton 0x7f0d0165
int style Widget_AppCompat_Light_ActionBar 0x7f0d0166
int style Widget_AppCompat_Light_ActionBar_Solid 0x7f0d0167
int style Widget_AppCompat_Light_ActionBar_Solid_Inverse 0x7f0d0168
int style Widget_AppCompat_Light_ActionBar_TabBar 0x7f0d0169
int style Widget_AppCompat_Light_ActionBar_TabBar_Inverse 0x7f0d016a
int style Widget_AppCompat_Light_ActionBar_TabText 0x7f0d016b
int style Widget_AppCompat_Light_ActionBar_TabText_Inverse 0x7f0d016c
int style Widget_AppCompat_Light_ActionBar_TabView 0x7f0d016d
int style Widget_AppCompat_Light_ActionBar_TabView_Inverse 0x7f0d016e
int style Widget_AppCompat_Light_ActionButton 0x7f0d016f
int style Widget_AppCompat_Light_ActionButton_CloseMode 0x7f0d0170
int style Widget_AppCompat_Light_ActionButton_Overflow 0x7f0d0171
int style Widget_AppCompat_Light_ActionMode_Inverse 0x7f0d0172
int style Widget_AppCompat_Light_ActivityChooserView 0x7f0d0173
int style Widget_AppCompat_Light_AutoCompleteTextView 0x7f0d0174
int style Widget_AppCompat_Light_DropDownItem_Spinner 0x7f0d0175
int style Widget_AppCompat_Light_ListPopupWindow 0x7f0d0176
int style Widget_AppCompat_Light_ListView_DropDown 0x7f0d0177
int style Widget_AppCompat_Light_PopupMenu 0x7f0d0178
int style Widget_AppCompat_Light_PopupMenu_Overflow 0x7f0d0179
int style Widget_AppCompat_Light_SearchView 0x7f0d017a
int style Widget_AppCompat_Light_Spinner_DropDown_ActionBar 0x7f0d017b
int style Widget_AppCompat_ListMenuView 0x7f0d017c
int style Widget_AppCompat_ListPopupWindow 0x7f0d017d
int style Widget_AppCompat_ListView 0x7f0d017e
int style Widget_AppCompat_ListView_DropDown 0x7f0d017f
int style Widget_AppCompat_ListView_Menu 0x7f0d0180
int style Widget_AppCompat_PopupMenu 0x7f0d0181
int style Widget_AppCompat_PopupMenu_Overflow 0x7f0d0182
int style Widget_AppCompat_PopupWindow 0x7f0d0183
int style Widget_AppCompat_ProgressBar 0x7f0d0184
int style Widget_AppCompat_ProgressBar_Horizontal 0x7f0d0185
int style Widget_AppCompat_RatingBar 0x7f0d0186
int style Widget_AppCompat_RatingBar_Indicator 0x7f0d0187
int style Widget_AppCompat_RatingBar_Small 0x7f0d0188
int style Widget_AppCompat_SearchView 0x7f0d0189
int style Widget_AppCompat_SearchView_ActionBar 0x7f0d018a
int style Widget_AppCompat_SeekBar 0x7f0d018b
int style Widget_AppCompat_SeekBar_Discrete 0x7f0d018c
int style Widget_AppCompat_Spinner 0x7f0d018d
int style Widget_AppCompat_Spinner_DropDown 0x7f0d018e
int style Widget_AppCompat_Spinner_DropDown_ActionBar 0x7f0d018f
int style Widget_AppCompat_Spinner_Underlined 0x7f0d0190
int style Widget_AppCompat_TextView_SpinnerItem 0x7f0d0191
int style Widget_AppCompat_Toolbar 0x7f0d0192
int style Widget_AppCompat_Toolbar_Button_Navigation 0x7f0d0193
int style Widget_Compat_NotificationActionContainer 0x7f0d0194
int style Widget_Compat_NotificationActionText 0x7f0d0195
int style Widget_GifMoviewView 0x7f0d0196
int style Widget_IconPageIndicator 0x7f0d0197
int style Widget_LxyTabPageIndicator 0x7f0d0198
int style Widget_Support_CoordinatorLayout 0x7f0d0199
int style Widget_TabPageIndicator 0x7f0d019a
int style Widget_TabPageIndicator1 0x7f0d019b
int style Widget_TabPageIndicator2 0x7f0d019c
int style ali_auth_qr_activity_style 0x7f0d019d
int style alibc_auth_dialog 0x7f0d019e
int style appdownloader_style_detail_download_progress_bar 0x7f0d019f
int style appdownloader_style_notification_text 0x7f0d01a0
int style appdownloader_style_notification_title 0x7f0d01a1
int style appdownloader_style_progress_bar 0x7f0d01a2
int style appdownloader_style_progress_bar_new 0x7f0d01a3
int style com_facebook_button 0x7f0d01a4
int style com_facebook_button_like 0x7f0d01a5
int style com_facebook_button_send 0x7f0d01a6
int style com_facebook_button_share 0x7f0d01a7
int style com_facebook_loginview_default_style 0x7f0d01a8
int style com_facebook_loginview_silver_style 0x7f0d01a9
int style dialog 0x7f0d01aa
int style dialogstyle 0x7f0d01ab
int style horizontalDivider 0x7f0d01ac
int style lan_DialogWindowAnim 0x7f0d01ad
int style notitleDialog 0x7f0d01ae
int style scrshot_dlg_style 0x7f0d01af
int style snapshotDialogWindowAnim 0x7f0d01b0
int style tooltip_bubble_text 0x7f0d01b1
int style tt_Widget_ProgressBar_Horizontal 0x7f0d01b2
int style tt_back_view 0x7f0d01b3
int style tt_custom_dialog 0x7f0d01b4
int style tt_dislikeDialog 0x7f0d01b5
int style tt_dislikeDialogAnimation 0x7f0d01b6
int style tt_dislikeDialog_new 0x7f0d01b7
int style tt_ss_popup_toast_anim 0x7f0d01b8
int style tt_wg_insert_dialog 0x7f0d01b9
int style tt_widget_gifView 0x7f0d01ba
int style ttdownloader_translucent_dialog 0x7f0d01bb
int style umeng_socialize_action_bar_item_im 0x7f0d01bc
int style umeng_socialize_action_bar_item_tv 0x7f0d01bd
int style umeng_socialize_action_bar_itemlayout 0x7f0d01be
int style umeng_socialize_dialog_anim_fade 0x7f0d01bf
int style umeng_socialize_dialog_animations 0x7f0d01c0
int style umeng_socialize_divider 0x7f0d01c1
int style umeng_socialize_edit_padding 0x7f0d01c2
int style umeng_socialize_list_item 0x7f0d01c3
int style umeng_socialize_popup_dialog 0x7f0d01c4
int style umeng_socialize_popup_dialog_anim 0x7f0d01c5
int style umeng_socialize_shareboard_animation 0x7f0d01c6
int[] styleable ActionBar { 0x7f020033, 0x7f020034, 0x7f020035, 0x7f02006b, 0x7f02006c, 0x7f02006d, 0x7f02006e, 0x7f02006f, 0x7f020070, 0x7f020073, 0x7f02007a, 0x7f02007b, 0x7f020087, 0x7f0200ab, 0x7f0200ac, 0x7f0200ad, 0x7f0200ae, 0x7f0200af, 0x7f0200b4, 0x7f0200b7, 0x7f0200cf, 0x7f0200d9, 0x7f0200e6, 0x7f0200e9, 0x7f0200ea, 0x7f020119, 0x7f02011c, 0x7f020137, 0x7f020141 }
int styleable ActionBar_background 0
int styleable ActionBar_backgroundSplit 1
int styleable ActionBar_backgroundStacked 2
int styleable ActionBar_contentInsetEnd 3
int styleable ActionBar_contentInsetEndWithActions 4
int styleable ActionBar_contentInsetLeft 5
int styleable ActionBar_contentInsetRight 6
int styleable ActionBar_contentInsetStart 7
int styleable ActionBar_contentInsetStartWithNavigation 8
int styleable ActionBar_customNavigationLayout 9
int styleable ActionBar_displayOptions 10
int styleable ActionBar_divider 11
int styleable ActionBar_elevation 12
int styleable ActionBar_height 13
int styleable ActionBar_hideOnContentScroll 14
int styleable ActionBar_homeAsUpIndicator 15
int styleable ActionBar_homeLayout 16
int styleable ActionBar_icon 17
int styleable ActionBar_indeterminateProgressStyle 18
int styleable ActionBar_itemPadding 19
int styleable ActionBar_logo 20
int styleable ActionBar_navigationMode 21
int styleable ActionBar_popupTheme 22
int styleable ActionBar_progressBarPadding 23
int styleable ActionBar_progressBarStyle 24
int styleable ActionBar_subtitle 25
int styleable ActionBar_subtitleTextStyle 26
int styleable ActionBar_title 27
int styleable ActionBar_titleTextStyle 28
int[] styleable ActionBarLayout { 0x010100b3 }
int styleable ActionBarLayout_android_layout_gravity 0
int[] styleable ActionMenuItemView { 0x0101013f }
int styleable ActionMenuItemView_android_minWidth 0
int[] styleable ActionMenuView { }
int[] styleable ActionMode { 0x7f020033, 0x7f020034, 0x7f02004d, 0x7f0200ab, 0x7f02011c, 0x7f020141 }
int styleable ActionMode_background 0
int styleable ActionMode_backgroundSplit 1
int styleable ActionMode_closeItemLayout 2
int styleable ActionMode_height 3
int styleable ActionMode_subtitleTextStyle 4
int styleable ActionMode_titleTextStyle 5
int[] styleable ActivityChooserView { 0x7f02008b, 0x7f0200b5 }
int styleable ActivityChooserView_expandActivityOverflowButtonDrawable 0
int styleable ActivityChooserView_initialActivityCount 1
int[] styleable AdaptiveListView { 0x7f0200d4 }
int styleable AdaptiveListView_maxHeight 0
int[] styleable AlertDialog { 0x010100f2, 0x7f020042, 0x7f020043, 0x7f0200c6, 0x7f0200c7, 0x7f0200d6, 0x7f020109, 0x7f02010a }
int styleable AlertDialog_android_layout 0
int styleable AlertDialog_buttonIconDimen 1
int styleable AlertDialog_buttonPanelSideLayout 2
int styleable AlertDialog_listItemLayout 3
int styleable AlertDialog_listLayout 4
int styleable AlertDialog_multiChoiceItemLayout 5
int styleable AlertDialog_showTitle 6
int styleable AlertDialog_singleChoiceItemLayout 7
int[] styleable AliUserSmsCodeView { 0x7f0200f5, 0x7f0200f6, 0x7f0200f7, 0x7f0200f8, 0x7f0200f9, 0x7f0200fa, 0x7f0200fb, 0x7f0200fc }
int styleable AliUserSmsCodeView_scDividerWidth 0
int styleable AliUserSmsCodeView_scNextUnderLineColor 1
int styleable AliUserSmsCodeView_scTextColor 2
int styleable AliUserSmsCodeView_scTextCount 3
int styleable AliUserSmsCodeView_scTextFont 4
int styleable AliUserSmsCodeView_scTextSize 5
int styleable AliUserSmsCodeView_scUnderLineColor 6
int styleable AliUserSmsCodeView_scUnderLineStrokeWidth 7
int[] styleable AppCompatImageView { 0x01010119, 0x7f020111, 0x7f020135, 0x7f020136 }
int styleable AppCompatImageView_android_src 0
int styleable AppCompatImageView_srcCompat 1
int styleable AppCompatImageView_tint 2
int styleable AppCompatImageView_tintMode 3
int[] styleable AppCompatSeekBar { 0x01010142, 0x7f020132, 0x7f020133, 0x7f020134 }
int styleable AppCompatSeekBar_android_thumb 0
int styleable AppCompatSeekBar_tickMark 1
int styleable AppCompatSeekBar_tickMarkTint 2
int styleable AppCompatSeekBar_tickMarkTintMode 3
int[] styleable AppCompatTextHelper { 0x01010034, 0x0101016d, 0x0101016e, 0x0101016f, 0x01010170, 0x01010392, 0x01010393 }
int styleable AppCompatTextHelper_android_textAppearance 0
int styleable AppCompatTextHelper_android_drawableTop 1
int styleable AppCompatTextHelper_android_drawableBottom 2
int styleable AppCompatTextHelper_android_drawableLeft 3
int styleable AppCompatTextHelper_android_drawableRight 4
int styleable AppCompatTextHelper_android_drawableStart 5
int styleable AppCompatTextHelper_android_drawableEnd 6
int[] styleable AppCompatTextView { 0x01010034, 0x7f02002d, 0x7f02002e, 0x7f02002f, 0x7f020030, 0x7f020031, 0x7f020096, 0x7f020122 }
int styleable AppCompatTextView_android_textAppearance 0
int styleable AppCompatTextView_autoSizeMaxTextSize 1
int styleable AppCompatTextView_autoSizeMinTextSize 2
int styleable AppCompatTextView_autoSizePresetSizes 3
int styleable AppCompatTextView_autoSizeStepGranularity 4
int styleable AppCompatTextView_autoSizeTextType 5
int styleable AppCompatTextView_fontFamily 6
int styleable AppCompatTextView_textAllCaps 7
int[] styleable AppCompatTheme { 0x01010057, 0x010100ae, 0x7f020000, 0x7f020001, 0x7f020002, 0x7f020003, 0x7f020004, 0x7f020005, 0x7f020006, 0x7f020007, 0x7f020008, 0x7f020009, 0x7f02000a, 0x7f02000b, 0x7f02000c, 0x7f02000e, 0x7f02000f, 0x7f020010, 0x7f020011, 0x7f020012, 0x7f020013, 0x7f020014, 0x7f020015, 0x7f020016, 0x7f020017, 0x7f020018, 0x7f020019, 0x7f02001a, 0x7f02001b, 0x7f02001c, 0x7f02001d, 0x7f02001e, 0x7f020021, 0x7f020022, 0x7f020023, 0x7f020024, 0x7f020025, 0x7f02002c, 0x7f02003b, 0x7f02003c, 0x7f02003d, 0x7f02003e, 0x7f02003f, 0x7f020040, 0x7f020044, 0x7f020045, 0x7f020049, 0x7f02004a, 0x7f020052, 0x7f020053, 0x7f020054, 0x7f020055, 0x7f020056, 0x7f020057, 0x7f020058, 0x7f020059, 0x7f02005a, 0x7f02005b, 0x7f020071, 0x7f020078, 0x7f020079, 0x7f02007c, 0x7f02007e, 0x7f020081, 0x7f020082, 0x7f020084, 0x7f020085, 0x7f020086, 0x7f0200ad, 0x7f0200b3, 0x7f0200c4, 0x7f0200c5, 0x7f0200c8, 0x7f0200c9, 0x7f0200ca, 0x7f0200cb, 0x7f0200cc, 0x7f0200cd, 0x7f0200ce, 0x7f0200e1, 0x7f0200e2, 0x7f0200e3, 0x7f0200e5, 0x7f0200e7, 0x7f0200ed, 0x7f0200ef, 0x7f0200f0, 0x7f0200f1, 0x7f0200ff, 0x7f020100, 0x7f020101, 0x7f020102, 0x7f02010e, 0x7f02010f, 0x7f020120, 0x7f020123, 0x7f020124, 0x7f020125, 0x7f020126, 0x7f020127, 0x7f020128, 0x7f020129, 0x7f02012a, 0x7f02012b, 0x7f02012c, 0x7f020143, 0x7f020144, 0x7f020145, 0x7f020146, 0x7f02014d, 0x7f020156, 0x7f020157, 0x7f020158, 0x7f020159, 0x7f02015a, 0x7f02015b, 0x7f02015c, 0x7f02015d, 0x7f02015e, 0x7f02015f }
int styleable AppCompatTheme_android_windowIsFloating 0
int styleable AppCompatTheme_android_windowAnimationStyle 1
int styleable AppCompatTheme_actionBarDivider 2
int styleable AppCompatTheme_actionBarItemBackground 3
int styleable AppCompatTheme_actionBarPopupTheme 4
int styleable AppCompatTheme_actionBarSize 5
int styleable AppCompatTheme_actionBarSplitStyle 6
int styleable AppCompatTheme_actionBarStyle 7
int styleable AppCompatTheme_actionBarTabBarStyle 8
int styleable AppCompatTheme_actionBarTabStyle 9
int styleable AppCompatTheme_actionBarTabTextStyle 10
int styleable AppCompatTheme_actionBarTheme 11
int styleable AppCompatTheme_actionBarWidgetTheme 12
int styleable AppCompatTheme_actionButtonStyle 13
int styleable AppCompatTheme_actionDropDownStyle 14
int styleable AppCompatTheme_actionMenuTextAppearance 15
int styleable AppCompatTheme_actionMenuTextColor 16
int styleable AppCompatTheme_actionModeBackground 17
int styleable AppCompatTheme_actionModeCloseButtonStyle 18
int styleable AppCompatTheme_actionModeCloseDrawable 19
int styleable AppCompatTheme_actionModeCopyDrawable 20
int styleable AppCompatTheme_actionModeCutDrawable 21
int styleable AppCompatTheme_actionModeFindDrawable 22
int styleable AppCompatTheme_actionModePasteDrawable 23
int styleable AppCompatTheme_actionModePopupWindowStyle 24
int styleable AppCompatTheme_actionModeSelectAllDrawable 25
int styleable AppCompatTheme_actionModeShareDrawable 26
int styleable AppCompatTheme_actionModeSplitBackground 27
int styleable AppCompatTheme_actionModeStyle 28
int styleable AppCompatTheme_actionModeWebSearchDrawable 29
int styleable AppCompatTheme_actionOverflowButtonStyle 30
int styleable AppCompatTheme_actionOverflowMenuStyle 31
int styleable AppCompatTheme_activityChooserViewStyle 32
int styleable AppCompatTheme_alertDialogButtonGroupStyle 33
int styleable AppCompatTheme_alertDialogCenterButtons 34
int styleable AppCompatTheme_alertDialogStyle 35
int styleable AppCompatTheme_alertDialogTheme 36
int styleable AppCompatTheme_autoCompleteTextViewStyle 37
int styleable AppCompatTheme_borderlessButtonStyle 38
int styleable AppCompatTheme_buttonBarButtonStyle 39
int styleable AppCompatTheme_buttonBarNegativeButtonStyle 40
int styleable AppCompatTheme_buttonBarNeutralButtonStyle 41
int styleable AppCompatTheme_buttonBarPositiveButtonStyle 42
int styleable AppCompatTheme_buttonBarStyle 43
int styleable AppCompatTheme_buttonStyle 44
int styleable AppCompatTheme_buttonStyleSmall 45
int styleable AppCompatTheme_checkboxStyle 46
int styleable AppCompatTheme_checkedTextViewStyle 47
int styleable AppCompatTheme_colorAccent 48
int styleable AppCompatTheme_colorBackgroundFloating 49
int styleable AppCompatTheme_colorButtonNormal 50
int styleable AppCompatTheme_colorControlActivated 51
int styleable AppCompatTheme_colorControlHighlight 52
int styleable AppCompatTheme_colorControlNormal 53
int styleable AppCompatTheme_colorError 54
int styleable AppCompatTheme_colorPrimary 55
int styleable AppCompatTheme_colorPrimaryDark 56
int styleable AppCompatTheme_colorSwitchThumbNormal 57
int styleable AppCompatTheme_controlBackground 58
int styleable AppCompatTheme_dialogPreferredPadding 59
int styleable AppCompatTheme_dialogTheme 60
int styleable AppCompatTheme_dividerHorizontal 61
int styleable AppCompatTheme_dividerVertical 62
int styleable AppCompatTheme_dropDownListViewStyle 63
int styleable AppCompatTheme_dropdownListPreferredItemHeight 64
int styleable AppCompatTheme_editTextBackground 65
int styleable AppCompatTheme_editTextColor 66
int styleable AppCompatTheme_editTextStyle 67
int styleable AppCompatTheme_homeAsUpIndicator 68
int styleable AppCompatTheme_imageButtonStyle 69
int styleable AppCompatTheme_listChoiceBackgroundIndicator 70
int styleable AppCompatTheme_listDividerAlertDialog 71
int styleable AppCompatTheme_listMenuViewStyle 72
int styleable AppCompatTheme_listPopupWindowStyle 73
int styleable AppCompatTheme_listPreferredItemHeight 74
int styleable AppCompatTheme_listPreferredItemHeightLarge 75
int styleable AppCompatTheme_listPreferredItemHeightSmall 76
int styleable AppCompatTheme_listPreferredItemPaddingLeft 77
int styleable AppCompatTheme_listPreferredItemPaddingRight 78
int styleable AppCompatTheme_panelBackground 79
int styleable AppCompatTheme_panelMenuListTheme 80
int styleable AppCompatTheme_panelMenuListWidth 81
int styleable AppCompatTheme_popupMenuStyle 82
int styleable AppCompatTheme_popupWindowStyle 83
int styleable AppCompatTheme_radioButtonStyle 84
int styleable AppCompatTheme_ratingBarStyle 85
int styleable AppCompatTheme_ratingBarStyleIndicator 86
int styleable AppCompatTheme_ratingBarStyleSmall 87
int styleable AppCompatTheme_searchViewStyle 88
int styleable AppCompatTheme_seekBarStyle 89
int styleable AppCompatTheme_selectableItemBackground 90
int styleable AppCompatTheme_selectableItemBackgroundBorderless 91
int styleable AppCompatTheme_spinnerDropDownItemStyle 92
int styleable AppCompatTheme_spinnerStyle 93
int styleable AppCompatTheme_switchStyle 94
int styleable AppCompatTheme_textAppearanceLargePopupMenu 95
int styleable AppCompatTheme_textAppearanceListItem 96
int styleable AppCompatTheme_textAppearanceListItemSecondary 97
int styleable AppCompatTheme_textAppearanceListItemSmall 98
int styleable AppCompatTheme_textAppearancePopupMenuHeader 99
int styleable AppCompatTheme_textAppearanceSearchResultSubtitle 100
int styleable AppCompatTheme_textAppearanceSearchResultTitle 101
int styleable AppCompatTheme_textAppearanceSmallPopupMenu 102
int styleable AppCompatTheme_textColorAlertDialogListItem 103
int styleable AppCompatTheme_textColorSearchUrl 104
int styleable AppCompatTheme_toolbarNavigationButtonStyle 105
int styleable AppCompatTheme_toolbarStyle 106
int styleable AppCompatTheme_tooltipForegroundColor 107
int styleable AppCompatTheme_tooltipFrameBackground 108
int styleable AppCompatTheme_viewInflaterClass 109
int styleable AppCompatTheme_windowActionBar 110
int styleable AppCompatTheme_windowActionBarOverlay 111
int styleable AppCompatTheme_windowActionModeOverlay 112
int styleable AppCompatTheme_windowFixedHeightMajor 113
int styleable AppCompatTheme_windowFixedHeightMinor 114
int styleable AppCompatTheme_windowFixedWidthMajor 115
int styleable AppCompatTheme_windowFixedWidthMinor 116
int styleable AppCompatTheme_windowMinWidthMajor 117
int styleable AppCompatTheme_windowMinWidthMinor 118
int styleable AppCompatTheme_windowNoTitle 119
int[] styleable ArcMenu { 0x7f020029, 0x7f02004e, 0x7f020083, 0x7f0200a5, 0x7f0200d2, 0x7f020142 }
int styleable ArcMenu_arcRadius 0
int styleable ArcMenu_closeOnClick 1
int styleable ArcMenu_duration 2
int styleable ArcMenu_fromDegrees 3
int styleable ArcMenu_mainImage 4
int styleable ArcMenu_toDegrees 5
int[] styleable ButtonBarLayout { 0x7f020026 }
int styleable ButtonBarLayout_allowStacking 0
int[] styleable CircleImageView { 0x7f020039, 0x7f02003a }
int styleable CircleImageView_border_color 0
int styleable CircleImageView_border_width 1
int[] styleable CirclePageIndicator { 0x010100c4, 0x010100d4, 0x7f020048, 0x7f020094, 0x7f0200e0, 0x7f0200ee, 0x7f02010b, 0x7f020115, 0x7f020116 }
int styleable CirclePageIndicator_android_orientation 0
int styleable CirclePageIndicator_android_background 1
int styleable CirclePageIndicator_centered 2
int styleable CirclePageIndicator_fillColor 3
int styleable CirclePageIndicator_pageColor 4
int styleable CirclePageIndicator_radius 5
int styleable CirclePageIndicator_snap 6
int styleable CirclePageIndicator_strokeColor 7
int styleable CirclePageIndicator_strokeWidth 8
int[] styleable ColorStateListItem { 0x010101a5, 0x0101031f, 0x7f020027 }
int styleable ColorStateListItem_android_color 0
int styleable ColorStateListItem_android_alpha 1
int styleable ColorStateListItem_alpha 2
int[] styleable CompoundButton { 0x01010107, 0x7f020046, 0x7f020047 }
int styleable CompoundButton_android_button 0
int styleable CompoundButton_buttonTint 1
int styleable CompoundButton_buttonTintMode 2
int[] styleable CoordinatorLayout { 0x7f0200b8, 0x7f020114 }
int styleable CoordinatorLayout_keylines 0
int styleable CoordinatorLayout_statusBarBackground 1
int[] styleable CoordinatorLayout_Layout { 0x010100b3, 0x7f0200bb, 0x7f0200bc, 0x7f0200bd, 0x7f0200be, 0x7f0200bf, 0x7f0200c0 }
int styleable CoordinatorLayout_Layout_android_layout_gravity 0
int styleable CoordinatorLayout_Layout_layout_anchor 1
int styleable CoordinatorLayout_Layout_layout_anchorGravity 2
int styleable CoordinatorLayout_Layout_layout_behavior 3
int styleable CoordinatorLayout_Layout_layout_dodgeInsetEdges 4
int styleable CoordinatorLayout_Layout_layout_insetEdge 5
int styleable CoordinatorLayout_Layout_layout_keyline 6
int[] styleable CustomTheme { 0x7f0200a9 }
int styleable CustomTheme_gifMoviewViewStyle 0
int[] styleable DashLine { 0x7f020074, 0x7f020075, 0x7f020076, 0x7f0200c1 }
int styleable DashLine_dashGap 0
int styleable DashLine_dashOrientation 1
int styleable DashLine_dashWidth 2
int styleable DashLine_lineColor 3
int[] styleable DrawerArrowToggle { 0x7f02002a, 0x7f02002b, 0x7f020038, 0x7f020051, 0x7f02007f, 0x7f0200a6, 0x7f02010d, 0x7f02012e }
int styleable DrawerArrowToggle_arrowHeadLength 0
int styleable DrawerArrowToggle_arrowShaftLength 1
int styleable DrawerArrowToggle_barLength 2
int styleable DrawerArrowToggle_color 3
int styleable DrawerArrowToggle_drawableSize 4
int styleable DrawerArrowToggle_gapBetweenBars 5
int styleable DrawerArrowToggle_spinBars 6
int styleable DrawerArrowToggle_thickness 7
int[] styleable Emotion { 0x7f020088, 0x7f020089, 0x7f02008a }
int styleable Emotion_emotionHeight 0
int styleable Emotion_emotionSize 1
int styleable Emotion_emotionWidth 2
int[] styleable FontFamily { 0x7f020097, 0x7f020098, 0x7f020099, 0x7f02009a, 0x7f02009b, 0x7f02009c }
int styleable FontFamily_fontProviderAuthority 0
int styleable FontFamily_fontProviderCerts 1
int styleable FontFamily_fontProviderFetchStrategy 2
int styleable FontFamily_fontProviderFetchTimeout 3
int styleable FontFamily_fontProviderPackage 4
int styleable FontFamily_fontProviderQuery 5
int[] styleable FontFamilyFont { 0x01010532, 0x01010533, 0x0101053f, 0x7f020095, 0x7f02009d, 0x7f02009e }
int styleable FontFamilyFont_android_font 0
int styleable FontFamilyFont_android_fontWeight 1
int styleable FontFamilyFont_android_fontStyle 2
int styleable FontFamilyFont_font 3
int styleable FontFamilyFont_fontStyle 4
int styleable FontFamilyFont_fontWeight 5
int[] styleable GifMoviewView { 0x7f0200a8, 0x7f0200e4 }
int styleable GifMoviewView_gif 0
int styleable GifMoviewView_paused 1
int[] styleable LinePageIndicator { 0x010100d4, 0x7f020048, 0x7f0200a7, 0x7f0200c3, 0x7f020104, 0x7f020116, 0x7f02014c }
int styleable LinePageIndicator_android_background 0
int styleable LinePageIndicator_centered 1
int styleable LinePageIndicator_gapWidth 2
int styleable LinePageIndicator_lineWidth 3
int styleable LinePageIndicator_selectedColor 4
int styleable LinePageIndicator_strokeWidth 5
int styleable LinePageIndicator_unselectedColor 6
int[] styleable LinearLayoutCompat { 0x010100af, 0x010100c4, 0x01010126, 0x01010127, 0x01010128, 0x7f02007b, 0x7f02007d, 0x7f0200d5, 0x7f020107 }
int styleable LinearLayoutCompat_android_gravity 0
int styleable LinearLayoutCompat_android_orientation 1
int styleable LinearLayoutCompat_android_baselineAligned 2
int styleable LinearLayoutCompat_android_baselineAlignedChildIndex 3
int styleable LinearLayoutCompat_android_weightSum 4
int styleable LinearLayoutCompat_divider 5
int styleable LinearLayoutCompat_dividerPadding 6
int styleable LinearLayoutCompat_measureWithLargestChild 7
int styleable LinearLayoutCompat_showDividers 8
int[] styleable LinearLayoutCompat_Layout { 0x010100b3, 0x010100f4, 0x010100f5, 0x01010181 }
int styleable LinearLayoutCompat_Layout_android_layout_gravity 0
int styleable LinearLayoutCompat_Layout_android_layout_width 1
int styleable LinearLayoutCompat_Layout_android_layout_height 2
int styleable LinearLayoutCompat_Layout_android_layout_weight 3
int[] styleable ListPopupWindow { 0x010102ac, 0x010102ad }
int styleable ListPopupWindow_android_dropDownHorizontalOffset 0
int styleable ListPopupWindow_android_dropDownVerticalOffset 1
int[] styleable MenuGroup { 0x0101000e, 0x010100d0, 0x01010194, 0x010101de, 0x010101df, 0x010101e0 }
int styleable MenuGroup_android_enabled 0
int styleable MenuGroup_android_id 1
int styleable MenuGroup_android_visible 2
int styleable MenuGroup_android_menuCategory 3
int styleable MenuGroup_android_orderInCategory 4
int styleable MenuGroup_android_checkableBehavior 5
int[] styleable MenuItem { 0x01010002, 0x0101000e, 0x010100d0, 0x01010106, 0x01010194, 0x010101de, 0x010101df, 0x010101e1, 0x010101e2, 0x010101e3, 0x010101e4, 0x010101e5, 0x0101026f, 0x7f02000d, 0x7f02001f, 0x7f020020, 0x7f020028, 0x7f02006a, 0x7f0200b0, 0x7f0200b1, 0x7f0200da, 0x7f020106, 0x7f020147 }
int styleable MenuItem_android_icon 0
int styleable MenuItem_android_enabled 1
int styleable MenuItem_android_id 2
int styleable MenuItem_android_checked 3
int styleable MenuItem_android_visible 4
int styleable MenuItem_android_menuCategory 5
int styleable MenuItem_android_orderInCategory 6
int styleable MenuItem_android_title 7
int styleable MenuItem_android_titleCondensed 8
int styleable MenuItem_android_alphabeticShortcut 9
int styleable MenuItem_android_numericShortcut 10
int styleable MenuItem_android_checkable 11
int styleable MenuItem_android_onClick 12
int styleable MenuItem_actionLayout 13
int styleable MenuItem_actionProviderClass 14
int styleable MenuItem_actionViewClass 15
int styleable MenuItem_alphabeticModifiers 16
int styleable MenuItem_contentDescription 17
int styleable MenuItem_iconTint 18
int styleable MenuItem_iconTintMode 19
int styleable MenuItem_numericModifiers 20
int styleable MenuItem_showAsAction 21
int styleable MenuItem_tooltipText 22
int[] styleable MenuView { 0x010100ae, 0x0101012c, 0x0101012d, 0x0101012e, 0x0101012f, 0x01010130, 0x01010131, 0x7f0200e8, 0x7f020117 }
int styleable MenuView_android_windowAnimationStyle 0
int styleable MenuView_android_itemTextAppearance 1
int styleable MenuView_android_horizontalDivider 2
int styleable MenuView_android_verticalDivider 3
int styleable MenuView_android_headerBackground 4
int styleable MenuView_android_itemBackground 5
int styleable MenuView_android_itemIconDisabledAlpha 6
int styleable MenuView_preserveIconSpacing 7
int styleable MenuView_subMenuArrow 8
int[] styleable PopupWindow { 0x01010176, 0x010102c9, 0x7f0200db }
int styleable PopupWindow_android_popupBackground 0
int styleable PopupWindow_android_popupAnimationStyle 1
int styleable PopupWindow_overlapAnchor 2
int[] styleable PopupWindowBackgroundState { 0x7f020113 }
int styleable PopupWindowBackgroundState_state_above_anchor 0
int[] styleable PowerImageView { 0x7f020032 }
int styleable PowerImageView_auto_play 0
int[] styleable RatioLayout { 0x7f0200f2 }
int styleable RatioLayout_ratio 0
int[] styleable RecycleListView { 0x7f0200dc, 0x7f0200df }
int styleable RecycleListView_paddingBottomNoButtons 0
int styleable RecycleListView_paddingTopNoTitle 1
int[] styleable RecyclerView { 0x010100c4, 0x010100f1, 0x7f02008f, 0x7f020090, 0x7f020091, 0x7f020092, 0x7f020093, 0x7f0200ba, 0x7f0200f3, 0x7f02010c, 0x7f020112 }
int styleable RecyclerView_android_orientation 0
int styleable RecyclerView_android_descendantFocusability 1
int styleable RecyclerView_fastScrollEnabled 2
int styleable RecyclerView_fastScrollHorizontalThumbDrawable 3
int styleable RecyclerView_fastScrollHorizontalTrackDrawable 4
int styleable RecyclerView_fastScrollVerticalThumbDrawable 5
int styleable RecyclerView_fastScrollVerticalTrackDrawable 6
int styleable RecyclerView_layoutManager 7
int styleable RecyclerView_reverseLayout 8
int styleable RecyclerView_spanCount 9
int styleable RecyclerView_stackFromEnd 10
int[] styleable SearchView { 0x010100da, 0x0101011f, 0x01010220, 0x01010264, 0x7f02004c, 0x7f020069, 0x7f020077, 0x7f0200aa, 0x7f0200b2, 0x7f0200b9, 0x7f0200eb, 0x7f0200ec, 0x7f0200fd, 0x7f0200fe, 0x7f020118, 0x7f02011d, 0x7f02014e }
int styleable SearchView_android_focusable 0
int styleable SearchView_android_maxWidth 1
int styleable SearchView_android_inputType 2
int styleable SearchView_android_imeOptions 3
int styleable SearchView_closeIcon 4
int styleable SearchView_commitIcon 5
int styleable SearchView_defaultQueryHint 6
int styleable SearchView_goIcon 7
int styleable SearchView_iconifiedByDefault 8
int styleable SearchView_layout 9
int styleable SearchView_queryBackground 10
int styleable SearchView_queryHint 11
int styleable SearchView_searchHintIcon 12
int styleable SearchView_searchIcon 13
int styleable SearchView_submitBackground 14
int styleable SearchView_suggestionRowLayout 15
int styleable SearchView_voiceIcon 16
int[] styleable ShelvesView { 0x7f020105 }
int styleable ShelvesView_shelfBackground 0
int[] styleable SlidingMenu { 0x7f0200f4 }
int styleable SlidingMenu_rightPadding 0
int[] styleable Spinner { 0x010100b2, 0x01010176, 0x0101017b, 0x01010262, 0x7f0200e6 }
int styleable Spinner_android_entries 0
int styleable Spinner_android_popupBackground 1
int styleable Spinner_android_prompt 2
int styleable Spinner_android_dropDownWidth 3
int styleable Spinner_popupTheme 4
int[] styleable SwitchCompat { 0x01010124, 0x01010125, 0x01010142, 0x7f020108, 0x7f020110, 0x7f02011e, 0x7f02011f, 0x7f020121, 0x7f02012f, 0x7f020130, 0x7f020131, 0x7f020149, 0x7f02014a, 0x7f02014b }
int styleable SwitchCompat_android_textOn 0
int styleable SwitchCompat_android_textOff 1
int styleable SwitchCompat_android_thumb 2
int styleable SwitchCompat_showText 3
int styleable SwitchCompat_splitTrack 4
int styleable SwitchCompat_switchMinWidth 5
int styleable SwitchCompat_switchPadding 6
int styleable SwitchCompat_switchTextAppearance 7
int styleable SwitchCompat_thumbTextPadding 8
int styleable SwitchCompat_thumbTint 9
int styleable SwitchCompat_thumbTintMode 10
int styleable SwitchCompat_track 11
int styleable SwitchCompat_trackTint 12
int styleable SwitchCompat_trackTintMode 13
int[] styleable TextAppearance { 0x01010095, 0x01010096, 0x01010097, 0x01010098, 0x0101009a, 0x0101009b, 0x01010161, 0x01010162, 0x01010163, 0x01010164, 0x010103ac, 0x7f020096, 0x7f020122 }
int styleable TextAppearance_android_textSize 0
int styleable TextAppearance_android_typeface 1
int styleable TextAppearance_android_textStyle 2
int styleable TextAppearance_android_textColor 3
int styleable TextAppearance_android_textColorHint 4
int styleable TextAppearance_android_textColorLink 5
int styleable TextAppearance_android_shadowColor 6
int styleable TextAppearance_android_shadowDx 7
int styleable TextAppearance_android_shadowDy 8
int styleable TextAppearance_android_shadowRadius 9
int styleable TextAppearance_android_fontFamily 10
int styleable TextAppearance_fontFamily 11
int styleable TextAppearance_textAllCaps 12
int[] styleable TitlePageIndicator { 0x01010095, 0x01010098, 0x010100d4, 0x7f02004b, 0x7f02009f, 0x7f0200a0, 0x7f0200a1, 0x7f0200a2, 0x7f0200a3, 0x7f0200a4, 0x7f0200c2, 0x7f020103, 0x7f020104, 0x7f02013e, 0x7f020148 }
int styleable TitlePageIndicator_android_textSize 0
int styleable TitlePageIndicator_android_textColor 1
int styleable TitlePageIndicator_android_background 2
int styleable TitlePageIndicator_clipPadding 3
int styleable TitlePageIndicator_footerColor 4
int styleable TitlePageIndicator_footerIndicatorHeight 5
int styleable TitlePageIndicator_footerIndicatorStyle 6
int styleable TitlePageIndicator_footerIndicatorUnderlinePadding 7
int styleable TitlePageIndicator_footerLineHeight 8
int styleable TitlePageIndicator_footerPadding 9
int styleable TitlePageIndicator_linePosition 10
int styleable TitlePageIndicator_selectedBold 11
int styleable TitlePageIndicator_selectedColor 12
int styleable TitlePageIndicator_titlePadding 13
int styleable TitlePageIndicator_topPadding 14
int[] styleable Toolbar { 0x010100af, 0x01010140, 0x7f020041, 0x7f02004f, 0x7f020050, 0x7f02006b, 0x7f02006c, 0x7f02006d, 0x7f02006e, 0x7f02006f, 0x7f020070, 0x7f0200cf, 0x7f0200d0, 0x7f0200d3, 0x7f0200d7, 0x7f0200d8, 0x7f0200e6, 0x7f020119, 0x7f02011a, 0x7f02011b, 0x7f020137, 0x7f020138, 0x7f020139, 0x7f02013a, 0x7f02013b, 0x7f02013c, 0x7f02013d, 0x7f02013f, 0x7f020140 }
int styleable Toolbar_android_gravity 0
int styleable Toolbar_android_minHeight 1
int styleable Toolbar_buttonGravity 2
int styleable Toolbar_collapseContentDescription 3
int styleable Toolbar_collapseIcon 4
int styleable Toolbar_contentInsetEnd 5
int styleable Toolbar_contentInsetEndWithActions 6
int styleable Toolbar_contentInsetLeft 7
int styleable Toolbar_contentInsetRight 8
int styleable Toolbar_contentInsetStart 9
int styleable Toolbar_contentInsetStartWithNavigation 10
int styleable Toolbar_logo 11
int styleable Toolbar_logoDescription 12
int styleable Toolbar_maxButtonHeight 13
int styleable Toolbar_navigationContentDescription 14
int styleable Toolbar_navigationIcon 15
int styleable Toolbar_popupTheme 16
int styleable Toolbar_subtitle 17
int styleable Toolbar_subtitleTextAppearance 18
int styleable Toolbar_subtitleTextColor 19
int styleable Toolbar_title 20
int styleable Toolbar_titleMargin 21
int styleable Toolbar_titleMarginBottom 22
int styleable Toolbar_titleMarginEnd 23
int styleable Toolbar_titleMarginStart 24
int styleable Toolbar_titleMarginTop 25
int styleable Toolbar_titleMargins 26
int styleable Toolbar_titleTextAppearance 27
int styleable Toolbar_titleTextColor 28
int[] styleable UnderlinePageIndicator { 0x010100d4, 0x7f02008c, 0x7f02008d, 0x7f02008e, 0x7f020104 }
int styleable UnderlinePageIndicator_android_background 0
int styleable UnderlinePageIndicator_fadeDelay 1
int styleable UnderlinePageIndicator_fadeLength 2
int styleable UnderlinePageIndicator_fades 3
int styleable UnderlinePageIndicator_selectedColor 4
int[] styleable View { 0x01010000, 0x010100da, 0x7f0200dd, 0x7f0200de, 0x7f02012d }
int styleable View_android_theme 0
int styleable View_android_focusable 1
int styleable View_paddingEnd 2
int styleable View_paddingStart 3
int styleable View_theme 4
int[] styleable ViewBackgroundHelper { 0x010100d4, 0x7f020036, 0x7f020037 }
int styleable ViewBackgroundHelper_android_background 0
int styleable ViewBackgroundHelper_backgroundTint 1
int styleable ViewBackgroundHelper_backgroundTintMode 2
int[] styleable ViewPagerIndicator { 0x7f0200d1, 0x7f02014f, 0x7f020150, 0x7f020151, 0x7f020152, 0x7f020153, 0x7f020154, 0x7f020155 }
int styleable ViewPagerIndicator_lxyTabPageIndicatorStyle 0
int styleable ViewPagerIndicator_vpiCirclePageIndicatorStyle 1
int styleable ViewPagerIndicator_vpiIconPageIndicatorStyle 2
int styleable ViewPagerIndicator_vpiLinePageIndicatorStyle 3
int styleable ViewPagerIndicator_vpiTabPageIndicatorStyle 4
int styleable ViewPagerIndicator_vpiTabPageIndicatorStyle1 5
int styleable ViewPagerIndicator_vpiTitlePageIndicatorStyle 6
int styleable ViewPagerIndicator_vpiUnderlinePageIndicatorStyle 7
int[] styleable ViewStubCompat { 0x010100d0, 0x010100f2, 0x010100f3 }
int styleable ViewStubCompat_android_id 0
int styleable ViewStubCompat_android_layout 1
int styleable ViewStubCompat_android_inflatedId 2
int[] styleable board_column { 0x7f02005c }
int styleable board_column_column 0
int[] styleable com_facebook_like_view { 0x7f02005d, 0x7f02005f, 0x7f020060, 0x7f020064, 0x7f020065, 0x7f020067 }
int styleable com_facebook_like_view_com_facebook_auxiliary_view_position 0
int styleable com_facebook_like_view_com_facebook_foreground_color 1
int styleable com_facebook_like_view_com_facebook_horizontal_alignment 2
int styleable com_facebook_like_view_com_facebook_object_id 3
int styleable com_facebook_like_view_com_facebook_object_type 4
int styleable com_facebook_like_view_com_facebook_style 5
int[] styleable com_facebook_login_view { 0x7f02005e, 0x7f020062, 0x7f020063, 0x7f020068 }
int styleable com_facebook_login_view_com_facebook_confirm_logout 0
int styleable com_facebook_login_view_com_facebook_login_text 1
int styleable com_facebook_login_view_com_facebook_logout_text 2
int styleable com_facebook_login_view_com_facebook_tooltip_mode 3
int[] styleable com_facebook_profile_picture_view { 0x7f020061, 0x7f020066 }
int styleable com_facebook_profile_picture_view_com_facebook_is_cropped 0
int styleable com_facebook_profile_picture_view_com_facebook_preset_size 1
int xml file_paths 0x7f0f0000
int xml filepaths 0x7f0f0001
int xml gdt_file_path 0x7f0f0002