titanous-scrobbler 0.2.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/History.txt +3 -0
 - data/MIT-LICENSE +19 -0
 - data/Manifest +67 -0
 - data/README.rdoc +107 -0
 - data/Rakefile +36 -0
 - data/examples/album.rb +17 -0
 - data/examples/artist.rb +13 -0
 - data/examples/scrobble.rb +31 -0
 - data/examples/tag.rb +11 -0
 - data/examples/track.rb +6 -0
 - data/examples/user.rb +14 -0
 - data/lib/scrobbler/album.rb +143 -0
 - data/lib/scrobbler/artist.rb +127 -0
 - data/lib/scrobbler/base.rb +29 -0
 - data/lib/scrobbler/chart.rb +31 -0
 - data/lib/scrobbler/playing.rb +49 -0
 - data/lib/scrobbler/rest.rb +47 -0
 - data/lib/scrobbler/scrobble.rb +66 -0
 - data/lib/scrobbler/simpleauth.rb +59 -0
 - data/lib/scrobbler/tag.rb +104 -0
 - data/lib/scrobbler/track.rb +96 -0
 - data/lib/scrobbler/user.rb +192 -0
 - data/lib/scrobbler/version.rb +3 -0
 - data/lib/scrobbler.rb +20 -0
 - data/scrobbler.gemspec +41 -0
 - data/setup.rb +1585 -0
 - data/test/fixtures/xml/album/info.xml +70 -0
 - data/test/fixtures/xml/artist/fans.xml +18 -0
 - data/test/fixtures/xml/artist/similar.xml +39 -0
 - data/test/fixtures/xml/artist/topalbums.xml +36 -0
 - data/test/fixtures/xml/artist/toptags.xml +18 -0
 - data/test/fixtures/xml/artist/toptracks.xml +27 -0
 - data/test/fixtures/xml/tag/topalbums.xml +39 -0
 - data/test/fixtures/xml/tag/topartists.xml +39 -0
 - data/test/fixtures/xml/tag/toptags.xml +252 -0
 - data/test/fixtures/xml/tag/toptracks.xml +30 -0
 - data/test/fixtures/xml/track/fans.xml +28 -0
 - data/test/fixtures/xml/track/toptags.xml +33 -0
 - data/test/fixtures/xml/user/friends.xml +21 -0
 - data/test/fixtures/xml/user/neighbours.xml +18 -0
 - data/test/fixtures/xml/user/profile.xml +12 -0
 - data/test/fixtures/xml/user/recentbannedtracks.xml +24 -0
 - data/test/fixtures/xml/user/recentlovedtracks.xml +24 -0
 - data/test/fixtures/xml/user/recenttracks.xml +27 -0
 - data/test/fixtures/xml/user/systemrecs.xml +18 -0
 - data/test/fixtures/xml/user/topalbums.xml +42 -0
 - data/test/fixtures/xml/user/topartists.xml +30 -0
 - data/test/fixtures/xml/user/toptags.xml +18 -0
 - data/test/fixtures/xml/user/toptracks.xml +27 -0
 - data/test/fixtures/xml/user/weeklyalbumchart.xml +35 -0
 - data/test/fixtures/xml/user/weeklyalbumchart_from_1138536002_to_1139140802.xml +35 -0
 - data/test/fixtures/xml/user/weeklyartistchart.xml +38 -0
 - data/test/fixtures/xml/user/weeklyartistchart_from_1138536002_to_1139140802.xml +59 -0
 - data/test/fixtures/xml/user/weeklychartlist.xml +74 -0
 - data/test/fixtures/xml/user/weeklytrackchart.xml +35 -0
 - data/test/fixtures/xml/user/weeklytrackchart_from_1138536002_to_1139140802.xml +35 -0
 - data/test/mocks/rest.rb +50 -0
 - data/test/test_helper.rb +17 -0
 - data/test/unit/album_test.rb +86 -0
 - data/test/unit/artist_test.rb +82 -0
 - data/test/unit/chart_test.rb +34 -0
 - data/test/unit/playing_test.rb +53 -0
 - data/test/unit/scrobble_test.rb +69 -0
 - data/test/unit/simpleauth_test.rb +45 -0
 - data/test/unit/tag_test.rb +65 -0
 - data/test/unit/track_test.rb +42 -0
 - data/test/unit/user_test.rb +291 -0
 - metadata +172 -0
 
| 
         @@ -0,0 +1,28 @@ 
     | 
|
| 
      
 1 
     | 
    
         
            +
            <?xml version="1.0" encoding="UTF-8"?>
         
     | 
| 
      
 2 
     | 
    
         
            +
            <fans artist="Carrie Underwood" track="Before He Cheats">
         
     | 
| 
      
 3 
     | 
    
         
            +
            	<user username="frozenice">
         
     | 
| 
      
 4 
     | 
    
         
            +
            		<url>http://www.last.fm/user/frozenice/</url>
         
     | 
| 
      
 5 
     | 
    
         
            +
            		<image>http://panther1.last.fm/avatar/54e8d2cafc363336e15fef0a48d30706.jpg</image>
         
     | 
| 
      
 6 
     | 
    
         
            +
            		<weight>909</weight>
         
     | 
| 
      
 7 
     | 
    
         
            +
            	</user>
         
     | 
| 
      
 8 
     | 
    
         
            +
            	<user username="Madamev">
         
     | 
| 
      
 9 
     | 
    
         
            +
            		<url>http://www.last.fm/user/Madamev/</url>
         
     | 
| 
      
 10 
     | 
    
         
            +
            		<image>http://panther1.last.fm/avatar/9de1229f26d5a1d279215f95e02c2bd4.jpg</image>
         
     | 
| 
      
 11 
     | 
    
         
            +
            		<weight>905</weight>
         
     | 
| 
      
 12 
     | 
    
         
            +
            	</user>
         
     | 
| 
      
 13 
     | 
    
         
            +
            	<user username="ryancait">
         
     | 
| 
      
 14 
     | 
    
         
            +
            		<url>http://www.last.fm/user/ryancait/</url>
         
     | 
| 
      
 15 
     | 
    
         
            +
            		<image>http://panther1.last.fm/depth/catalogue/noimage/nouser_140px.jpg</image>
         
     | 
| 
      
 16 
     | 
    
         
            +
            		<weight>896</weight>
         
     | 
| 
      
 17 
     | 
    
         
            +
            	</user>
         
     | 
| 
      
 18 
     | 
    
         
            +
            	<user username="lapatton">
         
     | 
| 
      
 19 
     | 
    
         
            +
            		<url>http://www.last.fm/user/lapatton/</url>
         
     | 
| 
      
 20 
     | 
    
         
            +
            		<image>http://panther1.last.fm/depth/catalogue/noimage/nouser_140px.jpg</image>
         
     | 
| 
      
 21 
     | 
    
         
            +
            		<weight>886</weight>
         
     | 
| 
      
 22 
     | 
    
         
            +
            	</user>
         
     | 
| 
      
 23 
     | 
    
         
            +
            	<user username="iya">
         
     | 
| 
      
 24 
     | 
    
         
            +
            		<url>http://www.last.fm/user/iya/</url>
         
     | 
| 
      
 25 
     | 
    
         
            +
            		<image>http://panther1.last.fm/avatar/00e11252db1051387c47521767296b42.jpg</image>
         
     | 
| 
      
 26 
     | 
    
         
            +
            		<weight>859</weight>
         
     | 
| 
      
 27 
     | 
    
         
            +
            	</user>
         
     | 
| 
      
 28 
     | 
    
         
            +
            </fans>
         
     | 
| 
         @@ -0,0 +1,33 @@ 
     | 
|
| 
      
 1 
     | 
    
         
            +
            <?xml version="1.0" encoding="UTF-8"?>
         
     | 
| 
      
 2 
     | 
    
         
            +
            <toptags artist="Carrie Underwood" track="Before He Cheats">
         
     | 
| 
      
 3 
     | 
    
         
            +
            	<tag>
         
     | 
| 
      
 4 
     | 
    
         
            +
            		<name>country</name> 
         
     | 
| 
      
 5 
     | 
    
         
            +
            		<count>100</count>
         
     | 
| 
      
 6 
     | 
    
         
            +
            		<url>http://www.last.fm/tag/country</url>
         
     | 
| 
      
 7 
     | 
    
         
            +
            	</tag>
         
     | 
| 
      
 8 
     | 
    
         
            +
            	<tag>
         
     | 
| 
      
 9 
     | 
    
         
            +
            		<name>pop</name> 
         
     | 
| 
      
 10 
     | 
    
         
            +
            		<count>59</count>
         
     | 
| 
      
 11 
     | 
    
         
            +
            		<url>http://www.last.fm/tag/pop</url>
         
     | 
| 
      
 12 
     | 
    
         
            +
            	</tag>
         
     | 
| 
      
 13 
     | 
    
         
            +
            	<tag>
         
     | 
| 
      
 14 
     | 
    
         
            +
            		<name>female vocalists</name> 
         
     | 
| 
      
 15 
     | 
    
         
            +
            		<count>22</count>
         
     | 
| 
      
 16 
     | 
    
         
            +
            		<url>http://www.last.fm/tag/female%20vocalists</url>
         
     | 
| 
      
 17 
     | 
    
         
            +
            	</tag>
         
     | 
