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,765 @@
1
+ <?xml version="1.0" encoding="utf-8"?>
2
+ <lfm status="ok">
3
+ <tracks user="xhochy" page="2" perPage="50" totalPages="34">
4
+ <track>
5
+ <name>Original Prankster</name>
6
+ <playcount>57</playcount>
7
+ <tagcount></tagcount>
8
+ <mbid></mbid>
9
+ <url>http://www.last.fm/music/The+Offspring/_/Original+Prankster</url>
10
+ <streamable fulltrack="0">1</streamable>
11
+ <artist>
12
+ <name>The Offspring</name>
13
+ <mbid>23a03e33-a603-404e-bcbf-2c00159d7067</mbid>
14
+ <url>http://www.last.fm/music/The+Offspring</url>
15
+ </artist>
16
+ <image size="small">http://userserve-ak.last.fm/serve/34s/23037037.jpg</image>
17
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/23037037.jpg</image>
18
+ <image size="large">http://userserve-ak.last.fm/serve/126/23037037.jpg</image>
19
+ </track>
20
+ <track>
21
+ <name>Generator</name>
22
+ <playcount>57</playcount>
23
+ <tagcount></tagcount>
24
+ <mbid></mbid>
25
+ <url>http://www.last.fm/music/The+Holloways/_/Generator</url>
26
+ <streamable fulltrack="0">1</streamable>
27
+ <artist>
28
+ <name>The Holloways</name>
29
+ <mbid>ed0c90ee-4cc0-4928-8f61-93dbd7869eb9</mbid>
30
+ <url>http://www.last.fm/music/The+Holloways</url>
31
+ </artist>
32
+ <image size="small">http://userserve-ak.last.fm/serve/34s/4088497.jpg</image>
33
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/4088497.jpg</image>
34
+ <image size="large">http://userserve-ak.last.fm/serve/126/4088497.jpg</image>
35
+ </track>
36
+ <track>
37
+ <name>SRXT</name>
38
+ <playcount>56</playcount>
39
+ <tagcount></tagcount>
40
+ <mbid></mbid>
41
+ <url>http://www.last.fm/music/Bloc+Party/_/SRXT</url>
42
+ <streamable fulltrack="0">1</streamable>
43
+ <artist>
44
+ <name>Bloc Party</name>
45
+ <mbid>8c538f11-c141-4588-8ecb-931083524186</mbid>
46
+ <url>http://www.last.fm/music/Bloc+Party</url>
47
+ </artist>
48
+ <image size="small">http://userserve-ak.last.fm/serve/34s/9102181.jpg</image>
49
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/9102181.jpg</image>
50
+ <image size="large">http://userserve-ak.last.fm/serve/126/9102181.jpg</image>
51
+ </track>
52
+ <track>
53
+ <name>What's My Age Again?</name>
54
+ <playcount>56</playcount>
55
+ <tagcount></tagcount>
56
+ <mbid></mbid>
57
+ <url>http://www.last.fm/music/blink-182/_/What%27s+My+Age+Again%3F</url>
58
+ <streamable fulltrack="1">1</streamable>
59
+ <artist>
60
+ <name>blink-182</name>
61
+ <mbid>0743b15a-3c32-48c8-ad58-cb325350befa</mbid>
62
+ <url>http://www.last.fm/music/blink-182</url>
63
+ </artist>
64
+ <image size="small">http://userserve-ak.last.fm/serve/34s/8634779.jpg</image>
65
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/8634779.jpg</image>
66
+ <image size="large">http://userserve-ak.last.fm/serve/126/8634779.jpg</image>
67
+ </track>
68
+ <track>
69
+ <name>All The Small Thing</name>
70
+ <playcount>55</playcount>
71
+ <tagcount></tagcount>
72
+ <mbid></mbid>
73
+ <url>http://www.last.fm/music/blink-182/_/All+The+Small+Thing</url>
74
+ <streamable fulltrack="0">0</streamable>
75
+ <artist>
76
+ <name>blink-182</name>
77
+ <mbid>0743b15a-3c32-48c8-ad58-cb325350befa</mbid>
78
+ <url>http://www.last.fm/music/blink-182</url>
79
+ </artist>
80
+ </track>
81
+ <track>
82
+ <name>Viva la Vida</name>
83
+ <playcount>55</playcount>
84
+ <tagcount></tagcount>
85
+ <mbid></mbid>
86
+ <url>http://www.last.fm/music/Coldplay/_/Viva+la+Vida</url>
87
+ <streamable fulltrack="0">1</streamable>
88
+ <artist>
89
+ <name>Coldplay</name>
90
+ <mbid>cc197bad-dc9c-440d-a5b5-d52ba2e14234</mbid>
91
+ <url>http://www.last.fm/music/Coldplay</url>
92
+ </artist>
93
+ <image size="small">http://userserve-ak.last.fm/serve/34s/14349365.jpg</image>
94
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/14349365.jpg</image>
95
+ <image size="large">http://userserve-ak.last.fm/serve/126/14349365.jpg</image>
96
+ </track>
97
+ <track>
98
+ <name>Panik</name>
99
+ <playcount>54</playcount>
100
+ <tagcount></tagcount>
101
+ <mbid></mbid>
102
+ <url>http://www.last.fm/music/Madsen/_/Panik</url>
103
+ <streamable fulltrack="1">1</streamable>
104
+ <artist>
105
+ <name>Madsen</name>
106
+ <mbid>8a0c3b86-af55-42d2-85b9-6372e7430986</mbid>
107
+ <url>http://www.last.fm/music/Madsen</url>
108
+ </artist>
109
+ <image size="small">http://userserve-ak.last.fm/serve/34s/8743285.jpg</image>
110
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/8743285.jpg</image>
111
+ <image size="large">http://userserve-ak.last.fm/serve/126/8743285.jpg</image>
112
+ </track>
113
+ <track>
114
+ <name>Kids</name>
115
+ <playcount>54</playcount>
116
+ <tagcount></tagcount>
117
+ <mbid></mbid>
118
+ <url>http://www.last.fm/music/MGMT/_/Kids</url>
119
+ <streamable fulltrack="0">1</streamable>
120
+ <artist>
121
+ <name>MGMT</name>
122
+ <mbid>c485632c-b784-4ee9-8ea1-c5fb365681fc</mbid>
123
+ <url>http://www.last.fm/music/MGMT</url>
124
+ </artist>
125
+ <image size="small">http://userserve-ak.last.fm/serve/34s/22357783.jpg</image>
126
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/22357783.jpg</image>
127
+ <image size="large">http://userserve-ak.last.fm/serve/126/22357783.jpg</image>
128
+ </track>
129
+ <track>
130
+ <name>Oxford Comma</name>
131
+ <playcount>53</playcount>
132
+ <tagcount></tagcount>
133
+ <mbid></mbid>
134
+ <url>http://www.last.fm/music/Vampire+Weekend/_/Oxford+Comma</url>
135
+ <streamable fulltrack="0">0</streamable>
136
+ <artist>
137
+ <name>Vampire Weekend</name>
138
+ <mbid>af37c51c-0790-4a29-b995-456f98a6b8c9</mbid>
139
+ <url>http://www.last.fm/music/Vampire+Weekend</url>
140
+ </artist>
141
+ <image size="small">http://userserve-ak.last.fm/serve/34s/10258165.jpg</image>
142
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/10258165.jpg</image>
143
+ <image size="large">http://userserve-ak.last.fm/serve/126/10258165.jpg</image>
144
+ </track>
145
+ <track>
146
+ <name>I Still Remember</name>
147
+ <playcount>53</playcount>
148
+ <tagcount></tagcount>
149
+ <mbid></mbid>
150
+ <url>http://www.last.fm/music/Bloc+Party/_/I+Still+Remember</url>
151
+ <streamable fulltrack="1">1</streamable>
152
+ <artist>
153
+ <name>Bloc Party</name>
154
+ <mbid>8c538f11-c141-4588-8ecb-931083524186</mbid>
155
+ <url>http://www.last.fm/music/Bloc+Party</url>
156
+ </artist>
157
+ <image size="small">http://userserve-ak.last.fm/serve/34s/9102181.jpg</image>
158
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/9102181.jpg</image>
159
+ <image size="large">http://userserve-ak.last.fm/serve/126/9102181.jpg</image>
160
+ </track>
161
+ <track>
162
+ <name>Want You Bad</name>
163
+ <playcount>53</playcount>
164
+ <tagcount></tagcount>
165
+ <mbid></mbid>
166
+ <url>http://www.last.fm/music/The+Offspring/_/Want+You+Bad</url>
167
+ <streamable fulltrack="0">1</streamable>
168
+ <artist>
169
+ <name>The Offspring</name>
170
+ <mbid>23a03e33-a603-404e-bcbf-2c00159d7067</mbid>
171
+ <url>http://www.last.fm/music/The+Offspring</url>
172
+ </artist>
173
+ <image size="small">http://userserve-ak.last.fm/serve/34s/23037037.jpg</image>
174
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/23037037.jpg</image>
175
+ <image size="large">http://userserve-ak.last.fm/serve/126/23037037.jpg</image>
176
+ </track>
177
+ <track>
178
+ <name>Walk Idiot Walk</name>
179
+ <playcount>52</playcount>
180
+ <tagcount></tagcount>
181
+ <mbid></mbid>
182
+ <url>http://www.last.fm/music/The+Hives/_/Walk+Idiot+Walk</url>
183
+ <streamable fulltrack="0">0</streamable>
184
+ <artist>
185
+ <name>The Hives</name>
186
+ <mbid>487bfd74-71bf-46dd-b89c-80b7a0f06f2f</mbid>
187
+ <url>http://www.last.fm/music/The+Hives</url>
188
+ </artist>
189
+ <image size="small">http://userserve-ak.last.fm/serve/34s/8684855.jpg</image>
190
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/8684855.jpg</image>
191
+ <image size="large">http://userserve-ak.last.fm/serve/126/8684855.jpg</image>
192
+ </track>
193
+ <track>
194
+ <name>Plans</name>
195
+ <playcount>52</playcount>
196
+ <tagcount></tagcount>
197
+ <mbid></mbid>
198
+ <url>http://www.last.fm/music/Bloc+Party/_/Plans</url>
199
+ <streamable fulltrack="0">1</streamable>
200
+ <artist>
201
+ <name>Bloc Party</name>
202
+ <mbid>8c538f11-c141-4588-8ecb-931083524186</mbid>
203
+ <url>http://www.last.fm/music/Bloc+Party</url>
204
+ </artist>
205
+ <image size="small">http://userserve-ak.last.fm/serve/34s/9903887.jpg</image>
206
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/9903887.jpg</image>
207
+ <image size="large">http://userserve-ak.last.fm/serve/126/9903887.jpg</image>
208
+ </track>
209
+ <track>
210
+ <name>Speed of Sound</name>
211
+ <playcount>52</playcount>
212
+ <tagcount></tagcount>
213
+ <mbid></mbid>
214
+ <url>http://www.last.fm/music/Coldplay/_/Speed+of+Sound</url>
215
+ <streamable fulltrack="0">1</streamable>
216
+ <artist>
217
+ <name>Coldplay</name>
218
+ <mbid>cc197bad-dc9c-440d-a5b5-d52ba2e14234</mbid>
219
+ <url>http://www.last.fm/music/Coldplay</url>
220
+ </artist>
221
+ <image size="small">http://images.amazon.com/images/P/B0006L16N8.01.MZZZZZZZ.jpg</image>
222
+ <image size="medium">http://images.amazon.com/images/P/B0006L16N8.01.MZZZZZZZ.jpg</image>
223
+ <image size="large">http://images.amazon.com/images/P/B0006L16N8.01.MZZZZZZZ.jpg</image>
224
+ </track>
225
+ <track>
226
+ <name>The Kids Arent All Right</name>
227
+ <playcount>51</playcount>
228
+ <tagcount></tagcount>
229
+ <mbid></mbid>
230
+ <url>http://www.last.fm/music/The+Offspring/_/The+Kids+Arent+All+Right</url>
231
+ <streamable fulltrack="0">0</streamable>
232
+ <artist>
233
+ <name>The Offspring</name>
234
+ <mbid>23a03e33-a603-404e-bcbf-2c00159d7067</mbid>
235
+ <url>http://www.last.fm/music/The+Offspring</url>
236
+ </artist>
237
+ </track>
238
+ <track>
239
+ <name>Moving to New York</name>
240
+ <playcount>51</playcount>
241
+ <tagcount></tagcount>
242
+ <mbid></mbid>
243
+ <url>http://www.last.fm/music/The+Wombats/_/Moving+to+New+York</url>
244
+ <streamable fulltrack="0">1</streamable>
245
+ <artist>
246
+ <name>The Wombats</name>
247
+ <mbid>e105c272-b5d7-4135-82ef-d60bded54345</mbid>
248
+ <url>http://www.last.fm/music/The+Wombats</url>
249
+ </artist>
250
+ <image size="small">http://userserve-ak.last.fm/serve/34s/9690457.jpg</image>
251
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/9690457.jpg</image>
252
+ <image size="large">http://userserve-ak.last.fm/serve/126/9690457.jpg</image>
253
+ </track>
254
+ <track>
255
+ <name>Song for Clay (Disappear Here)</name>
256
+ <playcount>50</playcount>
257
+ <tagcount></tagcount>
258
+ <mbid></mbid>
259
+ <url>http://www.last.fm/music/Bloc+Party/_/Song+for+Clay+%28Disappear+Here%29</url>
260
+ <streamable fulltrack="0">1</streamable>
261
+ <artist>
262
+ <name>Bloc Party</name>
263
+ <mbid>8c538f11-c141-4588-8ecb-931083524186</mbid>
264
+ <url>http://www.last.fm/music/Bloc+Party</url>
265
+ </artist>
266
+ <image size="small">http://userserve-ak.last.fm/serve/34s/9102181.jpg</image>
267
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/9102181.jpg</image>
268
+ <image size="large">http://userserve-ak.last.fm/serve/126/9102181.jpg</image>
269
+ </track>
270
+ <track>
271
+ <name>You Probably Couldn't See for the Lights but You Were Staring Straight at Me</name>
272
+ <playcount>50</playcount>
273
+ <tagcount></tagcount>
274
+ <mbid></mbid>
275
+ <url>http://www.last.fm/music/Arctic+Monkeys/_/You+Probably+Couldn%27t+See+for+the+Lights+but+You+Were+Staring+Straight+at+Me</url>
276
+ <streamable fulltrack="0">1</streamable>
277
+ <artist>
278
+ <name>Arctic Monkeys</name>
279
+ <mbid>ada7a83c-e3e1-40f1-93f9-3e73dbc9298a</mbid>
280
+ <url>http://www.last.fm/music/Arctic+Monkeys</url>
281
+ </artist>
282
+ <image size="small">http://images.amazon.com/images/P/B000BTDMDC.01.MZZZZZZZ.jpg</image>
283
+ <image size="medium">http://images.amazon.com/images/P/B000BTDMDC.01.MZZZZZZZ.jpg</image>
284
+ <image size="large">http://images.amazon.com/images/P/B000BTDMDC.01.MZZZZZZZ.jpg</image>
285
+ </track>
286
+ <track>
287
+ <name>Drunken Lullabies</name>
288
+ <playcount>49</playcount>
289
+ <tagcount></tagcount>
290
+ <mbid></mbid>
291
+ <url>http://www.last.fm/music/Flogging+Molly/_/Drunken+Lullabies</url>
292
+ <streamable fulltrack="1">1</streamable>
293
+ <artist>
294
+ <name>Flogging Molly</name>
295
+ <mbid>c3694ddc-f7e5-40dd-9fad-90d11a2c50fa</mbid>
296
+ <url>http://www.last.fm/music/Flogging+Molly</url>
297
+ </artist>
298
+ <image size="small">http://images.amazon.com/images/P/B000060MMI.01.MZZZZZZZ.jpg</image>
299
+ <image size="medium">http://images.amazon.com/images/P/B000060MMI.01.MZZZZZZZ.jpg</image>
300
+ <image size="large">http://images.amazon.com/images/P/B000060MMI.01.MZZZZZZZ.jpg</image>
301
+ </track>
302
+ <track>
303
+ <name>We Got the Power</name>
304
+ <playcount>49</playcount>
305
+ <tagcount></tagcount>
306
+ <mbid></mbid>
307
+ <url>http://www.last.fm/music/Dropkick+Murphys/_/We+Got+the+Power</url>
308
+ <streamable fulltrack="0">1</streamable>
309
+ <artist>
310
+ <name>Dropkick Murphys</name>
311
+ <mbid>e8374874-4178-4869-b92e-fef6bf30dc04</mbid>
312
+ <url>http://www.last.fm/music/Dropkick+Murphys</url>
313
+ </artist>
314
+ <image size="small">http://images.amazon.com/images/P/B0007LXP0Y.01.MZZZZZZZ.jpg</image>
315
+ <image size="medium">http://images.amazon.com/images/P/B0007LXP0Y.01.MZZZZZZZ.jpg</image>
316
+ <image size="large">http://images.amazon.com/images/P/B0007LXP0Y.01.MZZZZZZZ.jpg</image>
317
+ </track>
318
+ <track>
319
+ <name>Mardy Bum</name>
320
+ <playcount>49</playcount>
321
+ <tagcount></tagcount>
322
+ <mbid></mbid>
323
+ <url>http://www.last.fm/music/Arctic+Monkeys/_/Mardy+Bum</url>
324
+ <streamable fulltrack="0">1</streamable>
325
+ <artist>
326
+ <name>Arctic Monkeys</name>
327
+ <mbid>ada7a83c-e3e1-40f1-93f9-3e73dbc9298a</mbid>
328
+ <url>http://www.last.fm/music/Arctic+Monkeys</url>
329
+ </artist>
330
+ <image size="small">http://images.amazon.com/images/P/B000BTDMDC.01.MZZZZZZZ.jpg</image>
331
+ <image size="medium">http://images.amazon.com/images/P/B000BTDMDC.01.MZZZZZZZ.jpg</image>
332
+ <image size="large">http://images.amazon.com/images/P/B000BTDMDC.01.MZZZZZZZ.jpg</image>
333
+ </track>
334
+ <track>
335
+ <name>Of Moons, Birds &amp; Monsters (Holy Ghost remix)</name>
336
+ <playcount>49</playcount>
337
+ <tagcount></tagcount>
338
+ <mbid></mbid>
339
+ <url>http://www.last.fm/music/MGMT/_/Of%2BMoons%252C%2BBirds%2B%2526%2BMonsters%2B%2528Holy%2BGhost%2Bremix%2529</url>
340
+ <streamable fulltrack="0">1</streamable>
341
+ <artist>
342
+ <name>MGMT</name>
343
+ <mbid>c485632c-b784-4ee9-8ea1-c5fb365681fc</mbid>
344
+ <url>http://www.last.fm/music/MGMT</url>
345
+ </artist>
346
+ </track>
347
+ <track>
348
+ <name>Campus</name>
349
+ <playcount>48</playcount>
350
+ <tagcount></tagcount>
351
+ <mbid></mbid>
352
+ <url>http://www.last.fm/music/Vampire+Weekend/_/Campus</url>
353
+ <streamable fulltrack="0">0</streamable>
354
+ <artist>
355
+ <name>Vampire Weekend</name>
356
+ <mbid>af37c51c-0790-4a29-b995-456f98a6b8c9</mbid>
357
+ <url>http://www.last.fm/music/Vampire+Weekend</url>
358
+ </artist>
359
+ </track>
360
+ <track>
361
+ <name>Ulysses</name>
362
+ <playcount>46</playcount>
363
+ <tagcount></tagcount>
364
+ <mbid></mbid>
365
+ <url>http://www.last.fm/music/Franz+Ferdinand/_/Ulysses</url>
366
+ <streamable fulltrack="0">1</streamable>
367
+ <artist>
368
+ <name>Franz Ferdinand</name>
369
+ <mbid>aa7a2827-f74b-473c-bd79-03d065835cf7</mbid>
370
+ <url>http://www.last.fm/music/Franz+Ferdinand</url>
371
+ </artist>
372
+ </track>
373
+ <track>
374
+ <name>Cape Cod Kwassa Kwassa</name>
375
+ <playcount>46</playcount>
376
+ <tagcount></tagcount>
377
+ <mbid></mbid>
378
+ <url>http://www.last.fm/music/Vampire+Weekend/_/Cape+Cod+Kwassa+Kwassa</url>
379
+ <streamable fulltrack="0">0</streamable>
380
+ <artist>
381
+ <name>Vampire Weekend</name>
382
+ <mbid>af37c51c-0790-4a29-b995-456f98a6b8c9</mbid>
383
+ <url>http://www.last.fm/music/Vampire+Weekend</url>
384
+ </artist>
385
+ <image size="small">http://userserve-ak.last.fm/serve/34s/10258165.jpg</image>
386
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/10258165.jpg</image>
387
+ <image size="large">http://userserve-ak.last.fm/serve/126/10258165.jpg</image>
388
+ </track>
389
+ <track>
390
+ <name>Baghdad</name>
391
+ <playcount>46</playcount>
392
+ <tagcount></tagcount>
393
+ <mbid></mbid>
394
+ <url>http://www.last.fm/music/The+Offspring/_/Baghdad</url>
395
+ <streamable fulltrack="0">0</streamable>
396
+ <artist>
397
+ <name>The Offspring</name>
398
+ <mbid>23a03e33-a603-404e-bcbf-2c00159d7067</mbid>
399
+ <url>http://www.last.fm/music/The+Offspring</url>
400
+ </artist>
401
+ <image size="small">http://userserve-ak.last.fm/serve/34s/3614558.jpg</image>
402
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/3614558.jpg</image>
403
+ <image size="large">http://userserve-ak.last.fm/serve/126/3614558.jpg</image>
404
+ </track>
405
+ <track>
406
+ <name>Firestarter</name>
407
+ <playcount>46</playcount>
408
+ <tagcount></tagcount>
409
+ <mbid></mbid>
410
+ <url>http://www.last.fm/music/The+Prodigy/_/Firestarter</url>
411
+ <streamable fulltrack="0">0</streamable>
412
+ <artist>
413
+ <name>The Prodigy</name>
414
+ <mbid>4a4ee089-93b1-4470-af9a-6ff575d32704</mbid>
415
+ <url>http://www.last.fm/music/The+Prodigy</url>
416
+ </artist>
417
+ <image size="small">http://userserve-ak.last.fm/serve/34s/8596933.jpg</image>
418
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/8596933.jpg</image>
419
+ <image size="large">http://userserve-ak.last.fm/serve/126/8596933.jpg</image>
420
+ </track>
421
+ <track>
422
+ <name>Dancing Shoes</name>
423
+ <playcount>46</playcount>
424
+ <tagcount></tagcount>
425
+ <mbid></mbid>
426
+ <url>http://www.last.fm/music/Arctic+Monkeys/_/Dancing+Shoes</url>
427
+ <streamable fulltrack="0">1</streamable>
428
+ <artist>
429
+ <name>Arctic Monkeys</name>
430
+ <mbid>ada7a83c-e3e1-40f1-93f9-3e73dbc9298a</mbid>
431
+ <url>http://www.last.fm/music/Arctic+Monkeys</url>
432
+ </artist>
433
+ <image size="small">http://images.amazon.com/images/P/B000BTDMDC.01.MZZZZZZZ.jpg</image>
434
+ <image size="medium">http://images.amazon.com/images/P/B000BTDMDC.01.MZZZZZZZ.jpg</image>
435
+ <image size="large">http://images.amazon.com/images/P/B000BTDMDC.01.MZZZZZZZ.jpg</image>
436
+ </track>
437
+ <track>
438
+ <name>Apply Some Pressure</name>
439
+ <playcount>45</playcount>
440
+ <tagcount></tagcount>
441
+ <mbid></mbid>
442
+ <url>http://www.last.fm/music/Max%C3%AFmo+Park/_/Apply+Some+Pressure</url>
443
+ <streamable fulltrack="0">0</streamable>
444
+ <artist>
445
+ <name>Maxïmo Park</name>
446
+ <mbid>92e634a7-6023-4be8-be15-ebba822f5b34</mbid>
447
+ <url>http://www.last.fm/music/Max%C3%AFmo+Park</url>
448
+ </artist>
449
+ <image size="small">http://images.amazon.com/images/P/B0007LLPA6.01.MZZZZZZZ.jpg</image>
450
+ <image size="medium">http://images.amazon.com/images/P/B0007LLPA6.01.MZZZZZZZ.jpg</image>
451
+ <image size="large">http://images.amazon.com/images/P/B0007LLPA6.01.MZZZZZZZ.jpg</image>
452
+ </track>
453
+ <track>
454
+ <name>Let's Dance to Joy Division</name>
455
+ <playcount>45</playcount>
456
+ <tagcount></tagcount>
457
+ <mbid></mbid>
458
+ <url>http://www.last.fm/music/The+Wombats/_/Let%27s+Dance+to+Joy+Division</url>
459
+ <streamable fulltrack="0">1</streamable>
460
+ <artist>
461
+ <name>The Wombats</name>
462
+ <mbid>e105c272-b5d7-4135-82ef-d60bded54345</mbid>
463
+ <url>http://www.last.fm/music/The+Wombats</url>
464
+ </artist>
465
+ <image size="small">http://userserve-ak.last.fm/serve/34s/9690457.jpg</image>
466
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/9690457.jpg</image>
467
+ <image size="large">http://userserve-ak.last.fm/serve/126/9690457.jpg</image>
468
+ </track>
469
+ <track>
470
+ <name>Starlight</name>
471
+ <playcount>45</playcount>
472
+ <tagcount></tagcount>
473
+ <mbid></mbid>
474
+ <url>http://www.last.fm/music/Muse/_/Starlight</url>
475
+ <streamable fulltrack="0">1</streamable>
476
+ <artist>
477
+ <name>Muse</name>
478
+ <mbid>9c9f1380-2516-4fc9-a3e6-f9f61941d090</mbid>
479
+ <url>http://www.last.fm/music/Muse</url>
480
+ </artist>
481
+ <image size="small">http://userserve-ak.last.fm/serve/34s/8855843.jpg</image>
482
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/8855843.jpg</image>
483
+ <image size="large">http://userserve-ak.last.fm/serve/126/8855843.jpg</image>
484
+ </track>
485
+ <track>
486
+ <name>Still Take You Home</name>
487
+ <playcount>45</playcount>
488
+ <tagcount></tagcount>
489
+ <mbid></mbid>
490
+ <url>http://www.last.fm/music/Arctic+Monkeys/_/Still+Take+You+Home</url>
491
+ <streamable fulltrack="0">1</streamable>
492
+ <artist>
493
+ <name>Arctic Monkeys</name>
494
+ <mbid>ada7a83c-e3e1-40f1-93f9-3e73dbc9298a</mbid>
495
+ <url>http://www.last.fm/music/Arctic+Monkeys</url>
496
+ </artist>
497
+ <image size="small">http://images.amazon.com/images/P/B000BTDMDC.01.MZZZZZZZ.jpg</image>
498
+ <image size="medium">http://images.amazon.com/images/P/B000BTDMDC.01.MZZZZZZZ.jpg</image>
499
+ <image size="large">http://images.amazon.com/images/P/B000BTDMDC.01.MZZZZZZZ.jpg</image>
500
+ </track>
501
+ <track>
502
+ <name>Warum</name>
503
+ <playcount>44</playcount>
504
+ <tagcount></tagcount>
505
+ <mbid></mbid>
506
+ <url>http://www.last.fm/music/Juli/_/Warum</url>
507
+ <streamable fulltrack="1">1</streamable>
508
+ <artist>
509
+ <name>Juli</name>
510
+ <mbid>9a593aff-62c9-40bd-9631-1697798adb63</mbid>
511
+ <url>http://www.last.fm/music/Juli</url>
512
+ </artist>
513
+ <image size="small">http://userserve-ak.last.fm/serve/34s/8638773.jpg</image>
514
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/8638773.jpg</image>
515
+ <image size="large">http://userserve-ak.last.fm/serve/126/8638773.jpg</image>
516
+ </track>
517
+ <track>
518
+ <name>Tales of Girls, Boys &amp; Marsupials</name>
519
+ <playcount>44</playcount>
520
+ <tagcount></tagcount>
521
+ <mbid></mbid>
522
+ <url>http://www.last.fm/music/The+Wombats/_/Tales%2Bof%2BGirls%252C%2BBoys%2B%2526%2BMarsupials</url>
523
+ <streamable fulltrack="0">0</streamable>
524
+ <artist>
525
+ <name>The Wombats</name>
526
+ <mbid>e105c272-b5d7-4135-82ef-d60bded54345</mbid>
527
+ <url>http://www.last.fm/music/The+Wombats</url>
528
+ </artist>
529
+ </track>
530
+ <track>
531
+ <name>Walcott</name>
532
+ <playcount>44</playcount>
533
+ <tagcount></tagcount>
534
+ <mbid></mbid>
535
+ <url>http://www.last.fm/music/Vampire+Weekend/_/Walcott</url>
536
+ <streamable fulltrack="0">0</streamable>
537
+ <artist>
538
+ <name>Vampire Weekend</name>
539
+ <mbid>af37c51c-0790-4a29-b995-456f98a6b8c9</mbid>
540
+ <url>http://www.last.fm/music/Vampire+Weekend</url>
541
+ </artist>
542
+ </track>
543
+ <track>
544
+ <name>Pretty Fly (For a White Guy)</name>
545
+ <playcount>43</playcount>
546
+ <tagcount></tagcount>
547
+ <mbid></mbid>
548
+ <url>http://www.last.fm/music/The+Offspring/_/Pretty+Fly+%28For+a+White+Guy%29</url>
549
+ <streamable fulltrack="0">1</streamable>
550
+ <artist>
551
+ <name>The Offspring</name>
552
+ <mbid>23a03e33-a603-404e-bcbf-2c00159d7067</mbid>
553
+ <url>http://www.last.fm/music/The+Offspring</url>
554
+ </artist>
555
+ <image size="small">http://userserve-ak.last.fm/serve/34s/23714755.jpg</image>
556
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/23714755.jpg</image>
557
+ <image size="large">http://userserve-ak.last.fm/serve/126/23714755.jpg</image>
558
+ </track>
559
+ <track>
560
+ <name>Pennsylvania</name>
561
+ <playcount>43</playcount>
562
+ <tagcount></tagcount>
563
+ <mbid></mbid>
564
+ <url>http://www.last.fm/music/Bloodhound+Gang/_/Pennsylvania</url>
565
+ <streamable fulltrack="0">0</streamable>
566
+ <artist>
567
+ <name>Bloodhound Gang</name>
568
+ <mbid>b2dbfc09-b332-408b-a235-1850e41971c5</mbid>
569
+ <url>http://www.last.fm/music/Bloodhound+Gang</url>
570
+ </artist>
571
+ </track>
572
+ <track>
573
+ <name>The Kids Don't Stand a Chance</name>
574
+ <playcount>43</playcount>
575
+ <tagcount></tagcount>
576
+ <mbid></mbid>
577
+ <url>http://www.last.fm/music/Vampire+Weekend/_/The+Kids+Don%27t+Stand+a+Chance</url>
578
+ <streamable fulltrack="0">0</streamable>
579
+ <artist>
580
+ <name>Vampire Weekend</name>
581
+ <mbid>af37c51c-0790-4a29-b995-456f98a6b8c9</mbid>
582
+ <url>http://www.last.fm/music/Vampire+Weekend</url>
583
+ </artist>
584
+ </track>
585
+ <track>
586
+ <name>Mansard Roof</name>
587
+ <playcount>43</playcount>
588
+ <tagcount></tagcount>
589
+ <mbid></mbid>
590
+ <url>http://www.last.fm/music/Vampire+Weekend/_/Mansard+Roof</url>
591
+ <streamable fulltrack="0">0</streamable>
592
+ <artist>
593
+ <name>Vampire Weekend</name>
594
+ <mbid>af37c51c-0790-4a29-b995-456f98a6b8c9</mbid>
595
+ <url>http://www.last.fm/music/Vampire+Weekend</url>
596
+ </artist>
597
+ </track>
598
+ <track>
599
+ <name>When You Wasn't Famous</name>
600
+ <playcount>43</playcount>
601
+ <tagcount></tagcount>
602
+ <mbid></mbid>
603
+ <url>http://www.last.fm/music/The+Streets/_/When+You+Wasn%27t+Famous</url>
604
+ <streamable fulltrack="0">1</streamable>
605
+ <artist>
606
+ <name>The Streets</name>
607
+ <mbid>6f607087-9c46-4bb2-a884-e4efc764554c</mbid>
608
+ <url>http://www.last.fm/music/The+Streets</url>
609
+ </artist>
610
+ <image size="small">http://userserve-ak.last.fm/serve/34s/23580437.jpg</image>
611
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/23580437.jpg</image>
612
+ <image size="large">http://userserve-ak.last.fm/serve/126/23580437.jpg</image>
613
+ </track>
614
+ <track>
615
+ <name>Clocks</name>
616
+ <playcount>43</playcount>
617
+ <tagcount></tagcount>
618
+ <mbid></mbid>
619
+ <url>http://www.last.fm/music/Coldplay/_/Clocks</url>
620
+ <streamable fulltrack="0">1</streamable>
621
+ <artist>
622
+ <name>Coldplay</name>
623
+ <mbid>cc197bad-dc9c-440d-a5b5-d52ba2e14234</mbid>
624
+ <url>http://www.last.fm/music/Coldplay</url>
625
+ </artist>
626
+ <image size="small">http://userserve-ak.last.fm/serve/34s/14245401.jpg</image>
627
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/14245401.jpg</image>
628
+ <image size="large">http://userserve-ak.last.fm/serve/126/14245401.jpg</image>
629
+ </track>
630
+ <track>
631
+ <name>Henrietta</name>
632
+ <playcount>43</playcount>
633
+ <tagcount></tagcount>
634
+ <mbid></mbid>
635
+ <url>http://www.last.fm/music/The+Fratellis/_/Henrietta</url>
636
+ <streamable fulltrack="1">1</streamable>
637
+ <artist>
638
+ <name>The Fratellis</name>
639
+ <mbid></mbid>
640
+ <url>http://www.last.fm/music/The+Fratellis</url>
641
+ </artist>
642
+ <image size="small">http://userserve-ak.last.fm/serve/34s/9033529.jpg</image>
643
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/9033529.jpg</image>
644
+ <image size="large">http://userserve-ak.last.fm/serve/126/9033529.jpg</image>
645
+ </track>
646
+ <track>
647
+ <name>Take Me Out</name>
648
+ <playcount>42</playcount>
649
+ <tagcount></tagcount>
650
+ <mbid></mbid>
651
+ <url>http://www.last.fm/music/Franz+Ferdinand/_/Take+Me+Out</url>
652
+ <streamable fulltrack="0">1</streamable>
653
+ <artist>
654
+ <name>Franz Ferdinand</name>
655
+ <mbid>aa7a2827-f74b-473c-bd79-03d065835cf7</mbid>
656
+ <url>http://www.last.fm/music/Franz+Ferdinand</url>
657
+ </artist>
658
+ <image size="small">http://userserve-ak.last.fm/serve/34s/22427459.jpg</image>
659
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/22427459.jpg</image>
660
+ <image size="large">http://userserve-ak.last.fm/serve/126/22427459.jpg</image>
661
+ </track>
662
+ <track>
663
+ <name>Riot Van</name>
664
+ <playcount>42</playcount>
665
+ <tagcount></tagcount>
666
+ <mbid></mbid>
667
+ <url>http://www.last.fm/music/Arctic+Monkeys/_/Riot+Van</url>
668
+ <streamable fulltrack="0">1</streamable>
669
+ <artist>
670
+ <name>Arctic Monkeys</name>
671
+ <mbid>ada7a83c-e3e1-40f1-93f9-3e73dbc9298a</mbid>
672
+ <url>http://www.last.fm/music/Arctic+Monkeys</url>
673
+ </artist>
674
+ <image size="small">http://images.amazon.com/images/P/B000BTDMDC.01.MZZZZZZZ.jpg</image>
675
+ <image size="medium">http://images.amazon.com/images/P/B000BTDMDC.01.MZZZZZZZ.jpg</image>
676
+ <image size="large">http://images.amazon.com/images/P/B000BTDMDC.01.MZZZZZZZ.jpg</image>
677
+ </track>
678
+ <track>
679
+ <name>Perhaps Vampires Is a Bit Strong But...</name>
680
+ <playcount>42</playcount>
681
+ <tagcount></tagcount>
682
+ <mbid></mbid>
683
+ <url>http://www.last.fm/music/Arctic+Monkeys/_/Perhaps+Vampires+Is+a+Bit+Strong+But...</url>
684
+ <streamable fulltrack="0">1</streamable>
685
+ <artist>
686
+ <name>Arctic Monkeys</name>
687
+ <mbid>ada7a83c-e3e1-40f1-93f9-3e73dbc9298a</mbid>
688
+ <url>http://www.last.fm/music/Arctic+Monkeys</url>
689
+ </artist>
690
+ <image size="small">http://images.amazon.com/images/P/B000BTDMDC.01.MZZZZZZZ.jpg</image>
691
+ <image size="medium">http://images.amazon.com/images/P/B000BTDMDC.01.MZZZZZZZ.jpg</image>
692
+ <image size="large">http://images.amazon.com/images/P/B000BTDMDC.01.MZZZZZZZ.jpg</image>
693
+ </track>
694
+ <track>
695
+ <name>Adam's Song</name>
696
+ <playcount>42</playcount>
697
+ <tagcount></tagcount>
698
+ <mbid></mbid>
699
+ <url>http://www.last.fm/music/blink-182/_/Adam%27s+Song</url>
700
+ <streamable fulltrack="1">1</streamable>
701
+ <artist>
702
+ <name>blink-182</name>
703
+ <mbid>0743b15a-3c32-48c8-ad58-cb325350befa</mbid>
704
+ <url>http://www.last.fm/music/blink-182</url>
705
+ </artist>
706
+ <image size="small">http://userserve-ak.last.fm/serve/34s/8634779.jpg</image>
707
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/8634779.jpg</image>
708
+ <image size="large">http://userserve-ak.last.fm/serve/126/8634779.jpg</image>
709
+ </track>
710
+ <track>
711
+ <name>Juggernauts</name>
712
+ <playcount>42</playcount>
713
+ <tagcount></tagcount>
714
+ <mbid></mbid>
715
+ <url>http://www.last.fm/music/Enter+Shikari/_/Juggernauts</url>
716
+ <streamable fulltrack="0">0</streamable>
717
+ <artist>
718
+ <name>Enter Shikari</name>
719
+ <mbid>329f95db-f02e-40bf-a5f7-0dea11529ce3</mbid>
720
+ <url>http://www.last.fm/music/Enter+Shikari</url>
721
+ </artist>
722
+ </track>
723
+ <track>
724
+ <name>Meds (feat. Alison Mosshart)</name>
725
+ <playcount>41</playcount>
726
+ <tagcount></tagcount>
727
+ <mbid></mbid>
728
+ <url>http://www.last.fm/music/Placebo/_/Meds+%28feat.+Alison+Mosshart%29</url>
729
+ <streamable fulltrack="0">0</streamable>
730
+ <artist>
731
+ <name>Placebo</name>
732
+ <mbid>847e8284-8582-4b0e-9c26-b042a4f49e57</mbid>
733
+ <url>http://www.last.fm/music/Placebo</url>
734
+ </artist>
735
+ </track>
736
+ <track>
737
+ <name>What's My Age Again</name>
738
+ <playcount>41</playcount>
739
+ <tagcount></tagcount>
740
+ <mbid></mbid>
741
+ <url>http://www.last.fm/music/blink-182/_/What%27s+My+Age+Again</url>
742
+ <streamable fulltrack="1">1</streamable>
743
+ <artist>
744
+ <name>blink-182</name>
745
+ <mbid>0743b15a-3c32-48c8-ad58-cb325350befa</mbid>
746
+ <url>http://www.last.fm/music/blink-182</url>
747
+ </artist>
748
+ <image size="small">http://userserve-ak.last.fm/serve/34s/4045727.jpg</image>
749
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/4045727.jpg</image>
750
+ <image size="large">http://userserve-ak.last.fm/serve/126/4045727.jpg</image>
751
+ </track>
752
+ <track>
753
+ <name>All the Things She Said</name>
754
+ <playcount>41</playcount>
755
+ <tagcount></tagcount>
756
+ <mbid></mbid>
757
+ <url>http://www.last.fm/music/t.A.T.u./_/All+the+Things+She+Said</url>
758
+ <streamable fulltrack="0">1</streamable>
759
+ <artist>
760
+ <name>t.A.T.u.</name>
761
+ <mbid>7c20f558-d664-42bd-b6f1-81acf9dbb72d</mbid>
762
+ <url>http://www.last.fm/music/t.A.T.u.</url>
763
+ </artist>
764
+ </track>
765
+ </tracks></lfm>