scrobbler-ng 2.0.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (156) hide show
  1. data/.gitignore +11 -0
  2. data/MIT-LICENSE +19 -0
  3. data/README.rdoc +104 -0
  4. data/Rakefile +11 -0
  5. data/VERSION.yml +4 -0
  6. data/examples/album.rb +19 -0
  7. data/examples/artist.rb +13 -0
  8. data/examples/scrobble.rb +31 -0
  9. data/examples/tag.rb +11 -0
  10. data/examples/track.rb +6 -0
  11. data/examples/user.rb +14 -0
  12. data/lib/scrobbler/album.rb +165 -0
  13. data/lib/scrobbler/artist.rb +169 -0
  14. data/lib/scrobbler/auth.rb +47 -0
  15. data/lib/scrobbler/base.rb +124 -0
  16. data/lib/scrobbler/event.rb +105 -0
  17. data/lib/scrobbler/geo.rb +27 -0
  18. data/lib/scrobbler/helper/image.rb +52 -0
  19. data/lib/scrobbler/helper/streamable.rb +40 -0
  20. data/lib/scrobbler/library.rb +123 -0
  21. data/lib/scrobbler/playing.rb +49 -0
  22. data/lib/scrobbler/playlist.rb +45 -0
  23. data/lib/scrobbler/radio.rb +12 -0
  24. data/lib/scrobbler/rest.rb +47 -0
  25. data/lib/scrobbler/scrobble.rb +116 -0
  26. data/lib/scrobbler/session.rb +9 -0
  27. data/lib/scrobbler/shout.rb +21 -0
  28. data/lib/scrobbler/simpleauth.rb +60 -0
  29. data/lib/scrobbler/tag.rb +113 -0
  30. data/lib/scrobbler/track.rb +138 -0
  31. data/lib/scrobbler/user.rb +222 -0
  32. data/lib/scrobbler/venue.rb +67 -0
  33. data/lib/scrobbler.rb +34 -0
  34. data/tasks/jeweler.rake +18 -0
  35. data/tasks/rdoc.rake +7 -0
  36. data/tasks/tests.rake +13 -0
  37. data/tasks/yardoc.rake +8 -0
  38. data/test/fixtures/xml/album/info.xml +43 -0
  39. data/test/fixtures/xml/artist/fans.xml +52 -0
  40. data/test/fixtures/xml/artist/info.xml +58 -0
  41. data/test/fixtures/xml/artist/similar.xml +1004 -0
  42. data/test/fixtures/xml/artist/topalbums.xml +61 -0
  43. data/test/fixtures/xml/artist/toptags.xml +19 -0
  44. data/test/fixtures/xml/artist/toptracks.xml +62 -0
  45. data/test/fixtures/xml/auth/session.xml +7 -0
  46. data/test/fixtures/xml/auth/token.xml +3 -0
  47. data/test/fixtures/xml/event/attend.xml +3 -0
  48. data/test/fixtures/xml/event/attendees.xml +53 -0
  49. data/test/fixtures/xml/event/event.xml +35 -0
  50. data/test/fixtures/xml/event/shouts.xml +35 -0
  51. data/test/fixtures/xml/geo/events-distance-p1.xml +151 -0
  52. data/test/fixtures/xml/geo/events-lat-long.xml +167 -0
  53. data/test/fixtures/xml/geo/events-p1.xml +152 -0
  54. data/test/fixtures/xml/geo/events-p2.xml +380 -0
  55. data/test/fixtures/xml/geo/events-p3.xml +427 -0
  56. data/test/fixtures/xml/geo/top_artists-p1.xml +76 -0
  57. data/test/fixtures/xml/geo/top_tracks-p1.xml +77 -0
  58. data/test/fixtures/xml/library/albums-f30.xml +454 -0
  59. data/test/fixtures/xml/library/albums-p1.xml +754 -0
  60. data/test/fixtures/xml/library/albums-p2.xml +754 -0
  61. data/test/fixtures/xml/library/albums-p3.xml +754 -0
  62. data/test/fixtures/xml/library/albums-p4.xml +739 -0
  63. data/test/fixtures/xml/library/albums-p5.xml +754 -0
  64. data/test/fixtures/xml/library/albums-p6.xml +754 -0
  65. data/test/fixtures/xml/library/albums-p7.xml +739 -0
  66. data/test/fixtures/xml/library/albums-p8.xml +724 -0
  67. data/test/fixtures/xml/library/artists-f30.xml +334 -0
  68. data/test/fixtures/xml/library/artists-p1.xml +554 -0
  69. data/test/fixtures/xml/library/artists-p2.xml +554 -0
  70. data/test/fixtures/xml/library/artists-p3.xml +554 -0
  71. data/test/fixtures/xml/library/artists-p4.xml +554 -0
  72. data/test/fixtures/xml/library/artists-p5.xml +554 -0
  73. data/test/fixtures/xml/library/artists-p6.xml +554 -0
  74. data/test/fixtures/xml/library/artists-p7.xml +444 -0
  75. data/test/fixtures/xml/library/tracks-f30.xml +472 -0
  76. data/test/fixtures/xml/library/tracks-p1.xml +789 -0
  77. data/test/fixtures/xml/library/tracks-p10.xml +771 -0
  78. data/test/fixtures/xml/library/tracks-p11.xml +792 -0
  79. data/test/fixtures/xml/library/tracks-p12.xml +777 -0
  80. data/test/fixtures/xml/library/tracks-p13.xml +762 -0
  81. data/test/fixtures/xml/library/tracks-p14.xml +759 -0
  82. data/test/fixtures/xml/library/tracks-p15.xml +762 -0
  83. data/test/fixtures/xml/library/tracks-p16.xml +756 -0
  84. data/test/fixtures/xml/library/tracks-p17.xml +780 -0
  85. data/test/fixtures/xml/library/tracks-p18.xml +756 -0
  86. data/test/fixtures/xml/library/tracks-p19.xml +774 -0
  87. data/test/fixtures/xml/library/tracks-p2.xml +765 -0
  88. data/test/fixtures/xml/library/tracks-p20.xml +777 -0
  89. data/test/fixtures/xml/library/tracks-p21.xml +777 -0
  90. data/test/fixtures/xml/library/tracks-p22.xml +771 -0
  91. data/test/fixtures/xml/library/tracks-p23.xml +765 -0
  92. data/test/fixtures/xml/library/tracks-p24.xml +783 -0
  93. data/test/fixtures/xml/library/tracks-p25.xml +777 -0
  94. data/test/fixtures/xml/library/tracks-p26.xml +777 -0
  95. data/test/fixtures/xml/library/tracks-p27.xml +756 -0
  96. data/test/fixtures/xml/library/tracks-p28.xml +771 -0
  97. data/test/fixtures/xml/library/tracks-p29.xml +753 -0
  98. data/test/fixtures/xml/library/tracks-p3.xml +771 -0
  99. data/test/fixtures/xml/library/tracks-p30.xml +780 -0
  100. data/test/fixtures/xml/library/tracks-p31.xml +753 -0
  101. data/test/fixtures/xml/library/tracks-p32.xml +771 -0
  102. data/test/fixtures/xml/library/tracks-p33.xml +762 -0
  103. data/test/fixtures/xml/library/tracks-p34.xml +538 -0
  104. data/test/fixtures/xml/library/tracks-p4.xml +792 -0
  105. data/test/fixtures/xml/library/tracks-p5.xml +780 -0
  106. data/test/fixtures/xml/library/tracks-p6.xml +789 -0
  107. data/test/fixtures/xml/library/tracks-p7.xml +789 -0
  108. data/test/fixtures/xml/library/tracks-p8.xml +780 -0
  109. data/test/fixtures/xml/library/tracks-p9.xml +774 -0
  110. data/test/fixtures/xml/tag/similar.xml +254 -0
  111. data/test/fixtures/xml/tag/topalbums.xml +805 -0
  112. data/test/fixtures/xml/tag/topartists.xml +605 -0
  113. data/test/fixtures/xml/tag/toptags.xml +1254 -0
  114. data/test/fixtures/xml/tag/toptracks.xml +852 -0
  115. data/test/fixtures/xml/track/fans.xml +34 -0
  116. data/test/fixtures/xml/track/info.xml +53 -0
  117. data/test/fixtures/xml/track/toptags.xml +504 -0
  118. data/test/fixtures/xml/user/events.xml +401 -0
  119. data/test/fixtures/xml/user/friends.xml +30 -0
  120. data/test/fixtures/xml/user/lovedtracks.xml +678 -0
  121. data/test/fixtures/xml/user/neighbours.xml +23 -0
  122. data/test/fixtures/xml/user/playlists.xml +61 -0
  123. data/test/fixtures/xml/user/profile.xml +12 -0
  124. data/test/fixtures/xml/user/recentbannedtracks.xml +24 -0
  125. data/test/fixtures/xml/user/recentlovedtracks.xml +24 -0
  126. data/test/fixtures/xml/user/recenttracks.xml +124 -0
  127. data/test/fixtures/xml/user/systemrecs.xml +18 -0
  128. data/test/fixtures/xml/user/topalbums.xml +61 -0
  129. data/test/fixtures/xml/user/topartists.xml +41 -0
  130. data/test/fixtures/xml/user/toptags.xml +44 -0
  131. data/test/fixtures/xml/user/toptracks.xml +65 -0
  132. data/test/fixtures/xml/user/weeklyalbumchart.xml +256 -0
  133. data/test/fixtures/xml/user/weeklyartistchart.xml +220 -0
  134. data/test/fixtures/xml/user/weeklytrackchart.xml +746 -0
  135. data/test/fixtures/xml/venue/events.xml +151 -0
  136. data/test/fixtures/xml/venue/venue.xml +16 -0
  137. data/test/mocks/rest.rb +212 -0
  138. data/test/spec_helper.rb +7 -0
  139. data/test/test_helper.rb +20 -0
  140. data/test/unit/album_spec.rb +51 -0
  141. data/test/unit/artist_spec.rb +130 -0
  142. data/test/unit/auth_spec.rb +36 -0
  143. data/test/unit/event_spec.rb +109 -0
  144. data/test/unit/geo_spec.rb +148 -0
  145. data/test/unit/library_spec.rb +133 -0
  146. data/test/unit/playing_test.rb +53 -0
  147. data/test/unit/playlist_spec.rb +25 -0
  148. data/test/unit/radio_spec.rb +22 -0
  149. data/test/unit/scrobble_spec.rb +55 -0
  150. data/test/unit/scrobble_test.rb +69 -0
  151. data/test/unit/simpleauth_test.rb +45 -0
  152. data/test/unit/tag_spec.rb +101 -0
  153. data/test/unit/track_spec.rb +95 -0
  154. data/test/unit/user_spec.rb +264 -0
  155. data/test/unit/venue_spec.rb +104 -0
  156. metadata +253 -0
