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,754 @@
1
+ <?xml version="1.0" encoding="utf-8"?>
2
+ <lfm status="ok">
3
+ <albums user="xhochy" page="2" perPage="50" totalPages="8">
4
+ <album>
5
+ <name>You Could Have It So Much Better</name>
6
+ <playcount>67</playcount>
7
+ <tagcount></tagcount>
8
+ <mbid>fcb4b179-a508-4266-aaf4-4dcc6fa9bbe9</mbid>
9
+ <url>http://www.last.fm/music/Franz+Ferdinand/You+Could+Have+It+So+Much+Better</url>
10
+ <artist>
11
+ <name>Franz Ferdinand</name>
12
+ <mbid>aa7a2827-f74b-473c-bd79-03d065835cf7</mbid>
13
+ <url>http://www.last.fm/music/Franz+Ferdinand</url>
14
+ </artist>
15
+ <image size="small">http://userserve-ak.last.fm/serve/34s/19883723.jpg</image>
16
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/19883723.jpg</image>
17
+ <image size="large">http://userserve-ak.last.fm/serve/126/19883723.jpg</image>
18
+ </album>
19
+ <album>
20
+ <name>Americana</name>
21
+ <playcount>66</playcount>
22
+ <tagcount></tagcount>
23
+ <mbid>9d2b82f0-8d7b-40c7-898e-9218d13b47e4</mbid>
24
+ <url>http://www.last.fm/music/The+Offspring/Americana</url>
25
+ <artist>
26
+ <name>The Offspring</name>
27
+ <mbid>23a03e33-a603-404e-bcbf-2c00159d7067</mbid>
28
+ <url>http://www.last.fm/music/The+Offspring</url>
29
+ </artist>
30
+ <image size="small">http://userserve-ak.last.fm/serve/34s/23714755.jpg</image>
31
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/23714755.jpg</image>
32
+ <image size="large">http://userserve-ak.last.fm/serve/126/23714755.jpg</image>
33
+ </album>
34
+ <album>
35
+ <name>Madsen</name>
36
+ <playcount>65</playcount>
37
+ <tagcount></tagcount>
38
+ <mbid>2364d652-d633-411a-8c90-b1b9a42ca85b</mbid>
39
+ <url>http://www.last.fm/music/Madsen/Madsen</url>
40
+ <artist>
41
+ <name>Madsen</name>
42
+ <mbid>8a0c3b86-af55-42d2-85b9-6372e7430986</mbid>
43
+ <url>http://www.last.fm/music/Madsen</url>
44
+ </artist>
45
+ <image size="small">http://userserve-ak.last.fm/serve/34s/8743285.jpg</image>
46
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/8743285.jpg</image>
47
+ <image size="large">http://userserve-ak.last.fm/serve/126/8743285.jpg</image>
48
+ </album>
49
+ <album>
50
+ <name>Conspiracy of One</name>
51
+ <playcount>60</playcount>
52
+ <tagcount></tagcount>
53
+ <mbid>190c3c88-9867-4072-bc4a-83266c677730</mbid>
54
+ <url>http://www.last.fm/music/The+Offspring/Conspiracy+of+One</url>
55
+ <artist>
56
+ <name>The Offspring</name>
57
+ <mbid>23a03e33-a603-404e-bcbf-2c00159d7067</mbid>
58
+ <url>http://www.last.fm/music/The+Offspring</url>
59
+ </artist>
60
+ <image size="small">http://userserve-ak.last.fm/serve/34s/23037037.jpg</image>
61
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/23037037.jpg</image>
62
+ <image size="large">http://userserve-ak.last.fm/serve/126/23037037.jpg</image>
63
+ </album>
64
+ <album>
65
+ <name>Billy Talent II</name>
66
+ <playcount>58</playcount>
67
+ <tagcount></tagcount>
68
+ <mbid></mbid>
69
+ <url>http://www.last.fm/music/Billy+Talent/Billy+Talent+II</url>
70
+ <artist>
71
+ <name>Billy Talent</name>
72
+ <mbid>fd429857-5ace-4609-ae54-1502c3bdac11</mbid>
73
+ <url>http://www.last.fm/music/Billy+Talent</url>
74
+ </artist>
75
+ <image size="small">http://userserve-ak.last.fm/serve/34s/9122151.jpg</image>
76
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/9122151.jpg</image>
77
+ <image size="large">http://userserve-ak.last.fm/serve/126/9122151.jpg</image>
78
+ </album>
79
+ <album>
80
+ <name>No Time to Chill</name>
81
+ <playcount>56</playcount>
82
+ <tagcount></tagcount>
83
+ <mbid>6234464d-28b6-46e5-942e-497864cc880d</mbid>
84
+ <url>http://www.last.fm/music/Scooter/No+Time+to+Chill</url>
85
+ <artist>
86
+ <name>Scooter</name>
87
+ <mbid>83e59f23-3b0b-4304-834d-5bcafd5df6d2</mbid>
88
+ <url>http://www.last.fm/music/Scooter</url>
89
+ </artist>
90
+ <image size="small">http://userserve-ak.last.fm/serve/34s/8698075.jpg</image>
91
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/8698075.jpg</image>
92
+ <image size="large">http://userserve-ak.last.fm/serve/126/8698075.jpg</image>
93
+ </album>
94
+ <album>
95
+ <name>Q: Live From Glastonbury</name>
96
+ <playcount>56</playcount>
97
+ <tagcount></tagcount>
98
+ <mbid></mbid>
99
+ <url>http://www.last.fm/music/Bloc+Party/Q%3A+Live+From+Glastonbury</url>
100
+ <artist>
101
+ <name>Bloc Party</name>
102
+ <mbid>8c538f11-c141-4588-8ecb-931083524186</mbid>
103
+ <url>http://www.last.fm/music/Bloc+Party</url>
104
+ </artist>
105
+ <image size="small">http://cdn.last.fm/depth/catalogue/noimage/cover_med.gif</image>
106
+ <image size="medium">http://cdn.last.fm/depth/catalogue/noimage/cover_med.gif</image>
107
+ <image size="large">http://cdn.last.fm/depth/catalogue/noimage/cover_med.gif</image>
108
+ </album>
109
+ <album>
110
+ <name>A Certain Trigger</name>
111
+ <playcount>52</playcount>
112
+ <tagcount></tagcount>
113
+ <mbid>b1faecad-e091-4a85-995e-d79323d84fac</mbid>
114
+ <url>http://www.last.fm/music/Max%C3%AFmo+Park/A+Certain+Trigger</url>
115
+ <artist>
116
+ <name>Maxïmo Park</name>
117
+ <mbid>92e634a7-6023-4be8-be15-ebba822f5b34</mbid>
118
+ <url>http://www.last.fm/music/Max%C3%AFmo+Park</url>
119
+ </artist>
120
+ <image size="small">http://images.amazon.com/images/P/B00094OBX4.01.MZZZZZZZ.jpg</image>
121
+ <image size="medium">http://images.amazon.com/images/P/B00094OBX4.01.MZZZZZZZ.jpg</image>
122
+ <image size="large">http://images.amazon.com/images/P/B00094OBX4.01.MZZZZZZZ.jpg</image>
123
+ </album>
124
+ <album>
125
+ <name>Smash</name>
126
+ <playcount>51</playcount>
127
+ <tagcount></tagcount>
128
+ <mbid>91587782-e6e5-4f09-a614-47320c149006</mbid>
129
+ <url>http://www.last.fm/music/The+Offspring/Smash</url>
130
+ <artist>
131
+ <name>The Offspring</name>
132
+ <mbid>23a03e33-a603-404e-bcbf-2c00159d7067</mbid>
133
+ <url>http://www.last.fm/music/The+Offspring</url>
134
+ </artist>
135
+ <image size="small">http://userserve-ak.last.fm/serve/34s/8675575.jpg</image>
136
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/8675575.jpg</image>
137
+ <image size="large">http://userserve-ak.last.fm/serve/126/8675575.jpg</image>
138
+ </album>
139
+ <album>
140
+ <name>Kids</name>
141
+ <playcount>50</playcount>
142
+ <tagcount></tagcount>
143
+ <mbid></mbid>
144
+ <url>http://www.last.fm/music/MGMT/Kids</url>
145
+ <artist>
146
+ <name>MGMT</name>
147
+ <mbid>c485632c-b784-4ee9-8ea1-c5fb365681fc</mbid>
148
+ <url>http://www.last.fm/music/MGMT</url>
149
+ </artist>
150
+ <image size="small">http://userserve-ak.last.fm/serve/34s/17394593.jpg</image>
151
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/17394593.jpg</image>
152
+ <image size="large">http://userserve-ak.last.fm/serve/126/17394593.jpg</image>
153
+ </album>
154
+ <album>
155
+ <name>Live 2003</name>
156
+ <playcount>49</playcount>
157
+ <tagcount></tagcount>
158
+ <mbid>2695442a-19d6-460f-b8c5-67aab5a8fd17</mbid>
159
+ <url>http://www.last.fm/music/Coldplay/Live+2003</url>
160
+ <artist>
161
+ <name>Coldplay</name>
162
+ <mbid>cc197bad-dc9c-440d-a5b5-d52ba2e14234</mbid>
163
+ <url>http://www.last.fm/music/Coldplay</url>
164
+ </artist>
165
+ <image size="small">http://userserve-ak.last.fm/serve/34s/11468731.jpg</image>
166
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/11468731.jpg</image>
167
+ <image size="large">http://userserve-ak.last.fm/serve/126/11468731.jpg</image>
168
+ </album>
169
+ <album>
170
+ <name>2008-03-13: South by Southwest, The Rio, Austin, TX, USA</name>
171
+ <playcount>47</playcount>
172
+ <tagcount></tagcount>
173
+ <mbid></mbid>
174
+ <url>http://www.last.fm/music/MGMT/2008-03-13%3A+South+by+Southwest%2C+The+Rio%2C+Austin%2C+TX%2C+USA</url>
175
+ <artist>
176
+ <name>MGMT</name>
177
+ <mbid>c485632c-b784-4ee9-8ea1-c5fb365681fc</mbid>
178
+ <url>http://www.last.fm/music/MGMT</url>
179
+ </artist>
180
+ <image size="small">http://cdn.last.fm/depth/catalogue/noimage/cover_med.gif</image>
181
+ <image size="medium">http://cdn.last.fm/depth/catalogue/noimage/cover_med.gif</image>
182
+ <image size="large">http://cdn.last.fm/depth/catalogue/noimage/cover_med.gif</image>
183
+ </album>
184
+ <album>
185
+ <name>Matinée</name>
186
+ <playcount>46</playcount>
187
+ <tagcount></tagcount>
188
+ <mbid></mbid>
189
+ <url>http://www.last.fm/music/Jack+Pe%C3%B1ate/Matin%C3%A9e</url>
190
+ <artist>
191
+ <name>Jack Peñate</name>
192
+ <mbid>9b64cf5d-1f4a-45b5-a84a-5109a88f178f</mbid>
193
+ <url>http://www.last.fm/music/Jack+Pe%C3%B1ate</url>
194
+ </artist>
195
+ <image size="small">http://userserve-ak.last.fm/serve/34s/22982485.jpg</image>
196
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/22982485.jpg</image>
197
+ <image size="large">http://userserve-ak.last.fm/serve/126/22982485.jpg</image>
198
+ </album>
199
+ <album>
200
+ <name>Die Reklamation</name>
201
+ <playcount>46</playcount>
202
+ <tagcount></tagcount>
203
+ <mbid>96fca468-f612-49d0-a891-910a97aae84a</mbid>
204
+ <url>http://www.last.fm/music/Wir+sind+Helden/Die+Reklamation</url>
205
+ <artist>
206
+ <name>Wir sind Helden</name>
207
+ <mbid>908fedf4-548a-430f-b806-38fca9507dc4</mbid>
208
+ <url>http://www.last.fm/music/Wir+sind+Helden</url>
209
+ </artist>
210
+ <image size="small">http://userserve-ak.last.fm/serve/34s/15183527.jpg</image>
211
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/15183527.jpg</image>
212
+ <image size="large">http://userserve-ak.last.fm/serve/126/15183527.jpg</image>
213
+ </album>
214
+ <album>
215
+ <name>The Chronicles of Life and Death</name>
216
+ <playcount>45</playcount>
217
+ <tagcount></tagcount>
218
+ <mbid>3701b26a-4430-4ba0-a9da-1ae825334aff</mbid>
219
+ <url>http://www.last.fm/music/Good+Charlotte/The+Chronicles+of+Life+and+Death</url>
220
+ <artist>
221
+ <name>Good Charlotte</name>
222
+ <mbid>b267ca80-034e-4dc1-9ed4-ec45f1fed41d</mbid>
223
+ <url>http://www.last.fm/music/Good+Charlotte</url>
224
+ </artist>
225
+ <image size="small">http://userserve-ak.last.fm/serve/34s/19445721.jpg</image>
226
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/19445721.jpg</image>
227
+ <image size="large">http://userserve-ak.last.fm/serve/126/19445721.jpg</image>
228
+ </album>
229
+ <album>
230
+ <name>Writer's Block</name>
231
+ <playcount>45</playcount>
232
+ <tagcount></tagcount>
233
+ <mbid></mbid>
234
+ <url>http://www.last.fm/music/Peter+Bjorn+and+John/Writer%27s+Block</url>
235
+ <artist>
236
+ <name>Peter Bjorn and John</name>
237
+ <mbid>32a83250-7e26-422d-b9ac-f4564343e9ce</mbid>
238
+ <url>http://www.last.fm/music/Peter+Bjorn+and+John</url>
239
+ </artist>
240
+ <image size="small">http://userserve-ak.last.fm/serve/34s/19754455.jpg</image>
241
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/19754455.jpg</image>
242
+ <image size="large">http://userserve-ak.last.fm/serve/126/19754455.jpg</image>
243
+ </album>
244
+ <album>
245
+ <name>Es ist Juli</name>
246
+ <playcount>39</playcount>
247
+ <tagcount></tagcount>
248
+ <mbid>b32b3292-55db-4883-adaf-786171f381a1</mbid>
249
+ <url>http://www.last.fm/music/Juli/Es+ist+Juli</url>
250
+ <artist>
251
+ <name>Juli</name>
252
+ <mbid>9a593aff-62c9-40bd-9631-1697798adb63</mbid>
253
+ <url>http://www.last.fm/music/Juli</url>
254
+ </artist>
255
+ <image size="small">http://userserve-ak.last.fm/serve/34s/8638773.jpg</image>
256
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/8638773.jpg</image>
257
+ <image size="large">http://userserve-ak.last.fm/serve/126/8638773.jpg</image>
258
+ </album>
259
+ <album>
260
+ <name>Meteora</name>
261
+ <playcount>37</playcount>
262
+ <tagcount></tagcount>
263
+ <mbid>8a132ea1-0fbf-45b0-83c3-c274488751f0</mbid>
264
+ <url>http://www.last.fm/music/Linkin+Park/Meteora</url>
265
+ <artist>
266
+ <name>Linkin Park</name>
267
+ <mbid>f59c5520-5f46-4d2c-b2c4-822eabf53419</mbid>
268
+ <url>http://www.last.fm/music/Linkin+Park</url>
269
+ </artist>
270
+ <image size="small">http://userserve-ak.last.fm/serve/34s/8641895.jpg</image>
271
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/8641895.jpg</image>
272
+ <image size="large">http://userserve-ak.last.fm/serve/126/8641895.jpg</image>
273
+ </album>
274
+ <album>
275
+ <name>Tonight: Franz Ferdinand</name>
276
+ <playcount>36</playcount>
277
+ <tagcount></tagcount>
278
+ <mbid></mbid>
279
+ <url>http://www.last.fm/music/Franz+Ferdinand/Tonight%3A+Franz+Ferdinand</url>
280
+ <artist>
281
+ <name>Franz Ferdinand</name>
282
+ <mbid>aa7a2827-f74b-473c-bd79-03d065835cf7</mbid>
283
+ <url>http://www.last.fm/music/Franz+Ferdinand</url>
284
+ </artist>
285
+ <image size="small">http://userserve-ak.last.fm/serve/34s/27023887.png</image>
286
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/27023887.png</image>
287
+ <image size="large">http://userserve-ak.last.fm/serve/126/27023887.png</image>
288
+ </album>
289
+ <album>
290
+ <name>Nothing Will Go Wrong</name>
291
+ <playcount>36</playcount>
292
+ <tagcount></tagcount>
293
+ <mbid>c1874f9f-d728-478b-884b-a4077ed70d15</mbid>
294
+ <url>http://www.last.fm/music/Slut/Nothing+Will+Go+Wrong</url>
295
+ <artist>
296
+ <name>Slut</name>
297
+ <mbid>97ec4bef-d716-492a-83a1-4cfed3f7a049</mbid>
298
+ <url>http://www.last.fm/music/Slut</url>
299
+ </artist>
300
+ <image size="small">http://userserve-ak.last.fm/serve/34s/14519159.jpg</image>
301
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/14519159.jpg</image>
302
+ <image size="large">http://userserve-ak.last.fm/serve/126/14519159.jpg</image>
303
+ </album>
304
+ <album>
305
+ <name>Make Believe</name>
306
+ <playcount>36</playcount>
307
+ <tagcount></tagcount>
308
+ <mbid>73ed0637-14bb-4cad-8d65-6acd1e513a9e</mbid>
309
+ <url>http://www.last.fm/music/Weezer/Make+Believe</url>
310
+ <artist>
311
+ <name>Weezer</name>
312
+ <mbid>6fe07aa5-fec0-4eca-a456-f29bff451b04</mbid>
313
+ <url>http://www.last.fm/music/Weezer</url>
314
+ </artist>
315
+ <image size="small">http://userserve-ak.last.fm/serve/34s/8673675.jpg</image>
316
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/8673675.jpg</image>
317
+ <image size="large">http://userserve-ak.last.fm/serve/126/8673675.jpg</image>
318
+ </album>
319
+ <album>
320
+ <name>Wizard of Ahhhs</name>
321
+ <playcount>33</playcount>
322
+ <tagcount></tagcount>
323
+ <mbid></mbid>
324
+ <url>http://www.last.fm/music/Black+Kids/Wizard+of+Ahhhs</url>
325
+ <artist>
326
+ <name>Black Kids</name>
327
+ <mbid></mbid>
328
+ <url>http://www.last.fm/music/Black+Kids</url>
329
+ </artist>
330
+ <image size="small">http://userserve-ak.last.fm/serve/34s/10310053.jpg</image>
331
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/10310053.jpg</image>
332
+ <image size="large">http://userserve-ak.last.fm/serve/126/10310053.jpg</image>
333
+ </album>
334
+ <album>
335
+ <name>null</name>
336
+ <playcount>31</playcount>
337
+ <tagcount></tagcount>
338
+ <mbid></mbid>
339
+ <url>http://www.last.fm/music/Enter+Shikari/null</url>
340
+ <artist>
341
+ <name>Enter Shikari</name>
342
+ <mbid>329f95db-f02e-40bf-a5f7-0dea11529ce3</mbid>
343
+ <url>http://www.last.fm/music/Enter+Shikari</url>
344
+ </artist>
345
+ <image size="small">http://cdn.last.fm/depth/catalogue/noimage/cover_med.gif</image>
346
+ <image size="medium">http://cdn.last.fm/depth/catalogue/noimage/cover_med.gif</image>
347
+ <image size="large">http://cdn.last.fm/depth/catalogue/noimage/cover_med.gif</image>
348
+ </album>
349
+ <album>
350
+ <name>Employment</name>
351
+ <playcount>30</playcount>
352
+ <tagcount></tagcount>
353
+ <mbid>81734d07-9e68-470b-bea4-731476c371bc</mbid>
354
+ <url>http://www.last.fm/music/Kaiser+Chiefs/Employment</url>
355
+ <artist>
356
+ <name>Kaiser Chiefs</name>
357
+ <mbid>90218af4-4d58-4821-8d41-2ee295ebbe21</mbid>
358
+ <url>http://www.last.fm/music/Kaiser+Chiefs</url>
359
+ </artist>
360
+ <image size="small">http://userserve-ak.last.fm/serve/34s/8674107.jpg</image>
361
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/8674107.jpg</image>
362
+ <image size="large">http://userserve-ak.last.fm/serve/126/8674107.jpg</image>
363
+ </album>
364
+ <album>
365
+ <name>Wall Of Arms</name>
366
+ <playcount>30</playcount>
367
+ <tagcount></tagcount>
368
+ <mbid></mbid>
369
+ <url>http://www.last.fm/music/The+Maccabees/Wall+Of+Arms</url>
370
+ <artist>
371
+ <name>The Maccabees</name>
372
+ <mbid>83b86967-6b1a-4ca8-9cf0-c7cfe047ef3f</mbid>
373
+ <url>http://www.last.fm/music/The+Maccabees</url>
374
+ </artist>
375
+ <image size="small">http://userserve-ak.last.fm/serve/34s/27276955.jpg</image>
376
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/27276955.jpg</image>
377
+ <image size="large">http://userserve-ak.last.fm/serve/126/27276955.jpg</image>
378
+ </album>
379
+ <album>
380
+ <name>Nevermind</name>
381
+ <playcount>30</playcount>
382
+ <tagcount></tagcount>
383
+ <mbid>c12262e2-7185-4942-87ee-da27ddd45ddf</mbid>
384
+ <url>http://www.last.fm/music/Nirvana/Nevermind</url>
385
+ <artist>
386
+ <name>Nirvana</name>
387
+ <mbid>5b11f4ce-a62d-471e-81fc-a69a8278c7da</mbid>
388
+ <url>http://www.last.fm/music/Nirvana</url>
389
+ </artist>
390
+ <image size="small">http://userserve-ak.last.fm/serve/34s/8590151.jpg</image>
391
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/8590151.jpg</image>
392
+ <image size="large">http://userserve-ak.last.fm/serve/126/8590151.jpg</image>
393
+ </album>
394
+ <album>
395
+ <name>Electric Feel</name>
396
+ <playcount>30</playcount>
397
+ <tagcount></tagcount>
398
+ <mbid></mbid>
399
+ <url>http://www.last.fm/music/MGMT/Electric+Feel</url>
400
+ <artist>
401
+ <name>MGMT</name>
402
+ <mbid>c485632c-b784-4ee9-8ea1-c5fb365681fc</mbid>
403
+ <url>http://www.last.fm/music/MGMT</url>
404
+ </artist>
405
+ <image size="small">http://userserve-ak.last.fm/serve/34s/22647679.jpg</image>
406
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/22647679.jpg</image>
407
+ <image size="large">http://userserve-ak.last.fm/serve/126/22647679.jpg</image>
408
+ </album>
409
+ <album>
410
+ <name>Rock'n'Roll Realschule</name>
411
+ <playcount>29</playcount>
412
+ <tagcount></tagcount>
413
+ <mbid>1c1d7e9e-3212-4571-bfe9-052e6061311e</mbid>
414
+ <url>http://www.last.fm/music/Die+%C3%84rzte/Rock%27n%27Roll+Realschule</url>
415
+ <artist>
416
+ <name>Die Ärzte</name>
417
+ <mbid>f2fb0ff0-5679-42ec-a55c-15109ce6e320</mbid>
418
+ <url>http://www.last.fm/music/Die+%C3%84rzte</url>
419
+ </artist>
420
+ <image size="small">http://images-eu.amazon.com/images/P/B00006ZY7R.03.MZZZZZZZ.jpg</image>
421
+ <image size="medium">http://images-eu.amazon.com/images/P/B00006ZY7R.03.MZZZZZZZ.jpg</image>
422
+ <image size="large">http://images-eu.amazon.com/images/P/B00006ZY7R.03.MZZZZZZZ.jpg</image>
423
+ </album>
424
+ <album>
425
+ <name>The Sickness</name>
426
+ <playcount>29</playcount>
427
+ <tagcount></tagcount>
428
+ <mbid>414e5661-5647-49de-aa21-11862ec6f1aa</mbid>
429
+ <url>http://www.last.fm/music/Disturbed/The+Sickness</url>
430
+ <artist>
431
+ <name>Disturbed</name>
432
+ <mbid>4bb4e4e4-5f66-4509-98af-62dbb90c45c5</mbid>
433
+ <url>http://www.last.fm/music/Disturbed</url>
434
+ </artist>
435
+ <image size="small">http://userserve-ak.last.fm/serve/34s/8634627.jpg</image>
436
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/8634627.jpg</image>
437
+ <image size="large">http://userserve-ak.last.fm/serve/126/8634627.jpg</image>
438
+ </album>
439
+ <album>
440
+ <name>Take Off Your Pants and Jacket</name>
441
+ <playcount>28</playcount>
442
+ <tagcount></tagcount>
443
+ <mbid>28c80919-65e0-4e8f-b858-2d28dd392d96</mbid>
444
+ <url>http://www.last.fm/music/blink-182/Take+Off+Your+Pants+and+Jacket</url>
445
+ <artist>
446
+ <name>blink-182</name>
447
+ <mbid>0743b15a-3c32-48c8-ad58-cb325350befa</mbid>
448
+ <url>http://www.last.fm/music/blink-182</url>
449
+ </artist>
450
+ <image size="small">http://userserve-ak.last.fm/serve/34s/8630697.jpg</image>
451
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/8630697.jpg</image>
452
+ <image size="large">http://userserve-ak.last.fm/serve/126/8630697.jpg</image>
453
+ </album>
454
+ <album>
455
+ <name>Rock Against Bush, Volume 2</name>
456
+ <playcount>28</playcount>
457
+ <tagcount></tagcount>
458
+ <mbid>7fee211a-43ab-4fc8-8716-98ef2be59859</mbid>
459
+ <url>http://www.last.fm/music/Various+Artists/Rock+Against+Bush%2C+Volume+2</url>
460
+ <artist>
461
+ <name>Various Artists</name>
462
+ <mbid>89ad4ac3-39f7-470e-963a-56509c546377</mbid>
463
+ <url>http://www.last.fm/music/Various+Artists</url>
464
+ </artist>
465
+ <image size="small">http://userserve-ak.last.fm/serve/34s/24063621.jpg</image>
466
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/24063621.jpg</image>
467
+ <image size="large">http://userserve-ak.last.fm/serve/126/24063621.jpg</image>
468
+ </album>
469
+ <album>
470
+ <name>Q: Live From Glastonbury</name>
471
+ <playcount>27</playcount>
472
+ <tagcount></tagcount>
473
+ <mbid></mbid>
474
+ <url>http://www.last.fm/music/Franz+Ferdinand/Q%3A+Live+From+Glastonbury</url>
475
+ <artist>
476
+ <name>Franz Ferdinand</name>
477
+ <mbid>aa7a2827-f74b-473c-bd79-03d065835cf7</mbid>
478
+ <url>http://www.last.fm/music/Franz+Ferdinand</url>
479
+ </artist>
480
+ <image size="small">http://cdn.last.fm/depth/catalogue/noimage/cover_med.gif</image>
481
+ <image size="medium">http://cdn.last.fm/depth/catalogue/noimage/cover_med.gif</image>
482
+ <image size="large">http://cdn.last.fm/depth/catalogue/noimage/cover_med.gif</image>
483
+ </album>
484
+ <album>
485
+ <name>Rock Against Bush, Volume 1</name>
486
+ <playcount>27</playcount>
487
+ <tagcount></tagcount>
488
+ <mbid>dfe08650-806d-4e7b-8751-d3c3ee12fb67</mbid>
489
+ <url>http://www.last.fm/music/Various+Artists/Rock+Against+Bush%2C+Volume+1</url>
490
+ <artist>
491
+ <name>Various Artists</name>
492
+ <mbid>89ad4ac3-39f7-470e-963a-56509c546377</mbid>
493
+ <url>http://www.last.fm/music/Various+Artists</url>
494
+ </artist>
495
+ <image size="small">http://images.amazon.com/images/P/B0001WPSM2.01.MZZZZZZZ.jpg</image>
496
+ <image size="medium">http://images.amazon.com/images/P/B0001WPSM2.01.MZZZZZZZ.jpg</image>
497
+ <image size="large">http://images.amazon.com/images/P/B0001WPSM2.01.MZZZZZZZ.jpg</image>
498
+ </album>
499
+ <album>
500
+ <name>Tonight</name>
501
+ <playcount>27</playcount>
502
+ <tagcount></tagcount>
503
+ <mbid></mbid>
504
+ <url>http://www.last.fm/music/Franz+Ferdinand/Tonight</url>
505
+ <artist>
506
+ <name>Franz Ferdinand</name>
507
+ <mbid>aa7a2827-f74b-473c-bd79-03d065835cf7</mbid>
508
+ <url>http://www.last.fm/music/Franz+Ferdinand</url>
509
+ </artist>
510
+ <image size="small">http://userserve-ak.last.fm/serve/34s/22717565.jpg</image>
511
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/22717565.jpg</image>
512
+ <image size="large">http://userserve-ak.last.fm/serve/126/22717565.jpg</image>
513
+ </album>
514
+ <album>
515
+ <name>Parachutes</name>
516
+ <playcount>26</playcount>
517
+ <tagcount></tagcount>
518
+ <mbid>8fb50f96-279e-4d44-92aa-d49ea56f5c08</mbid>
519
+ <url>http://www.last.fm/music/Coldplay/Parachutes</url>
520
+ <artist>
521
+ <name>Coldplay</name>
522
+ <mbid>cc197bad-dc9c-440d-a5b5-d52ba2e14234</mbid>
523
+ <url>http://www.last.fm/music/Coldplay</url>
524
+ </artist>
525
+ <image size="small">http://userserve-ak.last.fm/serve/34s/14225619.jpg</image>
526
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/14225619.jpg</image>
527
+ <image size="large">http://userserve-ak.last.fm/serve/126/14225619.jpg</image>
528
+ </album>
529
+ <album>
530
+ <name>Confidence</name>
531
+ <playcount>25</playcount>
532
+ <tagcount></tagcount>
533
+ <mbid>b2d92f8d-589a-47fb-94a3-dbb93cd36807</mbid>
534
+ <url>http://www.last.fm/music/Gentleman/Confidence</url>
535
+ <artist>
536
+ <name>Gentleman</name>
537
+ <mbid>8de4a831-7c25-4d34-90cf-254de0c36e49</mbid>
538
+ <url>http://www.last.fm/music/Gentleman</url>
539
+ </artist>
540
+ <image size="small">http://userserve-ak.last.fm/serve/34s/28019385.jpg</image>
541
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/28019385.jpg</image>
542
+ <image size="large">http://userserve-ak.last.fm/serve/126/28019385.jpg</image>
543
+ </album>
544
+ <album>
545
+ <name>Proud Like a God</name>
546
+ <playcount>25</playcount>
547
+ <tagcount></tagcount>
548
+ <mbid>c0f3f5b7-7c54-43eb-9dbe-46806f205787</mbid>
549
+ <url>http://www.last.fm/music/Guano+Apes/Proud+Like+a+God</url>
550
+ <artist>
551
+ <name>Guano Apes</name>
552
+ <mbid>66da25f9-1534-4dd1-b88c-718bc24e1ccd</mbid>
553
+ <url>http://www.last.fm/music/Guano+Apes</url>
554
+ </artist>
555
+ <image size="small">http://userserve-ak.last.fm/serve/34s/11847867.jpg</image>
556
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/11847867.jpg</image>
557
+ <image size="large">http://userserve-ak.last.fm/serve/126/11847867.jpg</image>
558
+ </album>
559
+ <album>
560
+ <name>So wie einst Real Madrid</name>
561
+ <playcount>24</playcount>
562
+ <tagcount></tagcount>
563
+ <mbid>ac21ade0-4c68-4f9d-80ad-04c451ac08de</mbid>
564
+ <url>http://www.last.fm/music/Sportfreunde+Stiller/So+wie+einst+Real+Madrid</url>
565
+ <artist>
566
+ <name>Sportfreunde Stiller</name>
567
+ <mbid>35581de7-591f-424f-9c64-7b22fd45605e</mbid>
568
+ <url>http://www.last.fm/music/Sportfreunde+Stiller</url>
569
+ </artist>
570
+ <image size="small">http://userserve-ak.last.fm/serve/34s/8730555.jpg</image>
571
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/8730555.jpg</image>
572
+ <image size="large">http://userserve-ak.last.fm/serve/126/8730555.jpg</image>
573
+ </album>
574
+ <album>
575
+ <name>Sheffield</name>
576
+ <playcount>24</playcount>
577
+ <tagcount></tagcount>
578
+ <mbid>91ef76ed-a18f-4d2d-923a-894e5f98a8cf</mbid>
579
+ <url>http://www.last.fm/music/Scooter/Sheffield</url>
580
+ <artist>
581
+ <name>Scooter</name>
582
+ <mbid>83e59f23-3b0b-4304-834d-5bcafd5df6d2</mbid>
583
+ <url>http://www.last.fm/music/Scooter</url>
584
+ </artist>
585
+ <image size="small">http://images.amazon.com/images/P/B00004TYKI.01.MZZZZZZZ.jpg</image>
586
+ <image size="medium">http://images.amazon.com/images/P/B00004TYKI.01.MZZZZZZZ.jpg</image>
587
+ <image size="large">http://images.amazon.com/images/P/B00004TYKI.01.MZZZZZZZ.jpg</image>
588
+ </album>
589
+ <album>
590
+ <name>Ignition</name>
591
+ <playcount>23</playcount>
592
+ <tagcount></tagcount>
593
+ <mbid>c5bba7d6-d864-48a4-9d3e-83eaf08b1da4</mbid>
594
+ <url>http://www.last.fm/music/The+Offspring/Ignition</url>
595
+ <artist>
596
+ <name>The Offspring</name>
597
+ <mbid>23a03e33-a603-404e-bcbf-2c00159d7067</mbid>
598
+ <url>http://www.last.fm/music/The+Offspring</url>
599
+ </artist>
600
+ <image size="small">http://userserve-ak.last.fm/serve/34s/8628263.jpg</image>
601
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/8628263.jpg</image>
602
+ <image size="large">http://userserve-ak.last.fm/serve/126/8628263.jpg</image>
603
+ </album>
604
+ <album>
605
+ <name>Parklife</name>
606
+ <playcount>21</playcount>
607
+ <tagcount></tagcount>
608
+ <mbid>c80b2b72-a384-4181-8b2b-6068f9cc7a1d</mbid>
609
+ <url>http://www.last.fm/music/Blur/Parklife</url>
610
+ <artist>
611
+ <name>Blur</name>
612
+ <mbid>ba853904-ae25-4ebb-89d6-c44cfbd71bd2</mbid>
613
+ <url>http://www.last.fm/music/Blur</url>
614
+ </artist>
615
+ <image size="small">http://userserve-ak.last.fm/serve/34s/14257389.jpg</image>
616
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/14257389.jpg</image>
617
+ <image size="large">http://userserve-ak.last.fm/serve/126/14257389.jpg</image>
618
+ </album>
619
+ <album>
620
+ <name>null</name>
621
+ <playcount>21</playcount>
622
+ <tagcount></tagcount>
623
+ <mbid></mbid>
624
+ <url>http://www.last.fm/music/The+Prodigy/null</url>
625
+ <artist>
626
+ <name>The Prodigy</name>
627
+ <mbid>4a4ee089-93b1-4470-af9a-6ff575d32704</mbid>
628
+ <url>http://www.last.fm/music/The+Prodigy</url>
629
+ </artist>
630
+ <image size="small">http://cdn.last.fm/depth/catalogue/noimage/cover_med.gif</image>
631
+ <image size="medium">http://cdn.last.fm/depth/catalogue/noimage/cover_med.gif</image>
632
+ <image size="large">http://cdn.last.fm/depth/catalogue/noimage/cover_med.gif</image>
633
+ </album>
634
+ <album>
635
+ <name>Amnesie</name>
636
+ <playcount>21</playcount>
637
+ <tagcount></tagcount>
638
+ <mbid>8727ea53-5ef7-4b33-ba84-bfb9cba2bb46</mbid>
639
+ <url>http://www.last.fm/music/Fettes+Brot/Amnesie</url>
640
+ <artist>
641
+ <name>Fettes Brot</name>
642
+ <mbid>733e7372-5400-4c79-9059-33e2b2262d01</mbid>
643
+ <url>http://www.last.fm/music/Fettes+Brot</url>
644
+ </artist>
645
+ <image size="small">http://userserve-ak.last.fm/serve/34s/12621867.jpg</image>
646
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/12621867.jpg</image>
647
+ <image size="large">http://userserve-ak.last.fm/serve/126/12621867.jpg</image>
648
+ </album>
649
+ <album>
650
+ <name>Black Holes and Revelations</name>
651
+ <playcount>20</playcount>
652
+ <tagcount></tagcount>
653
+ <mbid></mbid>
654
+ <url>http://www.last.fm/music/Muse/Black+Holes+and+Revelations</url>
655
+ <artist>
656
+ <name>Muse</name>
657
+ <mbid>9c9f1380-2516-4fc9-a3e6-f9f61941d090</mbid>
658
+ <url>http://www.last.fm/music/Muse</url>
659
+ </artist>
660
+ <image size="small">http://userserve-ak.last.fm/serve/34s/8855843.jpg</image>
661
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/8855843.jpg</image>
662
+ <image size="large">http://userserve-ak.last.fm/serve/126/8855843.jpg</image>
663
+ </album>
664
+ <album>
665
+ <name>Friendly Fires</name>
666
+ <playcount>20</playcount>
667
+ <tagcount></tagcount>
668
+ <mbid></mbid>
669
+ <url>http://www.last.fm/music/Friendly+Fires/Friendly+Fires</url>
670
+ <artist>
671
+ <name>Friendly Fires</name>
672
+ <mbid>ef656595-bbe8-4386-8953-be8df9f54472</mbid>
673
+ <url>http://www.last.fm/music/Friendly+Fires</url>
674
+ </artist>
675
+ <image size="small">http://userserve-ak.last.fm/serve/34s/23998523.jpg</image>
676
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/23998523.jpg</image>
677
+ <image size="large">http://userserve-ak.last.fm/serve/126/23998523.jpg</image>
678
+ </album>
679
+ <album>
680
+ <name>Gemstones</name>
681
+ <playcount>20</playcount>
682
+ <tagcount></tagcount>
683
+ <mbid>cf730218-3818-4470-884b-8b0fadbcc020</mbid>
684
+ <url>http://www.last.fm/music/Adam+Green/Gemstones</url>
685
+ <artist>
686
+ <name>Adam Green</name>
687
+ <mbid>150e799b-3244-45d9-a6cb-5a3e8c33d430</mbid>
688
+ <url>http://www.last.fm/music/Adam+Green</url>
689
+ </artist>
690
+ <image size="small">http://userserve-ak.last.fm/serve/34s/12623975.jpg</image>
691
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/12623975.jpg</image>
692
+ <image size="large">http://userserve-ak.last.fm/serve/126/12623975.jpg</image>
693
+ </album>
694
+ <album>
695
+ <name>Invaders Must Die (Ltd. Deluxe Edition)</name>
696
+ <playcount>19</playcount>
697
+ <tagcount></tagcount>
698
+ <mbid></mbid>
699
+ <url>http://www.last.fm/music/The+Prodigy/Invaders+Must+Die+%28Ltd.+Deluxe+Edition%29</url>
700
+ <artist>
701
+ <name>The Prodigy</name>
702
+ <mbid>4a4ee089-93b1-4470-af9a-6ff575d32704</mbid>
703
+ <url>http://www.last.fm/music/The+Prodigy</url>
704
+ </artist>
705
+ <image size="small">http://userserve-ak.last.fm/serve/34s/24331875.jpg</image>
706
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/24331875.jpg</image>
707
+ <image size="large">http://userserve-ak.last.fm/serve/126/24331875.jpg</image>
708
+ </album>
709
+ <album>
710
+ <name>American Idiot</name>
711
+ <playcount>19</playcount>
712
+ <tagcount></tagcount>
713
+ <mbid>1790c881-b35b-4c3e-a489-e011e5143476</mbid>
714
+ <url>http://www.last.fm/music/Green+Day/American+Idiot</url>
715
+ <artist>
716
+ <name>Green Day</name>
717
+ <mbid>084308bd-1654-436f-ba03-df6697104e19</mbid>
718
+ <url>http://www.last.fm/music/Green+Day</url>
719
+ </artist>
720
+ <image size="small">http://userserve-ak.last.fm/serve/34s/8638429.jpg</image>
721
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/8638429.jpg</image>
722
+ <image size="large">http://userserve-ak.last.fm/serve/126/8638429.jpg</image>
723
+ </album>
724
+ <album>
725
+ <name>Voodoo People Remixes</name>
726
+ <playcount>19</playcount>
727
+ <tagcount></tagcount>
728
+ <mbid></mbid>
729
+ <url>http://www.last.fm/music/The+Prodigy/Voodoo+People+Remixes</url>
730
+ <artist>
731
+ <name>The Prodigy</name>
732
+ <mbid>4a4ee089-93b1-4470-af9a-6ff575d32704</mbid>
733
+ <url>http://www.last.fm/music/The+Prodigy</url>
734
+ </artist>
735
+ <image size="small">http://userserve-ak.last.fm/serve/34s/25122205.jpg</image>
736
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/25122205.jpg</image>
737
+ <image size="large">http://userserve-ak.last.fm/serve/126/25122205.jpg</image>
738
+ </album>
739
+ <album>
740
+ <name>Hurricane Bar</name>
741
+ <playcount>17</playcount>
742
+ <tagcount></tagcount>
743
+ <mbid>cac61c8c-001c-4ffe-8c18-352419ff7a21</mbid>
744
+ <url>http://www.last.fm/music/Mando+Diao/Hurricane+Bar</url>
745
+ <artist>
746
+ <name>Mando Diao</name>
747
+ <mbid>ea854cc1-13fc-4fd0-86a5-d2c7dba06764</mbid>
748
+ <url>http://www.last.fm/music/Mando+Diao</url>
749
+ </artist>
750
+ <image size="small">http://userserve-ak.last.fm/serve/34s/14519449.jpg</image>
751
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/14519449.jpg</image>
752
+ <image size="large">http://userserve-ak.last.fm/serve/126/14519449.jpg</image>
753
+ </album>
754
+ </albums></lfm>