hornairs-scrobbler 0.2.3

Sign up to get free protection for your applications and to get access to all the features.
Files changed (161) hide show
  1. data/.gitignore +13 -0
  2. data/.loadpath +5 -0
  3. data/History.txt +5 -0
  4. data/MIT-LICENSE +19 -0
  5. data/Manifest +75 -0
  6. data/README.rdoc +104 -0
  7. data/Rakefile +10 -0
  8. data/VERSION.yml +5 -0
  9. data/examples/album.rb +20 -0
  10. data/examples/artist.rb +13 -0
  11. data/examples/playlist.rb +7 -0
  12. data/examples/scrobble.rb +31 -0
  13. data/examples/tag.rb +11 -0
  14. data/examples/track.rb +12 -0
  15. data/examples/user.rb +15 -0
  16. data/lib/scrobbler.rb +33 -0
  17. data/lib/scrobbler/album.rb +181 -0
  18. data/lib/scrobbler/artist.rb +165 -0
  19. data/lib/scrobbler/auth.rb +47 -0
  20. data/lib/scrobbler/base.rb +105 -0
  21. data/lib/scrobbler/event.rb +105 -0
  22. data/lib/scrobbler/geo.rb +27 -0
  23. data/lib/scrobbler/helper/image.rb +52 -0
  24. data/lib/scrobbler/helper/streamable.rb +40 -0
  25. data/lib/scrobbler/library.rb +112 -0
  26. data/lib/scrobbler/playing.rb +49 -0
  27. data/lib/scrobbler/playlist.rb +87 -0
  28. data/lib/scrobbler/radio.rb +12 -0
  29. data/lib/scrobbler/rest.rb +47 -0
  30. data/lib/scrobbler/scrobble.rb +116 -0
  31. data/lib/scrobbler/session.rb +9 -0
  32. data/lib/scrobbler/shout.rb +21 -0
  33. data/lib/scrobbler/simpleauth.rb +60 -0
  34. data/lib/scrobbler/tag.rb +113 -0
  35. data/lib/scrobbler/track.rb +152 -0
  36. data/lib/scrobbler/user.rb +222 -0
  37. data/lib/scrobbler/venue.rb +67 -0
  38. data/setup.rb +1585 -0
  39. data/tasks/jeweler.rake +15 -0
  40. data/tasks/rdoc.rake +7 -0
  41. data/tasks/tests.rake +13 -0
  42. data/tasks/yardoc.rake +8 -0
  43. data/test/fixtures/xml/album/info.xml +43 -0
  44. data/test/fixtures/xml/artist/fans.xml +52 -0
  45. data/test/fixtures/xml/artist/info.xml +58 -0
  46. data/test/fixtures/xml/artist/similar.xml +1004 -0
  47. data/test/fixtures/xml/artist/topalbums.xml +61 -0
  48. data/test/fixtures/xml/artist/toptags.xml +19 -0
  49. data/test/fixtures/xml/artist/toptracks.xml +62 -0
  50. data/test/fixtures/xml/auth/session.xml +7 -0
  51. data/test/fixtures/xml/auth/token.xml +3 -0
  52. data/test/fixtures/xml/event/attend.xml +3 -0
  53. data/test/fixtures/xml/event/attendees.xml +53 -0
  54. data/test/fixtures/xml/event/event.xml +35 -0
  55. data/test/fixtures/xml/event/shouts.xml +35 -0
  56. data/test/fixtures/xml/geo/events-distance-p1.xml +151 -0
  57. data/test/fixtures/xml/geo/events-lat-long.xml +167 -0
  58. data/test/fixtures/xml/geo/events-p1.xml +152 -0
  59. data/test/fixtures/xml/geo/events-p2.xml +380 -0
  60. data/test/fixtures/xml/geo/events-p3.xml +427 -0
  61. data/test/fixtures/xml/geo/top_artists-p1.xml +76 -0
  62. data/test/fixtures/xml/geo/top_tracks-p1.xml +77 -0
  63. data/test/fixtures/xml/library/albums-f30.xml +454 -0
  64. data/test/fixtures/xml/library/albums-p1.xml +754 -0
  65. data/test/fixtures/xml/library/albums-p2.xml +754 -0
  66. data/test/fixtures/xml/library/albums-p3.xml +754 -0
  67. data/test/fixtures/xml/library/albums-p4.xml +739 -0
  68. data/test/fixtures/xml/library/albums-p5.xml +754 -0
  69. data/test/fixtures/xml/library/albums-p6.xml +754 -0
  70. data/test/fixtures/xml/library/albums-p7.xml +739 -0
  71. data/test/fixtures/xml/library/albums-p8.xml +724 -0
  72. data/test/fixtures/xml/library/artists-f30.xml +334 -0
  73. data/test/fixtures/xml/library/artists-p1.xml +554 -0
  74. data/test/fixtures/xml/library/artists-p2.xml +554 -0
  75. data/test/fixtures/xml/library/artists-p3.xml +554 -0
  76. data/test/fixtures/xml/library/artists-p4.xml +554 -0
  77. data/test/fixtures/xml/library/artists-p5.xml +554 -0
  78. data/test/fixtures/xml/library/artists-p6.xml +554 -0
  79. data/test/fixtures/xml/library/artists-p7.xml +444 -0
  80. data/test/fixtures/xml/library/tracks-f30.xml +472 -0
  81. data/test/fixtures/xml/library/tracks-p1.xml +789 -0
  82. data/test/fixtures/xml/library/tracks-p10.xml +771 -0
  83. data/test/fixtures/xml/library/tracks-p11.xml +792 -0
  84. data/test/fixtures/xml/library/tracks-p12.xml +777 -0
  85. data/test/fixtures/xml/library/tracks-p13.xml +762 -0
  86. data/test/fixtures/xml/library/tracks-p14.xml +759 -0
  87. data/test/fixtures/xml/library/tracks-p15.xml +762 -0
  88. data/test/fixtures/xml/library/tracks-p16.xml +756 -0
  89. data/test/fixtures/xml/library/tracks-p17.xml +780 -0
  90. data/test/fixtures/xml/library/tracks-p18.xml +756 -0
  91. data/test/fixtures/xml/library/tracks-p19.xml +774 -0
  92. data/test/fixtures/xml/library/tracks-p2.xml +765 -0
  93. data/test/fixtures/xml/library/tracks-p20.xml +777 -0
  94. data/test/fixtures/xml/library/tracks-p21.xml +777 -0
  95. data/test/fixtures/xml/library/tracks-p22.xml +771 -0
  96. data/test/fixtures/xml/library/tracks-p23.xml +765 -0
  97. data/test/fixtures/xml/library/tracks-p24.xml +783 -0
  98. data/test/fixtures/xml/library/tracks-p25.xml +777 -0
  99. data/test/fixtures/xml/library/tracks-p26.xml +777 -0
  100. data/test/fixtures/xml/library/tracks-p27.xml +756 -0
  101. data/test/fixtures/xml/library/tracks-p28.xml +771 -0
  102. data/test/fixtures/xml/library/tracks-p29.xml +753 -0
  103. data/test/fixtures/xml/library/tracks-p3.xml +771 -0
  104. data/test/fixtures/xml/library/tracks-p30.xml +780 -0
  105. data/test/fixtures/xml/library/tracks-p31.xml +753 -0
  106. data/test/fixtures/xml/library/tracks-p32.xml +771 -0
  107. data/test/fixtures/xml/library/tracks-p33.xml +762 -0
  108. data/test/fixtures/xml/library/tracks-p34.xml +538 -0
  109. data/test/fixtures/xml/library/tracks-p4.xml +792 -0
  110. data/test/fixtures/xml/library/tracks-p5.xml +780 -0
  111. data/test/fixtures/xml/library/tracks-p6.xml +789 -0
  112. data/test/fixtures/xml/library/tracks-p7.xml +789 -0
  113. data/test/fixtures/xml/library/tracks-p8.xml +780 -0
  114. data/test/fixtures/xml/library/tracks-p9.xml +774 -0
  115. data/test/fixtures/xml/tag/similar.xml +254 -0
  116. data/test/fixtures/xml/tag/topalbums.xml +805 -0
  117. data/test/fixtures/xml/tag/topartists.xml +605 -0
  118. data/test/fixtures/xml/tag/toptags.xml +1254 -0
  119. data/test/fixtures/xml/tag/toptracks.xml +852 -0
  120. data/test/fixtures/xml/track/fans.xml +34 -0
  121. data/test/fixtures/xml/track/info.xml +53 -0
  122. data/test/fixtures/xml/track/toptags.xml +504 -0
  123. data/test/fixtures/xml/user/events.xml +401 -0
  124. data/test/fixtures/xml/user/friends.xml +30 -0
  125. data/test/fixtures/xml/user/lovedtracks.xml +678 -0
  126. data/test/fixtures/xml/user/neighbours.xml +23 -0
  127. data/test/fixtures/xml/user/playlists.xml +61 -0
  128. data/test/fixtures/xml/user/profile.xml +12 -0
  129. data/test/fixtures/xml/user/recentbannedtracks.xml +24 -0
  130. data/test/fixtures/xml/user/recentlovedtracks.xml +24 -0
  131. data/test/fixtures/xml/user/recenttracks.xml +124 -0
  132. data/test/fixtures/xml/user/systemrecs.xml +18 -0
  133. data/test/fixtures/xml/user/topalbums.xml +61 -0
  134. data/test/fixtures/xml/user/topartists.xml +41 -0
  135. data/test/fixtures/xml/user/toptags.xml +44 -0
  136. data/test/fixtures/xml/user/toptracks.xml +65 -0
  137. data/test/fixtures/xml/user/weeklyalbumchart.xml +256 -0
  138. data/test/fixtures/xml/user/weeklyartistchart.xml +220 -0
  139. data/test/fixtures/xml/user/weeklytrackchart.xml +746 -0
  140. data/test/fixtures/xml/venue/events.xml +151 -0
  141. data/test/fixtures/xml/venue/venue.xml +16 -0
  142. data/test/mocks/rest.rb +212 -0
  143. data/test/spec_helper.rb +7 -0
  144. data/test/test_helper.rb +20 -0
  145. data/test/unit/album_spec.rb +52 -0
  146. data/test/unit/artist_spec.rb +130 -0
  147. data/test/unit/auth_spec.rb +36 -0
  148. data/test/unit/event_spec.rb +109 -0
  149. data/test/unit/geo_spec.rb +148 -0
  150. data/test/unit/library_spec.rb +133 -0
  151. data/test/unit/playing_test.rb +53 -0
  152. data/test/unit/playlist_spec.rb +25 -0
  153. data/test/unit/radio_spec.rb +22 -0
  154. data/test/unit/scrobble_spec.rb +55 -0
  155. data/test/unit/scrobble_test.rb +69 -0
  156. data/test/unit/simpleauth_test.rb +45 -0
  157. data/test/unit/tag_spec.rb +101 -0
  158. data/test/unit/track_spec.rb +95 -0
  159. data/test/unit/user_spec.rb +264 -0
  160. data/test/unit/venue_spec.rb +104 -0
  161. metadata +265 -0
