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,753 @@
1
+ <?xml version="1.0" encoding="utf-8"?>
2
+ <lfm status="ok">
3
+ <tracks user="xhochy" page="29" perPage="50" totalPages="34">
4
+ <track>
5
+ <name>Sway</name>
6
+ <playcount>1</playcount>
7
+ <tagcount></tagcount>
8
+ <mbid></mbid>
9
+ <url>http://www.last.fm/music/The+Kooks/_/Sway</url>
10
+ <streamable fulltrack="0">1</streamable>
11
+ <artist>
12
+ <name>The Kooks</name>
13
+ <mbid>f82f3a3e-29c2-42ca-b589-bc5dc210fa9e</mbid>
14
+ <url>http://www.last.fm/music/The+Kooks</url>
15
+ </artist>
16
+ <image size="small">http://userserve-ak.last.fm/serve/34s/15158593.jpg</image>
17
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/15158593.jpg</image>
18
+ <image size="large">http://userserve-ak.last.fm/serve/126/15158593.jpg</image>
19
+ </track>
20
+ <track>
21
+ <name>Every Planet We Reach Is Dead</name>
22
+ <playcount>1</playcount>
23
+ <tagcount></tagcount>
24
+ <mbid></mbid>
25
+ <url>http://www.last.fm/music/Gorillaz/_/Every+Planet+We+Reach+Is+Dead</url>
26
+ <streamable fulltrack="0">1</streamable>
27
+ <artist>
28
+ <name>Gorillaz</name>
29
+ <mbid>e21857d5-3256-4547-afb3-4b6ded592596</mbid>
30
+ <url>http://www.last.fm/music/Gorillaz</url>
31
+ </artist>
32
+ <image size="small">http://userserve-ak.last.fm/serve/34s/11453045.jpg</image>
33
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/11453045.jpg</image>
34
+ <image size="large">http://userserve-ak.last.fm/serve/126/11453045.jpg</image>
35
+ </track>
36
+ <track>
37
+ <name>My Star</name>
38
+ <playcount>1</playcount>
39
+ <tagcount></tagcount>
40
+ <mbid></mbid>
41
+ <url>http://www.last.fm/music/The+%28International%29+Noise+Conspiracy/_/My+Star</url>
42
+ <streamable fulltrack="0">0</streamable>
43
+ <artist>
44
+ <name>The (International) Noise Conspiracy</name>
45
+ <mbid>97da5eb3-79a5-4195-b98e-3d10ef946b08</mbid>
46
+ <url>http://www.last.fm/music/The+%28International%29+Noise+Conspiracy</url>
47
+ </artist>
48
+ <image size="small">http://userserve-ak.last.fm/serve/34s/24063621.jpg</image>
49
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/24063621.jpg</image>
50
+ <image size="large">http://userserve-ak.last.fm/serve/126/24063621.jpg</image>
51
+ </track>
52
+ <track>
53
+ <name>Violin</name>
54
+ <playcount>1</playcount>
55
+ <tagcount></tagcount>
56
+ <mbid></mbid>
57
+ <url>http://www.last.fm/music/Nightwish/_/Violin</url>
58
+ <streamable fulltrack="0">0</streamable>
59
+ <artist>
60
+ <name>Nightwish</name>
61
+ <mbid>00a9f935-ba93-4fc8-a33a-993abe9c936b</mbid>
62
+ <url>http://www.last.fm/music/Nightwish</url>
63
+ </artist>
64
+ </track>
65
+ <track>
66
+ <name>Romantic Type</name>
67
+ <playcount>1</playcount>
68
+ <tagcount></tagcount>
69
+ <mbid></mbid>
70
+ <url>http://www.last.fm/music/The+Pigeon+Detectives/_/Romantic+Type</url>
71
+ <streamable fulltrack="1">1</streamable>
72
+ <artist>
73
+ <name>The Pigeon Detectives</name>
74
+ <mbid>2e04a82f-9118-43b1-a918-bf84f122f7fc</mbid>
75
+ <url>http://www.last.fm/music/The+Pigeon+Detectives</url>
76
+ </artist>
77
+ <image size="small">http://userserve-ak.last.fm/serve/34s/11121793.jpg</image>
78
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/11121793.jpg</image>
79
+ <image size="large">http://userserve-ak.last.fm/serve/126/11121793.jpg</image>
80
+ </track>
81
+ <track>
82
+ <name>Prison Song</name>
83
+ <playcount>1</playcount>
84
+ <tagcount></tagcount>
85
+ <mbid></mbid>
86
+ <url>http://www.last.fm/music/System+of+a+Down/_/Prison+Song</url>
87
+ <streamable fulltrack="0">1</streamable>
88
+ <artist>
89
+ <name>System of a Down</name>
90
+ <mbid>cc0b7089-c08d-4c10-b6b0-873582c17fd6</mbid>
91
+ <url>http://www.last.fm/music/System+of+a+Down</url>
92
+ </artist>
93
+ <image size="small">http://userserve-ak.last.fm/serve/34s/5206137.jpg</image>
94
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/5206137.jpg</image>
95
+ <image size="large">http://userserve-ak.last.fm/serve/126/5206137.jpg</image>
96
+ </track>
97
+ <track>
98
+ <name>Never Seen the Light of Day</name>
99
+ <playcount>1</playcount>
100
+ <tagcount></tagcount>
101
+ <mbid></mbid>
102
+ <url>http://www.last.fm/music/Mando+Diao/_/Never+Seen+the+Light+of+Day</url>
103
+ <streamable fulltrack="0">1</streamable>
104
+ <artist>
105
+ <name>Mando Diao</name>
106
+ <mbid>ea854cc1-13fc-4fd0-86a5-d2c7dba06764</mbid>
107
+ <url>http://www.last.fm/music/Mando+Diao</url>
108
+ </artist>
109
+ <image size="small">http://userserve-ak.last.fm/serve/34s/15249355.jpg</image>
110
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/15249355.jpg</image>
111
+ <image size="large">http://userserve-ak.last.fm/serve/126/15249355.jpg</image>
112
+ </track>
113
+ <track>
114
+ <name>Top Man</name>
115
+ <playcount>1</playcount>
116
+ <tagcount></tagcount>
117
+ <mbid></mbid>
118
+ <url>http://www.last.fm/music/Blur/_/Top+Man</url>
119
+ <streamable fulltrack="0">1</streamable>
120
+ <artist>
121
+ <name>Blur</name>
122
+ <mbid>ba853904-ae25-4ebb-89d6-c44cfbd71bd2</mbid>
123
+ <url>http://www.last.fm/music/Blur</url>
124
+ </artist>
125
+ <image size="small">http://userserve-ak.last.fm/serve/34s/14401319.jpg</image>
126
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/14401319.jpg</image>
127
+ <image size="large">http://userserve-ak.last.fm/serve/126/14401319.jpg</image>
128
+ </track>
129
+ <track>
130
+ <name>You Can Kill the Protester, But You Can't Kill the Protest</name>
131
+ <playcount>1</playcount>
132
+ <tagcount></tagcount>
133
+ <mbid></mbid>
134
+ <url>http://www.last.fm/music/Anti-Flag/_/You+Can+Kill+the+Protester%2C+But+You+Can%27t+Kill+the+Protest</url>
135
+ <streamable fulltrack="0">1</streamable>
136
+ <artist>
137
+ <name>Anti-Flag</name>
138
+ <mbid>b88f21a7-a1b9-48fd-bbc4-ae758026f17f</mbid>
139
+ <url>http://www.last.fm/music/Anti-Flag</url>
140
+ </artist>
141
+ <image size="small">http://images.amazon.com/images/P/B0000DH29Y.01.THUMBZZZ.jpg</image>
142
+ <image size="medium">http://images.amazon.com/images/P/B0000DH29Y.01.MZZZZZZZ.jpg</image>
143
+ <image size="large">http://images.amazon.com/images/P/B0000DH29Y.01.LZZZZZZZ.jpg</image>
144
+ </track>
145
+ <track>
146
+ <name>Reptilia</name>
147
+ <playcount>1</playcount>
148
+ <tagcount></tagcount>
149
+ <mbid></mbid>
150
+ <url>http://www.last.fm/music/The+Strokes/_/Reptilia</url>
151
+ <streamable fulltrack="0">1</streamable>
152
+ <artist>
153
+ <name>The Strokes</name>
154
+ <mbid>f181961b-20f7-459e-89de-920ef03c7ed0</mbid>
155
+ <url>http://www.last.fm/music/The+Strokes</url>
156
+ </artist>
157
+ <image size="small">http://userserve-ak.last.fm/serve/34s/22764783.jpg</image>
158
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/22764783.jpg</image>
159
+ <image size="large">http://userserve-ak.last.fm/serve/126/22764783.jpg</image>
160
+ </track>
161
+ <track>
162
+ <name>One Take</name>
163
+ <playcount>1</playcount>
164
+ <tagcount></tagcount>
165
+ <mbid></mbid>
166
+ <url>http://www.last.fm/music/Denyo/_/One+Take</url>
167
+ <streamable fulltrack="1">1</streamable>
168
+ <artist>
169
+ <name>Denyo</name>
170
+ <mbid>8bb50f73-dd8b-4b43-b667-bc5c0ec4057a</mbid>
171
+ <url>http://www.last.fm/music/Denyo</url>
172
+ </artist>
173
+ <image size="small">http://userserve-ak.last.fm/serve/34s/8723187.jpg</image>
174
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/8723187.jpg</image>
175
+ <image size="large">http://userserve-ak.last.fm/serve/126/8723187.jpg</image>
176
+ </track>
177
+ <track>
178
+ <name>Stranded (Live)</name>
179
+ <playcount>1</playcount>
180
+ <tagcount></tagcount>
181
+ <mbid></mbid>
182
+ <url>http://www.last.fm/music/Gentleman/_/Stranded+%28Live%29</url>
183
+ <streamable fulltrack="0">0</streamable>
184
+ <artist>
185
+ <name>Gentleman</name>
186
+ <mbid>8de4a831-7c25-4d34-90cf-254de0c36e49</mbid>
187
+ <url>http://www.last.fm/music/Gentleman</url>
188
+ </artist>
189
+ </track>
190
+ <track>
191
+ <name>Kalifornia</name>
192
+ <playcount>1</playcount>
193
+ <tagcount></tagcount>
194
+ <mbid></mbid>
195
+ <url>http://www.last.fm/music/The+Subways/_/Kalifornia</url>
196
+ <streamable fulltrack="0">0</streamable>
197
+ <artist>
198
+ <name>The Subways</name>
199
+ <mbid>20e264d7-b4d5-4e49-8931-a9c67ff07f04</mbid>
200
+ <url>http://www.last.fm/music/The+Subways</url>
201
+ </artist>
202
+ </track>
203
+ <track>
204
+ <name>Safe Tonight</name>
205
+ <playcount>1</playcount>
206
+ <tagcount></tagcount>
207
+ <mbid></mbid>
208
+ <url>http://www.last.fm/music/Anti-Flag/_/Safe+Tonight</url>
209
+ <streamable fulltrack="0">1</streamable>
210
+ <artist>
211
+ <name>Anti-Flag</name>
212
+ <mbid>b88f21a7-a1b9-48fd-bbc4-ae758026f17f</mbid>
213
+ <url>http://www.last.fm/music/Anti-Flag</url>
214
+ </artist>
215
+ <image size="small">http://images.amazon.com/images/P/B0000005XM.01.MZZZZZZZ.jpg</image>
216
+ <image size="medium">http://images.amazon.com/images/P/B0000005XM.01.MZZZZZZZ.jpg</image>
217
+ <image size="large">http://images.amazon.com/images/P/B0000005XM.01.MZZZZZZZ.jpg</image>
218
+ </track>
219
+ <track>
220
+ <name>Lying From You</name>
221
+ <playcount>1</playcount>
222
+ <tagcount></tagcount>
223
+ <mbid></mbid>
224
+ <url>http://www.last.fm/music/Linkin+Park/_/Lying+From+You</url>
225
+ <streamable fulltrack="0">1</streamable>
226
+ <artist>
227
+ <name>Linkin Park</name>
228
+ <mbid>f59c5520-5f46-4d2c-b2c4-822eabf53419</mbid>
229
+ <url>http://www.last.fm/music/Linkin+Park</url>
230
+ </artist>
231
+ <image size="small">http://userserve-ak.last.fm/serve/34s/8641895.jpg</image>
232
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/8641895.jpg</image>
233
+ <image size="large">http://userserve-ak.last.fm/serve/126/8641895.jpg</image>
234
+ </track>
235
+ <track>
236
+ <name>Dance With Somebody</name>
237
+ <playcount>1</playcount>
238
+ <tagcount></tagcount>
239
+ <mbid></mbid>
240
+ <url>http://www.last.fm/music/Mando+Diao/_/Dance+With+Somebody</url>
241
+ <streamable fulltrack="1">1</streamable>
242
+ <artist>
243
+ <name>Mando Diao</name>
244
+ <mbid>ea854cc1-13fc-4fd0-86a5-d2c7dba06764</mbid>
245
+ <url>http://www.last.fm/music/Mando+Diao</url>
246
+ </artist>
247
+ </track>
248
+ <track>
249
+ <name>Your Urge</name>
250
+ <playcount>1</playcount>
251
+ <tagcount></tagcount>
252
+ <mbid></mbid>
253
+ <url>http://www.last.fm/music/Max%C3%AFmo+Park/_/Your+Urge</url>
254
+ <streamable fulltrack="0">0</streamable>
255
+ <artist>
256
+ <name>Maxïmo Park</name>
257
+ <mbid>92e634a7-6023-4be8-be15-ebba822f5b34</mbid>
258
+ <url>http://www.last.fm/music/Max%C3%AFmo+Park</url>
259
+ </artist>
260
+ </track>
261
+ <track>
262
+ <name>Gap</name>
263
+ <playcount>1</playcount>
264
+ <tagcount></tagcount>
265
+ <mbid></mbid>
266
+ <url>http://www.last.fm/music/The+Kooks/_/Gap</url>
267
+ <streamable fulltrack="0">1</streamable>
268
+ <artist>
269
+ <name>The Kooks</name>
270
+ <mbid>f82f3a3e-29c2-42ca-b589-bc5dc210fa9e</mbid>
271
+ <url>http://www.last.fm/music/The+Kooks</url>
272
+ </artist>
273
+ <image size="small">http://userserve-ak.last.fm/serve/34s/15158593.jpg</image>
274
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/15158593.jpg</image>
275
+ <image size="large">http://userserve-ak.last.fm/serve/126/15158593.jpg</image>
276
+ </track>
277
+ <track>
278
+ <name>Rock &amp; Roll Queen (album Version)</name>
279
+ <playcount>1</playcount>
280
+ <tagcount></tagcount>
281
+ <mbid></mbid>
282
+ <url>http://www.last.fm/music/The+Subways/_/Rock%2B%2526%2BRoll%2BQueen%2B%2528album%2BVersion%2529</url>
283
+ <streamable fulltrack="0">1</streamable>
284
+ <artist>
285
+ <name>The Subways</name>
286
+ <mbid>20e264d7-b4d5-4e49-8931-a9c67ff07f04</mbid>
287
+ <url>http://www.last.fm/music/The+Subways</url>
288
+ </artist>
289
+ <image size="small">http://userserve-ak.last.fm/serve/34s/8679549.jpg</image>
290
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/8679549.jpg</image>
291
+ <image size="large">http://userserve-ak.last.fm/serve/126/8679549.jpg</image>
292
+ </track>
293
+ <track>
294
+ <name>Schiss</name>
295
+ <playcount>1</playcount>
296
+ <tagcount></tagcount>
297
+ <mbid></mbid>
298
+ <url>http://www.last.fm/music/Absolute+Beginner/_/Schiss</url>
299
+ <streamable fulltrack="0">0</streamable>
300
+ <artist>
301
+ <name>Absolute Beginner</name>
302
+ <mbid>897db291-e88a-49be-baaa-d12e300d971c</mbid>
303
+ <url>http://www.last.fm/music/Absolute+Beginner</url>
304
+ </artist>
305
+ </track>
306
+ <track>
307
+ <name>Schiss</name>
308
+ <playcount>1</playcount>
309
+ <tagcount></tagcount>
310
+ <mbid></mbid>
311
+ <url>http://www.last.fm/music/Beginner/_/Schiss</url>
312
+ <streamable fulltrack="1">1</streamable>
313
+ <artist>
314
+ <name>Beginner</name>
315
+ <mbid>709b55e5-0286-4fda-bf7e-3aff1894554d</mbid>
316
+ <url>http://www.last.fm/music/Beginner</url>
317
+ </artist>
318
+ <image size="small">http://userserve-ak.last.fm/serve/34s/12639629.jpg</image>
319
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/12639629.jpg</image>
320
+ <image size="large">http://userserve-ak.last.fm/serve/126/12639629.jpg</image>
321
+ </track>
322
+ <track>
323
+ <name>Shout 2000</name>
324
+ <playcount>1</playcount>
325
+ <tagcount></tagcount>
326
+ <mbid></mbid>
327
+ <url>http://www.last.fm/music/Disturbed/_/Shout+2000</url>
328
+ <streamable fulltrack="0">1</streamable>
329
+ <artist>
330
+ <name>Disturbed</name>
331
+ <mbid>4bb4e4e4-5f66-4509-98af-62dbb90c45c5</mbid>
332
+ <url>http://www.last.fm/music/Disturbed</url>
333
+ </artist>
334
+ </track>
335
+ <track>
336
+ <name>Faint (Live)</name>
337
+ <playcount>1</playcount>
338
+ <tagcount></tagcount>
339
+ <mbid></mbid>
340
+ <url>http://www.last.fm/music/Linkin+Park/_/Faint+%28Live%29</url>
341
+ <streamable fulltrack="0">0</streamable>
342
+ <artist>
343
+ <name>Linkin Park</name>
344
+ <mbid>f59c5520-5f46-4d2c-b2c4-822eabf53419</mbid>
345
+ <url>http://www.last.fm/music/Linkin+Park</url>
346
+ </artist>
347
+ </track>
348
+ <track>
349
+ <name>Frieden im Krieg</name>
350
+ <playcount>1</playcount>
351
+ <tagcount></tagcount>
352
+ <mbid></mbid>
353
+ <url>http://www.last.fm/music/Madsen/_/Frieden+im+Krieg</url>
354
+ <streamable fulltrack="1">1</streamable>
355
+ <artist>
356
+ <name>Madsen</name>
357
+ <mbid>8a0c3b86-af55-42d2-85b9-6372e7430986</mbid>
358
+ <url>http://www.last.fm/music/Madsen</url>
359
+ </artist>
360
+ <image size="small">http://userserve-ak.last.fm/serve/34s/5548067.jpg</image>
361
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/5548067.jpg</image>
362
+ <image size="large">http://userserve-ak.last.fm/serve/126/5548067.jpg</image>
363
+ </track>
364
+ <track>
365
+ <name>Sk8er Boi</name>
366
+ <playcount>1</playcount>
367
+ <tagcount></tagcount>
368
+ <mbid></mbid>
369
+ <url>http://www.last.fm/music/Avril+Lavigne/_/Sk8er+Boi</url>
370
+ <streamable fulltrack="0">1</streamable>
371
+ <artist>
372
+ <name>Avril Lavigne</name>
373
+ <mbid>0103c1cc-4a09-4a5d-a344-56ad99a77193</mbid>
374
+ <url>http://www.last.fm/music/Avril+Lavigne</url>
375
+ </artist>
376
+ <image size="small">http://userserve-ak.last.fm/serve/34s/23749775.jpg</image>
377
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/23749775.jpg</image>
378
+ <image size="large">http://userserve-ak.last.fm/serve/126/23749775.jpg</image>
379
+ </track>
380
+ <track>
381
+ <name>Extraordinary Girl</name>
382
+ <playcount>1</playcount>
383
+ <tagcount></tagcount>
384
+ <mbid></mbid>
385
+ <url>http://www.last.fm/music/Green+Day/_/Extraordinary+Girl</url>
386
+ <streamable fulltrack="0">1</streamable>
387
+ <artist>
388
+ <name>Green Day</name>
389
+ <mbid>084308bd-1654-436f-ba03-df6697104e19</mbid>
390
+ <url>http://www.last.fm/music/Green+Day</url>
391
+ </artist>
392
+ </track>
393
+ <track>
394
+ <name>Sex on Fire</name>
395
+ <playcount>1</playcount>
396
+ <tagcount></tagcount>
397
+ <mbid></mbid>
398
+ <url>http://www.last.fm/music/Kings+of+Leon/_/Sex+on+Fire</url>
399
+ <streamable fulltrack="0">1</streamable>
400
+ <artist>
401
+ <name>Kings of Leon</name>
402
+ <mbid>6ffb8ea9-2370-44d8-b678-e9237bbd347b</mbid>
403
+ <url>http://www.last.fm/music/Kings+of+Leon</url>
404
+ </artist>
405
+ </track>
406
+ <track>
407
+ <name>Give Me Novacaine</name>
408
+ <playcount>1</playcount>
409
+ <tagcount></tagcount>
410
+ <mbid></mbid>
411
+ <url>http://www.last.fm/music/Green+Day/_/Give+Me+Novacaine</url>
412
+ <streamable fulltrack="0">1</streamable>
413
+ <artist>
414
+ <name>Green Day</name>
415
+ <mbid>084308bd-1654-436f-ba03-df6697104e19</mbid>
416
+ <url>http://www.last.fm/music/Green+Day</url>
417
+ </artist>
418
+ </track>
419
+ <track>
420
+ <name>These Words</name>
421
+ <playcount>1</playcount>
422
+ <tagcount></tagcount>
423
+ <mbid></mbid>
424
+ <url>http://www.last.fm/music/Natasha+Badingfield/_/These+Words</url>
425
+ <streamable fulltrack="0">0</streamable>
426
+ <artist>
427
+ <name>Natasha Badingfield</name>
428
+ <mbid></mbid>
429
+ <url>http://www.last.fm/music/Natasha+Badingfield</url>
430
+ </artist>
431
+ </track>
432
+ <track>
433
+ <name>Na Na Na Na Naa</name>
434
+ <playcount>1</playcount>
435
+ <tagcount></tagcount>
436
+ <mbid></mbid>
437
+ <url>http://www.last.fm/music/Kaiser+Chiefs/_/Na+Na+Na+Na+Naa</url>
438
+ <streamable fulltrack="0">1</streamable>
439
+ <artist>
440
+ <name>Kaiser Chiefs</name>
441
+ <mbid>90218af4-4d58-4821-8d41-2ee295ebbe21</mbid>
442
+ <url>http://www.last.fm/music/Kaiser+Chiefs</url>
443
+ </artist>
444
+ <image size="small">http://userserve-ak.last.fm/serve/34s/8674107.jpg</image>
445
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/8674107.jpg</image>
446
+ <image size="large">http://userserve-ak.last.fm/serve/126/8674107.jpg</image>
447
+ </track>
448
+ <track>
449
+ <name>Kamelralley</name>
450
+ <playcount>1</playcount>
451
+ <tagcount></tagcount>
452
+ <mbid></mbid>
453
+ <url>http://www.last.fm/music/Die+%C3%84rzte/_/Kamelralley</url>
454
+ <streamable fulltrack="0">1</streamable>
455
+ <artist>
456
+ <name>Die Ärzte</name>
457
+ <mbid>f2fb0ff0-5679-42ec-a55c-15109ce6e320</mbid>
458
+ <url>http://www.last.fm/music/Die+%C3%84rzte</url>
459
+ </artist>
460
+ <image size="small">http://images.amazon.com/images/P/B00000ARRT.01._SCMZZZZZZZ_.jpg</image>
461
+ <image size="medium">http://images.amazon.com/images/P/B00000ARRT.01._SCMZZZZZZZ_.jpg</image>
462
+ <image size="large">http://images.amazon.com/images/P/B00000ARRT.01._SCMZZZZZZZ_.jpg</image>
463
+ </track>
464
+ <track>
465
+ <name>Left Right</name>
466
+ <playcount>1</playcount>
467
+ <tagcount></tagcount>
468
+ <mbid></mbid>
469
+ <url>http://www.last.fm/music/The+Chemical+Brothers/_/Left+Right</url>
470
+ <streamable fulltrack="0">1</streamable>
471
+ <artist>
472
+ <name>The Chemical Brothers</name>
473
+ <mbid>1946a82a-f927-40c2-8235-38d64f50d043</mbid>
474
+ <url>http://www.last.fm/music/The+Chemical+Brothers</url>
475
+ </artist>
476
+ <image size="small">http://userserve-ak.last.fm/serve/34s/14451887.jpg</image>
477
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/14451887.jpg</image>
478
+ <image size="large">http://userserve-ak.last.fm/serve/126/14451887.jpg</image>
479
+ </track>
480
+ <track>
481
+ <name>Electric Feel (MGMT Cover)</name>
482
+ <playcount>1</playcount>
483
+ <tagcount></tagcount>
484
+ <mbid></mbid>
485
+ <url>http://www.last.fm/music/Katy+Perry/_/Electric+Feel+%28MGMT+Cover%29</url>
486
+ <streamable fulltrack="0">0</streamable>
487
+ <artist>
488
+ <name>Katy Perry</name>
489
+ <mbid>122d63fc-8671-43e4-9752-34e846d62a9c</mbid>
490
+ <url>http://www.last.fm/music/Katy+Perry</url>
491
+ </artist>
492
+ </track>
493
+ <track>
494
+ <name>Natur</name>
495
+ <playcount>1</playcount>
496
+ <tagcount></tagcount>
497
+ <mbid></mbid>
498
+ <url>http://www.last.fm/music/Badesalz/_/Natur</url>
499
+ <streamable fulltrack="0">1</streamable>
500
+ <artist>
501
+ <name>Badesalz</name>
502
+ <mbid>533d4015-a55b-4f2a-b968-b5a43f08b381</mbid>
503
+ <url>http://www.last.fm/music/Badesalz</url>
504
+ </artist>
505
+ <image size="small">http://userserve-ak.last.fm/serve/34s/19583447.jpg</image>
506
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/19583447.jpg</image>
507
+ <image size="large">http://userserve-ak.last.fm/serve/126/19583447.jpg</image>
508
+ </track>
509
+ <track>
510
+ <name>Samba de Janeiro</name>
511
+ <playcount>1</playcount>
512
+ <tagcount></tagcount>
513
+ <mbid></mbid>
514
+ <url>http://www.last.fm/music/Bellini/_/Samba+de+Janeiro</url>
515
+ <streamable fulltrack="0">1</streamable>
516
+ <artist>
517
+ <name>Bellini</name>
518
+ <mbid>9e4b3bc8-1153-4f8f-87ce-f46035bae7ea</mbid>
519
+ <url>http://www.last.fm/music/Bellini</url>
520
+ </artist>
521
+ <image size="small">http://images.amazon.com/images/P/B00004TAHQ.01.MZZZZZZZ.jpg</image>
522
+ <image size="medium">http://images.amazon.com/images/P/B00004TAHQ.01.MZZZZZZZ.jpg</image>
523
+ <image size="large">http://images.amazon.com/images/P/B00004TAHQ.01.MZZZZZZZ.jpg</image>
524
+ </track>
525
+ <track>
526
+ <name>Snooze</name>
527
+ <playcount>1</playcount>
528
+ <tagcount></tagcount>
529
+ <mbid></mbid>
530
+ <url>http://www.last.fm/music/Denyo/_/Snooze</url>
531
+ <streamable fulltrack="1">1</streamable>
532
+ <artist>
533
+ <name>Denyo</name>
534
+ <mbid>8bb50f73-dd8b-4b43-b667-bc5c0ec4057a</mbid>
535
+ <url>http://www.last.fm/music/Denyo</url>
536
+ </artist>
537
+ <image size="small">http://userserve-ak.last.fm/serve/34s/8723187.jpg</image>
538
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/8723187.jpg</image>
539
+ <image size="large">http://userserve-ak.last.fm/serve/126/8723187.jpg</image>
540
+ </track>
541
+ <track>
542
+ <name>Young Offender</name>
543
+ <playcount>1</playcount>
544
+ <tagcount></tagcount>
545
+ <mbid></mbid>
546
+ <url>http://www.last.fm/music/Pet+Shop+Boys/_/Young+Offender</url>
547
+ <streamable fulltrack="0">1</streamable>
548
+ <artist>
549
+ <name>Pet Shop Boys</name>
550
+ <mbid>be540c02-7898-4b79-9acc-c8122c7d9e83</mbid>
551
+ <url>http://www.last.fm/music/Pet+Shop+Boys</url>
552
+ </artist>
553
+ <image size="small">http://images.amazon.com/images/P/B000008JEZ.01._SCMZZZZZZZ_.jpg</image>
554
+ <image size="medium">http://images.amazon.com/images/P/B000008JEZ.01._SCMZZZZZZZ_.jpg</image>
555
+ <image size="large">http://images.amazon.com/images/P/B000008JEZ.01._SCMZZZZZZZ_.jpg</image>
556
+ </track>
557
+ <track>
558
+ <name>Swamp Song #1</name>
559
+ <playcount>1</playcount>
560
+ <tagcount></tagcount>
561
+ <mbid></mbid>
562
+ <url>http://www.last.fm/music/Oasis/_/Swamp%2BSong%2B%25231</url>
563
+ <streamable fulltrack="0">0</streamable>
564
+ <artist>
565
+ <name>Oasis</name>
566
+ <mbid>39ab1aed-75e0-4140-bd47-540276886b60</mbid>
567
+ <url>http://www.last.fm/music/Oasis</url>
568
+ </artist>
569
+ </track>
570
+ <track>
571
+ <name>son of dad</name>
572
+ <playcount>1</playcount>
573
+ <tagcount></tagcount>
574
+ <mbid></mbid>
575
+ <url>http://www.last.fm/music/Mando+Diao+%28live%29/_/son+of+dad</url>
576
+ <streamable fulltrack="0">0</streamable>
577
+ <artist>
578
+ <name>Mando Diao (live)</name>
579
+ <mbid></mbid>
580
+ <url>http://www.last.fm/music/Mando+Diao+%28live%29</url>
581
+ </artist>
582
+ </track>
583
+ <track>
584
+ <name>Catch</name>
585
+ <playcount>1</playcount>
586
+ <tagcount></tagcount>
587
+ <mbid></mbid>
588
+ <url>http://www.last.fm/music/Kosheen/_/Catch</url>
589
+ <streamable fulltrack="0">1</streamable>
590
+ <artist>
591
+ <name>Kosheen</name>
592
+ <mbid>4f4bda3c-d636-4135-b65a-6cc26bc75788</mbid>
593
+ <url>http://www.last.fm/music/Kosheen</url>
594
+ </artist>
595
+ <image size="small">http://userserve-ak.last.fm/serve/34s/15418345.jpg</image>
596
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/15418345.jpg</image>
597
+ <image size="large">http://userserve-ak.last.fm/serve/126/15418345.jpg</image>
598
+ </track>
599
+ <track>
600
+ <name>1. Wahl</name>
601
+ <playcount>1</playcount>
602
+ <tagcount></tagcount>
603
+ <mbid></mbid>
604
+ <url>http://www.last.fm/music/Sportfreunde+Stiller/_/1.+Wahl</url>
605
+ <streamable fulltrack="1">1</streamable>
606
+ <artist>
607
+ <name>Sportfreunde Stiller</name>
608
+ <mbid>35581de7-591f-424f-9c64-7b22fd45605e</mbid>
609
+ <url>http://www.last.fm/music/Sportfreunde+Stiller</url>
610
+ </artist>
611
+ <image size="small">http://userserve-ak.last.fm/serve/34s/25215031.jpg</image>
612
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/25215031.jpg</image>
613
+ <image size="large">http://userserve-ak.last.fm/serve/126/25215031.jpg</image>
614
+ </track>
615
+ <track>
616
+ <name>Good People</name>
617
+ <playcount>1</playcount>
618
+ <tagcount></tagcount>
619
+ <mbid></mbid>
620
+ <url>http://www.last.fm/music/Jack+Johnson/_/Good+People</url>
621
+ <streamable fulltrack="1">1</streamable>
622
+ <artist>
623
+ <name>Jack Johnson</name>
624
+ <mbid>ff6e677f-91dd-4986-a174-8db0474b1799</mbid>
625
+ <url>http://www.last.fm/music/Jack+Johnson</url>
626
+ </artist>
627
+ <image size="small">http://userserve-ak.last.fm/serve/34s/8673183.jpg</image>
628
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/8673183.jpg</image>
629
+ <image size="large">http://userserve-ak.last.fm/serve/126/8673183.jpg</image>
630
+ </track>
631
+ <track>
632
+ <name>This Song</name>
633
+ <playcount>1</playcount>
634
+ <tagcount></tagcount>
635
+ <mbid></mbid>
636
+ <url>http://www.last.fm/music/The+Enemy/_/This+Song</url>
637
+ <streamable fulltrack="0">1</streamable>
638
+ <artist>
639
+ <name>The Enemy</name>
640
+ <mbid></mbid>
641
+ <url>http://www.last.fm/music/The+Enemy</url>
642
+ </artist>
643
+ <image size="small">http://userserve-ak.last.fm/serve/34s/9687255.jpg</image>
644
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/9687255.jpg</image>
645
+ <image size="large">http://userserve-ak.last.fm/serve/126/9687255.jpg</image>
646
+ </track>
647
+ <track>
648
+ <name>Half Light</name>
649
+ <playcount>1</playcount>
650
+ <tagcount></tagcount>
651
+ <mbid></mbid>
652
+ <url>http://www.last.fm/music/Athlete/_/Half+Light</url>
653
+ <streamable fulltrack="0">1</streamable>
654
+ <artist>
655
+ <name>Athlete</name>
656
+ <mbid>906cbb69-b793-463a-832d-b5bf850f01a2</mbid>
657
+ <url>http://www.last.fm/music/Athlete</url>
658
+ </artist>
659
+ <image size="small">http://cdn.last.fm/depth/catalogue/noimage/cover_med.gif</image>
660
+ <image size="medium">http://cdn.last.fm/depth/catalogue/noimage/cover_med.gif</image>
661
+ <image size="large">http://cdn.last.fm/depth/catalogue/noimage/cover_med.gif</image>
662
+ </track>
663
+ <track>
664
+ <name>mi sangre - la camisa negra</name>
665
+ <playcount>1</playcount>
666
+ <tagcount></tagcount>
667
+ <mbid></mbid>
668
+ <url>http://www.last.fm/music/Juanes/_/mi+sangre+-+la+camisa+negra</url>
669
+ <streamable fulltrack="0">0</streamable>
670
+ <artist>
671
+ <name>Juanes</name>
672
+ <mbid>8b0f05ce-354e-4121-9e0b-8b4732ea844f</mbid>
673
+ <url>http://www.last.fm/music/Juanes</url>
674
+ </artist>
675
+ </track>
676
+ <track>
677
+ <name>Walking After You</name>
678
+ <playcount>1</playcount>
679
+ <tagcount></tagcount>
680
+ <mbid></mbid>
681
+ <url>http://www.last.fm/music/Foo+Fighters/_/Walking+After+You</url>
682
+ <streamable fulltrack="0">1</streamable>
683
+ <artist>
684
+ <name>Foo Fighters</name>
685
+ <mbid>67f66c07-6e61-4026-ade5-7e782fad3a5d</mbid>
686
+ <url>http://www.last.fm/music/Foo+Fighters</url>
687
+ </artist>
688
+ <image size="small">http://userserve-ak.last.fm/serve/34s/23755807.jpg</image>
689
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/23755807.jpg</image>
690
+ <image size="large">http://userserve-ak.last.fm/serve/126/23755807.jpg</image>
691
+ </track>
692
+ <track>
693
+ <name>Carry On Up the Morning</name>
694
+ <playcount>1</playcount>
695
+ <tagcount></tagcount>
696
+ <mbid></mbid>
697
+ <url>http://www.last.fm/music/Babyshambles/_/Carry+On+Up+the+Morning</url>
698
+ <streamable fulltrack="0">1</streamable>
699
+ <artist>
700
+ <name>Babyshambles</name>
701
+ <mbid>8e1e03fe-ebbc-467a-b541-857144db10fb</mbid>
702
+ <url>http://www.last.fm/music/Babyshambles</url>
703
+ </artist>
704
+ <image size="small">http://userserve-ak.last.fm/serve/34s/14070721.jpg</image>
705
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/14070721.jpg</image>
706
+ <image size="large">http://userserve-ak.last.fm/serve/126/14070721.jpg</image>
707
+ </track>
708
+ <track>
709
+ <name>Virginia Moon</name>
710
+ <playcount>1</playcount>
711
+ <tagcount></tagcount>
712
+ <mbid></mbid>
713
+ <url>http://www.last.fm/music/Foo+Fighters/_/Virginia+Moon</url>
714
+ <streamable fulltrack="0">1</streamable>
715
+ <artist>
716
+ <name>Foo Fighters</name>
717
+ <mbid>67f66c07-6e61-4026-ade5-7e782fad3a5d</mbid>
718
+ <url>http://www.last.fm/music/Foo+Fighters</url>
719
+ </artist>
720
+ <image size="small">http://userserve-ak.last.fm/serve/34s/23752293.jpg</image>
721
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/23752293.jpg</image>
722
+ <image size="large">http://userserve-ak.last.fm/serve/126/23752293.jpg</image>
723
+ </track>
724
+ <track>
725
+ <name>Red Flag</name>
726
+ <playcount>1</playcount>
727
+ <tagcount></tagcount>
728
+ <mbid></mbid>
729
+ <url>http://www.last.fm/music/Elke+Korn/_/Red+Flag</url>
730
+ <streamable fulltrack="0">0</streamable>
731
+ <artist>
732
+ <name>Elke Korn</name>
733
+ <mbid></mbid>
734
+ <url>http://www.last.fm/music/Elke+Korn</url>
735
+ </artist>
736
+ </track>
737
+ <track>
738
+ <name>Are You Gonna Go My Way</name>
739
+ <playcount>1</playcount>
740
+ <tagcount></tagcount>
741
+ <mbid></mbid>
742
+ <url>http://www.last.fm/music/Lenny+Kravitz/_/Are+You+Gonna+Go+My+Way</url>
743
+ <streamable fulltrack="0">1</streamable>
744
+ <artist>
745
+ <name>Lenny Kravitz</name>
746
+ <mbid>0ef3f425-9bd2-4216-9dd2-219d2fe90f1f</mbid>
747
+ <url>http://www.last.fm/music/Lenny+Kravitz</url>
748
+ </artist>
749
+ <image size="small">http://userserve-ak.last.fm/serve/34s/11520055.jpg</image>
750
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/11520055.jpg</image>
751
+ <image size="large">http://userserve-ak.last.fm/serve/126/11520055.jpg</image>
752
+ </track>
753
+ </tracks></lfm>