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,777 @@
1
+ <?xml version="1.0" encoding="utf-8"?>
2
+ <lfm status="ok">
3
+ <tracks user="xhochy" page="26" perPage="50" totalPages="34">
4
+ <track>
5
+ <name>Breathe</name>
6
+ <playcount>1</playcount>
7
+ <tagcount></tagcount>
8
+ <mbid></mbid>
9
+ <url>http://www.last.fm/music/Erasure/_/Breathe</url>
10
+ <streamable fulltrack="0">1</streamable>
11
+ <artist>
12
+ <name>Erasure</name>
13
+ <mbid>43b58c98-3779-4b04-9a23-1c95cca3a145</mbid>
14
+ <url>http://www.last.fm/music/Erasure</url>
15
+ </artist>
16
+ <image size="small">http://userserve-ak.last.fm/serve/34s/15230123.jpg</image>
17
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/15230123.jpg</image>
18
+ <image size="large">http://userserve-ak.last.fm/serve/126/15230123.jpg</image>
19
+ </track>
20
+ <track>
21
+ <name>Don't Cha (Feat. Busta Rhymes) - Clean</name>
22
+ <playcount>1</playcount>
23
+ <tagcount></tagcount>
24
+ <mbid></mbid>
25
+ <url>http://www.last.fm/music/The+Pussycat+Dolls/_/Don%27t+Cha+%28Feat.+Busta+Rhymes%29+-+Clean</url>
26
+ <streamable fulltrack="0">0</streamable>
27
+ <artist>
28
+ <name>The Pussycat Dolls</name>
29
+ <mbid>1fda852b-92e9-4562-82fa-c52820a77b23</mbid>
30
+ <url>http://www.last.fm/music/The+Pussycat+Dolls</url>
31
+ </artist>
32
+ </track>
33
+ <track>
34
+ <name>Dirt Off Your Shoulder (Produced By Timbaland)</name>
35
+ <playcount>1</playcount>
36
+ <tagcount></tagcount>
37
+ <mbid></mbid>
38
+ <url>http://www.last.fm/music/Jay-Z/_/Dirt+Off+Your+Shoulder+%28Produced+By+Timbaland%29</url>
39
+ <streamable fulltrack="0">0</streamable>
40
+ <artist>
41
+ <name>Jay-Z</name>
42
+ <mbid>f82bcf78-5b69-4622-a5ef-73800768d9ac</mbid>
43
+ <url>http://www.last.fm/music/Jay-Z</url>
44
+ </artist>
45
+ </track>
46
+ <track>
47
+ <name>Money Mark</name>
48
+ <playcount>1</playcount>
49
+ <tagcount></tagcount>
50
+ <mbid></mbid>
51
+ <url>http://www.last.fm/music/Sportfreunde+Stiller/_/Money+Mark</url>
52
+ <streamable fulltrack="1">1</streamable>
53
+ <artist>
54
+ <name>Sportfreunde Stiller</name>
55
+ <mbid>35581de7-591f-424f-9c64-7b22fd45605e</mbid>
56
+ <url>http://www.last.fm/music/Sportfreunde+Stiller</url>
57
+ </artist>
58
+ <image size="small">http://userserve-ak.last.fm/serve/34s/8730555.jpg</image>
59
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/8730555.jpg</image>
60
+ <image size="large">http://userserve-ak.last.fm/serve/126/8730555.jpg</image>
61
+ </track>
62
+ <track>
63
+ <name>Black and Gold</name>
64
+ <playcount>1</playcount>
65
+ <tagcount></tagcount>
66
+ <mbid></mbid>
67
+ <url>http://www.last.fm/music/Sam+Sparro/_/Black+and+Gold</url>
68
+ <streamable fulltrack="0">0</streamable>
69
+ <artist>
70
+ <name>Sam Sparro</name>
71
+ <mbid></mbid>
72
+ <url>http://www.last.fm/music/Sam+Sparro</url>
73
+ </artist>
74
+ </track>
75
+ <track>
76
+ <name>Bad News</name>
77
+ <playcount>1</playcount>
78
+ <tagcount></tagcount>
79
+ <mbid></mbid>
80
+ <url>http://www.last.fm/music/Jack+Johnson/_/Bad+News</url>
81
+ <streamable fulltrack="0">0</streamable>
82
+ <artist>
83
+ <name>Jack Johnson</name>
84
+ <mbid>ff6e677f-91dd-4986-a174-8db0474b1799</mbid>
85
+ <url>http://www.last.fm/music/Jack+Johnson</url>
86
+ </artist>
87
+ </track>
88
+ <track>
89
+ <name>Alles Liebe, alles Gute</name>
90
+ <playcount>1</playcount>
91
+ <tagcount></tagcount>
92
+ <mbid></mbid>
93
+ <url>http://www.last.fm/music/Sportfreunde+Stiller/_/Alles+Liebe%2C+alles+Gute</url>
94
+ <streamable fulltrack="1">1</streamable>
95
+ <artist>
96
+ <name>Sportfreunde Stiller</name>
97
+ <mbid>35581de7-591f-424f-9c64-7b22fd45605e</mbid>
98
+ <url>http://www.last.fm/music/Sportfreunde+Stiller</url>
99
+ </artist>
100
+ <image size="small">http://userserve-ak.last.fm/serve/34s/8730555.jpg</image>
101
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/8730555.jpg</image>
102
+ <image size="large">http://userserve-ak.last.fm/serve/126/8730555.jpg</image>
103
+ </track>
104
+ <track>
105
+ <name>Hail to the Freaks</name>
106
+ <playcount>1</playcount>
107
+ <tagcount></tagcount>
108
+ <mbid></mbid>
109
+ <url>http://www.last.fm/music/Beatsteaks/_/Hail+to+the+Freaks</url>
110
+ <streamable fulltrack="0">1</streamable>
111
+ <artist>
112
+ <name>Beatsteaks</name>
113
+ <mbid>a9b88ebb-83aa-4ef7-b674-fabeb572c14e</mbid>
114
+ <url>http://www.last.fm/music/Beatsteaks</url>
115
+ </artist>
116
+ <image size="small">http://userserve-ak.last.fm/serve/34s/9114845.jpg</image>
117
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/9114845.jpg</image>
118
+ <image size="large">http://userserve-ak.last.fm/serve/126/9114845.jpg</image>
119
+ </track>
120
+ <track>
121
+ <name>Wires</name>
122
+ <playcount>1</playcount>
123
+ <tagcount></tagcount>
124
+ <mbid></mbid>
125
+ <url>http://www.last.fm/music/Athlete/_/Wires</url>
126
+ <streamable fulltrack="0">1</streamable>
127
+ <artist>
128
+ <name>Athlete</name>
129
+ <mbid>906cbb69-b793-463a-832d-b5bf850f01a2</mbid>
130
+ <url>http://www.last.fm/music/Athlete</url>
131
+ </artist>
132
+ <image size="small">http://userserve-ak.last.fm/serve/34s/6671019.jpg</image>
133
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/6671019.jpg</image>
134
+ <image size="large">http://userserve-ak.last.fm/serve/126/6671019.jpg</image>
135
+ </track>
136
+ <track>
137
+ <name>Angeber</name>
138
+ <playcount>1</playcount>
139
+ <tagcount></tagcount>
140
+ <mbid></mbid>
141
+ <url>http://www.last.fm/music/Die+%C3%84rzte/_/Angeber</url>
142
+ <streamable fulltrack="0">1</streamable>
143
+ <artist>
144
+ <name>Die Ärzte</name>
145
+ <mbid>f2fb0ff0-5679-42ec-a55c-15109ce6e320</mbid>
146
+ <url>http://www.last.fm/music/Die+%C3%84rzte</url>
147
+ </artist>
148
+ <image size="small">http://images-eu.amazon.com/images/P/B00000JP3Y.03.MZZZZZZZ.jpg</image>
149
+ <image size="medium">http://images-eu.amazon.com/images/P/B00000JP3Y.03.MZZZZZZZ.jpg</image>
150
+ <image size="large">http://images-eu.amazon.com/images/P/B00000JP3Y.03.MZZZZZZZ.jpg</image>
151
+ </track>
152
+ <track>
153
+ <name>Desenchantee</name>
154
+ <playcount>1</playcount>
155
+ <tagcount></tagcount>
156
+ <mbid></mbid>
157
+ <url>http://www.last.fm/music/Kate+Ryan/_/Desenchantee</url>
158
+ <streamable fulltrack="0">1</streamable>
159
+ <artist>
160
+ <name>Kate Ryan</name>
161
+ <mbid>89d746b8-7d18-4baf-8cee-659b07771568</mbid>
162
+ <url>http://www.last.fm/music/Kate+Ryan</url>
163
+ </artist>
164
+ <image size="small">http://images-eu.amazon.com/images/P/B0000DELCR.03.MZZZZZZZ.jpg</image>
165
+ <image size="medium">http://images-eu.amazon.com/images/P/B0000DELCR.03.MZZZZZZZ.jpg</image>
166
+ <image size="large">http://images-eu.amazon.com/images/P/B0000DELCR.03.MZZZZZZZ.jpg</image>
167
+ </track>
168
+ <track>
169
+ <name>We Got Two Jealous Agains</name>
170
+ <playcount>1</playcount>
171
+ <tagcount></tagcount>
172
+ <mbid></mbid>
173
+ <url>http://www.last.fm/music/NOFX/_/We+Got+Two+Jealous+Agains</url>
174
+ <streamable fulltrack="0">1</streamable>
175
+ <artist>
176
+ <name>NOFX</name>
177
+ <mbid>dcaa4f81-bfb7-44eb-8594-4e74f004b6e4</mbid>
178
+ <url>http://www.last.fm/music/NOFX</url>
179
+ </artist>
180
+ <image size="small">http://userserve-ak.last.fm/serve/34s/12625529.jpg</image>
181
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/12625529.jpg</image>
182
+ <image size="large">http://userserve-ak.last.fm/serve/126/12625529.jpg</image>
183
+ </track>
184
+ <track>
185
+ <name>Geboren</name>
186
+ <playcount>1</playcount>
187
+ <tagcount></tagcount>
188
+ <mbid></mbid>
189
+ <url>http://www.last.fm/music/Die+Fantastischen+Vier/_/Geboren</url>
190
+ <streamable fulltrack="0">1</streamable>
191
+ <artist>
192
+ <name>Die Fantastischen Vier</name>
193
+ <mbid>7928481f-848e-4551-b658-472c0aaf0c85</mbid>
194
+ <url>http://www.last.fm/music/Die+Fantastischen+Vier</url>
195
+ </artist>
196
+ <image size="small">http://userserve-ak.last.fm/serve/34s/19560765.jpg</image>
197
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/19560765.jpg</image>
198
+ <image size="large">http://userserve-ak.last.fm/serve/126/19560765.jpg</image>
199
+ </track>
200
+ <track>
201
+ <name>How Much Is the Fish?</name>
202
+ <playcount>1</playcount>
203
+ <tagcount></tagcount>
204
+ <mbid></mbid>
205
+ <url>http://www.last.fm/music/Scooter/_/How+Much+Is+the+Fish%3F</url>
206
+ <streamable fulltrack="0">1</streamable>
207
+ <artist>
208
+ <name>Scooter</name>
209
+ <mbid>83e59f23-3b0b-4304-834d-5bcafd5df6d2</mbid>
210
+ <url>http://www.last.fm/music/Scooter</url>
211
+ </artist>
212
+ <image size="small">http://images.amazon.com/images/P/B00006SFDT.01.MZZZZZZZ.jpg</image>
213
+ <image size="medium">http://images.amazon.com/images/P/B00006SFDT.01.MZZZZZZZ.jpg</image>
214
+ <image size="large">http://images.amazon.com/images/P/B00006SFDT.01.MZZZZZZZ.jpg</image>
215
+ </track>
216
+ <track>
217
+ <name>Smooth Criminal</name>
218
+ <playcount>1</playcount>
219
+ <tagcount></tagcount>
220
+ <mbid></mbid>
221
+ <url>http://www.last.fm/music/Alien+Ant+Farm/_/Smooth+Criminal</url>
222
+ <streamable fulltrack="0">1</streamable>
223
+ <artist>
224
+ <name>Alien Ant Farm</name>
225
+ <mbid>8ac6cc32-8ddf-43b1-9ac4-4b04f9053176</mbid>
226
+ <url>http://www.last.fm/music/Alien+Ant+Farm</url>
227
+ </artist>
228
+ <image size="small">http://userserve-ak.last.fm/serve/34s/8633653.jpg</image>
229
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/8633653.jpg</image>
230
+ <image size="large">http://userserve-ak.last.fm/serve/126/8633653.jpg</image>
231
+ </track>
232
+ <track>
233
+ <name>Forgive Nothing</name>
234
+ <playcount>1</playcount>
235
+ <tagcount></tagcount>
236
+ <mbid></mbid>
237
+ <url>http://www.last.fm/music/Blood+Red+Shoes/_/Forgive+Nothing</url>
238
+ <streamable fulltrack="1">1</streamable>
239
+ <artist>
240
+ <name>Blood Red Shoes</name>
241
+ <mbid>cd830a8f-89d2-4e96-96cb-7a497e51d437</mbid>
242
+ <url>http://www.last.fm/music/Blood+Red+Shoes</url>
243
+ </artist>
244
+ <image size="small">http://userserve-ak.last.fm/serve/34s/5506207.jpg</image>
245
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/5506207.jpg</image>
246
+ <image size="large">http://userserve-ak.last.fm/serve/126/5506207.jpg</image>
247
+ </track>
248
+ <track>
249
+ <name>Streams of Whiskey</name>
250
+ <playcount>1</playcount>
251
+ <tagcount></tagcount>
252
+ <mbid></mbid>
253
+ <url>http://www.last.fm/music/The+Pogues/_/Streams+of+Whiskey</url>
254
+ <streamable fulltrack="0">1</streamable>
255
+ <artist>
256
+ <name>The Pogues</name>
257
+ <mbid>d41a6875-b626-4c0f-89a1-aecb643d29ff</mbid>
258
+ <url>http://www.last.fm/music/The+Pogues</url>
259
+ </artist>
260
+ <image size="small">http://userserve-ak.last.fm/serve/34s/24315671.jpg</image>
261
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/24315671.jpg</image>
262
+ <image size="large">http://userserve-ak.last.fm/serve/126/24315671.jpg</image>
263
+ </track>
264
+ <track>
265
+ <name>Small Town Girl</name>
266
+ <playcount>1</playcount>
267
+ <tagcount></tagcount>
268
+ <mbid></mbid>
269
+ <url>http://www.last.fm/music/Good+Shoes/_/Small+Town+Girl</url>
270
+ <streamable fulltrack="0">1</streamable>
271
+ <artist>
272
+ <name>Good Shoes</name>
273
+ <mbid>789e5db3-502b-4f13-8039-88c70e053fa5</mbid>
274
+ <url>http://www.last.fm/music/Good+Shoes</url>
275
+ </artist>
276
+ <image size="small">http://userserve-ak.last.fm/serve/34s/13946885.jpg</image>
277
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/13946885.jpg</image>
278
+ <image size="large">http://userserve-ak.last.fm/serve/126/13946885.jpg</image>
279
+ </track>
280
+ <track>
281
+ <name>God knows</name>
282
+ <playcount>1</playcount>
283
+ <tagcount></tagcount>
284
+ <mbid></mbid>
285
+ <url>http://www.last.fm/music/Mando+Diao+%28live%29/_/God+knows</url>
286
+ <streamable fulltrack="0">0</streamable>
287
+ <artist>
288
+ <name>Mando Diao (live)</name>
289
+ <mbid></mbid>
290
+ <url>http://www.last.fm/music/Mando+Diao+%28live%29</url>
291
+ </artist>
292
+ </track>
293
+ <track>
294
+ <name>We Believe</name>
295
+ <playcount>1</playcount>
296
+ <tagcount></tagcount>
297
+ <mbid></mbid>
298
+ <url>http://www.last.fm/music/Good+Charlotte/_/We+Believe</url>
299
+ <streamable fulltrack="0">1</streamable>
300
+ <artist>
301
+ <name>Good Charlotte</name>
302
+ <mbid>b267ca80-034e-4dc1-9ed4-ec45f1fed41d</mbid>
303
+ <url>http://www.last.fm/music/Good+Charlotte</url>
304
+ </artist>
305
+ <image size="small">http://userserve-ak.last.fm/serve/34s/19445721.jpg</image>
306
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/19445721.jpg</image>
307
+ <image size="large">http://userserve-ak.last.fm/serve/126/19445721.jpg</image>
308
+ </track>
309
+ <track>
310
+ <name>Don't You Wanna Find Out</name>
311
+ <playcount>1</playcount>
312
+ <tagcount></tagcount>
313
+ <mbid></mbid>
314
+ <url>http://www.last.fm/music/The+Pigeon+Detectives/_/Don%27t+You+Wanna+Find+Out</url>
315
+ <streamable fulltrack="1">1</streamable>
316
+ <artist>
317
+ <name>The Pigeon Detectives</name>
318
+ <mbid>2e04a82f-9118-43b1-a918-bf84f122f7fc</mbid>
319
+ <url>http://www.last.fm/music/The+Pigeon+Detectives</url>
320
+ </artist>
321
+ <image size="small">http://userserve-ak.last.fm/serve/34s/6076980.jpg</image>
322
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/6076980.jpg</image>
323
+ <image size="large">http://userserve-ak.last.fm/serve/126/6076980.jpg</image>
324
+ </track>
325
+ <track>
326
+ <name>Gives You Hell</name>
327
+ <playcount>1</playcount>
328
+ <tagcount></tagcount>
329
+ <mbid></mbid>
330
+ <url>http://www.last.fm/music/The+All-American+Rejects/_/Gives+You+Hell</url>
331
+ <streamable fulltrack="1">1</streamable>
332
+ <artist>
333
+ <name>The All-American Rejects</name>
334
+ <mbid>09885b8e-f235-4b80-a02a-055539493173</mbid>
335
+ <url>http://www.last.fm/music/The+All-American+Rejects</url>
336
+ </artist>
337
+ </track>
338
+ <track>
339
+ <name>Tío Sam</name>
340
+ <playcount>1</playcount>
341
+ <tagcount></tagcount>
342
+ <mbid></mbid>
343
+ <url>http://www.last.fm/music/Ska-P/_/T%C3%ADo+Sam</url>
344
+ <streamable fulltrack="0">0</streamable>
345
+ <artist>
346
+ <name>Ska-P</name>
347
+ <mbid>2de794c8-8826-48d0-90e0-6900183ba9e0</mbid>
348
+ <url>http://www.last.fm/music/Ska-P</url>
349
+ </artist>
350
+ <image size="small">http://images.amazon.com/images/P/B000051TIT.01.MZZZZZZZ.jpg</image>
351
+ <image size="medium">http://images.amazon.com/images/P/B000051TIT.01.MZZZZZZZ.jpg</image>
352
+ <image size="large">http://images.amazon.com/images/P/B000051TIT.01.MZZZZZZZ.jpg</image>
353
+ </track>
354
+ <track>
355
+ <name>Constellations</name>
356
+ <playcount>1</playcount>
357
+ <tagcount></tagcount>
358
+ <mbid></mbid>
359
+ <url>http://www.last.fm/music/Jack+Johnson/_/Constellations</url>
360
+ <streamable fulltrack="1">1</streamable>
361
+ <artist>
362
+ <name>Jack Johnson</name>
363
+ <mbid>ff6e677f-91dd-4986-a174-8db0474b1799</mbid>
364
+ <url>http://www.last.fm/music/Jack+Johnson</url>
365
+ </artist>
366
+ <image size="small">http://userserve-ak.last.fm/serve/34s/8673183.jpg</image>
367
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/8673183.jpg</image>
368
+ <image size="large">http://userserve-ak.last.fm/serve/126/8673183.jpg</image>
369
+ </track>
370
+ <track>
371
+ <name>Anything Can Happen in the Next Half Hour...</name>
372
+ <playcount>1</playcount>
373
+ <tagcount></tagcount>
374
+ <mbid></mbid>
375
+ <url>http://www.last.fm/music/Enter+Shikari/_/Anything+Can+Happen+in+the+Next+Half+Hour...</url>
376
+ <streamable fulltrack="0">1</streamable>
377
+ <artist>
378
+ <name>Enter Shikari</name>
379
+ <mbid>329f95db-f02e-40bf-a5f7-0dea11529ce3</mbid>
380
+ <url>http://www.last.fm/music/Enter+Shikari</url>
381
+ </artist>
382
+ </track>
383
+ <track>
384
+ <name>Fiesta</name>
385
+ <playcount>1</playcount>
386
+ <tagcount></tagcount>
387
+ <mbid></mbid>
388
+ <url>http://www.last.fm/music/The+Pogues/_/Fiesta</url>
389
+ <streamable fulltrack="0">1</streamable>
390
+ <artist>
391
+ <name>The Pogues</name>
392
+ <mbid>d41a6875-b626-4c0f-89a1-aecb643d29ff</mbid>
393
+ <url>http://www.last.fm/music/The+Pogues</url>
394
+ </artist>
395
+ <image size="small">http://images.amazon.com/images/P/B0006957SA.01.MZZZZZZZ.jpg</image>
396
+ <image size="medium">http://images.amazon.com/images/P/B0006957SA.01.MZZZZZZZ.jpg</image>
397
+ <image size="large">http://images.amazon.com/images/P/B0006957SA.01.MZZZZZZZ.jpg</image>
398
+ </track>
399
+ <track>
400
+ <name>Nichts tät ich lieber</name>
401
+ <playcount>1</playcount>
402
+ <tagcount></tagcount>
403
+ <mbid></mbid>
404
+ <url>http://www.last.fm/music/Jennifer+Rostock/_/Nichts+t%C3%A4t+ich+lieber</url>
405
+ <streamable fulltrack="0">1</streamable>
406
+ <artist>
407
+ <name>Jennifer Rostock</name>
408
+ <mbid></mbid>
409
+ <url>http://www.last.fm/music/Jennifer+Rostock</url>
410
+ </artist>
411
+ <image size="small">http://userserve-ak.last.fm/serve/34s/4393040.jpg</image>
412
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/4393040.jpg</image>
413
+ <image size="large">http://userserve-ak.last.fm/serve/126/4393040.jpg</image>
414
+ </track>
415
+ <track>
416
+ <name>Title and Registration</name>
417
+ <playcount>1</playcount>
418
+ <tagcount></tagcount>
419
+ <mbid></mbid>
420
+ <url>http://www.last.fm/music/Death+Cab+for+Cutie/_/Title+and+Registration</url>
421
+ <streamable fulltrack="0">1</streamable>
422
+ <artist>
423
+ <name>Death Cab for Cutie</name>
424
+ <mbid>0039c7ae-e1a7-4a7d-9b49-0cbc716821a6</mbid>
425
+ <url>http://www.last.fm/music/Death+Cab+for+Cutie</url>
426
+ </artist>
427
+ <image size="small">http://userserve-ak.last.fm/serve/34s/15213861.jpg</image>
428
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/15213861.jpg</image>
429
+ <image size="large">http://userserve-ak.last.fm/serve/126/15213861.jpg</image>
430
+ </track>
431
+ <track>
432
+ <name>Love Bass</name>
433
+ <playcount>1</playcount>
434
+ <tagcount></tagcount>
435
+ <mbid></mbid>
436
+ <url>http://www.last.fm/music/Westbam/_/Love+Bass</url>
437
+ <streamable fulltrack="0">1</streamable>
438
+ <artist>
439
+ <name>Westbam</name>
440
+ <mbid>12d5646a-b9e3-4510-ad37-5682c02a66ef</mbid>
441
+ <url>http://www.last.fm/music/Westbam</url>
442
+ </artist>
443
+ <image size="small">http://userserve-ak.last.fm/serve/34s/19606743.jpg</image>
444
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/19606743.jpg</image>
445
+ <image size="large">http://userserve-ak.last.fm/serve/126/19606743.jpg</image>
446
+ </track>
447
+ <track>
448
+ <name>It's a Hit</name>
449
+ <playcount>1</playcount>
450
+ <tagcount></tagcount>
451
+ <mbid></mbid>
452
+ <url>http://www.last.fm/music/We+Are+Scientists/_/It%27s+a+Hit</url>
453
+ <streamable fulltrack="0">1</streamable>
454
+ <artist>
455
+ <name>We Are Scientists</name>
456
+ <mbid>9386b36e-87f3-4716-a219-79a07a4e29cc</mbid>
457
+ <url>http://www.last.fm/music/We+Are+Scientists</url>
458
+ </artist>
459
+ <image size="small">http://userserve-ak.last.fm/serve/34s/28303839.jpg</image>
460
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/28303839.jpg</image>
461
+ <image size="large">http://userserve-ak.last.fm/serve/126/28303839.jpg</image>
462
+ </track>
463
+ <track>
464
+ <name>Käfer</name>
465
+ <playcount>1</playcount>
466
+ <tagcount></tagcount>
467
+ <mbid></mbid>
468
+ <url>http://www.last.fm/music/Die+%C3%84rzte/_/K%C3%A4fer</url>
469
+ <streamable fulltrack="0">1</streamable>
470
+ <artist>
471
+ <name>Die Ärzte</name>
472
+ <mbid>f2fb0ff0-5679-42ec-a55c-15109ce6e320</mbid>
473
+ <url>http://www.last.fm/music/Die+%C3%84rzte</url>
474
+ </artist>
475
+ <image size="small">http://userserve-ak.last.fm/serve/34s/3521392.jpg</image>
476
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/3521392.jpg</image>
477
+ <image size="large">http://userserve-ak.last.fm/serve/126/3521392.jpg</image>
478
+ </track>
479
+ <track>
480
+ <name>Binary Love</name>
481
+ <playcount>1</playcount>
482
+ <tagcount></tagcount>
483
+ <mbid></mbid>
484
+ <url>http://www.last.fm/music/The+Rakes/_/Binary+Love</url>
485
+ <streamable fulltrack="1">1</streamable>
486
+ <artist>
487
+ <name>The Rakes</name>
488
+ <mbid>8e05a404-3f8d-4b0a-9fc2-b7ab821b75f0</mbid>
489
+ <url>http://www.last.fm/music/The+Rakes</url>
490
+ </artist>
491
+ <image size="small">http://userserve-ak.last.fm/serve/34s/11292073.jpg</image>
492
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/11292073.jpg</image>
493
+ <image size="large">http://userserve-ak.last.fm/serve/126/11292073.jpg</image>
494
+ </track>
495
+ <track>
496
+ <name>Schönheit der Chance</name>
497
+ <playcount>1</playcount>
498
+ <tagcount></tagcount>
499
+ <mbid></mbid>
500
+ <url>http://www.last.fm/music/Tomte/_/Sch%C3%B6nheit+der+Chance</url>
501
+ <streamable fulltrack="0">0</streamable>
502
+ <artist>
503
+ <name>Tomte</name>
504
+ <mbid>a18015b2-6584-4110-9f7f-23c95b2b066c</mbid>
505
+ <url>http://www.last.fm/music/Tomte</url>
506
+ </artist>
507
+ </track>
508
+ <track>
509
+ <name>Rock the House</name>
510
+ <playcount>1</playcount>
511
+ <tagcount></tagcount>
512
+ <mbid></mbid>
513
+ <url>http://www.last.fm/music/Gorillaz/_/Rock+the+House</url>
514
+ <streamable fulltrack="0">1</streamable>
515
+ <artist>
516
+ <name>Gorillaz</name>
517
+ <mbid>e21857d5-3256-4547-afb3-4b6ded592596</mbid>
518
+ <url>http://www.last.fm/music/Gorillaz</url>
519
+ </artist>
520
+ <image size="small">http://userserve-ak.last.fm/serve/34s/24507751.png</image>
521
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/24507751.png</image>
522
+ <image size="large">http://userserve-ak.last.fm/serve/126/24507751.png</image>
523
+ </track>
524
+ <track>
525
+ <name>'Til Kingdom Come</name>
526
+ <playcount>1</playcount>
527
+ <tagcount></tagcount>
528
+ <mbid></mbid>
529
+ <url>http://www.last.fm/music/Coldplay/_/%27Til+Kingdom+Come</url>
530
+ <streamable fulltrack="0">0</streamable>
531
+ <artist>
532
+ <name>Coldplay</name>
533
+ <mbid>cc197bad-dc9c-440d-a5b5-d52ba2e14234</mbid>
534
+ <url>http://www.last.fm/music/Coldplay</url>
535
+ </artist>
536
+ <image size="small">http://images.amazon.com/images/P/B0006L16N8.01.MZZZZZZZ.jpg</image>
537
+ <image size="medium">http://images.amazon.com/images/P/B0006L16N8.01.MZZZZZZZ.jpg</image>
538
+ <image size="large">http://images.amazon.com/images/P/B0006L16N8.01.MZZZZZZZ.jpg</image>
539
+ </track>
540
+ <track>
541
+ <name>Test Transmission</name>
542
+ <playcount>1</playcount>
543
+ <tagcount></tagcount>
544
+ <mbid></mbid>
545
+ <url>http://www.last.fm/music/Kasabian/_/Test+Transmission</url>
546
+ <streamable fulltrack="0">1</streamable>
547
+ <artist>
548
+ <name>Kasabian</name>
549
+ <mbid>69b39eab-6577-46a4-a9f5-817839092033</mbid>
550
+ <url>http://www.last.fm/music/Kasabian</url>
551
+ </artist>
552
+ <image size="small">http://userserve-ak.last.fm/serve/34s/19746191.jpg</image>
553
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/19746191.jpg</image>
554
+ <image size="large">http://userserve-ak.last.fm/serve/126/19746191.jpg</image>
555
+ </track>
556
+ <track>
557
+ <name>I Believe I Can Fly</name>
558
+ <playcount>1</playcount>
559
+ <tagcount></tagcount>
560
+ <mbid></mbid>
561
+ <url>http://www.last.fm/music/R.+Kelly/_/I+Believe+I+Can+Fly</url>
562
+ <streamable fulltrack="0">1</streamable>
563
+ <artist>
564
+ <name>R. Kelly</name>
565
+ <mbid>c2d25856-a09a-4d15-b404-77dd19c19e63</mbid>
566
+ <url>http://www.last.fm/music/R.+Kelly</url>
567
+ </artist>
568
+ <image size="small">http://images.amazon.com/images/P/B0000C0FB9.01._SCMZZZZZZZ_.jpg</image>
569
+ <image size="medium">http://images.amazon.com/images/P/B0000C0FB9.01._SCMZZZZZZZ_.jpg</image>
570
+ <image size="large">http://images.amazon.com/images/P/B0000C0FB9.01._SCMZZZZZZZ_.jpg</image>
571
+ </track>
572
+ <track>
573
+ <name>Violins</name>
574
+ <playcount>1</playcount>
575
+ <tagcount></tagcount>
576
+ <mbid></mbid>
577
+ <url>http://www.last.fm/music/Yellowcard/_/Violins</url>
578
+ <streamable fulltrack="0">0</streamable>
579
+ <artist>
580
+ <name>Yellowcard</name>
581
+ <mbid>3630fff3-52fc-4e97-ab01-d68fd88e4135</mbid>
582
+ <url>http://www.last.fm/music/Yellowcard</url>
583
+ </artist>
584
+ <image size="small">http://userserve-ak.last.fm/serve/34s/24063621.jpg</image>
585
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/24063621.jpg</image>
586
+ <image size="large">http://userserve-ak.last.fm/serve/126/24063621.jpg</image>
587
+ </track>
588
+ <track>
589
+ <name>She Was Great</name>
590
+ <playcount>1</playcount>
591
+ <tagcount></tagcount>
592
+ <mbid></mbid>
593
+ <url>http://www.last.fm/music/Beatsteaks/_/She+Was+Great</url>
594
+ <streamable fulltrack="0">1</streamable>
595
+ <artist>
596
+ <name>Beatsteaks</name>
597
+ <mbid>a9b88ebb-83aa-4ef7-b674-fabeb572c14e</mbid>
598
+ <url>http://www.last.fm/music/Beatsteaks</url>
599
+ </artist>
600
+ <image size="small">http://userserve-ak.last.fm/serve/34s/9114845.jpg</image>
601
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/9114845.jpg</image>
602
+ <image size="large">http://userserve-ak.last.fm/serve/126/9114845.jpg</image>
603
+ </track>
604
+ <track>
605
+ <name>Willkommen im Club</name>
606
+ <playcount>1</playcount>
607
+ <tagcount></tagcount>
608
+ <mbid></mbid>
609
+ <url>http://www.last.fm/music/Sportfreunde+Stiller/_/Willkommen+im+Club</url>
610
+ <streamable fulltrack="1">1</streamable>
611
+ <artist>
612
+ <name>Sportfreunde Stiller</name>
613
+ <mbid>35581de7-591f-424f-9c64-7b22fd45605e</mbid>
614
+ <url>http://www.last.fm/music/Sportfreunde+Stiller</url>
615
+ </artist>
616
+ <image size="small">http://userserve-ak.last.fm/serve/34s/8730555.jpg</image>
617
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/8730555.jpg</image>
618
+ <image size="large">http://userserve-ak.last.fm/serve/126/8730555.jpg</image>
619
+ </track>
620
+ <track>
621
+ <name>Never Meant To Hurt You</name>
622
+ <playcount>1</playcount>
623
+ <tagcount></tagcount>
624
+ <mbid></mbid>
625
+ <url>http://www.last.fm/music/Good+Shoes/_/Never+Meant+To+Hurt+You</url>
626
+ <streamable fulltrack="0">1</streamable>
627
+ <artist>
628
+ <name>Good Shoes</name>
629
+ <mbid>789e5db3-502b-4f13-8039-88c70e053fa5</mbid>
630
+ <url>http://www.last.fm/music/Good+Shoes</url>
631
+ </artist>
632
+ <image size="small">http://userserve-ak.last.fm/serve/34s/13946885.jpg</image>
633
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/13946885.jpg</image>
634
+ <image size="large">http://userserve-ak.last.fm/serve/126/13946885.jpg</image>
635
+ </track>
636
+ <track>
637
+ <name>I Can't Stop This Feeling I've Got</name>
638
+ <playcount>1</playcount>
639
+ <tagcount></tagcount>
640
+ <mbid></mbid>
641
+ <url>http://www.last.fm/music/Razorlight/_/I+Can%27t+Stop+This+Feeling+I%27ve+Got</url>
642
+ <streamable fulltrack="1">1</streamable>
643
+ <artist>
644
+ <name>Razorlight</name>
645
+ <mbid>f2cb0435-d643-4fab-9587-fdb0279330a7</mbid>
646
+ <url>http://www.last.fm/music/Razorlight</url>
647
+ </artist>
648
+ <image size="small">http://userserve-ak.last.fm/serve/34s/8846369.jpg</image>
649
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/8846369.jpg</image>
650
+ <image size="large">http://userserve-ak.last.fm/serve/126/8846369.jpg</image>
651
+ </track>
652
+ <track>
653
+ <name>Men Are Bastards</name>
654
+ <playcount>1</playcount>
655
+ <tagcount></tagcount>
656
+ <mbid></mbid>
657
+ <url>http://www.last.fm/music/Elle+Milano/_/Men+Are+Bastards</url>
658
+ <streamable fulltrack="0">1</streamable>
659
+ <artist>
660
+ <name>Elle Milano</name>
661
+ <mbid>fdbbe6d2-540d-48df-9dfa-3bfebf8688e1</mbid>
662
+ <url>http://www.last.fm/music/Elle+Milano</url>
663
+ </artist>
664
+ <image size="small">http://userserve-ak.last.fm/serve/34s/9579901.jpg</image>
665
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/9579901.jpg</image>
666
+ <image size="large">http://userserve-ak.last.fm/serve/126/9579901.jpg</image>
667
+ </track>
668
+ <track>
669
+ <name>The Start of Something</name>
670
+ <playcount>1</playcount>
671
+ <tagcount></tagcount>
672
+ <mbid></mbid>
673
+ <url>http://www.last.fm/music/Voxtrot/_/The+Start+of+Something</url>
674
+ <streamable fulltrack="1">1</streamable>
675
+ <artist>
676
+ <name>Voxtrot</name>
677
+ <mbid>c163f6f1-84c0-48fa-81c5-8129739b6c3c</mbid>
678
+ <url>http://www.last.fm/music/Voxtrot</url>
679
+ </artist>
680
+ <image size="small">http://userserve-ak.last.fm/serve/34s/9727983.jpg</image>
681
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/9727983.jpg</image>
682
+ <image size="large">http://userserve-ak.last.fm/serve/126/9727983.jpg</image>
683
+ </track>
684
+ <track>
685
+ <name>That's Not My Name</name>
686
+ <playcount>1</playcount>
687
+ <tagcount></tagcount>
688
+ <mbid></mbid>
689
+ <url>http://www.last.fm/music/The+Ting+Tings/_/That%27s+Not+My+Name</url>
690
+ <streamable fulltrack="0">1</streamable>
691
+ <artist>
692
+ <name>The Ting Tings</name>
693
+ <mbid></mbid>
694
+ <url>http://www.last.fm/music/The+Ting+Tings</url>
695
+ </artist>
696
+ <image size="small">http://userserve-ak.last.fm/serve/34s/25723581.png</image>
697
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/25723581.png</image>
698
+ <image size="large">http://userserve-ak.last.fm/serve/126/25723581.png</image>
699
+ </track>
700
+ <track>
701
+ <name>Hands Clean</name>
702
+ <playcount>1</playcount>
703
+ <tagcount></tagcount>
704
+ <mbid></mbid>
705
+ <url>http://www.last.fm/music/Alanis+Morissette/_/Hands+Clean</url>
706
+ <streamable fulltrack="0">1</streamable>
707
+ <artist>
708
+ <name>Alanis Morissette</name>
709
+ <mbid>4bdcee62-4902-4773-8cd1-e252e2e31225</mbid>
710
+ <url>http://www.last.fm/music/Alanis+Morissette</url>
711
+ </artist>
712
+ <image size="small">http://userserve-ak.last.fm/serve/34s/8676033.jpg</image>
713
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/8676033.jpg</image>
714
+ <image size="large">http://userserve-ak.last.fm/serve/126/8676033.jpg</image>
715
+ </track>
716
+ <track>
717
+ <name>Halo</name>
718
+ <playcount>1</playcount>
719
+ <tagcount></tagcount>
720
+ <mbid></mbid>
721
+ <url>http://www.last.fm/music/Bloc+Party/_/Halo</url>
722
+ <streamable fulltrack="1">1</streamable>
723
+ <artist>
724
+ <name>Bloc Party</name>
725
+ <mbid>8c538f11-c141-4588-8ecb-931083524186</mbid>
726
+ <url>http://www.last.fm/music/Bloc+Party</url>
727
+ </artist>
728
+ </track>
729
+ <track>
730
+ <name>4th Dimensional Transition</name>
731
+ <playcount>1</playcount>
732
+ <tagcount></tagcount>
733
+ <mbid></mbid>
734
+ <url>http://www.last.fm/music/MGMT/_/4th+Dimensional+Transition</url>
735
+ <streamable fulltrack="0">1</streamable>
736
+ <artist>
737
+ <name>MGMT</name>
738
+ <mbid>c485632c-b784-4ee9-8ea1-c5fb365681fc</mbid>
739
+ <url>http://www.last.fm/music/MGMT</url>
740
+ </artist>
741
+ <image size="small">http://userserve-ak.last.fm/serve/34s/22357783.jpg</image>
742
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/22357783.jpg</image>
743
+ <image size="large">http://userserve-ak.last.fm/serve/126/22357783.jpg</image>
744
+ </track>
745
+ <track>
746
+ <name>hier und jetzt</name>
747
+ <playcount>1</playcount>
748
+ <tagcount></tagcount>
749
+ <mbid></mbid>
750
+ <url>http://www.last.fm/music/Killerpilze/_/hier+und+jetzt</url>
751
+ <streamable fulltrack="1">1</streamable>
752
+ <artist>
753
+ <name>Killerpilze</name>
754
+ <mbid>27d6d2e2-2542-4270-864b-95aff7d0a485</mbid>
755
+ <url>http://www.last.fm/music/Killerpilze</url>
756
+ </artist>
757
+ <image size="small">http://userserve-ak.last.fm/serve/34s/10092027.jpg</image>
758
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/10092027.jpg</image>
759
+ <image size="large">http://userserve-ak.last.fm/serve/126/10092027.jpg</image>
760
+ </track>
761
+ <track>
762
+ <name>Anarchy Camp</name>
763
+ <playcount>1</playcount>
764
+ <tagcount></tagcount>
765
+ <mbid></mbid>
766
+ <url>http://www.last.fm/music/NOFX/_/Anarchy+Camp</url>
767
+ <streamable fulltrack="0">1</streamable>
768
+ <artist>
769
+ <name>NOFX</name>
770
+ <mbid>dcaa4f81-bfb7-44eb-8594-4e74f004b6e4</mbid>
771
+ <url>http://www.last.fm/music/NOFX</url>
772
+ </artist>
773
+ <image size="small">http://userserve-ak.last.fm/serve/34s/12625529.jpg</image>
774
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/12625529.jpg</image>
775
+ <image size="large">http://userserve-ak.last.fm/serve/126/12625529.jpg</image>
776
+ </track>
777
+ </tracks></lfm>