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,762 @@
1
+ <?xml version="1.0" encoding="utf-8"?>
2
+ <lfm status="ok">
3
+ <tracks user="xhochy" page="13" perPage="50" totalPages="34">
4
+ <track>
5
+ <name>Lok auf 2 Beinen</name>
6
+ <playcount>5</playcount>
7
+ <tagcount></tagcount>
8
+ <mbid></mbid>
9
+ <url>http://www.last.fm/music/Peter+Fox/_/Lok+auf+2+Beinen</url>
10
+ <streamable fulltrack="0">0</streamable>
11
+ <artist>
12
+ <name>Peter Fox</name>
13
+ <mbid></mbid>
14
+ <url>http://www.last.fm/music/Peter+Fox</url>
15
+ </artist>
16
+ </track>
17
+ <track>
18
+ <name>Du erkennst mich nicht wieder</name>
19
+ <playcount>5</playcount>
20
+ <tagcount></tagcount>
21
+ <mbid></mbid>
22
+ <url>http://www.last.fm/music/Wir+sind+Helden/_/Du+erkennst+mich+nicht+wieder</url>
23
+ <streamable fulltrack="0">1</streamable>
24
+ <artist>
25
+ <name>Wir sind Helden</name>
26
+ <mbid>908fedf4-548a-430f-b806-38fca9507dc4</mbid>
27
+ <url>http://www.last.fm/music/Wir+sind+Helden</url>
28
+ </artist>
29
+ <image size="small">http://userserve-ak.last.fm/serve/34s/15183527.jpg</image>
30
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/15183527.jpg</image>
31
+ <image size="large">http://userserve-ak.last.fm/serve/126/15183527.jpg</image>
32
+ </track>
33
+ <track>
34
+ <name>Rüssel an Schwanz</name>
35
+ <playcount>5</playcount>
36
+ <tagcount></tagcount>
37
+ <mbid></mbid>
38
+ <url>http://www.last.fm/music/Wir+sind+Helden/_/R%C3%BCssel+an+Schwanz</url>
39
+ <streamable fulltrack="0">1</streamable>
40
+ <artist>
41
+ <name>Wir sind Helden</name>
42
+ <mbid>908fedf4-548a-430f-b806-38fca9507dc4</mbid>
43
+ <url>http://www.last.fm/music/Wir+sind+Helden</url>
44
+ </artist>
45
+ <image size="small">http://userserve-ak.last.fm/serve/34s/15183527.jpg</image>
46
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/15183527.jpg</image>
47
+ <image size="large">http://userserve-ak.last.fm/serve/126/15183527.jpg</image>
48
+ </track>
49
+ <track>
50
+ <name>Automatic Schmuck</name>
51
+ <playcount>5</playcount>
52
+ <tagcount></tagcount>
53
+ <mbid></mbid>
54
+ <url>http://www.last.fm/music/The+Hives/_/Automatic+Schmuck</url>
55
+ <streamable fulltrack="0">1</streamable>
56
+ <artist>
57
+ <name>The Hives</name>
58
+ <mbid>487bfd74-71bf-46dd-b89c-80b7a0f06f2f</mbid>
59
+ <url>http://www.last.fm/music/The+Hives</url>
60
+ </artist>
61
+ <image size="small">http://userserve-ak.last.fm/serve/34s/8594935.jpg</image>
62
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/8594935.jpg</image>
63
+ <image size="large">http://userserve-ak.last.fm/serve/126/8594935.jpg</image>
64
+ </track>
65
+ <track>
66
+ <name>A Whisper</name>
67
+ <playcount>5</playcount>
68
+ <tagcount></tagcount>
69
+ <mbid></mbid>
70
+ <url>http://www.last.fm/music/Coldplay/_/A+Whisper</url>
71
+ <streamable fulltrack="0">1</streamable>
72
+ <artist>
73
+ <name>Coldplay</name>
74
+ <mbid>cc197bad-dc9c-440d-a5b5-d52ba2e14234</mbid>
75
+ <url>http://www.last.fm/music/Coldplay</url>
76
+ </artist>
77
+ <image size="small">http://userserve-ak.last.fm/serve/34s/14245401.jpg</image>
78
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/14245401.jpg</image>
79
+ <image size="large">http://userserve-ak.last.fm/serve/126/14245401.jpg</image>
80
+ </track>
81
+ <track>
82
+ <name>Spor 13</name>
83
+ <playcount>5</playcount>
84
+ <tagcount></tagcount>
85
+ <mbid></mbid>
86
+ <url>http://www.last.fm/music/Billy+Talent/_/Spor+13</url>
87
+ <streamable fulltrack="0">0</streamable>
88
+ <artist>
89
+ <name>Billy Talent</name>
90
+ <mbid>fd429857-5ace-4609-ae54-1502c3bdac11</mbid>
91
+ <url>http://www.last.fm/music/Billy+Talent</url>
92
+ </artist>
93
+ </track>
94
+ <track>
95
+ <name>Quietly</name>
96
+ <playcount>5</playcount>
97
+ <tagcount></tagcount>
98
+ <mbid></mbid>
99
+ <url>http://www.last.fm/music/Guano+Apes/_/Quietly</url>
100
+ <streamable fulltrack="0">1</streamable>
101
+ <artist>
102
+ <name>Guano Apes</name>
103
+ <mbid>66da25f9-1534-4dd1-b88c-718bc24e1ccd</mbid>
104
+ <url>http://www.last.fm/music/Guano+Apes</url>
105
+ </artist>
106
+ <image size="small">http://userserve-ak.last.fm/serve/34s/22670585.jpg</image>
107
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/22670585.jpg</image>
108
+ <image size="large">http://userserve-ak.last.fm/serve/126/22670585.jpg</image>
109
+ </track>
110
+ <track>
111
+ <name>Ein neuer Tag</name>
112
+ <playcount>5</playcount>
113
+ <tagcount></tagcount>
114
+ <mbid></mbid>
115
+ <url>http://www.last.fm/music/Juli/_/Ein+neuer+Tag</url>
116
+ <streamable fulltrack="1">1</streamable>
117
+ <artist>
118
+ <name>Juli</name>
119
+ <mbid>9a593aff-62c9-40bd-9631-1697798adb63</mbid>
120
+ <url>http://www.last.fm/music/Juli</url>
121
+ </artist>
122
+ <image size="small">http://userserve-ak.last.fm/serve/34s/10298971.jpg</image>
123
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/10298971.jpg</image>
124
+ <image size="large">http://userserve-ak.last.fm/serve/126/10298971.jpg</image>
125
+ </track>
126
+ <track>
127
+ <name>When You Don't Control Your Government People Want to Kill You</name>
128
+ <playcount>5</playcount>
129
+ <tagcount></tagcount>
130
+ <mbid></mbid>
131
+ <url>http://www.last.fm/music/Anti-Flag/_/When+You+Don%27t+Control+Your+Government+People+Want+to+Kill+You</url>
132
+ <streamable fulltrack="0">1</streamable>
133
+ <artist>
134
+ <name>Anti-Flag</name>
135
+ <mbid>b88f21a7-a1b9-48fd-bbc4-ae758026f17f</mbid>
136
+ <url>http://www.last.fm/music/Anti-Flag</url>
137
+ </artist>
138
+ <image size="small">http://images.amazon.com/images/P/B0000DH29Y.01.THUMBZZZ.jpg</image>
139
+ <image size="medium">http://images.amazon.com/images/P/B0000DH29Y.01.MZZZZZZZ.jpg</image>
140
+ <image size="large">http://images.amazon.com/images/P/B0000DH29Y.01.LZZZZZZZ.jpg</image>
141
+ </track>
142
+ <track>
143
+ <name>Ein Produkt</name>
144
+ <playcount>5</playcount>
145
+ <tagcount></tagcount>
146
+ <mbid></mbid>
147
+ <url>http://www.last.fm/music/Madsen/_/Ein+Produkt</url>
148
+ <streamable fulltrack="1">1</streamable>
149
+ <artist>
150
+ <name>Madsen</name>
151
+ <mbid>8a0c3b86-af55-42d2-85b9-6372e7430986</mbid>
152
+ <url>http://www.last.fm/music/Madsen</url>
153
+ </artist>
154
+ <image size="small">http://userserve-ak.last.fm/serve/34s/9998507.jpg</image>
155
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/9998507.jpg</image>
156
+ <image size="large">http://userserve-ak.last.fm/serve/126/9998507.jpg</image>
157
+ </track>
158
+ <track>
159
+ <name>The Pretender</name>
160
+ <playcount>5</playcount>
161
+ <tagcount></tagcount>
162
+ <mbid></mbid>
163
+ <url>http://www.last.fm/music/Foo+Fighters/_/The+Pretender</url>
164
+ <streamable fulltrack="0">1</streamable>
165
+ <artist>
166
+ <name>Foo Fighters</name>
167
+ <mbid>67f66c07-6e61-4026-ade5-7e782fad3a5d</mbid>
168
+ <url>http://www.last.fm/music/Foo+Fighters</url>
169
+ </artist>
170
+ <image size="small">http://userserve-ak.last.fm/serve/34s/23313761.jpg</image>
171
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/23313761.jpg</image>
172
+ <image size="large">http://userserve-ak.last.fm/serve/126/23313761.jpg</image>
173
+ </track>
174
+ <track>
175
+ <name>A Dustland Fairytale</name>
176
+ <playcount>5</playcount>
177
+ <tagcount></tagcount>
178
+ <mbid></mbid>
179
+ <url>http://www.last.fm/music/The+Killers/_/A+Dustland+Fairytale</url>
180
+ <streamable fulltrack="1">1</streamable>
181
+ <artist>
182
+ <name>The Killers</name>
183
+ <mbid>95e1ead9-4d31-4808-a7ac-32c3614c116b</mbid>
184
+ <url>http://www.last.fm/music/The+Killers</url>
185
+ </artist>
186
+ </track>
187
+ <track>
188
+ <name>OWOMOYELA eins live 2005</name>
189
+ <playcount>5</playcount>
190
+ <tagcount></tagcount>
191
+ <mbid></mbid>
192
+ <url>http://www.last.fm/music/Fettes+Brot/_/OWOMOYELA+eins+live+2005</url>
193
+ <streamable fulltrack="0">0</streamable>
194
+ <artist>
195
+ <name>Fettes Brot</name>
196
+ <mbid>733e7372-5400-4c79-9059-33e2b2262d01</mbid>
197
+ <url>http://www.last.fm/music/Fettes+Brot</url>
198
+ </artist>
199
+ </track>
200
+ <track>
201
+ <name>Middle Management</name>
202
+ <playcount>5</playcount>
203
+ <tagcount></tagcount>
204
+ <mbid></mbid>
205
+ <url>http://www.last.fm/music/Bishop+Allen/_/Middle+Management</url>
206
+ <streamable fulltrack="0">0</streamable>
207
+ <artist>
208
+ <name>Bishop Allen</name>
209
+ <mbid>1043a3a9-6722-4cdb-a28a-6acbad217b38</mbid>
210
+ <url>http://www.last.fm/music/Bishop+Allen</url>
211
+ </artist>
212
+ <image size="small">http://userserve-ak.last.fm/serve/34s/9724449.jpg</image>
213
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/9724449.jpg</image>
214
+ <image size="large">http://userserve-ak.last.fm/serve/126/9724449.jpg</image>
215
+ </track>
216
+ <track>
217
+ <name>Stay Positive</name>
218
+ <playcount>5</playcount>
219
+ <tagcount></tagcount>
220
+ <mbid></mbid>
221
+ <url>http://www.last.fm/music/The+Streets/_/Stay+Positive</url>
222
+ <streamable fulltrack="0">1</streamable>
223
+ <artist>
224
+ <name>The Streets</name>
225
+ <mbid>6f607087-9c46-4bb2-a884-e4efc764554c</mbid>
226
+ <url>http://www.last.fm/music/The+Streets</url>
227
+ </artist>
228
+ <image size="small">http://userserve-ak.last.fm/serve/34s/8594953.jpg</image>
229
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/8594953.jpg</image>
230
+ <image size="large">http://userserve-ak.last.fm/serve/126/8594953.jpg</image>
231
+ </track>
232
+ <track>
233
+ <name>Kingdom &amp; Glory</name>
234
+ <playcount>5</playcount>
235
+ <tagcount></tagcount>
236
+ <mbid></mbid>
237
+ <url>http://www.last.fm/music/Mando+Diao/_/Kingdom%2B%2526%2BGlory</url>
238
+ <streamable fulltrack="0">1</streamable>
239
+ <artist>
240
+ <name>Mando Diao</name>
241
+ <mbid>ea854cc1-13fc-4fd0-86a5-d2c7dba06764</mbid>
242
+ <url>http://www.last.fm/music/Mando+Diao</url>
243
+ </artist>
244
+ </track>
245
+ <track>
246
+ <name>Saturday Night</name>
247
+ <playcount>5</playcount>
248
+ <tagcount></tagcount>
249
+ <mbid></mbid>
250
+ <url>http://www.last.fm/music/Kaiser+Chiefs/_/Saturday+Night</url>
251
+ <streamable fulltrack="0">0</streamable>
252
+ <artist>
253
+ <name>Kaiser Chiefs</name>
254
+ <mbid>90218af4-4d58-4821-8d41-2ee295ebbe21</mbid>
255
+ <url>http://www.last.fm/music/Kaiser+Chiefs</url>
256
+ </artist>
257
+ <image size="small">http://userserve-ak.last.fm/serve/34s/8674107.jpg</image>
258
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/8674107.jpg</image>
259
+ <image size="large">http://userserve-ak.last.fm/serve/126/8674107.jpg</image>
260
+ </track>
261
+ <track>
262
+ <name>Papercut (Live from the BBC)</name>
263
+ <playcount>5</playcount>
264
+ <tagcount></tagcount>
265
+ <mbid></mbid>
266
+ <url>http://www.last.fm/music/Linkin+Park/_/Papercut+%28Live+from+the+BBC%29</url>
267
+ <streamable fulltrack="0">0</streamable>
268
+ <artist>
269
+ <name>Linkin Park</name>
270
+ <mbid>f59c5520-5f46-4d2c-b2c4-822eabf53419</mbid>
271
+ <url>http://www.last.fm/music/Linkin+Park</url>
272
+ </artist>
273
+ </track>
274
+ <track>
275
+ <name>All These Things That I've Done</name>
276
+ <playcount>5</playcount>
277
+ <tagcount></tagcount>
278
+ <mbid></mbid>
279
+ <url>http://www.last.fm/music/The+Killers/_/All+These+Things+That+I%27ve+Done</url>
280
+ <streamable fulltrack="1">1</streamable>
281
+ <artist>
282
+ <name>The Killers</name>
283
+ <mbid>95e1ead9-4d31-4808-a7ac-32c3614c116b</mbid>
284
+ <url>http://www.last.fm/music/The+Killers</url>
285
+ </artist>
286
+ <image size="small">http://userserve-ak.last.fm/serve/34s/8634917.jpg</image>
287
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/8634917.jpg</image>
288
+ <image size="large">http://userserve-ak.last.fm/serve/126/8634917.jpg</image>
289
+ </track>
290
+ <track>
291
+ <name>Torn on the Platform</name>
292
+ <playcount>5</playcount>
293
+ <tagcount></tagcount>
294
+ <mbid></mbid>
295
+ <url>http://www.last.fm/music/Jack+Pe%C3%B1ate/_/Torn+on+the+Platform</url>
296
+ <streamable fulltrack="0">0</streamable>
297
+ <artist>
298
+ <name>Jack Peñate</name>
299
+ <mbid>9b64cf5d-1f4a-45b5-a84a-5109a88f178f</mbid>
300
+ <url>http://www.last.fm/music/Jack+Pe%C3%B1ate</url>
301
+ </artist>
302
+ <image size="small">http://userserve-ak.last.fm/serve/34s/4534143.jpg</image>
303
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/4534143.jpg</image>
304
+ <image size="large">http://userserve-ak.last.fm/serve/126/4534143.jpg</image>
305
+ </track>
306
+ <track>
307
+ <name>Girls Who Play Guitars</name>
308
+ <playcount>5</playcount>
309
+ <tagcount></tagcount>
310
+ <mbid></mbid>
311
+ <url>http://www.last.fm/music/Max%C3%AFmo+Park/_/Girls+Who+Play+Guitars</url>
312
+ <streamable fulltrack="1">1</streamable>
313
+ <artist>
314
+ <name>Maxïmo Park</name>
315
+ <mbid>92e634a7-6023-4be8-be15-ebba822f5b34</mbid>
316
+ <url>http://www.last.fm/music/Max%C3%AFmo+Park</url>
317
+ </artist>
318
+ <image size="small">http://userserve-ak.last.fm/serve/34s/4534143.jpg</image>
319
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/4534143.jpg</image>
320
+ <image size="large">http://userserve-ak.last.fm/serve/126/4534143.jpg</image>
321
+ </track>
322
+ <track>
323
+ <name>Strawberry Swing</name>
324
+ <playcount>5</playcount>
325
+ <tagcount></tagcount>
326
+ <mbid></mbid>
327
+ <url>http://www.last.fm/music/Coldplay/_/Strawberry+Swing</url>
328
+ <streamable fulltrack="0">1</streamable>
329
+ <artist>
330
+ <name>Coldplay</name>
331
+ <mbid>cc197bad-dc9c-440d-a5b5-d52ba2e14234</mbid>
332
+ <url>http://www.last.fm/music/Coldplay</url>
333
+ </artist>
334
+ <image size="small">http://userserve-ak.last.fm/serve/34s/14349365.jpg</image>
335
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/14349365.jpg</image>
336
+ <image size="large">http://userserve-ak.last.fm/serve/126/14349365.jpg</image>
337
+ </track>
338
+ <track>
339
+ <name>Well That Was Easy</name>
340
+ <playcount>5</playcount>
341
+ <tagcount></tagcount>
342
+ <mbid></mbid>
343
+ <url>http://www.last.fm/music/Franz+Ferdinand/_/Well+That+Was+Easy</url>
344
+ <streamable fulltrack="0">1</streamable>
345
+ <artist>
346
+ <name>Franz Ferdinand</name>
347
+ <mbid>aa7a2827-f74b-473c-bd79-03d065835cf7</mbid>
348
+ <url>http://www.last.fm/music/Franz+Ferdinand</url>
349
+ </artist>
350
+ <image size="small">http://userserve-ak.last.fm/serve/34s/19883723.jpg</image>
351
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/19883723.jpg</image>
352
+ <image size="large">http://userserve-ak.last.fm/serve/126/19883723.jpg</image>
353
+ </track>
354
+ <track>
355
+ <name>Ghost of You</name>
356
+ <playcount>5</playcount>
357
+ <tagcount></tagcount>
358
+ <mbid></mbid>
359
+ <url>http://www.last.fm/music/Good+Charlotte/_/Ghost+of+You</url>
360
+ <streamable fulltrack="0">1</streamable>
361
+ <artist>
362
+ <name>Good Charlotte</name>
363
+ <mbid>b267ca80-034e-4dc1-9ed4-ec45f1fed41d</mbid>
364
+ <url>http://www.last.fm/music/Good+Charlotte</url>
365
+ </artist>
366
+ <image size="small">http://userserve-ak.last.fm/serve/34s/19445721.jpg</image>
367
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/19445721.jpg</image>
368
+ <image size="large">http://userserve-ak.last.fm/serve/126/19445721.jpg</image>
369
+ </track>
370
+ <track>
371
+ <name>Joy Ride</name>
372
+ <playcount>5</playcount>
373
+ <tagcount></tagcount>
374
+ <mbid></mbid>
375
+ <url>http://www.last.fm/music/The+Killers/_/Joy+Ride</url>
376
+ <streamable fulltrack="1">1</streamable>
377
+ <artist>
378
+ <name>The Killers</name>
379
+ <mbid>95e1ead9-4d31-4808-a7ac-32c3614c116b</mbid>
380
+ <url>http://www.last.fm/music/The+Killers</url>
381
+ </artist>
382
+ </track>
383
+ <track>
384
+ <name>Can't Con an Honest John</name>
385
+ <playcount>5</playcount>
386
+ <tagcount></tagcount>
387
+ <mbid></mbid>
388
+ <url>http://www.last.fm/music/The+Streets/_/Can%27t+Con+an+Honest+John</url>
389
+ <streamable fulltrack="0">1</streamable>
390
+ <artist>
391
+ <name>The Streets</name>
392
+ <mbid>6f607087-9c46-4bb2-a884-e4efc764554c</mbid>
393
+ <url>http://www.last.fm/music/The+Streets</url>
394
+ </artist>
395
+ <image size="small">http://userserve-ak.last.fm/serve/34s/8790429.jpg</image>
396
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/8790429.jpg</image>
397
+ <image size="large">http://userserve-ak.last.fm/serve/126/8790429.jpg</image>
398
+ </track>
399
+ <track>
400
+ <name>The world of bineli</name>
401
+ <playcount>5</playcount>
402
+ <tagcount></tagcount>
403
+ <mbid></mbid>
404
+ <url>http://www.last.fm/music/Good+Charlotte/_/The+world+of+bineli</url>
405
+ <streamable fulltrack="0">0</streamable>
406
+ <artist>
407
+ <name>Good Charlotte</name>
408
+ <mbid>b267ca80-034e-4dc1-9ed4-ec45f1fed41d</mbid>
409
+ <url>http://www.last.fm/music/Good+Charlotte</url>
410
+ </artist>
411
+ </track>
412
+ <track>
413
+ <name>Don't Panic</name>
414
+ <playcount>5</playcount>
415
+ <tagcount></tagcount>
416
+ <mbid></mbid>
417
+ <url>http://www.last.fm/music/Coldplay/_/Don%27t+Panic</url>
418
+ <streamable fulltrack="0">1</streamable>
419
+ <artist>
420
+ <name>Coldplay</name>
421
+ <mbid>cc197bad-dc9c-440d-a5b5-d52ba2e14234</mbid>
422
+ <url>http://www.last.fm/music/Coldplay</url>
423
+ </artist>
424
+ <image size="small">http://userserve-ak.last.fm/serve/34s/14225619.jpg</image>
425
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/14225619.jpg</image>
426
+ <image size="large">http://userserve-ak.last.fm/serve/126/14225619.jpg</image>
427
+ </track>
428
+ <track>
429
+ <name>'t smidje</name>
430
+ <playcount>5</playcount>
431
+ <tagcount>1</tagcount>
432
+ <mbid></mbid>
433
+ <url>http://www.last.fm/music/La%C3%AFs/_/%27t+smidje</url>
434
+ <streamable fulltrack="1">1</streamable>
435
+ <artist>
436
+ <name>Laïs</name>
437
+ <mbid>1e2a90fe-28a9-4361-a6d8-b3e19da940c7</mbid>
438
+ <url>http://www.last.fm/music/La%C3%AFs</url>
439
+ </artist>
440
+ <image size="small">http://userserve-ak.last.fm/serve/34s/24125985.jpg</image>
441
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/24125985.jpg</image>
442
+ <image size="large">http://userserve-ak.last.fm/serve/126/24125985.jpg</image>
443
+ </track>
444
+ <track>
445
+ <name>Roll the Credits</name>
446
+ <playcount>5</playcount>
447
+ <tagcount></tagcount>
448
+ <mbid></mbid>
449
+ <url>http://www.last.fm/music/Peter+Bjorn+and+John/_/Roll+the+Credits</url>
450
+ <streamable fulltrack="0">1</streamable>
451
+ <artist>
452
+ <name>Peter Bjorn and John</name>
453
+ <mbid>32a83250-7e26-422d-b9ac-f4564343e9ce</mbid>
454
+ <url>http://www.last.fm/music/Peter+Bjorn+and+John</url>
455
+ </artist>
456
+ <image size="small">http://userserve-ak.last.fm/serve/34s/19754455.jpg</image>
457
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/19754455.jpg</image>
458
+ <image size="large">http://userserve-ak.last.fm/serve/126/19754455.jpg</image>
459
+ </track>
460
+ <track>
461
+ <name>Live Alone</name>
462
+ <playcount>5</playcount>
463
+ <tagcount></tagcount>
464
+ <mbid></mbid>
465
+ <url>http://www.last.fm/music/Franz+Ferdinand/_/Live+Alone</url>
466
+ <streamable fulltrack="0">0</streamable>
467
+ <artist>
468
+ <name>Franz Ferdinand</name>
469
+ <mbid>aa7a2827-f74b-473c-bd79-03d065835cf7</mbid>
470
+ <url>http://www.last.fm/music/Franz+Ferdinand</url>
471
+ </artist>
472
+ </track>
473
+ <track>
474
+ <name>Operation Iraqi Liberation (O.I.L.)</name>
475
+ <playcount>5</playcount>
476
+ <tagcount></tagcount>
477
+ <mbid></mbid>
478
+ <url>http://www.last.fm/music/Anti-Flag/_/Operation+Iraqi+Liberation+%28O.I.L.%29</url>
479
+ <streamable fulltrack="0">1</streamable>
480
+ <artist>
481
+ <name>Anti-Flag</name>
482
+ <mbid>b88f21a7-a1b9-48fd-bbc4-ae758026f17f</mbid>
483
+ <url>http://www.last.fm/music/Anti-Flag</url>
484
+ </artist>
485
+ <image size="small">http://images.amazon.com/images/P/B0000DH29Y.01.THUMBZZZ.jpg</image>
486
+ <image size="medium">http://images.amazon.com/images/P/B0000DH29Y.01.MZZZZZZZ.jpg</image>
487
+ <image size="large">http://images.amazon.com/images/P/B0000DH29Y.01.LZZZZZZZ.jpg</image>
488
+ </track>
489
+ <track>
490
+ <name>It Wasn't Enough</name>
491
+ <playcount>5</playcount>
492
+ <tagcount></tagcount>
493
+ <mbid></mbid>
494
+ <url>http://www.last.fm/music/Good+Charlotte/_/It+Wasn%27t+Enough</url>
495
+ <streamable fulltrack="0">1</streamable>
496
+ <artist>
497
+ <name>Good Charlotte</name>
498
+ <mbid>b267ca80-034e-4dc1-9ed4-ec45f1fed41d</mbid>
499
+ <url>http://www.last.fm/music/Good+Charlotte</url>
500
+ </artist>
501
+ <image size="small">http://userserve-ak.last.fm/serve/34s/19445721.jpg</image>
502
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/19445721.jpg</image>
503
+ <image size="large">http://userserve-ak.last.fm/serve/126/19445721.jpg</image>
504
+ </track>
505
+ <track>
506
+ <name>A Rush of Blood to the Head</name>
507
+ <playcount>5</playcount>
508
+ <tagcount></tagcount>
509
+ <mbid></mbid>
510
+ <url>http://www.last.fm/music/Coldplay/_/A+Rush+of+Blood+to+the+Head</url>
511
+ <streamable fulltrack="0">1</streamable>
512
+ <artist>
513
+ <name>Coldplay</name>
514
+ <mbid>cc197bad-dc9c-440d-a5b5-d52ba2e14234</mbid>
515
+ <url>http://www.last.fm/music/Coldplay</url>
516
+ </artist>
517
+ <image size="small">http://userserve-ak.last.fm/serve/34s/14245401.jpg</image>
518
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/14245401.jpg</image>
519
+ <image size="large">http://userserve-ak.last.fm/serve/126/14245401.jpg</image>
520
+ </track>
521
+ <track>
522
+ <name>Come as You Are</name>
523
+ <playcount>5</playcount>
524
+ <tagcount></tagcount>
525
+ <mbid></mbid>
526
+ <url>http://www.last.fm/music/Nirvana/_/Come+as+You+Are</url>
527
+ <streamable fulltrack="1">1</streamable>
528
+ <artist>
529
+ <name>Nirvana</name>
530
+ <mbid>5b11f4ce-a62d-471e-81fc-a69a8278c7da</mbid>
531
+ <url>http://www.last.fm/music/Nirvana</url>
532
+ </artist>
533
+ <image size="small">http://userserve-ak.last.fm/serve/34s/8590151.jpg</image>
534
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/8590151.jpg</image>
535
+ <image size="large">http://userserve-ak.last.fm/serve/126/8590151.jpg</image>
536
+ </track>
537
+ <track>
538
+ <name>Caroline, Yes</name>
539
+ <playcount>5</playcount>
540
+ <tagcount></tagcount>
541
+ <mbid></mbid>
542
+ <url>http://www.last.fm/music/Kaiser+Chiefs/_/Caroline%2C+Yes</url>
543
+ <streamable fulltrack="0">0</streamable>
544
+ <artist>
545
+ <name>Kaiser Chiefs</name>
546
+ <mbid>90218af4-4d58-4821-8d41-2ee295ebbe21</mbid>
547
+ <url>http://www.last.fm/music/Kaiser+Chiefs</url>
548
+ </artist>
549
+ <image size="small">http://userserve-ak.last.fm/serve/34s/8674107.jpg</image>
550
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/8674107.jpg</image>
551
+ <image size="large">http://userserve-ak.last.fm/serve/126/8674107.jpg</image>
552
+ </track>
553
+ <track>
554
+ <name>Breed</name>
555
+ <playcount>5</playcount>
556
+ <tagcount></tagcount>
557
+ <mbid></mbid>
558
+ <url>http://www.last.fm/music/Nirvana/_/Breed</url>
559
+ <streamable fulltrack="1">1</streamable>
560
+ <artist>
561
+ <name>Nirvana</name>
562
+ <mbid>5b11f4ce-a62d-471e-81fc-a69a8278c7da</mbid>
563
+ <url>http://www.last.fm/music/Nirvana</url>
564
+ </artist>
565
+ <image size="small">http://userserve-ak.last.fm/serve/34s/8590151.jpg</image>
566
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/8590151.jpg</image>
567
+ <image size="large">http://userserve-ak.last.fm/serve/126/8590151.jpg</image>
568
+ </track>
569
+ <track>
570
+ <name>Kuba</name>
571
+ <playcount>4</playcount>
572
+ <tagcount></tagcount>
573
+ <mbid></mbid>
574
+ <url>http://www.last.fm/music/Fettes+Brot/_/Kuba</url>
575
+ <streamable fulltrack="0">0</streamable>
576
+ <artist>
577
+ <name>Fettes Brot</name>
578
+ <mbid>733e7372-5400-4c79-9059-33e2b2262d01</mbid>
579
+ <url>http://www.last.fm/music/Fettes+Brot</url>
580
+ </artist>
581
+ </track>
582
+ <track>
583
+ <name>Made of Codes</name>
584
+ <playcount>4</playcount>
585
+ <tagcount></tagcount>
586
+ <mbid></mbid>
587
+ <url>http://www.last.fm/music/Jack+Pe%C3%B1ate/_/Made+of+Codes</url>
588
+ <streamable fulltrack="0">0</streamable>
589
+ <artist>
590
+ <name>Jack Peñate</name>
591
+ <mbid>9b64cf5d-1f4a-45b5-a84a-5109a88f178f</mbid>
592
+ <url>http://www.last.fm/music/Jack+Pe%C3%B1ate</url>
593
+ </artist>
594
+ </track>
595
+ <track>
596
+ <name>Peace</name>
597
+ <playcount>4</playcount>
598
+ <tagcount></tagcount>
599
+ <mbid></mbid>
600
+ <url>http://www.last.fm/music/Weezer/_/Peace</url>
601
+ <streamable fulltrack="1">1</streamable>
602
+ <artist>
603
+ <name>Weezer</name>
604
+ <mbid>6fe07aa5-fec0-4eca-a456-f29bff451b04</mbid>
605
+ <url>http://www.last.fm/music/Weezer</url>
606
+ </artist>
607
+ <image size="small">http://userserve-ak.last.fm/serve/34s/8673675.jpg</image>
608
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/8673675.jpg</image>
609
+ <image size="large">http://userserve-ak.last.fm/serve/126/8673675.jpg</image>
610
+ </track>
611
+ <track>
612
+ <name>Sex Dwarf</name>
613
+ <playcount>4</playcount>
614
+ <tagcount></tagcount>
615
+ <mbid></mbid>
616
+ <url>http://www.last.fm/music/Scooter/_/Sex+Dwarf</url>
617
+ <streamable fulltrack="0">0</streamable>
618
+ <artist>
619
+ <name>Scooter</name>
620
+ <mbid>83e59f23-3b0b-4304-834d-5bcafd5df6d2</mbid>
621
+ <url>http://www.last.fm/music/Scooter</url>
622
+ </artist>
623
+ <image size="small">http://images.amazon.com/images/P/B00004TYKI.01.MZZZZZZZ.jpg</image>
624
+ <image size="medium">http://images.amazon.com/images/P/B00004TYKI.01.MZZZZZZZ.jpg</image>
625
+ <image size="large">http://images.amazon.com/images/P/B00004TYKI.01.MZZZZZZZ.jpg</image>
626
+ </track>
627
+ <track>
628
+ <name>Munich</name>
629
+ <playcount>4</playcount>
630
+ <tagcount></tagcount>
631
+ <mbid></mbid>
632
+ <url>http://www.last.fm/music/Editors/_/Munich</url>
633
+ <streamable fulltrack="0">1</streamable>
634
+ <artist>
635
+ <name>Editors</name>
636
+ <mbid>0efe858c-89e5-4e47-906a-356fa953fd6e</mbid>
637
+ <url>http://www.last.fm/music/Editors</url>
638
+ </artist>
639
+ <image size="small">http://userserve-ak.last.fm/serve/34s/19865989.jpg</image>
640
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/19865989.jpg</image>
641
+ <image size="large">http://userserve-ak.last.fm/serve/126/19865989.jpg</image>
642
+ </track>
643
+ <track>
644
+ <name>Points of Authority</name>
645
+ <playcount>4</playcount>
646
+ <tagcount></tagcount>
647
+ <mbid></mbid>
648
+ <url>http://www.last.fm/music/Linkin+Park/_/Points+of+Authority</url>
649
+ <streamable fulltrack="0">1</streamable>
650
+ <artist>
651
+ <name>Linkin Park</name>
652
+ <mbid>f59c5520-5f46-4d2c-b2c4-822eabf53419</mbid>
653
+ <url>http://www.last.fm/music/Linkin+Park</url>
654
+ </artist>
655
+ <image size="small">http://userserve-ak.last.fm/serve/34s/8591413.jpg</image>
656
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/8591413.jpg</image>
657
+ <image size="large">http://userserve-ak.last.fm/serve/126/8591413.jpg</image>
658
+ </track>
659
+ <track>
660
+ <name>See You Soon</name>
661
+ <playcount>4</playcount>
662
+ <tagcount></tagcount>
663
+ <mbid></mbid>
664
+ <url>http://www.last.fm/music/Coldplay/_/See+You+Soon</url>
665
+ <streamable fulltrack="0">1</streamable>
666
+ <artist>
667
+ <name>Coldplay</name>
668
+ <mbid>cc197bad-dc9c-440d-a5b5-d52ba2e14234</mbid>
669
+ <url>http://www.last.fm/music/Coldplay</url>
670
+ </artist>
671
+ <image size="small">http://userserve-ak.last.fm/serve/34s/6040074.jpg</image>
672
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/6040074.jpg</image>
673
+ <image size="large">http://userserve-ak.last.fm/serve/126/6040074.jpg</image>
674
+ </track>
675
+ <track>
676
+ <name>Rain</name>
677
+ <playcount>4</playcount>
678
+ <tagcount></tagcount>
679
+ <mbid></mbid>
680
+ <url>http://www.last.fm/music/Guano+Apes/_/Rain</url>
681
+ <streamable fulltrack="0">1</streamable>
682
+ <artist>
683
+ <name>Guano Apes</name>
684
+ <mbid>66da25f9-1534-4dd1-b88c-718bc24e1ccd</mbid>
685
+ <url>http://www.last.fm/music/Guano+Apes</url>
686
+ </artist>
687
+ <image size="small">http://userserve-ak.last.fm/serve/34s/11847867.jpg</image>
688
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/11847867.jpg</image>
689
+ <image size="large">http://userserve-ak.last.fm/serve/126/11847867.jpg</image>
690
+ </track>
691
+ <track>
692
+ <name>Down to the Bone</name>
693
+ <playcount>4</playcount>
694
+ <tagcount></tagcount>
695
+ <mbid></mbid>
696
+ <url>http://www.last.fm/music/Scooter/_/Down+to+the+Bone</url>
697
+ <streamable fulltrack="0">0</streamable>
698
+ <artist>
699
+ <name>Scooter</name>
700
+ <mbid>83e59f23-3b0b-4304-834d-5bcafd5df6d2</mbid>
701
+ <url>http://www.last.fm/music/Scooter</url>
702
+ </artist>
703
+ <image size="small">http://images.amazon.com/images/P/B00004TYKI.01.MZZZZZZZ.jpg</image>
704
+ <image size="medium">http://images.amazon.com/images/P/B00004TYKI.01.MZZZZZZZ.jpg</image>
705
+ <image size="large">http://images.amazon.com/images/P/B00004TYKI.01.MZZZZZZZ.jpg</image>
706
+ </track>
707
+ <track>
708
+ <name>Meine Ex(plodierte Freundin)</name>
709
+ <playcount>4</playcount>
710
+ <tagcount></tagcount>
711
+ <mbid></mbid>
712
+ <url>http://www.last.fm/music/Die+%C3%84rzte/_/Meine+Ex%28plodierte+Freundin%29</url>
713
+ <streamable fulltrack="0">0</streamable>
714
+ <artist>
715
+ <name>Die Ärzte</name>
716
+ <mbid>f2fb0ff0-5679-42ec-a55c-15109ce6e320</mbid>
717
+ <url>http://www.last.fm/music/Die+%C3%84rzte</url>
718
+ </artist>
719
+ <image size="small">http://images-eu.amazon.com/images/P/B00006ZY7R.03.MZZZZZZZ.jpg</image>
720
+ <image size="medium">http://images-eu.amazon.com/images/P/B00006ZY7R.03.MZZZZZZZ.jpg</image>
721
+ <image size="large">http://images-eu.amazon.com/images/P/B00006ZY7R.03.MZZZZZZZ.jpg</image>
722
+ </track>
723
+ <track>
724
+ <name>Everything's Not Lost / Life Is for Living</name>
725
+ <playcount>4</playcount>
726
+ <tagcount></tagcount>
727
+ <mbid></mbid>
728
+ <url>http://www.last.fm/music/Coldplay/_/Everything%2527s%2BNot%2BLost%2B%252F%2BLife%2BIs%2Bfor%2BLiving</url>
729
+ <streamable fulltrack="0">0</streamable>
730
+ <artist>
731
+ <name>Coldplay</name>
732
+ <mbid>cc197bad-dc9c-440d-a5b5-d52ba2e14234</mbid>
733
+ <url>http://www.last.fm/music/Coldplay</url>
734
+ </artist>
735
+ </track>
736
+ <track>
737
+ <name>This Is Your Life</name>
738
+ <playcount>4</playcount>
739
+ <tagcount></tagcount>
740
+ <mbid></mbid>
741
+ <url>http://www.last.fm/music/The+Killers/_/This+Is+Your+Life</url>
742
+ <streamable fulltrack="1">1</streamable>
743
+ <artist>
744
+ <name>The Killers</name>
745
+ <mbid>95e1ead9-4d31-4808-a7ac-32c3614c116b</mbid>
746
+ <url>http://www.last.fm/music/The+Killers</url>
747
+ </artist>
748
+ </track>
749
+ <track>
750
+ <name>Schüttel Deinen Speck</name>
751
+ <playcount>4</playcount>
752
+ <tagcount></tagcount>
753
+ <mbid></mbid>
754
+ <url>http://www.last.fm/music/Peter+Fox/_/Sch%C3%BCttel+Deinen+Speck</url>
755
+ <streamable fulltrack="0">0</streamable>
756
+ <artist>
757
+ <name>Peter Fox</name>
758
+ <mbid></mbid>
759
+ <url>http://www.last.fm/music/Peter+Fox</url>
760
+ </artist>
761
+ </track>
762
+ </tracks></lfm>