| 
      
 18 
     | 
    
         
            +
            	<tag>
         
     | 
| 
      
 19 
     | 
    
         
            +
            		<name>favorites</name> 
         
     | 
| 
      
 20 
     | 
    
         
            +
            		<count>19</count>
         
     | 
| 
      
 21 
     | 
    
         
            +
            		<url>http://www.last.fm/tag/favorites</url>
         
     | 
| 
      
 22 
     | 
    
         
            +
            	</tag>
         
     | 
| 
      
 23 
     | 
    
         
            +
            	<tag>
         
     | 
| 
      
 24 
     | 
    
         
            +
            		<name>female vocals</name> 
         
     | 
| 
      
 25 
     | 
    
         
            +
            		<count>16</count>
         
     | 
| 
      
 26 
     | 
    
         
            +
            		<url>http://www.last.fm/tag/female%20vocals</url>
         
     | 
| 
      
 27 
     | 
    
         
            +
            	</tag>
         
     | 
| 
      
 28 
     | 
    
         
            +
            	<tag>
         
     | 
| 
      
 29 
     | 
    
         
            +
            		<name>i feel like i sold out for listening to this</name> 
         
     | 
| 
      
 30 
     | 
    
         
            +
            		<count>8</count>
         
     | 
| 
      
 31 
     | 
    
         
            +
            		<url>http://www.last.fm/tag/i%20feel%20like%20i%20sold%20out%20for%20listening%20to%20this</url>
         
     | 
| 
      
 32 
     | 
    
         
            +
            	</tag>
         
     | 
| 
      
 33 
     | 
    
         
            +
            </toptags>
         
     | 
| 
         @@ -0,0 +1,21 @@ 
     | 
|
| 
      
 1 
     | 
    
         
            +
            <?xml version="1.0" encoding="UTF-8"?>
         
     | 
| 
      
 2 
     | 
    
         
            +
            <friends user="jnunemaker">
         
     | 
| 
      
 3 
     | 
    
         
            +
            	<user username="oaknd1">
         
     | 
| 
      
 4 
     | 
    
         
            +
            		<url>http://www.last.fm/user/oaknd1/</url>
         
     | 
| 
      
 5 
     | 
    
         
            +
            		<image>http://panther1.last.fm/avatar/1894043b3e8995c51f7bb5e3210ef97a.jpg</image>
         
     | 
| 
      
 6 
     | 
    
         
            +
            		<connections>
         
     | 
| 
      
 7 
     | 
    
         
            +
            		</connections>
         
     | 
| 
      
 8 
     | 
    
         
            +
            	</user>
         
     | 
| 
      
 9 
     | 
    
         
            +
            	<user username="lukewarmfusion">
         
     | 
| 
      
 10 
     | 
    
         
            +
            		<url>http://www.last.fm/user/lukewarmfusion/</url>
         
     | 
| 
      
 11 
     | 
    
         
            +
            		<image>http://panther1.last.fm/avatar/0c1d1a8065c2eb890fbf04aef98f7591.png</image>
         
     | 
| 
      
 12 
     | 
    
         
            +
            		<connections>
         
     | 
| 
      
 13 
     | 
    
         
            +
            		</connections>
         
     | 
| 
      
 14 
     | 
    
         
            +
            	</user>
         
     | 
| 
      
 15 
     | 
    
         
            +
            	<user username="wharle">
         
     | 
| 
      
 16 
     | 
    
         
            +
            		<url>http://www.last.fm/user/wharle/</url>
         
     | 
| 
      
 17 
     | 
    
         
            +
            		<image>http://panther1.last.fm/avatar/5b0ac37c55a229dd24ea869f229a658d.jpg</image>
         
     | 
| 
      
 18 
     | 
    
         
            +
            		<connections>
         
     | 
| 
      
 19 
     | 
    
         
            +
            		</connections>
         
     | 
| 
      
 20 
     | 
    
         
            +
            	</user>
         
     | 
| 
      
 21 
     | 
    
         
            +
            </friends>
         
     | 
| 
         @@ -0,0 +1,18 @@ 
     | 
|
| 
      
 1 
     | 
    
         
            +
            <?xml version="1.0" encoding="UTF-8"?>
         
     | 
| 
      
 2 
     | 
    
         
            +
            <neighbours user="jnunemaker">
         
     | 
| 
      
 3 
     | 
    
         
            +
            	<user username="xBluejeanbabyx">
         
     | 
| 
      
 4 
     | 
    
         
            +
            		<url>http://www.last.fm/user/xBluejeanbabyx/</url>
         
     | 
| 
      
 5 
     | 
    
         
            +
            		<image>http://panther1.last.fm/avatar/d4de2144dc9b651b02d5d633124f0205.jpg</image>
         
     | 
| 
      
 6 
     | 
    
         
            +
            		<match>100</match>
         
     | 
| 
      
 7 
     | 
    
         
            +
            	</user>
         
     | 
| 
      
 8 
     | 
    
         
            +
            	<user username="shakemegadisco">
         
     | 
| 
      
 9 
     | 
    
         
            +
            		<url>http://www.last.fm/user/shakemegadisco/</url>
         
     | 
| 
      
 10 
     | 
    
         
            +
            		<image>http://panther1.last.fm/avatar/82b932a6e646fa78f7f0a01fec258e43.jpg</image>
         
     | 
| 
      
 11 
     | 
    
         
            +
            		<match>93.17</match>
         
     | 
| 
      
 12 
     | 
    
         
            +
            	</user>
         
     | 
| 
      
 13 
     | 
    
         
            +
            	<user username="someheartsxx">
         
     | 
| 
      
 14 
     | 
    
         
            +
            		<url>http://www.last.fm/user/someheartsxx/</url>
         
     | 
| 
      
 15 
     | 
    
         
            +
            		<image>http://panther1.last.fm/avatar/1d9ef2ef357c0e36b98be845021378c9.jpg</image>
         
     | 
| 
      
 16 
     | 
    
         
            +
            		<match>91.5</match>
         
     | 
| 
      
 17 
     | 
    
         
            +
            	</user>
         
     | 
| 
      
 18 
     | 
    
         
            +
            </neighbours>
         
     | 
| 
         @@ -0,0 +1,12 @@ 
     | 
|
| 
      
 1 
     | 
    
         
            +
            <?xml version="1.0" encoding="UTF-8"?>
         
     | 
| 
      
 2 
     | 
    
         
            +
            <profile id="3017870" cluster="4" username="jnunemaker">
         
     | 
| 
      
 3 
     | 
    
         
            +
            	<url>http://www.last.fm/user/jnunemaker/</url>
         
     | 
| 
      
 4 
     | 
    
         
            +
            	<realname>John Nunemaker</realname>
         
     | 
| 
      
 5 
     | 
    
         
            +
            	<mbox_sha1sum>d5bbe280b7a41d4a87253361692ef105b983cf1a</mbox_sha1sum>
         
     | 
| 
      
 6 
     | 
    
         
            +
            	<registered unixtime="1134050307">Dec 8, 2005</registered>
         
     | 
| 
      
 7 
     | 
    
         
            +
            	<age>25</age>
         
     | 
| 
      
 8 
     | 
    
         
            +
            	<gender>m</gender>
         
     | 
| 
      
 9 
     | 
    
         
            +
            	<country>United States</country>
         
     | 
| 
      
 10 
     | 
    
         
            +
            	<playcount>13267</playcount>
         
     | 
| 
      
 11 
     | 
    
         
            +
            	<avatar>http://panther1.last.fm/avatar/5cb420de0855dadf6bcb1090d8ff02bb.jpg</avatar>
         
     | 
| 
      
 12 
     | 
    
         
            +
            </profile>
         
     | 
| 
         @@ -0,0 +1,24 @@ 
     | 
|
| 
      
 1 
     | 
    
         
            +
            <?xml version="1.0" encoding="UTF-8"?>
         
     | 
| 
      
 2 
     | 
    
         
            +
            <recentbannedtracks user="jnunemaker">
         
     | 
| 
      
 3 
     | 
    
         
            +
            	<track>
         
     | 
| 
      
 4 
     | 
    
         
            +
            		<artist mbid="65314b12-0e08-43fa-ba33-baaa7b874c15">Leonard Cohen</artist>
         
     | 
| 
      
 5 
     | 
    
         
            +
            		<name>Dress Rehearsal Rag</name>
         
     | 
| 
      
 6 
     | 
    
         
            +
            		<mbid></mbid>
         
     | 
| 
      
 7 
     | 
    
         
            +
            		<url>http://www.last.fm/music/Leonard+Cohen/_/Dress+Rehearsal+Rag</url>
         
     | 
| 
      
 8 
     | 
    
         
            +
            		<date uts="1159366744">27 Sep 2006, 2:19pm</date>
         
     | 
| 
      
 9 
     | 
    
         
            +
            	</track>
         
     | 
| 
      
 10 
     | 
    
         
            +
            	<track>
         
     | 
| 
      
 11 
     | 
    
         
            +
            		<artist mbid="4c7ee06c-a724-4ed3-9a12-416d4424d5c3">Full Force</artist>
         
     | 
| 
      
 12 
     | 
    
         
            +
            		<name>Alice, I Want You Just for Me</name>
         
     | 
| 
      
 13 
     | 
    
         
            +
            		<mbid></mbid>
         
     | 