@@ -0,0 +1,15 @@
1
+ begin
2
+ require 'jeweler'
3
+ Jeweler::Tasks.new do |s|
4
+ s.name = "hornairs-scrobbler"
5
+ s.summary = "A ruby library for accessing the last.fm v2 webservices"
6
+ s.email = "harry@skylightlabs.ca"
7
+ s.homepage = "http://github.com/hornairs/scrobbler"
8
+ s.description = "A ruby library for accessing the last.fm v2 webservices"
9
+ s.authors = ['John Nunemaker', 'Jonathan Rudenberg', 'Uwe L. Korn', 'Harry Brundage']
10
+ s.add_dependency 'activesupport', '>=1.4.2'
11
+ s.add_dependency 'libxml-ruby'
12
+ end
13
+ rescue LoadError
14
+ puts "Jeweler not available. Install it with: sudo gem install technicalpickles-jeweler -s http://gems.github.com"
15
+ end
@@ -0,0 +1,7 @@
1
+ Rake::RDocTask.new do |rdoc|
2
+ rdoc.rdoc_dir = 'rdoc'
3
+ rdoc.title = 'scrobbler'
4
+ rdoc.options << '--line-numbers' << '--inline-source'
5
+ rdoc.rdoc_files.include('README*')
6
+ rdoc.rdoc_files.include('lib/**/*.rb')
7
+ end
@@ -0,0 +1,13 @@
1
+ desc "Run all tests"
2
+ Spec::Rake::SpecTask.new('test:unit') do |t|
3
+ begin
4
+ require 'rcov'
5
+ t.rcov = true
6
+ t.rcov_opts = ['--exclude', '/var/lib/gems']
7
+ rescue LoadError
8
+ t.rcov = false
9
+ end
10
+ t.spec_opts << '--format' << 'html:spec.html'
11
+ t.spec_opts << '--format' << 'progress'
12
+ t.spec_files = FileList['test/unit/*_spec.rb']
13
+ end
@@ -0,0 +1,8 @@
1
+ begin
2
+ require 'yard'
3
+ YARD::Rake::YardocTask.new do |t|
4
+ t.files = ['lib/**/*.rb'] # optional
5
+ end
6
+ rescue LoadError
7
+ puts "YARD not available. Install it with: sudo gem install yard"
8
+ end
@@ -0,0 +1,43 @@
1
+ <?xml version="1.0" encoding="utf-8"?>
2
+ <lfm status="ok">
3
+ <album>
4
+ <name>Some Hearts</name>
5
+ <artist>Carrie Underwood</artist>
6
+ <id>2317937</id>
7
+ <mbid>a33b9822-9f09-4e19-9d6e-e05af85c727b</mbid>
8
+ <url>http://www.last.fm/music/Carrie+Underwood/Some+Hearts</url>
9
+ <releasedate> 15 Nov 2005, 00:00</releasedate>
10
+ <image size="small">http://userserve-ak.last.fm/serve/34s/19874169.jpg</image>
11
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/19874169.jpg</image>
12
+ <image size="large">http://userserve-ak.last.fm/serve/174s/19874169.jpg</image>
13
+ <image size="extralarge">http://userserve-ak.last.fm/serve/300x300/19874169.jpg</image>
14
+ <listeners>131312</listeners>
15
+ <playcount>2096260</playcount>
16
+ <toptags>
17
+ <tag>
18
+ <name>country</name>
19
+ <url>http://www.last.fm/tag/country</url>
20
+ </tag>
21
+ <tag>
22
+ <name>albums i own</name>
23
+ <url>http://www.last.fm/tag/albums%20i%20own</url>
24
+ </tag>
25
+ <tag>
26
+ <name>pop</name>
27
+ <url>http://www.last.fm/tag/pop</url>
28
+ </tag>
29
+ <tag>
30
+ <name>country pop</name>
31
+ <url>http://www.last.fm/tag/country%20pop</url>
32
+ </tag>
33
+ <tag>
34
+ <name>american idol</name>
35
+ <url>http://www.last.fm/tag/american%20idol</url>
36
+ </tag>
37
+ </toptags>
38
+ <wiki>
39
+ <published>Thu, 8 Jan 2009 17:10:24 +0000</published>
40
+ <summary><![CDATA[Some Hearts is the debut album from fourth-season American Idol winner Carrie Underwood, released in the United States on November 15, 2005. It has been certified seven times platinum in the U.S. (RIAA) and three times platinum in Canada (CRIA). On December 4, 2006, Some Hearts was named the number-one selling album of the year in all genres at the Billboard Music Awards. It is also the best selling debut album by a solo female country music artist in history. ]]></summary>
41
+ <content><![CDATA[Some Hearts is the debut album from fourth-season American Idol winner Carrie Underwood, released in the United States on November 15, 2005. It has been certified seven times platinum in the U.S. (RIAA) and three times platinum in Canada (CRIA). On December 4, 2006, Some Hearts was named the number-one selling album of the year in all genres at the Billboard Music Awards. It is also the best selling debut album by a solo female country music artist in history.
42
 
1
43
  As of July 3, 2008, the album is no longer present nor eligible to appear on the U.S. Billboard 200. It had a run of 136 weeks, the second-longest for any album released in 2005, behind Nickelback's All the Right Reasons. The following week, it dropped out of the Top Country Albums Chart, having had a 137 week run. It is currently active on the Pop Catalog Chart. It has sold 6,630,000 copies in the U.S. to date.
2
44
  Some Hearts was the highest selling country album in the U.S. in both 2006 and 2007. The album now certified 7x Platinum and is the best-selling debut album for a female country artist.
3
45
 
4
46
 
5
47
 
6
48
  Track listing
7
49
  1. &quot;Wasted&quot; (Troy Verges, Marv Green, Hillary Lindsey) – 4:34
8
50
  2. &quot;Don't Forget to Remember Me&quot; (Morgane Hayes, Kelley Lovelace, Ashley Gorley) – 4:00
9
51
  3. &quot;Some Hearts&quot; (Diane Warren) – 3:48
10
52
  4. &quot;Jesus, Take the Wheel&quot; (Brett James, Lindsey, Gordie Sampson) – 3:46
11
53
  5. &quot;The Night Before (Life Goes On)&quot; (Wendell Mobley, Neil Thrasher, Jimmy Olander) – 3:54
12
54
  6. &quot;Lessons Learned&quot; (Warren) – 4:09
13
55
  7. &quot;Before He Cheats&quot; (Chris Tompkins, Josh Kear) – 3:19
14
56
  8. &quot;Starts with Goodbye&quot; (Angelo, Lindsey) – 4:06
15
57
  9. &quot;I Just Can't Live a Lie&quot; (Steve Robson, Wayne Hector) – 3:59
16
58
  10. &quot;We're Young and Beautiful&quot; (Rivers Rutherford, Steve McEwan) – 3:53
17
59
  11. &quot;That's Where It Is&quot; (Melissa Peirce, Robson, Greg Becker) – 3:35
18
60
  12. &quot;Whenever You Remember&quot; (Warren) – 3:47
19
61
  13. &quot;I Ain't in Checotah Anymore&quot; (Carrie Underwood, Trey Bruce, Angelo) – 3:21
20
62
  14. &quot;Inside Your Heaven&quot; (Andreas Carlsson, Pelle Nyhlén, Savan Kotecha) – 3:45 (bonus track) ]]></content>
