From e6fb02fac67433d9599c101d0923a27112414766 Mon Sep 17 00:00:00 2001
From: "kay.one" <kay.one@gmail.com>
Date: Mon, 25 Apr 2011 10:48:16 -0700
Subject: [PATCH] Fixed IsNeeded() with tests

Added sample xml from all indexers to test project
Fixed a bug where parser would try to use file extension from a report title.
---
 NzbDrone.Core.Test/EpisodeProviderTest.cs     |   36 +-
 NzbDrone.Core.Test/Files/RSS/newzbin.xml      | 2943 +++++++++++++++++
 NzbDrone.Core.Test/Files/RSS/nzbmatrix.xml    |  512 +++
 NzbDrone.Core.Test/Files/RSS/nzbsrus.xml      |  275 ++
 NzbDrone.Core.Test/IndexerProviderTest.cs     |   55 +-
 NzbDrone.Core.Test/MockLib.cs                 |   15 +-
 NzbDrone.Core.Test/NzbDrone.Core.Test.csproj  |    9 +
 NzbDrone.Core.Test/ParserTest.cs              |    5 +-
 NzbDrone.Core.Test/RepoTest.cs                |    2 +-
 NzbDrone.Core.Test/SeriesProviderTest.cs      |  Bin 8192 -> 8234 bytes
 NzbDrone.Core.Test/log.config                 |    2 +-
 .../Instrumentation/SubsonicTarget.cs         |    9 +-
 NzbDrone.Core/Parser.cs                       |   14 +-
 NzbDrone.Core/Providers/EpisodeProvider.cs    |   35 +-
 .../Providers/Indexer/IndexerProviderBase.cs  |    6 +-
 NzbDrone.Core/Providers/SabProvider.cs        |    4 +
 NzbDrone.Core/Providers/SeasonProvider.cs     |    4 -
 NzbDrone.Core/Providers/SeriesProvider.cs     |    5 +-
 NzbDrone.Core/Repository/Series.cs            |    2 +-
 19 files changed, 3885 insertions(+), 48 deletions(-)
 create mode 100644 NzbDrone.Core.Test/Files/RSS/newzbin.xml
 create mode 100644 NzbDrone.Core.Test/Files/RSS/nzbmatrix.xml
 create mode 100644 NzbDrone.Core.Test/Files/RSS/nzbsrus.xml

diff --git a/NzbDrone.Core.Test/EpisodeProviderTest.cs b/NzbDrone.Core.Test/EpisodeProviderTest.cs
index 694d1dfa8..0bb642fef 100644
--- a/NzbDrone.Core.Test/EpisodeProviderTest.cs
+++ b/NzbDrone.Core.Test/EpisodeProviderTest.cs
@@ -59,13 +59,19 @@ namespace NzbDrone.Core.Test
         [Test]
 
         //Should Download
-        [Row(QualityTypes.TV, true, QualityTypes.TV, false, true)]
-        [Row(QualityTypes.DVD, true, QualityTypes.TV, true, true)]
-        [Row(QualityTypes.DVD, true, QualityTypes.TV, true, true)]
-        //Should Skip
+        [Row(QualityTypes.TV, true, QualityTypes.HDTV, false, true)]
+        [Row(QualityTypes.DVD, true, QualityTypes.Bluray720, true, true)]
+        [Row(QualityTypes.HDTV, false, QualityTypes.HDTV, true, true)]
+
+
+        [Row(QualityTypes.HDTV, false, QualityTypes.HDTV, false, false)]
         [Row(QualityTypes.Bluray720, true, QualityTypes.Bluray1080, false, false)]
-        [Row(QualityTypes.TV, true, QualityTypes.HDTV, true, false)]
-        public void Is_Needed_Tv_Dvd_BluRay_BluRay720_Is_Cutoff(QualityTypes reportQuality, Boolean isReportProper, QualityTypes fileQuality, Boolean isFileProper, bool excpected)
+        [Row(QualityTypes.HDTV, true, QualityTypes.Bluray720, true, false)]
+        [Row(QualityTypes.Bluray1080, true, QualityTypes.Bluray720, true, false)]
+        [Row(QualityTypes.Bluray1080, false, QualityTypes.Bluray720, true, false)]
+        [Row(QualityTypes.Bluray1080, false, QualityTypes.Bluray720, true, false)]
+        [Row(QualityTypes.HDTV, false, QualityTypes.Bluray720, true, false)]
+        public void Is_Needed_Tv_Dvd_BluRay_BluRay720_Is_Cutoff(QualityTypes fileQuality, bool isFileProper, QualityTypes reportQuality, bool isReportProper, bool excpected)
         {
             //Setup
             var parseResult = new EpisodeParseResult
@@ -83,22 +89,24 @@ namespace NzbDrone.Core.Test
                                  Quality = fileQuality
                              };
 
+            var seriesQualityProfile = new QualityProfile
+            {
+                Name = "HD",
+                Allowed = new List<QualityTypes> { QualityTypes.HDTV, QualityTypes.WEBDL, QualityTypes.BDRip, QualityTypes.Bluray720 },
+                Cutoff = QualityTypes.HDTV
+            };
+
             var episodeInfo = new Episode
                                   {
                                       SeriesId = 12,
                                       SeasonNumber = 2,
                                       EpisodeNumber = 3,
-                                      Series = new Series { QualityProfileId = 1 },
+                                      Series = new Series { QualityProfileId = 1, QualityProfile = seriesQualityProfile },
                                       EpisodeFile = epFile
 
                                   };
 
-            var seriesQualityProfile = new QualityProfile
-                                           {
-                                               Allowed = new List<QualityTypes> { QualityTypes.TV, QualityTypes.DVD, QualityTypes.Bluray720, QualityTypes.Bluray1080 },
-                                               Cutoff = QualityTypes.Bluray720,
-                                               Name = "TV/DVD",
-                                           };
+
 
 
 
@@ -180,7 +188,7 @@ namespace NzbDrone.Core.Test
             Assert.Count(2, episodes);
         }
 
-       
+
 
 
         [Test]