| 
      
 14 
     | 
    
         
            +
            		<url>http://www.last.fm/music/Full+Force/_/Alice%2C+I+Want+You+Just+for+Me</url>
         
     | 
| 
      
 15 
     | 
    
         
            +
            		<date uts="1159365442">27 Sep 2006, 1:57pm</date>
         
     | 
| 
      
 16 
     | 
    
         
            +
            	</track>
         
     | 
| 
      
 17 
     | 
    
         
            +
            	<track>
         
     | 
| 
      
 18 
     | 
    
         
            +
            		<artist mbid="832a43c7-aa7d-439b-a6b4-4f1afa671c24">Soulfly</artist>
         
     | 
| 
      
 19 
     | 
    
         
            +
            		<name>Back to the Primitive</name>
         
     | 
| 
      
 20 
     | 
    
         
            +
            		<mbid></mbid>
         
     | 
| 
      
 21 
     | 
    
         
            +
            		<url>http://www.last.fm/music/Soulfly/_/Back+to+the+Primitive</url>
         
     | 
| 
      
 22 
     | 
    
         
            +
            		<date uts="1159365432">27 Sep 2006, 1:57pm</date>
         
     | 
| 
      
 23 
     | 
    
         
            +
            	</track>
         
     | 
| 
      
 24 
     | 
    
         
            +
            </recentbannedtracks>
         
     | 
| 
         @@ -0,0 +1,24 @@ 
     | 
|
| 
      
 1 
     | 
    
         
            +
            <?xml version="1.0" encoding="UTF-8"?>
         
     | 
| 
      
 2 
     | 
    
         
            +
            <recentlovedtracks user="jnunemaker">
         
     | 
| 
      
 3 
     | 
    
         
            +
            	<track>
         
     | 
| 
      
 4 
     | 
    
         
            +
            		<artist mbid="50549203-9602-451c-b49f-ff031ba8635c">Dashboard Confessional</artist>
         
     | 
| 
      
 5 
     | 
    
         
            +
            		<name>Am I Missing</name>
         
     | 
| 
      
 6 
     | 
    
         
            +
            		<mbid></mbid>
         
     | 
| 
      
 7 
     | 
    
         
            +
            		<url>http://www.last.fm/music/Dashboard+Confessional/_/Am+I+Missing</url>
         
     | 
| 
      
 8 
     | 
    
         
            +
            		<date uts="1159292606">26 Sep 2006, 5:43pm</date>
         
     | 
| 
      
 9 
     | 
    
         
            +
            	</track>
         
     | 
| 
      
 10 
     | 
    
         
            +
            	<track>
         
     | 
| 
      
 11 
     | 
    
         
            +
            		<artist mbid="2f1e4ada-2b9a-4834-90fa-88d61b73082f">Caesars</artist>
         
     | 
| 
      
 12 
     | 
    
         
            +
            		<name>Jerk It Out</name>
         
     | 
| 
      
 13 
     | 
    
         
            +
            		<mbid></mbid>
         
     | 
| 
      
 14 
     | 
    
         
            +
            		<url>http://www.last.fm/music/Caesars/_/Jerk+It+Out</url>
         
     | 
| 
      
 15 
     | 
    
         
            +
            		<date uts="1158947077">22 Sep 2006, 5:44pm</date>
         
     | 
| 
      
 16 
     | 
    
         
            +
            	</track>
         
     | 
| 
      
 17 
     | 
    
         
            +
            	<track>
         
     | 
| 
      
 18 
     | 
    
         
            +
            		<artist mbid="c544ed4d-2390-4442-a83e-1ea2883b09c8">Lynyrd Skynyrd</artist>
         
     | 
| 
      
 19 
     | 
    
         
            +
            		<name>Sweet Home Alabama</name>
         
     | 
| 
      
 20 
     | 
    
         
            +
            		<mbid></mbid>
         
     | 
| 
      
 21 
     | 
    
         
            +
            		<url>http://www.last.fm/music/Lynyrd+Skynyrd/_/Sweet+Home+Alabama</url>
         
     | 
| 
      
 22 
     | 
    
         
            +
            		<date uts="1158946839">22 Sep 2006, 5:40pm</date>
         
     | 
| 
      
 23 
     | 
    
         
            +
            	</track>
         
     | 
| 
      
 24 
     | 
    
         
            +
            </recentlovedtracks>
         
     | 
| 
         @@ -0,0 +1,27 @@ 
     | 
|
| 
      
 1 
     | 
    
         
            +
            <?xml version="1.0" encoding="UTF-8"?>
         
     | 
| 
      
 2 
     | 
    
         
            +
            <recenttracks user="oaknd1">
         
     | 
| 
      
 3 
     | 
    
         
            +
            	<track streamable="true">
         
     | 
| 
      
 4 
     | 
    
         
            +
            		<artist mbid="a0327dc2-dc76-44d5-aec6-47cd2dff1469">Counting Crows</artist>
         
     | 
| 
      
 5 
     | 
    
         
            +
            		<name>Recovering the Satellites</name>
         
     | 
| 
      
 6 
     | 
    
         
            +
            		<mbid></mbid>
         
     | 
| 
      
 7 
     | 
    
         
            +
            		<album mbid="328bc43b-a81a-4dc0-844f-1a27880e5fb2">Recovering the Satellites</album>
         
     | 
| 
      
 8 
     | 
    
         
            +
            		<url>http://www.last.fm/music/Counting+Crows/_/Recovering+the+Satellites</url>
         
     | 
| 
      
 9 
     | 
    
         
            +
            		<date uts="1178312462">4 May 2007, 9:01pm</date>
         
     | 
| 
      
 10 
     | 
    
         
            +
            	</track>
         
     | 
| 
      
 11 
     | 
    
         
            +
            	<track streamable="true">
         
     | 
| 
      
 12 
     | 
    
         
            +
            		<artist mbid="144ef525-85e9-40c3-8335-02c32d0861f3">John Mayer</artist>
         
     | 
| 
      
 13 
     | 
    
         
            +
            		<name>Clarity</name>
         
     | 
| 
      
 14 
     | 
    
         
            +
            		<mbid></mbid>
         
     | 
| 
      
 15 
     | 
    
         
            +
            		<album mbid="3b5f65d8-e4c9-4c0b-b932-529f0b191d5b">Heavier Things</album>
         
     | 
| 
      
 16 
     | 
    
         
            +
            		<url>http://www.last.fm/music/John+Mayer/_/Clarity</url>
         
     | 
| 
      
 17 
     | 
    
         
            +
            		<date uts="1178312188">4 May 2007, 8:56pm</date>
         
     | 
| 
      
 18 
     | 
    
         
            +
            	</track>
         
     | 
| 
      
 19 
     | 
    
         
            +
            	<track streamable="false">
         
     | 
| 
      
 20 
     | 
    
         
            +
            		<artist mbid="07e748f1-075e-428d-85dc-ce3be434e906">Dave Matthews Band</artist>
         
     | 
| 
      
 21 
     | 
    
         
            +
            		<name>Grace Is Gone (Lillywhite)</name>
         
     | 
| 
      
 22 
     | 
    
         
            +
            		<mbid></mbid>
         
     | 
| 
      
 23 
     | 
    
         
            +
            		<album mbid=""></album>
         
     | 
| 
      
 24 
     | 
    
         
            +
            		<url>http://www.last.fm/music/Dave+Matthews+Band/_/Grace+Is+Gone+%28Lillywhite%29</url>
         
     | 
| 
      
 25 
     | 
    
         
            +
            		<date uts="1178311876">4 May 2007, 8:51pm</date>
         
     | 
| 
      
 26 
     | 
    
         
            +
            	</track>
         
     | 
| 
      
 27 
     | 
    
         
            +
            </recenttracks>
         
     | 
| 
         @@ -0,0 +1,18 @@ 
     | 
|
| 
      
 1 
     | 
    
         
            +
            <?xml version="1.0" encoding="UTF-8"?>
         
     | 
| 
      
 2 
     | 
    
         
            +
            <recommendations user="RJ">
         
     | 
| 
      
 3 
     | 
    
         
            +
            	<artist>
         
     | 
| 
      
 4 
     | 
    
         
            +
            		<name>Kaiser Chiefs</name>
         
     | 
| 
      
 5 
     | 
    
         
            +
            		<mbid>90218af4-4d58-4821-8d41-2ee295ebbe21</mbid>
         
     | 
| 
      
 6 
     | 
    
         
            +
            		<url>http://www.last.fm/music/Kaiser+Chiefs</url>
         
     | 
| 
      
 7 
     | 
    
         
            +
            	</artist>
         
     | 
| 
      
 8 
     | 
    
         
            +
            	<artist>
         
     | 
| 
      
 9 
     | 
    
         
            +
            		<name>Planet X</name>
         
     | 
| 
      
 10 
     | 
    
         
            +
            		<mbid>663ce5b5-fdd8-47c1-b1e5-c632ed6c3d1b</mbid>
         
     | 
| 
      
 11 
     | 
    
         
            +
            		<url>http://www.last.fm/music/Planet+X</url>
         
     | 
| 
      
 12 
     | 
    
         
            +
            	</artist>
         
     | 
| 
      
 13 
     | 
    
         
            +
            	<artist>
         
     | 
| 
      
 14 
     | 
    
         
            +
            		<name>Kasabian</name>
         
     | 
