hornairs-scrobbler 0.2.3

Sign up to get free protection for your applications and to get access to all the features.
Files changed (161) hide show
  1. data/.gitignore +13 -0
  2. data/.loadpath +5 -0
  3. data/History.txt +5 -0
  4. data/MIT-LICENSE +19 -0
  5. data/Manifest +75 -0
  6. data/README.rdoc +104 -0
  7. data/Rakefile +10 -0
  8. data/VERSION.yml +5 -0
  9. data/examples/album.rb +20 -0
  10. data/examples/artist.rb +13 -0
  11. data/examples/playlist.rb +7 -0
  12. data/examples/scrobble.rb +31 -0
  13. data/examples/tag.rb +11 -0
  14. data/examples/track.rb +12 -0
  15. data/examples/user.rb +15 -0
  16. data/lib/scrobbler.rb +33 -0
  17. data/lib/scrobbler/album.rb +181 -0
  18. data/lib/scrobbler/artist.rb +165 -0
  19. data/lib/scrobbler/auth.rb +47 -0
  20. data/lib/scrobbler/base.rb +105 -0
  21. data/lib/scrobbler/event.rb +105 -0
  22. data/lib/scrobbler/geo.rb +27 -0
  23. data/lib/scrobbler/helper/image.rb +52 -0
  24. data/lib/scrobbler/helper/streamable.rb +40 -0
  25. data/lib/scrobbler/library.rb +112 -0
  26. data/lib/scrobbler/playing.rb +49 -0
  27. data/lib/scrobbler/playlist.rb +87 -0
  28. data/lib/scrobbler/radio.rb +12 -0
  29. data/lib/scrobbler/rest.rb +47 -0
  30. data/lib/scrobbler/scrobble.rb +116 -0
  31. data/lib/scrobbler/session.rb +9 -0
  32. data/lib/scrobbler/shout.rb +21 -0
  33. data/lib/scrobbler/simpleauth.rb +60 -0
  34. data/lib/scrobbler/tag.rb +113 -0
  35. data/lib/scrobbler/track.rb +152 -0
  36. data/lib/scrobbler/user.rb +222 -0
  37. data/lib/scrobbler/venue.rb +67 -0
  38. data/setup.rb +1585 -0
  39. data/tasks/jeweler.rake +15 -0
  40. data/tasks/rdoc.rake +7 -0
  41. data/tasks/tests.rake +13 -0
  42. data/tasks/yardoc.rake +8 -0
  43. data/test/fixtures/xml/album/info.xml +43 -0
  44. data/test/fixtures/xml/artist/fans.xml +52 -0
  45. data/test/fixtures/xml/artist/info.xml +58 -0
  46. data/test/fixtures/xml/artist/similar.xml +1004 -0
  47. data/test/fixtures/xml/artist/topalbums.xml +61 -0
  48. data/test/fixtures/xml/artist/toptags.xml +19 -0
  49. data/test/fixtures/xml/artist/toptracks.xml +62 -0
  50. data/test/fixtures/xml/auth/session.xml +7 -0
  51. data/test/fixtures/xml/auth/token.xml +3 -0
  52. data/test/fixtures/xml/event/attend.xml +3 -0
  53. data/test/fixtures/xml/event/attendees.xml +53 -0
  54. data/test/fixtures/xml/event/event.xml +35 -0
  55. data/test/fixtures/xml/event/shouts.xml +35 -0
  56. data/test/fixtures/xml/geo/events-distance-p1.xml +151 -0
  57. data/test/fixtures/xml/geo/events-lat-long.xml +167 -0
  58. data/test/fixtures/xml/geo/events-p1.xml +152 -0
  59. data/test/fixtures/xml/geo/events-p2.xml +380 -0
  60. data/test/fixtures/xml/geo/events-p3.xml +427 -0
  61. data/test/fixtures/xml/geo/top_artists-p1.xml +76 -0
  62. data/test/fixtures/xml/geo/top_tracks-p1.xml +77 -0
  63. data/test/fixtures/xml/library/albums-f30.xml +454 -0
  64. data/test/fixtures/xml/library/albums-p1.xml +754 -0
  65. data/test/fixtures/xml/library/albums-p2.xml +754 -0
  66. data/test/fixtures/xml/library/albums-p3.xml +754 -0
  67. data/test/fixtures/xml/library/albums-p4.xml +739 -0
  68. data/test/fixtures/xml/library/albums-p5.xml +754 -0
  69. data/test/fixtures/xml/library/albums-p6.xml +754 -0
  70. data/test/fixtures/xml/library/albums-p7.xml +739 -0
  71. data/test/fixtures/xml/library/albums-p8.xml +724 -0
  72. data/test/fixtures/xml/library/artists-f30.xml +334 -0
  73. data/test/fixtures/xml/library/artists-p1.xml +554 -0
  74. data/test/fixtures/xml/library/artists-p2.xml +554 -0
  75. data/test/fixtures/xml/library/artists-p3.xml +554 -0
  76. data/test/fixtures/xml/library/artists-p4.xml +554 -0
  77. data/test/fixtures/xml/library/artists-p5.xml +554 -0
  78. data/test/fixtures/xml/library/artists-p6.xml +554 -0
  79. data/test/fixtures/xml/library/artists-p7.xml +444 -0
  80. data/test/fixtures/xml/library/tracks-f30.xml +472 -0
  81. data/test/fixtures/xml/library/tracks-p1.xml +789 -0
  82. data/test/fixtures/xml/library/tracks-p10.xml +771 -0
  83. data/test/fixtures/xml/library/tracks-p11.xml +792 -0
  84. data/test/fixtures/xml/library/tracks-p12.xml +777 -0
  85. data/test/fixtures/xml/library/tracks-p13.xml +762 -0
  86. data/test/fixtures/xml/library/tracks-p14.xml +759 -0
  87. data/test/fixtures/xml/library/tracks-p15.xml +762 -0
  88. data/test/fixtures/xml/library/tracks-p16.xml +756 -0
  89. data/test/fixtures/xml/library/tracks-p17.xml +780 -0
  90. data/test/fixtures/xml/library/tracks-p18.xml +756 -0
  91. data/test/fixtures/xml/library/tracks-p19.xml +774 -0
  92. data/test/fixtures/xml/library/tracks-p2.xml +765 -0
  93. data/test/fixtures/xml/library/tracks-p20.xml +777 -0
  94. data/test/fixtures/xml/library/tracks-p21.xml +777 -0
  95. data/test/fixtures/xml/library/tracks-p22.xml +771 -0
  96. data/test/fixtures/xml/library/tracks-p23.xml +765 -0
  97. data/test/fixtures/xml/library/tracks-p24.xml +783 -0
  98. data/test/fixtures/xml/library/tracks-p25.xml +777 -0
  99. data/test/fixtures/xml/library/tracks-p26.xml +777 -0
  100. data/test/fixtures/xml/library/tracks-p27.xml +756 -0
  101. data/test/fixtures/xml/library/tracks-p28.xml +771 -0
  102. data/test/fixtures/xml/library/tracks-p29.xml +753 -0
  103. data/test/fixtures/xml/library/tracks-p3.xml +771 -0
  104. data/test/fixtures/xml/library/tracks-p30.xml +780 -0
  105. data/test/fixtures/xml/library/tracks-p31.xml +753 -0
  106. data/test/fixtures/xml/library/tracks-p32.xml +771 -0
  107. data/test/fixtures/xml/library/tracks-p33.xml +762 -0
  108. data/test/fixtures/xml/library/tracks-p34.xml +538 -0
  109. data/test/fixtures/xml/library/tracks-p4.xml +792 -0
  110. data/test/fixtures/xml/library/tracks-p5.xml +780 -0
  111. data/test/fixtures/xml/library/tracks-p6.xml +789 -0
  112. data/test/fixtures/xml/library/tracks-p7.xml +789 -0
  113. data/test/fixtures/xml/library/tracks-p8.xml +780 -0
  114. data/test/fixtures/xml/library/tracks-p9.xml +774 -0
  115. data/test/fixtures/xml/tag/similar.xml +254 -0
  116. data/test/fixtures/xml/tag/topalbums.xml +805 -0
  117. data/test/fixtures/xml/tag/topartists.xml +605 -0
  118. data/test/fixtures/xml/tag/toptags.xml +1254 -0
  119. data/test/fixtures/xml/tag/toptracks.xml +852 -0
  120. data/test/fixtures/xml/track/fans.xml +34 -0
  121. data/test/fixtures/xml/track/info.xml +53 -0
  122. data/test/fixtures/xml/track/toptags.xml +504 -0
  123. data/test/fixtures/xml/user/events.xml +401 -0
  124. data/test/fixtures/xml/user/friends.xml +30 -0
  125. data/test/fixtures/xml/user/lovedtracks.xml +678 -0
  126. data/test/fixtures/xml/user/neighbours.xml +23 -0
  127. data/test/fixtures/xml/user/playlists.xml +61 -0
  128. data/test/fixtures/xml/user/profile.xml +12 -0
  129. data/test/fixtures/xml/user/recentbannedtracks.xml +24 -0
  130. data/test/fixtures/xml/user/recentlovedtracks.xml +24 -0
  131. data/test/fixtures/xml/user/recenttracks.xml +124 -0
  132. data/test/fixtures/xml/user/systemrecs.xml +18 -0
  133. data/test/fixtures/xml/user/topalbums.xml +61 -0
  134. data/test/fixtures/xml/user/topartists.xml +41 -0
  135. data/test/fixtures/xml/user/toptags.xml +44 -0
  136. data/test/fixtures/xml/user/toptracks.xml +65 -0
  137. data/test/fixtures/xml/user/weeklyalbumchart.xml +256 -0
  138. data/test/fixtures/xml/user/weeklyartistchart.xml +220 -0
  139. data/test/fixtures/xml/user/weeklytrackchart.xml +746 -0
  140. data/test/fixtures/xml/venue/events.xml +151 -0
  141. data/test/fixtures/xml/venue/venue.xml +16 -0
  142. data/test/mocks/rest.rb +212 -0
  143. data/test/spec_helper.rb +7 -0
  144. data/test/test_helper.rb +20 -0
  145. data/test/unit/album_spec.rb +52 -0
  146. data/test/unit/artist_spec.rb +130 -0
  147. data/test/unit/auth_spec.rb +36 -0
  148. data/test/unit/event_spec.rb +109 -0
  149. data/test/unit/geo_spec.rb +148 -0
  150. data/test/unit/library_spec.rb +133 -0
  151. data/test/unit/playing_test.rb +53 -0
  152. data/test/unit/playlist_spec.rb +25 -0
  153. data/test/unit/radio_spec.rb +22 -0
  154. data/test/unit/scrobble_spec.rb +55 -0
  155. data/test/unit/scrobble_test.rb +69 -0
  156. data/test/unit/simpleauth_test.rb +45 -0
  157. data/test/unit/tag_spec.rb +101 -0
  158. data/test/unit/track_spec.rb +95 -0
  159. data/test/unit/user_spec.rb +264 -0
  160. data/test/unit/venue_spec.rb +104 -0
  161. metadata +265 -0
