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,765 @@
1
+ <?xml version="1.0" encoding="utf-8"?>
2
+ <lfm status="ok">
3
+ <tracks user="xhochy" page="23" perPage="50" totalPages="34">
4
+ <track>
5
+ <name>Drink Drank Punk</name>
6
+ <playcount>1</playcount>
7
+ <tagcount></tagcount>
8
+ <mbid></mbid>
9
+ <url>http://www.last.fm/music/Anti-Flag/_/Drink+Drank+Punk</url>
10
+ <streamable fulltrack="0">0</streamable>
11
+ <artist>
12
+ <name>Anti-Flag</name>
13
+ <mbid>b88f21a7-a1b9-48fd-bbc4-ae758026f17f</mbid>
14
+ <url>http://www.last.fm/music/Anti-Flag</url>
15
+ </artist>
16
+ <image size="small">http://images.amazon.com/images/P/B0000005XM.01.MZZZZZZZ.jpg</image>
17
+ <image size="medium">http://images.amazon.com/images/P/B0000005XM.01.MZZZZZZZ.jpg</image>
18
+ <image size="large">http://images.amazon.com/images/P/B0000005XM.01.MZZZZZZZ.jpg</image>
19
+ </track>
20
+ <track>
21
+ <name>Worried About Ray</name>
22
+ <playcount>1</playcount>
23
+ <tagcount></tagcount>
24
+ <mbid></mbid>
25
+ <url>http://www.last.fm/music/The+Hoosiers/_/Worried+About+Ray</url>
26
+ <streamable fulltrack="0">1</streamable>
27
+ <artist>
28
+ <name>The Hoosiers</name>
29
+ <mbid></mbid>
30
+ <url>http://www.last.fm/music/The+Hoosiers</url>
31
+ </artist>
32
+ <image size="small">http://userserve-ak.last.fm/serve/34s/22246413.jpg</image>
33
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/22246413.jpg</image>
34
+ <image size="large">http://userserve-ak.last.fm/serve/126/22246413.jpg</image>
35
+ </track>
36
+ <track>
37
+ <name>Dickes B</name>
38
+ <playcount>1</playcount>
39
+ <tagcount></tagcount>
40
+ <mbid></mbid>
41
+ <url>http://www.last.fm/music/Seeed/_/Dickes+B</url>
42
+ <streamable fulltrack="0">1</streamable>
43
+ <artist>
44
+ <name>Seeed</name>
45
+ <mbid>49c43c49-328d-4b14-8a1d-be99cafaec14</mbid>
46
+ <url>http://www.last.fm/music/Seeed</url>
47
+ </artist>
48
+ <image size="small">http://www.7digital.com/shops/assets/sleeveart/685738615520_182.JPEG</image>
49
+ <image size="medium">http://www.7digital.com/shops/assets/sleeveart/685738615520_182.JPEG</image>
50
+ <image size="large">http://www.7digital.com/shops/assets/sleeveart/685738615520_182.JPEG</image>
51
+ </track>
52
+ <track>
53
+ <name>Send a Prayer</name>
54
+ <playcount>1</playcount>
55
+ <tagcount></tagcount>
56
+ <mbid></mbid>
57
+ <url>http://www.last.fm/music/Gentleman/_/Send+a+Prayer</url>
58
+ <streamable fulltrack="0">1</streamable>
59
+ <artist>
60
+ <name>Gentleman</name>
61
+ <mbid>8de4a831-7c25-4d34-90cf-254de0c36e49</mbid>
62
+ <url>http://www.last.fm/music/Gentleman</url>
63
+ </artist>
64
+ <image size="small">http://userserve-ak.last.fm/serve/34s/28019385.jpg</image>
65
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/28019385.jpg</image>
66
+ <image size="large">http://userserve-ak.last.fm/serve/126/28019385.jpg</image>
67
+ </track>
68
+ <track>
69
+ <name>In the Cold Cold Night</name>
70
+ <playcount>1</playcount>
71
+ <tagcount></tagcount>
72
+ <mbid></mbid>
73
+ <url>http://www.last.fm/music/The+White+Stripes/_/In+the+Cold+Cold+Night</url>
74
+ <streamable fulltrack="0">0</streamable>
75
+ <artist>
76
+ <name>The White Stripes</name>
77
+ <mbid>11ae9fbb-f3d7-4a47-936f-4c0a04d3b3b5</mbid>
78
+ <url>http://www.last.fm/music/The+White+Stripes</url>
79
+ </artist>
80
+ </track>
81
+ <track>
82
+ <name>Wicked Hip Hop</name>
83
+ <playcount>1</playcount>
84
+ <tagcount></tagcount>
85
+ <mbid></mbid>
86
+ <url>http://www.last.fm/music/Fatman+Scoop/_/Wicked++Hip+Hop</url>
87
+ <streamable fulltrack="0">0</streamable>
88
+ <artist>
89
+ <name>Fatman Scoop</name>
90
+ <mbid>d3d20e96-5783-4126-9d64-075566611c5e</mbid>
91
+ <url>http://www.last.fm/music/Fatman+Scoop</url>
92
+ </artist>
93
+ </track>
94
+ <track>
95
+ <name>Zu spät</name>
96
+ <playcount>1</playcount>
97
+ <tagcount></tagcount>
98
+ <mbid></mbid>
99
+ <url>http://www.last.fm/music/Die+%C3%84rzte/_/Zu+sp%C3%A4t</url>
100
+ <streamable fulltrack="0">1</streamable>
101
+ <artist>
102
+ <name>Die Ärzte</name>
103
+ <mbid>f2fb0ff0-5679-42ec-a55c-15109ce6e320</mbid>
104
+ <url>http://www.last.fm/music/Die+%C3%84rzte</url>
105
+ </artist>
106
+ <image size="small">http://images.amazon.com/images/P/B00000ARRT.01._SCMZZZZZZZ_.jpg</image>
107
+ <image size="medium">http://images.amazon.com/images/P/B00000ARRT.01._SCMZZZZZZZ_.jpg</image>
108
+ <image size="large">http://images.amazon.com/images/P/B00000ARRT.01._SCMZZZZZZZ_.jpg</image>
109
+ </track>
110
+ <track>
111
+ <name>Latin Simone (Que Pasa Contigo)</name>
112
+ <playcount>1</playcount>
113
+ <tagcount></tagcount>
114
+ <mbid></mbid>
115
+ <url>http://www.last.fm/music/Gorillaz/_/Latin+Simone+%28Que+Pasa+Contigo%29</url>
116
+ <streamable fulltrack="0">1</streamable>
117
+ <artist>
118
+ <name>Gorillaz</name>
119
+ <mbid>e21857d5-3256-4547-afb3-4b6ded592596</mbid>
120
+ <url>http://www.last.fm/music/Gorillaz</url>
121
+ </artist>
122
+ </track>
123
+ <track>
124
+ <name>Titel 06</name>
125
+ <playcount>1</playcount>
126
+ <tagcount></tagcount>
127
+ <mbid></mbid>
128
+ <url>http://www.last.fm/music/%5Bunknown%5D/_/Titel+06</url>
129
+ <streamable fulltrack="0">0</streamable>
130
+ <artist>
131
+ <name>[unknown]</name>
132
+ <mbid>125ec42a-7229-4250-afc5-e057484327fe</mbid>
133
+ <url>http://www.last.fm/music/%5Bunknown%5D</url>
134
+ </artist>
135
+ </track>
136
+ <track>
137
+ <name>Rainy Night in Soho</name>
138
+ <playcount>1</playcount>
139
+ <tagcount></tagcount>
140
+ <mbid></mbid>
141
+ <url>http://www.last.fm/music/The+Pogues/_/Rainy+Night+in+Soho</url>
142
+ <streamable fulltrack="0">0</streamable>
143
+ <artist>
144
+ <name>The Pogues</name>
145
+ <mbid>d41a6875-b626-4c0f-89a1-aecb643d29ff</mbid>
146
+ <url>http://www.last.fm/music/The+Pogues</url>
147
+ </artist>
148
+ <image size="small">http://images.amazon.com/images/P/B0006957S0.01.MZZZZZZZ.jpg</image>
149
+ <image size="medium">http://images.amazon.com/images/P/B0006957S0.01.MZZZZZZZ.jpg</image>
150
+ <image size="large">http://images.amazon.com/images/P/B0006957S0.01.MZZZZZZZ.jpg</image>
151
+ </track>
152
+ <track>
153
+ <name>Voodoo People (edit)</name>
154
+ <playcount>1</playcount>
155
+ <tagcount></tagcount>
156
+ <mbid></mbid>
157
+ <url>http://www.last.fm/music/The+Prodigy/_/Voodoo+People+%28edit%29</url>
158
+ <streamable fulltrack="0">0</streamable>
159
+ <artist>
160
+ <name>The Prodigy</name>
161
+ <mbid>4a4ee089-93b1-4470-af9a-6ff575d32704</mbid>
162
+ <url>http://www.last.fm/music/The+Prodigy</url>
163
+ </artist>
164
+ <image size="small">http://images.amazon.com/images/P/B000007338.01._SCMZZZZZZZ_.jpg</image>
165
+ <image size="medium">http://images.amazon.com/images/P/B000007338.01._SCMZZZZZZZ_.jpg</image>
166
+ <image size="large">http://images.amazon.com/images/P/B000007338.01._SCMZZZZZZZ_.jpg</image>
167
+ </track>
168
+ <track>
169
+ <name>Miracle</name>
170
+ <playcount>1</playcount>
171
+ <tagcount></tagcount>
172
+ <mbid></mbid>
173
+ <url>http://www.last.fm/music/Foo+Fighters/_/Miracle</url>
174
+ <streamable fulltrack="0">1</streamable>
175
+ <artist>
176
+ <name>Foo Fighters</name>
177
+ <mbid>67f66c07-6e61-4026-ade5-7e782fad3a5d</mbid>
178
+ <url>http://www.last.fm/music/Foo+Fighters</url>
179
+ </artist>
180
+ <image size="small">http://userserve-ak.last.fm/serve/34s/23752293.jpg</image>
181
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/23752293.jpg</image>
182
+ <image size="large">http://userserve-ak.last.fm/serve/126/23752293.jpg</image>
183
+ </track>
184
+ <track>
185
+ <name>Fäule</name>
186
+ <playcount>1</playcount>
187
+ <tagcount></tagcount>
188
+ <mbid></mbid>
189
+ <url>http://www.last.fm/music/Beginner/_/F%C3%A4ule</url>
190
+ <streamable fulltrack="1">1</streamable>
191
+ <artist>
192
+ <name>Beginner</name>
193
+ <mbid>709b55e5-0286-4fda-bf7e-3aff1894554d</mbid>
194
+ <url>http://www.last.fm/music/Beginner</url>
195
+ </artist>
196
+ <image size="small">http://userserve-ak.last.fm/serve/34s/12639629.jpg</image>
197
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/12639629.jpg</image>
198
+ <image size="large">http://userserve-ak.last.fm/serve/126/12639629.jpg</image>
199
+ </track>
200
+ <track>
201
+ <name>Lipstick Licking</name>
202
+ <playcount>1</playcount>
203
+ <tagcount></tagcount>
204
+ <mbid></mbid>
205
+ <url>http://www.last.fm/music/Milburn/_/Lipstick+Licking</url>
206
+ <streamable fulltrack="1">1</streamable>
207
+ <artist>
208
+ <name>Milburn</name>
209
+ <mbid>29a2e85c-1b08-4fe9-91a5-662d6e70dfe7</mbid>
210
+ <url>http://www.last.fm/music/Milburn</url>
211
+ </artist>
212
+ <image size="small">http://userserve-ak.last.fm/serve/34s/25441753.jpg</image>
213
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/25441753.jpg</image>
214
+ <image size="large">http://userserve-ak.last.fm/serve/126/25441753.jpg</image>
215
+ </track>
216
+ <track>
217
+ <name>MC's Missing</name>
218
+ <playcount>1</playcount>
219
+ <tagcount></tagcount>
220
+ <mbid></mbid>
221
+ <url>http://www.last.fm/music/Scooter/_/MC%27s+Missing</url>
222
+ <streamable fulltrack="0">0</streamable>
223
+ <artist>
224
+ <name>Scooter</name>
225
+ <mbid>83e59f23-3b0b-4304-834d-5bcafd5df6d2</mbid>
226
+ <url>http://www.last.fm/music/Scooter</url>
227
+ </artist>
228
+ <image size="small">http://images.amazon.com/images/P/B00004TYKI.01.MZZZZZZZ.jpg</image>
229
+ <image size="medium">http://images.amazon.com/images/P/B00004TYKI.01.MZZZZZZZ.jpg</image>
230
+ <image size="large">http://images.amazon.com/images/P/B00004TYKI.01.MZZZZZZZ.jpg</image>
231
+ </track>
232
+ <track>
233
+ <name>Titel 02</name>
234
+ <playcount>1</playcount>
235
+ <tagcount></tagcount>
236
+ <mbid></mbid>
237
+ <url>http://www.last.fm/music/%5Bunknown%5D/_/Titel+02</url>
238
+ <streamable fulltrack="0">0</streamable>
239
+ <artist>
240
+ <name>[unknown]</name>
241
+ <mbid>125ec42a-7229-4250-afc5-e057484327fe</mbid>
242
+ <url>http://www.last.fm/music/%5Bunknown%5D</url>
243
+ </artist>
244
+ </track>
245
+ <track>
246
+ <name>Zurück</name>
247
+ <playcount>1</playcount>
248
+ <tagcount></tagcount>
249
+ <mbid></mbid>
250
+ <url>http://www.last.fm/music/Samy+Deluxe/_/Zur%C3%BCck</url>
251
+ <streamable fulltrack="0">1</streamable>
252
+ <artist>
253
+ <name>Samy Deluxe</name>
254
+ <mbid>14aa9e32-c377-4dc6-9162-2e6c67a8eaf4</mbid>
255
+ <url>http://www.last.fm/music/Samy+Deluxe</url>
256
+ </artist>
257
+ <image size="small">http://userserve-ak.last.fm/serve/34s/14343115.jpg</image>
258
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/14343115.jpg</image>
259
+ <image size="large">http://userserve-ak.last.fm/serve/126/14343115.jpg</image>
260
+ </track>
261
+ <track>
262
+ <name>The Refused Party Program</name>
263
+ <playcount>1</playcount>
264
+ <tagcount></tagcount>
265
+ <mbid></mbid>
266
+ <url>http://www.last.fm/music/Refused/_/The+Refused+Party+Program</url>
267
+ <streamable fulltrack="0">1</streamable>
268
+ <artist>
269
+ <name>Refused</name>
270
+ <mbid>42884e27-dfb8-453d-990f-2ffd90bc2d1a</mbid>
271
+ <url>http://www.last.fm/music/Refused</url>
272
+ </artist>
273
+ <image size="small">http://userserve-ak.last.fm/serve/34s/12622239.jpg</image>
274
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/12622239.jpg</image>
275
+ <image size="large">http://userserve-ak.last.fm/serve/126/12622239.jpg</image>
276
+ </track>
277
+ <track>
278
+ <name>Jede Generation</name>
279
+ <playcount>1</playcount>
280
+ <tagcount></tagcount>
281
+ <mbid></mbid>
282
+ <url>http://www.last.fm/music/Die+Fantastischen+Vier/_/Jede+Generation</url>
283
+ <streamable fulltrack="0">1</streamable>
284
+ <artist>
285
+ <name>Die Fantastischen Vier</name>
286
+ <mbid>7928481f-848e-4551-b658-472c0aaf0c85</mbid>
287
+ <url>http://www.last.fm/music/Die+Fantastischen+Vier</url>
288
+ </artist>
289
+ <image size="small">http://userserve-ak.last.fm/serve/34s/19560765.jpg</image>
290
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/19560765.jpg</image>
291
+ <image size="large">http://userserve-ak.last.fm/serve/126/19560765.jpg</image>
292
+ </track>
293
+ <track>
294
+ <name>Back To Berlin</name>
295
+ <playcount>1</playcount>
296
+ <tagcount></tagcount>
297
+ <mbid></mbid>
298
+ <url>http://www.last.fm/music/Mr.%2BX%2B%2526%2BMr.%2BY/_/Back+To+Berlin</url>
299
+ <streamable fulltrack="0">0</streamable>
300
+ <artist>
301
+ <name>Mr. X &amp; Mr. Y</name>
302
+ <mbid>5464176d-13c8-4b32-842d-12b34bc38032</mbid>
303
+ <url>http://www.last.fm/music/Mr.%2BX%2B%2526%2BMr.%2BY</url>
304
+ </artist>
305
+ <image size="small">http://images.amazon.com/images/P/B00004XNSP.01.MZZZZZZZ.jpg</image>
306
+ <image size="medium">http://images.amazon.com/images/P/B00004XNSP.01.MZZZZZZZ.jpg</image>
307
+ <image size="large">http://images.amazon.com/images/P/B00004XNSP.01.MZZZZZZZ.jpg</image>
308
+ </track>
309
+ <track>
310
+ <name>Droppin' Plates</name>
311
+ <playcount>1</playcount>
312
+ <tagcount></tagcount>
313
+ <mbid></mbid>
314
+ <url>http://www.last.fm/music/Disturbed/_/Droppin%27+Plates</url>
315
+ <streamable fulltrack="0">1</streamable>
316
+ <artist>
317
+ <name>Disturbed</name>
318
+ <mbid>4bb4e4e4-5f66-4509-98af-62dbb90c45c5</mbid>
319
+ <url>http://www.last.fm/music/Disturbed</url>
320
+ </artist>
321
+ <image size="small">http://userserve-ak.last.fm/serve/34s/8634627.jpg</image>
322
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/8634627.jpg</image>
323
+ <image size="large">http://userserve-ak.last.fm/serve/126/8634627.jpg</image>
324
+ </track>
325
+ <track>
326
+ <name>9-11-01</name>
327
+ <playcount>1</playcount>
328
+ <tagcount></tagcount>
329
+ <mbid></mbid>
330
+ <url>http://www.last.fm/music/Soulfly/_/9-11-01</url>
331
+ <streamable fulltrack="0">0</streamable>
332
+ <artist>
333
+ <name>Soulfly</name>
334
+ <mbid>832a43c7-aa7d-439b-a6b4-4f1afa671c24</mbid>
335
+ <url>http://www.last.fm/music/Soulfly</url>
336
+ </artist>
337
+ </track>
338
+ <track>
339
+ <name>Take Your Carriage Clock and Shove It</name>
340
+ <playcount>1</playcount>
341
+ <tagcount></tagcount>
342
+ <mbid></mbid>
343
+ <url>http://www.last.fm/music/Belle+and+Sebastian/_/Take+Your+Carriage+Clock+and+Shove+It</url>
344
+ <streamable fulltrack="0">0</streamable>
345
+ <artist>
346
+ <name>Belle and Sebastian</name>
347
+ <mbid>e5c7b94f-e264-473c-bb0f-37c85d4d5c70</mbid>
348
+ <url>http://www.last.fm/music/Belle+and+Sebastian</url>
349
+ </artist>
350
+ <image size="small">http://images.amazon.com/images/P/B0008FPISG.01._SCMZZZZZZZ_.jpg</image>
351
+ <image size="medium">http://images.amazon.com/images/P/B0008FPISG.01._SCMZZZZZZZ_.jpg</image>
352
+ <image size="large">http://images.amazon.com/images/P/B0008FPISG.01._SCMZZZZZZZ_.jpg</image>
353
+ </track>
354
+ <track>
355
+ <name>Always Where I Need to Be</name>
356
+ <playcount>1</playcount>
357
+ <tagcount></tagcount>
358
+ <mbid></mbid>
359
+ <url>http://www.last.fm/music/The+Kooks/_/Always+Where+I+Need+to+Be</url>
360
+ <streamable fulltrack="0">1</streamable>
361
+ <artist>
362
+ <name>The Kooks</name>
363
+ <mbid>f82f3a3e-29c2-42ca-b589-bc5dc210fa9e</mbid>
364
+ <url>http://www.last.fm/music/The+Kooks</url>
365
+ </artist>
366
+ <image size="small">http://userserve-ak.last.fm/serve/34s/15158593.jpg</image>
367
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/15158593.jpg</image>
368
+ <image size="large">http://userserve-ak.last.fm/serve/126/15158593.jpg</image>
369
+ </track>
370
+ <track>
371
+ <name>Cut the rope</name>
372
+ <playcount>1</playcount>
373
+ <tagcount></tagcount>
374
+ <mbid></mbid>
375
+ <url>http://www.last.fm/music/Mando+Diao+%28live%29/_/Cut+the+rope</url>
376
+ <streamable fulltrack="0">0</streamable>
377
+ <artist>
378
+ <name>Mando Diao (live)</name>
379
+ <mbid></mbid>
380
+ <url>http://www.last.fm/music/Mando+Diao+%28live%29</url>
381
+ </artist>
382
+ </track>
383
+ <track>
384
+ <name>Olli Kahn - japanische</name>
385
+ <playcount>1</playcount>
386
+ <tagcount></tagcount>
387
+ <mbid></mbid>
388
+ <url>http://www.last.fm/music/Die+Prinzen/_/Olli+Kahn+-+japanische</url>
389
+ <streamable fulltrack="0">0</streamable>
390
+ <artist>
391
+ <name>Die Prinzen</name>
392
+ <mbid>a7ebbbb1-d29f-4e4a-8657-e687efc72ac5</mbid>
393
+ <url>http://www.last.fm/music/Die+Prinzen</url>
394
+ </artist>
395
+ </track>
396
+ <track>
397
+ <name>Weichei - Das Musical 1. Akt</name>
398
+ <playcount>1</playcount>
399
+ <tagcount></tagcount>
400
+ <mbid></mbid>
401
+ <url>http://www.last.fm/music/Badesalz/_/Weichei+-+Das+Musical+1.+Akt</url>
402
+ <streamable fulltrack="0">0</streamable>
403
+ <artist>
404
+ <name>Badesalz</name>
405
+ <mbid>533d4015-a55b-4f2a-b968-b5a43f08b381</mbid>
406
+ <url>http://www.last.fm/music/Badesalz</url>
407
+ </artist>
408
+ <image size="small">http://userserve-ak.last.fm/serve/34s/19583447.jpg</image>
409
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/19583447.jpg</image>
410
+ <image size="large">http://userserve-ak.last.fm/serve/126/19583447.jpg</image>
411
+ </track>
412
+ <track>
413
+ <name>Dirty Business</name>
414
+ <playcount>1</playcount>
415
+ <tagcount></tagcount>
416
+ <mbid></mbid>
417
+ <url>http://www.last.fm/music/The+Dresden+Dolls/_/Dirty+Business</url>
418
+ <streamable fulltrack="0">1</streamable>
419
+ <artist>
420
+ <name>The Dresden Dolls</name>
421
+ <mbid>107c7983-0728-46ea-8550-77e698adf690</mbid>
422
+ <url>http://www.last.fm/music/The+Dresden+Dolls</url>
423
+ </artist>
424
+ <image size="small">http://images.amazon.com/images/P/B000EGEJWK.01._SCMZZZZZZZ_.jpg</image>
425
+ <image size="medium">http://images.amazon.com/images/P/B000EGEJWK.01._SCMZZZZZZZ_.jpg</image>
426
+ <image size="large">http://images.amazon.com/images/P/B000EGEJWK.01._SCMZZZZZZZ_.jpg</image>
427
+ </track>
428
+ <track>
429
+ <name>Partie Traumatic</name>
430
+ <playcount>1</playcount>
431
+ <tagcount></tagcount>
432
+ <mbid></mbid>
433
+ <url>http://www.last.fm/music/Black+Kids/_/Partie+Traumatic</url>
434
+ <streamable fulltrack="0">1</streamable>
435
+ <artist>
436
+ <name>Black Kids</name>
437
+ <mbid></mbid>
438
+ <url>http://www.last.fm/music/Black+Kids</url>
439
+ </artist>
440
+ </track>
441
+ <track>
442
+ <name>Ain't Complaining</name>
443
+ <playcount>1</playcount>
444
+ <tagcount></tagcount>
445
+ <mbid></mbid>
446
+ <url>http://www.last.fm/music/Beatsteaks/_/Ain%27t+Complaining</url>
447
+ <streamable fulltrack="0">1</streamable>
448
+ <artist>
449
+ <name>Beatsteaks</name>
450
+ <mbid>a9b88ebb-83aa-4ef7-b674-fabeb572c14e</mbid>
451
+ <url>http://www.last.fm/music/Beatsteaks</url>
452
+ </artist>
453
+ <image size="small">http://images.amazon.com/images/P/B0001MBJ52.02._SCMZZZZZZZ_.jpg</image>
454
+ <image size="medium">http://images.amazon.com/images/P/B0001MBJ52.02._SCMZZZZZZZ_.jpg</image>
455
+ <image size="large">http://images.amazon.com/images/P/B0001MBJ52.02._SCMZZZZZZZ_.jpg</image>
456
+ </track>
457
+ <track>
458
+ <name>Status Pools</name>
459
+ <playcount>1</playcount>
460
+ <tagcount></tagcount>
461
+ <mbid></mbid>
462
+ <url>http://www.last.fm/music/Lagwagon/_/Status+Pools</url>
463
+ <streamable fulltrack="0">0</streamable>
464
+ <artist>
465
+ <name>Lagwagon</name>
466
+ <mbid>c7788fba-e635-4d8b-a937-01a68ab154e3</mbid>
467
+ <url>http://www.last.fm/music/Lagwagon</url>
468
+ </artist>
469
+ <image size="small">http://userserve-ak.last.fm/serve/34s/24063621.jpg</image>
470
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/24063621.jpg</image>
471
+ <image size="large">http://userserve-ak.last.fm/serve/126/24063621.jpg</image>
472
+ </track>
473
+ <track>
474
+ <name>Stupify (live)</name>
475
+ <playcount>1</playcount>
476
+ <tagcount></tagcount>
477
+ <mbid></mbid>
478
+ <url>http://www.last.fm/music/Disturbed/_/Stupify+%28live%29</url>
479
+ <streamable fulltrack="0">1</streamable>
480
+ <artist>
481
+ <name>Disturbed</name>
482
+ <mbid>4bb4e4e4-5f66-4509-98af-62dbb90c45c5</mbid>
483
+ <url>http://www.last.fm/music/Disturbed</url>
484
+ </artist>
485
+ <image size="small">http://cdn.last.fm/depth/catalogue/noimage/cover_med.gif</image>
486
+ <image size="medium">http://cdn.last.fm/depth/catalogue/noimage/cover_med.gif</image>
487
+ <image size="large">http://cdn.last.fm/depth/catalogue/noimage/cover_med.gif</image>
488
+ </track>
489
+ <track>
490
+ <name>Ich und mein Computer</name>
491
+ <playcount>1</playcount>
492
+ <tagcount></tagcount>
493
+ <mbid></mbid>
494
+ <url>http://www.last.fm/music/Deichkind/_/Ich+und+mein+Computer</url>
495
+ <streamable fulltrack="1">1</streamable>
496
+ <artist>
497
+ <name>Deichkind</name>
498
+ <mbid>5de80871-f721-4c7c-b0c5-4ad0d350c232</mbid>
499
+ <url>http://www.last.fm/music/Deichkind</url>
500
+ </artist>
501
+ </track>
502
+ <track>
503
+ <name>Charlotte</name>
504
+ <playcount>1</playcount>
505
+ <tagcount></tagcount>
506
+ <mbid></mbid>
507
+ <url>http://www.last.fm/music/Air+Traffic/_/Charlotte</url>
508
+ <streamable fulltrack="1">1</streamable>
509
+ <artist>
510
+ <name>Air Traffic</name>
511
+ <mbid>c8fb45c8-b3da-422d-a6db-73ac2ee56f77</mbid>
512
+ <url>http://www.last.fm/music/Air+Traffic</url>
513
+ </artist>
514
+ <image size="small">http://userserve-ak.last.fm/serve/34s/15115781.jpg</image>
515
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/15115781.jpg</image>
516
+ <image size="large">http://userserve-ak.last.fm/serve/126/15115781.jpg</image>
517
+ </track>
518
+ <track>
519
+ <name>You've Got Her in Your Pocket</name>
520
+ <playcount>1</playcount>
521
+ <tagcount></tagcount>
522
+ <mbid></mbid>
523
+ <url>http://www.last.fm/music/The+White+Stripes/_/You%27ve+Got+Her+in+Your+Pocket</url>
524
+ <streamable fulltrack="0">0</streamable>
525
+ <artist>
526
+ <name>The White Stripes</name>
527
+ <mbid>11ae9fbb-f3d7-4a47-936f-4c0a04d3b3b5</mbid>
528
+ <url>http://www.last.fm/music/The+White+Stripes</url>
529
+ </artist>
530
+ <image size="small">http://userserve-ak.last.fm/serve/34s/8594965.jpg</image>
531
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/8594965.jpg</image>
532
+ <image size="large">http://userserve-ak.last.fm/serve/126/8594965.jpg</image>
533
+ </track>
534
+ <track>
535
+ <name>Everyday I Love You Less and Less 2005</name>
536
+ <playcount>1</playcount>
537
+ <tagcount></tagcount>
538
+ <mbid></mbid>
539
+ <url>http://www.last.fm/music/Kaiser+Chiefs/_/Everyday+I+Love+You+Less+and+Less+2005</url>
540
+ <streamable fulltrack="0">0</streamable>
541
+ <artist>
542
+ <name>Kaiser Chiefs</name>
543
+ <mbid>90218af4-4d58-4821-8d41-2ee295ebbe21</mbid>
544
+ <url>http://www.last.fm/music/Kaiser+Chiefs</url>
545
+ </artist>
546
+ </track>
547
+ <track>
548
+ <name>Blessing of Jah</name>
549
+ <playcount>1</playcount>
550
+ <tagcount></tagcount>
551
+ <mbid></mbid>
552
+ <url>http://www.last.fm/music/Gentleman/_/Blessing+of+Jah</url>
553
+ <streamable fulltrack="0">1</streamable>
554
+ <artist>
555
+ <name>Gentleman</name>
556
+ <mbid>8de4a831-7c25-4d34-90cf-254de0c36e49</mbid>
557
+ <url>http://www.last.fm/music/Gentleman</url>
558
+ </artist>
559
+ <image size="small">http://userserve-ak.last.fm/serve/34s/28019385.jpg</image>
560
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/28019385.jpg</image>
561
+ <image size="large">http://userserve-ak.last.fm/serve/126/28019385.jpg</image>
562
+ </track>
563
+ <track>
564
+ <name>There's No Home for You Here</name>
565
+ <playcount>1</playcount>
566
+ <tagcount></tagcount>
567
+ <mbid></mbid>
568
+ <url>http://www.last.fm/music/The+White+Stripes/_/There%27s+No+Home+for+You+Here</url>
569
+ <streamable fulltrack="0">0</streamable>
570
+ <artist>
571
+ <name>The White Stripes</name>
572
+ <mbid>11ae9fbb-f3d7-4a47-936f-4c0a04d3b3b5</mbid>
573
+ <url>http://www.last.fm/music/The+White+Stripes</url>
574
+ </artist>
575
+ <image size="small">http://userserve-ak.last.fm/serve/34s/8594965.jpg</image>
576
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/8594965.jpg</image>
577
+ <image size="large">http://userserve-ak.last.fm/serve/126/8594965.jpg</image>
578
+ </track>
579
+ <track>
580
+ <name>The Hardest Button to Button</name>
581
+ <playcount>1</playcount>
582
+ <tagcount></tagcount>
583
+ <mbid></mbid>
584
+ <url>http://www.last.fm/music/The+White+Stripes/_/The+Hardest+Button+to+Button</url>
585
+ <streamable fulltrack="0">0</streamable>
586
+ <artist>
587
+ <name>The White Stripes</name>
588
+ <mbid>11ae9fbb-f3d7-4a47-936f-4c0a04d3b3b5</mbid>
589
+ <url>http://www.last.fm/music/The+White+Stripes</url>
590
+ </artist>
591
+ <image size="small">http://userserve-ak.last.fm/serve/34s/8594965.jpg</image>
592
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/8594965.jpg</image>
593
+ <image size="large">http://userserve-ak.last.fm/serve/126/8594965.jpg</image>
594
+ </track>
595
+ <track>
596
+ <name>Westerland</name>
597
+ <playcount>1</playcount>
598
+ <tagcount></tagcount>
599
+ <mbid></mbid>
600
+ <url>http://www.last.fm/music/Die+%C3%84rzte/_/Westerland</url>
601
+ <streamable fulltrack="0">0</streamable>
602
+ <artist>
603
+ <name>Die Ärzte</name>
604
+ <mbid>f2fb0ff0-5679-42ec-a55c-15109ce6e320</mbid>
605
+ <url>http://www.last.fm/music/Die+%C3%84rzte</url>
606
+ </artist>
607
+ <image size="small">http://images-eu.amazon.com/images/P/B00006ZY7R.03.MZZZZZZZ.jpg</image>
608
+ <image size="medium">http://images-eu.amazon.com/images/P/B00006ZY7R.03.MZZZZZZZ.jpg</image>
609
+ <image size="large">http://images-eu.amazon.com/images/P/B00006ZY7R.03.MZZZZZZZ.jpg</image>
610
+ </track>
611
+ <track>
612
+ <name>Kind von dir</name>
613
+ <playcount>1</playcount>
614
+ <tagcount></tagcount>
615
+ <mbid></mbid>
616
+ <url>http://www.last.fm/music/Jennifer+Rostock/_/Kind+von+dir</url>
617
+ <streamable fulltrack="0">1</streamable>
618
+ <artist>
619
+ <name>Jennifer Rostock</name>
620
+ <mbid></mbid>
621
+ <url>http://www.last.fm/music/Jennifer+Rostock</url>
622
+ </artist>
623
+ <image size="small">http://userserve-ak.last.fm/serve/34s/4393040.jpg</image>
624
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/4393040.jpg</image>
625
+ <image size="large">http://userserve-ak.last.fm/serve/126/4393040.jpg</image>
626
+ </track>
627
+ <track>
628
+ <name>Seven Nation Army</name>
629
+ <playcount>1</playcount>
630
+ <tagcount></tagcount>
631
+ <mbid></mbid>
632
+ <url>http://www.last.fm/music/The+White+Stripes/_/Seven+Nation+Army</url>
633
+ <streamable fulltrack="0">0</streamable>
634
+ <artist>
635
+ <name>The White Stripes</name>
636
+ <mbid>11ae9fbb-f3d7-4a47-936f-4c0a04d3b3b5</mbid>
637
+ <url>http://www.last.fm/music/The+White+Stripes</url>
638
+ </artist>
639
+ <image size="small">http://userserve-ak.last.fm/serve/34s/8594965.jpg</image>
640
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/8594965.jpg</image>
641
+ <image size="large">http://userserve-ak.last.fm/serve/126/8594965.jpg</image>
642
+ </track>
643
+ <track>
644
+ <name>Little Acorns</name>
645
+ <playcount>1</playcount>
646
+ <tagcount></tagcount>
647
+ <mbid></mbid>
648
+ <url>http://www.last.fm/music/The+White+Stripes/_/Little+Acorns</url>
649
+ <streamable fulltrack="0">0</streamable>
650
+ <artist>
651
+ <name>The White Stripes</name>
652
+ <mbid>11ae9fbb-f3d7-4a47-936f-4c0a04d3b3b5</mbid>
653
+ <url>http://www.last.fm/music/The+White+Stripes</url>
654
+ </artist>
655
+ <image size="small">http://userserve-ak.last.fm/serve/34s/8594965.jpg</image>
656
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/8594965.jpg</image>
657
+ <image size="large">http://userserve-ak.last.fm/serve/126/8594965.jpg</image>
658
+ </track>
659
+ <track>
660
+ <name>First To Know</name>
661
+ <playcount>1</playcount>
662
+ <tagcount></tagcount>
663
+ <mbid></mbid>
664
+ <url>http://www.last.fm/music/Mystery+Jets/_/First+To+Know</url>
665
+ <streamable fulltrack="0">0</streamable>
666
+ <artist>
667
+ <name>Mystery Jets</name>
668
+ <mbid>0f8bd5a7-c915-4e00-a035-fe3969e9a9b1</mbid>
669
+ <url>http://www.last.fm/music/Mystery+Jets</url>
670
+ </artist>
671
+ <image size="small">http://userserve-ak.last.fm/serve/34s/5173362.jpg</image>
672
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/5173362.jpg</image>
673
+ <image size="large">http://userserve-ak.last.fm/serve/126/5173362.jpg</image>
674
+ </track>
675
+ <track>
676
+ <name>Sheepdog</name>
677
+ <playcount>1</playcount>
678
+ <tagcount></tagcount>
679
+ <mbid></mbid>
680
+ <url>http://www.last.fm/music/Mando+Diao+%28live%29/_/Sheepdog</url>
681
+ <streamable fulltrack="0">0</streamable>
682
+ <artist>
683
+ <name>Mando Diao (live)</name>
684
+ <mbid></mbid>
685
+ <url>http://www.last.fm/music/Mando+Diao+%28live%29</url>
686
+ </artist>
687
+ </track>
688
+ <track>
689
+ <name>The Rockafeller Skank</name>
690
+ <playcount>1</playcount>
691
+ <tagcount></tagcount>
692
+ <mbid></mbid>
693
+ <url>http://www.last.fm/music/Fatboy+Slim/_/The+Rockafeller+Skank</url>
694
+ <streamable fulltrack="0">1</streamable>
695
+ <artist>
696
+ <name>Fatboy Slim</name>
697
+ <mbid>34c63966-445c-4613-afe1-4f0e1e53ae9a</mbid>
698
+ <url>http://www.last.fm/music/Fatboy+Slim</url>
699
+ </artist>
700
+ <image size="small">http://images.amazon.com/images/P/B00004S5DG.01.THUMBZZZ.jpg</image>
701
+ <image size="medium">http://images.amazon.com/images/P/B00004S5DG.01.MZZZZZZZ.jpg</image>
702
+ <image size="large">http://images.amazon.com/images/P/B00004S5DG.01.LZZZZZZZ.jpg</image>
703
+ </track>
704
+ <track>
705
+ <name>Train On Fire</name>
706
+ <playcount>1</playcount>
707
+ <tagcount></tagcount>
708
+ <mbid></mbid>
709
+ <url>http://www.last.fm/music/Mando+Diao/_/Train+On+Fire</url>
710
+ <streamable fulltrack="0">1</streamable>
711
+ <artist>
712
+ <name>Mando Diao</name>
713
+ <mbid>ea854cc1-13fc-4fd0-86a5-d2c7dba06764</mbid>
714
+ <url>http://www.last.fm/music/Mando+Diao</url>
715
+ </artist>
716
+ <image size="small">http://userserve-ak.last.fm/serve/34s/15249355.jpg</image>
717
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/15249355.jpg</image>
718
+ <image size="large">http://userserve-ak.last.fm/serve/126/15249355.jpg</image>
719
+ </track>
720
+ <track>
721
+ <name>In The Fall</name>
722
+ <playcount>1</playcount>
723
+ <tagcount></tagcount>
724
+ <mbid></mbid>
725
+ <url>http://www.last.fm/music/Billy+Talent/_/In+The+Fall</url>
726
+ <streamable fulltrack="0">1</streamable>
727
+ <artist>
728
+ <name>Billy Talent</name>
729
+ <mbid>fd429857-5ace-4609-ae54-1502c3bdac11</mbid>
730
+ <url>http://www.last.fm/music/Billy+Talent</url>
731
+ </artist>
732
+ <image size="small">http://userserve-ak.last.fm/serve/34s/28906727.jpg</image>
733
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/28906727.jpg</image>
734
+ <image size="large">http://userserve-ak.last.fm/serve/126/28906727.jpg</image>
735
+ </track>
736
+ <track>
737
+ <name>Charmless Man</name>
738
+ <playcount>1</playcount>
739
+ <tagcount></tagcount>
740
+ <mbid></mbid>
741
+ <url>http://www.last.fm/music/Blur/_/Charmless+Man</url>
742
+ <streamable fulltrack="0">1</streamable>
743
+ <artist>
744
+ <name>Blur</name>
745
+ <mbid>ba853904-ae25-4ebb-89d6-c44cfbd71bd2</mbid>
746
+ <url>http://www.last.fm/music/Blur</url>
747
+ </artist>
748
+ <image size="small">http://userserve-ak.last.fm/serve/34s/14401319.jpg</image>
749
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/14401319.jpg</image>
750
+ <image size="large">http://userserve-ak.last.fm/serve/126/14401319.jpg</image>
751
+ </track>
752
+ <track>
753
+ <name>Graceland</name>
754
+ <playcount>1</playcount>
755
+ <tagcount></tagcount>
756
+ <mbid></mbid>
757
+ <url>http://www.last.fm/music/Kettcar/_/Graceland</url>
758
+ <streamable fulltrack="0">0</streamable>
759
+ <artist>
760
+ <name>Kettcar</name>
761
+ <mbid>315fa94f-3bb5-43db-a28e-406a83e9805c</mbid>
762
+ <url>http://www.last.fm/music/Kettcar</url>
763
+ </artist>
764
+ </track>
765
+ </tracks></lfm>