diff --git a/NzbDrone.Core.Test/Files/RSS/newzbin.xml b/NzbDrone.Core.Test/Files/RSS/newzbin.xml
new file mode 100644
index 000000000..99b5bb09d
--- /dev/null
+++ b/NzbDrone.Core.Test/Files/RSS/newzbin.xml
@@ -0,0 +1,2943 @@
+<?xml version="1.0" encoding="utf-8" ?>
+<rss version="2.0" xml:lang="en-GB"
+xmlns:report="http://www.newzbin.com/DTD/2007/feeds/report/">
+  <channel>
+    <title>www.newzbin.com (reports)</title>
+    <link>http://www.newzbin.com/browse/category/p/tv/</link>
+    <description>Newzbin Reports Feed</description>
+    <pubDate>Mon, 25 Apr 2011 16:08:24 GMT</pubDate>
+    <ttl>42</ttl>
+    <generator>www.newzbin.com - Usenet Search</generator>
+    <copyright>Copyright (c) 2002 - 2007 Newzbin Limited. All Rights Reserved.</copyright>
+    <image>
+      <url>http://www.newzbin.com/m/i/logo/newzbinv3.png</url>
+      <link>http://www.newzbin.com/browse/category/p/tv/</link>
+      <title>www.newzbin.com</title>
+      <description>Visit Newzbin.com - The Ultimate In Usenet Indexing</description>
+    </image>
+    <item>
+      <title>Rookie Blue - 1x10 - Big Nickel</title>
+      <guid isPermaLink="true">http://www.newzbin.com/browse/post/6076287/</guid>
+      <link>http://www.newzbin.com/browse/post/6076287/</link>
+      <comments>http://www.newzbin.com/browse/post/6076287/#CommentsPH</comments>
+      <description>
+        <![CDATA[
+			<ul>
+			<li>
+			ID: <a href="http://www.newzbin.com/browse/post/6076287">6076287</a>
+			(<a
+			href="http://www.newzbin.com/account/bookmarks/add/?ps_id=6076287">Bookmark</a>)
+			(<a href="http://www.newzbin.com/browse/post/6076287/nzb/">NZB</a>)
+			(<a href="http://www.newzbin.com/nfo/view/txt/373966350/">NFO</a>)
+			(<a href="http://www.tvrage.com/Rookie_Blue/episodes/1064943067/1x10/">More Info</a>)
+			(Size: 1,235.6MB)
+			</li>
+			<li>
+				Attributes:
+				Category - TV
+				|  Video Source - TV Cap, HDTV |  Video Format - x264, 720p |  Video Genre - Action/Adv, Crime, Drama, Family |  Language - English, German
+			</li>
+			<li>Groups:  alt.binaries.illuminaten</li>
+			<li>Poster: AuToMaTiC &#60;AuTo@Illuminatenboard.org&#62;</li>
+			<li>PostDate: Sunday 06 Mar 2011, 01:05PM PDT</li>
+			</ul>			]]>
+      </description>
+      <report:id>6076287</report:id>
+      <report:category>TV</report:category>
+      <report:attributes>
+        <report:attribute type="Source">TV Cap</report:attribute>
+        <report:attribute type="Source">HDTV</report:attribute>
+        <report:attribute type="Video Fmt">x264</report:attribute>
+        <report:attribute type="Video Fmt">720p</report:attribute>
+        <report:attribute type="Video Genre">Action/Adv</report:attribute>
+        <report:attribute type="Video Genre">Crime</report:attribute>
+        <report:attribute type="Video Genre">Drama</report:attribute>
+        <report:attribute type="Video Genre">Family</report:attribute>
+        <report:attribute type="Language">English</report:attribute>
+        <report:attribute type="Language">German</report:attribute>
+      </report:attributes>
+      <report:groups>
+        <report:group>alt.binaries.illuminaten</report:group>
+      </report:groups>
+      <report:progress value="1">Report is complete</report:progress>
+      <report:moreinfo>http://www.tvrage.com/Rookie_Blue/episodes/1064943067/1x10/</report:moreinfo>
+      <report:nfo>
+        <report:fileid>373966350</report:fileid>
+        <report:filename>tvp-rookieblue-s01e10-720p.nfo</report:filename>
+        <report:link>http://www.newzbin.com/nfo/view/txt/373966350/</report:link>
+      </report:nfo>
+      <report:nzb>http://www.newzbin.com/browse/post/6076287/nzb/</report:nzb>
+      <report:poster>AuToMaTiC &#60;AuTo@Illuminatenboard.org&#62;</report:poster>
+      <report:size type="bytes">1295652290</report:size>
+      <report:postdate>Sun, 06 Mar 2011 21:05:58 GMT</report:postdate>
+      <report:stats>
+        <report:views>2</report:views>
+        <report:comments>0</report:comments>
+      </report:stats>
+      <enclosure url="http://www.newzbin.com/browse/post/6076287/nzb/"
+				length="1295652290" type="application/x-nzb" />
+      <pubDate>Mon, 25 Apr 2011 11:55:04 GMT</pubDate>
+    </item>
+    <item>
+      <title>Rookie Blue - 1x10 - Big Nickel</title>
+      <guid isPermaLink="true">http://www.newzbin.com/browse/post/6076286/</guid>
+      <link>http://www.newzbin.com/browse/post/6076286/</link>
+      <comments>http://www.newzbin.com/browse/post/6076286/#CommentsPH</comments>
+      <description>
+        <![CDATA[
+			<ul>
+			<li>
+			ID: <a href="http://www.newzbin.com/browse/post/6076286">6076286</a>
+			(<a
+			href="http://www.newzbin.com/account/bookmarks/add/?ps_id=6076286">Bookmark</a>)
+			(<a href="http://www.newzbin.com/browse/post/6076286/nzb/">NZB</a>)
+			(<a href="http://www.newzbin.com/nfo/view/txt/373966074/">NFO</a>)
+			(<a href="http://www.tvrage.com/Rookie_Blue/episodes/1064943067/1x10/">More Info</a>)
+			(Size: 411.7MB)
+			</li>
+			<li>
+				Attributes:
+				Category - TV
+				|  Video Source - TV Cap, HDTV |  Video Format - XviD |  Video Genre - Action/Adv, Crime, Drama, Family |  Language - German
+			</li>
+			<li>Groups:  alt.binaries.illuminaten</li>
+			<li>Poster: AuToMaTiC &#60;AuTo@Illuminatenboard.org&#62;</li>
+			<li>PostDate: Sunday 06 Mar 2011, 12:57PM PDT</li>
+			</ul>			]]>
+      </description>
+      <report:id>6076286</report:id>
+      <report:category>TV</report:category>
+      <report:attributes>
+        <report:attribute type="Source">TV Cap</report:attribute>
+        <report:attribute type="Source">HDTV</report:attribute>
+        <report:attribute type="Video Fmt">XviD</report:attribute>
+        <report:attribute type="Video Genre">Action/Adv</report:attribute>
+        <report:attribute type="Video Genre">Crime</report:attribute>
+        <report:attribute type="Video Genre">Drama</report:attribute>
+        <report:attribute type="Video Genre">Family</report:attribute>
+        <report:attribute type="Language">German</report:attribute>
+      </report:attributes>
+      <report:groups>
+        <report:group>alt.binaries.illuminaten</report:group>
+      </report:groups>
+      <report:progress value="1">Report is complete</report:progress>
+      <report:moreinfo>http://www.tvrage.com/Rookie_Blue/episodes/1064943067/1x10/</report:moreinfo>
+      <report:nfo>
+        <report:fileid>373966074</report:fileid>
+        <report:filename>tvp-rookieblue-s01e10-xvid.nfo</report:filename>
+        <report:link>http://www.newzbin.com/nfo/view/txt/373966074/</report:link>
+      </report:nfo>
+      <report:nzb>http://www.newzbin.com/browse/post/6076286/nzb/</report:nzb>
+      <report:poster>AuToMaTiC &#60;AuTo@Illuminatenboard.org&#62;</report:poster>
+      <report:size type="bytes">431730586</report:size>
+      <report:postdate>Sun, 06 Mar 2011 20:57:29 GMT</report:postdate>
+      <report:stats>
+        <report:views>2</report:views>
+        <report:comments>0</report:comments>
+      </report:stats>
+      <enclosure url="http://www.newzbin.com/browse/post/6076286/nzb/"
+				length="431730586" type="application/x-nzb" />
+      <pubDate>Mon, 25 Apr 2011 11:54:30 GMT</pubDate>
+    </item>
+    <item>
+      <title>Man, Woman, Wild - 1x05 - Mexico</title>
+      <guid isPermaLink="true">http://www.newzbin.com/browse/post/6076285/</guid>
+      <link>http://www.newzbin.com/browse/post/6076285/</link>
+      <comments>http://www.newzbin.com/browse/post/6076285/#CommentsPH</comments>
+      <description>
+        <![CDATA[
+			<ul>
+			<li>
+			ID: <a href="http://www.newzbin.com/browse/post/6076285">6076285</a>
+			(<a
+			href="http://www.newzbin.com/account/bookmarks/add/?ps_id=6076285">Bookmark</a>)
+			(<a href="http://www.newzbin.com/browse/post/6076285/nzb/">NZB</a>)
+			(<a href="http://www.newzbin.com/nfo/view/txt/374221702/">NFO</a>)
+			(<a href="http://www.tvrage.com/shows/id-25983/episodes/1064960861/1x05/">More Info</a>)
+			(Size: 410.8MB)
+			</li>
+			<li>
+				Attributes:
+				Category - TV
+				|  Video Source - TV Cap |  Video Format - XviD |  Video Genre - Family, Reality |  Language - German
+			</li>
+			<li>Groups:  alt.binaries.illuminaten</li>
+			<li>Poster: AuToMaTiC &#60;AuTo@Illuminatenboard.org&#62;</li>
+			<li>PostDate: Monday 07 Mar 2011, 10:34AM PDT</li>
+			</ul>			]]>
+      </description>
+      <report:id>6076285</report:id>
+      <report:category>TV</report:category>
+      <report:attributes>
+        <report:attribute type="Source">TV Cap</report:attribute>
+        <report:attribute type="Video Fmt">XviD</report:attribute>
+        <report:attribute type="Video Genre">Family</report:attribute>
+        <report:attribute type="Video Genre">Reality</report:attribute>
+        <report:attribute type="Language">German</report:attribute>
+      </report:attributes>
+      <report:groups>
+        <report:group>alt.binaries.illuminaten</report:group>
+      </report:groups>
+      <report:progress value="1">Report is complete</report:progress>
+      <report:moreinfo>http://www.tvrage.com/shows/id-25983/episodes/1064960861/1x05/</report:moreinfo>
+      <report:nfo>
+        <report:fileid>374221702</report:fileid>
+        <report:filename>tvp-frauwild-s01e05.nfo</report:filename>
+        <report:link>http://www.newzbin.com/nfo/view/txt/374221702/</report:link>
+      </report:nfo>
+      <report:nzb>http://www.newzbin.com/browse/post/6076285/nzb/</report:nzb>
+      <report:poster>AuToMaTiC &#60;AuTo@Illuminatenboard.org&#62;</report:poster>
+      <report:size type="bytes">430705744</report:size>
+      <report:postdate>Mon, 07 Mar 2011 18:34:52 GMT</report:postdate>
+      <report:stats>
+        <report:views>2</report:views>
+        <report:comments>0</report:comments>
+      </report:stats>
+      <enclosure url="http://www.newzbin.com/browse/post/6076285/nzb/"
+				length="430705744" type="application/x-nzb" />
+      <pubDate>Mon, 25 Apr 2011 11:53:13 GMT</pubDate>
+    </item>
+    <item>
+      <title>Being Erica - 1x10 - Mi Casa, Su Casa Loma</title>
+      <guid isPermaLink="true">http://www.newzbin.com/browse/post/6076284/</guid>
+      <link>http://www.newzbin.com/browse/post/6076284/</link>
+      <comments>http://www.newzbin.com/browse/post/6076284/#CommentsPH</comments>
+      <description>
+        <![CDATA[
+			<ul>
+			<li>
+			ID: <a href="http://www.newzbin.com/browse/post/6076284">6076284</a>
+			(<a
+			href="http://www.newzbin.com/account/bookmarks/add/?ps_id=6076284">Bookmark</a>)
+			(<a href="http://www.newzbin.com/browse/post/6076284/nzb/">NZB</a>)
+			(<a href="http://www.newzbin.com/nfo/view/txt/375301150/">NFO</a>)
+			(<a href="http://www.tvrage.com/Being_Erica/episodes/757886/1x10/">More Info</a>)
+			(Size: 1,572.7MB)
+			</li>
+			<li>
+				Attributes:
+				Category - TV
+				|  Video Source - TV Cap, HDTV |  Video Format - x264, 720p |  Video Genre - Comedy, Drama, Fantasy |  Language - English, German
+			</li>
+			<li>Groups:  alt.binaries.illuminaten</li>
+			<li>Poster: AuToMaTiC &#60;AuTo@Illuminatenboard.org&#62;</li>
+			<li>PostDate: Friday 11 Mar 2011, 09:23AM PDT</li>
+			</ul>			]]>
+      </description>
+      <report:id>6076284</report:id>
+      <report:category>TV</report:category>
+      <report:attributes>
+        <report:attribute type="Source">TV Cap</report:attribute>
+        <report:attribute type="Source">HDTV</report:attribute>
+        <report:attribute type="Video Fmt">x264</report:attribute>
+        <report:attribute type="Video Fmt">720p</report:attribute>
+        <report:attribute type="Video Genre">Comedy</report:attribute>
+        <report:attribute type="Video Genre">Drama</report:attribute>
+        <report:attribute type="Video Genre">Fantasy</report:attribute>
+        <report:attribute type="Language">English</report:attribute>
+        <report:attribute type="Language">German</report:attribute>
+      </report:attributes>
+      <report:groups>
+        <report:group>alt.binaries.illuminaten</report:group>
+      </report:groups>
+      <report:progress value="1">Report is complete</report:progress>
+      <report:moreinfo>http://www.tvrage.com/Being_Erica/episodes/757886/1x10/</report:moreinfo>
+      <report:nfo>
+        <report:fileid>375301150</report:fileid>
+        <report:filename>tvp-beingerica-s01e10-720p.nfo</report:filename>
+        <report:link>http://www.newzbin.com/nfo/view/txt/375301150/</report:link>
+      </report:nfo>
+      <report:nzb>http://www.newzbin.com/browse/post/6076284/nzb/</report:nzb>
+      <report:poster>AuToMaTiC &#60;AuTo@Illuminatenboard.org&#62;</report:poster>
+      <report:size type="bytes">1649087965</report:size>
+      <report:postdate>Fri, 11 Mar 2011 17:23:04 GMT</report:postdate>
+      <report:stats>
+        <report:views>2</report:views>
+        <report:comments>0</report:comments>
+      </report:stats>
+      <enclosure url="http://www.newzbin.com/browse/post/6076284/nzb/"
+				length="1649087965" type="application/x-nzb" />
+      <pubDate>Mon, 25 Apr 2011 11:52:06 GMT</pubDate>
+    </item>
+    <item>
+      <title>Braceface - 1x13 - Miami Vices</title>
+      <guid isPermaLink="true">http://www.newzbin.com/browse/post/6076283/</guid>
+      <link>http://www.newzbin.com/browse/post/6076283/</link>
+      <comments>http://www.newzbin.com/browse/post/6076283/#CommentsPH</comments>
+      <description>
+        <![CDATA[
+			<ul>
+			<li>
+			ID: <a href="http://www.newzbin.com/browse/post/6076283">6076283</a>
+			(<a
+			href="http://www.newzbin.com/account/bookmarks/add/?ps_id=6076283">Bookmark</a>)
+			(<a href="http://www.newzbin.com/browse/post/6076283/nzb/">NZB</a>)
+			(<a href="http://www.newzbin.com/nfo/view/txt/375352960/">NFO</a>)
+			(<a href="http://www.tvrage.com/shows/id-2888/episodes/26569/1x13/">More Info</a>)
+			(Size: 277.0MB)
+			</li>
+			<li>
+				Attributes:
+				Category - TV
+				|  Video Source - DVD |  Video Format - XviD |  Video Genre - Animation |  Language - German
+			</li>
+			<li>Groups:  alt.binaries.illuminaten</li>
+			<li>Poster: AuToMaTiC &#60;AuTo@Illuminatenboard.org&#62;</li>
+			<li>PostDate: Friday 11 Mar 2011, 02:03PM PDT</li>
+			</ul>			]]>
+      </description>
+      <report:id>6076283</report:id>
+      <report:category>TV</report:category>
+      <report:attributes>
+        <report:attribute type="Source">DVD</report:attribute>
+        <report:attribute type="Video Fmt">XviD</report:attribute>
+        <report:attribute type="Video Genre">Animation</report:attribute>
+        <report:attribute type="Language">German</report:attribute>
+      </report:attributes>
+      <report:groups>
+        <report:group>alt.binaries.illuminaten</report:group>
+      </report:groups>
+      <report:progress value="1">Report is complete</report:progress>
+      <report:moreinfo>http://www.tvrage.com/shows/id-2888/episodes/26569/1x13/</report:moreinfo>
+      <report:nfo>
+        <report:fileid>375352960</report:fileid>
+        <report:filename>tvp-brace-s01e13-xvid.nfo</report:filename>
+        <report:link>http://www.newzbin.com/nfo/view/txt/375352960/</report:link>
+      </report:nfo>
+      <report:nzb>http://www.newzbin.com/browse/post/6076283/nzb/</report:nzb>
+      <report:poster>AuToMaTiC &#60;AuTo@Illuminatenboard.org&#62;</report:poster>
+      <report:size type="bytes">290475921</report:size>
+      <report:postdate>Fri, 11 Mar 2011 22:03:58 GMT</report:postdate>
+      <report:stats>
+        <report:views>2</report:views>
+        <report:comments>0</report:comments>
+      </report:stats>
+      <enclosure url="http://www.newzbin.com/browse/post/6076283/nzb/"
+				length="290475921" type="application/x-nzb" />
+      <pubDate>Mon, 25 Apr 2011 11:51:43 GMT</pubDate>
+    </item>
+    <item>
+      <title>Braceface - 1x12 - The Pickford Project</title>
+      <guid isPermaLink="true">http://www.newzbin.com/browse/post/6076282/</guid>
+      <link>http://www.newzbin.com/browse/post/6076282/</link>
+      <comments>http://www.newzbin.com/browse/post/6076282/#CommentsPH</comments>
+      <description>
+        <![CDATA[
+			<ul>
+			<li>
+			ID: <a href="http://www.newzbin.com/browse/post/6076282">6076282</a>
+			(<a
+			href="http://www.newzbin.com/account/bookmarks/add/?ps_id=6076282">Bookmark</a>)
+			(<a href="http://www.newzbin.com/browse/post/6076282/nzb/">NZB</a>)
+			(<a href="http://www.newzbin.com/nfo/view/txt/375352988/">NFO</a>)
+			(<a href="http://www.tvrage.com/shows/id-2888/episodes/26568/1x12/">More Info</a>)
+			(Size: 277.0MB)
+			</li>
+			<li>
+				Attributes:
+				Category - TV
+				|  Video Source - DVD |  Video Format - XviD |  Video Genre - Animation |  Language - German
+			</li>
+			<li>Groups:  alt.binaries.illuminaten</li>
+			<li>Poster: AuToMaTiC &#60;AuTo@Illuminatenboard.org&#62;</li>
+			<li>PostDate: Friday 11 Mar 2011, 02:04PM PDT</li>
+			</ul>			]]>
+      </description>
+      <report:id>6076282</report:id>
+      <report:category>TV</report:category>
+      <report:attributes>
+        <report:attribute type="Source">DVD</report:attribute>
+        <report:attribute type="Video Fmt">XviD</report:attribute>
+        <report:attribute type="Video Genre">Animation</report:attribute>
+        <report:attribute type="Language">German</report:attribute>
+      </report:attributes>
+      <report:groups>
+        <report:group>alt.binaries.illuminaten</report:group>
+      </report:groups>
+      <report:progress value="1">Report is complete</report:progress>
+      <report:moreinfo>http://www.tvrage.com/shows/id-2888/episodes/26568/1x12/</report:moreinfo>
+      <report:nfo>
+        <report:fileid>375352988</report:fileid>
+        <report:filename>tvp-brace-s01e12-xvid.nfo</report:filename>
+        <report:link>http://www.newzbin.com/nfo/view/txt/375352988/</report:link>
+      </report:nfo>
+      <report:nzb>http://www.newzbin.com/browse/post/6076282/nzb/</report:nzb>
+      <report:poster>AuToMaTiC &#60;AuTo@Illuminatenboard.org&#62;</report:poster>
+      <report:size type="bytes">290433257</report:size>
+      <report:postdate>Fri, 11 Mar 2011 22:04:18 GMT</report:postdate>
+      <report:stats>
+        <report:views>2</report:views>
+        <report:comments>0</report:comments>
+      </report:stats>
+      <enclosure url="http://www.newzbin.com/browse/post/6076282/nzb/"
+				length="290433257" type="application/x-nzb" />
+      <pubDate>Mon, 25 Apr 2011 11:51:26 GMT</pubDate>
+    </item>
+    <item>
+      <title>Braceface - 1x11 - Twenty Four Hours</title>
+      <guid isPermaLink="true">http://www.newzbin.com/browse/post/6076281/</guid>
+      <link>http://www.newzbin.com/browse/post/6076281/</link>
+      <comments>http://www.newzbin.com/browse/post/6076281/#CommentsPH</comments>
+      <description>
+        <![CDATA[
+			<ul>
+			<li>
+			ID: <a href="http://www.newzbin.com/browse/post/6076281">6076281</a>
+			(<a
+			href="http://www.newzbin.com/account/bookmarks/add/?ps_id=6076281">Bookmark</a>)
+			(<a href="http://www.newzbin.com/browse/post/6076281/nzb/">NZB</a>)
+			(<a href="http://www.newzbin.com/nfo/view/txt/375353026/">NFO</a>)
+			(<a href="http://www.tvrage.com/shows/id-2888/episodes/26567/1x11/">More Info</a>)
+			(Size: 277.0MB)
+			</li>
+			<li>
+				Attributes:
+				Category - TV
+				|  Video Source - DVD |  Video Format - XviD |  Video Genre - Animation |  Language - German
+			</li>
+			<li>Groups:  alt.binaries.illuminaten</li>
+			<li>Poster: AuToMaTiC &#60;AuTo@Illuminatenboard.org&#62;</li>
+			<li>PostDate: Friday 11 Mar 2011, 02:04PM PDT</li>
+			</ul>			]]>
+      </description>
+      <report:id>6076281</report:id>
+      <report:category>TV</report:category>
+      <report:attributes>
+        <report:attribute type="Source">DVD</report:attribute>
+        <report:attribute type="Video Fmt">XviD</report:attribute>
+        <report:attribute type="Video Genre">Animation</report:attribute>
+        <report:attribute type="Language">German</report:attribute>
+      </report:attributes>
+      <report:groups>
+        <report:group>alt.binaries.illuminaten</report:group>
+      </report:groups>
+      <report:progress value="1">Report is complete</report:progress>
+      <report:moreinfo>http://www.tvrage.com/shows/id-2888/episodes/26567/1x11/</report:moreinfo>
+      <report:nfo>
+        <report:fileid>375353026</report:fileid>
+        <report:filename>tvp-brace-s01e11-xvid.nfo</report:filename>
+        <report:link>http://www.newzbin.com/nfo/view/txt/375353026/</report:link>
+      </report:nfo>
+      <report:nzb>http://www.newzbin.com/browse/post/6076281/nzb/</report:nzb>
+      <report:poster>AuToMaTiC &#60;AuTo@Illuminatenboard.org&#62;</report:poster>
+      <report:size type="bytes">290458801</report:size>
+      <report:postdate>Fri, 11 Mar 2011 22:04:37 GMT</report:postdate>
+      <report:stats>
+        <report:views>2</report:views>
+        <report:comments>0</report:comments>
+      </report:stats>
+      <enclosure url="http://www.newzbin.com/browse/post/6076281/nzb/"
+				length="290458801" type="application/x-nzb" />
+      <pubDate>Mon, 25 Apr 2011 11:51:09 GMT</pubDate>
+    </item>
+    <item>
+      <title>Braceface - 1x10 - Driving Miss Sharon</title>
+      <guid isPermaLink="true">http://www.newzbin.com/browse/post/6076280/</guid>
+      <link>http://www.newzbin.com/browse/post/6076280/</link>
+      <comments>http://www.newzbin.com/browse/post/6076280/#CommentsPH</comments>
+      <description>
+        <![CDATA[
+			<ul>
+			<li>
+			ID: <a href="http://www.newzbin.com/browse/post/6076280">6076280</a>
+			(<a
+			href="http://www.newzbin.com/account/bookmarks/add/?ps_id=6076280">Bookmark</a>)
+			(<a href="http://www.newzbin.com/browse/post/6076280/nzb/">NZB</a>)
+			(<a href="http://www.newzbin.com/nfo/view/txt/375353064/">NFO</a>)
+			(<a href="http://www.tvrage.com/shows/id-2888/episodes/26566/">More Info</a>)
+			(Size: 276.8MB)
+			</li>
+			<li>
+				Attributes:
+				Category - TV
+				|  Video Source - DVD |  Video Format - XviD |  Video Genre - Animation |  Language - German
+			</li>
+			<li>Groups:  alt.binaries.illuminaten</li>
+			<li>Poster: AuToMaTiC &#60;AuTo@Illuminatenboard.org&#62;</li>
+			<li>PostDate: Friday 11 Mar 2011, 02:04PM PDT</li>
+			</ul>			]]>
+      </description>
+      <report:id>6076280</report:id>
+      <report:category>TV</report:category>
+      <report:attributes>
+        <report:attribute type="Source">DVD</report:attribute>
+        <report:attribute type="Video Fmt">XviD</report:attribute>
+        <report:attribute type="Video Genre">Animation</report:attribute>
+        <report:attribute type="Language">German</report:attribute>
+      </report:attributes>
+      <report:groups>
+        <report:group>alt.binaries.illuminaten</report:group>
+      </report:groups>
+      <report:progress value="1">Report is complete</report:progress>
+      <report:moreinfo>http://www.tvrage.com/shows/id-2888/episodes/26566/</report:moreinfo>
+      <report:nfo>
+        <report:fileid>375353064</report:fileid>
+        <report:filename>tvp-brace-s01e10-xvid.nfo</report:filename>
+        <report:link>http://www.newzbin.com/nfo/view/txt/375353064/</report:link>
+      </report:nfo>
+      <report:nzb>http://www.newzbin.com/browse/post/6076280/nzb/</report:nzb>
+      <report:poster>AuToMaTiC &#60;AuTo@Illuminatenboard.org&#62;</report:poster>
+      <report:size type="bytes">290294499</report:size>
+      <report:postdate>Fri, 11 Mar 2011 22:04:56 GMT</report:postdate>
+      <report:stats>
+        <report:views>2</report:views>
+        <report:comments>0</report:comments>
+      </report:stats>
+      <enclosure url="http://www.newzbin.com/browse/post/6076280/nzb/"
+				length="290294499" type="application/x-nzb" />
+      <pubDate>Mon, 25 Apr 2011 11:50:08 GMT</pubDate>
+    </item>
+    <item>
+      <title>Braceface - 1x09 - The Divorce Thing</title>
+      <guid isPermaLink="true">http://www.newzbin.com/browse/post/6076279/</guid>
+      <link>http://www.newzbin.com/browse/post/6076279/</link>
+      <comments>http://www.newzbin.com/browse/post/6076279/#CommentsPH</comments>
+      <description>
+        <![CDATA[
+			<ul>
+			<li>
+			ID: <a href="http://www.newzbin.com/browse/post/6076279">6076279</a>
+			(<a
+			href="http://www.newzbin.com/account/bookmarks/add/?ps_id=6076279">Bookmark</a>)
+			(<a href="http://www.newzbin.com/browse/post/6076279/nzb/">NZB</a>)
+			(<a href="http://www.newzbin.com/nfo/view/txt/375353090/">NFO</a>)
+			(<a href="http://www.tvrage.com/shows/id-2888/episodes/26565/1x09/">More Info</a>)
+			(Size: 276.9MB)
+			</li>
+			<li>
+				Attributes:
+				Category - TV
+				|  Video Source - DVD |  Video Format - XviD |  Video Genre - Animation |  Language - German
+			</li>
+			<li>Groups:  alt.binaries.illuminaten</li>
+			<li>Poster: AuToMaTiC &#60;AuTo@Illuminatenboard.org&#62;</li>
+			<li>PostDate: Friday 11 Mar 2011, 02:05PM PDT</li>
+			</ul>			]]>
+      </description>
+      <report:id>6076279</report:id>
+      <report:category>TV</report:category>
+      <report:attributes>
+        <report:attribute type="Source">DVD</report:attribute>
+        <report:attribute type="Video Fmt">XviD</report:attribute>
+        <report:attribute type="Video Genre">Animation</report:attribute>
+        <report:attribute type="Language">German</report:attribute>
+      </report:attributes>
+      <report:groups>
+        <report:group>alt.binaries.illuminaten</report:group>
+      </report:groups>
+      <report:progress value="1">Report is complete</report:progress>
+      <report:moreinfo>http://www.tvrage.com/shows/id-2888/episodes/26565/1x09/</report:moreinfo>
+      <report:nfo>
+        <report:fileid>375353090</report:fileid>
+        <report:filename>tvp-brace-s01e09-xvid.nfo</report:filename>
+        <report:link>http://www.newzbin.com/nfo/view/txt/375353090/</report:link>
+      </report:nfo>
+      <report:nzb>http://www.newzbin.com/browse/post/6076279/nzb/</report:nzb>
+      <report:poster>AuToMaTiC &#60;AuTo@Illuminatenboard.org&#62;</report:poster>
+      <report:size type="bytes">290375536</report:size>
+      <report:postdate>Fri, 11 Mar 2011 22:05:15 GMT</report:postdate>
+      <report:stats>
+        <report:views>2</report:views>
+        <report:comments>0</report:comments>
+      </report:stats>
+      <enclosure url="http://www.newzbin.com/browse/post/6076279/nzb/"
+				length="290375536" type="application/x-nzb" />
+      <pubDate>Mon, 25 Apr 2011 11:49:51 GMT</pubDate>
+    </item>
+    <item>
+      <title>Braceface - 1x08 - The Worst First Date Ever. Period.</title>
+      <guid isPermaLink="true">http://www.newzbin.com/browse/post/6076278/</guid>
+      <link>http://www.newzbin.com/browse/post/6076278/</link>
+      <comments>http://www.newzbin.com/browse/post/6076278/#CommentsPH</comments>
+      <description>
+        <![CDATA[
+			<ul>
+			<li>
+			ID: <a href="http://www.newzbin.com/browse/post/6076278">6076278</a>
+			(<a
+			href="http://www.newzbin.com/account/bookmarks/add/?ps_id=6076278">Bookmark</a>)
+			(<a href="http://www.newzbin.com/browse/post/6076278/nzb/">NZB</a>)
+			(<a href="http://www.newzbin.com/nfo/view/txt/375353128/">NFO</a>)
+			(<a href="http://www.tvrage.com/shows/id-2888/episodes/26564/1x08/">More Info</a>)
+			(Size: 276.8MB)
+			</li>
+			<li>
+				Attributes:
+				Category - TV
+				|  Video Source - DVD |  Video Format - XviD |  Video Genre - Animation |  Language - German
+			</li>
+			<li>Groups:  alt.binaries.illuminaten</li>
+			<li>Poster: AuToMaTiC &#60;AuTo@Illuminatenboard.org&#62;</li>
+			<li>PostDate: Friday 11 Mar 2011, 02:05PM PDT</li>
+			</ul>			]]>
+      </description>
+      <report:id>6076278</report:id>
+      <report:category>TV</report:category>
+      <report:attributes>
+        <report:attribute type="Source">DVD</report:attribute>
+        <report:attribute type="Video Fmt">XviD</report:attribute>
+        <report:attribute type="Video Genre">Animation</report:attribute>
+        <report:attribute type="Language">German</report:attribute>
+      </report:attributes>
+      <report:groups>
+        <report:group>alt.binaries.illuminaten</report:group>
+      </report:groups>
+      <report:progress value="1">Report is complete</report:progress>
+      <report:moreinfo>http://www.tvrage.com/shows/id-2888/episodes/26564/1x08/</report:moreinfo>
+      <report:nfo>
+        <report:fileid>375353128</report:fileid>
+        <report:filename>tvp-brace-s01e08-xvid.nfo</report:filename>
+        <report:link>http://www.newzbin.com/nfo/view/txt/375353128/</report:link>
+      </report:nfo>
+      <report:nzb>http://www.newzbin.com/browse/post/6076278/nzb/</report:nzb>
+      <report:poster>AuToMaTiC &#60;AuTo@Illuminatenboard.org&#62;</report:poster>
+      <report:size type="bytes">290260093</report:size>
+      <report:postdate>Fri, 11 Mar 2011 22:05:33 GMT</report:postdate>
+      <report:stats>
+        <report:views>2</report:views>
+        <report:comments>0</report:comments>
+      </report:stats>
+      <enclosure url="http://www.newzbin.com/browse/post/6076278/nzb/"
+				length="290260093" type="application/x-nzb" />
+      <pubDate>Mon, 25 Apr 2011 11:49:34 GMT</pubDate>
+    </item>
+    <item>
+      <title>Braceface - 1x07 - Mixed Messages</title>
+      <guid isPermaLink="true">http://www.newzbin.com/browse/post/6076277/</guid>
+      <link>http://www.newzbin.com/browse/post/6076277/</link>
+      <comments>http://www.newzbin.com/browse/post/6076277/#CommentsPH</comments>
+      <description>
+        <![CDATA[
+			<ul>
+			<li>
+			ID: <a href="http://www.newzbin.com/browse/post/6076277">6076277</a>
+			(<a
+			href="http://www.newzbin.com/account/bookmarks/add/?ps_id=6076277">Bookmark</a>)
+			(<a href="http://www.newzbin.com/browse/post/6076277/nzb/">NZB</a>)
+			(<a href="http://www.newzbin.com/nfo/view/txt/375353157/">NFO</a>)
+			(<a href="http://www.tvrage.com/shows/id-2888/episodes/26563/1x07/">More Info</a>)
+			(Size: 277.0MB)
+			</li>
+			<li>
+				Attributes:
+				Category - TV
+				|  Video Source - DVD |  Video Format - XviD |  Video Genre - Animation |  Language - German
+			</li>
+			<li>Groups:  alt.binaries.illuminaten</li>
+			<li>Poster: AuToMaTiC &#60;AuTo@Illuminatenboard.org&#62;</li>
+			<li>PostDate: Friday 11 Mar 2011, 02:05PM PDT</li>
+			</ul>			]]>
+      </description>
+      <report:id>6076277</report:id>
+      <report:category>TV</report:category>
+      <report:attributes>
+        <report:attribute type="Source">DVD</report:attribute>
+        <report:attribute type="Video Fmt">XviD</report:attribute>
+        <report:attribute type="Video Genre">Animation</report:attribute>
+        <report:attribute type="Language">German</report:attribute>
+      </report:attributes>
+      <report:groups>
+        <report:group>alt.binaries.illuminaten</report:group>
+      </report:groups>
+      <report:progress value="1">Report is complete</report:progress>
+      <report:moreinfo>http://www.tvrage.com/shows/id-2888/episodes/26563/1x07/</report:moreinfo>
+      <report:nfo>
+        <report:fileid>375353157</report:fileid>
+        <report:filename>tvp-brace-s01e07-xvid.nfo</report:filename>
+        <report:link>http://www.newzbin.com/nfo/view/txt/375353157/</report:link>
+      </report:nfo>
+      <report:nzb>http://www.newzbin.com/browse/post/6076277/nzb/</report:nzb>
+      <report:poster>AuToMaTiC &#60;AuTo@Illuminatenboard.org&#62;</report:poster>
+      <report:size type="bytes">290455187</report:size>
+      <report:postdate>Fri, 11 Mar 2011 22:05:51 GMT</report:postdate>
+      <report:stats>
+        <report:views>2</report:views>
+        <report:comments>0</report:comments>
+      </report:stats>
+      <enclosure url="http://www.newzbin.com/browse/post/6076277/nzb/"
+				length="290455187" type="application/x-nzb" />
+      <pubDate>Mon, 25 Apr 2011 11:49:19 GMT</pubDate>
+    </item>
+    <item>
+      <title>Braceface - 1x06 - The Makeover</title>
+      <guid isPermaLink="true">http://www.newzbin.com/browse/post/6076276/</guid>
+      <link>http://www.newzbin.com/browse/post/6076276/</link>
+      <comments>http://www.newzbin.com/browse/post/6076276/#CommentsPH</comments>
+      <description>
+        <![CDATA[
+			<ul>
+			<li>
+			ID: <a href="http://www.newzbin.com/browse/post/6076276">6076276</a>
+			(<a
+			href="http://www.newzbin.com/account/bookmarks/add/?ps_id=6076276">Bookmark</a>)
+			(<a href="http://www.newzbin.com/browse/post/6076276/nzb/">NZB</a>)
+			(<a href="http://www.newzbin.com/nfo/view/txt/375353196/">NFO</a>)
+			(<a href="http://www.tvrage.com/shows/id-2888/episodes/26562/1x06/">More Info</a>)
+			(Size: 276.9MB)
+			</li>
+			<li>
+				Attributes:
+				Category - TV
+				|  Video Source - DVD |  Video Format - XviD |  Video Genre - Animation |  Language - German
+			</li>
+			<li>Groups:  alt.binaries.illuminaten</li>
+			<li>Poster: AuToMaTiC &#60;AuTo@Illuminatenboard.org&#62;</li>
+			<li>PostDate: Friday 11 Mar 2011, 02:06PM PDT</li>
+			</ul>			]]>
+      </description>
+      <report:id>6076276</report:id>
+      <report:category>TV</report:category>
+      <report:attributes>
+        <report:attribute type="Source">DVD</report:attribute>
+        <report:attribute type="Video Fmt">XviD</report:attribute>
+        <report:attribute type="Video Genre">Animation</report:attribute>
+        <report:attribute type="Language">German</report:attribute>
+      </report:attributes>
+      <report:groups>
+        <report:group>alt.binaries.illuminaten</report:group>
+      </report:groups>
+      <report:progress value="1">Report is complete</report:progress>
+      <report:moreinfo>http://www.tvrage.com/shows/id-2888/episodes/26562/1x06/</report:moreinfo>
+      <report:nfo>
+        <report:fileid>375353196</report:fileid>
+        <report:filename>tvp-brace-s01e06-xvid.nfo</report:filename>
+        <report:link>http://www.newzbin.com/nfo/view/txt/375353196/</report:link>
+      </report:nfo>
+      <report:nzb>http://www.newzbin.com/browse/post/6076276/nzb/</report:nzb>
+      <report:poster>AuToMaTiC &#60;AuTo@Illuminatenboard.org&#62;</report:poster>
+      <report:size type="bytes">290330286</report:size>
+      <report:postdate>Fri, 11 Mar 2011 22:06:13 GMT</report:postdate>
+      <report:stats>
+        <report:views>2</report:views>
+        <report:comments>0</report:comments>
+      </report:stats>
+      <enclosure url="http://www.newzbin.com/browse/post/6076276/nzb/"
+				length="290330286" type="application/x-nzb" />
+      <pubDate>Mon, 25 Apr 2011 11:49:02 GMT</pubDate>
+    </item>
+    <item>
+      <title>Braceface - 1x05 - The Meat of the Matter</title>
+      <guid isPermaLink="true">http://www.newzbin.com/browse/post/6076275/</guid>
+      <link>http://www.newzbin.com/browse/post/6076275/</link>
+      <comments>http://www.newzbin.com/browse/post/6076275/#CommentsPH</comments>
+      <description>
+        <![CDATA[
+			<ul>
+			<li>
+			ID: <a href="http://www.newzbin.com/browse/post/6076275">6076275</a>
+			(<a
+			href="http://www.newzbin.com/account/bookmarks/add/?ps_id=6076275">Bookmark</a>)
+			(<a href="http://www.newzbin.com/browse/post/6076275/nzb/">NZB</a>)
+			(<a href="http://www.newzbin.com/nfo/view/txt/375353231/">NFO</a>)
+			(<a href="http://www.tvrage.com/shows/id-2888/episodes/26561/1x05/">More Info</a>)
+			(Size: 276.9MB)
+			</li>
+			<li>
+				Attributes:
+				Category - TV
+				|  Video Source - DVD |  Video Format - XviD |  Video Genre - Animation |  Language - German
+			</li>
+			<li>Groups:  alt.binaries.illuminaten</li>
+			<li>Poster: AuToMaTiC &#60;AuTo@Illuminatenboard.org&#62;</li>
+			<li>PostDate: Friday 11 Mar 2011, 02:06PM PDT</li>
+			</ul>			]]>
+      </description>
+      <report:id>6076275</report:id>
+      <report:category>TV</report:category>
+      <report:attributes>
+        <report:attribute type="Source">DVD</report:attribute>
+        <report:attribute type="Video Fmt">XviD</report:attribute>
+        <report:attribute type="Video Genre">Animation</report:attribute>
+        <report:attribute type="Language">German</report:attribute>
+      </report:attributes>
+      <report:groups>
+        <report:group>alt.binaries.illuminaten</report:group>
+      </report:groups>
+      <report:progress value="1">Report is complete</report:progress>
+      <report:moreinfo>http://www.tvrage.com/shows/id-2888/episodes/26561/1x05/</report:moreinfo>
+      <report:nfo>
+        <report:fileid>375353231</report:fileid>
+        <report:filename>tvp-brace-s01e05-xvid.nfo</report:filename>
+        <report:link>http://www.newzbin.com/nfo/view/txt/375353231/</report:link>
+      </report:nfo>
+      <report:nzb>http://www.newzbin.com/browse/post/6076275/nzb/</report:nzb>
+      <report:poster>AuToMaTiC &#60;AuTo@Illuminatenboard.org&#62;</report:poster>
+      <report:size type="bytes">290387479</report:size>
+      <report:postdate>Fri, 11 Mar 2011 22:06:31 GMT</report:postdate>
+      <report:stats>
+        <report:views>2</report:views>
+        <report:comments>0</report:comments>
+      </report:stats>
+      <enclosure url="http://www.newzbin.com/browse/post/6076275/nzb/"
+				length="290387479" type="application/x-nzb" />
+      <pubDate>Mon, 25 Apr 2011 11:48:45 GMT</pubDate>
+    </item>
+    <item>
+      <title>Braceface - 1x04 - The Doctor Is In</title>
+      <guid isPermaLink="true">http://www.newzbin.com/browse/post/6076274/</guid>
+      <link>http://www.newzbin.com/browse/post/6076274/</link>
+      <comments>http://www.newzbin.com/browse/post/6076274/#CommentsPH</comments>
+      <description>
+        <![CDATA[
+			<ul>
+			<li>
+			ID: <a href="http://www.newzbin.com/browse/post/6076274">6076274</a>
+			(<a
+			href="http://www.newzbin.com/account/bookmarks/add/?ps_id=6076274">Bookmark</a>)
+			(<a href="http://www.newzbin.com/browse/post/6076274/nzb/">NZB</a>)
+			(<a href="http://www.newzbin.com/nfo/view/txt/375353264/">NFO</a>)
+			(<a href="http://www.tvrage.com/shows/id-2888/episodes/26560/1x04/">More Info</a>)
+			(Size: 276.9MB)
+			</li>
+			<li>
+				Attributes:
+				Category - TV
+				|  Video Source - DVD |  Video Format - XviD |  Video Genre - Animation |  Language - German
+			</li>
+			<li>Groups:  alt.binaries.illuminaten</li>
+			<li>Poster: AuToMaTiC &#60;AuTo@Illuminatenboard.org&#62;</li>
+			<li>PostDate: Friday 11 Mar 2011, 02:06PM PDT</li>
+			</ul>			]]>
+      </description>
+      <report:id>6076274</report:id>
+      <report:category>TV</report:category>
+      <report:attributes>
+        <report:attribute type="Source">DVD</report:attribute>
+        <report:attribute type="Video Fmt">XviD</report:attribute>
+        <report:attribute type="Video Genre">Animation</report:attribute>
+        <report:attribute type="Language">German</report:attribute>
+      </report:attributes>
+      <report:groups>
+        <report:group>alt.binaries.illuminaten</report:group>
+      </report:groups>
+      <report:progress value="1">Report is complete</report:progress>
+      <report:moreinfo>http://www.tvrage.com/shows/id-2888/episodes/26560/1x04/</report:moreinfo>
+      <report:nfo>
+        <report:fileid>375353264</report:fileid>
+        <report:filename>tvp-brace-s01e04-xvid.nfo</report:filename>
+        <report:link>http://www.newzbin.com/nfo/view/txt/375353264/</report:link>
+      </report:nfo>
+      <report:nzb>http://www.newzbin.com/browse/post/6076274/nzb/</report:nzb>
+      <report:poster>AuToMaTiC &#60;AuTo@Illuminatenboard.org&#62;</report:poster>
+      <report:size type="bytes">290401520</report:size>
+      <report:postdate>Fri, 11 Mar 2011 22:06:50 GMT</report:postdate>
+      <report:stats>
+        <report:views>2</report:views>
+        <report:comments>0</report:comments>
+      </report:stats>
+      <enclosure url="http://www.newzbin.com/browse/post/6076274/nzb/"
+				length="290401520" type="application/x-nzb" />
+      <pubDate>Mon, 25 Apr 2011 11:48:28 GMT</pubDate>
+    </item>
+    <item>
+      <title>Braceface - 1x03 - 5 Things That Really Bug Me About You</title>
+      <guid isPermaLink="true">http://www.newzbin.com/browse/post/6076273/</guid>
+      <link>http://www.newzbin.com/browse/post/6076273/</link>
+      <comments>http://www.newzbin.com/browse/post/6076273/#CommentsPH</comments>
+      <description>
+        <![CDATA[
+			<ul>
+			<li>
+			ID: <a href="http://www.newzbin.com/browse/post/6076273">6076273</a>
+			(<a
+			href="http://www.newzbin.com/account/bookmarks/add/?ps_id=6076273">Bookmark</a>)
+			(<a href="http://www.newzbin.com/browse/post/6076273/nzb/">NZB</a>)
+			(<a href="http://www.newzbin.com/nfo/view/txt/375353300/">NFO</a>)
+			(<a href="http://www.tvrage.com/shows/id-2888/episodes/26559/1x03/">More Info</a>)
+			(Size: 276.9MB)
+			</li>
+			<li>
+				Attributes:
+				Category - TV
+				|  Video Source - DVD |  Video Format - XviD |  Video Genre - Animation |  Language - German
+			</li>
+			<li>Groups:  alt.binaries.illuminaten</li>
+			<li>Poster: AuToMaTiC &#60;AuTo@Illuminatenboard.org&#62;</li>
+			<li>PostDate: Friday 11 Mar 2011, 02:07PM PDT</li>
+			</ul>			]]>
+      </description>
+      <report:id>6076273</report:id>
+      <report:category>TV</report:category>
+      <report:attributes>
+        <report:attribute type="Source">DVD</report:attribute>
+        <report:attribute type="Video Fmt">XviD</report:attribute>
+        <report:attribute type="Video Genre">Animation</report:attribute>
+        <report:attribute type="Language">German</report:attribute>
+      </report:attributes>
+      <report:groups>
+        <report:group>alt.binaries.illuminaten</report:group>
+      </report:groups>
+      <report:progress value="1">Report is complete</report:progress>
+      <report:moreinfo>http://www.tvrage.com/shows/id-2888/episodes/26559/1x03/</report:moreinfo>
+      <report:nfo>
+        <report:fileid>375353300</report:fileid>
+        <report:filename>tvp-brace-s01e03-xvid.nfo</report:filename>
+        <report:link>http://www.newzbin.com/nfo/view/txt/375353300/</report:link>
+      </report:nfo>
+      <report:nzb>http://www.newzbin.com/browse/post/6076273/nzb/</report:nzb>
+      <report:poster>AuToMaTiC &#60;AuTo@Illuminatenboard.org&#62;</report:poster>
+      <report:size type="bytes">290397799</report:size>
+      <report:postdate>Fri, 11 Mar 2011 22:07:09 GMT</report:postdate>
+      <report:stats>
+        <report:views>3</report:views>
+        <report:comments>0</report:comments>
+      </report:stats>
+      <enclosure url="http://www.newzbin.com/browse/post/6076273/nzb/"
+				length="290397799" type="application/x-nzb" />
+      <pubDate>Mon, 25 Apr 2011 11:48:12 GMT</pubDate>
+    </item>
+    <item>
+      <title>Braceface - 1x02 - Crushed</title>
+      <guid isPermaLink="true">http://www.newzbin.com/browse/post/6076272/</guid>
+      <link>http://www.newzbin.com/browse/post/6076272/</link>
+      <comments>http://www.newzbin.com/browse/post/6076272/#CommentsPH</comments>
+      <description>
+        <![CDATA[
+			<ul>
+			<li>
+			ID: <a href="http://www.newzbin.com/browse/post/6076272">6076272</a>
+			(<a
+			href="http://www.newzbin.com/account/bookmarks/add/?ps_id=6076272">Bookmark</a>)
+			(<a href="http://www.newzbin.com/browse/post/6076272/nzb/">NZB</a>)
+			(<a href="http://www.newzbin.com/nfo/view/txt/375353333/">NFO</a>)
+			(<a href="http://www.tvrage.com/shows/id-2888/episodes/26558/1x02/">More Info</a>)
+			(Size: 276.9MB)
+			</li>
+			<li>
+				Attributes:
+				Category - TV
+				|  Video Source - DVD |  Video Format - XviD |  Video Genre - Animation |  Language - German
+			</li>
+			<li>Groups:  alt.binaries.illuminaten</li>
+			<li>Poster: AuToMaTiC &#60;AuTo@Illuminatenboard.org&#62;</li>
+			<li>PostDate: Friday 11 Mar 2011, 02:07PM PDT</li>
+			</ul>			]]>
+      </description>
+      <report:id>6076272</report:id>
+      <report:category>TV</report:category>
+      <report:attributes>
+        <report:attribute type="Source">DVD</report:attribute>
+        <report:attribute type="Video Fmt">XviD</report:attribute>
+        <report:attribute type="Video Genre">Animation</report:attribute>
+        <report:attribute type="Language">German</report:attribute>
+      </report:attributes>
+      <report:groups>
+        <report:group>alt.binaries.illuminaten</report:group>
+      </report:groups>
+      <report:progress value="1">Report is complete</report:progress>
+      <report:moreinfo>http://www.tvrage.com/shows/id-2888/episodes/26558/1x02/</report:moreinfo>
+      <report:nfo>
+        <report:fileid>375353333</report:fileid>
+        <report:filename>tvp-brace-s01-e02-xvid.nfo</report:filename>
+        <report:link>http://www.newzbin.com/nfo/view/txt/375353333/</report:link>
+      </report:nfo>
+      <report:nzb>http://www.newzbin.com/browse/post/6076272/nzb/</report:nzb>
+      <report:poster>AuToMaTiC &#60;AuTo@Illuminatenboard.org&#62;</report:poster>
+      <report:size type="bytes">290345118</report:size>
+      <report:postdate>Fri, 11 Mar 2011 22:07:28 GMT</report:postdate>
+      <report:stats>
+        <report:views>2</report:views>
+        <report:comments>0</report:comments>
+      </report:stats>
+      <enclosure url="http://www.newzbin.com/browse/post/6076272/nzb/"
+				length="290345118" type="application/x-nzb" />
+      <pubDate>Mon, 25 Apr 2011 11:47:55 GMT</pubDate>
+    </item>
+    <item>
+      <title>Braceface - 1x01 - Brace Yourself</title>
+      <guid isPermaLink="true">http://www.newzbin.com/browse/post/6076271/</guid>
+      <link>http://www.newzbin.com/browse/post/6076271/</link>
+      <comments>http://www.newzbin.com/browse/post/6076271/#CommentsPH</comments>
+      <description>
+        <![CDATA[
+			<ul>
+			<li>
+			ID: <a href="http://www.newzbin.com/browse/post/6076271">6076271</a>
+			(<a
+			href="http://www.newzbin.com/account/bookmarks/add/?ps_id=6076271">Bookmark</a>)
+			(<a href="http://www.newzbin.com/browse/post/6076271/nzb/">NZB</a>)
+			(<a href="http://www.newzbin.com/nfo/view/txt/375353364/">NFO</a>)
+			(<a href="http://www.tvrage.com/shows/id-2888/episodes/26557/1x01/">More Info</a>)
+			(Size: 276.8MB)
+			</li>
+			<li>
+				Attributes:
+				Category - TV
+				|  Video Source - DVD |  Video Format - XviD |  Video Genre - Animation |  Language - German
+			</li>
+			<li>Groups:  alt.binaries.illuminaten</li>
+			<li>Poster: AuToMaTiC &#60;AuTo@Illuminatenboard.org&#62;</li>
+			<li>PostDate: Friday 11 Mar 2011, 02:07PM PDT</li>
+			</ul>			]]>
+      </description>
+      <report:id>6076271</report:id>
+      <report:category>TV</report:category>
+      <report:attributes>
+        <report:attribute type="Source">DVD</report:attribute>
+        <report:attribute type="Video Fmt">XviD</report:attribute>
+        <report:attribute type="Video Genre">Animation</report:attribute>
+        <report:attribute type="Language">German</report:attribute>
+      </report:attributes>
+      <report:groups>
+        <report:group>alt.binaries.illuminaten</report:group>
+      </report:groups>
+      <report:progress value="1">Report is complete</report:progress>
+      <report:moreinfo>http://www.tvrage.com/shows/id-2888/episodes/26557/1x01/</report:moreinfo>
+      <report:nfo>
+        <report:fileid>375353364</report:fileid>
+        <report:filename>tvp-brace-s01e01-xvid.nfo</report:filename>
+        <report:link>http://www.newzbin.com/nfo/view/txt/375353364/</report:link>
+      </report:nfo>
+      <report:nzb>http://www.newzbin.com/browse/post/6076271/nzb/</report:nzb>
+      <report:poster>AuToMaTiC &#60;AuTo@Illuminatenboard.org&#62;</report:poster>
+      <report:size type="bytes">290293303</report:size>
+      <report:postdate>Fri, 11 Mar 2011 22:07:47 GMT</report:postdate>
+      <report:stats>
+        <report:views>2</report:views>
+        <report:comments>0</report:comments>
+      </report:stats>
+      <enclosure url="http://www.newzbin.com/browse/post/6076271/nzb/"
+				length="290293303" type="application/x-nzb" />
+      <pubDate>Mon, 25 Apr 2011 11:47:38 GMT</pubDate>
+    </item>
+    <item>
+      <title>Law &#38; Order - 20x10 - Shotgun</title>
+      <guid isPermaLink="true">http://www.newzbin.com/browse/post/6076269/</guid>
+      <link>http://www.newzbin.com/browse/post/6076269/</link>
+      <comments>http://www.newzbin.com/browse/post/6076269/#CommentsPH</comments>
+      <description>
+        <![CDATA[
+			<ul>
+			<li>
+			ID: <a href="http://www.newzbin.com/browse/post/6076269">6076269</a>
+			(<a
+			href="http://www.newzbin.com/account/bookmarks/add/?ps_id=6076269">Bookmark</a>)
+			(<a href="http://www.newzbin.com/browse/post/6076269/nzb/">NZB</a>)
+			(<a href="http://www.newzbin.com/nfo/view/txt/375302935/">NFO</a>)
+			(<a href="http://www.tvrage.com/Law_And_Order/episodes/1064871705/20x10/">More Info</a>)
+			(Size: 1,292.0MB)
+			</li>
+			<li>
+				Attributes:
+				Category - TV
+				|  Video Source - TV Cap, HDTV |  Video Format - x264, 720p |  Video Genre - Action/Adv, Crime, Drama |  Language - German
+			</li>
+			<li>Groups:  alt.binaries.illuminaten</li>
+			<li>Poster: AuToMaTiC &#60;AuTo@Illuminatenboard.org&#62;</li>
+			<li>PostDate: Friday 11 Mar 2011, 09:25AM PDT</li>
+			</ul>			]]>
+      </description>
+      <report:id>6076269</report:id>
+      <report:category>TV</report:category>
+      <report:attributes>
+        <report:attribute type="Source">TV Cap</report:attribute>
+        <report:attribute type="Source">HDTV</report:attribute>
+        <report:attribute type="Video Fmt">x264</report:attribute>
+        <report:attribute type="Video Fmt">720p</report:attribute>
+        <report:attribute type="Video Genre">Action/Adv</report:attribute>
+        <report:attribute type="Video Genre">Crime</report:attribute>
+        <report:attribute type="Video Genre">Drama</report:attribute>
+        <report:attribute type="Language">German</report:attribute>
+      </report:attributes>
+      <report:groups>
+        <report:group>alt.binaries.illuminaten</report:group>
+      </report:groups>
+      <report:progress value="1">Report is complete</report:progress>
+      <report:moreinfo>http://www.tvrage.com/Law_And_Order/episodes/1064871705/20x10/</report:moreinfo>
+      <report:nfo>
+        <report:fileid>375302935</report:fileid>
+        <report:filename>tvp-lawandorder-s20e10-720p.nfo</report:filename>
+        <report:link>http://www.newzbin.com/nfo/view/txt/375302935/</report:link>
+      </report:nfo>
+      <report:nzb>http://www.newzbin.com/browse/post/6076269/nzb/</report:nzb>
+      <report:poster>AuToMaTiC &#60;AuTo@Illuminatenboard.org&#62;</report:poster>
+      <report:size type="bytes">1354781182</report:size>
+      <report:postdate>Fri, 11 Mar 2011 17:25:12 GMT</report:postdate>
+      <report:stats>
+        <report:views>2</report:views>
+        <report:comments>0</report:comments>
+      </report:stats>
+      <enclosure url="http://www.newzbin.com/browse/post/6076269/nzb/"
+				length="1354781182" type="application/x-nzb" />
+      <pubDate>Mon, 25 Apr 2011 11:46:48 GMT</pubDate>
+    </item>
+    <item>
+      <title>Rookie Blue - 1x11 - To Serve or Protect</title>
+      <guid isPermaLink="true">http://www.newzbin.com/browse/post/6076268/</guid>
+      <link>http://www.newzbin.com/browse/post/6076268/</link>
+      <comments>http://www.newzbin.com/browse/post/6076268/#CommentsPH</comments>
+      <description>
+        <![CDATA[
+			<ul>
+			<li>
+			ID: <a href="http://www.newzbin.com/browse/post/6076268">6076268</a>
+			(<a
+			href="http://www.newzbin.com/account/bookmarks/add/?ps_id=6076268">Bookmark</a>)
+			(<a href="http://www.newzbin.com/browse/post/6076268/nzb/">NZB</a>)
+			(<a href="http://www.newzbin.com/nfo/view/txt/375624993/">NFO</a>)
+			(<a href="http://www.tvrage.com/Rookie_Blue/episodes/1064943068/1x11/">More Info</a>)
+			(Size: 1,373.9MB)
+			</li>
+			<li>
+				Attributes:
+				Category - TV
+				|  Video Source - TV Cap, HDTV |  Video Format - x264, 720p |  Video Genre - Action/Adv, Crime, Drama, Family |  Language - German
+			</li>
+			<li>Groups:  alt.binaries.illuminaten</li>
+			<li>Poster: AuToMaTiC &#60;AuTo@Illuminatenboard.org&#62;</li>
+			<li>PostDate: Saturday 12 Mar 2011, 02:38PM PDT</li>
+			</ul>			]]>
+      </description>
+      <report:id>6076268</report:id>
+      <report:category>TV</report:category>
+      <report:attributes>
+        <report:attribute type="Source">TV Cap</report:attribute>
+        <report:attribute type="Source">HDTV</report:attribute>
+        <report:attribute type="Video Fmt">x264</report:attribute>
+        <report:attribute type="Video Fmt">720p</report:attribute>
+        <report:attribute type="Video Genre">Action/Adv</report:attribute>
+        <report:attribute type="Video Genre">Crime</report:attribute>
+        <report:attribute type="Video Genre">Drama</report:attribute>
+        <report:attribute type="Video Genre">Family</report:attribute>
+        <report:attribute type="Language">German</report:attribute>
+      </report:attributes>
+      <report:groups>
+        <report:group>alt.binaries.illuminaten</report:group>
+      </report:groups>
+      <report:progress value="1">Report is complete</report:progress>
+      <report:moreinfo>http://www.tvrage.com/Rookie_Blue/episodes/1064943068/1x11/</report:moreinfo>
+      <report:nfo>
+        <report:fileid>375624993</report:fileid>
+        <report:filename>tvp-rookie-s01e11-720p.nfo</report:filename>
+        <report:link>http://www.newzbin.com/nfo/view/txt/375624993/</report:link>
+      </report:nfo>
+      <report:nzb>http://www.newzbin.com/browse/post/6076268/nzb/</report:nzb>
+      <report:poster>AuToMaTiC &#60;AuTo@Illuminatenboard.org&#62;</report:poster>
+      <report:size type="bytes">1440609615</report:size>
+      <report:postdate>Sat, 12 Mar 2011 22:38:24 GMT</report:postdate>
+      <report:stats>
+        <report:views>2</report:views>
+        <report:comments>0</report:comments>
+      </report:stats>
+      <enclosure url="http://www.newzbin.com/browse/post/6076268/nzb/"
+				length="1440609615" type="application/x-nzb" />
+      <pubDate>Mon, 25 Apr 2011 11:46:00 GMT</pubDate>
+    </item>
+    <item>
+      <title>Rookie Blue - 1x11 - To Serve or Protect</title>
+      <guid isPermaLink="true">http://www.newzbin.com/browse/post/6076267/</guid>
+      <link>http://www.newzbin.com/browse/post/6076267/</link>
+      <comments>http://www.newzbin.com/browse/post/6076267/#CommentsPH</comments>
+      <description>
+        <![CDATA[
+			<ul>
+			<li>
+			ID: <a href="http://www.newzbin.com/browse/post/6076267">6076267</a>
+			(<a
+			href="http://www.newzbin.com/account/bookmarks/add/?ps_id=6076267">Bookmark</a>)
+			(<a href="http://www.newzbin.com/browse/post/6076267/nzb/">NZB</a>)
+			(<a href="http://www.newzbin.com/nfo/view/txt/375626369/">NFO</a>)
+			(<a href="http://www.tvrage.com/Rookie_Blue/episodes/1064943068/1x11/">More Info</a>)
+			(Size: 409.0MB)
+			</li>
+			<li>
+				Attributes:
+				Category - TV
+				|  Video Source - TV Cap, HDTV |  Video Format - XviD |  Video Genre - Action/Adv, Crime, Drama, Family |  Language - German
+			</li>
+			<li>Groups:  alt.binaries.illuminaten</li>
+			<li>Poster: AuToMaTiC &#60;AuTo@Illuminatenboard.org&#62;</li>
+			<li>PostDate: Saturday 12 Mar 2011, 02:47PM PDT</li>
+			</ul>			]]>
+      </description>
+      <report:id>6076267</report:id>
+      <report:category>TV</report:category>
+      <report:attributes>
+        <report:attribute type="Source">TV Cap</report:attribute>
+        <report:attribute type="Source">HDTV</report:attribute>
+        <report:attribute type="Video Fmt">XviD</report:attribute>
+        <report:attribute type="Video Genre">Action/Adv</report:attribute>
+        <report:attribute type="Video Genre">Crime</report:attribute>
+        <report:attribute type="Video Genre">Drama</report:attribute>
+        <report:attribute type="Video Genre">Family</report:attribute>
+        <report:attribute type="Language">German</report:attribute>
+      </report:attributes>
+      <report:groups>
+        <report:group>alt.binaries.illuminaten</report:group>
+      </report:groups>
+      <report:progress value="1">Report is complete</report:progress>
+      <report:moreinfo>http://www.tvrage.com/Rookie_Blue/episodes/1064943068/1x11/</report:moreinfo>
+      <report:nfo>
+        <report:fileid>375626369</report:fileid>
+        <report:filename>tvp-rookie-s01e11-xvid.nfo</report:filename>
+        <report:link>http://www.newzbin.com/nfo/view/txt/375626369/</report:link>
+      </report:nfo>
+      <report:nzb>http://www.newzbin.com/browse/post/6076267/nzb/</report:nzb>
+      <report:poster>AuToMaTiC &#60;AuTo@Illuminatenboard.org&#62;</report:poster>
+      <report:size type="bytes">428854729</report:size>
+      <report:postdate>Sat, 12 Mar 2011 22:47:46 GMT</report:postdate>
+      <report:stats>
+        <report:views>2</report:views>
+        <report:comments>0</report:comments>
+      </report:stats>
+      <enclosure url="http://www.newzbin.com/browse/post/6076267/nzb/"
+				length="428854729" type="application/x-nzb" />
+      <pubDate>Mon, 25 Apr 2011 11:45:34 GMT</pubDate>
+    </item>
+    <item>
+      <title>Law &#38; Order - 20x10 - Shotgun</title>
+      <guid isPermaLink="true">http://www.newzbin.com/browse/post/6076263/</guid>
+      <link>http://www.newzbin.com/browse/post/6076263/</link>
+      <comments>http://www.newzbin.com/browse/post/6076263/#CommentsPH</comments>
+      <description>
+        <![CDATA[
+			<ul>
+			<li>
+			ID: <a href="http://www.newzbin.com/browse/post/6076263">6076263</a>
+			(<a
+			href="http://www.newzbin.com/account/bookmarks/add/?ps_id=6076263">Bookmark</a>)
+			(<a href="http://www.newzbin.com/browse/post/6076263/nzb/">NZB</a>)
+			(<a href="http://www.newzbin.com/nfo/view/txt/375353661/">NFO</a>)
+			(<a href="http://www.tvrage.com/Law_And_Order/episodes/1064871705/20x10/">More Info</a>)
+			(Size: 411.5MB)
+			</li>
+			<li>
+				Attributes:
+				Category - TV
+				|  Video Source - TV Cap, HDTV |  Video Format - XviD |  Video Genre - Action/Adv, Crime, Drama |  Language - German
+			</li>
+			<li>Groups:  alt.binaries.illuminaten</li>
+			<li>Poster: AuToMaTiC &#60;AuTo@Illuminatenboard.org&#62;</li>
+			<li>PostDate: Friday 11 Mar 2011, 02:11PM PDT</li>
+			</ul>			]]>
+      </description>
+      <report:id>6076263</report:id>
+      <report:category>TV</report:category>
+      <report:attributes>
+        <report:attribute type="Source">TV Cap</report:attribute>
+        <report:attribute type="Source">HDTV</report:attribute>
+        <report:attribute type="Video Fmt">XviD</report:attribute>
+        <report:attribute type="Video Genre">Action/Adv</report:attribute>
+        <report:attribute type="Video Genre">Crime</report:attribute>
+        <report:attribute type="Video Genre">Drama</report:attribute>
+        <report:attribute type="Language">German</report:attribute>
+      </report:attributes>
+      <report:groups>
+        <report:group>alt.binaries.illuminaten</report:group>
+      </report:groups>
+      <report:progress value="1">Report is complete</report:progress>
+      <report:moreinfo>http://www.tvrage.com/Law_And_Order/episodes/1064871705/20x10/</report:moreinfo>
+      <report:nfo>
+        <report:fileid>375353661</report:fileid>
+        <report:filename>tvp-lawandorder-s20e10-xvid.nfo</report:filename>
+        <report:link>http://www.newzbin.com/nfo/view/txt/375353661/</report:link>
+      </report:nfo>
+      <report:nzb>http://www.newzbin.com/browse/post/6076263/nzb/</report:nzb>
+      <report:poster>AuToMaTiC &#60;AuTo@Illuminatenboard.org&#62;</report:poster>
+      <report:size type="bytes">431534203</report:size>
+      <report:postdate>Fri, 11 Mar 2011 22:11:40 GMT</report:postdate>
+      <report:stats>
+        <report:views>3</report:views>
+        <report:comments>0</report:comments>
+      </report:stats>
+      <enclosure url="http://www.newzbin.com/browse/post/6076263/nzb/"
+				length="431534203" type="application/x-nzb" />
+      <pubDate>Mon, 25 Apr 2011 11:33:55 GMT</pubDate>
+    </item>
+    <item>
+      <title>American Pickers - 1x08 - 5 Acres of Junk</title>
+      <guid isPermaLink="true">http://www.newzbin.com/browse/post/6076261/</guid>
+      <link>http://www.newzbin.com/browse/post/6076261/</link>
+      <comments>http://www.newzbin.com/browse/post/6076261/#CommentsPH</comments>
+      <description>
+        <![CDATA[
+			<ul>
+			<li>
+			ID: <a href="http://www.newzbin.com/browse/post/6076261">6076261</a>
+			(<a
+			href="http://www.newzbin.com/account/bookmarks/add/?ps_id=6076261">Bookmark</a>)
+			(<a href="http://www.newzbin.com/browse/post/6076261/nzb/">NZB</a>)
+			(<a href="http://www.newzbin.com/nfo/view/txt/375898215/">NFO</a>)
+			(<a href="http://www.tvrage.com/shows/id-24796/episodes/1064905054/1x08/">More Info</a>)
+			(Size: 421.0MB)
+			</li>
+			<li>
+				Attributes:
+				Category - TV
+				|  Video Source - DVD |  Video Format - XviD |  Video Genre - Family, Reality |  Language - German
+			</li>
+			<li>Groups:  alt.binaries.illuminaten</li>
+			<li>Poster: AuToMaTiC &#60;AuTo@Illuminatenboard.org&#62;</li>
+			<li>PostDate: Sunday 13 Mar 2011, 09:49AM PDT</li>
+			</ul>			]]>
+      </description>
+      <report:id>6076261</report:id>
+      <report:category>TV</report:category>
+      <report:attributes>
+        <report:attribute type="Source">DVD</report:attribute>
+        <report:attribute type="Video Fmt">XviD</report:attribute>
+        <report:attribute type="Video Genre">Family</report:attribute>
+        <report:attribute type="Video Genre">Reality</report:attribute>
+        <report:attribute type="Language">German</report:attribute>
+      </report:attributes>
+      <report:groups>
+        <report:group>alt.binaries.illuminaten</report:group>
+      </report:groups>
+      <report:progress value="1">Report is complete</report:progress>
+      <report:moreinfo>http://www.tvrage.com/shows/id-24796/episodes/1064905054/1x08/</report:moreinfo>
+      <report:nfo>
+        <report:fileid>375898215</report:fileid>
+        <report:filename>tvp-americanpickers-s01e08.nfo</report:filename>
+        <report:link>http://www.newzbin.com/nfo/view/txt/375898215/</report:link>
+      </report:nfo>
+      <report:nzb>http://www.newzbin.com/browse/post/6076261/nzb/</report:nzb>
+      <report:poster>AuToMaTiC &#60;AuTo@Illuminatenboard.org&#62;</report:poster>
+      <report:size type="bytes">441460492</report:size>
+      <report:postdate>Sun, 13 Mar 2011 16:49:50 GMT</report:postdate>
+      <report:stats>
+        <report:views>2</report:views>
+        <report:comments>0</report:comments>
+      </report:stats>
+      <enclosure url="http://www.newzbin.com/browse/post/6076261/nzb/"
+				length="441460492" type="application/x-nzb" />
+      <pubDate>Mon, 25 Apr 2011 11:33:18 GMT</pubDate>
+    </item>
+    <item>
+      <title>Danni Lowinski - 2x01 - Um die Wurst</title>
+      <guid isPermaLink="true">http://www.newzbin.com/browse/post/6076258/</guid>
+      <link>http://www.newzbin.com/browse/post/6076258/</link>
+      <comments>http://www.newzbin.com/browse/post/6076258/#CommentsPH</comments>
+      <description>
+        <![CDATA[
+			<ul>
+			<li>
+			ID: <a href="http://www.newzbin.com/browse/post/6076258">6076258</a>
+			(<a
+			href="http://www.newzbin.com/account/bookmarks/add/?ps_id=6076258">Bookmark</a>)
+			(<a href="http://www.newzbin.com/browse/post/6076258/nzb/">NZB</a>)
+			(<a href="http://www.newzbin.com/nfo/view/txt/376607558/">NFO</a>)
+			(<a href="http://www.tvrage.com/shows/id-26800/episodes/1065022051/2x01/">More Info</a>)
+			(Size: 410.2MB)
+			</li>
+			<li>
+				Attributes:
+				Category - TV
+				|  Video Source - TV Cap |  Video Format - XviD |  Video Genre - Comedy, Crime, Drama |  Language - German
+			</li>
+			<li>Groups:  alt.binaries.illuminaten</li>
+			<li>Poster: AuToMaTiC &#60;AuTo@Illuminatenboard.org&#62;</li>
+			<li>PostDate: Monday 14 Mar 2011, 11:56PM PDT</li>
+			</ul>			]]>
+      </description>
+      <report:id>6076258</report:id>
+      <report:category>TV</report:category>
+      <report:attributes>
+        <report:attribute type="Source">TV Cap</report:attribute>
+        <report:attribute type="Video Fmt">XviD</report:attribute>
+        <report:attribute type="Video Genre">Comedy</report:attribute>
+        <report:attribute type="Video Genre">Crime</report:attribute>
+        <report:attribute type="Video Genre">Drama</report:attribute>
+        <report:attribute type="Language">German</report:attribute>
+      </report:attributes>
+      <report:groups>
+        <report:group>alt.binaries.illuminaten</report:group>
+      </report:groups>
+      <report:progress value="1">Report is complete</report:progress>
+      <report:moreinfo>http://www.tvrage.com/shows/id-26800/episodes/1065022051/2x01/</report:moreinfo>
+      <report:nfo>
+        <report:fileid>376607558</report:fileid>
+        <report:filename>tvp-lowinski-s01e01-xvid.nfo</report:filename>
+        <report:link>http://www.newzbin.com/nfo/view/txt/376607558/</report:link>
+      </report:nfo>
+      <report:nzb>http://www.newzbin.com/browse/post/6076258/nzb/</report:nzb>
+      <report:poster>AuToMaTiC &#60;AuTo@Illuminatenboard.org&#62;</report:poster>
+      <report:size type="bytes">430079171</report:size>
+      <report:postdate>Tue, 15 Mar 2011 06:56:45 GMT</report:postdate>
+      <report:stats>
+        <report:views>2</report:views>
+        <report:comments>0</report:comments>
+      </report:stats>
+      <enclosure url="http://www.newzbin.com/browse/post/6076258/nzb/"
+				length="430079171" type="application/x-nzb" />
+      <pubDate>Mon, 25 Apr 2011 11:32:30 GMT</pubDate>
+    </item>
+    <item>
+      <title>Glee - 1x10 - Ballad</title>
+      <guid isPermaLink="true">http://www.newzbin.com/browse/post/6076253/</guid>
+      <link>http://www.newzbin.com/browse/post/6076253/</link>
+      <comments>http://www.newzbin.com/browse/post/6076253/#CommentsPH</comments>
+      <description>
+        <![CDATA[
+			<ul>
+			<li>
+			ID: <a href="http://www.newzbin.com/browse/post/6076253">6076253</a>
+			(<a
+			href="http://www.newzbin.com/account/bookmarks/add/?ps_id=6076253">Bookmark</a>)
+			(<a href="http://www.newzbin.com/browse/post/6076253/nzb/">NZB</a>)
+			(<a href="http://www.newzbin.com/nfo/view/txt/376740475/">NFO</a>)
+			(<a href="http://www.tvrage.com/Glee/episodes/1064852788/">More Info</a>)
+			(Size: 2,197.8MB)
+			</li>
+			<li>
+				Attributes:
+				Category - TV
+				|  Video Source - Blu-ray |  Video Format - x264, 720p |  Video Genre - Comedy |  Language - English, German
+			</li>
+			<li>Groups:  alt.binaries.illuminaten</li>
+			<li>Poster: AuToMaTiC &#60;AuTo@Illuminatenboard.org&#62;</li>
+			<li>PostDate: Tuesday 15 Mar 2011, 12:14PM PDT</li>
+			</ul>			]]>
+      </description>
+      <report:id>6076253</report:id>
+      <report:category>TV</report:category>
+      <report:attributes>
+        <report:attribute type="Source">Blu-ray</report:attribute>
+        <report:attribute type="Video Fmt">x264</report:attribute>
+        <report:attribute type="Video Fmt">720p</report:attribute>
+        <report:attribute type="Video Genre">Comedy</report:attribute>
+        <report:attribute type="Language">English</report:attribute>
+        <report:attribute type="Language">German</report:attribute>
+      </report:attributes>
+      <report:groups>
+        <report:group>alt.binaries.illuminaten</report:group>
+      </report:groups>
+      <report:progress value="1">Report is complete</report:progress>
+      <report:moreinfo>http://www.tvrage.com/Glee/episodes/1064852788/</report:moreinfo>
+      <report:nfo>
+        <report:fileid>376740475</report:fileid>
+        <report:filename>tvp-glee-s01e10-720p.nfo</report:filename>
+        <report:link>http://www.newzbin.com/nfo/view/txt/376740475/</report:link>
+      </report:nfo>
+      <report:nzb>http://www.newzbin.com/browse/post/6076253/nzb/</report:nzb>
+      <report:poster>AuToMaTiC &#60;AuTo@Illuminatenboard.org&#62;</report:poster>
+      <report:size type="bytes">2304569923</report:size>
+      <report:postdate>Tue, 15 Mar 2011 19:14:58 GMT</report:postdate>
+      <report:stats>
+        <report:views>2</report:views>
+        <report:comments>0</report:comments>
+      </report:stats>
+      <enclosure url="http://www.newzbin.com/browse/post/6076253/nzb/"
+				length="2304569923" type="application/x-nzb" />
+      <pubDate>Mon, 25 Apr 2011 11:27:58 GMT</pubDate>
+    </item>
+    <item>
+      <title>Man, Woman, Wild - 1x06 - Utah</title>
+      <guid isPermaLink="true">http://www.newzbin.com/browse/post/6076252/</guid>
+      <link>http://www.newzbin.com/browse/post/6076252/</link>
+      <comments>http://www.newzbin.com/browse/post/6076252/#CommentsPH</comments>
+      <description>
+        <![CDATA[
+			<ul>
+			<li>
+			ID: <a href="http://www.newzbin.com/browse/post/6076252">6076252</a>
+			(<a
+			href="http://www.newzbin.com/account/bookmarks/add/?ps_id=6076252">Bookmark</a>)
+			(<a href="http://www.newzbin.com/browse/post/6076252/nzb/">NZB</a>)
+			(<a href="http://www.newzbin.com/nfo/view/txt/376207951/">NFO</a>)
+			(<a href="http://www.tvrage.com/shows/id-25983/episodes/1064960862/1x06/">More Info</a>)
+			(Size: 410.9MB)
+			</li>
+			<li>
+				Attributes:
+				Category - TV
+				|  Video Source - TV Cap |  Video Format - XviD |  Video Genre - Family, Reality |  Language - German
+			</li>
+			<li>Groups:  alt.binaries.illuminaten</li>
+			<li>Poster: AuToMaTiC &#60;AuTo@Illuminatenboard.org&#62;</li>
+			<li>PostDate: Monday 14 Mar 2011, 04:33AM PDT</li>
+			</ul>			]]>
+      </description>
+      <report:id>6076252</report:id>
+      <report:category>TV</report:category>
+      <report:attributes>
+        <report:attribute type="Source">TV Cap</report:attribute>
+        <report:attribute type="Video Fmt">XviD</report:attribute>
+        <report:attribute type="Video Genre">Family</report:attribute>
+        <report:attribute type="Video Genre">Reality</report:attribute>
+        <report:attribute type="Language">German</report:attribute>
+      </report:attributes>
+      <report:groups>
+        <report:group>alt.binaries.illuminaten</report:group>
+      </report:groups>
+      <report:progress value="1">Report is complete</report:progress>
+      <report:moreinfo>http://www.tvrage.com/shows/id-25983/episodes/1064960862/1x06/</report:moreinfo>
+      <report:nfo>
+        <report:fileid>376207951</report:fileid>
+        <report:filename>tvp-frauwild-s01e06.nfo</report:filename>
+        <report:link>http://www.newzbin.com/nfo/view/txt/376207951/</report:link>
+      </report:nfo>
+      <report:nzb>http://www.newzbin.com/browse/post/6076252/nzb/</report:nzb>
+      <report:poster>AuToMaTiC &#60;AuTo@Illuminatenboard.org&#62;</report:poster>
+      <report:size type="bytes">430906335</report:size>
+      <report:postdate>Mon, 14 Mar 2011 11:33:14 GMT</report:postdate>
+      <report:stats>
+        <report:views>2</report:views>
+        <report:comments>0</report:comments>
+      </report:stats>
+      <enclosure url="http://www.newzbin.com/browse/post/6076252/nzb/"
+				length="430906335" type="application/x-nzb" />
+      <pubDate>Mon, 25 Apr 2011 11:27:34 GMT</pubDate>
+    </item>
+    <item>
+      <title>Law &#38; Order: Special Victims Unit - 11x11 - Quickie</title>
+      <guid isPermaLink="true">http://www.newzbin.com/browse/post/6076249/</guid>
+      <link>http://www.newzbin.com/browse/post/6076249/</link>
+      <comments>http://www.newzbin.com/browse/post/6076249/#CommentsPH</comments>
+      <description>
+        <![CDATA[
+			<ul>
+			<li>
+			ID: <a href="http://www.newzbin.com/browse/post/6076249">6076249</a>
+			(<a
+			href="http://www.newzbin.com/account/bookmarks/add/?ps_id=6076249">Bookmark</a>)
+			(<a href="http://www.newzbin.com/browse/post/6076249/nzb/">NZB</a>)
+			(<a href="http://www.newzbin.com/nfo/view/txt/377314191/">NFO</a>)
+			(<a href="http://www.tvrage.com/Law_And_Order_SVU/episodes/1064882720/">More Info</a>)
+			(Size: 1,287.0MB)
+			</li>
+			<li>
+				Attributes:
+				Category - TV
+				|  Video Source - TV Cap, HDTV |  Video Format - x264, 720p |  Video Genre - Action/Adv, Crime, Drama |  Language - German
+			</li>
+			<li>Groups:  alt.binaries.illuminaten</li>
+			<li>Poster: AuToMaTiC &#60;AuTo@Illuminatenboard.org&#62;</li>
+			<li>PostDate: Thursday 17 Mar 2011, 01:00PM PDT</li>
+			</ul>			]]>
+      </description>
+      <report:id>6076249</report:id>
+      <report:category>TV</report:category>
+      <report:attributes>
+        <report:attribute type="Source">TV Cap</report:attribute>
+        <report:attribute type="Source">HDTV</report:attribute>
+        <report:attribute type="Video Fmt">x264</report:attribute>
+        <report:attribute type="Video Fmt">720p</report:attribute>
+        <report:attribute type="Video Genre">Action/Adv</report:attribute>
+        <report:attribute type="Video Genre">Crime</report:attribute>
+        <report:attribute type="Video Genre">Drama</report:attribute>
+        <report:attribute type="Language">German</report:attribute>
+      </report:attributes>
+      <report:groups>
+        <report:group>alt.binaries.illuminaten</report:group>
+      </report:groups>
+      <report:progress value="1">Report is complete</report:progress>
+      <report:moreinfo>http://www.tvrage.com/Law_And_Order_SVU/episodes/1064882720/</report:moreinfo>
+      <report:nfo>
+        <report:fileid>377314191</report:fileid>
+        <report:filename>tvp-lawandorderny-s01e11-720p.nfo</report:filename>
+        <report:link>http://www.newzbin.com/nfo/view/txt/377314191/</report:link>
+      </report:nfo>
+      <report:nzb>http://www.newzbin.com/browse/post/6076249/nzb/</report:nzb>
+      <report:poster>AuToMaTiC &#60;AuTo@Illuminatenboard.org&#62;</report:poster>
+      <report:size type="bytes">1349563899</report:size>
+      <report:postdate>Thu, 17 Mar 2011 20:00:28 GMT</report:postdate>
+      <report:stats>
+        <report:views>2</report:views>
+        <report:comments>0</report:comments>
+      </report:stats>
+      <enclosure url="http://www.newzbin.com/browse/post/6076249/nzb/"
+				length="1349563899" type="application/x-nzb" />
+      <pubDate>Mon, 25 Apr 2011 11:23:39 GMT</pubDate>
+    </item>
+    <item>
+      <title>ESPN Classic - An Audience with Muhammad Ali</title>
+      <guid isPermaLink="true">http://www.newzbin.com/browse/post/6076248/</guid>
+      <link>http://www.newzbin.com/browse/post/6076248/</link>
+      <comments>http://www.newzbin.com/browse/post/6076248/#CommentsPH</comments>
+      <description>
+        <![CDATA[
+			<ul>
+			<li>
+			ID: <a href="http://www.newzbin.com/browse/post/6076248">6076248</a>
+			(<a
+			href="http://www.newzbin.com/account/bookmarks/add/?ps_id=6076248">Bookmark</a>)
+			(<a href="http://www.newzbin.com/browse/post/6076248/nzb/">NZB</a>)
+			(NFO)
+			(More Info)
+			(Size: 464.7MB)
+			</li>
+			<li>
+				Attributes:
+				Category - TV
+				|  Video Source - TV Cap |  Video Format - XviD |  Video Genre - Sport |  Language - English |  Subtitled Language - English
+			</li>
+			<li>Groups:  alt.binaries.movies.divx</li>
+			<li>Poster: demotic &#60;likeimtelling@yahoo.com&#62;</li>
+			<li>PostDate: Monday 25 Apr 2011, 01:08AM PDT</li>
+			</ul>			]]>
+      </description>
+      <report:id>6076248</report:id>
+      <report:category>TV</report:category>
+      <report:attributes>
+        <report:attribute type="Source">TV Cap</report:attribute>
+        <report:attribute type="Video Fmt">XviD</report:attribute>
+        <report:attribute type="Video Genre">Sport</report:attribute>
+        <report:attribute type="Language">English</report:attribute>
+        <report:attribute type="Subtitles">English</report:attribute>
+      </report:attributes>
+      <report:groups>
+        <report:group>alt.binaries.movies.divx</report:group>
+      </report:groups>
+      <report:progress value="1">Report is complete</report:progress>
+      <report:moreinfo></report:moreinfo>
+      <report:nfo>
+        <report:fileid>0</report:fileid>
+        <report:filename></report:filename>
+        <report:link></report:link>
+      </report:nfo>
+      <report:nzb>http://www.newzbin.com/browse/post/6076248/nzb/</report:nzb>
+      <report:poster>demotic &#60;likeimtelling@yahoo.com&#62;</report:poster>
+      <report:size type="bytes">487231741</report:size>
+      <report:postdate>Mon, 25 Apr 2011 08:08:26 GMT</report:postdate>
+      <report:stats>
+        <report:views>6</report:views>
+        <report:comments>0</report:comments>
+      </report:stats>
+      <enclosure url="http://www.newzbin.com/browse/post/6076248/nzb/"
+				length="487231741" type="application/x-nzb" />
+      <pubDate>Mon, 25 Apr 2011 11:23:20 GMT</pubDate>
+    </item>
+    <item>
+      <title>Law &#38; Order: Special Victims Unit - 11x11 - Quickie</title>
+      <guid isPermaLink="true">http://www.newzbin.com/browse/post/6076247/</guid>
+      <link>http://www.newzbin.com/browse/post/6076247/</link>
+      <comments>http://www.newzbin.com/browse/post/6076247/#CommentsPH</comments>
+      <description>
+        <![CDATA[
+			<ul>
+			<li>
+			ID: <a href="http://www.newzbin.com/browse/post/6076247">6076247</a>
+			(<a
+			href="http://www.newzbin.com/account/bookmarks/add/?ps_id=6076247">Bookmark</a>)
+			(<a href="http://www.newzbin.com/browse/post/6076247/nzb/">NZB</a>)
+			(<a href="http://www.newzbin.com/nfo/view/txt/377314398/">NFO</a>)
+			(<a href="http://www.tvrage.com/Law_And_Order_SVU/episodes/1064882720/11x11/">More Info</a>)
+			(Size: 409.9MB)
+			</li>
+			<li>
+				Attributes:
+				Category - TV
+				|  Video Source - TV Cap, HDTV |  Video Format - XviD |  Video Genre - Action/Adv, Crime, Drama |  Language - German
+			</li>
+			<li>Groups:  alt.binaries.illuminaten</li>
+			<li>Poster: AuToMaTiC &#60;AuTo@Illuminatenboard.org&#62;</li>
+			<li>PostDate: Thursday 17 Mar 2011, 01:06PM PDT</li>
+			</ul>			]]>
+      </description>
+      <report:id>6076247</report:id>
+      <report:category>TV</report:category>
+      <report:attributes>
+        <report:attribute type="Source">TV Cap</report:attribute>
+        <report:attribute type="Source">HDTV</report:attribute>
+        <report:attribute type="Video Fmt">XviD</report:attribute>
+        <report:attribute type="Video Genre">Action/Adv</report:attribute>
+        <report:attribute type="Video Genre">Crime</report:attribute>
+        <report:attribute type="Video Genre">Drama</report:attribute>
+        <report:attribute type="Language">German</report:attribute>
+      </report:attributes>
+      <report:groups>
+        <report:group>alt.binaries.illuminaten</report:group>
+      </report:groups>
+      <report:progress value="1">Report is complete</report:progress>
+      <report:moreinfo>http://www.tvrage.com/Law_And_Order_SVU/episodes/1064882720/11x11/</report:moreinfo>
+      <report:nfo>
+        <report:fileid>377314398</report:fileid>
+        <report:filename>tvp-lawandorderny-s01e11-xvid.nfo</report:filename>
+        <report:link>http://www.newzbin.com/nfo/view/txt/377314398/</report:link>
+      </report:nfo>
+      <report:nzb>http://www.newzbin.com/browse/post/6076247/nzb/</report:nzb>
+      <report:poster>AuToMaTiC &#60;AuTo@Illuminatenboard.org&#62;</report:poster>
+      <report:size type="bytes">429849596</report:size>
+      <report:postdate>Thu, 17 Mar 2011 20:06:05 GMT</report:postdate>
+      <report:stats>
+        <report:views>2</report:views>
+        <report:comments>0</report:comments>
+      </report:stats>
+      <enclosure url="http://www.newzbin.com/browse/post/6076247/nzb/"
+				length="429849596" type="application/x-nzb" />
+      <pubDate>Mon, 25 Apr 2011 11:23:01 GMT</pubDate>
+    </item>
+    <item>
+      <title>Saddle Ranch - 1x02 - Always Down To Party</title>
+      <guid isPermaLink="true">http://www.newzbin.com/browse/post/6076244/</guid>
+      <link>http://www.newzbin.com/browse/post/6076244/</link>
+      <comments>http://www.newzbin.com/browse/post/6076244/#CommentsPH</comments>
+      <description>
+        <![CDATA[
+			<ul>
+			<li>
+			ID: <a href="http://www.newzbin.com/browse/post/6076244">6076244</a>
+			(<a
+			href="http://www.newzbin.com/account/bookmarks/add/?ps_id=6076244">Bookmark</a>)
+			(<a href="http://www.newzbin.com/browse/post/6076244/nzb/">NZB</a>)
+			(<a href="http://www.newzbin.com/nfo/view/txt/389900592/">NFO</a>)
+			(<a href="http://www.tvrage.com/shows/id-27943/episodes/1065029531/">More Info</a>)
+			(Size: 640.1MB)
+			</li>
+			<li>
+				Attributes:
+				Category - TV
+				|  Video Source - TV Cap, HDTV |  Video Format - x264, 720p |  Video Genre - Family, Reality |  Language - English
+			</li>
+			<li>Groups:  alt.binaries.multimedia,  alt.binaries.teevee</li>
+			<li>Poster: teevee@4u.net (teevee)</li>
+			<li>PostDate: Monday 25 Apr 2011, 03:15AM PDT</li>
+			</ul>			]]>
+      </description>
+      <report:id>6076244</report:id>
+      <report:category>TV</report:category>
+      <report:attributes>
+        <report:attribute type="Source">TV Cap</report:attribute>
+        <report:attribute type="Source">HDTV</report:attribute>
+        <report:attribute type="Video Fmt">x264</report:attribute>
+        <report:attribute type="Video Fmt">720p</report:attribute>
+        <report:attribute type="Video Genre">Family</report:attribute>
+        <report:attribute type="Video Genre">Reality</report:attribute>
+        <report:attribute type="Language">English</report:attribute>
+      </report:attributes>
+      <report:groups>
+        <report:group>alt.binaries.multimedia</report:group>
+        <report:group>alt.binaries.teevee</report:group>
+      </report:groups>
+      <report:progress value="1">Report is complete</report:progress>
+      <report:moreinfo>http://www.tvrage.com/shows/id-27943/episodes/1065029531/</report:moreinfo>
+      <report:nfo>
+        <report:fileid>389900592</report:fileid>
+        <report:filename>saddle.ranch.s01e02.720p.hdtv.x264-momentum.nfo</report:filename>
+        <report:link>http://www.newzbin.com/nfo/view/txt/389900592/</report:link>
+      </report:nfo>
+      <report:nzb>http://www.newzbin.com/browse/post/6076244/nzb/</report:nzb>
+      <report:poster>teevee@4u.net (teevee)</report:poster>
+      <report:size type="bytes">671236473</report:size>
+      <report:postdate>Mon, 25 Apr 2011 10:15:13 GMT</report:postdate>
+      <report:stats>
+        <report:views>2</report:views>
+        <report:comments>0</report:comments>
+      </report:stats>
+      <enclosure url="http://www.newzbin.com/browse/post/6076244/nzb/"
+				length="671236473" type="application/x-nzb" />
+      <pubDate>Mon, 25 Apr 2011 11:22:07 GMT</pubDate>
+    </item>
+    <item>
+      <title>Saddle Ranch - 1x02 - Always Down To Party</title>
+      <guid isPermaLink="true">http://www.newzbin.com/browse/post/6076243/</guid>
+      <link>http://www.newzbin.com/browse/post/6076243/</link>
+      <comments>http://www.newzbin.com/browse/post/6076243/#CommentsPH</comments>
+      <description>
+        <![CDATA[
+			<ul>
+			<li>
+			ID: <a href="http://www.newzbin.com/browse/post/6076243">6076243</a>
+			(<a
+			href="http://www.newzbin.com/account/bookmarks/add/?ps_id=6076243">Bookmark</a>)
+			(<a href="http://www.newzbin.com/browse/post/6076243/nzb/">NZB</a>)
+			(<a href="http://www.newzbin.com/nfo/view/txt/389900619/">NFO</a>)
+			(<a href="http://www.tvrage.com/shows/id-27943/episodes/1065029531/">More Info</a>)
+			(Size: 200.2MB)
+			</li>
+			<li>
+				Attributes:
+				Category - TV
+				|  Video Source - TV Cap, HDTV |  Video Format - XviD |  Video Genre - Family, Reality |  Language - English
+			</li>
+			<li>Groups:  alt.binaries.multimedia,  alt.binaries.teevee</li>
+			<li>Poster: teevee@4u.net (teevee)</li>
+			<li>PostDate: Monday 25 Apr 2011, 03:20AM PDT</li>
+			</ul>			]]>
+      </description>
+      <report:id>6076243</report:id>
+      <report:category>TV</report:category>
+      <report:attributes>
+        <report:attribute type="Source">TV Cap</report:attribute>
+        <report:attribute type="Source">HDTV</report:attribute>
+        <report:attribute type="Video Fmt">XviD</report:attribute>
+        <report:attribute type="Video Genre">Family</report:attribute>
+        <report:attribute type="Video Genre">Reality</report:attribute>
+        <report:attribute type="Language">English</report:attribute>
+      </report:attributes>
+      <report:groups>
+        <report:group>alt.binaries.multimedia</report:group>
+        <report:group>alt.binaries.teevee</report:group>
+      </report:groups>
+      <report:progress value="1">Report is complete</report:progress>
+      <report:moreinfo>http://www.tvrage.com/shows/id-27943/episodes/1065029531/</report:moreinfo>
+      <report:nfo>
+        <report:fileid>389900619</report:fileid>
+        <report:filename>saddle.ranch.s01e02.hdtv.xvid-momentum.nfo</report:filename>
+        <report:link>http://www.newzbin.com/nfo/view/txt/389900619/</report:link>
+      </report:nfo>
+      <report:nzb>http://www.newzbin.com/browse/post/6076243/nzb/</report:nzb>
+      <report:poster>teevee@4u.net (teevee)</report:poster>
+      <report:size type="bytes">209956310</report:size>
+      <report:postdate>Mon, 25 Apr 2011 10:20:46 GMT</report:postdate>
+      <report:stats>
+        <report:views>3</report:views>
+        <report:comments>0</report:comments>
+      </report:stats>
+      <enclosure url="http://www.newzbin.com/browse/post/6076243/nzb/"
+				length="209956310" type="application/x-nzb" />
+      <pubDate>Mon, 25 Apr 2011 11:21:53 GMT</pubDate>
+    </item>
+    <item>
+      <title>Punky Brewster - 2x01 - The K.O. Kid</title>
+      <guid isPermaLink="true">http://www.newzbin.com/browse/post/6076242/</guid>
+      <link>http://www.newzbin.com/browse/post/6076242/</link>
+      <comments>http://www.newzbin.com/browse/post/6076242/#CommentsPH</comments>
+      <description>
+        <![CDATA[
+			<ul>
+			<li>
+			ID: <a href="http://www.newzbin.com/browse/post/6076242">6076242</a>
+			(<a
+			href="http://www.newzbin.com/account/bookmarks/add/?ps_id=6076242">Bookmark</a>)
+			(<a href="http://www.newzbin.com/browse/post/6076242/nzb/">NZB</a>)
+			(<a href="http://www.newzbin.com/nfo/view/txt/389903249/">NFO</a>)
+			(<a href="http://www.tvrage.com/shows/id-4915/episodes/140207/2x01/">More Info</a>)
+			(Size: 201.7MB)
+			</li>
+			<li>
+				Attributes:
+				Category - TV
+				|  Video Source - DVD |  Video Format - XviD |  Video Genre - Comedy |  Language - English
+			</li>
+			<li>Groups:  alt.binaries.multimedia,  alt.binaries.teevee</li>
+			<li>Poster: teevee@4u.tv (teevee)</li>
+			<li>PostDate: Monday 25 Apr 2011, 03:29AM PDT</li>
+			</ul>			]]>
+      </description>
+      <report:id>6076242</report:id>
+      <report:category>TV</report:category>
+      <report:attributes>
+        <report:attribute type="Source">DVD</report:attribute>
+        <report:attribute type="Video Fmt">XviD</report:attribute>
+        <report:attribute type="Video Genre">Comedy</report:attribute>
+        <report:attribute type="Language">English</report:attribute>
+      </report:attributes>
+      <report:groups>
+        <report:group>alt.binaries.multimedia</report:group>
+        <report:group>alt.binaries.teevee</report:group>
+      </report:groups>
+      <report:progress value="1">Report is complete</report:progress>
+      <report:moreinfo>http://www.tvrage.com/shows/id-4915/episodes/140207/2x01/</report:moreinfo>
+      <report:nfo>
+        <report:fileid>389903249</report:fileid>
+        <report:filename>runner-punkyb-s02e01.nfo</report:filename>
+        <report:link>http://www.newzbin.com/nfo/view/txt/389903249/</report:link>
+      </report:nfo>
+      <report:nzb>http://www.newzbin.com/browse/post/6076242/nzb/</report:nzb>
+      <report:poster>teevee@4u.tv (teevee)</report:poster>
+      <report:size type="bytes">211548260</report:size>
+      <report:postdate>Mon, 25 Apr 2011 10:29:18 GMT</report:postdate>
+      <report:stats>
+        <report:views>2</report:views>
+        <report:comments>0</report:comments>
+      </report:stats>
+      <enclosure url="http://www.newzbin.com/browse/post/6076242/nzb/"
+				length="211548260" type="application/x-nzb" />
+      <pubDate>Mon, 25 Apr 2011 11:21:39 GMT</pubDate>
+    </item>
+    <item>
+      <title>Punky Brewster - 2x02 - Punky&#39;s Treehouse</title>
+      <guid isPermaLink="true">http://www.newzbin.com/browse/post/6076241/</guid>
+      <link>http://www.newzbin.com/browse/post/6076241/</link>
+      <comments>http://www.newzbin.com/browse/post/6076241/#CommentsPH</comments>
+      <description>
+        <![CDATA[
+			<ul>
+			<li>
+			ID: <a href="http://www.newzbin.com/browse/post/6076241">6076241</a>
+			(<a
+			href="http://www.newzbin.com/account/bookmarks/add/?ps_id=6076241">Bookmark</a>)
+			(<a href="http://www.newzbin.com/browse/post/6076241/nzb/">NZB</a>)
+			(<a href="http://www.newzbin.com/nfo/view/txt/389903264/">NFO</a>)
+			(<a href="http://www.tvrage.com/shows/id-4915/episodes/140208/2x02/">More Info</a>)
+			(Size: 201.9MB)
+			</li>
+			<li>
+				Attributes:
+				Category - TV
+				|  Video Source - DVD |  Video Format - XviD |  Video Genre - Comedy |  Language - English
+			</li>
+			<li>Groups:  alt.binaries.multimedia,  alt.binaries.teevee</li>
+			<li>Poster: teevee@4u.tv (teevee)</li>
+			<li>PostDate: Monday 25 Apr 2011, 03:29AM PDT</li>
+			</ul>			]]>
+      </description>
+      <report:id>6076241</report:id>
+      <report:category>TV</report:category>
+      <report:attributes>
+        <report:attribute type="Source">DVD</report:attribute>
+        <report:attribute type="Video Fmt">XviD</report:attribute>
+        <report:attribute type="Video Genre">Comedy</report:attribute>
+        <report:attribute type="Language">English</report:attribute>
+      </report:attributes>
+      <report:groups>
+        <report:group>alt.binaries.multimedia</report:group>
+        <report:group>alt.binaries.teevee</report:group>
+      </report:groups>
+      <report:progress value="1">Report is complete</report:progress>
+      <report:moreinfo>http://www.tvrage.com/shows/id-4915/episodes/140208/2x02/</report:moreinfo>
+      <report:nfo>
+        <report:fileid>389903264</report:fileid>
+        <report:filename>runner-punkyb-s02e02.nfo</report:filename>
+        <report:link>http://www.newzbin.com/nfo/view/txt/389903264/</report:link>
+      </report:nfo>
+      <report:nzb>http://www.newzbin.com/browse/post/6076241/nzb/</report:nzb>
+      <report:poster>teevee@4u.tv (teevee)</report:poster>
+      <report:size type="bytes">211676713</report:size>
+      <report:postdate>Mon, 25 Apr 2011 10:29:26 GMT</report:postdate>
+      <report:stats>
+        <report:views>2</report:views>
+        <report:comments>0</report:comments>
+      </report:stats>
+      <enclosure url="http://www.newzbin.com/browse/post/6076241/nzb/"
+				length="211676713" type="application/x-nzb" />
+      <pubDate>Mon, 25 Apr 2011 11:21:25 GMT</pubDate>
+    </item>
+    <item>
+      <title>Punky Brewster - 2x03 - Cheaters Never Win</title>
+      <guid isPermaLink="true">http://www.newzbin.com/browse/post/6076240/</guid>
+      <link>http://www.newzbin.com/browse/post/6076240/</link>
+      <comments>http://www.newzbin.com/browse/post/6076240/#CommentsPH</comments>
+      <description>
+        <![CDATA[
+			<ul>
+			<li>
+			ID: <a href="http://www.newzbin.com/browse/post/6076240">6076240</a>
+			(<a
+			href="http://www.newzbin.com/account/bookmarks/add/?ps_id=6076240">Bookmark</a>)
+			(<a href="http://www.newzbin.com/browse/post/6076240/nzb/">NZB</a>)
+			(<a href="http://www.newzbin.com/nfo/view/txt/389903321/">NFO</a>)
+			(<a href="http://www.tvrage.com/shows/id-4915/episodes/140209/2x03/">More Info</a>)
+			(Size: 202.4MB)
+			</li>
+			<li>
+				Attributes:
+				Category - TV
+				|  Video Source - DVD |  Video Format - XviD |  Video Genre - Comedy |  Language - English
+			</li>
+			<li>Groups:  alt.binaries.multimedia,  alt.binaries.teevee</li>
+			<li>Poster: teevee@4u.tv (teevee)</li>
+			<li>PostDate: Monday 25 Apr 2011, 03:29AM PDT</li>
+			</ul>			]]>
+      </description>
+      <report:id>6076240</report:id>
+      <report:category>TV</report:category>
+      <report:attributes>
+        <report:attribute type="Source">DVD</report:attribute>
+        <report:attribute type="Video Fmt">XviD</report:attribute>
+        <report:attribute type="Video Genre">Comedy</report:attribute>
+        <report:attribute type="Language">English</report:attribute>
+      </report:attributes>
+      <report:groups>
+        <report:group>alt.binaries.multimedia</report:group>
+        <report:group>alt.binaries.teevee</report:group>
+      </report:groups>
+      <report:progress value="1">Report is complete</report:progress>
+      <report:moreinfo>http://www.tvrage.com/shows/id-4915/episodes/140209/2x03/</report:moreinfo>
+      <report:nfo>
+        <report:fileid>389903321</report:fileid>
+        <report:filename>runner-punkyb-s02e03.nfo</report:filename>
+        <report:link>http://www.newzbin.com/nfo/view/txt/389903321/</report:link>
+      </report:nfo>
+      <report:nzb>http://www.newzbin.com/browse/post/6076240/nzb/</report:nzb>
+      <report:poster>teevee@4u.tv (teevee)</report:poster>
+      <report:size type="bytes">212269092</report:size>
+      <report:postdate>Mon, 25 Apr 2011 10:29:33 GMT</report:postdate>
+      <report:stats>
+        <report:views>2</report:views>
+        <report:comments>0</report:comments>
+      </report:stats>
+      <enclosure url="http://www.newzbin.com/browse/post/6076240/nzb/"
+				length="212269092" type="application/x-nzb" />
+      <pubDate>Mon, 25 Apr 2011 11:21:12 GMT</pubDate>
+    </item>
+    <item>
+      <title>Punky Brewster - 2x04 - Baby Buddies, Inc</title>
+      <guid isPermaLink="true">http://www.newzbin.com/browse/post/6076239/</guid>
+      <link>http://www.newzbin.com/browse/post/6076239/</link>
+      <comments>http://www.newzbin.com/browse/post/6076239/#CommentsPH</comments>
+      <description>
+        <![CDATA[
+			<ul>
+			<li>
+			ID: <a href="http://www.newzbin.com/browse/post/6076239">6076239</a>
+			(<a
+			href="http://www.newzbin.com/account/bookmarks/add/?ps_id=6076239">Bookmark</a>)
+			(<a href="http://www.newzbin.com/browse/post/6076239/nzb/">NZB</a>)
+			(<a href="http://www.newzbin.com/nfo/view/txt/389903318/">NFO</a>)
+			(<a href="http://www.tvrage.com/shows/id-4915/episodes/140210/2x04/">More Info</a>)
+			(Size: 201.9MB)
+			</li>
+			<li>
+				Attributes:
+				Category - TV
+				|  Video Source - DVD |  Video Format - XviD |  Video Genre - Comedy |  Language - English
+			</li>
+			<li>Groups:  alt.binaries.multimedia,  alt.binaries.teevee</li>
+			<li>Poster: teevee@4u.tv (teevee)</li>
+			<li>PostDate: Monday 25 Apr 2011, 03:29AM PDT</li>
+			</ul>			]]>
+      </description>
+      <report:id>6076239</report:id>
+      <report:category>TV</report:category>
+      <report:attributes>
+        <report:attribute type="Source">DVD</report:attribute>
+        <report:attribute type="Video Fmt">XviD</report:attribute>
+        <report:attribute type="Video Genre">Comedy</report:attribute>
+        <report:attribute type="Language">English</report:attribute>
+      </report:attributes>
+      <report:groups>
+        <report:group>alt.binaries.multimedia</report:group>
+        <report:group>alt.binaries.teevee</report:group>
+      </report:groups>
+      <report:progress value="1">Report is complete</report:progress>
+      <report:moreinfo>http://www.tvrage.com/shows/id-4915/episodes/140210/2x04/</report:moreinfo>
+      <report:nfo>
+        <report:fileid>389903318</report:fileid>
+        <report:filename>runner-punkyb-s02e04.nfo</report:filename>
+        <report:link>http://www.newzbin.com/nfo/view/txt/389903318/</report:link>
+      </report:nfo>
+      <report:nzb>http://www.newzbin.com/browse/post/6076239/nzb/</report:nzb>
+      <report:poster>teevee@4u.tv (teevee)</report:poster>
+      <report:size type="bytes">211666300</report:size>
+      <report:postdate>Mon, 25 Apr 2011 10:29:39 GMT</report:postdate>
+      <report:stats>
+        <report:views>2</report:views>
+        <report:comments>0</report:comments>
+      </report:stats>
+      <enclosure url="http://www.newzbin.com/browse/post/6076239/nzb/"
+				length="211666300" type="application/x-nzb" />
+      <pubDate>Mon, 25 Apr 2011 11:20:59 GMT</pubDate>
+    </item>
+    <item>
+      <title>Punky Brewster - 2x05 - Tap Your Troubles Away</title>
+      <guid isPermaLink="true">http://www.newzbin.com/browse/post/6076238/</guid>
+      <link>http://www.newzbin.com/browse/post/6076238/</link>
+      <comments>http://www.newzbin.com/browse/post/6076238/#CommentsPH</comments>
+      <description>
+        <![CDATA[
+			<ul>
+			<li>
+			ID: <a href="http://www.newzbin.com/browse/post/6076238">6076238</a>
+			(<a
+			href="http://www.newzbin.com/account/bookmarks/add/?ps_id=6076238">Bookmark</a>)
+			(<a href="http://www.newzbin.com/browse/post/6076238/nzb/">NZB</a>)
+			(<a href="http://www.newzbin.com/nfo/view/txt/389903372/">NFO</a>)
+			(<a href="http://www.tvrage.com/shows/id-4915/episodes/140211/2x05/">More Info</a>)
+			(Size: 201.9MB)
+			</li>
+			<li>
+				Attributes:
+				Category - TV
+				|  Video Source - DVD |  Video Format - XviD |  Video Genre - Comedy |  Language - English
+			</li>
+			<li>Groups:  alt.binaries.multimedia,  alt.binaries.teevee</li>
+			<li>Poster: teevee@4u.tv (teevee)</li>
+			<li>PostDate: Monday 25 Apr 2011, 03:29AM PDT</li>
+			</ul>			]]>
+      </description>
+      <report:id>6076238</report:id>
+      <report:category>TV</report:category>
+      <report:attributes>
+        <report:attribute type="Source">DVD</report:attribute>
+        <report:attribute type="Video Fmt">XviD</report:attribute>
+        <report:attribute type="Video Genre">Comedy</report:attribute>
+        <report:attribute type="Language">English</report:attribute>
+      </report:attributes>
+      <report:groups>
+        <report:group>alt.binaries.multimedia</report:group>
+        <report:group>alt.binaries.teevee</report:group>
+      </report:groups>
+      <report:progress value="1">Report is complete</report:progress>
+      <report:moreinfo>http://www.tvrage.com/shows/id-4915/episodes/140211/2x05/</report:moreinfo>
+      <report:nfo>
+        <report:fileid>389903372</report:fileid>
+        <report:filename>runner-punkyb-s02e05.nfo</report:filename>
+        <report:link>http://www.newzbin.com/nfo/view/txt/389903372/</report:link>
+      </report:nfo>
+      <report:nzb>http://www.newzbin.com/browse/post/6076238/nzb/</report:nzb>
+      <report:poster>teevee@4u.tv (teevee)</report:poster>
+      <report:size type="bytes">211681829</report:size>
+      <report:postdate>Mon, 25 Apr 2011 10:29:45 GMT</report:postdate>
+      <report:stats>
+        <report:views>2</report:views>
+        <report:comments>0</report:comments>
+      </report:stats>
+      <enclosure url="http://www.newzbin.com/browse/post/6076238/nzb/"
+				length="211681829" type="application/x-nzb" />
+      <pubDate>Mon, 25 Apr 2011 11:20:43 GMT</pubDate>
+    </item>
+    <item>
+      <title>Punky Brewster - 2x06 - The Perils of Punky (Part 1)</title>
+      <guid isPermaLink="true">http://www.newzbin.com/browse/post/6076237/</guid>
+      <link>http://www.newzbin.com/browse/post/6076237/</link>
+      <comments>http://www.newzbin.com/browse/post/6076237/#CommentsPH</comments>
+      <description>
+        <![CDATA[
+			<ul>
+			<li>
+			ID: <a href="http://www.newzbin.com/browse/post/6076237">6076237</a>
+			(<a
+			href="http://www.newzbin.com/account/bookmarks/add/?ps_id=6076237">Bookmark</a>)
+			(<a href="http://www.newzbin.com/browse/post/6076237/nzb/">NZB</a>)
+			(<a href="http://www.newzbin.com/nfo/view/txt/389903386/">NFO</a>)
+			(<a href="http://www.tvrage.com/shows/id-4915/episodes/140212/2x06/">More Info</a>)
+			(Size: 202.1MB)
+			</li>
+			<li>
+				Attributes:
+				Category - TV
+				|  Video Source - DVD |  Video Format - XviD |  Video Genre - Comedy |  Language - English
+			</li>
+			<li>Groups:  alt.binaries.multimedia,  alt.binaries.teevee</li>
+			<li>Poster: teevee@4u.tv (teevee)</li>
+			<li>PostDate: Monday 25 Apr 2011, 03:29AM PDT</li>
+			</ul>			]]>
+      </description>
+      <report:id>6076237</report:id>
+      <report:category>TV</report:category>
+      <report:attributes>
+        <report:attribute type="Source">DVD</report:attribute>
+        <report:attribute type="Video Fmt">XviD</report:attribute>
+        <report:attribute type="Video Genre">Comedy</report:attribute>
+        <report:attribute type="Language">English</report:attribute>
+      </report:attributes>
+      <report:groups>
+        <report:group>alt.binaries.multimedia</report:group>
+        <report:group>alt.binaries.teevee</report:group>
+      </report:groups>
+      <report:progress value="1">Report is complete</report:progress>
+      <report:moreinfo>http://www.tvrage.com/shows/id-4915/episodes/140212/2x06/</report:moreinfo>
+      <report:nfo>
+        <report:fileid>389903386</report:fileid>
+        <report:filename>runner-punkyb-s02e06.nfo</report:filename>
+        <report:link>http://www.newzbin.com/nfo/view/txt/389903386/</report:link>
+      </report:nfo>
+      <report:nzb>http://www.newzbin.com/browse/post/6076237/nzb/</report:nzb>
+      <report:poster>teevee@4u.tv (teevee)</report:poster>
+      <report:size type="bytes">211892995</report:size>
+      <report:postdate>Mon, 25 Apr 2011 10:29:52 GMT</report:postdate>
+      <report:stats>
+        <report:views>2</report:views>
+        <report:comments>0</report:comments>
+      </report:stats>
+      <enclosure url="http://www.newzbin.com/browse/post/6076237/nzb/"
+				length="211892995" type="application/x-nzb" />
+      <pubDate>Mon, 25 Apr 2011 11:20:31 GMT</pubDate>
+    </item>
+    <item>
+      <title>Punky Brewster - 2x07 - The Perils of Punky (Part 2)</title>
+      <guid isPermaLink="true">http://www.newzbin.com/browse/post/6076236/</guid>
+      <link>http://www.newzbin.com/browse/post/6076236/</link>
+      <comments>http://www.newzbin.com/browse/post/6076236/#CommentsPH</comments>
+      <description>
+        <![CDATA[
+			<ul>
+			<li>
+			ID: <a href="http://www.newzbin.com/browse/post/6076236">6076236</a>
+			(<a
+			href="http://www.newzbin.com/account/bookmarks/add/?ps_id=6076236">Bookmark</a>)
+			(<a href="http://www.newzbin.com/browse/post/6076236/nzb/">NZB</a>)
+			(<a href="http://www.newzbin.com/nfo/view/txt/389903411/">NFO</a>)
+			(<a href="http://www.tvrage.com/shows/id-4915/episodes/140213/2x07/">More Info</a>)
+			(Size: 202.5MB)
+			</li>
+			<li>
+				Attributes:
+				Category - TV
+				|  Video Source - DVD |  Video Format - XviD |  Video Genre - Comedy |  Language - English
+			</li>
+			<li>Groups:  alt.binaries.multimedia,  alt.binaries.teevee</li>
+			<li>Poster: teevee@4u.tv (teevee)</li>
+			<li>PostDate: Monday 25 Apr 2011, 03:29AM PDT</li>
+			</ul>			]]>
+      </description>
+      <report:id>6076236</report:id>
+      <report:category>TV</report:category>
+      <report:attributes>
+        <report:attribute type="Source">DVD</report:attribute>
+        <report:attribute type="Video Fmt">XviD</report:attribute>
+        <report:attribute type="Video Genre">Comedy</report:attribute>
+        <report:attribute type="Language">English</report:attribute>
+      </report:attributes>
+      <report:groups>
+        <report:group>alt.binaries.multimedia</report:group>
+        <report:group>alt.binaries.teevee</report:group>
+      </report:groups>
+      <report:progress value="1">Report is complete</report:progress>
+      <report:moreinfo>http://www.tvrage.com/shows/id-4915/episodes/140213/2x07/</report:moreinfo>
+      <report:nfo>
+        <report:fileid>389903411</report:fileid>
+        <report:filename>runner-punkyb-s02e07.nfo</report:filename>
+        <report:link>http://www.newzbin.com/nfo/view/txt/389903411/</report:link>
+      </report:nfo>
+      <report:nzb>http://www.newzbin.com/browse/post/6076236/nzb/</report:nzb>
+      <report:poster>teevee@4u.tv (teevee)</report:poster>
+      <report:size type="bytes">212305883</report:size>
+      <report:postdate>Mon, 25 Apr 2011 10:29:57 GMT</report:postdate>
+      <report:stats>
+        <report:views>2</report:views>
+        <report:comments>0</report:comments>
+      </report:stats>
+      <enclosure url="http://www.newzbin.com/browse/post/6076236/nzb/"
+				length="212305883" type="application/x-nzb" />
+      <pubDate>Mon, 25 Apr 2011 11:20:20 GMT</pubDate>
+    </item>
+    <item>
+      <title>Punky Brewster - 2x08 - Just Say No</title>
+      <guid isPermaLink="true">http://www.newzbin.com/browse/post/6076235/</guid>
+      <link>http://www.newzbin.com/browse/post/6076235/</link>
+      <comments>http://www.newzbin.com/browse/post/6076235/#CommentsPH</comments>
+      <description>
+        <![CDATA[
+			<ul>
+			<li>
+			ID: <a href="http://www.newzbin.com/browse/post/6076235">6076235</a>
+			(<a
+			href="http://www.newzbin.com/account/bookmarks/add/?ps_id=6076235">Bookmark</a>)
+			(<a href="http://www.newzbin.com/browse/post/6076235/nzb/">NZB</a>)
+			(<a href="http://www.newzbin.com/nfo/view/txt/389903254/">NFO</a>)
+			(<a href="http://www.tvrage.com/shows/id-4915/episodes/140214/2x08/">More Info</a>)
+			(Size: 202.0MB)
+			</li>
+			<li>
+				Attributes:
+				Category - TV
+				|  Video Source - DVD |  Video Format - XviD |  Video Genre - Comedy |  Language - English
+			</li>
+			<li>Groups:  alt.binaries.multimedia,  alt.binaries.teevee</li>
+			<li>Poster: teevee@4u.tv (teevee)</li>
+			<li>PostDate: Monday 25 Apr 2011, 03:30AM PDT</li>
+			</ul>			]]>
+      </description>
+      <report:id>6076235</report:id>
+      <report:category>TV</report:category>
+      <report:attributes>
+        <report:attribute type="Source">DVD</report:attribute>
+        <report:attribute type="Video Fmt">XviD</report:attribute>
+        <report:attribute type="Video Genre">Comedy</report:attribute>
+        <report:attribute type="Language">English</report:attribute>
+      </report:attributes>
+      <report:groups>
+        <report:group>alt.binaries.multimedia</report:group>
+        <report:group>alt.binaries.teevee</report:group>
+      </report:groups>
+      <report:progress value="1">Report is complete</report:progress>
+      <report:moreinfo>http://www.tvrage.com/shows/id-4915/episodes/140214/2x08/</report:moreinfo>
+      <report:nfo>
+        <report:fileid>389903254</report:fileid>
+        <report:filename>runner-punkyb-s02e08.nfo</report:filename>
+        <report:link>http://www.newzbin.com/nfo/view/txt/389903254/</report:link>
+      </report:nfo>
+      <report:nzb>http://www.newzbin.com/browse/post/6076235/nzb/</report:nzb>
+      <report:poster>teevee@4u.tv (teevee)</report:poster>
+      <report:size type="bytes">211816220</report:size>
+      <report:postdate>Mon, 25 Apr 2011 10:30:04 GMT</report:postdate>
+      <report:stats>
+        <report:views>2</report:views>
+        <report:comments>0</report:comments>
+      </report:stats>
+      <enclosure url="http://www.newzbin.com/browse/post/6076235/nzb/"
+				length="211816220" type="application/x-nzb" />
+      <pubDate>Mon, 25 Apr 2011 11:20:06 GMT</pubDate>
+    </item>
+    <item>
+      <title>Punky Brewster - 2x09 - The Search</title>
+      <guid isPermaLink="true">http://www.newzbin.com/browse/post/6076233/</guid>
+      <link>http://www.newzbin.com/browse/post/6076233/</link>
+      <comments>http://www.newzbin.com/browse/post/6076233/#CommentsPH</comments>
+      <description>
+        <![CDATA[
+			<ul>
+			<li>
+			ID: <a href="http://www.newzbin.com/browse/post/6076233">6076233</a>
+			(<a
+			href="http://www.newzbin.com/account/bookmarks/add/?ps_id=6076233">Bookmark</a>)
+			(<a href="http://www.newzbin.com/browse/post/6076233/nzb/">NZB</a>)
+			(<a href="http://www.newzbin.com/nfo/view/txt/389903323/">NFO</a>)
+			(<a href="http://www.tvrage.com/shows/id-4915/episodes/140215/2x09/">More Info</a>)
+			(Size: 201.1MB)
+			</li>
+			<li>
+				Attributes:
+				Category - TV
+				|  Video Source - DVD |  Video Format - XviD |  Video Genre - Comedy |  Language - English
+			</li>
+			<li>Groups:  alt.binaries.multimedia,  alt.binaries.teevee</li>
+			<li>Poster: teevee@4u.tv (teevee)</li>
+			<li>PostDate: Monday 25 Apr 2011, 03:30AM PDT</li>
+			</ul>			]]>
+      </description>
+      <report:id>6076233</report:id>
+      <report:category>TV</report:category>
+      <report:attributes>
+        <report:attribute type="Source">DVD</report:attribute>
+        <report:attribute type="Video Fmt">XviD</report:attribute>
+        <report:attribute type="Video Genre">Comedy</report:attribute>
+        <report:attribute type="Language">English</report:attribute>
+      </report:attributes>
+      <report:groups>
+        <report:group>alt.binaries.multimedia</report:group>
+        <report:group>alt.binaries.teevee</report:group>
+      </report:groups>
+      <report:progress value="1">Report is complete</report:progress>
+      <report:moreinfo>http://www.tvrage.com/shows/id-4915/episodes/140215/2x09/</report:moreinfo>
+      <report:nfo>
+        <report:fileid>389903323</report:fileid>
+        <report:filename>runner-punkyb-s02e09.nfo</report:filename>
+        <report:link>http://www.newzbin.com/nfo/view/txt/389903323/</report:link>
+      </report:nfo>
+      <report:nzb>http://www.newzbin.com/browse/post/6076233/nzb/</report:nzb>
+      <report:poster>teevee@4u.tv (teevee)</report:poster>
+      <report:size type="bytes">210916780</report:size>
+      <report:postdate>Mon, 25 Apr 2011 10:30:08 GMT</report:postdate>
+      <report:stats>
+        <report:views>2</report:views>
+        <report:comments>0</report:comments>
+      </report:stats>
+      <enclosure url="http://www.newzbin.com/browse/post/6076233/nzb/"
+				length="210916780" type="application/x-nzb" />
+      <pubDate>Mon, 25 Apr 2011 11:19:52 GMT</pubDate>
+    </item>
+    <item>
+      <title>Punky Brewster - 2x10 - Love Thy Neighbor</title>
+      <guid isPermaLink="true">http://www.newzbin.com/browse/post/6076232/</guid>
+      <link>http://www.newzbin.com/browse/post/6076232/</link>
+      <comments>http://www.newzbin.com/browse/post/6076232/#CommentsPH</comments>
+      <description>
+        <![CDATA[
+			<ul>
+			<li>
+			ID: <a href="http://www.newzbin.com/browse/post/6076232">6076232</a>
+			(<a
+			href="http://www.newzbin.com/account/bookmarks/add/?ps_id=6076232">Bookmark</a>)
+			(<a href="http://www.newzbin.com/browse/post/6076232/nzb/">NZB</a>)
+			(<a href="http://www.newzbin.com/nfo/view/txt/389903379/">NFO</a>)
+			(<a href="http://www.tvrage.com/shows/id-4915/episodes/140216/2x10/">More Info</a>)
+			(Size: 200.9MB)
+			</li>
+			<li>
+				Attributes:
+				Category - TV
+				|  Video Source - DVD |  Video Format - XviD |  Video Genre - Comedy |  Language - English
+			</li>
+			<li>Groups:  alt.binaries.multimedia,  alt.binaries.teevee</li>
+			<li>Poster: teevee@4u.tv (teevee)</li>
+			<li>PostDate: Monday 25 Apr 2011, 03:30AM PDT</li>
+			</ul>			]]>
+      </description>
+      <report:id>6076232</report:id>
+      <report:category>TV</report:category>
+      <report:attributes>
+        <report:attribute type="Source">DVD</report:attribute>
+        <report:attribute type="Video Fmt">XviD</report:attribute>
+        <report:attribute type="Video Genre">Comedy</report:attribute>
+        <report:attribute type="Language">English</report:attribute>
+      </report:attributes>
+      <report:groups>
+        <report:group>alt.binaries.multimedia</report:group>
+        <report:group>alt.binaries.teevee</report:group>
+      </report:groups>
+      <report:progress value="1">Report is complete</report:progress>
+      <report:moreinfo>http://www.tvrage.com/shows/id-4915/episodes/140216/2x10/</report:moreinfo>
+      <report:nfo>
+        <report:fileid>389903379</report:fileid>
+        <report:filename>runner-punkyb-s02e10.nfo</report:filename>
+        <report:link>http://www.newzbin.com/nfo/view/txt/389903379/</report:link>
+      </report:nfo>
+      <report:nzb>http://www.newzbin.com/browse/post/6076232/nzb/</report:nzb>
+      <report:poster>teevee@4u.tv (teevee)</report:poster>
+      <report:size type="bytes">210622902</report:size>
+      <report:postdate>Mon, 25 Apr 2011 10:30:16 GMT</report:postdate>
+      <report:stats>
+        <report:views>2</report:views>
+        <report:comments>0</report:comments>
+      </report:stats>
+      <enclosure url="http://www.newzbin.com/browse/post/6076232/nzb/"
+				length="210622902" type="application/x-nzb" />
+      <pubDate>Mon, 25 Apr 2011 11:19:39 GMT</pubDate>
+    </item>
+    <item>
+      <title>Punky Brewster - 2x11 - The Gift</title>
+      <guid isPermaLink="true">http://www.newzbin.com/browse/post/6076231/</guid>
+      <link>http://www.newzbin.com/browse/post/6076231/</link>
+      <comments>http://www.newzbin.com/browse/post/6076231/#CommentsPH</comments>
+      <description>
+        <![CDATA[
+			<ul>
+			<li>
+			ID: <a href="http://www.newzbin.com/browse/post/6076231">6076231</a>
+			(<a
+			href="http://www.newzbin.com/account/bookmarks/add/?ps_id=6076231">Bookmark</a>)
+			(<a href="http://www.newzbin.com/browse/post/6076231/nzb/">NZB</a>)
+			(<a href="http://www.newzbin.com/nfo/view/txt/389903434/">NFO</a>)
+			(<a href="http://www.tvrage.com/shows/id-4915/episodes/140217/">More Info</a>)
+			(Size: 200.6MB)
+			</li>
+			<li>
+				Attributes:
+				Category - TV
+				|  Video Source - DVD |  Video Format - XviD |  Video Genre - Comedy |  Language - English
+			</li>
+			<li>Groups:  alt.binaries.multimedia,  alt.binaries.teevee</li>
+			<li>Poster: teevee@4u.tv (teevee)</li>
+			<li>PostDate: Monday 25 Apr 2011, 03:30AM PDT</li>
+			</ul>			]]>
+      </description>
+      <report:id>6076231</report:id>
+      <report:category>TV</report:category>
+      <report:attributes>
+        <report:attribute type="Source">DVD</report:attribute>
+        <report:attribute type="Video Fmt">XviD</report:attribute>
+        <report:attribute type="Video Genre">Comedy</report:attribute>
+        <report:attribute type="Language">English</report:attribute>
+      </report:attributes>
+      <report:groups>
+        <report:group>alt.binaries.multimedia</report:group>
+        <report:group>alt.binaries.teevee</report:group>
+      </report:groups>
+      <report:progress value="1">Report is complete</report:progress>
+      <report:moreinfo>http://www.tvrage.com/shows/id-4915/episodes/140217/</report:moreinfo>
+      <report:nfo>
+        <report:fileid>389903434</report:fileid>
+        <report:filename>runner-punkyb-s02e11.nfo</report:filename>
+        <report:link>http://www.newzbin.com/nfo/view/txt/389903434/</report:link>
+      </report:nfo>
+      <report:nzb>http://www.newzbin.com/browse/post/6076231/nzb/</report:nzb>
+      <report:poster>teevee@4u.tv (teevee)</report:poster>
+      <report:size type="bytes">210332289</report:size>
+      <report:postdate>Mon, 25 Apr 2011 10:30:23 GMT</report:postdate>
+      <report:stats>
+        <report:views>2</report:views>
+        <report:comments>0</report:comments>
+      </report:stats>
+      <enclosure url="http://www.newzbin.com/browse/post/6076231/nzb/"
+				length="210332289" type="application/x-nzb" />
+      <pubDate>Mon, 25 Apr 2011 11:19:23 GMT</pubDate>
+    </item>
+    <item>
+      <title>Punky Brewster - 2x12 - Milk Does a Body Good</title>
+      <guid isPermaLink="true">http://www.newzbin.com/browse/post/6076230/</guid>
+      <link>http://www.newzbin.com/browse/post/6076230/</link>
+      <comments>http://www.newzbin.com/browse/post/6076230/#CommentsPH</comments>
+      <description>
+        <![CDATA[
+			<ul>
+			<li>
+			ID: <a href="http://www.newzbin.com/browse/post/6076230">6076230</a>
+			(<a
+			href="http://www.newzbin.com/account/bookmarks/add/?ps_id=6076230">Bookmark</a>)
+			(<a href="http://www.newzbin.com/browse/post/6076230/nzb/">NZB</a>)
+			(<a href="http://www.newzbin.com/nfo/view/txt/389905710/">NFO</a>)
+			(<a href="http://www.tvrage.com/shows/id-4915/episodes/140218/">More Info</a>)
+			(Size: 201.9MB)
+			</li>
+			<li>
+				Attributes:
+				Category - TV
+				|  Video Source - DVD |  Video Format - XviD |  Video Genre - Comedy |  Language - English
+			</li>
+			<li>Groups:  alt.binaries.multimedia,  alt.binaries.teevee</li>
+			<li>Poster: teevee@4u.tv (teevee)</li>
+			<li>PostDate: Monday 25 Apr 2011, 03:30AM PDT</li>
+			</ul>			]]>
+      </description>
+      <report:id>6076230</report:id>
+      <report:category>TV</report:category>
+      <report:attributes>
+        <report:attribute type="Source">DVD</report:attribute>
+        <report:attribute type="Video Fmt">XviD</report:attribute>
+        <report:attribute type="Video Genre">Comedy</report:attribute>
+        <report:attribute type="Language">English</report:attribute>
+      </report:attributes>
+      <report:groups>
+        <report:group>alt.binaries.multimedia</report:group>
+        <report:group>alt.binaries.teevee</report:group>
+      </report:groups>
+      <report:progress value="1">Report is complete</report:progress>
+      <report:moreinfo>http://www.tvrage.com/shows/id-4915/episodes/140218/</report:moreinfo>
+      <report:nfo>
+        <report:fileid>389905710</report:fileid>
+        <report:filename>runner-punkyb-s02e12.nfo</report:filename>
+        <report:link>http://www.newzbin.com/nfo/view/txt/389905710/</report:link>
+      </report:nfo>
+      <report:nzb>http://www.newzbin.com/browse/post/6076230/nzb/</report:nzb>
+      <report:poster>teevee@4u.tv (teevee)</report:poster>
+      <report:size type="bytes">211722671</report:size>
+      <report:postdate>Mon, 25 Apr 2011 10:30:29 GMT</report:postdate>
+      <report:stats>
+        <report:views>2</report:views>
+        <report:comments>0</report:comments>
+      </report:stats>
+      <enclosure url="http://www.newzbin.com/browse/post/6076230/nzb/"
+				length="211722671" type="application/x-nzb" />
+      <pubDate>Mon, 25 Apr 2011 11:19:11 GMT</pubDate>
+    </item>
+    <item>
+      <title>Punky Brewster - 2x13 - Christmas Shoplifting</title>
+      <guid isPermaLink="true">http://www.newzbin.com/browse/post/6076229/</guid>
+      <link>http://www.newzbin.com/browse/post/6076229/</link>
+      <comments>http://www.newzbin.com/browse/post/6076229/#CommentsPH</comments>
+      <description>
+        <![CDATA[
+			<ul>
+			<li>
+			ID: <a href="http://www.newzbin.com/browse/post/6076229">6076229</a>
+			(<a
+			href="http://www.newzbin.com/account/bookmarks/add/?ps_id=6076229">Bookmark</a>)
+			(<a href="http://www.newzbin.com/browse/post/6076229/nzb/">NZB</a>)
+			(<a href="http://www.newzbin.com/nfo/view/txt/389905719/">NFO</a>)
+			(<a href="http://www.tvrage.com/shows/id-4915/episodes/140219/2x13/">More Info</a>)
+			(Size: 201.8MB)
+			</li>
+			<li>
+				Attributes:
+				Category - TV
+				|  Video Source - DVD |  Video Format - XviD |  Video Genre - Comedy |  Language - English
+			</li>
+			<li>Groups:  alt.binaries.multimedia,  alt.binaries.teevee</li>
+			<li>Poster: teevee@4u.tv (teevee)</li>
+			<li>PostDate: Monday 25 Apr 2011, 03:30AM PDT</li>
+			</ul>			]]>
+      </description>
+      <report:id>6076229</report:id>
+      <report:category>TV</report:category>
+      <report:attributes>
+        <report:attribute type="Source">DVD</report:attribute>
+        <report:attribute type="Video Fmt">XviD</report:attribute>
+        <report:attribute type="Video Genre">Comedy</report:attribute>
+        <report:attribute type="Language">English</report:attribute>
+      </report:attributes>
+      <report:groups>
+        <report:group>alt.binaries.multimedia</report:group>
+        <report:group>alt.binaries.teevee</report:group>
+      </report:groups>
+      <report:progress value="1">Report is complete</report:progress>
+      <report:moreinfo>http://www.tvrage.com/shows/id-4915/episodes/140219/2x13/</report:moreinfo>
+      <report:nfo>
+        <report:fileid>389905719</report:fileid>
+        <report:filename>runner-punkyb-s02e13.nfo</report:filename>
+        <report:link>http://www.newzbin.com/nfo/view/txt/389905719/</report:link>
+      </report:nfo>
+      <report:nzb>http://www.newzbin.com/browse/post/6076229/nzb/</report:nzb>
+      <report:poster>teevee@4u.tv (teevee)</report:poster>
+      <report:size type="bytes">211557104</report:size>
+      <report:postdate>Mon, 25 Apr 2011 10:30:35 GMT</report:postdate>
+      <report:stats>
+        <report:views>2</report:views>
+        <report:comments>0</report:comments>
+      </report:stats>
+      <enclosure url="http://www.newzbin.com/browse/post/6076229/nzb/"
+				length="211557104" type="application/x-nzb" />
+      <pubDate>Mon, 25 Apr 2011 11:18:56 GMT</pubDate>
+    </item>
+    <item>
+      <title>Punky Brewster - 2x14 - Urban Fear</title>
+      <guid isPermaLink="true">http://www.newzbin.com/browse/post/6076227/</guid>
+      <link>http://www.newzbin.com/browse/post/6076227/</link>
+      <comments>http://www.newzbin.com/browse/post/6076227/#CommentsPH</comments>
+      <description>
+        <![CDATA[
+			<ul>
+			<li>
+			ID: <a href="http://www.newzbin.com/browse/post/6076227">6076227</a>
+			(<a
+			href="http://www.newzbin.com/account/bookmarks/add/?ps_id=6076227">Bookmark</a>)
+			(<a href="http://www.newzbin.com/browse/post/6076227/nzb/">NZB</a>)
+			(<a href="http://www.newzbin.com/nfo/view/txt/389905727/">NFO</a>)
+			(<a href="http://www.tvrage.com/shows/id-4915/episodes/140220/2x14/">More Info</a>)
+			(Size: 202.4MB)
+			</li>
+			<li>
+				Attributes:
+				Category - TV
+				|  Video Source - DVD |  Video Format - XviD |  Video Genre - Comedy |  Language - English
+			</li>
+			<li>Groups:  alt.binaries.multimedia,  alt.binaries.teevee</li>
+			<li>Poster: teevee@4u.tv (teevee)</li>
+			<li>PostDate: Monday 25 Apr 2011, 03:30AM PDT</li>
+			</ul>			]]>
+      </description>
+      <report:id>6076227</report:id>
+      <report:category>TV</report:category>
+      <report:attributes>
+        <report:attribute type="Source">DVD</report:attribute>
+        <report:attribute type="Video Fmt">XviD</report:attribute>
+        <report:attribute type="Video Genre">Comedy</report:attribute>
+        <report:attribute type="Language">English</report:attribute>
+      </report:attributes>
+      <report:groups>
+        <report:group>alt.binaries.multimedia</report:group>
+        <report:group>alt.binaries.teevee</report:group>
+      </report:groups>
+      <report:progress value="1">Report is complete</report:progress>
+      <report:moreinfo>http://www.tvrage.com/shows/id-4915/episodes/140220/2x14/</report:moreinfo>
+      <report:nfo>
+        <report:fileid>389905727</report:fileid>
+        <report:filename>runner-punkyb-s02e14.nfo</report:filename>
+        <report:link>http://www.newzbin.com/nfo/view/txt/389905727/</report:link>
+      </report:nfo>
+      <report:nzb>http://www.newzbin.com/browse/post/6076227/nzb/</report:nzb>
+      <report:poster>teevee@4u.tv (teevee)</report:poster>
+      <report:size type="bytes">212252915</report:size>
+      <report:postdate>Mon, 25 Apr 2011 10:30:40 GMT</report:postdate>
+      <report:stats>
+        <report:views>2</report:views>
+        <report:comments>0</report:comments>
+      </report:stats>
+      <enclosure url="http://www.newzbin.com/browse/post/6076227/nzb/"
+				length="212252915" type="application/x-nzb" />
+      <pubDate>Mon, 25 Apr 2011 11:18:43 GMT</pubDate>
+    </item>
+    <item>
+      <title>Punky Brewster - 2x15 - Girls Will Be Boys</title>
+      <guid isPermaLink="true">http://www.newzbin.com/browse/post/6076226/</guid>
+      <link>http://www.newzbin.com/browse/post/6076226/</link>
+      <comments>http://www.newzbin.com/browse/post/6076226/#CommentsPH</comments>
+      <description>
+        <![CDATA[
+			<ul>
+			<li>
+			ID: <a href="http://www.newzbin.com/browse/post/6076226">6076226</a>
+			(<a
+			href="http://www.newzbin.com/account/bookmarks/add/?ps_id=6076226">Bookmark</a>)
+			(<a href="http://www.newzbin.com/browse/post/6076226/nzb/">NZB</a>)
+			(<a href="http://www.newzbin.com/nfo/view/txt/389905775/">NFO</a>)
+			(<a href="http://www.tvrage.com/shows/id-4915/episodes/140221/2x15/">More Info</a>)
+			(Size: 201.8MB)
+			</li>
+			<li>
+				Attributes:
+				Category - TV
+				|  Video Source - DVD |  Video Format - XviD |  Video Genre - Comedy |  Language - English
+			</li>
+			<li>Groups:  alt.binaries.multimedia,  alt.binaries.teevee</li>
+			<li>Poster: teevee@4u.tv (teevee)</li>
+			<li>PostDate: Monday 25 Apr 2011, 03:30AM PDT</li>
+			</ul>			]]>
+      </description>
+      <report:id>6076226</report:id>
+      <report:category>TV</report:category>
+      <report:attributes>
+        <report:attribute type="Source">DVD</report:attribute>
+        <report:attribute type="Video Fmt">XviD</report:attribute>
+        <report:attribute type="Video Genre">Comedy</report:attribute>
+        <report:attribute type="Language">English</report:attribute>
+      </report:attributes>
+      <report:groups>
+        <report:group>alt.binaries.multimedia</report:group>
+        <report:group>alt.binaries.teevee</report:group>
+      </report:groups>
+      <report:progress value="1">Report is complete</report:progress>
+      <report:moreinfo>http://www.tvrage.com/shows/id-4915/episodes/140221/2x15/</report:moreinfo>
+      <report:nfo>
+        <report:fileid>389905775</report:fileid>
+        <report:filename>runner-punkyb-s02e15.nfo</report:filename>
+        <report:link>http://www.newzbin.com/nfo/view/txt/389905775/</report:link>
+      </report:nfo>
+      <report:nzb>http://www.newzbin.com/browse/post/6076226/nzb/</report:nzb>
+      <report:poster>teevee@4u.tv (teevee)</report:poster>
+      <report:size type="bytes">211566110</report:size>
+      <report:postdate>Mon, 25 Apr 2011 10:30:46 GMT</report:postdate>
+      <report:stats>
+        <report:views>2</report:views>
+        <report:comments>0</report:comments>
+      </report:stats>
+      <enclosure url="http://www.newzbin.com/browse/post/6076226/nzb/"
+				length="211566110" type="application/x-nzb" />
+      <pubDate>Mon, 25 Apr 2011 11:18:29 GMT</pubDate>
+    </item>
+    <item>
+      <title>River Monsters - 3x03 - Silent Assassin</title>
+      <guid isPermaLink="true">http://www.newzbin.com/browse/post/6076225/</guid>
+      <link>http://www.newzbin.com/browse/post/6076225/</link>
+      <comments>http://www.newzbin.com/browse/post/6076225/#CommentsPH</comments>
+      <description>
+        <![CDATA[
+			<ul>
+			<li>
+			ID: <a href="http://www.newzbin.com/browse/post/6076225">6076225</a>
+			(<a
+			href="http://www.newzbin.com/account/bookmarks/add/?ps_id=6076225">Bookmark</a>)
+			(<a href="http://www.newzbin.com/browse/post/6076225/nzb/">NZB</a>)
+			(NFO)
+			(<a href="http://www.tvrage.com/shows/id-21955/episodes/1065021529/">More Info</a>)
+			(Size: 399.1MB)
+			</li>
+			<li>
+				Attributes:
+				Category - TV
+				|  Video Source - TV Cap, HDTV |  Video Format - XviD |  Video Genre - Documentary |  Language - English
+			</li>
+			<li>Groups:  alt.binaries.multimedia,  alt.binaries.teevee</li>
+			<li>Poster: teevee@4u.net (teevee)</li>
+			<li>PostDate: Monday 25 Apr 2011, 04:01AM PDT</li>
+			</ul>			]]>
+      </description>
+      <report:id>6076225</report:id>
+      <report:category>TV</report:category>
+      <report:attributes>
+        <report:attribute type="Source">TV Cap</report:attribute>
+        <report:attribute type="Source">HDTV</report:attribute>
+        <report:attribute type="Video Fmt">XviD</report:attribute>
+        <report:attribute type="Video Genre">Documentary</report:attribute>
+        <report:attribute type="Language">English</report:attribute>
+      </report:attributes>
+      <report:groups>
+        <report:group>alt.binaries.multimedia</report:group>
+        <report:group>alt.binaries.teevee</report:group>
+      </report:groups>
+      <report:progress value="1">Report is complete</report:progress>
+      <report:moreinfo>http://www.tvrage.com/shows/id-21955/episodes/1065021529/</report:moreinfo>
+      <report:nfo>
+        <report:fileid>0</report:fileid>
+        <report:filename></report:filename>
+        <report:link></report:link>
+      </report:nfo>
+      <report:nzb>http://www.newzbin.com/browse/post/6076225/nzb/</report:nzb>
+      <report:poster>teevee@4u.net (teevee)</report:poster>
+      <report:size type="bytes">418519200</report:size>
+      <report:postdate>Mon, 25 Apr 2011 11:01:54 GMT</report:postdate>
+      <report:stats>
+        <report:views>8</report:views>
+        <report:comments>0</report:comments>
+      </report:stats>
+      <enclosure url="http://www.newzbin.com/browse/post/6076225/nzb/"
+				length="418519200" type="application/x-nzb" />
+      <pubDate>Mon, 25 Apr 2011 11:18:14 GMT</pubDate>
+    </item>
+    <item>
+      <title>Punky Brewster - 2x16 - Cherie Lifesaver</title>
+      <guid isPermaLink="true">http://www.newzbin.com/browse/post/6076224/</guid>
+      <link>http://www.newzbin.com/browse/post/6076224/</link>
+      <comments>http://www.newzbin.com/browse/post/6076224/#CommentsPH</comments>
+      <description>
+        <![CDATA[
+			<ul>
+			<li>
+			ID: <a href="http://www.newzbin.com/browse/post/6076224">6076224</a>
+			(<a
+			href="http://www.newzbin.com/account/bookmarks/add/?ps_id=6076224">Bookmark</a>)
+			(<a href="http://www.newzbin.com/browse/post/6076224/nzb/">NZB</a>)
+			(<a href="http://www.newzbin.com/nfo/view/txt/389905748/">NFO</a>)
+			(<a href="http://www.tvrage.com/shows/id-4915/episodes/140222/2x16/">More Info</a>)
+			(Size: 201.8MB)
+			</li>
+			<li>
+				Attributes:
+				Category - TV
+				|  Video Source - DVD |  Video Format - XviD |  Video Genre - Comedy |  Language - English
+			</li>
+			<li>Groups:  alt.binaries.multimedia,  alt.binaries.teevee</li>
+			<li>Poster: teevee@4u.tv (teevee)</li>
+			<li>PostDate: Monday 25 Apr 2011, 03:30AM PDT</li>
+			</ul>			]]>
+      </description>
+      <report:id>6076224</report:id>
+      <report:category>TV</report:category>
+      <report:attributes>
+        <report:attribute type="Source">DVD</report:attribute>
+        <report:attribute type="Video Fmt">XviD</report:attribute>
+        <report:attribute type="Video Genre">Comedy</report:attribute>
+        <report:attribute type="Language">English</report:attribute>
+      </report:attributes>
+      <report:groups>
+        <report:group>alt.binaries.multimedia</report:group>
+        <report:group>alt.binaries.teevee</report:group>
+      </report:groups>
+      <report:progress value="1">Report is complete</report:progress>
+      <report:moreinfo>http://www.tvrage.com/shows/id-4915/episodes/140222/2x16/</report:moreinfo>
+      <report:nfo>
+        <report:fileid>389905748</report:fileid>
+        <report:filename>runner-punkyb-s02e16.nfo</report:filename>
+        <report:link>http://www.newzbin.com/nfo/view/txt/389905748/</report:link>
+      </report:nfo>
+      <report:nzb>http://www.newzbin.com/browse/post/6076224/nzb/</report:nzb>
+      <report:poster>teevee@4u.tv (teevee)</report:poster>
+      <report:size type="bytes">211613994</report:size>
+      <report:postdate>Mon, 25 Apr 2011 10:30:53 GMT</report:postdate>
+      <report:stats>
+        <report:views>2</report:views>
+        <report:comments>0</report:comments>
+      </report:stats>
+      <enclosure url="http://www.newzbin.com/browse/post/6076224/nzb/"
+				length="211613994" type="application/x-nzb" />
+      <pubDate>Mon, 25 Apr 2011 11:17:59 GMT</pubDate>
+    </item>
+    <item>
+      <title>Punky Brewster - 2x17 - Changes (Part 1)</title>
+      <guid isPermaLink="true">http://www.newzbin.com/browse/post/6076223/</guid>
+      <link>http://www.newzbin.com/browse/post/6076223/</link>
+      <comments>http://www.newzbin.com/browse/post/6076223/#CommentsPH</comments>
+      <description>
+        <![CDATA[
+			<ul>
+			<li>
+			ID: <a href="http://www.newzbin.com/browse/post/6076223">6076223</a>
+			(<a
+			href="http://www.newzbin.com/account/bookmarks/add/?ps_id=6076223">Bookmark</a>)
+			(<a href="http://www.newzbin.com/browse/post/6076223/nzb/">NZB</a>)
+			(<a href="http://www.newzbin.com/nfo/view/txt/389905832/">NFO</a>)
+			(<a href="http://www.tvrage.com/shows/id-4915/episodes/140223/2x17/">More Info</a>)
+			(Size: 202.4MB)
+			</li>
+			<li>
+				Attributes:
+				Category - TV
+				|  Video Source - DVD |  Video Format - XviD |  Video Genre - Comedy |  Language - English
+			</li>
+			<li>Groups:  alt.binaries.multimedia,  alt.binaries.teevee</li>
+			<li>Poster: teevee@4u.tv (teevee)</li>
+			<li>PostDate: Monday 25 Apr 2011, 03:30AM PDT</li>
+			</ul>			]]>
+      </description>
+      <report:id>6076223</report:id>
+      <report:category>TV</report:category>
+      <report:attributes>
+        <report:attribute type="Source">DVD</report:attribute>
+        <report:attribute type="Video Fmt">XviD</report:attribute>
+        <report:attribute type="Video Genre">Comedy</report:attribute>
+        <report:attribute type="Language">English</report:attribute>
+      </report:attributes>
+      <report:groups>
+        <report:group>alt.binaries.multimedia</report:group>
+        <report:group>alt.binaries.teevee</report:group>
+      </report:groups>
+      <report:progress value="1">Report is complete</report:progress>
+      <report:moreinfo>http://www.tvrage.com/shows/id-4915/episodes/140223/2x17/</report:moreinfo>
+      <report:nfo>
+        <report:fileid>389905832</report:fileid>
+        <report:filename>runner-punkyb-s02e17.nfo</report:filename>
+        <report:link>http://www.newzbin.com/nfo/view/txt/389905832/</report:link>
+      </report:nfo>
+      <report:nzb>http://www.newzbin.com/browse/post/6076223/nzb/</report:nzb>
+      <report:poster>teevee@4u.tv (teevee)</report:poster>
+      <report:size type="bytes">212283927</report:size>
+      <report:postdate>Mon, 25 Apr 2011 10:30:57 GMT</report:postdate>
+      <report:stats>
+        <report:views>2</report:views>
+        <report:comments>0</report:comments>
+      </report:stats>
+      <enclosure url="http://www.newzbin.com/browse/post/6076223/nzb/"
+				length="212283927" type="application/x-nzb" />
+      <pubDate>Mon, 25 Apr 2011 11:17:45 GMT</pubDate>
+    </item>
+    <item>
+      <title>Punky Brewster - 2x18 - Changes (Part 2)</title>
+      <guid isPermaLink="true">http://www.newzbin.com/browse/post/6076222/</guid>
+      <link>http://www.newzbin.com/browse/post/6076222/</link>
+      <comments>http://www.newzbin.com/browse/post/6076222/#CommentsPH</comments>
+      <description>
+        <![CDATA[
+			<ul>
+			<li>
+			ID: <a href="http://www.newzbin.com/browse/post/6076222">6076222</a>
+			(<a
+			href="http://www.newzbin.com/account/bookmarks/add/?ps_id=6076222">Bookmark</a>)
+			(<a href="http://www.newzbin.com/browse/post/6076222/nzb/">NZB</a>)
+			(<a href="http://www.newzbin.com/nfo/view/txt/389905844/">NFO</a>)
+			(<a href="http://www.tvrage.com/shows/id-4915/episodes/140224/2x18/">More Info</a>)
+			(Size: 202.2MB)
+			</li>
+			<li>
+				Attributes:
+				Category - TV
+				|  Video Source - DVD |  Video Format - XviD |  Video Genre - Comedy |  Language - English
+			</li>
+			<li>Groups:  alt.binaries.multimedia,  alt.binaries.teevee</li>
+			<li>Poster: teevee@4u.tv (teevee)</li>
+			<li>PostDate: Monday 25 Apr 2011, 03:31AM PDT</li>
+			</ul>			]]>
+      </description>
+      <report:id>6076222</report:id>
+      <report:category>TV</report:category>
+      <report:attributes>
+        <report:attribute type="Source">DVD</report:attribute>
+        <report:attribute type="Video Fmt">XviD</report:attribute>
+        <report:attribute type="Video Genre">Comedy</report:attribute>
+        <report:attribute type="Language">English</report:attribute>
+      </report:attributes>
+      <report:groups>
+        <report:group>alt.binaries.multimedia</report:group>
+        <report:group>alt.binaries.teevee</report:group>
+      </report:groups>
+      <report:progress value="1">Report is complete</report:progress>
+      <report:moreinfo>http://www.tvrage.com/shows/id-4915/episodes/140224/2x18/</report:moreinfo>
+      <report:nfo>
+        <report:fileid>389905844</report:fileid>
+        <report:filename>runner-punkyb-s02e18.nfo</report:filename>
+        <report:link>http://www.newzbin.com/nfo/view/txt/389905844/</report:link>
+      </report:nfo>
+      <report:nzb>http://www.newzbin.com/browse/post/6076222/nzb/</report:nzb>
+      <report:poster>teevee@4u.tv (teevee)</report:poster>
+      <report:size type="bytes">212070026</report:size>
+      <report:postdate>Mon, 25 Apr 2011 10:31:04 GMT</report:postdate>
+      <report:stats>
+        <report:views>2</report:views>
+        <report:comments>0</report:comments>
+      </report:stats>
+      <enclosure url="http://www.newzbin.com/browse/post/6076222/nzb/"
+				length="212070026" type="application/x-nzb" />
+      <pubDate>Mon, 25 Apr 2011 11:17:11 GMT</pubDate>
+    </item>
+    <item>
+      <title>Punky Brewster - 2x19 - Changes (Part 3)</title>
+      <guid isPermaLink="true">http://www.newzbin.com/browse/post/6076221/</guid>
+      <link>http://www.newzbin.com/browse/post/6076221/</link>
+      <comments>http://www.newzbin.com/browse/post/6076221/#CommentsPH</comments>
+      <description>
+        <![CDATA[
+			<ul>
+			<li>
+			ID: <a href="http://www.newzbin.com/browse/post/6076221">6076221</a>
+			(<a
+			href="http://www.newzbin.com/account/bookmarks/add/?ps_id=6076221">Bookmark</a>)
+			(<a href="http://www.newzbin.com/browse/post/6076221/nzb/">NZB</a>)
+			(<a href="http://www.newzbin.com/nfo/view/txt/389905874/">NFO</a>)
+			(<a href="http://www.tvrage.com/shows/id-4915/episodes/140225/2x19/">More Info</a>)
+			(Size: 202.0MB)
+			</li>
+			<li>
+				Attributes:
+				Category - TV
+				|  Video Source - DVD |  Video Format - XviD |  Video Genre - Comedy |  Language - English
+			</li>
+			<li>Groups:  alt.binaries.multimedia,  alt.binaries.teevee</li>
+			<li>Poster: teevee@4u.tv (teevee)</li>
+			<li>PostDate: Monday 25 Apr 2011, 03:31AM PDT</li>
+			</ul>			]]>
+      </description>
+      <report:id>6076221</report:id>
+      <report:category>TV</report:category>
+      <report:attributes>
+        <report:attribute type="Source">DVD</report:attribute>
+        <report:attribute type="Video Fmt">XviD</report:attribute>
+        <report:attribute type="Video Genre">Comedy</report:attribute>
+        <report:attribute type="Language">English</report:attribute>
+      </report:attributes>
+      <report:groups>
+        <report:group>alt.binaries.multimedia</report:group>
+        <report:group>alt.binaries.teevee</report:group>
+      </report:groups>
+      <report:progress value="1">Report is complete</report:progress>
+      <report:moreinfo>http://www.tvrage.com/shows/id-4915/episodes/140225/2x19/</report:moreinfo>
+      <report:nfo>
+        <report:fileid>389905874</report:fileid>
+        <report:filename>runner-punkyb-s02e19.nfo</report:filename>
+        <report:link>http://www.newzbin.com/nfo/view/txt/389905874/</report:link>
+      </report:nfo>
+      <report:nzb>http://www.newzbin.com/browse/post/6076221/nzb/</report:nzb>
+      <report:poster>teevee@4u.tv (teevee)</report:poster>
+      <report:size type="bytes">211851592</report:size>
+      <report:postdate>Mon, 25 Apr 2011 10:31:11 GMT</report:postdate>
+      <report:stats>
+        <report:views>2</report:views>
+        <report:comments>0</report:comments>
+      </report:stats>
+      <enclosure url="http://www.newzbin.com/browse/post/6076221/nzb/"
+				length="211851592" type="application/x-nzb" />
+      <pubDate>Mon, 25 Apr 2011 11:17:00 GMT</pubDate>
+    </item>
+  </channel>
+</rss>
\ No newline at end of file
diff --git a/NzbDrone.Core.Test/Files/RSS/nzbmatrix.xml b/NzbDrone.Core.Test/Files/RSS/nzbmatrix.xml
new file mode 100644
index 000000000..4c422f780
--- /dev/null
+++ b/NzbDrone.Core.Test/Files/RSS/nzbmatrix.xml
@@ -0,0 +1,512 @@
+<?xml version="1.0" encoding="iso-8859-1"?>
+<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
+  <channel>
+    <generator>NZBMatrix.com RSS 2.0</generator>
+    <language>en</language>
+    <title>NZBMatrix</title>
+    <description>NZBMatrix.com RSS Feed - Usenet</description>
+    <link>http://nzbmatrix.com</link>
+    <copyright>Copyright 2011 NZBMatrix</copyright>
+    <pubDate>Mon, 25 Apr 2011 18:09:40 +0200</pubDate>
+    <item>
+      <title>The New Inventors Save Water Special DVDRip XviD SPRiNTER</title>
+      <guid>http://nzbmatrix.com/nzb-details.php?id=914525&amp;hit=1</guid>
+      <link>http://nzbmatrix.com/nzb-details.php?id=914525&amp;hit=1</link>
+      <description><![CDATA[<b>Name:</b> The New Inventors Save Water Special DVDRip XviD SPRiNTER<br /><b>Category:</b> TV: Divx/Xvid<br /><b>Size:</b> 1.58 GB<br /><b>Added:</b> 2011-04-25 15:12:38<br /><b>Group:</b> alt.binaries.multimedia <BR /><b>NFO:</b> <a href="http://nzbmatrix.com/viewnfo.php?id=914525">View NFO</a>  ]]></description>
+      <category>TV: Divx/Xvid</category>
+      <cattext>tv.divx/xvid</cattext>
+      <categoryid>6</categoryid>
+      <enclosure url="http://nzbmatrix.com/nzb-details.php?id=914525&amp;hit=1" length="1692590407" type="application/x-nzb" />
+    </item>
+    <item>
+      <title>House S04E11 FRENCH 720p HDTV x264 BAWLS</title>
+      <guid>http://nzbmatrix.com/nzb-details.php?id=914522&amp;hit=1</guid>
+      <link>http://nzbmatrix.com/nzb-details.php?id=914522&amp;hit=1</link>
+      <description><![CDATA[<b>Name:</b> House S04E11 FRENCH 720p HDTV x264 BAWLS<br /><b>Category:</b> TV: HD<br /><b>Size:</b> 1.24 GB<br /><b>Added:</b> 2011-04-25 15:06:58<br /><b>Group:</b> alt.binaries.multimedia <BR /><b>NFO:</b> <a href="http://nzbmatrix.com/viewnfo.php?id=914522">View NFO</a>  ]]></description>
+      <category>TV: HD</category>
+      <cattext>tv.hd</cattext>
+      <categoryid>41</categoryid>
+      <enclosure url="http://nzbmatrix.com/nzb-details.php?id=914522&amp;hit=1" length="1335801937" type="application/x-nzb" />
+    </item>
+    <item>
+      <title>House S04E10 FRENCH 720p HDTV x264 BAWLS</title>
+      <guid>http://nzbmatrix.com/nzb-details.php?id=914520&amp;hit=1</guid>
+      <link>http://nzbmatrix.com/nzb-details.php?id=914520&amp;hit=1</link>
+      <description><![CDATA[<b>Name:</b> House S04E10 FRENCH 720p HDTV x264 BAWLS<br /><b>Category:</b> TV: HD<br /><b>Size:</b> 1.24 GB<br /><b>Added:</b> 2011-04-25 15:06:25<br /><b>Group:</b> alt.binaries.multimedia <BR /><b>NFO:</b> <a href="http://nzbmatrix.com/viewnfo.php?id=914520">View NFO</a>  ]]></description>
+      <category>TV: HD</category>
+      <cattext>tv.hd</cattext>
+      <categoryid>41</categoryid>
+      <enclosure url="http://nzbmatrix.com/nzb-details.php?id=914520&amp;hit=1" length="1335833395" type="application/x-nzb" />
+    </item>
+    <item>
+      <title>House S04E09 FRENCH 720p HDTV x264 BAWLS</title>
+      <guid>http://nzbmatrix.com/nzb-details.php?id=914518&amp;hit=1</guid>
+      <link>http://nzbmatrix.com/nzb-details.php?id=914518&amp;hit=1</link>
+      <description><![CDATA[<b>Name:</b> House S04E09 FRENCH 720p HDTV x264 BAWLS<br /><b>Category:</b> TV: HD<br /><b>Size:</b> 1.24 GB<br /><b>Added:</b> 2011-04-25 15:05:26<br /><b>Group:</b> alt.binaries.multimedia <BR /><b>NFO:</b> <a href="http://nzbmatrix.com/viewnfo.php?id=914518">View NFO</a>  ]]></description>
+      <category>TV: HD</category>
+      <cattext>tv.hd</cattext>
+      <categoryid>41</categoryid>
+      <enclosure url="http://nzbmatrix.com/nzb-details.php?id=914518&amp;hit=1" length="1335613194" type="application/x-nzb" />
+    </item>
+    <item>
+      <title>Breakout Kings S01E08 Steaks 720p WEB DL DD5 1 H 264 EbP</title>
+      <guid>http://nzbmatrix.com/nzb-details.php?id=914497&amp;hit=1</guid>
+      <link>http://nzbmatrix.com/nzb-details.php?id=914497&amp;hit=1</link>
+      <description><![CDATA[<b>Name:</b> Breakout Kings S01E08 Steaks 720p WEB DL DD5 1 H 264 EbP<br /><b>Category:</b> TV: HD<br /><b>Size:</b> 1.48 GB<br /><b>Added:</b> 2011-04-25 14:16:41<br /><b>Group:</b> alt.binaries.hdtv   ]]></description>
+      <category>TV: HD</category>
+      <cattext>tv.hd</cattext>
+      <categoryid>41</categoryid>
+      <enclosure url="http://nzbmatrix.com/nzb-details.php?id=914497&amp;hit=1" length="1592283627" type="application/x-nzb" />
+    </item>
+    <item>
+      <title>Melrose Place 2009 S01E11 FRENCH 720p HDTV x264 HTO</title>
+      <guid>http://nzbmatrix.com/nzb-details.php?id=914492&amp;hit=1</guid>
+      <link>http://nzbmatrix.com/nzb-details.php?id=914492&amp;hit=1</link>
+      <description><![CDATA[<b>Name:</b> Melrose Place 2009 S01E11 FRENCH 720p HDTV x264 HTO<br /><b>Category:</b> TV: HD<br /><b>Size:</b> 1.29 GB<br /><b>Added:</b> 2011-04-25 13:59:22<br /><b>Group:</b> alt.binaries.multimedia <BR /><b>NFO:</b> <a href="http://nzbmatrix.com/viewnfo.php?id=914492">View NFO</a>  ]]></description>
+      <category>TV: HD</category>
+      <cattext>tv.hd</cattext>
+      <categoryid>41</categoryid>
+      <enclosure url="http://nzbmatrix.com/nzb-details.php?id=914492&amp;hit=1" length="1381614223" type="application/x-nzb" />
+    </item>
+    <item>
+      <title>WTCC 2011 Belgie Race2 DUTCH HDTV XViD NSN</title>
+      <guid>http://nzbmatrix.com/nzb-details.php?id=914489&amp;hit=1</guid>
+      <link>http://nzbmatrix.com/nzb-details.php?id=914489&amp;hit=1</link>
+      <description><![CDATA[<b>Name:</b> WTCC 2011 Belgie Race2 DUTCH HDTV XViD NSN<br /><b>Category:</b> TV: Divx/Xvid<br /><b>Size:</b> 810.83 MB<br /><b>Added:</b> 2011-04-25 13:54:56<br /><b>Group:</b> alt.binaries.multimedia <BR /><b>NFO:</b> <a href="http://nzbmatrix.com/viewnfo.php?id=914489">View NFO</a>  ]]></description>
+      <category>TV: Divx/Xvid</category>
+      <cattext>tv.divx/xvid</cattext>
+      <categoryid>6</categoryid>
+      <enclosure url="http://nzbmatrix.com/nzb-details.php?id=914489&amp;hit=1" length="850216878" type="application/x-nzb" />
+    </item>
+    <item>
+      <title>WTCC 2011 Belgie Race1 DUTCH HDTV XViD NSN</title>
+      <guid>http://nzbmatrix.com/nzb-details.php?id=914487&amp;hit=1</guid>
+      <link>http://nzbmatrix.com/nzb-details.php?id=914487&amp;hit=1</link>
+      <description><![CDATA[<b>Name:</b> WTCC 2011 Belgie Race1 DUTCH HDTV XViD NSN<br /><b>Category:</b> TV: Divx/Xvid<br /><b>Size:</b> 812.25 MB<br /><b>Added:</b> 2011-04-25 13:52:41<br /><b>Group:</b> alt.binaries.multimedia <BR /><b>NFO:</b> <a href="http://nzbmatrix.com/viewnfo.php?id=914487">View NFO</a>  ]]></description>
+      <category>TV: Divx/Xvid</category>
+      <cattext>tv.divx/xvid</cattext>
+      <categoryid>6</categoryid>
+      <enclosure url="http://nzbmatrix.com/nzb-details.php?id=914487&amp;hit=1" length="851705856" type="application/x-nzb" />
+    </item>
+    <item>
+      <title>Misfits S02E04 FRENCH LD DVDRip XviD JMT</title>
+      <guid>http://nzbmatrix.com/nzb-details.php?id=914478&amp;hit=1</guid>
+      <link>http://nzbmatrix.com/nzb-details.php?id=914478&amp;hit=1</link>
+      <description><![CDATA[<b>Name:</b> Misfits S02E04 FRENCH LD DVDRip XviD JMT<br /><b>Category:</b> TV: Divx/Xvid<br /><b>Size:</b> 411.96 MB<br /><b>Added:</b> 2011-04-25 13:33:59<br /><b>Group:</b> alt.binaries.multimedia   ]]></description>
+      <category>TV: Divx/Xvid</category>
+      <cattext>tv.divx/xvid</cattext>
+      <categoryid>6</categoryid>
+      <enclosure url="http://nzbmatrix.com/nzb-details.php?id=914478&amp;hit=1" length="431971368" type="application/x-nzb" />
+    </item>
+    <item>
+      <title>The Benson Interruption S01E01</title>
+      <guid>http://nzbmatrix.com/nzb-details.php?id=914475&amp;hit=1</guid>
+      <link>http://nzbmatrix.com/nzb-details.php?id=914475&amp;hit=1</link>
+      <description><![CDATA[<b>Name:</b> The Benson Interruption S01E01<br /><b>Category:</b> TV: Divx/Xvid<br /><b>Size:</b> 270.59 MB<br /><b>Added:</b> 2011-04-25 13:24:57<br /><b>Group:</b> alt.binaries.teevee <BR /><b>NFO:</b> <a href="http://nzbmatrix.com/viewnfo.php?id=914475">View NFO</a>  ]]></description>
+      <category>TV: Divx/Xvid</category>
+      <cattext>tv.divx/xvid</cattext>
+      <categoryid>6</categoryid>
+      <enclosure url="http://nzbmatrix.com/nzb-details.php?id=914475&amp;hit=1" length="283734179" type="application/x-nzb" />
+    </item>
+    <item>
+      <title>Car Warriors S01E08 HDTV XviD CRiMSON</title>
+      <guid>http://nzbmatrix.com/nzb-details.php?id=914441&amp;hit=1</guid>
+      <link>http://nzbmatrix.com/nzb-details.php?id=914441&amp;hit=1</link>
+      <description><![CDATA[<b>Name:</b> Car Warriors S01E08 HDTV XviD CRiMSON<br /><b>Category:</b> TV: Divx/Xvid<br /><b>Size:</b> 398.51 MB<br /><b>Added:</b> 2011-04-25 12:04:29<br /><b>Group:</b> alt.binaries.teevee   ]]></description>
+      <category>TV: Divx/Xvid</category>
+      <cattext>tv.divx/xvid</cattext>
+      <categoryid>6</categoryid>
+      <enclosure url="http://nzbmatrix.com/nzb-details.php?id=914441&amp;hit=1" length="417868021" type="application/x-nzb" />
+    </item>
+    <item>
+      <title>NBA 23 04 2011 WCQF G4 Mavericks vs Blazers</title>
+      <guid>http://nzbmatrix.com/nzb-details.php?id=914433&amp;hit=1</guid>
+      <link>http://nzbmatrix.com/nzb-details.php?id=914433&amp;hit=1</link>
+      <description><![CDATA[<b>Name:</b> NBA 23 04 2011 WCQF G4 Mavericks vs Blazers<br /><b>Category:</b> TV: Sport/Ent<br /><b>Size:</b> 2.52 GB<br /><b>Added:</b> 2011-04-25 11:50:47<br /><b>Group:</b> alt.binaries.boneless   ]]></description>
+      <category>TV: Sport/Ent</category>
+      <cattext>tv.sport/ent</cattext>
+      <categoryid>7</categoryid>
+      <enclosure url="http://nzbmatrix.com/nzb-details.php?id=914433&amp;hit=1" length="2703952445" type="application/x-nzb" />
+    </item>
+    <item>
+      <title>Supernatural S06E18 Frontierland German Custom Subbed WS HDTV XviD iNTERNAL BaCKToRG</title>
+      <guid>http://nzbmatrix.com/nzb-details.php?id=914432&amp;hit=1</guid>
+      <link>http://nzbmatrix.com/nzb-details.php?id=914432&amp;hit=1</link>
+      <description><![CDATA[<b>Name:</b> Supernatural S06E18 Frontierland German Custom Subbed WS HDTV XviD iNTERNAL BaCKToRG<br /><b>Category:</b> TV: Divx/Xvid<br /><b>Size:</b> 399.38 MB<br /><b>Added:</b> 2011-04-25 11:49:23<br /><b>Group:</b> alt.binaries.multimedia <BR /><b>NFO:</b> <a href="http://nzbmatrix.com/viewnfo.php?id=914432">View NFO</a>  ]]></description>
+      <category>TV: Divx/Xvid</category>
+      <cattext>tv.divx/xvid</cattext>
+      <categoryid>6</categoryid>
+      <enclosure url="http://nzbmatrix.com/nzb-details.php?id=914432&amp;hit=1" length="418780282" type="application/x-nzb" />
+    </item>
+    <item>
+      <title>Supernatural S06E17 My Heart Will Go On German Custom Subbed WS HDTV XviD iNTERNAL BaCKToRG</title>
+      <guid>http://nzbmatrix.com/nzb-details.php?id=914427&amp;hit=1</guid>
+      <link>http://nzbmatrix.com/nzb-details.php?id=914427&amp;hit=1</link>
+      <description><![CDATA[<b>Name:</b> Supernatural S06E17 My Heart Will Go On German Custom Subbed WS HDTV XviD iNTERNAL BaCKToRG<br /><b>Category:</b> TV: Divx/Xvid<br /><b>Size:</b> 399.32 MB<br /><b>Added:</b> 2011-04-25 11:47:26<br /><b>Group:</b> alt.binaries.multimedia <BR /><b>NFO:</b> <a href="http://nzbmatrix.com/viewnfo.php?id=914427">View NFO</a>  ]]></description>
+      <category>TV: Divx/Xvid</category>
+      <cattext>tv.divx/xvid</cattext>
+      <categoryid>6</categoryid>
+      <enclosure url="http://nzbmatrix.com/nzb-details.php?id=914427&amp;hit=1" length="418717368" type="application/x-nzb" />
+    </item>
+    <item>
+      <title>Fussball Bundesliga 2010 2011 30 Spieltag FC Bayern Muenchen vs Bayer 04 Leverkusen German WS dTV XviD WoGS</title>
+      <guid>http://nzbmatrix.com/nzb-details.php?id=914423&amp;hit=1</guid>
+      <link>http://nzbmatrix.com/nzb-details.php?id=914423&amp;hit=1</link>
+      <description><![CDATA[<b>Name:</b> Fussball Bundesliga 2010 2011 30 Spieltag FC Bayern Muenchen vs Bayer 04 Leverkusen German WS dTV XviD WoGS<br /><b>Category:</b> TV: Divx/Xvid<br /><b>Size:</b> 1.28 GB<br /><b>Added:</b> 2011-04-25 11:41:35<br /><b>Group:</b> alt.binaries.multimedia <BR /><b>NFO:</b> <a href="http://nzbmatrix.com/viewnfo.php?id=914423">View NFO</a>  ]]></description>
+      <category>TV: Divx/Xvid</category>
+      <cattext>tv.divx/xvid</cattext>
+      <categoryid>6</categoryid>
+      <enclosure url="http://nzbmatrix.com/nzb-details.php?id=914423&amp;hit=1" length="1377828864" type="application/x-nzb" />
+    </item>
+    <item>
+      <title>How I Met Your Mother S06E20 The Exploding Meatball Sub German Custom Subbed WS HDTV XviD iNTERNAL BaCKToRG</title>
+      <guid>http://nzbmatrix.com/nzb-details.php?id=914420&amp;hit=1</guid>
+      <link>http://nzbmatrix.com/nzb-details.php?id=914420&amp;hit=1</link>
+      <description><![CDATA[<b>Name:</b> How I Met Your Mother S06E20 The Exploding Meatball Sub German Custom Subbed WS HDTV XviD iNTERNAL BaCKToRG<br /><b>Category:</b> TV: Divx/Xvid<br /><b>Size:</b> 199.67 MB<br /><b>Added:</b> 2011-04-25 11:35:54<br /><b>Group:</b> alt.binaries.multimedia <BR /><b>NFO:</b> <a href="http://nzbmatrix.com/viewnfo.php?id=914420">View NFO</a>  ]]></description>
+      <category>TV: Divx/Xvid</category>
+      <cattext>tv.divx/xvid</cattext>
+      <categoryid>6</categoryid>
+      <enclosure url="http://nzbmatrix.com/nzb-details.php?id=914420&amp;hit=1" length="209369169" type="application/x-nzb" />
+    </item>
+    <item>
+      <title>Desperate Housewives S07E18 Moments in the Woods German Custom Subbed WS HDTV XviD iNTERNAL BaCKToRG</title>
+      <guid>http://nzbmatrix.com/nzb-details.php?id=914418&amp;hit=1</guid>
+      <link>http://nzbmatrix.com/nzb-details.php?id=914418&amp;hit=1</link>
+      <description><![CDATA[<b>Name:</b> Desperate Housewives S07E18 Moments in the Woods German Custom Subbed WS HDTV XviD iNTERNAL BaCKToRG<br /><b>Category:</b> TV: Divx/Xvid<br /><b>Size:</b> 399.33 MB<br /><b>Added:</b> 2011-04-25 11:34:59<br /><b>Group:</b> alt.binaries.multimedia <BR /><b>NFO:</b> <a href="http://nzbmatrix.com/viewnfo.php?id=914418">View NFO</a>  ]]></description>
+      <category>TV: Divx/Xvid</category>
+      <cattext>tv.divx/xvid</cattext>
+      <categoryid>6</categoryid>
+      <enclosure url="http://nzbmatrix.com/nzb-details.php?id=914418&amp;hit=1" length="418727854" type="application/x-nzb" />
+    </item>
+    <item>
+      <title>UR Samtiden Darfor Stannar Unga Inom Idrotten 2011 SWEDiSH WS PDTV XviD DiSCUSSET</title>
+      <guid>http://nzbmatrix.com/nzb-details.php?id=914410&amp;hit=1</guid>
+      <link>http://nzbmatrix.com/nzb-details.php?id=914410&amp;hit=1</link>
+      <description><![CDATA[<b>Name:</b> UR Samtiden Darfor Stannar Unga Inom Idrotten 2011 SWEDiSH WS PDTV XviD DiSCUSSET<br /><b>Category:</b> TV: Divx/Xvid<br /><b>Size:</b> 428.24 MB<br /><b>Added:</b> 2011-04-25 11:23:04<br /><b>Group:</b> alt.binaries.multimedia <BR /><b>NFO:</b> <a href="http://nzbmatrix.com/viewnfo.php?id=914410">View NFO</a>  ]]></description>
+      <category>TV: Divx/Xvid</category>
+      <cattext>tv.divx/xvid</cattext>
+      <categoryid>6</categoryid>
+      <enclosure url="http://nzbmatrix.com/nzb-details.php?id=914410&amp;hit=1" length="449042186" type="application/x-nzb" />
+    </item>
+    <item>
+      <title>The Sunday Footy Show 2011 04 24 WS PDTV XviD WLT</title>
+      <guid>http://nzbmatrix.com/nzb-details.php?id=914409&amp;hit=1</guid>
+      <link>http://nzbmatrix.com/nzb-details.php?id=914409&amp;hit=1</link>
+      <description><![CDATA[<b>Name:</b> The Sunday Footy Show 2011 04 24 WS PDTV XviD WLT<br /><b>Category:</b> TV: Divx/Xvid<br /><b>Size:</b> 387.34 MB<br /><b>Added:</b> 2011-04-25 11:20:29<br /><b>Group:</b> alt.binaries.teevee <BR /><b>NFO:</b> <a href="http://nzbmatrix.com/viewnfo.php?id=914409">View NFO</a>  ]]></description>
+      <category>TV: Divx/Xvid</category>
+      <cattext>tv.divx/xvid</cattext>
+      <categoryid>6</categoryid>
+      <enclosure url="http://nzbmatrix.com/nzb-details.php?id=914409&amp;hit=1" length="406155427" type="application/x-nzb" />
+    </item>
+    <item>
+      <title>The Sunday Roast 2011 04 24 WS PDTV XviD WLT</title>
+      <guid>http://nzbmatrix.com/nzb-details.php?id=914407&amp;hit=1</guid>
+      <link>http://nzbmatrix.com/nzb-details.php?id=914407&amp;hit=1</link>
+      <description><![CDATA[<b>Name:</b> The Sunday Roast 2011 04 24 WS PDTV XviD WLT<br /><b>Category:</b> TV: Divx/Xvid<br /><b>Size:</b> 387.49 MB<br /><b>Added:</b> 2011-04-25 11:19:33<br /><b>Group:</b> alt.binaries.teevee <BR /><b>NFO:</b> <a href="http://nzbmatrix.com/viewnfo.php?id=914407">View NFO</a>  ]]></description>
+      <category>TV: Divx/Xvid</category>
+      <cattext>tv.divx/xvid</cattext>
+      <categoryid>6</categoryid>
+      <enclosure url="http://nzbmatrix.com/nzb-details.php?id=914407&amp;hit=1" length="406312714" type="application/x-nzb" />
+    </item>
+    <item>
+      <title>Punky Brewster S02 iNTERNAL DVDRip XviD RUNNER</title>
+      <guid>http://nzbmatrix.com/nzb-details.php?id=914406&amp;hit=1</guid>
+      <link>http://nzbmatrix.com/nzb-details.php?id=914406&amp;hit=1</link>
+      <description><![CDATA[<b>Name:</b> Punky Brewster S02 iNTERNAL DVDRip XviD RUNNER<br /><b>Category:</b> TV: Divx/Xvid<br /><b>Size:</b> 4.41 GB<br /><b>Added:</b> 2011-04-25 11:19:30<br /><b>Group:</b> alt.binaries.multimedia <BR /><b>NFO:</b> <a href="http://nzbmatrix.com/viewnfo.php?id=914406">View NFO</a>  <BR /><b>IMDB Link:</b> <a href="http://www.imdb.com/title/tt0086787/">Go To IMDB</a>]]></description>
+      <category>TV: Divx/Xvid</category>
+      <cattext>tv.divx/xvid</cattext>
+      <categoryid>6</categoryid>
+      <enclosure url="http://nzbmatrix.com/nzb-details.php?id=914406&amp;hit=1" length="437801451" type="application/x-nzb" />
+    </item>
+    <item>
+      <title>Punky Brewster S01 iNTERNAL DVDRip XviD RUNNER</title>
+      <guid>http://nzbmatrix.com/nzb-details.php?id=914404&amp;hit=1</guid>
+      <link>http://nzbmatrix.com/nzb-details.php?id=914404&amp;hit=1</link>
+      <description><![CDATA[<b>Name:</b> Punky Brewster S01 iNTERNAL DVDRip XviD RUNNER<br /><b>Category:</b> TV: Divx/Xvid<br /><b>Size:</b> 4.69 GB<br /><b>Added:</b> 2011-04-25 11:17:43<br /><b>Group:</b> alt.binaries.multimedia <BR /><b>NFO:</b> <a href="http://nzbmatrix.com/viewnfo.php?id=914404">View NFO</a>  <BR /><b>IMDB Link:</b> <a href="http://www.imdb.com/title/tt0086787/">Go To IMDB</a>]]></description>
+      <category>TV: Divx/Xvid</category>
+      <cattext>tv.divx/xvid</cattext>
+      <categoryid>6</categoryid>
+      <enclosure url="http://nzbmatrix.com/nzb-details.php?id=914404&amp;hit=1" length="743482327" type="application/x-nzb" />
+    </item>
+    <item>
+      <title>The Only Way Is Essex S02E11 WS PDTV XviD CiA</title>
+      <guid>http://nzbmatrix.com/nzb-details.php?id=914385&amp;hit=1</guid>
+      <link>http://nzbmatrix.com/nzb-details.php?id=914385&amp;hit=1</link>
+      <description><![CDATA[<b>Name:</b> The Only Way Is Essex S02E11 WS PDTV XviD CiA<br /><b>Category:</b> TV: Divx/Xvid<br /><b>Size:</b> 329.12 MB<br /><b>Added:</b> 2011-04-25 10:49:28<br /><b>Group:</b> alt.binaries.matrix <BR /><b>NFO:</b> <a href="http://nzbmatrix.com/viewnfo.php?id=914385">View NFO</a>  ]]></description>
+      <category>TV: Divx/Xvid</category>
+      <cattext>tv.divx/xvid</cattext>
+      <categoryid>6</categoryid>
+      <enclosure url="http://nzbmatrix.com/nzb-details.php?id=914385&amp;hit=1" length="345107333" type="application/x-nzb" />
+    </item>
+    <item>
+      <title>The 7pm Project 2011 04 25 Kath Robinson WS PDTV XviD FQM</title>
+      <guid>http://nzbmatrix.com/nzb-details.php?id=914384&amp;hit=1</guid>
+      <link>http://nzbmatrix.com/nzb-details.php?id=914384&amp;hit=1</link>
+      <description><![CDATA[<b>Name:</b> The 7pm Project 2011 04 25 Kath Robinson WS PDTV XviD FQM<br /><b>Category:</b> TV: Divx/Xvid<br /><b>Size:</b> 198.78 MB<br /><b>Added:</b> 2011-04-25 10:49:06<br /><b>Group:</b> alt.binaries.teevee <BR /><b>NFO:</b> <a href="http://nzbmatrix.com/viewnfo.php?id=914384">View NFO</a>  ]]></description>
+      <category>TV: Divx/Xvid</category>
+      <cattext>tv.divx/xvid</cattext>
+      <categoryid>6</categoryid>
+      <enclosure url="http://nzbmatrix.com/nzb-details.php?id=914384&amp;hit=1" length="208435937" type="application/x-nzb" />
+    </item>
+    <item>
+      <title>Hawthorne S02E06 FRENCH 720p HDTV x264 BAWLS</title>
+      <guid>http://nzbmatrix.com/nzb-details.php?id=914378&amp;hit=1</guid>
+      <link>http://nzbmatrix.com/nzb-details.php?id=914378&amp;hit=1</link>
+      <description><![CDATA[<b>Name:</b> Hawthorne S02E06 FRENCH 720p HDTV x264 BAWLS<br /><b>Category:</b> TV: HD<br /><b>Size:</b> 1.29 GB<br /><b>Added:</b> 2011-04-25 10:41:49<br /><b>Group:</b> alt.binaries.multimedia <BR /><b>NFO:</b> <a href="http://nzbmatrix.com/viewnfo.php?id=914378">View NFO</a>  ]]></description>
+      <category>TV: HD</category>
+      <cattext>tv.hd</cattext>
+      <categoryid>41</categoryid>
+      <enclosure url="http://nzbmatrix.com/nzb-details.php?id=914378&amp;hit=1" length="1381624709" type="application/x-nzb" />
+    </item>
+    <item>
+      <title>Saving Grace S03E15 FRENCH 720p HDTV x264 BAWLS</title>
+      <guid>http://nzbmatrix.com/nzb-details.php?id=914377&amp;hit=1</guid>
+      <link>http://nzbmatrix.com/nzb-details.php?id=914377&amp;hit=1</link>
+      <description><![CDATA[<b>Name:</b> Saving Grace S03E15 FRENCH 720p HDTV x264 BAWLS<br /><b>Category:</b> TV: HD<br /><b>Size:</b> 1.28 GB<br /><b>Added:</b> 2011-04-25 10:41:05<br /><b>Group:</b> alt.binaries.multimedia <BR /><b>NFO:</b> <a href="http://nzbmatrix.com/viewnfo.php?id=914377">View NFO</a>  ]]></description>
+      <category>TV: HD</category>
+      <cattext>tv.hd</cattext>
+      <categoryid>41</categoryid>
+      <enclosure url="http://nzbmatrix.com/nzb-details.php?id=914377&amp;hit=1" length="1373854760" type="application/x-nzb" />
+    </item>
+    <item>
+      <title>Hawthorne S02E06 FRENCH HDTV XViD BAWLS</title>
+      <guid>http://nzbmatrix.com/nzb-details.php?id=914374&amp;hit=1</guid>
+      <link>http://nzbmatrix.com/nzb-details.php?id=914374&amp;hit=1</link>
+      <description><![CDATA[<b>Name:</b> Hawthorne S02E06 FRENCH HDTV XViD BAWLS<br /><b>Category:</b> TV: Divx/Xvid<br /><b>Size:</b> 376.16 MB<br /><b>Added:</b> 2011-04-25 10:40:06<br /><b>Group:</b> alt.binaries.multimedia <BR /><b>NFO:</b> <a href="http://nzbmatrix.com/viewnfo.php?id=914374">View NFO</a>  ]]></description>
+      <category>TV: Divx/Xvid</category>
+      <cattext>tv.divx/xvid</cattext>
+      <categoryid>6</categoryid>
+      <enclosure url="http://nzbmatrix.com/nzb-details.php?id=914374&amp;hit=1" length="394432348" type="application/x-nzb" />
+    </item>
+    <item>
+      <title>Saving Grace S03E15 FRENCH HDTV XViD BAWLS</title>
+      <guid>http://nzbmatrix.com/nzb-details.php?id=914373&amp;hit=1</guid>
+      <link>http://nzbmatrix.com/nzb-details.php?id=914373&amp;hit=1</link>
+      <description><![CDATA[<b>Name:</b> Saving Grace S03E15 FRENCH HDTV XViD BAWLS<br /><b>Category:</b> TV: Divx/Xvid<br /><b>Size:</b> 406.52 MB<br /><b>Added:</b> 2011-04-25 10:38:50<br /><b>Group:</b> alt.binaries.multimedia <BR /><b>NFO:</b> <a href="http://nzbmatrix.com/viewnfo.php?id=914373">View NFO</a>  ]]></description>
+      <category>TV: Divx/Xvid</category>
+      <cattext>tv.divx/xvid</cattext>
+      <categoryid>6</categoryid>
+      <enclosure url="http://nzbmatrix.com/nzb-details.php?id=914373&amp;hit=1" length="426267115" type="application/x-nzb" />
+    </item>
+    <item>
+      <title>Saddle Ranch S01E02 Always Down to Party HDTV XviD MOMENTUM</title>
+      <guid>http://nzbmatrix.com/nzb-details.php?id=914363&amp;hit=1</guid>
+      <link>http://nzbmatrix.com/nzb-details.php?id=914363&amp;hit=1</link>
+      <description><![CDATA[<b>Name:</b> Saddle Ranch S01E02 Always Down to Party HDTV XviD MOMENTUM<br /><b>Category:</b> TV: Divx/Xvid<br /><b>Size:</b> 199.83 MB<br /><b>Added:</b> 2011-04-25 10:20:58<br /><b>Group:</b> alt.binaries.teevee <BR /><b>NFO:</b> <a href="http://nzbmatrix.com/viewnfo.php?id=914363">View NFO</a>  ]]></description>
+      <category>TV: Divx/Xvid</category>
+      <cattext>tv.divx/xvid</cattext>
+      <categoryid>6</categoryid>
+      <enclosure url="http://nzbmatrix.com/nzb-details.php?id=914363&amp;hit=1" length="209536942" type="application/x-nzb" />
+    </item>
+    <item>
+      <title>Saddle Ranch S01E02 720p HDTV x264 MOMENTUM</title>
+      <guid>http://nzbmatrix.com/nzb-details.php?id=914359&amp;hit=1</guid>
+      <link>http://nzbmatrix.com/nzb-details.php?id=914359&amp;hit=1</link>
+      <description><![CDATA[<b>Name:</b> Saddle Ranch S01E02 720p HDTV x264 MOMENTUM<br /><b>Category:</b> TV: HD<br /><b>Size:</b> 638.89 MB<br /><b>Added:</b> 2011-04-25 10:15:33<br /><b>Group:</b> alt.binaries.teevee <BR /><b>NFO:</b> <a href="http://nzbmatrix.com/viewnfo.php?id=914359">View NFO</a>  ]]></description>
+      <category>TV: HD</category>
+      <cattext>tv.hd</cattext>
+      <categoryid>41</categoryid>
+      <enclosure url="http://nzbmatrix.com/nzb-details.php?id=914359&amp;hit=1" length="669924720" type="application/x-nzb" />
+    </item>
+    <item>
+      <title>The Killing S01E05 Super 8 720p WEB DL DD5 1 H 264 TB</title>
+      <guid>http://nzbmatrix.com/nzb-details.php?id=914354&amp;hit=1</guid>
+      <link>http://nzbmatrix.com/nzb-details.php?id=914354&amp;hit=1</link>
+      <description><![CDATA[<b>Name:</b> The Killing S01E05 Super 8 720p WEB DL DD5 1 H 264 TB<br /><b>Category:</b> TV: HD<br /><b>Size:</b> 1.52 GB<br /><b>Added:</b> 2011-04-25 10:06:12<br /><b>Group:</b> alt.binaries.hdtv <BR /><b>NFO:</b> <a href="http://nzbmatrix.com/viewnfo.php?id=914354">View NFO</a>  ]]></description>
+      <category>TV: HD</category>
+      <cattext>tv.hd</cattext>
+      <categoryid>41</categoryid>
+      <enclosure url="http://nzbmatrix.com/nzb-details.php?id=914354&amp;hit=1" length="1632024657" type="application/x-nzb" />
+    </item>
+    <item>
+      <title>NBA 23 04 2011 WCQF G3 Spurs vs Grizzlies</title>
+      <guid>http://nzbmatrix.com/nzb-details.php?id=914349&amp;hit=1</guid>
+      <link>http://nzbmatrix.com/nzb-details.php?id=914349&amp;hit=1</link>
+      <description><![CDATA[<b>Name:</b> NBA 23 04 2011 WCQF G3 Spurs vs Grizzlies<br /><b>Category:</b> TV: Sport/Ent<br /><b>Size:</b> 2.68 GB<br /><b>Added:</b> 2011-04-25 09:45:52<br /><b>Group:</b> alt.binaries.boneless   ]]></description>
+      <category>TV: Sport/Ent</category>
+      <cattext>tv.sport/ent</cattext>
+      <categoryid>7</categoryid>
+      <enclosure url="http://nzbmatrix.com/nzb-details.php?id=914349&amp;hit=1" length="2874608189" type="application/x-nzb" />
+    </item>
+    <item>
+      <title>NBA 23 04 2011 ECQF G4 Pacers vs Bulls</title>
+      <guid>http://nzbmatrix.com/nzb-details.php?id=914348&amp;hit=1</guid>
+      <link>http://nzbmatrix.com/nzb-details.php?id=914348&amp;hit=1</link>
+      <description><![CDATA[<b>Name:</b> NBA 23 04 2011 ECQF G4 Pacers vs Bulls<br /><b>Category:</b> TV: Sport/Ent<br /><b>Size:</b> 2.17 GB<br /><b>Added:</b> 2011-04-25 09:44:47<br /><b>Group:</b> alt.binaries.boneless   ]]></description>
+      <category>TV: Sport/Ent</category>
+      <cattext>tv.sport/ent</cattext>
+      <categoryid>7</categoryid>
+      <enclosure url="http://nzbmatrix.com/nzb-details.php?id=914348&amp;hit=1" length="2327262003" type="application/x-nzb" />
+    </item>
+    <item>
+      <title>The Real Housewives of Orange County S06E08 Kiss and Tell HDTV XviD MOMENTUM</title>
+      <guid>http://nzbmatrix.com/nzb-details.php?id=914347&amp;hit=1</guid>
+      <link>http://nzbmatrix.com/nzb-details.php?id=914347&amp;hit=1</link>
+      <description><![CDATA[<b>Name:</b> The Real Housewives of Orange County S06E08 Kiss and Tell HDTV XviD MOMENTUM<br /><b>Category:</b> TV: Divx/Xvid<br /><b>Size:</b> 398.70 MB<br /><b>Added:</b> 2011-04-25 09:27:23<br /><b>Group:</b> alt.binaries.teevee <BR /><b>NFO:</b> <a href="http://nzbmatrix.com/viewnfo.php?id=914347">View NFO</a>  ]]></description>
+      <category>TV: Divx/Xvid</category>
+      <cattext>tv.divx/xvid</cattext>
+      <categoryid>6</categoryid>
+      <enclosure url="http://nzbmatrix.com/nzb-details.php?id=914347&amp;hit=1" length="418067251" type="application/x-nzb" />
+    </item>
+    <item>
+      <title>The Real Housewives of Orange County S06E08 720p HDTV x264 MOMENTUM</title>
+      <guid>http://nzbmatrix.com/nzb-details.php?id=914346&amp;hit=1</guid>
+      <link>http://nzbmatrix.com/nzb-details.php?id=914346&amp;hit=1</link>
+      <description><![CDATA[<b>Name:</b> The Real Housewives of Orange County S06E08 720p HDTV x264 MOMENTUM<br /><b>Category:</b> TV: HD<br /><b>Size:</b> 1.27 GB<br /><b>Added:</b> 2011-04-25 09:15:39<br /><b>Group:</b> alt.binaries.teevee <BR /><b>NFO:</b> <a href="http://nzbmatrix.com/viewnfo.php?id=914346">View NFO</a>  ]]></description>
+      <category>TV: HD</category>
+      <cattext>tv.hd</cattext>
+      <categoryid>41</categoryid>
+      <enclosure url="http://nzbmatrix.com/nzb-details.php?id=914346&amp;hit=1" length="1368412651" type="application/x-nzb" />
+    </item>
+    <item>
+      <title>EPL 2011 Bolton Wanderers Vs Arsenal 720p HDTV x264 FAIRPLAY</title>
+      <guid>http://nzbmatrix.com/nzb-details.php?id=914345&amp;hit=1</guid>
+      <link>http://nzbmatrix.com/nzb-details.php?id=914345&amp;hit=1</link>
+      <description><![CDATA[<b>Name:</b> EPL 2011 Bolton Wanderers Vs Arsenal 720p HDTV x264 FAIRPLAY<br /><b>Category:</b> TV: Sport/Ent<br /><b>Size:</b> 2.49 GB<br /><b>Added:</b> 2011-04-25 09:13:32<br /><b>Group:</b> alt.binaries.teevee <BR /><b>NFO:</b> <a href="http://nzbmatrix.com/viewnfo.php?id=914345">View NFO</a>  ]]></description>
+      <category>TV: Sport/Ent</category>
+      <cattext>tv.sport/ent</cattext>
+      <categoryid>7</categoryid>
+      <enclosure url="http://nzbmatrix.com/nzb-details.php?id=914345&amp;hit=1" length="2675546521" type="application/x-nzb" />
+    </item>
+    <item>
+      <title>Doctor Who Confidential   Season 3</title>
+      <guid>http://nzbmatrix.com/nzb-details.php?id=914342&amp;hit=1</guid>
+      <link>http://nzbmatrix.com/nzb-details.php?id=914342&amp;hit=1</link>
+      <description><![CDATA[<b>Name:</b> Doctor Who Confidential   Season 3<br /><b>Category:</b> TV: Divx/Xvid<br /><b>Size:</b> 6.13 GB<br /><b>Added:</b> 2011-04-25 08:26:28<br /><b>Group:</b> alt.binaries.drwho   ]]></description>
+      <category>TV: Divx/Xvid</category>
+      <cattext>tv.divx/xvid</cattext>
+      <categoryid>6</categoryid>
+      <enclosure url="http://nzbmatrix.com/nzb-details.php?id=914342&amp;hit=1" length="2286440939" type="application/x-nzb" />
+    </item>
+    <item>
+      <title>Doctor Who Confidential   Season 2</title>
+      <guid>http://nzbmatrix.com/nzb-details.php?id=914341&amp;hit=1</guid>
+      <link>http://nzbmatrix.com/nzb-details.php?id=914341&amp;hit=1</link>
+      <description><![CDATA[<b>Name:</b> Doctor Who Confidential   Season 2<br /><b>Category:</b> TV: Divx/Xvid<br /><b>Size:</b> 5.85 GB<br /><b>Added:</b> 2011-04-25 08:25:33<br /><b>Group:</b> alt.binaries.drwho   ]]></description>
+      <category>TV: Divx/Xvid</category>
+      <cattext>tv.divx/xvid</cattext>
+      <categoryid>6</categoryid>
+      <enclosure url="http://nzbmatrix.com/nzb-details.php?id=914341&amp;hit=1" length="1985583513" type="application/x-nzb" />
+    </item>
+    <item>
+      <title>Doctor Who Confidential   Season 1</title>
+      <guid>http://nzbmatrix.com/nzb-details.php?id=914340&amp;hit=1</guid>
+      <link>http://nzbmatrix.com/nzb-details.php?id=914340&amp;hit=1</link>
+      <description><![CDATA[<b>Name:</b> Doctor Who Confidential   Season 1<br /><b>Category:</b> TV: Divx/Xvid<br /><b>Size:</b> 4.92 GB<br /><b>Added:</b> 2011-04-25 08:24:33<br /><b>Group:</b> alt.binaries.drwho   ]]></description>
+      <category>TV: Divx/Xvid</category>
+      <cattext>tv.divx/xvid</cattext>
+      <categoryid>6</categoryid>
+      <enclosure url="http://nzbmatrix.com/nzb-details.php?id=914340&amp;hit=1" length="988261908" type="application/x-nzb" />
+    </item>
+    <item>
+      <title>Wipeout Canada S01E04 WS DSR XviD 2HD</title>
+      <guid>http://nzbmatrix.com/nzb-details.php?id=914337&amp;hit=1</guid>
+      <link>http://nzbmatrix.com/nzb-details.php?id=914337&amp;hit=1</link>
+      <description><![CDATA[<b>Name:</b> Wipeout Canada S01E04 WS DSR XviD 2HD<br /><b>Category:</b> TV: Divx/Xvid<br /><b>Size:</b> 400.08 MB<br /><b>Added:</b> 2011-04-25 08:11:22<br /><b>Group:</b> alt.binaries.teevee <BR /><b>NFO:</b> <a href="http://nzbmatrix.com/viewnfo.php?id=914337">View NFO</a>  ]]></description>
+      <category>TV: Divx/Xvid</category>
+      <cattext>tv.divx/xvid</cattext>
+      <categoryid>6</categoryid>
+      <enclosure url="http://nzbmatrix.com/nzb-details.php?id=914337&amp;hit=1" length="419514286" type="application/x-nzb" />
+    </item>
+    <item>
+      <title>NRL 2011 Round 7 Wests Tigers vs Brisbane Broncos WS PDTV XviD WLT</title>
+      <guid>http://nzbmatrix.com/nzb-details.php?id=914333&amp;hit=1</guid>
+      <link>http://nzbmatrix.com/nzb-details.php?id=914333&amp;hit=1</link>
+      <description><![CDATA[<b>Name:</b> NRL 2011 Round 7 Wests Tigers vs Brisbane Broncos WS PDTV XviD WLT<br /><b>Category:</b> TV: Divx/Xvid<br /><b>Size:</b> 1.26 GB<br /><b>Added:</b> 2011-04-25 07:43:40<br /><b>Group:</b> alt.binaries.teevee <BR /><b>NFO:</b> <a href="http://nzbmatrix.com/viewnfo.php?id=914333">View NFO</a>  ]]></description>
+      <category>TV: Divx/Xvid</category>
+      <cattext>tv.divx/xvid</cattext>
+      <categoryid>6</categoryid>
+      <enclosure url="http://nzbmatrix.com/nzb-details.php?id=914333&amp;hit=1" length="1351834664" type="application/x-nzb" />
+    </item>
+    <item>
+      <title>Treme S02E01 Accentuate the Positive HDTV XviD FQM</title>
+      <guid>http://nzbmatrix.com/nzb-details.php?id=914332&amp;hit=1</guid>
+      <link>http://nzbmatrix.com/nzb-details.php?id=914332&amp;hit=1</link>
+      <description><![CDATA[<b>Name:</b> Treme S02E01 Accentuate the Positive HDTV XviD FQM<br /><b>Category:</b> TV: Divx/Xvid<br /><b>Size:</b> 628.20 MB<br /><b>Added:</b> 2011-04-25 07:36:01<br /><b>Group:</b> alt.binaries.multimedia <BR /><b>NFO:</b> <a href="http://nzbmatrix.com/viewnfo.php?id=914332">View NFO</a>  ]]></description>
+      <category>TV: Divx/Xvid</category>
+      <cattext>tv.divx/xvid</cattext>
+      <categoryid>6</categoryid>
+      <enclosure url="http://nzbmatrix.com/nzb-details.php?id=914332&amp;hit=1" length="658715443" type="application/x-nzb" />
+    </item>
+    <item>
+      <title>Peppa Pig Potato City Vol 14 DVDRip XviD KiDDoS</title>
+      <guid>http://nzbmatrix.com/nzb-details.php?id=914329&amp;hit=1</guid>
+      <link>http://nzbmatrix.com/nzb-details.php?id=914329&amp;hit=1</link>
+      <description><![CDATA[<b>Name:</b> Peppa Pig Potato City Vol 14 DVDRip XviD KiDDoS<br /><b>Category:</b> TV: Divx/Xvid<br /><b>Size:</b> 729.36 MB<br /><b>Added:</b> 2011-04-25 06:55:06<br /><b>Group:</b> alt.binaries.multimedia <BR /><b>NFO:</b> <a href="http://nzbmatrix.com/viewnfo.php?id=914329">View NFO</a>  ]]></description>
+      <category>TV: Divx/Xvid</category>
+      <cattext>tv.divx/xvid</cattext>
+      <categoryid>6</categoryid>
+      <enclosure url="http://nzbmatrix.com/nzb-details.php?id=914329&amp;hit=1" length="764789391" type="application/x-nzb" />
+    </item>
+    <item>
+      <title>Degrassi TNG S06 DVDRip XviD</title>
+      <guid>http://nzbmatrix.com/nzb-details.php?id=914328&amp;hit=1</guid>
+      <link>http://nzbmatrix.com/nzb-details.php?id=914328&amp;hit=1</link>
+      <description><![CDATA[<b>Name:</b> Degrassi TNG S06 DVDRip XviD<br /><b>Category:</b> TV: Divx/Xvid<br /><b>Size:</b> 3.94 GB<br /><b>Added:</b> 2011-04-25 06:49:45<br /><b>Group:</b> alt.binaries.multimedia <BR /><b>NFO:</b> <a href="http://nzbmatrix.com/viewnfo.php?id=914328">View NFO</a>  <BR /><b>IMDB Link:</b> <a href="http://www.imdb.com/title/tt0288937/">Go To IMDB</a>]]></description>
+      <category>TV: Divx/Xvid</category>
+      <cattext>tv.divx/xvid</cattext>
+      <categoryid>6</categoryid>
+      <enclosure url="http://nzbmatrix.com/nzb-details.php?id=914328&amp;hit=1" length="4230574243" type="application/x-nzb" />
+    </item>
+    <item>
+      <title>Degrassi The Next Generation S05 DVDRip XviD FFNDVD</title>
+      <guid>http://nzbmatrix.com/nzb-details.php?id=914327&amp;hit=1</guid>
+      <link>http://nzbmatrix.com/nzb-details.php?id=914327&amp;hit=1</link>
+      <description><![CDATA[<b>Name:</b> Degrassi The Next Generation S05 DVDRip XviD FFNDVD<br /><b>Category:</b> TV: Divx/Xvid<br /><b>Size:</b> 3.86 GB<br /><b>Added:</b> 2011-04-25 06:48:50<br /><b>Group:</b> alt.binaries.multimedia <BR /><b>NFO:</b> <a href="http://nzbmatrix.com/viewnfo.php?id=914327">View NFO</a>  <BR /><b>IMDB Link:</b> <a href="http://www.imdb.com/title/tt0288937/">Go To IMDB</a>]]></description>
+      <category>TV: Divx/Xvid</category>
+      <cattext>tv.divx/xvid</cattext>
+      <categoryid>6</categoryid>
+      <enclosure url="http://nzbmatrix.com/nzb-details.php?id=914327&amp;hit=1" length="4148187627" type="application/x-nzb" />
+    </item>
+    <item>
+      <title>Degrassi TNG S04 DVDRip XviD aAF</title>
+      <guid>http://nzbmatrix.com/nzb-details.php?id=914326&amp;hit=1</guid>
+      <link>http://nzbmatrix.com/nzb-details.php?id=914326&amp;hit=1</link>
+      <description><![CDATA[<b>Name:</b> Degrassi TNG S04 DVDRip XviD aAF<br /><b>Category:</b> TV: Divx/Xvid<br /><b>Size:</b> 4.51 GB<br /><b>Added:</b> 2011-04-25 06:47:52<br /><b>Group:</b> alt.binaries.multimedia <BR /><b>NFO:</b> <a href="http://nzbmatrix.com/viewnfo.php?id=914326">View NFO</a>  <BR /><b>IMDB Link:</b> <a href="http://www.imdb.com/title/tt0288937/">Go To IMDB</a>]]></description>
+      <category>TV: Divx/Xvid</category>
+      <cattext>tv.divx/xvid</cattext>
+      <categoryid>6</categoryid>
+      <enclosure url="http://nzbmatrix.com/nzb-details.php?id=914326&amp;hit=1" length="545228062" type="application/x-nzb" />
+    </item>
+    <item>
+      <title>Wipeout Canada S01E03 WS DSR XviD 2HD</title>
+      <guid>http://nzbmatrix.com/nzb-details.php?id=914325&amp;hit=1</guid>
+      <link>http://nzbmatrix.com/nzb-details.php?id=914325&amp;hit=1</link>
+      <description><![CDATA[<b>Name:</b> Wipeout Canada S01E03 WS DSR XviD 2HD<br /><b>Category:</b> TV: Divx/Xvid<br /><b>Size:</b> 400.08 MB<br /><b>Added:</b> 2011-04-25 06:19:49<br /><b>Group:</b> alt.binaries.teevee <BR /><b>NFO:</b> <a href="http://nzbmatrix.com/viewnfo.php?id=914325">View NFO</a>  ]]></description>
+      <category>TV: Divx/Xvid</category>
+      <cattext>tv.divx/xvid</cattext>
+      <categoryid>6</categoryid>
+      <enclosure url="http://nzbmatrix.com/nzb-details.php?id=914325&amp;hit=1" length="419514286" type="application/x-nzb" />
+    </item>
+    <item>
+      <title>Dichtbij Het Vuur S01E07 DUTCH WS PDTV XviD iFH</title>
+      <guid>http://nzbmatrix.com/nzb-details.php?id=914322&amp;hit=1</guid>
+      <link>http://nzbmatrix.com/nzb-details.php?id=914322&amp;hit=1</link>
+      <description><![CDATA[<b>Name:</b> Dichtbij Het Vuur S01E07 DUTCH WS PDTV XviD iFH<br /><b>Category:</b> TV: Divx/Xvid<br /><b>Size:</b> 216.09 MB<br /><b>Added:</b> 2011-04-25 06:06:35<br /><b>Group:</b> alt.binaries.multimedia <BR /><b>NFO:</b> <a href="http://nzbmatrix.com/viewnfo.php?id=914322">View NFO</a>  ]]></description>
+      <category>TV: Divx/Xvid</category>
+      <cattext>tv.divx/xvid</cattext>
+      <categoryid>6</categoryid>
+      <enclosure url="http://nzbmatrix.com/nzb-details.php?id=914322&amp;hit=1" length="226586787" type="application/x-nzb" />
+    </item>
+    <item>
+      <title>Acropolis Now S03 iNTERNAL DVDRip XviD RUNNER</title>
+      <guid>http://nzbmatrix.com/nzb-details.php?id=914321&amp;hit=1</guid>
+      <link>http://nzbmatrix.com/nzb-details.php?id=914321&amp;hit=1</link>
+      <description><![CDATA[<b>Name:</b> Acropolis Now S03 iNTERNAL DVDRip XviD RUNNER<br /><b>Category:</b> TV: Divx/Xvid<br /><b>Size:</b> 2.56 GB<br /><b>Added:</b> 2011-04-25 06:05:50<br /><b>Group:</b> alt.binaries.multimedia <BR /><b>NFO:</b> <a href="http://nzbmatrix.com/viewnfo.php?id=914321">View NFO</a>  <BR /><b>IMDB Link:</b> <a href="http://www.imdb.com/title/tt0122333/">Go To IMDB</a>]]></description>
+      <category>TV: Divx/Xvid</category>
+      <cattext>tv.divx/xvid</cattext>
+      <categoryid>6</categoryid>
+      <enclosure url="http://nzbmatrix.com/nzb-details.php?id=914321&amp;hit=1" length="2746723860" type="application/x-nzb" />
+    </item>
+    <item>
+      <title>Acropolis Now S02 iNTERNAL DVDRip XviD RUNNER</title>
+      <guid>http://nzbmatrix.com/nzb-details.php?id=914320&amp;hit=1</guid>
+      <link>http://nzbmatrix.com/nzb-details.php?id=914320&amp;hit=1</link>
+      <description><![CDATA[<b>Name:</b> Acropolis Now S02 iNTERNAL DVDRip XviD RUNNER<br /><b>Category:</b> TV: Divx/Xvid<br /><b>Size:</b> 2.56 GB<br /><b>Added:</b> 2011-04-25 06:03:08<br /><b>Group:</b> alt.binaries.multimedia <BR /><b>NFO:</b> <a href="http://nzbmatrix.com/viewnfo.php?id=914320">View NFO</a>  <BR /><b>IMDB Link:</b> <a href="http://www.imdb.com/title/tt0122333/">Go To IMDB</a>]]></description>
+      <category>TV: Divx/Xvid</category>
+      <cattext>tv.divx/xvid</cattext>
+      <categoryid>6</categoryid>
+      <enclosure url="http://nzbmatrix.com/nzb-details.php?id=914320&amp;hit=1" length="2746619002" type="application/x-nzb" />
+    </item>
+  </channel>
+</rss>
\ No newline at end of file
diff --git a/NzbDrone.Core.Test/Files/RSS/nzbsrus.xml b/NzbDrone.Core.Test/Files/RSS/nzbsrus.xml
new file mode 100644
index 000000000..196bae26c
--- /dev/null
+++ b/NzbDrone.Core.Test/Files/RSS/nzbsrus.xml
@@ -0,0 +1,275 @@
+<?xml version="1.0" encoding="iso-8859-1" ?>
+<rss version="2.0">
+  <channel>
+    <title>NZBsRus.com</title>
+    <description>This is the NZBs'R'US RSS feed.</description>
+    <link>http://www.nzbsrus.com</link>
+    <language>en-US</language>
+    <ttl>5</ttl>
+
+    <item>
+      <title>Portal_2_Update_1_Plus_3_Trainer-RazorDOX</title>
+      <pubDate>Mon, 25 Apr 2011 16:35:39 pm</pubDate>
+      <category>Games - PC DOX</category>
+      <link>http://www.nzbsrus.com/nzbdetails.php?id=422411&amp;hit=1</link>
+      <description>
+        Size 1.25 MiB (10 files)
+        Files: 2
+        Par2s: 8
+      </description>
+    </item>
+
+
+    <item>
+      <title>Portal_2_Plus_3_Trainer-RazorDOX</title>
+      <pubDate>Mon, 25 Apr 2011 16:35:00 pm</pubDate>
+      <category>Games - PC DOX</category>
+      <link>http://www.nzbsrus.com/nzbdetails.php?id=422410&amp;hit=1</link>
+      <description>
+        Size 1.17 MiB (11 files)
+        Files: 3
+        Par2s: 8
+      </description>
+    </item>
+
+
+    <item>
+      <title>The.New.Inventors.Save.Water.Special.DVDRip.XviD-SPRiNTER</title>
+      <pubDate>Mon, 25 Apr 2011 16:19:20 pm</pubDate>
+      <category>TV - XviD</category>
+      <link>http://www.nzbsrus.com/nzbdetails.php?id=422409&amp;hit=1</link>
+      <description>
+        TV.com Rating: 7.5
+        Size 1.58 GiB (127 files)
+        Files: 106
+        Par2s: 21
+      </description>
+    </item>
+
+
+    <item>
+      <title>Season.25.Oprah.Behind.The.Scenes.E16.WS.DSR.XviD-sHoTV</title>
+      <pubDate>Mon, 25 Apr 2011 15:42:17 pm</pubDate>
+      <category>TV - XviD</category>
+      <link>http://www.nzbsrus.com/nzbdetails.php?id=422408&amp;hit=1</link>
+      <description>
+        Size 398.98 MiB (32 files)
+        Files: 25
+        Par2s: 7
+      </description>
+    </item>
+
+
+    <item>
+      <title>[REQ] Hot Rod (2007)</title>
+      <pubDate>Mon, 25 Apr 2011 15:30:20 pm</pubDate>
+      <category>Movies - HD [720]</category>
+      <link>http://www.nzbsrus.com/nzbdetails.php?id=422407&amp;hit=1</link>
+      <description>
+        IMDb Rating: 6.5
+        Size 5.00 GiB (105 files)
+        Files: 97
+        Par2s: 8
+      </description>
+    </item>
+
+
+    <item>
+      <title>Sniper Reloaded (2011) NTSC DVD5</title>
+      <pubDate>Mon, 25 Apr 2011 15:25:12 pm</pubDate>
+      <category>Movies - DVDr</category>
+      <link>http://www.nzbsrus.com/nzbdetails.php?id=422406&amp;hit=1</link>
+      <description>
+        IMDb Rating: NYR
+        Size 5.54 GiB (119 files)
+        Files: 104
+        Par2s: 15
+      </description>
+    </item>
+
+
+    <item>
+      <title>Fable.2.Platinum.Edition.XBOX360-CLANDESTiNE</title>
+      <pubDate>Mon, 25 Apr 2011 15:11:41 pm</pubDate>
+      <category>Console - XBOX 360</category>
+      <link>http://www.nzbsrus.com/nzbdetails.php?id=422404&amp;hit=1</link>
+      <description>
+        Size 7.25 GiB (89 files)
+        Files: 70
+        Par2s: 19
+      </description>
+    </item>
+
+
+    <item>
+      <title>BORDERLANDS.GOTY.EDiTiON.PAL.XBOX360-SHiTONLYGERMAN</title>
+      <pubDate>Mon, 25 Apr 2011 15:07:38 pm</pubDate>
+      <category>Console - XBOX 360</category>
+      <link>http://www.nzbsrus.com/nzbdetails.php?id=422402&amp;hit=1</link>
+      <description>
+        Size 7.29 GiB (84 files)
+        Files: 71
+        Par2s: 13
+      </description>
+    </item>
+
+
+    <item>
+      <title>Sanctum.Update.1.and.2-SKIDROW</title>
+      <pubDate>Mon, 25 Apr 2011 15:03:00 pm</pubDate>
+      <category>Games - PC DOX</category>
+      <link>http://www.nzbsrus.com/nzbdetails.php?id=422401&amp;hit=1</link>
+      <description>
+        Size 599.88 MiB (49 files)
+        Files: 41
+        Par2s: 8
+      </description>
+    </item>
+
+
+    <item>
+      <title>Babysitting.Mama.USA.WII-ProCiSiON</title>
+      <pubDate>Mon, 25 Apr 2011 14:55:01 pm</pubDate>
+      <category>Console - Wii</category>
+      <link>http://www.nzbsrus.com/nzbdetails.php?id=422399&amp;hit=1</link>
+      <description>
+        Size 4.78 GiB (105 files)
+        Files: 95
+        Par2s: 10
+      </description>
+    </item>
+
+
+    <item>
+      <title>The_Aston_Shuffle-Seventeen_Past_Midnight-2011-OZM</title>
+      <pubDate>Mon, 25 Apr 2011 13:54:39 pm</pubDate>
+      <category>Music - MP3</category>
+      <link>http://www.nzbsrus.com/nzbdetails.php?id=422398&amp;hit=1</link>
+      <description>
+        Size 104.28 MiB (23 files)
+        Files: 15
+        Par2s: 8
+      </description>
+    </item>
+
+
+    <item>
+      <title>[REQ] The.Wild.Life.1984.TVRip.XviD</title>
+      <pubDate>Mon, 25 Apr 2011 13:42:23 pm</pubDate>
+      <category>Movies - XviD</category>
+      <link>http://www.nzbsrus.com/nzbdetails.php?id=422397&amp;hit=1</link>
+      <description>
+        IMDb Rating: 5.5
+        Size 792.58 MiB (25 files)
+        Files: 16
+        Par2s: 9
+      </description>
+    </item>
+
+
+    <item>
+      <title>MIKE TYSON HISTORY THE CAREER OF A LEGEND</title>
+      <pubDate>Mon, 25 Apr 2011 13:41:23 pm</pubDate>
+      <category>TV - DVDr</category>
+      <link>http://www.nzbsrus.com/nzbdetails.php?id=422396&amp;hit=1</link>
+      <description>
+        Size 63.60 GiB (540 files)
+        Files: 399
+        Par2s: 141
+      </description>
+    </item>
+
+
+    <item>
+      <title>Car.Warriors.S01E08.HDTV.XviD-CRiMSON</title>
+      <pubDate>Mon, 25 Apr 2011 13:17:11 pm</pubDate>
+      <category>TV - XviD</category>
+      <link>http://www.nzbsrus.com/nzbdetails.php?id=422395&amp;hit=1</link>
+      <description>
+        Size 398.51 MiB (34 files)
+        Files: 27
+        Par2s: 7
+      </description>
+    </item>
+
+
+    <item>
+      <title>The.Sunday.Footy.Show.2011.04.24.WS.PDTV.XviD-WLT</title>
+      <pubDate>Mon, 25 Apr 2011 13:14:30 pm</pubDate>
+      <category>TV - XviD</category>
+      <link>http://www.nzbsrus.com/nzbdetails.php?id=422394&amp;hit=1</link>
+      <description>
+        Size 387.34 MiB (36 files)
+        Files: 27
+        Par2s: 9
+      </description>
+    </item>
+
+
+    <item>
+      <title>The.Sunday.Roast.2011.04.24.WS.PDTV.XviD-WLT</title>
+      <pubDate>Mon, 25 Apr 2011 13:14:02 pm</pubDate>
+      <category>TV - XviD</category>
+      <link>http://www.nzbsrus.com/nzbdetails.php?id=422393&amp;hit=1</link>
+      <description>
+        Size 387.49 MiB (36 files)
+        Files: 27
+        Par2s: 9
+      </description>
+    </item>
+
+
+    <item>
+      <title>River.Monsters.S03E03.HDTV.XviD-CRiMSON</title>
+      <pubDate>Mon, 25 Apr 2011 13:13:22 pm</pubDate>
+      <category>TV - XviD</category>
+      <link>http://www.nzbsrus.com/nzbdetails.php?id=422392&amp;hit=1</link>
+      <description>
+        Size 398.31 MiB (35 files)
+        Files: 28
+        Par2s: 7
+      </description>
+    </item>
+
+
+    <item>
+      <title>The.7pm.Project.2011.04.25.Kath.Robinson.WS.PDTV.XviD-FQM</title>
+      <pubDate>Mon, 25 Apr 2011 13:12:44 pm</pubDate>
+      <category>TV - XviD</category>
+      <link>http://www.nzbsrus.com/nzbdetails.php?id=422391&amp;hit=1</link>
+      <description>
+        Size 198.78 MiB (22 files)
+        Files: 16
+        Par2s: 6
+      </description>
+    </item>
+
+
+    <item>
+      <title>Punky.Brewster.S02.iNTERNAL.DVDRip.XviD-RUNNER</title>
+      <pubDate>Mon, 25 Apr 2011 13:12:23 pm</pubDate>
+      <category>TV - XviD</category>
+      <link>http://www.nzbsrus.com/nzbdetails.php?id=422390&amp;hit=1</link>
+      <description>
+        Size 4.38 GiB (497 files)
+        Files: 359
+        Par2s: 138
+      </description>
+    </item>
+
+
+    <item>
+      <title>Saddle.Ranch.S01E02.Always.Down.to.Party.HDTV.XviD-MOMENTUM</title>
+      <pubDate>Mon, 25 Apr 2011 13:11:31 pm</pubDate>
+      <category>TV - XviD</category>
+      <link>http://www.nzbsrus.com/nzbdetails.php?id=422389&amp;hit=1</link>
+      <description>
+        Size 199.83 MiB (22 files)
+        Files: 16
+        Par2s: 6
+      </description>
+    </item>
+
+
+  </channel>
+</rss>
diff --git a/NzbDrone.Core.Test/IndexerProviderTest.cs b/NzbDrone.Core.Test/IndexerProviderTest.cs
index a2f6723ae..de00de58b 100644
--- a/NzbDrone.Core.Test/IndexerProviderTest.cs
+++ b/NzbDrone.Core.Test/IndexerProviderTest.cs
@@ -20,11 +20,15 @@ namespace NzbDrone.Core.Test
     // ReSharper disable InconsistentNaming
     {
         [Test]
-        public void Download_feed_test()
+        [Row("nzbsorg.xml")]
+        [Row("nzbsrus.xml")]
+        [Row("newzbin.xml")]
+        [Row("nzbmatrix.xml")]
+        public void parse_feed_xml(string fileName)
         {
             var mocker = new AutoMoqer();
 
-            var xmlReader = XmlReader.Create(File.OpenRead(".\\Files\\Rss\\nzbsorg.xml"));
+            var xmlReader = XmlReader.Create(File.OpenRead(".\\Files\\Rss\\" + fileName));
 
             mocker.GetMock<HttpProvider>()
                 .Setup(h => h.DownloadXml(It.IsAny<String>()))
@@ -35,7 +39,28 @@ namespace NzbDrone.Core.Test
                 .Setup(c => c.GetSettings(It.IsAny<Type>()))
                 .Returns(fakeSettings);
 
-            mocker.Resolve<MockIndexerProvider>().Fetch();
+            var exceptions = mocker.Resolve<MockIndexerProvider>().Fetch();
+
+            foreach (var exception in exceptions)
+            {
+                Console.WriteLine(exception.ToString());
+            }
+
+            Assert.IsEmpty(exceptions);
+        }
+
+        [Test]
+        public void downloadFeed()
+        {
+            var mocker = new AutoMoqer();
+            mocker.SetConstant(new HttpProvider());
+
+            var fakeSettings = Builder<IndexerSetting>.CreateNew().Build();
+            mocker.GetMock<IndexerProvider>()
+                .Setup(c => c.GetSettings(It.IsAny<Type>()))
+                .Returns(fakeSettings);
+
+            mocker.Resolve<TestUrlIndexer>().Fetch();
         }
 
         [Test]
@@ -90,4 +115,28 @@ namespace NzbDrone.Core.Test
             return item.Links[0].Uri.ToString();
         }
     }
