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,756 @@
1
+ <?xml version="1.0" encoding="utf-8"?>
2
+ <lfm status="ok">
3
+ <tracks user="xhochy" page="27" perPage="50" totalPages="34">
4
+ <track>
5
+ <name>Nachtbaden</name>
6
+ <playcount>1</playcount>
7
+ <tagcount></tagcount>
8
+ <mbid></mbid>
9
+ <url>http://www.last.fm/music/Madsen/_/Nachtbaden</url>
10
+ <streamable fulltrack="1">1</streamable>
11
+ <artist>
12
+ <name>Madsen</name>
13
+ <mbid>8a0c3b86-af55-42d2-85b9-6372e7430986</mbid>
14
+ <url>http://www.last.fm/music/Madsen</url>
15
+ </artist>
16
+ <image size="small">http://userserve-ak.last.fm/serve/34s/5548067.jpg</image>
17
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/5548067.jpg</image>
18
+ <image size="large">http://userserve-ak.last.fm/serve/126/5548067.jpg</image>
19
+ </track>
20
+ <track>
21
+ <name>Sharp, Cool &amp; Collected</name>
22
+ <playcount>1</playcount>
23
+ <tagcount></tagcount>
24
+ <mbid></mbid>
25
+ <url>http://www.last.fm/music/Beatsteaks/_/Sharp%252C%2BCool%2B%2526%2BCollected</url>
26
+ <streamable fulltrack="0">1</streamable>
27
+ <artist>
28
+ <name>Beatsteaks</name>
29
+ <mbid>a9b88ebb-83aa-4ef7-b674-fabeb572c14e</mbid>
30
+ <url>http://www.last.fm/music/Beatsteaks</url>
31
+ </artist>
32
+ <image size="small">http://userserve-ak.last.fm/serve/34s/9114845.jpg</image>
33
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/9114845.jpg</image>
34
+ <image size="large">http://userserve-ak.last.fm/serve/126/9114845.jpg</image>
35
+ </track>
36
+ <track>
37
+ <name>Meantime</name>
38
+ <playcount>1</playcount>
39
+ <tagcount></tagcount>
40
+ <mbid></mbid>
41
+ <url>http://www.last.fm/music/Beatsteaks/_/Meantime</url>
42
+ <streamable fulltrack="0">1</streamable>
43
+ <artist>
44
+ <name>Beatsteaks</name>
45
+ <mbid>a9b88ebb-83aa-4ef7-b674-fabeb572c14e</mbid>
46
+ <url>http://www.last.fm/music/Beatsteaks</url>
47
+ </artist>
48
+ <image size="small">http://userserve-ak.last.fm/serve/34s/9114845.jpg</image>
49
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/9114845.jpg</image>
50
+ <image size="large">http://userserve-ak.last.fm/serve/126/9114845.jpg</image>
51
+ </track>
52
+ <track>
53
+ <name>Demokratie</name>
54
+ <playcount>1</playcount>
55
+ <tagcount></tagcount>
56
+ <mbid></mbid>
57
+ <url>http://www.last.fm/music/Andreas+Dorau+und+die+Bruderschaft+der+kleinen+Sorgen/_/Demokratie</url>
58
+ <streamable fulltrack="0">0</streamable>
59
+ <artist>
60
+ <name>Andreas Dorau und die Bruderschaft der kleinen Sorgen</name>
61
+ <mbid>553df127-7c28-489e-a01e-99d37a5c4476</mbid>
62
+ <url>http://www.last.fm/music/Andreas+Dorau+und+die+Bruderschaft+der+kleinen+Sorgen</url>
63
+ </artist>
64
+ </track>
65
+ <track>
66
+ <name>Rama Lama Ding Dong</name>
67
+ <playcount>1</playcount>
68
+ <tagcount></tagcount>
69
+ <mbid></mbid>
70
+ <url>http://www.last.fm/music/Rocky%2BSharpe%2B%2526%2BThe%2BReplays/_/Rama+Lama+Ding+Dong</url>
71
+ <streamable fulltrack="0">0</streamable>
72
+ <artist>
73
+ <name>Rocky Sharpe &amp; The Replays</name>
74
+ <mbid>127af8d5-4838-4736-866f-85391be98d50</mbid>
75
+ <url>http://www.last.fm/music/Rocky%2BSharpe%2B%2526%2BThe%2BReplays</url>
76
+ </artist>
77
+ <image size="small">http://images.amazon.com/images/P/B00001R3HD.01._SCMZZZZZZZ_.jpg</image>
78
+ <image size="medium">http://images.amazon.com/images/P/B00001R3HD.01._SCMZZZZZZZ_.jpg</image>
79
+ <image size="large">http://images.amazon.com/images/P/B00001R3HD.01._SCMZZZZZZZ_.jpg</image>
80
+ </track>
81
+ <track>
82
+ <name>Hockey (Feld)</name>
83
+ <playcount>1</playcount>
84
+ <tagcount></tagcount>
85
+ <mbid></mbid>
86
+ <url>http://www.last.fm/music/Sportfreunde+Stiller/_/Hockey+%28Feld%29</url>
87
+ <streamable fulltrack="1">1</streamable>
88
+ <artist>
89
+ <name>Sportfreunde Stiller</name>
90
+ <mbid>35581de7-591f-424f-9c64-7b22fd45605e</mbid>
91
+ <url>http://www.last.fm/music/Sportfreunde+Stiller</url>
92
+ </artist>
93
+ <image size="small">http://userserve-ak.last.fm/serve/34s/8730555.jpg</image>
94
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/8730555.jpg</image>
95
+ <image size="large">http://userserve-ak.last.fm/serve/126/8730555.jpg</image>
96
+ </track>
97
+ <track>
98
+ <name>The sound of german hip hop</name>
99
+ <playcount>1</playcount>
100
+ <tagcount></tagcount>
101
+ <mbid></mbid>
102
+ <url>http://www.last.fm/music/Clem+Snide/_/The+sound+of+german+hip+hop</url>
103
+ <streamable fulltrack="0">0</streamable>
104
+ <artist>
105
+ <name>Clem Snide</name>
106
+ <mbid>049d86e6-be73-4cb9-b498-0b6103ae3cb1</mbid>
107
+ <url>http://www.last.fm/music/Clem+Snide</url>
108
+ </artist>
109
+ <image size="small">http://cdn.last.fm/depth/catalogue/noimage/cover_med.gif</image>
110
+ <image size="medium">http://cdn.last.fm/depth/catalogue/noimage/cover_med.gif</image>
111
+ <image size="large">http://cdn.last.fm/depth/catalogue/noimage/cover_med.gif</image>
112
+ </track>
113
+ <track>
114
+ <name>Wake Me Up When September Ends</name>
115
+ <playcount>1</playcount>
116
+ <tagcount></tagcount>
117
+ <mbid></mbid>
118
+ <url>http://www.last.fm/music/Green+Day/_/Wake+Me+Up+When+September+Ends</url>
119
+ <streamable fulltrack="0">1</streamable>
120
+ <artist>
121
+ <name>Green Day</name>
122
+ <mbid>084308bd-1654-436f-ba03-df6697104e19</mbid>
123
+ <url>http://www.last.fm/music/Green+Day</url>
124
+ </artist>
125
+ <image size="small">http://userserve-ak.last.fm/serve/34s/8638429.jpg</image>
126
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/8638429.jpg</image>
127
+ <image size="large">http://userserve-ak.last.fm/serve/126/8638429.jpg</image>
128
+ </track>
129
+ <track>
130
+ <name>Funny Movie Mix</name>
131
+ <playcount>1</playcount>
132
+ <tagcount></tagcount>
133
+ <mbid></mbid>
134
+ <url>http://www.last.fm/music/Stefan+Raab/_/Funny+Movie+Mix</url>
135
+ <streamable fulltrack="0">0</streamable>
136
+ <artist>
137
+ <name>Stefan Raab</name>
138
+ <mbid>db1943f7-1741-46cd-aa4a-494ea3f753c4</mbid>
139
+ <url>http://www.last.fm/music/Stefan+Raab</url>
140
+ </artist>
141
+ </track>
142
+ <track>
143
+ <name>Bring it Back</name>
144
+ <playcount>1</playcount>
145
+ <tagcount></tagcount>
146
+ <mbid></mbid>
147
+ <url>http://www.last.fm/music/Die+Fantastischen+Vier/_/Bring+it+Back</url>
148
+ <streamable fulltrack="0">1</streamable>
149
+ <artist>
150
+ <name>Die Fantastischen Vier</name>
151
+ <mbid>7928481f-848e-4551-b658-472c0aaf0c85</mbid>
152
+ <url>http://www.last.fm/music/Die+Fantastischen+Vier</url>
153
+ </artist>
154
+ <image size="small">http://userserve-ak.last.fm/serve/34s/19560765.jpg</image>
155
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/19560765.jpg</image>
156
+ <image size="large">http://userserve-ak.last.fm/serve/126/19560765.jpg</image>
157
+ </track>
158
+ <track>
159
+ <name>Free Nation</name>
160
+ <playcount>1</playcount>
161
+ <tagcount></tagcount>
162
+ <mbid></mbid>
163
+ <url>http://www.last.fm/music/Anti-Flag/_/Free+Nation</url>
164
+ <streamable fulltrack="0">0</streamable>
165
+ <artist>
166
+ <name>Anti-Flag</name>
167
+ <mbid>b88f21a7-a1b9-48fd-bbc4-ae758026f17f</mbid>
168
+ <url>http://www.last.fm/music/Anti-Flag</url>
169
+ </artist>
170
+ </track>
171
+ <track>
172
+ <name>Treebeard</name>
173
+ <playcount>1</playcount>
174
+ <tagcount></tagcount>
175
+ <mbid></mbid>
176
+ <url>http://www.last.fm/music/Howard+Shore/_/Treebeard</url>
177
+ <streamable fulltrack="0">1</streamable>
178
+ <artist>
179
+ <name>Howard Shore</name>
180
+ <mbid>9b58672a-e68e-4972-956e-a8985a165a1f</mbid>
181
+ <url>http://www.last.fm/music/Howard+Shore</url>
182
+ </artist>
183
+ <image size="small">http://userserve-ak.last.fm/serve/34s/13142565.jpg</image>
184
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/13142565.jpg</image>
185
+ <image size="large">http://userserve-ak.last.fm/serve/126/13142565.jpg</image>
186
+ </track>
187
+ <track>
188
+ <name>Thnks fr th Mmrs</name>
189
+ <playcount>1</playcount>
190
+ <tagcount></tagcount>
191
+ <mbid></mbid>
192
+ <url>http://www.last.fm/music/Fall+Out+Boy/_/Thnks+fr+th+Mmrs</url>
193
+ <streamable fulltrack="0">1</streamable>
194
+ <artist>
195
+ <name>Fall Out Boy</name>
196
+ <mbid>516cef4d-0718-4007-9939-f9b38af3f784</mbid>
197
+ <url>http://www.last.fm/music/Fall+Out+Boy</url>
198
+ </artist>
199
+ <image size="small">http://userserve-ak.last.fm/serve/34s/9104309.jpg</image>
200
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/9104309.jpg</image>
201
+ <image size="large">http://userserve-ak.last.fm/serve/126/9104309.jpg</image>
202
+ </track>
203
+ <track>
204
+ <name>Just Abuse Me</name>
205
+ <playcount>1</playcount>
206
+ <tagcount></tagcount>
207
+ <mbid></mbid>
208
+ <url>http://www.last.fm/music/Air+Traffic/_/Just+Abuse+Me</url>
209
+ <streamable fulltrack="1">1</streamable>
210
+ <artist>
211
+ <name>Air Traffic</name>
212
+ <mbid>c8fb45c8-b3da-422d-a6db-73ac2ee56f77</mbid>
213
+ <url>http://www.last.fm/music/Air+Traffic</url>
214
+ </artist>
215
+ <image size="small">http://userserve-ak.last.fm/serve/34s/15115781.jpg</image>
216
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/15115781.jpg</image>
217
+ <image size="large">http://userserve-ak.last.fm/serve/126/15115781.jpg</image>
218
+ </track>
219
+ <track>
220
+ <name>Stupid Girls</name>
221
+ <playcount>1</playcount>
222
+ <tagcount></tagcount>
223
+ <mbid></mbid>
224
+ <url>http://www.last.fm/music/P%21nk/_/Stupid+Girls</url>
225
+ <streamable fulltrack="0">1</streamable>
226
+ <artist>
227
+ <name>P!nk</name>
228
+ <mbid></mbid>
229
+ <url>http://www.last.fm/music/P%21nk</url>
230
+ </artist>
231
+ <image size="small">http://userserve-ak.last.fm/serve/34s/16063247.jpg</image>
232
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/16063247.jpg</image>
233
+ <image size="large">http://userserve-ak.last.fm/serve/126/16063247.jpg</image>
234
+ </track>
235
+ <track>
236
+ <name>Prisoner</name>
237
+ <playcount>1</playcount>
238
+ <tagcount></tagcount>
239
+ <mbid></mbid>
240
+ <url>http://www.last.fm/music/Polarkreis+18/_/Prisoner</url>
241
+ <streamable fulltrack="1">1</streamable>
242
+ <artist>
243
+ <name>Polarkreis 18</name>
244
+ <mbid>90b18d97-718b-4a95-982d-b14019d084c0</mbid>
245
+ <url>http://www.last.fm/music/Polarkreis+18</url>
246
+ </artist>
247
+ </track>
248
+ <track>
249
+ <name>The Racing Rats</name>
250
+ <playcount>1</playcount>
251
+ <tagcount></tagcount>
252
+ <mbid></mbid>
253
+ <url>http://www.last.fm/music/Editors/_/The+Racing+Rats</url>
254
+ <streamable fulltrack="0">1</streamable>
255
+ <artist>
256
+ <name>Editors</name>
257
+ <mbid>0efe858c-89e5-4e47-906a-356fa953fd6e</mbid>
258
+ <url>http://www.last.fm/music/Editors</url>
259
+ </artist>
260
+ <image size="small">http://userserve-ak.last.fm/serve/34s/19861807.jpg</image>
261
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/19861807.jpg</image>
262
+ <image size="large">http://userserve-ak.last.fm/serve/126/19861807.jpg</image>
263
+ </track>
264
+ <track>
265
+ <name>Gedanken, die man besser nicht denkt</name>
266
+ <playcount>1</playcount>
267
+ <tagcount></tagcount>
268
+ <mbid></mbid>
269
+ <url>http://www.last.fm/music/Jennifer+Rostock/_/Gedanken%2C+die+man+besser+nicht+denkt</url>
270
+ <streamable fulltrack="0">1</streamable>
271
+ <artist>
272
+ <name>Jennifer Rostock</name>
273
+ <mbid></mbid>
274
+ <url>http://www.last.fm/music/Jennifer+Rostock</url>
275
+ </artist>
276
+ <image size="small">http://userserve-ak.last.fm/serve/34s/4393040.jpg</image>
277
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/4393040.jpg</image>
278
+ <image size="large">http://userserve-ak.last.fm/serve/126/4393040.jpg</image>
279
+ </track>
280
+ <track>
281
+ <name>Spend a Lifetime</name>
282
+ <playcount>1</playcount>
283
+ <tagcount></tagcount>
284
+ <mbid></mbid>
285
+ <url>http://www.last.fm/music/The+Rifles/_/Spend+a+Lifetime</url>
286
+ <streamable fulltrack="0">1</streamable>
287
+ <artist>
288
+ <name>The Rifles</name>
289
+ <mbid>03cfb17e-9d4a-462c-88ee-1fa348bc3a0d</mbid>
290
+ <url>http://www.last.fm/music/The+Rifles</url>
291
+ </artist>
292
+ <image size="small">http://userserve-ak.last.fm/serve/34s/19880503.jpg</image>
293
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/19880503.jpg</image>
294
+ <image size="large">http://userserve-ak.last.fm/serve/126/19880503.jpg</image>
295
+ </track>
296
+ <track>
297
+ <name>Heaven</name>
298
+ <playcount>1</playcount>
299
+ <tagcount></tagcount>
300
+ <mbid></mbid>
301
+ <url>http://www.last.fm/music/DJ+Sammy/_/Heaven</url>
302
+ <streamable fulltrack="0">0</streamable>
303
+ <artist>
304
+ <name>DJ Sammy</name>
305
+ <mbid>c43e35b8-8234-408b-9a25-07f2fcbeb317</mbid>
306
+ <url>http://www.last.fm/music/DJ+Sammy</url>
307
+ </artist>
308
+ </track>
309
+ <track>
310
+ <name>Planeta Eskoria</name>
311
+ <playcount>1</playcount>
312
+ <tagcount></tagcount>
313
+ <mbid></mbid>
314
+ <url>http://www.last.fm/music/Ska-P/_/Planeta+Eskoria</url>
315
+ <streamable fulltrack="0">0</streamable>
316
+ <artist>
317
+ <name>Ska-P</name>
318
+ <mbid>2de794c8-8826-48d0-90e0-6900183ba9e0</mbid>
319
+ <url>http://www.last.fm/music/Ska-P</url>
320
+ </artist>
321
+ <image size="small">http://images.amazon.com/images/P/B000051TIT.01.MZZZZZZZ.jpg</image>
322
+ <image size="medium">http://images.amazon.com/images/P/B000051TIT.01.MZZZZZZZ.jpg</image>
323
+ <image size="large">http://images.amazon.com/images/P/B000051TIT.01.MZZZZZZZ.jpg</image>
324
+ </track>
325
+ <track>
326
+ <name>Bonkers (Live Lounge)</name>
327
+ <playcount>1</playcount>
328
+ <tagcount></tagcount>
329
+ <mbid></mbid>
330
+ <url>http://www.last.fm/music/The+King+Blues/_/Bonkers+%28Live+Lounge%29</url>
331
+ <streamable fulltrack="0">0</streamable>
332
+ <artist>
333
+ <name>The King Blues</name>
334
+ <mbid>5d6f241c-b43c-4ff7-ae9f-6b7711bc6d00</mbid>
335
+ <url>http://www.last.fm/music/The+King+Blues</url>
336
+ </artist>
337
+ </track>
338
+ <track>
339
+ <name>Major Pager</name>
340
+ <playcount>1</playcount>
341
+ <tagcount></tagcount>
342
+ <mbid></mbid>
343
+ <url>http://www.last.fm/music/Space/_/Major+Pager</url>
344
+ <streamable fulltrack="0">0</streamable>
345
+ <artist>
346
+ <name>Space</name>
347
+ <mbid>63134699-ca51-464b-816d-3f32efd4a093</mbid>
348
+ <url>http://www.last.fm/music/Space</url>
349
+ </artist>
350
+ <image size="small">http://images.amazon.com/images/P/B000005AYO.01.MZZZZZZZ.jpg</image>
351
+ <image size="medium">http://images.amazon.com/images/P/B000005AYO.01.MZZZZZZZ.jpg</image>
352
+ <image size="large">http://images.amazon.com/images/P/B000005AYO.01.MZZZZZZZ.jpg</image>
353
+ </track>
354
+ <track>
355
+ <name>Merry Xmas Everybody</name>
356
+ <playcount>1</playcount>
357
+ <tagcount></tagcount>
358
+ <mbid></mbid>
359
+ <url>http://www.last.fm/music/Slade/_/Merry+Xmas+Everybody</url>
360
+ <streamable fulltrack="0">1</streamable>
361
+ <artist>
362
+ <name>Slade</name>
363
+ <mbid>2e700147-56a3-416b-a95d-381ea42f947f</mbid>
364
+ <url>http://www.last.fm/music/Slade</url>
365
+ </artist>
366
+ <image size="small">http://userserve-ak.last.fm/serve/34s/19489937.jpg</image>
367
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/19489937.jpg</image>
368
+ <image size="large">http://userserve-ak.last.fm/serve/126/19489937.jpg</image>
369
+ </track>
370
+ <track>
371
+ <name>Sophia</name>
372
+ <playcount>1</playcount>
373
+ <tagcount></tagcount>
374
+ <mbid></mbid>
375
+ <url>http://www.last.fm/music/Good+Shoes/_/Sophia</url>
376
+ <streamable fulltrack="0">1</streamable>
377
+ <artist>
378
+ <name>Good Shoes</name>
379
+ <mbid>789e5db3-502b-4f13-8039-88c70e053fa5</mbid>
380
+ <url>http://www.last.fm/music/Good+Shoes</url>
381
+ </artist>
382
+ <image size="small">http://userserve-ak.last.fm/serve/34s/13946885.jpg</image>
383
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/13946885.jpg</image>
384
+ <image size="large">http://userserve-ak.last.fm/serve/126/13946885.jpg</image>
385
+ </track>
386
+ <track>
387
+ <name>L.O.T.M.</name>
388
+ <playcount>1</playcount>
389
+ <tagcount></tagcount>
390
+ <mbid></mbid>
391
+ <url>http://www.last.fm/music/Soulfly/_/L.O.T.M.</url>
392
+ <streamable fulltrack="0">0</streamable>
393
+ <artist>
394
+ <name>Soulfly</name>
395
+ <mbid>832a43c7-aa7d-439b-a6b4-4f1afa671c24</mbid>
396
+ <url>http://www.last.fm/music/Soulfly</url>
397
+ </artist>
398
+ </track>
399
+ <track>
400
+ <name>Jah Jah Never Fail</name>
401
+ <playcount>1</playcount>
402
+ <tagcount></tagcount>
403
+ <mbid></mbid>
404
+ <url>http://www.last.fm/music/Gentleman+and+the+Far+East+Band/_/Jah+Jah+Never+Fail</url>
405
+ <streamable fulltrack="0">0</streamable>
406
+ <artist>
407
+ <name>Gentleman and the Far East Band</name>
408
+ <mbid>0bd01dff-a351-4405-bdf0-7ee4ad7bc02e</mbid>
409
+ <url>http://www.last.fm/music/Gentleman+and+the+Far+East+Band</url>
410
+ </artist>
411
+ <image size="small">http://userserve-ak.last.fm/serve/34s/7847571.jpg</image>
412
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/7847571.jpg</image>
413
+ <image size="large">http://userserve-ak.last.fm/serve/126/7847571.jpg</image>
414
+ </track>
415
+ <track>
416
+ <name>Mudian Bach Ke</name>
417
+ <playcount>1</playcount>
418
+ <tagcount></tagcount>
419
+ <mbid></mbid>
420
+ <url>http://www.last.fm/music/Panjabi+MC/_/Mudian+Bach+Ke</url>
421
+ <streamable fulltrack="0">0</streamable>
422
+ <artist>
423
+ <name>Panjabi MC</name>
424
+ <mbid>fbab6da8-e1e4-4927-b669-502a6e37a8d6</mbid>
425
+ <url>http://www.last.fm/music/Panjabi+MC</url>
426
+ </artist>
427
+ </track>
428
+ <track>
429
+ <name>Müssen nur wollen</name>
430
+ <playcount>1</playcount>
431
+ <tagcount></tagcount>
432
+ <mbid></mbid>
433
+ <url>http://www.last.fm/music/Wir+sind+Helden/_/M%C3%BCssen+nur+wollen</url>
434
+ <streamable fulltrack="0">1</streamable>
435
+ <artist>
436
+ <name>Wir sind Helden</name>
437
+ <mbid>908fedf4-548a-430f-b806-38fca9507dc4</mbid>
438
+ <url>http://www.last.fm/music/Wir+sind+Helden</url>
439
+ </artist>
440
+ <image size="small">http://userserve-ak.last.fm/serve/34s/15183527.jpg</image>
441
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/15183527.jpg</image>
442
+ <image size="large">http://userserve-ak.last.fm/serve/126/15183527.jpg</image>
443
+ </track>
444
+ <track>
445
+ <name>Toxic</name>
446
+ <playcount>1</playcount>
447
+ <tagcount></tagcount>
448
+ <mbid></mbid>
449
+ <url>http://www.last.fm/music/The+BossHoss/_/Toxic</url>
450
+ <streamable fulltrack="1">1</streamable>
451
+ <artist>
452
+ <name>The BossHoss</name>
453
+ <mbid>e0ab57c6-7ba1-4dca-b36e-fae4c0c269e1</mbid>
454
+ <url>http://www.last.fm/music/The+BossHoss</url>
455
+ </artist>
456
+ <image size="small">http://userserve-ak.last.fm/serve/34s/8742397.jpg</image>
457
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/8742397.jpg</image>
458
+ <image size="large">http://userserve-ak.last.fm/serve/126/8742397.jpg</image>
459
+ </track>
460
+ <track>
461
+ <name>Death Cab For Cutie - Plans - 01 - Marching Bands of Manhattan</name>
462
+ <playcount>1</playcount>
463
+ <tagcount></tagcount>
464
+ <mbid></mbid>
465
+ <url>http://www.last.fm/music/Death+Cab+for+Cutie/_/Death+Cab+For+Cutie+-+Plans+-+01+-+Marching+Bands+of+Manhattan</url>
466
+ <streamable fulltrack="0">0</streamable>
467
+ <artist>
468
+ <name>Death Cab for Cutie</name>
469
+ <mbid>0039c7ae-e1a7-4a7d-9b49-0cbc716821a6</mbid>
470
+ <url>http://www.last.fm/music/Death+Cab+for+Cutie</url>
471
+ </artist>
472
+ </track>
473
+ <track>
474
+ <name>Hoverkraft</name>
475
+ <playcount>1</playcount>
476
+ <tagcount></tagcount>
477
+ <mbid></mbid>
478
+ <url>http://www.last.fm/music/Deichkind/_/Hoverkraft</url>
479
+ <streamable fulltrack="1">1</streamable>
480
+ <artist>
481
+ <name>Deichkind</name>
482
+ <mbid>5de80871-f721-4c7c-b0c5-4ad0d350c232</mbid>
483
+ <url>http://www.last.fm/music/Deichkind</url>
484
+ </artist>
485
+ </track>
486
+ <track>
487
+ <name>Gut Dabei</name>
488
+ <playcount>1</playcount>
489
+ <tagcount></tagcount>
490
+ <mbid></mbid>
491
+ <url>http://www.last.fm/music/Deichkind/_/Gut+Dabei</url>
492
+ <streamable fulltrack="1">1</streamable>
493
+ <artist>
494
+ <name>Deichkind</name>
495
+ <mbid>5de80871-f721-4c7c-b0c5-4ad0d350c232</mbid>
496
+ <url>http://www.last.fm/music/Deichkind</url>
497
+ </artist>
498
+ </track>
499
+ <track>
500
+ <name>Our Velocity</name>
501
+ <playcount>1</playcount>
502
+ <tagcount></tagcount>
503
+ <mbid></mbid>
504
+ <url>http://www.last.fm/music/Max%C3%AFmo+Park/_/Our+Velocity</url>
505
+ <streamable fulltrack="0">0</streamable>
506
+ <artist>
507
+ <name>Maxïmo Park</name>
508
+ <mbid>92e634a7-6023-4be8-be15-ebba822f5b34</mbid>
509
+ <url>http://www.last.fm/music/Max%C3%AFmo+Park</url>
510
+ </artist>
511
+ </track>
512
+ <track>
513
+ <name>Mr. Maker</name>
514
+ <playcount>1</playcount>
515
+ <tagcount></tagcount>
516
+ <mbid></mbid>
517
+ <url>http://www.last.fm/music/The+Kooks/_/Mr.+Maker</url>
518
+ <streamable fulltrack="0">1</streamable>
519
+ <artist>
520
+ <name>The Kooks</name>
521
+ <mbid>f82f3a3e-29c2-42ca-b589-bc5dc210fa9e</mbid>
522
+ <url>http://www.last.fm/music/The+Kooks</url>
523
+ </artist>
524
+ <image size="small">http://userserve-ak.last.fm/serve/34s/15158593.jpg</image>
525
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/15158593.jpg</image>
526
+ <image size="large">http://userserve-ak.last.fm/serve/126/15158593.jpg</image>
527
+ </track>
528
+ <track>
529
+ <name>Trojan Horse</name>
530
+ <playcount>1</playcount>
531
+ <tagcount></tagcount>
532
+ <mbid></mbid>
533
+ <url>http://www.last.fm/music/Bloc+Party/_/Trojan+Horse</url>
534
+ <streamable fulltrack="1">1</streamable>
535
+ <artist>
536
+ <name>Bloc Party</name>
537
+ <mbid>8c538f11-c141-4588-8ecb-931083524186</mbid>
538
+ <url>http://www.last.fm/music/Bloc+Party</url>
539
+ </artist>
540
+ </track>
541
+ <track>
542
+ <name>Sumisu</name>
543
+ <playcount>1</playcount>
544
+ <tagcount></tagcount>
545
+ <mbid></mbid>
546
+ <url>http://www.last.fm/music/Farin+Urlaub/_/Sumisu</url>
547
+ <streamable fulltrack="0">1</streamable>
548
+ <artist>
549
+ <name>Farin Urlaub</name>
550
+ <mbid>23620454-4dca-45b7-8496-066e94d99826</mbid>
551
+ <url>http://www.last.fm/music/Farin+Urlaub</url>
552
+ </artist>
553
+ <image size="small">http://userserve-ak.last.fm/serve/34s/3608376.jpg</image>
554
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/3608376.jpg</image>
555
+ <image size="large">http://userserve-ak.last.fm/serve/126/3608376.jpg</image>
556
+ </track>
557
+ <track>
558
+ <name>Can't Slow Down</name>
559
+ <playcount>1</playcount>
560
+ <tagcount></tagcount>
561
+ <mbid></mbid>
562
+ <url>http://www.last.fm/music/Eight+Legs/_/Can%27t+Slow+Down</url>
563
+ <streamable fulltrack="1">1</streamable>
564
+ <artist>
565
+ <name>Eight Legs</name>
566
+ <mbid></mbid>
567
+ <url>http://www.last.fm/music/Eight+Legs</url>
568
+ </artist>
569
+ <image size="small">http://userserve-ak.last.fm/serve/34s/11249939.jpg</image>
570
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/11249939.jpg</image>
571
+ <image size="large">http://userserve-ak.last.fm/serve/126/11249939.jpg</image>
572
+ </track>
573
+ <track>
574
+ <name>Die Another Day</name>
575
+ <playcount>1</playcount>
576
+ <tagcount></tagcount>
577
+ <mbid></mbid>
578
+ <url>http://www.last.fm/music/Madonna/_/Die+Another+Day</url>
579
+ <streamable fulltrack="0">1</streamable>
580
+ <artist>
581
+ <name>Madonna</name>
582
+ <mbid>79239441-bfd5-4981-a70c-55c3f15c1287</mbid>
583
+ <url>http://www.last.fm/music/Madonna</url>
584
+ </artist>
585
+ <image size="small">http://userserve-ak.last.fm/serve/34s/5283493.jpg</image>
586
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/5283493.jpg</image>
587
+ <image size="large">http://userserve-ak.last.fm/serve/126/5283493.jpg</image>
588
+ </track>
589
+ <track>
590
+ <name>Bonkers</name>
591
+ <playcount>1</playcount>
592
+ <tagcount></tagcount>
593
+ <mbid></mbid>
594
+ <url>http://www.last.fm/music/NULL/_/Bonkers</url>
595
+ <streamable fulltrack="0">0</streamable>
596
+ <artist>
597
+ <name>NULL</name>
598
+ <mbid>3f0bdf7f-3f40-4795-8b91-1fde13192b09</mbid>
599
+ <url>http://www.last.fm/music/NULL</url>
600
+ </artist>
601
+ </track>
602
+ <track>
603
+ <name>Whiskey in the Jar</name>
604
+ <playcount>1</playcount>
605
+ <tagcount></tagcount>
606
+ <mbid></mbid>
607
+ <url>http://www.last.fm/music/Metallica/_/Whiskey+in+the+Jar</url>
608
+ <streamable fulltrack="0">1</streamable>
609
+ <artist>
610
+ <name>Metallica</name>
611
+ <mbid>65f4f0c5-ef9e-490c-aee3-909e7ae6b2ab</mbid>
612
+ <url>http://www.last.fm/music/Metallica</url>
613
+ </artist>
614
+ <image size="small">http://images.amazon.com/images/P/B00000FCBC.01.MZZZZZZZ.jpg</image>
615
+ <image size="medium">http://images.amazon.com/images/P/B00000FCBC.01.MZZZZZZZ.jpg</image>
616
+ <image size="large">http://images.amazon.com/images/P/B00000FCBC.01.MZZZZZZZ.jpg</image>
617
+ </track>
618
+ <track>
619
+ <name>Abschiedslied</name>
620
+ <playcount>1</playcount>
621
+ <tagcount></tagcount>
622
+ <mbid></mbid>
623
+ <url>http://www.last.fm/music/Farin+Urlaub/_/Abschiedslied</url>
624
+ <streamable fulltrack="0">1</streamable>
625
+ <artist>
626
+ <name>Farin Urlaub</name>
627
+ <mbid>23620454-4dca-45b7-8496-066e94d99826</mbid>
628
+ <url>http://www.last.fm/music/Farin+Urlaub</url>
629
+ </artist>
630
+ <image size="small">http://userserve-ak.last.fm/serve/34s/3608376.jpg</image>
631
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/3608376.jpg</image>
632
+ <image size="large">http://userserve-ak.last.fm/serve/126/3608376.jpg</image>
633
+ </track>
634
+ <track>
635
+ <name>Sekt oder Selters</name>
636
+ <playcount>1</playcount>
637
+ <tagcount></tagcount>
638
+ <mbid></mbid>
639
+ <url>http://www.last.fm/music/Fettes+Brot/_/Sekt+oder+Selters</url>
640
+ <streamable fulltrack="0">1</streamable>
641
+ <artist>
642
+ <name>Fettes Brot</name>
643
+ <mbid>733e7372-5400-4c79-9059-33e2b2262d01</mbid>
644
+ <url>http://www.last.fm/music/Fettes+Brot</url>
645
+ </artist>
646
+ <image size="small">http://userserve-ak.last.fm/serve/34s/12621867.jpg</image>
647
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/12621867.jpg</image>
648
+ <image size="large">http://userserve-ak.last.fm/serve/126/12621867.jpg</image>
649
+ </track>
650
+ <track>
651
+ <name>Shit on the Radio (Remember the Days)</name>
652
+ <playcount>1</playcount>
653
+ <tagcount></tagcount>
654
+ <mbid></mbid>
655
+ <url>http://www.last.fm/music/Nelly+Furtado/_/Shit+on+the+Radio+%28Remember+the+Days%29</url>
656
+ <streamable fulltrack="0">1</streamable>
657
+ <artist>
658
+ <name>Nelly Furtado</name>
659
+ <mbid>13655113-cd16-4b43-9dca-cadbbf26ee05</mbid>
660
+ <url>http://www.last.fm/music/Nelly+Furtado</url>
661
+ </artist>
662
+ <image size="small">http://userserve-ak.last.fm/serve/34s/8676157.jpg</image>
663
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/8676157.jpg</image>
664
+ <image size="large">http://userserve-ak.last.fm/serve/126/8676157.jpg</image>
665
+ </track>
666
+ <track>
667
+ <name>The North</name>
668
+ <playcount>1</playcount>
669
+ <tagcount></tagcount>
670
+ <mbid></mbid>
671
+ <url>http://www.last.fm/music/Dirty+Pretty+Things/_/The+North</url>
672
+ <streamable fulltrack="1">1</streamable>
673
+ <artist>
674
+ <name>Dirty Pretty Things</name>
675
+ <mbid>648615ca-ca74-460d-928a-2bae67ae6d14</mbid>
676
+ <url>http://www.last.fm/music/Dirty+Pretty+Things</url>
677
+ </artist>
678
+ </track>
679
+ <track>
680
+ <name>behind those eys</name>
681
+ <playcount>1</playcount>
682
+ <tagcount></tagcount>
683
+ <mbid></mbid>
684
+ <url>http://www.last.fm/music/3+Doors+Down/_/behind+those+eys</url>
685
+ <streamable fulltrack="0">0</streamable>
686
+ <artist>
687
+ <name>3 Doors Down</name>
688
+ <mbid>2386cd66-e923-4e8e-bf14-2eebe2e9b973</mbid>
689
+ <url>http://www.last.fm/music/3+Doors+Down</url>
690
+ </artist>
691
+ </track>
692
+ <track>
693
+ <name>I'm a Realist</name>
694
+ <playcount>1</playcount>
695
+ <tagcount></tagcount>
696
+ <mbid></mbid>
697
+ <url>http://www.last.fm/music/The+Cribs/_/I%27m+a+Realist</url>
698
+ <streamable fulltrack="0">1</streamable>
699
+ <artist>
700
+ <name>The Cribs</name>
701
+ <mbid>a3a92047-be1c-4f3e-8960-c4f8570984df</mbid>
702
+ <url>http://www.last.fm/music/The+Cribs</url>
703
+ </artist>
704
+ <image size="small">http://userserve-ak.last.fm/serve/34s/9445795.jpg</image>
705
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/9445795.jpg</image>
706
+ <image size="large">http://userserve-ak.last.fm/serve/126/9445795.jpg</image>
707
+ </track>
708
+ <track>
709
+ <name>All You Need Is Love</name>
710
+ <playcount>1</playcount>
711
+ <tagcount></tagcount>
712
+ <mbid></mbid>
713
+ <url>http://www.last.fm/music/The+Beatles/_/All+You+Need+Is+Love</url>
714
+ <streamable fulltrack="0">0</streamable>
715
+ <artist>
716
+ <name>The Beatles</name>
717
+ <mbid>b10bbbfc-cf9e-42e0-be17-e2c3e1d2600d</mbid>
718
+ <url>http://www.last.fm/music/The+Beatles</url>
719
+ </artist>
720
+ <image size="small">http://userserve-ak.last.fm/serve/34s/12979771.jpg</image>
721
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/12979771.jpg</image>
722
+ <image size="large">http://userserve-ak.last.fm/serve/126/12979771.jpg</image>
723
+ </track>
724
+ <track>
725
+ <name>Alcoholic</name>
726
+ <playcount>1</playcount>
727
+ <tagcount></tagcount>
728
+ <mbid></mbid>
729
+ <url>http://www.last.fm/music/Starsailor/_/Alcoholic</url>
730
+ <streamable fulltrack="0">1</streamable>
731
+ <artist>
732
+ <name>Starsailor</name>
733
+ <mbid>fbd86487-ccb5-4a57-a860-cc3d360b5115</mbid>
734
+ <url>http://www.last.fm/music/Starsailor</url>
735
+ </artist>
736
+ <image size="small">http://www.7digital.com/shops/assets/sleeveart/0724387986756_182.JPEG</image>
737
+ <image size="medium">http://www.7digital.com/shops/assets/sleeveart/0724387986756_182.JPEG</image>
738
+ <image size="large">http://www.7digital.com/shops/assets/sleeveart/0724387986756_182.JPEG</image>
739
+ </track>
740
+ <track>
741
+ <name>Hadlacka</name>
742
+ <playcount>1</playcount>
743
+ <tagcount></tagcount>
744
+ <mbid></mbid>
745
+ <url>http://www.last.fm/music/Badesalz/_/Hadlacka</url>
746
+ <streamable fulltrack="0">1</streamable>
747
+ <artist>
748
+ <name>Badesalz</name>
749
+ <mbid>533d4015-a55b-4f2a-b968-b5a43f08b381</mbid>
750
+ <url>http://www.last.fm/music/Badesalz</url>
751
+ </artist>
752
+ <image size="small">http://userserve-ak.last.fm/serve/34s/19583447.jpg</image>
753
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/19583447.jpg</image>
754
+ <image size="large">http://userserve-ak.last.fm/serve/126/19583447.jpg</image>
755
+ </track>
756
+ </tracks></lfm>