@@ -0,0 +1,754 @@
1
+ <?xml version="1.0" encoding="utf-8"?>
2
+ <lfm status="ok">
3
+ <albums user="xhochy" page="6" perPage="50" totalPages="8">
4
+ <album>
5
+ <name>Die for the Government</name>
6
+ <playcount>2</playcount>
7
+ <tagcount></tagcount>
8
+ <mbid>87f82789-fd9d-450a-b51d-9fdfac4f3a89</mbid>
9
+ <url>http://www.last.fm/music/Anti-Flag/Die+for+the+Government</url>
10
+ <artist>
11
+ <name>Anti-Flag</name>
12
+ <mbid>b88f21a7-a1b9-48fd-bbc4-ae758026f17f</mbid>
13
+ <url>http://www.last.fm/music/Anti-Flag</url>
14
+ </artist>
15
+ <image size="small">http://images.amazon.com/images/P/B0000005XM.01.MZZZZZZZ.jpg</image>
16
+ <image size="medium">http://images.amazon.com/images/P/B0000005XM.01.MZZZZZZZ.jpg</image>
17
+ <image size="large">http://images.amazon.com/images/P/B0000005XM.01.MZZZZZZZ.jpg</image>
18
+ </album>
19
+ <album>
20
+ <name>prettymuchamazing.com</name>
21
+ <playcount>2</playcount>
22
+ <tagcount></tagcount>
23
+ <mbid></mbid>
24
+ <url>http://www.last.fm/music/Black+Kids/prettymuchamazing.com</url>
25
+ <artist>
26
+ <name>Black Kids</name>
27
+ <mbid></mbid>
28
+ <url>http://www.last.fm/music/Black+Kids</url>
29
+ </artist>
30
+ <image size="small">http://cdn.last.fm/depth/catalogue/noimage/cover_med.gif</image>
31
+ <image size="medium">http://cdn.last.fm/depth/catalogue/noimage/cover_med.gif</image>
32
+ <image size="large">http://cdn.last.fm/depth/catalogue/noimage/cover_med.gif</image>
33
+ </album>
34
+ <album>
35
+ <name>null</name>
36
+ <playcount>2</playcount>
37
+ <tagcount></tagcount>
38
+ <mbid></mbid>
39
+ <url>http://www.last.fm/music/Seeed/null</url>
40
+ <artist>
41
+ <name>Seeed</name>
42
+ <mbid>49c43c49-328d-4b14-8a1d-be99cafaec14</mbid>
43
+ <url>http://www.last.fm/music/Seeed</url>
44
+ </artist>
45
+ <image size="small">http://cdn.last.fm/depth/catalogue/noimage/cover_med.gif</image>
46
+ <image size="medium">http://cdn.last.fm/depth/catalogue/noimage/cover_med.gif</image>
47
+ <image size="large">http://cdn.last.fm/depth/catalogue/noimage/cover_med.gif</image>
48
+ </album>
49
+ <album>
50
+ <name>7</name>
51
+ <playcount>2</playcount>
52
+ <tagcount></tagcount>
53
+ <mbid>9f8cda5c-c6d7-483f-a638-1b021c8562b5</mbid>
54
+ <url>http://www.last.fm/music/S+Club+7/7</url>
55
+ <artist>
56
+ <name>S Club 7</name>
57
+ <mbid>bd5cf3e9-cb6c-41f3-8c7d-e9bda3c4e721</mbid>
58
+ <url>http://www.last.fm/music/S+Club+7</url>
59
+ </artist>
60
+ <image size="small">http://userserve-ak.last.fm/serve/34s/8726677.jpg</image>
61
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/8726677.jpg</image>
62
+ <image size="large">http://userserve-ak.last.fm/serve/126/8726677.jpg</image>
63
+ </album>
64
+ <album>
65
+ <name>Tocotronic</name>
66
+ <playcount>2</playcount>
67
+ <tagcount></tagcount>
68
+ <mbid>f411d06a-b365-4d0d-8f57-d729e75231d8</mbid>
69
+ <url>http://www.last.fm/music/Tocotronic/Tocotronic</url>
70
+ <artist>
71
+ <name>Tocotronic</name>
72
+ <mbid>7717539b-33aa-45d5-b88d-9e627172db19</mbid>
73
+ <url>http://www.last.fm/music/Tocotronic</url>
74
+ </artist>
75
+ <image size="small">http://userserve-ak.last.fm/serve/34s/8605731.jpg</image>
76
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/8605731.jpg</image>
77
+ <image size="large">http://userserve-ak.last.fm/serve/126/8605731.jpg</image>
78
+ </album>
79
+ <album>
80
+ <name>Toxicity</name>
81
+ <playcount>2</playcount>
82
+ <tagcount></tagcount>
83
+ <mbid>e1752cff-b0e4-4c06-b08e-de169498bfa5</mbid>
84
+ <url>http://www.last.fm/music/System+of+a+Down/Toxicity</url>
85
+ <artist>
86
+ <name>System of a Down</name>
87
+ <mbid>cc0b7089-c08d-4c10-b6b0-873582c17fd6</mbid>
88
+ <url>http://www.last.fm/music/System+of+a+Down</url>
89
+ </artist>
90
+ <image size="small">http://userserve-ak.last.fm/serve/34s/5206137.jpg</image>
91
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/5206137.jpg</image>
92
+ <image size="large">http://userserve-ak.last.fm/serve/126/5206137.jpg</image>
93
+ </album>
94
+ <album>
95
+ <name>Get Born</name>
96
+ <playcount>2</playcount>
97
+ <tagcount></tagcount>
98
+ <mbid>7f9215b1-19c1-4262-b45f-71a537d0ad81</mbid>
99
+ <url>http://www.last.fm/music/Jet/Get+Born</url>
100
+ <artist>
101
+ <name>Jet</name>
102
+ <mbid>4efa55ba-93cf-497f-baf3-2ca9da7e193e</mbid>
103
+ <url>http://www.last.fm/music/Jet</url>
104
+ </artist>
105
+ <image size="small">http://userserve-ak.last.fm/serve/34s/8630939.jpg</image>
106
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/8630939.jpg</image>
107
+ <image size="large">http://userserve-ak.last.fm/serve/126/8630939.jpg</image>
108
+ </album>
109
+ <album>
110
+ <name>Fashion Nugget</name>
111
+ <playcount>2</playcount>
112
+ <tagcount></tagcount>
113
+ <mbid>ecfd9f0e-c6ab-41bd-bbf9-f8c13b843537</mbid>
114
+ <url>http://www.last.fm/music/Cake/Fashion+Nugget</url>
115
+ <artist>
116
+ <name>Cake</name>
117
+ <mbid>fa7b9055-3703-473a-8a09-adf2fe031a24</mbid>
118
+ <url>http://www.last.fm/music/Cake</url>
119
+ </artist>
120
+ <image size="small">http://userserve-ak.last.fm/serve/34s/19783897.jpg</image>
121
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/19783897.jpg</image>
122
+ <image size="large">http://userserve-ak.last.fm/serve/126/19783897.jpg</image>
123
+ </album>
124
+ <album>
125
+ <name>Bitte ziehen Sie durch</name>
126
+ <playcount>2</playcount>
127
+ <tagcount></tagcount>
128
+ <mbid>517fbdd4-250a-4002-8a70-a97e9e1b2290</mbid>
129
+ <url>http://www.last.fm/music/Deichkind/Bitte+ziehen+Sie+durch</url>
130
+ <artist>
131
+ <name>Deichkind</name>
132
+ <mbid>5de80871-f721-4c7c-b0c5-4ad0d350c232</mbid>
133
+ <url>http://www.last.fm/music/Deichkind</url>
134
+ </artist>
135
+ <image size="small">http://images.amazon.com/images/P/B00004TDDO.01.THUMBZZZ.jpg</image>
136
+ <image size="medium">http://images.amazon.com/images/P/B00004TDDO.01.MZZZZZZZ.jpg</image>
137
+ <image size="large">http://images.amazon.com/images/P/B00004TDDO.01.LZZZZZZZ.jpg</image>
138
+ </album>
139
+ <album>
140
+ <name>Emergency</name>
141
+ <playcount>2</playcount>
142
+ <tagcount></tagcount>
143
+ <mbid></mbid>
144
+ <url>http://www.last.fm/music/The+Pigeon+Detectives/Emergency</url>
145
+ <artist>
146
+ <name>The Pigeon Detectives</name>
147
+ <mbid>2e04a82f-9118-43b1-a918-bf84f122f7fc</mbid>
148
+ <url>http://www.last.fm/music/The+Pigeon+Detectives</url>
149
+ </artist>
150
+ <image size="small">http://userserve-ak.last.fm/serve/34s/6076980.jpg</image>
151
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/6076980.jpg</image>
152
+ <image size="large">http://userserve-ak.last.fm/serve/126/6076980.jpg</image>
153
+ </album>
154
+ <album>
155
+ <name>Transatlanticism</name>
156
+ <playcount>2</playcount>
157
+ <tagcount></tagcount>
158
+ <mbid>e602a3ae-fe8f-4abd-8638-f055517bacb2</mbid>
159
+ <url>http://www.last.fm/music/Death+Cab+for+Cutie/Transatlanticism</url>
160
+ <artist>
161
+ <name>Death Cab for Cutie</name>
162
+ <mbid>0039c7ae-e1a7-4a7d-9b49-0cbc716821a6</mbid>
163
+ <url>http://www.last.fm/music/Death+Cab+for+Cutie</url>
164
+ </artist>
165
+ <image size="small">http://userserve-ak.last.fm/serve/34s/15213861.jpg</image>
166
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/15213861.jpg</image>
167
+ <image size="large">http://userserve-ak.last.fm/serve/126/15213861.jpg</image>
168
+ </album>
169
+ <album>
170
+ <name>In Between Dreams</name>
171
+ <playcount>2</playcount>
172
+ <tagcount></tagcount>
173
+ <mbid>fe88a3b3-8120-4329-9325-888ebb1737ec</mbid>
174
+ <url>http://www.last.fm/music/Jack+Johnson/In+Between+Dreams</url>
175
+ <artist>
176
+ <name>Jack Johnson</name>
177
+ <mbid>ff6e677f-91dd-4986-a174-8db0474b1799</mbid>
178
+ <url>http://www.last.fm/music/Jack+Johnson</url>
179
+ </artist>
180
+ <image size="small">http://userserve-ak.last.fm/serve/34s/8673183.jpg</image>
181
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/8673183.jpg</image>
182
+ <image size="large">http://userserve-ak.last.fm/serve/126/8673183.jpg</image>
183
+ </album>
184
+ <album>
185
+ <name>No Love Lost</name>
186
+ <playcount>2</playcount>
187
+ <tagcount></tagcount>
188
+ <mbid></mbid>
189
+ <url>http://www.last.fm/music/The+Rifles/No+Love+Lost</url>
190
+ <artist>
191
+ <name>The Rifles</name>
192
+ <mbid>03cfb17e-9d4a-462c-88ee-1fa348bc3a0d</mbid>
193
+ <url>http://www.last.fm/music/The+Rifles</url>
194
+ </artist>
195
+ <image size="small">http://userserve-ak.last.fm/serve/34s/19880503.jpg</image>
196
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/19880503.jpg</image>
197
+ <image size="large">http://userserve-ak.last.fm/serve/126/19880503.jpg</image>
198
+ </album>
199
+ <album>
200
+ <name>With Love and Squalor</name>
201
+ <playcount>1</playcount>
202
+ <tagcount></tagcount>
203
+ <mbid>efec429f-f972-4f32-ad72-fc11e85ee483</mbid>
204
+ <url>http://www.last.fm/music/We+Are+Scientists/With+Love+and+Squalor</url>
205
+ <artist>
206
+ <name>We Are Scientists</name>
207
+ <mbid>9386b36e-87f3-4716-a219-79a07a4e29cc</mbid>
208
+ <url>http://www.last.fm/music/We+Are+Scientists</url>
209
+ </artist>
210
+ <image size="small">http://userserve-ak.last.fm/serve/34s/28303839.jpg</image>
211
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/28303839.jpg</image>
212
+ <image size="large">http://userserve-ak.last.fm/serve/126/28303839.jpg</image>
213
+ </album>
214
+ <album>
215
+ <name>Capture/Release (New Version)</name>
216
+ <playcount>1</playcount>
217
+ <tagcount></tagcount>
218
+ <mbid></mbid>
219
+ <url>http://www.last.fm/music/The+Rakes/Capture%252FRelease%2B%2528New%2BVersion%2529</url>
220
+ <artist>
221
+ <name>The Rakes</name>
222
+ <mbid>8e05a404-3f8d-4b0a-9fc2-b7ab821b75f0</mbid>
223
+ <url>http://www.last.fm/music/The+Rakes</url>
224
+ </artist>
225
+ <image size="small">http://userserve-ak.last.fm/serve/34s/11292073.jpg</image>
226
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/11292073.jpg</image>
227
+ <image size="large">http://userserve-ak.last.fm/serve/126/11292073.jpg</image>
228
+ </album>
229
+ <album>
230
+ <name>War on Errorism</name>
231
+ <playcount>1</playcount>
232
+ <tagcount></tagcount>
233
+ <mbid></mbid>
234
+ <url>http://www.last.fm/music/NOFX/War+on+Errorism</url>
235
+ <artist>
236
+ <name>NOFX</name>
237
+ <mbid>dcaa4f81-bfb7-44eb-8594-4e74f004b6e4</mbid>
238
+ <url>http://www.last.fm/music/NOFX</url>
239
+ </artist>
240
+ <image size="small">http://userserve-ak.last.fm/serve/34s/19808905.jpg</image>
241
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/19808905.jpg</image>
242
+ <image size="large">http://userserve-ak.last.fm/serve/126/19808905.jpg</image>
243
+ </album>
244
+ <album>
245
+ <name>Hotel</name>
246
+ <playcount>1</playcount>
247
+ <tagcount></tagcount>
248
+ <mbid>3b65b8d3-8464-406e-8c38-042e598873fe</mbid>
249
+ <url>http://www.last.fm/music/Moby/Hotel</url>
250
+ <artist>
251
+ <name>Moby</name>
252
+ <mbid>8970d868-0723-483b-a75b-51088913d3d4</mbid>
253
+ <url>http://www.last.fm/music/Moby</url>
254
+ </artist>
255
+ <image size="small">http://images.amazon.com/images/P/B0007CZPIS.01.MZZZZZZZ.jpg</image>
256
+ <image size="medium">http://images.amazon.com/images/P/B0007CZPIS.01.MZZZZZZZ.jpg</image>
257
+ <image size="large">http://images.amazon.com/images/P/B0007CZPIS.01.MZZZZZZZ.jpg</image>
258
+ </album>
259
+ <album>
260
+ <name>Slowdown</name>
261
+ <playcount>1</playcount>
262
+ <tagcount></tagcount>
263
+ <mbid></mbid>
264
+ <url>http://www.last.fm/music/The+Libertines/Slowdown</url>
265
+ <artist>
266
+ <name>The Libertines</name>
267
+ <mbid>82b304c0-7da4-45d3-896a-0767c7ae1141</mbid>
268
+ <url>http://www.last.fm/music/The+Libertines</url>
269
+ </artist>
270
+ <image size="small">http://userserve-ak.last.fm/serve/34s/16034017.jpg</image>
271
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/16034017.jpg</image>
272
+ <image size="large">http://userserve-ak.last.fm/serve/126/16034017.jpg</image>
273
+ </album>
274
+ <album>
275
+ <name>The Black Album</name>
276
+ <playcount>1</playcount>
277
+ <tagcount></tagcount>
278
+ <mbid>465be93f-a7dd-498f-b29e-955d4b1aa709</mbid>
279
+ <url>http://www.last.fm/music/Jay-Z/The+Black+Album</url>
280
+ <artist>
281
+ <name>Jay-Z</name>
282
+ <mbid>f82bcf78-5b69-4622-a5ef-73800768d9ac</mbid>
283
+ <url>http://www.last.fm/music/Jay-Z</url>
284
+ </artist>
285
+ <image size="small">http://userserve-ak.last.fm/serve/34s/8624505.jpg</image>
286
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/8624505.jpg</image>
287
+ <image size="large">http://userserve-ak.last.fm/serve/126/8624505.jpg</image>
288
+ </album>
289
+ <album>
290
+ <name>Planeta Eskoria</name>
291
+ <playcount>1</playcount>
292
+ <tagcount></tagcount>
293
+ <mbid>c0c51a58-9482-4b06-b9fd-47b4307f3aba</mbid>
294
+ <url>http://www.last.fm/music/Ska-P/Planeta+Eskoria</url>
295
+ <artist>
296
+ <name>Ska-P</name>
297
+ <mbid>2de794c8-8826-48d0-90e0-6900183ba9e0</mbid>
298
+ <url>http://www.last.fm/music/Ska-P</url>
299
+ </artist>
300
+ <image size="small">http://images.amazon.com/images/P/B000051TIT.01.MZZZZZZZ.jpg</image>
301
+ <image size="medium">http://images.amazon.com/images/P/B000051TIT.01.MZZZZZZZ.jpg</image>
302
+ <image size="large">http://images.amazon.com/images/P/B000051TIT.01.MZZZZZZZ.jpg</image>
303
+ </album>
304
+ <album>
305
+ <name>Everything Is Borrowed</name>
306
+ <playcount>1</playcount>
307
+ <tagcount></tagcount>
308
+ <mbid></mbid>
309
+ <url>http://www.last.fm/music/The+Streets/Everything+Is+Borrowed</url>
310
+ <artist>
311
+ <name>The Streets</name>
312
+ <mbid>6f607087-9c46-4bb2-a884-e4efc764554c</mbid>
313
+ <url>http://www.last.fm/music/The+Streets</url>
314
+ </artist>
315
+ <image size="small">http://userserve-ak.last.fm/serve/34s/26006901.png</image>
316
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/26006901.png</image>
317
+ <image size="large">http://userserve-ak.last.fm/serve/126/26006901.png</image>
318
+ </album>
319
+ <album>
320
+ <name>Ernte</name>
321
+ <playcount>1</playcount>
322
+ <tagcount></tagcount>
323
+ <mbid></mbid>
324
+ <url>http://www.last.fm/music/Andreas+Dorau+und+die+Bruderschaft+der+kleinen+Sorgen/Ernte</url>
325
+ <artist>
326
+ <name>Andreas Dorau und die Bruderschaft der kleinen Sorgen</name>
327
+ <mbid>553df127-7c28-489e-a01e-99d37a5c4476</mbid>
328
+ <url>http://www.last.fm/music/Andreas+Dorau+und+die+Bruderschaft+der+kleinen+Sorgen</url>
329
+ </artist>
330
+ <image size="small">http://cdn.last.fm/depth/catalogue/noimage/cover_med.gif</image>
331
+ <image size="medium">http://cdn.last.fm/depth/catalogue/noimage/cover_med.gif</image>
332
+ <image size="large">http://cdn.last.fm/depth/catalogue/noimage/cover_med.gif</image>
333
+ </album>
334
+ <album>
335
+ <name>Drunken Lullabies</name>
336
+ <playcount>1</playcount>
337
+ <tagcount></tagcount>
338
+ <mbid>97dcf534-0644-4488-a4d4-81ab253944c3</mbid>
339
+ <url>http://www.last.fm/music/Flogging+Molly/Drunken+Lullabies</url>
340
+ <artist>
341
+ <name>Flogging Molly</name>
342
+ <mbid>c3694ddc-f7e5-40dd-9fad-90d11a2c50fa</mbid>
343
+ <url>http://www.last.fm/music/Flogging+Molly</url>
344
+ </artist>
345
+ <image size="small">http://images.amazon.com/images/P/B000060MMI.01.MZZZZZZZ.jpg</image>
346
+ <image size="medium">http://images.amazon.com/images/P/B000060MMI.01.MZZZZZZZ.jpg</image>
347
+ <image size="large">http://images.amazon.com/images/P/B000060MMI.01.MZZZZZZZ.jpg</image>
348
+ </album>
349
+ <album>
350
+ <name>Just Great Songs 2</name>
351
+ <playcount>1</playcount>
352
+ <tagcount></tagcount>
353
+ <mbid></mbid>
354
+ <url>http://www.last.fm/music/Various+Artists/Just+Great+Songs+2</url>
355
+ <artist>
356
+ <name>Various Artists</name>
357
+ <mbid>89ad4ac3-39f7-470e-963a-56509c546377</mbid>
358
+ <url>http://www.last.fm/music/Various+Artists</url>
359
+ </artist>
360
+ <image size="small">http://userserve-ak.last.fm/serve/34s/18160325.jpg</image>
361
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/18160325.jpg</image>
362
+ <image size="large">http://userserve-ak.last.fm/serve/126/18160325.jpg</image>
363
+ </album>
364
+ <album>
365
+ <name>undefined</name>
366
+ <playcount>1</playcount>
367
+ <tagcount></tagcount>
368
+ <mbid></mbid>
369
+ <url>http://www.last.fm/music/Peter+Fox/undefined</url>
370
+ <artist>
371
+ <name>Peter Fox</name>
372
+ <mbid></mbid>
373
+ <url>http://www.last.fm/music/Peter+Fox</url>
374
+ </artist>
375
+ <image size="small">http://cdn.last.fm/depth/catalogue/noimage/cover_med.gif</image>
376
+ <image size="medium">http://cdn.last.fm/depth/catalogue/noimage/cover_med.gif</image>
377
+ <image size="large">http://cdn.last.fm/depth/catalogue/noimage/cover_med.gif</image>
378
+ </album>
379
+ <album>
380
+ <name>Laïs</name>
381
+ <playcount>1</playcount>
382
+ <tagcount></tagcount>
383
+ <mbid></mbid>
384
+ <url>http://www.last.fm/music/La%C3%AFs/La%C3%AFs</url>
385
+ <artist>
386
+ <name>Laïs</name>
387
+ <mbid>1e2a90fe-28a9-4361-a6d8-b3e19da940c7</mbid>
388
+ <url>http://www.last.fm/music/La%C3%AFs</url>
389
+ </artist>
390
+ <image size="small">http://userserve-ak.last.fm/serve/34s/17923995.jpg</image>
391
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/17923995.jpg</image>
392
+ <image size="large">http://userserve-ak.last.fm/serve/126/17923995.jpg</image>
393
+ </album>
394
+ <album>
395
+ <name>Q: Live From Glastonbury</name>
396
+ <playcount>1</playcount>
397
+ <tagcount></tagcount>
398
+ <mbid></mbid>
399
+ <url>http://www.last.fm/music/Echo%2B%2526%2BThe%2BBunnymen/Q%3A+Live+From+Glastonbury</url>
400
+ <artist>
401
+ <name>Echo &amp; The Bunnymen</name>
402
+ <mbid>ccd4879c-5e88-4385-b131-bf65296bf245</mbid>
403
+ <url>http://www.last.fm/music/Echo%2B%2526%2BThe%2BBunnymen</url>
404
+ </artist>
405
+ <image size="small">http://cdn.last.fm/depth/catalogue/noimage/cover_med.gif</image>
406
+ <image size="medium">http://cdn.last.fm/depth/catalogue/noimage/cover_med.gif</image>
407
+ <image size="large">http://cdn.last.fm/depth/catalogue/noimage/cover_med.gif</image>
408
+ </album>
409
+ <album>
410
+ <name>Sylt</name>
411
+ <playcount>1</playcount>
412
+ <tagcount></tagcount>
413
+ <mbid></mbid>
414
+ <url>http://www.last.fm/music/Kettcar/Sylt</url>
415
+ <artist>
416
+ <name>Kettcar</name>
417
+ <mbid>315fa94f-3bb5-43db-a28e-406a83e9805c</mbid>
418
+ <url>http://www.last.fm/music/Kettcar</url>
419
+ </artist>
420
+ <image size="small">http://userserve-ak.last.fm/serve/34s/22796921.jpg</image>
421
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/22796921.jpg</image>
422
+ <image size="large">http://userserve-ak.last.fm/serve/126/22796921.jpg</image>
423
+ </album>
424
+ <album>
425
+ <name>Hell Awaits</name>
426
+ <playcount>1</playcount>
427
+ <tagcount></tagcount>
428
+ <mbid>a6a8545a-679c-4528-96f4-48717b63c47e</mbid>
429
+ <url>http://www.last.fm/music/Slayer/Hell+Awaits</url>
430
+ <artist>
431
+ <name>Slayer</name>
432
+ <mbid>bdacc37b-8633-4bf8-9dd5-4662ee651aec</mbid>
433
+ <url>http://www.last.fm/music/Slayer</url>
434
+ </artist>
435
+ <image size="small">http://images.amazon.com/images/P/B000001C6K.01.MZZZZZZZ.jpg</image>
436
+ <image size="medium">http://images.amazon.com/images/P/B000001C6K.01.MZZZZZZZ.jpg</image>
437
+ <image size="large">http://images.amazon.com/images/P/B000001C6K.01.MZZZZZZZ.jpg</image>
438
+ </album>
439
+ <album>
440
+ <name>We Started Nothing</name>
441
+ <playcount>1</playcount>
442
+ <tagcount></tagcount>
443
+ <mbid></mbid>
444
+ <url>http://www.last.fm/music/The+Ting+Tings/We+Started+Nothing</url>
445
+ <artist>
446
+ <name>The Ting Tings</name>
447
+ <mbid></mbid>
448
+ <url>http://www.last.fm/music/The+Ting+Tings</url>
449
+ </artist>
450
+ <image size="small">http://userserve-ak.last.fm/serve/34s/25723581.png</image>
451
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/25723581.png</image>
452
+ <image size="large">http://userserve-ak.last.fm/serve/126/25723581.png</image>
453
+ </album>
454
+ <album>
455
+ <name>Q Magazine - Classic Glastonbury Live</name>
456
+ <playcount>1</playcount>
457
+ <tagcount></tagcount>
458
+ <mbid></mbid>
459
+ <url>http://www.last.fm/music/Orbital/Q+Magazine+-+Classic+Glastonbury+Live</url>
460
+ <artist>
461
+ <name>Orbital</name>
462
+ <mbid>f3e2a7d9-c6bb-4848-95e5-04c0a1e2f511</mbid>
463
+ <url>http://www.last.fm/music/Orbital</url>
464
+ </artist>
465
+ <image size="small">http://cdn.last.fm/depth/catalogue/noimage/cover_med.gif</image>
466
+ <image size="medium">http://cdn.last.fm/depth/catalogue/noimage/cover_med.gif</image>
467
+ <image size="large">http://cdn.last.fm/depth/catalogue/noimage/cover_med.gif</image>
468
+ </album>
469
+ <album>
470
+ <name>The Score</name>
471
+ <playcount>1</playcount>
472
+ <tagcount></tagcount>
473
+ <mbid>88d81892-70b8-4339-a6a1-70032c16b1a0</mbid>
474
+ <url>http://www.last.fm/music/Fugees/The+Score</url>
475
+ <artist>
476
+ <name>Fugees</name>
477
+ <mbid>ea321799-9b1d-4e74-a074-a5facf597d82</mbid>
478
+ <url>http://www.last.fm/music/Fugees</url>
479
+ </artist>
480
+ <image size="small">http://userserve-ak.last.fm/serve/34s/23066679.jpg</image>
481
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/23066679.jpg</image>
482
+ <image size="large">http://userserve-ak.last.fm/serve/126/23066679.jpg</image>
483
+ </album>
484
+ <album>
485
+ <name>Transylvania 90210: Songs of Death, Dying and the Dead</name>
486
+ <playcount>1</playcount>
487
+ <tagcount></tagcount>
488
+ <mbid>7eec44fd-8f09-45b6-aca4-841c80ec5eed</mbid>
489
+ <url>http://www.last.fm/music/Wednesday+13/Transylvania+90210%3A+Songs+of+Death%2C+Dying+and+the+Dead</url>
490
+ <artist>
491
+ <name>Wednesday 13</name>
492
+ <mbid>f4d306f3-e82b-4186-9cca-4e8806db21f8</mbid>
493
+ <url>http://www.last.fm/music/Wednesday+13</url>
494
+ </artist>
495
+ <image size="small">http://images.amazon.com/images/P/B0007YH4BC.01.MZZZZZZZ.jpg</image>
496
+ <image size="medium">http://images.amazon.com/images/P/B0007YH4BC.01.MZZZZZZZ.jpg</image>
497
+ <image size="large">http://images.amazon.com/images/P/B0007YH4BC.01.MZZZZZZZ.jpg</image>
498
+ </album>
499
+ <album>
500
+ <name>Air Traffic - Fractured Life</name>
501
+ <playcount>1</playcount>
502
+ <tagcount></tagcount>
503
+ <mbid></mbid>
504
+ <url>http://www.last.fm/music/Air+Traffic/Air+Traffic+-+Fractured+Life</url>
505
+ <artist>
506
+ <name>Air Traffic</name>
507
+ <mbid>c8fb45c8-b3da-422d-a6db-73ac2ee56f77</mbid>
508
+ <url>http://www.last.fm/music/Air+Traffic</url>
509
+ </artist>
510
+ <image size="small">http://userserve-ak.last.fm/serve/34s/27824861.jpg</image>
511
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/27824861.jpg</image>
512
+ <image size="large">http://userserve-ak.last.fm/serve/126/27824861.jpg</image>
513
+ </album>
514
+ <album>
515
+ <name>Weapons of Mass Destruction</name>
516
+ <playcount>1</playcount>
517
+ <tagcount></tagcount>
518
+ <mbid>bf981e05-2807-4fc3-857b-7291add78009</mbid>
519
+ <url>http://www.last.fm/music/Xzibit/Weapons+of+Mass+Destruction</url>
520
+ <artist>
521
+ <name>Xzibit</name>
522
+ <mbid>9e839dc3-55f3-4492-ad0e-a1a2e84275e2</mbid>
523
+ <url>http://www.last.fm/music/Xzibit</url>
524
+ </artist>
525
+ <image size="small">http://userserve-ak.last.fm/serve/34s/23055773.jpg</image>
526
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/23055773.jpg</image>
527
+ <image size="large">http://userserve-ak.last.fm/serve/126/23055773.jpg</image>
528
+ </album>
529
+ <album>
530
+ <name>Komm schon</name>
531
+ <playcount>1</playcount>
532
+ <tagcount></tagcount>
533
+ <mbid>015d30c7-71ab-4ea2-bb11-674a033da4e9</mbid>
534
+ <url>http://www.last.fm/music/Sportfreunde+Stiller/Komm+schon</url>
535
+ <artist>
536
+ <name>Sportfreunde Stiller</name>
537
+ <mbid>35581de7-591f-424f-9c64-7b22fd45605e</mbid>
538
+ <url>http://www.last.fm/music/Sportfreunde+Stiller</url>
539
+ </artist>
540
+ <image size="small">http://userserve-ak.last.fm/serve/34s/8738475.jpg</image>
541
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/8738475.jpg</image>
542
+ <image size="large">http://userserve-ak.last.fm/serve/126/8738475.jpg</image>
543
+ </album>
544
+ <album>
545
+ <name>Plans</name>
546
+ <playcount>1</playcount>
547
+ <tagcount></tagcount>
548
+ <mbid>ec629ee8-a99f-4ac1-8bfd-042e2f3dd0c9</mbid>
549
+ <url>http://www.last.fm/music/Death+Cab+for+Cutie/Plans</url>
550
+ <artist>
551
+ <name>Death Cab for Cutie</name>
552
+ <mbid>0039c7ae-e1a7-4a7d-9b49-0cbc716821a6</mbid>
553
+ <url>http://www.last.fm/music/Death+Cab+for+Cutie</url>
554
+ </artist>
555
+ <image size="small">http://userserve-ak.last.fm/serve/34s/8674517.jpg</image>
556
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/8674517.jpg</image>
557
+ <image size="large">http://userserve-ak.last.fm/serve/126/8674517.jpg</image>
558
+ </album>
559
+ <album>
560
+ <name>Let Go</name>
561
+ <playcount>1</playcount>
562
+ <tagcount></tagcount>
563
+ <mbid>f8a1fc40-7295-4896-9a59-7a53ea36e450</mbid>
564
+ <url>http://www.last.fm/music/Avril+Lavigne/Let+Go</url>
565
+ <artist>
566
+ <name>Avril Lavigne</name>
567
+ <mbid>0103c1cc-4a09-4a5d-a344-56ad99a77193</mbid>
568
+ <url>http://www.last.fm/music/Avril+Lavigne</url>
569
+ </artist>
570
+ <image size="small">http://userserve-ak.last.fm/serve/34s/23749775.jpg</image>
571
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/23749775.jpg</image>
572
+ <image size="large">http://userserve-ak.last.fm/serve/126/23749775.jpg</image>
573
+ </album>
574
+ <album>
575
+ <name>Jelängerjelieber</name>
576
+ <playcount>1</playcount>
577
+ <tagcount></tagcount>
578
+ <mbid>712d55b2-9f62-4823-96d9-9e94efa88c07</mbid>
579
+ <url>http://www.last.fm/music/Klee/Jel%C3%A4ngerjelieber</url>
580
+ <artist>
581
+ <name>Klee</name>
582
+ <mbid>ed46f02c-0801-40f1-872c-5259ce334476</mbid>
583
+ <url>http://www.last.fm/music/Klee</url>
584
+ </artist>
585
+ <image size="small">http://images.amazon.com/images/P/B00069A77G.01.MZZZZZZZ.jpg</image>
586
+ <image size="medium">http://images.amazon.com/images/P/B00069A77G.01.MZZZZZZZ.jpg</image>
587
+ <image size="large">http://images.amazon.com/images/P/B00069A77G.01.MZZZZZZZ.jpg</image>
588
+ </album>
589
+ <album>
590
+ <name>MGMT</name>
591
+ <playcount>1</playcount>
592
+ <tagcount></tagcount>
593
+ <mbid></mbid>
594
+ <url>http://www.last.fm/music/Katy+Perry/MGMT</url>
595
+ <artist>
596
+ <name>Katy Perry</name>
597
+ <mbid>122d63fc-8671-43e4-9752-34e846d62a9c</mbid>
598
+ <url>http://www.last.fm/music/Katy+Perry</url>
599
+ </artist>
600
+ <image size="small">http://cdn.last.fm/depth/catalogue/noimage/cover_med.gif</image>
601
+ <image size="medium">http://cdn.last.fm/depth/catalogue/noimage/cover_med.gif</image>
602
+ <image size="large">http://cdn.last.fm/depth/catalogue/noimage/cover_med.gif</image>
603
+ </album>
604
+ <album>
605
+ <name>Punk in Drublic</name>
606
+ <playcount>1</playcount>
607
+ <tagcount></tagcount>
608
+ <mbid>599d84c2-0612-42d3-a19e-11e3bfd6bddf</mbid>
609
+ <url>http://www.last.fm/music/NOFX/Punk+in+Drublic</url>
610
+ <artist>
611
+ <name>NOFX</name>
612
+ <mbid>dcaa4f81-bfb7-44eb-8594-4e74f004b6e4</mbid>
613
+ <url>http://www.last.fm/music/NOFX</url>
614
+ </artist>
615
+ <image size="small">http://images-eu.amazon.com/images/P/B0000248N5.02.THUMBZZZ.jpg</image>
616
+ <image size="medium">http://images-eu.amazon.com/images/P/B0000248N5.02.MZZZZZZZ.jpg</image>
617
+ <image size="large">http://images-eu.amazon.com/images/P/B0000248N5.02.LZZZZZZZ.jpg</image>
618
+ </album>
619
+ <album>
620
+ <name>Minutes To Midnight</name>
621
+ <playcount>1</playcount>
622
+ <tagcount></tagcount>
623
+ <mbid></mbid>
624
+ <url>http://www.last.fm/music/Linkin+Park/Minutes+To+Midnight</url>
625
+ <artist>
626
+ <name>Linkin Park</name>
627
+ <mbid>f59c5520-5f46-4d2c-b2c4-822eabf53419</mbid>
628
+ <url>http://www.last.fm/music/Linkin+Park</url>
629
+ </artist>
630
+ <image size="small">http://userserve-ak.last.fm/serve/34s/9150945.jpg</image>
631
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/9150945.jpg</image>
632
+ <image size="large">http://userserve-ak.last.fm/serve/126/9150945.jpg</image>
633
+ </album>
634
+ <album>
635
+ <name>K.O.O.K.</name>
636
+ <playcount>1</playcount>
637
+ <tagcount></tagcount>
638
+ <mbid>ac97d529-1f1d-46d7-81e4-f740765b888a</mbid>
639
+ <url>http://www.last.fm/music/Tocotronic/K.O.O.K.</url>
640
+ <artist>
641
+ <name>Tocotronic</name>
642
+ <mbid>7717539b-33aa-45d5-b88d-9e627172db19</mbid>
643
+ <url>http://www.last.fm/music/Tocotronic</url>
644
+ </artist>
645
+ <image size="small">http://userserve-ak.last.fm/serve/34s/8679829.jpg</image>
646
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/8679829.jpg</image>
647
+ <image size="large">http://userserve-ak.last.fm/serve/126/8679829.jpg</image>
648
+ </album>
649
+ <album>
650
+ <name>O2</name>
651
+ <playcount>1</playcount>
652
+ <tagcount></tagcount>
653
+ <mbid>f0c3d937-189d-4ead-bbb5-aed1f19bd484</mbid>
654
+ <url>http://www.last.fm/music/O-Town/O2</url>
655
+ <artist>
656
+ <name>O-Town</name>
657
+ <mbid>5b5b5410-29d7-478a-94ca-bffa06c73579</mbid>
658
+ <url>http://www.last.fm/music/O-Town</url>
659
+ </artist>
660
+ <image size="small">http://images.amazon.com/images/P/B00006BCGV.01._SCMZZZZZZZ_.jpg</image>
661
+ <image size="medium">http://images.amazon.com/images/P/B00006BCGV.01._SCMZZZZZZZ_.jpg</image>
662
+ <image size="large">http://images.amazon.com/images/P/B00006BCGV.01._SCMZZZZZZZ_.jpg</image>
663
+ </album>
664
+ <album>
665
+ <name>So Much for the City</name>
666
+ <playcount>1</playcount>
667
+ <tagcount></tagcount>
668
+ <mbid>43f2aedb-bd7b-48f3-be28-333b505ef5f6</mbid>
669
+ <url>http://www.last.fm/music/The+Thrills/So+Much+for+the+City</url>
670
+ <artist>
671
+ <name>The Thrills</name>
672
+ <mbid>048fad7a-10ba-4f9e-b305-580fb3ce32a4</mbid>
673
+ <url>http://www.last.fm/music/The+Thrills</url>
674
+ </artist>
675
+ <image size="small">http://userserve-ak.last.fm/serve/34s/11542983.jpg</image>
676
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/11542983.jpg</image>
677
+ <image size="large">http://userserve-ak.last.fm/serve/126/11542983.jpg</image>
678
+ </album>
679
+ <album>
680
+ <name>Overtones</name>
681
+ <playcount>1</playcount>
682
+ <tagcount></tagcount>
683
+ <mbid></mbid>
684
+ <url>http://www.last.fm/music/Just+Jack/Overtones</url>
685
+ <artist>
686
+ <name>Just Jack</name>
687
+ <mbid>ac70f34d-95fd-40ed-b436-f5402fb5ffb8</mbid>
688
+ <url>http://www.last.fm/music/Just+Jack</url>
689
+ </artist>
690
+ <image size="small">http://userserve-ak.last.fm/serve/34s/9440767.jpg</image>
691
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/9440767.jpg</image>
692
+ <image size="large">http://userserve-ak.last.fm/serve/126/9440767.jpg</image>
693
+ </album>
694
+ <album>
695
+ <name>Rock Against Bush, Volume 1</name>
696
+ <playcount>1</playcount>
697
+ <tagcount></tagcount>
698
+ <mbid></mbid>
699
+ <url>http://www.last.fm/music/Against+Me%21/Rock+Against+Bush%2C+Volume+1</url>
700
+ <artist>
701
+ <name>Against Me!</name>
702
+ <mbid>a66ebddc-ff04-46b8-820a-15c63e80dba1</mbid>
703
+ <url>http://www.last.fm/music/Against+Me%21</url>
704
+ </artist>
705
+ <image size="small">http://cdn.last.fm/depth/catalogue/noimage/cover_med.gif</image>
706
+ <image size="medium">http://cdn.last.fm/depth/catalogue/noimage/cover_med.gif</image>
707
+ <image size="large">http://cdn.last.fm/depth/catalogue/noimage/cover_med.gif</image>
708
+ </album>
709
+ <album>
710
+ <name>Room on Fire</name>
711
+ <playcount>1</playcount>
712
+ <tagcount></tagcount>
713
+ <mbid>5c8f9d13-ecde-4f64-9b51-0572144db3ab</mbid>
714
+ <url>http://www.last.fm/music/The+Strokes/Room+on+Fire</url>
715
+ <artist>
716
+ <name>The Strokes</name>
717
+ <mbid>f181961b-20f7-459e-89de-920ef03c7ed0</mbid>
718
+ <url>http://www.last.fm/music/The+Strokes</url>
719
+ </artist>
720
+ <image size="small">http://userserve-ak.last.fm/serve/34s/22764783.jpg</image>
721
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/22764783.jpg</image>
722
+ <image size="large">http://userserve-ak.last.fm/serve/126/22764783.jpg</image>
723
+ </album>
724
+ <album>
725
+ <name>All Or Nothing</name>
726
+ <playcount>1</playcount>
727
+ <tagcount></tagcount>
728
+ <mbid></mbid>
729
+ <url>http://www.last.fm/music/The+Subways/All+Or+Nothing</url>
730
+ <artist>
731
+ <name>The Subways</name>
732
+ <mbid>20e264d7-b4d5-4e49-8931-a9c67ff07f04</mbid>
733
+ <url>http://www.last.fm/music/The+Subways</url>
734
+ </artist>
735
+ <image size="small">http://userserve-ak.last.fm/serve/34s/22746017.jpg</image>
736
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/22746017.jpg</image>
737
+ <image size="large">http://userserve-ak.last.fm/serve/126/22746017.jpg</image>
738
+ </album>
739
+ <album>
740
+ <name>The Razors Edge</name>
741
+ <playcount>1</playcount>
742
+ <tagcount></tagcount>
743
+ <mbid>ecc5dddd-268a-4bcf-aa0b-affb3b6c8ffc</mbid>
744
+ <url>http://www.last.fm/music/AC%252FDC/The+Razors+Edge</url>
745
+ <artist>
746
+ <name>AC/DC</name>
747
+ <mbid>66c662b6-6e2f-4930-8610-912e24c63ed1</mbid>
748
+ <url>http://www.last.fm/music/AC%252FDC</url>
749
+ </artist>
750
+ <image size="small">http://userserve-ak.last.fm/serve/34s/9918245.jpg</image>
751
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/9918245.jpg</image>
752
+ <image size="large">http://userserve-ak.last.fm/serve/126/9918245.jpg</image>
753
+ </album>
754
+ </albums></lfm>