63
+ </wiki>
64
+ </album></lfm>
@@ -0,0 +1,52 @@
1
+ <?xml version="1.0" encoding="utf-8"?>
2
+ <lfm status="ok">
3
+ <topfans artist="Metallica">
4
+ <user>
5
+ <name>Slide15</name>
6
+ <url>http://www.last.fm/user/Slide15</url>
7
+ <image size="small">http://userserve-ak.last.fm/serve/34/4477633.jpg</image>
8
+ <image size="medium">http://userserve-ak.last.fm/serve/64/4477633.jpg</image>
9
+ <image size="large">http://userserve-ak.last.fm/serve/126/4477633.jpg</image>
10
+ <weight>265440672</weight>
11
+ </user>
12
+ <user>
13
+ <name>Air_Force</name>
14
+ <url>http://www.last.fm/user/Air_Force</url>
15
+ <image size="small">http://userserve-ak.last.fm/serve/34/8191119.jpg</image>
16
+ <image size="medium">http://userserve-ak.last.fm/serve/64/8191119.jpg</image>
17
+ <image size="large">http://userserve-ak.last.fm/serve/126/8191119.jpg</image>
18
+ <weight>233280000</weight>
19
+ </user>
20
+ <user>
21
+ <name>Evile9</name>
22
+ <url>http://www.last.fm/user/Evile9</url>
23
+ <image size="small">http://userserve-ak.last.fm/serve/34/18665765.jpg</image>
24
+ <image size="medium">http://userserve-ak.last.fm/serve/64/18665765.jpg</image>
25
+ <image size="large">http://userserve-ak.last.fm/serve/126/18665765.jpg</image>
26
+ <weight>224640448</weight>
27
+ </user>
28
+ <user>
29
+ <name>thy_satan</name>
30
+ <url>http://www.last.fm/user/thy_satan</url>
31
+ <image size="small">http://userserve-ak.last.fm/serve/34/1832263.jpg</image>
32
+ <image size="medium">http://userserve-ak.last.fm/serve/64/1832263.jpg</image>
33
+ <image size="large">http://userserve-ak.last.fm/serve/126/1832263.jpg</image>
34
+ <weight>176333328</weight>
35
+ </user>
36
+ <user>
37
+ <name>Aiham</name>
38
+ <url>http://www.last.fm/user/Aiham</url>
39
+ <image size="small">http://userserve-ak.last.fm/serve/34/1209256.jpg</image>
40
+ <image size="medium">http://userserve-ak.last.fm/serve/64/1209256.jpg</image>
41
+ <image size="large">http://userserve-ak.last.fm/serve/126/1209256.jpg</image>
42
+ <weight>153124992</weight>
43
+ </user>
44
+ <user>
45
+ <name>Quugel</name>
46
+ <url>http://www.last.fm/user/Quugel</url>
47
+ <image size="small">http://userserve-ak.last.fm/serve/34/2614780.png</image>
48
+ <image size="medium">http://userserve-ak.last.fm/serve/64/2614780.png</image>
49
+ <image size="large">http://userserve-ak.last.fm/serve/126/2614780.png</image>
50
+ <weight>141551040</weight>
51
+ </user>
52
+ </topfans></lfm>
@@ -0,0 +1,58 @@
1
+ <?xml version="1.0" encoding="utf-8"?>
2
+ <lfm status="ok">
3
+ <artist>
4
+ <name>Cher</name>
5
+ <mbid>bfcc6d75-a6a5-4bc6-8282-47aec8531818</mbid>
6
+ <url>http://www.last.fm/music/Cher</url>
7
+ <image size="small">http://userserve-ak.last.fm/serve/34/9137697.jpg</image>
8
+ <image size="medium">http://userserve-ak.last.fm/serve/64/9137697.jpg</image>
9
+ <image size="large">http://userserve-ak.last.fm/serve/126/9137697.jpg</image>
10
+ <streamable>1</streamable>
11
+ <stats>
12
+ <listeners>383775</listeners>
13
+ <playcount>3141583</playcount>
14
+ </stats>
15
+
16
+ <similar>
17
+ <artist>
18
+ <name>Sonny &amp; Cher</name>
19
+ <url>http://www.last.fm/music/Sonny%2B%2526%2BCher</url>
20
+ <image size="small">http://userserve-ak.last.fm/serve/34/4987379.jpg</image>
21
+ <image size="medium">http://userserve-ak.last.fm/serve/64/4987379.jpg></image>
22
+ <image size="large">http://userserve-ak.last.fm/serve/126/4987379.jpg</image>
23
+ </artist>
24
+ <artist>
25
+ <name>Cyndi Lauper</name>
26
+ <url>http://www.last.fm/music/Cyndi+Lauper</url>
27
+ <image size="small">http://userserve-ak.last.fm/serve/34/6967243.jpg</image>
28
+ <image size="medium">http://userserve-ak.last.fm/serve/64/6967243.jpg></image>
29
+ <image size="large">http://userserve-ak.last.fm/serve/126/6967243.jpg</image>
30
+ </artist>
31
+ <artist>
32
+ <name>Madonna</name>
33
+ <url>http://www.last.fm/music/Madonna</url>
34
+ <image size="small">http://userserve-ak.last.fm/serve/34/12913295.jpg</image>
35
+ <image size="medium">http://userserve-ak.last.fm/serve/64/12913295.jpg></image>
36
+ <image size="large">http://userserve-ak.last.fm/serve/126/12913295.jpg</image>
37
+ </artist>
38
+ <artist>
39
+ <name>Tina Turner</name>
40
+ <url>http://www.last.fm/music/Tina+Turner</url>
41
+ <image size="small">http://userserve-ak.last.fm/serve/34/2480149.jpg</image>
42
+ <image size="medium">http://userserve-ak.last.fm/serve/64/2480149.jpg></image>
43
+ <image size="large">http://userserve-ak.last.fm/serve/126/2480149.jpg</image>
44
+ </artist>
45
+ <artist>
46
+ <name>Céline Dion</name>
47
+ <url>http://www.last.fm/music/C%C3%A9line+Dion</url>
48
+ <image size="small">http://userserve-ak.last.fm/serve/34/11218127.jpg</image>
49
+ <image size="medium">http://userserve-ak.last.fm/serve/64/11218127.jpg></image>
50
+ <image size="large">http://userserve-ak.last.fm/serve/126/11218127.jpg</image>
51
+ </artist>
52
+ </similar>
53
+ <bio>
54
+ <published>Fri, 5 Dec 2008 19:55:12 +0000</published>
55
+ <summary><![CDATA[Cher (born Cherilyn Sarkisian on May 20, 1946, later adopted by Gilbert LaPierre.) is an American singer, actress, songwriter, author and entertainer. Among her many career accomplishments in music, television and film, she has won an Academy Award, a Grammy Award, an Emmy Award and three Golden Globe Awards among others. Cher first rose to prominence in 1965 as one half of the pop/rock duo Sonny &amp; Cher.]]></summary>
56
+ <content><![CDATA[Cher (born Cherilyn Sarkisian on May 20, 1946, later adopted by Gilbert LaPierre.) is an American singer, actress, songwriter, author and entertainer. Among her many career accomplishments in music, television and film, she has won an Academy Award, a Grammy Award, an Emmy Award and three Golden Globe Awards among others.
57
 
1
58
  Cher first rose to prominence in 1965 as one half of the pop/rock duo Sonny &amp; Cher. She also established herself as a solo recording artist, releasing 25 albums, contributing to numerous compilations, and tallying 34 Billboard Top 40 entries over her career, both solo and with Sonny. These include eighteen Top 10 singles and five number one singles (four solo). Cher has had 16 top ten hits in the UK between 1965 and 2003, four of which reached number one (two solo, one with Sonny, one as part of a charity single).
2
59
 
3
60
  She became a television star in the 1970s and a film actress in the 1980s. In 1987, she won the Academy Award for Best Actress for her role in the romantic comedy Moonstruck.
4
61
 
5
62
  In a career surpassing 40 years, Cher has been described as an enduring pop icon and one of the most popular female artists in music history. Since her debut in 1964, Cher has sold as a solo artist over 100 million records worldwide and an estimated 70 million singles and with duo Sonny and Cher over 75 million records becoming one of the biggest-selling artists of all time.
6
63
 
7
64
 
8
65
 
9
66
  During 2007, in the seventh volume of Chrome Hearts, Cher once again confirmed that she is working on her twenty-sixth studio album. No recordings have taken place as of yet, and no release date had been scheduled.
10
67
 
11
68
  It is rumoured that Cher will collaborate with Timbaland in a song for his next album Shock Value II, which will also feature Gwen Stefani, Madonna, Dido and Christina Aguilera. This album is expected to be released in November 2008.
12
69
 
13
70
  On February 7, 2008 Cher, at 61, announced that she had reached a deal to perform 200 shows over three years live at the Colosseum at Caesars Palace in Las Vegas. Her new show, entitled Cher at the Colosseum, will debut on May 6, 2008. [36] The show reportedly includes 18 dancers, 4 aerielists, and multiple costumes designed by Bob Mackie. Choreography will be directed by Doriana Sanchez who also worked with Cher on her past three major tours. Her show will perform four nights a week for a month, and a second leg of the show will continue in August. Cher will share the stage on a rotating basis with contemporaries Bette Midler (whose The Showgirl Must Go On opened on February 20, 2008) and Elton John (whose The Red Piano which opened in 2004, will continues its run of about 50 shows a year).
14
71
 
15
72
  On February 10, 2008, Cher made a brief appearance at the Grammy Awards, introducing a performance by Tina Turner and Beyonce Knowles.
16
73
 
17
74
  Los Angeles]]></content>
