-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path3925854453526195.gexf
More file actions
10079 lines (10079 loc) · 524 KB
/
3925854453526195.gexf
File metadata and controls
10079 lines (10079 loc) · 524 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<?xml version='1.0' encoding='utf-8'?>
<gexf xmlns:viz="http://www.gexf.net/1.2draft/viz" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://www.gephi.org/gexf/1.2draft" xmlns:ns0="xsi" version="1.2" ns0:schemaLocation="http://www.gephi.org/gexf/1.1draft http://gephi.org/gexf/1.2draft.xsd">
<meta lastmodified="2016-10-01">
<creator>Huang</creator>
<description>A web network</description>
</meta>
<graph defaultedgetype="directed" label="A web network" mode="dynamic" timeformat="dateTime">
<attributes class="node" mode="static">
<attribute id="0" title="m_id" type="string"/>
<attribute id="1" title="content" type="string"/>
<attribute id="2" title="u_id" type="string"/>
<attribute id="3" title="m_time" type="string"/>
<attribute id="4" title="m_timestamp" type="string"/>
</attributes>
<nodes>
<node id="3925854453526195" label="label299">
<attvalues>
<attvalue for="0" value="3925854453526195"/>
<attvalue for="1" value="【电影青茫首发毕业推广曲《#不说再见#》】 又是一年毕业季,这一次我们不说再见。因为茫茫人海,只要想念,就会相见。好妹妹乐队@秦昊Jeff @张小厚Terry 在我们@青茫班 的同学当中也是毫无违和感嘛~ #电影谁的青春不迷茫# L秒拍视频[心][偷乐]"/>
<attvalue for="2" value="5390053707"/>
<attvalue for="3" value="2015-12-30T20:55:00.000+0800.000+0800"/>
<attvalue for="4" value="1451480102000"/>
</attvalues>
</node>
<node id="3925854855431389" label="label685">
<attvalues>
<attvalue for="0" value="3925854855431389"/>
<attvalue for="1" value="超好听的#不说再见##谁的青春不迷茫定档429#"/>
<attvalue for="2" value="5604232206"/>
<attvalue for="3" value="2015-12-30T20:56:00.000+0800.000+0800"/>
<attvalue for="4" value="1451480199000"/>
</attvalues>
</node>
<node id="3925855128739494" label="label768">
<attvalues>
<attvalue for="0" value="3925855128739494"/>
<attvalue for="1" value="好听"/>
<attvalue for="2" value="2169256157"/>
<attvalue for="3" value="2015-12-30T20:57:00.000+0800.000+0800"/>
<attvalue for="4" value="1451480263000"/>
</attvalues>
</node>
<node id="3925855224795531" label="label105">
<attvalues>
<attvalue for="0" value="3925855224795531"/>
<attvalue for="1" value="#电影谁的青春不迷茫# #不说再见# 课桌上写着答案,考试题和喜欢谁的答案[心][心][心]"/>
<attvalue for="2" value="1968150737"/>
<attvalue for="3" value="2015-12-30T20:58:00.000+0800.000+0800"/>
<attvalue for="4" value="1451480286000"/>
</attvalues>
</node>
<node id="3925855418389855" label="label561">
<attvalues>
<attvalue for="0" value="3925855418389855"/>
<attvalue for="1" value=" #不说再见##电影谁的青春不迷茫# 一起约429电影院走起//@宋唯Vicky:#电影谁的青春不迷茫# #不说再见# 我相信我们还会再见 我相信我会一直想念青茫班 We are family[爱你][心][心]"/>
<attvalue for="2" value="5813701581"/>
<attvalue for="3" value="2015-12-30T20:58:00.000+0800.000+0800"/>
<attvalue for="4" value="1451480332000"/>
</attvalues>
</node>
<node id="3925855451986050" label="label866">
<attvalues>
<attvalue for="0" value="3925855451986050"/>
<attvalue for="1" value="转发微博"/>
<attvalue for="2" value="5341750706"/>
<attvalue for="3" value="2015-12-30T20:59:00.000+0800.000+0800"/>
<attvalue for="4" value="1451480341000"/>
</attvalues>
</node>
<node id="3925855467896078" label="label40">
<attvalues>
<attvalue for="0" value="3925855467896078"/>
<attvalue for="1" value="#电影谁的青春不迷茫# #不说再见# 其实我们都一样"/>
<attvalue for="2" value="5046992261"/>
<attvalue for="3" value="2015-12-30T20:59:00.000+0800.000+0800"/>
<attvalue for="4" value="1451480345000"/>
</attvalues>
</node>
<node id="3925855648588545" label="label316">
<attvalues>
<attvalue for="0" value="3925855648588545"/>
<attvalue for="1" value="#不说再见# #电影谁的青春不迷茫# "/>
<attvalue for="2" value="5719962213"/>
<attvalue for="3" value="2015-12-30T20:59:00.000+0800.000+0800"/>
<attvalue for="4" value="1451480388000"/>
</attvalues>
</node>
<node id="3925855648667024" label="label60">
<attvalues>
<attvalue for="0" value="3925855648667024"/>
<attvalue for="1" value="#不说再见##电影谁的青春不迷茫#其实我们都一样"/>
<attvalue for="2" value="5780922449"/>
<attvalue for="3" value="2015-12-30T20:59:00.000+0800.000+0800"/>
<attvalue for="4" value="1451480388000"/>
</attvalues>
</node>
<node id="3925855665386029" label="label398">
<attvalues>
<attvalue for="0" value="3925855665386029"/>
<attvalue for="1" value="转发微博"/>
<attvalue for="2" value="2416001380"/>
<attvalue for="3" value="2015-12-30T20:59:00.000+0800.000+0800"/>
<attvalue for="4" value="1451480392000"/>
</attvalues>
</node>
<node id="3925855786933542" label="label401">
<attvalues>
<attvalue for="0" value="3925855786933542"/>
<attvalue for="1" value=" #不说再见##电影谁的青春不迷茫# 越是沉重,越要飞翔//@兰家旭啊:#电影谁的青春不迷茫# #不说再见# 其实我们都一样"/>
<attvalue for="2" value="5813701581"/>
<attvalue for="3" value="2015-12-30T21:00:00.000+0800.000+0800"/>
<attvalue for="4" value="1451480420000"/>
</attvalues>
</node>
<node id="3925855799538687" label="label170">
<attvalues>
<attvalue for="0" value="3925855799538687"/>
<attvalue for="1" value="睡觉狂魔#不说再见#//@兰家旭啊:#电影谁的青春不迷茫# #不说再见# 其实我们都一样[抠鼻屎]"/>
<attvalue for="2" value="5786878296"/>
<attvalue for="3" value="2015-12-30T21:00:00.000+0800.000+0800"/>
<attvalue for="4" value="1451480423000"/>
</attvalues>
</node>
<node id="3925855833546300" label="label511">
<attvalues>
<attvalue for="0" value="3925855833546300"/>
<attvalue for="1" value="#电影谁的青春不迷茫定档429# #谁的青春不迷茫# #不说再见# 不说再见![给力]"/>
<attvalue for="2" value="2637272525"/>
<attvalue for="3" value="2015-12-30T21:00:00.000+0800.000+0800"/>
<attvalue for="4" value="1451480432000"/>
</attvalues>
</node>
<node id="3925855850352156" label="label321">
<attvalues>
<attvalue for="0" value="3925855850352156"/>
<attvalue for="1" value="转发微博"/>
<attvalue for="2" value="5268576938"/>
<attvalue for="3" value="2015-12-30T21:00:00.000+0800.000+0800"/>
<attvalue for="4" value="1451480435000"/>
</attvalues>
</node>
<node id="3925855934140388" label="label362">
<attvalues>
<attvalue for="0" value="3925855934140388"/>
<attvalue for="1" value="[羞嗒嗒][羞嗒嗒][羞嗒嗒][羞嗒嗒]"/>
<attvalue for="2" value="5055537038"/>
<attvalue for="3" value="2015-12-30T21:00:00.000+0800.000+0800"/>
<attvalue for="4" value="1451480456000"/>
</attvalues>
</node>
<node id="3925855942097606" label="label698">
<attvalues>
<attvalue for="0" value="3925855942097606"/>
<attvalue for="1" value="好感动!好有才的同哥!@电影谁的青春不迷茫 @刘同 @青茫班 @新浪娱乐 "/>
<attvalue for="2" value="5480922421"/>
<attvalue for="3" value="2015-12-30T21:00:00.000+0800.000+0800"/>
<attvalue for="4" value="1451480457000"/>
</attvalues>
</node>
<node id="3925855954340934" label="label855">
<attvalues>
<attvalue for="0" value="3925855954340934"/>
<attvalue for="1" value="不说再见。"/>
<attvalue for="2" value="2881641644"/>
<attvalue for="3" value="2015-12-30T21:01:00.000+0800.000+0800"/>
<attvalue for="4" value="1451480461000"/>
</attvalues>
</node>
<node id="3925856001122272" label="label391">
<attvalues>
<attvalue for="0" value="3925856001122272"/>
<attvalue for="1" value="#不说再见##电影谁的青春不迷茫#感恩感谢//@宋唯Vicky:#电影谁的青春不迷茫# #不说再见# 我相信我们还会再见 我相信我会一直想念青茫班 We are family[心][心]"/>
<attvalue for="2" value="5780922449"/>
<attvalue for="3" value="2015-12-30T21:01:00.000+0800.000+0800"/>
<attvalue for="4" value="1451480471000"/>
</attvalues>
</node>
<node id="3925856088743659" label="label616">
<attvalues>
<attvalue for="0" value="3925856088743659"/>
<attvalue for="1" value="其实我们都一样//@兰家旭啊:#电影谁的青春不迷茫# #不说再见# 其实我们都一样"/>
<attvalue for="2" value="5634376091"/>
<attvalue for="3" value="2015-12-30T21:01:00.000+0800.000+0800"/>
<attvalue for="4" value="1451480493000"/>
</attvalues>
</node>
<node id="3925856109479448" label="label175">
<attvalues>
<attvalue for="0" value="3925856109479448"/>
<attvalue for="1" value="今天我要刷屏#不说再见# #电影谁的青春不迷茫# [泪][泪][泪][泪]"/>
<attvalue for="2" value="2117829701"/>
<attvalue for="3" value="2015-12-30T21:01:00.000+0800.000+0800"/>
<attvalue for="4" value="1451480498000"/>
</attvalues>
</node>
<node id="3925856214457151" label="label966">
<attvalues>
<attvalue for="0" value="3925856214457151"/>
<attvalue for="1" value="转发微博"/>
<attvalue for="2" value="5541912681"/>
<attvalue for="3" value="2015-12-30T21:02:00.000+0800.000+0800"/>
<attvalue for="4" value="1451480523000"/>
</attvalues>
</node>
<node id="3925856269650446" label="label296">
<attvalues>
<attvalue for="0" value="3925856269650446"/>
<attvalue for="1" value="好妹妹的#不说再见#真的好听到爆!@秦昊Jeff @张小厚Terry"/>
<attvalue for="2" value="2304770144"/>
<attvalue for="3" value="2015-12-30T21:02:00.000+0800.000+0800"/>
<attvalue for="4" value="1451480534000"/>
</attvalues>
</node>
<node id="3925856311399080" label="label654">
<attvalues>
<attvalue for="0" value="3925856311399080"/>
<attvalue for="1" value="#不说再见##谁的青春不迷茫定档429#其实我们都一样。加油哦//@兰家旭啊:#电影谁的青春不迷茫# #不说再见# 其实我们都一样"/>
<attvalue for="2" value="5604232206"/>
<attvalue for="3" value="2015-12-30T21:02:00.000+0800.000+0800"/>
<attvalue for="4" value="1451480545000"/>
</attvalues>
</node>
<node id="3925856361167596" label="label29">
<attvalues>
<attvalue for="0" value="3925856361167596"/>
<attvalue for="1" value="毕业了,却不想说再见。"/>
<attvalue for="2" value="3017967691"/>
<attvalue for="3" value="2015-12-30T21:02:00.000+0800.000+0800"/>
<attvalue for="4" value="1451480558000"/>
</attvalues>
</node>
<node id="3925856361168024" label="label482">
<attvalues>
<attvalue for="0" value="3925856361168024"/>
<attvalue for="1" value="我喜欢[爱你][爱你][爱你][爱你][爱你][爱你][爱你][爱你][爱你][爱你][爱你][爱你][爱你][爱你][爱你][爱你][爱你][爱你][爱你][爱你][爱你][爱你]"/>
<attvalue for="2" value="3192369505"/>
<attvalue for="3" value="2015-12-30T21:02:00.000+0800.000+0800"/>
<attvalue for="4" value="1451480558000"/>
</attvalues>
</node>
<node id="3925856403504369" label="label555">
<attvalues>
<attvalue for="0" value="3925856403504369"/>
<attvalue for="1" value="#电影谁的青春不迷茫# 我相信我们都会很好 就像当初我们遇见那样 #不说再见# [心]"/>
<attvalue for="2" value="5758615117"/>
<attvalue for="3" value="2015-12-30T21:02:00.000+0800.000+0800"/>
<attvalue for="4" value="1451480567000"/>
</attvalues>
</node>
<node id="3925856416649552" label="label774">
<attvalues>
<attvalue for="0" value="3925856416649552"/>
<attvalue for="1" value="#不说再见##电影谁的青春不迷茫# 刷刷刷 //@王康kkkk:今天我要刷屏#不说再见# #电影谁的青春不迷茫# [羞嗒嗒][泪][泪][泪][泪]"/>
<attvalue for="2" value="5813701581"/>
<attvalue for="3" value="2015-12-30T21:02:00.000+0800.000+0800"/>
<attvalue for="4" value="1451480570000"/>
</attvalues>
</node>
<node id="3925856500122537" label="label350">
<attvalues>
<attvalue for="0" value="3925856500122537"/>
<attvalue for="1" value="#电影谁的青春不迷茫# #不说再见# //@王康kkkk:今天我要刷屏#不说再见# #电影谁的青春不迷茫# [泪][泪][泪][泪][泪][泪]"/>
<attvalue for="2" value="3930503551"/>
<attvalue for="3" value="2015-12-30T21:03:00.000+0800.000+0800"/>
<attvalue for="4" value="1451480591000"/>
</attvalues>
</node>
<node id="3925856554720604" label="label209">
<attvalues>
<attvalue for="0" value="3925856554720604"/>
<attvalue for="1" value="好想再回到高中时代"/>
<attvalue for="2" value="3100104001"/>
<attvalue for="3" value="2015-12-30T21:03:00.000+0800.000+0800"/>
<attvalue for="4" value="1451480604000"/>
</attvalues>
</node>
<node id="3925856630314249" label="label814">
<attvalues>
<attvalue for="0" value="3925856630314249"/>
<attvalue for="1" value="谁的青春不迷茫"/>
<attvalue for="2" value="3884902146"/>
<attvalue for="3" value="2015-12-30T21:03:00.000+0800.000+0800"/>
<attvalue for="4" value="1451480622000"/>
</attvalues>
</node>
<node id="3925856663934236" label="label845">
<attvalues>
<attvalue for="0" value="3925856663934236"/>
<attvalue for="1" value="2016 不说再见 因为我们还会再见"/>
<attvalue for="2" value="2973144231"/>
<attvalue for="3" value="2015-12-30T21:03:00.000+0800.000+0800"/>
<attvalue for="4" value="1451480630000"/>
</attvalues>
</node>
<node id="3925856734703584" label="label795">
<attvalues>
<attvalue for="0" value="3925856734703584"/>
<attvalue for="1" value="4.29期待。。"/>
<attvalue for="2" value="2621644277"/>
<attvalue for="3" value="2015-12-30T21:04:00.000+0800.000+0800"/>
<attvalue for="4" value="1451480647000"/>
</attvalues>
</node>
<node id="3925856835864765" label="label545">
<attvalues>
<attvalue for="0" value="3925856835864765"/>
<attvalue for="1" value=" //@王康kkkk:今天我要刷屏#不说再见# #电影谁的青春不迷茫# [泪][泪][泪][泪]"/>
<attvalue for="2" value="1865001352"/>
<attvalue for="3" value="2015-12-30T21:04:00.000+0800.000+0800"/>
<attvalue for="4" value="1451480671000"/>
</attvalues>
</node>
<node id="3925856843515419" label="label163">
<attvalues>
<attvalue for="0" value="3925856843515419"/>
<attvalue for="1" value="#电影谁的青春不迷茫# 又见大马猴歌曲很好听,看了mv忍不住笑了[笑cry][笑cry]"/>
<attvalue for="2" value="5152472893"/>
<attvalue for="3" value="2015-12-30T21:04:00.000+0800.000+0800"/>
<attvalue for="4" value="1451480673000"/>
</attvalues>
</node>
<node id="3925856890064381" label="label333">
<attvalues>
<attvalue for="0" value="3925856890064381"/>
<attvalue for="1" value="#1224恶棍天使# 世间冰冷,笑是篝火。相约恶棍天使,不说再见做回开心的自己[爱你][心]"/>
<attvalue for="2" value="3634091785"/>
<attvalue for="3" value="2015-12-30T21:04:00.000+0800.000+0800"/>
<attvalue for="4" value="1451480684000"/>
</attvalues>
</node>
<node id="3925856969485240" label="label766">
<attvalues>
<attvalue for="0" value="3925856969485240"/>
<attvalue for="1" value="#不说再见# #谁的青春不迷茫# @王康kkkk 女神追到啦呢!请吃饭啦啦啦啦啦[不好意思][微笑][阴险][阴险][阴险]"/>
<attvalue for="2" value="5780516866"/>
<attvalue for="3" value="2015-12-30T21:05:00.000+0800.000+0800"/>
<attvalue for="4" value="1451480703000"/>
</attvalues>
</node>
<node id="3925857011577371" label="label151">
<attvalues>
<attvalue for="0" value="3925857011577371"/>
<attvalue for="1" value="转发微博"/>
<attvalue for="2" value="5245848776"/>
<attvalue for="3" value="2015-12-30T21:05:00.000+0800.000+0800"/>
<attvalue for="4" value="1451480712000"/>
</attvalues>
</node>
<node id="3925857028275458" label="label655">
<attvalues>
<attvalue for="0" value="3925857028275458"/>
<attvalue for="1" value="我相信我们都会很好 就像我们当初遇见的那样"/>
<attvalue for="2" value="1770315337"/>
<attvalue for="3" value="2015-12-30T21:05:00.000+0800.000+0800"/>
<attvalue for="4" value="1451480717000"/>
</attvalues>
</node>
<node id="3925857033005480" label="label169">
<attvalues>
<attvalue for="0" value="3925857033005480"/>
<attvalue for="1" value="#不说再见# 送给2016毕业的你们以及还能重聚的我们……[许愿][许愿][许愿]"/>
<attvalue for="2" value="3165864513"/>
<attvalue for="3" value="2015-12-30T21:05:00.000+0800.000+0800"/>
<attvalue for="4" value="1451480718000"/>
</attvalues>
</node>
<node id="3925857149783731" label="label780">
<attvalues>
<attvalue for="0" value="3925857149783731"/>
<attvalue for="1" value="#电影谁的青春不迷茫##不说再见#因为茫茫人海,只要想念,就会相见。[心]"/>
<attvalue for="2" value="5780541541"/>
<attvalue for="3" value="2015-12-30T21:05:00.000+0800.000+0800"/>
<attvalue for="4" value="1451480746000"/>
</attvalues>
</node>
<node id="3925857196793515" label="label526">
<attvalues>
<attvalue for="0" value="3925857196793515"/>
<attvalue for="1" value="转发微博"/>
<attvalue for="2" value="5589340195"/>
<attvalue for="3" value="2015-12-30T21:05:00.000+0800.000+0800"/>
<attvalue for="4" value="1451480757000"/>
</attvalues>
</node>
<node id="3925857242156279" label="label181">
<attvalues>
<attvalue for="0" value="3925857242156279"/>
<attvalue for="1" value=" //@恶棍天使:#1224恶棍天使# 世间冰冷,笑是篝火。相约恶棍天使,不说再见做回开心的自己[爱你][心]"/>
<attvalue for="2" value="5519322268"/>
<attvalue for="3" value="2015-12-30T21:06:00.000+0800.000+0800"/>
<attvalue for="4" value="1451480767000"/>
</attvalues>
</node>
<node id="3925857259530982" label="label562">
<attvalues>
<attvalue for="0" value="3925857259530982"/>
<attvalue for="1" value="#电影谁的青春不迷茫# 毕业之后再也没有过同桌这种生物 #不说再见# [悲伤]"/>
<attvalue for="2" value="5171897725"/>
<attvalue for="3" value="2015-12-30T21:06:00.000+0800.000+0800"/>
<attvalue for="4" value="1451480771000"/>
</attvalues>
</node>
<node id="3925857288082266" label="label415">
<attvalues>
<attvalue for="0" value="3925857288082266"/>
<attvalue for="1" value="//@恶棍天使:#1224恶棍天使# 世间冰冷,笑是篝火。相约恶棍天使,不说再见做回开心的自己[不好意思][爱你][心]"/>
<attvalue for="2" value="5322197439"/>
<attvalue for="3" value="2015-12-30T21:06:00.000+0800.000+0800"/>
<attvalue for="4" value="1451480778000"/>
</attvalues>
</node>
<node id="3925857405775067" label="label521">
<attvalues>
<attvalue for="0" value="3925857405775067"/>
<attvalue for="1" value="青茫君来了,#电影沙漏# 还会远嘛~[鼓掌][鼓掌]"/>
<attvalue for="2" value="5746395838"/>
<attvalue for="3" value="2015-12-30T21:06:00.000+0800.000+0800"/>
<attvalue for="4" value="1451480807000"/>
</attvalues>
</node>
<node id="3925857430858405" label="label390">
<attvalues>
<attvalue for="0" value="3925857430858405"/>
<attvalue for="1" value="转发微博"/>
<attvalue for="2" value="3945899432"/>
<attvalue for="3" value="2015-12-30T21:06:00.000+0800.000+0800"/>
<attvalue for="4" value="1451480813000"/>
</attvalues>
</node>
<node id="3925857493961487" label="label871">
<attvalues>
<attvalue for="0" value="3925857493961487"/>
<attvalue for="1" value="转发微博"/>
<attvalue for="2" value="1889281647"/>
<attvalue for="3" value="2015-12-30T21:07:00.000+0800.000+0800"/>
<attvalue for="4" value="1451480828000"/>
</attvalues>
</node>
<node id="3925857522978831" label="label782">
<attvalues>
<attvalue for="0" value="3925857522978831"/>
<attvalue for="1" value="我相信我们都会很好,就像我们遇见时那样"/>
<attvalue for="2" value="5348739398"/>
<attvalue for="3" value="2015-12-30T21:07:00.000+0800.000+0800"/>
<attvalue for="4" value="1451480835000"/>
</attvalues>
</node>
<node id="3925857590663351" label="label339">
<attvalues>
<attvalue for="0" value="3925857590663351"/>
<attvalue for="1" value="好妹妹,青茫音乐总监[心][心]"/>
<attvalue for="2" value="5217352154"/>
<attvalue for="3" value="2015-12-30T21:07:00.000+0800.000+0800"/>
<attvalue for="4" value="1451480850000"/>
</attvalues>
</node>
<node id="3925857678355335" label="label587">
<attvalues>
<attvalue for="0" value="3925857678355335"/>
<attvalue for="1" value="2016.4.29要去看,超级喜欢这本书。"/>
<attvalue for="2" value="3223773633"/>
<attvalue for="3" value="2015-12-30T21:07:00.000+0800.000+0800"/>
<attvalue for="4" value="1451480871000"/>
</attvalues>
</node>
<node id="3925857690954741" label="label89">
<attvalues>
<attvalue for="0" value="3925857690954741"/>
<attvalue for="1" value="#钟汉良# #钟汉良乐作人生# #钟汉良执导电影沙漏# //@电影沙漏官微:青茫君来了,#电影沙漏# 还会远嘛~[鼓掌][鼓掌]"/>
<attvalue for="2" value="5633627362"/>
<attvalue for="3" value="2015-12-30T21:07:00.000+0800.000+0800"/>
<attvalue for="4" value="1451480875000"/>
</attvalues>
</node>
<node id="3925857703551780" label="label266">
<attvalues>
<attvalue for="0" value="3925857703551780"/>
<attvalue for="1" value="//@恶棍天使:#1224恶棍天使# 世间冰冷,笑是篝火。相约恶棍天使,不说再见做回开心的自己[爱你][心]"/>
<attvalue for="2" value="2834932461"/>
<attvalue for="3" value="2015-12-30T21:07:00.000+0800.000+0800"/>
<attvalue for="4" value="1451480878000"/>
</attvalues>
</node>
<node id="3925857712592304" label="label465">
<attvalues>
<attvalue for="0" value="3925857712592304"/>
<attvalue for="1" value="不说再见,因为我们还会再见[微笑][微笑]"/>
<attvalue for="2" value="5401763212"/>
<attvalue for="3" value="2015-12-30T21:07:00.000+0800.000+0800"/>
<attvalue for="4" value="1451480879000"/>
</attvalues>
</node>
<node id="3925857732684924" label="label1004">
<attvalues>
<attvalue for="0" value="3925857732684924"/>
<attvalue for="1" value="嗯 感动 反正我是听哭了 半年前刚经历的离别 记得照毕业照的时候真的没有控制住 毕业照里留下了那个红着眼睛的我 想念那群高中的小伙伴了 想念那个一起奋斗过的高中时光 简单又美好@刘同 @电影谁的青春不迷茫 [心]"/>
<attvalue for="2" value="5638939812"/>
<attvalue for="3" value="2015-12-30T21:08:00.000+0800.000+0800"/>
<attvalue for="4" value="1451480885000"/>
</attvalues>
</node>
<node id="3925857762456932" label="label612">
<attvalues>
<attvalue for="0" value="3925857762456932"/>
<attvalue for="1" value="听完这首歌,满满的感动,当年,毕业时的一幕幕又回放在眼前,愿永远不再说再见,愿多年后,我们相见,我们依旧安好,就如同你说的那样,我们都一样,谁的青春不迷茫。[心]"/>
<attvalue for="2" value="5288833436"/>
<attvalue for="3" value="2015-12-30T21:08:00.000+0800.000+0800"/>
<attvalue for="4" value="1451480892000"/>
</attvalues>
</node>
<node id="3925857808269964" label="label33">
<attvalues>
<attvalue for="0" value="3925857808269964"/>
<attvalue for="1" value="棒呆!!好听!!满满的都是高中的回忆啊,谢谢青茫让我回忆起那段青葱岁月期待电影[围脖][羞嗒嗒]"/>
<attvalue for="2" value="5117375317"/>
<attvalue for="3" value="2015-12-30T21:08:00.000+0800.000+0800"/>
<attvalue for="4" value="1451480903000"/>
</attvalues>
</node>
<node id="3925857875454663" label="label746">
<attvalues>
<attvalue for="0" value="3925857875454663"/>
<attvalue for="1" value="等明年 青茫 上映的时候 毕业设计都交了 该准备答辩了"/>
<attvalue for="2" value="1837121525"/>
<attvalue for="3" value="2015-12-30T21:08:00.000+0800.000+0800"/>
<attvalue for="4" value="1451480919000"/>
</attvalues>
</node>
<node id="3925857888050917" label="label882">
<attvalues>
<attvalue for="0" value="3925857888050917"/>
<attvalue for="1" value="不会远了,冬天快过去了 //@电影沙漏官微:青茫君来了,#电影沙漏# 还会远嘛~[太阳][鼓掌][鼓掌]"/>
<attvalue for="2" value="2705208180"/>
<attvalue for="3" value="2015-12-30T21:08:00.000+0800.000+0800"/>
<attvalue for="4" value="1451480922000"/>
</attvalues>
</node>
<node id="3925857963367842" label="label367">
<attvalues>
<attvalue for="0" value="3925857963367842"/>
<attvalue for="1" value="新的毕业歌新鲜出炉"/>
<attvalue for="2" value="5782595730"/>
<attvalue for="3" value="2015-12-30T21:08:00.000+0800.000+0800"/>
<attvalue for="4" value="1451480939000"/>
</attvalues>
</node>
<node id="3925858026359292" label="label628">
<attvalues>
<attvalue for="0" value="3925858026359292"/>
<attvalue for="1" value="#钟汉良# 期待~//@vv微风细雨:不会远了,冬天快过去了 //@电影沙漏官微:青茫君来了,#电影沙漏# 还会远嘛~[太阳][鼓掌][鼓掌]"/>
<attvalue for="2" value="5324231627"/>
<attvalue for="3" value="2015-12-30T21:09:00.000+0800.000+0800"/>
<attvalue for="4" value="1451480955000"/>
</attvalues>
</node>
<node id="3925858077260523" label="label742">
<attvalues>
<attvalue for="0" value="3925858077260523"/>
<attvalue for="1" value="//@电影沙漏官微:青茫君来了,#电影沙漏# 还会远嘛~[鼓掌][鼓掌]"/>
<attvalue for="2" value="3212323875"/>
<attvalue for="3" value="2015-12-30T21:09:00.000+0800.000+0800"/>
<attvalue for="4" value="1451480967000"/>
</attvalues>
</node>
<node id="3925858089857552" label="label651">
<attvalues>
<attvalue for="0" value="3925858089857552"/>
<attvalue for="1" value="好想回到高中。 [泪][泪]"/>
<attvalue for="2" value="5224133928"/>
<attvalue for="3" value="2015-12-30T21:09:00.000+0800.000+0800"/>
<attvalue for="4" value="1451480969000"/>
</attvalues>
</node>
<node id="3925858098425163" label="label639">
<attvalues>
<attvalue for="0" value="3925858098425163"/>
<attvalue for="1" value="好妹妹!"/>
<attvalue for="2" value="2859571514"/>
<attvalue for="3" value="2015-12-30T21:09:00.000+0800.000+0800"/>
<attvalue for="4" value="1451480971000"/>
</attvalues>
</node>
<node id="3925858122933265" label="label682">
<attvalues>
<attvalue for="0" value="3925858122933265"/>
<attvalue for="1" value="//@恶棍天使:#1224恶棍天使# 世间冰冷,笑是篝火。相约恶棍天使,不说再见做回开心的自己[爱你][心]"/>
<attvalue for="2" value="2632915490"/>
<attvalue for="3" value="2015-12-30T21:09:00.000+0800.000+0800"/>
<attvalue for="4" value="1451480978000"/>
</attvalues>
</node>
<node id="3925858178215356" label="label207">
<attvalues>
<attvalue for="0" value="3925858178215356"/>
<attvalue for="1" value="#电影谁的青春不迷茫# 毕业季主题曲 #不说再见# 真的希望我们永远不要说再见[悲伤]"/>
<attvalue for="2" value="5780903264"/>
<attvalue for="3" value="2015-12-30T21:09:00.000+0800.000+0800"/>
<attvalue for="4" value="1451480991000"/>
</attvalues>
</node>
<node id="3925858237001472" label="label233">
<attvalues>
<attvalue for="0" value="3925858237001472"/>
<attvalue for="1" value=" //@恶棍天使:#1224恶棍天使# 世间冰冷,笑是篝火。相约恶棍天使,不说再见做回开心的自己[爱你][爱你][爱你][爱你][心]"/>
<attvalue for="2" value="5354011887"/>
<attvalue for="3" value="2015-12-30T21:10:00.000+0800.000+0800"/>
<attvalue for="4" value="1451481005000"/>
</attvalues>
</node>
<node id="3925858320725658" label="label28">
<attvalues>
<attvalue for="0" value="3925858320725658"/>
<attvalue for="1" value="送给曾经的你们 545 555,我们永远不说“再见”"/>
<attvalue for="2" value="5762770215"/>
<attvalue for="3" value="2015-12-30T21:10:00.000+0800.000+0800"/>
<attvalue for="4" value="1451481025000"/>
</attvalues>
</node>
<node id="3925858324924060" label="label777">
<attvalues>
<attvalue for="0" value="3925858324924060"/>
<attvalue for="1" value="不远了!就是明年!//@电影沙漏官微: 青茫君来了,#电影沙漏# 还会远嘛~[鼓掌][鼓掌]"/>
<attvalue for="2" value="2108174484"/>
<attvalue for="3" value="2015-12-30T21:10:00.000+0800.000+0800"/>
<attvalue for="4" value="1451481026000"/>
</attvalues>
</node>
<node id="3925858429895395" label="label36">
<attvalues>
<attvalue for="0" value="3925858429895395"/>
<attvalue for="1" value="16年最期待的电影!"/>
<attvalue for="2" value="3958017394"/>
<attvalue for="3" value="2015-12-30T21:10:00.000+0800.000+0800"/>
<attvalue for="4" value="1451481051000"/>
</attvalues>
</node>
<node id="3925858462507071" label="label373">
<attvalues>
<attvalue for="0" value="3925858462507071"/>
<attvalue for="1" value="刷刷刷! //@王康kkkk:今天我要刷屏#不说再见# #电影谁的青春不迷茫# [泪][泪][泪][泪]"/>
<attvalue for="2" value="2245102090"/>
<attvalue for="3" value="2015-12-30T21:10:00.000+0800.000+0800"/>
<attvalue for="4" value="1451481059000"/>
</attvalues>
</node>
<node id="3925858513429631" label="label509">
<attvalues>
<attvalue for="0" value="3925858513429631"/>
<attvalue for="1" value="#不说再见#"/>
<attvalue for="2" value="2705788353"/>
<attvalue for="3" value="2015-12-30T21:11:00.000+0800.000+0800"/>
<attvalue for="4" value="1451481069000"/>
</attvalues>
</node>
<node id="3925858559074278" label="label147">
<attvalues>
<attvalue for="0" value="3925858559074278"/>
<attvalue for="1" value="#钟汉良执导电影沙漏# #钟汉良# #钟汉良乐作人生# //@电影沙漏官微:青茫君来了,#电影沙漏# 还会远嘛~[good][good][鼓掌][鼓掌]"/>
<attvalue for="2" value="5679412973"/>
<attvalue for="3" value="2015-12-30T21:11:00.000+0800.000+0800"/>
<attvalue for="4" value="1451481081000"/>
</attvalues>
</node>
<node id="3925858589015629" label="label484">
<attvalues>
<attvalue for="0" value="3925858589015629"/>
<attvalue for="1" value="转发微博"/>
<attvalue for="2" value="2278974097"/>
<attvalue for="3" value="2015-12-30T21:11:00.000+0800.000+0800"/>
<attvalue for="4" value="1451481089000"/>
</attvalues>
</node>
<node id="3925858626806856" label="label179">
<attvalues>
<attvalue for="0" value="3925858626806856"/>
<attvalue for="1" value="@牛泽萌 牛牛们看到牛哥了么?#不说再见##电影谁的青春不迷茫#"/>
<attvalue for="2" value="5760124687"/>
<attvalue for="3" value="2015-12-30T21:11:00.000+0800.000+0800"/>
<attvalue for="4" value="1451481097000"/>
</attvalues>
</node>
<node id="3925858656392253" label="label568">
<attvalues>
<attvalue for="0" value="3925858656392253"/>
<attvalue for="1" value="想哭"/>
<attvalue for="2" value="3313265640"/>
<attvalue for="3" value="2015-12-30T21:11:00.000+0800.000+0800"/>
<attvalue for="4" value="1451481105000"/>
</attvalues>
</node>
<node id="3925858710518856" label="label597">
<attvalues>
<attvalue for="0" value="3925858710518856"/>
<attvalue for="1" value="//@恶棍天使:#1224恶棍天使# 世间冰冷,笑是篝火。相约恶棍天使,不说再见做回开心的自己[爱你][心]"/>
<attvalue for="2" value="1951759160"/>
<attvalue for="3" value="2015-12-30T21:11:00.000+0800.000+0800"/>
<attvalue for="4" value="1451481118000"/>
</attvalues>
</node>
<node id="3925858748174742" label="label525">
<attvalues>
<attvalue for="0" value="3925858748174742"/>
<attvalue for="1" value="#不说再见#很好听,更期待#电影谁的青春不迷茫#"/>
<attvalue for="2" value="2150507981"/>
<attvalue for="3" value="2015-12-30T21:12:00.000+0800.000+0800"/>
<attvalue for="4" value="1451481127000"/>
</attvalues>
</node>
<node id="3925858827692179" label="label906">
<attvalues>
<attvalue for="0" value="3925858827692179"/>
<attvalue for="1" value="#不说再见##谁的青春不迷茫定档429#都是//@王康kkkk:今天我要刷屏#不说再见# #电影谁的青春不迷茫# [泪][泪][泪][泪]"/>
<attvalue for="2" value="5604232206"/>
<attvalue for="3" value="2015-12-30T21:12:00.000+0800.000+0800"/>
<attvalue for="4" value="1451481145000"/>
</attvalues>
</node>
<node id="3925858827693716" label="label518">
<attvalues>
<attvalue for="0" value="3925858827693716"/>
<attvalue for="1" value="好听大爱[爱你][爱你][鼓掌][鼓掌]"/>
<attvalue for="2" value="2061510027"/>
<attvalue for="3" value="2015-12-30T21:12:00.000+0800.000+0800"/>
<attvalue for="4" value="1451481145000"/>
</attvalues>
</node>
<node id="3925858898926557" label="label340">
<attvalues>
<attvalue for="0" value="3925858898926557"/>
<attvalue for="1" value="谁的青春不迷茫,其实我们都一样[心]"/>
<attvalue for="2" value="5179403727"/>
<attvalue for="3" value="2015-12-30T21:12:00.000+0800.000+0800"/>
<attvalue for="4" value="1451481163000"/>
</attvalues>
</node>
<node id="3925859037977334" label="label534">
<attvalues>
<attvalue for="0" value="3925859037977334"/>
<attvalue for="1" value="4月29号,谁会同我一起看《青茫》?高三那年因为《谁的青春不迷茫》一书知道了刘同,转眼已经大三临近毕业了,大学三年,值得我用一生来回忆,因为这里有我最美好的青春记忆~@刘同 @电影谁的青春不迷茫 [爱你]"/>
<attvalue for="2" value="2270144953"/>
<attvalue for="3" value="2015-12-30T21:13:00.000+0800.000+0800"/>
<attvalue for="4" value="1451481196000"/>
</attvalues>
</node>
<node id="3925859045778450" label="label645">
<attvalues>
<attvalue for="0" value="3925859045778450"/>
<attvalue for="1" value="#钟汉良##电影沙漏#//@电影沙漏官微:青茫君来了,#电影沙漏# 还会远嘛~[鼓掌][鼓掌]"/>
<attvalue for="2" value="5625800478"/>
<attvalue for="3" value="2015-12-30T21:13:00.000+0800.000+0800"/>
<attvalue for="4" value="1451481197000"/>
</attvalues>
</node>
<node id="3925859293084537" label="label126">
<attvalues>
<attvalue for="0" value="3925859293084537"/>
<attvalue for="1" value="@小小傻瓜啦啦啦 @思念人之屋q @Erinny- [泪][泪][泪]"/>
<attvalue for="2" value="1777446465"/>
<attvalue for="3" value="2015-12-30T21:14:00.000+0800.000+0800"/>
<attvalue for="4" value="1451481257000"/>
</attvalues>
</node>
<node id="3925859335605861" label="label6">
<attvalues>
<attvalue for="0" value="3925859335605861"/>
<attvalue for="1" value="转发微博"/>
<attvalue for="2" value="5146193923"/>
<attvalue for="3" value="2015-12-30T21:14:00.000+0800.000+0800"/>
<attvalue for="4" value="1451481267000"/>
</attvalues>
</node>
<node id="3925859612478159" label="label471">
<attvalues>
<attvalue for="0" value="3925859612478159"/>
<attvalue for="1" value="毕业我们不说再见@小小矮墩 "/>
<attvalue for="2" value="5602168695"/>
<attvalue for="3" value="2015-12-30T21:15:00.000+0800.000+0800"/>
<attvalue for="4" value="1451481333000"/>
</attvalues>
</node>
<node id="3925859645808046" label="label699">
<attvalues>
<attvalue for="0" value="3925859645808046"/>
<attvalue for="1" value="谁的青春不迷茫,嗯,我们都一样[月亮]"/>
<attvalue for="2" value="3190300464"/>
<attvalue for="3" value="2015-12-30T21:15:00.000+0800.000+0800"/>
<attvalue for="4" value="1451481340000"/>
</attvalues>
</node>
<node id="3925859654685358" label="label527">
<attvalues>
<attvalue for="0" value="3925859654685358"/>
<attvalue for="1" value="//@恶棍天使:#1224恶棍天使# 世间冰冷,笑是篝火。相约恶棍天使,不说再见做回开心的自己[爱你][心]"/>
<attvalue for="2" value="5451780212"/>
<attvalue for="3" value="2015-12-30T21:15:00.000+0800.000+0800"/>
<attvalue for="4" value="1451481343000"/>
</attvalues>
</node>
<node id="3925859670461563" label="label796">
<attvalues>
<attvalue for="0" value="3925859670461563"/>
<attvalue for="1" value="#不说再见# 今年毕业季,我们《不说再见》。#电影谁的青春不迷茫# [心]"/>
<attvalue for="2" value="5705362802"/>
<attvalue for="3" value="2015-12-30T21:15:00.000+0800.000+0800"/>
<attvalue for="4" value="1451481346000"/>
</attvalues>
</node>
<node id="3925860140204007" label="label943">
<attvalues>
<attvalue for="0" value="3925860140204007"/>
<attvalue for="1" value="//@电影沙漏官微:青茫君来了,#电影沙漏# 还会远嘛~[鼓掌][鼓掌]"/>
<attvalue for="2" value="5568518994"/>
<attvalue for="3" value="2015-12-30T21:17:00.000+0800.000+0800"/>
<attvalue for="4" value="1451481458000"/>
</attvalues>
</node>
<node id="3925860178792894" label="label210">
<attvalues>
<attvalue for="0" value="3925860178792894"/>
<attvalue for="1" value="转发微博"/>
<attvalue for="2" value="5650286480"/>
<attvalue for="3" value="2015-12-30T21:17:00.000+0800.000+0800"/>
<attvalue for="4" value="1451481468000"/>
</attvalues>
</node>
<node id="3925860215980269" label="label557">
<attvalues>
<attvalue for="0" value="3925860215980269"/>
<attvalue for="1" value="//@雷婭東:#电影谁的青春不迷茫# 又见大马猴歌曲很好听,看了mv忍不住笑了[笑cry][笑cry]"/>
<attvalue for="2" value="2590116257"/>
<attvalue for="3" value="2015-12-30T21:17:00.000+0800.000+0800"/>
<attvalue for="4" value="1451481477000"/>
</attvalues>
</node>
<node id="3925860308959629" label="label468">
<attvalues>
<attvalue for="0" value="3925860308959629"/>
<attvalue for="1" value="#不说再见# #电影谁的青春不迷茫# 不说再见,我们一直在"/>
<attvalue for="2" value="5666178274"/>
<attvalue for="3" value="2015-12-30T21:18:00.000+0800.000+0800"/>
<attvalue for="4" value="1451481498000"/>
</attvalues>
</node>
<node id="3925860337744658" label="label359">
<attvalues>
<attvalue for="0" value="3925860337744658"/>
<attvalue for="1" value="转发微博"/>
<attvalue for="2" value="5522733340"/>
<attvalue for="3" value="2015-12-30T21:18:00.000+0800.000+0800"/>
<attvalue for="4" value="1451481505000"/>
</attvalues>
</node>
<node id="3925860379867984" label="label745">
<attvalues>
<attvalue for="0" value="3925860379867984"/>
<attvalue for="1" value="#不说再见##电影谁的青春不迷茫# 哇哇,沙漏君也来了哦//@电影沙漏官微:青茫君来了,#电影沙漏# 还会远嘛~[鼓掌][鼓掌]"/>
<attvalue for="2" value="5780922449"/>
<attvalue for="3" value="2015-12-30T21:18:00.000+0800.000+0800"/>
<attvalue for="4" value="1451481515000"/>
</attvalues>
</node>
<node id="3925860413322966" label="label369">
<attvalues>
<attvalue for="0" value="3925860413322966"/>
<attvalue for="1" value="转发微博"/>
<attvalue for="2" value="5451471755"/>
<attvalue for="3" value="2015-12-30T21:18:00.000+0800.000+0800"/>
<attvalue for="4" value="1451481524000"/>
</attvalues>
</node>
<node id="3925860472246801" label="label859">
<attvalues>
<attvalue for="0" value="3925860472246801"/>
<attvalue for="1" value="我相信我们都会很好 就像我们当初遇见的一样。[悲伤]"/>
<attvalue for="2" value="1764267540"/>
<attvalue for="3" value="2015-12-30T21:18:00.000+0800.000+0800"/>
<attvalue for="4" value="1451481537000"/>
</attvalues>
</node>
<node id="3925860555825517" label="label355">
<attvalues>
<attvalue for="0" value="3925860555825517"/>
<attvalue for="1" value="@兰家旭啊 "/>
<attvalue for="2" value="3480265250"/>
<attvalue for="3" value="2015-12-30T21:19:00.000+0800.000+0800"/>
<attvalue for="4" value="1451481558000"/>
</attvalues>
</node>
<node id="3925860626732300" label="label50">
<attvalues>
<attvalue for="0" value="3925860626732300"/>
<attvalue for="1" value="#果宝特攻0116# 不说再见我们继续一起晒太阳"/>
<attvalue for="2" value="5750330820"/>
<attvalue for="3" value="2015-12-30T21:19:00.000+0800.000+0800"/>
<attvalue for="4" value="1451481574000"/>
</attvalues>
</node>
<node id="3925860904260996" label="label789">
<attvalues>
<attvalue for="0" value="3925860904260996"/>
<attvalue for="1" value="#电影谁的青春不迷茫# 差点以为好妹妹也是青茫班的同学//@小雪陈CXx:#不说再见# #电影谁的青春不迷茫# [爱你][爱你]"/>
<attvalue for="2" value="1623435584"/>
<attvalue for="3" value="2015-12-30T21:20:00.000+0800.000+0800"/>
<attvalue for="4" value="1451481640000"/>
</attvalues>
</node>
<node id="3925860954197701" label="label788">
<attvalues>
<attvalue for="0" value="3925860954197701"/>
<attvalue for="1" value="//@恶棍天使:#1224恶棍天使# 世间冰冷,笑是篝火。相约恶棍天使,不说再见做回开心的自己[爱你][心]"/>
<attvalue for="2" value="5721391775"/>
<attvalue for="3" value="2015-12-30T21:20:00.000+0800.000+0800"/>
<attvalue for="4" value="1451481653000"/>
</attvalues>
</node>
<node id="3925861038576598" label="label797">
<attvalues>
<attvalue for="0" value="3925861038576598"/>
<attvalue for="1" value="再见了相互嫌弃的同学,再见了来不及说出的谢谢 #不说再见# 馆主 #电影谁的青春不迷茫# #谁的青春不迷茫定档429# O网页链接 //@兰家旭啊:#电影谁的青春不迷茫# #不说再见# 其实我们都一样"/>
<attvalue for="2" value="3939583871"/>
<attvalue for="3" value="2015-12-30T21:21:00.000+0800.000+0800"/>
<attvalue for="4" value="1451481672000"/>
</attvalues>
</node>
<node id="3925861109549383" label="label841">
<attvalues>
<attvalue for="0" value="3925861109549383"/>
<attvalue for="1" value="转发微博"/>
<attvalue for="2" value="5113577656"/>
<attvalue for="3" value="2015-12-30T21:21:00.000+0800.000+0800"/>
<attvalue for="4" value="1451481689000"/>
</attvalues>
</node>
<node id="3925861130756928" label="label576">
<attvalues>
<attvalue for="0" value="3925861130756928"/>
<attvalue for="1" value="#电影谁的青春不迷茫#其实我们都一样 O网页链接 //@兰家旭啊:#电影谁的青春不迷茫# #不说再见# 其实我们都一样"/>
<attvalue for="2" value="3939583871"/>
<attvalue for="3" value="2015-12-30T21:21:00.000+0800.000+0800"/>
<attvalue for="4" value="1451481695000"/>
</attvalues>
</node>
<node id="3925861135157713" label="label46">
<attvalues>
<attvalue for="0" value="3925861135157713"/>
<attvalue for="1" value="好期待,"/>
<attvalue for="2" value="3785791401"/>
<attvalue for="3" value="2015-12-30T21:21:00.000+0800.000+0800"/>
<attvalue for="4" value="1451481696000"/>
</attvalues>
</node>
<node id="3925861176470531" label="label502">
<attvalues>
<attvalue for="0" value="3925861176470531"/>
<attvalue for="1" value="//@恶棍天使:#1224恶棍天使# 世间冰冷,笑是篝火。相约恶棍天使,不说再见做回开心的自己[爱你][心]"/>
<attvalue for="2" value="5309335331"/>
<attvalue for="3" value="2015-12-30T21:21:00.000+0800.000+0800"/>
<attvalue for="4" value="1451481705000"/>
</attvalues>
</node>
<node id="3925861181142226" label="label621">
<attvalues>
<attvalue for="0" value="3925861181142226"/>
<attvalue for="1" value="//@恶棍天使: #1224恶棍天使# 世间冰冷,笑是篝火。相约恶棍天使,不说再见做回开心的自己[爱你][心]"/>
<attvalue for="2" value="3305761225"/>
<attvalue for="3" value="2015-12-30T21:21:00.000+0800.000+0800"/>
<attvalue for="4" value="1451481706000"/>
</attvalues>
</node>
<node id="3925861181343856" label="label821">
<attvalues>
<attvalue for="0" value="3925861181343856"/>
<attvalue for="1" value="感动到哭。谁的青春不迷茫,其实我们都一样"/>
<attvalue for="2" value="2279907441"/>
<attvalue for="3" value="2015-12-30T21:21:00.000+0800.000+0800"/>
<attvalue for="4" value="1451481707000"/>
</attvalues>
</node>
<node id="3925861243651366" label="label27">
<attvalues>
<attvalue for="0" value="3925861243651366"/>
<attvalue for="1" value="期待,演个吃货我也能演的很好#钟汉良执导电影沙漏# //@电影沙漏官微:青茫君来了,#电影沙漏# 还会远嘛~[笑cry][笑cry][鼓掌][鼓掌]"/>
<attvalue for="2" value="1988252873"/>
<attvalue for="3" value="2015-12-30T21:22:00.000+0800.000+0800"/>
<attvalue for="4" value="1451481721000"/>
</attvalues>
</node>
<node id="3925861319440255" label="label985">
<attvalues>
<attvalue for="0" value="3925861319440255"/>
<attvalue for="1" value="“谁的青春不迷茫,其实我们都一样,”也许这才是青春的真相。青茫来啦,我们#电影嫌疑人x的献身# 也在路上啦~[心]"/>
<attvalue for="2" value="5746403567"/>
<attvalue for="3" value="2015-12-30T21:22:00.000+0800.000+0800"/>
<attvalue for="4" value="1451481739000"/>
</attvalues>
</node>
<node id="3925861340223736" label="label763">
<attvalues>
<attvalue for="0" value="3925861340223736"/>
<attvalue for="1" value="#不说再见##电影谁的青春不迷茫# 今年毕业的同学幸运有了不说再见的陪伴 //@小雪陈CXx:#不说再见# #电影谁的青春不迷茫# [泪][爱你][爱你]"/>