| 
      
 15 
     | 
    
         
            +
            		<mbid>69b39eab-6577-46a4-a9f5-817839092033</mbid>
         
     | 
| 
      
 16 
     | 
    
         
            +
            		<url>http://www.last.fm/music/Kasabian</url>
         
     | 
| 
      
 17 
     | 
    
         
            +
            	</artist>
         
     | 
| 
      
 18 
     | 
    
         
            +
            </recommendations>
         
     | 
| 
         @@ -0,0 +1,42 @@ 
     | 
|
| 
      
 1 
     | 
    
         
            +
            <?xml version="1.0" encoding="UTF-8"?>
         
     | 
| 
      
 2 
     | 
    
         
            +
            <topalbums user="jnunemaker">
         
     | 
| 
      
 3 
     | 
    
         
            +
            	<album>
         
     | 
| 
      
 4 
     | 
    
         
            +
            		<artist mbid="9092d8e1-9b38-4372-a96d-000b8561a8bc">LeAnn Rimes</artist>
         
     | 
| 
      
 5 
     | 
    
         
            +
            		<name>This Woman</name>
         
     | 
| 
      
 6 
     | 
    
         
            +
            		<mbid>080a4038-5156-460a-8dd5-daaa7d16b6a6</mbid>
         
     | 
| 
      
 7 
     | 
    
         
            +
            		<playcount>297</playcount>
         
     | 
| 
      
 8 
     | 
    
         
            +
            		<rank>1</rank>
         
     | 
| 
      
 9 
     | 
    
         
            +
            		<url>http://www.last.fm/music/LeAnn+Rimes/This+Woman</url>
         
     | 
| 
      
 10 
     | 
    
         
            +
            		<image>
         
     | 
| 
      
 11 
     | 
    
         
            +
            			<large>http://images.amazon.com/images/P/B00067BD8K.01._SCMZZZZZZZ_.jpg</large>
         
     | 
| 
      
 12 
     | 
    
         
            +
            			<medium>http://images.amazon.com/images/P/B00067BD8K.01._SCMZZZZZZZ_.jpg</medium>
         
     | 
| 
      
 13 
     | 
    
         
            +
            			<small>http://images.amazon.com/images/P/B00067BD8K.01._SCMZZZZZZZ_.jpg</small>
         
     | 
| 
      
 14 
     | 
    
         
            +
            		</image>
         
     | 
| 
      
 15 
     | 
    
         
            +
            	</album>
         
     | 
| 
      
 16 
     | 
    
         
            +
            	<album>
         
     | 
| 
      
 17 
     | 
    
         
            +
            		<artist mbid="0fb711af-c7ba-4bdc-b0b6-b8495fc0a590">Dwight Yoakam</artist>
         
     | 
| 
      
 18 
     | 
    
         
            +
            		<name>The Very Best of Dwight Yoakam</name>
         
     | 
| 
      
 19 
     | 
    
         
            +
            		<mbid>b6a051b4-1a1e-4c33-a1e5-0ea6e920a13f</mbid>
         
     | 
| 
      
 20 
     | 
    
         
            +
            		<playcount>282</playcount>
         
     | 
| 
      
 21 
     | 
    
         
            +
            		<rank>2</rank>
         
     | 
| 
      
 22 
     | 
    
         
            +
            		<url>http://www.last.fm/music/Dwight+Yoakam/The+Very+Best+of+Dwight+Yoakam</url>
         
     | 
| 
      
 23 
     | 
    
         
            +
            		<image>
         
     | 
| 
      
 24 
     | 
    
         
            +
            			<large>http://panther1.last.fm/coverart/130x130/2187175.jpg</large>
         
     | 
| 
      
 25 
     | 
    
         
            +
            			<medium>http://cdn.last.fm/coverart/130x130/2187175.jpg</medium>
         
     | 
| 
      
 26 
     | 
    
         
            +
            			<small>http://panther1.last.fm/coverart/50x50/2187175.jpg</small>
         
     | 
| 
      
 27 
     | 
    
         
            +
            		</image>
         
     | 
| 
      
 28 
     | 
    
         
            +
            	</album>
         
     | 
| 
      
 29 
     | 
    
         
            +
            	<album>
         
     | 
| 
      
 30 
     | 
    
         
            +
            		<artist mbid="6e0ae159-8449-4262-bba5-18ec87fa529f">Rascal Flatts</artist>
         
     | 
| 
      
 31 
     | 
    
         
            +
            		<name>Feels Like Today</name>
         
     | 
| 
      
 32 
     | 
    
         
            +
            		<mbid>47826aa0-951c-4266-ab59-412139a088e3</mbid>
         
     | 
| 
      
 33 
     | 
    
         
            +
            		<playcount>230</playcount>
         
     | 
| 
      
 34 
     | 
    
         
            +
            		<rank>3</rank>
         
     | 
| 
      
 35 
     | 
    
         
            +
            		<url>http://www.last.fm/music/Rascal+Flatts/Feels+Like+Today</url>
         
     | 
| 
      
 36 
     | 
    
         
            +
            		<image>
         
     | 
| 
      
 37 
     | 
    
         
            +
            			<large>http://images.amazon.com/images/P/B0002VL0Z6.01.MZZZZZZZ.jpg</large>
         
     | 
| 
      
 38 
     | 
    
         
            +
            			<medium>http://images.amazon.com/images/P/B0002VL0Z6.01.MZZZZZZZ.jpg</medium>
         
     | 
| 
      
 39 
     | 
    
         
            +
            			<small>http://images.amazon.com/images/P/B0002VL0Z6.01.MZZZZZZZ.jpg</small>
         
     | 
| 
      
 40 
     | 
    
         
            +
            		</image>
         
     | 
| 
      
 41 
     | 
    
         
            +
            	</album>
         
     | 
| 
      
 42 
     | 
    
         
            +
            </topalbums>
         
     | 
| 
         @@ -0,0 +1,30 @@ 
     | 
|
| 
      
 1 
     | 
    
         
            +
            <?xml version="1.0" encoding="UTF-8"?>
         
     | 
| 
      
 2 
     | 
    
         
            +
            <topartists user="jnunemaker">
         
     | 
| 
      
 3 
     | 
    
         
            +
            	<artist>
         
     | 
| 
      
 4 
     | 
    
         
            +
            		<name>Dixie Chicks</name>
         
     | 
| 
      
 5 
     | 
    
         
            +
            		<mbid>3248ed2d-bada-41b5-a7b6-ac88faa1f1ac</mbid>
         
     | 
| 
      
 6 
     | 
    
         
            +
            		<playcount>592</playcount>
         
     | 
| 
      
 7 
     | 
    
         
            +
            		<rank>1</rank>
         
     | 
| 
      
 8 
     | 
    
         
            +
            		<url>http://www.last.fm/music/Dixie+Chicks</url>
         
     | 
| 
      
 9 
     | 
    
         
            +
            		<thumbnail>http://static3.last.fm/storable/image/182497/small.jpg</thumbnail>
         
     | 
| 
      
 10 
     | 
    
         
            +
            		<image>http://panther1.last.fm/proposedimages/sidebar/6/4037/512759.jpg</image>
         
     | 
| 
      
 11 
     | 
    
         
            +
            	</artist>
         
     | 
| 
      
 12 
     | 
    
         
            +
            	<artist>
         
     | 
| 
      
 13 
     | 
    
         
            +
            		<name>Rascal Flatts</name>
         
     | 
| 
      
 14 
     | 
    
         
            +
            		<mbid>6e0ae159-8449-4262-bba5-18ec87fa529f</mbid>
         
     | 
| 
      
 15 
     | 
    
         
            +
            		<playcount>526</playcount>
         
     | 
| 
      
 16 
     | 
    
         
            +
            		<rank>2</rank>
         
     | 
| 
      
 17 
     | 
    
         
            +
            		<url>http://www.last.fm/music/Rascal+Flatts</url>
         
     | 
| 
      
 18 
     | 
    
         
            +
            		<thumbnail>http://static3.last.fm/storable/image/182272/small.jpg</thumbnail>
         
     | 
| 
      
 19 
     | 
    
         
            +
            		<image>http://panther1.last.fm/proposedimages/sidebar/6/1001868/485963.jpg</image>
         
     | 
| 
      
 20 
     | 
    
         
            +
            	</artist>
         
     | 
| 
      
 21 
     | 
    
         
            +
            	<artist>
         
     | 
| 
      
 22 
     | 
    
         
            +
            		<name>Carrie Underwood</name>
         
     | 
| 
      
 23 
     | 
    
         
            +
            		<mbid>70f0e309-5418-49b6-a130-666e2f76eecd</mbid>
         
     | 
| 
      
 24 
     | 
    
         
            +
            		<playcount>423</playcount>
         
     | 
| 
      
 25 
     | 
    
         
            +
            		<rank>3</rank>
         
     | 
| 
      
 26 
     | 
    
         
            +
            		<url>http://www.last.fm/music/Carrie+Underwood</url>
         
     | 
| 
      
 27 
     | 
    
         
            +
            		<thumbnail>http://static3.last.fm/storable/image/181206/small.jpg</thumbnail>
         
     | 
| 
      
 28 
     | 
    
         
            +
            		<image>http://panther1.last.fm/proposedimages/sidebar/6/10118348/537254.jpg</image>
         
     | 