+
+    public class TestUrlIndexer : IndexerProviderBase
+    {
+        public TestUrlIndexer(SeriesProvider seriesProvider, SeasonProvider seasonProvider, EpisodeProvider episodeProvider, ConfigProvider configProvider, HttpProvider httpProvider, IndexerProvider indexerProvider, HistoryProvider historyProvider, SabProvider sabProvider)
+            : base(seriesProvider, seasonProvider, episodeProvider, configProvider, httpProvider, indexerProvider, historyProvider, sabProvider)
+        {
+        }
+
+        public override string Name
+        {
+            get { return "All Urls"; }
+        }
+
+        protected override string[] Urls
+        {
+            get { return new[] { "http://rss.nzbmatrix.com/rss.php?cat=TV" }; }
+        }
+
+        protected override string NzbDownloadUrl(SyndicationItem item)
+        {
+            return "http://google.com";
+        }
+    }
+
 }
\ No newline at end of file
diff --git a/NzbDrone.Core.Test/MockLib.cs b/NzbDrone.Core.Test/MockLib.cs
index d2ddd35d6..26925d384 100644
--- a/NzbDrone.Core.Test/MockLib.cs
+++ b/NzbDrone.Core.Test/MockLib.cs
@@ -7,6 +7,7 @@ using Moq;
 using NzbDrone.Core.Instrumentation;
 using NzbDrone.Core.Providers.Core;
 using NzbDrone.Core.Repository;
