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="28" perPage="50" totalPages="34">
4
+ <track>
5
+ <name>Ausser Dir</name>
6
+ <playcount>1</playcount>
7
+ <tagcount></tagcount>
8
+ <mbid></mbid>
9
+ <url>http://www.last.fm/music/Wir+sind+Helden/_/Ausser+Dir</url>
10
+ <streamable fulltrack="0">1</streamable>
11
+ <artist>
12
+ <name>Wir sind Helden</name>
13
+ <mbid>908fedf4-548a-430f-b806-38fca9507dc4</mbid>
14
+ <url>http://www.last.fm/music/Wir+sind+Helden</url>
15
+ </artist>
16
+ </track>
17
+ <track>
18
+ <name>Badhead</name>
19
+ <playcount>1</playcount>
20
+ <tagcount></tagcount>
21
+ <mbid></mbid>
22
+ <url>http://www.last.fm/music/Blur/_/Badhead</url>
23
+ <streamable fulltrack="0">1</streamable>
24
+ <artist>
25
+ <name>Blur</name>
26
+ <mbid>ba853904-ae25-4ebb-89d6-c44cfbd71bd2</mbid>
27
+ <url>http://www.last.fm/music/Blur</url>
28
+ </artist>
29
+ <image size="small">http://cdn.last.fm/depth/catalogue/noimage/cover_med.gif</image>
30
+ <image size="medium">http://cdn.last.fm/depth/catalogue/noimage/cover_med.gif</image>
31
+ <image size="large">http://cdn.last.fm/depth/catalogue/noimage/cover_med.gif</image>
32
+ </track>
33
+ <track>
34
+ <name>Dermitder</name>
35
+ <playcount>1</playcount>
36
+ <tagcount></tagcount>
37
+ <mbid></mbid>
38
+ <url>http://www.last.fm/music/Farin+Urlaub/_/Dermitder</url>
39
+ <streamable fulltrack="0">0</streamable>
40
+ <artist>
41
+ <name>Farin Urlaub</name>
42
+ <mbid>23620454-4dca-45b7-8496-066e94d99826</mbid>
43
+ <url>http://www.last.fm/music/Farin+Urlaub</url>
44
+ </artist>
45
+ <image size="small">http://images.amazon.com/images/P/B0007QCGFE.01.MZZZZZZZ.jpg</image>
46
+ <image size="medium">http://images.amazon.com/images/P/B0007QCGFE.01.MZZZZZZZ.jpg</image>
47
+ <image size="large">http://images.amazon.com/images/P/B0007QCGFE.01.MZZZZZZZ.jpg</image>
48
+ </track>
49
+ <track>
50
+ <name>Once I Flew</name>
51
+ <playcount>1</playcount>
52
+ <tagcount></tagcount>
53
+ <mbid></mbid>
54
+ <url>http://www.last.fm/music/White+Town/_/Once+I+Flew</url>
55
+ <streamable fulltrack="0">1</streamable>
56
+ <artist>
57
+ <name>White Town</name>
58
+ <mbid>b9068fde-91c8-48bf-8655-8d74c24ef4c5</mbid>
59
+ <url>http://www.last.fm/music/White+Town</url>
60
+ </artist>
61
+ <image size="small">http://userserve-ak.last.fm/serve/34s/14025717.jpg</image>
62
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/14025717.jpg</image>
63
+ <image size="large">http://userserve-ak.last.fm/serve/126/14025717.jpg</image>
64
+ </track>
65
+ <track>
66
+ <name>Sie hat was vermisst</name>
67
+ <playcount>1</playcount>
68
+ <tagcount></tagcount>
69
+ <mbid></mbid>
70
+ <url>http://www.last.fm/music/We+Are+Scientists/_/Sie+hat+was+vermisst</url>
71
+ <streamable fulltrack="0">0</streamable>
72
+ <artist>
73
+ <name>We Are Scientists</name>
74
+ <mbid>9386b36e-87f3-4716-a219-79a07a4e29cc</mbid>
75
+ <url>http://www.last.fm/music/We+Are+Scientists</url>
76
+ </artist>
77
+ </track>
78
+ <track>
79
+ <name>It's About Time</name>
80
+ <playcount>1</playcount>
81
+ <tagcount></tagcount>
82
+ <mbid></mbid>
83
+ <url>http://www.last.fm/music/One+Night+Only/_/It%27s+About+Time</url>
84
+ <streamable fulltrack="1">1</streamable>
85
+ <artist>
86
+ <name>One Night Only</name>
87
+ <mbid></mbid>
88
+ <url>http://www.last.fm/music/One+Night+Only</url>
89
+ </artist>
90
+ <image size="small">http://userserve-ak.last.fm/serve/34s/10306013.jpg</image>
91
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/10306013.jpg</image>
92
+ <image size="large">http://userserve-ak.last.fm/serve/126/10306013.jpg</image>
93
+ </track>
94
+ <track>
95
+ <name>Papercut (live)</name>
96
+ <playcount>1</playcount>
97
+ <tagcount></tagcount>
98
+ <mbid></mbid>
99
+ <url>http://www.last.fm/music/Linkin+Park/_/Papercut+%28live%29</url>
100
+ <streamable fulltrack="0">0</streamable>
101
+ <artist>
102
+ <name>Linkin Park</name>
103
+ <mbid>f59c5520-5f46-4d2c-b2c4-822eabf53419</mbid>
104
+ <url>http://www.last.fm/music/Linkin+Park</url>
105
+ </artist>
106
+ <image size="small">http://userserve-ak.last.fm/serve/34s/4024738.jpg</image>
107
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/4024738.jpg</image>
108
+ <image size="large">http://userserve-ak.last.fm/serve/126/4024738.jpg</image>
109
+ </track>
110
+ <track>
111
+ <name>Nobody Knows</name>
112
+ <playcount>1</playcount>
113
+ <tagcount></tagcount>
114
+ <mbid></mbid>
115
+ <url>http://www.last.fm/music/Pink/_/Nobody+Knows</url>
116
+ <streamable fulltrack="0">0</streamable>
117
+ <artist>
118
+ <name>Pink</name>
119
+ <mbid>f4d5cc07-3bc9-4836-9b15-88a08359bc63</mbid>
120
+ <url>http://www.last.fm/music/Pink</url>
121
+ </artist>
122
+ <image size="small">http://images.amazon.com/images/P/B000EGCIU0.01._SCMZZZZZZZ_.jpg</image>
123
+ <image size="medium">http://images.amazon.com/images/P/B000EGCIU0.01._SCMZZZZZZZ_.jpg</image>
124
+ <image size="large">http://images.amazon.com/images/P/B000EGCIU0.01._SCMZZZZZZZ_.jpg</image>
125
+ </track>
126
+ <track>
127
+ <name>In the End (live)</name>
128
+ <playcount>1</playcount>
129
+ <tagcount></tagcount>
130
+ <mbid></mbid>
131
+ <url>http://www.last.fm/music/Linkin+Park/_/In+the+End+%28live%29</url>
132
+ <streamable fulltrack="0">0</streamable>
133
+ <artist>
134
+ <name>Linkin Park</name>
135
+ <mbid>f59c5520-5f46-4d2c-b2c4-822eabf53419</mbid>
136
+ <url>http://www.last.fm/music/Linkin+Park</url>
137
+ </artist>
138
+ <image size="small">http://userserve-ak.last.fm/serve/34s/4024738.jpg</image>
139
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/4024738.jpg</image>
140
+ <image size="large">http://userserve-ak.last.fm/serve/126/4024738.jpg</image>
141
+ </track>
142
+ <track>
143
+ <name>Necrotism: Decanting the Insalubrious (Cyborg Midnight) Part 7</name>
144
+ <playcount>1</playcount>
145
+ <tagcount></tagcount>
146
+ <mbid></mbid>
147
+ <url>http://www.last.fm/music/The+Lawrence+Arms/_/Necrotism%3A+Decanting+the+Insalubrious+%28Cyborg+Midnight%29+Part+7</url>
148
+ <streamable fulltrack="0">0</streamable>
149
+ <artist>
150
+ <name>The Lawrence Arms</name>
151
+ <mbid>e7edc301-cd55-41ce-b3d8-c3f83cd90a60</mbid>
152
+ <url>http://www.last.fm/music/The+Lawrence+Arms</url>
153
+ </artist>
154
+ <image size="small">http://userserve-ak.last.fm/serve/34s/16886577.jpg</image>
155
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/16886577.jpg</image>
156
+ <image size="large">http://userserve-ak.last.fm/serve/126/16886577.jpg</image>
157
+ </track>
158
+ <track>
159
+ <name>Jah Ina Yuh Life</name>
160
+ <playcount>1</playcount>
161
+ <tagcount></tagcount>
162
+ <mbid></mbid>
163
+ <url>http://www.last.fm/music/Gentleman+and+the+Far+East+Band/_/Jah+Ina+Yuh+Life</url>
164
+ <streamable fulltrack="0">0</streamable>
165
+ <artist>
166
+ <name>Gentleman and the Far East Band</name>
167
+ <mbid>0bd01dff-a351-4405-bdf0-7ee4ad7bc02e</mbid>
168
+ <url>http://www.last.fm/music/Gentleman+and+the+Far+East+Band</url>
169
+ </artist>
170
+ <image size="small">http://userserve-ak.last.fm/serve/34s/7847571.jpg</image>
171
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/7847571.jpg</image>
172
+ <image size="large">http://userserve-ak.last.fm/serve/126/7847571.jpg</image>
173
+ </track>
174
+ <track>
175
+ <name>Trouble in the Message Centre</name>
176
+ <playcount>1</playcount>
177
+ <tagcount></tagcount>
178
+ <mbid></mbid>
179
+ <url>http://www.last.fm/music/Blur/_/Trouble+in+the+Message+Centre</url>
180
+ <streamable fulltrack="0">1</streamable>
181
+ <artist>
182
+ <name>Blur</name>
183
+ <mbid>ba853904-ae25-4ebb-89d6-c44cfbd71bd2</mbid>
184
+ <url>http://www.last.fm/music/Blur</url>
185
+ </artist>
186
+ <image size="small">http://userserve-ak.last.fm/serve/34s/14257389.jpg</image>
187
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/14257389.jpg</image>
188
+ <image size="large">http://userserve-ak.last.fm/serve/126/14257389.jpg</image>
189
+ </track>
190
+ <track>
191
+ <name>Titel 09</name>
192
+ <playcount>1</playcount>
193
+ <tagcount></tagcount>
194
+ <mbid></mbid>
195
+ <url>http://www.last.fm/music/%5Bunknown%5D/_/Titel+09</url>
196
+ <streamable fulltrack="0">0</streamable>
197
+ <artist>
198
+ <name>[unknown]</name>
199
+ <mbid>125ec42a-7229-4250-afc5-e057484327fe</mbid>
200
+ <url>http://www.last.fm/music/%5Bunknown%5D</url>
201
+ </artist>
202
+ </track>
203
+ <track>
204
+ <name>Fight the Start</name>
205
+ <playcount>1</playcount>
206
+ <tagcount></tagcount>
207
+ <mbid></mbid>
208
+ <url>http://www.last.fm/music/Kilians/_/Fight+the+Start</url>
209
+ <streamable fulltrack="0">1</streamable>
210
+ <artist>
211
+ <name>Kilians</name>
212
+ <mbid></mbid>
213
+ <url>http://www.last.fm/music/Kilians</url>
214
+ </artist>
215
+ <image size="small">http://userserve-ak.last.fm/serve/34s/11493267.jpg</image>
216
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/11493267.jpg</image>
217
+ <image size="large">http://userserve-ak.last.fm/serve/126/11493267.jpg</image>
218
+ </track>
219
+ <track>
220
+ <name>Just for Tonight</name>
221
+ <playcount>1</playcount>
222
+ <tagcount></tagcount>
223
+ <mbid></mbid>
224
+ <url>http://www.last.fm/music/One+Night+Only/_/Just+for+Tonight</url>
225
+ <streamable fulltrack="1">1</streamable>
226
+ <artist>
227
+ <name>One Night Only</name>
228
+ <mbid></mbid>
229
+ <url>http://www.last.fm/music/One+Night+Only</url>
230
+ </artist>
231
+ <image size="small">http://userserve-ak.last.fm/serve/34s/10306013.jpg</image>
232
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/10306013.jpg</image>
233
+ <image size="large">http://userserve-ak.last.fm/serve/126/10306013.jpg</image>
234
+ </track>
235
+ <track>
236
+ <name>Wonderwall</name>
237
+ <playcount>1</playcount>
238
+ <tagcount></tagcount>
239
+ <mbid></mbid>
240
+ <url>http://www.last.fm/music/Oasis/_/Wonderwall</url>
241
+ <streamable fulltrack="0">1</streamable>
242
+ <artist>
243
+ <name>Oasis</name>
244
+ <mbid>39ab1aed-75e0-4140-bd47-540276886b60</mbid>
245
+ <url>http://www.last.fm/music/Oasis</url>
246
+ </artist>
247
+ <image size="small">http://userserve-ak.last.fm/serve/34s/23722513.jpg</image>
248
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/23722513.jpg</image>
249
+ <image size="large">http://userserve-ak.last.fm/serve/126/23722513.jpg</image>
250
+ </track>
251
+ <track>
252
+ <name>Astronaut</name>
253
+ <playcount>1</playcount>
254
+ <tagcount></tagcount>
255
+ <mbid></mbid>
256
+ <url>http://www.last.fm/music/Madsen/_/Astronaut</url>
257
+ <streamable fulltrack="1">1</streamable>
258
+ <artist>
259
+ <name>Madsen</name>
260
+ <mbid>8a0c3b86-af55-42d2-85b9-6372e7430986</mbid>
261
+ <url>http://www.last.fm/music/Madsen</url>
262
+ </artist>
263
+ <image size="small">http://userserve-ak.last.fm/serve/34s/5548067.jpg</image>
264
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/5548067.jpg</image>
265
+ <image size="large">http://userserve-ak.last.fm/serve/126/5548067.jpg</image>
266
+ </track>
267
+ <track>
268
+ <name>Electronic Battle Weapon 10</name>
269
+ <playcount>1</playcount>
270
+ <tagcount></tagcount>
271
+ <mbid></mbid>
272
+ <url>http://www.last.fm/music/The+Chemical+Brothers/_/Electronic+Battle+Weapon+10</url>
273
+ <streamable fulltrack="0">0</streamable>
274
+ <artist>
275
+ <name>The Chemical Brothers</name>
276
+ <mbid>1946a82a-f927-40c2-8235-38d64f50d043</mbid>
277
+ <url>http://www.last.fm/music/The+Chemical+Brothers</url>
278
+ </artist>
279
+ </track>
280
+ <track>
281
+ <name>Jackpot</name>
282
+ <playcount>1</playcount>
283
+ <tagcount></tagcount>
284
+ <mbid></mbid>
285
+ <url>http://www.last.fm/music/Tocotronic/_/Jackpot</url>
286
+ <streamable fulltrack="0">1</streamable>
287
+ <artist>
288
+ <name>Tocotronic</name>
289
+ <mbid>7717539b-33aa-45d5-b88d-9e627172db19</mbid>
290
+ <url>http://www.last.fm/music/Tocotronic</url>
291
+ </artist>
292
+ <image size="small">http://userserve-ak.last.fm/serve/34s/8679829.jpg</image>
293
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/8679829.jpg</image>
294
+ <image size="large">http://userserve-ak.last.fm/serve/126/8679829.jpg</image>
295
+ </track>
296
+ <track>
297
+ <name>BYOB (Explicit Version)</name>
298
+ <playcount>1</playcount>
299
+ <tagcount></tagcount>
300
+ <mbid></mbid>
301
+ <url>http://www.last.fm/music/System+of+a+Down/_/BYOB+%28Explicit+Version%29</url>
302
+ <streamable fulltrack="0">0</streamable>
303
+ <artist>
304
+ <name>System of a Down</name>
305
+ <mbid>cc0b7089-c08d-4c10-b6b0-873582c17fd6</mbid>
306
+ <url>http://www.last.fm/music/System+of+a+Down</url>
307
+ </artist>
308
+ </track>
309
+ <track>
310
+ <name>Youth of the Nation</name>
311
+ <playcount>1</playcount>
312
+ <tagcount></tagcount>
313
+ <mbid></mbid>
314
+ <url>http://www.last.fm/music/P.O.D./_/Youth+of+the+Nation</url>
315
+ <streamable fulltrack="0">1</streamable>
316
+ <artist>
317
+ <name>P.O.D.</name>
318
+ <mbid>57e79d57-b795-475e-9fa2-5dd9d5513b8c</mbid>
319
+ <url>http://www.last.fm/music/P.O.D.</url>
320
+ </artist>
321
+ <image size="small">http://userserve-ak.last.fm/serve/34s/12622663.jpg</image>
322
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/12622663.jpg</image>
323
+ <image size="large">http://userserve-ak.last.fm/serve/126/12622663.jpg</image>
324
+ </track>
325
+ <track>
326
+ <name>Liebeslied</name>
327
+ <playcount>1</playcount>
328
+ <tagcount></tagcount>
329
+ <mbid></mbid>
330
+ <url>http://www.last.fm/music/Madsen/_/Liebeslied</url>
331
+ <streamable fulltrack="1">1</streamable>
332
+ <artist>
333
+ <name>Madsen</name>
334
+ <mbid>8a0c3b86-af55-42d2-85b9-6372e7430986</mbid>
335
+ <url>http://www.last.fm/music/Madsen</url>
336
+ </artist>
337
+ <image size="small">http://userserve-ak.last.fm/serve/34s/5548067.jpg</image>
338
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/5548067.jpg</image>
339
+ <image size="large">http://userserve-ak.last.fm/serve/126/5548067.jpg</image>
340
+ </track>
341
+ <track>
342
+ <name>48 Stunden</name>
343
+ <playcount>1</playcount>
344
+ <tagcount></tagcount>
345
+ <mbid></mbid>
346
+ <url>http://www.last.fm/music/Kettcar/_/48+Stunden</url>
347
+ <streamable fulltrack="0">0</streamable>
348
+ <artist>
349
+ <name>Kettcar</name>
350
+ <mbid>315fa94f-3bb5-43db-a28e-406a83e9805c</mbid>
351
+ <url>http://www.last.fm/music/Kettcar</url>
352
+ </artist>
353
+ <image size="small">http://images.amazon.com/images/P/B0007D09TM.03.MZZZZZZZ.jpg</image>
354
+ <image size="medium">http://images.amazon.com/images/P/B0007D09TM.03.MZZZZZZZ.jpg</image>
355
+ <image size="large">http://images.amazon.com/images/P/B0007D09TM.03.MZZZZZZZ.jpg</image>
356
+ </track>
357
+ <track>
358
+ <name>Away From Here</name>
359
+ <playcount>1</playcount>
360
+ <tagcount></tagcount>
361
+ <mbid></mbid>
362
+ <url>http://www.last.fm/music/The+Enemy/_/Away+From+Here</url>
363
+ <streamable fulltrack="0">1</streamable>
364
+ <artist>
365
+ <name>The Enemy</name>
366
+ <mbid></mbid>
367
+ <url>http://www.last.fm/music/The+Enemy</url>
368
+ </artist>
369
+ <image size="small">http://userserve-ak.last.fm/serve/34s/9687255.jpg</image>
370
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/9687255.jpg</image>
371
+ <image size="large">http://userserve-ak.last.fm/serve/126/9687255.jpg</image>
372
+ </track>
373
+ <track>
374
+ <name>Titel 08</name>
375
+ <playcount>1</playcount>
376
+ <tagcount></tagcount>
377
+ <mbid></mbid>
378
+ <url>http://www.last.fm/music/%5Bunknown%5D/_/Titel+08</url>
379
+ <streamable fulltrack="0">0</streamable>
380
+ <artist>
381
+ <name>[unknown]</name>
382
+ <mbid>125ec42a-7229-4250-afc5-e057484327fe</mbid>
383
+ <url>http://www.last.fm/music/%5Bunknown%5D</url>
384
+ </artist>
385
+ </track>
386
+ <track>
387
+ <name>She's Only Happy in the Sun</name>
388
+ <playcount>1</playcount>
389
+ <tagcount></tagcount>
390
+ <mbid></mbid>
391
+ <url>http://www.last.fm/music/Ben+Harper/_/She%27s+Only+Happy+in+the+Sun</url>
392
+ <streamable fulltrack="0">1</streamable>
393
+ <artist>
394
+ <name>Ben Harper</name>
395
+ <mbid>1582a5b8-538e-45e7-9ae4-4099439a0e79</mbid>
396
+ <url>http://www.last.fm/music/Ben+Harper</url>
397
+ </artist>
398
+ <image size="small">http://images.amazon.com/images/P/B00008AY3L.01.MZZZZZZZ.jpg</image>
399
+ <image size="medium">http://images.amazon.com/images/P/B00008AY3L.01.MZZZZZZZ.jpg</image>
400
+ <image size="large">http://images.amazon.com/images/P/B00008AY3L.01.MZZZZZZZ.jpg</image>
401
+ </track>
402
+ <track>
403
+ <name>The Weekend Starts Here</name>
404
+ <playcount>1</playcount>
405
+ <tagcount></tagcount>
406
+ <mbid></mbid>
407
+ <url>http://www.last.fm/music/Fatboy+Slim/_/The+Weekend+Starts+Here</url>
408
+ <streamable fulltrack="0">1</streamable>
409
+ <artist>
410
+ <name>Fatboy Slim</name>
411
+ <mbid>34c63966-445c-4613-afe1-4f0e1e53ae9a</mbid>
412
+ <url>http://www.last.fm/music/Fatboy+Slim</url>
413
+ </artist>
414
+ <image size="small">http://userserve-ak.last.fm/serve/34s/16665891.jpg</image>
415
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/16665891.jpg</image>
416
+ <image size="large">http://userserve-ak.last.fm/serve/126/16665891.jpg</image>
417
+ </track>
418
+ <track>
419
+ <name>Jumpdafuckup</name>
420
+ <playcount>1</playcount>
421
+ <tagcount></tagcount>
422
+ <mbid></mbid>
423
+ <url>http://www.last.fm/music/Soulfly/_/Jumpdafuckup</url>
424
+ <streamable fulltrack="0">1</streamable>
425
+ <artist>
426
+ <name>Soulfly</name>
427
+ <mbid>832a43c7-aa7d-439b-a6b4-4f1afa671c24</mbid>
428
+ <url>http://www.last.fm/music/Soulfly</url>
429
+ </artist>
430
+ <image size="small">http://userserve-ak.last.fm/serve/34s/8600543.jpg</image>
431
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/8600543.jpg</image>
432
+ <image size="large">http://userserve-ak.last.fm/serve/126/8600543.jpg</image>
433
+ </track>
434
+ <track>
435
+ <name>Island in the Sun</name>
436
+ <playcount>1</playcount>
437
+ <tagcount></tagcount>
438
+ <mbid></mbid>
439
+ <url>http://www.last.fm/music/Weezer/_/Island+in+the+Sun</url>
440
+ <streamable fulltrack="0">1</streamable>
441
+ <artist>
442
+ <name>Weezer</name>
443
+ <mbid>6fe07aa5-fec0-4eca-a456-f29bff451b04</mbid>
444
+ <url>http://www.last.fm/music/Weezer</url>
445
+ </artist>
446
+ <image size="small">http://userserve-ak.last.fm/serve/34s/8593525.jpg</image>
447
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/8593525.jpg</image>
448
+ <image size="large">http://userserve-ak.last.fm/serve/126/8593525.jpg</image>
449
+ </track>
450
+ <track>
451
+ <name>My Definition of a Boombastic Jazz Style</name>
452
+ <playcount>1</playcount>
453
+ <tagcount></tagcount>
454
+ <mbid></mbid>
455
+ <url>http://www.last.fm/music/Dream+Warriors/_/My+Definition+of+a+Boombastic+Jazz+Style</url>
456
+ <streamable fulltrack="1">1</streamable>
457
+ <artist>
458
+ <name>Dream Warriors</name>
459
+ <mbid>34d59c27-28cd-4715-9f6f-4b5d9f343c2a</mbid>
460
+ <url>http://www.last.fm/music/Dream+Warriors</url>
461
+ </artist>
462
+ <image size="small">http://userserve-ak.last.fm/serve/34s/8747111.jpg</image>
463
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/8747111.jpg</image>
464
+ <image size="large">http://userserve-ak.last.fm/serve/126/8747111.jpg</image>
465
+ </track>
466
+ <track>
467
+ <name>Pimpin' All Over The World</name>
468
+ <playcount>1</playcount>
469
+ <tagcount></tagcount>
470
+ <mbid></mbid>
471
+ <url>http://www.last.fm/music/Ludacris/_/Pimpin%27+All+Over+The+World</url>
472
+ <streamable fulltrack="1">1</streamable>
473
+ <artist>
474
+ <name>Ludacris</name>
475
+ <mbid>0638ba22-040f-438d-83a5-9b670c4adaf5</mbid>
476
+ <url>http://www.last.fm/music/Ludacris</url>
477
+ </artist>
478
+ </track>
479
+ <track>
480
+ <name>Weihnachtsmann vom Dach</name>
481
+ <playcount>1</playcount>
482
+ <tagcount></tagcount>
483
+ <mbid></mbid>
484
+ <url>http://www.last.fm/music/Die+Toten+Hosen/_/Weihnachtsmann+vom+Dach</url>
485
+ <streamable fulltrack="0">0</streamable>
486
+ <artist>
487
+ <name>Die Toten Hosen</name>
488
+ <mbid>c3bc80a6-1f4a-4e17-8cf0-6b1efe8302f1</mbid>
489
+ <url>http://www.last.fm/music/Die+Toten+Hosen</url>
490
+ </artist>
491
+ <image size="small">http://userserve-ak.last.fm/serve/34s/4499047.jpg</image>
492
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/4499047.jpg</image>
493
+ <image size="large">http://userserve-ak.last.fm/serve/126/4499047.jpg</image>
494
+ </track>
495
+ <track>
496
+ <name>We Thuggin</name>
497
+ <playcount>1</playcount>
498
+ <tagcount></tagcount>
499
+ <mbid></mbid>
500
+ <url>http://www.last.fm/music/Fat+Joe+ft+R+Kelly/_/We+Thuggin</url>
501
+ <streamable fulltrack="0">0</streamable>
502
+ <artist>
503
+ <name>Fat Joe ft R Kelly</name>
504
+ <mbid></mbid>
505
+ <url>http://www.last.fm/music/Fat+Joe+ft+R+Kelly</url>
506
+ </artist>
507
+ </track>
508
+ <track>
509
+ <name>Angels</name>
510
+ <playcount>1</playcount>
511
+ <tagcount></tagcount>
512
+ <mbid></mbid>
513
+ <url>http://www.last.fm/music/Robbie+Williams/_/Angels</url>
514
+ <streamable fulltrack="0">1</streamable>
515
+ <artist>
516
+ <name>Robbie Williams</name>
517
+ <mbid>db4624cf-0e44-481e-a9dc-2142b833ec2f</mbid>
518
+ <url>http://www.last.fm/music/Robbie+Williams</url>
519
+ </artist>
520
+ <image size="small">http://userserve-ak.last.fm/serve/34s/14214425.jpg</image>
521
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/14214425.jpg</image>
522
+ <image size="large">http://userserve-ak.last.fm/serve/126/14214425.jpg</image>
523
+ </track>
524
+ <track>
525
+ <name>French Dog Blues</name>
526
+ <playcount>1</playcount>
527
+ <tagcount></tagcount>
528
+ <mbid></mbid>
529
+ <url>http://www.last.fm/music/Babyshambles/_/French+Dog+Blues</url>
530
+ <streamable fulltrack="0">1</streamable>
531
+ <artist>
532
+ <name>Babyshambles</name>
533
+ <mbid>8e1e03fe-ebbc-467a-b541-857144db10fb</mbid>
534
+ <url>http://www.last.fm/music/Babyshambles</url>
535
+ </artist>
536
+ <image size="small">http://userserve-ak.last.fm/serve/34s/14070721.jpg</image>
537
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/14070721.jpg</image>
538
+ <image size="large">http://userserve-ak.last.fm/serve/126/14070721.jpg</image>
539
+ </track>
540
+ <track>
541
+ <name>Kids Today</name>
542
+ <playcount>1</playcount>
543
+ <tagcount></tagcount>
544
+ <mbid></mbid>
545
+ <url>http://www.last.fm/music/Dwarves/_/Kids+Today</url>
546
+ <streamable fulltrack="0">0</streamable>
547
+ <artist>
548
+ <name>Dwarves</name>
549
+ <mbid>762e1e6d-ba12-4946-b8ee-dfa0cf9a2655</mbid>
550
+ <url>http://www.last.fm/music/Dwarves</url>
551
+ </artist>
552
+ </track>
553
+ <track>
554
+ <name>If i can´t</name>
555
+ <playcount>1</playcount>
556
+ <tagcount></tagcount>
557
+ <mbid></mbid>
558
+ <url>http://www.last.fm/music/50+Cent/_/If+i+can%C2%B4t</url>
559
+ <streamable fulltrack="0">0</streamable>
560
+ <artist>
561
+ <name>50 Cent</name>
562
+ <mbid>8e68819d-71be-4e7d-b41d-f1df81b01d3f</mbid>
563
+ <url>http://www.last.fm/music/50+Cent</url>
564
+ </artist>
565
+ </track>
566
+ <track>
567
+ <name>Let Them Eat War</name>
568
+ <playcount>1</playcount>
569
+ <tagcount></tagcount>
570
+ <mbid></mbid>
571
+ <url>http://www.last.fm/music/Bad+Religion/_/Let+Them+Eat+War</url>
572
+ <streamable fulltrack="0">1</streamable>
573
+ <artist>
574
+ <name>Bad Religion</name>
575
+ <mbid>149e6720-4e4a-41a4-afca-6d29083fc091</mbid>
576
+ <url>http://www.last.fm/music/Bad+Religion</url>
577
+ </artist>
578
+ <image size="small">http://userserve-ak.last.fm/serve/34s/8631305.jpg</image>
579
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/8631305.jpg</image>
580
+ <image size="large">http://userserve-ak.last.fm/serve/126/8631305.jpg</image>
581
+ </track>
582
+ <track>
583
+ <name>Caan Hold Us Down (feat. Barrington Levy and Daddy Rings)</name>
584
+ <playcount>1</playcount>
585
+ <tagcount></tagcount>
586
+ <mbid></mbid>
587
+ <url>http://www.last.fm/music/Gentleman/_/Caan+Hold+Us+Down+%28feat.+Barrington+Levy+and+Daddy+Rings%29</url>
588
+ <streamable fulltrack="0">0</streamable>
589
+ <artist>
590
+ <name>Gentleman</name>
591
+ <mbid>8de4a831-7c25-4d34-90cf-254de0c36e49</mbid>
592
+ <url>http://www.last.fm/music/Gentleman</url>
593
+ </artist>
594
+ <image size="small">http://userserve-ak.last.fm/serve/34s/28019385.jpg</image>
595
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/28019385.jpg</image>
596
+ <image size="large">http://userserve-ak.last.fm/serve/126/28019385.jpg</image>
597
+ </track>
598
+ <track>
599
+ <name>Theme From...</name>
600
+ <playcount>1</playcount>
601
+ <tagcount></tagcount>
602
+ <mbid></mbid>
603
+ <url>http://www.last.fm/music/The+Hives/_/Theme+From...</url>
604
+ <streamable fulltrack="0">1</streamable>
605
+ <artist>
606
+ <name>The Hives</name>
607
+ <mbid>487bfd74-71bf-46dd-b89c-80b7a0f06f2f</mbid>
608
+ <url>http://www.last.fm/music/The+Hives</url>
609
+ </artist>
610
+ <image size="small">http://userserve-ak.last.fm/serve/34s/26502921.png</image>
611
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/26502921.png</image>
612
+ <image size="large">http://userserve-ak.last.fm/serve/126/26502921.png</image>
613
+ </track>
614
+ <track>
615
+ <name>This Ain't a Scene, It's an Arms Race</name>
616
+ <playcount>1</playcount>
617
+ <tagcount></tagcount>
618
+ <mbid></mbid>
619
+ <url>http://www.last.fm/music/Fall+Out+Boy/_/This+Ain%27t+a+Scene%2C+It%27s+an+Arms+Race</url>
620
+ <streamable fulltrack="0">1</streamable>
621
+ <artist>
622
+ <name>Fall Out Boy</name>
623
+ <mbid>516cef4d-0718-4007-9939-f9b38af3f784</mbid>
624
+ <url>http://www.last.fm/music/Fall+Out+Boy</url>
625
+ </artist>
626
+ <image size="small">http://userserve-ak.last.fm/serve/34s/9104309.jpg</image>
627
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/9104309.jpg</image>
628
+ <image size="large">http://userserve-ak.last.fm/serve/126/9104309.jpg</image>
629
+ </track>
630
+ <track>
631
+ <name>Magic America</name>
632
+ <playcount>1</playcount>
633
+ <tagcount></tagcount>
634
+ <mbid></mbid>
635
+ <url>http://www.last.fm/music/Blur/_/Magic+America</url>
636
+ <streamable fulltrack="0">1</streamable>
637
+ <artist>
638
+ <name>Blur</name>
639
+ <mbid>ba853904-ae25-4ebb-89d6-c44cfbd71bd2</mbid>
640
+ <url>http://www.last.fm/music/Blur</url>
641
+ </artist>
642
+ <image size="small">http://userserve-ak.last.fm/serve/34s/14257389.jpg</image>
643
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/14257389.jpg</image>
644
+ <image size="large">http://userserve-ak.last.fm/serve/126/14257389.jpg</image>
645
+ </track>
646
+ <track>
647
+ <name>Bleed It Out</name>
648
+ <playcount>1</playcount>
649
+ <tagcount></tagcount>
650
+ <mbid></mbid>
651
+ <url>http://www.last.fm/music/Linkin+Park/_/Bleed+It+Out</url>
652
+ <streamable fulltrack="0">1</streamable>
653
+ <artist>
654
+ <name>Linkin Park</name>
655
+ <mbid>f59c5520-5f46-4d2c-b2c4-822eabf53419</mbid>
656
+ <url>http://www.last.fm/music/Linkin+Park</url>
657
+ </artist>
658
+ <image size="small">http://userserve-ak.last.fm/serve/34s/9943103.jpg</image>
659
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/9943103.jpg</image>
660
+ <image size="large">http://userserve-ak.last.fm/serve/126/9943103.jpg</image>
661
+ </track>
662
+ <track>
663
+ <name>We'll Live And Die In These Towns</name>
664
+ <playcount>1</playcount>
665
+ <tagcount></tagcount>
666
+ <mbid></mbid>
667
+ <url>http://www.last.fm/music/The+Enemy/_/We%27ll+Live+And+Die+In+These+Towns</url>
668
+ <streamable fulltrack="0">1</streamable>
669
+ <artist>
670
+ <name>The Enemy</name>
671
+ <mbid></mbid>
672
+ <url>http://www.last.fm/music/The+Enemy</url>
673
+ </artist>
674
+ <image size="small">http://userserve-ak.last.fm/serve/34s/9687255.jpg</image>
675
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/9687255.jpg</image>
676
+ <image size="large">http://userserve-ak.last.fm/serve/126/9687255.jpg</image>
677
+ </track>
678
+ <track>
679
+ <name>Kein Weg zu weit</name>
680
+ <playcount>1</playcount>
681
+ <tagcount></tagcount>
682
+ <mbid></mbid>
683
+ <url>http://www.last.fm/music/Madsen/_/Kein+Weg+zu+weit</url>
684
+ <streamable fulltrack="1">1</streamable>
685
+ <artist>
686
+ <name>Madsen</name>
687
+ <mbid>8a0c3b86-af55-42d2-85b9-6372e7430986</mbid>
688
+ <url>http://www.last.fm/music/Madsen</url>
689
+ </artist>
690
+ <image size="small">http://userserve-ak.last.fm/serve/34s/5548067.jpg</image>
691
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/5548067.jpg</image>
692
+ <image size="large">http://userserve-ak.last.fm/serve/126/5548067.jpg</image>
693
+ </track>
694
+ <track>
695
+ <name>Starshine</name>
696
+ <playcount>1</playcount>
697
+ <tagcount></tagcount>
698
+ <mbid></mbid>
699
+ <url>http://www.last.fm/music/Gorillaz/_/Starshine</url>
700
+ <streamable fulltrack="0">1</streamable>
701
+ <artist>
702
+ <name>Gorillaz</name>
703
+ <mbid>e21857d5-3256-4547-afb3-4b6ded592596</mbid>
704
+ <url>http://www.last.fm/music/Gorillaz</url>
705
+ </artist>
706
+ <image size="small">http://userserve-ak.last.fm/serve/34s/24507751.png</image>
707
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/24507751.png</image>
708
+ <image size="large">http://userserve-ak.last.fm/serve/126/24507751.png</image>
709
+ </track>
710
+ <track>
711
+ <name>City Blues</name>
712
+ <playcount>1</playcount>
713
+ <tagcount></tagcount>
714
+ <mbid></mbid>
715
+ <url>http://www.last.fm/music/Beginner/_/City+Blues</url>
716
+ <streamable fulltrack="1">1</streamable>
717
+ <artist>
718
+ <name>Beginner</name>
719
+ <mbid>709b55e5-0286-4fda-bf7e-3aff1894554d</mbid>
720
+ <url>http://www.last.fm/music/Beginner</url>
721
+ </artist>
722
+ <image size="small">http://userserve-ak.last.fm/serve/34s/12639629.jpg</image>
723
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/12639629.jpg</image>
724
+ <image size="large">http://userserve-ak.last.fm/serve/126/12639629.jpg</image>
725
+ </track>
726
+ <track>
727
+ <name>Suburban Knights</name>
728
+ <playcount>1</playcount>
729
+ <tagcount></tagcount>
730
+ <mbid></mbid>
731
+ <url>http://www.last.fm/music/Hard-Fi/_/Suburban+Knights</url>
732
+ <streamable fulltrack="0">1</streamable>
733
+ <artist>
734
+ <name>Hard-Fi</name>
735
+ <mbid>46d18823-6a15-49ee-8376-c5f7a49530a6</mbid>
736
+ <url>http://www.last.fm/music/Hard-Fi</url>
737
+ </artist>
738
+ <image size="small">http://userserve-ak.last.fm/serve/34s/10182419.jpg</image>
739
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/10182419.jpg</image>
740
+ <image size="large">http://userserve-ak.last.fm/serve/126/10182419.jpg</image>
741
+ </track>
742
+ <track>
743
+ <name>Hör weg</name>
744
+ <playcount>1</playcount>
745
+ <tagcount></tagcount>
746
+ <mbid></mbid>
747
+ <url>http://www.last.fm/music/Absolute+Beginner/_/H%C3%B6r+weg</url>
748
+ <streamable fulltrack="0">0</streamable>
749
+ <artist>
750
+ <name>Absolute Beginner</name>
751
+ <mbid>897db291-e88a-49be-baaa-d12e300d971c</mbid>
752
+ <url>http://www.last.fm/music/Absolute+Beginner</url>
753
+ </artist>
754
+ </track>
755
+ <track>
756
+ <name>Thunderstruck</name>
757
+ <playcount>1</playcount>
758
+ <tagcount></tagcount>
759
+ <mbid></mbid>
760
+ <url>http://www.last.fm/music/AC%252FDC/_/Thunderstruck</url>
761
+ <streamable fulltrack="0">0</streamable>
762
+ <artist>
763
+ <name>AC/DC</name>
764
+ <mbid>66c662b6-6e2f-4930-8610-912e24c63ed1</mbid>
765
+ <url>http://www.last.fm/music/AC%252FDC</url>
766
+ </artist>
767
+ <image size="small">http://userserve-ak.last.fm/serve/34s/9918245.jpg</image>
768
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/9918245.jpg</image>
769
+ <image size="large">http://userserve-ak.last.fm/serve/126/9918245.jpg</image>
770
+ </track>
771
+ </tracks></lfm>