| 
      
 29 
     | 
    
         
            +
            	</artist>
         
     | 
| 
      
 30 
     | 
    
         
            +
            </topartists>
         
     | 
| 
         @@ -0,0 +1,18 @@ 
     | 
|
| 
      
 1 
     | 
    
         
            +
            <?xml version="1.0" encoding="UTF-8"?>
         
     | 
| 
      
 2 
     | 
    
         
            +
            <toptags user="jnunemaker">
         
     | 
| 
      
 3 
     | 
    
         
            +
            	<tag>
         
     | 
| 
      
 4 
     | 
    
         
            +
            		<name>country</name>
         
     | 
| 
      
 5 
     | 
    
         
            +
            		<count>6</count>
         
     | 
| 
      
 6 
     | 
    
         
            +
            		<url>http://www.last.fm/tag/country</url>
         
     | 
| 
      
 7 
     | 
    
         
            +
            	</tag>
         
     | 
| 
      
 8 
     | 
    
         
            +
            	<tag>
         
     | 
| 
      
 9 
     | 
    
         
            +
            		<name>female</name>
         
     | 
| 
      
 10 
     | 
    
         
            +
            		<count>3</count>
         
     | 
| 
      
 11 
     | 
    
         
            +
            		<url>http://www.last.fm/tag/female</url>
         
     | 
| 
      
 12 
     | 
    
         
            +
            	</tag>
         
     | 
| 
      
 13 
     | 
    
         
            +
            	<tag>
         
     | 
| 
      
 14 
     | 
    
         
            +
            		<name>pop</name>
         
     | 
| 
      
 15 
     | 
    
         
            +
            		<count>2</count>
         
     | 
| 
      
 16 
     | 
    
         
            +
            		<url>http://www.last.fm/tag/pop</url>
         
     | 
| 
      
 17 
     | 
    
         
            +
            	</tag>
         
     | 
| 
      
 18 
     | 
    
         
            +
            </toptags>
         
     | 
| 
         @@ -0,0 +1,27 @@ 
     | 
|
| 
      
 1 
     | 
    
         
            +
            <?xml version="1.0" encoding="UTF-8"?>
         
     | 
| 
      
 2 
     | 
    
         
            +
            <toptracks user="jnunemaker">
         
     | 
| 
      
 3 
     | 
    
         
            +
            	<track>
         
     | 
| 
      
 4 
     | 
    
         
            +
            		<artist mbid="9092d8e1-9b38-4372-a96d-000b8561a8bc">LeAnn Rimes</artist>
         
     | 
| 
      
 5 
     | 
    
         
            +
            		<name>Probably Wouldn't Be This Way</name>
         
     | 
| 
      
 6 
     | 
    
         
            +
            		<mbid></mbid>
         
     | 
| 
      
 7 
     | 
    
         
            +
            		<playcount>61</playcount>
         
     | 
| 
      
 8 
     | 
    
         
            +
            		<rank>1</rank>
         
     | 
| 
      
 9 
     | 
    
         
            +
            		<url>http://www.last.fm/music/LeAnn+Rimes/_/Probably+Wouldn%27t+Be+This+Way</url>
         
     | 
| 
      
 10 
     | 
    
         
            +
            	</track>
         
     | 
| 
      
 11 
     | 
    
         
            +
            	<track>
         
     | 
| 
      
 12 
     | 
    
         
            +
            		<artist mbid="3248ed2d-bada-41b5-a7b6-ac88faa1f1ac">Dixie Chicks</artist>
         
     | 
| 
      
 13 
     | 
    
         
            +
            		<name>Not Ready To Make Nice</name>
         
     | 
| 
      
 14 
     | 
    
         
            +
            		<mbid></mbid>
         
     | 
| 
      
 15 
     | 
    
         
            +
            		<playcount>55</playcount>
         
     | 
| 
      
 16 
     | 
    
         
            +
            		<rank>2</rank>
         
     | 
| 
      
 17 
     | 
    
         
            +
            		<url>http://www.last.fm/music/Dixie+Chicks/_/Not+Ready+To+Make+Nice</url>
         
     | 
| 
      
 18 
     | 
    
         
            +
            	</track>
         
     | 
| 
      
 19 
     | 
    
         
            +
            	<track>
         
     | 
| 
      
 20 
     | 
    
         
            +
            		<artist mbid="3248ed2d-bada-41b5-a7b6-ac88faa1f1ac">Dixie Chicks</artist>
         
     | 
| 
      
 21 
     | 
    
         
            +
            		<name>Easy Silence</name>
         
     | 
| 
      
 22 
     | 
    
         
            +
            		<mbid></mbid>
         
     | 
| 
      
 23 
     | 
    
         
            +
            		<playcount>45</playcount>
         
     | 
| 
      
 24 
     | 
    
         
            +
            		<rank>3</rank>
         
     | 
| 
      
 25 
     | 
    
         
            +
            		<url>http://www.last.fm/music/Dixie+Chicks/_/Easy+Silence</url>
         
     | 
| 
      
 26 
     | 
    
         
            +
            	</track>
         
     | 
| 
      
 27 
     | 
    
         
            +
            </toptracks>
         
     | 
| 
         @@ -0,0 +1,35 @@ 
     | 
|
| 
      
 1 
     | 
    
         
            +
            <?xml version="1.0" encoding="UTF-8"?>
         
     | 
| 
      
 2 
     | 
    
         
            +
            <weeklyalbumchart user="jnunemaker" from="1177848000" to="1178452800">
         
     | 
| 
      
 3 
     | 
    
         
            +
            	<album>
         
     | 
| 
      
 4 
     | 
    
         
            +
            		<artist mbid="3ec17e85-9284-4f4c-8831-4e56c2354cdb">Reba McEntire</artist>
         
     | 
| 
      
 5 
     | 
    
         
            +
            		<name>Reba #1's</name>
         
     | 
| 
      
 6 
     | 
    
         
            +
            		<mbid></mbid>
         
     | 
| 
      
 7 
     | 
    
         
            +
            		<chartposition>1</chartposition>
         
     | 
| 
      
 8 
     | 
    
         
            +
            		<playcount>13</playcount>
         
     | 
| 
      
 9 
     | 
    
         
            +
            		<url>http://www.last.fm/music/Reba+McEntire/Reba%2B%25231%2527s</url>
         
     | 
| 
      
 10 
     | 
    
         
            +
            	</album>
         
     | 
| 
      
 11 
     | 
    
         
            +
            	<album>
         
     | 
| 
      
 12 
     | 
    
         
            +
            		<artist mbid="6e0ae159-8449-4262-bba5-18ec87fa529f">Rascal Flatts</artist>
         
     | 
| 
      
 13 
     | 
    
         
            +
            		<name>Me and My Gang</name>
         
     | 
| 
      
 14 
     | 
    
         
            +
            		<mbid></mbid>
         
     | 
| 
      
 15 
     | 
    
         
            +
            		<chartposition>1</chartposition>
         
     | 
| 
      
 16 
     | 
    
         
            +
            		<playcount>13</playcount>
         
     | 
| 
      
 17 
     | 
    
         
            +
            		<url>http://www.last.fm/music/Rascal+Flatts/Me+and+My+Gang</url>
         
     | 
| 
      
 18 
     | 
    
         
            +
            	</album>
         
     | 
| 
      
 19 
     | 
    
         
            +
            	<album>
         
     | 
| 
      
 20 
     | 
    
         
            +
            		<artist mbid="9092d8e1-9b38-4372-a96d-000b8561a8bc">LeAnn Rimes</artist>
         
     | 
| 
      
 21 
     | 
    
         
            +
            		<name>This Woman</name>
         
     | 
| 
      
 22 
     | 
    
         
            +
            		<mbid>080a4038-5156-460a-8dd5-daaa7d16b6a6</mbid>
         
     | 
| 
      
 23 
     | 
    
         
            +
            		<chartposition>3</chartposition>
         
     | 
| 
      
 24 
     | 
    
         
            +
            		<playcount>12</playcount>
         
     | 
| 
      
 25 
     | 
    
         
            +
            		<url>http://www.last.fm/music/LeAnn+Rimes/This+Woman</url>
         
     | 
| 
      
 26 
     | 
    
         
            +
            	</album>
         
     | 
| 
      
 27 
     | 
    
         
            +
            	<album>
         
     | 
| 
      
 28 
     | 
    
         
            +
            		<artist mbid="166c939c-a97e-44b9-b405-23d49a72df4e">SHeDaisy</artist>
         
     | 
| 
      
 29 
     | 
    
         
            +
            		<name>Fortuneteller's Melody</name>
         
     | 
| 
      
 30 
     | 
    
         
            +
            		<mbid></mbid>
         
     | 
| 
      
 31 
     | 
    
         
            +
            		<chartposition>3</chartposition>
         
     | 
| 
      
 32 
     | 
    
         
            +
            		<playcount>12</playcount>
         
     | 
| 
      
 33 
     | 
    
         
            +
            		<url>http://www.last.fm/music/SHeDaisy/Fortuneteller%27s+Melody</url>
         
     | 
| 
      
 34 
     | 
    
         
            +
            	</album>
         
     | 
| 
      
 35 
     | 
    
         
            +
            </weeklyalbumchart>
         
     | 
| 
         @@ -0,0 +1,35 @@ 
     | 
|
| 
      
 1 
     | 
    
         
            +
            <?xml version="1.0" encoding="UTF-8"?>
         
     | 
