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,780 @@
1
+ <?xml version="1.0" encoding="utf-8"?>
2
+ <lfm status="ok">
3
+ <tracks user="xhochy" page="5" perPage="50" totalPages="34">
4
+ <track>
5
+ <name>The Enemy</name>
6
+ <playcount>23</playcount>
7
+ <tagcount></tagcount>
8
+ <mbid></mbid>
9
+ <url>http://www.last.fm/music/Dirty+Pretty+Things/_/The+Enemy</url>
10
+ <streamable fulltrack="1">1</streamable>
11
+ <artist>
12
+ <name>Dirty Pretty Things</name>
13
+ <mbid>648615ca-ca74-460d-928a-2bae67ae6d14</mbid>
14
+ <url>http://www.last.fm/music/Dirty+Pretty+Things</url>
15
+ </artist>
16
+ <image size="small">http://userserve-ak.last.fm/serve/34s/8810557.jpg</image>
17
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/8810557.jpg</image>
18
+ <image size="large">http://userserve-ak.last.fm/serve/126/8810557.jpg</image>
19
+ </track>
20
+ <track>
21
+ <name>Alles Neu</name>
22
+ <playcount>23</playcount>
23
+ <tagcount></tagcount>
24
+ <mbid></mbid>
25
+ <url>http://www.last.fm/music/Peter+Fox/_/Alles+Neu</url>
26
+ <streamable fulltrack="0">1</streamable>
27
+ <artist>
28
+ <name>Peter Fox</name>
29
+ <mbid></mbid>
30
+ <url>http://www.last.fm/music/Peter+Fox</url>
31
+ </artist>
32
+ </track>
33
+ <track>
34
+ <name>Lords of the Boards</name>
35
+ <playcount>23</playcount>
36
+ <tagcount></tagcount>
37
+ <mbid></mbid>
38
+ <url>http://www.last.fm/music/Guano+Apes/_/Lords+of+the+Boards</url>
39
+ <streamable fulltrack="0">1</streamable>
40
+ <artist>
41
+ <name>Guano Apes</name>
42
+ <mbid>66da25f9-1534-4dd1-b88c-718bc24e1ccd</mbid>
43
+ <url>http://www.last.fm/music/Guano+Apes</url>
44
+ </artist>
45
+ <image size="small">http://userserve-ak.last.fm/serve/34s/11847867.jpg</image>
46
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/11847867.jpg</image>
47
+ <image size="large">http://userserve-ak.last.fm/serve/126/11847867.jpg</image>
48
+ </track>
49
+ <track>
50
+ <name>Violet Hill</name>
51
+ <playcount>23</playcount>
52
+ <tagcount></tagcount>
53
+ <mbid></mbid>
54
+ <url>http://www.last.fm/music/Coldplay/_/Violet+Hill</url>
55
+ <streamable fulltrack="0">1</streamable>
56
+ <artist>
57
+ <name>Coldplay</name>
58
+ <mbid>cc197bad-dc9c-440d-a5b5-d52ba2e14234</mbid>
59
+ <url>http://www.last.fm/music/Coldplay</url>
60
+ </artist>
61
+ <image size="small">http://userserve-ak.last.fm/serve/34s/15186515.jpg</image>
62
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/15186515.jpg</image>
63
+ <image size="large">http://userserve-ak.last.fm/serve/126/15186515.jpg</image>
64
+ </track>
65
+ <track>
66
+ <name>Diese Kinder</name>
67
+ <playcount>22</playcount>
68
+ <tagcount></tagcount>
69
+ <mbid></mbid>
70
+ <url>http://www.last.fm/music/Madsen/_/Diese+Kinder</url>
71
+ <streamable fulltrack="1">1</streamable>
72
+ <artist>
73
+ <name>Madsen</name>
74
+ <mbid>8a0c3b86-af55-42d2-85b9-6372e7430986</mbid>
75
+ <url>http://www.last.fm/music/Madsen</url>
76
+ </artist>
77
+ <image size="small">http://userserve-ak.last.fm/serve/34s/8743285.jpg</image>
78
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/8743285.jpg</image>
79
+ <image size="large">http://userserve-ak.last.fm/serve/126/8743285.jpg</image>
80
+ </track>
81
+ <track>
82
+ <name>Uhn Tiss Uhn Tiss Uhn Tiss</name>
83
+ <playcount>22</playcount>
84
+ <tagcount></tagcount>
85
+ <mbid></mbid>
86
+ <url>http://www.last.fm/music/Bloodhound+Gang/_/Uhn+Tiss+Uhn+Tiss+Uhn+Tiss</url>
87
+ <streamable fulltrack="0">1</streamable>
88
+ <artist>
89
+ <name>Bloodhound Gang</name>
90
+ <mbid>b2dbfc09-b332-408b-a235-1850e41971c5</mbid>
91
+ <url>http://www.last.fm/music/Bloodhound+Gang</url>
92
+ </artist>
93
+ </track>
94
+ <track>
95
+ <name>Voodoo People</name>
96
+ <playcount>22</playcount>
97
+ <tagcount></tagcount>
98
+ <mbid></mbid>
99
+ <url>http://www.last.fm/music/The+Prodigy/_/Voodoo+People</url>
100
+ <streamable fulltrack="0">1</streamable>
101
+ <artist>
102
+ <name>The Prodigy</name>
103
+ <mbid>4a4ee089-93b1-4470-af9a-6ff575d32704</mbid>
104
+ <url>http://www.last.fm/music/The+Prodigy</url>
105
+ </artist>
106
+ <image size="small">http://userserve-ak.last.fm/serve/34s/12622007.jpg</image>
107
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/12622007.jpg</image>
108
+ <image size="large">http://userserve-ak.last.fm/serve/126/12622007.jpg</image>
109
+ </track>
110
+ <track>
111
+ <name>Worker Bees</name>
112
+ <playcount>22</playcount>
113
+ <tagcount></tagcount>
114
+ <mbid></mbid>
115
+ <url>http://www.last.fm/music/Billy+Talent/_/Worker+Bees</url>
116
+ <streamable fulltrack="0">1</streamable>
117
+ <artist>
118
+ <name>Billy Talent</name>
119
+ <mbid>fd429857-5ace-4609-ae54-1502c3bdac11</mbid>
120
+ <url>http://www.last.fm/music/Billy+Talent</url>
121
+ </artist>
122
+ <image size="small">http://userserve-ak.last.fm/serve/34s/28906727.jpg</image>
123
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/28906727.jpg</image>
124
+ <image size="large">http://userserve-ak.last.fm/serve/126/28906727.jpg</image>
125
+ </track>
126
+ <track>
127
+ <name>Baby Fratelli</name>
128
+ <playcount>22</playcount>
129
+ <tagcount></tagcount>
130
+ <mbid></mbid>
131
+ <url>http://www.last.fm/music/The+Fratellis/_/Baby+Fratelli</url>
132
+ <streamable fulltrack="1">1</streamable>
133
+ <artist>
134
+ <name>The Fratellis</name>
135
+ <mbid></mbid>
136
+ <url>http://www.last.fm/music/The+Fratellis</url>
137
+ </artist>
138
+ <image size="small">http://userserve-ak.last.fm/serve/34s/9033529.jpg</image>
139
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/9033529.jpg</image>
140
+ <image size="large">http://userserve-ak.last.fm/serve/126/9033529.jpg</image>
141
+ </track>
142
+ <track>
143
+ <name>Numb/Encore</name>
144
+ <playcount>22</playcount>
145
+ <tagcount>2</tagcount>
146
+ <mbid></mbid>
147
+ <url>http://www.last.fm/music/Jay-Z+and+Linkin+Park/_/Numb%252FEncore</url>
148
+ <streamable fulltrack="0">1</streamable>
149
+ <artist>
150
+ <name>Jay-Z and Linkin Park</name>
151
+ <mbid>ae681605-2801-4120-9a48-e18752042306</mbid>
152
+ <url>http://www.last.fm/music/Jay-Z+and+Linkin+Park</url>
153
+ </artist>
154
+ <image size="small">http://images.amazon.com/images/P/B00069A6PE.01.MZZZZZZZ.jpg</image>
155
+ <image size="medium">http://images.amazon.com/images/P/B00069A6PE.01.MZZZZZZZ.jpg</image>
156
+ <image size="large">http://images.amazon.com/images/P/B00069A6PE.01.MZZZZZZZ.jpg</image>
157
+ </track>
158
+ <track>
159
+ <name>No Speech</name>
160
+ <playcount>22</playcount>
161
+ <tagcount></tagcount>
162
+ <mbid></mbid>
163
+ <url>http://www.last.fm/music/Guano+Apes/_/No+Speech</url>
164
+ <streamable fulltrack="0">1</streamable>
165
+ <artist>
166
+ <name>Guano Apes</name>
167
+ <mbid>66da25f9-1534-4dd1-b88c-718bc24e1ccd</mbid>
168
+ <url>http://www.last.fm/music/Guano+Apes</url>
169
+ </artist>
170
+ <image size="small">http://images.amazon.com/images/P/B00005261A.01.MZZZZZZZ.jpg</image>
171
+ <image size="medium">http://images.amazon.com/images/P/B00005261A.01.MZZZZZZZ.jpg</image>
172
+ <image size="large">http://images.amazon.com/images/P/B00005261A.01.MZZZZZZZ.jpg</image>
173
+ </track>
174
+ <track>
175
+ <name>Pretty in Scarlet</name>
176
+ <playcount>22</playcount>
177
+ <tagcount></tagcount>
178
+ <mbid></mbid>
179
+ <url>http://www.last.fm/music/Guano+Apes/_/Pretty+in+Scarlet</url>
180
+ <streamable fulltrack="0">1</streamable>
181
+ <artist>
182
+ <name>Guano Apes</name>
183
+ <mbid>66da25f9-1534-4dd1-b88c-718bc24e1ccd</mbid>
184
+ <url>http://www.last.fm/music/Guano+Apes</url>
185
+ </artist>
186
+ <image size="small">http://userserve-ak.last.fm/serve/34s/22670585.jpg</image>
187
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/22670585.jpg</image>
188
+ <image size="large">http://userserve-ak.last.fm/serve/126/22670585.jpg</image>
189
+ </track>
190
+ <track>
191
+ <name>She</name>
192
+ <playcount>22</playcount>
193
+ <tagcount></tagcount>
194
+ <mbid></mbid>
195
+ <url>http://www.last.fm/music/Green+Day/_/She</url>
196
+ <streamable fulltrack="0">1</streamable>
197
+ <artist>
198
+ <name>Green Day</name>
199
+ <mbid>084308bd-1654-436f-ba03-df6697104e19</mbid>
200
+ <url>http://www.last.fm/music/Green+Day</url>
201
+ </artist>
202
+ <image size="small">http://userserve-ak.last.fm/serve/34s/8624469.jpg</image>
203
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/8624469.jpg</image>
204
+ <image size="large">http://userserve-ak.last.fm/serve/126/8624469.jpg</image>
205
+ </track>
206
+ <track>
207
+ <name>Immer mehr</name>
208
+ <playcount>22</playcount>
209
+ <tagcount></tagcount>
210
+ <mbid></mbid>
211
+ <url>http://www.last.fm/music/Madsen/_/Immer+mehr</url>
212
+ <streamable fulltrack="0">0</streamable>
213
+ <artist>
214
+ <name>Madsen</name>
215
+ <mbid>8a0c3b86-af55-42d2-85b9-6372e7430986</mbid>
216
+ <url>http://www.last.fm/music/Madsen</url>
217
+ </artist>
218
+ </track>
219
+ <track>
220
+ <name>Plastic Mouth</name>
221
+ <playcount>21</playcount>
222
+ <tagcount></tagcount>
223
+ <mbid></mbid>
224
+ <url>http://www.last.fm/music/Guano+Apes/_/Plastic+Mouth</url>
225
+ <streamable fulltrack="0">1</streamable>
226
+ <artist>
227
+ <name>Guano Apes</name>
228
+ <mbid>66da25f9-1534-4dd1-b88c-718bc24e1ccd</mbid>
229
+ <url>http://www.last.fm/music/Guano+Apes</url>
230
+ </artist>
231
+ <image size="small">http://userserve-ak.last.fm/serve/34s/22670585.jpg</image>
232
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/22670585.jpg</image>
233
+ <image size="large">http://userserve-ak.last.fm/serve/126/22670585.jpg</image>
234
+ </track>
235
+ <track>
236
+ <name>Open Your Eyes</name>
237
+ <playcount>21</playcount>
238
+ <tagcount></tagcount>
239
+ <mbid></mbid>
240
+ <url>http://www.last.fm/music/Guano+Apes/_/Open+Your+Eyes</url>
241
+ <streamable fulltrack="0">1</streamable>
242
+ <artist>
243
+ <name>Guano Apes</name>
244
+ <mbid>66da25f9-1534-4dd1-b88c-718bc24e1ccd</mbid>
245
+ <url>http://www.last.fm/music/Guano+Apes</url>
246
+ </artist>
247
+ <image size="small">http://userserve-ak.last.fm/serve/34s/11847867.jpg</image>
248
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/11847867.jpg</image>
249
+ <image size="large">http://userserve-ak.last.fm/serve/126/11847867.jpg</image>
250
+ </track>
251
+ <track>
252
+ <name>Surrender</name>
253
+ <playcount>21</playcount>
254
+ <tagcount></tagcount>
255
+ <mbid></mbid>
256
+ <url>http://www.last.fm/music/Billy+Talent/_/Surrender</url>
257
+ <streamable fulltrack="0">1</streamable>
258
+ <artist>
259
+ <name>Billy Talent</name>
260
+ <mbid>fd429857-5ace-4609-ae54-1502c3bdac11</mbid>
261
+ <url>http://www.last.fm/music/Billy+Talent</url>
262
+ </artist>
263
+ <image size="small">http://userserve-ak.last.fm/serve/34s/28906727.jpg</image>
264
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/28906727.jpg</image>
265
+ <image size="large">http://userserve-ak.last.fm/serve/126/28906727.jpg</image>
266
+ </track>
267
+ <track>
268
+ <name>A Little More for Little You</name>
269
+ <playcount>21</playcount>
270
+ <tagcount></tagcount>
271
+ <mbid></mbid>
272
+ <url>http://www.last.fm/music/The+Hives/_/A+Little+More+for+Little+You</url>
273
+ <streamable fulltrack="1">1</streamable>
274
+ <artist>
275
+ <name>The Hives</name>
276
+ <mbid>487bfd74-71bf-46dd-b89c-80b7a0f06f2f</mbid>
277
+ <url>http://www.last.fm/music/The+Hives</url>
278
+ </artist>
279
+ <image size="small">http://userserve-ak.last.fm/serve/34s/8676489.jpg</image>
280
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/8676489.jpg</image>
281
+ <image size="large">http://userserve-ak.last.fm/serve/126/8676489.jpg</image>
282
+ </track>
283
+ <track>
284
+ <name>Chelsea Dagger</name>
285
+ <playcount>21</playcount>
286
+ <tagcount></tagcount>
287
+ <mbid></mbid>
288
+ <url>http://www.last.fm/music/The+Fratellis/_/Chelsea+Dagger</url>
289
+ <streamable fulltrack="1">1</streamable>
290
+ <artist>
291
+ <name>The Fratellis</name>
292
+ <mbid></mbid>
293
+ <url>http://www.last.fm/music/The+Fratellis</url>
294
+ </artist>
295
+ <image size="small">http://userserve-ak.last.fm/serve/34s/9033529.jpg</image>
296
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/9033529.jpg</image>
297
+ <image size="large">http://userserve-ak.last.fm/serve/126/9033529.jpg</image>
298
+ </track>
299
+ <track>
300
+ <name>Got Ma Nuts From a Hippy</name>
301
+ <playcount>21</playcount>
302
+ <tagcount></tagcount>
303
+ <mbid></mbid>
304
+ <url>http://www.last.fm/music/The+Fratellis/_/Got+Ma+Nuts+From+a+Hippy</url>
305
+ <streamable fulltrack="0">0</streamable>
306
+ <artist>
307
+ <name>The Fratellis</name>
308
+ <mbid></mbid>
309
+ <url>http://www.last.fm/music/The+Fratellis</url>
310
+ </artist>
311
+ </track>
312
+ <track>
313
+ <name>Come On Home</name>
314
+ <playcount>21</playcount>
315
+ <tagcount></tagcount>
316
+ <mbid></mbid>
317
+ <url>http://www.last.fm/music/Franz+Ferdinand/_/Come+On+Home</url>
318
+ <streamable fulltrack="0">1</streamable>
319
+ <artist>
320
+ <name>Franz Ferdinand</name>
321
+ <mbid>aa7a2827-f74b-473c-bd79-03d065835cf7</mbid>
322
+ <url>http://www.last.fm/music/Franz+Ferdinand</url>
323
+ </artist>
324
+ <image size="small">http://userserve-ak.last.fm/serve/34s/22427459.jpg</image>
325
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/22427459.jpg</image>
326
+ <image size="large">http://userserve-ak.last.fm/serve/126/22427459.jpg</image>
327
+ </track>
328
+ <track>
329
+ <name>Dear Catastrophe Waitress</name>
330
+ <playcount>21</playcount>
331
+ <tagcount></tagcount>
332
+ <mbid></mbid>
333
+ <url>http://www.last.fm/music/Belle+and+Sebastian/_/Dear+Catastrophe+Waitress</url>
334
+ <streamable fulltrack="0">0</streamable>
335
+ <artist>
336
+ <name>Belle and Sebastian</name>
337
+ <mbid>e5c7b94f-e264-473c-bb0f-37c85d4d5c70</mbid>
338
+ <url>http://www.last.fm/music/Belle+and+Sebastian</url>
339
+ </artist>
340
+ <image size="small">http://images.amazon.com/images/P/B0000CBHQ1.01.THUMBZZZ.jpg</image>
341
+ <image size="medium">http://images.amazon.com/images/P/B0000CBHQ1.01.MZZZZZZZ.jpg</image>
342
+ <image size="large">http://images.amazon.com/images/P/B0000CBHQ1.01.LZZZZZZZ.jpg</image>
343
+ </track>
344
+ <track>
345
+ <name>Creepin Up the Backstairs</name>
346
+ <playcount>21</playcount>
347
+ <tagcount></tagcount>
348
+ <mbid></mbid>
349
+ <url>http://www.last.fm/music/The+Fratellis/_/Creepin+Up+the+Backstairs</url>
350
+ <streamable fulltrack="0">0</streamable>
351
+ <artist>
352
+ <name>The Fratellis</name>
353
+ <mbid></mbid>
354
+ <url>http://www.last.fm/music/The+Fratellis</url>
355
+ </artist>
356
+ </track>
357
+ <track>
358
+ <name>The Navy Song</name>
359
+ <playcount>21</playcount>
360
+ <tagcount></tagcount>
361
+ <mbid></mbid>
362
+ <url>http://www.last.fm/music/Billy+Talent/_/The+Navy+Song</url>
363
+ <streamable fulltrack="0">1</streamable>
364
+ <artist>
365
+ <name>Billy Talent</name>
366
+ <mbid>fd429857-5ace-4609-ae54-1502c3bdac11</mbid>
367
+ <url>http://www.last.fm/music/Billy+Talent</url>
368
+ </artist>
369
+ <image size="small">http://userserve-ak.last.fm/serve/34s/10111845.jpg</image>
370
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/10111845.jpg</image>
371
+ <image size="large">http://userserve-ak.last.fm/serve/126/10111845.jpg</image>
372
+ </track>
373
+ <track>
374
+ <name>Where Is the Line?</name>
375
+ <playcount>21</playcount>
376
+ <tagcount></tagcount>
377
+ <mbid></mbid>
378
+ <url>http://www.last.fm/music/Billy+Talent/_/Where+Is+the+Line%3F</url>
379
+ <streamable fulltrack="0">0</streamable>
380
+ <artist>
381
+ <name>Billy Talent</name>
382
+ <mbid>fd429857-5ace-4609-ae54-1502c3bdac11</mbid>
383
+ <url>http://www.last.fm/music/Billy+Talent</url>
384
+ </artist>
385
+ </track>
386
+ <track>
387
+ <name>High</name>
388
+ <playcount>21</playcount>
389
+ <tagcount></tagcount>
390
+ <mbid></mbid>
391
+ <url>http://www.last.fm/music/Guano+Apes/_/High</url>
392
+ <streamable fulltrack="0">1</streamable>
393
+ <artist>
394
+ <name>Guano Apes</name>
395
+ <mbid>66da25f9-1534-4dd1-b88c-718bc24e1ccd</mbid>
396
+ <url>http://www.last.fm/music/Guano+Apes</url>
397
+ </artist>
398
+ <image size="small">http://userserve-ak.last.fm/serve/34s/22670585.jpg</image>
399
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/22670585.jpg</image>
400
+ <image size="large">http://userserve-ak.last.fm/serve/126/22670585.jpg</image>
401
+ </track>
402
+ <track>
403
+ <name>Dirt Off Your Shoulder/Lying From You</name>
404
+ <playcount>21</playcount>
405
+ <tagcount></tagcount>
406
+ <mbid></mbid>
407
+ <url>http://www.last.fm/music/Jay-Z+and+Linkin+Park/_/Dirt%2BOff%2BYour%2BShoulder%252FLying%2BFrom%2BYou</url>
408
+ <streamable fulltrack="0">0</streamable>
409
+ <artist>
410
+ <name>Jay-Z and Linkin Park</name>
411
+ <mbid>ae681605-2801-4120-9a48-e18752042306</mbid>
412
+ <url>http://www.last.fm/music/Jay-Z+and+Linkin+Park</url>
413
+ </artist>
414
+ <image size="small">http://images.amazon.com/images/P/B00069A6PE.01.MZZZZZZZ.jpg</image>
415
+ <image size="medium">http://images.amazon.com/images/P/B00069A6PE.01.MZZZZZZZ.jpg</image>
416
+ <image size="large">http://images.amazon.com/images/P/B00069A6PE.01.MZZZZZZZ.jpg</image>
417
+ </track>
418
+ <track>
419
+ <name>Im Dunkeln</name>
420
+ <playcount>20</playcount>
421
+ <tagcount></tagcount>
422
+ <mbid></mbid>
423
+ <url>http://www.last.fm/music/Madsen/_/Im+Dunkeln</url>
424
+ <streamable fulltrack="1">1</streamable>
425
+ <artist>
426
+ <name>Madsen</name>
427
+ <mbid>8a0c3b86-af55-42d2-85b9-6372e7430986</mbid>
428
+ <url>http://www.last.fm/music/Madsen</url>
429
+ </artist>
430
+ <image size="small">http://userserve-ak.last.fm/serve/34s/8743285.jpg</image>
431
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/8743285.jpg</image>
432
+ <image size="large">http://userserve-ak.last.fm/serve/126/8743285.jpg</image>
433
+ </track>
434
+ <track>
435
+ <name>Jigga What/Faint</name>
436
+ <playcount>20</playcount>
437
+ <tagcount></tagcount>
438
+ <mbid></mbid>
439
+ <url>http://www.last.fm/music/Jay-Z+and+Linkin+Park/_/Jigga%2BWhat%252FFaint</url>
440
+ <streamable fulltrack="0">0</streamable>
441
+ <artist>
442
+ <name>Jay-Z and Linkin Park</name>
443
+ <mbid>ae681605-2801-4120-9a48-e18752042306</mbid>
444
+ <url>http://www.last.fm/music/Jay-Z+and+Linkin+Park</url>
445
+ </artist>
446
+ <image size="small">http://images.amazon.com/images/P/B00069A6PE.01.MZZZZZZZ.jpg</image>
447
+ <image size="medium">http://images.amazon.com/images/P/B00069A6PE.01.MZZZZZZZ.jpg</image>
448
+ <image size="large">http://images.amazon.com/images/P/B00069A6PE.01.MZZZZZZZ.jpg</image>
449
+ </track>
450
+ <track>
451
+ <name>Everybody Knows You Cried Last Night</name>
452
+ <playcount>20</playcount>
453
+ <tagcount></tagcount>
454
+ <mbid></mbid>
455
+ <url>http://www.last.fm/music/The+Fratellis/_/Everybody+Knows+You+Cried+Last+Night</url>
456
+ <streamable fulltrack="1">1</streamable>
457
+ <artist>
458
+ <name>The Fratellis</name>
459
+ <mbid></mbid>
460
+ <url>http://www.last.fm/music/The+Fratellis</url>
461
+ </artist>
462
+ <image size="small">http://userserve-ak.last.fm/serve/34s/9033529.jpg</image>
463
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/9033529.jpg</image>
464
+ <image size="large">http://userserve-ak.last.fm/serve/126/9033529.jpg</image>
465
+ </track>
466
+ <track>
467
+ <name>I Miss You</name>
468
+ <playcount>20</playcount>
469
+ <tagcount></tagcount>
470
+ <mbid></mbid>
471
+ <url>http://www.last.fm/music/blink-182/_/I+Miss+You</url>
472
+ <streamable fulltrack="0">1</streamable>
473
+ <artist>
474
+ <name>blink-182</name>
475
+ <mbid>0743b15a-3c32-48c8-ad58-cb325350befa</mbid>
476
+ <url>http://www.last.fm/music/blink-182</url>
477
+ </artist>
478
+ <image size="small">http://userserve-ak.last.fm/serve/34s/5260368.jpg</image>
479
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/5260368.jpg</image>
480
+ <image size="large">http://userserve-ak.last.fm/serve/126/5260368.jpg</image>
481
+ </track>
482
+ <track>
483
+ <name>Diabolic Scheme</name>
484
+ <playcount>20</playcount>
485
+ <tagcount></tagcount>
486
+ <mbid></mbid>
487
+ <url>http://www.last.fm/music/The+Hives/_/Diabolic+Scheme</url>
488
+ <streamable fulltrack="1">1</streamable>
489
+ <artist>
490
+ <name>The Hives</name>
491
+ <mbid>487bfd74-71bf-46dd-b89c-80b7a0f06f2f</mbid>
492
+ <url>http://www.last.fm/music/The+Hives</url>
493
+ </artist>
494
+ <image size="small">http://userserve-ak.last.fm/serve/34s/8676489.jpg</image>
495
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/8676489.jpg</image>
496
+ <image size="large">http://userserve-ak.last.fm/serve/126/8676489.jpg</image>
497
+ </track>
498
+ <track>
499
+ <name>Sympathy</name>
500
+ <playcount>19</playcount>
501
+ <tagcount></tagcount>
502
+ <mbid></mbid>
503
+ <url>http://www.last.fm/music/Billy+Talent/_/Sympathy</url>
504
+ <streamable fulltrack="0">1</streamable>
505
+ <artist>
506
+ <name>Billy Talent</name>
507
+ <mbid>fd429857-5ace-4609-ae54-1502c3bdac11</mbid>
508
+ <url>http://www.last.fm/music/Billy+Talent</url>
509
+ </artist>
510
+ <image size="small">http://userserve-ak.last.fm/serve/34s/28906727.jpg</image>
511
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/28906727.jpg</image>
512
+ <image size="large">http://userserve-ak.last.fm/serve/126/28906727.jpg</image>
513
+ </track>
514
+ <track>
515
+ <name>Perfect World</name>
516
+ <playcount>19</playcount>
517
+ <tagcount></tagcount>
518
+ <mbid></mbid>
519
+ <url>http://www.last.fm/music/Billy+Talent/_/Perfect+World</url>
520
+ <streamable fulltrack="0">1</streamable>
521
+ <artist>
522
+ <name>Billy Talent</name>
523
+ <mbid>fd429857-5ace-4609-ae54-1502c3bdac11</mbid>
524
+ <url>http://www.last.fm/music/Billy+Talent</url>
525
+ </artist>
526
+ <image size="small">http://userserve-ak.last.fm/serve/34s/28906727.jpg</image>
527
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/28906727.jpg</image>
528
+ <image size="large">http://userserve-ak.last.fm/serve/126/28906727.jpg</image>
529
+ </track>
530
+ <track>
531
+ <name>D Is for Dangerous</name>
532
+ <playcount>19</playcount>
533
+ <tagcount></tagcount>
534
+ <mbid></mbid>
535
+ <url>http://www.last.fm/music/Arctic+Monkeys/_/D+Is+for+Dangerous</url>
536
+ <streamable fulltrack="0">0</streamable>
537
+ <artist>
538
+ <name>Arctic Monkeys</name>
539
+ <mbid>ada7a83c-e3e1-40f1-93f9-3e73dbc9298a</mbid>
540
+ <url>http://www.last.fm/music/Arctic+Monkeys</url>
541
+ </artist>
542
+ <image size="small">http://userserve-ak.last.fm/serve/34s/9131187.jpg</image>
543
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/9131187.jpg</image>
544
+ <image size="large">http://userserve-ak.last.fm/serve/126/9131187.jpg</image>
545
+ </track>
546
+ <track>
547
+ <name>The Worst Hangover Ever</name>
548
+ <playcount>19</playcount>
549
+ <tagcount></tagcount>
550
+ <mbid></mbid>
551
+ <url>http://www.last.fm/music/The+Offspring/_/The+Worst+Hangover+Ever</url>
552
+ <streamable fulltrack="0">1</streamable>
553
+ <artist>
554
+ <name>The Offspring</name>
555
+ <mbid>23a03e33-a603-404e-bcbf-2c00159d7067</mbid>
556
+ <url>http://www.last.fm/music/The+Offspring</url>
557
+ </artist>
558
+ <image size="small">http://userserve-ak.last.fm/serve/34s/23739571.jpg</image>
559
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/23739571.jpg</image>
560
+ <image size="large">http://userserve-ak.last.fm/serve/126/23739571.jpg</image>
561
+ </track>
562
+ <track>
563
+ <name>Fluorescent Adolescent</name>
564
+ <playcount>19</playcount>
565
+ <tagcount></tagcount>
566
+ <mbid></mbid>
567
+ <url>http://www.last.fm/music/Arctic+Monkeys/_/Fluorescent+Adolescent</url>
568
+ <streamable fulltrack="0">1</streamable>
569
+ <artist>
570
+ <name>Arctic Monkeys</name>
571
+ <mbid>ada7a83c-e3e1-40f1-93f9-3e73dbc9298a</mbid>
572
+ <url>http://www.last.fm/music/Arctic+Monkeys</url>
573
+ </artist>
574
+ <image size="small">http://userserve-ak.last.fm/serve/34s/9131187.jpg</image>
575
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/9131187.jpg</image>
576
+ <image size="large">http://userserve-ak.last.fm/serve/126/9131187.jpg</image>
577
+ </track>
578
+ <track>
579
+ <name>Only Ones Who Know</name>
580
+ <playcount>19</playcount>
581
+ <tagcount></tagcount>
582
+ <mbid></mbid>
583
+ <url>http://www.last.fm/music/Arctic+Monkeys/_/Only+Ones+Who+Know</url>
584
+ <streamable fulltrack="0">0</streamable>
585
+ <artist>
586
+ <name>Arctic Monkeys</name>
587
+ <mbid>ada7a83c-e3e1-40f1-93f9-3e73dbc9298a</mbid>
588
+ <url>http://www.last.fm/music/Arctic+Monkeys</url>
589
+ </artist>
590
+ <image size="small">http://userserve-ak.last.fm/serve/34s/9131187.jpg</image>
591
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/9131187.jpg</image>
592
+ <image size="large">http://userserve-ak.last.fm/serve/126/9131187.jpg</image>
593
+ </track>
594
+ <track>
595
+ <name>7 Tage, 7 Nächte</name>
596
+ <playcount>19</playcount>
597
+ <tagcount></tagcount>
598
+ <mbid></mbid>
599
+ <url>http://www.last.fm/music/Sportfreunde+Stiller/_/7+Tage%2C+7+N%C3%A4chte</url>
600
+ <streamable fulltrack="0">0</streamable>
601
+ <artist>
602
+ <name>Sportfreunde Stiller</name>
603
+ <mbid>35581de7-591f-424f-9c64-7b22fd45605e</mbid>
604
+ <url>http://www.last.fm/music/Sportfreunde+Stiller</url>
605
+ </artist>
606
+ <image size="small">http://userserve-ak.last.fm/serve/34s/25205149.jpg</image>
607
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/25205149.jpg</image>
608
+ <image size="large">http://userserve-ak.last.fm/serve/126/25205149.jpg</image>
609
+ </track>
610
+ <track>
611
+ <name>Balaclava</name>
612
+ <playcount>19</playcount>
613
+ <tagcount></tagcount>
614
+ <mbid></mbid>
615
+ <url>http://www.last.fm/music/Arctic+Monkeys/_/Balaclava</url>
616
+ <streamable fulltrack="0">0</streamable>
617
+ <artist>
618
+ <name>Arctic Monkeys</name>
619
+ <mbid>ada7a83c-e3e1-40f1-93f9-3e73dbc9298a</mbid>
620
+ <url>http://www.last.fm/music/Arctic+Monkeys</url>
621
+ </artist>
622
+ <image size="small">http://userserve-ak.last.fm/serve/34s/9131187.jpg</image>
623
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/9131187.jpg</image>
624
+ <image size="large">http://userserve-ak.last.fm/serve/126/9131187.jpg</image>
625
+ </track>
626
+ <track>
627
+ <name>Siehst du das genauso?</name>
628
+ <playcount>19</playcount>
629
+ <tagcount></tagcount>
630
+ <mbid></mbid>
631
+ <url>http://www.last.fm/music/Sportfreunde+Stiller/_/Siehst+du+das+genauso%3F</url>
632
+ <streamable fulltrack="0">0</streamable>
633
+ <artist>
634
+ <name>Sportfreunde Stiller</name>
635
+ <mbid>35581de7-591f-424f-9c64-7b22fd45605e</mbid>
636
+ <url>http://www.last.fm/music/Sportfreunde+Stiller</url>
637
+ </artist>
638
+ <image size="small">http://userserve-ak.last.fm/serve/34s/25205149.jpg</image>
639
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/25205149.jpg</image>
640
+ <image size="large">http://userserve-ak.last.fm/serve/126/25205149.jpg</image>
641
+ </track>
642
+ <track>
643
+ <name>Can't Get My Head Around You</name>
644
+ <playcount>19</playcount>
645
+ <tagcount></tagcount>
646
+ <mbid></mbid>
647
+ <url>http://www.last.fm/music/The+Offspring/_/Can%27t+Get+My+Head+Around+You</url>
648
+ <streamable fulltrack="0">0</streamable>
649
+ <artist>
650
+ <name>The Offspring</name>
651
+ <mbid>23a03e33-a603-404e-bcbf-2c00159d7067</mbid>
652
+ <url>http://www.last.fm/music/The+Offspring</url>
653
+ </artist>
654
+ </track>
655
+ <track>
656
+ <name>Komm schon</name>
657
+ <playcount>19</playcount>
658
+ <tagcount></tagcount>
659
+ <mbid></mbid>
660
+ <url>http://www.last.fm/music/Sportfreunde+Stiller/_/Komm+schon</url>
661
+ <streamable fulltrack="1">1</streamable>
662
+ <artist>
663
+ <name>Sportfreunde Stiller</name>
664
+ <mbid>35581de7-591f-424f-9c64-7b22fd45605e</mbid>
665
+ <url>http://www.last.fm/music/Sportfreunde+Stiller</url>
666
+ </artist>
667
+ <image size="small">http://userserve-ak.last.fm/serve/34s/8634899.jpg</image>
668
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/8634899.jpg</image>
669
+ <image size="large">http://userserve-ak.last.fm/serve/126/8634899.jpg</image>
670
+ </track>
671
+ <track>
672
+ <name>Scratch the Pitch</name>
673
+ <playcount>19</playcount>
674
+ <tagcount></tagcount>
675
+ <mbid></mbid>
676
+ <url>http://www.last.fm/music/Guano+Apes/_/Scratch+the+Pitch</url>
677
+ <streamable fulltrack="0">1</streamable>
678
+ <artist>
679
+ <name>Guano Apes</name>
680
+ <mbid>66da25f9-1534-4dd1-b88c-718bc24e1ccd</mbid>
681
+ <url>http://www.last.fm/music/Guano+Apes</url>
682
+ </artist>
683
+ <image size="small">http://userserve-ak.last.fm/serve/34s/22670585.jpg</image>
684
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/22670585.jpg</image>
685
+ <image size="large">http://userserve-ak.last.fm/serve/126/22670585.jpg</image>
686
+ </track>
687
+ <track>
688
+ <name>Dieses Leben</name>
689
+ <playcount>19</playcount>
690
+ <tagcount></tagcount>
691
+ <mbid></mbid>
692
+ <url>http://www.last.fm/music/Juli/_/Dieses+Leben</url>
693
+ <streamable fulltrack="1">1</streamable>
694
+ <artist>
695
+ <name>Juli</name>
696
+ <mbid>9a593aff-62c9-40bd-9631-1697798adb63</mbid>
697
+ <url>http://www.last.fm/music/Juli</url>
698
+ </artist>
699
+ <image size="small">http://userserve-ak.last.fm/serve/34s/10061837.jpg</image>
700
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/10061837.jpg</image>
701
+ <image size="large">http://userserve-ak.last.fm/serve/126/10061837.jpg</image>
702
+ </track>
703
+ <track>
704
+ <name>Born Slippy</name>
705
+ <playcount>19</playcount>
706
+ <tagcount></tagcount>
707
+ <mbid></mbid>
708
+ <url>http://www.last.fm/music/Underworld/_/Born+Slippy</url>
709
+ <streamable fulltrack="0">1</streamable>
710
+ <artist>
711
+ <name>Underworld</name>
712
+ <mbid>ba2f4f3b-0293-4bc8-bb94-2f73b5207343</mbid>
713
+ <url>http://www.last.fm/music/Underworld</url>
714
+ </artist>
715
+ <image size="small">http://userserve-ak.last.fm/serve/34s/16188661.jpg</image>
716
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/16188661.jpg</image>
717
+ <image size="large">http://userserve-ak.last.fm/serve/126/16188661.jpg</image>
718
+ </track>
719
+ <track>
720
+ <name>Omen</name>
721
+ <playcount>19</playcount>
722
+ <tagcount></tagcount>
723
+ <mbid></mbid>
724
+ <url>http://www.last.fm/music/The+Prodigy/_/Omen</url>
725
+ <streamable fulltrack="1">1</streamable>
726
+ <artist>
727
+ <name>The Prodigy</name>
728
+ <mbid>4a4ee089-93b1-4470-af9a-6ff575d32704</mbid>
729
+ <url>http://www.last.fm/music/The+Prodigy</url>
730
+ </artist>
731
+ </track>
732
+ <track>
733
+ <name>J.A.R. (Jason Andrew Relva)</name>
734
+ <playcount>18</playcount>
735
+ <tagcount></tagcount>
736
+ <mbid></mbid>
737
+ <url>http://www.last.fm/music/Green+Day/_/J.A.R.+%28Jason+Andrew+Relva%29</url>
738
+ <streamable fulltrack="0">1</streamable>
739
+ <artist>
740
+ <name>Green Day</name>
741
+ <mbid>084308bd-1654-436f-ba03-df6697104e19</mbid>
742
+ <url>http://www.last.fm/music/Green+Day</url>
743
+ </artist>
744
+ <image size="small">http://userserve-ak.last.fm/serve/34s/8672845.jpg</image>
745
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/8672845.jpg</image>
746
+ <image size="large">http://userserve-ak.last.fm/serve/126/8672845.jpg</image>
747
+ </track>
748
+ <track>
749
+ <name>Dammit</name>
750
+ <playcount>18</playcount>
751
+ <tagcount></tagcount>
752
+ <mbid></mbid>
753
+ <url>http://www.last.fm/music/blink-182/_/Dammit</url>
754
+ <streamable fulltrack="1">1</streamable>
755
+ <artist>
756
+ <name>blink-182</name>
757
+ <mbid>0743b15a-3c32-48c8-ad58-cb325350befa</mbid>
758
+ <url>http://www.last.fm/music/blink-182</url>
759
+ </artist>
760
+ <image size="small">http://userserve-ak.last.fm/serve/34s/8634777.jpg</image>
761
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/8634777.jpg</image>
762
+ <image size="large">http://userserve-ak.last.fm/serve/126/8634777.jpg</image>
763
+ </track>
764
+ <track>
765
+ <name>Sing That Song</name>
766
+ <playcount>18</playcount>
767
+ <tagcount></tagcount>
768
+ <mbid></mbid>
769
+ <url>http://www.last.fm/music/Guano+Apes/_/Sing+That+Song</url>
770
+ <streamable fulltrack="0">1</streamable>
771
+ <artist>
772
+ <name>Guano Apes</name>
773
+ <mbid>66da25f9-1534-4dd1-b88c-718bc24e1ccd</mbid>
774
+ <url>http://www.last.fm/music/Guano+Apes</url>
775
+ </artist>
776
+ <image size="small">http://userserve-ak.last.fm/serve/34s/22670585.jpg</image>
777
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/22670585.jpg</image>
778
+ <image size="large">http://userserve-ak.last.fm/serve/126/22670585.jpg</image>
779
+ </track>
780
+ </tracks></lfm>