75
+ </bio>
76
+ </artist></lfm>
@@ -0,0 +1,1004 @@
1
+ <?xml version="1.0" encoding="utf-8"?>
2
+ <lfm status="ok">
3
+ <similarartists artist="Metallica">
4
+ <artist>
5
+ <name>Megadeth</name>
6
+ <mbid>a9044915-8be3-4c7e-b11f-9e2d2ea0a91e</mbid>
7
+ <match>100</match>
8
+ <url>www.last.fm/music/Megadeth</url>
9
+ <image size="small">http://userserve-ak.last.fm/serve/34/8422011.jpg</image>
10
+ <image size="medium">http://userserve-ak.last.fm/serve/64/8422011.jpg</image>
11
+ <image size="large">http://userserve-ak.last.fm/serve/126/8422011.jpg</image>
12
+ <streamable>1</streamable>
13
+ </artist>
14
+ <artist>
15
+ <name>Pantera</name>
16
+ <mbid>541f16f5-ad7a-428e-af89-9fa1b16d3c9c</mbid>
17
+ <match>88.1</match>
18
+ <url>www.last.fm/music/Pantera</url>
19
+ <image size="small">http://userserve-ak.last.fm/serve/34/3330953.jpg</image>
20
+ <image size="medium">http://userserve-ak.last.fm/serve/64/3330953.jpg</image>
21
+ <image size="large">http://userserve-ak.last.fm/serve/126/3330953.jpg</image>
22
+ <streamable>1</streamable>
23
+ </artist>
24
+ <artist>
25
+ <name>Slayer</name>
26
+ <mbid>bdacc37b-8633-4bf8-9dd5-4662ee651aec</mbid>
27
+ <match>80.61</match>
28
+ <url>www.last.fm/music/Slayer</url>
29
+ <image size="small">http://userserve-ak.last.fm/serve/34/5063959.jpg</image>
30
+ <image size="medium">http://userserve-ak.last.fm/serve/64/5063959.jpg</image>
31
+ <image size="large">http://userserve-ak.last.fm/serve/126/5063959.jpg</image>
32
+ <streamable>1</streamable>
33
+ </artist>
34
+ <artist>
35
+ <name>Iron Maiden</name>
36
+ <mbid>ca891d65-d9b0-4258-89f7-e6ba29d83767</mbid>
37
+ <match>67.27</match>
38
+ <url>www.last.fm/music/Iron+Maiden</url>
39
+ <image size="small">http://userserve-ak.last.fm/serve/34/61088.jpg</image>
40
+ <image size="medium">http://userserve-ak.last.fm/serve/64/61088.jpg</image>
41
+ <image size="large">http://userserve-ak.last.fm/serve/126/61088.jpg</image>
42
+ <streamable>1</streamable>
43
+ </artist>
44
+ <artist>
45
+ <name>Anthrax</name>
46
+ <mbid>b616d6f0-ec1f-4c69-8a79-12a97ece7372</mbid>
47
+ <match>64.96</match>
48
+ <url>www.last.fm/music/Anthrax</url>
49
+ <image size="small">http://userserve-ak.last.fm/serve/34/238567.jpg</image>
50
+ <image size="medium">http://userserve-ak.last.fm/serve/64/238567.jpg</image>
51
+ <image size="large">http://userserve-ak.last.fm/serve/126/238567.jpg</image>
52
+ <streamable>1</streamable>
53
+ </artist>
54
+ <artist>
55
+ <name>Machine Head</name>
56
+ <mbid>22a1f4d7-81ff-4216-ac06-3387da6bc118</mbid>
57
+ <match>63.47</match>
58
+ <url>www.last.fm/music/Machine+Head</url>
59
+ <image size="small">http://userserve-ak.last.fm/serve/34/7554493.jpg</image>
60
+ <image size="medium">http://userserve-ak.last.fm/serve/64/7554493.jpg</image>
61
+ <image size="large">http://userserve-ak.last.fm/serve/126/7554493.jpg</image>
62
+ <streamable>1</streamable>
63
+ </artist>
64
+ <artist>
65
+ <name>Sepultura</name>
66
+ <mbid>1d93c839-22e7-4f76-ad84-d27039efc048</mbid>
67
+ <match>61.87</match>
68
+ <url>www.last.fm/music/Sepultura</url>
69
+ <image size="small">http://userserve-ak.last.fm/serve/34/2152090.jpg</image>
70
+ <image size="medium">http://userserve-ak.last.fm/serve/64/2152090.jpg</image>
71
+ <image size="large">http://userserve-ak.last.fm/serve/126/2152090.jpg</image>
72
+ <streamable>1</streamable>
73
+ </artist>
74
+ <artist>
75
+ <name>Motörhead</name>
76
+ <mbid>57961a97-3796-4bf7-9f02-a985a8979ae9</mbid>
77
+ <match>57.45</match>
78
+ <url>www.last.fm/music/Mot%C3%B6rhead</url>
79
+ <image size="small">http://userserve-ak.last.fm/serve/34/8052277.jpg</image>
80
+ <image size="medium">http://userserve-ak.last.fm/serve/64/8052277.jpg</image>
81
+ <image size="large">http://userserve-ak.last.fm/serve/126/8052277.jpg</image>
82
+ <streamable>1</streamable>
83
+ </artist>
84
+ <artist>
85
+ <name>Testament</name>
86
+ <mbid>05106775-5d45-4131-aecc-1177f813ba11</mbid>
87
+ <match>56.99</match>
88
+ <url>www.last.fm/music/Testament</url>
89
+ <image size="small">http://userserve-ak.last.fm/serve/34/21738.jpg</image>
90
+ <image size="medium">http://userserve-ak.last.fm/serve/64/21738.jpg</image>
91
+ <image size="large">http://userserve-ak.last.fm/serve/126/21738.jpg</image>
92
+ <streamable>1</streamable>
93
+ </artist>
94
+ <artist>
95
+ <name>Trivium</name>
96
+ <mbid>1f5ff245-2837-4d4a-a609-e93e544478c3</mbid>
97
+ <match>56.53</match>
98
+ <url>www.last.fm/music/Trivium</url>
99
+ <image size="small">http://userserve-ak.last.fm/serve/34/11943539.jpg</image>
100
+ <image size="medium">http://userserve-ak.last.fm/serve/64/11943539.jpg</image>
101
+ <image size="large">http://userserve-ak.last.fm/serve/126/11943539.jpg</image>
102
+ <streamable>1</streamable>
103
+ </artist>
104
+ <artist>
105
+ <name>Black Sabbath</name>
106
+ <mbid>5182c1d9-c7d2-4dad-afa0-ccfeada921a8</mbid>
107
+ <match>53.79</match>
108
+ <url>www.last.fm/music/Black+Sabbath</url>
109
+ <image size="small">http://userserve-ak.last.fm/serve/34/13608255.jpg</image>
110
+ <image size="medium">http://userserve-ak.last.fm/serve/64/13608255.jpg</image>
111
+ <image size="large">http://userserve-ak.last.fm/serve/126/13608255.jpg</image>
112
+ <streamable>1</streamable>
113
+ </artist>
114
+ <artist>
115
+ <name>Exodus</name>
116
+ <mbid>18e9bfd5-db23-4bc1-be0f-5710e5d656e4</mbid>
117
+ <match>51.81</match>
118
+ <url>www.last.fm/music/Exodus</url>
119
+ <image size="small">http://userserve-ak.last.fm/serve/34/2244858.jpg</image>
120
+ <image size="medium">http://userserve-ak.last.fm/serve/64/2244858.jpg</image>
121
+ <image size="large">http://userserve-ak.last.fm/serve/126/2244858.jpg</image>
122
+ <streamable>1</streamable>
123
+ </artist>
124
+ <artist>
125
+ <name>Ozzy Osbourne</name>
126
+ <mbid>8aa5b65a-5b3c-4029-92bf-47a544356934</mbid>
127
+ <match>51</match>
128
+ <url>www.last.fm/music/Ozzy+Osbourne</url>
129
+ <image size="small">http://userserve-ak.last.fm/serve/34/4887892.jpg</image>
130
+ <image size="medium">http://userserve-ak.last.fm/serve/64/4887892.jpg</image>
131
+ <image size="large">http://userserve-ak.last.fm/serve/126/4887892.jpg</image>
132
+ <streamable>1</streamable>
133
+ </artist>
134
+ <artist>
135
+ <name>AC/DC</name>
136
+ <mbid>66c662b6-6e2f-4930-8610-912e24c63ed1</mbid>
137
+ <match>48.66</match>
138
+ <url>www.last.fm/music/AC%252FDC</url>
139
+ <image size="small">http://userserve-ak.last.fm/serve/34/172005.jpg</image>
140
+ <image size="medium">http://userserve-ak.last.fm/serve/64/172005.jpg</image>
141
+ <image size="large">http://userserve-ak.last.fm/serve/126/172005.jpg</image>
142
+ <streamable>1</streamable>
143
+ </artist>
144
+ <artist>
145
+ <name>Kreator</name>
146
+ <mbid>39822e8d-f24e-4f07-b51b-28b22e59fbdb</mbid>
147
+ <match>47.28</match>
148
+ <url>www.last.fm/music/Kreator</url>
149
+ <image size="small">http://userserve-ak.last.fm/serve/34/2149388.jpg</image>
150
+ <image size="medium">http://userserve-ak.last.fm/serve/64/2149388.jpg</image>
151
+ <image size="large">http://userserve-ak.last.fm/serve/126/2149388.jpg</image>
152
+ <streamable>1</streamable>
153
+ </artist>
154
+ <artist>
155
+ <name>Black Label Society</name>
156
+ <mbid>a8e935c6-3fcc-414c-900c-77e8170e7e7c</mbid>
157
+ <match>47.22</match>
158
+ <url>www.last.fm/music/Black+Label+Society</url>
159
+ <image size="small">http://userserve-ak.last.fm/serve/34/10568259.jpg</image>
160
+ <image size="medium">http://userserve-ak.last.fm/serve/64/10568259.jpg</image>
161
+ <image size="large">http://userserve-ak.last.fm/serve/126/10568259.jpg</image>
162
+ <streamable>1</streamable>
163
+ </artist>
164
+ <artist>
165
+ <name>Guns N' Roses</name>
166
+ <mbid>eeb1195b-f213-4ce1-b28c-8565211f8e43</mbid>
167
+ <match>46.93</match>
168
+ <url>www.last.fm/music/Guns+N%27+Roses</url>
169
+ <image size="small">http://userserve-ak.last.fm/serve/34/375984.png</image>
170
+ <image size="medium">http://userserve-ak.last.fm/serve/64/375984.png</image>
171
+ <image size="large">http://userserve-ak.last.fm/serve/126/375984.png</image>
172
+ <streamable>1</streamable>
173
+ </artist>
174
+ <artist>
175
+ <name>System of a Down</name>
176
+ <mbid>cc0b7089-c08d-4c10-b6b0-873582c17fd6</mbid>
177
+ <match>45.73</match>
178
+ <url>www.last.fm/music/System+of+a+Down</url>
179
+ <image size="small">http://userserve-ak.last.fm/serve/34/21767.jpg</image>
180
+ <image size="medium">http://userserve-ak.last.fm/serve/64/21767.jpg</image>
181
+ <image size="large">http://userserve-ak.last.fm/serve/126/21767.jpg</image>
182
+ <streamable>1</streamable>
183
+ </artist>
184
+ <artist>
185
+ <name>Judas Priest</name>
186
+ <mbid>6b335658-22c8-485d-93de-0bc29a1d0349</mbid>
187
+ <match>45.18</match>
188
+ <url>www.last.fm/music/Judas+Priest</url>
189
+ <image size="small">http://userserve-ak.last.fm/serve/34/177756.jpg</image>
190
+ <image size="medium">http://userserve-ak.last.fm/serve/64/177756.jpg</image>
191
+ <image size="large">http://userserve-ak.last.fm/serve/126/177756.jpg</image>
192
+ <streamable>1</streamable>
193
+ </artist>
194
+ <artist>
195
+ <name>Soulfly</name>
196
+ <mbid>832a43c7-aa7d-439b-a6b4-4f1afa671c24</mbid>
197
+ <match>44.7</match>
198
+ <url>www.last.fm/music/Soulfly</url>
199
+ <image size="small">http://userserve-ak.last.fm/serve/34/9706845.jpg</image>
200
+ <image size="medium">http://userserve-ak.last.fm/serve/64/9706845.jpg</image>
201
+ <image size="large">http://userserve-ak.last.fm/serve/126/9706845.jpg</image>
202
+ <streamable>1</streamable>
203
+ </artist>
204
+ <artist>
205
+ <name>Godsmack</name>
206
+ <mbid>ac2d1c91-3667-46aa-9fe7-170ca7fce9e2</mbid>
207
+ <match>43.84</match>
208
+ <url>www.last.fm/music/Godsmack</url>
209
+ <image size="small">http://userserve-ak.last.fm/serve/34/164264.jpg</image>
210
+ <image size="medium">http://userserve-ak.last.fm/serve/64/164264.jpg</image>
211
+ <image size="large">http://userserve-ak.last.fm/serve/126/164264.jpg</image>
212
+ <streamable>1</streamable>
213
+ </artist>
214
+ <artist>
215
+ <name>Children of Bodom</name>
216
+ <mbid>f57e14e4-b030-467c-b202-539453f504ec</mbid>
217
+ <match>43.63</match>
218
+ <url>www.last.fm/music/Children+of+Bodom</url>
219
+ <image size="small">http://userserve-ak.last.fm/serve/34/123261.jpg</image>
220
+ <image size="medium">http://userserve-ak.last.fm/serve/64/123261.jpg</image>
221
+ <image size="large">http://userserve-ak.last.fm/serve/126/123261.jpg</image>
222
+ <streamable>1</streamable>
223
+ </artist>
224
+ <artist>
225
+ <name>Slipknot</name>
226
+ <mbid>a466c2a2-6517-42fb-a160-1087c3bafd9f</mbid>
227
+ <match>42.27</match>
228
+ <url>www.last.fm/music/Slipknot</url>
229
+ <image size="small">http://userserve-ak.last.fm/serve/34/7885573.jpg</image>
230
+ <image size="medium">http://userserve-ak.last.fm/serve/64/7885573.jpg</image>
231
+ <image size="large">http://userserve-ak.last.fm/serve/126/7885573.jpg</image>
232
+ <streamable>1</streamable>
233
+ </artist>
234
+ <artist>
235
+ <name>Disturbed</name>
236
+ <mbid>4bb4e4e4-5f66-4509-98af-62dbb90c45c5</mbid>
237
+ <match>40.91</match>
238
+ <url>www.last.fm/music/Disturbed</url>
239
+ <image size="small">http://userserve-ak.last.fm/serve/34/17524645.jpg</image>
240
+ <image size="medium">http://userserve-ak.last.fm/serve/64/17524645.jpg</image>
241
+ <image size="large">http://userserve-ak.last.fm/serve/126/17524645.jpg</image>
242
+ <streamable>1</streamable>
243
+ </artist>
244
+ <artist>
245
+ <name>Hunter</name>
246
+ <mbid>7bf882ed-5246-4158-bcad-d4721cae7a4f</mbid>
247
+ <match>36.56</match>
248
+ <url>www.last.fm/music/Hunter</url>
249
+ <image size="small">http://userserve-ak.last.fm/serve/34/26640659.jpg</image>
250
+ <image size="medium">http://userserve-ak.last.fm/serve/64/26640659.jpg</image>
251
+ <image size="large">http://userserve-ak.last.fm/serve/126/26640659.jpg</image>
252
+ <streamable>1</streamable>
253
+ </artist>
254
+ <artist>
255
+ <name>Apocalyptica</name>
256
+ <mbid>788ad31c-bf0c-4a31-83f8-b8b130d79c76</mbid>
257
+ <match>36.21</match>
258
+ <url>www.last.fm/music/Apocalyptica</url>
259
+ <image size="small">http://userserve-ak.last.fm/serve/34/4298074.jpg</image>
260
+ <image size="medium">http://userserve-ak.last.fm/serve/64/4298074.jpg</image>
261
+ <image size="large">http://userserve-ak.last.fm/serve/126/4298074.jpg</image>
262
+ <streamable>1</streamable>
263
+ </artist>
264
+ <artist>
265
+ <name>Iced Earth</name>
266
+ <mbid>8a0e10a9-80c7-40e0-bf5b-89f1d57f9537</mbid>
267
+ <match>35.17</match>
268
+ <url>www.last.fm/music/Iced+Earth</url>
269
+ <image size="small">http://userserve-ak.last.fm/serve/34/26560821.jpg</image>
270
+ <image size="medium">http://userserve-ak.last.fm/serve/64/26560821.jpg</image>
271
+ <image size="large">http://userserve-ak.last.fm/serve/126/26560821.jpg</image>
272
+ <streamable>1</streamable>
273
+ </artist>
274
+ <artist>
275
+ <name>Annihilator</name>
276
+ <mbid>5dadb7e6-864f-4107-b6d6-dfd1b6d50830</mbid>
277
+ <match>34.76</match>
278
+ <url>www.last.fm/music/Annihilator</url>
279
+ <image size="small">http://userserve-ak.last.fm/serve/34/11011033.jpg</image>
280
+ <image size="medium">http://userserve-ak.last.fm/serve/64/11011033.jpg</image>
281
+ <image size="large">http://userserve-ak.last.fm/serve/126/11011033.jpg</image>
282
+ <streamable>1</streamable>
283
+ </artist>
284
+ <artist>
285
+ <name>Rammstein</name>
286
+ <mbid>b2d122f9-eadb-4930-a196-8f221eeb0c66</mbid>
287
+ <match>33.97</match>
288
+ <url>www.last.fm/music/Rammstein</url>
289
+ <image size="small">http://userserve-ak.last.fm/serve/34/60587.jpg</image>
290
+ <image size="medium">http://userserve-ak.last.fm/serve/64/60587.jpg</image>
291
+ <image size="large">http://userserve-ak.last.fm/serve/126/60587.jpg</image>
292
+ <streamable>1</streamable>
293
+ </artist>
294
+ <artist>
295
+ <name>KoЯn</name>
296
+ <mbid></mbid>
297
+ <match>33.77</match>
298
+ <url>www.last.fm/music/Ko%D0%AFn</url>
299
+ <image size="small">http://userserve-ak.last.fm/serve/34/174665.jpg</image>
300
+ <image size="medium">http://userserve-ak.last.fm/serve/64/174665.jpg</image>
301
+ <image size="large">http://userserve-ak.last.fm/serve/126/174665.jpg</image>
302
+ <streamable>1</streamable>
303
+ </artist>
304
+ <artist>
305
+ <name>Death Angel</name>
306
+ <mbid>562ff334-c34f-45b0-a519-e5d171482df2</mbid>
307
+ <match>33.18</match>
308
+ <url>www.last.fm/music/Death+Angel</url>
309
+ <image size="small">http://userserve-ak.last.fm/serve/34/5803778.jpg</image>
310
+ <image size="medium">http://userserve-ak.last.fm/serve/64/5803778.jpg</image>
311
+ <image size="large">http://userserve-ak.last.fm/serve/126/5803778.jpg</image>
312
+ <streamable>1</streamable>
313
+ </artist>
314
+ <artist>
315
+ <name>In Flames</name>
316
+ <mbid>31745282-b1ea-4d62-939f-226b14d68e7c</mbid>
317
+ <match>32.99</match>
318
+ <url>www.last.fm/music/In+Flames</url>
319
+ <image size="small">http://userserve-ak.last.fm/serve/34/12732413.jpg</image>
320
+ <image size="medium">http://userserve-ak.last.fm/serve/64/12732413.jpg</image>
321
+ <image size="large">http://userserve-ak.last.fm/serve/126/12732413.jpg</image>
322
+ <streamable>1</streamable>
323
+ </artist>
324
+ <artist>
325
+ <name>Lamb of God</name>
326
+ <mbid>298909e4-ebcb-47b8-95e9-cc53b087fc65</mbid>
327
+ <match>32.81</match>
328
+ <url>www.last.fm/music/Lamb+of+God</url>
329
+ <image size="small">http://userserve-ak.last.fm/serve/34/25374.jpg</image>
330
+ <image size="medium">http://userserve-ak.last.fm/serve/64/25374.jpg</image>
331
+ <image size="large">http://userserve-ak.last.fm/serve/126/25374.jpg</image>
332
+ <streamable>1</streamable>
333
+ </artist>
334
+ <artist>
335
+ <name>Overkill</name>
336
+ <mbid>97fa7dd1-4706-4fad-b6ff-e099a37837fc</mbid>
337
+ <match>32.08</match>
338
+ <url>www.last.fm/music/Overkill</url>
339
+ <image size="small">http://userserve-ak.last.fm/serve/34/19538789.jpg</image>
340
+ <image size="medium">http://userserve-ak.last.fm/serve/64/19538789.jpg</image>
341
+ <image size="large">http://userserve-ak.last.fm/serve/126/19538789.jpg</image>
342
+ <streamable>1</streamable>
343
+ </artist>
344
+ <artist>
345
+ <name>Diamond Head</name>
346
+ <mbid>d3dd86df-2f57-4a97-8100-d09915343f60</mbid>
347
+ <match>32.01</match>
348
+ <url>www.last.fm/music/Diamond+Head</url>
349
+ <image size="small">http://userserve-ak.last.fm/serve/34/71585.jpg</image>
350
+ <image size="medium">http://userserve-ak.last.fm/serve/64/71585.jpg</image>
351
+ <image size="large">http://userserve-ak.last.fm/serve/126/71585.jpg</image>
352
+ <streamable>1</streamable>
353
+ </artist>
354
+ <artist>
355
+ <name>Damageplan</name>
356
+ <mbid>fdd1f131-4bae-456b-8bb1-c132d2af8e6c</mbid>
357
+ <match>31.43</match>
358
+ <url>www.last.fm/music/Damageplan</url>
359
+ <image size="small">http://userserve-ak.last.fm/serve/34/8222683.jpg</image>
360
+ <image size="medium">http://userserve-ak.last.fm/serve/64/8222683.jpg</image>
361
+ <image size="large">http://userserve-ak.last.fm/serve/126/8222683.jpg</image>
362
+ <streamable>1</streamable>
363
+ </artist>
364
+ <artist>
365
+ <name>Acid Drinkers</name>
366
+ <mbid>3e103047-217b-496b-b54e-1e2db4dd58b3</mbid>
367
+ <match>30.7</match>
368
+ <url>www.last.fm/music/Acid+Drinkers</url>
369
+ <image size="small">http://userserve-ak.last.fm/serve/34/153809.jpg</image>
370
+ <image size="medium">http://userserve-ak.last.fm/serve/64/153809.jpg</image>
371
+ <image size="large">http://userserve-ak.last.fm/serve/126/153809.jpg</image>
372
+ <streamable>0</streamable>
373
+ </artist>
374
+ <artist>
375
+ <name>Beatallica</name>
376
+ <mbid>8602561b-caa1-4ef7-9501-a4159b3a41c3</mbid>
377
+ <match>30.31</match>
378
+ <url>www.last.fm/music/Beatallica</url>
379
+ <image size="small">http://userserve-ak.last.fm/serve/34/307802.jpg</image>
380
+ <image size="medium">http://userserve-ak.last.fm/serve/64/307802.jpg</image>
381
+ <image size="large">http://userserve-ak.last.fm/serve/126/307802.jpg</image>
382
+ <streamable>1</streamable>
383
+ </artist>
384
+ <artist>
385
+ <name>Stone Sour</name>
386
+ <mbid>4ca783b7-5bf7-4348-b494-46680660050f</mbid>
387
+ <match>30.23</match>
388
+ <url>www.last.fm/music/Stone+Sour</url>
389
+ <image size="small">http://userserve-ak.last.fm/serve/34/237069.jpg</image>
390
+ <image size="medium">http://userserve-ak.last.fm/serve/64/237069.jpg</image>
391
+ <image size="large">http://userserve-ak.last.fm/serve/126/237069.jpg</image>
392
+ <streamable>1</streamable>
393
+ </artist>
394
+ <artist>
395
+ <name>Metal Church</name>
396
+ <mbid>09830e79-cc8d-422f-ae25-6efde4320b73</mbid>
397
+ <match>29.89</match>
398
+ <url>www.last.fm/music/Metal+Church</url>
399
+ <image size="small">http://userserve-ak.last.fm/serve/34/101320.jpg</image>
400
+ <image size="medium">http://userserve-ak.last.fm/serve/64/101320.jpg</image>
401
+ <image size="large">http://userserve-ak.last.fm/serve/126/101320.jpg</image>
402
+ <streamable>1</streamable>
403
+ </artist>
404
+ <artist>
405
+ <name>MD.45</name>
406
+ <mbid>1a7c9a3e-60f5-4f6d-9649-fd960ade4895</mbid>
407
+ <match>28.62</match>
408
+ <url>www.last.fm/music/MD.45</url>
409
+ <image size="small">http://userserve-ak.last.fm/serve/34/311056.jpg</image>
410
+ <image size="medium">http://userserve-ak.last.fm/serve/64/311056.jpg</image>
411
+ <image size="large">http://userserve-ak.last.fm/serve/126/311056.jpg</image>
412
+ <streamable>1</streamable>
413
+ </artist>
414
+ <artist>
415
+ <name>Volbeat</name>
416
+ <mbid>4753fcb7-9270-493a-974d-8daca4e49125</mbid>
417
+ <match>28.34</match>
418
+ <url>www.last.fm/music/Volbeat</url>
419
+ <image size="small">http://userserve-ak.last.fm/serve/34/26337103.jpg</image>
420
+ <image size="medium">http://userserve-ak.last.fm/serve/64/26337103.jpg</image>
421
+ <image size="large">http://userserve-ak.last.fm/serve/126/26337103.jpg</image>
422
+ <streamable>1</streamable>
423
+ </artist>
424
+ <artist>
425
+ <name>HammerFall</name>
426
+ <mbid>abf5f674-dbad-4219-b3ad-dbd6fb163c8e</mbid>
427
+ <match>28.02</match>
428
+ <url>www.last.fm/music/HammerFall</url>
429
+ <image size="small">http://userserve-ak.last.fm/serve/34/20327619.jpg</image>
430
+ <image size="medium">http://userserve-ak.last.fm/serve/64/20327619.jpg</image>
431
+ <image size="large">http://userserve-ak.last.fm/serve/126/20327619.jpg</image>
432
+ <streamable>1</streamable>
433
+ </artist>
434
+ <artist>
435
+ <name>Black Tide</name>
436
+ <mbid></mbid>
437
+ <match>27.7</match>
438
+ <url>www.last.fm/music/Black+Tide</url>
439
+ <image size="small">http://userserve-ak.last.fm/serve/34/5663508.jpg</image>
440
+ <image size="medium">http://userserve-ak.last.fm/serve/64/5663508.jpg</image>
441
+ <image size="large">http://userserve-ak.last.fm/serve/126/5663508.jpg</image>
442
+ <streamable>1</streamable>
443
+ </artist>
444
+ <artist>
445
+ <name>Rage Against the Machine</name>
446
+ <mbid>3798b104-01cb-484c-a3b0-56adc6399b80</mbid>
447
+ <match>26.81</match>
448
+ <url>www.last.fm/music/Rage+Against+the+Machine</url>
449
+ <image size="small">http://userserve-ak.last.fm/serve/34/282898.jpg</image>
450
+ <image size="medium">http://userserve-ak.last.fm/serve/64/159588.jpg</image>
451
+ <image size="large">http://userserve-ak.last.fm/serve/126/282898.jpg</image>
452
+ <streamable>1</streamable>
453
+ </artist>
454
+ <artist>
455
+ <name>Manowar</name>
456
+ <mbid>00eeed6b-5897-4359-8347-b8cd28375331</mbid>
457
+ <match>26.8</match>
458
+ <url>www.last.fm/music/Manowar</url>
459
+ <image size="small">http://userserve-ak.last.fm/serve/34/2570550.jpg</image>
460
+ <image size="medium">http://userserve-ak.last.fm/serve/64/2570550.jpg</image>
461
+ <image size="large">http://userserve-ak.last.fm/serve/126/2570550.jpg</image>
462
+ <streamable>1</streamable>
463
+ </artist>
464
+ <artist>
465
+ <name>Probot</name>
466
+ <mbid>e61baf26-04fe-4f07-8f2a-c1ecbf7ca4c1</mbid>
467
+ <match>26.35</match>
468
+ <url>www.last.fm/music/Probot</url>
469
+ <image size="small">http://userserve-ak.last.fm/serve/34/173034.jpg</image>
470
+ <image size="medium">http://userserve-ak.last.fm/serve/64/173034.jpg</image>
471
+ <image size="large">http://userserve-ak.last.fm/serve/126/173034.jpg</image>
472
+ <streamable>1</streamable>
473
+ </artist>
474
+ <artist>
475
+ <name>Bullet For My Valentine</name>
476
+ <mbid>d530dbf9-69b1-404f-98f2-0431104f5a1e</mbid>
477
+ <match>25.7</match>
478
+ <url>www.last.fm/music/Bullet+For+My+Valentine</url>
479
+ <image size="small">http://userserve-ak.last.fm/serve/34/502822.jpg</image>
480
+ <image size="medium">http://userserve-ak.last.fm/serve/64/502822.jpg</image>
481
+ <image size="large">http://userserve-ak.last.fm/serve/126/502822.jpg</image>
482
+ <streamable>1</streamable>
483
+ </artist>
484
+ <artist>
485
+ <name>Flotsam and Jetsam</name>
486
+ <mbid>7448d493-0b9d-4057-9a50-bf2bd096d961</mbid>
487
+ <match>25.31</match>
488
+ <url>www.last.fm/music/Flotsam+and+Jetsam</url>
489
+ <image size="small">http://userserve-ak.last.fm/serve/34/4584215.jpg</image>
490
+ <image size="medium">http://userserve-ak.last.fm/serve/64/4584215.jpg</image>
491
+ <image size="large">http://userserve-ak.last.fm/serve/126/4584215.jpg</image>
492
+ <streamable>1</streamable>
493
+ </artist>
494
+ <artist>
495
+ <name>Dio</name>
496
+ <mbid>c55193fb-f5d2-4839-a263-4c044fca1456</mbid>
497
+ <match>24.53</match>
498
+ <url>www.last.fm/music/Dio</url>
499
+ <image size="small">http://userserve-ak.last.fm/serve/34/41059.jpg</image>
500
+ <image size="medium">http://userserve-ak.last.fm/serve/64/41059.jpg</image>
501
+ <image size="large">http://userserve-ak.last.fm/serve/126/41059.jpg</image>
502
+ <streamable>1</streamable>
503
+ </artist>
504
+ <artist>
505
+ <name>Roadrunner United</name>
506
+ <mbid>9fd283d3-f6f7-4d34-998c-36220edc5d63</mbid>
507
+ <match>24.35</match>
508
+ <url>www.last.fm/music/Roadrunner+United</url>
509
+ <image size="small">http://userserve-ak.last.fm/serve/34/258000.jpg</image>
510
+ <image size="medium">http://userserve-ak.last.fm/serve/64/258000.jpg</image>
511
+ <image size="large">http://userserve-ak.last.fm/serve/126/258000.jpg</image>
512
+ <streamable>1</streamable>
513
+ </artist>
514
+ <artist>
515
+ <name>Venom</name>
516
+ <mbid>d2ad8774-9173-4970-8427-06b04df201c1</mbid>
517
+ <match>24.24</match>
518
+ <url>www.last.fm/music/Venom</url>
519
+ <image size="small">http://userserve-ak.last.fm/serve/34/3370234.jpg</image>
520
+ <image size="medium">http://userserve-ak.last.fm/serve/64/3370234.jpg</image>
521
+ <image size="large">http://userserve-ak.last.fm/serve/126/3370234.jpg</image>
522
+ <streamable>1</streamable>
523
+ </artist>
524
+ <artist>
525
+ <name>Arch Enemy</name>
526
+ <mbid>e631bb92-3e2b-43e3-a2cb-b605e2fb53bd</mbid>
527
+ <match>24.15</match>
528
+ <url>www.last.fm/music/Arch+Enemy</url>
529
+ <image size="small">http://userserve-ak.last.fm/serve/34/4269274.jpg</image>
530
+ <image size="medium">http://userserve-ak.last.fm/serve/64/4269274.jpg</image>
531
+ <image size="large">http://userserve-ak.last.fm/serve/126/4269274.jpg</image>
532
+ <streamable>1</streamable>
533
+ </artist>
534
+ <artist>
535
+ <name>Mercyful Fate</name>
536
+ <mbid>9b137ab6-5987-4606-989b-183cdb2d3e50</mbid>
537
+ <match>24.03</match>
538
+ <url>www.last.fm/music/Mercyful+Fate</url>
539
+ <image size="small">http://userserve-ak.last.fm/serve/34/11947051.jpg</image>
540
+ <image size="medium">http://userserve-ak.last.fm/serve/64/11947051.jpg</image>
541
+ <image size="large">http://userserve-ak.last.fm/serve/126/11947051.jpg</image>
542
+ <streamable>1</streamable>
543
+ </artist>
544
+ <artist>
545
+ <name>Nuclear Assault</name>
546
+ <mbid>ffd3ac37-4d0a-42a1-a41e-e160cf60dca5</mbid>
547
+ <match>23.69</match>
548
+ <url>www.last.fm/music/Nuclear+Assault</url>
549
+ <image size="small">http://userserve-ak.last.fm/serve/34/4736505.jpg</image>
550
+ <image size="medium">http://userserve-ak.last.fm/serve/64/4736505.jpg</image>
551
+ <image size="large">http://userserve-ak.last.fm/serve/126/4736505.jpg</image>
552
+ <streamable>1</streamable>
553
+ </artist>
554
+ <artist>
555
+ <name>Destruction</name>
556
+ <mbid>371f152d-1643-4b54-b32b-dd13d4c23442</mbid>
557
+ <match>23.15</match>
558
+ <url>www.last.fm/music/Destruction</url>
559
+ <image size="small">http://userserve-ak.last.fm/serve/34/9454497.jpg</image>
560
+ <image size="medium">http://userserve-ak.last.fm/serve/64/9454497.jpg</image>
561
+ <image size="large">http://userserve-ak.last.fm/serve/126/9454497.jpg</image>
562
+ <streamable>1</streamable>
563
+ </artist>
564
+ <artist>
565
+ <name>Blind Guardian</name>
566
+ <mbid>7fa7fc04-1011-4876-8095-ecd232edea87</mbid>
567
+ <match>22.22</match>
568
+ <url>www.last.fm/music/Blind+Guardian</url>
569
+ <image size="small">http://userserve-ak.last.fm/serve/34/123061.jpg</image>
570
+ <image size="medium">http://userserve-ak.last.fm/serve/64/123061.jpg</image>
571
+ <image size="large">http://userserve-ak.last.fm/serve/126/123061.jpg</image>
572
+ <streamable>1</streamable>
573
+ </artist>
574
+ <artist>
575
+ <name>Sacred Reich</name>
576
+ <mbid>05ada461-fa66-4c15-a1c1-206fda754d18</mbid>
577
+ <match>22.21</match>
578
+ <url>www.last.fm/music/Sacred+Reich</url>
579
+ <image size="small">http://userserve-ak.last.fm/serve/34/596337.jpg</image>
580
+ <image size="medium">http://userserve-ak.last.fm/serve/64/596337.jpg</image>
581
+ <image size="large">http://userserve-ak.last.fm/serve/126/596337.jpg</image>
582
+ <streamable>1</streamable>
583
+ </artist>
584
+ <artist>
585
+ <name>Bruce Dickinson</name>
586
+ <mbid>50698127-f6f4-4c0c-8010-db98c21100e1</mbid>
587
+ <match>22.14</match>
588
+ <url>www.last.fm/music/Bruce+Dickinson</url>
589
+ <image size="small">http://userserve-ak.last.fm/serve/34/20008699.jpg</image>
590
+ <image size="medium">http://userserve-ak.last.fm/serve/64/20008699.jpg</image>
591
+ <image size="large">http://userserve-ak.last.fm/serve/126/20008699.jpg</image>
592
+ <streamable>1</streamable>
593
+ </artist>
594
+ <artist>
595
+ <name>Turbo</name>
596
+ <mbid>2503b6af-cb81-47e4-8505-d127fd760ffc</mbid>
597
+ <match>21.68</match>
598
+ <url>www.last.fm/music/Turbo</url>
599
+ <image size="small">http://userserve-ak.last.fm/serve/34/3344039.jpg</image>
600
+ <image size="medium">http://userserve-ak.last.fm/serve/64/3344039.jpg</image>
601
+ <image size="large">http://userserve-ak.last.fm/serve/126/3344039.jpg</image>
602
+ <streamable>1</streamable>
603
+ </artist>
604
+ <artist>
605
+ <name>Static-X</name>
606
+ <mbid>8ac9e35c-e92d-4030-99ef-ba4127b1555c</mbid>
607
+ <match>21.09</match>
608
+ <url>www.last.fm/music/Static-X</url>
609
+ <image size="small">http://userserve-ak.last.fm/serve/34/187329.jpg</image>
610
+ <image size="medium">http://userserve-ak.last.fm/serve/64/187329.jpg</image>
611
+ <image size="large">http://userserve-ak.last.fm/serve/126/187329.jpg</image>
612
+ <streamable>1</streamable>
613
+ </artist>
614
+ <artist>
615
+ <name>Helloween</name>
616
+ <mbid>765774a0-2060-469b-8b7d-612eea48579b</mbid>
617
+ <match>20.51</match>
618
+ <url>www.last.fm/music/Helloween</url>
619
+ <image size="small">http://userserve-ak.last.fm/serve/34/63822.jpg</image>
620
+ <image size="medium">http://userserve-ak.last.fm/serve/64/63822.jpg</image>
621
+ <image size="large">http://userserve-ak.last.fm/serve/126/63822.jpg</image>
622
+ <streamable>1</streamable>
623
+ </artist>
624
+ <artist>
625
+ <name>Zakk Wylde</name>
626
+ <mbid>b109e75a-89d9-4fb2-843c-c0418b755d4c</mbid>
627
+ <match>20.45</match>
628
+ <url>www.last.fm/music/Zakk+Wylde</url>
629
+ <image size="small">http://userserve-ak.last.fm/serve/34/26981.gif</image>
630
+ <image size="medium">http://userserve-ak.last.fm/serve/64/26981.gif</image>
631
+ <image size="large">http://userserve-ak.last.fm/serve/126/26981.gif</image>
632
+ <streamable>1</streamable>
633
+ </artist>
634
+ <artist>
635
+ <name>Avenged Sevenfold</name>
636
+ <mbid>24e1b53c-3085-4581-8472-0b0088d2508c</mbid>
637
+ <match>20.41</match>
638
+ <url>www.last.fm/music/Avenged+Sevenfold</url>
639
+ <image size="small">http://userserve-ak.last.fm/serve/34/3058395.jpg</image>
640
+ <image size="medium">http://userserve-ak.last.fm/serve/64/3058395.jpg</image>
641
+ <image size="large">http://userserve-ak.last.fm/serve/126/3058395.jpg</image>
642
+ <streamable>1</streamable>
643
+ </artist>
644
+ <artist>
645
+ <name>W.A.S.P.</name>
646
+ <mbid>171cbc8f-8ab3-4aec-9916-f0bdbe26bb79</mbid>
647
+ <match>20.09</match>
648
+ <url>www.last.fm/music/W.A.S.P.</url>
649
+ <image size="small">http://userserve-ak.last.fm/serve/34/3617618.jpg</image>
650
+ <image size="medium">http://userserve-ak.last.fm/serve/64/3617618.jpg</image>
651
+ <image size="large">http://userserve-ak.last.fm/serve/126/3617618.jpg</image>
652
+ <streamable>1</streamable>
653
+ </artist>
654
+ <artist>
655
+ <name>Kat</name>
656
+ <mbid>d03c6e2a-24b9-4607-bddd-120f27ff5c9d</mbid>
657
+ <match>19.83</match>
658
+ <url>www.last.fm/music/Kat</url>
659
+ <image size="small">http://userserve-ak.last.fm/serve/34/14482.jpg</image>
660
+ <image size="medium">http://userserve-ak.last.fm/serve/64/14482.jpg</image>
661
+ <image size="large">http://userserve-ak.last.fm/serve/126/14482.jpg</image>
662
+ <streamable>1</streamable>
663
+ </artist>
664
+ <artist>
665
+ <name>Skid Row</name>
666
+ <mbid>6da0515e-a27d-449d-84cc-00713c38a140</mbid>
667
+ <match>19.69</match>
668
+ <url>www.last.fm/music/Skid+Row</url>
669
+ <image size="small">http://userserve-ak.last.fm/serve/34/796810.jpg</image>
670
+ <image size="medium">http://userserve-ak.last.fm/serve/64/796810.jpg</image>
671
+ <image size="large">http://userserve-ak.last.fm/serve/126/796810.jpg</image>
672
+ <streamable>1</streamable>
673
+ </artist>
674
+ <artist>
675
+ <name>DevilDriver</name>
676
+ <mbid>1aded574-9e16-4648-861a-24fd6f1c309e</mbid>
677
+ <match>19.65</match>
678
+ <url>www.last.fm/music/DevilDriver</url>
679
+ <image size="small">http://userserve-ak.last.fm/serve/34/360741.jpg</image>
680
+ <image size="medium">http://userserve-ak.last.fm/serve/64/360741.jpg</image>
681
+ <image size="large">http://userserve-ak.last.fm/serve/126/360741.jpg</image>
682
+ <streamable>1</streamable>
683
+ </artist>
684
+ <artist>
685
+ <name>Danzig</name>
686
+ <mbid>8925a01a-8608-411d-a90b-f3a52d061208</mbid>
687
+ <match>19.48</match>
688
+ <url>www.last.fm/music/Danzig</url>
689
+ <image size="small">http://userserve-ak.last.fm/serve/34/5341.jpg</image>
690
+ <image size="medium">http://userserve-ak.last.fm/serve/64/5341.jpg</image>
691
+ <image size="large">http://userserve-ak.last.fm/serve/126/5341.jpg</image>
692
+ <streamable>1</streamable>
693
+ </artist>
694
+ <artist>
695
+ <name>Heathen</name>
696
+ <mbid>dfbfe956-7719-4cd6-b4db-b9c22657c925</mbid>
697
+ <match>19.34</match>
698
+ <url>www.last.fm/music/Heathen</url>
699
+ <image size="small">http://userserve-ak.last.fm/serve/34/489166.jpg</image>
700
+ <image size="medium">http://userserve-ak.last.fm/serve/64/489166.jpg</image>
701
+ <image size="large">http://userserve-ak.last.fm/serve/126/489166.jpg</image>
702
+ <streamable>1</streamable>
703
+ </artist>
704
+ <artist>
705
+ <name>Mokoma</name>
706
+ <mbid>e979c1bc-5cc2-497b-801f-823244a9166d</mbid>
707
+ <match>19.33</match>
708
+ <url>www.last.fm/music/Mokoma</url>
709
+ <image size="small">http://userserve-ak.last.fm/serve/34/2516003.jpg</image>
710
+ <image size="medium">http://userserve-ak.last.fm/serve/64/2516003.jpg</image>
711
+ <image size="large">http://userserve-ak.last.fm/serve/126/2516003.jpg</image>
712
+ <streamable>1</streamable>
713
+ </artist>
714
+ <artist>
715
+ <name>Lordi</name>
716
+ <mbid>b5b4ba6e-6e34-4669-a33b-0d813b4c3d83</mbid>
717
+ <match>19.28</match>
718
+ <url>www.last.fm/music/Lordi</url>
719
+ <image size="small">http://userserve-ak.last.fm/serve/34/11006699.jpg</image>
720
+ <image size="medium">http://userserve-ak.last.fm/serve/64/11006699.jpg</image>
721
+ <image size="large">http://userserve-ak.last.fm/serve/126/11006699.jpg</image>
722
+ <streamable>1</streamable>
723
+ </artist>
724
+ <artist>
725
+ <name>Shadows Fall</name>
726
+ <mbid>2e3b75d8-00a8-486a-b4e7-a1f8f65e64c9</mbid>
727
+ <match>19.26</match>
728
+ <url>www.last.fm/music/Shadows+Fall</url>
729
+ <image size="small">http://userserve-ak.last.fm/serve/34/110242.jpg</image>
730
+ <image size="medium">http://userserve-ak.last.fm/serve/64/110242.jpg</image>
731
+ <image size="large">http://userserve-ak.last.fm/serve/126/110242.jpg</image>
732
+ <streamable>1</streamable>
733
+ </artist>
734
+ <artist>
735
+ <name>Chimaira</name>
736
+ <mbid>d624df22-b03d-4746-ac28-a4bd72aeec26</mbid>
737
+ <match>19.26</match>
738
+ <url>www.last.fm/music/Chimaira</url>
739
+ <image size="small">http://userserve-ak.last.fm/serve/34/107788.jpg</image>
740
+ <image size="medium">http://userserve-ak.last.fm/serve/64/107788.jpg</image>
741
+ <image size="large">http://userserve-ak.last.fm/serve/126/107788.jpg</image>
742
+ <streamable>1</streamable>
743
+ </artist>
744
+ <artist>
745
+ <name>Whiplash</name>
746
+ <mbid>2dbf26b5-541a-49f9-9f45-833b9c06b1a9</mbid>
747
+ <match>19.21</match>
748
+ <url>www.last.fm/music/Whiplash</url>
749
+ <image size="small">http://userserve-ak.last.fm/serve/34/273447.jpg</image>
750
+ <image size="medium">http://userserve-ak.last.fm/serve/64/273447.jpg</image>
751
+ <image size="large">http://userserve-ak.last.fm/serve/126/273447.jpg</image>
752
+ <streamable>1</streamable>
753
+ </artist>
754
+ <artist>
755
+ <name>Mudvayne</name>
756
+ <mbid>f1c8da15-b408-4149-b863-f1cbe9971f19</mbid>
757
+ <match>19.15</match>
758
+ <url>www.last.fm/music/Mudvayne</url>
759
+ <image size="small">http://userserve-ak.last.fm/serve/34/2048.jpg</image>
760
+ <image size="medium">http://userserve-ak.last.fm/serve/64/2048.jpg</image>
761
+ <image size="large">http://userserve-ak.last.fm/serve/126/2048.jpg</image>
762
+ <streamable>1</streamable>
763
+ </artist>
764
+ <artist>
765
+ <name>Onslaught</name>
766
+ <mbid>faa76524-c57c-4303-843e-925f5aa02f87</mbid>
767
+ <match>18.76</match>
768
+ <url>www.last.fm/music/Onslaught</url>
769
+ <image size="small">http://userserve-ak.last.fm/serve/34/4136862.jpg</image>
770
+ <image size="medium">http://userserve-ak.last.fm/serve/64/4136862.jpg</image>
771
+ <image size="large">http://userserve-ak.last.fm/serve/126/4136862.jpg</image>
772
+ <streamable>1</streamable>
773
+ </artist>
774
+ <artist>
775
+ <name>Sodom</name>
776
+ <mbid>2251718f-7b5c-4a92-9267-895125c594d3</mbid>
777
+ <match>18.64</match>
778
+ <url>www.last.fm/music/Sodom</url>
779
+ <image size="small">http://userserve-ak.last.fm/serve/34/111054.gif</image>
780
+ <image size="medium">http://userserve-ak.last.fm/serve/64/111054.gif</image>
781
+ <image size="large">http://userserve-ak.last.fm/serve/126/111054.gif</image>
782
+ <streamable>1</streamable>
783
+ </artist>
784
+ <artist>
785
+ <name>Rage</name>
786
+ <mbid>2a90aa9c-d2ff-49fd-a8e5-2463f657eb45</mbid>
787
+ <match>18.31</match>
788
+ <url>www.last.fm/music/Rage</url>
789
+ <image size="small">http://userserve-ak.last.fm/serve/34/14249315.jpg</image>
790
+ <image size="medium">http://userserve-ak.last.fm/serve/64/14249315.jpg</image>
791
+ <image size="large">http://userserve-ak.last.fm/serve/126/14249315.jpg</image>
792
+ <streamable>1</streamable>
793
+ </artist>
794
+ <artist>
795
+ <name>Forbidden</name>
796
+ <mbid>e7df158d-1895-400d-919e-dc0a93e13c16</mbid>
797
+ <match>18.26</match>
798
+ <url>www.last.fm/music/Forbidden</url>
799
+ <image size="small">http://userserve-ak.last.fm/serve/34/69759.jpg</image>
800
+ <image size="medium">http://userserve-ak.last.fm/serve/64/69759.jpg</image>
801
+ <image size="large">http://userserve-ak.last.fm/serve/126/69759.jpg</image>
802
+ <streamable>1</streamable>
803
+ </artist>
804
+ <artist>
805
+ <name>Evile</name>
806
+ <mbid>5540499f-8ab5-404f-a781-e959b1dc2778</mbid>
807
+ <match>18.21</match>
808
+ <url>www.last.fm/music/Evile</url>
809
+ <image size="small">http://userserve-ak.last.fm/serve/34/2861788.jpg</image>
810
+ <image size="medium">http://userserve-ak.last.fm/serve/64/2861788.jpg</image>
811
+ <image size="large">http://userserve-ak.last.fm/serve/126/2861788.jpg</image>
812
+ <streamable>1</streamable>
813
+ </artist>
814
+ <artist>
815
+ <name>Savatage</name>
816
+ <mbid>ac15222f-fb8a-4d2b-b4da-bde1c19f0a9f</mbid>
817
+ <match>18.19</match>
818
+ <url>www.last.fm/music/Savatage</url>
819
+ <image size="small">http://userserve-ak.last.fm/serve/34/393222.gif</image>
820
+ <image size="medium">http://userserve-ak.last.fm/serve/64/393222.gif</image>
821
+ <image size="large">http://userserve-ak.last.fm/serve/126/393222.gif</image>
822
+ <streamable>1</streamable>
823
+ </artist>
824
+ <artist>
825
+ <name>Scorpions</name>
826
+ <mbid>c3cceeed-3332-4cf0-8c4c-bbde425147b6</mbid>
827
+ <match>18.17</match>
828
+ <url>www.last.fm/music/Scorpions</url>
829
+ <image size="small">http://userserve-ak.last.fm/serve/34/4881661.jpg</image>
830
+ <image size="medium">http://userserve-ak.last.fm/serve/64/4881661.jpg</image>
831
+ <image size="large">http://userserve-ak.last.fm/serve/126/4881661.jpg</image>
832
+ <streamable>1</streamable>
833
+ </artist>
834
+ <artist>
835
+ <name>DragonForce</name>
836
+ <mbid>ef58d4c9-0d40-42ba-bfab-9186c1483edd</mbid>
837
+ <match>18.1</match>
838
+ <url>www.last.fm/music/DragonForce</url>
839
+ <image size="small">http://userserve-ak.last.fm/serve/34/168190.jpg</image>
840
+ <image size="medium">http://userserve-ak.last.fm/serve/64/168190.jpg</image>
841
+ <image size="large">http://userserve-ak.last.fm/serve/126/168190.jpg</image>
842
+ <streamable>1</streamable>
843
+ </artist>
844
+ <artist>
845
+ <name>Axel Rudi Pell</name>
846
+ <mbid>4591ea10-e654-4cfc-9615-56987c5bcbfe</mbid>
847
+ <match>18.09</match>
848
+ <url>www.last.fm/music/Axel+Rudi+Pell</url>
849
+ <image size="small">http://userserve-ak.last.fm/serve/34/579493.jpg</image>
850
+ <image size="medium">http://userserve-ak.last.fm/serve/64/579493.jpg</image>
851
+ <image size="large">http://userserve-ak.last.fm/serve/126/579493.jpg</image>
852
+ <streamable>1</streamable>
853
+ </artist>
854
+ <artist>
855
+ <name>Rob Zombie</name>
856
+ <mbid>c995a379-60b9-404b-bd97-a7e2de0751d3</mbid>
857
+ <match>18.08</match>
858
+ <url>www.last.fm/music/Rob+Zombie</url>
859
+ <image size="small">http://userserve-ak.last.fm/serve/34/242877.jpg</image>
860
+ <image size="medium">http://userserve-ak.last.fm/serve/64/242877.jpg</image>
861
+ <image size="large">http://userserve-ak.last.fm/serve/126/242877.jpg</image>
862
+ <streamable>1</streamable>
863
+ </artist>
864
+ <artist>
865
+ <name>Killswitch Engage</name>
866
+ <mbid>8295ee00-0096-461d-95c7-c2263d2a4c6d</mbid>
867
+ <match>17.96</match>
868
+ <url>www.last.fm/music/Killswitch+Engage</url>
869
+ <image size="small">http://userserve-ak.last.fm/serve/34/86662.jpg</image>
870
+ <image size="medium">http://userserve-ak.last.fm/serve/64/86662.jpg</image>
871
+ <image size="large">http://userserve-ak.last.fm/serve/126/86662.jpg</image>
872
+ <streamable>1</streamable>
873
+ </artist>
874
+ <artist>
875
+ <name>Sebastian Bach</name>
876
+ <mbid>50f10489-c87e-4df3-800f-be1f8d6bda4b</mbid>
877
+ <match>17.68</match>
878
+ <url>www.last.fm/music/Sebastian+Bach</url>
879
+ <image size="small">http://userserve-ak.last.fm/serve/34/53387.jpg</image>
880
+ <image size="medium">http://userserve-ak.last.fm/serve/64/53387.jpg</image>
881
+ <image size="large">http://userserve-ak.last.fm/serve/126/53387.jpg</image>
882
+ <streamable>1</streamable>
883
+ </artist>
884
+ <artist>
885
+ <name>Saxon</name>
886
+ <mbid>bbd80354-597e-4d53-94e4-92b3a7cb8f2c</mbid>
887
+ <match>17.63</match>
888
+ <url>www.last.fm/music/Saxon</url>
889
+ <image size="small">http://userserve-ak.last.fm/serve/34/12437419.jpg</image>
890
+ <image size="medium">http://userserve-ak.last.fm/serve/64/12437419.jpg</image>
891
+ <image size="large">http://userserve-ak.last.fm/serve/126/12437419.jpg</image>
892
+ <streamable>1</streamable>
893
+ </artist>
894
+ <artist>
895
+ <name>Cavalera Conspiracy</name>
896
+ <mbid></mbid>
897
+ <match>17.47</match>
898
+ <url>www.last.fm/music/Cavalera+Conspiracy</url>
899
+ <image size="small">http://userserve-ak.last.fm/serve/34/4802269.jpg</image>
900
+ <image size="medium">http://userserve-ak.last.fm/serve/64/4802269.jpg</image>
901
+ <image size="large">http://userserve-ak.last.fm/serve/126/4802269.jpg</image>
902
+ <streamable>1</streamable>
903
+ </artist>
904
+ <artist>
905
+ <name>Voivod</name>
906
+ <mbid>66cb12f6-6502-486d-bf67-efd5bdaee6ac</mbid>
907
+ <match>17.47</match>
908
+ <url>www.last.fm/music/Voivod</url>
909
+ <image size="small">http://userserve-ak.last.fm/serve/34/2892770.jpg</image>
910
+ <image size="medium">http://userserve-ak.last.fm/serve/64/2892770.jpg</image>
911
+ <image size="large">http://userserve-ak.last.fm/serve/126/2892770.jpg</image>
912
+ <streamable>1</streamable>
913
+ </artist>
914
+ <artist>
915
+ <name>Drowning Pool</name>
916
+ <mbid>87a73cf0-ebdf-483d-8b5a-3db1e5e72122</mbid>
917
+ <match>17.32</match>
918
+ <url>www.last.fm/music/Drowning+Pool</url>
919
+ <image size="small">http://userserve-ak.last.fm/serve/34/9249301.jpg</image>
920
+ <image size="medium">http://userserve-ak.last.fm/serve/64/9249301.jpg</image>
921
+ <image size="large">http://userserve-ak.last.fm/serve/126/9249301.jpg</image>
922
+ <streamable>1</streamable>
923
+ </artist>
924
+ <artist>
925
+ <name>Fear Factory</name>
926
+ <mbid>c17f08f4-2542-46fb-97f3-3202d60c225a</mbid>
927
+ <match>17.18</match>
928
+ <url>www.last.fm/music/Fear+Factory</url>
929
+ <image size="small">http://userserve-ak.last.fm/serve/34/2970763.jpg</image>
930
+ <image size="medium">http://userserve-ak.last.fm/serve/64/2970763.jpg</image>
931
+ <image size="large">http://userserve-ak.last.fm/serve/126/2970763.jpg</image>
932
+ <streamable>1</streamable>
933
+ </artist>
934
+ <artist>
935
+ <name>Mötley Crüe</name>
936
+ <mbid>26f07661-e115-471d-a930-206f5c89d17c</mbid>
937
+ <match>16.79</match>
938
+ <url>www.last.fm/music/M%C3%B6tley+Cr%C3%BCe</url>
939
+ <image size="small">http://userserve-ak.last.fm/serve/34/8501399.jpg</image>
940
+ <image size="medium">http://userserve-ak.last.fm/serve/64/8501399.jpg</image>
941
+ <image size="large">http://userserve-ak.last.fm/serve/126/8501399.jpg</image>
942
+ <streamable>1</streamable>
943
+ </artist>
944
+ <artist>
945
+ <name>Prong</name>
946
+ <mbid>366b86a0-74b2-4fcb-ba79-637258299dbb</mbid>
947
+ <match>16.61</match>
948
+ <url>www.last.fm/music/Prong</url>
949
+ <image size="small">http://userserve-ak.last.fm/serve/34/799152.jpg</image>
950
+ <image size="medium">http://userserve-ak.last.fm/serve/64/799152.jpg</image>
951
+ <image size="large">http://userserve-ak.last.fm/serve/126/799152.jpg</image>
952
+ <streamable>1</streamable>
953
+ </artist>
954
+ <artist>
955
+ <name>Kotiteollisuus</name>
956
+ <mbid>44f49e8d-125c-47d4-bab1-37a8a46c5eb9</mbid>
957
+ <match>16.6</match>
958
+ <url>www.last.fm/music/Kotiteollisuus</url>
959
+ <image size="small">http://userserve-ak.last.fm/serve/34/8544243.jpg</image>
960
+ <image size="medium">http://userserve-ak.last.fm/serve/64/8544243.jpg</image>
961
+ <image size="large">http://userserve-ak.last.fm/serve/126/8544243.jpg</image>
962
+ <streamable>1</streamable>
963
+ </artist>
964
+ <artist>
965
+ <name>Stone</name>
966
+ <mbid>91692502-b832-48c5-b20d-b1780c15239b</mbid>
967
+ <match>16.49</match>
968
+ <url>www.last.fm/music/Stone</url>
969
+ <image size="small">http://userserve-ak.last.fm/serve/34/582160.jpg</image>
970
+ <image size="medium">http://userserve-ak.last.fm/serve/64/582160.jpg</image>
971
+ <image size="large">http://userserve-ak.last.fm/serve/126/582160.jpg</image>
972
+ <streamable>1</streamable>
973
+ </artist>
974
+ <artist>
975
+ <name>Fozzy</name>
976
+ <mbid>d6cc88c5-5d20-4997-ab0c-3e455c6e3c24</mbid>
977
+ <match>16.45</match>
978
+ <url>www.last.fm/music/Fozzy</url>
979
+ <image size="small">http://userserve-ak.last.fm/serve/34/468340.jpg</image>
980
+ <image size="medium">http://userserve-ak.last.fm/serve/64/468340.jpg</image>
981
+ <image size="large">http://userserve-ak.last.fm/serve/126/468340.jpg</image>
982
+ <streamable>1</streamable>
983
+ </artist>
984
+ <artist>
985
+ <name>Yngwie Malmsteen</name>
986
+ <mbid></mbid>
987
+ <match>16.14</match>
988
+ <url>www.last.fm/music/Yngwie+Malmsteen</url>
989
+ <image size="small">http://userserve-ak.last.fm/serve/34/8392773.jpg</image>
990
+ <image size="medium">http://userserve-ak.last.fm/serve/64/8392773.jpg</image>
991
+ <image size="large">http://userserve-ak.last.fm/serve/126/8392773.jpg</image>
992
+ <streamable>1</streamable>
993
+ </artist>
994
+ <artist>
995
+ <name>Deep Purple</name>
996
+ <mbid>79491354-3d83-40e3-9d8e-7592d58d790a</mbid>
997
+ <match>15.78</match>
998
+ <url>www.last.fm/music/Deep+Purple</url>
999
+ <image size="small">http://userserve-ak.last.fm/serve/34/20352.jpg</image>
1000
+ <image size="medium">http://userserve-ak.last.fm/serve/64/20352.jpg</image>
1001
+ <image size="large">http://userserve-ak.last.fm/serve/126/20352.jpg</image>
1002
+ <streamable>1</streamable>
1003
+ </artist>
1004
+ </similarartists></lfm>