| 
      
 2 
     | 
    
         
            +
            <weeklyalbumchart user="jnunemaker" from="1138536002" to="1139140802">
         
     | 
| 
      
 3 
     | 
    
         
            +
            	<album>
         
     | 
| 
      
 4 
     | 
    
         
            +
            		<artist mbid="abae8575-ec8a-4736-abc3-1ad5093a68aa">Jewel</artist>
         
     | 
| 
      
 5 
     | 
    
         
            +
            		<name>0304</name>
         
     | 
| 
      
 6 
     | 
    
         
            +
            		<mbid>52b3f067-9d82-488c-9747-6d608d9b9486</mbid>
         
     | 
| 
      
 7 
     | 
    
         
            +
            		<chartposition>1</chartposition>
         
     | 
| 
      
 8 
     | 
    
         
            +
            		<playcount>13</playcount>
         
     | 
| 
      
 9 
     | 
    
         
            +
            		<url>http://www.last.fm/music/Jewel/0304</url>
         
     | 
| 
      
 10 
     | 
    
         
            +
            	</album>
         
     | 
| 
      
 11 
     | 
    
         
            +
            	<album>
         
     | 
| 
      
 12 
     | 
    
         
            +
            		<artist mbid="4b179fe2-dfa5-40b1-b6db-b56dbc3b5f09">Jenny Lewis with The Watson Twins</artist>
         
     | 
| 
      
 13 
     | 
    
         
            +
            		<name>Rabbit Fur Coat</name>
         
     | 
| 
      
 14 
     | 
    
         
            +
            		<mbid>97d5185a-0762-41b4-b7d4-59d72fcf0afe</mbid>
         
     | 
| 
      
 15 
     | 
    
         
            +
            		<chartposition>2</chartposition>
         
     | 
| 
      
 16 
     | 
    
         
            +
            		<playcount>9</playcount>
         
     | 
| 
      
 17 
     | 
    
         
            +
            		<url>http://www.last.fm/music/Jenny+Lewis+with+The+Watson+Twins/Rabbit+Fur+Coat</url>
         
     | 
| 
      
 18 
     | 
    
         
            +
            	</album>
         
     | 
| 
      
 19 
     | 
    
         
            +
            	<album>
         
     | 
| 
      
 20 
     | 
    
         
            +
            		<artist mbid="b7ffd2af-418f-4be2-bdd1-22f8b48613da">Nine Inch Nails</artist>
         
     | 
| 
      
 21 
     | 
    
         
            +
            		<name>The Downward Spiral</name>
         
     | 
| 
      
 22 
     | 
    
         
            +
            		<mbid>602af258-e647-48e2-9660-bd0c5c8f92bf</mbid>
         
     | 
| 
      
 23 
     | 
    
         
            +
            		<chartposition>3</chartposition>
         
     | 
| 
      
 24 
     | 
    
         
            +
            		<playcount>8</playcount>
         
     | 
| 
      
 25 
     | 
    
         
            +
            		<url>http://www.last.fm/music/Nine+Inch+Nails/The+Downward+Spiral</url>
         
     | 
| 
      
 26 
     | 
    
         
            +
            	</album>
         
     | 
| 
      
 27 
     | 
    
         
            +
            	<album>
         
     | 
| 
      
 28 
     | 
    
         
            +
            		<artist mbid="8b477559-946e-4ef2-9fe1-446cff8fdd79">Natasha Bedingfield</artist>
         
     | 
| 
      
 29 
     | 
    
         
            +
            		<name>Unwritten</name>
         
     | 
| 
      
 30 
     | 
    
         
            +
            		<mbid>88801c96-3c23-4a93-8ec5-4c0c3b43252e</mbid>
         
     | 
| 
      
 31 
     | 
    
         
            +
            		<chartposition>3</chartposition>
         
     | 
| 
      
 32 
     | 
    
         
            +
            		<playcount>8</playcount>
         
     | 
| 
      
 33 
     | 
    
         
            +
            		<url>http://www.last.fm/music/Natasha+Bedingfield/Unwritten</url>
         
     | 
| 
      
 34 
     | 
    
         
            +
            	</album>
         
     | 
| 
      
 35 
     | 
    
         
            +
            </weeklyalbumchart>
         
     | 
| 
         @@ -0,0 +1,38 @@ 
     | 
|
| 
      
 1 
     | 
    
         
            +
            <?xml version="1.0" encoding="UTF-8"?>
         
     | 
| 
      
 2 
     | 
    
         
            +
            <weeklyartistchart user="jnunemaker" from="1177848000" to="1178452800">
         
     | 
| 
      
 3 
     | 
    
         
            +
            	<artist>
         
     | 
| 
      
 4 
     | 
    
         
            +
            		<name>Rascal Flatts</name>
         
     | 
| 
      
 5 
     | 
    
         
            +
            		<mbid>6e0ae159-8449-4262-bba5-18ec87fa529f</mbid>
         
     | 
| 
      
 6 
     | 
    
         
            +
            		<chartposition>1</chartposition>
         
     | 
| 
      
 7 
     | 
    
         
            +
            		<playcount>25</playcount>
         
     | 
| 
      
 8 
     | 
    
         
            +
            		<url>http://www.last.fm/music/Rascal+Flatts</url>
         
     | 
| 
      
 9 
     | 
    
         
            +
            	</artist>
         
     | 
| 
      
 10 
     | 
    
         
            +
            	<artist>
         
     | 
| 
      
 11 
     | 
    
         
            +
            		<name>Reba McEntire</name>
         
     | 
| 
      
 12 
     | 
    
         
            +
            		<mbid>3ec17e85-9284-4f4c-8831-4e56c2354cdb</mbid>
         
     | 
| 
      
 13 
     | 
    
         
            +
            		<chartposition>2</chartposition>
         
     | 
| 
      
 14 
     | 
    
         
            +
            		<playcount>15</playcount>
         
     | 
| 
      
 15 
     | 
    
         
            +
            		<url>http://www.last.fm/music/Reba+McEntire</url>
         
     | 
| 
      
 16 
     | 
    
         
            +
            	</artist>
         
     | 
| 
      
 17 
     | 
    
         
            +
            	<artist>
         
     | 
| 
      
 18 
     | 
    
         
            +
            		<name>LeAnn Rimes</name>
         
     | 
| 
      
 19 
     | 
    
         
            +
            		<mbid>9092d8e1-9b38-4372-a96d-000b8561a8bc</mbid>
         
     | 
| 
      
 20 
     | 
    
         
            +
            		<chartposition>3</chartposition>
         
     | 
| 
      
 21 
     | 
    
         
            +
            		<playcount>14</playcount>
         
     | 
| 
      
 22 
     | 
    
         
            +
            		<url>http://www.last.fm/music/LeAnn+Rimes</url>
         
     | 
| 
      
 23 
     | 
    
         
            +
            	</artist>
         
     | 
| 
      
 24 
     | 
    
         
            +
            	<artist>
         
     | 
| 
      
 25 
     | 
    
         
            +
            		<name>SHeDaisy</name>
         
     | 
| 
      
 26 
     | 
    
         
            +
            		<mbid>166c939c-a97e-44b9-b405-23d49a72df4e</mbid>
         
     | 
| 
      
 27 
     | 
    
         
            +
            		<chartposition>4</chartposition>
         
     | 
| 
      
 28 
     | 
    
         
            +
            		<playcount>13</playcount>
         
     | 
| 
      
 29 
     | 
    
         
            +
            		<url>http://www.last.fm/music/SHeDaisy</url>
         
     | 
| 
      
 30 
     | 
    
         
            +
            	</artist>
         
     | 
| 
      
 31 
     | 
    
         
            +
            	<artist>
         
     | 
| 
      
 32 
     | 
    
         
            +
            		<name>Sawyer Brown</name>
         
     | 
| 
      
 33 
     | 
    
         
            +
            		<mbid>1b69a7bc-7563-4aaf-a859-8b6050a7a0f2</mbid>
         
     | 
| 
      
 34 
     | 
    
         
            +
            		<chartposition>5</chartposition>
         
     | 
| 
      
 35 
     | 
    
         
            +
            		<playcount>12</playcount>
         
     | 
| 
      
 36 
     | 
    
         
            +
            		<url>http://www.last.fm/music/Sawyer+Brown</url>
         
     | 
| 
      
 37 
     | 
    
         
            +
            	</artist>
         
     | 
| 
      
 38 
     | 
    
         
            +
            </weeklyartistchart>
         
     | 
| 
         @@ -0,0 +1,59 @@ 
     | 
|
| 
      
 1 
     | 
    
         
            +
            <?xml version="1.0" encoding="UTF-8"?>
         
     | 
| 
      
 2 
     | 
    
         
            +
            <weeklyartistchart user="jnunemaker" from="1138536002" to="1139140802">
         
     | 
| 
      
 3 
     | 
    
         
            +
            	<artist>
         
     | 
| 
      
 4 
     | 
    
         
            +
            		<name>Jenny Lewis with The Watson Twins</name>
         
     | 
| 
      
 5 
     | 
    
         
            +
            		<mbid>4b179fe2-dfa5-40b1-b6db-b56dbc3b5f09</mbid>
         
     | 
| 
      
 6 
     | 
    
         
            +
            		<chartposition>1</chartposition>
         
     | 