@@ -0,0 +1,780 @@
1
+ <?xml version="1.0" encoding="utf-8"?>
2
+ <lfm status="ok">
3
+ <tracks user="xhochy" page="17" perPage="50" totalPages="34">
4
+ <track>
5
+ <name>You're Gonna Die</name>
6
+ <playcount>3</playcount>
7
+ <tagcount></tagcount>
8
+ <mbid></mbid>
9
+ <url>http://www.last.fm/music/Thought+Riot/_/You%27re+Gonna+Die</url>
10
+ <streamable fulltrack="0">0</streamable>
11
+ <artist>
12
+ <name>Thought Riot</name>
13
+ <mbid>62b9817f-ec01-4c95-b48c-a89e3f6bb268</mbid>
14
+ <url>http://www.last.fm/music/Thought+Riot</url>
15
+ </artist>
16
+ <image size="small">http://images.amazon.com/images/P/B0000UHFP8.01.MZZZZZZZ.jpg</image>
17
+ <image size="medium">http://images.amazon.com/images/P/B0000UHFP8.01.MZZZZZZZ.jpg</image>
18
+ <image size="large">http://images.amazon.com/images/P/B0000UHFP8.01.MZZZZZZZ.jpg</image>
19
+ </track>
20
+ <track>
21
+ <name>Off With Your Head</name>
22
+ <playcount>3</playcount>
23
+ <tagcount></tagcount>
24
+ <mbid></mbid>
25
+ <url>http://www.last.fm/music/Sleater-Kinney/_/Off+With+Your+Head</url>
26
+ <streamable fulltrack="0">0</streamable>
27
+ <artist>
28
+ <name>Sleater-Kinney</name>
29
+ <mbid>e36e78eb-3ace-4acd-882c-16789e700ab7</mbid>
30
+ <url>http://www.last.fm/music/Sleater-Kinney</url>
31
+ </artist>
32
+ <image size="small">http://images.amazon.com/images/P/B000069DOG.01.MZZZZZZZ.jpg</image>
33
+ <image size="medium">http://images.amazon.com/images/P/B000069DOG.01.MZZZZZZZ.jpg</image>
34
+ <image size="large">http://images.amazon.com/images/P/B000069DOG.01.MZZZZZZZ.jpg</image>
35
+ </track>
36
+ <track>
37
+ <name>What You Say</name>
38
+ <playcount>3</playcount>
39
+ <tagcount></tagcount>
40
+ <mbid></mbid>
41
+ <url>http://www.last.fm/music/Sugarcult/_/What+You+Say</url>
42
+ <streamable fulltrack="0">1</streamable>
43
+ <artist>
44
+ <name>Sugarcult</name>
45
+ <mbid>0cc9e56e-a623-47ea-b5f2-1a1757cc2426</mbid>
46
+ <url>http://www.last.fm/music/Sugarcult</url>
47
+ </artist>
48
+ <image size="small">http://userserve-ak.last.fm/serve/34s/12624839.jpg</image>
49
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/12624839.jpg</image>
50
+ <image size="large">http://userserve-ak.last.fm/serve/126/12624839.jpg</image>
51
+ </track>
52
+ <track>
53
+ <name>Katherine Kiss Me</name>
54
+ <playcount>3</playcount>
55
+ <tagcount></tagcount>
56
+ <mbid></mbid>
57
+ <url>http://www.last.fm/music/Franz+Ferdinand/_/Katherine+Kiss+Me</url>
58
+ <streamable fulltrack="0">0</streamable>
59
+ <artist>
60
+ <name>Franz Ferdinand</name>
61
+ <mbid>aa7a2827-f74b-473c-bd79-03d065835cf7</mbid>
62
+ <url>http://www.last.fm/music/Franz+Ferdinand</url>
63
+ </artist>
64
+ </track>
65
+ <track>
66
+ <name>Sonne</name>
67
+ <playcount>3</playcount>
68
+ <tagcount></tagcount>
69
+ <mbid></mbid>
70
+ <url>http://www.last.fm/music/Farin+Urlaub/_/Sonne</url>
71
+ <streamable fulltrack="0">0</streamable>
72
+ <artist>
73
+ <name>Farin Urlaub</name>
74
+ <mbid>23620454-4dca-45b7-8496-066e94d99826</mbid>
75
+ <url>http://www.last.fm/music/Farin+Urlaub</url>
76
+ </artist>
77
+ <image size="small">http://images.amazon.com/images/P/B0007QCGFE.01.MZZZZZZZ.jpg</image>
78
+ <image size="medium">http://images.amazon.com/images/P/B0007QCGFE.01.MZZZZZZZ.jpg</image>
79
+ <image size="large">http://images.amazon.com/images/P/B0007QCGFE.01.MZZZZZZZ.jpg</image>
80
+ </track>
81
+ <track>
82
+ <name>Basket of Snakes</name>
83
+ <playcount>3</playcount>
84
+ <tagcount></tagcount>
85
+ <mbid></mbid>
86
+ <url>http://www.last.fm/music/The+Frisk/_/Basket+of+Snakes</url>
87
+ <streamable fulltrack="0">0</streamable>
88
+ <artist>
89
+ <name>The Frisk</name>
90
+ <mbid>142192b0-2710-425c-a48f-0defd9c45fe9</mbid>
91
+ <url>http://www.last.fm/music/The+Frisk</url>
92
+ </artist>
93
+ <image size="small">http://images.amazon.com/images/P/B0001WPSM2.01.MZZZZZZZ.jpg</image>
94
+ <image size="medium">http://images.amazon.com/images/P/B0001WPSM2.01.MZZZZZZZ.jpg</image>
95
+ <image size="large">http://images.amazon.com/images/P/B0001WPSM2.01.MZZZZZZZ.jpg</image>
96
+ </track>
97
+ <track>
98
+ <name>Fast wie von selbst</name>
99
+ <playcount>3</playcount>
100
+ <tagcount></tagcount>
101
+ <mbid></mbid>
102
+ <url>http://www.last.fm/music/Sportfreunde+Stiller/_/Fast+wie+von+selbst</url>
103
+ <streamable fulltrack="1">1</streamable>
104
+ <artist>
105
+ <name>Sportfreunde Stiller</name>
106
+ <mbid>35581de7-591f-424f-9c64-7b22fd45605e</mbid>
107
+ <url>http://www.last.fm/music/Sportfreunde+Stiller</url>
108
+ </artist>
109
+ <image size="small">http://userserve-ak.last.fm/serve/34s/8730555.jpg</image>
110
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/8730555.jpg</image>
111
+ <image size="large">http://userserve-ak.last.fm/serve/126/8730555.jpg</image>
112
+ </track>
113
+ <track>
114
+ <name>Gustav Gans</name>
115
+ <playcount>2</playcount>
116
+ <tagcount></tagcount>
117
+ <mbid></mbid>
118
+ <url>http://www.last.fm/music/Beginner/_/Gustav+Gans</url>
119
+ <streamable fulltrack="0">1</streamable>
120
+ <artist>
121
+ <name>Beginner</name>
122
+ <mbid>709b55e5-0286-4fda-bf7e-3aff1894554d</mbid>
123
+ <url>http://www.last.fm/music/Beginner</url>
124
+ </artist>
125
+ <image size="small">http://userserve-ak.last.fm/serve/34s/12639629.jpg</image>
126
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/12639629.jpg</image>
127
+ <image size="large">http://userserve-ak.last.fm/serve/126/12639629.jpg</image>
128
+ </track>
129
+ <track>
130
+ <name>Punk by the Book</name>
131
+ <playcount>2</playcount>
132
+ <tagcount></tagcount>
133
+ <mbid></mbid>
134
+ <url>http://www.last.fm/music/Anti-Flag/_/Punk+by+the+Book</url>
135
+ <streamable fulltrack="1">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/B0000005XM.01.MZZZZZZZ.jpg</image>
142
+ <image size="medium">http://images.amazon.com/images/P/B0000005XM.01.MZZZZZZZ.jpg</image>
143
+ <image size="large">http://images.amazon.com/images/P/B0000005XM.01.MZZZZZZZ.jpg</image>
144
+ </track>
145
+ <track>
146
+ <name>Crab</name>
147
+ <playcount>2</playcount>
148
+ <tagcount></tagcount>
149
+ <mbid></mbid>
150
+ <url>http://www.last.fm/music/Weezer/_/Crab</url>
151
+ <streamable fulltrack="1">1</streamable>
152
+ <artist>
153
+ <name>Weezer</name>
154
+ <mbid>6fe07aa5-fec0-4eca-a456-f29bff451b04</mbid>
155
+ <url>http://www.last.fm/music/Weezer</url>
156
+ </artist>
157
+ <image size="small">http://userserve-ak.last.fm/serve/34s/8593525.jpg</image>
158
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/8593525.jpg</image>
159
+ <image size="large">http://userserve-ak.last.fm/serve/126/8593525.jpg</image>
160
+ </track>
161
+ <track>
162
+ <name>DOA</name>
163
+ <playcount>2</playcount>
164
+ <tagcount></tagcount>
165
+ <mbid></mbid>
166
+ <url>http://www.last.fm/music/Foo+Fighters/_/DOA</url>
167
+ <streamable fulltrack="0">1</streamable>
168
+ <artist>
169
+ <name>Foo Fighters</name>
170
+ <mbid>67f66c07-6e61-4026-ade5-7e782fad3a5d</mbid>
171
+ <url>http://www.last.fm/music/Foo+Fighters</url>
172
+ </artist>
173
+ <image size="small">http://userserve-ak.last.fm/serve/34s/23752293.jpg</image>
174
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/23752293.jpg</image>
175
+ <image size="large">http://userserve-ak.last.fm/serve/126/23752293.jpg</image>
176
+ </track>
177
+ <track>
178
+ <name>Glücklich</name>
179
+ <playcount>2</playcount>
180
+ <tagcount></tagcount>
181
+ <mbid></mbid>
182
+ <url>http://www.last.fm/music/Farin+Urlaub/_/Gl%C3%BCcklich</url>
183
+ <streamable fulltrack="0">1</streamable>
184
+ <artist>
185
+ <name>Farin Urlaub</name>
186
+ <mbid>23620454-4dca-45b7-8496-066e94d99826</mbid>
187
+ <url>http://www.last.fm/music/Farin+Urlaub</url>
188
+ </artist>
189
+ <image size="small">http://userserve-ak.last.fm/serve/34s/3608376.jpg</image>
190
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/3608376.jpg</image>
191
+ <image size="large">http://userserve-ak.last.fm/serve/126/3608376.jpg</image>
192
+ </track>
193
+ <track>
194
+ <name>Heaven is Falling</name>
195
+ <playcount>2</playcount>
196
+ <tagcount></tagcount>
197
+ <mbid></mbid>
198
+ <url>http://www.last.fm/music/The+Ataris/_/Heaven+is+Falling</url>
199
+ <streamable fulltrack="0">0</streamable>
200
+ <artist>
201
+ <name>The Ataris</name>
202
+ <mbid>57805d77-f947-4851-b7fb-78baad154451</mbid>
203
+ <url>http://www.last.fm/music/The+Ataris</url>
204
+ </artist>
205
+ <image size="small">http://images.amazon.com/images/P/B0001WPSM2.01.MZZZZZZZ.jpg</image>
206
+ <image size="medium">http://images.amazon.com/images/P/B0001WPSM2.01.MZZZZZZZ.jpg</image>
207
+ <image size="large">http://images.amazon.com/images/P/B0001WPSM2.01.MZZZZZZZ.jpg</image>
208
+ </track>
209
+ <track>
210
+ <name>Young Ned of the Hill</name>
211
+ <playcount>2</playcount>
212
+ <tagcount></tagcount>
213
+ <mbid></mbid>
214
+ <url>http://www.last.fm/music/The+Pogues/_/Young+Ned+of+the+Hill</url>
215
+ <streamable fulltrack="0">1</streamable>
216
+ <artist>
217
+ <name>The Pogues</name>
218
+ <mbid>d41a6875-b626-4c0f-89a1-aecb643d29ff</mbid>
219
+ <url>http://www.last.fm/music/The+Pogues</url>
220
+ </artist>
221
+ <image size="small">http://userserve-ak.last.fm/serve/34s/8772183.jpg</image>
222
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/8772183.jpg</image>
223
+ <image size="large">http://userserve-ak.last.fm/serve/126/8772183.jpg</image>
224
+ </track>
225
+ <track>
226
+ <name>Phänomenal egal</name>
227
+ <playcount>2</playcount>
228
+ <tagcount></tagcount>
229
+ <mbid></mbid>
230
+ <url>http://www.last.fm/music/Farin+Urlaub/_/Ph%C3%A4nomenal+egal</url>
231
+ <streamable fulltrack="0">1</streamable>
232
+ <artist>
233
+ <name>Farin Urlaub</name>
234
+ <mbid>23620454-4dca-45b7-8496-066e94d99826</mbid>
235
+ <url>http://www.last.fm/music/Farin+Urlaub</url>
236
+ </artist>
237
+ <image size="small">http://userserve-ak.last.fm/serve/34s/3608376.jpg</image>
238
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/3608376.jpg</image>
239
+ <image size="large">http://userserve-ak.last.fm/serve/126/3608376.jpg</image>
240
+ </track>
241
+ <track>
242
+ <name>Up In My Room</name>
243
+ <playcount>2</playcount>
244
+ <tagcount></tagcount>
245
+ <mbid></mbid>
246
+ <url>http://www.last.fm/music/Patrice/_/Up+In+My+Room</url>
247
+ <streamable fulltrack="0">1</streamable>
248
+ <artist>
249
+ <name>Patrice</name>
250
+ <mbid>826dc91a-6dd3-4279-ae8d-bb710db646bb</mbid>
251
+ <url>http://www.last.fm/music/Patrice</url>
252
+ </artist>
253
+ <image size="small">http://userserve-ak.last.fm/serve/34s/11841565.jpg</image>
254
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/11841565.jpg</image>
255
+ <image size="large">http://userserve-ak.last.fm/serve/126/11841565.jpg</image>
256
+ </track>
257
+ <track>
258
+ <name>A New Kind of Army</name>
259
+ <playcount>2</playcount>
260
+ <tagcount></tagcount>
261
+ <mbid></mbid>
262
+ <url>http://www.last.fm/music/Anti-Flag/_/A+New+Kind+of+Army</url>
263
+ <streamable fulltrack="0">0</streamable>
264
+ <artist>
265
+ <name>Anti-Flag</name>
266
+ <mbid>b88f21a7-a1b9-48fd-bbc4-ae758026f17f</mbid>
267
+ <url>http://www.last.fm/music/Anti-Flag</url>
268
+ </artist>
269
+ <image size="small">http://images.amazon.com/images/P/B00000IFUO.01.MZZZZZZZ.jpg</image>
270
+ <image size="medium">http://images.amazon.com/images/P/B00000IFUO.01.MZZZZZZZ.jpg</image>
271
+ <image size="large">http://images.amazon.com/images/P/B00000IFUO.01.MZZZZZZZ.jpg</image>
272
+ </track>
273
+ <track>
274
+ <name>The Unshockable</name>
275
+ <playcount>2</playcount>
276
+ <tagcount></tagcount>
277
+ <mbid></mbid>
278
+ <url>http://www.last.fm/music/Max%C3%AFmo+Park/_/The+Unshockable</url>
279
+ <streamable fulltrack="0">1</streamable>
280
+ <artist>
281
+ <name>Maxïmo Park</name>
282
+ <mbid>92e634a7-6023-4be8-be15-ebba822f5b34</mbid>
283
+ <url>http://www.last.fm/music/Max%C3%AFmo+Park</url>
284
+ </artist>
285
+ <image size="small">http://userserve-ak.last.fm/serve/34s/5345607.jpg</image>
286
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/5345607.jpg</image>
287
+ <image size="large">http://userserve-ak.last.fm/serve/126/5345607.jpg</image>
288
+ </track>
289
+ <track>
290
+ <name>Axel Foley Theme</name>
291
+ <playcount>2</playcount>
292
+ <tagcount></tagcount>
293
+ <mbid></mbid>
294
+ <url>http://www.last.fm/music/Beverly+Hills+Cop/_/Axel+Foley+Theme</url>
295
+ <streamable fulltrack="0">0</streamable>
296
+ <artist>
297
+ <name>Beverly Hills Cop</name>
298
+ <mbid></mbid>
299
+ <url>http://www.last.fm/music/Beverly+Hills+Cop</url>
300
+ </artist>
301
+ </track>
302
+ <track>
303
+ <name>Favorite Son</name>
304
+ <playcount>2</playcount>
305
+ <tagcount></tagcount>
306
+ <mbid></mbid>
307
+ <url>http://www.last.fm/music/Green+Day/_/Favorite+Son</url>
308
+ <streamable fulltrack="0">0</streamable>
309
+ <artist>
310
+ <name>Green Day</name>
311
+ <mbid>084308bd-1654-436f-ba03-df6697104e19</mbid>
312
+ <url>http://www.last.fm/music/Green+Day</url>
313
+ </artist>
314
+ <image size="small">http://userserve-ak.last.fm/serve/34s/10089131.jpg</image>
315
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/10089131.jpg</image>
316
+ <image size="large">http://userserve-ak.last.fm/serve/126/10089131.jpg</image>
317
+ </track>
318
+ <track>
319
+ <name>Sally MacLennane</name>
320
+ <playcount>2</playcount>
321
+ <tagcount></tagcount>
322
+ <mbid></mbid>
323
+ <url>http://www.last.fm/music/The+Pogues/_/Sally+MacLennane</url>
324
+ <streamable fulltrack="0">1</streamable>
325
+ <artist>
326
+ <name>The Pogues</name>
327
+ <mbid>d41a6875-b626-4c0f-89a1-aecb643d29ff</mbid>
328
+ <url>http://www.last.fm/music/The+Pogues</url>
329
+ </artist>
330
+ <image size="small">http://userserve-ak.last.fm/serve/34s/24315671.jpg</image>
331
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/24315671.jpg</image>
332
+ <image size="large">http://userserve-ak.last.fm/serve/126/24315671.jpg</image>
333
+ </track>
334
+ <track>
335
+ <name>Step Up</name>
336
+ <playcount>2</playcount>
337
+ <tagcount></tagcount>
338
+ <mbid></mbid>
339
+ <url>http://www.last.fm/music/Linkin+Park/_/Step+Up</url>
340
+ <streamable fulltrack="0">0</streamable>
341
+ <artist>
342
+ <name>Linkin Park</name>
343
+ <mbid>f59c5520-5f46-4d2c-b2c4-822eabf53419</mbid>
344
+ <url>http://www.last.fm/music/Linkin+Park</url>
345
+ </artist>
346
+ <image size="small">http://userserve-ak.last.fm/serve/34s/10513329.jpg</image>
347
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/10513329.jpg</image>
348
+ <image size="large">http://userserve-ak.last.fm/serve/126/10513329.jpg</image>
349
+ </track>
350
+ <track>
351
+ <name>Sunshine</name>
352
+ <playcount>2</playcount>
353
+ <tagcount></tagcount>
354
+ <mbid></mbid>
355
+ <url>http://www.last.fm/music/Patrice/_/Sunshine</url>
356
+ <streamable fulltrack="0">0</streamable>
357
+ <artist>
358
+ <name>Patrice</name>
359
+ <mbid>826dc91a-6dd3-4279-ae8d-bb710db646bb</mbid>
360
+ <url>http://www.last.fm/music/Patrice</url>
361
+ </artist>
362
+ </track>
363
+ <track>
364
+ <name>Time's Up</name>
365
+ <playcount>2</playcount>
366
+ <tagcount></tagcount>
367
+ <mbid></mbid>
368
+ <url>http://www.last.fm/music/Donots/_/Time%27s+Up</url>
369
+ <streamable fulltrack="0">1</streamable>
370
+ <artist>
371
+ <name>Donots</name>
372
+ <mbid>06a4a555-1b69-4175-83df-2528a8e5af05</mbid>
373
+ <url>http://www.last.fm/music/Donots</url>
374
+ </artist>
375
+ <image size="small">http://userserve-ak.last.fm/serve/34s/19713453.jpg</image>
376
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/19713453.jpg</image>
377
+ <image size="large">http://userserve-ak.last.fm/serve/126/19713453.jpg</image>
378
+ </track>
379
+ <track>
380
+ <name>End Over End</name>
381
+ <playcount>2</playcount>
382
+ <tagcount></tagcount>
383
+ <mbid></mbid>
384
+ <url>http://www.last.fm/music/Foo+Fighters/_/End+Over+End</url>
385
+ <streamable fulltrack="0">1</streamable>
386
+ <artist>
387
+ <name>Foo Fighters</name>
388
+ <mbid>67f66c07-6e61-4026-ade5-7e782fad3a5d</mbid>
389
+ <url>http://www.last.fm/music/Foo+Fighters</url>
390
+ </artist>
391
+ <image size="small">http://userserve-ak.last.fm/serve/34s/23752293.jpg</image>
392
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/23752293.jpg</image>
393
+ <image size="large">http://userserve-ak.last.fm/serve/126/23752293.jpg</image>
394
+ </track>
395
+ <track>
396
+ <name>Manchmal haben Frauen ...</name>
397
+ <playcount>2</playcount>
398
+ <tagcount></tagcount>
399
+ <mbid></mbid>
400
+ <url>http://www.last.fm/music/Die+%C3%84rzte/_/Manchmal+haben+Frauen+...</url>
401
+ <streamable fulltrack="0">0</streamable>
402
+ <artist>
403
+ <name>Die Ärzte</name>
404
+ <mbid>f2fb0ff0-5679-42ec-a55c-15109ce6e320</mbid>
405
+ <url>http://www.last.fm/music/Die+%C3%84rzte</url>
406
+ </artist>
407
+ <image size="small">http://images-eu.amazon.com/images/P/B00004ZC4S.03.MZZZZZZZ.jpg</image>
408
+ <image size="medium">http://images-eu.amazon.com/images/P/B00004ZC4S.03.MZZZZZZZ.jpg</image>
409
+ <image size="large">http://images-eu.amazon.com/images/P/B00004ZC4S.03.MZZZZZZZ.jpg</image>
410
+ </track>
411
+ <track>
412
+ <name>Gekommen um zu bleiben</name>
413
+ <playcount>2</playcount>
414
+ <tagcount></tagcount>
415
+ <mbid></mbid>
416
+ <url>http://www.last.fm/music/Wir+sind+Helden/_/Gekommen+um+zu+bleiben</url>
417
+ <streamable fulltrack="0">1</streamable>
418
+ <artist>
419
+ <name>Wir sind Helden</name>
420
+ <mbid>908fedf4-548a-430f-b806-38fca9507dc4</mbid>
421
+ <url>http://www.last.fm/music/Wir+sind+Helden</url>
422
+ </artist>
423
+ <image size="small">http://userserve-ak.last.fm/serve/34s/14689581.jpg</image>
424
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/14689581.jpg</image>
425
+ <image size="large">http://userserve-ak.last.fm/serve/126/14689581.jpg</image>
426
+ </track>
427
+ <track>
428
+ <name>You Shook Me All Night Long</name>
429
+ <playcount>2</playcount>
430
+ <tagcount></tagcount>
431
+ <mbid></mbid>
432
+ <url>http://www.last.fm/music/AC%252FDC/_/You+Shook+Me+All+Night+Long</url>
433
+ <streamable fulltrack="0">0</streamable>
434
+ <artist>
435
+ <name>AC/DC</name>
436
+ <mbid>66c662b6-6e2f-4930-8610-912e24c63ed1</mbid>
437
+ <url>http://www.last.fm/music/AC%252FDC</url>
438
+ </artist>
439
+ <image size="small">http://userserve-ak.last.fm/serve/34s/12621577.jpg</image>
440
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/12621577.jpg</image>
441
+ <image size="large">http://userserve-ak.last.fm/serve/126/12621577.jpg</image>
442
+ </track>
443
+ <track>
444
+ <name>Nosebleed</name>
445
+ <playcount>2</playcount>
446
+ <tagcount></tagcount>
447
+ <mbid></mbid>
448
+ <url>http://www.last.fm/music/Max%C3%AFmo+Park/_/Nosebleed</url>
449
+ <streamable fulltrack="0">0</streamable>
450
+ <artist>
451
+ <name>Maxïmo Park</name>
452
+ <mbid>92e634a7-6023-4be8-be15-ebba822f5b34</mbid>
453
+ <url>http://www.last.fm/music/Max%C3%AFmo+Park</url>
454
+ </artist>
455
+ </track>
456
+ <track>
457
+ <name>Poison</name>
458
+ <playcount>2</playcount>
459
+ <tagcount></tagcount>
460
+ <mbid></mbid>
461
+ <url>http://www.last.fm/music/The+Prodigy/_/Poison</url>
462
+ <streamable fulltrack="0">1</streamable>
463
+ <artist>
464
+ <name>The Prodigy</name>
465
+ <mbid>4a4ee089-93b1-4470-af9a-6ff575d32704</mbid>
466
+ <url>http://www.last.fm/music/The+Prodigy</url>
467
+ </artist>
468
+ <image size="small">http://userserve-ak.last.fm/serve/34s/12622007.jpg</image>
469
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/12622007.jpg</image>
470
+ <image size="large">http://userserve-ak.last.fm/serve/126/12622007.jpg</image>
471
+ </track>
472
+ <track>
473
+ <name>Elena Paparizou</name>
474
+ <playcount>2</playcount>
475
+ <tagcount></tagcount>
476
+ <mbid></mbid>
477
+ <url>http://www.last.fm/music/My+number+one/_/Elena+Paparizou</url>
478
+ <streamable fulltrack="0">0</streamable>
479
+ <artist>
480
+ <name>My number one</name>
481
+ <mbid></mbid>
482
+ <url>http://www.last.fm/music/My+number+one</url>
483
+ </artist>
484
+ </track>
485
+ <track>
486
+ <name>Last But Not Least</name>
487
+ <playcount>2</playcount>
488
+ <tagcount></tagcount>
489
+ <mbid></mbid>
490
+ <url>http://www.last.fm/music/The+Enemy/_/Last+But+Not+Least</url>
491
+ <streamable fulltrack="1">1</streamable>
492
+ <artist>
493
+ <name>The Enemy</name>
494
+ <mbid></mbid>
495
+ <url>http://www.last.fm/music/The+Enemy</url>
496
+ </artist>
497
+ <image size="small">http://userserve-ak.last.fm/serve/34s/15605977.jpg</image>
498
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/15605977.jpg</image>
499
+ <image size="large">http://userserve-ak.last.fm/serve/126/15605977.jpg</image>
500
+ </track>
501
+ <track>
502
+ <name>Growing Up</name>
503
+ <playcount>2</playcount>
504
+ <tagcount></tagcount>
505
+ <mbid></mbid>
506
+ <url>http://www.last.fm/music/Fall+Out+Boy/_/Growing+Up</url>
507
+ <streamable fulltrack="1">1</streamable>
508
+ <artist>
509
+ <name>Fall Out Boy</name>
510
+ <mbid>516cef4d-0718-4007-9939-f9b38af3f784</mbid>
511
+ <url>http://www.last.fm/music/Fall+Out+Boy</url>
512
+ </artist>
513
+ <image size="small">http://images.amazon.com/images/P/B00007KS91.01.MZZZZZZZ.jpg</image>
514
+ <image size="medium">http://images.amazon.com/images/P/B00007KS91.01.MZZZZZZZ.jpg</image>
515
+ <image size="large">http://images.amazon.com/images/P/B00007KS91.01.MZZZZZZZ.jpg</image>
516
+ </track>
517
+ <track>
518
+ <name>A Place for My Head</name>
519
+ <playcount>2</playcount>
520
+ <tagcount></tagcount>
521
+ <mbid></mbid>
522
+ <url>http://www.last.fm/music/Linkin+Park/_/A+Place+for+My+Head</url>
523
+ <streamable fulltrack="0">1</streamable>
524
+ <artist>
525
+ <name>Linkin Park</name>
526
+ <mbid>f59c5520-5f46-4d2c-b2c4-822eabf53419</mbid>
527
+ <url>http://www.last.fm/music/Linkin+Park</url>
528
+ </artist>
529
+ <image size="small">http://userserve-ak.last.fm/serve/34s/8591413.jpg</image>
530
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/8591413.jpg</image>
531
+ <image size="large">http://userserve-ak.last.fm/serve/126/8591413.jpg</image>
532
+ </track>
533
+ <track>
534
+ <name>Tracy Jacks</name>
535
+ <playcount>2</playcount>
536
+ <tagcount></tagcount>
537
+ <mbid></mbid>
538
+ <url>http://www.last.fm/music/Blur/_/Tracy+Jacks</url>
539
+ <streamable fulltrack="0">1</streamable>
540
+ <artist>
541
+ <name>Blur</name>
542
+ <mbid>ba853904-ae25-4ebb-89d6-c44cfbd71bd2</mbid>
543
+ <url>http://www.last.fm/music/Blur</url>
544
+ </artist>
545
+ <image size="small">http://userserve-ak.last.fm/serve/34s/14257389.jpg</image>
546
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/14257389.jpg</image>
547
+ <image size="large">http://userserve-ak.last.fm/serve/126/14257389.jpg</image>
548
+ </track>
549
+ <track>
550
+ <name>Jein</name>
551
+ <playcount>2</playcount>
552
+ <tagcount></tagcount>
553
+ <mbid></mbid>
554
+ <url>http://www.last.fm/music/Fettes+Brot/_/Jein</url>
555
+ <streamable fulltrack="0">1</streamable>
556
+ <artist>
557
+ <name>Fettes Brot</name>
558
+ <mbid>733e7372-5400-4c79-9059-33e2b2262d01</mbid>
559
+ <url>http://www.last.fm/music/Fettes+Brot</url>
560
+ </artist>
561
+ <image size="small">http://userserve-ak.last.fm/serve/34s/12621867.jpg</image>
562
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/12621867.jpg</image>
563
+ <image size="large">http://userserve-ak.last.fm/serve/126/12621867.jpg</image>
564
+ </track>
565
+ <track>
566
+ <name>Titel 01</name>
567
+ <playcount>2</playcount>
568
+ <tagcount></tagcount>
569
+ <mbid></mbid>
570
+ <url>http://www.last.fm/music/%5Bunknown%5D/_/Titel+01</url>
571
+ <streamable fulltrack="0">0</streamable>
572
+ <artist>
573
+ <name>[unknown]</name>
574
+ <mbid>125ec42a-7229-4250-afc5-e057484327fe</mbid>
575
+ <url>http://www.last.fm/music/%5Bunknown%5D</url>
576
+ </artist>
577
+ </track>
578
+ <track>
579
+ <name>Bless the Child</name>
580
+ <playcount>2</playcount>
581
+ <tagcount></tagcount>
582
+ <mbid></mbid>
583
+ <url>http://www.last.fm/music/Nightwish/_/Bless+the+Child</url>
584
+ <streamable fulltrack="0">1</streamable>
585
+ <artist>
586
+ <name>Nightwish</name>
587
+ <mbid>00a9f935-ba93-4fc8-a33a-993abe9c936b</mbid>
588
+ <url>http://www.last.fm/music/Nightwish</url>
589
+ </artist>
590
+ <image size="small">http://userserve-ak.last.fm/serve/34s/22419927.jpg</image>
591
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/22419927.jpg</image>
592
+ <image size="large">http://userserve-ak.last.fm/serve/126/22419927.jpg</image>
593
+ </track>
594
+ <track>
595
+ <name>Von hier an blind</name>
596
+ <playcount>2</playcount>
597
+ <tagcount></tagcount>
598
+ <mbid></mbid>
599
+ <url>http://www.last.fm/music/Wir+sind+Helden/_/Von+hier+an+blind</url>
600
+ <streamable fulltrack="0">1</streamable>
601
+ <artist>
602
+ <name>Wir sind Helden</name>
603
+ <mbid>908fedf4-548a-430f-b806-38fca9507dc4</mbid>
604
+ <url>http://www.last.fm/music/Wir+sind+Helden</url>
605
+ </artist>
606
+ <image size="small">http://userserve-ak.last.fm/serve/34s/14689581.jpg</image>
607
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/14689581.jpg</image>
608
+ <image size="large">http://userserve-ak.last.fm/serve/126/14689581.jpg</image>
609
+ </track>
610
+ <track>
611
+ <name>Hit the Floor</name>
612
+ <playcount>2</playcount>
613
+ <tagcount></tagcount>
614
+ <mbid></mbid>
615
+ <url>http://www.last.fm/music/Linkin+Park/_/Hit+the+Floor</url>
616
+ <streamable fulltrack="0">1</streamable>
617
+ <artist>
618
+ <name>Linkin Park</name>
619
+ <mbid>f59c5520-5f46-4d2c-b2c4-822eabf53419</mbid>
620
+ <url>http://www.last.fm/music/Linkin+Park</url>
621
+ </artist>
622
+ <image size="small">http://userserve-ak.last.fm/serve/34s/8641895.jpg</image>
623
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/8641895.jpg</image>
624
+ <image size="large">http://userserve-ak.last.fm/serve/126/8641895.jpg</image>
625
+ </track>
626
+ <track>
627
+ <name>My Silhouette</name>
628
+ <playcount>2</playcount>
629
+ <tagcount></tagcount>
630
+ <mbid></mbid>
631
+ <url>http://www.last.fm/music/A+Second+Chance/_/My+Silhouette</url>
632
+ <streamable fulltrack="0">0</streamable>
633
+ <artist>
634
+ <name>A Second Chance</name>
635
+ <mbid>a1d54d59-44f2-4688-a8b4-52a6919e8bde</mbid>
636
+ <url>http://www.last.fm/music/A+Second+Chance</url>
637
+ </artist>
638
+ <image size="small">http://cdn.last.fm/depth/catalogue/noimage/cover_med.gif</image>
639
+ <image size="medium">http://cdn.last.fm/depth/catalogue/noimage/cover_med.gif</image>
640
+ <image size="large">http://cdn.last.fm/depth/catalogue/noimage/cover_med.gif</image>
641
+ </track>
642
+ <track>
643
+ <name>Auf der Reeperbahn</name>
644
+ <playcount>2</playcount>
645
+ <tagcount></tagcount>
646
+ <mbid></mbid>
647
+ <url>http://www.last.fm/music/Alter+Mann/_/Auf+der+Reeperbahn</url>
648
+ <streamable fulltrack="0">0</streamable>
649
+ <artist>
650
+ <name>Alter Mann</name>
651
+ <mbid></mbid>
652
+ <url>http://www.last.fm/music/Alter+Mann</url>
653
+ </artist>
654
+ </track>
655
+ <track>
656
+ <name>Cure for the Itch</name>
657
+ <playcount>2</playcount>
658
+ <tagcount></tagcount>
659
+ <mbid></mbid>
660
+ <url>http://www.last.fm/music/Linkin+Park/_/Cure+for+the+Itch</url>
661
+ <streamable fulltrack="0">1</streamable>
662
+ <artist>
663
+ <name>Linkin Park</name>
664
+ <mbid>f59c5520-5f46-4d2c-b2c4-822eabf53419</mbid>
665
+ <url>http://www.last.fm/music/Linkin+Park</url>
666
+ </artist>
667
+ <image size="small">http://userserve-ak.last.fm/serve/34s/8591413.jpg</image>
668
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/8591413.jpg</image>
669
+ <image size="large">http://userserve-ak.last.fm/serve/126/8591413.jpg</image>
670
+ </track>
671
+ <track>
672
+ <name>European Lover</name>
673
+ <playcount>2</playcount>
674
+ <tagcount></tagcount>
675
+ <mbid></mbid>
676
+ <url>http://www.last.fm/music/Little+Man+Tate/_/European+Lover</url>
677
+ <streamable fulltrack="0">1</streamable>
678
+ <artist>
679
+ <name>Little Man Tate</name>
680
+ <mbid>e7cf7ff9-ed2f-4315-aca8-bcbd3b2bfa71</mbid>
681
+ <url>http://www.last.fm/music/Little+Man+Tate</url>
682
+ </artist>
683
+ <image size="small">http://userserve-ak.last.fm/serve/34s/11290697.jpg</image>
684
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/11290697.jpg</image>
685
+ <image size="large">http://userserve-ak.last.fm/serve/126/11290697.jpg</image>
686
+ </track>
687
+ <track>
688
+ <name>Die Nacht</name>
689
+ <playcount>2</playcount>
690
+ <tagcount></tagcount>
691
+ <mbid></mbid>
692
+ <url>http://www.last.fm/music/Wir+sind+Helden/_/Die+Nacht</url>
693
+ <streamable fulltrack="0">1</streamable>
694
+ <artist>
695
+ <name>Wir sind Helden</name>
696
+ <mbid>908fedf4-548a-430f-b806-38fca9507dc4</mbid>
697
+ <url>http://www.last.fm/music/Wir+sind+Helden</url>
698
+ </artist>
699
+ <image size="small">http://userserve-ak.last.fm/serve/34s/15183527.jpg</image>
700
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/15183527.jpg</image>
701
+ <image size="large">http://userserve-ak.last.fm/serve/126/15183527.jpg</image>
702
+ </track>
703
+ <track>
704
+ <name>Claudia hat 'nen Schäferhund</name>
705
+ <playcount>2</playcount>
706
+ <tagcount></tagcount>
707
+ <mbid></mbid>
708
+ <url>http://www.last.fm/music/Die+%C3%84rzte/_/Claudia+hat+%27nen+Sch%C3%A4ferhund</url>
709
+ <streamable fulltrack="0">0</streamable>
710
+ <artist>
711
+ <name>Die Ärzte</name>
712
+ <mbid>f2fb0ff0-5679-42ec-a55c-15109ce6e320</mbid>
713
+ <url>http://www.last.fm/music/Die+%C3%84rzte</url>
714
+ </artist>
715
+ <image size="small">http://images.amazon.com/images/P/B00000ARRT.01._SCMZZZZZZZ_.jpg</image>
716
+ <image size="medium">http://images.amazon.com/images/P/B00000ARRT.01._SCMZZZZZZZ_.jpg</image>
717
+ <image size="large">http://images.amazon.com/images/P/B00000ARRT.01._SCMZZZZZZZ_.jpg</image>
718
+ </track>
719
+ <track>
720
+ <name>Grausam und schön</name>
721
+ <playcount>2</playcount>
722
+ <tagcount></tagcount>
723
+ <mbid></mbid>
724
+ <url>http://www.last.fm/music/Madsen/_/Grausam+und+sch%C3%B6n</url>
725
+ <streamable fulltrack="1">1</streamable>
726
+ <artist>
727
+ <name>Madsen</name>
728
+ <mbid>8a0c3b86-af55-42d2-85b9-6372e7430986</mbid>
729
+ <url>http://www.last.fm/music/Madsen</url>
730
+ </artist>
731
+ <image size="small">http://userserve-ak.last.fm/serve/34s/5548067.jpg</image>
732
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/5548067.jpg</image>
733
+ <image size="large">http://userserve-ak.last.fm/serve/126/5548067.jpg</image>
734
+ </track>
735
+ <track>
736
+ <name>Titel 07</name>
737
+ <playcount>2</playcount>
738
+ <tagcount></tagcount>
739
+ <mbid></mbid>
740
+ <url>http://www.last.fm/music/%5Bunknown%5D/_/Titel+07</url>
741
+ <streamable fulltrack="0">0</streamable>
742
+ <artist>
743
+ <name>[unknown]</name>
744
+ <mbid>125ec42a-7229-4250-afc5-e057484327fe</mbid>
745
+ <url>http://www.last.fm/music/%5Bunknown%5D</url>
746
+ </artist>
747
+ </track>
748
+ <track>
749
+ <name>The Other Way</name>
750
+ <playcount>2</playcount>
751
+ <tagcount></tagcount>
752
+ <mbid></mbid>
753
+ <url>http://www.last.fm/music/Weezer/_/The+Other+Way</url>
754
+ <streamable fulltrack="1">1</streamable>
755
+ <artist>
756
+ <name>Weezer</name>
757
+ <mbid>6fe07aa5-fec0-4eca-a456-f29bff451b04</mbid>
758
+ <url>http://www.last.fm/music/Weezer</url>
759
+ </artist>
760
+ <image size="small">http://userserve-ak.last.fm/serve/34s/8673675.jpg</image>
761
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/8673675.jpg</image>
762
+ <image size="large">http://userserve-ak.last.fm/serve/126/8673675.jpg</image>
763
+ </track>
764
+ <track>
765
+ <name>Welthit</name>
766
+ <playcount>2</playcount>
767
+ <tagcount></tagcount>
768
+ <mbid></mbid>
769
+ <url>http://www.last.fm/music/Fettes+Brot/_/Welthit</url>
770
+ <streamable fulltrack="0">1</streamable>
771
+ <artist>
772
+ <name>Fettes Brot</name>
773
+ <mbid>733e7372-5400-4c79-9059-33e2b2262d01</mbid>
774
+ <url>http://www.last.fm/music/Fettes+Brot</url>
775
+ </artist>
776
+ <image size="small">http://userserve-ak.last.fm/serve/34s/12621867.jpg</image>
777
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/12621867.jpg</image>
778
+ <image size="large">http://userserve-ak.last.fm/serve/126/12621867.jpg</image>
779
+ </track>
780
+ </tracks></lfm>