+using NzbDrone.Core.Repository.Quality;
 using SubSonic.DataProviders;
 using SubSonic.Repository;
 
@@ -46,7 +47,9 @@ namespace NzbDrone.Core.Test
             {
                 provider.Log = new NlogWriter();
             }
-            return new SimpleRepository(provider, SimpleRepositoryOptions.RunMigrations);
+            var repo = new SimpleRepository(provider, SimpleRepositoryOptions.RunMigrations);
+            ForceMigration(repo);
+            return repo;
         }
 
         public static DiskProvider GetStandardDisk(int seasons, int episodes)
@@ -91,5 +94,15 @@ namespace NzbDrone.Core.Test
                 .WhereAll().Have(c => c.EpisodeNumber = epNumber.Generate())
                 .Build();
         }
+
+        private static void ForceMigration(IRepository repository)
+        {
+            repository.All<Series>().Count();
+            repository.All<Season>().Count();
+            repository.All<Episode>().Count();
+            repository.All<EpisodeFile>().Count();
+            repository.All<QualityProfile>().Count();
+            repository.All<History>().Count();
+        }
     }
 }
\ No newline at end of file
diff --git a/NzbDrone.Core.Test/NzbDrone.Core.Test.csproj b/NzbDrone.Core.Test/NzbDrone.Core.Test.csproj
index 30251ccbb..eba28a08a 100644
--- a/NzbDrone.Core.Test/NzbDrone.Core.Test.csproj
+++ b/NzbDrone.Core.Test/NzbDrone.Core.Test.csproj
@@ -125,6 +125,15 @@
     <Content Include="Files\Feed.nzbmatrix.com.xml">
       <CopyToOutputDirectory>Always</CopyToOutputDirectory>
     </Content>