| 
      
 7 
     | 
    
         
            +
            		<playcount>48</playcount>
         
     | 
| 
      
 8 
     | 
    
         
            +
            		<url>http://www.last.fm/music/Jenny+Lewis+with+The+Watson+Twins</url>
         
     | 
| 
      
 9 
     | 
    
         
            +
            	</artist>
         
     | 
| 
      
 10 
     | 
    
         
            +
            	<artist>
         
     | 
| 
      
 11 
     | 
    
         
            +
            		<name>Johnny Cash</name>
         
     | 
| 
      
 12 
     | 
    
         
            +
            		<mbid>d43d12a1-2dc9-4257-a2fd-0a3bb1081b86</mbid>
         
     | 
| 
      
 13 
     | 
    
         
            +
            		<chartposition>2</chartposition>
         
     | 
| 
      
 14 
     | 
    
         
            +
            		<playcount>25</playcount>
         
     | 
| 
      
 15 
     | 
    
         
            +
            		<url>http://www.last.fm/music/Johnny+Cash</url>
         
     | 
| 
      
 16 
     | 
    
         
            +
            	</artist>
         
     | 
| 
      
 17 
     | 
    
         
            +
            	<artist>
         
     | 
| 
      
 18 
     | 
    
         
            +
            		<name>Jewel</name>
         
     | 
| 
      
 19 
     | 
    
         
            +
            		<mbid>abae8575-ec8a-4736-abc3-1ad5093a68aa</mbid>
         
     | 
| 
      
 20 
     | 
    
         
            +
            		<chartposition>3</chartposition>
         
     | 
| 
      
 21 
     | 
    
         
            +
            		<playcount>14</playcount>
         
     | 
| 
      
 22 
     | 
    
         
            +
            		<url>http://www.last.fm/music/Jewel</url>
         
     | 
| 
      
 23 
     | 
    
         
            +
            	</artist>
         
     | 
| 
      
 24 
     | 
    
         
            +
            	<artist>
         
     | 
| 
      
 25 
     | 
    
         
            +
            		<name>Nine Inch Nails</name>
         
     | 
| 
      
 26 
     | 
    
         
            +
            		<mbid>b7ffd2af-418f-4be2-bdd1-22f8b48613da</mbid>
         
     | 
| 
      
 27 
     | 
    
         
            +
            		<chartposition>4</chartposition>
         
     | 
| 
      
 28 
     | 
    
         
            +
            		<playcount>8</playcount>
         
     | 
| 
      
 29 
     | 
    
         
            +
            		<url>http://www.last.fm/music/Nine+Inch+Nails</url>
         
     | 
| 
      
 30 
     | 
    
         
            +
            	</artist>
         
     | 
| 
      
 31 
     | 
    
         
            +
            	<artist>
         
     | 
| 
      
 32 
     | 
    
         
            +
            		<name>Natasha Bedingfield</name>
         
     | 
| 
      
 33 
     | 
    
         
            +
            		<mbid>8b477559-946e-4ef2-9fe1-446cff8fdd79</mbid>
         
     | 
| 
      
 34 
     | 
    
         
            +
            		<chartposition>4</chartposition>
         
     | 
| 
      
 35 
     | 
    
         
            +
            		<playcount>8</playcount>
         
     | 
| 
      
 36 
     | 
    
         
            +
            		<url>http://www.last.fm/music/Natasha+Bedingfield</url>
         
     | 
| 
      
 37 
     | 
    
         
            +
            	</artist>
         
     | 
| 
      
 38 
     | 
    
         
            +
            	<artist>
         
     | 
| 
      
 39 
     | 
    
         
            +
            		<name>Martina McBride</name>
         
     | 
| 
      
 40 
     | 
    
         
            +
            		<mbid>b0a55bd8-60c7-45c1-b78e-f20e4c8adba1</mbid>
         
     | 
| 
      
 41 
     | 
    
         
            +
            		<chartposition>6</chartposition>
         
     | 
| 
      
 42 
     | 
    
         
            +
            		<playcount>7</playcount>
         
     | 
| 
      
 43 
     | 
    
         
            +
            		<url>http://www.last.fm/music/Martina+McBride</url>
         
     | 
| 
      
 44 
     | 
    
         
            +
            	</artist>
         
     | 
| 
      
 45 
     | 
    
         
            +
            	<artist>
         
     | 
| 
      
 46 
     | 
    
         
            +
            		<name>Kanye West</name>
         
     | 
| 
      
 47 
     | 
    
         
            +
            		<mbid>164f0d73-1234-4e2c-8743-d77bf2191051</mbid>
         
     | 
| 
      
 48 
     | 
    
         
            +
            		<chartposition>7</chartposition>
         
     | 
| 
      
 49 
     | 
    
         
            +
            		<playcount>6</playcount>
         
     | 
| 
      
 50 
     | 
    
         
            +
            		<url>http://www.last.fm/music/Kanye+West</url>
         
     | 
| 
      
 51 
     | 
    
         
            +
            	</artist>
         
     | 
| 
      
 52 
     | 
    
         
            +
            	<artist>
         
     | 
| 
      
 53 
     | 
    
         
            +
            		<name>The Pussycat Dolls</name>
         
     | 
| 
      
 54 
     | 
    
         
            +
            		<mbid>1fda852b-92e9-4562-82fa-c52820a77b23</mbid>
         
     | 
| 
      
 55 
     | 
    
         
            +
            		<chartposition>8</chartposition>
         
     | 
| 
      
 56 
     | 
    
         
            +
            		<playcount>5</playcount>
         
     | 
| 
      
 57 
     | 
    
         
            +
            		<url>http://www.last.fm/music/The+Pussycat+Dolls</url>
         
     | 
| 
      
 58 
     | 
    
         
            +
            	</artist>
         
     | 
| 
      
 59 
     | 
    
         
            +
            </weeklyartistchart>
         
     | 
| 
         @@ -0,0 +1,74 @@ 
     | 
|
| 
      
 1 
     | 
    
         
            +
            <?xml version="1.0" encoding="UTF-8"?>
         
     | 
| 
      
 2 
     | 
    
         
            +
            <weeklychartlist user="jnunemaker">
         
     | 
| 
      
 3 
     | 
    
         
            +
                <chart from="1134302403" to="1134907203"/>
         
     | 
| 
      
 4 
     | 
    
         
            +
                <chart from="1134907202" to="1135512002"/>
         
     | 
| 
      
 5 
     | 
    
         
            +
                <chart from="1135512002" to="1136116802"/>
         
     | 
| 
      
 6 
     | 
    
         
            +
                <chart from="1136116801" to="1136721601"/>
         
     | 
| 
      
 7 
     | 
    
         
            +
                <chart from="1136721601" to="1137326401"/>
         
     | 
| 
      
 8 
     | 
    
         
            +
                <chart from="1137326402" to="1137931202"/>
         
     | 
| 
      
 9 
     | 
    
         
            +
                <chart from="1137931202" to="1138536002"/>
         
     | 
| 
      
 10 
     | 
    
         
            +
                <chart from="1138536002" to="1139140802"/>
         
     | 
| 
      
 11 
     | 
    
         
            +
                <chart from="1139140801" to="1139745601"/>
         
     | 
| 
      
 12 
     | 
    
         
            +
                <chart from="1139745601" to="1140350401"/>
         
     | 
| 
      
 13 
     | 
    
         
            +
                <chart from="1140350401" to="1140955201"/>
         
     | 
| 
      
 14 
     | 
    
         
            +
                <chart from="1140955203" to="1141560003"/>
         
     | 
| 
      
 15 
     | 
    
         
            +
                <chart from="1141560002" to="1142164802"/>
         
     | 
| 
      
 16 
     | 
    
         
            +
                <chart from="1142164802" to="1142769602"/>
         
     | 
| 
      
 17 
     | 
    
         
            +
                <chart from="1142769602" to="1143374402"/>
         
     | 
| 
      
 18 
     | 
    
         
            +
                <chart from="1143374402" to="1143979202"/>
         
     | 
| 
      
 19 
     | 
    
         
            +
                <chart from="1143979202" to="1144584000"/>
         
     | 
| 
      
 20 
     | 
    
         
            +
                <chart from="1144584000" to="1145188800"/>
         
     | 
| 
      
 21 
     | 
    
         
            +
                <chart from="1145188800" to="1145793600"/>
         
     | 
| 
      
 22 
     | 
    
         
            +
                <chart from="1145793600" to="1146398400"/>
         
     | 
| 
      
 23 
     | 
    
         
            +
                <chart from="1146398400" to="1147003200"/>
         
     | 
| 
      
 24 
     | 
    
         
            +
                <chart from="1147003200" to="1147608000"/>
         
     | 
| 
      
 25 
     | 
    
         
            +
                <chart from="1147608000" to="1148212800"/>
         
     | 
| 
      
 26 
     | 
    
         
            +
                <chart from="1148212800" to="1148817600"/>
         
     | 
| 
      
 27 
     | 
    
         
            +
                <chart from="1148817600" to="1149422400"/>
         
     | 
| 
      
 28 
     | 
    
         
            +
                <chart from="1149422400" to="1150027200"/>
         
     | 
| 
      
 29 
     | 
    
         
            +
                <chart from="1150027200" to="1150632000"/>
         
     | 
