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,771 @@
1
+ <?xml version="1.0" encoding="utf-8"?>
2
+ <lfm status="ok">
3
+ <tracks user="xhochy" page="22" perPage="50" totalPages="34">
4
+ <track>
5
+ <name>The Harrowing Adventures Of...</name>
6
+ <playcount>1</playcount>
7
+ <tagcount></tagcount>
8
+ <mbid></mbid>
9
+ <url>http://www.last.fm/music/Tokyo+Police+Club/_/The+Harrowing+Adventures+Of...</url>
10
+ <streamable fulltrack="0">1</streamable>
11
+ <artist>
12
+ <name>Tokyo Police Club</name>
13
+ <mbid>35a6a353-b186-4c13-a264-d18d5e2ce853</mbid>
14
+ <url>http://www.last.fm/music/Tokyo+Police+Club</url>
15
+ </artist>
16
+ <image size="small">http://userserve-ak.last.fm/serve/34s/9728983.jpg</image>
17
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/9728983.jpg</image>
18
+ <image size="large">http://userserve-ak.last.fm/serve/126/9728983.jpg</image>
19
+ </track>
20
+ <track>
21
+ <name>Kirchturmkandidaten</name>
22
+ <playcount>1</playcount>
23
+ <tagcount></tagcount>
24
+ <mbid></mbid>
25
+ <url>http://www.last.fm/music/Jan+Delay/_/Kirchturmkandidaten</url>
26
+ <streamable fulltrack="1">1</streamable>
27
+ <artist>
28
+ <name>Jan Delay</name>
29
+ <mbid>2692cab2-7563-4315-924f-563a59190fd9</mbid>
30
+ <url>http://www.last.fm/music/Jan+Delay</url>
31
+ </artist>
32
+ </track>
33
+ <track>
34
+ <name>The Box 1999</name>
35
+ <playcount>1</playcount>
36
+ <tagcount></tagcount>
37
+ <mbid></mbid>
38
+ <url>http://www.last.fm/music/Orbital/_/The+Box+1999</url>
39
+ <streamable fulltrack="0">0</streamable>
40
+ <artist>
41
+ <name>Orbital</name>
42
+ <mbid>f3e2a7d9-c6bb-4848-95e5-04c0a1e2f511</mbid>
43
+ <url>http://www.last.fm/music/Orbital</url>
44
+ </artist>
45
+ </track>
46
+ <track>
47
+ <name>Friend Is a Four Letter Word</name>
48
+ <playcount>1</playcount>
49
+ <tagcount></tagcount>
50
+ <mbid></mbid>
51
+ <url>http://www.last.fm/music/Cake/_/Friend+Is+a+Four+Letter+Word</url>
52
+ <streamable fulltrack="0">1</streamable>
53
+ <artist>
54
+ <name>Cake</name>
55
+ <mbid>fa7b9055-3703-473a-8a09-adf2fe031a24</mbid>
56
+ <url>http://www.last.fm/music/Cake</url>
57
+ </artist>
58
+ <image size="small">http://userserve-ak.last.fm/serve/34s/19783897.jpg</image>
59
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/19783897.jpg</image>
60
+ <image size="large">http://userserve-ak.last.fm/serve/126/19783897.jpg</image>
61
+ </track>
62
+ <track>
63
+ <name>Hanaan (Instrumental)</name>
64
+ <playcount>1</playcount>
65
+ <tagcount></tagcount>
66
+ <mbid></mbid>
67
+ <url>http://www.last.fm/music/Peter+Fox/_/Hanaan+%28Instrumental%29</url>
68
+ <streamable fulltrack="0">0</streamable>
69
+ <artist>
70
+ <name>Peter Fox</name>
71
+ <mbid></mbid>
72
+ <url>http://www.last.fm/music/Peter+Fox</url>
73
+ </artist>
74
+ </track>
75
+ <track>
76
+ <name>Lieber Gott</name>
77
+ <playcount>1</playcount>
78
+ <tagcount></tagcount>
79
+ <mbid></mbid>
80
+ <url>http://www.last.fm/music/Marlon%2B%252B%2BFreunde/_/Lieber+Gott</url>
81
+ <streamable fulltrack="0">1</streamable>
82
+ <artist>
83
+ <name>Marlon + Freunde</name>
84
+ <mbid>e9dcd181-0452-4b9b-8fee-3ff6844e58ac</mbid>
85
+ <url>http://www.last.fm/music/Marlon%2B%252B%2BFreunde</url>
86
+ </artist>
87
+ <image size="small">http://userserve-ak.last.fm/serve/34s/19781177.jpg</image>
88
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/19781177.jpg</image>
89
+ <image size="large">http://userserve-ak.last.fm/serve/126/19781177.jpg</image>
90
+ </track>
91
+ <track>
92
+ <name>Killing Me Softly</name>
93
+ <playcount>1</playcount>
94
+ <tagcount></tagcount>
95
+ <mbid></mbid>
96
+ <url>http://www.last.fm/music/Fugees/_/Killing+Me+Softly</url>
97
+ <streamable fulltrack="0">1</streamable>
98
+ <artist>
99
+ <name>Fugees</name>
100
+ <mbid>ea321799-9b1d-4e74-a074-a5facf597d82</mbid>
101
+ <url>http://www.last.fm/music/Fugees</url>
102
+ </artist>
103
+ <image size="small">http://userserve-ak.last.fm/serve/34s/23066679.jpg</image>
104
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/23066679.jpg</image>
105
+ <image size="large">http://userserve-ak.last.fm/serve/126/23066679.jpg</image>
106
+ </track>
107
+ <track>
108
+ <name>Seek &amp; Destroy</name>
109
+ <playcount>1</playcount>
110
+ <tagcount></tagcount>
111
+ <mbid></mbid>
112
+ <url>http://www.last.fm/music/Kasabian/_/Seek%2B%2526%2BDestroy</url>
113
+ <streamable fulltrack="0">1</streamable>
114
+ <artist>
115
+ <name>Kasabian</name>
116
+ <mbid>69b39eab-6577-46a4-a9f5-817839092033</mbid>
117
+ <url>http://www.last.fm/music/Kasabian</url>
118
+ </artist>
119
+ <image size="small">http://userserve-ak.last.fm/serve/34s/24315765.jpg</image>
120
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/24315765.jpg</image>
121
+ <image size="large">http://userserve-ak.last.fm/serve/126/24315765.jpg</image>
122
+ </track>
123
+ <track>
124
+ <name>Bad Things</name>
125
+ <playcount>1</playcount>
126
+ <tagcount></tagcount>
127
+ <mbid></mbid>
128
+ <url>http://www.last.fm/music/Wednesday+13/_/Bad+Things</url>
129
+ <streamable fulltrack="0">1</streamable>
130
+ <artist>
131
+ <name>Wednesday 13</name>
132
+ <mbid>f4d306f3-e82b-4186-9cca-4e8806db21f8</mbid>
133
+ <url>http://www.last.fm/music/Wednesday+13</url>
134
+ </artist>
135
+ <image size="small">http://images.amazon.com/images/P/B0007YH4BC.01.MZZZZZZZ.jpg</image>
136
+ <image size="medium">http://images.amazon.com/images/P/B0007YH4BC.01.MZZZZZZZ.jpg</image>
137
+ <image size="large">http://images.amazon.com/images/P/B0007YH4BC.01.MZZZZZZZ.jpg</image>
138
+ </track>
139
+ <track>
140
+ <name>Natural Blues</name>
141
+ <playcount>1</playcount>
142
+ <tagcount></tagcount>
143
+ <mbid></mbid>
144
+ <url>http://www.last.fm/music/Moby/_/Natural+Blues</url>
145
+ <streamable fulltrack="0">1</streamable>
146
+ <artist>
147
+ <name>Moby</name>
148
+ <mbid>8970d868-0723-483b-a75b-51088913d3d4</mbid>
149
+ <url>http://www.last.fm/music/Moby</url>
150
+ </artist>
151
+ <image size="small">http://images.amazon.com/images/P/B00000J6AG.01.THUMBZZZ.jpg</image>
152
+ <image size="medium">http://images.amazon.com/images/P/B00000J6AG.01.MZZZZZZZ.jpg</image>
153
+ <image size="large">http://images.amazon.com/images/P/B00000J6AG.01.LZZZZZZZ.jpg</image>
154
+ </track>
155
+ <track>
156
+ <name>Mr Brightside 2005</name>
157
+ <playcount>1</playcount>
158
+ <tagcount></tagcount>
159
+ <mbid></mbid>
160
+ <url>http://www.last.fm/music/The+Killers/_/Mr+Brightside+2005</url>
161
+ <streamable fulltrack="0">0</streamable>
162
+ <artist>
163
+ <name>The Killers</name>
164
+ <mbid>95e1ead9-4d31-4808-a7ac-32c3614c116b</mbid>
165
+ <url>http://www.last.fm/music/The+Killers</url>
166
+ </artist>
167
+ </track>
168
+ <track>
169
+ <name>Jubilee</name>
170
+ <playcount>1</playcount>
171
+ <tagcount></tagcount>
172
+ <mbid></mbid>
173
+ <url>http://www.last.fm/music/Blur/_/Jubilee</url>
174
+ <streamable fulltrack="0">1</streamable>
175
+ <artist>
176
+ <name>Blur</name>
177
+ <mbid>ba853904-ae25-4ebb-89d6-c44cfbd71bd2</mbid>
178
+ <url>http://www.last.fm/music/Blur</url>
179
+ </artist>
180
+ <image size="small">http://userserve-ak.last.fm/serve/34s/14257389.jpg</image>
181
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/14257389.jpg</image>
182
+ <image size="large">http://userserve-ak.last.fm/serve/126/14257389.jpg</image>
183
+ </track>
184
+ <track>
185
+ <name>Switchblades and Infidelity</name>
186
+ <playcount>1</playcount>
187
+ <tagcount></tagcount>
188
+ <mbid></mbid>
189
+ <url>http://www.last.fm/music/Fall+Out+Boy/_/Switchblades+and+Infidelity</url>
190
+ <streamable fulltrack="1">1</streamable>
191
+ <artist>
192
+ <name>Fall Out Boy</name>
193
+ <mbid>516cef4d-0718-4007-9939-f9b38af3f784</mbid>
194
+ <url>http://www.last.fm/music/Fall+Out+Boy</url>
195
+ </artist>
196
+ <image size="small">http://images.amazon.com/images/P/B00007KS91.01.MZZZZZZZ.jpg</image>
197
+ <image size="medium">http://images.amazon.com/images/P/B00007KS91.01.MZZZZZZZ.jpg</image>
198
+ <image size="large">http://images.amazon.com/images/P/B00007KS91.01.MZZZZZZZ.jpg</image>
199
+ </track>
200
+ <track>
201
+ <name>It's A Fine</name>
202
+ <playcount>1</playcount>
203
+ <tagcount></tagcount>
204
+ <mbid></mbid>
205
+ <url>http://www.last.fm/music/Adam+Green/_/It%27s+A+Fine</url>
206
+ <streamable fulltrack="0">0</streamable>
207
+ <artist>
208
+ <name>Adam Green</name>
209
+ <mbid>150e799b-3244-45d9-a6cb-5a3e8c33d430</mbid>
210
+ <url>http://www.last.fm/music/Adam+Green</url>
211
+ </artist>
212
+ </track>
213
+ <track>
214
+ <name>For the Children</name>
215
+ <playcount>1</playcount>
216
+ <tagcount></tagcount>
217
+ <mbid></mbid>
218
+ <url>http://www.last.fm/music/Gentleman/_/For+the+Children</url>
219
+ <streamable fulltrack="0">1</streamable>
220
+ <artist>
221
+ <name>Gentleman</name>
222
+ <mbid>8de4a831-7c25-4d34-90cf-254de0c36e49</mbid>
223
+ <url>http://www.last.fm/music/Gentleman</url>
224
+ </artist>
225
+ <image size="small">http://userserve-ak.last.fm/serve/34s/28019385.jpg</image>
226
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/28019385.jpg</image>
227
+ <image size="large">http://userserve-ak.last.fm/serve/126/28019385.jpg</image>
228
+ </track>
229
+ <track>
230
+ <name>Mexican Hardcore</name>
231
+ <playcount>1</playcount>
232
+ <tagcount></tagcount>
233
+ <mbid></mbid>
234
+ <url>http://www.last.fm/music/Mando+Diao/_/Mexican+Hardcore</url>
235
+ <streamable fulltrack="0">1</streamable>
236
+ <artist>
237
+ <name>Mando Diao</name>
238
+ <mbid>ea854cc1-13fc-4fd0-86a5-d2c7dba06764</mbid>
239
+ <url>http://www.last.fm/music/Mando+Diao</url>
240
+ </artist>
241
+ <image size="small">http://userserve-ak.last.fm/serve/34s/15249355.jpg</image>
242
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/15249355.jpg</image>
243
+ <image size="large">http://userserve-ak.last.fm/serve/126/15249355.jpg</image>
244
+ </track>
245
+ <track>
246
+ <name>Bring the House Down</name>
247
+ <playcount>1</playcount>
248
+ <tagcount></tagcount>
249
+ <mbid></mbid>
250
+ <url>http://www.last.fm/music/S+Club+7/_/Bring+the+House+Down</url>
251
+ <streamable fulltrack="1">1</streamable>
252
+ <artist>
253
+ <name>S Club 7</name>
254
+ <mbid>bd5cf3e9-cb6c-41f3-8c7d-e9bda3c4e721</mbid>
255
+ <url>http://www.last.fm/music/S+Club+7</url>
256
+ </artist>
257
+ <image size="small">http://userserve-ak.last.fm/serve/34s/8726677.jpg</image>
258
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/8726677.jpg</image>
259
+ <image size="large">http://userserve-ak.last.fm/serve/126/8726677.jpg</image>
260
+ </track>
261
+ <track>
262
+ <name>Prangin' Out</name>
263
+ <playcount>1</playcount>
264
+ <tagcount></tagcount>
265
+ <mbid></mbid>
266
+ <url>http://www.last.fm/music/The+Streets/_/Prangin%27+Out</url>
267
+ <streamable fulltrack="0">0</streamable>
268
+ <artist>
269
+ <name>The Streets</name>
270
+ <mbid>6f607087-9c46-4bb2-a884-e4efc764554c</mbid>
271
+ <url>http://www.last.fm/music/The+Streets</url>
272
+ </artist>
273
+ </track>
274
+ <track>
275
+ <name>Spies</name>
276
+ <playcount>1</playcount>
277
+ <tagcount></tagcount>
278
+ <mbid></mbid>
279
+ <url>http://www.last.fm/music/Coldplay/_/Spies</url>
280
+ <streamable fulltrack="0">1</streamable>
281
+ <artist>
282
+ <name>Coldplay</name>
283
+ <mbid>cc197bad-dc9c-440d-a5b5-d52ba2e14234</mbid>
284
+ <url>http://www.last.fm/music/Coldplay</url>
285
+ </artist>
286
+ <image size="small">http://userserve-ak.last.fm/serve/34s/14225619.jpg</image>
287
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/14225619.jpg</image>
288
+ <image size="large">http://userserve-ak.last.fm/serve/126/14225619.jpg</image>
289
+ </track>
290
+ <track>
291
+ <name>Drop Dead</name>
292
+ <playcount>1</playcount>
293
+ <tagcount></tagcount>
294
+ <mbid></mbid>
295
+ <url>http://www.last.fm/music/Space/_/Drop+Dead</url>
296
+ <streamable fulltrack="0">0</streamable>
297
+ <artist>
298
+ <name>Space</name>
299
+ <mbid>63134699-ca51-464b-816d-3f32efd4a093</mbid>
300
+ <url>http://www.last.fm/music/Space</url>
301
+ </artist>
302
+ <image size="small">http://images.amazon.com/images/P/B000005AYO.01.MZZZZZZZ.jpg</image>
303
+ <image size="medium">http://images.amazon.com/images/P/B000005AYO.01.MZZZZZZZ.jpg</image>
304
+ <image size="large">http://images.amazon.com/images/P/B000005AYO.01.MZZZZZZZ.jpg</image>
305
+ </track>
306
+ <track>
307
+ <name>Mondo Bondage</name>
308
+ <playcount>1</playcount>
309
+ <tagcount></tagcount>
310
+ <mbid></mbid>
311
+ <url>http://www.last.fm/music/Die+%C3%84rzte/_/Mondo+Bondage</url>
312
+ <streamable fulltrack="0">0</streamable>
313
+ <artist>
314
+ <name>Die Ärzte</name>
315
+ <mbid>f2fb0ff0-5679-42ec-a55c-15109ce6e320</mbid>
316
+ <url>http://www.last.fm/music/Die+%C3%84rzte</url>
317
+ </artist>
318
+ <image size="small">http://images-eu.amazon.com/images/P/B00004ZC4S.03.MZZZZZZZ.jpg</image>
319
+ <image size="medium">http://images-eu.amazon.com/images/P/B00004ZC4S.03.MZZZZZZZ.jpg</image>
320
+ <image size="large">http://images-eu.amazon.com/images/P/B00004ZC4S.03.MZZZZZZZ.jpg</image>
321
+ </track>
322
+ <track>
323
+ <name>Hört Ihr Die Signale</name>
324
+ <playcount>1</playcount>
325
+ <tagcount></tagcount>
326
+ <mbid></mbid>
327
+ <url>http://www.last.fm/music/Deichkind/_/H%C3%B6rt+Ihr+Die+Signale</url>
328
+ <streamable fulltrack="1">1</streamable>
329
+ <artist>
330
+ <name>Deichkind</name>
331
+ <mbid>5de80871-f721-4c7c-b0c5-4ad0d350c232</mbid>
332
+ <url>http://www.last.fm/music/Deichkind</url>
333
+ </artist>
334
+ </track>
335
+ <track>
336
+ <name>Urlaub Vom Urlaub</name>
337
+ <playcount>1</playcount>
338
+ <tagcount></tagcount>
339
+ <mbid></mbid>
340
+ <url>http://www.last.fm/music/Deichkind/_/Urlaub+Vom+Urlaub</url>
341
+ <streamable fulltrack="1">1</streamable>
342
+ <artist>
343
+ <name>Deichkind</name>
344
+ <mbid>5de80871-f721-4c7c-b0c5-4ad0d350c232</mbid>
345
+ <url>http://www.last.fm/music/Deichkind</url>
346
+ </artist>
347
+ </track>
348
+ <track>
349
+ <name>Chop Suey!</name>
350
+ <playcount>1</playcount>
351
+ <tagcount></tagcount>
352
+ <mbid></mbid>
353
+ <url>http://www.last.fm/music/System+of+a+Down/_/Chop+Suey%21</url>
354
+ <streamable fulltrack="0">1</streamable>
355
+ <artist>
356
+ <name>System of a Down</name>
357
+ <mbid>cc0b7089-c08d-4c10-b6b0-873582c17fd6</mbid>
358
+ <url>http://www.last.fm/music/System+of+a+Down</url>
359
+ </artist>
360
+ <image size="small">http://userserve-ak.last.fm/serve/34s/5206137.jpg</image>
361
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/5206137.jpg</image>
362
+ <image size="large">http://userserve-ak.last.fm/serve/126/5206137.jpg</image>
363
+ </track>
364
+ <track>
365
+ <name>You're So Damn Hot</name>
366
+ <playcount>1</playcount>
367
+ <tagcount></tagcount>
368
+ <mbid></mbid>
369
+ <url>http://www.last.fm/music/OK+Go/_/You%27re+So+Damn+Hot</url>
370
+ <streamable fulltrack="0">1</streamable>
371
+ <artist>
372
+ <name>OK Go</name>
373
+ <mbid>e132d370-2a59-4437-8610-756df28a5a02</mbid>
374
+ <url>http://www.last.fm/music/OK+Go</url>
375
+ </artist>
376
+ <image size="small">http://userserve-ak.last.fm/serve/34s/15227155.jpg</image>
377
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/15227155.jpg</image>
378
+ <image size="large">http://userserve-ak.last.fm/serve/126/15227155.jpg</image>
379
+ </track>
380
+ <track>
381
+ <name>After a Storm</name>
382
+ <playcount>1</playcount>
383
+ <tagcount></tagcount>
384
+ <mbid></mbid>
385
+ <url>http://www.last.fm/music/Gentleman/_/After+a+Storm</url>
386
+ <streamable fulltrack="0">1</streamable>
387
+ <artist>
388
+ <name>Gentleman</name>
389
+ <mbid>8de4a831-7c25-4d34-90cf-254de0c36e49</mbid>
390
+ <url>http://www.last.fm/music/Gentleman</url>
391
+ </artist>
392
+ <image size="small">http://userserve-ak.last.fm/serve/34s/28019385.jpg</image>
393
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/28019385.jpg</image>
394
+ <image size="large">http://userserve-ak.last.fm/serve/126/28019385.jpg</image>
395
+ </track>
396
+ <track>
397
+ <name>sexual riot</name>
398
+ <playcount>1</playcount>
399
+ <tagcount></tagcount>
400
+ <mbid></mbid>
401
+ <url>http://www.last.fm/music/The+Metros/_/sexual+riot</url>
402
+ <streamable fulltrack="0">1</streamable>
403
+ <artist>
404
+ <name>The Metros</name>
405
+ <mbid>2bac0ca9-6a6e-4984-bf58-020bbb00904b</mbid>
406
+ <url>http://www.last.fm/music/The+Metros</url>
407
+ </artist>
408
+ </track>
409
+ <track>
410
+ <name>Bandaleros</name>
411
+ <playcount>1</playcount>
412
+ <tagcount></tagcount>
413
+ <mbid></mbid>
414
+ <url>http://www.last.fm/music/Don+Omar+Feat.+Tego+Calderon/_/Bandaleros</url>
415
+ <streamable fulltrack="0">0</streamable>
416
+ <artist>
417
+ <name>Don Omar Feat. Tego Calderon</name>
418
+ <mbid></mbid>
419
+ <url>http://www.last.fm/music/Don+Omar+Feat.+Tego+Calderon</url>
420
+ </artist>
421
+ </track>
422
+ <track>
423
+ <name>Take The Weight</name>
424
+ <playcount>1</playcount>
425
+ <tagcount></tagcount>
426
+ <mbid></mbid>
427
+ <url>http://www.last.fm/music/Blood+Red+Shoes/_/Take+The+Weight</url>
428
+ <streamable fulltrack="1">1</streamable>
429
+ <artist>
430
+ <name>Blood Red Shoes</name>
431
+ <mbid>cd830a8f-89d2-4e96-96cb-7a497e51d437</mbid>
432
+ <url>http://www.last.fm/music/Blood+Red+Shoes</url>
433
+ </artist>
434
+ <image size="small">http://userserve-ak.last.fm/serve/34s/5506207.jpg</image>
435
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/5506207.jpg</image>
436
+ <image size="large">http://userserve-ak.last.fm/serve/126/5506207.jpg</image>
437
+ </track>
438
+ <track>
439
+ <name>Mit dem Schwert nach Polen, warum René?</name>
440
+ <playcount>1</playcount>
441
+ <tagcount></tagcount>
442
+ <mbid></mbid>
443
+ <url>http://www.last.fm/music/Die+%C3%84rzte/_/Mit+dem+Schwert+nach+Polen%2C+warum+Ren%C3%A9%3F</url>
444
+ <streamable fulltrack="0">0</streamable>
445
+ <artist>
446
+ <name>Die Ärzte</name>
447
+ <mbid>f2fb0ff0-5679-42ec-a55c-15109ce6e320</mbid>
448
+ <url>http://www.last.fm/music/Die+%C3%84rzte</url>
449
+ </artist>
450
+ <image size="small">http://images-eu.amazon.com/images/P/B00006ZY7R.03.MZZZZZZZ.jpg</image>
451
+ <image size="medium">http://images-eu.amazon.com/images/P/B00006ZY7R.03.MZZZZZZZ.jpg</image>
452
+ <image size="large">http://images-eu.amazon.com/images/P/B00006ZY7R.03.MZZZZZZZ.jpg</image>
453
+ </track>
454
+ <track>
455
+ <name>Ruf die Polizei</name>
456
+ <playcount>1</playcount>
457
+ <tagcount></tagcount>
458
+ <mbid></mbid>
459
+ <url>http://www.last.fm/music/Die+Fantastischen+Vier/_/Ruf+die+Polizei</url>
460
+ <streamable fulltrack="0">1</streamable>
461
+ <artist>
462
+ <name>Die Fantastischen Vier</name>
463
+ <mbid>7928481f-848e-4551-b658-472c0aaf0c85</mbid>
464
+ <url>http://www.last.fm/music/Die+Fantastischen+Vier</url>
465
+ </artist>
466
+ <image size="small">http://userserve-ak.last.fm/serve/34s/19560765.jpg</image>
467
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/19560765.jpg</image>
468
+ <image size="large">http://userserve-ak.last.fm/serve/126/19560765.jpg</image>
469
+ </track>
470
+ <track>
471
+ <name>I Don't Care as Long as You Sing</name>
472
+ <playcount>1</playcount>
473
+ <tagcount></tagcount>
474
+ <mbid></mbid>
475
+ <url>http://www.last.fm/music/Beatsteaks/_/I+Don%27t+Care+as+Long+as+You+Sing</url>
476
+ <streamable fulltrack="0">1</streamable>
477
+ <artist>
478
+ <name>Beatsteaks</name>
479
+ <mbid>a9b88ebb-83aa-4ef7-b674-fabeb572c14e</mbid>
480
+ <url>http://www.last.fm/music/Beatsteaks</url>
481
+ </artist>
482
+ <image size="small">http://images.amazon.com/images/P/B0001MBJ52.02._SCMZZZZZZZ_.jpg</image>
483
+ <image size="medium">http://images.amazon.com/images/P/B0001MBJ52.02._SCMZZZZZZZ_.jpg</image>
484
+ <image size="large">http://images.amazon.com/images/P/B0001MBJ52.02._SCMZZZZZZZ_.jpg</image>
485
+ </track>
486
+ <track>
487
+ <name>Titel 11</name>
488
+ <playcount>1</playcount>
489
+ <tagcount></tagcount>
490
+ <mbid></mbid>
491
+ <url>http://www.last.fm/music/Refused/_/Titel+11</url>
492
+ <streamable fulltrack="0">0</streamable>
493
+ <artist>
494
+ <name>Refused</name>
495
+ <mbid>42884e27-dfb8-453d-990f-2ffd90bc2d1a</mbid>
496
+ <url>http://www.last.fm/music/Refused</url>
497
+ </artist>
498
+ </track>
499
+ <track>
500
+ <name>February Stars</name>
501
+ <playcount>1</playcount>
502
+ <tagcount></tagcount>
503
+ <mbid></mbid>
504
+ <url>http://www.last.fm/music/Foo+Fighters/_/February+Stars</url>
505
+ <streamable fulltrack="0">1</streamable>
506
+ <artist>
507
+ <name>Foo Fighters</name>
508
+ <mbid>67f66c07-6e61-4026-ade5-7e782fad3a5d</mbid>
509
+ <url>http://www.last.fm/music/Foo+Fighters</url>
510
+ </artist>
511
+ <image size="small">http://userserve-ak.last.fm/serve/34s/23755807.jpg</image>
512
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/23755807.jpg</image>
513
+ <image size="large">http://userserve-ak.last.fm/serve/126/23755807.jpg</image>
514
+ </track>
515
+ <track>
516
+ <name>Dare</name>
517
+ <playcount>1</playcount>
518
+ <tagcount></tagcount>
519
+ <mbid></mbid>
520
+ <url>http://www.last.fm/music/Gorillaz/_/Dare</url>
521
+ <streamable fulltrack="0">1</streamable>
522
+ <artist>
523
+ <name>Gorillaz</name>
524
+ <mbid>e21857d5-3256-4547-afb3-4b6ded592596</mbid>
525
+ <url>http://www.last.fm/music/Gorillaz</url>
526
+ </artist>
527
+ <image size="small">http://userserve-ak.last.fm/serve/34s/11453045.jpg</image>
528
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/11453045.jpg</image>
529
+ <image size="large">http://userserve-ak.last.fm/serve/126/11453045.jpg</image>
530
+ </track>
531
+ <track>
532
+ <name>Sweet Home Chicago</name>
533
+ <playcount>1</playcount>
534
+ <tagcount></tagcount>
535
+ <mbid></mbid>
536
+ <url>http://www.last.fm/music/The+Blues+Brothers/_/Sweet+Home+Chicago</url>
537
+ <streamable fulltrack="0">1</streamable>
538
+ <artist>
539
+ <name>The Blues Brothers</name>
540
+ <mbid>7252abc2-dfc8-4aa6-889f-2d168b265403</mbid>
541
+ <url>http://www.last.fm/music/The+Blues+Brothers</url>
542
+ </artist>
543
+ <image size="small">http://userserve-ak.last.fm/serve/34s/8591289.jpg</image>
544
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/8591289.jpg</image>
545
+ <image size="large">http://userserve-ak.last.fm/serve/126/8591289.jpg</image>
546
+ </track>
547
+ <track>
548
+ <name>My Hero</name>
549
+ <playcount>1</playcount>
550
+ <tagcount></tagcount>
551
+ <mbid></mbid>
552
+ <url>http://www.last.fm/music/Foo+Fighters/_/My+Hero</url>
553
+ <streamable fulltrack="0">1</streamable>
554
+ <artist>
555
+ <name>Foo Fighters</name>
556
+ <mbid>67f66c07-6e61-4026-ade5-7e782fad3a5d</mbid>
557
+ <url>http://www.last.fm/music/Foo+Fighters</url>
558
+ </artist>
559
+ <image size="small">http://userserve-ak.last.fm/serve/34s/23755807.jpg</image>
560
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/23755807.jpg</image>
561
+ <image size="large">http://userserve-ak.last.fm/serve/126/23755807.jpg</image>
562
+ </track>
563
+ <track>
564
+ <name>Lady</name>
565
+ <playcount>1</playcount>
566
+ <tagcount></tagcount>
567
+ <mbid></mbid>
568
+ <url>http://www.last.fm/music/Mando+Diao/_/Lady</url>
569
+ <streamable fulltrack="0">1</streamable>
570
+ <artist>
571
+ <name>Mando Diao</name>
572
+ <mbid>ea854cc1-13fc-4fd0-86a5-d2c7dba06764</mbid>
573
+ <url>http://www.last.fm/music/Mando+Diao</url>
574
+ </artist>
575
+ <image size="small">http://userserve-ak.last.fm/serve/34s/11406701.jpg</image>
576
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/11406701.jpg</image>
577
+ <image size="large">http://userserve-ak.last.fm/serve/126/11406701.jpg</image>
578
+ </track>
579
+ <track>
580
+ <name>Is ja irre</name>
581
+ <playcount>1</playcount>
582
+ <tagcount></tagcount>
583
+ <mbid></mbid>
584
+ <url>http://www.last.fm/music/Die+%C3%84rzte/_/Is+ja+irre</url>
585
+ <streamable fulltrack="0">1</streamable>
586
+ <artist>
587
+ <name>Die Ärzte</name>
588
+ <mbid>f2fb0ff0-5679-42ec-a55c-15109ce6e320</mbid>
589
+ <url>http://www.last.fm/music/Die+%C3%84rzte</url>
590
+ </artist>
591
+ <image size="small">http://images-eu.amazon.com/images/P/B00006ZY7R.03.MZZZZZZZ.jpg</image>
592
+ <image size="medium">http://images-eu.amazon.com/images/P/B00006ZY7R.03.MZZZZZZZ.jpg</image>
593
+ <image size="large">http://images-eu.amazon.com/images/P/B00006ZY7R.03.MZZZZZZZ.jpg</image>
594
+ </track>
595
+ <track>
596
+ <name>Vertigo</name>
597
+ <playcount>1</playcount>
598
+ <tagcount></tagcount>
599
+ <mbid></mbid>
600
+ <url>http://www.last.fm/music/U2/_/Vertigo</url>
601
+ <streamable fulltrack="1">1</streamable>
602
+ <artist>
603
+ <name>U2</name>
604
+ <mbid>a3cb23fc-acd3-4ce0-8f36-1e5aa6a18432</mbid>
605
+ <url>http://www.last.fm/music/U2</url>
606
+ </artist>
607
+ <image size="small">http://userserve-ak.last.fm/serve/34s/8672719.jpg</image>
608
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/8672719.jpg</image>
609
+ <image size="large">http://userserve-ak.last.fm/serve/126/8672719.jpg</image>
610
+ </track>
611
+ <track>
612
+ <name>The Debt Collector</name>
613
+ <playcount>1</playcount>
614
+ <tagcount></tagcount>
615
+ <mbid></mbid>
616
+ <url>http://www.last.fm/music/Blur/_/The+Debt+Collector</url>
617
+ <streamable fulltrack="0">1</streamable>
618
+ <artist>
619
+ <name>Blur</name>
620
+ <mbid>ba853904-ae25-4ebb-89d6-c44cfbd71bd2</mbid>
621
+ <url>http://www.last.fm/music/Blur</url>
622
+ </artist>
623
+ <image size="small">http://userserve-ak.last.fm/serve/34s/14257389.jpg</image>
624
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/14257389.jpg</image>
625
+ <image size="large">http://userserve-ak.last.fm/serve/126/14257389.jpg</image>
626
+ </track>
627
+ <track>
628
+ <name>All The Things She Said v Eminem Sing for the Moment - Phil B Mix</name>
629
+ <playcount>1</playcount>
630
+ <tagcount></tagcount>
631
+ <mbid></mbid>
632
+ <url>http://www.last.fm/music/t.A.T.u./_/All+The+Things+She+Said+v+Eminem+Sing+for+the+Moment+-+Phil+B+Mix</url>
633
+ <streamable fulltrack="0">0</streamable>
634
+ <artist>
635
+ <name>t.A.T.u.</name>
636
+ <mbid>7c20f558-d664-42bd-b6f1-81acf9dbb72d</mbid>
637
+ <url>http://www.last.fm/music/t.A.T.u.</url>
638
+ </artist>
639
+ <image size="small">http://userserve-ak.last.fm/serve/34s/20906493.jpg</image>
640
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/20906493.jpg</image>
641
+ <image size="large">http://userserve-ak.last.fm/serve/126/20906493.jpg</image>
642
+ </track>
643
+ <track>
644
+ <name>Unter Wasser</name>
645
+ <playcount>1</playcount>
646
+ <tagcount></tagcount>
647
+ <mbid></mbid>
648
+ <url>http://www.last.fm/music/Farin+Urlaub/_/Unter+Wasser</url>
649
+ <streamable fulltrack="0">0</streamable>
650
+ <artist>
651
+ <name>Farin Urlaub</name>
652
+ <mbid>23620454-4dca-45b7-8496-066e94d99826</mbid>
653
+ <url>http://www.last.fm/music/Farin+Urlaub</url>
654
+ </artist>
655
+ <image size="small">http://images.amazon.com/images/P/B0007QCGFE.01.MZZZZZZZ.jpg</image>
656
+ <image size="medium">http://images.amazon.com/images/P/B0007QCGFE.01.MZZZZZZZ.jpg</image>
657
+ <image size="large">http://images.amazon.com/images/P/B0007QCGFE.01.MZZZZZZZ.jpg</image>
658
+ </track>
659
+ <track>
660
+ <name>Bank Holiday</name>
661
+ <playcount>1</playcount>
662
+ <tagcount></tagcount>
663
+ <mbid></mbid>
664
+ <url>http://www.last.fm/music/Blur/_/Bank+Holiday</url>
665
+ <streamable fulltrack="0">1</streamable>
666
+ <artist>
667
+ <name>Blur</name>
668
+ <mbid>ba853904-ae25-4ebb-89d6-c44cfbd71bd2</mbid>
669
+ <url>http://www.last.fm/music/Blur</url>
670
+ </artist>
671
+ <image size="small">http://userserve-ak.last.fm/serve/34s/14257389.jpg</image>
672
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/14257389.jpg</image>
673
+ <image size="large">http://userserve-ak.last.fm/serve/126/14257389.jpg</image>
674
+ </track>
675
+ <track>
676
+ <name>Lower</name>
677
+ <playcount>1</playcount>
678
+ <tagcount></tagcount>
679
+ <mbid></mbid>
680
+ <url>http://www.last.fm/music/NOFX/_/Lower</url>
681
+ <streamable fulltrack="0">1</streamable>
682
+ <artist>
683
+ <name>NOFX</name>
684
+ <mbid>dcaa4f81-bfb7-44eb-8594-4e74f004b6e4</mbid>
685
+ <url>http://www.last.fm/music/NOFX</url>
686
+ </artist>
687
+ <image size="small">http://images.amazon.com/images/P/B000065V5O.01.MZZZZZZZ.jpg</image>
688
+ <image size="medium">http://images.amazon.com/images/P/B000065V5O.01.MZZZZZZZ.jpg</image>
689
+ <image size="large">http://images.amazon.com/images/P/B000065V5O.01.MZZZZZZZ.jpg</image>
690
+ </track>
691
+ <track>
692
+ <name>Troy</name>
693
+ <playcount>1</playcount>
694
+ <tagcount></tagcount>
695
+ <mbid></mbid>
696
+ <url>http://www.last.fm/music/Die+Fantastischen+Vier/_/Troy</url>
697
+ <streamable fulltrack="0">0</streamable>
698
+ <artist>
699
+ <name>Die Fantastischen Vier</name>
700
+ <mbid>7928481f-848e-4551-b658-472c0aaf0c85</mbid>
701
+ <url>http://www.last.fm/music/Die+Fantastischen+Vier</url>
702
+ </artist>
703
+ <image size="small">http://userserve-ak.last.fm/serve/34s/19560765.jpg</image>
704
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/19560765.jpg</image>
705
+ <image size="large">http://userserve-ak.last.fm/serve/126/19560765.jpg</image>
706
+ </track>
707
+ <track>
708
+ <name>Theme for an Early Evening American Sitcom</name>
709
+ <playcount>1</playcount>
710
+ <tagcount></tagcount>
711
+ <mbid></mbid>
712
+ <url>http://www.last.fm/music/White+Town/_/Theme+for+an+Early+Evening+American+Sitcom</url>
713
+ <streamable fulltrack="0">1</streamable>
714
+ <artist>
715
+ <name>White Town</name>
716
+ <mbid>b9068fde-91c8-48bf-8655-8d74c24ef4c5</mbid>
717
+ <url>http://www.last.fm/music/White+Town</url>
718
+ </artist>
719
+ <image size="small">http://userserve-ak.last.fm/serve/34s/14025717.jpg</image>
720
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/14025717.jpg</image>
721
+ <image size="large">http://userserve-ak.last.fm/serve/126/14025717.jpg</image>
722
+ </track>
723
+ <track>
724
+ <name>Life Takes More Than That</name>
725
+ <playcount>1</playcount>
726
+ <tagcount></tagcount>
727
+ <mbid></mbid>
728
+ <url>http://www.last.fm/music/Gentleman/_/Life+Takes+More+Than+That</url>
729
+ <streamable fulltrack="0">1</streamable>
730
+ <artist>
731
+ <name>Gentleman</name>
732
+ <mbid>8de4a831-7c25-4d34-90cf-254de0c36e49</mbid>
733
+ <url>http://www.last.fm/music/Gentleman</url>
734
+ </artist>
735
+ <image size="small">http://userserve-ak.last.fm/serve/34s/28019385.jpg</image>
736
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/28019385.jpg</image>
737
+ <image size="large">http://userserve-ak.last.fm/serve/126/28019385.jpg</image>
738
+ </track>
739
+ <track>
740
+ <name>Clover Over Dover</name>
741
+ <playcount>1</playcount>
742
+ <tagcount></tagcount>
743
+ <mbid></mbid>
744
+ <url>http://www.last.fm/music/Blur/_/Clover+Over+Dover</url>
745
+ <streamable fulltrack="0">1</streamable>
746
+ <artist>
747
+ <name>Blur</name>
748
+ <mbid>ba853904-ae25-4ebb-89d6-c44cfbd71bd2</mbid>
749
+ <url>http://www.last.fm/music/Blur</url>
750
+ </artist>
751
+ <image size="small">http://userserve-ak.last.fm/serve/34s/14257389.jpg</image>
752
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/14257389.jpg</image>
753
+ <image size="large">http://userserve-ak.last.fm/serve/126/14257389.jpg</image>
754
+ </track>
755
+ <track>
756
+ <name>Intro</name>
757
+ <playcount>1</playcount>
758
+ <tagcount></tagcount>
759
+ <mbid></mbid>
760
+ <url>http://www.last.fm/music/Sportfreunde+Stiller/_/Intro</url>
761
+ <streamable fulltrack="1">1</streamable>
762
+ <artist>
763
+ <name>Sportfreunde Stiller</name>
764
+ <mbid>35581de7-591f-424f-9c64-7b22fd45605e</mbid>
765
+ <url>http://www.last.fm/music/Sportfreunde+Stiller</url>
766
+ </artist>
767
+ <image size="small">http://userserve-ak.last.fm/serve/34s/8717053.jpg</image>
768
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/8717053.jpg</image>
769
+ <image size="large">http://userserve-ak.last.fm/serve/126/8717053.jpg</image>
770
+ </track>
771
+ </tracks></lfm>