-
Notifications
You must be signed in to change notification settings - Fork 0
/
retrievers_test_profile_10.data
2259 lines (1952 loc) · 148 KB
/
retrievers_test_profile_10.data
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
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml" lang="pt">
<head profile="http://purl.org/uF/2008/03/">
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Perfil musical de Kerensky97 – Usuários na Last.fm</title>
<link rel="search" type="application/opensearchdescription+xml" href="http://cdn.last.fm/opensearch_desc.xml" title="Last.fm" />
<meta name="description" content="Ouça a estação de rádio pessoal de Kerensky97 (75.825 faixas executadas).Artistas principais de Kerensky97: Rancid, モーニング娘。, Dropkick Murphys. Tags favoritas: albums i own, punk, untaggedhome. Crie seu próprio perfil na Last.fm, a maior plataforma social musical do mundo."/>
<meta http-equiv="content-language" content="pt" />
<meta name="robots" content="NOODP" />
<link rel="icon" href="http://cdn.last.fm/flatness/favicon.2.ico" />
<link rel="icon" type="image/png" href="http://cdn.last.fm/flatness/favicon.2.png" />
<link rel="apple-touch-icon" href="http://cdn.last.fm/flatness/apple-touch-icon.png" />
<link type="text/html" rel="alternate" hreflang="en" href="http://www.last.fm/user/Kerensky97" />
<link type="text/html" rel="alternate" hreflang="de" href="http://www.lastfm.de/user/Kerensky97" />
<link type="text/html" rel="alternate" hreflang="es" href="http://www.lastfm.es/user/Kerensky97" />
<link type="text/html" rel="alternate" hreflang="fr" href="http://www.lastfm.fr/user/Kerensky97" />
<link type="text/html" rel="alternate" hreflang="it" href="http://www.lastfm.it/user/Kerensky97" />
<link type="text/html" rel="alternate" hreflang="ja" href="http://www.lastfm.jp/user/Kerensky97" />
<link type="text/html" rel="alternate" hreflang="pl" href="http://www.lastfm.pl/user/Kerensky97" />
<link type="text/html" rel="alternate" hreflang="ru" href="http://www.lastfm.ru/user/Kerensky97" />
<link type="text/html" rel="alternate" hreflang="sv" href="http://www.lastfm.se/user/Kerensky97" />
<link type="text/html" rel="alternate" hreflang="tr" href="http://www.lastfm.com.tr/user/Kerensky97" />
<link type="text/html" rel="alternate" hreflang="cn" href="http://cn.last.fm/user/Kerensky97" />
<!--[if LT IE 7]>
<style type="text/css">
.transparent_png {
behavior: url('/pngbehavior2.htc');
}
</style>
<![endif]-->
<link rel="stylesheet" href="http://cdn.last.fm/css/release-i18n/118490/user/overview.css" type="text/css" />
<link rel="stylesheet" href="http://cdn.last.fm/css/release-i18n/118490/main.css" type="text/css" />
<link rel="stylesheet" href="http://cdn.last.fm/css/release-i18n/118490/components.css" type="text/css" />
<link rel="stylesheet" href="http://cdn.last.fm/css/release-i18n/118490/dialog.css" type="text/css" />
<link rel="stylesheet" href="http://cdn.last.fm/css/release-i18n/118490/form/typeahead.css" type="text/css" />
<link rel="stylesheet" href="http://cdn.last.fm/css/release-i18n/118490/dev/console.css" type="text/css" />
<!-- The libraries—thank God for those! -->
<script type="text/javascript" src="http://cdn.last.fm/javascript/release-i18n/118274/lib/prototype.js"></script>
<script type="text/javascript" src="http://cdn.last.fm/javascript/release-i18n/118274/lib/scriptaculous.js"></script>
<script type="text/javascript" src="http://cdn.last.fm/javascript/release-i18n/118274/lib/ufo.js"></script>
<!-- Create our namespace -->
<script type="text/javascript" src="http://cdn.last.fm/javascript/release-i18n/118274/LFM.js"></script>
<script type="text/javascript">
LFM.set("ParentResource", {"id":"2537274","type":4,"name":"Kerensky97","url":"\/user\/Kerensky97","image":{"small":"http:\/\/userserve-ak.last.fm\/serve\/34\/1264617.jpg","smallsquare":"http:\/\/userserve-ak.last.fm\/serve\/34s\/1264617.jpg","medium":"http:\/\/userserve-ak.last.fm\/serve\/64\/1264617.jpg","mediumsquare":"http:\/\/userserve-ak.last.fm\/serve\/64s\/1264617.jpg","large":"http:\/\/userserve-ak.last.fm\/serve\/126\/1264617.jpg","largesquare":"http:\/\/userserve-ak.last.fm\/serve\/126s\/1264617.jpg","mega":"http:\/\/userserve-ak.last.fm\/serve\/252\/1264617.jpg","fixed":"http:\/\/userserve-ak.last.fm\/serve\/fixed\/1264617.jpg","original":"http:\/\/userserve-ak.last.fm\/serve\/_\/1264617\/Kerensky97.jpg"}});
LFM.set("String", {
toRedStr: "Barão Vermelho",
toBlackStr: "Fuscão Preto",
okText: "OK",
cancelText: "Cancelar",
clickToEditText: "Clique para editar",
savingText: "Salvando…",
loadingText: "Carregando…",
deletingText: "Excluindo…",
thereWasAnError: "Ocorreu um erro.",
dialogLoadError: "Ocorreu um erro ao carregar esta caixa de diálogo.",
fileTooBig: "Desculpe, o arquivo é muito grande.",
noFile: "Escolha um arquivo.",
uploadCancelled: "Upload cancelado.",
deleteMessageTitle: "Excluir mensagem",
deleteMessagePrompt: "Tem certeza de que deseja excluir esta mensagem?",
deleteFriendPrompt: "Tem certeza de que deseja excluir este amigo?",
deleteImage: "Tem certeza de que deseja excluir esta imagem?",
deleteButtonText: "Excluir",
done: "Concluído",
// the following ones maybe shouldn’t be in here:
backText: "Retornar",
yesText: "Sim",
noText: "Não",
saveText: "Salvar",
saveTitle: "Adicionar ao perfil",
sendText: "Enviar",
sendTitle: "Recomendar a amigos",
addTitle: "Adicionar à biblioteca",
tagTitle: "Adicionar tags",
playlistTitle: "Adicionar à lista",
obsessionTitle: "Personalize sua obsessão",
befriendTitle: "Adicionar um amigo",
joinTitle: "Juntar-se a este grupo",
loved: "Favorito",
RemoveFromLibraryTitle: "Remover da biblioteca",
uploadImageTitle: "Carregar imagem",
uploadVideoTitle: "Carregar vídeo",
usernoteTitle: "Add a note",
flageventTitle: "Sinalizar para revisão",
setLocationTitle: "Defina sua localização",
uploadMessages: {
mayTakeLonger: "Desculpe, isso poderá levar mais tempo do que o habitual. Aguarde alguns segundos.",
uploading: "Carregando…",
endUploading: "Concluído",
progressDisplay: "PERCENTUPLOADED% concluído (TRANSFERRATE kb/s) – TIMEREMAINING segundos restantes",
progressComplete: "100% concluído",
failedRetrying: "Falha ao recuperar upload, descartado.",
processingMedia: "Processando mídia…",
unsupportedFormat: "Desculpe, o arquivo que você carregou não está codificado em um formato compatível. Tente novamente.",
uploadError: "Ocorreu um erro ao carregar o vídeo, por favor verifique se o arquivo que você está carregando não é muito grande ou está em um formato incorreto e tente novamente."
}
});
LFM.set("Session", {
cookieHost: ".lastfm.com.br",
host: "www.lastfm.com.br",
staticHost: "http://cdn.last.fm",
loggedIn: false,
formtoken: "2bcd67b944b9e63a7fd1b2c0c95a8d55947c66b3",
location: "br",
language: "en"
});
LFM.set("Element", {
icon_loved_indicator: "<img class=\"loved_indicator_icon transparent_png\" width=\"11\" height=\"9\" src=\"http:\/\/cdn.last.fm\/flatness\/global\/icon_loved_indicator.2.png\" \/>",
icon_tag: "<img class=\"tag_icon transparent_png\" width=\"14\" height=\"14\" src=\"http:\/\/cdn.last.fm\/flatness\/global\/icon_tag3.png\" \/>",
icon_dismiss: "<img class=\"dismiss_icon transparent_png\" width=\"13\" height=\"13\" src=\"http:\/\/cdn.last.fm\/flatness\/global\/icon_delete.2.png\" \/>",
icon_play: "<img class=\"play_icon transparent_png\" width=\"17\" height=\"17\" alt=\"Tocar\" src=\"http:\/\/cdn.last.fm\/flatness\/global\/icon_play.png\" \/>"
});
</script>
<script type="text/javascript" src="http://cdn.last.fm/javascript/release-i18n/118274/user/overview.js"></script>
<script type="text/javascript" src="http://cdn.last.fm/javascript/release-i18n/118274/components.js"></script>
<script type="text/javascript" src="http://cdn.last.fm/javascript/release-i18n/118274/flash.js"></script>
<script type="text/javascript" src="http://cdn.last.fm/javascript/release-i18n/118274/dialog.js"></script>
<script type="text/javascript" src="http://cdn.last.fm/javascript/release-i18n/118274/form/typeahead.js"></script>
<script type="text/javascript" src="http://cdn.last.fm/javascript/release-i18n/118274/dev/console.js"></script>
<script type="text/javascript">
document.observe("dom:loaded", function () {
if (typeof ieHover != 'undefined') {
ieHover.setUp();
}
});
</script>
</head>
<body class="r-user a-overview">
<!-- SiteCatalyst code version: H.16.
Copyright 1997-2008 Omniture, Inc. More info available at
http://www.omniture.com -->
<script>var s = false, s_gi = false;</script>
<script src="http://cdn.last.fm/omniture/9/omniture-core.js"></script>
<script>
/* You may give each page an identifying name, server, and channel on
the next lines. */
if (s) {
s.pageName="User/Overview/";
s.server="";
s.channel="";
s.pageType="other";
s.prop1="user"; // namespace
s.prop2="overview"; // controller
s.prop3=""; // action
s.prop10="Anonymous"; // logged in/out
s.prop12="lastfm.com.br"; // url extension
s.prop13=""; // Member user id
s.prop14=""; // Ad source
s.prop15=""; // Ad id
s.prop16=""; // Ad size
s.prop18=s.getTimeParting('h',0,2009); // Set hour
s.prop19=s.getTimeParting('d',0,2009); // Set day
s.prop32 = ""; // TODO: 1st day of visit
s.prop33 = "pt";
/* Success Events */
s.events="";
/* E-commerce Variables */
// s.campaign="";
s.state="";
s.zip="";
s.products="";
s.purchaseID="";
s.eVar1="";
s.eVar2 = s.pageName; // Page name
s.eVar3="";
s.eVar10="Anonymous"; // logged in/out
s.eVar26=""; // OnClick Location
s.eVar27=""; // Download Platform
s.eVar28=""; // Buy/Download Location
s.eVar29=""; // TODO: 1st day of visit
s.eVar30=s.prop12; // url extension
s.eVar31=s.getNewRepeat(); // new/repeat visitor
s.eVar32=s.getDaysSinceLastVisit(); // Days since last visit
s.eVar33=""; // Ad source
s.eVar34=""; // Ad id
s.eVar35=""; // Ad size
s.eVar36=""; // Member user id
s.eVar37=s.prop33; // User language
// Set vars to pass with exit/download/custom links called by s.tl()
// * Click location
s.linkTrackVars="eVar26";
/************* DO NOT ALTER ANYTHING BELOW THIS LINE ! **************/
var s_code = s.t(); if (s_code) document.write(s_code);
}
</script>
<script type="text/javascript"><!--
if(navigator.appVersion.indexOf('MSIE')>=0)document.write(unescape('%3C')+'\!-'+'-')
//--></script>
<!--/DO NOT REMOVE/-->
<!-- End SiteCatalyst code version: H.11. -->
<script type="text/javascript" src="http://edge.quantserve.com/quant.js"></script>
<script type="text/javascript">
var _qoptions = {
labels: "LastFM"
};
var _qacct="p-51jhoCdjGFIVU";
quantserve();
</script>
<noscript>
<a href="http://www.quantcast.com/p-51jhoCdjGFIVU" target="_blank"><img src="http://pixel.quantserve.com/pixel/p-51jhoCdjGFIVU.gif?labels=LastFM" height="1" width="1" alt="" /></a>
</noscript>
<div id="page" class=" ">
<div class="fiflufi">
<!-- Includes needed for this app only -->
<!-- Includes needed everywhere -->
<script type="text/javascript">var dartORD = Math.round(Math.random()*100000000);function writeTop(){};function writeTopRight(){
google_ad_client = "pub-8364350995539875";
google_ad_width = 300;
google_ad_height = 250;
var rand = Math.random() * 100000;
google_alternate_ad_url = "http://www.last.fm/show_ads.php?house=true&type=MPU&y=" + rand;
google_ad_format = "300x250_as_new";
google_ad_type = "text_image";
//2007-02-02: catalogue-overview, tag-overview, label-overview
google_ad_channel = "4073027658+4417879899+0718013740";
google_color_border = "E9EBEF";
google_color_bg = "E9EBEF";
google_color_link = "D01F3C";
google_color_text = "605C5B";
google_color_url = "605C5B";
document.write('<script type="text/javascript" src="http://pagead2.googlesyndication.com/pagead/show_ads.js"><\/script>');
};function writeSkyscraperRight(){};function writeTopTopRight(){};function writeTopTopTopRight(){};function writeMid(){ google_hints = "music CD MP3 scrobbling ipod social blog wiki web2.0 ajax live event concert community streaming radio charts t-shirt ticket dvd last.fm player album record audiophile memorabilia chat im hifi gadgets game mobile broadband video";
google_ad_client = "pub-8364350995539875";
google_ad_width = 468;
google_ad_height = 60;
google_ad_format = "468x60_as_new";
var rand = Math.random() * 100000;
google_alternate_ad_url = "http://www.last.fm/show_ads.php?house=true&y=" + rand;
google_ad_type = "text_image";
google_ad_channel ="0968078817";
google_color_border = "FFFFFF";
google_color_bg = "FFFFFF";
google_color_link = "D01F3C";
google_color_url = "564B42";
google_color_text = "564B42";
google_ad_output = "html";
document.write('<script type="text/javascript" src="http://pagead2.googlesyndication.com/pagead/show_ads.js"><\/script>');};function writeTopLeaderboard(){};function writeFooter1(){ document.write('<a href="http://www.last.fm/delivery.php?id=3704&zoneId=128" target="_blank"><img src="http://cdn.last.fm/adserver/campaign/3423/Mini-Footer.gif" width="192" alt="Advertise on Last.fm" title="Advertise on Last.fm" height="64" style="border:none;" \/><\/a>');};function writeFooter2(){ document.write('<a href="http://www.last.fm/delivery.php?id=3713&zoneId=129" target="_blank"><img src="http://cdn.last.fm/adserver/campaign/3429/Mini-Footer.gif" width="192" alt="Advertise on Last.fm" title="Advertise on Last.fm" height="64" style="border:none;" \/><\/a>');};function writeFooter3(){ document.write('<a href="http://www.last.fm/delivery.php?id=3715&zoneId=130" target="_blank"><img src="http://cdn.last.fm/adserver/campaign/3425/Mini-Footer.gif" width="192" alt="Advertise on Last.fm" title="Advertise on Last.fm" height="64" style="border:none;" \/><\/a>');};function writeFooter4(){ document.write('<a href="http://www.last.fm/delivery.php?id=3700&zoneId=131" target="_blank"><img src="http://cdn.last.fm/adserver/campaign/3415/Mini-Footer.gif" width="192" alt="Advertise on Last.fm" title="Advertise on Last.fm" height="64" style="border:none;" \/><\/a>');};function writeSkin(){};;var aZoneCreativeTypeAssoc={"11":"468x60","9":"300x250","128":"192x64","129":"192x64","130":"192x64","131":"192x64"};</script>
<div id="header" class="clearit">
<div id="headerWrapper">
<h1><a href="/" id="lastfmLogo">
<img src="http://cdn.last.fm/flatness/logo.6.png" width="103" height="50" alt="Last.fm" />
<img src="http://cdn.last.fm/flatness/logo_black.3.png" width="103" height="50" style="display: none;" alt="Last.fm" />
<span>Last.fm</span>
</a></h1>
<ul id="primaryNav" class="clearit">
<li id="musicNav">
<a href="/music">Músicas</a>
</li>
<li id="videosNav">
<a href="/videos">Vídeos</a>
</li>
<li id="listenNav">
<a href="/listen">Rádio</a>
</li>
<li id="eventsNav">
<a href="/events">Eventos</a>
</li>
<li id="chartsNav">
<a href="/charts">Tabelas</a>
</li>
<li>
<form id="siteSearch" method="get" action="/search">
<select name="m" id="siteSearchSelect">
<option value="all">Música</option>
<option value="event">Evento</option>
<option value="tag">Tag</option>
<option value="user">Usuário</option>
<option value="group">Grupo</option>
<option value="label">Gravadora</option>
</select>
<input id="siteSearchBox" placeholder="Procurar" type="text" autosave="fm.last.searchhistory" results="5" name="q" size="16" />
<input class="submit" type="submit" value="" title="Enviar" id="siteSearchSubmit" />
</form>
</li>
</ul>
<div id="idBadger">
<a href="/login">Fazer login</a> | <a href="/join">Inscrever-se</a>
</div>
<div id="headLinks">
<p>
<a href="/help">Ajuda</a>
|
<img src="http://cdn.last.fm/depth/flags/mini/pt.gif" id="langToggleFlag" alt="Alterar idioma" />
<a href="/user/Kerensky97?change=language" title="Clique aqui para alterar o idioma" rel="nofollow" id="headerLangToggle">Português</a>
</p>
</div>
</div><!-- #headerWrapper -->
</div>
<script>
LFM.Display.setupHeader(); new LFM.Activityfeed.DeleteListener();
</script>
<!-- Adserving start -->
<div id="LastAd_Skin" class="LastAd"><div align="center">
<script type="text/javascript">
if(typeof writeSkin == 'function') writeSkin();
</script>
</div></div>
<script>
$("LastAd_Skin").hide();
</script>
<!-- Adserving end -->
<div id="content">
<div><!-- This containing div fixes an IE bug where the absolutely positioned element disappears randomly. Don’t ask me why. -->
<div id="secondaryNavigation">
<ul>
<li class=" current first "><a href="/user/Kerensky97">Perfil</a></li> <li><a href="/user/Kerensky97/library">Biblioteca</a></li> <li><a href="/user/Kerensky97/charts">Tabelas</a></li> <li><a href="/user/Kerensky97/events">Eventos</a></li> <li><a href="/user/Kerensky97/friends">Amigos</a></li> <li><a href="/user/Kerensky97/neighbours">Vizinhos</a></li> <li><a href="/user/Kerensky97/groups">Grupos</a></li> <li><a href="/user/Kerensky97/journal">Blog</a></li> <li><a href="/user/Kerensky97/library/tags">Tags</a></li>
</ul> </div>
</div> <div class="leftCol">
<div class="leftColWrapper">
<div id="userBadge" class="clearit moderator vcard" id="hcard-Kerensky97">
<div class="badgeAvatar">
<span class="userImage"><img class="photo" width="126" alt="" src="http://userserve-ak.last.fm/serve/126/1264617.jpg" /></span> <p class="userType"><a href="/about/moderators">Moderador</a></p> </div>
<div class="badgeHead">
<h1>Kerensky97</h1>
</div>
<div class="badgeInfo">
<p class="userInfo adr"><strong class="fn">Joe Mama</strong>, 28, Masculino, <span class="country-name">Estados Unidos</span><small class="userLastseen">Última visita: 8 horas atrás</small></p>
<div class="userData">
<span class="userPlays" title="Média de 59 faixas por dia"><strong><span class="count"><span class="flip">7</span><span class="flip">5</span><span class="flip">8</span><span class="flip">2</span><span class="flip">5</span></span> execuções</strong> <small>desde 30 Jun 2005</small> <small>(Reiniciado em 24 Jul 2005)</small></span><p class="userActivity"><a href="/user/Kerensky97/library/loved" title="">5.418 Faixas preferidas</a> | <a href="/user/Kerensky97/grapevine" title="">4.899 Posts</a> | <a href="/user/Kerensky97/playlists" title="">1 Lista</a> | <span class="shoutCount" title="Há 97 mensagens">
<a href="#shoutbox" id="shoutBoxLink" onclick="if (s) { s.eVar26 = 'shoutsBtn'; }" class="icon">
<img class="comment_icon transparent_png" width="13" height="11" src="http://cdn.last.fm/flatness/global/icon_comment.png" /><span>97 mensagens</span>
</a>
</span></p>
</div><!--.userData-->
</div><!--.badgeInfo-->
</div><!--.profileBadge-->
<div class="profileOptions clearit">
<div class="options">
<ul class="buttons">
<li>
<a href="/user/Kerensky97" id="button1" class="lfmButton lfmBigButton lfmBefriendButton" title="Joe Mama, 28, Masculino, Estados Unidos"><strong><img class="addtofriends_icon transparent_png" width="17" height="17" src="http://cdn.last.fm/flatness/icons/profile/addtofriends.png" /><span>Adicionar</span></strong></a>
<script>
(function () {
function showDialog () {
LFM.Befriend({"id":"2537274","type":4,"name":"Kerensky97","url":"\/user\/Kerensky97","image":{"small":"http:\/\/userserve-ak.last.fm\/serve\/34\/1264617.jpg","smallsquare":"http:\/\/userserve-ak.last.fm\/serve\/34s\/1264617.jpg","medium":"http:\/\/userserve-ak.last.fm\/serve\/64\/1264617.jpg","mediumsquare":"http:\/\/userserve-ak.last.fm\/serve\/64s\/1264617.jpg","large":"http:\/\/userserve-ak.last.fm\/serve\/126\/1264617.jpg","largesquare":"http:\/\/userserve-ak.last.fm\/serve\/126s\/1264617.jpg","mega":"http:\/\/userserve-ak.last.fm\/serve\/252\/1264617.jpg","fixed":"http:\/\/userserve-ak.last.fm\/serve\/fixed\/1264617.jpg","original":"http:\/\/userserve-ak.last.fm\/serve\/_\/1264617\/Kerensky97.jpg"}}, {
parameters: {
} });
}
$("button1").observe("click", function (e) {
e.stop();
showDialog();
});
})()
</script> </li>
<li>
<a href="/inbox/compose?to=Kerensky97" class="icon lfmMailButton"><img class="mailuser_icon transparent_png" width="17" height="17" src="http://cdn.last.fm/flatness/icons/profile/sendmsg.png" /><span>Enviar mensagem</span></a>
</li>
<li>
<a href="#shoutbox" class="icon lfmShoutboxButton" onclick="if (s) { s.eVar26 = 'shoutsBtn'; }"><img class="comment_icon transparent_png" width="13" height="11" src="http://cdn.last.fm/flatness/global/icon_comment.png" /><span>Deixar recado</span></a>
</li>
</ul>
</div>
<div id="tasteometer">
<p>
Seu grau de compatibilidade musical com <strong>Kerensky97</strong> é <strong class="reading">Desconhecido</strong>
</p>
<span class="bar">
<span style="width: 0;"></span>
</span>
<form action="/user/Kerensky97/tasteomatic" method="get" id="tasteometerform" style="display: none; visibility: hidden;"> <p>
<strong><label for="tastyartists">Digite o nome de algumas bandas ou artistas de que você goste, separados por vírgulas:</label></strong>
</p>
<p class="textarea">
<textarea name="tastyartists" id="tastyartists" rows="2" cols="40"></textarea>
</p>
<p class="input">
<input type="submit" class="confirmButton" name="comparetaste" value="Compare!" id="comparetaste" />
</p>
</form>
<span class="moduleOptions" id="tasteometertoggle" style="display: none; visibility:hidden;"><a href="#">Compare seu gosto musical</a></span>
<span class="moduleOptions" id="tasteometerjoin"><a href="/join">Crie seu próprio perfil musical</a></span>
</p>
</div>
<script>
LFM.set("Page", {
TasteometerCalibrating: "Calibrando o Taste-o-meter…",
TasteometerURL: "/user/Kerensky97/tasteomatic"
});
LFM.Page.compareTaste();
</script>
</div>
<div class="module moduletracks" id="recentTracks">
<h2 class="heading"><span class="h2Wrapper"><a href="/user/Kerensky97/tracks" title="">Últimas faixas</a></span></h2> <div id="recentTracksButtons" class="moduleButtons">
<a class="mEmbed" href="#">Incorporar</a>
|
<a href="http://ws.audioscrobbler.com/1.0/user/Kerensky97/recenttracks.rss"><img class="feed_small_icon transparent_png" width="10" height="10" src="http://cdn.last.fm/favicons/feed_small.gif" /></a>
</div>
<script>
LFM.set("Page", {
libraryModule: new LFM.Module.Buttons("recentTracks", {
moduleName: "tracks",
embedURL: '/widgets/chart?chartType=recenttracks'
})
});
</script>
<div class="module-body">
<div class="recentTracksContainer">
<table class="candyStriped tracklist withimages" id="recentTracks">
<tbody> <tr class="first odd" id="r9_2716284_1641568691">
<td class="imageCell imageSmall ">
<a href="/music/The+Beatles/_/She%27s+a+Woman"><img height="34" width="34" alt="" src="http://images.amazon.com/images/P/B000007MVD.01.MZZZZZZZ.jpg" /></a> </td>
<td class="playbuttonCell ">
<div></div>
</td>
<td class="subjectCell ">
<a href="/music/The+Beatles">The Beatles</a> – <a href="/music/The+Beatles/_/She%27s+a+Woman">She's a Woman</a> </td>
<td class="lovedCell">
</td>
<td class="smallmultibuttonCell ">
<a href="/music/The+Beatles/_/She%27s+a+Woman" class=" mAddToLibrary mSend
mAddTags
mAddToPlaylist
lfmButton lfmMultiButton lfmButtonFortrack lfmSmallButton lfmSmallMultiButton lfmMultiButtonFull
" forcelink="1"><span></span></a> </td>
<td class="dateCell ">
<span class="date">8 horas atrás</span>
</td>
</tr><tr class="streamable" id="r9_1673596_2001993286">
<td class="imageCell imageSmall ">
<a href="/music/GWAR/_/Penguin+Attack"><img height="34" width="34" alt="" src="http://images.amazon.com/images/P/B000001C9P.01.THUMBZZZ.jpg" /></a> </td>
<td class="playbuttonCell ">
<div><a class="playbutton" href="/music/GWAR/_/Penguin+Attack?autostart" rel="nofollow"><img class="play_icon transparent_png" width="17" height="17" alt="Tocar" src="http://cdn.last.fm/flatness/global/icon_play.png" /></a></div>
</td>
<td class="subjectCell ">
<a href="/music/GWAR">GWAR</a> – <a href="/music/GWAR/_/Penguin+Attack">Penguin Attack</a> </td>
<td class="lovedCell">
<img class="loved_indicator_icon transparent_png" width="11" height="9" src="http://cdn.last.fm/flatness/global/icon_loved_indicator.2.png" /> </td>
<td class="smallmultibuttonCell ">
<a href="/music/GWAR/_/Penguin+Attack" class=" mAddToLibrary mSend
mAddTags
mAddToPlaylist
lfmButton lfmMultiButton lfmButtonFortrack lfmSmallButton lfmSmallMultiButton lfmMultiButtonFull
" forcelink="1"><span></span></a> </td>
<td class="dateCell ">
<span class="date">8 horas atrás</span>
</td>
</tr><tr class="odd" id="r9_4524688_1940809757">
<td class="imageCell imageSmall ">
<a href="/music/Dream/_/Puzzle"><img width="34" alt="" src="http://userserve-ak.last.fm/serve/34s/405901.jpg" /></a> </td>
<td class="playbuttonCell ">
<div></div>
</td>
<td class="subjectCell ">
<a href="/music/Dream">Dream</a> – <a href="/music/Dream/_/Puzzle">Puzzle</a> </td>
<td class="lovedCell">
<img class="loved_indicator_icon transparent_png" width="11" height="9" src="http://cdn.last.fm/flatness/global/icon_loved_indicator.2.png" /> </td>
<td class="smallmultibuttonCell ">
<a href="/music/Dream/_/Puzzle" class=" mAddToLibrary mSend
mAddTags
mAddToPlaylist
lfmButton lfmMultiButton lfmButtonFortrack lfmSmallButton lfmSmallMultiButton lfmMultiButtonFull
" forcelink="1"><span></span></a> </td>
<td class="dateCell ">
<span class="date">8 horas atrás</span>
</td>
</tr><tr class="" id="r9_2856836_423251138">
<td class="imageCell imageSmall ">
<a href="/music/Dane+Cook/_/Speak+%27N%27+Spell"><img height="34" width="34" alt="" src="http://userserve-ak.last.fm/serve/34s/8675381.jpg" /></a> </td>
<td class="playbuttonCell ">
<div></div>
</td>
<td class="subjectCell ">
<a href="/music/Dane+Cook">Dane Cook</a> – <a href="/music/Dane+Cook/_/Speak+%27N%27+Spell">Speak 'N' Spell</a> </td>
<td class="lovedCell">
</td>
<td class="smallmultibuttonCell ">
<a href="/music/Dane+Cook/_/Speak+%27N%27+Spell" class=" mAddToLibrary mSend
mAddTags
mAddToPlaylist
lfmButton lfmMultiButton lfmButtonFortrack lfmSmallButton lfmSmallMultiButton lfmMultiButtonFull
" forcelink="1"><span></span></a> </td>
<td class="dateCell ">
<span class="date">8 horas atrás</span>
</td>
</tr><tr class="odd" id="r9_270896651_787874588">
<td class="imageCell imageSmall ">
<a href="/music/Morning+Musume./_/Morning+Coffee"><img class="defaultImage" width="34" alt="" src="http://cdn.last.fm/flatness/catalogue/noimage/2/default_artist_small.png" /></a> </td>
<td class="playbuttonCell ">
<div></div>
</td>
<td class="subjectCell ">
<a href="/music/+noredirect/Morning+Musume.">Morning Musume.</a> – <a href="/music/Morning+Musume./_/Morning+Coffee">Morning Coffee</a> </td>
<td class="lovedCell">
</td>
<td class="smallmultibuttonCell ">
<a href="/music/Morning+Musume./_/Morning+Coffee" class=" mAddToLibrary mSend
mAddTags
mAddToPlaylist
lfmButton lfmMultiButton lfmButtonFortrack lfmSmallButton lfmSmallMultiButton lfmMultiButtonFull
" forcelink="1"><span></span></a> </td>
<td class="dateCell ">
<span class="date">8 horas atrás</span>
</td>
</tr><tr class="streamable" id="r9_1047332_620001082">
<td class="imageCell imageSmall ">
<a href="/music/Bay+City+Rollers/_/Saturday+Night"><img height="34" width="34" alt="" src="http://userserve-ak.last.fm/serve/34s/12623699.jpg" /></a> </td>
<td class="playbuttonCell ">
<div><a class="playbutton" href="/music/Bay+City+Rollers/_/Saturday+Night?autostart" rel="nofollow"><img class="play_icon transparent_png" width="17" height="17" alt="Tocar" src="http://cdn.last.fm/flatness/global/icon_play.png" /></a></div>
</td>
<td class="subjectCell ">
<a href="/music/Bay+City+Rollers">Bay City Rollers</a> – <a href="/music/Bay+City+Rollers/_/Saturday+Night">Saturday Night</a> </td>
<td class="lovedCell">
<img class="loved_indicator_icon transparent_png" width="11" height="9" src="http://cdn.last.fm/flatness/global/icon_loved_indicator.2.png" /> </td>
<td class="smallmultibuttonCell ">
<a href="/music/Bay+City+Rollers/_/Saturday+Night" class=" mAddToLibrary mSend
mAddTags
mAddToPlaylist
lfmButton lfmMultiButton lfmButtonFortrack lfmSmallButton lfmSmallMultiButton lfmMultiButtonFull
" forcelink="1"><span></span></a> </td>
<td class="dateCell ">
<span class="date">8 horas atrás</span>
</td>
</tr><tr class="odd" id="r9_1051050_2145228023">
<td class="imageCell imageSmall ">
<a href="/music/Bad+Religion/_/New+America"><img height="34" width="34" alt="" src="http://userserve-ak.last.fm/serve/34s/23060375.jpg" /></a> </td>
<td class="playbuttonCell ">
<div></div>
</td>
<td class="subjectCell ">
<a href="/music/Bad+Religion">Bad Religion</a> – <a href="/music/Bad+Religion/_/New+America">New America</a> </td>
<td class="lovedCell">
<img class="loved_indicator_icon transparent_png" width="11" height="9" src="http://cdn.last.fm/flatness/global/icon_loved_indicator.2.png" /> </td>
<td class="smallmultibuttonCell ">
<a href="/music/Bad+Religion/_/New+America" class=" mAddToLibrary mSend
mAddTags
mAddToPlaylist
lfmButton lfmMultiButton lfmButtonFortrack lfmSmallButton lfmSmallMultiButton lfmMultiButtonFull
" forcelink="1"><span></span></a> </td>
<td class="dateCell ">
<span class="date">8 horas atrás</span>
</td>
</tr><tr class="" id="r9_7954967_1402905066">
<td class="imageCell imageSmall ">
<a href="/music/Dream/_/Hello+Goodbye"><img height="34" width="34" alt="" src="http://images-jp.amazon.com/images/P/B00005HL13.09.MZZZZZZZ.jpg" /></a> </td>
<td class="playbuttonCell ">
<div></div>
</td>
<td class="subjectCell ">
<a href="/music/Dream">Dream</a> – <a href="/music/Dream/_/Hello+Goodbye">Hello Goodbye</a> </td>
<td class="lovedCell">
<img class="loved_indicator_icon transparent_png" width="11" height="9" src="http://cdn.last.fm/flatness/global/icon_loved_indicator.2.png" /> </td>
<td class="smallmultibuttonCell ">
<a href="/music/Dream/_/Hello+Goodbye" class=" mAddToLibrary mSend
mAddTags
mAddToPlaylist
lfmButton lfmMultiButton lfmButtonFortrack lfmSmallButton lfmSmallMultiButton lfmMultiButtonFull
" forcelink="1"><span></span></a> </td>
<td class="dateCell ">
<span class="date">9 horas atrás</span>
</td>
</tr><tr class="odd" id="r9_1000140_1346292078">
<td class="imageCell imageSmall ">
<a href="/music/The+Beatles/_/Birthday"><img height="34" width="34" alt="" src="http://userserve-ak.last.fm/serve/34s/17974409.jpg" /></a> </td>
<td class="playbuttonCell ">
<div></div>
</td>
<td class="subjectCell ">
<a href="/music/The+Beatles">The Beatles</a> – <a href="/music/The+Beatles/_/Birthday">Birthday</a> </td>
<td class="lovedCell">
<img class="loved_indicator_icon transparent_png" width="11" height="9" src="http://cdn.last.fm/flatness/global/icon_loved_indicator.2.png" /> </td>
<td class="smallmultibuttonCell ">
<a href="/music/The+Beatles/_/Birthday" class=" mAddToLibrary mSend
mAddTags
mAddToPlaylist
lfmButton lfmMultiButton lfmButtonFortrack lfmSmallButton lfmSmallMultiButton lfmMultiButtonFull
" forcelink="1"><span></span></a> </td>
<td class="dateCell ">
<span class="date">9 horas atrás</span>
</td>
</tr><tr class="last" id="r9_1486026_1879686564">
<td class="imageCell imageSmall ">
<a href="/music/David+Cross/_/Organ+Donation"><img width="34" alt="" src="http://userserve-ak.last.fm/serve/34s/396246.gif" /></a> </td>
<td class="playbuttonCell ">
<div></div>
</td>
<td class="subjectCell ">
<a href="/music/David+Cross">David Cross</a> – <a href="/music/David+Cross/_/Organ+Donation">Organ Donation</a> </td>
<td class="lovedCell">
</td>
<td class="smallmultibuttonCell ">
<a href="/music/David+Cross/_/Organ+Donation" class=" mAddToLibrary mSend
mAddTags
mAddToPlaylist
lfmButton lfmMultiButton lfmButtonFortrack lfmSmallButton lfmSmallMultiButton lfmMultiButtonFull
" forcelink="1"><span></span></a> </td>
<td class="dateCell ">
<span class="date">9 horas atrás</span>
</td>
</tr>
</tbody>
</table>
<span class="moduleOptions">
<a href="/user/Kerensky97/tracks" title="">Ver mais</a> </span>
</div></div>
</div>
<div id="taste" class="clearit module modulelibrary">
<h2 class="heading"><span class="h2Wrapper"><a href="/user/Kerensky97/library" title="">Biblioteca de Kerensky97 (3.787 artistas)</a></span></h2>
<div class="module-body">
<div class="libraryStation">
<a class="stationbutton stationbuttonMedium3" title="Biblioteca de Kerensky97" href="/listen/user/Kerensky97/personal">
<span class="stationButtonWrapper">
Executar biblioteca de Kerensky97
</span>
</a>
</div><!-- .libraryStation -->
<ul class=" libraryItems artistsLarge
">
<li class=" first" id="r6_1991">
<a href="/music/Cake"><span class="pictureFrame"><span class="image"><img width="126" alt="" src="http://userserve-ak.last.fm/serve/126s/2311248.jpg" /></span><span class="overlay"></span></span><strong class="name">Cake</strong></a> <a href="/user/Kerensky97/library/music/Cake" class="plays" rel="nofollow">(9 execuções)</a> <a class="playbutton" href="/music/Cake?autostart" rel="nofollow"><img class="play_icon transparent_png" width="17" height="17" alt="Tocar" src="http://cdn.last.fm/flatness/global/icon_play.png" /></a>
</li><li id="r6_5804">
<a href="/music/The+Living+End"><span class="pictureFrame"><span class="image"><img width="126" alt="" src="http://userserve-ak.last.fm/serve/126s/6759925.jpg" /></span><span class="overlay"></span></span><strong class="name">The Living End</strong></a> <a href="/user/Kerensky97/library/music/The+Living+End" class="plays" rel="nofollow">(8 execuções)</a> <a class="playbutton" href="/music/The+Living+End?autostart" rel="nofollow"><img class="play_icon transparent_png" width="17" height="17" alt="Tocar" src="http://cdn.last.fm/flatness/global/icon_play.png" /></a>
</li><li id="r6_1008354">
<a href="/music/Suburban+Legends"><span class="pictureFrame"><span class="image"><img width="126" alt="" src="http://userserve-ak.last.fm/serve/126s/528831.jpg" /></span><span class="overlay"></span></span><strong class="name">Suburban Legends</strong></a> <a href="/user/Kerensky97/library/music/Suburban+Legends" class="plays" rel="nofollow">(8 execuções)</a> <a class="playbutton" href="/music/Suburban+Legends?autostart" rel="nofollow"><img class="play_icon transparent_png" width="17" height="17" alt="Tocar" src="http://cdn.last.fm/flatness/global/icon_play.png" /></a>
</li><li id="r6_1016335">
<a href="/music/Rhapsody"><span class="pictureFrame"><span class="image"><img width="126" alt="" src="http://userserve-ak.last.fm/serve/126s/2272871.jpg" /></span><span class="overlay"></span></span><strong class="name">Rhapsody</strong></a> <a href="/user/Kerensky97/library/music/Rhapsody" class="plays" rel="nofollow">(6 execuções)</a> <a class="playbutton" href="/music/Rhapsody?autostart" rel="nofollow"><img class="play_icon transparent_png" width="17" height="17" alt="Tocar" src="http://cdn.last.fm/flatness/global/icon_play.png" /></a>
</li><li id="r6_421">
<a href="/music/Operation+Ivy"><span class="pictureFrame"><span class="image"><img width="126" alt="" src="http://userserve-ak.last.fm/serve/126s/76517.jpg" /></span><span class="overlay"></span></span><strong class="name">Operation Ivy</strong></a> <a href="/user/Kerensky97/library/music/Operation+Ivy" class="plays" rel="nofollow">(5 execuções)</a> <a class="playbutton" href="/music/Operation+Ivy?autostart" rel="nofollow"><img class="play_icon transparent_png" width="17" height="17" alt="Tocar" src="http://cdn.last.fm/flatness/global/icon_play.png" /></a>
</li><li id="r6_1287702">
<a href="/music/%E5%80%96%E7%94%B0%E4%BE%86%E6%9C%AA" title="Koda Kumi"><span class="pictureFrame"><span class="image"><img width="126" alt="" src="http://userserve-ak.last.fm/serve/126s/22803673.jpg" /></span><span class="overlay"></span></span><strong class="name">倖田來未</strong></a> <a href="/user/Kerensky97/library/music/%E5%80%96%E7%94%B0%E4%BE%86%E6%9C%AA" class="plays" rel="nofollow">(5 execuções)</a> <a class="playbutton" href="/music/%E5%80%96%E7%94%B0%E4%BE%86%E6%9C%AA?autostart" rel="nofollow"><img class="play_icon transparent_png" width="17" height="17" alt="Tocar" src="http://cdn.last.fm/flatness/global/icon_play.png" /></a>
</li><li id="r6_1308212">
<a href="/music/Street+Dogs"><span class="pictureFrame"><span class="image"><img width="126" alt="" src="http://userserve-ak.last.fm/serve/126s/29887.jpg" /></span><span class="overlay"></span></span><strong class="name">Street Dogs</strong></a> <a href="/user/Kerensky97/library/music/Street+Dogs" class="plays" rel="nofollow">(4 execuções)</a> <a class="playbutton" href="/music/Street+Dogs?autostart" rel="nofollow"><img class="play_icon transparent_png" width="17" height="17" alt="Tocar" src="http://cdn.last.fm/flatness/global/icon_play.png" /></a>
</li><li class=" last" id="r6_6714280">
<a href="/music/%E7%BE%8E%E5%8B%87%E4%BC%9D" title="Biyuuden"><span class="pictureFrame"><span class="image"><img width="126" alt="" src="http://userserve-ak.last.fm/serve/126s/162032.jpg" /></span><span class="overlay"></span></span><strong class="name">美勇伝</strong></a> <a href="/user/Kerensky97/library/music/%E7%BE%8E%E5%8B%87%E4%BC%9D" class="plays" rel="nofollow">(4 execuções)</a> <a class="playbutton" href="/music/%E7%BE%8E%E5%8B%87%E4%BC%9D?autostart" rel="nofollow"><img class="play_icon transparent_png" width="17" height="17" alt="Tocar" src="http://cdn.last.fm/flatness/global/icon_play.png" /></a>
</li>
</ul>
<div id="tasteCocktail">
<div class="twoCols">
<div class="lovedTracks leftColumn">
<div class="wrapper">
<h3><a href="/user/Kerensky97/library/loved" class="icon" title=""><img class="loved_indicator_icon transparent_png" width="11" height="9" src="http://cdn.last.fm/flatness/global/icon_loved_indicator.2.png" /><span>Faixas preferidas (5418)</span></a></h3>
<p>
Última faixa preferida: <a href="/music/Ladysmith+Black+Mambazo">Ladysmith Black Mambazo</a> – <a href="/music/Ladysmith+Black+Mambazo/_/I%27ll+Take+You+There">I'll Take You There</a> </p>
</div>
</div>
<div class="playlists rightColumn">
<div class="wrapper">
<h3><a href="/user/Kerensky97/library/playlists" class="icon" title=""><img class="playlist_icon transparent_png" width="13" height="10" src="http://cdn.last.fm/flatness/global/icon_playlist.png" /><span>Listas (1)</span></a></h3>
<p>
Incluindo: <a href="/user/Kerensky97/library/playlists/632_some_random_favorites" class="topPlaylist">Some Random Favorites, 50 faixas</a> </p>
</div>
</div>
</div><!-- .twoCols -->
<div class="tags wrapper">
<h3><a href="/user/Kerensky97/library/tags" class="icon" title=""><img class="tag_icon transparent_png" width="14" height="14" src="http://cdn.last.fm/flatness/global/icon_tag3.png" /><span>Tags (526)</span></a></h3>
<p>
<a href="/user/Kerensky97/library/tags?tag=untaggedhome">untaggedhome</a>, <a href="/user/Kerensky97/library/tags?tag=albums+i+own">albums i own</a>, <a href="/user/Kerensky97/library/tags?tag=punk">punk</a>, <a href="/user/Kerensky97/library/tags?tag=punk+favorites">punk favorites</a>, <a href="/user/Kerensky97/library/tags?tag=rock">rock</a>, <a href="/user/Kerensky97/library/tags?tag=great+songs">great songs</a>, <a href="/user/Kerensky97/library/tags?tag=rock+favorites">rock favorites</a>, <a href="/user/Kerensky97/library/tags?tag=cover+favorites">cover favorites</a>, <a href="/user/Kerensky97/library/tags?tag=jpop">jpop</a>, <a href="/user/Kerensky97/library/tags?tag=pop">pop</a> e <a href="/user/Kerensky97/library/tags">516 outras…</a> </p>
</div>
</div><!-- #tasteCocktail -->
<span class="moduleOptions"><a href="/user/Kerensky97/library">Ver mais</a></span>
</div>
</div><!-- #taste -->
<div id="charts569505" class="module modulechartsartists">
<div id="charts569505Buttons" class="moduleButtons">
<a class="mEmbed" href="#">Incorporar</a> |
<a class="mFeeds" href="#">Feeds</a>
</div>
<h2 class="heading"><span class="h2Wrapper"><a href="/user/Kerensky97/charts?subtype=artists" title=""> Principais artistas
</a></span></h2> <div class="horizontalOptions clearit">
<ul>
<li class=" first chartweek"><a href="/user/Kerensky97/charts?rangetype=week&subtype=artists">Últimos 7 dias</a></li> <li class=" current chart3month"><a href="/user/Kerensky97/charts?rangetype=3month&subtype=artists">Últimos 3 meses</a></li> <li class="chart6month"><a href="/user/Kerensky97/charts?rangetype=6month&subtype=artists">Últimos 6 meses</a></li> <li class="chartyear"><a href="/user/Kerensky97/charts?rangetype=year&subtype=artists">Últimos 12 meses</a></li> <li class="chartoverall"><a href="/user/Kerensky97/charts?rangetype=overall&subtype=artists">Geral</a></li>
</ul> </div><!-- .horizontalOptions -->
<div class="module-body chart chart3month current">
<table class="candyStriped chart">
<tbody> <tr class="first odd">
<td class="positionCell">
1
</td>
<td class="playbuttonCell">
<a class="playbutton" href="/music/Freedom+Call?autostart" rel="nofollow"><img class="play_icon transparent_png" width="17" height="17" alt="Tocar" src="http://cdn.last.fm/flatness/global/icon_play.png" /></a> </td>
<td class="subjectCell" title="Freedom Call, executada 93 vezes">
<div>
<a href="/music/Freedom+Call">Freedom Call</a>
</div>
</td>
<td class="multibuttonCell">
<a href="/music/Freedom+Call" class=" mAddToLibrary mSend
mAddTags
lfmButton lfmMultiButton lfmButtonForartist lfmSmallButton lfmSmallMultiButton lfmMultiButtonFull
" forcelink="1"><span></span></a> </td>
<td class="chartbarCell">
<div style="width:100%;" class="chartbar"><span>93</span></div> </td>
</tr><tr class="">
<td class="positionCell">
2
</td>
<td class="playbuttonCell">
<a class="playbutton" href="/music/Beastie+Boys?autostart" rel="nofollow"><img class="play_icon transparent_png" width="17" height="17" alt="Tocar" src="http://cdn.last.fm/flatness/global/icon_play.png" /></a> </td>
<td class="subjectCell" title="Beastie Boys, executada 87 vezes">
<div>
<a href="/music/Beastie+Boys">Beastie Boys</a>
</div>
</td>
<td class="multibuttonCell">
<a href="/music/Beastie+Boys" class=" mAddToLibrary mSend
mAddTags
lfmButton lfmMultiButton lfmButtonForartist lfmSmallButton lfmSmallMultiButton lfmMultiButtonFull
" forcelink="1"><span></span></a> </td>
<td class="chartbarCell">
<div style="width:93%;" class="chartbar"><span>87</span></div> </td>
</tr><tr class="odd">
<td class="positionCell">
3
</td>
<td class="playbuttonCell">
<a class="playbutton" href="/music/Street+Dogs?autostart" rel="nofollow"><img class="play_icon transparent_png" width="17" height="17" alt="Tocar" src="http://cdn.last.fm/flatness/global/icon_play.png" /></a> </td>
<td class="subjectCell" title="Street Dogs, executada 77 vezes">
<div>
<a href="/music/Street+Dogs">Street Dogs</a>
</div>
</td>
<td class="multibuttonCell">
<a href="/music/Street+Dogs" class=" mAddToLibrary mSend
mAddTags
lfmButton lfmMultiButton lfmButtonForartist lfmSmallButton lfmSmallMultiButton lfmMultiButtonFull
" forcelink="1"><span></span></a> </td>
<td class="chartbarCell">
<div style="width:82%;" class="chartbar"><span>77</span></div> </td>
</tr><tr class="">
<td class="positionCell">
4
</td>
<td class="playbuttonCell">
<a class="playbutton" href="/music/Polysics?autostart" rel="nofollow"><img class="play_icon transparent_png" width="17" height="17" alt="Tocar" src="http://cdn.last.fm/flatness/global/icon_play.png" /></a> </td>
<td class="subjectCell" title="Polysics, executada 65 vezes">
<div>
<a href="/music/Polysics">Polysics</a>
</div>
</td>
<td class="multibuttonCell">
<a href="/music/Polysics" class=" mAddToLibrary mSend
mAddTags
lfmButton lfmMultiButton lfmButtonForartist lfmSmallButton lfmSmallMultiButton lfmMultiButtonFull
" forcelink="1"><span></span></a> </td>
<td class="chartbarCell">
<div style="width:69%;" class="chartbar"><span>65</span></div> </td>
</tr><tr class="odd">
<td class="positionCell">
5
</td>
<td class="playbuttonCell">
<a class="playbutton" href="/music/Suburban+Legends?autostart" rel="nofollow"><img class="play_icon transparent_png" width="17" height="17" alt="Tocar" src="http://cdn.last.fm/flatness/global/icon_play.png" /></a> </td>
<td class="subjectCell" title="Suburban Legends, executada 57 vezes">
<div>
<a href="/music/Suburban+Legends">Suburban Legends</a>
</div>
</td>
<td class="multibuttonCell">
<a href="/music/Suburban+Legends" class=" mAddToLibrary mSend
mAddTags
lfmButton lfmMultiButton lfmButtonForartist lfmSmallButton lfmSmallMultiButton lfmMultiButtonFull
" forcelink="1"><span></span></a> </td>
<td class="chartbarCell">
<div style="width:61%;" class="chartbar"><span>57</span></div> </td>
</tr><tr class="">
<td class="positionCell">
6
</td>
<td class="playbuttonCell">
<a class="playbutton" href="/music/%E3%83%A2%E3%83%BC%E3%83%8B%E3%83%B3%E3%82%B0%E5%A8%98%E3%80%82?autostart" rel="nofollow"><img class="play_icon transparent_png" width="17" height="17" alt="Tocar" src="http://cdn.last.fm/flatness/global/icon_play.png" /></a> </td>
<td class="subjectCell" title="モーニング娘。, executada 51 vezes">
<div>
<a href="/music/%E3%83%A2%E3%83%BC%E3%83%8B%E3%83%B3%E3%82%B0%E5%A8%98%E3%80%82" title="Morning Musume.">モーニング娘。</a>
</div>
</td>
<td class="multibuttonCell">
<a href="/music/%E3%83%A2%E3%83%BC%E3%83%8B%E3%83%B3%E3%82%B0%E5%A8%98%E3%80%82" class=" mAddToLibrary mSend
mAddTags
lfmButton lfmMultiButton lfmButtonForartist lfmSmallButton lfmSmallMultiButton lfmMultiButtonFull
" forcelink="1" title="Morning Musume."><span></span></a> </td>
<td class="chartbarCell">
<div style="width:54%;" class="chartbar"><span>51</span></div> </td>
</tr><tr class="odd">
<td class="positionCell">
6
</td>
<td class="playbuttonCell">
<a class="playbutton" href="/music/mihimaru+GT?autostart" rel="nofollow"><img class="play_icon transparent_png" width="17" height="17" alt="Tocar" src="http://cdn.last.fm/flatness/global/icon_play.png" /></a> </td>
<td class="subjectCell" title="mihimaru GT, executada 51 vezes">
<div>
<a href="/music/mihimaru+GT">mihimaru GT</a>
</div>
</td>
<td class="multibuttonCell">
<a href="/music/mihimaru+GT" class=" mAddToLibrary mSend
mAddTags
lfmButton lfmMultiButton lfmButtonForartist lfmSmallButton lfmSmallMultiButton lfmMultiButtonFull
" forcelink="1"><span></span></a> </td>
<td class="chartbarCell">
<div style="width:54%;" class="chartbar"><span>51</span></div> </td>
</tr><tr class="">
<td class="positionCell">
8
</td>
<td class="playbuttonCell">
<a class="playbutton" href="/music/Scooter?autostart" rel="nofollow"><img class="play_icon transparent_png" width="17" height="17" alt="Tocar" src="http://cdn.last.fm/flatness/global/icon_play.png" /></a> </td>
<td class="subjectCell" title="Scooter, executada 42 vezes">
<div>
<a href="/music/Scooter">Scooter</a>
</div>
</td>
<td class="multibuttonCell">
<a href="/music/Scooter" class=" mAddToLibrary mSend
mAddTags
lfmButton lfmMultiButton lfmButtonForartist lfmSmallButton lfmSmallMultiButton lfmMultiButtonFull
" forcelink="1"><span></span></a> </td>
<td class="chartbarCell">
<div style="width:45%;" class="chartbar"><span>42</span></div> </td>
</tr><tr class="odd">
<td class="positionCell">
9
</td>
<td class="playbuttonCell">
<a class="playbutton" href="/music/DragonForce?autostart" rel="nofollow"><img class="play_icon transparent_png" width="17" height="17" alt="Tocar" src="http://cdn.last.fm/flatness/global/icon_play.png" /></a> </td>
<td class="subjectCell" title="DragonForce, executada 39 vezes">
<div>
<a href="/music/DragonForce">DragonForce</a>
</div>
</td>
<td class="multibuttonCell">
<a href="/music/DragonForce" class=" mAddToLibrary mSend
mAddTags
lfmButton lfmMultiButton lfmButtonForartist lfmSmallButton lfmSmallMultiButton lfmMultiButtonFull
" forcelink="1"><span></span></a> </td>
<td class="chartbarCell">
<div style="width:41%;" class="chartbar"><span>39</span></div> </td>
</tr><tr class="">
<td class="positionCell">
10
</td>
<td class="playbuttonCell">
<a class="playbutton" href="/music/Operation+Ivy?autostart" rel="nofollow"><img class="play_icon transparent_png" width="17" height="17" alt="Tocar" src="http://cdn.last.fm/flatness/global/icon_play.png" /></a> </td>
<td class="subjectCell" title="Operation Ivy, executada 38 vezes">
<div>
<a href="/music/Operation+Ivy">Operation Ivy</a>
</div>
</td>
<td class="multibuttonCell">
<a href="/music/Operation+Ivy" class=" mAddToLibrary mSend
mAddTags
lfmButton lfmMultiButton lfmButtonForartist lfmSmallButton lfmSmallMultiButton lfmMultiButtonFull
" forcelink="1"><span></span></a> </td>
<td class="chartbarCell">