+    <Content Include="Files\RSS\newzbin.xml">
+      <CopyToOutputDirectory>Always</CopyToOutputDirectory>
+    </Content>
+    <Content Include="Files\RSS\nzbmatrix.xml">
+      <CopyToOutputDirectory>Always</CopyToOutputDirectory>
+    </Content>
+    <Content Include="Files\RSS\nzbsrus.xml">
+      <CopyToOutputDirectory>Always</CopyToOutputDirectory>
+    </Content>
     <Content Include="Files\RSS\nzbsorg.xml">
       <CopyToOutputDirectory>Always</CopyToOutputDirectory>
     </Content>
diff --git a/NzbDrone.Core.Test/ParserTest.cs b/NzbDrone.Core.Test/ParserTest.cs
index 08a2ca125..fe8e2ed4e 100644
--- a/NzbDrone.Core.Test/ParserTest.cs
+++ b/NzbDrone.Core.Test/ParserTest.cs
@@ -48,16 +48,17 @@ namespace NzbDrone.Core.Test
         [Row(@"z:\tv shows\battlestar galactica (2003)\Season 3\S03E05 - Collaborators.mkv", 3, 5)]
         [Row(@"z:\tv shows\modern marvels\Season 16\S16E03 - The Potato.mkv", 16, 3)]
         [Row(@"z:\tv shows\robot chicken\Specials\S00E16 - Dear Consumer - SD TV.avi", 0, 16)]