| 
      
 30 
     | 
    
         
            +
                <chart from="1150632000" to="1151236800"/>
         
     | 
| 
      
 31 
     | 
    
         
            +
                <chart from="1151236800" to="1151841600"/>
         
     | 
| 
      
 32 
     | 
    
         
            +
                <chart from="1151841600" to="1152446400"/>
         
     | 
| 
      
 33 
     | 
    
         
            +
                <chart from="1152446400" to="1153051200"/>
         
     | 
| 
      
 34 
     | 
    
         
            +
                <chart from="1153656000" to="1154260800"/>
         
     | 
| 
      
 35 
     | 
    
         
            +
                <chart from="1154260800" to="1154865600"/>
         
     | 
| 
      
 36 
     | 
    
         
            +
                <chart from="1154865600" to="1155470400"/>
         
     | 
| 
      
 37 
     | 
    
         
            +
                <chart from="1155470400" to="1156075200"/>
         
     | 
| 
      
 38 
     | 
    
         
            +
                <chart from="1156075200" to="1156680000"/>
         
     | 
| 
      
 39 
     | 
    
         
            +
                <chart from="1156680000" to="1157284800"/>
         
     | 
| 
      
 40 
     | 
    
         
            +
                <chart from="1157284800" to="1157889600"/>
         
     | 
| 
      
 41 
     | 
    
         
            +
                <chart from="1157889600" to="1158494400"/>
         
     | 
| 
      
 42 
     | 
    
         
            +
                <chart from="1158494400" to="1159099200"/>
         
     | 
| 
      
 43 
     | 
    
         
            +
                <chart from="1159099200" to="1159704000"/>
         
     | 
| 
      
 44 
     | 
    
         
            +
                <chart from="1159704000" to="1160308800"/>
         
     | 
| 
      
 45 
     | 
    
         
            +
                <chart from="1160308800" to="1160913600"/>
         
     | 
| 
      
 46 
     | 
    
         
            +
                <chart from="1160913600" to="1161518400"/>
         
     | 
| 
      
 47 
     | 
    
         
            +
                <chart from="1162123200" to="1162728000"/>
         
     | 
| 
      
 48 
     | 
    
         
            +
                <chart from="1162728000" to="1163332800"/>
         
     | 
| 
      
 49 
     | 
    
         
            +
                <chart from="1163332800" to="1163937600"/>
         
     | 
| 
      
 50 
     | 
    
         
            +
                <chart from="1163937600" to="1164542400"/>
         
     | 
| 
      
 51 
     | 
    
         
            +
                <chart from="1164542400" to="1165147200"/>
         
     | 
| 
      
 52 
     | 
    
         
            +
                <chart from="1165147200" to="1165752000"/>
         
     | 
| 
      
 53 
     | 
    
         
            +
                <chart from="1165752000" to="1166356800"/>
         
     | 
| 
      
 54 
     | 
    
         
            +
                <chart from="1166356800" to="1166961600"/>
         
     | 
| 
      
 55 
     | 
    
         
            +
                <chart from="1166961600" to="1167566400"/>
         
     | 
| 
      
 56 
     | 
    
         
            +
                <chart from="1167566400" to="1168171200"/>
         
     | 
| 
      
 57 
     | 
    
         
            +
                <chart from="1168171200" to="1168776000"/>
         
     | 
| 
      
 58 
     | 
    
         
            +
                <chart from="1168776000" to="1169380800"/>
         
     | 
| 
      
 59 
     | 
    
         
            +
                <chart from="1169380800" to="1169985600"/>
         
     | 
| 
      
 60 
     | 
    
         
            +
                <chart from="1169985600" to="1170590400"/>
         
     | 
| 
      
 61 
     | 
    
         
            +
                <chart from="1170590400" to="1171195200"/>
         
     | 
| 
      
 62 
     | 
    
         
            +
                <chart from="1171195200" to="1171800000"/>
         
     | 
| 
      
 63 
     | 
    
         
            +
                <chart from="1171800000" to="1172404800"/>
         
     | 
| 
      
 64 
     | 
    
         
            +
                <chart from="1172404800" to="1173009600"/>
         
     | 
| 
      
 65 
     | 
    
         
            +
                <chart from="1173009600" to="1173614400"/>
         
     | 
| 
      
 66 
     | 
    
         
            +
                <chart from="1173614400" to="1174219200"/>
         
     | 
| 
      
 67 
     | 
    
         
            +
                <chart from="1174219200" to="1174824000"/>
         
     | 
| 
      
 68 
     | 
    
         
            +
                <chart from="1174824000" to="1175428800"/>
         
     | 
| 
      
 69 
     | 
    
         
            +
                <chart from="1175428800" to="1176033600"/>
         
     | 
| 
      
 70 
     | 
    
         
            +
                <chart from="1176033600" to="1176638400"/>
         
     | 
| 
      
 71 
     | 
    
         
            +
                <chart from="1176638400" to="1177243200"/>
         
     | 
| 
      
 72 
     | 
    
         
            +
                <chart from="1177243200" to="1177848000"/>
         
     | 
| 
      
 73 
     | 
    
         
            +
                <chart from="1177848000" to="1178452800"/>
         
     | 
| 
      
 74 
     | 
    
         
            +
            </weeklychartlist>
         
     | 
| 
         @@ -0,0 +1,35 @@ 
     | 
|
| 
      
 1 
     | 
    
         
            +
            <?xml version="1.0" encoding="UTF-8"?>
         
     | 
| 
      
 2 
     | 
    
         
            +
            <weeklytrackchart user="jnunemaker" from="1177848000" to="1178452800">
         
     | 
| 
      
 3 
     | 
    
         
            +
            	<track>
         
     | 
| 
      
 4 
     | 
    
         
            +
            		<artist mbid="302716e4-a702-4bbc-baac-591f8a8e20bc">Rebecca St. James</artist>
         
     | 
| 
      
 5 
     | 
    
         
            +
            		<name>Omega</name>
         
     | 
| 
      
 6 
     | 
    
         
            +
            		<mbid></mbid>
         
     | 
| 
      
 7 
     | 
    
         
            +
            		<chartposition>1</chartposition>
         
     | 
| 
      
 8 
     | 
    
         
            +
            		<playcount>2</playcount>
         
     | 
| 
      
 9 
     | 
    
         
            +
            		<url>http://www.last.fm/music/Rebecca+St.+James/_/Omega</url>
         
     | 
| 
      
 10 
     | 
    
         
            +
            	</track>
         
     | 
| 
      
 11 
     | 
    
         
            +
            	<track>
         
     | 
| 
      
 12 
     | 
    
         
            +
            		<artist mbid="0cd4810e-9f57-4003-bdfa-e188cd3ba818">Michael English</artist>
         
     | 
| 
      
 13 
     | 
    
         
            +
            		<name>In Christ Alone</name>
         
     | 
| 
      
 14 
     | 
    
         
            +
            		<mbid></mbid>
         
     | 
| 
      
 15 
     | 
    
         
            +
            		<chartposition>2</chartposition>
         
     | 
| 
      
 16 
     | 
    
         
            +
            		<playcount>1</playcount>
         
     | 
| 
      
 17 
     | 
    
         
            +
            		<url>http://www.last.fm/music/Michael+English/_/In+Christ+Alone</url>
         
     | 
| 
      
 18 
     | 
    
         
            +
            	</track>
         
     | 
| 
      
 19 
     | 
    
         
            +
            	<track>
         
     | 
| 
      
 20 
     | 
    
         
            +
            		<artist mbid="3ec17e85-9284-4f4c-8831-4e56c2354cdb">Reba McEntire</artist>
         
     | 
| 
      
 21 
     | 
    
         
            +
            		<name>How Was I to Know</name>
         
     | 
| 
      
 22 
     | 
    
         
            +
            		<mbid></mbid>
         
     | 
| 
      
 23 
     | 
    
         
            +
            		<chartposition>2</chartposition>
         
     | 
| 
      
 24 
     | 
    
         
            +
            		<playcount>1</playcount>
         
     | 
| 
      
 25 
     | 
    
         
            +
            		<url>http://www.last.fm/music/Reba+McEntire/_/How+Was+I+to+Know</url>
         
     | 
| 
      
 26 
     | 
    
         
            +
            	</track>
         
     | 
| 
      
 27 
     | 
    
         
            +
            	<track>
         
     | 
| 
      
 28 
     | 
    
         
            +
            		<artist mbid="faabb55d-3c9e-4c23-8779-732ac2ee2c0d">Shania Twain</artist>
         
     | 
| 
      
 29 
     | 
    
         
            +
            		<name>Don't Be Stupid (You Know I Love You) (remix)</name>
         
     | 
| 
      
 30 
     | 
    
         
            +
            		<mbid></mbid>
         
     | 
| 
      
 31 
     | 
    
         
            +
            		<chartposition>2</chartposition>
         
     | 
| 
      
 32 
     | 
    
         
            +
            		<playcount>1</playcount>
         
     | 
| 
      
 33 
     | 
    
         
            +
            		<url>http://www.last.fm/music/Shania+Twain/_/Don%27t+Be+Stupid+%28You+Know+I+Love+You%29+%28remix%29</url>
         
     | 
| 
      
 34 
     | 
    
         
            +
            	</track>
         
     | 
| 
      
 35 
     | 
    
         
            +
            </weeklytrackchart>
         
     |