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,774 @@
1
+ <?xml version="1.0" encoding="utf-8"?>
2
+ <lfm status="ok">
3
+ <tracks user="xhochy" page="9" perPage="50" totalPages="34">
4
+ <track>
5
+ <name>Swallowed in the Sea</name>
6
+ <playcount>11</playcount>
7
+ <tagcount></tagcount>
8
+ <mbid></mbid>
9
+ <url>http://www.last.fm/music/Coldplay/_/Swallowed+in+the+Sea</url>
10
+ <streamable fulltrack="0">1</streamable>
11
+ <artist>
12
+ <name>Coldplay</name>
13
+ <mbid>cc197bad-dc9c-440d-a5b5-d52ba2e14234</mbid>
14
+ <url>http://www.last.fm/music/Coldplay</url>
15
+ </artist>
16
+ <image size="small">http://images.amazon.com/images/P/B0006L16N8.01.MZZZZZZZ.jpg</image>
17
+ <image size="medium">http://images.amazon.com/images/P/B0006L16N8.01.MZZZZZZZ.jpg</image>
18
+ <image size="large">http://images.amazon.com/images/P/B0006L16N8.01.MZZZZZZZ.jpg</image>
19
+ </track>
20
+ <track>
21
+ <name>Der letzte Tag</name>
22
+ <playcount>11</playcount>
23
+ <tagcount></tagcount>
24
+ <mbid></mbid>
25
+ <url>http://www.last.fm/music/Peter+Fox/_/Der+letzte+Tag</url>
26
+ <streamable fulltrack="0">0</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>Everyday I Love You Less and Less</name>
35
+ <playcount>11</playcount>
36
+ <tagcount></tagcount>
37
+ <mbid></mbid>
38
+ <url>http://www.last.fm/music/Kaiser+Chiefs/_/Everyday+I+Love+You+Less+and+Less</url>
39
+ <streamable fulltrack="1">1</streamable>
40
+ <artist>
41
+ <name>Kaiser Chiefs</name>
42
+ <mbid>90218af4-4d58-4821-8d41-2ee295ebbe21</mbid>
43
+ <url>http://www.last.fm/music/Kaiser+Chiefs</url>
44
+ </artist>
45
+ <image size="small">http://userserve-ak.last.fm/serve/34s/8674107.jpg</image>
46
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/8674107.jpg</image>
47
+ <image size="large">http://userserve-ak.last.fm/serve/126/8674107.jpg</image>
48
+ </track>
49
+ <track>
50
+ <name>Outsmarted</name>
51
+ <playcount>11</playcount>
52
+ <tagcount></tagcount>
53
+ <mbid></mbid>
54
+ <url>http://www.last.fm/music/The+Hives/_/Outsmarted</url>
55
+ <streamable fulltrack="0">1</streamable>
56
+ <artist>
57
+ <name>The Hives</name>
58
+ <mbid>487bfd74-71bf-46dd-b89c-80b7a0f06f2f</mbid>
59
+ <url>http://www.last.fm/music/The+Hives</url>
60
+ </artist>
61
+ <image size="small">http://userserve-ak.last.fm/serve/34s/25888215.png</image>
62
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/25888215.png</image>
63
+ <image size="large">http://userserve-ak.last.fm/serve/126/25888215.png</image>
64
+ </track>
65
+ <track>
66
+ <name>Egal Wohin</name>
67
+ <playcount>11</playcount>
68
+ <tagcount></tagcount>
69
+ <mbid></mbid>
70
+ <url>http://www.last.fm/music/Juli/_/Egal+Wohin</url>
71
+ <streamable fulltrack="0">0</streamable>
72
+ <artist>
73
+ <name>Juli</name>
74
+ <mbid>9a593aff-62c9-40bd-9631-1697798adb63</mbid>
75
+ <url>http://www.last.fm/music/Juli</url>
76
+ </artist>
77
+ </track>
78
+ <track>
79
+ <name>Re-Invent Myself?</name>
80
+ <playcount>11</playcount>
81
+ <tagcount></tagcount>
82
+ <mbid></mbid>
83
+ <url>http://www.last.fm/music/The+Holloways/_/Re-Invent+Myself%3F</url>
84
+ <streamable fulltrack="0">0</streamable>
85
+ <artist>
86
+ <name>The Holloways</name>
87
+ <mbid>ed0c90ee-4cc0-4928-8f61-93dbd7869eb9</mbid>
88
+ <url>http://www.last.fm/music/The+Holloways</url>
89
+ </artist>
90
+ </track>
91
+ <track>
92
+ <name>Wer von euch</name>
93
+ <playcount>11</playcount>
94
+ <tagcount></tagcount>
95
+ <mbid></mbid>
96
+ <url>http://www.last.fm/music/Juli/_/Wer+von+euch</url>
97
+ <streamable fulltrack="0">0</streamable>
98
+ <artist>
99
+ <name>Juli</name>
100
+ <mbid>9a593aff-62c9-40bd-9631-1697798adb63</mbid>
101
+ <url>http://www.last.fm/music/Juli</url>
102
+ </artist>
103
+ </track>
104
+ <track>
105
+ <name>Empty Cans</name>
106
+ <playcount>11</playcount>
107
+ <tagcount></tagcount>
108
+ <mbid></mbid>
109
+ <url>http://www.last.fm/music/The+Streets/_/Empty+Cans</url>
110
+ <streamable fulltrack="0">1</streamable>
111
+ <artist>
112
+ <name>The Streets</name>
113
+ <mbid>6f607087-9c46-4bb2-a884-e4efc764554c</mbid>
114
+ <url>http://www.last.fm/music/The+Streets</url>
115
+ </artist>
116
+ <image size="small">http://userserve-ak.last.fm/serve/34s/12623177.jpg</image>
117
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/12623177.jpg</image>
118
+ <image size="large">http://userserve-ak.last.fm/serve/126/12623177.jpg</image>
119
+ </track>
120
+ <track>
121
+ <name>Two Left Feet</name>
122
+ <playcount>11</playcount>
123
+ <tagcount></tagcount>
124
+ <mbid></mbid>
125
+ <url>http://www.last.fm/music/The+Holloways/_/Two+Left+Feet</url>
126
+ <streamable fulltrack="0">1</streamable>
127
+ <artist>
128
+ <name>The Holloways</name>
129
+ <mbid>ed0c90ee-4cc0-4928-8f61-93dbd7869eb9</mbid>
130
+ <url>http://www.last.fm/music/The+Holloways</url>
131
+ </artist>
132
+ <image size="small">http://userserve-ak.last.fm/serve/34s/4088497.jpg</image>
133
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/4088497.jpg</image>
134
+ <image size="large">http://userserve-ak.last.fm/serve/126/4088497.jpg</image>
135
+ </track>
136
+ <track>
137
+ <name>Two Nations</name>
138
+ <playcount>11</playcount>
139
+ <tagcount></tagcount>
140
+ <mbid></mbid>
141
+ <url>http://www.last.fm/music/The+Streets/_/Two+Nations</url>
142
+ <streamable fulltrack="0">1</streamable>
143
+ <artist>
144
+ <name>The Streets</name>
145
+ <mbid>6f607087-9c46-4bb2-a884-e4efc764554c</mbid>
146
+ <url>http://www.last.fm/music/The+Streets</url>
147
+ </artist>
148
+ <image size="small">http://userserve-ak.last.fm/serve/34s/8790429.jpg</image>
149
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/8790429.jpg</image>
150
+ <image size="large">http://userserve-ak.last.fm/serve/126/8790429.jpg</image>
151
+ </track>
152
+ <track>
153
+ <name>Basket Case</name>
154
+ <playcount>11</playcount>
155
+ <tagcount></tagcount>
156
+ <mbid></mbid>
157
+ <url>http://www.last.fm/music/Green+Day/_/Basket+Case</url>
158
+ <streamable fulltrack="0">1</streamable>
159
+ <artist>
160
+ <name>Green Day</name>
161
+ <mbid>084308bd-1654-436f-ba03-df6697104e19</mbid>
162
+ <url>http://www.last.fm/music/Green+Day</url>
163
+ </artist>
164
+ <image size="small">http://userserve-ak.last.fm/serve/34s/8624469.jpg</image>
165
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/8624469.jpg</image>
166
+ <image size="large">http://userserve-ak.last.fm/serve/126/8624469.jpg</image>
167
+ </track>
168
+ <track>
169
+ <name>Human</name>
170
+ <playcount>11</playcount>
171
+ <tagcount></tagcount>
172
+ <mbid></mbid>
173
+ <url>http://www.last.fm/music/The+Killers/_/Human</url>
174
+ <streamable fulltrack="1">1</streamable>
175
+ <artist>
176
+ <name>The Killers</name>
177
+ <mbid>95e1ead9-4d31-4808-a7ac-32c3614c116b</mbid>
178
+ <url>http://www.last.fm/music/The+Killers</url>
179
+ </artist>
180
+ </track>
181
+ <track>
182
+ <name>Blinded by the Lights</name>
183
+ <playcount>11</playcount>
184
+ <tagcount></tagcount>
185
+ <mbid></mbid>
186
+ <url>http://www.last.fm/music/The+Streets/_/Blinded+by+the+Lights</url>
187
+ <streamable fulltrack="0">1</streamable>
188
+ <artist>
189
+ <name>The Streets</name>
190
+ <mbid>6f607087-9c46-4bb2-a884-e4efc764554c</mbid>
191
+ <url>http://www.last.fm/music/The+Streets</url>
192
+ </artist>
193
+ <image size="small">http://userserve-ak.last.fm/serve/34s/12623177.jpg</image>
194
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/12623177.jpg</image>
195
+ <image size="large">http://userserve-ak.last.fm/serve/126/12623177.jpg</image>
196
+ </track>
197
+ <track>
198
+ <name>Yellow</name>
199
+ <playcount>10</playcount>
200
+ <tagcount></tagcount>
201
+ <mbid></mbid>
202
+ <url>http://www.last.fm/music/Coldplay/_/Yellow</url>
203
+ <streamable fulltrack="0">1</streamable>
204
+ <artist>
205
+ <name>Coldplay</name>
206
+ <mbid>cc197bad-dc9c-440d-a5b5-d52ba2e14234</mbid>
207
+ <url>http://www.last.fm/music/Coldplay</url>
208
+ </artist>
209
+ <image size="small">http://userserve-ak.last.fm/serve/34s/14225619.jpg</image>
210
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/14225619.jpg</image>
211
+ <image size="large">http://userserve-ak.last.fm/serve/126/14225619.jpg</image>
212
+ </track>
213
+ <track>
214
+ <name>Lucid Dreams</name>
215
+ <playcount>10</playcount>
216
+ <tagcount></tagcount>
217
+ <mbid></mbid>
218
+ <url>http://www.last.fm/music/Franz+Ferdinand/_/Lucid+Dreams</url>
219
+ <streamable fulltrack="0">1</streamable>
220
+ <artist>
221
+ <name>Franz Ferdinand</name>
222
+ <mbid>aa7a2827-f74b-473c-bd79-03d065835cf7</mbid>
223
+ <url>http://www.last.fm/music/Franz+Ferdinand</url>
224
+ </artist>
225
+ <image size="small">http://userserve-ak.last.fm/serve/34s/19093565.jpg</image>
226
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/19093565.jpg</image>
227
+ <image size="large">http://userserve-ak.last.fm/serve/126/19093565.jpg</image>
228
+ </track>
229
+ <track>
230
+ <name>Bones</name>
231
+ <playcount>10</playcount>
232
+ <tagcount></tagcount>
233
+ <mbid></mbid>
234
+ <url>http://www.last.fm/music/The+Killers/_/Bones</url>
235
+ <streamable fulltrack="0">1</streamable>
236
+ <artist>
237
+ <name>The Killers</name>
238
+ <mbid>95e1ead9-4d31-4808-a7ac-32c3614c116b</mbid>
239
+ <url>http://www.last.fm/music/The+Killers</url>
240
+ </artist>
241
+ <image size="small">http://userserve-ak.last.fm/serve/34s/9192209.jpg</image>
242
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/9192209.jpg</image>
243
+ <image size="large">http://userserve-ak.last.fm/serve/126/9192209.jpg</image>
244
+ </track>
245
+ <track>
246
+ <name>Enterlude</name>
247
+ <playcount>10</playcount>
248
+ <tagcount></tagcount>
249
+ <mbid></mbid>
250
+ <url>http://www.last.fm/music/The+Killers/_/Enterlude</url>
251
+ <streamable fulltrack="1">1</streamable>
252
+ <artist>
253
+ <name>The Killers</name>
254
+ <mbid>95e1ead9-4d31-4808-a7ac-32c3614c116b</mbid>
255
+ <url>http://www.last.fm/music/The+Killers</url>
256
+ </artist>
257
+ <image size="small">http://userserve-ak.last.fm/serve/34s/9192209.jpg</image>
258
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/9192209.jpg</image>
259
+ <image size="large">http://userserve-ak.last.fm/serve/126/9192209.jpg</image>
260
+ </track>
261
+ <track>
262
+ <name>Kurtz vor der Sonne</name>
263
+ <playcount>10</playcount>
264
+ <tagcount></tagcount>
265
+ <mbid></mbid>
266
+ <url>http://www.last.fm/music/Juli/_/Kurtz+vor+der+Sonne</url>
267
+ <streamable fulltrack="0">0</streamable>
268
+ <artist>
269
+ <name>Juli</name>
270
+ <mbid>9a593aff-62c9-40bd-9631-1697798adb63</mbid>
271
+ <url>http://www.last.fm/music/Juli</url>
272
+ </artist>
273
+ </track>
274
+ <track>
275
+ <name>Scar Tissue</name>
276
+ <playcount>10</playcount>
277
+ <tagcount></tagcount>
278
+ <mbid></mbid>
279
+ <url>http://www.last.fm/music/Red+Hot+Chili+Peppers/_/Scar+Tissue</url>
280
+ <streamable fulltrack="0">1</streamable>
281
+ <artist>
282
+ <name>Red Hot Chili Peppers</name>
283
+ <mbid>8bfac288-ccc5-448d-9573-c33ea2aa5c30</mbid>
284
+ <url>http://www.last.fm/music/Red+Hot+Chili+Peppers</url>
285
+ </artist>
286
+ <image size="small">http://userserve-ak.last.fm/serve/34s/8593509.jpg</image>
287
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/8593509.jpg</image>
288
+ <image size="large">http://userserve-ak.last.fm/serve/126/8593509.jpg</image>
289
+ </track>
290
+ <track>
291
+ <name>Andy, You're a Star</name>
292
+ <playcount>10</playcount>
293
+ <tagcount></tagcount>
294
+ <mbid></mbid>
295
+ <url>http://www.last.fm/music/The+Killers/_/Andy%2C+You%27re+a+Star</url>
296
+ <streamable fulltrack="0">0</streamable>
297
+ <artist>
298
+ <name>The Killers</name>
299
+ <mbid>95e1ead9-4d31-4808-a7ac-32c3614c116b</mbid>
300
+ <url>http://www.last.fm/music/The+Killers</url>
301
+ </artist>
302
+ <image size="small">http://userserve-ak.last.fm/serve/34s/8634917.jpg</image>
303
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/8634917.jpg</image>
304
+ <image size="large">http://userserve-ak.last.fm/serve/126/8634917.jpg</image>
305
+ </track>
306
+ <track>
307
+ <name>Farting With a Walkman On</name>
308
+ <playcount>10</playcount>
309
+ <tagcount></tagcount>
310
+ <mbid></mbid>
311
+ <url>http://www.last.fm/music/Bloodhound+Gang/_/Farting+With+a+Walkman+On</url>
312
+ <streamable fulltrack="0">0</streamable>
313
+ <artist>
314
+ <name>Bloodhound Gang</name>
315
+ <mbid>b2dbfc09-b332-408b-a235-1850e41971c5</mbid>
316
+ <url>http://www.last.fm/music/Bloodhound+Gang</url>
317
+ </artist>
318
+ </track>
319
+ <track>
320
+ <name>Wenn du lachst</name>
321
+ <playcount>10</playcount>
322
+ <tagcount></tagcount>
323
+ <mbid></mbid>
324
+ <url>http://www.last.fm/music/Juli/_/Wenn+du+lachst</url>
325
+ <streamable fulltrack="1">1</streamable>
326
+ <artist>
327
+ <name>Juli</name>
328
+ <mbid>9a593aff-62c9-40bd-9631-1697798adb63</mbid>
329
+ <url>http://www.last.fm/music/Juli</url>
330
+ </artist>
331
+ <image size="small">http://userserve-ak.last.fm/serve/34s/8638773.jpg</image>
332
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/8638773.jpg</image>
333
+ <image size="large">http://userserve-ak.last.fm/serve/126/8638773.jpg</image>
334
+ </track>
335
+ <track>
336
+ <name>This Velvet Glove</name>
337
+ <playcount>10</playcount>
338
+ <tagcount></tagcount>
339
+ <mbid></mbid>
340
+ <url>http://www.last.fm/music/Red+Hot+Chili+Peppers/_/This+Velvet+Glove</url>
341
+ <streamable fulltrack="0">1</streamable>
342
+ <artist>
343
+ <name>Red Hot Chili Peppers</name>
344
+ <mbid>8bfac288-ccc5-448d-9573-c33ea2aa5c30</mbid>
345
+ <url>http://www.last.fm/music/Red+Hot+Chili+Peppers</url>
346
+ </artist>
347
+ <image size="small">http://userserve-ak.last.fm/serve/34s/8593509.jpg</image>
348
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/8593509.jpg</image>
349
+ <image size="large">http://userserve-ak.last.fm/serve/126/8593509.jpg</image>
350
+ </track>
351
+ <track>
352
+ <name>Du schreibst Geschichte</name>
353
+ <playcount>10</playcount>
354
+ <tagcount></tagcount>
355
+ <mbid></mbid>
356
+ <url>http://www.last.fm/music/Madsen/_/Du+schreibst+Geschichte</url>
357
+ <streamable fulltrack="1">1</streamable>
358
+ <artist>
359
+ <name>Madsen</name>
360
+ <mbid>8a0c3b86-af55-42d2-85b9-6372e7430986</mbid>
361
+ <url>http://www.last.fm/music/Madsen</url>
362
+ </artist>
363
+ <image size="small">http://userserve-ak.last.fm/serve/34s/9998507.jpg</image>
364
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/9998507.jpg</image>
365
+ <image size="large">http://userserve-ak.last.fm/serve/126/9998507.jpg</image>
366
+ </track>
367
+ <track>
368
+ <name>The Messsage</name>
369
+ <playcount>10</playcount>
370
+ <tagcount></tagcount>
371
+ <mbid></mbid>
372
+ <url>http://www.last.fm/music/Garnmaster+Flash/_/The+Messsage</url>
373
+ <streamable fulltrack="0">0</streamable>
374
+ <artist>
375
+ <name>Garnmaster Flash</name>
376
+ <mbid></mbid>
377
+ <url>http://www.last.fm/music/Garnmaster+Flash</url>
378
+ </artist>
379
+ </track>
380
+ <track>
381
+ <name>Regen und Meer</name>
382
+ <playcount>10</playcount>
383
+ <tagcount></tagcount>
384
+ <mbid></mbid>
385
+ <url>http://www.last.fm/music/Juli/_/Regen+und+Meer</url>
386
+ <streamable fulltrack="0">1</streamable>
387
+ <artist>
388
+ <name>Juli</name>
389
+ <mbid>9a593aff-62c9-40bd-9631-1697798adb63</mbid>
390
+ <url>http://www.last.fm/music/Juli</url>
391
+ </artist>
392
+ <image size="small">http://userserve-ak.last.fm/serve/34s/8638773.jpg</image>
393
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/8638773.jpg</image>
394
+ <image size="large">http://userserve-ak.last.fm/serve/126/8638773.jpg</image>
395
+ </track>
396
+ <track>
397
+ <name>Do You Want To</name>
398
+ <playcount>10</playcount>
399
+ <tagcount></tagcount>
400
+ <mbid></mbid>
401
+ <url>http://www.last.fm/music/Franz+Ferdinand/_/Do+You+Want+To</url>
402
+ <streamable fulltrack="0">1</streamable>
403
+ <artist>
404
+ <name>Franz Ferdinand</name>
405
+ <mbid>aa7a2827-f74b-473c-bd79-03d065835cf7</mbid>
406
+ <url>http://www.last.fm/music/Franz+Ferdinand</url>
407
+ </artist>
408
+ <image size="small">http://userserve-ak.last.fm/serve/34s/19883723.jpg</image>
409
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/19883723.jpg</image>
410
+ <image size="large">http://userserve-ak.last.fm/serve/126/19883723.jpg</image>
411
+ </track>
412
+ <track>
413
+ <name>Turn the Page</name>
414
+ <playcount>10</playcount>
415
+ <tagcount></tagcount>
416
+ <mbid></mbid>
417
+ <url>http://www.last.fm/music/The+Streets/_/Turn+the+Page</url>
418
+ <streamable fulltrack="0">1</streamable>
419
+ <artist>
420
+ <name>The Streets</name>
421
+ <mbid>6f607087-9c46-4bb2-a884-e4efc764554c</mbid>
422
+ <url>http://www.last.fm/music/The+Streets</url>
423
+ </artist>
424
+ <image size="small">http://userserve-ak.last.fm/serve/34s/8594953.jpg</image>
425
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/8594953.jpg</image>
426
+ <image size="large">http://userserve-ak.last.fm/serve/126/8594953.jpg</image>
427
+ </track>
428
+ <track>
429
+ <name>Emit Remmus</name>
430
+ <playcount>10</playcount>
431
+ <tagcount></tagcount>
432
+ <mbid></mbid>
433
+ <url>http://www.last.fm/music/Red+Hot+Chili+Peppers/_/Emit+Remmus</url>
434
+ <streamable fulltrack="0">1</streamable>
435
+ <artist>
436
+ <name>Red Hot Chili Peppers</name>
437
+ <mbid>8bfac288-ccc5-448d-9573-c33ea2aa5c30</mbid>
438
+ <url>http://www.last.fm/music/Red+Hot+Chili+Peppers</url>
439
+ </artist>
440
+ <image size="small">http://userserve-ak.last.fm/serve/34s/8593509.jpg</image>
441
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/8593509.jpg</image>
442
+ <image size="large">http://userserve-ak.last.fm/serve/126/8593509.jpg</image>
443
+ </track>
444
+ <track>
445
+ <name>Around the World</name>
446
+ <playcount>10</playcount>
447
+ <tagcount></tagcount>
448
+ <mbid></mbid>
449
+ <url>http://www.last.fm/music/Red+Hot+Chili+Peppers/_/Around+the+World</url>
450
+ <streamable fulltrack="0">1</streamable>
451
+ <artist>
452
+ <name>Red Hot Chili Peppers</name>
453
+ <mbid>8bfac288-ccc5-448d-9573-c33ea2aa5c30</mbid>
454
+ <url>http://www.last.fm/music/Red+Hot+Chili+Peppers</url>
455
+ </artist>
456
+ <image size="small">http://userserve-ak.last.fm/serve/34s/8593509.jpg</image>
457
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/8593509.jpg</image>
458
+ <image size="large">http://userserve-ak.last.fm/serve/126/8593509.jpg</image>
459
+ </track>
460
+ <track>
461
+ <name>Mein Therapeut und ich</name>
462
+ <playcount>10</playcount>
463
+ <tagcount></tagcount>
464
+ <mbid></mbid>
465
+ <url>http://www.last.fm/music/Madsen/_/Mein+Therapeut+und+ich</url>
466
+ <streamable fulltrack="1">1</streamable>
467
+ <artist>
468
+ <name>Madsen</name>
469
+ <mbid>8a0c3b86-af55-42d2-85b9-6372e7430986</mbid>
470
+ <url>http://www.last.fm/music/Madsen</url>
471
+ </artist>
472
+ <image size="small">http://userserve-ak.last.fm/serve/34s/8743285.jpg</image>
473
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/8743285.jpg</image>
474
+ <image size="large">http://userserve-ak.last.fm/serve/126/8743285.jpg</image>
475
+ </track>
476
+ <track>
477
+ <name>Assassin</name>
478
+ <playcount>10</playcount>
479
+ <tagcount></tagcount>
480
+ <mbid></mbid>
481
+ <url>http://www.last.fm/music/Muse/_/Assassin</url>
482
+ <streamable fulltrack="0">1</streamable>
483
+ <artist>
484
+ <name>Muse</name>
485
+ <mbid>9c9f1380-2516-4fc9-a3e6-f9f61941d090</mbid>
486
+ <url>http://www.last.fm/music/Muse</url>
487
+ </artist>
488
+ <image size="small">http://userserve-ak.last.fm/serve/34s/8855843.jpg</image>
489
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/8855843.jpg</image>
490
+ <image size="large">http://userserve-ak.last.fm/serve/126/8855843.jpg</image>
491
+ </track>
492
+ <track>
493
+ <name>Fuck Ups</name>
494
+ <playcount>10</playcount>
495
+ <tagcount></tagcount>
496
+ <mbid></mbid>
497
+ <url>http://www.last.fm/music/The+Holloways/_/Fuck+Ups</url>
498
+ <streamable fulltrack="0">1</streamable>
499
+ <artist>
500
+ <name>The Holloways</name>
501
+ <mbid>ed0c90ee-4cc0-4928-8f61-93dbd7869eb9</mbid>
502
+ <url>http://www.last.fm/music/The+Holloways</url>
503
+ </artist>
504
+ <image size="small">http://userserve-ak.last.fm/serve/34s/4088497.jpg</image>
505
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/4088497.jpg</image>
506
+ <image size="large">http://userserve-ak.last.fm/serve/126/4088497.jpg</image>
507
+ </track>
508
+ <track>
509
+ <name>Knights of Cydonia</name>
510
+ <playcount>10</playcount>
511
+ <tagcount></tagcount>
512
+ <mbid></mbid>
513
+ <url>http://www.last.fm/music/Muse/_/Knights+of+Cydonia</url>
514
+ <streamable fulltrack="0">1</streamable>
515
+ <artist>
516
+ <name>Muse</name>
517
+ <mbid>9c9f1380-2516-4fc9-a3e6-f9f61941d090</mbid>
518
+ <url>http://www.last.fm/music/Muse</url>
519
+ </artist>
520
+ <image size="small">http://userserve-ak.last.fm/serve/34s/8855843.jpg</image>
521
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/8855843.jpg</image>
522
+ <image size="large">http://userserve-ak.last.fm/serve/126/8855843.jpg</image>
523
+ </track>
524
+ <track>
525
+ <name>Could Well Be In</name>
526
+ <playcount>10</playcount>
527
+ <tagcount></tagcount>
528
+ <mbid></mbid>
529
+ <url>http://www.last.fm/music/The+Streets/_/Could+Well+Be+In</url>
530
+ <streamable fulltrack="0">1</streamable>
531
+ <artist>
532
+ <name>The Streets</name>
533
+ <mbid>6f607087-9c46-4bb2-a884-e4efc764554c</mbid>
534
+ <url>http://www.last.fm/music/The+Streets</url>
535
+ </artist>
536
+ <image size="small">http://userserve-ak.last.fm/serve/34s/12623177.jpg</image>
537
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/12623177.jpg</image>
538
+ <image size="large">http://userserve-ak.last.fm/serve/126/12623177.jpg</image>
539
+ </track>
540
+ <track>
541
+ <name>Breathe</name>
542
+ <playcount>10</playcount>
543
+ <tagcount></tagcount>
544
+ <mbid></mbid>
545
+ <url>http://www.last.fm/music/The+Prodigy/_/Breathe</url>
546
+ <streamable fulltrack="0">0</streamable>
547
+ <artist>
548
+ <name>The Prodigy</name>
549
+ <mbid>4a4ee089-93b1-4470-af9a-6ff575d32704</mbid>
550
+ <url>http://www.last.fm/music/The+Prodigy</url>
551
+ </artist>
552
+ <image size="small">http://userserve-ak.last.fm/serve/34s/8596933.jpg</image>
553
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/8596933.jpg</image>
554
+ <image size="large">http://userserve-ak.last.fm/serve/126/8596933.jpg</image>
555
+ </track>
556
+ <track>
557
+ <name>Hoodoo</name>
558
+ <playcount>10</playcount>
559
+ <tagcount></tagcount>
560
+ <mbid></mbid>
561
+ <url>http://www.last.fm/music/Muse/_/Hoodoo</url>
562
+ <streamable fulltrack="0">1</streamable>
563
+ <artist>
564
+ <name>Muse</name>
565
+ <mbid>9c9f1380-2516-4fc9-a3e6-f9f61941d090</mbid>
566
+ <url>http://www.last.fm/music/Muse</url>
567
+ </artist>
568
+ <image size="small">http://userserve-ak.last.fm/serve/34s/8855843.jpg</image>
569
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/8855843.jpg</image>
570
+ <image size="large">http://userserve-ak.last.fm/serve/126/8855843.jpg</image>
571
+ </track>
572
+ <track>
573
+ <name>Minority</name>
574
+ <playcount>10</playcount>
575
+ <tagcount></tagcount>
576
+ <mbid></mbid>
577
+ <url>http://www.last.fm/music/Green+Day/_/Minority</url>
578
+ <streamable fulltrack="0">1</streamable>
579
+ <artist>
580
+ <name>Green Day</name>
581
+ <mbid>084308bd-1654-436f-ba03-df6697104e19</mbid>
582
+ <url>http://www.last.fm/music/Green+Day</url>
583
+ </artist>
584
+ <image size="small">http://userserve-ak.last.fm/serve/34s/8673063.jpg</image>
585
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/8673063.jpg</image>
586
+ <image size="large">http://userserve-ak.last.fm/serve/126/8673063.jpg</image>
587
+ </track>
588
+ <track>
589
+ <name>Crawling</name>
590
+ <playcount>10</playcount>
591
+ <tagcount></tagcount>
592
+ <mbid></mbid>
593
+ <url>http://www.last.fm/music/Linkin+Park/_/Crawling</url>
594
+ <streamable fulltrack="0">1</streamable>
595
+ <artist>
596
+ <name>Linkin Park</name>
597
+ <mbid>f59c5520-5f46-4d2c-b2c4-822eabf53419</mbid>
598
+ <url>http://www.last.fm/music/Linkin+Park</url>
599
+ </artist>
600
+ <image size="small">http://userserve-ak.last.fm/serve/34s/8591413.jpg</image>
601
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/8591413.jpg</image>
602
+ <image size="large">http://userserve-ak.last.fm/serve/126/8591413.jpg</image>
603
+ </track>
604
+ <track>
605
+ <name>International</name>
606
+ <playcount>10</playcount>
607
+ <tagcount></tagcount>
608
+ <mbid></mbid>
609
+ <url>http://www.last.fm/music/Sportfreunde+Stiller/_/International</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/8634899.jpg</image>
617
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/8634899.jpg</image>
618
+ <image size="large">http://userserve-ak.last.fm/serve/126/8634899.jpg</image>
619
+ </track>
620
+ <track>
621
+ <name>Wrapped Up in Books</name>
622
+ <playcount>10</playcount>
623
+ <tagcount></tagcount>
624
+ <mbid></mbid>
625
+ <url>http://www.last.fm/music/Belle+and+Sebastian/_/Wrapped+Up+in+Books</url>
626
+ <streamable fulltrack="0">0</streamable>
627
+ <artist>
628
+ <name>Belle and Sebastian</name>
629
+ <mbid>e5c7b94f-e264-473c-bb0f-37c85d4d5c70</mbid>
630
+ <url>http://www.last.fm/music/Belle+and+Sebastian</url>
631
+ </artist>
632
+ <image size="small">http://images.amazon.com/images/P/B0000CBHQ1.01.THUMBZZZ.jpg</image>
633
+ <image size="medium">http://images.amazon.com/images/P/B0000CBHQ1.01.MZZZZZZZ.jpg</image>
634
+ <image size="large">http://images.amazon.com/images/P/B0000CBHQ1.01.LZZZZZZZ.jpg</image>
635
+ </track>
636
+ <track>
637
+ <name>Diokhan</name>
638
+ <playcount>10</playcount>
639
+ <tagcount></tagcount>
640
+ <mbid></mbid>
641
+ <url>http://www.last.fm/music/Guano+Apes/_/Diokhan</url>
642
+ <streamable fulltrack="0">1</streamable>
643
+ <artist>
644
+ <name>Guano Apes</name>
645
+ <mbid>66da25f9-1534-4dd1-b88c-718bc24e1ccd</mbid>
646
+ <url>http://www.last.fm/music/Guano+Apes</url>
647
+ </artist>
648
+ <image size="small">http://userserve-ak.last.fm/serve/34s/22670585.jpg</image>
649
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/22670585.jpg</image>
650
+ <image size="large">http://userserve-ak.last.fm/serve/126/22670585.jpg</image>
651
+ </track>
652
+ <track>
653
+ <name>Fascination</name>
654
+ <playcount>10</playcount>
655
+ <tagcount></tagcount>
656
+ <mbid></mbid>
657
+ <url>http://www.last.fm/music/Alphabeat/_/Fascination</url>
658
+ <streamable fulltrack="0">1</streamable>
659
+ <artist>
660
+ <name>Alphabeat</name>
661
+ <mbid>dba7b6f3-8123-4a07-99d6-306acc41b7cd</mbid>
662
+ <url>http://www.last.fm/music/Alphabeat</url>
663
+ </artist>
664
+ <image size="small">http://userserve-ak.last.fm/serve/34s/15226881.jpg</image>
665
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/15226881.jpg</image>
666
+ <image size="large">http://userserve-ak.last.fm/serve/126/15226881.jpg</image>
667
+ </track>
668
+ <track>
669
+ <name>Fake Streets Hats</name>
670
+ <playcount>10</playcount>
671
+ <tagcount></tagcount>
672
+ <mbid></mbid>
673
+ <url>http://www.last.fm/music/The+Streets/_/Fake+Streets+Hats</url>
674
+ <streamable fulltrack="0">1</streamable>
675
+ <artist>
676
+ <name>The Streets</name>
677
+ <mbid>6f607087-9c46-4bb2-a884-e4efc764554c</mbid>
678
+ <url>http://www.last.fm/music/The+Streets</url>
679
+ </artist>
680
+ <image size="small">http://userserve-ak.last.fm/serve/34s/8790429.jpg</image>
681
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/8790429.jpg</image>
682
+ <image size="large">http://userserve-ak.last.fm/serve/126/8790429.jpg</image>
683
+ </track>
684
+ <track>
685
+ <name>Sold as Freedom</name>
686
+ <playcount>10</playcount>
687
+ <tagcount></tagcount>
688
+ <mbid></mbid>
689
+ <url>http://www.last.fm/music/Anti-Flag/_/Sold+as+Freedom</url>
690
+ <streamable fulltrack="0">1</streamable>
691
+ <artist>
692
+ <name>Anti-Flag</name>
693
+ <mbid>b88f21a7-a1b9-48fd-bbc4-ae758026f17f</mbid>
694
+ <url>http://www.last.fm/music/Anti-Flag</url>
695
+ </artist>
696
+ <image size="small">http://images.amazon.com/images/P/B0000DH29Y.01.THUMBZZZ.jpg</image>
697
+ <image size="medium">http://images.amazon.com/images/P/B0000DH29Y.01.MZZZZZZZ.jpg</image>
698
+ <image size="large">http://images.amazon.com/images/P/B0000DH29Y.01.LZZZZZZZ.jpg</image>
699
+ </track>
700
+ <track>
701
+ <name>Farewell to the Fairground</name>
702
+ <playcount>10</playcount>
703
+ <tagcount></tagcount>
704
+ <mbid></mbid>
705
+ <url>http://www.last.fm/music/White+Lies/_/Farewell+to+the+Fairground</url>
706
+ <streamable fulltrack="1">1</streamable>
707
+ <artist>
708
+ <name>White Lies</name>
709
+ <mbid></mbid>
710
+ <url>http://www.last.fm/music/White+Lies</url>
711
+ </artist>
712
+ </track>
713
+ <track>
714
+ <name>Supermassive Black Hole</name>
715
+ <playcount>10</playcount>
716
+ <tagcount></tagcount>
717
+ <mbid></mbid>
718
+ <url>http://www.last.fm/music/Muse/_/Supermassive+Black+Hole</url>
719
+ <streamable fulltrack="0">1</streamable>
720
+ <artist>
721
+ <name>Muse</name>
722
+ <mbid>9c9f1380-2516-4fc9-a3e6-f9f61941d090</mbid>
723
+ <url>http://www.last.fm/music/Muse</url>
724
+ </artist>
725
+ <image size="small">http://userserve-ak.last.fm/serve/34s/8855843.jpg</image>
726
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/8855843.jpg</image>
727
+ <image size="large">http://userserve-ak.last.fm/serve/126/8855843.jpg</image>
728
+ </track>
729
+ <track>
730
+ <name>For Reasons Unknown</name>
731
+ <playcount>10</playcount>
732
+ <tagcount></tagcount>
733
+ <mbid></mbid>
734
+ <url>http://www.last.fm/music/The+Killers/_/For+Reasons+Unknown</url>
735
+ <streamable fulltrack="1">1</streamable>
736
+ <artist>
737
+ <name>The Killers</name>
738
+ <mbid>95e1ead9-4d31-4808-a7ac-32c3614c116b</mbid>
739
+ <url>http://www.last.fm/music/The+Killers</url>
740
+ </artist>
741
+ <image size="small">http://userserve-ak.last.fm/serve/34s/9192209.jpg</image>
742
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/9192209.jpg</image>
743
+ <image size="large">http://userserve-ak.last.fm/serve/126/9192209.jpg</image>
744
+ </track>
745
+ <track>
746
+ <name>Look at Me (When I Rock Wichoo)</name>
747
+ <playcount>10</playcount>
748
+ <tagcount></tagcount>
749
+ <mbid></mbid>
750
+ <url>http://www.last.fm/music/Black+Kids/_/Look+at+Me+%28When+I+Rock+Wichoo%29</url>
751
+ <streamable fulltrack="0">1</streamable>
752
+ <artist>
753
+ <name>Black Kids</name>
754
+ <mbid></mbid>
755
+ <url>http://www.last.fm/music/Black+Kids</url>
756
+ </artist>
757
+ </track>
758
+ <track>
759
+ <name>White Shadows</name>
760
+ <playcount>9</playcount>
761
+ <tagcount></tagcount>
762
+ <mbid></mbid>
763
+ <url>http://www.last.fm/music/Coldplay/_/White+Shadows</url>
764
+ <streamable fulltrack="0">1</streamable>
765
+ <artist>
766
+ <name>Coldplay</name>
767
+ <mbid>cc197bad-dc9c-440d-a5b5-d52ba2e14234</mbid>
768
+ <url>http://www.last.fm/music/Coldplay</url>
769
+ </artist>
770
+ <image size="small">http://images.amazon.com/images/P/B0006L16N8.01.MZZZZZZZ.jpg</image>
771
+ <image size="medium">http://images.amazon.com/images/P/B0006L16N8.01.MZZZZZZZ.jpg</image>
772
+ <image size="large">http://images.amazon.com/images/P/B0006L16N8.01.MZZZZZZZ.jpg</image>
773
+ </track>
774
+ </tracks></lfm>