+        [Row(@"D:\shares\TV Shows\Parks And Recreation\Season 2\S02E21 - 94 Meetings - 720p TV.mkv", 2, 21)]
         public void file_path_parse(string path, int season, int episode)
         {
             var result = Parser.ParseEpisodeInfo(path);
+            Assert.Count(1, result.Episodes);
             Assert.AreEqual(season, result.SeasonNumber);
             Assert.AreEqual(episode, result.Episodes[0]);
         }
 
 
         [Test]
-        [Timeout(1)]
         [Row("WEEDS.S03E01-06.DUAL.BDRip.XviD.AC3.-HELLYWOOD", QualityTypes.BDRip)]
         [Row("WEEDS.S03E01-06.DUAL.BDRip.AC3.-HELLYWOOD", QualityTypes.BDRip)]
         [Row("Two.and.a.Half.Men.S08E05.720p.HDTV.X264-DIMENSION", QualityTypes.HDTV)]
@@ -77,6 +78,8 @@ namespace NzbDrone.Core.Test
         [Row("Chuck - S01E03 - Come Fly With Me - 1080p BluRay.mkv", QualityTypes.Bluray1080)]
         [Row("Chuck - S11E06 - D-Yikes! - 720p WEB-DL.mkv", QualityTypes.WEBDL)]
         [Row("WEEDS.S03E01-06.DUAL.BDRip.XviD.AC3.-HELLYWOOD.avi", QualityTypes.BDRip)]
