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,789 @@
1
+ <?xml version="1.0" encoding="utf-8"?>
2
+ <lfm status="ok">
3
+ <tracks user="xhochy" page="6" perPage="50" totalPages="34">
4
+ <track>
5
+ <name>Burn the Evidence</name>
6
+ <playcount>18</playcount>
7
+ <tagcount></tagcount>
8
+ <mbid></mbid>
9
+ <url>http://www.last.fm/music/Billy+Talent/_/Burn+the+Evidence</url>
10
+ <streamable fulltrack="0">1</streamable>
11
+ <artist>
12
+ <name>Billy Talent</name>
13
+ <mbid>fd429857-5ace-4609-ae54-1502c3bdac11</mbid>
14
+ <url>http://www.last.fm/music/Billy+Talent</url>
15
+ </artist>
16
+ <image size="small">http://userserve-ak.last.fm/serve/34s/28906727.jpg</image>
17
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/28906727.jpg</image>
18
+ <image size="large">http://userserve-ak.last.fm/serve/126/28906727.jpg</image>
19
+ </track>
20
+ <track>
21
+ <name>A Message</name>
22
+ <playcount>18</playcount>
23
+ <tagcount></tagcount>
24
+ <mbid></mbid>
25
+ <url>http://www.last.fm/music/Coldplay/_/A+Message</url>
26
+ <streamable fulltrack="0">1</streamable>
27
+ <artist>
28
+ <name>Coldplay</name>
29
+ <mbid>cc197bad-dc9c-440d-a5b5-d52ba2e14234</mbid>
30
+ <url>http://www.last.fm/music/Coldplay</url>
31
+ </artist>
32
+ <image size="small">http://images.amazon.com/images/P/B0006L16N8.01.MZZZZZZZ.jpg</image>
33
+ <image size="medium">http://images.amazon.com/images/P/B0006L16N8.01.MZZZZZZZ.jpg</image>
34
+ <image size="large">http://images.amazon.com/images/P/B0006L16N8.01.MZZZZZZZ.jpg</image>
35
+ </track>
36
+ <track>
37
+ <name>Balls Out</name>
38
+ <playcount>18</playcount>
39
+ <tagcount></tagcount>
40
+ <mbid></mbid>
41
+ <url>http://www.last.fm/music/Bloodhound+Gang/_/Balls+Out</url>
42
+ <streamable fulltrack="0">0</streamable>
43
+ <artist>
44
+ <name>Bloodhound Gang</name>
45
+ <mbid>b2dbfc09-b332-408b-a235-1850e41971c5</mbid>
46
+ <url>http://www.last.fm/music/Bloodhound+Gang</url>
47
+ </artist>
48
+ </track>
49
+ <track>
50
+ <name>Izzo/In the End</name>
51
+ <playcount>18</playcount>
52
+ <tagcount></tagcount>
53
+ <mbid></mbid>
54
+ <url>http://www.last.fm/music/Jay-Z+and+Linkin+Park/_/Izzo%252FIn%2Bthe%2BEnd</url>
55
+ <streamable fulltrack="0">1</streamable>
56
+ <artist>
57
+ <name>Jay-Z and Linkin Park</name>
58
+ <mbid>ae681605-2801-4120-9a48-e18752042306</mbid>
59
+ <url>http://www.last.fm/music/Jay-Z+and+Linkin+Park</url>
60
+ </artist>
61
+ <image size="small">http://images.amazon.com/images/P/B00069A6PE.01.MZZZZZZZ.jpg</image>
62
+ <image size="medium">http://images.amazon.com/images/P/B00069A6PE.01.MZZZZZZZ.jpg</image>
63
+ <image size="large">http://images.amazon.com/images/P/B00069A6PE.01.MZZZZZZZ.jpg</image>
64
+ </track>
65
+ <track>
66
+ <name>Race Against Myself</name>
67
+ <playcount>18</playcount>
68
+ <tagcount></tagcount>
69
+ <mbid></mbid>
70
+ <url>http://www.last.fm/music/The+Offspring/_/Race+Against+Myself</url>
71
+ <streamable fulltrack="0">0</streamable>
72
+ <artist>
73
+ <name>The Offspring</name>
74
+ <mbid>23a03e33-a603-404e-bcbf-2c00159d7067</mbid>
75
+ <url>http://www.last.fm/music/The+Offspring</url>
76
+ </artist>
77
+ <image size="small">http://userserve-ak.last.fm/serve/34s/23739571.jpg</image>
78
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/23739571.jpg</image>
79
+ <image size="large">http://userserve-ak.last.fm/serve/126/23739571.jpg</image>
80
+ </track>
81
+ <track>
82
+ <name>A Get Together to Tear It Apart</name>
83
+ <playcount>18</playcount>
84
+ <tagcount></tagcount>
85
+ <mbid></mbid>
86
+ <url>http://www.last.fm/music/The+Hives/_/A+Get+Together+to+Tear+It+Apart</url>
87
+ <streamable fulltrack="0">1</streamable>
88
+ <artist>
89
+ <name>The Hives</name>
90
+ <mbid>487bfd74-71bf-46dd-b89c-80b7a0f06f2f</mbid>
91
+ <url>http://www.last.fm/music/The+Hives</url>
92
+ </artist>
93
+ <image size="small">http://userserve-ak.last.fm/serve/34s/25888215.png</image>
94
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/25888215.png</image>
95
+ <image size="large">http://userserve-ak.last.fm/serve/126/25888215.png</image>
96
+ </track>
97
+ <track>
98
+ <name>Teddy Picker</name>
99
+ <playcount>18</playcount>
100
+ <tagcount></tagcount>
101
+ <mbid></mbid>
102
+ <url>http://www.last.fm/music/Arctic+Monkeys/_/Teddy+Picker</url>
103
+ <streamable fulltrack="0">1</streamable>
104
+ <artist>
105
+ <name>Arctic Monkeys</name>
106
+ <mbid>ada7a83c-e3e1-40f1-93f9-3e73dbc9298a</mbid>
107
+ <url>http://www.last.fm/music/Arctic+Monkeys</url>
108
+ </artist>
109
+ <image size="small">http://userserve-ak.last.fm/serve/34s/9131187.jpg</image>
110
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/9131187.jpg</image>
111
+ <image size="large">http://userserve-ak.last.fm/serve/126/9131187.jpg</image>
112
+ </track>
113
+ <track>
114
+ <name>Kiss the Dawn</name>
115
+ <playcount>17</playcount>
116
+ <tagcount></tagcount>
117
+ <mbid></mbid>
118
+ <url>http://www.last.fm/music/Guano+Apes/_/Kiss+the+Dawn</url>
119
+ <streamable fulltrack="0">1</streamable>
120
+ <artist>
121
+ <name>Guano Apes</name>
122
+ <mbid>66da25f9-1534-4dd1-b88c-718bc24e1ccd</mbid>
123
+ <url>http://www.last.fm/music/Guano+Apes</url>
124
+ </artist>
125
+ <image size="small">http://userserve-ak.last.fm/serve/34s/22670585.jpg</image>
126
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/22670585.jpg</image>
127
+ <image size="large">http://userserve-ak.last.fm/serve/126/22670585.jpg</image>
128
+ </track>
129
+ <track>
130
+ <name>Macy's Day Parade</name>
131
+ <playcount>17</playcount>
132
+ <tagcount></tagcount>
133
+ <mbid></mbid>
134
+ <url>http://www.last.fm/music/Green+Day/_/Macy%27s+Day+Parade</url>
135
+ <streamable fulltrack="0">1</streamable>
136
+ <artist>
137
+ <name>Green Day</name>
138
+ <mbid>084308bd-1654-436f-ba03-df6697104e19</mbid>
139
+ <url>http://www.last.fm/music/Green+Day</url>
140
+ </artist>
141
+ <image size="small">http://userserve-ak.last.fm/serve/34s/8673063.jpg</image>
142
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/8673063.jpg</image>
143
+ <image size="large">http://userserve-ak.last.fm/serve/126/8673063.jpg</image>
144
+ </track>
145
+ <track>
146
+ <name>In My Place</name>
147
+ <playcount>17</playcount>
148
+ <tagcount></tagcount>
149
+ <mbid></mbid>
150
+ <url>http://www.last.fm/music/Coldplay/_/In+My+Place</url>
151
+ <streamable fulltrack="0">1</streamable>
152
+ <artist>
153
+ <name>Coldplay</name>
154
+ <mbid>cc197bad-dc9c-440d-a5b5-d52ba2e14234</mbid>
155
+ <url>http://www.last.fm/music/Coldplay</url>
156
+ </artist>
157
+ <image size="small">http://userserve-ak.last.fm/serve/34s/14245401.jpg</image>
158
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/14245401.jpg</image>
159
+ <image size="large">http://userserve-ak.last.fm/serve/126/14245401.jpg</image>
160
+ </track>
161
+ <track>
162
+ <name>The School of Assassins</name>
163
+ <playcount>17</playcount>
164
+ <tagcount></tagcount>
165
+ <mbid></mbid>
166
+ <url>http://www.last.fm/music/Anti-Flag/_/The+School+of+Assassins</url>
167
+ <streamable fulltrack="0">0</streamable>
168
+ <artist>
169
+ <name>Anti-Flag</name>
170
+ <mbid>b88f21a7-a1b9-48fd-bbc4-ae758026f17f</mbid>
171
+ <url>http://www.last.fm/music/Anti-Flag</url>
172
+ </artist>
173
+ <image size="small">http://images.amazon.com/images/P/B0001WPSM2.01.MZZZZZZZ.jpg</image>
174
+ <image size="medium">http://images.amazon.com/images/P/B0001WPSM2.01.MZZZZZZZ.jpg</image>
175
+ <image size="large">http://images.amazon.com/images/P/B0001WPSM2.01.MZZZZZZZ.jpg</image>
176
+ </track>
177
+ <track>
178
+ <name>Love in Plaster</name>
179
+ <playcount>17</playcount>
180
+ <tagcount></tagcount>
181
+ <mbid></mbid>
182
+ <url>http://www.last.fm/music/The+Hives/_/Love+in+Plaster</url>
183
+ <streamable fulltrack="1">1</streamable>
184
+ <artist>
185
+ <name>The Hives</name>
186
+ <mbid>487bfd74-71bf-46dd-b89c-80b7a0f06f2f</mbid>
187
+ <url>http://www.last.fm/music/The+Hives</url>
188
+ </artist>
189
+ <image size="small">http://userserve-ak.last.fm/serve/34s/8676489.jpg</image>
190
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/8676489.jpg</image>
191
+ <image size="large">http://userserve-ak.last.fm/serve/126/8676489.jpg</image>
192
+ </track>
193
+ <track>
194
+ <name>Fallen Leaves</name>
195
+ <playcount>17</playcount>
196
+ <tagcount></tagcount>
197
+ <mbid></mbid>
198
+ <url>http://www.last.fm/music/Billy+Talent/_/Fallen+Leaves</url>
199
+ <streamable fulltrack="0">1</streamable>
200
+ <artist>
201
+ <name>Billy Talent</name>
202
+ <mbid>fd429857-5ace-4609-ae54-1502c3bdac11</mbid>
203
+ <url>http://www.last.fm/music/Billy+Talent</url>
204
+ </artist>
205
+ <image size="small">http://userserve-ak.last.fm/serve/34s/28906727.jpg</image>
206
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/28906727.jpg</image>
207
+ <image size="large">http://userserve-ak.last.fm/serve/126/28906727.jpg</image>
208
+ </track>
209
+ <track>
210
+ <name>Long Way Home</name>
211
+ <playcount>17</playcount>
212
+ <tagcount></tagcount>
213
+ <mbid></mbid>
214
+ <url>http://www.last.fm/music/The+Offspring/_/Long+Way+Home</url>
215
+ <streamable fulltrack="0">1</streamable>
216
+ <artist>
217
+ <name>The Offspring</name>
218
+ <mbid>23a03e33-a603-404e-bcbf-2c00159d7067</mbid>
219
+ <url>http://www.last.fm/music/The+Offspring</url>
220
+ </artist>
221
+ <image size="small">http://userserve-ak.last.fm/serve/34s/23739571.jpg</image>
222
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/23739571.jpg</image>
223
+ <image size="large">http://userserve-ak.last.fm/serve/126/23739571.jpg</image>
224
+ </track>
225
+ <track>
226
+ <name>For the Girl</name>
227
+ <playcount>17</playcount>
228
+ <tagcount></tagcount>
229
+ <mbid></mbid>
230
+ <url>http://www.last.fm/music/The+Fratellis/_/For+the+Girl</url>
231
+ <streamable fulltrack="1">1</streamable>
232
+ <artist>
233
+ <name>The Fratellis</name>
234
+ <mbid></mbid>
235
+ <url>http://www.last.fm/music/The+Fratellis</url>
236
+ </artist>
237
+ <image size="small">http://userserve-ak.last.fm/serve/34s/9033529.jpg</image>
238
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/9033529.jpg</image>
239
+ <image size="large">http://userserve-ak.last.fm/serve/126/9033529.jpg</image>
240
+ </track>
241
+ <track>
242
+ <name>Ein kleiner Schritt</name>
243
+ <playcount>17</playcount>
244
+ <tagcount></tagcount>
245
+ <mbid></mbid>
246
+ <url>http://www.last.fm/music/Sportfreunde+Stiller/_/Ein+kleiner+Schritt</url>
247
+ <streamable fulltrack="1">1</streamable>
248
+ <artist>
249
+ <name>Sportfreunde Stiller</name>
250
+ <mbid>35581de7-591f-424f-9c64-7b22fd45605e</mbid>
251
+ <url>http://www.last.fm/music/Sportfreunde+Stiller</url>
252
+ </artist>
253
+ <image size="small">http://userserve-ak.last.fm/serve/34s/8717053.jpg</image>
254
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/8717053.jpg</image>
255
+ <image size="large">http://userserve-ak.last.fm/serve/126/8717053.jpg</image>
256
+ </track>
257
+ <track>
258
+ <name>Missing Link</name>
259
+ <playcount>17</playcount>
260
+ <tagcount></tagcount>
261
+ <mbid></mbid>
262
+ <url>http://www.last.fm/music/The+Hives/_/Missing+Link</url>
263
+ <streamable fulltrack="1">1</streamable>
264
+ <artist>
265
+ <name>The Hives</name>
266
+ <mbid>487bfd74-71bf-46dd-b89c-80b7a0f06f2f</mbid>
267
+ <url>http://www.last.fm/music/The+Hives</url>
268
+ </artist>
269
+ <image size="small">http://userserve-ak.last.fm/serve/34s/8676489.jpg</image>
270
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/8676489.jpg</image>
271
+ <image size="large">http://userserve-ak.last.fm/serve/126/8676489.jpg</image>
272
+ </track>
273
+ <track>
274
+ <name>Brianstorm</name>
275
+ <playcount>17</playcount>
276
+ <tagcount></tagcount>
277
+ <mbid></mbid>
278
+ <url>http://www.last.fm/music/Arctic+Monkeys/_/Brianstorm</url>
279
+ <streamable fulltrack="0">0</streamable>
280
+ <artist>
281
+ <name>Arctic Monkeys</name>
282
+ <mbid>ada7a83c-e3e1-40f1-93f9-3e73dbc9298a</mbid>
283
+ <url>http://www.last.fm/music/Arctic+Monkeys</url>
284
+ </artist>
285
+ <image size="small">http://userserve-ak.last.fm/serve/34s/9131187.jpg</image>
286
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/9131187.jpg</image>
287
+ <image size="large">http://userserve-ak.last.fm/serve/126/9131187.jpg</image>
288
+ </track>
289
+ <track>
290
+ <name>The Hives-Declare Guerre Nucleaire</name>
291
+ <playcount>17</playcount>
292
+ <tagcount></tagcount>
293
+ <mbid></mbid>
294
+ <url>http://www.last.fm/music/The+Hives/_/The+Hives-Declare+Guerre+Nucleaire</url>
295
+ <streamable fulltrack="0">1</streamable>
296
+ <artist>
297
+ <name>The Hives</name>
298
+ <mbid>487bfd74-71bf-46dd-b89c-80b7a0f06f2f</mbid>
299
+ <url>http://www.last.fm/music/The+Hives</url>
300
+ </artist>
301
+ <image size="small">http://userserve-ak.last.fm/serve/34s/25888215.png</image>
302
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/25888215.png</image>
303
+ <image size="large">http://userserve-ak.last.fm/serve/126/25888215.png</image>
304
+ </track>
305
+ <track>
306
+ <name>Schwule Mädchen</name>
307
+ <playcount>17</playcount>
308
+ <tagcount></tagcount>
309
+ <mbid></mbid>
310
+ <url>http://www.last.fm/music/Fettes+Brot/_/Schwule+M%C3%A4dchen</url>
311
+ <streamable fulltrack="0">1</streamable>
312
+ <artist>
313
+ <name>Fettes Brot</name>
314
+ <mbid>733e7372-5400-4c79-9059-33e2b2262d01</mbid>
315
+ <url>http://www.last.fm/music/Fettes+Brot</url>
316
+ </artist>
317
+ <image size="small">http://userserve-ak.last.fm/serve/34s/12621867.jpg</image>
318
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/12621867.jpg</image>
319
+ <image size="large">http://userserve-ak.last.fm/serve/126/12621867.jpg</image>
320
+ </track>
321
+ <track>
322
+ <name>B.U.R.M.A.</name>
323
+ <playcount>17</playcount>
324
+ <tagcount></tagcount>
325
+ <mbid></mbid>
326
+ <url>http://www.last.fm/music/Dirty+Pretty+Things/_/B.U.R.M.A.</url>
327
+ <streamable fulltrack="0">1</streamable>
328
+ <artist>
329
+ <name>Dirty Pretty Things</name>
330
+ <mbid>648615ca-ca74-460d-928a-2bae67ae6d14</mbid>
331
+ <url>http://www.last.fm/music/Dirty+Pretty+Things</url>
332
+ </artist>
333
+ <image size="small">http://userserve-ak.last.fm/serve/34s/8810557.jpg</image>
334
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/8810557.jpg</image>
335
+ <image size="large">http://userserve-ak.last.fm/serve/126/8810557.jpg</image>
336
+ </track>
337
+ <track>
338
+ <name>No Brakes</name>
339
+ <playcount>17</playcount>
340
+ <tagcount></tagcount>
341
+ <mbid></mbid>
342
+ <url>http://www.last.fm/music/The+Offspring/_/No+Brakes</url>
343
+ <streamable fulltrack="0">1</streamable>
344
+ <artist>
345
+ <name>The Offspring</name>
346
+ <mbid>23a03e33-a603-404e-bcbf-2c00159d7067</mbid>
347
+ <url>http://www.last.fm/music/The+Offspring</url>
348
+ </artist>
349
+ <image size="small">http://userserve-ak.last.fm/serve/34s/23714755.jpg</image>
350
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/23714755.jpg</image>
351
+ <image size="large">http://userserve-ak.last.fm/serve/126/23714755.jpg</image>
352
+ </track>
353
+ <track>
354
+ <name>Find Another Girl</name>
355
+ <playcount>17</playcount>
356
+ <tagcount></tagcount>
357
+ <mbid></mbid>
358
+ <url>http://www.last.fm/music/The+Hives/_/Find+Another+Girl</url>
359
+ <streamable fulltrack="0">1</streamable>
360
+ <artist>
361
+ <name>The Hives</name>
362
+ <mbid>487bfd74-71bf-46dd-b89c-80b7a0f06f2f</mbid>
363
+ <url>http://www.last.fm/music/The+Hives</url>
364
+ </artist>
365
+ <image size="small">http://userserve-ak.last.fm/serve/34s/25888215.png</image>
366
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/25888215.png</image>
367
+ <image size="large">http://userserve-ak.last.fm/serve/126/25888215.png</image>
368
+ </track>
369
+ <track>
370
+ <name>No Pun Intended</name>
371
+ <playcount>16</playcount>
372
+ <tagcount></tagcount>
373
+ <mbid></mbid>
374
+ <url>http://www.last.fm/music/The+Hives/_/No+Pun+Intended</url>
375
+ <streamable fulltrack="1">1</streamable>
376
+ <artist>
377
+ <name>The Hives</name>
378
+ <mbid>487bfd74-71bf-46dd-b89c-80b7a0f06f2f</mbid>
379
+ <url>http://www.last.fm/music/The+Hives</url>
380
+ </artist>
381
+ <image size="small">http://userserve-ak.last.fm/serve/34s/8676489.jpg</image>
382
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/8676489.jpg</image>
383
+ <image size="large">http://userserve-ak.last.fm/serve/126/8676489.jpg</image>
384
+ </track>
385
+ <track>
386
+ <name>Schwarz zu Blau</name>
387
+ <playcount>16</playcount>
388
+ <tagcount></tagcount>
389
+ <mbid></mbid>
390
+ <url>http://www.last.fm/music/Peter+Fox/_/Schwarz+zu+Blau</url>
391
+ <streamable fulltrack="0">1</streamable>
392
+ <artist>
393
+ <name>Peter Fox</name>
394
+ <mbid></mbid>
395
+ <url>http://www.last.fm/music/Peter+Fox</url>
396
+ </artist>
397
+ </track>
398
+ <track>
399
+ <name>Two-Timing Touch and Broken Bones</name>
400
+ <playcount>16</playcount>
401
+ <tagcount></tagcount>
402
+ <mbid></mbid>
403
+ <url>http://www.last.fm/music/The+Hives/_/Two-Timing+Touch+and+Broken+Bones</url>
404
+ <streamable fulltrack="1">1</streamable>
405
+ <artist>
406
+ <name>The Hives</name>
407
+ <mbid>487bfd74-71bf-46dd-b89c-80b7a0f06f2f</mbid>
408
+ <url>http://www.last.fm/music/The+Hives</url>
409
+ </artist>
410
+ <image size="small">http://userserve-ak.last.fm/serve/34s/8676489.jpg</image>
411
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/8676489.jpg</image>
412
+ <image size="large">http://userserve-ak.last.fm/serve/126/8676489.jpg</image>
413
+ </track>
414
+ <track>
415
+ <name>Always</name>
416
+ <playcount>16</playcount>
417
+ <tagcount></tagcount>
418
+ <mbid></mbid>
419
+ <url>http://www.last.fm/music/blink-182/_/Always</url>
420
+ <streamable fulltrack="1">1</streamable>
421
+ <artist>
422
+ <name>blink-182</name>
423
+ <mbid>0743b15a-3c32-48c8-ad58-cb325350befa</mbid>
424
+ <url>http://www.last.fm/music/blink-182</url>
425
+ </artist>
426
+ <image size="small">http://userserve-ak.last.fm/serve/34s/5260368.jpg</image>
427
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/5260368.jpg</image>
428
+ <image size="large">http://userserve-ak.last.fm/serve/126/5260368.jpg</image>
429
+ </track>
430
+ <track>
431
+ <name>Sty together for the Kids</name>
432
+ <playcount>16</playcount>
433
+ <tagcount></tagcount>
434
+ <mbid></mbid>
435
+ <url>http://www.last.fm/music/blink-182/_/Sty+together+for+the+Kids</url>
436
+ <streamable fulltrack="0">0</streamable>
437
+ <artist>
438
+ <name>blink-182</name>
439
+ <mbid>0743b15a-3c32-48c8-ad58-cb325350befa</mbid>
440
+ <url>http://www.last.fm/music/blink-182</url>
441
+ </artist>
442
+ </track>
443
+ <track>
444
+ <name>Mr. Brightside</name>
445
+ <playcount>16</playcount>
446
+ <tagcount></tagcount>
447
+ <mbid></mbid>
448
+ <url>http://www.last.fm/music/The+Killers/_/Mr.+Brightside</url>
449
+ <streamable fulltrack="0">1</streamable>
450
+ <artist>
451
+ <name>The Killers</name>
452
+ <mbid>95e1ead9-4d31-4808-a7ac-32c3614c116b</mbid>
453
+ <url>http://www.last.fm/music/The+Killers</url>
454
+ </artist>
455
+ <image size="small">http://userserve-ak.last.fm/serve/34s/8634917.jpg</image>
456
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/8634917.jpg</image>
457
+ <image size="large">http://userserve-ak.last.fm/serve/126/8634917.jpg</image>
458
+ </track>
459
+ <track>
460
+ <name>See Through Head</name>
461
+ <playcount>16</playcount>
462
+ <tagcount></tagcount>
463
+ <mbid></mbid>
464
+ <url>http://www.last.fm/music/The+Hives/_/See+Through+Head</url>
465
+ <streamable fulltrack="1">1</streamable>
466
+ <artist>
467
+ <name>The Hives</name>
468
+ <mbid>487bfd74-71bf-46dd-b89c-80b7a0f06f2f</mbid>
469
+ <url>http://www.last.fm/music/The+Hives</url>
470
+ </artist>
471
+ <image size="small">http://userserve-ak.last.fm/serve/34s/8676489.jpg</image>
472
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/8676489.jpg</image>
473
+ <image size="large">http://userserve-ak.last.fm/serve/126/8676489.jpg</image>
474
+ </track>
475
+ <track>
476
+ <name>An Tagen wie diesen</name>
477
+ <playcount>16</playcount>
478
+ <tagcount></tagcount>
479
+ <mbid></mbid>
480
+ <url>http://www.last.fm/music/Fettes+Brot/_/An+Tagen+wie+diesen</url>
481
+ <streamable fulltrack="0">0</streamable>
482
+ <artist>
483
+ <name>Fettes Brot</name>
484
+ <mbid>733e7372-5400-4c79-9059-33e2b2262d01</mbid>
485
+ <url>http://www.last.fm/music/Fettes+Brot</url>
486
+ </artist>
487
+ <image size="small">http://userserve-ak.last.fm/serve/34s/3772451.jpg</image>
488
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/3772451.jpg</image>
489
+ <image size="large">http://userserve-ak.last.fm/serve/126/3772451.jpg</image>
490
+ </track>
491
+ <track>
492
+ <name>Antidote</name>
493
+ <playcount>16</playcount>
494
+ <tagcount></tagcount>
495
+ <mbid></mbid>
496
+ <url>http://www.last.fm/music/The+Hives/_/Antidote</url>
497
+ <streamable fulltrack="1">1</streamable>
498
+ <artist>
499
+ <name>The Hives</name>
500
+ <mbid>487bfd74-71bf-46dd-b89c-80b7a0f06f2f</mbid>
501
+ <url>http://www.last.fm/music/The+Hives</url>
502
+ </artist>
503
+ <image size="small">http://userserve-ak.last.fm/serve/34s/8676489.jpg</image>
504
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/8676489.jpg</image>
505
+ <image size="large">http://userserve-ak.last.fm/serve/126/8676489.jpg</image>
506
+ </track>
507
+ <track>
508
+ <name>Frühling</name>
509
+ <playcount>15</playcount>
510
+ <tagcount></tagcount>
511
+ <mbid></mbid>
512
+ <url>http://www.last.fm/music/Sportfreunde+Stiller/_/Fr%C3%BChling</url>
513
+ <streamable fulltrack="1">1</streamable>
514
+ <artist>
515
+ <name>Sportfreunde Stiller</name>
516
+ <mbid>35581de7-591f-424f-9c64-7b22fd45605e</mbid>
517
+ <url>http://www.last.fm/music/Sportfreunde+Stiller</url>
518
+ </artist>
519
+ <image size="small">http://userserve-ak.last.fm/serve/34s/8717053.jpg</image>
520
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/8717053.jpg</image>
521
+ <image size="large">http://userserve-ak.last.fm/serve/126/8717053.jpg</image>
522
+ </track>
523
+ <track>
524
+ <name>Vince the Loveable Stoner</name>
525
+ <playcount>15</playcount>
526
+ <tagcount></tagcount>
527
+ <mbid></mbid>
528
+ <url>http://www.last.fm/music/The+Fratellis/_/Vince+the+Loveable+Stoner</url>
529
+ <streamable fulltrack="1">1</streamable>
530
+ <artist>
531
+ <name>The Fratellis</name>
532
+ <mbid></mbid>
533
+ <url>http://www.last.fm/music/The+Fratellis</url>
534
+ </artist>
535
+ <image size="small">http://userserve-ak.last.fm/serve/34s/9033529.jpg</image>
536
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/9033529.jpg</image>
537
+ <image size="large">http://userserve-ak.last.fm/serve/126/9033529.jpg</image>
538
+ </track>
539
+ <track>
540
+ <name>Neocon</name>
541
+ <playcount>15</playcount>
542
+ <tagcount></tagcount>
543
+ <mbid></mbid>
544
+ <url>http://www.last.fm/music/The+Offspring/_/Neocon</url>
545
+ <streamable fulltrack="0">1</streamable>
546
+ <artist>
547
+ <name>The Offspring</name>
548
+ <mbid>23a03e33-a603-404e-bcbf-2c00159d7067</mbid>
549
+ <url>http://www.last.fm/music/The+Offspring</url>
550
+ </artist>
551
+ <image size="small">http://userserve-ak.last.fm/serve/34s/23739571.jpg</image>
552
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/23739571.jpg</image>
553
+ <image size="large">http://userserve-ak.last.fm/serve/126/23739571.jpg</image>
554
+ </track>
555
+ <track>
556
+ <name>Cuntry Boys &amp; City Girls</name>
557
+ <playcount>15</playcount>
558
+ <tagcount></tagcount>
559
+ <mbid></mbid>
560
+ <url>http://www.last.fm/music/The+Fratellis/_/Cuntry%2BBoys%2B%2526%2BCity%2BGirls</url>
561
+ <streamable fulltrack="1">1</streamable>
562
+ <artist>
563
+ <name>The Fratellis</name>
564
+ <mbid></mbid>
565
+ <url>http://www.last.fm/music/The+Fratellis</url>
566
+ </artist>
567
+ <image size="small">http://userserve-ak.last.fm/serve/34s/9033529.jpg</image>
568
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/9033529.jpg</image>
569
+ <image size="large">http://userserve-ak.last.fm/serve/126/9033529.jpg</image>
570
+ </track>
571
+ <track>
572
+ <name>When You're in Prison</name>
573
+ <playcount>15</playcount>
574
+ <tagcount></tagcount>
575
+ <mbid></mbid>
576
+ <url>http://www.last.fm/music/The+Offspring/_/When+You%27re+in+Prison</url>
577
+ <streamable fulltrack="0">0</streamable>
578
+ <artist>
579
+ <name>The Offspring</name>
580
+ <mbid>23a03e33-a603-404e-bcbf-2c00159d7067</mbid>
581
+ <url>http://www.last.fm/music/The+Offspring</url>
582
+ </artist>
583
+ <image size="small">http://userserve-ak.last.fm/serve/34s/23739571.jpg</image>
584
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/23739571.jpg</image>
585
+ <image size="large">http://userserve-ak.last.fm/serve/126/23739571.jpg</image>
586
+ </track>
587
+ <track>
588
+ <name>Never Gonna Find Me</name>
589
+ <playcount>15</playcount>
590
+ <tagcount></tagcount>
591
+ <mbid></mbid>
592
+ <url>http://www.last.fm/music/The+Offspring/_/Never+Gonna+Find+Me</url>
593
+ <streamable fulltrack="0">0</streamable>
594
+ <artist>
595
+ <name>The Offspring</name>
596
+ <mbid>23a03e33-a603-404e-bcbf-2c00159d7067</mbid>
597
+ <url>http://www.last.fm/music/The+Offspring</url>
598
+ </artist>
599
+ <image size="small">http://userserve-ak.last.fm/serve/34s/23739571.jpg</image>
600
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/23739571.jpg</image>
601
+ <image size="large">http://userserve-ak.last.fm/serve/126/23739571.jpg</image>
602
+ </track>
603
+ <track>
604
+ <name>Ole Black 'n' Blue Eyes</name>
605
+ <playcount>15</playcount>
606
+ <tagcount></tagcount>
607
+ <mbid></mbid>
608
+ <url>http://www.last.fm/music/The+Fratellis/_/Ole+Black+%27n%27+Blue+Eyes</url>
609
+ <streamable fulltrack="1">1</streamable>
610
+ <artist>
611
+ <name>The Fratellis</name>
612
+ <mbid></mbid>
613
+ <url>http://www.last.fm/music/The+Fratellis</url>
614
+ </artist>
615
+ <image size="small">http://userserve-ak.last.fm/serve/34s/9033529.jpg</image>
616
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/9033529.jpg</image>
617
+ <image size="large">http://userserve-ak.last.fm/serve/126/9033529.jpg</image>
618
+ </track>
619
+ <track>
620
+ <name>Old Yellow Bricks</name>
621
+ <playcount>15</playcount>
622
+ <tagcount></tagcount>
623
+ <mbid></mbid>
624
+ <url>http://www.last.fm/music/Arctic+Monkeys/_/Old+Yellow+Bricks</url>
625
+ <streamable fulltrack="0">0</streamable>
626
+ <artist>
627
+ <name>Arctic Monkeys</name>
628
+ <mbid>ada7a83c-e3e1-40f1-93f9-3e73dbc9298a</mbid>
629
+ <url>http://www.last.fm/music/Arctic+Monkeys</url>
630
+ </artist>
631
+ <image size="small">http://userserve-ak.last.fm/serve/34s/9131187.jpg</image>
632
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/9131187.jpg</image>
633
+ <image size="large">http://userserve-ak.last.fm/serve/126/9131187.jpg</image>
634
+ </track>
635
+ <track>
636
+ <name>Ungewöhnlich</name>
637
+ <playcount>15</playcount>
638
+ <tagcount></tagcount>
639
+ <mbid></mbid>
640
+ <url>http://www.last.fm/music/Sportfreunde+Stiller/_/Ungew%C3%B6hnlich</url>
641
+ <streamable fulltrack="1">1</streamable>
642
+ <artist>
643
+ <name>Sportfreunde Stiller</name>
644
+ <mbid>35581de7-591f-424f-9c64-7b22fd45605e</mbid>
645
+ <url>http://www.last.fm/music/Sportfreunde+Stiller</url>
646
+ </artist>
647
+ <image size="small">http://userserve-ak.last.fm/serve/34s/8717053.jpg</image>
648
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/8717053.jpg</image>
649
+ <image size="large">http://userserve-ak.last.fm/serve/126/8717053.jpg</image>
650
+ </track>
651
+ <track>
652
+ <name>The end off line</name>
653
+ <playcount>15</playcount>
654
+ <tagcount></tagcount>
655
+ <mbid></mbid>
656
+ <url>http://www.last.fm/music/The+Offspring/_/The+end+off+line</url>
657
+ <streamable fulltrack="0">0</streamable>
658
+ <artist>
659
+ <name>The Offspring</name>
660
+ <mbid>23a03e33-a603-404e-bcbf-2c00159d7067</mbid>
661
+ <url>http://www.last.fm/music/The+Offspring</url>
662
+ </artist>
663
+ </track>
664
+ <track>
665
+ <name>I'm a Cuckoo</name>
666
+ <playcount>15</playcount>
667
+ <tagcount></tagcount>
668
+ <mbid></mbid>
669
+ <url>http://www.last.fm/music/Belle+and+Sebastian/_/I%27m+a+Cuckoo</url>
670
+ <streamable fulltrack="0">0</streamable>
671
+ <artist>
672
+ <name>Belle and Sebastian</name>
673
+ <mbid>e5c7b94f-e264-473c-bb0f-37c85d4d5c70</mbid>
674
+ <url>http://www.last.fm/music/Belle+and+Sebastian</url>
675
+ </artist>
676
+ <image size="small">http://images.amazon.com/images/P/B0000CBHQ1.01.THUMBZZZ.jpg</image>
677
+ <image size="medium">http://images.amazon.com/images/P/B0000CBHQ1.01.MZZZZZZZ.jpg</image>
678
+ <image size="large">http://images.amazon.com/images/P/B0000CBHQ1.01.LZZZZZZZ.jpg</image>
679
+ </track>
680
+ <track>
681
+ <name>B Is for Brutus</name>
682
+ <playcount>15</playcount>
683
+ <tagcount></tagcount>
684
+ <mbid></mbid>
685
+ <url>http://www.last.fm/music/The+Hives/_/B+Is+for+Brutus</url>
686
+ <streamable fulltrack="1">1</streamable>
687
+ <artist>
688
+ <name>The Hives</name>
689
+ <mbid>487bfd74-71bf-46dd-b89c-80b7a0f06f2f</mbid>
690
+ <url>http://www.last.fm/music/The+Hives</url>
691
+ </artist>
692
+ <image size="small">http://userserve-ak.last.fm/serve/34s/8676489.jpg</image>
693
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/8676489.jpg</image>
694
+ <image size="large">http://userserve-ak.last.fm/serve/126/8676489.jpg</image>
695
+ </track>
696
+ <track>
697
+ <name>Not Addicted</name>
698
+ <playcount>15</playcount>
699
+ <tagcount></tagcount>
700
+ <mbid></mbid>
701
+ <url>http://www.last.fm/music/The+Streets/_/Not+Addicted</url>
702
+ <streamable fulltrack="0">1</streamable>
703
+ <artist>
704
+ <name>The Streets</name>
705
+ <mbid>6f607087-9c46-4bb2-a884-e4efc764554c</mbid>
706
+ <url>http://www.last.fm/music/The+Streets</url>
707
+ </artist>
708
+ <image size="small">http://userserve-ak.last.fm/serve/34s/12623177.jpg</image>
709
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/12623177.jpg</image>
710
+ <image size="large">http://userserve-ak.last.fm/serve/126/12623177.jpg</image>
711
+ </track>
712
+ <track>
713
+ <name>Do Me a Favour</name>
714
+ <playcount>15</playcount>
715
+ <tagcount></tagcount>
716
+ <mbid></mbid>
717
+ <url>http://www.last.fm/music/Arctic+Monkeys/_/Do+Me+a+Favour</url>
718
+ <streamable fulltrack="0">0</streamable>
719
+ <artist>
720
+ <name>Arctic Monkeys</name>
721
+ <mbid>ada7a83c-e3e1-40f1-93f9-3e73dbc9298a</mbid>
722
+ <url>http://www.last.fm/music/Arctic+Monkeys</url>
723
+ </artist>
724
+ <image size="small">http://userserve-ak.last.fm/serve/34s/9131187.jpg</image>
725
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/9131187.jpg</image>
726
+ <image size="large">http://userserve-ak.last.fm/serve/126/9131187.jpg</image>
727
+ </track>
728
+ <track>
729
+ <name>I'm the Least You Could Do</name>
730
+ <playcount>15</playcount>
731
+ <tagcount></tagcount>
732
+ <mbid></mbid>
733
+ <url>http://www.last.fm/music/Bloodhound+Gang/_/I%27m+the+Least+You+Could+Do</url>
734
+ <streamable fulltrack="0">0</streamable>
735
+ <artist>
736
+ <name>Bloodhound Gang</name>
737
+ <mbid>b2dbfc09-b332-408b-a235-1850e41971c5</mbid>
738
+ <url>http://www.last.fm/music/Bloodhound+Gang</url>
739
+ </artist>
740
+ </track>
741
+ <track>
742
+ <name>Fit For A Fortnight</name>
743
+ <playcount>15</playcount>
744
+ <tagcount></tagcount>
745
+ <mbid></mbid>
746
+ <url>http://www.last.fm/music/The+Holloways/_/Fit+For+A+Fortnight</url>
747
+ <streamable fulltrack="0">1</streamable>
748
+ <artist>
749
+ <name>The Holloways</name>
750
+ <mbid>ed0c90ee-4cc0-4928-8f61-93dbd7869eb9</mbid>
751
+ <url>http://www.last.fm/music/The+Holloways</url>
752
+ </artist>
753
+ <image size="small">http://userserve-ak.last.fm/serve/34s/4088497.jpg</image>
754
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/4088497.jpg</image>
755
+ <image size="large">http://userserve-ak.last.fm/serve/126/4088497.jpg</image>
756
+ </track>
757
+ <track>
758
+ <name>The Grosser</name>
759
+ <playcount>15</playcount>
760
+ <tagcount></tagcount>
761
+ <mbid></mbid>
762
+ <url>http://www.last.fm/music/Fettes+Brot/_/The+Grosser</url>
763
+ <streamable fulltrack="0">1</streamable>
764
+ <artist>
765
+ <name>Fettes Brot</name>
766
+ <mbid>733e7372-5400-4c79-9059-33e2b2262d01</mbid>
767
+ <url>http://www.last.fm/music/Fettes+Brot</url>
768
+ </artist>
769
+ <image size="small">http://userserve-ak.last.fm/serve/34s/12621867.jpg</image>
770
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/12621867.jpg</image>
771
+ <image size="large">http://userserve-ak.last.fm/serve/126/12621867.jpg</image>
772
+ </track>
773
+ <track>
774
+ <name>Down</name>
775
+ <playcount>15</playcount>
776
+ <tagcount></tagcount>
777
+ <mbid></mbid>
778
+ <url>http://www.last.fm/music/blink-182/_/Down</url>
779
+ <streamable fulltrack="1">1</streamable>
780
+ <artist>
781
+ <name>blink-182</name>
782
+ <mbid>0743b15a-3c32-48c8-ad58-cb325350befa</mbid>
783
+ <url>http://www.last.fm/music/blink-182</url>
784
+ </artist>
785
+ <image size="small">http://userserve-ak.last.fm/serve/34s/5260368.jpg</image>
786
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/5260368.jpg</image>
787
+ <image size="large">http://userserve-ak.last.fm/serve/126/5260368.jpg</image>
788
+ </track>
789
+ </tracks></lfm>