wpc
2018-11-26 aa82e9973b3d962c325d18ed9407b6b33c4fe554
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
int anim shake_umeng_socialize_cycle_5 0x7f040000
int anim shake_umeng_socialize_dlg_alpha 0x7f040001
int anim shake_umeng_socialize_dlg_scale 0x7f040002
int anim shake_umeng_socialize_edit_anim 0x7f040003
int anim shake_umeng_socialize_imageview_rotate 0x7f040004
int anim shake_umeng_socialize_scrshot_dlg 0x7f040005
int anim umeng_socialize_fade_in 0x7f040006
int anim umeng_socialize_fade_out 0x7f040007
int anim umeng_socialize_shareboard_animation_in 0x7f040008
int anim umeng_socialize_shareboard_animation_out 0x7f040009
int anim umeng_socialize_slide_in_from_bottom 0x7f04000a
int anim umeng_socialize_slide_out_from_bottom 0x7f04000b
int attr column 0x7f010002
int attr com_facebook_auxiliary_view_position 0x7f010007
int attr com_facebook_confirm_logout 0x7f010009
int attr com_facebook_foreground_color 0x7f010003
int attr com_facebook_horizontal_alignment 0x7f010008
int attr com_facebook_is_cropped 0x7f01000e
int attr com_facebook_login_text 0x7f01000a
int attr com_facebook_logout_text 0x7f01000b
int attr com_facebook_object_id 0x7f010004
int attr com_facebook_object_type 0x7f010005
int attr com_facebook_preset_size 0x7f01000d
int attr com_facebook_style 0x7f010006
int attr com_facebook_tooltip_mode 0x7f01000c
int attr playerloadingSize 0x7f010001
int attr title 0x7f010000
int color app_background 0x7f090000
int color black 0x7f090001
int color blue 0x7f090002
int color blue3 0x7f090003
int color com_facebook_blue 0x7f090004
int color com_facebook_button_background_color 0x7f090005
int color com_facebook_button_background_color_disabled 0x7f090006
int color com_facebook_button_background_color_pressed 0x7f090007
int color com_facebook_button_like_background_color_selected 0x7f090008
int color com_facebook_button_login_silver_background_color 0x7f090009
int color com_facebook_button_login_silver_background_color_pressed 0x7f09000a
int color com_facebook_button_send_background_color 0x7f09000b
int color com_facebook_button_send_background_color_pressed 0x7f09000c
int color com_facebook_likeboxcountview_border_color 0x7f09000d
int color com_facebook_likeboxcountview_text_color 0x7f09000e
int color com_facebook_likeview_text_color 0x7f09000f
int color com_facebook_share_button_text_color 0x7f090010
int color gray 0x7f090011
int color gray1 0x7f090012
int color player_controller_background 0x7f090013
int color player_controller_background_half_alpha 0x7f090014
int color player_gray 0x7f090015
int color red 0x7f090016
int color text_color_black 0x7f090017
int color text_color_blue 0x7f090018
int color text_color_blue_1 0x7f090019
int color text_color_gray_1 0x7f09001a
int color text_color_gray_2 0x7f09001b
int color text_color_gray_3 0x7f09001c
int color text_color_gray_5 0x7f09001d
int color text_color_gray_7 0x7f09001e
int color text_color_gray_9 0x7f09001f
int color text_color_red_1 0x7f090020
int color text_color_white 0x7f090021
int color text_color_white_d 0x7f090022
int color translucent_background 0x7f090023
int color transparent 0x7f090024
int color tudou_dialog_button 0x7f090025
int color tudou_dialog_line 0x7f090026
int color tudou_dialog_sub_title 0x7f090027
int color tudou_dialog_title 0x7f090028
int color umeng_background 0x7f090029
int color umeng_black 0x7f09002a
int color umeng_blue 0x7f09002b
int color umeng_divide 0x7f09002c
int color umeng_socialize_color_group 0x7f09002d
int color umeng_socialize_comments_bg 0x7f09002e
int color umeng_socialize_divider 0x7f09002f
int color umeng_socialize_edit_bg 0x7f090030
int color umeng_socialize_grid_divider_line 0x7f090031
int color umeng_socialize_list_item_bgcolor 0x7f090032
int color umeng_socialize_list_item_textcolor 0x7f090033
int color umeng_socialize_shareactivity 0x7f090034
int color umeng_socialize_shareactivitydefault 0x7f090035
int color umeng_socialize_text_friends_list 0x7f090036
int color umeng_socialize_text_share_content 0x7f090037
int color umeng_socialize_text_time 0x7f090038
int color umeng_socialize_text_title 0x7f090039
int color umeng_socialize_text_ucenter 0x7f09003a
int color umeng_socialize_ucenter_bg 0x7f09003b
int color umeng_socialize_web_bg 0x7f09003c
int color umeng_text_color 0x7f09003d
int color umeng_white 0x7f09003e
int color vk_black 0x7f09003f
int color vk_black_pressed 0x7f090040
int color vk_clear 0x7f090041
int color vk_color 0x7f090042
int color vk_grey_color 0x7f090043
int color vk_light_color 0x7f090044
int color vk_share_blue_color 0x7f090045
int color vk_share_gray_line 0x7f090046
int color vk_share_link_color 0x7f090047
int color vk_share_link_title_color 0x7f090048
int color vk_share_top_blue_color 0x7f090049
int color vk_white 0x7f09004a
int color white 0x7f09004b
int color yp_ad_background_color_youku 0x7f09004c
int color yp_youku_dialog_cancel_normal 0x7f09004d
int color yp_youku_dialog_cancel_pressed 0x7f09004e
int color yp_youku_dialog_ok_normal 0x7f09004f
int color yp_youku_dialog_ok_pressed 0x7f090050
int dimen actionbar_height 0x7f070023
int dimen actionbar_item_height 0x7f070024
int dimen actionbar_item_width 0x7f070025
int dimen alphabet_size 0x7f070026
int dimen body_padding_large 0x7f070027
int dimen body_padding_medium 0x7f070028
int dimen channel_main_tabindicator_height 0x7f070029
int dimen channeltab_dividerpadding 0x7f07002a
int dimen channeltab_txt_textsize 0x7f07002b
int dimen com_facebook_likeboxcountview_border_radius 0x7f07002c
int dimen com_facebook_likeboxcountview_border_width 0x7f07002d
int dimen com_facebook_likeboxcountview_caret_height 0x7f07002e
int dimen com_facebook_likeboxcountview_caret_width 0x7f07002f
int dimen com_facebook_likeboxcountview_text_padding 0x7f070030
int dimen com_facebook_likeboxcountview_text_size 0x7f070031
int dimen com_facebook_likeview_edge_padding 0x7f070032
int dimen com_facebook_likeview_internal_padding 0x7f070033
int dimen com_facebook_likeview_text_size 0x7f070034
int dimen com_facebook_profilepictureview_preset_size_large 0x7f070035
int dimen com_facebook_profilepictureview_preset_size_normal 0x7f070036
int dimen com_facebook_profilepictureview_preset_size_small 0x7f070037
int dimen com_facebook_share_button_compound_drawable_padding 0x7f070038
int dimen com_facebook_share_button_padding_bottom 0x7f070039
int dimen com_facebook_share_button_padding_left 0x7f07003a
int dimen com_facebook_share_button_padding_right 0x7f07003b
int dimen com_facebook_share_button_padding_top 0x7f07003c
int dimen com_facebook_share_button_text_size 0x7f07003d
int dimen com_facebook_tooltip_horizontal_padding 0x7f07003e
int dimen detail_play_content_padding_bottom 0x7f07003f
int dimen detail_play_content_padding_top 0x7f070040
int dimen detail_play_full_margin_right 0x7f070041
int dimen detail_play_progress_margin_left 0x7f070042
int dimen detail_play_progress_margin_right 0x7f070043
int dimen detail_play_title_height 0x7f070044
int dimen detail_play_title_margin_left_right 0x7f070045
int dimen dialog_arrow_marginLeft 0x7f070046
int dimen dialog_arrow_marginRight 0x7f070047
int dimen dialog_firstItemBtn_marginTop 0x7f070048
int dimen dialog_height 0x7f070049
int dimen dialog_item_marginH 0x7f07004a
int dimen dialog_item_marginV 0x7f07004b
int dimen dialog_radioBtn_dimen 0x7f07004c
int dimen dialog_title_height 0x7f07004d
int dimen dialog_width 0x7f07004e
int dimen download_grid_item_add_height 0x7f07004f
int dimen download_grid_item_image_padding_right 0x7f070050
int dimen fullscreen_pause_ad_container_height 0x7f070051
int dimen fullscreen_pause_ad_container_width 0x7f070052
int dimen fullscreen_player_episode_item_small_text_size 0x7f070053
int dimen fullscreen_player_episode_item_text_size 0x7f070054
int dimen fullscreen_player_setting_height 0x7f070055
int dimen fullscreen_player_setting_width 0x7f070056
int dimen fullscreen_punchbox_pause_ad_height 0x7f070057
int dimen fullscreen_punchbox_pause_ad_width 0x7f070058
int dimen fullscreen_youku_pause_ad_height 0x7f070059
int dimen fullscreen_youku_pause_ad_width 0x7f07005a
int dimen gridview_item_tv_height 0x7f07005b
int dimen gridview_pading_horizontal 0x7f07005c
int dimen gridview_pading_top 0x7f07005d
int dimen gridview_spacing 0x7f07005e
int dimen history_item_txt_first_textsize 0x7f07005f
int dimen history_item_txt_second_textsize 0x7f070060
int dimen history_text_point_margin_bottom 0x7f070061
int dimen homepage_item_title_first 0x7f070062
int dimen homepage_item_title_second 0x7f070063
int dimen myyouku_item_line_margin_left 0x7f070064
int dimen normal_dialog_btn_height 0x7f070065
int dimen normal_dialog_btn_marginBottom 0x7f070066
int dimen normal_dialog_btn_marginLeft 0x7f070067
int dimen normal_dialog_btn_marginTop 0x7f070068
int dimen normal_dialog_btn_width 0x7f070069
int dimen normal_dialog_message_marginTop 0x7f07006a
int dimen normal_dialog_width 0x7f07006b
int dimen paytip_close_height 0x7f070000
int dimen paytip_close_margin 0x7f070001
int dimen paytip_close_width 0x7f070002
int dimen paytip_full_arrow_width 0x7f070003
int dimen paytip_full_height 0x7f070004
int dimen paytip_full_margin_bottom 0x7f070005
int dimen paytip_full_textsize 0x7f070006
int dimen paytip_full_tip_width 0x7f070007
int dimen paytip_full_width 0x7f070008
int dimen paytip_small_margin_bottom 0x7f070009
int dimen paytip_small_textsize 0x7f07000a
int dimen paytip_small_tip_width 0x7f07000b
int dimen player_ad_count_text_padding 0x7f07006c
int dimen player_ad_count_text_padding_youku 0x7f07006d
int dimen player_ad_count_text_size 0x7f07006e
int dimen player_ad_count_text_size_youku 0x7f07000c
int dimen player_ad_count_width_youku 0x7f07006f
int dimen player_ad_count_wrap_widht_youku 0x7f070070
int dimen player_ad_go_full_margin_bottom 0x7f070071
int dimen player_ad_go_full_margin_right 0x7f070072
int dimen player_ad_go_full_padding 0x7f070073
int dimen player_ad_go_full_width_youku 0x7f07000d
int dimen player_ad_head_padding 0x7f070074
int dimen player_ad_more_height 0x7f070075
int dimen player_ad_more_height_youku 0x7f070076
int dimen player_ad_more_padding 0x7f070077
int dimen player_ad_more_padding_youku 0x7f07000e
int dimen player_ad_more_width_youku 0x7f07000f
int dimen player_ad_skip_width_youku 0x7f070010
int dimen player_ad_text_height_youku 0x7f070011
int dimen plugin_detail_play_pause_pandding 0x7f070078
int dimen shadow_height 0x7f070079
int dimen speaker_image_padding 0x7f07007a
int dimen speaker_image_size 0x7f07007b
int dimen subtitle_height 0x7f07007c
int dimen subtitle_margin 0x7f07007d
int dimen text_size_1 0x7f07007e
int dimen text_size_2 0x7f07007f
int dimen text_size_3 0x7f070080
int dimen text_size_4 0x7f070081
int dimen text_size_5 0x7f070082
int dimen text_size_6 0x7f070083
int dimen text_size_7 0x7f070084
int dimen text_size_8 0x7f070085
int dimen text_size_a 0x7f070086
int dimen text_size_b 0x7f070087
int dimen text_size_c 0x7f070088
int dimen text_size_d 0x7f070089
int dimen text_size_e 0x7f07008a
int dimen text_size_f 0x7f07008b
int dimen text_size_g 0x7f07008c
int dimen text_size_h 0x7f07008d
int dimen text_size_i 0x7f07008e
int dimen text_size_j 0x7f07008f
int dimen text_size_l 0x7f070090
int dimen text_size_large 0x7f070091
int dimen text_size_medium 0x7f070092
int dimen text_size_small 0x7f070093
int dimen text_size_xlarge 0x7f070094
int dimen titlebar 0x7f070095
int dimen toolbar_btn_txt_textsize 0x7f070096
int dimen tudou_dialog_height 0x7f070097
int dimen tudou_dialog_width 0x7f070098
int dimen umeng_socialize_pad_window_height 0x7f070099
int dimen umeng_socialize_pad_window_width 0x7f07009a
int dimen vendor_image_size 0x7f07009b
int dimen vk_share_dialog_padding 0x7f07009c
int dimen vk_share_dialog_padding_top 0x7f07009d
int dimen vk_share_dialog_view_padding 0x7f07009e
int dimen vk_share_link_top_margin 0x7f07009f
int dimen vk_share_send_text_size 0x7f0700a0
int dimen vk_share_settings_button_min_height 0x7f0700a1
int dimen vk_share_title_link_host_size 0x7f0700a2
int dimen vk_share_title_link_title_size 0x7f0700a3
int dimen vk_share_title_text_size 0x7f0700a4
int dimen vk_share_top_button_padding_left 0x7f0700a5
int dimen vk_share_top_button_padding_right 0x7f0700a6
int dimen vk_share_top_image_margin 0x7f0700a7
int dimen vk_share_top_line_margin 0x7f0700a8
int dimen vk_share_top_panel_height 0x7f0700a9
int dimen vk_share_top_title_margin 0x7f0700aa
int dimen vq_height 0x7f070012
int dimen vq_width 0x7f070013
int dimen wm_height 0x7f070014
int dimen wm_width 0x7f070015
int dimen yp_edittext_add_txt_linespacingextra 0x7f070016
int dimen yp_image_ad_close_margin_right 0x7f0700ab
int dimen yp_investigate_arrowright_width 0x7f070017
int dimen yp_investigate_close_width 0x7f070018
int dimen yp_investigate_height 0x7f070019
int dimen yp_investigate_margin_bottom 0x7f07001a
int dimen yp_investigate_text_container_width 0x7f07001b
int dimen yp_investigate_text_margin_left 0x7f07001c
int dimen yp_investigate_text_size 0x7f07001d
int dimen yp_normal_content_textsize 0x7f07001e
int dimen yp_youku_dialog_bottom_height 0x7f07001f
int dimen yp_youku_dialog_height 0x7f070020
int dimen yp_youku_dialog_txt_cancel_textsize 0x7f070021
int dimen yp_youku_dialog_width 0x7f070022
int drawable ad_bg_back 0x7f020000
int drawable ad_bg_full 0x7f020001
int drawable ad_close 0x7f020002
int drawable ad_icon_arrow 0x7f020003
int drawable ad_icon_fullscreen 0x7f020004
int drawable ad_icon_out 0x7f020005
int drawable ad_icon_volume 0x7f020006
int drawable ad_icon_volume_off 0x7f020007
int drawable bg_play 0x7f020008
int drawable bg_tudou_encrypt_dialog 0x7f020009
int drawable btnbg 0x7f02000a
int drawable com_facebook_button_background 0x7f02000b
int drawable com_facebook_button_icon 0x7f02000c
int drawable com_facebook_button_like_background 0x7f02000d
int drawable com_facebook_button_like_icon_selected 0x7f02000e
int drawable com_facebook_button_login_silver_background 0x7f02000f
int drawable com_facebook_button_send_background 0x7f020010
int drawable com_facebook_button_send_icon 0x7f020011
int drawable com_facebook_close 0x7f020012
int drawable com_facebook_profile_picture_blank_portrait 0x7f020013
int drawable com_facebook_profile_picture_blank_square 0x7f020014
int drawable com_facebook_tooltip_black_background 0x7f020015
int drawable com_facebook_tooltip_black_bottomnub 0x7f020016
int drawable com_facebook_tooltip_black_topnub 0x7f020017
int drawable com_facebook_tooltip_black_xout 0x7f020018
int drawable com_facebook_tooltip_blue_background 0x7f020019
int drawable com_facebook_tooltip_blue_bottomnub 0x7f02001a
int drawable com_facebook_tooltip_blue_topnub 0x7f02001b
int drawable com_facebook_tooltip_blue_xout 0x7f02001c
int drawable detail_play_btn_full_screen 0x7f02001d
int drawable dialog_background 0x7f02001e
int drawable dialog_button1 0x7f02001f
int drawable dialog_button2 0x7f020020
int drawable edit_view_bg 0x7f020021
int drawable editbg 0x7f020022
int drawable fenxiang 0x7f020023
int drawable full_icon_back 0x7f020024
int drawable full_icon_out 0x7f020025
int drawable gengxin 0x7f020026
int drawable hotpoint_img 0x7f020027
int drawable ic_ab_app 0x7f020028
int drawable ic_ab_done 0x7f020029
int drawable ic_launcher 0x7f02002a
int drawable icon_fullscreen 0x7f02002b
int drawable icon_pause 0x7f02002c
int drawable icon_play 0x7f02002d
int drawable icon_scrubbarslider 0x7f02002e
int drawable info_icon_1 0x7f02002f
int drawable loading_frame1 0x7f020030
int drawable loading_frame2 0x7f020031
int drawable loading_frame3 0x7f020032
int drawable loading_frame4 0x7f020033
int drawable messenger_bubble_large_blue 0x7f020034
int drawable messenger_bubble_large_white 0x7f020035
int drawable messenger_bubble_small_blue 0x7f020036
int drawable messenger_bubble_small_white 0x7f020037
int drawable messenger_button_blue_bg_round 0x7f020038
int drawable messenger_button_blue_bg_selector 0x7f020039
int drawable messenger_button_send_round_shadow 0x7f02003a
int drawable messenger_button_white_bg_round 0x7f02003b
int drawable messenger_button_white_bg_selector 0x7f02003c
int drawable nonedrawable 0x7f02003d
int drawable play_btn_pause_big 0x7f02003e
int drawable play_btn_pause_big_detail 0x7f02003f
int drawable play_btn_pause_big_detail_down 0x7f020040
int drawable play_btn_play_big 0x7f020041
int drawable play_btn_play_big_detail 0x7f020042
int drawable play_btn_play_big_detail_down 0x7f020043
int drawable play_btn_shrink 0x7f020044
int drawable play_over_next_episode 0x7f020045
int drawable play_over_replay 0x7f020046
int drawable play_title_bkg 0x7f020047
int drawable player_canvas 0x7f020048
int drawable player_logo_youku 0x7f020049
int drawable plugin_ad_gofull 0x7f02004a
int drawable plugin_ad_gofull_tudou 0x7f02004b
int drawable plugin_ad_gofull_youku 0x7f02004c
int drawable plugin_ad_gosmall 0x7f02004d
int drawable plugin_ad_gosmall_tudou 0x7f02004e
int drawable plugin_ad_gosmall_youku 0x7f02004f
int drawable plugin_ad_more_youku 0x7f020050
int drawable popwinselector 0x7f020051
int drawable quality_bkg 0x7f020052
int drawable seekbar_bkg 0x7f020053
int drawable seekbar_front_progress 0x7f020054
int drawable seekbar_second_progress 0x7f020055
int drawable selector_button 0x7f020056
int drawable shake_umeng_socialize_close 0x7f020057
int drawable shake_umeng_socialize_close_button_style 0x7f020058
int drawable shake_umeng_socialize_close_pressed 0x7f020059
int drawable shake_umeng_socialize_edittext_corner 0x7f02005a
int drawable shake_umeng_socialize_imgview_border 0x7f02005b
int drawable shake_umeng_socialize_preview_edit_corners_style 0x7f02005c
int drawable shake_umeng_socialize_shake_layout_corner 0x7f02005d
int drawable shake_umeng_socialize_share_btn_style 0x7f02005e
int drawable shape_update_left 0x7f02005f
int drawable shape_update_right 0x7f020060
int drawable tab_indicator_normal 0x7f0200f2
int drawable tab_indicator_pressed_color 0x7f0200f3
int drawable tudou_details_big_play_icon 0x7f020061
int drawable umeng_arrow 0x7f020062
int drawable umeng_back_icon 0x7f020063
int drawable umeng_socialize_action_back 0x7f020064
int drawable umeng_socialize_action_back_normal 0x7f020065
int drawable umeng_socialize_action_back_selected 0x7f020066
int drawable umeng_socialize_back_icon 0x7f020067
int drawable umeng_socialize_bind_bg 0x7f020068
int drawable umeng_socialize_btn_bg 0x7f020069
int drawable umeng_socialize_button_blue 0x7f02006a
int drawable umeng_socialize_button_grey 0x7f02006b
int drawable umeng_socialize_button_grey_blue 0x7f02006c
int drawable umeng_socialize_button_login 0x7f02006d
int drawable umeng_socialize_button_login_normal 0x7f02006e
int drawable umeng_socialize_button_login_pressed 0x7f02006f
int drawable umeng_socialize_button_red 0x7f020070
int drawable umeng_socialize_button_red_blue 0x7f020071
int drawable umeng_socialize_button_white 0x7f020072
int drawable umeng_socialize_button_white_blue 0x7f020073
int drawable umeng_socialize_checked 0x7f020074
int drawable umeng_socialize_comment_bg 0x7f020075
int drawable umeng_socialize_comment_icon 0x7f020076
int drawable umeng_socialize_comment_item_bg_shape 0x7f020077
int drawable umeng_socialize_comment_normal 0x7f020078
int drawable umeng_socialize_comment_selected 0x7f020079
int drawable umeng_socialize_commnet_header_bg 0x7f02007a
int drawable umeng_socialize_copy 0x7f02007b
int drawable umeng_socialize_copyurl 0x7f02007c
int drawable umeng_socialize_default_avatar 0x7f02007d
int drawable umeng_socialize_delete 0x7f02007e
int drawable umeng_socialize_ding 0x7f02007f
int drawable umeng_socialize_divider_line 0x7f020080
int drawable umeng_socialize_douban 0x7f020081
int drawable umeng_socialize_douban_off 0x7f020082
int drawable umeng_socialize_douban_on 0x7f020083
int drawable umeng_socialize_dropbox 0x7f020084
int drawable umeng_socialize_edit_bg 0x7f020085
int drawable umeng_socialize_evernote 0x7f020086
int drawable umeng_socialize_evernote_gray 0x7f020087
int drawable umeng_socialize_facebook 0x7f020088
int drawable umeng_socialize_facebook_close 0x7f020089
int drawable umeng_socialize_facebook_off 0x7f02008a
int drawable umeng_socialize_fav 0x7f02008b
int drawable umeng_socialize_fbmessage 0x7f02008c
int drawable umeng_socialize_fetch_image 0x7f02008d
int drawable umeng_socialize_fetch_location_disabled 0x7f02008e
int drawable umeng_socialize_flickr 0x7f02008f
int drawable umeng_socialize_flickr_gray 0x7f020090
int drawable umeng_socialize_follow_check 0x7f020091
int drawable umeng_socialize_follow_off 0x7f020092
int drawable umeng_socialize_follow_on 0x7f020093
int drawable umeng_socialize_foursquare 0x7f020094
int drawable umeng_socialize_foursquare_gray 0x7f020095
int drawable umeng_socialize_gmail 0x7f020096
int drawable umeng_socialize_gmail_off 0x7f020097
int drawable umeng_socialize_gmail_on 0x7f020098
int drawable umeng_socialize_google 0x7f020099
int drawable umeng_socialize_instagram 0x7f02009a
int drawable umeng_socialize_instagram_off 0x7f02009b
int drawable umeng_socialize_instagram_on 0x7f02009c
int drawable umeng_socialize_kakao 0x7f02009d
int drawable umeng_socialize_kakao_gray 0x7f02009e
int drawable umeng_socialize_laiwang 0x7f02009f
int drawable umeng_socialize_laiwang_dynamic 0x7f0200a0
int drawable umeng_socialize_laiwang_dynamic_gray 0x7f0200a1
int drawable umeng_socialize_light_bar_bg_pad 0x7f0200a2
int drawable umeng_socialize_location_grey 0x7f0200a3
int drawable umeng_socialize_location_ic 0x7f0200a4
int drawable umeng_socialize_location_mark 0x7f0200a5
int drawable umeng_socialize_location_off 0x7f0200a6
int drawable umeng_socialize_location_on 0x7f0200a7
int drawable umeng_socialize_menu_default 0x7f0200a8
int drawable umeng_socialize_more 0x7f0200a9
int drawable umeng_socialize_nav_bar_bg 0x7f0200aa
int drawable umeng_socialize_nav_bar_bg_pad 0x7f0200ab
int drawable umeng_socialize_oauth_check 0x7f0200ac
int drawable umeng_socialize_oauth_check_off 0x7f0200ad
int drawable umeng_socialize_oauth_check_on 0x7f0200ae
int drawable umeng_socialize_pinterest 0x7f0200af
int drawable umeng_socialize_pinterest_gray 0x7f0200b0
int drawable umeng_socialize_pocket 0x7f0200b1
int drawable umeng_socialize_pocket_gray 0x7f0200b2
int drawable umeng_socialize_pulltorefresh_arrow 0x7f0200b3
int drawable umeng_socialize_pv 0x7f0200b4
int drawable umeng_socialize_qq 0x7f0200b5
int drawable umeng_socialize_qq_off 0x7f0200b6
int drawable umeng_socialize_qq_on 0x7f0200b7
int drawable umeng_socialize_refersh 0x7f0200b8
int drawable umeng_socialize_search_icon 0x7f0200b9
int drawable umeng_socialize_shape_solid_black 0x7f0200ba
int drawable umeng_socialize_shape_solid_grey 0x7f0200bb
int drawable umeng_socialize_share_music 0x7f0200bc
int drawable umeng_socialize_share_pic 0x7f0200bd
int drawable umeng_socialize_share_to_button 0x7f0200be
int drawable umeng_socialize_share_transparent_corner 0x7f0200bf
int drawable umeng_socialize_share_video 0x7f0200c0
int drawable umeng_socialize_shareboard_item_background 0x7f0200c1
int drawable umeng_socialize_sidebar_normal 0x7f0200c2
int drawable umeng_socialize_sidebar_selected 0x7f0200c3
int drawable umeng_socialize_sidebar_selector 0x7f0200c4
int drawable umeng_socialize_sina 0x7f0200c5
int drawable umeng_socialize_sina_off 0x7f0200c6
int drawable umeng_socialize_sina_on 0x7f0200c7
int drawable umeng_socialize_sms_off 0x7f0200c8
int drawable umeng_socialize_sms_on 0x7f0200c9
int drawable umeng_socialize_switchimage_choose 0x7f0200ca
int drawable umeng_socialize_switchimage_unchoose 0x7f0200cb
int drawable umeng_socialize_title_back_bt 0x7f0200cc
int drawable umeng_socialize_title_back_bt_normal 0x7f0200cd
int drawable umeng_socialize_title_back_bt_selected 0x7f0200ce
int drawable umeng_socialize_title_right_bt 0x7f0200cf
int drawable umeng_socialize_title_right_bt_normal 0x7f0200d0
int drawable umeng_socialize_title_right_bt_selected 0x7f0200d1
int drawable umeng_socialize_title_tab_button_left 0x7f0200d2
int drawable umeng_socialize_title_tab_button_right 0x7f0200d3
int drawable umeng_socialize_title_tab_left_normal 0x7f0200d4
int drawable umeng_socialize_title_tab_left_pressed 0x7f0200d5
int drawable umeng_socialize_title_tab_right_normal 0x7f0200d6
int drawable umeng_socialize_title_tab_right_pressed 0x7f0200d7
int drawable umeng_socialize_wechat 0x7f0200d8
int drawable umeng_socialize_wechat_gray 0x7f0200d9
int drawable umeng_socialize_window_shadow_pad 0x7f0200da
int drawable umeng_socialize_x_button 0x7f0200db
int drawable umeng_socialize_ynote 0x7f0200dc
int drawable umeng_socialize_ynote_gray 0x7f0200dd
int drawable umsocial_defaultwatermark 0x7f0200de
int drawable update_bottom 0x7f0200df
int drawable vertical_icon_back 0x7f0200e0
int drawable vertical_logo 0x7f0200e1
int drawable vidqbg 0x7f0200e2
int drawable vidqtxt 0x7f0200e3
int drawable vk_clear_shape 0x7f0200e4
int drawable vk_gray_transparent_shape 0x7f0200e5
int drawable vk_icon 0x7f0200e6
int drawable vk_share_send_button_background 0x7f0200e7
int drawable volumn_bg 0x7f0200e8
int drawable volumn_front 0x7f0200e9
int drawable volumn_primary 0x7f0200ea
int drawable water 0x7f0200eb
int drawable yp_detail_icon_schedule_ball 0x7f0200ec
int drawable yp_mobile_loading 0x7f0200ed
int drawable yp_progress_holo_light 0x7f0200ee
int drawable yp_progressbarstyle 0x7f0200ef
int drawable yp_progressthumbstyle 0x7f0200f0
int drawable yp_tudou_encrypt_input_box 0x7f0200f1
int id RelativeLayout01 0x7f0b0029
int id ad_more 0x7f0b0085
int id ad_page_holder 0x7f0b007d
int id adapter_image 0x7f0b0012
int id adv_img_close_imgview 0x7f0b008a
int id adv_img_hint_textview 0x7f0b0089
int id adv_img_imgview 0x7f0b0088
int id attachmentLinkLayout 0x7f0b0064
int id auth_button 0x7f0b0014
int id automatic 0x7f0b000c
int id bottom 0x7f0b0006
int id box_count 0x7f0b0003
int id button 0x7f0b0004
int id captchaAnswer 0x7f0b0059
int id captcha_container 0x7f0b0056
int id center 0x7f0b0009
int id checkalipay 0x7f0b0039
int id checkbtn 0x7f0b0035
int id checkfb 0x7f0b003b
int id checkqq 0x7f0b003a
int id checksign 0x7f0b0036
int id checksina 0x7f0b0037
int id checkvk 0x7f0b003c
int id checkwx 0x7f0b0038
int id com_facebook_fragment_container 0x7f0b0016
int id com_facebook_login_activity_progress_bar 0x7f0b0017
int id content_view_per 0x7f0b002e
int id content_view_text1 0x7f0b002d
int id copyUrl 0x7f0b005b
int id cur_vidq 0x7f0b0079
int id current_time 0x7f0b0069
int id detail_play_load_name 0x7f0b0075
int id display_always 0x7f0b000d
int id divider 0x7f0b0015
int id editcheck 0x7f0b0034
int id fl_interact 0x7f0b0099
int id full_holder_inner 0x7f0b008b
int id getbtn 0x7f0b0022
int id go_retry 0x7f0b007c
int id gofullscreen 0x7f0b0086
int id header_back 0x7f0b007f
int id hotPointView 0x7f0b006b
int id ib_detail_play_control 0x7f0b0068
int id ib_detail_play_full 0x7f0b006d
int id ib_user_play 0x7f0b009c
int id imageView 0x7f0b0058
int id imagesContainer 0x7f0b0063
int id imagesScrollView 0x7f0b0062
int id img_ad_layout 0x7f0b0087
int id inline 0x7f0b0007
int id large 0x7f0b000f
int id layout_play_control 0x7f0b009b
int id layout_pop_top 0x7f0b0076
int id layout_title 0x7f0b009a
int id left 0x7f0b000a
int id li1 0x7f0b003d
int id linkHost 0x7f0b0066
int id linkTitle 0x7f0b0065
int id list 0x7f0b002f
int id ll_detail_container 0x7f0b0098
int id ll_detail_end 0x7f0b006f
int id ll_next_play 0x7f0b0071
int id ll_replay 0x7f0b0070
int id load_seekbar_container 0x7f0b009d
int id loading_info_seekbar 0x7f0b006e
int id loading_seekbar 0x7f0b0074
int id loading_tips 0x7f0b0073
int id logo_view 0x7f0b0094
int id my_ad_bottom 0x7f0b0084
int id my_ad_count 0x7f0b0081
int id my_ad_count_wrap 0x7f0b0080
int id my_ad_remove 0x7f0b0082
int id my_ad_volume 0x7f0b0083
int id name 0x7f0b0013
int id never_display 0x7f0b000e
int id newLoading_play 0x7f0b009f
int id noitfy_icon 0x7f0b0026
int id normal 0x7f0b0010
int id notify_linearLayout1 0x7f0b0024
int id notify_linearLayout2 0x7f0b0025
int id notify_linearLayout3 0x7f0b0027
int id notify_processbar 0x7f0b002c
int id notify_speed 0x7f0b002b
int id notify_state 0x7f0b002a
int id notify_text 0x7f0b0028
int id open_graph 0x7f0b0000
int id page 0x7f0b0001
int id password_edit 0x7f0b00a2
int id play_controller_header 0x7f0b007e
int id player_back 0x7f0b0096
int id player_holder_all 0x7f0b0097
int id player_view_all 0x7f0b0095
int id postContentLayout 0x7f0b0060
int id postSettingsLayout 0x7f0b0067
int id progress 0x7f0b005a
int id progressBar 0x7f0b0057
int id progress_bar 0x7f0b0043
int id progress_bar_parent 0x7f0b0049
int id result 0x7f0b0023
int id right 0x7f0b000b
int id rl_restart 0x7f0b007b
int id root 0x7f0b004a
int id sb_detail_play_progress 0x7f0b006a
int id seek_loading_bg 0x7f0b0072
int id sendButton 0x7f0b005f
int id sendButtonLayout 0x7f0b005d
int id sendProgress 0x7f0b005e
int id shareText 0x7f0b0061
int id small 0x7f0b0011
int id socialize_image_view 0x7f0b0030
int id socialize_text_view 0x7f0b0031
int id space_bottom 0x7f0b0091
int id space_left 0x7f0b008c
int id space_middle 0x7f0b008d
int id space_right 0x7f0b008e
int id space_top 0x7f0b008f
int id standard 0x7f0b0005
int id surface_black 0x7f0b0093
int id surface_view 0x7f0b0090
int id surface_view_debug 0x7f0b0092
int id title_back 0x7f0b0077
int id title_bar 0x7f0b001f
int id title_logo 0x7f0b007a
int id top 0x7f0b0008
int id topBarLayout 0x7f0b005c
int id total_time 0x7f0b006c
int id tudou_dialog_cancel 0x7f0b00a4
int id tudou_dialog_confirm 0x7f0b00a5
int id tudou_dialog_sub_title 0x7f0b00a1
int id tudou_dialog_title 0x7f0b00a0
int id tudou_vertical_line 0x7f0b00a3
int id tv_atonce_update 0x7f0b001e
int id tv_detail_play_title 0x7f0b0078
int id tv_dialog_content 0x7f0b001b
int id tv_dialog_noti_wifi 0x7f0b001c
int id tv_dialog_title 0x7f0b0018
int id tv_no_update 0x7f0b001d
int id tv_size 0x7f0b001a
int id tv_version 0x7f0b0019
int id umeng_back 0x7f0b0033
int id umeng_clear 0x7f0b0020
int id umeng_copy 0x7f0b0021
int id umeng_del 0x7f0b0052
int id umeng_image_edge 0x7f0b004f
int id umeng_menu_bottom 0x7f0b003e
int id umeng_menu_bottom2 0x7f0b0040
int id umeng_menu_center 0x7f0b003f
int id umeng_menu_center2 0x7f0b0041
int id umeng_share_btn 0x7f0b0045
int id umeng_share_icon 0x7f0b0050
int id umeng_socialize_follow 0x7f0b0046
int id umeng_socialize_follow_check 0x7f0b0047
int id umeng_socialize_share_bottom_area 0x7f0b004e
int id umeng_socialize_share_edittext 0x7f0b004c
int id umeng_socialize_share_titlebar 0x7f0b004b
int id umeng_socialize_share_word_num 0x7f0b004d
int id umeng_socialize_titlebar 0x7f0b0044
int id umeng_title 0x7f0b0032
int id umeng_web_title 0x7f0b0051
int id unknown 0x7f0b0002
int id view_restart 0x7f0b009e
int id vq0 0x7f0b0053
int id vq1 0x7f0b0054
int id vq2 0x7f0b0055
int id webView 0x7f0b0048
int id webview 0x7f0b0042
int layout app_authadapter 0x7f030000
int layout app_shareadapter 0x7f030001
int layout app_styleadapter 0x7f030002
int layout com_facebook_activity_layout 0x7f030003
int layout com_facebook_login_fragment 0x7f030004
int layout custom_dialog 0x7f030005
int layout infodetail 0x7f030006
int layout notify 0x7f030007
int layout notify_item 0x7f030008
int layout share_detail 0x7f030009
int layout socialize_share_menu_item 0x7f03000a
int layout titlebar 0x7f03000b
int layout umeng_auth 0x7f03000c
int layout umeng_check 0x7f03000d
int layout umeng_menu 0x7f03000e
int layout umeng_share 0x7f03000f
int layout umeng_socialize_activity_kakao_webview 0x7f030010
int layout umeng_socialize_oauth_dialog 0x7f030011
int layout umeng_socialize_share 0x7f030012
int layout vidqitem 0x7f030013
int layout vk_captcha_dialog 0x7f030014
int layout vk_open_auth_dialog 0x7f030015
int layout vk_share_dialog 0x7f030016
int layout yp_detail_bottom_play_control 0x7f030017
int layout yp_detail_loading_info_page 0x7f030018
int layout yp_detail_play_end_page 0x7f030019
int layout yp_detail_play_loading 0x7f03001a
int layout yp_detail_play_title 0x7f03001b
int layout yp_detail_retry 0x7f03001c
int layout yp_player_ad_youku 0x7f03001d
int layout yp_player_container 0x7f03001e
int layout yp_player_view 0x7f03001f
int layout yp_plugin_detail_play_interact 0x7f030020
int layout yp_tudou_encrypt_dialog 0x7f030021
int layout yp_youku_dialog_password_interact 0x7f030022
int raw aes 0x7f060000
int raw mediaplayer_configuration 0x7f060001
int raw shake_sound 0x7f060002
int string Player_error_f100 0x7f0a0000
int string Player_error_timeout 0x7f0a0001
int string WIFI_NOTI 0x7f0a0002
int string alert_dialog_cancel 0x7f0a0003
int string alert_dialog_ok 0x7f0a0004
int string app_name 0x7f0a0005
int string cancel 0x7f0a0006
int string choice_download_mode 0x7f0a0007
int string com_facebook_dialogloginactivity_ok_button 0x7f0a0008
int string com_facebook_image_download_unknown_error 0x7f0a0009
int string com_facebook_internet_permission_error_message 0x7f0a000a
int string com_facebook_internet_permission_error_title 0x7f0a000b
int string com_facebook_like_button_liked 0x7f0a000c
int string com_facebook_like_button_not_liked 0x7f0a000d
int string com_facebook_loading 0x7f0a000e
int string com_facebook_loginview_cancel_action 0x7f0a000f
int string com_facebook_loginview_log_in_button 0x7f0a0010
int string com_facebook_loginview_log_in_button_long 0x7f0a0011
int string com_facebook_loginview_log_out_action 0x7f0a0012
int string com_facebook_loginview_log_out_button 0x7f0a0013
int string com_facebook_loginview_logged_in_as 0x7f0a0014
int string com_facebook_loginview_logged_in_using_facebook 0x7f0a0015
int string com_facebook_requesterror_password_changed 0x7f0a0016
int string com_facebook_requesterror_permissions 0x7f0a0017
int string com_facebook_requesterror_reconnect 0x7f0a0018
int string com_facebook_send_button_text 0x7f0a0019
int string com_facebook_share_button_text 0x7f0a001a
int string com_facebook_tooltip_default 0x7f0a001b
int string complete 0x7f0a001c
int string confirm 0x7f0a001d
int string delete_my_tag_message 0x7f0a001e
int string delete_my_tag_title 0x7f0a001f
int string detail_cartoon 0x7f0a0020
int string detail_education 0x7f0a0021
int string detail_entertainment 0x7f0a0022
int string detail_memory 0x7f0a0023
int string detail_movie 0x7f0a0024
int string detail_music 0x7f0a0025
int string detail_special 0x7f0a0026
int string detail_tv 0x7f0a0027
int string detail_ugc 0x7f0a0028
int string detail_variety 0x7f0a0029
int string download 0x7f0a002a
int string download_add_failed 0x7f0a002b
int string download_add_more 0x7f0a002c
int string download_add_success 0x7f0a002d
int string download_cannot_ues_3g 0x7f0a002e
int string download_exist_finished 0x7f0a002f
int string download_exist_not_finished 0x7f0a0030
int string download_many_fail 0x7f0a0031
int string download_many_fail_no_space 0x7f0a0032
int string download_many_fail_timeout 0x7f0a0033
int string download_many_fail_unknown_error 0x7f0a0034
int string download_no_network 0x7f0a0035
int string download_no_sdcard 0x7f0a0036
int string download_no_space 0x7f0a0037
int string download_timeout 0x7f0a0038
int string download_unknown_error 0x7f0a0039
int string download_write_fail 0x7f0a003a
int string edite 0x7f0a003b
int string facebook_app_id 0x7f0a003c
int string flickr_content 0x7f0a003d
int string flickr_no_client 0x7f0a003e
int string flickr_no_content 0x7f0a003f
int string flickr_showword 0x7f0a0040
int string foursquare_content 0x7f0a0041
int string foursquare_no_client 0x7f0a0042
int string foursquare_showword 0x7f0a0043
int string high_pic 0x7f0a0044
int string kakao_content 0x7f0a0045
int string kakao_no_client 0x7f0a0046
int string kakao_no_content 0x7f0a0047
int string kakao_showword 0x7f0a0048
int string line_content 0x7f0a0049
int string line_no_client 0x7f0a004a
int string line_no_content 0x7f0a004b
int string line_showword 0x7f0a004c
int string linkedin_content 0x7f0a004d
int string linkedin_no_client 0x7f0a004e
int string linkedin_showword 0x7f0a004f
int string messenger_send_button_text 0x7f0a0050
int string no_copyright 0x7f0a0051
int string pause 0x7f0a0052
int string play_next 0x7f0a0053
int string player_error_dialog_password_required 0x7f0a0054
int string player_error_f101 0x7f0a0055
int string player_error_f102 0x7f0a0056
int string player_error_f105 0x7f0a0057
int string player_error_f105_see_others 0x7f0a0058
int string player_error_f106 0x7f0a0059
int string player_error_f107 0x7f0a005a
int string player_error_native 0x7f0a005b
int string player_error_no_network 0x7f0a005c
int string player_error_no_pay 0x7f0a005d
int string player_error_url_is_nul 0x7f0a005e
int string player_error_url_is_nul_tudou 0x7f0a005f
int string player_tip_loading 0x7f0a0060
int string player_tips_no_network 0x7f0a0061
int string player_tips_not_responding 0x7f0a0062
int string player_tips_use_3g 0x7f0a0063
int string player_webview_mail_app_not_found 0x7f0a0064
int string player_webview_refresh 0x7f0a0065
int string player_webview_tip 0x7f0a0066
int string player_webview_wrong_address 0x7f0a0067
int string playersdk_ad_descrip_play_youku 0x7f0a0068
int string playersdk_ad_descrip_second 0x7f0a0069
int string playersdk_ad_descrip_youku 0x7f0a006a
int string playersdk_ad_hint_tologin_cancel 0x7f0a006b
int string playersdk_ad_hint_tologin_des 0x7f0a006c
int string playersdk_ad_hint_tologin_ok 0x7f0a006d
int string playersdk_ad_skip 0x7f0a006e
int string pocket_content 0x7f0a006f
int string pocket_no_client 0x7f0a0070
int string pocket_showword 0x7f0a0071
int string pull_to_refresh_pull_label 0x7f0a0072
int string pull_to_refresh_refreshing_label 0x7f0a0073
int string pull_to_refresh_release_label 0x7f0a0074
int string pull_to_refresh_tap_label 0x7f0a0075
int string replay 0x7f0a0076
int string standard_pic 0x7f0a0077
int string super_pic 0x7f0a0078
int string tips_no_cache 0x7f0a0079
int string tips_no_network 0x7f0a007a
int string tips_not_responding 0x7f0a007b
int string tudou_dialog_sub_title 0x7f0a007c
int string tudou_dialog_title 0x7f0a007d
int string tumblr_content 0x7f0a007e
int string tumblr_no_client 0x7f0a007f
int string tumblr_no_content 0x7f0a0080
int string tumblr_showword 0x7f0a0081
int string umeng_auth_title 0x7f0a0082
int string umeng_check_alipay 0x7f0a0083
int string umeng_check_fb 0x7f0a0084
int string umeng_check_qq 0x7f0a0085
int string umeng_check_sign 0x7f0a0086
int string umeng_check_sina 0x7f0a0087
int string umeng_check_title 0x7f0a0088
int string umeng_check_vk 0x7f0a0089
int string umeng_check_wx 0x7f0a008a
int string umeng_choose_style 0x7f0a008b
int string umeng_delauth_title 0x7f0a008c
int string umeng_example_home_btn_plus 0x7f0a008d
int string umeng_getinfo_title 0x7f0a008e
int string umeng_home_title 0x7f0a008f
int string umeng_home_update 0x7f0a0090
int string umeng_menu_title 0x7f0a0091
int string umeng_share_title 0x7f0a0092
int string umeng_sharebutton_copy 0x7f0a0093
int string umeng_sharebutton_copyurl 0x7f0a0094
int string umeng_socialize_back 0x7f0a0095
int string umeng_socialize_cancel_btn_str 0x7f0a0096
int string umeng_socialize_comment 0x7f0a0097
int string umeng_socialize_comment_detail 0x7f0a0098
int string umeng_socialize_content_hint 0x7f0a0099
int string umeng_socialize_female 0x7f0a009a
int string umeng_socialize_friends 0x7f0a009b
int string umeng_socialize_img_des 0x7f0a009c
int string umeng_socialize_laiwang_default_content 0x7f0a009d
int string umeng_socialize_login 0x7f0a009e
int string umeng_socialize_login_qq 0x7f0a009f
int string umeng_socialize_mail 0x7f0a00a0
int string umeng_socialize_male 0x7f0a00a1
int string umeng_socialize_msg_hor 0x7f0a00a2
int string umeng_socialize_msg_min 0x7f0a00a3
int string umeng_socialize_msg_sec 0x7f0a00a4
int string umeng_socialize_near_At 0x7f0a00a5
int string umeng_socialize_network_break_alert 0x7f0a00a6
int string umeng_socialize_send 0x7f0a00a7
int string umeng_socialize_send_btn_str 0x7f0a00a8
int string umeng_socialize_share 0x7f0a00a9
int string umeng_socialize_share_content 0x7f0a00aa
int string umeng_socialize_sharetodouban 0x7f0a00ab
int string umeng_socialize_sharetolinkin 0x7f0a00ac
int string umeng_socialize_sharetorenren 0x7f0a00ad
int string umeng_socialize_sharetosina 0x7f0a00ae
int string umeng_socialize_sharetotencent 0x7f0a00af
int string umeng_socialize_sharetotwitter 0x7f0a00b0
int string umeng_socialize_sina 0x7f0a00b1
int string umeng_socialize_sms 0x7f0a00b2
int string umeng_socialize_text_add_custom_platform 0x7f0a00b3
int string umeng_socialize_text_alipay_key 0x7f0a00b4
int string umeng_socialize_text_authorize 0x7f0a00b5
int string umeng_socialize_text_choose_account 0x7f0a00b6
int string umeng_socialize_text_comment_hint 0x7f0a00b7
int string umeng_socialize_text_dingding_key 0x7f0a00b8
int string umeng_socialize_text_douban_key 0x7f0a00b9
int string umeng_socialize_text_dropbox_key 0x7f0a00ba
int string umeng_socialize_text_evernote_key 0x7f0a00bb
int string umeng_socialize_text_facebook_key 0x7f0a00bc
int string umeng_socialize_text_facebookmessager_key 0x7f0a00bd
int string umeng_socialize_text_flickr_key 0x7f0a00be
int string umeng_socialize_text_foursquare_key 0x7f0a00bf
int string umeng_socialize_text_friend_list 0x7f0a00c0
int string umeng_socialize_text_googleplus_key 0x7f0a00c1
int string umeng_socialize_text_instagram_key 0x7f0a00c2
int string umeng_socialize_text_kakao_key 0x7f0a00c3
int string umeng_socialize_text_laiwang_dynamic_key 0x7f0a00c4
int string umeng_socialize_text_laiwang_key 0x7f0a00c5
int string umeng_socialize_text_laiwangdynamic_key 0x7f0a00c6
int string umeng_socialize_text_line_key 0x7f0a00c7
int string umeng_socialize_text_linkedin_key 0x7f0a00c8
int string umeng_socialize_text_loading_message 0x7f0a00c9
int string umeng_socialize_text_login_fail 0x7f0a00ca
int string umeng_socialize_text_more_key 0x7f0a00cb
int string umeng_socialize_text_pinterest_key 0x7f0a00cc
int string umeng_socialize_text_pocket_key 0x7f0a00cd
int string umeng_socialize_text_qq_key 0x7f0a00ce
int string umeng_socialize_text_qq_zone_key 0x7f0a00cf
int string umeng_socialize_text_renren_key 0x7f0a00d0
int string umeng_socialize_text_sina_key 0x7f0a00d1
int string umeng_socialize_text_tencent_key 0x7f0a00d2
int string umeng_socialize_text_tencent_no_connection 0x7f0a00d3
int string umeng_socialize_text_tencent_no_install 0x7f0a00d4
int string umeng_socialize_text_tencent_oauth_login_fail 0x7f0a00d5
int string umeng_socialize_text_tencent_version_no_match 0x7f0a00d6
int string umeng_socialize_text_tumblr_key 0x7f0a00d7
int string umeng_socialize_text_twitter_key 0x7f0a00d8
int string umeng_socialize_text_ucenter 0x7f0a00d9
int string umeng_socialize_text_unauthorize 0x7f0a00da
int string umeng_socialize_text_visitor 0x7f0a00db
int string umeng_socialize_text_vkontakte_key 0x7f0a00dc
int string umeng_socialize_text_waitting 0x7f0a00dd
int string umeng_socialize_text_waitting_message 0x7f0a00de
int string umeng_socialize_text_waitting_qq 0x7f0a00df
int string umeng_socialize_text_waitting_qzone 0x7f0a00e0
int string umeng_socialize_text_waitting_redirect 0x7f0a00e1
int string umeng_socialize_text_waitting_share 0x7f0a00e2
int string umeng_socialize_text_waitting_weixin 0x7f0a00e3
int string umeng_socialize_text_waitting_weixin_circle 0x7f0a00e4
int string umeng_socialize_text_waitting_yixin 0x7f0a00e5
int string umeng_socialize_text_waitting_yixin_circle 0x7f0a00e6
int string umeng_socialize_text_weixin_circle_key 0x7f0a00e7
int string umeng_socialize_text_weixin_fav_key 0x7f0a00e8
int string umeng_socialize_text_weixin_key 0x7f0a00e9
int string umeng_socialize_text_wenxin_fav 0x7f0a00ea
int string umeng_socialize_text_whatsapp_key 0x7f0a00eb
int string umeng_socialize_text_ydnote_key 0x7f0a00ec
int string umeng_socialize_text_yixin_key 0x7f0a00ed
int string umeng_socialize_text_yixincircle_key 0x7f0a00ee
int string umeng_socialize_tip_blacklist 0x7f0a00ef
int string umeng_socialize_tip_loginfailed 0x7f0a00f0
int string umeng_socialize_ucenter_login_title_guide 0x7f0a00f1
int string umeng_socialize_ucenter_login_title_platform 0x7f0a00f2
int string umeng_update_content 0x7f0a00f3
int string update_linkedin_app_cancel 0x7f0a00f4
int string update_linkedin_app_download 0x7f0a00f5
int string update_linkedin_app_message 0x7f0a00f6
int string update_linkedin_app_title 0x7f0a00f7
int string vk_enter_captcha_text 0x7f0a00f8
int string vk_name 0x7f0a00f9
int string vk_new_message_text 0x7f0a00fa
int string vk_new_post_settings 0x7f0a00fb
int string vk_retry 0x7f0a00fc
int string vk_send 0x7f0a00fd
int string vk_share 0x7f0a00fe
int string wait 0x7f0a00ff
int string whatsapp_content 0x7f0a0100
int string whatsapp_no_client 0x7f0a0101
int string whatsapp_no_content 0x7f0a0102
int string whatsapp_showword 0x7f0a0103
int string ynote_content 0x7f0a0104
int string ynote_no_client 0x7f0a0105
int string ynote_no_content 0x7f0a0106
int string ynote_showword 0x7f0a0107
int style ACPLDialog 0x7f080001
int style AppBaseTheme 0x7f080000
int style AppTheme 0x7f080002
int style Dialog 0x7f080003
int style Dialog_Fullscreen 0x7f080004
int style Font1_blue_2bb5fc 0x7f080005
int style Font1_gray_333333 0x7f080006
int style Font1_white 0x7f080007
int style Font2_black 0x7f080008
int style Font2_blue_29abe2 0x7f080009
int style Font2_blue_2bb5fc 0x7f08000a
int style Font2_gray_333333 0x7f08000b
int style Font2_gray_666666 0x7f08000c
int style Font2_gray_999999 0x7f08000d
int style Font2_white 0x7f08000e
int style Font3_black 0x7f08000f
int style Font3_blue_29abe2 0x7f080010
int style Font3_gray_333333 0x7f080011
int style Font3_gray_666666 0x7f080012
int style Font3_gray_8c8c8c 0x7f080013
int style Font3_gray_999999 0x7f080014
int style Font3_gray_e2e2e2 0x7f080015
int style Font3_red_ff5a5a 0x7f080016
int style Font3_white 0x7f080017
int style Font4_black 0x7f080018
int style Font4_blue_2bb5fc 0x7f080019
int style Font4_gray_333333 0x7f08001a
int style Font4_gray_666666 0x7f08001b
int style Font4_gray_909fa8 0x7f08001c
int style Font4_gray_999999 0x7f08001d
int style Font4_white 0x7f08001e
int style Font5_black 0x7f08001f
int style Font5_blue_2bb5fc 0x7f080020
int style Font5_white 0x7f080021
int style Font5_white_80 0x7f080022
int style Font6_gray_666666 0x7f080023
int style Font6_white 0x7f080024
int style Font6_white_80 0x7f080025
int style Font7_gray_333333 0x7f080026
int style Font7_white 0x7f080027
int style Font8_blue_2bb5fc 0x7f080028
int style FontA 0x7f080029
int style FontB 0x7f08002a
int style FontC 0x7f08002b
int style FontD 0x7f08002c
int style FontE 0x7f08002d
int style FontF 0x7f08002e
int style FontG 0x7f08002f
int style FontH 0x7f080030
int style FontI 0x7f080031
int style FontJ 0x7f080032
int style FontL 0x7f080033
int style LoadingDialog 0x7f080034
int style MessengerButton 0x7f080035
int style MessengerButton_Blue 0x7f080036
int style MessengerButton_Blue_Large 0x7f080037
int style MessengerButton_Blue_Small 0x7f080038
int style MessengerButton_White 0x7f080039
int style MessengerButton_White_Large 0x7f08003a
int style MessengerButton_White_Small 0x7f08003b
int style MessengerButtonText 0x7f08003c
int style MessengerButtonText_Blue 0x7f08003d
int style MessengerButtonText_Blue_Large 0x7f08003e
int style MessengerButtonText_Blue_Small 0x7f08003f
int style MessengerButtonText_White 0x7f080040
int style MessengerButtonText_White_Large 0x7f080041
int style MessengerButtonText_White_Small 0x7f080042
int style NotificationText 0x7f080043
int style NotificationTitle 0x7f080044
int style Notitle_Fullscreen 0x7f080045
int style OverflowButton 0x7f080046
int style StyleBarTitle 0x7f080047
int style Theam_MyCustomDialogTheme 0x7f080048
int style Theme 0x7f080049
int style Theme_MyDialog 0x7f08004a
int style Theme_Translucent 0x7f08004b
int style Theme_UMDefault 0x7f08004c
int style Theme_UMDialog 0x7f08004d
int style VK_Transparent 0x7f08004e
int style VKAlertDialog 0x7f08004f
int style Widget 0x7f080050
int style YoukuDialog 0x7f080051
int style channel_rank_category_rank_text 0x7f080052
int style channelsubtitle 0x7f080053
int style com_facebook_button 0x7f080054
int style com_facebook_button_like 0x7f080055
int style com_facebook_button_send 0x7f080056
int style com_facebook_button_share 0x7f080057
int style com_facebook_loginview_default_style 0x7f080058
int style com_facebook_loginview_silver_style 0x7f080059
int style comment_code_default 0x7f08005a
int style detail_bottom_control 0x7f08005b
int style detail_cache_item_no 0x7f08005c
int style detail_cache_item_normal_text 0x7f08005d
int style detail_cache_item_selected_text 0x7f08005e
int style detail_comment_btn 0x7f08005f
int style detail_comment_btn_push 0x7f080060
int style detail_comment_input_hint 0x7f080061
int style detail_comment_item_user 0x7f080062
int style detail_comment_num 0x7f080063
int style detail_comment_submit 0x7f080064
int style detail_desc_item_no 0x7f080065
int style detail_desc_item_no_mine 0x7f080066
int style detail_intro_rate1 0x7f080067
int style detail_intro_rate2 0x7f080068
int style detail_intro_title 0x7f080069
int style detail_item_content 0x7f08006a
int style detail_play_load 0x7f08006b
int style detail_play_load_name 0x7f08006c
int style detail_play_title 0x7f08006d
int style detail_pop_control 0x7f08006e
int style detail_pop_item 0x7f08006f
int style detail_replay 0x7f080070
int style detail_title_item_no 0x7f080071
int style detail_titles 0x7f080072
int style dialogBtn 0x7f080073
int style dialogBtnFont 0x7f080074
int style dialogTitleFont 0x7f080075
int style dialog_btn_text 0x7f080076
int style dialog_fullscreen 0x7f080077
int style dialog_msg 0x7f080078
int style editTextActivityContent 0x7f080079
int style editTextActivityTitle 0x7f08007a
int style edit_btn_text 0x7f08007b
int style epiTextStyle 0x7f08007c
int style epiTextStyleBase 0x7f08007d
int style epiTextWithTitleStyle 0x7f08007e
int style episode_pager_text 0x7f08007f
int style filterFirstTitleFont 0x7f080080
int style filterItemFont 0x7f080081
int style filterItemSelectedFont 0x7f080082
int style filterSubTitleFont 0x7f080083
int style filterTitleFont 0x7f080084
int style gridStripeBottomFont 0x7f080085
int style gridStripeBottomFontNew 0x7f080086
int style gridStripeBottomFontRankFont 0x7f080087
int style gridStripeBottomRatingFont 0x7f080088
int style gridTitleFont 0x7f080089
int style historyPlayFont 0x7f08008a
int style history_item_txt_first 0x7f08008b
int style history_item_txt_second 0x7f08008c
int style historycached 0x7f08008d
int style historypoint 0x7f08008e
int style homeTitleFont 0x7f08008f
int style homegridTitleFont 0x7f080090
int style homegroupTitleFont 0x7f080091
int style homepage_item_title_first 0x7f080092
int style homepage_title_txt 0x7f080093
int style homepagegridremask 0x7f080094
int style homepagegridtext 0x7f080095
int style homepagegridtitle 0x7f080096
int style homepagetext 0x7f080097
int style homepagetitle 0x7f080098
int style lan_DialogWindowAnim 0x7f080099
int style login_btn 0x7f08009a
int style login_code_default 0x7f08009b
int style login_edit 0x7f08009c
int style login_edit_wrong 0x7f08009d
int style mycenter_Font 0x7f08009e
int style mycenter_cat_grid_item_text 0x7f08009f
int style mycenter_grid_item_count_font 0x7f0800a0
int style mycenter_grid_item_title_font 0x7f0800a1
int style mycenter_header_complete_text_Font 0x7f0800a2
int style mycenter_setting_cleartext_Font 0x7f0800a3
int style mycenter_setting_listtext_Font 0x7f0800a4
int style mycenter_setting_listtext_sub_Font 0x7f0800a5
int style mycenter_top_user_desc 0x7f0800a6
int style mycenter_top_user_name 0x7f0800a7
int style mycenter_upload_btn_Font 0x7f0800a8
int style mycenter_upload_detail_Font 0x7f0800a9
int style mycenter_upload_item_Font 0x7f0800aa
int style mycenter_upload_item_chinese_Font 0x7f0800ab
int style mycenter_upload_item_number_Font 0x7f0800ac
int style mycenter_upload_item_size_Font 0x7f0800ad
int style mycenter_upload_video_tip_Font 0x7f0800ae
int style mycenter_upload_video_uploadbtn_Font 0x7f0800af
int style notitleDialog 0x7f0800b0
int style player_setting_text 0x7f0800b1
int style player_setting_text_title 0x7f0800b2
int style player_total_time_text 0x7f0800b3
int style register_btn 0x7f0800b4
int style scrshot_dlg_style 0x7f0800b5
int style snapshotDialogWindowAnim 0x7f0800b6
int style stripeMiddleFont 0x7f0800b7
int style subTitleFont 0x7f0800b8
int style toastFont 0x7f0800b9
int style toolbar_btn_txt 0x7f0800ba
int style tooltip_bubble_text 0x7f0800bb
int style tudou_encrypt_dialog 0x7f0800bc
int style umeng_socialize_action_bar_item_im 0x7f0800bd
int style umeng_socialize_action_bar_item_tv 0x7f0800be
int style umeng_socialize_action_bar_itemlayout 0x7f0800bf
int style umeng_socialize_dialog_anim_fade 0x7f0800c0
int style umeng_socialize_dialog_animations 0x7f0800c1
int style umeng_socialize_divider 0x7f0800c2
int style umeng_socialize_edit_padding 0x7f0800c3
int style umeng_socialize_list_item 0x7f0800c4
int style umeng_socialize_popup_dialog 0x7f0800c5
int style umeng_socialize_popup_dialog_anim 0x7f0800c6
int style umeng_socialize_shareboard_animation 0x7f0800c7
int style wordpagechanneltitle 0x7f0800c8
int style wordpagegridtitle 0x7f0800c9
int style wordpageimagetitle 0x7f0800ca
int style wordpagerecommendtitle 0x7f0800cb
int style wordpagesubtitle 0x7f0800cc
int style wordpagesubtitle2 0x7f0800cd
int style ypYoukuDialog 0x7f0800ce
int style yp_normal_content 0x7f0800cf
int style yp_youku_dialog_txt_cancel 0x7f0800d0
int style yp_youku_dialog_txt_ok 0x7f0800d1
int[] styleable ActionBar { 0x7f010000 }
int styleable ActionBar_title 0
int[] styleable PlayerNewLoading { 0x7f010001 }
int styleable PlayerNewLoading_playerloadingSize 0
int[] styleable board_column { 0x7f010002 }
int styleable board_column_column 0
int[] styleable com_facebook_like_view { 0x7f010003, 0x7f010004, 0x7f010005, 0x7f010006, 0x7f010007, 0x7f010008 }
int styleable com_facebook_like_view_com_facebook_auxiliary_view_position 4
int styleable com_facebook_like_view_com_facebook_foreground_color 0
int styleable com_facebook_like_view_com_facebook_horizontal_alignment 5
int styleable com_facebook_like_view_com_facebook_object_id 1
int styleable com_facebook_like_view_com_facebook_object_type 2
int styleable com_facebook_like_view_com_facebook_style 3
int[] styleable com_facebook_login_view { 0x7f010009, 0x7f01000a, 0x7f01000b, 0x7f01000c }
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 { 0x7f01000d, 0x7f01000e }
int styleable com_facebook_profile_picture_view_com_facebook_is_cropped 1
int styleable com_facebook_profile_picture_view_com_facebook_preset_size 0
int xml filepaths 0x7f050000
int xml gdt_file_path 0x7f050001