+        [Row("WEEDS.S03E01-06.DUAL.BDRip.XviD.AC3.-HELLYWOOD.avi", QualityTypes.BDRip)]
+        [Row("Law & Order: Special Victims Unit - 11x11 - Quickie", QualityTypes.Unknown)]
         public void quality_parse(string postTitle, object quality)
         {
             var result = Parser.ParseEpisodeInfo(postTitle).Quality;
diff --git a/NzbDrone.Core.Test/RepoTest.cs b/NzbDrone.Core.Test/RepoTest.cs
index b1a071288..59388f241 100644
--- a/NzbDrone.Core.Test/RepoTest.cs
+++ b/NzbDrone.Core.Test/RepoTest.cs
@@ -121,7 +121,7 @@ namespace NzbDrone.Core.Test
 
             var logItem = sonicRepo.All<Log>().First();
             Assert.AreNotEqual(new DateTime(), logItem.Time);
-            Assert.AreEqual(message, logItem.Message);
+            Assert.AreEqual(message + ": " + ex.Message, logItem.Message);
             Assert.AreEqual(Logger.Name, logItem.Logger);
             Assert.AreEqual(LogLevel.Error.Name, logItem.Level);
             Assert.AreEqual(ex.GetType().ToString(), logItem.ExceptionType);
diff --git a/NzbDrone.Core.Test/SeriesProviderTest.cs b/NzbDrone.Core.Test/SeriesProviderTest.cs
index f13edde5deea03e0dbae7be7e97f16a378d24ca2..7a88771e61d4196d746fd3779707e2cb5dcb6113 100644
GIT binary patch
delta 29
lcmZp0Smm%`f%IfU9(fLp!qUW?%#zB<g<NWz4@=v!005v;3Pb<^

delta 16
XcmZ4G(BQCPf%N1OF6GT{rEOUNI>QD=

diff --git a/NzbDrone.Core.Test/log.config b/NzbDrone.Core.Test/log.config
index 5b8212b5d..1eddaa214 100644
--- a/NzbDrone.Core.Test/log.config
+++ b/NzbDrone.Core.Test/log.config
@@ -1,6 +1,6 @@
 <nlog xmlns="http://www.nlog-project.org/schemas/NLog.xsd" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" autoReload="true">
   <targets>
-    <target name="consoleTarget" xsi:type="ColoredConsole" layout="${logger}: ${message}" />
+    <target name="consoleTarget" xsi:type="ColoredConsole" layout="${logger}: ${message} ${exception:ToString}" />
     <target name="udpTarget" xsi:type="Chainsaw" address="udp://127.0.0.1:20480"
             includeCallSite="true" includeSourceInfo="true" includeNLogData="true" includeNDC="true" includeMDC="true">
       <parameter name="exception" layout="${exception:format=ToString}" xsi:type="NLogViewerParameterInfo" />
diff --git a/NzbDrone.Core/Instrumentation/SubsonicTarget.cs b/NzbDrone.Core/Instrumentation/SubsonicTarget.cs
index 708ea7dcf..88aa61628 100644
--- a/NzbDrone.Core/Instrumentation/SubsonicTarget.cs
+++ b/NzbDrone.Core/Instrumentation/SubsonicTarget.cs
@@ -31,8 +31,15 @@ namespace NzbDrone.Core.Instrumentation
 
             if (logEvent.Exception != null)
             {
+                if (String.IsNullOrWhiteSpace(log.Message))
+                {
+                    log.Message = logEvent.Exception.Message;
+                }
+                else
+                {
+                    log.Message += ": " + logEvent.Exception.Message;
+                }
 
-                log.Message += ": " + logEvent.Exception.Message;
 
                 log.Exception = logEvent.Exception.ToString();
                 log.ExceptionType = logEvent.Exception.GetType().ToString();
diff --git a/NzbDrone.Core/Parser.cs b/NzbDrone.Core/Parser.cs
index 349da5345..b7f001e96 100644
--- a/NzbDrone.Core/Parser.cs
+++ b/NzbDrone.Core/Parser.cs
@@ -54,13 +54,13 @@ namespace NzbDrone.Core
                 if (match.Count != 0)
                 {
                     var seriesName = NormalizeTitle(match[0].Groups["title"].Value);
-                    
-			        var airyear = 0;
-			        Int32.TryParse(match[0].Groups["airyear"].Value, out airyear);
+
+                    var airyear = 0;
+                    Int32.TryParse(match[0].Groups["airyear"].Value, out airyear);
 
                     EpisodeParseResult parsedEpisode;
 
-                    if (airyear < 1 )
+                    if (airyear < 1)
                     {
                         var season = 0;
                         Int32.TryParse(match[0].Groups["season"].Value, out season);
@@ -177,7 +177,7 @@ namespace NzbDrone.Core
                 if (match.Count != 0)
                 {
                     var seriesName = NormalizeTitle(match[0].Groups["title"].Value);
-           
+
                     Logger.Trace("Series Parsed. {0}", seriesName);
                     return seriesName;
                 }
@@ -237,9 +237,9 @@ namespace NzbDrone.Core
                 return QualityTypes.HDTV;
 
             //Based on extension
-            if (result == QualityTypes.Unknown)
+            if (result == QualityTypes.Unknown && Path.HasExtension(name))
             {
-                switch (new FileInfo(name).Extension.ToLower())
+                switch (Path.GetExtension(name).ToLower())
                 {
                     case ".avi":
                     case ".xvid":
diff --git a/NzbDrone.Core/Providers/EpisodeProvider.cs b/NzbDrone.Core/Providers/EpisodeProvider.cs
index b88da8539..2dc7982f5 100644
--- a/NzbDrone.Core/Providers/EpisodeProvider.cs
+++ b/NzbDrone.Core/Providers/EpisodeProvider.cs
@@ -12,7 +12,7 @@ namespace NzbDrone.Core.Providers
     public class EpisodeProvider
     {
         private static readonly Logger Logger = LogManager.GetCurrentClassLogger();
-        private readonly QualityProvider _quality;
+        private readonly QualityProvider _qualityProvider;
         private readonly SeasonProvider _seasons;
         private readonly SeriesProvider _series;
         private readonly IRepository _sonicRepo;
@@ -20,13 +20,13 @@ namespace NzbDrone.Core.Providers
 
         public EpisodeProvider(IRepository sonicRepo, SeriesProvider seriesProvider,
                                SeasonProvider seasonProvider, TvDbProvider tvDbProvider,
-                               QualityProvider quality)
+                               QualityProvider qualityProvider)
         {
             _sonicRepo = sonicRepo;
             _series = seriesProvider;
             _tvDb = tvDbProvider;
             _seasons = seasonProvider;
-            _quality = quality;
+            _qualityProvider = qualityProvider;
         }
 
         public EpisodeProvider()
@@ -80,7 +80,7 @@ namespace NzbDrone.Core.Providers
 
                 if (episodeInfo == null)
                 {
-
+                    Logger.Debug("Episode S{0:00}E{1:00} doesn't exist in db. adding it now.", parsedReport.SeasonNumber, episode);
                     //Todo: How do we want to handle this really? Episode could be released before information is on TheTvDB 
                     //(Parks and Rec did this a lot in the first season, from experience)
                     //Keivan: Should automatically add the episode to db with minimal information. then update the description/title when available.
@@ -103,24 +103,39 @@ namespace NzbDrone.Core.Providers
 
                 if (file != null)
                 {
-                    //If not null we need to see if this episode has the quality as the download (or if it is better)
-                    if (file.Quality == parsedReport.Quality && file.Proper) continue;
+                    Logger.Debug("File is {0} Proper:{1}", file.Quality, file.Proper);
 
                     //There will never be a time when the episode quality is less than what we have and we want it... ever.... I think.
-                    if (file.Quality > parsedReport.Quality) continue;
+                    if (file.Quality > parsedReport.Quality)
+                    {
+                        Logger.Trace("file has better quality. skipping");
+                        continue;
+                    }
+
+                    //If not null we need to see if this episode has the quality as the download (or if it is better)
+                    if (file.Quality == parsedReport.Quality && file.Proper == parsedReport.Proper)
+                    {
+                        Logger.Trace("Same quality/proper. existing proper. skipping");
+                        continue;
+                    }
 
-                    //Now we need to handle upgrades and actually pay attention to the Cutoff Value
+                    //Now we need to handle upgrades and actually pay attention to the Cut-off Value
                     if (file.Quality < parsedReport.Quality)
                     {
-                        var quality = _quality.Find(episodeInfo.Series.QualityProfileId);
+                        if (episodeInfo.Series.QualityProfile.Cutoff <= file.Quality)
+                        {
+                            Logger.Trace("Quality is past cut-off skipping.");
+                            continue;
+                        }
 
-                        if (quality.Cutoff <= file.Quality && file.Proper) continue;
                     }
                 }
 
+                Logger.Debug("Episode {0} is needed", parsedReport);
                 return true; //If we get to this point and the file has not yet been rejected then accept it
             }
 
+            Logger.Debug("Episode {0} is not needed", parsedReport);
             return false;
         }
 
diff --git a/NzbDrone.Core/Providers/Indexer/IndexerProviderBase.cs b/NzbDrone.Core/Providers/Indexer/IndexerProviderBase.cs
index 815776687..33a38a644 100644
--- a/NzbDrone.Core/Providers/Indexer/IndexerProviderBase.cs
+++ b/NzbDrone.Core/Providers/Indexer/IndexerProviderBase.cs
@@ -59,9 +59,10 @@ namespace NzbDrone.Core.Providers.Indexer
         /// <summary>
         ///   Fetches RSS feed and process each news item.
         /// </summary>
-        public void Fetch()
+        public List<Exception> Fetch()
         {
             _logger.Debug("Fetching feeds from " + Settings.Name);
+            var exeptions = new List<Exception>();
 
             foreach (var url in Urls)
             {
@@ -78,6 +79,7 @@ namespace NzbDrone.Core.Providers.Indexer
                         }
                         catch (Exception itemEx)
                         {
+                            exeptions.Add(itemEx);
                             _logger.ErrorException("An error occurred while processing feed item", itemEx);
                         }
 
@@ -85,11 +87,13 @@ namespace NzbDrone.Core.Providers.Indexer
                 }
                 catch (Exception feedEx)
                 {
+                    exeptions.Add(feedEx);
                     _logger.ErrorException("An error occurred while processing feed", feedEx);
                 }
             }
 
             _logger.Info("Finished processing feeds from " + Settings.Name);
+            return exeptions;
         }
 
         internal void ProcessItem(SyndicationItem feedItem)
diff --git a/NzbDrone.Core/Providers/SabProvider.cs b/NzbDrone.Core/Providers/SabProvider.cs
index 6eefaf9d0..ed0aef3a2 100644
--- a/NzbDrone.Core/Providers/SabProvider.cs
+++ b/NzbDrone.Core/Providers/SabProvider.cs
@@ -16,6 +16,10 @@ namespace NzbDrone.Core.Providers
         private readonly ConfigProvider _config;
         private readonly HttpProvider _http;
 
+        public SabProvider()
+        {
+        }
+
         public SabProvider(ConfigProvider config, HttpProvider http)
         {
             _config = config;
diff --git a/NzbDrone.Core/Providers/SeasonProvider.cs b/NzbDrone.Core/Providers/SeasonProvider.cs
index a2a82bf28..b128ea46e 100644
--- a/NzbDrone.Core/Providers/SeasonProvider.cs
+++ b/NzbDrone.Core/Providers/SeasonProvider.cs
@@ -76,10 +76,6 @@ namespace NzbDrone.Core.Providers
         public virtual bool IsIgnored(int seriesId, int seasonNumber)
         {
             var season = _sonicRepo.Single<Season>(s => s.SeriesId == seriesId && s.SeasonNumber == seasonNumber);
-
-            if (season == null)
-                return true;
-
             return !season.Monitored;
         }
 
diff --git a/NzbDrone.Core/Providers/SeriesProvider.cs b/NzbDrone.Core/Providers/SeriesProvider.cs
index 5349cc2b6..0c47ec76f 100644
--- a/NzbDrone.Core/Providers/SeriesProvider.cs
+++ b/NzbDrone.Core/Providers/SeriesProvider.cs
@@ -58,9 +58,8 @@ namespace NzbDrone.Core.Providers
         public virtual bool QualityWanted(int seriesId, QualityTypes quality)
         {
             var series = _sonioRepo.Single<Series>(seriesId);
-
-            var profile = _quality.Find(series.QualityProfileId);
-            return profile.Allowed.Contains(quality);
+            Logger.Trace("Series {0} is using quality profile {1}", seriesId, series.QualityProfile.Name);
+            return series.QualityProfile.Allowed.Contains(quality);
         }
 
         public virtual TvdbSeries MapPathToSeries(string path)
diff --git a/NzbDrone.Core/Repository/Series.cs b/NzbDrone.Core/Repository/Series.cs
index f34f6cdd6..d9dff9e3a 100644
--- a/NzbDrone.Core/Repository/Series.cs
+++ b/NzbDrone.Core/Repository/Series.cs
@@ -45,7 +45,7 @@ namespace NzbDrone.Core.Repository
         public DateTime? LastDiskSync { get; set; }
 
         [SubSonicToOneRelation(ThisClassContainsJoinKey = true, JoinKeyName = "QualityProfileId")]
-        public virtual QualityProfile QualityProfile { get; protected set; }
+        public virtual QualityProfile QualityProfile { get; set; }
 
         [SubSonicToManyRelation]
         public virtual List<Season> Seasons { get; protected set; }