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="10" perPage="50" totalPages="34">
4
+ <track>
5
+ <name>Glaub dran</name>
6
+ <playcount>9</playcount>
7
+ <tagcount></tagcount>
8
+ <mbid></mbid>
9
+ <url>http://www.last.fm/music/Fettes+Brot/_/Glaub+dran</url>
10
+ <streamable fulltrack="0">0</streamable>
11
+ <artist>
12
+ <name>Fettes Brot</name>
13
+ <mbid>733e7372-5400-4c79-9059-33e2b2262d01</mbid>
14
+ <url>http://www.last.fm/music/Fettes+Brot</url>
15
+ </artist>
16
+ </track>
17
+ <track>
18
+ <name>Something Diabolical</name>
19
+ <playcount>9</playcount>
20
+ <tagcount></tagcount>
21
+ <mbid></mbid>
22
+ <url>http://www.last.fm/music/Bloodhound+Gang/_/Something+Diabolical</url>
23
+ <streamable fulltrack="1">1</streamable>
24
+ <artist>
25
+ <name>Bloodhound Gang</name>
26
+ <mbid>b2dbfc09-b332-408b-a235-1850e41971c5</mbid>
27
+ <url>http://www.last.fm/music/Bloodhound+Gang</url>
28
+ </artist>
29
+ <image size="small">http://userserve-ak.last.fm/serve/34s/8751895.jpg</image>
30
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/8751895.jpg</image>
31
+ <image size="large">http://userserve-ak.last.fm/serve/126/8751895.jpg</image>
32
+ </track>
33
+ <track>
34
+ <name>Anders</name>
35
+ <playcount>9</playcount>
36
+ <tagcount></tagcount>
37
+ <mbid></mbid>
38
+ <url>http://www.last.fm/music/Juli/_/Anders</url>
39
+ <streamable fulltrack="1">1</streamable>
40
+ <artist>
41
+ <name>Juli</name>
42
+ <mbid>9a593aff-62c9-40bd-9631-1697798adb63</mbid>
43
+ <url>http://www.last.fm/music/Juli</url>
44
+ </artist>
45
+ <image size="small">http://userserve-ak.last.fm/serve/34s/8638773.jpg</image>
46
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/8638773.jpg</image>
47
+ <image size="large">http://userserve-ak.last.fm/serve/126/8638773.jpg</image>
48
+ </track>
49
+ <track>
50
+ <name>Life in Technicolor</name>
51
+ <playcount>9</playcount>
52
+ <tagcount></tagcount>
53
+ <mbid></mbid>
54
+ <url>http://www.last.fm/music/Coldplay/_/Life+in+Technicolor</url>
55
+ <streamable fulltrack="0">1</streamable>
56
+ <artist>
57
+ <name>Coldplay</name>
58
+ <mbid>cc197bad-dc9c-440d-a5b5-d52ba2e14234</mbid>
59
+ <url>http://www.last.fm/music/Coldplay</url>
60
+ </artist>
61
+ <image size="small">http://userserve-ak.last.fm/serve/34s/14349365.jpg</image>
62
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/14349365.jpg</image>
63
+ <image size="large">http://userserve-ak.last.fm/serve/126/14349365.jpg</image>
64
+ </track>
65
+ <track>
66
+ <name>Get Out of My House</name>
67
+ <playcount>9</playcount>
68
+ <tagcount></tagcount>
69
+ <mbid></mbid>
70
+ <url>http://www.last.fm/music/The+Streets/_/Get+Out+of+My+House</url>
71
+ <streamable fulltrack="0">1</streamable>
72
+ <artist>
73
+ <name>The Streets</name>
74
+ <mbid>6f607087-9c46-4bb2-a884-e4efc764554c</mbid>
75
+ <url>http://www.last.fm/music/The+Streets</url>
76
+ </artist>
77
+ <image size="small">http://userserve-ak.last.fm/serve/34s/12623177.jpg</image>
78
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/12623177.jpg</image>
79
+ <image size="large">http://userserve-ak.last.fm/serve/126/12623177.jpg</image>
80
+ </track>
81
+ <track>
82
+ <name>Porcelain</name>
83
+ <playcount>9</playcount>
84
+ <tagcount></tagcount>
85
+ <mbid></mbid>
86
+ <url>http://www.last.fm/music/Red+Hot+Chili+Peppers/_/Porcelain</url>
87
+ <streamable fulltrack="0">1</streamable>
88
+ <artist>
89
+ <name>Red Hot Chili Peppers</name>
90
+ <mbid>8bfac288-ccc5-448d-9573-c33ea2aa5c30</mbid>
91
+ <url>http://www.last.fm/music/Red+Hot+Chili+Peppers</url>
92
+ </artist>
93
+ <image size="small">http://userserve-ak.last.fm/serve/34s/8593509.jpg</image>
94
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/8593509.jpg</image>
95
+ <image size="large">http://userserve-ak.last.fm/serve/126/8593509.jpg</image>
96
+ </track>
97
+ <track>
98
+ <name>Parallel Universe</name>
99
+ <playcount>9</playcount>
100
+ <tagcount></tagcount>
101
+ <mbid></mbid>
102
+ <url>http://www.last.fm/music/Red+Hot+Chili+Peppers/_/Parallel+Universe</url>
103
+ <streamable fulltrack="0">1</streamable>
104
+ <artist>
105
+ <name>Red Hot Chili Peppers</name>
106
+ <mbid>8bfac288-ccc5-448d-9573-c33ea2aa5c30</mbid>
107
+ <url>http://www.last.fm/music/Red+Hot+Chili+Peppers</url>
108
+ </artist>
109
+ <image size="small">http://userserve-ak.last.fm/serve/34s/8593509.jpg</image>
110
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/8593509.jpg</image>
111
+ <image size="large">http://userserve-ak.last.fm/serve/126/8593509.jpg</image>
112
+ </track>
113
+ <track>
114
+ <name>Hurra, wir fliegen! / Chiffre</name>
115
+ <playcount>9</playcount>
116
+ <tagcount></tagcount>
117
+ <mbid></mbid>
118
+ <url>http://www.last.fm/music/Sportfreunde+Stiller/_/Hurra%252C%2Bwir%2Bfliegen%2521%2B%252F%2BChiffre</url>
119
+ <streamable fulltrack="0">0</streamable>
120
+ <artist>
121
+ <name>Sportfreunde Stiller</name>
122
+ <mbid>35581de7-591f-424f-9c64-7b22fd45605e</mbid>
123
+ <url>http://www.last.fm/music/Sportfreunde+Stiller</url>
124
+ </artist>
125
+ </track>
126
+ <track>
127
+ <name>Siehst du das genauso</name>
128
+ <playcount>9</playcount>
129
+ <tagcount></tagcount>
130
+ <mbid></mbid>
131
+ <url>http://www.last.fm/music/Sportfreunde+Stiller/_/Siehst+du+das+genauso</url>
132
+ <streamable fulltrack="0">0</streamable>
133
+ <artist>
134
+ <name>Sportfreunde Stiller</name>
135
+ <mbid>35581de7-591f-424f-9c64-7b22fd45605e</mbid>
136
+ <url>http://www.last.fm/music/Sportfreunde+Stiller</url>
137
+ </artist>
138
+ </track>
139
+ <track>
140
+ <name>Have I Been a Fool?</name>
141
+ <playcount>9</playcount>
142
+ <tagcount></tagcount>
143
+ <mbid></mbid>
144
+ <url>http://www.last.fm/music/Jack+Pe%C3%B1ate/_/Have+I+Been+a+Fool%3F</url>
145
+ <streamable fulltrack="0">0</streamable>
146
+ <artist>
147
+ <name>Jack Peñate</name>
148
+ <mbid>9b64cf5d-1f4a-45b5-a84a-5109a88f178f</mbid>
149
+ <url>http://www.last.fm/music/Jack+Pe%C3%B1ate</url>
150
+ </artist>
151
+ </track>
152
+ <track>
153
+ <name>Such a Twat</name>
154
+ <playcount>9</playcount>
155
+ <tagcount></tagcount>
156
+ <mbid></mbid>
157
+ <url>http://www.last.fm/music/The+Streets/_/Such+a+Twat</url>
158
+ <streamable fulltrack="0">1</streamable>
159
+ <artist>
160
+ <name>The Streets</name>
161
+ <mbid>6f607087-9c46-4bb2-a884-e4efc764554c</mbid>
162
+ <url>http://www.last.fm/music/The+Streets</url>
163
+ </artist>
164
+ <image size="small">http://userserve-ak.last.fm/serve/34s/12623177.jpg</image>
165
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/12623177.jpg</image>
166
+ <image size="large">http://userserve-ak.last.fm/serve/126/12623177.jpg</image>
167
+ </track>
168
+ <track>
169
+ <name>Wake Up!</name>
170
+ <playcount>9</playcount>
171
+ <tagcount></tagcount>
172
+ <mbid></mbid>
173
+ <url>http://www.last.fm/music/Anti-Flag/_/Wake+Up%21</url>
174
+ <streamable fulltrack="0">1</streamable>
175
+ <artist>
176
+ <name>Anti-Flag</name>
177
+ <mbid>b88f21a7-a1b9-48fd-bbc4-ae758026f17f</mbid>
178
+ <url>http://www.last.fm/music/Anti-Flag</url>
179
+ </artist>
180
+ <image size="small">http://images.amazon.com/images/P/B0000DH29Y.01.THUMBZZZ.jpg</image>
181
+ <image size="medium">http://images.amazon.com/images/P/B0000DH29Y.01.MZZZZZZZ.jpg</image>
182
+ <image size="large">http://images.amazon.com/images/P/B0000DH29Y.01.LZZZZZZZ.jpg</image>
183
+ </track>
184
+ <track>
185
+ <name>Walk Away</name>
186
+ <playcount>9</playcount>
187
+ <tagcount></tagcount>
188
+ <mbid></mbid>
189
+ <url>http://www.last.fm/music/Dropkick+Murphys/_/Walk+Away</url>
190
+ <streamable fulltrack="0">1</streamable>
191
+ <artist>
192
+ <name>Dropkick Murphys</name>
193
+ <mbid>e8374874-4178-4869-b92e-fef6bf30dc04</mbid>
194
+ <url>http://www.last.fm/music/Dropkick+Murphys</url>
195
+ </artist>
196
+ <image size="small">http://userserve-ak.last.fm/serve/34s/8634937.jpg</image>
197
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/8634937.jpg</image>
198
+ <image size="large">http://userserve-ak.last.fm/serve/126/8634937.jpg</image>
199
+ </track>
200
+ <track>
201
+ <name>Bling (Confession of a King)</name>
202
+ <playcount>9</playcount>
203
+ <tagcount></tagcount>
204
+ <mbid></mbid>
205
+ <url>http://www.last.fm/music/The+Killers/_/Bling+%28Confession+of+a+King%29</url>
206
+ <streamable fulltrack="1">1</streamable>
207
+ <artist>
208
+ <name>The Killers</name>
209
+ <mbid>95e1ead9-4d31-4808-a7ac-32c3614c116b</mbid>
210
+ <url>http://www.last.fm/music/The+Killers</url>
211
+ </artist>
212
+ <image size="small">http://userserve-ak.last.fm/serve/34s/9192209.jpg</image>
213
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/9192209.jpg</image>
214
+ <image size="large">http://userserve-ak.last.fm/serve/126/9192209.jpg</image>
215
+ </track>
216
+ <track>
217
+ <name>Abra Cadaver</name>
218
+ <playcount>9</playcount>
219
+ <tagcount></tagcount>
220
+ <mbid></mbid>
221
+ <url>http://www.last.fm/music/The+Hives/_/Abra+Cadaver</url>
222
+ <streamable fulltrack="1">1</streamable>
223
+ <artist>
224
+ <name>The Hives</name>
225
+ <mbid>487bfd74-71bf-46dd-b89c-80b7a0f06f2f</mbid>
226
+ <url>http://www.last.fm/music/The+Hives</url>
227
+ </artist>
228
+ <image size="small">http://userserve-ak.last.fm/serve/34s/8676489.jpg</image>
229
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/8676489.jpg</image>
230
+ <image size="large">http://userserve-ak.last.fm/serve/126/8676489.jpg</image>
231
+ </track>
232
+ <track>
233
+ <name>505</name>
234
+ <playcount>9</playcount>
235
+ <tagcount></tagcount>
236
+ <mbid></mbid>
237
+ <url>http://www.last.fm/music/Arctic+Monkeys/_/505</url>
238
+ <streamable fulltrack="0">0</streamable>
239
+ <artist>
240
+ <name>Arctic Monkeys</name>
241
+ <mbid>ada7a83c-e3e1-40f1-93f9-3e73dbc9298a</mbid>
242
+ <url>http://www.last.fm/music/Arctic+Monkeys</url>
243
+ </artist>
244
+ <image size="small">http://userserve-ak.last.fm/serve/34s/9131187.jpg</image>
245
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/9131187.jpg</image>
246
+ <image size="large">http://userserve-ak.last.fm/serve/126/9131187.jpg</image>
247
+ </track>
248
+ <track>
249
+ <name>What Is He Thinking?</name>
250
+ <playcount>9</playcount>
251
+ <tagcount></tagcount>
252
+ <mbid></mbid>
253
+ <url>http://www.last.fm/music/The+Streets/_/What+Is+He+Thinking%3F</url>
254
+ <streamable fulltrack="0">1</streamable>
255
+ <artist>
256
+ <name>The Streets</name>
257
+ <mbid>6f607087-9c46-4bb2-a884-e4efc764554c</mbid>
258
+ <url>http://www.last.fm/music/The+Streets</url>
259
+ </artist>
260
+ <image size="small">http://userserve-ak.last.fm/serve/34s/12623177.jpg</image>
261
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/12623177.jpg</image>
262
+ <image size="large">http://userserve-ak.last.fm/serve/126/12623177.jpg</image>
263
+ </track>
264
+ <track>
265
+ <name>Square One</name>
266
+ <playcount>9</playcount>
267
+ <tagcount></tagcount>
268
+ <mbid></mbid>
269
+ <url>http://www.last.fm/music/Coldplay/_/Square+One</url>
270
+ <streamable fulltrack="0">1</streamable>
271
+ <artist>
272
+ <name>Coldplay</name>
273
+ <mbid>cc197bad-dc9c-440d-a5b5-d52ba2e14234</mbid>
274
+ <url>http://www.last.fm/music/Coldplay</url>
275
+ </artist>
276
+ <image size="small">http://images.amazon.com/images/P/B0006L16N8.01.MZZZZZZZ.jpg</image>
277
+ <image size="medium">http://images.amazon.com/images/P/B0006L16N8.01.MZZZZZZZ.jpg</image>
278
+ <image size="large">http://images.amazon.com/images/P/B0006L16N8.01.MZZZZZZZ.jpg</image>
279
+ </track>
280
+ <track>
281
+ <name>Soldier's Poem</name>
282
+ <playcount>9</playcount>
283
+ <tagcount></tagcount>
284
+ <mbid></mbid>
285
+ <url>http://www.last.fm/music/Muse/_/Soldier%27s+Poem</url>
286
+ <streamable fulltrack="0">1</streamable>
287
+ <artist>
288
+ <name>Muse</name>
289
+ <mbid>9c9f1380-2516-4fc9-a3e6-f9f61941d090</mbid>
290
+ <url>http://www.last.fm/music/Muse</url>
291
+ </artist>
292
+ <image size="small">http://userserve-ak.last.fm/serve/34s/8855843.jpg</image>
293
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/8855843.jpg</image>
294
+ <image size="large">http://userserve-ak.last.fm/serve/126/8855843.jpg</image>
295
+ </track>
296
+ <track>
297
+ <name>It's Too Late</name>
298
+ <playcount>9</playcount>
299
+ <tagcount></tagcount>
300
+ <mbid></mbid>
301
+ <url>http://www.last.fm/music/The+Streets/_/It%27s+Too+Late</url>
302
+ <streamable fulltrack="0">1</streamable>
303
+ <artist>
304
+ <name>The Streets</name>
305
+ <mbid>6f607087-9c46-4bb2-a884-e4efc764554c</mbid>
306
+ <url>http://www.last.fm/music/The+Streets</url>
307
+ </artist>
308
+ <image size="small">http://userserve-ak.last.fm/serve/34s/8594953.jpg</image>
309
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/8594953.jpg</image>
310
+ <image size="large">http://userserve-ak.last.fm/serve/126/8594953.jpg</image>
311
+ </track>
312
+ <track>
313
+ <name>All Goes Out the Window</name>
314
+ <playcount>8</playcount>
315
+ <tagcount></tagcount>
316
+ <mbid></mbid>
317
+ <url>http://www.last.fm/music/The+Streets/_/All+Goes+Out+the+Window</url>
318
+ <streamable fulltrack="0">1</streamable>
319
+ <artist>
320
+ <name>The Streets</name>
321
+ <mbid>6f607087-9c46-4bb2-a884-e4efc764554c</mbid>
322
+ <url>http://www.last.fm/music/The+Streets</url>
323
+ </artist>
324
+ <image size="small">http://userserve-ak.last.fm/serve/34s/8790429.jpg</image>
325
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/8790429.jpg</image>
326
+ <image size="large">http://userserve-ak.last.fm/serve/126/8790429.jpg</image>
327
+ </track>
328
+ <track>
329
+ <name>Don't Stay</name>
330
+ <playcount>8</playcount>
331
+ <tagcount></tagcount>
332
+ <mbid></mbid>
333
+ <url>http://www.last.fm/music/Linkin+Park/_/Don%27t+Stay</url>
334
+ <streamable fulltrack="0">1</streamable>
335
+ <artist>
336
+ <name>Linkin Park</name>
337
+ <mbid>f59c5520-5f46-4d2c-b2c4-822eabf53419</mbid>
338
+ <url>http://www.last.fm/music/Linkin+Park</url>
339
+ </artist>
340
+ <image size="small">http://userserve-ak.last.fm/serve/34s/8641895.jpg</image>
341
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/8641895.jpg</image>
342
+ <image size="large">http://userserve-ak.last.fm/serve/126/8641895.jpg</image>
343
+ </track>
344
+ <track>
345
+ <name>The World Is Black</name>
346
+ <playcount>8</playcount>
347
+ <tagcount></tagcount>
348
+ <mbid></mbid>
349
+ <url>http://www.last.fm/music/Good+Charlotte/_/The+World+Is+Black</url>
350
+ <streamable fulltrack="0">1</streamable>
351
+ <artist>
352
+ <name>Good Charlotte</name>
353
+ <mbid>b267ca80-034e-4dc1-9ed4-ec45f1fed41d</mbid>
354
+ <url>http://www.last.fm/music/Good+Charlotte</url>
355
+ </artist>
356
+ <image size="small">http://userserve-ak.last.fm/serve/34s/19445721.jpg</image>
357
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/19445721.jpg</image>
358
+ <image size="large">http://userserve-ak.last.fm/serve/126/19445721.jpg</image>
359
+ </track>
360
+ <track>
361
+ <name>Exitlude</name>
362
+ <playcount>8</playcount>
363
+ <tagcount></tagcount>
364
+ <mbid></mbid>
365
+ <url>http://www.last.fm/music/The+Killers/_/Exitlude</url>
366
+ <streamable fulltrack="1">1</streamable>
367
+ <artist>
368
+ <name>The Killers</name>
369
+ <mbid>95e1ead9-4d31-4808-a7ac-32c3614c116b</mbid>
370
+ <url>http://www.last.fm/music/The+Killers</url>
371
+ </artist>
372
+ <image size="small">http://userserve-ak.last.fm/serve/34s/9192209.jpg</image>
373
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/9192209.jpg</image>
374
+ <image size="large">http://userserve-ak.last.fm/serve/126/9192209.jpg</image>
375
+ </track>
376
+ <track>
377
+ <name>Bonkers</name>
378
+ <playcount>8</playcount>
379
+ <tagcount></tagcount>
380
+ <mbid></mbid>
381
+ <url>http://www.last.fm/music/Dizzee%2BRascal%2B%2526%2BArmand%2BVan%2BHelden/_/Bonkers</url>
382
+ <streamable fulltrack="0">0</streamable>
383
+ <artist>
384
+ <name>Dizzee Rascal &amp; Armand Van Helden</name>
385
+ <mbid></mbid>
386
+ <url>http://www.last.fm/music/Dizzee%2BRascal%2B%2526%2BArmand%2BVan%2BHelden</url>
387
+ </artist>
388
+ </track>
389
+ <track>
390
+ <name>Numb</name>
391
+ <playcount>8</playcount>
392
+ <tagcount></tagcount>
393
+ <mbid></mbid>
394
+ <url>http://www.last.fm/music/Linkin+Park/_/Numb</url>
395
+ <streamable fulltrack="0">1</streamable>
396
+ <artist>
397
+ <name>Linkin Park</name>
398
+ <mbid>f59c5520-5f46-4d2c-b2c4-822eabf53419</mbid>
399
+ <url>http://www.last.fm/music/Linkin+Park</url>
400
+ </artist>
401
+ <image size="small">http://userserve-ak.last.fm/serve/34s/8641895.jpg</image>
402
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/8641895.jpg</image>
403
+ <image size="large">http://userserve-ak.last.fm/serve/126/8641895.jpg</image>
404
+ </track>
405
+ <track>
406
+ <name>In the End</name>
407
+ <playcount>8</playcount>
408
+ <tagcount></tagcount>
409
+ <mbid></mbid>
410
+ <url>http://www.last.fm/music/Linkin+Park/_/In+the+End</url>
411
+ <streamable fulltrack="0">1</streamable>
412
+ <artist>
413
+ <name>Linkin Park</name>
414
+ <mbid>f59c5520-5f46-4d2c-b2c4-822eabf53419</mbid>
415
+ <url>http://www.last.fm/music/Linkin+Park</url>
416
+ </artist>
417
+ <image size="small">http://userserve-ak.last.fm/serve/34s/8591413.jpg</image>
418
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/8591413.jpg</image>
419
+ <image size="large">http://userserve-ak.last.fm/serve/126/8591413.jpg</image>
420
+ </track>
421
+ <track>
422
+ <name>Lithium</name>
423
+ <playcount>8</playcount>
424
+ <tagcount></tagcount>
425
+ <mbid></mbid>
426
+ <url>http://www.last.fm/music/Nirvana/_/Lithium</url>
427
+ <streamable fulltrack="1">1</streamable>
428
+ <artist>
429
+ <name>Nirvana</name>
430
+ <mbid>5b11f4ce-a62d-471e-81fc-a69a8278c7da</mbid>
431
+ <url>http://www.last.fm/music/Nirvana</url>
432
+ </artist>
433
+ <image size="small">http://userserve-ak.last.fm/serve/34s/8590151.jpg</image>
434
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/8590151.jpg</image>
435
+ <image size="large">http://userserve-ak.last.fm/serve/126/8590151.jpg</image>
436
+ </track>
437
+ <track>
438
+ <name>Bist du das</name>
439
+ <playcount>8</playcount>
440
+ <tagcount></tagcount>
441
+ <mbid></mbid>
442
+ <url>http://www.last.fm/music/Juli/_/Bist+du+das</url>
443
+ <streamable fulltrack="0">0</streamable>
444
+ <artist>
445
+ <name>Juli</name>
446
+ <mbid>9a593aff-62c9-40bd-9631-1697798adb63</mbid>
447
+ <url>http://www.last.fm/music/Juli</url>
448
+ </artist>
449
+ </track>
450
+ <track>
451
+ <name>Savior</name>
452
+ <playcount>8</playcount>
453
+ <tagcount></tagcount>
454
+ <mbid></mbid>
455
+ <url>http://www.last.fm/music/Red+Hot+Chili+Peppers/_/Savior</url>
456
+ <streamable fulltrack="0">1</streamable>
457
+ <artist>
458
+ <name>Red Hot Chili Peppers</name>
459
+ <mbid>8bfac288-ccc5-448d-9573-c33ea2aa5c30</mbid>
460
+ <url>http://www.last.fm/music/Red+Hot+Chili+Peppers</url>
461
+ </artist>
462
+ <image size="small">http://userserve-ak.last.fm/serve/34s/8593509.jpg</image>
463
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/8593509.jpg</image>
464
+ <image size="large">http://userserve-ak.last.fm/serve/126/8593509.jpg</image>
465
+ </track>
466
+ <track>
467
+ <name>Rank-N-File</name>
468
+ <playcount>8</playcount>
469
+ <tagcount></tagcount>
470
+ <mbid></mbid>
471
+ <url>http://www.last.fm/music/Anti-Flag/_/Rank-N-File</url>
472
+ <streamable fulltrack="0">1</streamable>
473
+ <artist>
474
+ <name>Anti-Flag</name>
475
+ <mbid>b88f21a7-a1b9-48fd-bbc4-ae758026f17f</mbid>
476
+ <url>http://www.last.fm/music/Anti-Flag</url>
477
+ </artist>
478
+ <image size="small">http://images.amazon.com/images/P/B0000DH29Y.01.THUMBZZZ.jpg</image>
479
+ <image size="medium">http://images.amazon.com/images/P/B0000DH29Y.01.MZZZZZZZ.jpg</image>
480
+ <image size="large">http://images.amazon.com/images/P/B0000DH29Y.01.LZZZZZZZ.jpg</image>
481
+ </track>
482
+ <track>
483
+ <name>Was ich behaupten kann</name>
484
+ <playcount>8</playcount>
485
+ <tagcount></tagcount>
486
+ <mbid></mbid>
487
+ <url>http://www.last.fm/music/Sportfreunde+Stiller/_/Was+ich+behaupten+kann</url>
488
+ <streamable fulltrack="1">1</streamable>
489
+ <artist>
490
+ <name>Sportfreunde Stiller</name>
491
+ <mbid>35581de7-591f-424f-9c64-7b22fd45605e</mbid>
492
+ <url>http://www.last.fm/music/Sportfreunde+Stiller</url>
493
+ </artist>
494
+ <image size="small">http://userserve-ak.last.fm/serve/34s/8717053.jpg</image>
495
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/8717053.jpg</image>
496
+ <image size="large">http://userserve-ak.last.fm/serve/126/8717053.jpg</image>
497
+ </track>
498
+ <track>
499
+ <name>Tearing Down the Borders</name>
500
+ <playcount>8</playcount>
501
+ <tagcount></tagcount>
502
+ <mbid></mbid>
503
+ <url>http://www.last.fm/music/Anti-Flag/_/Tearing+Down+the+Borders</url>
504
+ <streamable fulltrack="0">1</streamable>
505
+ <artist>
506
+ <name>Anti-Flag</name>
507
+ <mbid>b88f21a7-a1b9-48fd-bbc4-ae758026f17f</mbid>
508
+ <url>http://www.last.fm/music/Anti-Flag</url>
509
+ </artist>
510
+ <image size="small">http://images.amazon.com/images/P/B0000DH29Y.01.THUMBZZZ.jpg</image>
511
+ <image size="medium">http://images.amazon.com/images/P/B0000DH29Y.01.MZZZZZZZ.jpg</image>
512
+ <image size="large">http://images.amazon.com/images/P/B0000DH29Y.01.LZZZZZZZ.jpg</image>
513
+ </track>
514
+ <track>
515
+ <name>1. Wahl / [untitled]</name>
516
+ <playcount>8</playcount>
517
+ <tagcount></tagcount>
518
+ <mbid></mbid>
519
+ <url>http://www.last.fm/music/Sportfreunde+Stiller/_/1.%2BWahl%2B%252F%2B%255Buntitled%255D</url>
520
+ <streamable fulltrack="0">0</streamable>
521
+ <artist>
522
+ <name>Sportfreunde Stiller</name>
523
+ <mbid>35581de7-591f-424f-9c64-7b22fd45605e</mbid>
524
+ <url>http://www.last.fm/music/Sportfreunde+Stiller</url>
525
+ </artist>
526
+ </track>
527
+ <track>
528
+ <name>X&amp;Y</name>
529
+ <playcount>8</playcount>
530
+ <tagcount></tagcount>
531
+ <mbid></mbid>
532
+ <url>http://www.last.fm/music/Coldplay/_/X%2526Y</url>
533
+ <streamable fulltrack="0">0</streamable>
534
+ <artist>
535
+ <name>Coldplay</name>
536
+ <mbid>cc197bad-dc9c-440d-a5b5-d52ba2e14234</mbid>
537
+ <url>http://www.last.fm/music/Coldplay</url>
538
+ </artist>
539
+ <image size="small">http://images.amazon.com/images/P/B0006L16N8.01.MZZZZZZZ.jpg</image>
540
+ <image size="medium">http://images.amazon.com/images/P/B0006L16N8.01.MZZZZZZZ.jpg</image>
541
+ <image size="large">http://images.amazon.com/images/P/B0006L16N8.01.MZZZZZZZ.jpg</image>
542
+ </track>
543
+ <track>
544
+ <name>Guten Tag</name>
545
+ <playcount>8</playcount>
546
+ <tagcount></tagcount>
547
+ <mbid></mbid>
548
+ <url>http://www.last.fm/music/Wir+sind+Helden/_/Guten+Tag</url>
549
+ <streamable fulltrack="0">1</streamable>
550
+ <artist>
551
+ <name>Wir sind Helden</name>
552
+ <mbid>908fedf4-548a-430f-b806-38fca9507dc4</mbid>
553
+ <url>http://www.last.fm/music/Wir+sind+Helden</url>
554
+ </artist>
555
+ <image size="small">http://userserve-ak.last.fm/serve/34s/15183527.jpg</image>
556
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/15183527.jpg</image>
557
+ <image size="large">http://userserve-ak.last.fm/serve/126/15183527.jpg</image>
558
+ </track>
559
+ <track>
560
+ <name>What a Waster</name>
561
+ <playcount>8</playcount>
562
+ <tagcount></tagcount>
563
+ <mbid></mbid>
564
+ <url>http://www.last.fm/music/The+Libertines/_/What+a+Waster</url>
565
+ <streamable fulltrack="0">0</streamable>
566
+ <artist>
567
+ <name>The Libertines</name>
568
+ <mbid>82b304c0-7da4-45d3-896a-0767c7ae1141</mbid>
569
+ <url>http://www.last.fm/music/The+Libertines</url>
570
+ </artist>
571
+ <image size="small">http://userserve-ak.last.fm/serve/34s/8634421.jpg</image>
572
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/8634421.jpg</image>
573
+ <image size="large">http://userserve-ak.last.fm/serve/126/8634421.jpg</image>
574
+ </track>
575
+ <track>
576
+ <name>Goodbye Logik</name>
577
+ <playcount>8</playcount>
578
+ <tagcount></tagcount>
579
+ <mbid></mbid>
580
+ <url>http://www.last.fm/music/Madsen/_/Goodbye+Logik</url>
581
+ <streamable fulltrack="0">0</streamable>
582
+ <artist>
583
+ <name>Madsen</name>
584
+ <mbid>8a0c3b86-af55-42d2-85b9-6372e7430986</mbid>
585
+ <url>http://www.last.fm/music/Madsen</url>
586
+ </artist>
587
+ </track>
588
+ <track>
589
+ <name>The Hives-Introduce the Metric System in Time</name>
590
+ <playcount>8</playcount>
591
+ <tagcount></tagcount>
592
+ <mbid></mbid>
593
+ <url>http://www.last.fm/music/The+Hives/_/The+Hives-Introduce+the+Metric+System+in+Time</url>
594
+ <streamable fulltrack="0">1</streamable>
595
+ <artist>
596
+ <name>The Hives</name>
597
+ <mbid>487bfd74-71bf-46dd-b89c-80b7a0f06f2f</mbid>
598
+ <url>http://www.last.fm/music/The+Hives</url>
599
+ </artist>
600
+ <image size="small">http://userserve-ak.last.fm/serve/34s/25888215.png</image>
601
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/25888215.png</image>
602
+ <image size="large">http://userserve-ak.last.fm/serve/126/25888215.png</image>
603
+ </track>
604
+ <track>
605
+ <name>Der Fortschritt</name>
606
+ <playcount>8</playcount>
607
+ <tagcount></tagcount>
608
+ <mbid></mbid>
609
+ <url>http://www.last.fm/music/Sportfreunde+Stiller/_/Der+Fortschritt</url>
610
+ <streamable fulltrack="1">1</streamable>
611
+ <artist>
612
+ <name>Sportfreunde Stiller</name>
613
+ <mbid>35581de7-591f-424f-9c64-7b22fd45605e</mbid>
614
+ <url>http://www.last.fm/music/Sportfreunde+Stiller</url>
615
+ </artist>
616
+ <image size="small">http://userserve-ak.last.fm/serve/34s/8634899.jpg</image>
617
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/8634899.jpg</image>
618
+ <image size="large">http://userserve-ak.last.fm/serve/126/8634899.jpg</image>
619
+ </track>
620
+ <track>
621
+ <name>&quot;The Take Over, the Breaks Over&quot;</name>
622
+ <playcount>8</playcount>
623
+ <tagcount></tagcount>
624
+ <mbid></mbid>
625
+ <url>http://www.last.fm/music/Fall+Out+Boy/_/%22The+Take+Over%2C+the+Breaks+Over%22</url>
626
+ <streamable fulltrack="1">1</streamable>
627
+ <artist>
628
+ <name>Fall Out Boy</name>
629
+ <mbid>516cef4d-0718-4007-9939-f9b38af3f784</mbid>
630
+ <url>http://www.last.fm/music/Fall+Out+Boy</url>
631
+ </artist>
632
+ <image size="small">http://userserve-ak.last.fm/serve/34s/9104309.jpg</image>
633
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/9104309.jpg</image>
634
+ <image size="large">http://userserve-ak.last.fm/serve/126/9104309.jpg</image>
635
+ </track>
636
+ <track>
637
+ <name>Dry Your Eyes</name>
638
+ <playcount>8</playcount>
639
+ <tagcount></tagcount>
640
+ <mbid></mbid>
641
+ <url>http://www.last.fm/music/The+Streets/_/Dry+Your+Eyes</url>
642
+ <streamable fulltrack="0">1</streamable>
643
+ <artist>
644
+ <name>The Streets</name>
645
+ <mbid>6f607087-9c46-4bb2-a884-e4efc764554c</mbid>
646
+ <url>http://www.last.fm/music/The+Streets</url>
647
+ </artist>
648
+ <image size="small">http://userserve-ak.last.fm/serve/34s/12623177.jpg</image>
649
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/12623177.jpg</image>
650
+ <image size="large">http://userserve-ak.last.fm/serve/126/12623177.jpg</image>
651
+ </track>
652
+ <track>
653
+ <name>Ich komme nicht mit</name>
654
+ <playcount>8</playcount>
655
+ <tagcount></tagcount>
656
+ <mbid></mbid>
657
+ <url>http://www.last.fm/music/Madsen/_/Ich+komme+nicht+mit</url>
658
+ <streamable fulltrack="1">1</streamable>
659
+ <artist>
660
+ <name>Madsen</name>
661
+ <mbid>8a0c3b86-af55-42d2-85b9-6372e7430986</mbid>
662
+ <url>http://www.last.fm/music/Madsen</url>
663
+ </artist>
664
+ <image size="small">http://userserve-ak.last.fm/serve/34s/9998507.jpg</image>
665
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/9998507.jpg</image>
666
+ <image size="large">http://userserve-ak.last.fm/serve/126/9998507.jpg</image>
667
+ </track>
668
+ <track>
669
+ <name>Die meisten meiner Freunde</name>
670
+ <playcount>8</playcount>
671
+ <tagcount></tagcount>
672
+ <mbid></mbid>
673
+ <url>http://www.last.fm/music/Fettes+Brot/_/Die+meisten+meiner+Freunde</url>
674
+ <streamable fulltrack="0">0</streamable>
675
+ <artist>
676
+ <name>Fettes Brot</name>
677
+ <mbid>733e7372-5400-4c79-9059-33e2b2262d01</mbid>
678
+ <url>http://www.last.fm/music/Fettes+Brot</url>
679
+ </artist>
680
+ </track>
681
+ <track>
682
+ <name>Josie</name>
683
+ <playcount>8</playcount>
684
+ <tagcount></tagcount>
685
+ <mbid></mbid>
686
+ <url>http://www.last.fm/music/blink-182/_/Josie</url>
687
+ <streamable fulltrack="1">1</streamable>
688
+ <artist>
689
+ <name>blink-182</name>
690
+ <mbid>0743b15a-3c32-48c8-ad58-cb325350befa</mbid>
691
+ <url>http://www.last.fm/music/blink-182</url>
692
+ </artist>
693
+ <image size="small">http://userserve-ak.last.fm/serve/34s/8634777.jpg</image>
694
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/8634777.jpg</image>
695
+ <image size="large">http://userserve-ak.last.fm/serve/126/8634777.jpg</image>
696
+ </track>
697
+ <track>
698
+ <name>Stay Loose</name>
699
+ <playcount>8</playcount>
700
+ <tagcount></tagcount>
701
+ <mbid></mbid>
702
+ <url>http://www.last.fm/music/Belle+and+Sebastian/_/Stay+Loose</url>
703
+ <streamable fulltrack="0">0</streamable>
704
+ <artist>
705
+ <name>Belle and Sebastian</name>
706
+ <mbid>e5c7b94f-e264-473c-bb0f-37c85d4d5c70</mbid>
707
+ <url>http://www.last.fm/music/Belle+and+Sebastian</url>
708
+ </artist>
709
+ <image size="small">http://images.amazon.com/images/P/B0000CBHQ1.01.THUMBZZZ.jpg</image>
710
+ <image size="medium">http://images.amazon.com/images/P/B0000CBHQ1.01.MZZZZZZZ.jpg</image>
711
+ <image size="large">http://images.amazon.com/images/P/B0000CBHQ1.01.LZZZZZZZ.jpg</image>
712
+ </track>
713
+ <track>
714
+ <name>You Were the Last High</name>
715
+ <playcount>8</playcount>
716
+ <tagcount></tagcount>
717
+ <mbid></mbid>
718
+ <url>http://www.last.fm/music/The+Dandy+Warhols/_/You+Were+the+Last+High</url>
719
+ <streamable fulltrack="0">1</streamable>
720
+ <artist>
721
+ <name>The Dandy Warhols</name>
722
+ <mbid>5f572b31-8fd9-45ae-9beb-358c98d839df</mbid>
723
+ <url>http://www.last.fm/music/The+Dandy+Warhols</url>
724
+ </artist>
725
+ <image size="small">http://www.7digital.com/shops/assets/sleeveart/0724355262622_182.JPEG</image>
726
+ <image size="medium">http://www.7digital.com/shops/assets/sleeveart/0724355262622_182.JPEG</image>
727
+ <image size="large">http://www.7digital.com/shops/assets/sleeveart/0724355262622_182.JPEG</image>
728
+ </track>
729
+ <track>
730
+ <name>Try Honesty</name>
731
+ <playcount>8</playcount>
732
+ <tagcount></tagcount>
733
+ <mbid></mbid>
734
+ <url>http://www.last.fm/music/Billy+Talent/_/Try+Honesty</url>
735
+ <streamable fulltrack="0">1</streamable>
736
+ <artist>
737
+ <name>Billy Talent</name>
738
+ <mbid>fd429857-5ace-4609-ae54-1502c3bdac11</mbid>
739
+ <url>http://www.last.fm/music/Billy+Talent</url>
740
+ </artist>
741
+ <image size="small">http://images.amazon.com/images/P/B0009XE9PA.01.MZZZZZZZ.jpg</image>
742
+ <image size="medium">http://images.amazon.com/images/P/B0009XE9PA.01.MZZZZZZZ.jpg</image>
743
+ <image size="large">http://images.amazon.com/images/P/B0009XE9PA.01.MZZZZZZZ.jpg</image>
744
+ </track>
745
+ <track>
746
+ <name>Mein Therapeut &amp; ich</name>
747
+ <playcount>8</playcount>
748
+ <tagcount></tagcount>
749
+ <mbid></mbid>
750
+ <url>http://www.last.fm/music/Madsen/_/Mein%2BTherapeut%2B%2526%2Bich</url>
751
+ <streamable fulltrack="0">0</streamable>
752
+ <artist>
753
+ <name>Madsen</name>
754
+ <mbid>8a0c3b86-af55-42d2-85b9-6372e7430986</mbid>
755
+ <url>http://www.last.fm/music/Madsen</url>
756
+ </artist>
757
+ </track>
758
+ <track>
759
+ <name>So This Is Great Britain?</name>
760
+ <playcount>8</playcount>
761
+ <tagcount></tagcount>
762
+ <mbid></mbid>
763
+ <url>http://www.last.fm/music/The+Holloways/_/So+This+Is+Great+Britain%3F</url>
764
+ <streamable fulltrack="0">0</streamable>
765
+ <artist>
766
+ <name>The Holloways</name>
767
+ <mbid>ed0c90ee-4cc0-4928-8f61-93dbd7869eb9</mbid>
768
+ <url>http://www.last.fm/music/The+Holloways</url>
769
+ </artist>
770
+ </track>
771
+ </tracks></lfm>