deprecate RSS API

This commit is contained in:
Arvid Norberg 2015-03-28 17:31:27 +00:00
parent 0aece517ce
commit 837e709628
18 changed files with 52 additions and 2791 deletions

View File

@ -1,3 +1,4 @@
* deprecated RSS API
* experimental support for BEP 38, "mutable torrents"
* replaced lazy_bdecode with a new bdecoder that's a lot more efficient
* deprecate time functions, expose typedefs of boost::chrono in the libtorrent

View File

@ -41,7 +41,10 @@ POSSIBILITY OF SUCH DAMAGE.
#include "libtorrent/identify_client.hpp"
#include "libtorrent/address.hpp"
#include "libtorrent/stat.hpp"
#include "libtorrent/add_torrent_params.hpp"
#ifndef TORRENT_NO_DEPRECATE
#include "libtorrent/rss.hpp" // for feed_handle
#endif
#include "libtorrent/operations.hpp" // for operation_t enum
#include "libtorrent/close_reason.hpp"
#include "libtorrent/aux_/escape_string.hpp" // for convert_from_native
@ -1761,6 +1764,7 @@ namespace libtorrent
virtual std::string message() const;
};
#ifndef TORRENT_NO_DEPRECATE
// This alert is posted on RSS feed events such as start of RSS feed updates,
// successful completed updates and errors during updates.
//
@ -1807,6 +1811,7 @@ namespace libtorrent
// an error code used for when an error occurs on the feed.
error_code error;
};
#endif // TORRENT_NO_DEPRECATE
// This is posted whenever a torrent is transitioned into the error state.
struct TORRENT_EXPORT torrent_error_alert: torrent_alert
@ -2005,6 +2010,7 @@ namespace libtorrent
sha1_hash new_ih;
};
#ifndef TORRENT_NO_DEPRECATE
// This alert is posted every time a new RSS item (i.e. torrent) is received
// from an RSS feed.
//
@ -2026,6 +2032,7 @@ namespace libtorrent
feed_handle handle;
feed_item item;
};
#endif
// posted when something fails in the DHT. This is not necessarily a fatal
// error, but it could prevent proper operation

View File

@ -262,9 +262,11 @@ namespace libtorrent
void incoming_connection(boost::shared_ptr<socket_type> const& s);
#ifndef TORRENT_NO_DEPRECATE
feed_handle add_feed(feed_settings const& feed);
void remove_feed(feed_handle h);
void get_feeds(std::vector<feed_handle>* f) const;
#endif
boost::weak_ptr<torrent> find_torrent(sha1_hash const& info_hash) const;
boost::weak_ptr<torrent> find_torrent(std::string const& uuid) const;
@ -964,12 +966,14 @@ namespace libtorrent
// to decide which ones to choke/unchoke
time_point m_last_choke;
#ifndef TORRENT_NO_DEPRECATE
// the time when the next rss feed needs updating
time_point m_next_rss_update;
// update any rss feeds that need updating and
// recalculate m_next_rss_update
void update_rss_feeds();
#endif
// when outgoing_ports is configured, this is the
// port we'll bind the next outgoing socket to
@ -1166,7 +1170,9 @@ namespace libtorrent
// is true if the session is paused
bool m_paused;
#ifndef TORRENT_NO_DEPRECATE
std::vector<boost::shared_ptr<feed> > m_feeds;
#endif
// this is a list of peer connections who have been
// corked (i.e. their network socket) and needs to be

View File

@ -39,6 +39,7 @@ POSSIBILITY OF SUCH DAMAGE.
#include <boost/enable_shared_from_this.hpp>
#include <string>
#ifndef TORRENT_NO_DEPRECATE
namespace libtorrent
{
namespace aux
@ -271,6 +272,7 @@ namespace libtorrent
};
}
#endif // TORRENT_NO_DEPRECATE
#endif

View File

@ -55,7 +55,6 @@ POSSIBILITY OF SUCH DAMAGE.
#include "libtorrent/peer_id.hpp"
#include "libtorrent/alert.hpp" // alert::error_notification
#include "libtorrent/add_torrent_params.hpp"
#include "libtorrent/rss.hpp"
#include "libtorrent/peer_class.hpp"
#include "libtorrent/peer_class_type_filter.hpp"
#include "libtorrent/build_config.hpp"
@ -67,6 +66,10 @@ POSSIBILITY OF SUCH DAMAGE.
# include <eh.h>
#endif
#ifndef TORRENT_NO_DEPRECATE
#include "libtorrent/rss.hpp"
#endif
#ifdef TORRENT_USE_OPENSSL
// this is a nasty openssl macro
#ifdef set_key
@ -290,13 +293,12 @@ namespace libtorrent
save_encryption_settings = 0x020,
// internal
save_as_map = 0x040,
// saves RSS feeds
save_feeds = 0x080
save_as_map = 0x040
#ifndef TORRENT_NO_DEPRECATE
,
// saves RSS feeds
save_feeds = 0x080,
save_proxy = 0x008,
save_i2p_proxy = 0x010,
save_dht_proxy = save_proxy,
@ -522,6 +524,7 @@ namespace libtorrent
// will not be set. This may significantly reduce the cost of this call.
void get_cache_info(cache_status* ret, torrent_handle h = torrent_handle(), int flags = 0) const;
#ifndef TORRENT_NO_DEPRECATE
// This adds an RSS feed to the session. The feed will be refreshed
// regularly and optionally add all torrents from the feed, as they
// appear.
@ -531,17 +534,19 @@ namespace libtorrent
// is a handle which is used to interact with the feed, things like
// forcing a refresh or querying for information about the items in the
// feed. For more information, see feed_handle.
feed_handle add_feed(feed_settings const& feed);
TORRENT_DEPRECATED_PREFIX
feed_handle add_feed(feed_settings const& feed) TORRENT_DEPRECATED;
// Removes a feed from being watched by the session. When this
// call returns, the feed handle is invalid and won't refer
// to any feed.
void remove_feed(feed_handle h);
TORRENT_DEPRECATED_PREFIX
void remove_feed(feed_handle h) TORRENT_DEPRECATED;
// Returns a list of all RSS feeds that are being watched by the session.
void get_feeds(std::vector<feed_handle>& f) const;
TORRENT_DEPRECATED_PREFIX
void get_feeds(std::vector<feed_handle>& f) const TORRENT_DEPRECATED;
#ifndef TORRENT_NO_DEPRECATE
// ``start_dht`` starts the dht node and makes the trackerless service
// available to torrents.
//

View File

@ -482,6 +482,7 @@ namespace libtorrent {
return "DHT bootstrap complete";
}
#ifndef TORRENT_NO_DEPRECATE
std::string rss_alert::message() const
{
char msg[600];
@ -490,6 +491,7 @@ namespace libtorrent {
, url.c_str(), state_msg[state], convert_from_native(error.message()).c_str());
return msg;
}
#endif
std::string torrent_error_alert::message() const
{
@ -623,6 +625,7 @@ namespace libtorrent {
return torrent_alert::message() + msg;
}
#ifndef TORRENT_NO_DEPRECATE
std::string rss_item_alert::message() const
{
char msg[500];
@ -631,6 +634,7 @@ namespace libtorrent {
, item.title.empty() ? item.url.c_str() : item.title.c_str());
return msg;
}
#endif
std::string peer_disconnected_alert::message() const
{

View File

@ -44,6 +44,8 @@ POSSIBILITY OF SUCH DAMAGE.
#include <map>
#include <algorithm>
#ifndef TORRENT_NO_DEPRECATE
namespace libtorrent {
feed_item::feed_item(): size(-1) {}
@ -662,3 +664,5 @@ feed_settings feed_handle::settings() const
}
#endif // TORRENT_NO_DEPRECATE

View File

@ -440,6 +440,7 @@ namespace libtorrent
TORRENT_SYNC_CALL1(load_state, &e);
}
#ifndef TORRENT_NO_DEPRECATE
feed_handle session::add_feed(feed_settings const& feed)
{
// if you have auto-download enabled, you must specify a download directory!
@ -457,6 +458,7 @@ namespace libtorrent
f.clear();
TORRENT_SYNC_CALL1(get_feeds, &f);
}
#endif
void session::set_load_function(user_load_function_t fun)
{

View File

@ -387,7 +387,9 @@ namespace aux {
, m_last_tick(m_created)
, m_last_second_tick(m_created - milliseconds(900))
, m_last_choke(m_created)
#ifndef TORRENT_NO_DEPRECATE
, m_next_rss_update(min_time())
#endif
#ifndef TORRENT_DISABLE_DHT
, m_dht_announce_timer(m_io_service)
, m_dht_interval_update_torrents(0)
@ -713,6 +715,7 @@ namespace aux {
}
#endif
#ifndef TORRENT_NO_DEPRECATE
if (flags & session::save_feeds)
{
entry::list_type& feeds = e["feeds"].list();
@ -723,6 +726,7 @@ namespace aux {
(*i)->save_state(feeds.back());
}
}
#endif
#ifndef TORRENT_DISABLE_EXTENSIONS
for (ses_extension_list_t::const_iterator i = m_ses_extensions.begin()
@ -828,6 +832,7 @@ namespace aux {
}
#endif
#ifndef TORRENT_NO_DEPRECATE
settings = e->dict_find_list("feeds");
if (settings)
{
@ -842,6 +847,7 @@ namespace aux {
}
update_rss_feeds();
}
#endif
#ifndef TORRENT_DISABLE_EXTENSIONS
for (ses_extension_list_t::iterator i = m_ses_extensions.begin()
@ -888,6 +894,7 @@ namespace aux {
}
#endif
#ifndef TORRENT_NO_DEPRECATE
feed_handle session_impl::add_feed(feed_settings const& sett)
{
TORRENT_ASSERT(is_single_thread());
@ -932,6 +939,7 @@ namespace aux {
, end(m_feeds.end()); i != end; ++i)
ret->push_back(feed_handle(*i));
}
#endif
void session_impl::pause()
{
@ -2903,11 +2911,13 @@ retry:
// don't do any of the following while we're shutting down
if (m_abort) return;
#ifndef TORRENT_NO_DEPRECATE
// --------------------------------------------------------------
// RSS feeds
// --------------------------------------------------------------
if (now > m_next_rss_update)
update_rss_feeds();
#endif
switch (m_settings.get_int(settings_pack::mixed_mode_algorithm))
{
@ -3249,6 +3259,7 @@ retry:
m_stats_counters.inc_stats_counter(counters::socket_send_size3 + index);
}
#ifndef TORRENT_NO_DEPRECATE
void session_impl::update_rss_feeds()
{
time_t now_posix = time(0);
@ -3267,6 +3278,7 @@ retry:
}
m_next_rss_update = min_update;
}
#endif
void session_impl::prioritize_connections(boost::weak_ptr<torrent> t)
{

View File

@ -117,7 +117,6 @@ test-suite libtorrent :
[ run test_privacy.cpp ]
[ run test_threads.cpp ]
[ run test_tailqueue.cpp ]
[ run test_rss.cpp ]
[ run test_bandwidth_limiter.cpp ]
[ run test_buffer.cpp ]
[ run test_piece_picker.cpp ]

View File

@ -39,7 +39,6 @@ test_programs = \
test_settings_pack \
test_read_piece \
test_resume \
test_rss \
test_ssl \
test_storage \
test_time_critical \
@ -121,12 +120,6 @@ EXTRA_DIST = Jamfile \
mutable_test_torrents/test2_pad_files.torrent \
mutable_test_torrents/test3.torrent \
mutable_test_torrents/test3_pad_files.torrent \
eztv.xml \
kat.xml \
cb.xml \
mn.xml \
pb.xml \
upnp.xml \
zeroes.gz \
utf8_test.txt
@ -186,7 +179,6 @@ test_super_seeding_SOURCES = test_super_seeding.cpp
test_swarm_SOURCES = test_swarm.cpp
test_tailqueue_SOURCES = test_tailqueue.cpp
test_resume_SOURCES = test_resume.cpp
test_rss_SOURCES = test_rss.cpp
test_ssl_SOURCES = test_ssl.cpp
test_threads_SOURCES = test_threads.cpp
test_torrent_SOURCES = test_torrent.cpp

View File

@ -1,612 +0,0 @@
<rss xmlns:atom="http://www.w3.org/2005/Atom" version="2.0" xmlns:media="http://search.yahoo.com/mrss/">
<channel>
<title>ClearBits: All Content</title>
<link>http://www.clearbits.net</link>
<atom:link href="http://www.clearbits.net/rss.xml" rel="self" type="application/rss+xml"/>
<description>All Content</description>
<lastBuildDate>Mon, 20 Feb 2012 22:07:12 +0000</lastBuildDate>
<item>
<title>Norbergfestival 2011</title>
<link>http://www.clearbits.net/torrents/1911-norbergfestival-2011</link>
<description>A short documentation/collage of our trip to the Norbergfestival 2011. The documentary features our friends, acts such as Lustmord, Dopplereffekt , Vinyl terror and horror and the grand and unforgettable Mimer-stage.
Shot between 28 and 30 july 2011 at the Norbergfestival. The Norbergfestival celebrates alternative electronic music and takes place in the small city Norberg in Sweden. 2011 the festival featured such acts as Lustmord, Dopplereffekt, Rrritalin, Vinyl terror &amp; horror, Hanna Hartman, Rrritalin etc.</description>
<category>Movies;4</category>
<guid>http://www.clearbits.net/torrents/1911-norbergfestival-2011</guid>
<pubDate>Fri, 17 Feb 2012 12:26:53 +0000</pubDate>
<enclosure type="application/x-bittorrent" length="1160773632" url="http://www.clearbits.net/get/1911-norbergfestival-2011.torrent"/>
</item>
<item>
<title>99 Anonymous Mixtape 4</title>
<link>http://www.clearbits.net/torrents/1910-99-anonymous-mixtape-4</link>
<description>Fourth release of a series of mixtapes raising awareness to the Anonymous, #antisec, Wikileaks and Occupy Wall Street movements. This fourth release also focuses on SOPA / PIPA, ACTA and #PL118. Organized in colaboration with &lt;a href=&quot;http://xdatelier.org&quot;&gt;xDA hackerspace&lt;/a&gt;, this release is part of Enough Records social and political activist sub-label Anonymous Archives and has it's own &lt;a href=&quot;http://enoughrecords.scene.org/anonymous_archives/&quot;&gt;minipage&lt;/a&gt;. Mixed by ps. Cover by Roland Henry.
Tracklist:
01) Frank Boyant - Starving to Death (ps's Portuguese Anonymous Remix)
02) Copy Your Idols - Art Is Dead (Ifland &amp; Klatt's Final Nail Edit)
03) Dainon - ACTA
04) TheJuiceMedia: RAP NEWS 4 - Wikileaks vs The Pentagon - WWWAR on the Internet
05) unknown artist - Occupy
06) unknown artist - #FFF
07) The Easton Ellises - Glitches
08) TheJuiceMedia: RAP NEWS X - #Occupy2012
09) Megaupload - Mega Song
10) TheAnonMessage - Operation Black Out
11) Pedro Esteves - #pl118
12) kokori - PL118
13) Hanging By A Name - The Shape
14) Ink &amp; One - I Occupy Wall Street
</description>
<category>Netlabel Music;7</category>
<guid>http://www.clearbits.net/torrents/1910-99-anonymous-mixtape-4</guid>
<pubDate>Thu, 16 Feb 2012 15:15:48 +0000</pubDate>
<enclosure type="application/x-bittorrent" length="114294784" url="http://www.clearbits.net/get/1910-99-anonymous-mixtape-4.torrent"/>
<media:thumbnail url="http://www.clearbits.net/upload/image/2802.jpg?type=thumb"/>
</item>
<item>
<title>99 Anonymous Mixtape 3</title>
<link>http://www.clearbits.net/torrents/1909-99-anonymous-mixtape-3</link>
<description>Third release of a series of mixtapes raising awareness to the Anonymous, #antisec, Wikileaks and Occupy Wall Street movements. Organized in colaboration with &lt;a href=&quot;http://xdatelier.org&quot;&gt;xDA hackerspace&lt;/a&gt;, this release is part of Enough Records social and political activist sub-label Anonymous Archives and has it's own &lt;a href=&quot;http://enoughrecords.scene.org/anonymous_archives/&quot;&gt;minipage&lt;/a&gt;. Mixed by Ricardo Webbens.
Tracklist:
01) unknown artist - dreams
02) Mystified - The Shock Of Coming Days (Kinetic Remix)
03) M-PeX - Navimort
04) ps - Wake up! Your democracy is dead
05) Sci-Fi Industries - GOP Item
06) .crk - SQL Slammer (Anonymous Version)
07) YTCracker - #antisec
08) Amitron_7 - Zuccotti Park
09) Virgilio Oliveira feat. a poem by divinity33372 - Opression
10) Ricardo Webbens - port 21
11) ocp - Presevere
</description>
<category>Netlabel Music;7</category>
<guid>http://www.clearbits.net/torrents/1909-99-anonymous-mixtape-3</guid>
<pubDate>Sat, 11 Feb 2012 05:20:57 +0000</pubDate>
<enclosure type="application/x-bittorrent" length="111149056" url="http://www.clearbits.net/get/1909-99-anonymous-mixtape-3.torrent"/>
<media:thumbnail url="http://www.clearbits.net/upload/image/2798.jpg?type=thumb"/>
</item>
<item>
<title>Various Artists - Impromeetin 2011</title>
<link>http://www.clearbits.net/torrents/1908-various-artists---impromeetin-2011</link>
<description>Impromeeting is a meeting place for the improvisation of sound artists from different artistic disciplines as a form of collaboration, experimentation and fun. Impromeeting accommodates musicians and non-musicians, narrators, poets, electronics, sound art, djing, turntablism or any other form of creating sound and noise from the point of view of experimental music. Organised by Mauri (producer, artist and dj). First edition was in 2010 and the second edition was on 10th of july 2011 in Gijon (Spain) with 4 artists from different musical styles (were first improvising in pairs, and ended up playing all together). The artists for Impromeetin'2011 were: Non Ergo (with a computer, synthesizer, and voice). Vred (Electronic violoncelo, guitar, contrabass and some footswitch). Violeta Nureyev (bass and voice). Las Casi Casiotone (with 2 MacBook Pro, Midi controller, delay footswitch and microphone).</description>
<category>Netlabel Music;7</category>
<guid>http://www.clearbits.net/torrents/1908-various-artists---impromeetin-2011</guid>
<pubDate>Fri, 10 Feb 2012 18:05:30 +0000</pubDate>
<enclosure type="application/x-bittorrent" length="85983232" url="http://www.clearbits.net/get/1908-various-artists---impromeetin-2011.torrent"/>
<media:thumbnail url="http://www.clearbits.net/upload/image/2796.jpg?type=thumb"/>
</item>
<item>
<title>Iron Sky Theatrical Trailer</title>
<link>http://www.clearbits.net/torrents/1907-iron-sky-theatrical-trailer</link>
<description>Iron Sky Official Theatrical Trailer in glorious full HD and iPad optimized .mp4! Music composed by Laibach.Iron Sky is a dark scifi comedy. In theaters starting on 4th of April 2012 in Finland and 5th of April in Germany. More countries will follow in April and May.Read more: http://www.ironsky.net Follow us: http://fb.com/ironsky</description>
<category>Movies;4</category>
<guid>http://www.clearbits.net/torrents/1907-iron-sky-theatrical-trailer</guid>
<pubDate>Thu, 09 Feb 2012 15:08:03 +0000</pubDate>
<enclosure type="application/x-bittorrent" length="564133888" url="http://www.clearbits.net/get/1907-iron-sky-theatrical-trailer.torrent"/>
</item>
<item>
<title>Glamour Portraits by Andreea Retinschi [Copyright]</title>
<link>http://www.clearbits.net/torrents/1904-glamour-portraits-by-andreea-retinschi-copyright</link>
<description>The theme is distributed in three files, for the most common aspect ratios and resolutions:
4:3 Aspect Ratio Resolutions: 1600x1200, 1280x960, 1152x864, 1024x768.
16:9 Aspect Ratio Resolutions: 1920x1080, 1600x900, 1366x768, 1360x768.
16:10 Aspect Ratio Resolutions: 1920x1200, 1680x1050, 1440x900, 1280x800.
&lt;strong&gt;Copyright: Andreea Retinschi. If you want to use the pictures included in this theme otherwise than as you desktop backgrounds, you need written permission from their author.&lt;/strong&gt;</description>
<category>Other;10</category>
<guid>http://www.clearbits.net/torrents/1904-glamour-portraits-by-andreea-retinschi-copyright</guid>
<pubDate>Thu, 09 Feb 2012 13:15:03 +0000</pubDate>
<enclosure type="application/x-bittorrent" length="32505856" url="http://www.clearbits.net/get/1904-glamour-portraits-by-andreea-retinschi-copyright.torrent"/>
</item>
<item>
<title>Street Portraits Photography by Andrei Niculescu - Windows 7 Theme [version 2]</title>
<link>http://www.clearbits.net/torrents/1854-street-portraits-photography-by-andrei-niculescu---windows-7-theme-version-2</link>
<description>The theme is distributed in three files, for the most common aspect ratios and resolutions:
4:3 Aspect Ratio Resolutions: 1600x1200, 1280x960, 1152x864, 1024x768.
16:9 Aspect Ratio Resolutions: 1920x1080, 1600x900, 1366x768, 1360x768.
16:10 Aspect Ratio Resolutions: 1920x1200, 1680x1050, 1440x900, 1280x800.
&lt;strong&gt;Copyright: Andrei Niculescu. If you want to use the pictures included in this theme otherwise than as you desktop backgrounds, you need written permission from their author.&lt;/strong&gt;</description>
<category>Other;10</category>
<guid>http://www.clearbits.net/torrents/1854-street-portraits-photography-by-andrei-niculescu---windows-7-theme-version-2</guid>
<pubDate>Thu, 09 Feb 2012 13:07:56 +0000</pubDate>
<enclosure type="application/x-bittorrent" length="24117248" url="http://www.clearbits.net/get/1854-street-portraits-photography-by-andrei-niculescu---windows-7-theme-version-2.torrent"/>
</item>
<item>
<title>Enko - Woods Moons</title>
<link>http://www.clearbits.net/torrents/1906-enko---woods-moons</link>
<description>Artist: Enko
Title: Woods Moons
Cat#: BP064
Date: 8 Feb, 2012
Genre: Electronic
Format: 14 x File, MP3, 320 kbps
About Enko:
Enko also known as Enkolf Kitler, is an electronic musician who was born in Sumy city, Ukraine. But now he lives and works in Moscow. Enko's early creations was influenced by the English electronic group Autechre. He began releasing music for free in 2008, on netlabels such as SUBWISE, Pavillon36 Recordings, Qulture Production. Enko makes music on his laptop under Propellerhead Reason. He was studied in the Faculty Engineering Department of the Sumy State University.
Credits:
Written-By: &lt;a href=&quot;http://www.facebook.com/profile.php?id=100000471681997&quot;&gt;Enko&lt;/a&gt;
Mastered By: &lt;a href=&quot;http://zhangjw.bai-hua.org&quot;&gt;ZhangJW&lt;/a&gt;
Bypass Netlabel - &lt;a href=&quot;http://bp.bai-hua.org&quot;&gt;bp.bai-hua.org&lt;/a&gt;</description>
<category>Netlabel Music;7</category>
<guid>http://www.clearbits.net/torrents/1906-enko---woods-moons</guid>
<pubDate>Tue, 07 Feb 2012 17:05:57 +0000</pubDate>
<enclosure type="application/x-bittorrent" length="101711872" url="http://www.clearbits.net/get/1906-enko---woods-moons.torrent"/>
<media:thumbnail url="http://www.clearbits.net/upload/image/2794.jpg?type=thumb"/>
</item>
<item>
<title>Various Artists - NEW 7.0</title>
<link>http://www.clearbits.net/torrents/1905-various-artists---new-70</link>
<description>Electronic music is one of the major export products of the Netherlands. It seems we have an almost endless supply of talent in our country, more than anywhere else. Numerous young producers master all kinds of production skills within the confinement of their own bedrooms. A lot of these tracks never reach an audience beyond the producer's headphones unfortunately. Album NEW 7.0 collects twelve of these incredible tracks. Alienating trip hop, heavy techno, old school house, future garage: talented producers from East Netherlands seem to pop up in all conceivable genre.N.E.W. puts new producers from East Netherlands on the map. Selected for NEW 7.0 are Sam a La Bamalot, Badencourtrecords, Youri, Lopende Paddo, Addicted White Guy, Sonurber, The House Arts, Near Earth Object , Grimm Limbo, Le VingtQuatre, Knarsetand and Radion. This twelve men strong wave of producers will be promoted by NEW all year long in many different ways. First of all there's the release of the compilation album NEW 7.0, which will be available on a free CD at release parties in both Nijmegen and Deventer. Free digital copies are also available through online label esc.rec right here on this page and at the site www.nieuweelectronischewaar.nl.NEW Partners: esc.rec., productiehuis ON, Het Burgerweeshuis, Doornroosje &amp; Merleyn, Gogbot, de-Affaire, Hedon, Gesel XL, Cultuurwolven, Savoir, KCO, KCG, Artez Conservatorium, Eclectro, Atak, Go Short.</description>
<category>Netlabel Music;7</category>
<guid>http://www.clearbits.net/torrents/1905-various-artists---new-70</guid>
<pubDate>Tue, 07 Feb 2012 11:56:50 +0000</pubDate>
<enclosure type="application/x-bittorrent" length="138412032" url="http://www.clearbits.net/get/1905-various-artists---new-70.torrent"/>
<media:thumbnail url="http://www.clearbits.net/upload/image/2793.jpg?type=thumb"/>
</item>
<item>
<title>Digital Collages by Ionut Caras</title>
<link>http://www.clearbits.net/torrents/1903-digital-collages-by-ionut-caras</link>
<description>The theme is distributed in three files, for the most common aspect ratios and resolutions:
4:3 Aspect Ratio Resolutions: 1600x1200, 1280x960, 1152x864, 1024x768.
16:9 Aspect Ratio Resolutions: 1920x1080, 1600x900, 1366x768, 1360x768.
16:10 Aspect Ratio Resolutions: 1920x1200, 1680x1050, 1440x900, 1280x800.
&lt;strong&gt;Copyright: Ionut Caras. If you want to use the pictures included in this theme otherwise than as you desktop backgrounds, you need written permission from their author.&lt;/strong&gt;</description>
<category>Other;10</category>
<guid>http://www.clearbits.net/torrents/1903-digital-collages-by-ionut-caras</guid>
<pubDate>Thu, 02 Feb 2012 11:21:44 +0000</pubDate>
<enclosure type="application/x-bittorrent" length="26214400" url="http://www.clearbits.net/get/1903-digital-collages-by-ionut-caras.torrent"/>
<media:thumbnail url="http://www.clearbits.net/upload/image/2788.jpg?type=thumb"/>
</item>
<item>
<title>Various Artists - netBloc Vol. 36_ Get Dusted _Illness From The Dusted Wax Stacks_</title>
<link>http://www.clearbits.net/torrents/1902-various-artists---netbloc-vol-36_-get-dusted-_illness-from-the-dusted-wax-stacks_</link>
<description>Can you believe that we're approaching our fifth year of bringing you only the best music from netlabel and netaudio culture?!? It's been an amazing five years and I thank you for continuing to listen. Over the years, blocSonic has become more than a tastemaker. We've grown and expanded into releasing our own quality releases. However we grow and develop in the future, our commitment to continued support of netaudio via our netBloc series is stronger than ever. With this, our 36th volume in the series, we're committing to one annual year-end netBloc that shines the spotlight on ONE netlabel. This year we're bringing you a collection of fire from the extensive Dusted Wax Kingdom archives! Over the years of bringing you these netBlocs, there are a few netlabels who have become staples of the compilation series. More recently, DWK has become one of these favorites. Though, their catalog is extensive enough that many gems just haven't received the shine they deserve. So here you have a collection of 15 tracks that present to you a good representation of the Dusted Wax Kingdom sound. Thanks to label head Dimitar for making the experience of compiling this collection a great one! Thanks to all artists of the DWK roster for doing what you do and sharing your art with the world. You all &amp; everyone in the netaudio culture make music intriguing again.Thanks again to our listeners! Remember... everything we release is cool to share! Always keep the music moving... share it... blog it... podcast it! If you're in radio... support independent music and broadcast it! HAPPY NEW YEAR! Be safe.</description>
<category>Netlabel Music;7</category>
<guid>http://www.clearbits.net/torrents/1902-various-artists---netbloc-vol-36_-get-dusted-_illness-from-the-dusted-wax-stacks_</guid>
<pubDate>Wed, 01 Feb 2012 15:23:55 +0000</pubDate>
<enclosure type="application/x-bittorrent" length="137363456" url="http://www.clearbits.net/get/1902-various-artists---netbloc-vol-36_-get-dusted-_illness-from-the-dusted-wax-stacks_.torrent"/>
<media:thumbnail url="http://www.clearbits.net/upload/image/2787.jpg?type=thumb"/>
</item>
<item>
<title>1in10 Varia - A Million Ways</title>
<link>http://www.clearbits.net/torrents/1901-1in10-varia---a-million-ways</link>
<description>New album mashup album by one member of Varia, you might remember them from their previous release at Enough Records, a double album titled &lt;a href=&quot;http://enoughrecords.scene.org/?cat=enrmp269&quot;&gt;Magic + Omega&lt;/a&gt;. It's quite hard to define their style in writing, a remix / mashup sonic soup of sorts using 70s and 80s classics in post new wave / disco / electro fashion mixed with some occasional movie or audiobook sampling.</description>
<category>Netlabel Music;7</category>
<guid>http://www.clearbits.net/torrents/1901-1in10-varia---a-million-ways</guid>
<pubDate>Tue, 31 Jan 2012 16:34:37 +0000</pubDate>
<enclosure type="application/x-bittorrent" length="53477376" url="http://www.clearbits.net/get/1901-1in10-varia---a-million-ways.torrent"/>
<media:thumbnail url="http://www.clearbits.net/upload/image/2786.jpg?type=thumb"/>
</item>
<item>
<title>Various Artists - netBloc Vol. 35_ Occupy Music</title>
<link>http://www.clearbits.net/torrents/1900-various-artists---netbloc-vol-35_-occupy-music</link>
<description>Thanks once again for downloading and listening! We've got a selection of 13 tracks from the world of netaudio. Two of them are previews of 2012 blocSonic releases. I hope you enjoy this carefully crafted selection! Remember... everything we release is cool to share! Always keep the music moving... share it... blog it... podcast it! If you're in radio... support independent music and broadcast it!</description>
<category>Netlabel Music;7</category>
<guid>http://www.clearbits.net/torrents/1900-various-artists---netbloc-vol-35_-occupy-music</guid>
<pubDate>Tue, 31 Jan 2012 15:09:45 +0000</pubDate>
<enclosure type="application/x-bittorrent" length="90177536" url="http://www.clearbits.net/get/1900-various-artists---netbloc-vol-35_-occupy-music.torrent"/>
<media:thumbnail url="http://www.clearbits.net/upload/image/2785.jpg?type=thumb"/>
</item>
<item>
<title>99 Anonymous Mixtape 2</title>
<link>http://www.clearbits.net/torrents/1899-99-anonymous-mixtape-2</link>
<description>Second release of a series of mixtapes raising awareness to the Anonymous, #antisec, Wikileaks and Occupy Wall Street movements. Organized in colaboration with &lt;a href=&quot;http://xdatelier.org&quot; rel=&quot;nofollow&quot;&gt;xDA hackerspace&lt;/a&gt;, this release is part of Enough Records social and political activist sub-label Anonymous Archives and has it's own &lt;a href=&quot;http://enoughrecords.scene.org/99anonymous/&quot; rel=&quot;nofollow&quot;&gt;minipage&lt;/a&gt;. Mixed by Amitron_7. Cover by Roland Henry.
Tracklist:
01) Macabro - Just Run Away
02) Jari Pitkanen - 111220 Vuvukat
03) Amitron_7 - Zucotti Park
04) Jari Pitkanen - 111220 Vuvukat (reprise)
05) Jared Balogh - The Calm before the Storm
06) Virgilio Oliveira feat. a poem by divinity33372 - Opression
07) Jared Balogh - The Calm before the Storm (reprise)
08) YTCracker - #antisec
09) No Loli-Gagging - Occupy the Internet
10) M-PeX - Navimort
11) Macabro - We Live Lies
</description>
<category>Netlabel Music;7</category>
<guid>http://www.clearbits.net/torrents/1899-99-anonymous-mixtape-2</guid>
<pubDate>Thu, 26 Jan 2012 19:36:40 +0000</pubDate>
<enclosure type="application/x-bittorrent" length="70254592" url="http://www.clearbits.net/get/1899-99-anonymous-mixtape-2.torrent"/>
<media:thumbnail url="http://www.clearbits.net/upload/image/2783.jpg?type=thumb"/>
</item>
<item>
<title>Alister Flint Discography</title>
<link>http://www.clearbits.net/torrents/1898-alister-flint-discography</link>
<description>[SLNT033] Alister Flint - Under The Surface[SLNT027] Alister Flint - Alter Nativis[SLNT015] Alister Flint - UchuuBought his first &quot;synth&quot; in the mid-90s, a Yamaha PSR500 (r), which was more an arranger rather than really a synthetiser, Alister stepped into the world of eletronic music after having been heavily influenced by key albums such as Tangerine Dream's Stratosfear or Rubycon, as well as having performed as a techno DJ in free parties in southern France. Late 90s, he bought his first computer equiped with a 16bit soundcard and started to track his first electronic tunes on Fast Tracker (r), which is more like programming rather than any real play, using all kinds of codes to iunput notes, effects and such. But most of his production at time was techno/trance oriented.Shortly after 2000, the release of a revolutionary daw, Reason (r), opened a much wider scope of genres and styles, and he started to produce more downtempo, chilled out, groove-based pieces. And it was also the birth of his very humble home studio, with a Yamaha P-80 (r) piano, and a semi-pro Creamware (r) soundcard. With the additions of congas, derbekehh, and more recently, Korg nanoSeries as portable studio, he started to produce and perform live some experimental and ambient pieces.He has done a few collaborations with musicians such as C. Vaisvil in various genres, and he's now actively part of a newly born musician community, Not Only Music, opened to all kinds of genres, and artforms, with an expanding interest for microtonal music.'Uchuu' [SLNT015] is the first release of Alister Flint.</description>
<category>Netlabel Music;7</category>
<guid>http://www.clearbits.net/torrents/1898-alister-flint-discography</guid>
<pubDate>Sat, 21 Jan 2012 17:17:24 +0000</pubDate>
<enclosure type="application/x-bittorrent" length="379584512" url="http://www.clearbits.net/get/1898-alister-flint-discography.torrent"/>
<media:thumbnail url="http://www.clearbits.net/upload/image/2779.jpg?type=thumb"/>
</item>
<item>
<title>AtlanThis</title>
<link>http://www.clearbits.net/torrents/1897-atlanthis</link>
<description>Compilation of experimental electronic music artists from Portugal and the United States, on the theme of travelling across the Atlantic ocean in search of a new world. Organized and co-released by &lt;a href=&quot;http://thisco.net/&quot;&gt;Thisco Records&lt;/a&gt;. Tracks by Low Pressure System, &lt;a href=&quot;http://tpolm.org/~ps/&quot;&gt;ps&lt;/a&gt;, &lt;a href=&quot;http://www.myspace.com/structura&quot;&gt;Structura&lt;/a&gt;, &lt;a href=&quot;http://www.sicktothebackteeth.com/&quot;&gt;Sick To The Back Teeth&lt;/a&gt;, &lt;a href=&quot;http://infetu.com/&quot;&gt;Infetu&lt;/a&gt;, &lt;a href=&quot;http://www.mystifiedmusic.com/&quot;&gt;Mystified&lt;/a&gt;, &lt;a href=&quot;http://www.myspace.com/traumaticodesmame&quot;&gt;Traumatico Desmame&lt;/a&gt;, &lt;a href=&quot;http://www.thisco.net/scifiindustries.htm&quot;&gt;Sci-Fi Industries&lt;/a&gt;, Wedding Noise and &lt;a href=&quot;http://www.thermidor-project.net/&quot;&gt;Thermidor&lt;/a&gt;.</description>
<category>Netlabel Music;7</category>
<guid>http://www.clearbits.net/torrents/1897-atlanthis</guid>
<pubDate>Fri, 20 Jan 2012 16:33:52 +0000</pubDate>
<enclosure type="application/x-bittorrent" length="105906176" url="http://www.clearbits.net/get/1897-atlanthis.torrent"/>
<media:thumbnail url="http://www.clearbits.net/upload/image/2778.jpg?type=thumb"/>
</item>
<item>
<title>Glamour Portraits by Andreea Retinschi</title>
<link>http://www.clearbits.net/torrents/1896-glamour-portraits-by-andreea-retinschi</link>
<description>The theme is distributed in three files, for the most common aspect ratios and resolutions:
4:3 Aspect Ratio Resolutions: 1600x1200, 1280x960, 1152x864, 1024x768.
16:9 Aspect Ratio Resolutions: 1920x1080, 1600x900, 1366x768, 1360x768.
16:10 Aspect Ratio Resolutions: 1920x1200, 1680x1050, 1440x900, 1280x800.
&lt;strong&gt;Copyright: Andreea Retinschi. If you want to use the pictures included in this theme otherwise than as you desktop backgrounds, you need written permission from their author.&lt;/strong&gt;</description>
<category>Other;10</category>
<guid>http://www.clearbits.net/torrents/1896-glamour-portraits-by-andreea-retinschi</guid>
<pubDate>Thu, 19 Jan 2012 13:48:07 +0000</pubDate>
<enclosure type="application/x-bittorrent" length="32505856" url="http://www.clearbits.net/get/1896-glamour-portraits-by-andreea-retinschi.torrent"/>
<media:thumbnail url="http://www.clearbits.net/upload/image/2777.jpg?type=thumb"/>
</item>
<item>
<title>Modernism</title>
<link>http://www.clearbits.net/torrents/1894-modernism</link>
<description>New for 2012! Back-to-basics new wave post-punk inspired album of original songs by Zru Vogue founder Andrew L. Jackson. Includes the full album in CD-quality AIFF plus high-quality MP3 files of all eleven songs: Artists and Poets Run Amok!, Things are Better With You, Little Yellow Pills, The Once and Future Me, Say It To You, Riddles Revisited, What do Words Want?, Water Gun, A Walk in the Park, Self Improvement, and the eleven-and-a-half-minute opus A Plush Pony Blinks Twice in Darkness. Download it today! All songs written, arranged, performed, and produced by Andrew Lawrence Jackson.</description>
<category>Netlabel Music;7</category>
<guid>http://www.clearbits.net/torrents/1894-modernism</guid>
<pubDate>Mon, 16 Jan 2012 17:56:58 +0000</pubDate>
<enclosure type="application/x-bittorrent" length="610271232" url="http://www.clearbits.net/get/1894-modernism.torrent"/>
<media:thumbnail url="http://www.clearbits.net/upload/image/2773.jpg?type=thumb"/>
</item>
<item>
<title>99 Anonymous Mixtape 1</title>
<link>http://www.clearbits.net/torrents/1893-99-anonymous-mixtape-1</link>
<description>First release of a series of mixtapes raising awareness to the Anonymous, #antisec, Wikileaks and Occupy Wall Street movements. Organized in colaboration with &lt;a href=&quot;http://xdatelier.org&quot;&gt;xDA hackerspace&lt;/a&gt;, this release is part of Enough Records social and political activist sub-label Anonymous Archives and has it's own &lt;a href=&quot;http://enoughrecords.scene.org/99anonymous/&quot;&gt;minipage&lt;/a&gt;.
Tracklist:
01) M-PeX - Navimort (Operation Payback Remix by ps)
02) .crk - SQL Slammer (Anonymous Version)
03) No Loli-Gagging - Occupy The Internet
04) amitron_7 - Zuccotti Park
05) Virgilio Oliveira feat. a poem by divinity33372 - Opression
06) macabro - We Live Lies
07) unknown artist - dreams
08) YTCracker - #antisec
09) Copy Your Idols - What If (Ron's Revolution Mix)</description>
<category>Netlabel Music;7</category>
<guid>http://www.clearbits.net/torrents/1893-99-anonymous-mixtape-1</guid>
<pubDate>Thu, 12 Jan 2012 11:07:10 +0000</pubDate>
<enclosure type="application/x-bittorrent" length="79691776" url="http://www.clearbits.net/get/1893-99-anonymous-mixtape-1.torrent"/>
<media:thumbnail url="http://www.clearbits.net/upload/image/2771.jpg?type=thumb"/>
</item>
<item>
<title>A Dozen Desktops</title>
<link>http://www.clearbits.net/torrents/1892-a-dozen-desktops</link>
<description>A (baker's) dozen more desktops.</description>
<category>Pictures;9</category>
<guid>http://www.clearbits.net/torrents/1892-a-dozen-desktops</guid>
<pubDate>Tue, 10 Jan 2012 04:54:44 +0000</pubDate>
<enclosure type="application/x-bittorrent" length="20971520" url="http://www.clearbits.net/get/1892-a-dozen-desktops.torrent"/>
<media:thumbnail url="http://www.clearbits.net/upload/image/2766.jpg?type=thumb"/>
</item>
<item>
<title>Distant 294 - Microcosmos</title>
<link>http://www.clearbits.net/torrents/1891-distant-294---microcosmos</link>
<description>Laidback electronic ambient album by Polish project &lt;a href=&quot;http://soundcloud.com/distant294&quot;&gt;Distant 294&lt;/a&gt;.</description>
<category>Netlabel Music;7</category>
<guid>http://www.clearbits.net/torrents/1891-distant-294---microcosmos</guid>
<pubDate>Mon, 09 Jan 2012 12:46:37 +0000</pubDate>
<enclosure type="application/x-bittorrent" length="161480704" url="http://www.clearbits.net/get/1891-distant-294---microcosmos.torrent"/>
<media:thumbnail url="http://www.clearbits.net/upload/image/2764.jpg?type=thumb"/>
</item>
<item>
<title>2.0.4 Taste</title>
<link>http://www.clearbits.net/torrents/1887-204-taste</link>
<description>What is taste? What is style? Do you have it? Scott and Rob have no idea what it is or how to get it - but they know it's important. In this show they talk to a designer who flexxes his good taste for a living - and a developer who is committed to spreading good taste where he can.* Michael Bach Designer at Microsoft* Geoffrey Grosenbach Owner/Founder of PeepCodeMusicThe music tracks this week are a combination of Fair Use, Royalty-free, and Mashups. * Jeff Buckley - Halleluja* Hymn - Hymn* Nine Inch Nails - Ghosts* Jag - My Momma Told Me* Low and Spring Heel Jack - Hand So Small</description>
<category>Podcasts;13</category>
<guid>http://www.clearbits.net/torrents/1887-204-taste</guid>
<pubDate>Fri, 06 Jan 2012 20:45:05 +0000</pubDate>
<enclosure type="application/x-bittorrent" length="72351744" url="http://www.clearbits.net/get/1887-204-taste.torrent"/>
</item>
<item>
<title>2.0.5 Typo</title>
<link>http://www.clearbits.net/torrents/1888-205-typo</link>
<description>Who cares about typefaces and why should you? Well, these guys do and you should start caring. Rob and Scott explore the world of reading online with one of the godfathers in the world of typeface and fonts.* Bill Hill Lover of reading, of typefaces, and co-creator of ClearType* Geoffrey Grosenbach Owner/Founder of PeepCodeMusicThe music tracks this week are a combination of Fair Use, Royalty-free, and Mashups. * Juno Reactor - High Energy Protons* Nine Inch Nails - Ghosts* Trent Reznor and Atticus Ross - Pieces from the Whole* Nine Inch Nails - The Great Collapse (Instrumental)* Calexico - Whipping the Horses Eyes</description>
<category>Podcasts;13</category>
<guid>http://www.clearbits.net/torrents/1888-205-typo</guid>
<pubDate>Fri, 06 Jan 2012 20:37:12 +0000</pubDate>
<enclosure type="application/x-bittorrent" length="82837504" url="http://www.clearbits.net/get/1888-205-typo.torrent"/>
</item>
<item>
<title>2.0.6 Play</title>
<link>http://www.clearbits.net/torrents/1889-206-play</link>
<description>What do you do when you're not staring at your computer screen? What obsession grips you as you drive home? In this episode we ask David Heinemeier Hansson and Pete Brown this very question.* David Heinemeier Hansson Creator of Rails and budding Racer X* Pete Brown Senior Project Manager, Microsoft and budding Thomas EdisonMusicThe music tracks this week are a combination of Fair Use, Royalty-free, and Mashups. * Ladytron - Ace of Hz - DJ Tiesto Remix* Nine Inch Nails - Various Remixes of Deep and Perfect Drug* Jerry Berlongieri - Known Bugs* Karftwerk - Pocket Calculator* DJs From Mars - Enter Telephone</description>
<category>Podcasts;13</category>
<guid>http://www.clearbits.net/torrents/1889-206-play</guid>
<pubDate>Fri, 06 Jan 2012 18:58:40 +0000</pubDate>
<enclosure type="application/x-bittorrent" length="70254592" url="http://www.clearbits.net/get/1889-206-play.torrent"/>
</item>
<item>
<title>2.0.7 Dinosaurs</title>
<link>http://www.clearbits.net/torrents/1890-207-dinosaurs</link>
<description>You're so old! What a dinosaur! You're using old software and old languages to do old things! Or are you? Scott and Rob talk to David Sokol, Sean Bamforth and Pete Brown about Fortran, DataFlex and the Commodore 64. All these dinosaurs are doing useful work. Or, are they?* David Sokol Fortran Programmer and dude with an AWESOME hover state on his home page* Sean Bamforth Former Dataflex programmer and now beginning .NET guru* Pete Brown Senior Project Manager, Microsoft and budding Thomas EdisonMusicThe music tracks this week are all Creative Commons from SoundCloud and most are less than 10 seconds.* djpenegre - Ibiza Sunrise 2* MattyBlades - Midi Blues* ~djrain~ - Ladies of the 80s Retro Mix* mrevaaaaa - The Cogs Are Spinnin'* WenzelRanch - Happy Feed Midi Jam* AlexDaniels - Zimbabwe* Lucent Zoom - 1764* Lucent Zoom - Irish Song* MIDI Controller - 'Xactly* BDarner2 - 6Death of New Age* The Apex - An Azure Night</description>
<category>Podcasts;13</category>
<guid>http://www.clearbits.net/torrents/1890-207-dinosaurs</guid>
<pubDate>Thu, 05 Jan 2012 21:19:49 +0000</pubDate>
<enclosure type="application/x-bittorrent" length="81788928" url="http://www.clearbits.net/get/1890-207-dinosaurs.torrent"/>
</item>
<item>
<title>Episode 1_ Death of a Doctor</title>
<link>http://www.clearbits.net/torrents/1886-episode-1_-death-of-a-doctor</link>
<description>A renown physicist commits suicide. . . or does he? Again journalist John Webster must solve the mystery which involves the United Nations and a large oil company. </description>
<category>Books;3</category>
<guid>http://www.clearbits.net/torrents/1886-episode-1_-death-of-a-doctor</guid>
<pubDate>Fri, 30 Dec 2011 19:29:29 +0000</pubDate>
<enclosure type="application/x-bittorrent" length="0" url="http://www.clearbits.net/get/1886-episode-1_-death-of-a-doctor.torrent"/>
</item>
<item>
<title>Dec 2011 [Update 2]</title>
<link>http://www.clearbits.net/torrents/1885-dec-2011-update-2</link>
<description>Anonymized data dump of all creative commons questions and answers from the Stack Exchange family of websites at http://stackexchange.com/sites . XML format, 7zipped, released every 3 monthsThe following sites where previously cut off in the upload - here is an update:bicyclesdatabase administratorsdrupalit securityphysicstex/latextheoretical computer scienceunix and linuxweb applicationswebmasterswordpress</description>
<category>Other;10</category>
<guid>http://www.clearbits.net/torrents/1885-dec-2011-update-2</guid>
<pubDate>Wed, 21 Dec 2011 07:49:01 +0000</pubDate>
<enclosure type="application/x-bittorrent" length="297795584" url="http://www.clearbits.net/get/1885-dec-2011-update-2.torrent"/>
</item>
<item>
<title>Dec 2011 [Update]</title>
<link>http://www.clearbits.net/torrents/1884-dec-2011-update</link>
<description>Anonymized data dump of all creative commons questions and answers from the Stack Exchange family of websites at http://stackexchange.com/sites . XML format, 7zipped, released every 3 months</description>
<category>Other;10</category>
<guid>http://www.clearbits.net/torrents/1884-dec-2011-update</guid>
<pubDate>Tue, 20 Dec 2011 22:18:20 +0000</pubDate>
<enclosure type="application/x-bittorrent" length="163577856" url="http://www.clearbits.net/get/1884-dec-2011-update.torrent"/>
</item>
<item>
<title>Greatest Memories</title>
<link>http://www.clearbits.net/torrents/1883-greatest-memories</link>
<description>Greatest Memories is the latest Album recorded in 2011.</description>
<category>Music;6</category>
<guid>http://www.clearbits.net/torrents/1883-greatest-memories</guid>
<pubDate>Tue, 20 Dec 2011 08:35:15 +0000</pubDate>
<enclosure type="application/x-bittorrent" length="100663296" url="http://www.clearbits.net/get/1883-greatest-memories.torrent"/>
<media:thumbnail url="http://www.clearbits.net/upload/image/2756.jpg?type=thumb"/>
</item>
<item>
<title>No Loli-gagging - The Floor is Now Lava</title>
<link>http://www.clearbits.net/torrents/1882-no-loli-gagging---the-floor-is-now-lava</link>
<description>Lolicore album by US project No Loli-Gagging. Mixing influences from hardcore, breakcore, speedcore, gabber, trance, drum n bass, techno, house, noise and even ambient. All with the usual heavy dosage of high pitched lolita vocals and abrupt track endings.</description>
<category>Netlabel Music;7</category>
<guid>http://www.clearbits.net/torrents/1882-no-loli-gagging---the-floor-is-now-lava</guid>
<pubDate>Fri, 16 Dec 2011 11:26:33 +0000</pubDate>
<enclosure type="application/x-bittorrent" length="47185920" url="http://www.clearbits.net/get/1882-no-loli-gagging---the-floor-is-now-lava.torrent"/>
<media:thumbnail url="http://www.clearbits.net/upload/image/2752.jpg?type=thumb"/>
</item>
<item>
<title>Dec 2011</title>
<link>http://www.clearbits.net/torrents/1881-dec-2011</link>
<description>Anonymized data dump of all creative commons questions and answers from the Stack Exchange family of websites at http://stackexchange.com/sites . XML format, 7zipped, released every 3 months</description>
<category>Other;10</category>
<guid>http://www.clearbits.net/torrents/1881-dec-2011</guid>
<pubDate>Tue, 13 Dec 2011 09:19:21 +0000</pubDate>
<enclosure type="application/x-bittorrent" length="5239734272" url="http://www.clearbits.net/get/1881-dec-2011.torrent"/>
</item>
<item>
<title>Edgeist - Landscapes</title>
<link>http://www.clearbits.net/torrents/1880-edgeist---landscapes</link>
<description>Rhythmic noise EP by French project &lt;a href=&quot;http://www.edgeist.net/&quot;&gt;Edgeist&lt;/a&gt;.</description>
<category>Netlabel Music;7</category>
<guid>http://www.clearbits.net/torrents/1880-edgeist---landscapes</guid>
<pubDate>Thu, 08 Dec 2011 15:45:35 +0000</pubDate>
<enclosure type="application/x-bittorrent" length="31457280" url="http://www.clearbits.net/get/1880-edgeist---landscapes.torrent"/>
<media:thumbnail url="http://www.clearbits.net/upload/image/2745.jpg?type=thumb"/>
</item>
<item>
<title>Cityscapes by David Gutierrez - Windows Theme</title>
<link>http://www.clearbits.net/torrents/1879-cityscapes-by-david-gutierrez---windows-theme</link>
<description>The theme features great cityscapes, created by photographer David Gutierrez. It is distributed in three files, for the most common aspect ratios and resolutions:
4:3 Aspect Ratio Resolutions: 1600x1200, 1280x960, 1152x864, 1024x768.
16:9 Aspect Ratio Resolutions: 1920x1080, 1600x900, 1366x768, 1360x768.
16:10 Aspect Ratio Resolutions: 1920x1200, 1680x1050, 1440x900, 1280x800.
&lt;strong&gt;Copyright: David Gutierrez. If you want to use the pictures included in this theme otherwise than as you desktop backgrounds, you need written permission from their author.&lt;/strong&gt;</description>
<category>Other;10</category>
<guid>http://www.clearbits.net/torrents/1879-cityscapes-by-david-gutierrez---windows-theme</guid>
<pubDate>Thu, 08 Dec 2011 12:14:42 +0000</pubDate>
<enclosure type="application/x-bittorrent" length="38797312" url="http://www.clearbits.net/get/1879-cityscapes-by-david-gutierrez---windows-theme.torrent"/>
<media:thumbnail url="http://www.clearbits.net/upload/image/2744.jpg?type=thumb"/>
</item>
<item>
<title>Richard Stallman in London</title>
<link>http://www.clearbits.net/torrents/1877-richard-stallman-in-london</link>
<description>READMEThis torrent contains a lecture hosted by the Open Rights Group. 'A Free Digital Society' with Richard Stallman comes in eight parts:1. On Surveillance2. On Censorship3. On DRM4. On Free and Non-Free Software5. On Servers6. On e-Voting7. The War on Sharing8. On Rights and Sufferance Filmed and edited by Mia Eley and Habib Kadiri. This work is licensed under a Creative Commons Attribution-NoDerivs 3.0 Unported License</description>
<category>Short Form Video;12</category>
<guid>http://www.clearbits.net/torrents/1877-richard-stallman-in-london</guid>
<pubDate>Fri, 02 Dec 2011 19:43:15 +0000</pubDate>
<enclosure type="application/x-bittorrent" length="967835648" url="http://www.clearbits.net/get/1877-richard-stallman-in-london.torrent"/>
</item>
<item>
<title>Trollhead - Trolls in Dub</title>
<link>http://www.clearbits.net/torrents/1874-trollhead---trolls-in-dub</link>
<description>Dubstep 4 track plate EP by &lt;a href=&quot;http://myspace.com/trollheadd&quot;&gt;Trollhead&lt;/a&gt;, a collaborative project between David Deschuyteneer (aka Ronny Ragtroll) and Jan Robbe (aka Atomhead).</description>
<category>Netlabel Music;7</category>
<guid>http://www.clearbits.net/torrents/1874-trollhead---trolls-in-dub</guid>
<pubDate>Thu, 24 Nov 2011 07:35:07 +0000</pubDate>
<enclosure type="application/x-bittorrent" length="34603008" url="http://www.clearbits.net/get/1874-trollhead---trolls-in-dub.torrent"/>
<media:thumbnail url="http://www.clearbits.net/upload/image/2738.jpg?type=thumb"/>
</item>
<item>
<title>Dead Island Theme for Windows 7</title>
<link>http://www.clearbits.net/torrents/1873-dead-island-theme-for-windows-7</link>
<description>The theme includes sounds from the official Dead Island soundtrack and high resolution wallpapers.
The theme is distributed in three files, for the most common aspect ratios and resolutions:
4:3 Aspect Ratio Resolutions: 1600x1200, 1280x960, 1152x864, 1024x768.
16:9 Aspect Ratio Resolutions: 1920x1080, 1600x900, 1366x768, 1360x768.
16:10 Aspect Ratio Resolutions: 1920x1200, 1680x1050, 1440x900, 1280x800.</description>
<category>Other;10</category>
<guid>http://www.clearbits.net/torrents/1873-dead-island-theme-for-windows-7</guid>
<pubDate>Thu, 17 Nov 2011 11:20:35 +0000</pubDate>
<enclosure type="application/x-bittorrent" length="9437184" url="http://www.clearbits.net/get/1873-dead-island-theme-for-windows-7.torrent"/>
<media:thumbnail url="http://www.clearbits.net/upload/image/2735.jpg?type=thumb"/>
</item>
<item>
<title>All The Empires Of The World - Return</title>
<link>http://www.clearbits.net/torrents/1872-all-the-empires-of-the-world---return</link>
<description>All the Empires of the World return with a work of staggering ambition and scope. Taking their familiar desert-doom vibe and supplementing it with some furious chug, a drum machine borrowed from Streetcleaner-era Godflesh and blackened vocals, Return oscillates between extremes of tenderness and brutality. It's the mark of a band supremely confident in their abilities who remain eager to stake out new territory.With an atmosphere of surreal violence that flirts with the sublime it brings to mind the films of Jodorowsky and the darker moments of Iain M. Banks' novels, whilst musical comparisons can be drawn with Cult of Luna, Grails, Pelican and - in its quieter moments - Six Organs of Admittance. We know of few bands who push at generic conventions so compellingly and are overwhelmingly proud to be releasing this to the world.Must be listened to loud.</description>
<category>Music;6</category>
<guid>http://www.clearbits.net/torrents/1872-all-the-empires-of-the-world---return</guid>
<pubDate>Sat, 12 Nov 2011 20:35:58 +0000</pubDate>
<enclosure type="application/x-bittorrent" length="98566144" url="http://www.clearbits.net/get/1872-all-the-empires-of-the-world---return.torrent"/>
</item>
<item>
<title>090 - Pie Are Squared - Hungover in Siberia</title>
<link>http://www.clearbits.net/torrents/1871-090---pie-are-squared---hungover-in-siberia</link>
<description>(Hungover in) Siberia is Pie Are Squared's third release and the first part of an ongoing trilogy; a venturesomely bold series of interrelated recordings. (Hungover in) Siberia plays as one long-form composition that is constructed with deliberate melodrama to pay homage to a plethora of human emotions, partly inspired by the seemingly infinite Siberian landscapes. Autobiographical in nature, the music expresses the protagonist's loneliness and longing to rejuvenate his soul and assuage his mind, and his journey through his own personal looking-glass into a hallucinatory world.download in .flac and other formats at http://piearesquared.bandcamp.com/album/hungover-in-siberiahttp://lostchildrennetlabel.com</description>
<category>Netlabel Music;7</category>
<guid>http://www.clearbits.net/torrents/1871-090---pie-are-squared---hungover-in-siberia</guid>
<pubDate>Fri, 11 Nov 2011 23:02:11 +0000</pubDate>
<enclosure type="application/x-bittorrent" length="95420416" url="http://www.clearbits.net/get/1871-090---pie-are-squared---hungover-in-siberia.torrent"/>
</item>
<item>
<title>Now That's What I Call General Midi Exclamation Mark</title>
<link>http://www.clearbits.net/torrents/1870-now-thats-what-i-call-general-midi-exclamation-mark</link>
<description>Digital Album Immediate download of 25-track album in your choice of MP3 320, FLAC, or just about any other format you could possibly desire. Buy Now name your price Share / Embed 1. the l train is for lovers (free) 02:35 2. okme3 (free) 01:49 3. drumming (free) 03:02 4. noooo (free) 01:16 5. momonene (free) 02:17 6. barkydoodle (free) 02:13 7. dixieblarghnd (free) 02:52 8. pound (free) 02:39 9. the drags theme (free) 01:50 10. toms (free) 00:39 11. slicing (free) 01:46 12. mt32moo (free) 02:26 13. dumzdumz (free) 03:21 14. ain't nobody home (free) 02:34 15. wienie (free) 02:10 16. guuuom (free) 02:14 17. mt32songy2 (free) 00:59 18. xgeew (free) 01:56 19. rock n bowl (free) 02:38 20. awesometon (free) 02:29 21. funky organ song (free) 02:32 22. funkbird (free) 02:16 23. groovytyem (free) 02:03 24. mt32drum (free) 02:57 aboutFREE DOWNLOAD JUST CLICK BUY NOW AND TYPE IN 0.credits released 09 November 2011 tags tags: crunk free general midi midi mt32 twee folk New York licenseSome rights reserved feed Feeds for this album, this artist</description>
<category>Music;6</category>
<guid>http://www.clearbits.net/torrents/1870-now-thats-what-i-call-general-midi-exclamation-mark</guid>
<pubDate>Thu, 10 Nov 2011 09:59:00 +0000</pubDate>
<enclosure type="application/x-bittorrent" length="80740352" url="http://www.clearbits.net/get/1870-now-thats-what-i-call-general-midi-exclamation-mark.torrent"/>
<media:thumbnail url="http://www.clearbits.net/upload/image/2731.jpg?type=thumb"/>
</item>
<item>
<title>The Picture of Dorian Gray by Oscar Wilde - A Librivox Audio Book</title>
<link>http://www.clearbits.net/torrents/1869-the-picture-of-dorian-gray-by-oscar-wilde---a-librivox-audio-book</link>
<description>The novel tells of a young man named Dorian Gray, the subject of a painting by artist Basil Hallward. Basil is impressed by Dorian's beauty and becomes infatuated with him, believing his beauty is responsible for a new mode in his art. Dorian meets Lord Henry Wotton, a friend of Basil's, and becomes enthralled by Lord Henry's world view. Espousing a new hedonism, Lord Henry suggests the only things worth pursuing in life are beauty and fulfillment of the senses. Realizing that one day his beauty will fade, Dorian expresses his desire to sell his soul to ensure the portrait Basil has painted would age rather than himself. Dorian's wish is fulfilled, plunging him into debauched acts. The portrait serves as a reminder of the effect each act has upon his soul, with each sin displayed as a disfigurement of his form, or through a sign of aging. This reading uses the 20-chapter 1891 version of Wilde's novel. (Summary by Wikipedia)
This is a no rights reserved audio book read by volunteers from librivox.org. Librivox uses public domain text so their works are completely legal. They work closely with Project Gutenberg to provide great literature to the world for free. Many additional electronic books can be found at gutenberg.org. Gutenberg books are offered in a vanilla text format.</description>
<category>Audio Books;2</category>
<guid>http://www.clearbits.net/torrents/1869-the-picture-of-dorian-gray-by-oscar-wilde---a-librivox-audio-book</guid>
<pubDate>Sun, 06 Nov 2011 03:38:50 +0000</pubDate>
<enclosure type="application/x-bittorrent" length="273678336" url="http://www.clearbits.net/get/1869-the-picture-of-dorian-gray-by-oscar-wilde---a-librivox-audio-book.torrent"/>
<media:thumbnail url="http://www.clearbits.net/upload/image/2730.jpg?type=thumb"/>
</item>
<item>
<title>Peace On Earth, Good-Will To Dogs by Eleanor Hallowell Abbott - A Librivox Audio Book</title>
<link>http://www.clearbits.net/torrents/1868-peace-on-earth-good-will-to-dogs-by-eleanor-hallowell-abbott---a-librivox-audio-book</link>
<description>&quot;If you don't like Christmas stories, don't read this one!
And if you don't like dogs I don't know just what to advise you to do!
For I warn you perfectly frankly that I am distinctly pro-dog and distinctly pro-Christmas, and would like to bring to this little story whatever whiff of fir-balsam I can cajole from the make-believe forest in my typewriter, and every glitter of tinsel, smudge of toy candle, crackle of wrapping paper, that my particular brand of brain and ink can conjure up on a single keyboard! And very large-sized dogs shall romp through every page! And the mercury shiver perpetually in the vicinity of zero! And every foot of earth be crusty-brown and bare with no white snow at all till the very last moment when you'd just about given up hope! And all the heart of the story is very,-oh very young!
This is a no rights reserved audio book read by volunteers from librivox.org. Librivox uses public domain text so their works are completely legal. They work closely with Project Gutenberg to provide great literature to the world for free. Many additional electronic books can be found at gutenberg.org. Gutenberg books are offered in a vanilla text format.</description>
<category>Audio Books;2</category>
<guid>http://www.clearbits.net/torrents/1868-peace-on-earth-good-will-to-dogs-by-eleanor-hallowell-abbott---a-librivox-audio-book</guid>
<pubDate>Sat, 05 Nov 2011 21:51:49 +0000</pubDate>
<enclosure type="application/x-bittorrent" length="54525952" url="http://www.clearbits.net/get/1868-peace-on-earth-good-will-to-dogs-by-eleanor-hallowell-abbott---a-librivox-audio-book.torrent"/>
<media:thumbnail url="http://www.clearbits.net/upload/image/2729.jpg?type=thumb"/>
</item>
<item>
<title>A Christmas Carol - A Ghost Story of Christmas, by Charles Dickens - A Librivox Audio Book</title>
<link>http://www.clearbits.net/torrents/1867-a-christmas-carol---a-ghost-story-of-christmas-by-charles-dickens---a-librivox-audio-book</link>
<description>A Christmas Carol (full title: A Christmas Carol in Prose, Being a Ghost Story of Christmas) is a Victorian morality tale of an old and bitter miser, Ebenezer Scrooge, who undergoes a profound experience of redemption over the course of one evening. (Wikipedia)
This is a no rights reserved audio book read by volunteers from librivox.org. Librivox uses public domain text so their works are completely legal. They work closely with Project Gutenberg to provide great literature to the world for free. Many additional electronic books can be found at gutenberg.org. Gutenberg books are offered in a vanilla text format.</description>
<category>Audio Books;2</category>
<guid>http://www.clearbits.net/torrents/1867-a-christmas-carol---a-ghost-story-of-christmas-by-charles-dickens---a-librivox-audio-book</guid>
<pubDate>Sat, 05 Nov 2011 19:26:00 +0000</pubDate>
<enclosure type="application/x-bittorrent" length="77594624" url="http://www.clearbits.net/get/1867-a-christmas-carol---a-ghost-story-of-christmas-by-charles-dickens---a-librivox-audio-book.torrent"/>
<media:thumbnail url="http://www.clearbits.net/upload/image/2728.jpg?type=thumb"/>
</item>
<item>
<title>Mons Jacet - Endpieces</title>
<link>http://www.clearbits.net/torrents/1866-mons-jacet---endpieces</link>
<description>Double album of experimental laidback electronic ambient exploring different genres and moods from Lithuanian project Mons Jacet.</description>
<category>Netlabel Music;7</category>
<guid>http://www.clearbits.net/torrents/1866-mons-jacet---endpieces</guid>
<pubDate>Fri, 04 Nov 2011 07:10:07 +0000</pubDate>
<enclosure type="application/x-bittorrent" length="218103808" url="http://www.clearbits.net/get/1866-mons-jacet---endpieces.torrent"/>
<media:thumbnail url="http://www.clearbits.net/upload/image/2726.jpg?type=thumb"/>
</item>
<item>
<title>Pathagar - SheevaPlug edition v0.01</title>
<link>http://www.clearbits.net/torrents/1865-pathagar---sheevaplug-edition-v001</link>
<description>
This image is a ready-to-go image that can be bitcopied using dd to a 2GB or greater USB stick, and plugged into a off-the-shelf SheevaPlug to run a Pathagar Book Server. &lt;/p&gt;
dd if=pathagar-sheevaplug-0.01.img of=/dev/sdb &lt;/p&gt;
where sdb is your USB Stick. This process will create a boot partition, a root partition and a swap partition on the USB Stick.&lt;/p&gt;
The image is a Debian Squeeze image for ARM with Apache, sqlite, python, and python-django (Pathagar is written atop python-django). The image has two accounts:&lt;/p&gt;&lt;ul&gt;&lt;li&gt; root (password is password. Change it ASAP!)&lt;/li&gt;&lt;li&gt; bookserver (password is password. Change it ASAP!)&lt;/li&gt;&lt;/ul&gt;
Pathagar runs in the bookserver account and the code sits at /home/bookserver/pathagar. The code we've used for this iteration is git'able from https://github.com/manuq/pathagar&lt;/p&gt;
The image runs a dhcp client, so you'll have to get clever to figure out the IP it gets from your DHCP server. Once running, you can find the book server interface at &lt;youripaddress&gt; running at port 80. To administer Pathagar, go to &lt;youripaddress&gt;/admin and use the account &quot;curator&quot; with password &quot;password&quot; (change it ASAP!) to administer the account.&lt;/youripaddress&gt;&lt;/youripaddress&gt;&lt;/p&gt;</description>
<category>Other;10</category>
<guid>http://www.clearbits.net/torrents/1865-pathagar---sheevaplug-edition-v001</guid>
<pubDate>Thu, 27 Oct 2011 21:22:32 +0000</pubDate>
<enclosure type="application/x-bittorrent" length="2031091712" url="http://www.clearbits.net/get/1865-pathagar---sheevaplug-edition-v001.torrent"/>
<media:thumbnail url="http://www.clearbits.net/upload/image/2722.jpg?type=thumb"/>
</item>
<item>
<title>Tone_-_Small_Arm_of_Sea_International_edition_2009_PonyRec-Uhrlaut_mp3_album_electronica_alternative</title>
<link>http://www.clearbits.net/torrents/1864-tone_-_small_arm_of_sea_international_edition_2009_ponyrec-uhrlaut_mp3_album_electronica_alternative</link>
<description>With her abstract beats, unique voice and hypnotizing lyrics, the female singer, musician and producer Tone is renowned for her both forceful and frail expressions in experimental electronica.On her debut album she shows her great versatility ranging from uplifting vigorous outlets of energy to obscure, melancholic moods. An album released in a new audiovisual format - with an invitation to copy and share freely at no charge!Musically, Tone creates a remarkable audiovisual realm where her light and spellbinding voice adds to a bedrock of crunchy break beats, abstract compositional structures and catchy melodies. Not being a typical songwriter in terms of clinging to the usage of the traditionalstructure of verses and choruses, Tone relies on improvisation and creative exploration in the creation of her unpredictable musical landscapes - while adding daunting, yet compelling lyrics - and thereby drawing listeners into her musical and atmospheric universe of thoughts, sounds and a myriad of emotional expressions.This is the international version of the album, released by PonyRec in 2009.The original album (same content) was released by Uhrlaut/Urlyd Records in 2008.</description>
<category>Music;6</category>
<guid>http://www.clearbits.net/torrents/1864-tone_-_small_arm_of_sea_international_edition_2009_ponyrec-uhrlaut_mp3_album_electronica_alternative</guid>
<pubDate>Tue, 25 Oct 2011 09:02:20 +0000</pubDate>
<enclosure type="application/x-bittorrent" length="50331648" url="http://www.clearbits.net/get/1864-tone_-_small_arm_of_sea_international_edition_2009_ponyrec-uhrlaut_mp3_album_electronica_alternative.torrent"/>
</item>
<item>
<title>Kiloton_-_Language_Lost_2010_Uhrlaut_mp3_album_electronica_alternative</title>
<link>http://www.clearbits.net/torrents/1863-kiloton_-_language_lost_2010_uhrlaut_mp3_album_electronica_alternative</link>
<description>In a small apartment on the northern shores of Denmark sits electronica-artist Kiloton. Surrounded by computers, sound modules and various electronics he concentrated leans over a small short wave receiver.Distorted fractions of radio signals and static from all over the globe resonate into the room from the little box and mix with deep electronic reverberations from Kiloton's own sound systems. A sound with distinct reference to the instrumental dub-music of Jamaica, but in a more brisk Scandinavian version, which in interplay with the crackling sound fragments from the radio receiver creates an emotional expression that communicates without words. An almost lost language - which is now released as an album.For over two years Kiloton have elegantly recorded, edited, manipulated, distorted and modulated the crackling - and globally originating - short wave sound samples to form pieces in the complex, melodic and challenging puzzle that is his musical creativity. Having produced and performed for several years as well as contributed to several releases both domestically and abroad, Kiloton aka. Mads Weitling has now finally releases his solo-debut 'Language Lost', which hit the street on Friday, August 27 2010.An abstract, wordless and dark, yet dreamy album that carries a distinct nordic tone. Characterized by sharp, abrupt rhythms under deep, smouldering and crackling dubscapes, Kiloton has developed an almost cinematic sound that leads its listener through changing moods; beatiful and sincere as well as melancholic and thoughtful.</description>
<category>Music;6</category>
<guid>http://www.clearbits.net/torrents/1863-kiloton_-_language_lost_2010_uhrlaut_mp3_album_electronica_alternative</guid>
<pubDate>Tue, 25 Oct 2011 08:26:14 +0000</pubDate>
<enclosure type="application/x-bittorrent" length="57671680" url="http://www.clearbits.net/get/1863-kiloton_-_language_lost_2010_uhrlaut_mp3_album_electronica_alternative.torrent"/>
</item>
<item>
<title>Tone_Small_Arm_of_Sea_2011_Uhrlaut_mp3_album_electronica_alternative</title>
<link>http://www.clearbits.net/torrents/1862-tone_small_arm_of_sea_2011_uhrlaut_mp3_album_electronica_alternative</link>
<description>With her abstract beats, unique voice and hypnotizing lyrics, the female singer, musician and producer Tone is renowned for her both forceful and frail expressions in experimental electronica.On her debut album she shows her great versatility ranging from uplifting vigorous outlets of energy to obscure, melancholic moods. An album released in a new audiovisual format - with an invitation to copy and share freely at no charge!Musically, Tone creates a remarkable audiovisual realm where her light and spellbinding voice adds to a bedrock of crunchy break beats, abstract compositional structures and catchy melodies. Not being a typical songwriter in terms of clinging to the usage of the traditionalstructure of verses and choruses, Tone relies on improvisation and creative exploration in the creation of her unpredictable musical landscapes - while adding daunting, yet compelling lyrics - and thereby drawing listeners into her musical and atmospheric universe of thoughts, sounds and a myriad of emotional expressions.</description>
<category>Music;6</category>
<guid>http://www.clearbits.net/torrents/1862-tone_small_arm_of_sea_2011_uhrlaut_mp3_album_electronica_alternative</guid>
<pubDate>Tue, 25 Oct 2011 08:05:50 +0000</pubDate>
<enclosure type="application/x-bittorrent" length="46137344" url="http://www.clearbits.net/get/1862-tone_small_arm_of_sea_2011_uhrlaut_mp3_album_electronica_alternative.torrent"/>
</item>
<item>
<title>A Thousand Bayonets</title>
<link>http://www.clearbits.net/torrents/1860-a-thousand-bayonets</link>
<description>Upon returning from Afghanistan, journalist John Webster discovers a gang war in his backyard. Now he must find a way to survive in this Canadian warzone-or die in the crossfire. John Webster has seen the terrible things human beings can do. He's an experienced investigative journalist, recently returned from the war in Afghanistan. John saw hell over there; he looked death straight in the face. He is glad to be back to the normalcy of his Canadian home-that is, until he realizes there is a war brewing in his own backyard, and &quot;peace&quot; is a word no longer spoken. John gets caught up in the battle between two of the most powerful and murderous criminal gangs in the city. Using what he learned on the foreign battlefields, he stays alive, despite the price on his head. The only way to save his own life is to find the man responsible for the brutal neighborhood bloodshed. When the police slap a subpoena on him, though, John finds his only solace on the streets. Suddenly, John is back in a warzone, fighting for his life. Will he be able to stop the bloodthirsty crime lords? The flashbacks to Afghanistan threaten to pull John into darkness. Soon, the past and present collide, and he can't tell which way is up or down. The need for redemption may be stronger than the need for survival as John Webster finds himself on his most dangerous assignment yet. Visit www.joelmarkharris.com for more details. </description>
<category>Books;3</category>
<guid>http://www.clearbits.net/torrents/1860-a-thousand-bayonets</guid>
<pubDate>Sun, 23 Oct 2011 14:12:56 +0000</pubDate>
<enclosure type="application/x-bittorrent" length="4194304" url="http://www.clearbits.net/get/1860-a-thousand-bayonets.torrent"/>
<media:thumbnail url="http://www.clearbits.net/upload/image/2721.jpg?type=thumb"/>
</item>
<item>
<title>Atomik Buton v2</title>
<link>http://www.clearbits.net/torrents/1858-atomik-buton-v2</link>
<description>nowa wersja rzezby dzwiekowej Atomik Buton</description>
<category>Music;6</category>
<guid>http://www.clearbits.net/torrents/1858-atomik-buton-v2</guid>
<pubDate>Sat, 22 Oct 2011 08:39:05 +0000</pubDate>
<enclosure type="application/x-bittorrent" length="7340032" url="http://www.clearbits.net/get/1858-atomik-buton-v2.torrent"/>
</item>
<item>
<title>Amazing Photography by Steve Coleman - Windows 7 Theme</title>
<link>http://www.clearbits.net/torrents/1857-amazing-photography-by-steve-coleman---windows-7-theme</link>
<description>The theme is distributed in three files, for the most common aspect ratios and resolutions:
4:3 Aspect Ratio Resolutions: 1600x1200, 1280x960, 1152x864, 1024x768.
16:9 Aspect Ratio Resolutions: 1920x1080, 1600x900, 1366x768, 1360x768.
16:10 Aspect Ratio Resolutions: 1920x1200, 1680x1050, 1440x900, 1280x800.
&lt;strong&gt;Copyright: Steve Coleman. If you want to use the pictures included in this theme otherwise than as you desktop backgrounds, you need written permission from their author.&lt;/strong&gt;</description>
<category>Other;10</category>
<guid>http://www.clearbits.net/torrents/1857-amazing-photography-by-steve-coleman---windows-7-theme</guid>
<pubDate>Fri, 21 Oct 2011 12:34:53 +0000</pubDate>
<enclosure type="application/x-bittorrent" length="84934656" url="http://www.clearbits.net/get/1857-amazing-photography-by-steve-coleman---windows-7-theme.torrent"/>
<media:thumbnail url="http://www.clearbits.net/upload/image/2792.jpg?type=thumb"/>
</item>
</channel>
</rss>

View File

@ -1,495 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE torrent PUBLIC "-//bitTorrent//DTD torrent 0.1//EN" "http://xmlns.ezrss.it/0.1/dtd/">
<rss version="2.0">
<channel>
<title>ezRSS - Search Results</title>
<ttl>15</ttl>
<link>http://ezrss.it/search/index.php?show_name=daily+show&amp;date=&amp;quality=&amp;release_group=&amp;mode=rss</link>
<image>
<title>ezRSS - Search Results</title>
<url>http://ezrss.it/images/ezrssit.png</url>
<link>http://ezrss.it/search/index.php?show_name=daily+show&amp;date=&amp;quality=&amp;release_group=&amp;mode=rss</link>
</image>
<description>Custom RSS feed based off search filters.</description>
<item>
<title><![CDATA[The Daily Show 2012-02-16 [HDTV - LMAO]]]></title>
<link>http://torrent.zoink.it/The.Daily.Show.2012.02.16.(HDTV-LMAO)[VTV].torrent</link>
<category domain="http://eztv.it/shows/67/the-daily-show/"><![CDATA[TV Show / The Daily Show]]></category>
<pubDate>Thu, 16 Feb 2012 22:54:01 -0500</pubDate>
<description><![CDATA[Show Name: The Daily Show; Episode Title: N/A; Episode Date: 2012-02-16]]></description>
<enclosure url="http://torrent.zoink.it/The.Daily.Show.2012.02.16.(HDTV-LMAO)[VTV].torrent" length="183442338" type="application/x-bittorrent" />
<comments>http://eztv.it/forum/discuss/33253/</comments>
<guid>http://eztv.it/ep/33253/the-daily-show-2012-02-16-hdtv-lmao/</guid>
<torrent xmlns="http://xmlns.ezrss.it/0.1/">
<fileName><![CDATA[The.Daily.Show.2012.02.16.(HDTV-LMAO)[VTV].torrent]]></fileName>
<contentLength>183442338</contentLength>
<infoHash>1F270E0BCC87575748362788CD5775EFB59C8E1F</infoHash>
<magnetURI><![CDATA[magnet:?xt=urn:btih:1F270E0BCC87575748362788CD5775EFB59C8E1F&dn=The.Daily.Show.2012.02.16.(HDTV-LMAO)]]></magnetURI>
</torrent>
</item>
<item>
<title><![CDATA[The Daily Show 2012-02-15 [HDTV - FQM]]]></title>
<link>http://torrent.zoink.it/The.Daily.Show.2012.02.15.(HDTV-FQM)[VTV].torrent</link>
<category domain="http://eztv.it/shows/67/the-daily-show/"><![CDATA[TV Show / The Daily Show]]></category>
<pubDate>Wed, 15 Feb 2012 23:13:45 -0500</pubDate>
<description><![CDATA[Show Name: The Daily Show; Episode Title: N/A; Episode Date: 2012-02-15]]></description>
<enclosure url="http://torrent.zoink.it/The.Daily.Show.2012.02.15.(HDTV-FQM)[VTV].torrent" length="183790660" type="application/x-bittorrent" />
<comments>http://eztv.it/forum/discuss/33226/</comments>
<guid>http://eztv.it/ep/33226/the-daily-show-2012-02-15-hdtv-fqm/</guid>
<torrent xmlns="http://xmlns.ezrss.it/0.1/">
<fileName><![CDATA[The.Daily.Show.2012.02.15.(HDTV-FQM)[VTV].torrent]]></fileName>
<contentLength>183790660</contentLength>
<infoHash>94200845B30F888DD0DFF518F7AA52363A299EF9</infoHash>
<magnetURI><![CDATA[magnet:?xt=urn:btih:94200845B30F888DD0DFF518F7AA52363A299EF9&dn=The.Daily.Show.2012.02.15.(HDTV-FQM)]]></magnetURI>
</torrent>
</item>
<item>
<title><![CDATA[The Daily Show 2012-02-14 [HDTV - LMAO]]]></title>
<link>http://torrent.zoink.it/The.Daily.Show.2012.02.14.(HDTV-LMAO)[VTV].torrent</link>
<category domain="http://eztv.it/shows/67/the-daily-show/"><![CDATA[TV Show / The Daily Show]]></category>
<pubDate>Wed, 15 Feb 2012 05:47:41 -0500</pubDate>
<description><![CDATA[Show Name: The Daily Show; Episode Title: N/A; Episode Date: 2012-02-14]]></description>
<enclosure url="http://torrent.zoink.it/The.Daily.Show.2012.02.14.(HDTV-LMAO)[VTV].torrent" length="183465776" type="application/x-bittorrent" />
<comments>http://eztv.it/forum/discuss/33199/</comments>
<guid>http://eztv.it/ep/33199/the-daily-show-2012-02-14-hdtv-lmao/</guid>
<torrent xmlns="http://xmlns.ezrss.it/0.1/">
<fileName><![CDATA[The.Daily.Show.2012.02.14.(HDTV-LMAO)[VTV].torrent]]></fileName>
<contentLength>183465776</contentLength>
<infoHash>3E0F5BA0FBDFEDFEB638454DEC247D319C14CB13</infoHash>
<magnetURI><![CDATA[magnet:?xt=urn:btih:3E0F5BA0FBDFEDFEB638454DEC247D319C14CB13&dn=The.Daily.Show.2012.02.14.(HDTV-LMAO)]]></magnetURI>
</torrent>
</item>
<item>
<title><![CDATA[The Daily Show 2012-02-13 [HDTV - LMAO]]]></title>
<link>http://torrent.zoink.it/The.Daily.Show.2012.02.13.(HDTV-LMAO)[VTV].torrent</link>
<category domain="http://eztv.it/shows/67/the-daily-show/"><![CDATA[TV Show / The Daily Show]]></category>
<pubDate>Mon, 13 Feb 2012 23:00:34 -0500</pubDate>
<description><![CDATA[Show Name: The Daily Show; Episode Title: N/A; Episode Date: 2012-02-13]]></description>
<enclosure url="http://torrent.zoink.it/The.Daily.Show.2012.02.13.(HDTV-LMAO)[VTV].torrent" length="183368772" type="application/x-bittorrent" />
<comments>http://eztv.it/forum/discuss/33167/</comments>
<guid>http://eztv.it/ep/33167/the-daily-show-2012-02-13-hdtv-lmao/</guid>
<torrent xmlns="http://xmlns.ezrss.it/0.1/">
<fileName><![CDATA[The.Daily.Show.2012.02.13.(HDTV-LMAO)[VTV].torrent]]></fileName>
<contentLength>183368772</contentLength>
<infoHash>359CA9925C9F909960515624A3683BA3BE67433E</infoHash>
<magnetURI><![CDATA[magnet:?xt=urn:btih:359CA9925C9F909960515624A3683BA3BE67433E&dn=The.Daily.Show.2012.02.13.(HDTV-LMAO)]]></magnetURI>
</torrent>
</item>
<item>
<title><![CDATA[The Daily Show 2012-02-02 [HDTV - FQM]]]></title>
<link>http://torrent.zoink.it/The.Daily.Show.2012.02.02.(HDTV-FQM)[VTV].torrent</link>
<category domain="http://eztv.it/shows/67/the-daily-show/"><![CDATA[TV Show / The Daily Show]]></category>
<pubDate>Thu, 02 Feb 2012 23:00:19 -0500</pubDate>
<description><![CDATA[Show Name: The Daily Show; Episode Title: N/A; Episode Date: 2012-02-02]]></description>
<enclosure url="http://torrent.zoink.it/The.Daily.Show.2012.02.02.(HDTV-FQM)[VTV].torrent" length="183596934" type="application/x-bittorrent" />
<comments>http://eztv.it/forum/discuss/32893/</comments>
<guid>http://eztv.it/ep/32893/the-daily-show-2012-02-02-hdtv-fqm/</guid>
<torrent xmlns="http://xmlns.ezrss.it/0.1/">
<fileName><![CDATA[The.Daily.Show.2012.02.02.(HDTV-FQM)[VTV].torrent]]></fileName>
<contentLength>183596934</contentLength>
<infoHash>DD3C4944680D8482C55D4ED6B81F5FDF54C99495</infoHash>
<magnetURI><![CDATA[magnet:?xt=urn:btih:DD3C4944680D8482C55D4ED6B81F5FDF54C99495&dn=The.Daily.Show.2012.02.02.(HDTV-FQM)]]></magnetURI>
</torrent>
</item>
<item>
<title><![CDATA[The Daily Show 2012-02-01 [HDTV - FQM]]]></title>
<link>http://torrent.zoink.it/The.Daily.Show.2012.02.01.(HDTV-FQM)[VTV].torrent</link>
<category domain="http://eztv.it/shows/67/the-daily-show/"><![CDATA[TV Show / The Daily Show]]></category>
<pubDate>Wed, 01 Feb 2012 23:33:05 -0500</pubDate>
<description><![CDATA[Show Name: The Daily Show; Episode Title: N/A; Episode Date: 2012-02-01]]></description>
<enclosure url="http://torrent.zoink.it/The.Daily.Show.2012.02.01.(HDTV-FQM)[VTV].torrent" length="183822572" type="application/x-bittorrent" />
<comments>http://eztv.it/forum/discuss/32865/</comments>
<guid>http://eztv.it/ep/32865/the-daily-show-2012-02-01-hdtv-fqm/</guid>
<torrent xmlns="http://xmlns.ezrss.it/0.1/">
<fileName><![CDATA[The.Daily.Show.2012.02.01.(HDTV-FQM)[VTV].torrent]]></fileName>
<contentLength>183822572</contentLength>
<infoHash>11B044DCE5D57E789EF52DEB072CE44F8393C33F</infoHash>
<magnetURI><![CDATA[magnet:?xt=urn:btih:11B044DCE5D57E789EF52DEB072CE44F8393C33F&dn=The.Daily.Show.2012.02.01.(HDTV-FQM)]]></magnetURI>
</torrent>
</item>
<item>
<title><![CDATA[The Daily Show 2012-01-31 [HDTV - FQM]]]></title>
<link>http://torrent.zoink.it/The.Daily.Show.2012.01.31.(HDTV-FQM)[VTV].torrent</link>
<category domain="http://eztv.it/shows/67/the-daily-show/"><![CDATA[TV Show / The Daily Show]]></category>
<pubDate>Wed, 01 Feb 2012 03:26:52 -0500</pubDate>
<description><![CDATA[Show Name: The Daily Show; Episode Title: N/A; Episode Date: 2012-01-31]]></description>
<enclosure url="http://torrent.zoink.it/The.Daily.Show.2012.01.31.(HDTV-FQM)[VTV].torrent" length="183766842" type="application/x-bittorrent" />
<comments>http://eztv.it/forum/discuss/32848/</comments>
<guid>http://eztv.it/ep/32848/the-daily-show-2012-01-31-hdtv-fqm/</guid>
<torrent xmlns="http://xmlns.ezrss.it/0.1/">
<fileName><![CDATA[The.Daily.Show.2012.01.31.(HDTV-FQM)[VTV].torrent]]></fileName>
<contentLength>183766842</contentLength>
<infoHash>2EE6F1DE03D1867E3CD787014407495B27966FC2</infoHash>
<magnetURI><![CDATA[magnet:?xt=urn:btih:2EE6F1DE03D1867E3CD787014407495B27966FC2&dn=The.Daily.Show.2012.01.31.(HDTV-FQM)]]></magnetURI>
</torrent>
</item>
<item>
<title><![CDATA[The Daily Show 2012-01-30 [HDTV - FQM]]]></title>
<link>http://torrent.zoink.it/The.Daily.Show.2012.01.30.(HDTV-FQM)[VTV].torrent</link>
<category domain="http://eztv.it/shows/67/the-daily-show/"><![CDATA[TV Show / The Daily Show]]></category>
<pubDate>Mon, 30 Jan 2012 22:57:47 -0500</pubDate>
<description><![CDATA[Show Name: The Daily Show; Episode Title: N/A; Episode Date: 2012-01-30]]></description>
<enclosure url="http://torrent.zoink.it/The.Daily.Show.2012.01.30.(HDTV-FQM)[VTV].torrent" length="183454500" type="application/x-bittorrent" />
<comments>http://eztv.it/forum/discuss/32816/</comments>
<guid>http://eztv.it/ep/32816/the-daily-show-2012-01-30-hdtv-fqm/</guid>
<torrent xmlns="http://xmlns.ezrss.it/0.1/">
<fileName><![CDATA[The.Daily.Show.2012.01.30.(HDTV-FQM)[VTV].torrent]]></fileName>
<contentLength>183454500</contentLength>
<infoHash>CCA7A03A46466A6482E1AA1D64B8E3DCE143B416</infoHash>
<magnetURI><![CDATA[magnet:?xt=urn:btih:CCA7A03A46466A6482E1AA1D64B8E3DCE143B416&dn=The.Daily.Show.2012.01.30.(HDTV-FQM)]]></magnetURI>
</torrent>
</item>
<item>
<title><![CDATA[The Daily Show 2012-01-26 [HDTV - FQM]]]></title>
<link>http://torrent.zoink.it/The.Daily.Show.2012.01.26.(HDTV-FQM)[VTV].torrent</link>
<category domain="http://eztv.it/shows/67/the-daily-show/"><![CDATA[TV Show / The Daily Show]]></category>
<pubDate>Fri, 27 Jan 2012 00:27:55 -0500</pubDate>
<description><![CDATA[Show Name: The Daily Show; Episode Title: N/A; Episode Date: 2012-01-26]]></description>
<enclosure url="http://torrent.zoink.it/The.Daily.Show.2012.01.26.(HDTV-FQM)[VTV].torrent" length="183768000" type="application/x-bittorrent" />
<comments>http://eztv.it/forum/discuss/32730/</comments>
<guid>http://eztv.it/ep/32730/the-daily-show-2012-01-26-hdtv-fqm/</guid>
<torrent xmlns="http://xmlns.ezrss.it/0.1/">
<fileName><![CDATA[The.Daily.Show.2012.01.26.(HDTV-FQM)[VTV].torrent]]></fileName>
<contentLength>183768000</contentLength>
<infoHash>1EB38A1120D6071656F9BF919CEB5194E2EBED0B</infoHash>
<magnetURI><![CDATA[magnet:?xt=urn:btih:1EB38A1120D6071656F9BF919CEB5194E2EBED0B&dn=The.Daily.Show.2012.01.26.(HDTV-FQM)]]></magnetURI>
</torrent>
</item>
<item>
<title><![CDATA[The Daily Show 2012-01-24 [HDTV - FQM]]]></title>
<link>http://torrent.zoink.it/The.Daily.Show.2012.01.24.(HDTV-F.QM)[VTV].torrent</link>
<category domain="http://eztv.it/shows/67/the-daily-show/"><![CDATA[TV Show / The Daily Show]]></category>
<pubDate>Wed, 25 Jan 2012 05:32:35 -0500</pubDate>
<description><![CDATA[Show Name: The Daily Show; Episode Title: N/A; Episode Date: 2012-01-24]]></description>
<enclosure url="http://torrent.zoink.it/The.Daily.Show.2012.01.24.(HDTV-F.QM)[VTV].torrent" length="183380054" type="application/x-bittorrent" />
<comments>http://eztv.it/forum/discuss/32686/</comments>
<guid>http://eztv.it/ep/32686/the-daily-show-2012-01-24-hdtv-f-qm/</guid>
<torrent xmlns="http://xmlns.ezrss.it/0.1/">
<fileName><![CDATA[The.Daily.Show.2012.01.24.(HDTV-F.QM)[VTV].torrent]]></fileName>
<contentLength>183380054</contentLength>
<infoHash>C09C23F16673B4141FA23815B92C05331336FE46</infoHash>
<magnetURI><![CDATA[magnet:?xt=urn:btih:C09C23F16673B4141FA23815B92C05331336FE46&dn=The.Daily.Show.2012.01.24.(HDTV-F.QM)]]></magnetURI>
</torrent>
</item>
<item>
<title><![CDATA[The Daily Show 2012-01-23 [HDTV - FQM]]]></title>
<link>http://torrent.zoink.it/The.Daily.Show.2012.01.23.(HDTV-FQM)[VTV].torrent</link>
<category domain="http://eztv.it/shows/67/the-daily-show/"><![CDATA[TV Show / The Daily Show]]></category>
<pubDate>Mon, 23 Jan 2012 23:16:14 -0500</pubDate>
<description><![CDATA[Show Name: The Daily Show; Episode Title: N/A; Episode Date: 2012-01-23]]></description>
<enclosure url="http://torrent.zoink.it/The.Daily.Show.2012.01.23.(HDTV-FQM)[VTV].torrent" length="183745332" type="application/x-bittorrent" />
<comments>http://eztv.it/forum/discuss/32665/</comments>
<guid>http://eztv.it/ep/32665/the-daily-show-2012-01-23-hdtv-fqm/</guid>
<torrent xmlns="http://xmlns.ezrss.it/0.1/">
<fileName><![CDATA[The.Daily.Show.2012.01.23.(HDTV-FQM)[VTV].torrent]]></fileName>
<contentLength>183745332</contentLength>
<infoHash>7EA19BB02266EFCD74FA3B35DE6EC938DF977A06</infoHash>
<magnetURI><![CDATA[magnet:?xt=urn:btih:7EA19BB02266EFCD74FA3B35DE6EC938DF977A06&dn=The.Daily.Show.2012.01.23.(HDTV-FQM)]]></magnetURI>
</torrent>
</item>
<item>
<title><![CDATA[The Daily Show 2012-01-19 [HDTV - FQM]]]></title>
<link>http://torrent.zoink.it/The.Daily.Show.2012.01.19.(HDTV-FQM)[VTV].torrent</link>
<category domain="http://eztv.it/shows/67/the-daily-show/"><![CDATA[TV Show / The Daily Show]]></category>
<pubDate>Thu, 19 Jan 2012 23:24:16 -0500</pubDate>
<description><![CDATA[Show Name: The Daily Show; Episode Title: N/A; Episode Date: 2012-01-19]]></description>
<enclosure url="http://torrent.zoink.it/The.Daily.Show.2012.01.19.(HDTV-FQM)[VTV].torrent" length="183761888" type="application/x-bittorrent" />
<comments>http://eztv.it/forum/discuss/32583/</comments>
<guid>http://eztv.it/ep/32583/the-daily-show-2012-01-19-hdtv-fqm/</guid>
<torrent xmlns="http://xmlns.ezrss.it/0.1/">
<fileName><![CDATA[The.Daily.Show.2012.01.19.(HDTV-FQM)[VTV].torrent]]></fileName>
<contentLength>183761888</contentLength>
<infoHash>4EAAC160B43E6017D06016A97AC90776056EEA7E</infoHash>
<magnetURI><![CDATA[magnet:?xt=urn:btih:4EAAC160B43E6017D06016A97AC90776056EEA7E&dn=The.Daily.Show.2012.01.19.(HDTV-FQM)]]></magnetURI>
</torrent>
</item>
<item>
<title><![CDATA[The Daily Show 2012-01-18 [HDTV - FQM]]]></title>
<link>http://torrent.zoink.it/The.Daily.Show.2012.01.18.(HDTV-FQM)[VTV].torrent</link>
<category domain="http://eztv.it/shows/67/the-daily-show/"><![CDATA[TV Show / The Daily Show]]></category>
<pubDate>Wed, 18 Jan 2012 23:17:33 -0500</pubDate>
<description><![CDATA[Show Name: The Daily Show; Episode Title: N/A; Episode Date: 2012-01-18]]></description>
<enclosure url="http://torrent.zoink.it/The.Daily.Show.2012.01.18.(HDTV-FQM)[VTV].torrent" length="183774632" type="application/x-bittorrent" />
<comments>http://eztv.it/forum/discuss/32548/</comments>
<guid>http://eztv.it/ep/32548/the-daily-show-2012-01-18-hdtv-fqm/</guid>
<torrent xmlns="http://xmlns.ezrss.it/0.1/">
<fileName><![CDATA[The.Daily.Show.2012.01.18.(HDTV-FQM)[VTV].torrent]]></fileName>
<contentLength>183774632</contentLength>
<infoHash>DE1273E23CDE05AD720E85844C4CA22C94547A3B</infoHash>
<magnetURI><![CDATA[magnet:?xt=urn:btih:DE1273E23CDE05AD720E85844C4CA22C94547A3B&dn=The.Daily.Show.2012.01.18.(HDTV-FQM)]]></magnetURI>
</torrent>
</item>
<item>
<title><![CDATA[The Daily Show 2012-01-17 [HDTV - FQM]]]></title>
<link>http://torrent.zoink.it/The.Daily.Show.2012.01.17.(HDTV-FQM)[VTV].torrent</link>
<category domain="http://eztv.it/shows/67/the-daily-show/"><![CDATA[TV Show / The Daily Show]]></category>
<pubDate>Tue, 17 Jan 2012 22:58:07 -0500</pubDate>
<description><![CDATA[Show Name: The Daily Show; Episode Title: N/A; Episode Date: 2012-01-17]]></description>
<enclosure url="http://torrent.zoink.it/The.Daily.Show.2012.01.17.(HDTV-FQM)[VTV].torrent" length="183371312" type="application/x-bittorrent" />
<comments>http://eztv.it/forum/discuss/32512/</comments>
<guid>http://eztv.it/ep/32512/the-daily-show-2012-01-17-hdtv-fqm/</guid>
<torrent xmlns="http://xmlns.ezrss.it/0.1/">
<fileName><![CDATA[The.Daily.Show.2012.01.17.(HDTV-FQM)[VTV].torrent]]></fileName>
<contentLength>183371312</contentLength>
<infoHash>33AD4A54A1B3CD2E755812A6919AC049122008D7</infoHash>
<magnetURI><![CDATA[magnet:?xt=urn:btih:33AD4A54A1B3CD2E755812A6919AC049122008D7&dn=The.Daily.Show.2012.01.17.(HDTV-FQM)]]></magnetURI>
</torrent>
</item>
<item>
<title><![CDATA[The Daily Show 2012-01-16 [HDTV - FQM]]]></title>
<link>http://torrent.zoink.it/The.Daily.Show.2012.01.16.(HDTV-FQM)[VTV].torrent</link>
<category domain="http://eztv.it/shows/67/the-daily-show/"><![CDATA[TV Show / The Daily Show]]></category>
<pubDate>Mon, 16 Jan 2012 22:56:30 -0500</pubDate>
<description><![CDATA[Show Name: The Daily Show; Episode Title: N/A; Episode Date: 2012-01-16]]></description>
<enclosure url="http://torrent.zoink.it/The.Daily.Show.2012.01.16.(HDTV-FQM)[VTV].torrent" length="183722888" type="application/x-bittorrent" />
<comments>http://eztv.it/forum/discuss/32484/</comments>
<guid>http://eztv.it/ep/32484/the-daily-show-2012-01-16-hdtv-fqm/</guid>
<torrent xmlns="http://xmlns.ezrss.it/0.1/">
<fileName><![CDATA[The.Daily.Show.2012.01.16.(HDTV-FQM)[VTV].torrent]]></fileName>
<contentLength>183722888</contentLength>
<infoHash>BF0683C2A18FED9D8C1A24664161DD3725359EA0</infoHash>
<magnetURI><![CDATA[magnet:?xt=urn:btih:BF0683C2A18FED9D8C1A24664161DD3725359EA0&dn=The.Daily.Show.2012.01.16.(HDTV-FQM)]]></magnetURI>
</torrent>
</item>
<item>
<title><![CDATA[The Daily Show 2012-01-12 [HDTV - FQM]]]></title>
<link>http://torrent.zoink.it/The.Daily.Show.2012.01.12.(HDTV-FQM)[VTV].torrent</link>
<category domain="http://eztv.it/shows/67/the-daily-show/"><![CDATA[TV Show / The Daily Show]]></category>
<pubDate>Thu, 12 Jan 2012 23:01:26 -0500</pubDate>
<description><![CDATA[Show Name: The Daily Show; Episode Title: N/A; Episode Date: 2012-01-12]]></description>
<enclosure url="http://torrent.zoink.it/The.Daily.Show.2012.01.12.(HDTV-FQM)[VTV].torrent" length="183403284" type="application/x-bittorrent" />
<comments>http://eztv.it/forum/discuss/32381/</comments>
<guid>http://eztv.it/ep/32381/the-daily-show-2012-01-12-hdtv-fqm/</guid>
<torrent xmlns="http://xmlns.ezrss.it/0.1/">
<fileName><![CDATA[The.Daily.Show.2012.01.12.(HDTV-FQM)[VTV].torrent]]></fileName>
<contentLength>183403284</contentLength>
<infoHash>E436508896DF5F7AAB5B3E2B30162150FF382F63</infoHash>
<magnetURI><![CDATA[magnet:?xt=urn:btih:E436508896DF5F7AAB5B3E2B30162150FF382F63&dn=The.Daily.Show.2012.01.12.(HDTV-FQM)]]></magnetURI>
</torrent>
</item>
<item>
<title><![CDATA[The Daily Show 2012-01-11 [HDTV - FQM]]]></title>
<link>http://torrent.zoink.it/The.Daily.Show.2012.01.11.(HDTV-FQM)[VTV].torrent</link>
<category domain="http://eztv.it/shows/67/the-daily-show/"><![CDATA[TV Show / The Daily Show]]></category>
<pubDate>Wed, 11 Jan 2012 23:12:32 -0500</pubDate>
<description><![CDATA[Show Name: The Daily Show; Episode Title: N/A; Episode Date: 2012-01-11]]></description>
<enclosure url="http://torrent.zoink.it/The.Daily.Show.2012.01.11.(HDTV-FQM)[VTV].torrent" length="183775414" type="application/x-bittorrent" />
<comments>http://eztv.it/forum/discuss/32346/</comments>
<guid>http://eztv.it/ep/32346/the-daily-show-2012-01-11-hdtv-fqm/</guid>
<torrent xmlns="http://xmlns.ezrss.it/0.1/">
<fileName><![CDATA[The.Daily.Show.2012.01.11.(HDTV-FQM)[VTV].torrent]]></fileName>
<contentLength>183775414</contentLength>
<infoHash>02EF9FBF0E588C1A6C1FE9D6F7EC0DA192BDDEFC</infoHash>
<magnetURI><![CDATA[magnet:?xt=urn:btih:02EF9FBF0E588C1A6C1FE9D6F7EC0DA192BDDEFC&dn=The.Daily.Show.2012.01.11.(HDTV-FQM)]]></magnetURI>
</torrent>
</item>
<item>
<title><![CDATA[The Daily Show 2012-01-10 [HDTV - FQM]]]></title>
<link>http://torrent.zoink.it/The.Daily.Show.2012.01.10.(HDTV-FQM)[VTV].torrent</link>
<category domain="http://eztv.it/shows/67/the-daily-show/"><![CDATA[TV Show / The Daily Show]]></category>
<pubDate>Tue, 10 Jan 2012 23:47:38 -0500</pubDate>
<description><![CDATA[Show Name: The Daily Show; Episode Title: N/A; Episode Date: 2012-01-10]]></description>
<enclosure url="http://torrent.zoink.it/The.Daily.Show.2012.01.10.(HDTV-FQM)[VTV].torrent" length="183452822" type="application/x-bittorrent" />
<comments>http://eztv.it/forum/discuss/32318/</comments>
<guid>http://eztv.it/ep/32318/the-daily-show-2012-01-10-hdtv-fqm/</guid>
<torrent xmlns="http://xmlns.ezrss.it/0.1/">
<fileName><![CDATA[The.Daily.Show.2012.01.10.(HDTV-FQM)[VTV].torrent]]></fileName>
<contentLength>183452822</contentLength>
<infoHash>8CB029029BC06A73030F45F129C48D0CF6EBC0A3</infoHash>
<magnetURI><![CDATA[magnet:?xt=urn:btih:8CB029029BC06A73030F45F129C48D0CF6EBC0A3&dn=The.Daily.Show.2012.01.10.(HDTV-FQM)]]></magnetURI>
</torrent>
</item>
<item>
<title><![CDATA[The Daily Show 2012-01-09 [HDTV - FQM]]]></title>
<link>http://torrent.zoink.it/The.Daily.Show.2012.01.09.(HDTV-FQM)[VTV].torrent</link>
<category domain="http://eztv.it/shows/67/the-daily-show/"><![CDATA[TV Show / The Daily Show]]></category>
<pubDate>Mon, 09 Jan 2012 22:47:39 -0500</pubDate>
<description><![CDATA[Show Name: The Daily Show; Episode Title: N/A; Episode Date: 2012-01-09]]></description>
<enclosure url="http://torrent.zoink.it/The.Daily.Show.2012.01.09.(HDTV-FQM)[VTV].torrent" length="183756882" type="application/x-bittorrent" />
<comments>http://eztv.it/forum/discuss/32290/</comments>
<guid>http://eztv.it/ep/32290/the-daily-show-2012-01-09-hdtv-fqm/</guid>
<torrent xmlns="http://xmlns.ezrss.it/0.1/">
<fileName><![CDATA[The.Daily.Show.2012.01.09.(HDTV-FQM)[VTV].torrent]]></fileName>
<contentLength>183756882</contentLength>
<infoHash>85E758C44EB0AD542A7B2434DC4D7C3ED2551965</infoHash>
<magnetURI><![CDATA[magnet:?xt=urn:btih:85E758C44EB0AD542A7B2434DC4D7C3ED2551965&dn=The.Daily.Show.2012.01.09.(HDTV-FQM)]]></magnetURI>
</torrent>
</item>
<item>
<title><![CDATA[The Daily Show 2012-01-05 [HDTV - FQM]]]></title>
<link>http://torrent.zoink.it/The.Daily.Show.2012.01.05.(HDTV-FQM)[VTV].torrent</link>
<category domain="http://eztv.it/shows/67/the-daily-show/"><![CDATA[TV Show / The Daily Show]]></category>
<pubDate>Thu, 05 Jan 2012 22:54:27 -0500</pubDate>
<description><![CDATA[Show Name: The Daily Show; Episode Title: N/A; Episode Date: 2012-01-05]]></description>
<enclosure url="http://torrent.zoink.it/The.Daily.Show.2012.01.05.(HDTV-FQM)[VTV].torrent" length="183773276" type="application/x-bittorrent" />
<comments>http://eztv.it/forum/discuss/32210/</comments>
<guid>http://eztv.it/ep/32210/the-daily-show-2012-01-05-hdtv-fqm/</guid>
<torrent xmlns="http://xmlns.ezrss.it/0.1/">
<fileName><![CDATA[The.Daily.Show.2012.01.05.(HDTV-FQM)[VTV].torrent]]></fileName>
<contentLength>183773276</contentLength>
<infoHash>B6331AE93524EF5ECA45FFB0CD9E344CD7186D8F</infoHash>
<magnetURI><![CDATA[magnet:?xt=urn:btih:B6331AE93524EF5ECA45FFB0CD9E344CD7186D8F&dn=The.Daily.Show.2012.01.05.(HDTV-FQM)]]></magnetURI>
</torrent>
</item>
<item>
<title><![CDATA[The Daily Show 2012-01-04 [HDTV - FQM]]]></title>
<link>http://torrent.zoink.it/The.Daily.Show.2012.01.04.(HDTV-FQM)[VTV].torrent</link>
<category domain="http://eztv.it/shows/67/the-daily-show/"><![CDATA[TV Show / The Daily Show]]></category>
<pubDate>Thu, 05 Jan 2012 01:34:53 -0500</pubDate>
<description><![CDATA[Show Name: The Daily Show; Episode Title: N/A; Episode Date: 2012-01-04]]></description>
<enclosure url="http://torrent.zoink.it/The.Daily.Show.2012.01.04.(HDTV-FQM)[VTV].torrent" length="183765188" type="application/x-bittorrent" />
<comments>http://eztv.it/forum/discuss/32183/</comments>
<guid>http://eztv.it/ep/32183/the-daily-show-2012-01-04-hdtv-fqm/</guid>
<torrent xmlns="http://xmlns.ezrss.it/0.1/">
<fileName><![CDATA[The.Daily.Show.2012.01.04.(HDTV-FQM)[VTV].torrent]]></fileName>
<contentLength>183765188</contentLength>
<infoHash>C6F7ECF1C6A065A4BFDC641092BDFEEDCCEA0CDA</infoHash>
<magnetURI><![CDATA[magnet:?xt=urn:btih:C6F7ECF1C6A065A4BFDC641092BDFEEDCCEA0CDA&dn=The.Daily.Show.2012.01.04.(HDTV-FQM)]]></magnetURI>
</torrent>
</item>
<item>
<title><![CDATA[The Daily Show 2012-01-03 [HDTV - FQM]]]></title>
<link>http://torrent.zoink.it/The.Daily.Show.2012.01.03.(HDTV-FQM)[VTV].torrent</link>
<category domain="http://eztv.it/shows/67/the-daily-show/"><![CDATA[TV Show / The Daily Show]]></category>
<pubDate>Tue, 03 Jan 2012 23:20:39 -0500</pubDate>
<description><![CDATA[Show Name: The Daily Show; Episode Title: N/A; Episode Date: 2012-01-03]]></description>
<enclosure url="http://torrent.zoink.it/The.Daily.Show.2012.01.03.(HDTV-FQM)[VTV].torrent" length="183731134" type="application/x-bittorrent" />
<comments>http://eztv.it/forum/discuss/32156/</comments>
<guid>http://eztv.it/ep/32156/the-daily-show-2012-01-03-hdtv-fqm/</guid>
<torrent xmlns="http://xmlns.ezrss.it/0.1/">
<fileName><![CDATA[The.Daily.Show.2012.01.03.(HDTV-FQM)[VTV].torrent]]></fileName>
<contentLength>183731134</contentLength>
<infoHash>72F40FB20F3D26B9FCDE93CD13B55CE190D3096B</infoHash>
<magnetURI><![CDATA[magnet:?xt=urn:btih:72F40FB20F3D26B9FCDE93CD13B55CE190D3096B&dn=The.Daily.Show.2012.01.03.(HDTV-FQM)]]></magnetURI>
</torrent>
</item>
<item>
<title><![CDATA[The Daily Show 2011-12-15 [HDTV - FQM]]]></title>
<link>http://torrent.zoink.it/The.Daily.Show.2011.12.15.(HDTV-FQM)[VTV].torrent</link>
<category domain="http://eztv.it/shows/67/the-daily-show/"><![CDATA[TV Show / The Daily Show]]></category>
<pubDate>Thu, 15 Dec 2011 22:54:14 -0500</pubDate>
<description><![CDATA[Show Name: The Daily Show; Episode Title: N/A; Episode Date: 2011-12-15]]></description>
<enclosure url="http://torrent.zoink.it/The.Daily.Show.2011.12.15.(HDTV-FQM)[VTV].torrent" length="183449704" type="application/x-bittorrent" />
<comments>http://eztv.it/forum/discuss/31906/</comments>
<guid>http://eztv.it/ep/31906/the-daily-show-2011-12-15-hdtv-fqm/</guid>
<torrent xmlns="http://xmlns.ezrss.it/0.1/">
<fileName><![CDATA[The.Daily.Show.2011.12.15.(HDTV-FQM)[VTV].torrent]]></fileName>
<contentLength>183449704</contentLength>
<infoHash>F081D05F350C05209EA245E7D416DEE9695B04A0</infoHash>
<magnetURI><![CDATA[magnet:?xt=urn:btih:F081D05F350C05209EA245E7D416DEE9695B04A0&dn=The.Daily.Show.2011.12.15.(HDTV-FQM)]]></magnetURI>
</torrent>
</item>
<item>
<title><![CDATA[The Daily Show 2011-12-14 [HDTV - FQM]]]></title>
<link>http://torrent.zoink.it/The.Daily.Show.2011.12.14.(HDTV-FQM)[VTV].torrent</link>
<category domain="http://eztv.it/shows/67/the-daily-show/"><![CDATA[TV Show / The Daily Show]]></category>
<pubDate>Thu, 15 Dec 2011 02:52:44 -0500</pubDate>
<description><![CDATA[Show Name: The Daily Show; Episode Title: N/A; Episode Date: 2011-12-14]]></description>
<enclosure url="http://torrent.zoink.it/The.Daily.Show.2011.12.14.(HDTV-FQM)[VTV].torrent" length="183754264" type="application/x-bittorrent" />
<comments>http://eztv.it/forum/discuss/31878/</comments>
<guid>http://eztv.it/ep/31878/the-daily-show-2011-12-14-hdtv-fqm/</guid>
<torrent xmlns="http://xmlns.ezrss.it/0.1/">
<fileName><![CDATA[The.Daily.Show.2011.12.14.(HDTV-FQM)[VTV].torrent]]></fileName>
<contentLength>183754264</contentLength>
<infoHash>C02EE1E4DA2BC3C629E69B1970C931BEEF9F16C2</infoHash>
<magnetURI><![CDATA[magnet:?xt=urn:btih:C02EE1E4DA2BC3C629E69B1970C931BEEF9F16C2&dn=The.Daily.Show.2011.12.14.(HDTV-FQM)]]></magnetURI>
</torrent>
</item>
<item>
<title><![CDATA[The Daily Show 2011-12-13 [HDTV - FQM]]]></title>
<link>http://torrent.zoink.it/The.Daily.Show.2011.12.13.(HDTV-FQM)[VTV].torrent</link>
<category domain="http://eztv.it/shows/67/the-daily-show/"><![CDATA[TV Show / The Daily Show]]></category>
<pubDate>Wed, 14 Dec 2011 03:37:05 -0500</pubDate>
<description><![CDATA[Show Name: The Daily Show; Episode Title: N/A; Episode Date: 2011-12-13]]></description>
<enclosure url="http://torrent.zoink.it/The.Daily.Show.2011.12.13.(HDTV-FQM)[VTV].torrent" length="183748078" type="application/x-bittorrent" />
<comments>http://eztv.it/forum/discuss/31855/</comments>
<guid>http://eztv.it/ep/31855/the-daily-show-2011-12-13-hdtv-fqm/</guid>
<torrent xmlns="http://xmlns.ezrss.it/0.1/">
<fileName><![CDATA[The.Daily.Show.2011.12.13.(HDTV-FQM)[VTV].torrent]]></fileName>
<contentLength>183748078</contentLength>
<infoHash>4A20B0DD2A4056BB0DE0025BBE8260283689928E</infoHash>
<magnetURI><![CDATA[magnet:?xt=urn:btih:4A20B0DD2A4056BB0DE0025BBE8260283689928E&dn=The.Daily.Show.2011.12.13.(HDTV-FQM)]]></magnetURI>
</torrent>
</item>
<item>
<title><![CDATA[The Daily Show 2011-12-12 [HDTV - FQM]]]></title>
<link>http://torrent.zoink.it/The.Daily.Show.2011.12.12.(HDTV-FQM)[VTV].torrent</link>
<category domain="http://eztv.it/shows/67/the-daily-show/"><![CDATA[TV Show / The Daily Show]]></category>
<pubDate>Mon, 12 Dec 2011 22:59:23 -0500</pubDate>
<description><![CDATA[Show Name: The Daily Show; Episode Title: N/A; Episode Date: 2011-12-12]]></description>
<enclosure url="http://torrent.zoink.it/The.Daily.Show.2011.12.12.(HDTV-FQM)[VTV].torrent" length="183460076" type="application/x-bittorrent" />
<comments>http://eztv.it/forum/discuss/31829/</comments>
<guid>http://eztv.it/ep/31829/the-daily-show-2011-12-12-hdtv-fqm/</guid>
<torrent xmlns="http://xmlns.ezrss.it/0.1/">
<fileName><![CDATA[The.Daily.Show.2011.12.12.(HDTV-FQM)[VTV].torrent]]></fileName>
<contentLength>183460076</contentLength>
<infoHash>6A4B3DCB48A6A4EA45772FBCB9E60936E06EE351</infoHash>
<magnetURI><![CDATA[magnet:?xt=urn:btih:6A4B3DCB48A6A4EA45772FBCB9E60936E06EE351&dn=The.Daily.Show.2011.12.12.(HDTV-FQM)]]></magnetURI>
</torrent>
</item>
<item>
<title><![CDATA[The Daily Show 2011-12-08 [HDTV - FQM]]]></title>
<link>http://torrent.zoink.it/The.Daily.Show.2011.12.08.(HDTV-FQM)[VTV].torrent</link>
<category domain="http://eztv.it/shows/67/the-daily-show/"><![CDATA[TV Show / The Daily Show]]></category>
<pubDate>Thu, 08 Dec 2011 23:11:55 -0500</pubDate>
<description><![CDATA[Show Name: The Daily Show; Episode Title: N/A; Episode Date: 2011-12-08]]></description>
<enclosure url="http://torrent.zoink.it/The.Daily.Show.2011.12.08.(HDTV-FQM)[VTV].torrent" length="183811968" type="application/x-bittorrent" />
<comments>http://eztv.it/forum/discuss/31751/</comments>
<guid>http://eztv.it/ep/31751/the-daily-show-2011-12-08-hdtv-fqm/</guid>
<torrent xmlns="http://xmlns.ezrss.it/0.1/">
<fileName><![CDATA[The.Daily.Show.2011.12.08.(HDTV-FQM)[VTV].torrent]]></fileName>
<contentLength>183811968</contentLength>
<infoHash>1340B406A6CA5F715F4FB7590AEB9BA85C3D7775</infoHash>
<magnetURI><![CDATA[magnet:?xt=urn:btih:1340B406A6CA5F715F4FB7590AEB9BA85C3D7775&dn=The.Daily.Show.2011.12.08.(HDTV-FQM)]]></magnetURI>
</torrent>
</item>
<item>
<title><![CDATA[The Daily Show 2011-12-07 [HDTV - FQM]]]></title>
<link>http://torrent.zoink.it/The.Daily.Show.2011.12.07.(HDTV-FQM)[VTV].torrent</link>
<category domain="http://eztv.it/shows/67/the-daily-show/"><![CDATA[TV Show / The Daily Show]]></category>
<pubDate>Thu, 08 Dec 2011 01:35:41 -0500</pubDate>
<description><![CDATA[Show Name: The Daily Show; Episode Title: N/A; Episode Date: 2011-12-07]]></description>
<enclosure url="http://torrent.zoink.it/The.Daily.Show.2011.12.07.(HDTV-FQM)[VTV].torrent" length="183740072" type="application/x-bittorrent" />
<comments>http://eztv.it/forum/discuss/31722/</comments>
<guid>http://eztv.it/ep/31722/the-daily-show-2011-12-07-hdtv-fqm/</guid>
<torrent xmlns="http://xmlns.ezrss.it/0.1/">
<fileName><![CDATA[The.Daily.Show.2011.12.07.(HDTV-FQM)[VTV].torrent]]></fileName>
<contentLength>183740072</contentLength>
<infoHash>68684A70ED89321E8B7AAA467DCD1C2F22AA9CD9</infoHash>
<magnetURI><![CDATA[magnet:?xt=urn:btih:68684A70ED89321E8B7AAA467DCD1C2F22AA9CD9&dn=The.Daily.Show.2011.12.07.(HDTV-FQM)]]></magnetURI>
</torrent>
</item>
<item>
<title><![CDATA[The Daily Show 2011-12-06 [HDTV - FQM]]]></title>
<link>http://torrent.zoink.it/The.Daily.Show.2011.12.06.(HDTV-FQM)[VTV].torrent</link>
<category domain="http://eztv.it/shows/67/the-daily-show/"><![CDATA[TV Show / The Daily Show]]></category>
<pubDate>Tue, 06 Dec 2011 23:25:39 -0500</pubDate>
<description><![CDATA[Show Name: The Daily Show; Episode Title: N/A; Episode Date: 2011-12-06]]></description>
<enclosure url="http://torrent.zoink.it/The.Daily.Show.2011.12.06.(HDTV-FQM)[VTV].torrent" length="183747386" type="application/x-bittorrent" />
<comments>http://eztv.it/forum/discuss/31688/</comments>
<guid>http://eztv.it/ep/31688/the-daily-show-2011-12-06-hdtv-fqm/</guid>
<torrent xmlns="http://xmlns.ezrss.it/0.1/">
<fileName><![CDATA[The.Daily.Show.2011.12.06.(HDTV-FQM)[VTV].torrent]]></fileName>
<contentLength>183747386</contentLength>
<infoHash>C1F76A80399ECD1572A7E282EBE45A17160839CC</infoHash>
<magnetURI><![CDATA[magnet:?xt=urn:btih:C1F76A80399ECD1572A7E282EBE45A17160839CC&dn=The.Daily.Show.2011.12.06.(HDTV-FQM)]]></magnetURI>
</torrent>
</item>
<item>
<title><![CDATA[The Daily Show 2011-12-05 [HDTV - FQM]]]></title>
<link>http://torrent.zoink.it/The.Daily.Show.2011.12.05.(HDTV-FQM)[VTV].torrent</link>
<category domain="http://eztv.it/shows/67/the-daily-show/"><![CDATA[TV Show / The Daily Show]]></category>
<pubDate>Tue, 06 Dec 2011 01:26:12 -0500</pubDate>
<description><![CDATA[Show Name: The Daily Show; Episode Title: N/A; Episode Date: 2011-12-05]]></description>
<enclosure url="http://torrent.zoink.it/The.Daily.Show.2011.12.05.(HDTV-FQM)[VTV].torrent" length="183783900" type="application/x-bittorrent" />
<comments>http://eztv.it/forum/discuss/31662/</comments>
<guid>http://eztv.it/ep/31662/the-daily-show-2011-12-05-hdtv-fqm/</guid>
<torrent xmlns="http://xmlns.ezrss.it/0.1/">
<fileName><![CDATA[The.Daily.Show.2011.12.05.(HDTV-FQM)[VTV].torrent]]></fileName>
<contentLength>183783900</contentLength>
<infoHash>78627148D317FC01A9BA4504E11273FF4BE72DB7</infoHash>
<magnetURI><![CDATA[magnet:?xt=urn:btih:78627148D317FC01A9BA4504E11273FF4BE72DB7&dn=The.Daily.Show.2011.12.05.(HDTV-FQM)]]></magnetURI>
</torrent>
</item>
</channel>
</rss>

View File

@ -1,147 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><!-- This feed is meant for torrent feed downloaders, not regular feed clients. --><!-- If you're looking to stay up to date on releases, please use the following feed: --><!-- http://www.finalgear.com/feed/ --><rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:atom="http://www.w3.org/2005/Atom" version="2.0">
<channel>
<title>FinalGear.com: Latest 1080i HD Torrents</title>
<link>http://www.finalgear.com/</link>
<description>The latest 1080i HD torrents released at FinalGear.com</description>
<ttl>15</ttl>
<language>en-us</language>
<pubDate>Sun, 21 Jul 2013 21:02:31 +0000</pubDate>
<lastBuildDate>Sun, 21 Jul 2013 12:00:00 +0000</lastBuildDate>
<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/rss+xml" href="http://feeds.feedburner.com/finalgear/torrents/1080" /><feedburner:info xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" uri="finalgear/torrents/1080" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><item>
<title>Top.Gear.S20E04.1080i.ts</title>
<description>Top Gear - [20x04] - 2013.07.21</description>
<link>http://torrage.com/torrent/470BCD2007011E9F31556B36E199D03D948A1A52.torrent</link>
<pubDate>Sun, 21 Jul 2013 12:00:00 +0000</pubDate>
<category domain="http://www.finalgear.com/shows/topgear/">Top Gear</category>
<guid isPermaLink="true">http://www.finalgear.com/shows/topgear/20/4/</guid>
<enclosure url="http://torrage.com/torrent/470BCD2007011E9F31556B36E199D03D948A1A52.torrent" type="application/x-bittorrent" />
</item>
<item>
<title>Top.Gear.S20E03.1080i.ts</title>
<description>Top Gear - [20x03] - 2013.07.14</description>
<link>http://torrage.com/torrent/59DA814F36212F6686F74D82A9744C851EE1D088.torrent</link>
<pubDate>Sun, 14 Jul 2013 12:00:00 +0000</pubDate>
<category domain="http://www.finalgear.com/shows/topgear/">Top Gear</category>
<guid isPermaLink="true">http://www.finalgear.com/shows/topgear/20/3/</guid>
<enclosure url="http://torrage.com/torrent/59DA814F36212F6686F74D82A9744C851EE1D088.torrent" type="application/x-bittorrent" />
</item>
<item>
<title>Top.Gear.S20E02.1080i.ts</title>
<description>Top Gear - [20x02] - 2013.07.07</description>
<link>http://torrage.com/torrent/E2AF184E0F72A9101B4A276283493A20FAB87226.torrent</link>
<pubDate>Sun, 07 Jul 2013 12:00:00 +0000</pubDate>
<category domain="http://www.finalgear.com/shows/topgear/">Top Gear</category>
<guid isPermaLink="true">http://www.finalgear.com/shows/topgear/20/2/</guid>
<enclosure url="http://torrage.com/torrent/E2AF184E0F72A9101B4A276283493A20FAB87226.torrent" type="application/x-bittorrent" />
</item>
<item>
<title>Top.Gear.S20E01.1080i.ts</title>
<description>Top Gear - [20x01] - 2013.06.30</description>
<link>http://torrage.com/torrent/BE370AF9D0A82A8D9E6599FCA29EAE0691C93925.torrent</link>
<pubDate>Sun, 30 Jun 2013 12:00:00 +0000</pubDate>
<category domain="http://www.finalgear.com/shows/topgear/">Top Gear</category>
<guid isPermaLink="true">http://www.finalgear.com/shows/topgear/20/1/</guid>
<enclosure url="http://torrage.com/torrent/BE370AF9D0A82A8D9E6599FCA29EAE0691C93925.torrent" type="application/x-bittorrent" />
</item>
<item>
<title>Top.Gear.S19E07.1080i.ts</title>
<description>Top Gear - [19x07] - 2013.03.10</description>
<link>http://torrage.com/torrent/BA5EC4C504A68C1C7C311F12DB1A1AC9D71BB5F2.torrent</link>
<pubDate>Sun, 10 Mar 2013 12:00:00 +0000</pubDate>
<category domain="http://www.finalgear.com/shows/topgear/">Top Gear</category>
<guid isPermaLink="true">http://www.finalgear.com/shows/topgear/19/7/</guid>
<enclosure url="http://torrage.com/torrent/BA5EC4C504A68C1C7C311F12DB1A1AC9D71BB5F2.torrent" type="application/x-bittorrent" />
</item>
<item>
<title>Top.Gear.S19E06.1080i.ts</title>
<description>Top Gear - [19x06] - 2013.03.03</description>
<link>http://torrage.com/torrent/128E724588A9B2EDEC889FFBF9ED371BDCDDB98F.torrent</link>
<pubDate>Sun, 03 Mar 2013 12:00:00 +0000</pubDate>
<category domain="http://www.finalgear.com/shows/topgear/">Top Gear</category>
<guid isPermaLink="true">http://www.finalgear.com/shows/topgear/19/6/</guid>
<enclosure url="http://torrage.com/torrent/128E724588A9B2EDEC889FFBF9ED371BDCDDB98F.torrent" type="application/x-bittorrent" />
</item>
<item>
<title>Top.Gear.S19E05.1080i.ts</title>
<description>Top Gear - [19x05] - 2013.02.24</description>
<link>http://torrage.com/torrent/5C5390FDFB2F788819FE5C5F7BC94D872DF17F33.torrent</link>
<pubDate>Sun, 24 Feb 2013 12:00:00 +0000</pubDate>
<category domain="http://www.finalgear.com/shows/topgear/">Top Gear</category>
<guid isPermaLink="true">http://www.finalgear.com/shows/topgear/19/5/</guid>
<enclosure url="http://torrage.com/torrent/5C5390FDFB2F788819FE5C5F7BC94D872DF17F33.torrent" type="application/x-bittorrent" />
</item>
<item>
<title>Top.Gear.S19E04.1080i.ts</title>
<description>Top Gear - [19x04] - 2013.02.17</description>
<link>http://torrage.com/torrent/80FB930ABF3AFD88BEE43FB54E227D4839956E06.torrent</link>
<pubDate>Sun, 17 Feb 2013 12:00:00 +0000</pubDate>
<category domain="http://www.finalgear.com/shows/topgear/">Top Gear</category>
<guid isPermaLink="true">http://www.finalgear.com/shows/topgear/19/4/</guid>
<enclosure url="http://torrage.com/torrent/80FB930ABF3AFD88BEE43FB54E227D4839956E06.torrent" type="application/x-bittorrent" />
</item>
<item>
<title>Top.Gear.S19E03.1080i.ts</title>
<description>Top Gear - [19x03] - 2013.02.10</description>
<link>http://torrage.com/torrent/C44332C70E9FE725DD7413D951D01E04630FCC9F.torrent</link>
<pubDate>Sun, 10 Feb 2013 12:00:00 +0000</pubDate>
<category domain="http://www.finalgear.com/shows/topgear/">Top Gear</category>
<guid isPermaLink="true">http://www.finalgear.com/shows/topgear/19/3/</guid>
<enclosure url="http://torrage.com/torrent/C44332C70E9FE725DD7413D951D01E04630FCC9F.torrent" type="application/x-bittorrent" />
</item>
<item>
<title>Top.Gear.S19E02.1080i.ts</title>
<description>Top Gear - [19x02] - 2013.02.03</description>
<link>http://torrage.com/torrent/CE3CCBECC9B73A158FBE526C320E3EB53F8FFE5D.torrent</link>
<pubDate>Sun, 03 Feb 2013 12:00:00 +0000</pubDate>
<category domain="http://www.finalgear.com/shows/topgear/">Top Gear</category>
<guid isPermaLink="true">http://www.finalgear.com/shows/topgear/19/2/</guid>
<enclosure url="http://torrage.com/torrent/CE3CCBECC9B73A158FBE526C320E3EB53F8FFE5D.torrent" type="application/x-bittorrent" />
</item>
<item>
<title>Top.Gear.S19E01.1080i.ts</title>
<description>Top Gear - [19x01] - 2013.01.27</description>
<link>http://torrage.com/torrent/9778DD3F4FE60EB5DFD349C2DF583F89A15068F5.torrent</link>
<pubDate>Sun, 27 Jan 2013 12:00:00 +0000</pubDate>
<category domain="http://www.finalgear.com/shows/topgear/">Top Gear</category>
<guid isPermaLink="true">http://www.finalgear.com/shows/topgear/19/1/</guid>
<enclosure url="http://torrage.com/torrent/9778DD3F4FE60EB5DFD349C2DF583F89A15068F5.torrent" type="application/x-bittorrent" />
</item>
<item>
<title>Top.Gear.S18E07.1080i.ts</title>
<description>Top Gear - [18x07] - 2012.03.11</description>
<link>http://torrage.com/torrent/39D3F1B2E619750A48FC9CA845DC20AD4FB8B229.torrent</link>
<pubDate>Sun, 11 Mar 2012 12:00:00 +0000</pubDate>
<category domain="http://www.finalgear.com/shows/topgear/">Top Gear</category>
<guid isPermaLink="true">http://www.finalgear.com/shows/topgear/18/7/</guid>
<enclosure url="http://torrage.com/torrent/39D3F1B2E619750A48FC9CA845DC20AD4FB8B229.torrent" type="application/x-bittorrent" />
</item>
<item>
<title>Top.Gear.S18E06.1080i.ts</title>
<description>Top Gear - [18x06] - 2012.03.04</description>
<link>http://torrage.com/torrent/621F8F946D81C2055028BFC87F5B2064A26F932F.torrent</link>
<pubDate>Sun, 04 Mar 2012 12:00:00 +0000</pubDate>
<category domain="http://www.finalgear.com/shows/topgear/">Top Gear</category>
<guid isPermaLink="true">http://www.finalgear.com/shows/topgear/18/6/</guid>
<enclosure url="http://torrage.com/torrent/621F8F946D81C2055028BFC87F5B2064A26F932F.torrent" type="application/x-bittorrent" />
</item>
<item>
<title>Top.Gear.S18E05.1080i.ts</title>
<description>Top Gear - [18x05] - 2012.02.26</description>
<link>http://torrage.com/torrent/B6FA7AE25BC37F61B52DEBFC1853A6B887AC6D59.torrent</link>
<pubDate>Sun, 26 Feb 2012 12:00:00 +0000</pubDate>
<category domain="http://www.finalgear.com/shows/topgear/">Top Gear</category>
<guid isPermaLink="true">http://www.finalgear.com/shows/topgear/18/5/</guid>
<enclosure url="http://torrage.com/torrent/B6FA7AE25BC37F61B52DEBFC1853A6B887AC6D59.torrent" type="application/x-bittorrent" />
</item>
<item>
<title>Top.Gear.S18E04.1080i.ts</title>
<description>Top Gear - [18x04] - 2012.02.19</description>
<link>http://torrage.com/torrent/5B675A41D9584A07EA1D4C6B719AB8F2306CD55E.torrent</link>
<pubDate>Sun, 19 Feb 2012 12:00:00 +0000</pubDate>
<category domain="http://www.finalgear.com/shows/topgear/">Top Gear</category>
<guid isPermaLink="true">http://www.finalgear.com/shows/topgear/18/4/</guid>
<enclosure url="http://torrage.com/torrent/5B675A41D9584A07EA1D4C6B719AB8F2306CD55E.torrent" type="application/x-bittorrent" />
</item>
</channel>
</rss><!-- Dynamic page generated in 0.239 seconds. --><!-- Cached page generated by WP-Super-Cache on 2013-07-21 21:02:31 --><!-- Compression = gzip -->

View File

@ -1,383 +0,0 @@
<?xml version="1.0" encoding="utf-8"?><rss version="2.0">
<channel>
<title>Music torrents RSS feed - KickassTorrents</title>
<link>http://kat.ph/</link>
<xhtml:meta xmlns:xhtml="http://www.w3.org/1999/xhtml" name="robots" content="noindex" />
<description>Music torrents RSS feed</description>
<item>
<title>Benito Di Paula - 1975 - Benito Di Paula (LP Rip OGG at 500) [jarax4u]</title>
<category>Other Music</category>
<link>http://kat.ph/benito-di-paula-1975-benito-di-paula-lp-rip-ogg-at-500-jarax4u-t6194897.html</link>
<guid>http://kat.ph/benito-di-paula-1975-benito-di-paula-lp-rip-ogg-at-500-jarax4u-t6194897.html</guid>
<pubDate>Tue, 21 Feb 2012 01:06:33 +0000</pubDate>
<torrentLink>http://kat.ph/torrents/benito-di-paula-1975-benito-di-paula-lp-rip-ogg-at-500-jarax4u-t6194897/</torrentLink>
<hash>211F92234B07D98C29DD5088BE55CEC874BB661C</hash>
<peers>0</peers>
<seeds>0</seeds>
<leechs>0</leechs>
<size>168773863</size>
<verified>1</verified>
<enclosure url="http://kat.ph/torrents/benito-di-paula-1975-benito-di-paula-lp-rip-ogg-at-500-jarax4u-t6194897/" length="168773863" type="application/x-bittorrent" />
</item>
<item>
<title>Benito Di Paula - 1975 - Benito Di Paula (LP Rip MP3 at 320) [jarax4u]</title>
<category>Other Music</category>
<link>http://kat.ph/benito-di-paula-1975-benito-di-paula-lp-rip-mp3-at-320-jarax4u-t6194875.html</link>
<guid>http://kat.ph/benito-di-paula-1975-benito-di-paula-lp-rip-mp3-at-320-jarax4u-t6194875.html</guid>
<pubDate>Tue, 21 Feb 2012 00:47:58 +0000</pubDate>
<torrentLink>http://kat.ph/torrents/benito-di-paula-1975-benito-di-paula-lp-rip-mp3-at-320-jarax4u-t6194875/</torrentLink>
<hash>E574DA4F83B4CCBDFA58D86F199607BD8EC107CD</hash>
<peers>0</peers>
<seeds>0</seeds>
<leechs>0</leechs>
<size>101741371</size>
<verified>1</verified>
<enclosure url="http://kat.ph/torrents/benito-di-paula-1975-benito-di-paula-lp-rip-mp3-at-320-jarax4u-t6194875/" length="101741371" type="application/x-bittorrent" />
</item>
<item>
<title>Ridddim Pack (December 2011) {by gtyouth}</title>
<category>Other Music</category>
<link>http://kat.ph/ridddim-pack-december-2011-by-gtyouth-t6194838.html</link>
<guid>http://kat.ph/ridddim-pack-december-2011-by-gtyouth-t6194838.html</guid>
<pubDate>Tue, 21 Feb 2012 00:06:05 +0000</pubDate>
<torrentLink>http://kat.ph/torrents/ridddim-pack-december-2011-by-gtyouth-t6194838/</torrentLink>
<hash>4a8cd595283be07e15100d429ad2d66d29c97908</hash>
<peers>0</peers>
<seeds>0</seeds>
<leechs>0</leechs>
<size>2359156334</size>
<verified>1</verified>
<enclosure url="http://kat.ph/torrents/ridddim-pack-december-2011-by-gtyouth-t6194838/" length="2359156334" type="application/x-bittorrent" />
</item>
<item>
<title>Benito Di Paula - 1974 - Gravado Ao Vivo (LP Rip FLAC) [jarax4u]</title>
<category>FLAC</category>
<link>http://kat.ph/benito-di-paula-1974-gravado-ao-vivo-lp-rip-flac-jarax4u-t6194825.html</link>
<guid>http://kat.ph/benito-di-paula-1974-gravado-ao-vivo-lp-rip-flac-jarax4u-t6194825.html</guid>
<pubDate>Mon, 20 Feb 2012 23:58:34 +0000</pubDate>
<torrentLink>http://kat.ph/torrents/benito-di-paula-1974-gravado-ao-vivo-lp-rip-flac-jarax4u-t6194825/</torrentLink>
<hash>A85A6DFD01B374841855BF4717B22DF431AA130D</hash>
<peers>0</peers>
<seeds>0</seeds>
<leechs>0</leechs>
<size>247681857</size>
<verified>1</verified>
<enclosure url="http://kat.ph/torrents/benito-di-paula-1974-gravado-ao-vivo-lp-rip-flac-jarax4u-t6194825/" length="247681857" type="application/x-bittorrent" />
</item>
<item>
<title>Benito Di Paula - 1974 - Gravado Ao Vivo (LP Rip OGG at 500) [jarax4u]</title>
<category>Other Music</category>
<link>http://kat.ph/benito-di-paula-1974-gravado-ao-vivo-lp-rip-ogg-at-500-jarax4u-t6194817.html</link>
<guid>http://kat.ph/benito-di-paula-1974-gravado-ao-vivo-lp-rip-ogg-at-500-jarax4u-t6194817.html</guid>
<pubDate>Mon, 20 Feb 2012 23:53:50 +0000</pubDate>
<torrentLink>http://kat.ph/torrents/benito-di-paula-1974-gravado-ao-vivo-lp-rip-ogg-at-500-jarax4u-t6194817/</torrentLink>
<hash>C54BB60E1F8F5D5944C98814F5FB3CBCBE61FC72</hash>
<peers>7</peers>
<seeds>1</seeds>
<leechs>6</leechs>
<size>173305077</size>
<verified>1</verified>
<enclosure url="http://kat.ph/torrents/benito-di-paula-1974-gravado-ao-vivo-lp-rip-ogg-at-500-jarax4u-t6194817/" length="173305077" type="application/x-bittorrent" />
</item>
<item>
<title>Benito Di Paula - 1974 - Gravado Ao Vivo (LP Rip MP3 at 320) [jarax4u]</title>
<category>Other Music</category>
<link>http://kat.ph/benito-di-paula-1974-gravado-ao-vivo-lp-rip-mp3-at-320-jarax4u-t6194784.html</link>
<guid>http://kat.ph/benito-di-paula-1974-gravado-ao-vivo-lp-rip-mp3-at-320-jarax4u-t6194784.html</guid>
<pubDate>Mon, 20 Feb 2012 23:48:09 +0000</pubDate>
<torrentLink>http://kat.ph/torrents/benito-di-paula-1974-gravado-ao-vivo-lp-rip-mp3-at-320-jarax4u-t6194784/</torrentLink>
<hash>A924A364F27732C4944CDB6E2AF80B7AB36F6BEB</hash>
<peers>0</peers>
<seeds>0</seeds>
<leechs>0</leechs>
<size>111035604</size>
<verified>1</verified>
<enclosure url="http://kat.ph/torrents/benito-di-paula-1974-gravado-ao-vivo-lp-rip-mp3-at-320-jarax4u-t6194784/" length="111035604" type="application/x-bittorrent" />
</item>
<item>
<title>The Peter Schiff Show - 2012 Feb 20 MO [sebaygo1]</title>
<category>Other Music</category>
<link>http://kat.ph/the-peter-schiff-show-2012-feb-20-mo-sebaygo1-t6194769.html</link>
<guid>http://kat.ph/the-peter-schiff-show-2012-feb-20-mo-sebaygo1-t6194769.html</guid>
<pubDate>Mon, 20 Feb 2012 23:41:04 +0000</pubDate>
<torrentLink>http://kat.ph/torrents/the-peter-schiff-show-2012-feb-20-mo-sebaygo1-t6194769/</torrentLink>
<hash>5e18ad4066de9f4906f49d0a08a79f858c87cfe8</hash>
<peers>0</peers>
<seeds>0</seeds>
<leechs>0</leechs>
<size>29569957</size>
<verified>1</verified>
<enclosure url="http://kat.ph/torrents/the-peter-schiff-show-2012-feb-20-mo-sebaygo1-t6194769/" length="29569957" type="application/x-bittorrent" />
</item>
<item>
<title>Tears for Fears - Songs From the Big Chair [1984] 1998 [EAC - FLAC](oan) MFSL</title>
<category>FLAC</category>
<link>http://kat.ph/tears-for-fears-songs-from-the-big-chair-1984-1998-eac-flac-oan-mfsl-t6194761.html</link>
<guid>http://kat.ph/tears-for-fears-songs-from-the-big-chair-1984-1998-eac-flac-oan-mfsl-t6194761.html</guid>
<pubDate>Mon, 20 Feb 2012 23:37:13 +0000</pubDate>
<torrentLink>http://kat.ph/torrents/tears-for-fears-songs-from-the-big-chair-1984-1998-eac-flac-oan-mfsl-t6194761/</torrentLink>
<hash>BC7A54607B625B512B7491C30A732E65556DB494</hash>
<peers>6</peers>
<seeds>2</seeds>
<leechs>4</leechs>
<size>386198104</size>
<verified>1</verified>
<enclosure url="http://kat.ph/torrents/tears-for-fears-songs-from-the-big-chair-1984-1998-eac-flac-oan-mfsl-t6194761/" length="386198104" type="application/x-bittorrent" />
</item>
<item>
<title>reggie</title>
<category>Other Music</category>
<link>http://kat.ph/reggie-t6194715.html</link>
<guid>http://kat.ph/reggie-t6194715.html</guid>
<pubDate>Mon, 20 Feb 2012 23:17:22 +0000</pubDate>
<torrentLink>http://kat.ph/torrents/reggie-t6194715/</torrentLink>
<hash>7C763EFCF0C249390A59B39F07E23DA282F1C7E5</hash>
<peers>5</peers>
<seeds>1</seeds>
<leechs>4</leechs>
<size>25633124</size>
<verified>0</verified>
<enclosure url="http://kat.ph/torrents/reggie-t6194715/" length="25633124" type="application/x-bittorrent" />
</item>
<item>
<title>Little Walter Quarter To Twelve (blues)Mp3@320)[rogercc][h33t]</title>
<category>Other Music</category>
<link>http://kat.ph/little-walter-quarter-to-twelve-blues-mp3-320-rogercc-h33t-t6194700.html</link>
<guid>http://kat.ph/little-walter-quarter-to-twelve-blues-mp3-320-rogercc-h33t-t6194700.html</guid>
<pubDate>Mon, 20 Feb 2012 23:14:33 +0000</pubDate>
<torrentLink>http://kat.ph/torrents/little-walter-quarter-to-twelve-blues-mp3-320-rogercc-h33t-t6194700/</torrentLink>
<hash>9E99A4E78E5BB7D6321ADA0DEA7B0FFEC0CD29D7</hash>
<peers>7</peers>
<seeds>1</seeds>
<leechs>6</leechs>
<size>104421151</size>
<verified>1</verified>
<enclosure url="http://kat.ph/torrents/little-walter-quarter-to-twelve-blues-mp3-320-rogercc-h33t-t6194700/" length="104421151" type="application/x-bittorrent" />
</item>
<item>
<title>Kiss - Rock And Roll Over (The Remasters) FLAC</title>
<category>FLAC</category>
<link>http://kat.ph/kiss-rock-and-roll-over-the-remasters-flac-t6194641.html</link>
<guid>http://kat.ph/kiss-rock-and-roll-over-the-remasters-flac-t6194641.html</guid>
<pubDate>Mon, 20 Feb 2012 22:51:59 +0000</pubDate>
<torrentLink>http://kat.ph/torrents/kiss-rock-and-roll-over-the-remasters-flac-t6194641/</torrentLink>
<hash>AE27C0F706DC4B58648D8141561717196EE1F9EF</hash>
<peers>2</peers>
<seeds>1</seeds>
<leechs>1</leechs>
<size>247531271</size>
<verified>0</verified>
<enclosure url="http://kat.ph/torrents/kiss-rock-and-roll-over-the-remasters-flac-t6194641/" length="247531271" type="application/x-bittorrent" />
</item>
<item>
<title>Dio - (2004) Master Of The Moon (Metal4Life Edition v2) FLAC</title>
<category>FLAC</category>
<link>http://kat.ph/dio-2004-master-of-the-moon-metal4life-edition-v2-flac-t6194629.html</link>
<guid>http://kat.ph/dio-2004-master-of-the-moon-metal4life-edition-v2-flac-t6194629.html</guid>
<pubDate>Mon, 20 Feb 2012 22:45:57 +0000</pubDate>
<torrentLink>http://kat.ph/torrents/dio-2004-master-of-the-moon-metal4life-edition-v2-flac-t6194629/</torrentLink>
<hash>E542A684046606AEF3557B61AFE3E5C7F8EB812E</hash>
<peers>0</peers>
<seeds>0</seeds>
<leechs>0</leechs>
<size>303937009</size>
<verified>0</verified>
<enclosure url="http://kat.ph/torrents/dio-2004-master-of-the-moon-metal4life-edition-v2-flac-t6194629/" length="303937009" type="application/x-bittorrent" />
</item>
<item>
<title>Kiss - Destroyer (The Remasters) FLAC</title>
<category>FLAC</category>
<link>http://kat.ph/kiss-destroyer-the-remasters-flac-t6194608.html</link>
<guid>http://kat.ph/kiss-destroyer-the-remasters-flac-t6194608.html</guid>
<pubDate>Mon, 20 Feb 2012 22:29:12 +0000</pubDate>
<torrentLink>http://kat.ph/torrents/kiss-destroyer-the-remasters-flac-t6194608/</torrentLink>
<hash>F1C90D9BB756308AFC0D80F35624C6D95DBE4415</hash>
<peers>0</peers>
<seeds>0</seeds>
<leechs>0</leechs>
<size>235276131</size>
<verified>0</verified>
<enclosure url="http://kat.ph/torrents/kiss-destroyer-the-remasters-flac-t6194608/" length="235276131" type="application/x-bittorrent" />
</item>
<item>
<title>Aly and Fila - Future Sound Of Egypt 224 (2012.02.20).mp3</title>
<category>Other Music</category>
<link>http://kat.ph/aly-and-fila-future-sound-of-egypt-224-2012-02-20-mp3-t6194589.html</link>
<guid>http://kat.ph/aly-and-fila-future-sound-of-egypt-224-2012-02-20-mp3-t6194589.html</guid>
<pubDate>Mon, 20 Feb 2012 22:23:24 +0000</pubDate>
<torrentLink>http://kat.ph/torrents/aly-and-fila-future-sound-of-egypt-224-2012-02-20-mp3-t6194589/</torrentLink>
<hash>4CAAD39175F954B586DF59A16217AE078B2EAF21</hash>
<peers>1</peers>
<seeds>0</seeds>
<leechs>1</leechs>
<size>114884440</size>
<verified>1</verified>
<enclosure url="http://kat.ph/torrents/aly-and-fila-future-sound-of-egypt-224-2012-02-20-mp3-t6194589/" length="114884440" type="application/x-bittorrent" />
</item>
<item>
<title>Dj Fletch - Southern Swag Vol.1.Mixtape-2012-MP3</title>
<category>Other Music</category>
<link>http://kat.ph/dj-fletch-southern-swag-vol-1-mixtape-2012-mp3-t6194512.html</link>
<guid>http://kat.ph/dj-fletch-southern-swag-vol-1-mixtape-2012-mp3-t6194512.html</guid>
<pubDate>Mon, 20 Feb 2012 21:48:14 +0000</pubDate>
<torrentLink>http://kat.ph/torrents/dj-fletch-southern-swag-vol-1-mixtape-2012-mp3-t6194512/</torrentLink>
<hash>01D24611657E653CB0761EA126267F2D112E2DCD</hash>
<peers>2</peers>
<seeds>0</seeds>
<leechs>2</leechs>
<size>107170413</size>
<verified>0</verified>
<enclosure url="http://kat.ph/torrents/dj-fletch-southern-swag-vol-1-mixtape-2012-mp3-t6194512/" length="107170413" type="application/x-bittorrent" />
</item>
<item>
<title>Bruce Springsteen - Wrecking Ball CDRip 2012 [Bubanee]</title>
<category>Other Music</category>
<link>http://kat.ph/bruce-springsteen-wrecking-ball-cdrip-2012-bubanee-t6194510.html</link>
<guid>http://kat.ph/bruce-springsteen-wrecking-ball-cdrip-2012-bubanee-t6194510.html</guid>
<pubDate>Mon, 20 Feb 2012 21:47:50 +0000</pubDate>
<torrentLink>http://kat.ph/torrents/bruce-springsteen-wrecking-ball-cdrip-2012-bubanee-t6194510/</torrentLink>
<hash>9211A0BF0C5B8989CACCF48734DCF8F0BD28F369</hash>
<peers>54</peers>
<seeds>23</seeds>
<leechs>31</leechs>
<size>98524959</size>
<verified>1</verified>
<enclosure url="http://kat.ph/torrents/bruce-springsteen-wrecking-ball-cdrip-2012-bubanee-t6194510/" length="98524959" type="application/x-bittorrent" />
</item>
<item>
<title>Allman Brothers - Idlewild South [1970] 2007 [EAC - FLAC](oan) MFSL</title>
<category>FLAC</category>
<link>http://kat.ph/allman-brothers-idlewild-south-1970-2007-eac-flac-oan-mfsl-t6194497.html</link>
<guid>http://kat.ph/allman-brothers-idlewild-south-1970-2007-eac-flac-oan-mfsl-t6194497.html</guid>
<pubDate>Mon, 20 Feb 2012 21:38:08 +0000</pubDate>
<torrentLink>http://kat.ph/torrents/allman-brothers-idlewild-south-1970-2007-eac-flac-oan-mfsl-t6194497/</torrentLink>
<hash>72158ED9C573AE3BD68079995FABB2BAE95C9C91</hash>
<peers>53</peers>
<seeds>31</seeds>
<leechs>22</leechs>
<size>211398584</size>
<verified>1</verified>
<enclosure url="http://kat.ph/torrents/allman-brothers-idlewild-south-1970-2007-eac-flac-oan-mfsl-t6194497/" length="211398584" type="application/x-bittorrent" />
</item>
<item>
<title>VA - Minimal Bounce (CLO08265) WEB 2012-ALKi</title>
<category>Other Music</category>
<link>http://kat.ph/va-minimal-bounce-clo08265-web-2012-alki-t6194492.html</link>
<guid>http://kat.ph/va-minimal-bounce-clo08265-web-2012-alki-t6194492.html</guid>
<pubDate>Mon, 20 Feb 2012 21:35:35 +0000</pubDate>
<torrentLink>http://kat.ph/torrents/va-minimal-bounce-clo08265-web-2012-alki-t6194492/</torrentLink>
<hash>73DE1DEADB7EA648BAA9FFE8B412679B6C4744FC</hash>
<peers>26</peers>
<seeds>8</seeds>
<leechs>18</leechs>
<size>321376394</size>
<verified>1</verified>
<enclosure url="http://kat.ph/torrents/va-minimal-bounce-clo08265-web-2012-alki-t6194492/" length="321376394" type="application/x-bittorrent" />
</item>
<item>
<title>THIS DATE IN HOWARD STERN HISTORY - CF64K - 02-20-12 [WDM]</title>
<category>Other Music</category>
<link>http://kat.ph/this-date-in-howard-stern-history-cf64k-02-20-12-wdm-t6194474.html</link>
<guid>http://kat.ph/this-date-in-howard-stern-history-cf64k-02-20-12-wdm-t6194474.html</guid>
<pubDate>Mon, 20 Feb 2012 21:26:09 +0000</pubDate>
<torrentLink>http://kat.ph/torrents/this-date-in-howard-stern-history-cf64k-02-20-12-wdm-t6194474/</torrentLink>
<hash>affb307b27e5f5854dafb33e6a8ecb87a5f3bdaf</hash>
<peers>2</peers>
<seeds>1</seeds>
<leechs>1</leechs>
<size>144439968</size>
<verified>1</verified>
<enclosure url="http://kat.ph/torrents/this-date-in-howard-stern-history-cf64k-02-20-12-wdm-t6194474/" length="144439968" type="application/x-bittorrent" />
</item>
<item>
<title>THIS DATE IN HOWARD STERN HISTORY - CF128K - 02-20-12 [WDM]</title>
<category>Other Music</category>
<link>http://kat.ph/this-date-in-howard-stern-history-cf128k-02-20-12-wdm-t6194473.html</link>
<guid>http://kat.ph/this-date-in-howard-stern-history-cf128k-02-20-12-wdm-t6194473.html</guid>
<pubDate>Mon, 20 Feb 2012 21:26:08 +0000</pubDate>
<torrentLink>http://kat.ph/torrents/this-date-in-howard-stern-history-cf128k-02-20-12-wdm-t6194473/</torrentLink>
<hash>465c2c62b82e33ebd804b08a3e400f178b47dea1</hash>
<peers>2</peers>
<seeds>1</seeds>
<leechs>1</leechs>
<size>288668290</size>
<verified>1</verified>
<enclosure url="http://kat.ph/torrents/this-date-in-howard-stern-history-cf128k-02-20-12-wdm-t6194473/" length="288668290" type="application/x-bittorrent" />
</item>
<item>
<title>In Loving Memory - Negation Of Life (2011) [mp3@320]</title>
<category>Other Music</category>
<link>http://kat.ph/in-loving-memory-negation-of-life-2011-mp3-320-t6194466.html</link>
<guid>http://kat.ph/in-loving-memory-negation-of-life-2011-mp3-320-t6194466.html</guid>
<pubDate>Mon, 20 Feb 2012 21:21:33 +0000</pubDate>
<torrentLink>http://kat.ph/torrents/in-loving-memory-negation-of-life-2011-mp3-320-t6194466/</torrentLink>
<hash>3c2fb2c7a41e52feb9679efe04e42a20d5d7e886</hash>
<peers>0</peers>
<seeds>0</seeds>
<leechs>0</leechs>
<size>153557304</size>
<verified>0</verified>
<enclosure url="http://kat.ph/torrents/in-loving-memory-negation-of-life-2011-mp3-320-t6194466/" length="153557304" type="application/x-bittorrent" />
</item>
<item>
<title>Lorenguard - Eve Of Corruption: The Days Of Astasia, Part 1 (201</title>
<category>Other Music</category>
<link>http://kat.ph/lorenguard-eve-of-corruption-the-days-of-astasia-part-1-201-t6194465.html</link>
<guid>http://kat.ph/lorenguard-eve-of-corruption-the-days-of-astasia-part-1-201-t6194465.html</guid>
<pubDate>Mon, 20 Feb 2012 21:21:32 +0000</pubDate>
<torrentLink>http://kat.ph/torrents/lorenguard-eve-of-corruption-the-days-of-astasia-part-1-201-t6194465/</torrentLink>
<hash>49e0ac3dde5dc4bc4f40d58ca64f6c1c45c1bee5</hash>
<peers>2</peers>
<seeds>2</seeds>
<leechs>0</leechs>
<size>153858101</size>
<verified>1</verified>
<enclosure url="http://kat.ph/torrents/lorenguard-eve-of-corruption-the-days-of-astasia-part-1-201-t6194465/" length="153858101" type="application/x-bittorrent" />
</item>
<item>
<title>Silent Kingdom - Path To Oblivion (2011) [mp3@320]</title>
<category>Other Music</category>
<link>http://kat.ph/silent-kingdom-path-to-oblivion-2011-mp3-320-t6194464.html</link>
<guid>http://kat.ph/silent-kingdom-path-to-oblivion-2011-mp3-320-t6194464.html</guid>
<pubDate>Mon, 20 Feb 2012 21:21:31 +0000</pubDate>
<torrentLink>http://kat.ph/torrents/silent-kingdom-path-to-oblivion-2011-mp3-320-t6194464/</torrentLink>
<hash>8647dbdf5a39c59fa835a54d59a7b47e93bf87e8</hash>
<peers>0</peers>
<seeds>0</seeds>
<leechs>0</leechs>
<size>89279565</size>
<verified>1</verified>
<enclosure url="http://kat.ph/torrents/silent-kingdom-path-to-oblivion-2011-mp3-320-t6194464/" length="89279565" type="application/x-bittorrent" />
</item>
<item>
<title>The Jimmy Bowskill Band - Back Number (2012) [mp3@320]</title>
<category>Other Music</category>
<link>http://kat.ph/the-jimmy-bowskill-band-back-number-2012-mp3-320-t6194463.html</link>
<guid>http://kat.ph/the-jimmy-bowskill-band-back-number-2012-mp3-320-t6194463.html</guid>
<pubDate>Mon, 20 Feb 2012 21:21:30 +0000</pubDate>
<torrentLink>http://kat.ph/torrents/the-jimmy-bowskill-band-back-number-2012-mp3-320-t6194463/</torrentLink>
<hash>20991cd3b70fa937aa53821967731821f0a40811</hash>
<peers>0</peers>
<seeds>0</seeds>
<leechs>0</leechs>
<size>116141099</size>
<verified>1</verified>
<enclosure url="http://kat.ph/torrents/the-jimmy-bowskill-band-back-number-2012-mp3-320-t6194463/" length="116141099" type="application/x-bittorrent" />
</item>
<item>
<title>TranceTop (18.02.2012)</title>
<category>Other Music</category>
<link>http://kat.ph/trancetop-18-02-2012-t6194460.html</link>
<guid>http://kat.ph/trancetop-18-02-2012-t6194460.html</guid>
<pubDate>Mon, 20 Feb 2012 21:18:43 +0000</pubDate>
<torrentLink>http://kat.ph/torrents/trancetop-18-02-2012-t6194460/</torrentLink>
<hash>3602C833D2A71EFA6B1C67F4600601CCDE8654ED</hash>
<peers>5</peers>
<seeds>2</seeds>
<leechs>3</leechs>
<size>262105241</size>
<verified>1</verified>
<enclosure url="http://kat.ph/torrents/trancetop-18-02-2012-t6194460/" length="262105241" type="application/x-bittorrent" />
</item>
</channel>
</rss>

View File

@ -1,130 +0,0 @@
<?xml version="1.0" encoding="utf-8"?><rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
<channel>
<title>Mininova</title>
<link>http://www.mininova.org/</link>
<description>Latest Mininova torrents</description>
<language>en-us</language>
<atom:link href="http://www.mininova.org/rss.php?chttp://www.mininova.org/rss.php?cat=1&amp;recache=0%22%25" rel="self" type="application/rss+xml" />
<item><title>Dexcell - January TwentyTwelve Mix</title><guid isPermaLink='true'>http://www.mininova.org/tor/13203100</guid><pubDate>Mon, 20 Feb 2012 17:11:11 +0100</pubDate><category>Music</category><link>http://www.mininova.org/tor/13203100</link><enclosure url="http://www.mininova.org/get/13203100" length="137311179" type="application/x-bittorrent" /><description><![CDATA[
Category: <a href="http://www.mininova.org/cat/5">Music</a><br />
Subcategory: <a href="http://www.mininova.org/sub/60">Drum N Bass</a><br />
Size: 130.95&nbsp;megabyte<br />
Ratio: 1 seeds, 6 leechers<br />
Language: <img src="http://mnstat.com./images/flags/us.gif" /> English<br />
Uploaded by: <a href="http://www.mininova.org/user/Dexcell">Dexcell</a>]]></description></item><item><title>Dexcell - December TwentyEleven Mix</title><guid isPermaLink='true'>http://www.mininova.org/tor/13203099</guid><pubDate>Mon, 20 Feb 2012 16:26:02 +0100</pubDate><category>Music</category><link>http://www.mininova.org/tor/13203099</link><enclosure url="http://www.mininova.org/get/13203099" length="138354014" type="application/x-bittorrent" /><description><![CDATA[
Category: <a href="http://www.mininova.org/cat/5">Music</a><br />
Subcategory: <a href="http://www.mininova.org/sub/60">Drum N Bass</a><br />
Size: 131.94&nbsp;megabyte<br />
Ratio: 1 seeds, 4 leechers<br />
Language: <img src="http://mnstat.com./images/flags/us.gif" /> English<br />
Uploaded by: <a href="http://www.mininova.org/user/Dexcell">Dexcell</a>]]></description></item><item><title>Various Artists - Classicore (BM007) BREAKCORE</title><guid isPermaLink='true'>http://www.mininova.org/tor/13203098</guid><pubDate>Mon, 20 Feb 2012 16:25:24 +0100</pubDate><category>Music</category><link>http://www.mininova.org/tor/13203098</link><enclosure url="http://www.mininova.org/get/13203098" length="147187857" type="application/x-bittorrent" /><description><![CDATA[
Category: <a href="http://www.mininova.org/cat/5">Music</a><br />
Subcategory: <a href="http://www.mininova.org/sub/61">Electronic</a><br />
Size: 140.37&nbsp;megabyte<br />
Ratio: 1 seeds, 8 leechers<br />
Language: Unknown<br />
Uploaded by: <a href="http://www.mininova.org/user/breakcorenl">breakcorenl</a>]]></description></item><item><title>(V/A) .altered.statez.</title><guid isPermaLink='true'>http://www.mininova.org/tor/13203097</guid><pubDate>Mon, 20 Feb 2012 16:19:19 +0100</pubDate><category>Music</category><link>http://www.mininova.org/tor/13203097</link><enclosure url="http://www.mininova.org/get/13203097" length="148326997" type="application/x-bittorrent" /><description><![CDATA[
Category: <a href="http://www.mininova.org/cat/5">Music</a><br />
Subcategory: <a href="http://www.mininova.org/sub/61">Electronic</a><br />
Size: 141.46&nbsp;megabyte<br />
Ratio: 1 seeds, 6 leechers<br />
Language: <img src="http://mnstat.com./images/flags/us.gif" /> English<br />
Uploaded by: <a href="http://www.mininova.org/user/cOmaWrek">cOmaWrek</a>]]></description></item><item><title>Various Artists - Themeless 4 (BM006) BREAKCORE</title><guid isPermaLink='true'>http://www.mininova.org/tor/13203096</guid><pubDate>Mon, 20 Feb 2012 16:17:08 +0100</pubDate><category>Music</category><link>http://www.mininova.org/tor/13203096</link><enclosure url="http://www.mininova.org/get/13203096" length="233575946" type="application/x-bittorrent" /><description><![CDATA[
Category: <a href="http://www.mininova.org/cat/5">Music</a><br />
Subcategory: <a href="http://www.mininova.org/sub/61">Electronic</a><br />
Size: 222.76&nbsp;megabyte<br />
Ratio: 1 seeds, 5 leechers<br />
Language: Unknown<br />
Uploaded by: <a href="http://www.mininova.org/user/breakcorenl">breakcorenl</a>]]></description></item><item><title>Various Artists - Themeless 3 (BM005) BREAKCORE</title><guid isPermaLink='true'>http://www.mininova.org/tor/13203095</guid><pubDate>Mon, 20 Feb 2012 16:08:35 +0100</pubDate><category>Music</category><link>http://www.mininova.org/tor/13203095</link><enclosure url="http://www.mininova.org/get/13203095" length="338253900" type="application/x-bittorrent" /><description><![CDATA[
Category: <a href="http://www.mininova.org/cat/5">Music</a><br />
Subcategory: <a href="http://www.mininova.org/sub/61">Electronic</a><br />
Size: 322.58&nbsp;megabyte<br />
Ratio: 1 seeds, 5 leechers<br />
Language: Unknown<br />
Uploaded by: <a href="http://www.mininova.org/user/breakcorenl">breakcorenl</a>]]></description></item><item><title>Dexcell - November TwentyEleven Mix</title><guid isPermaLink='true'>http://www.mininova.org/tor/13203094</guid><pubDate>Mon, 20 Feb 2012 15:23:39 +0100</pubDate><category>Music</category><link>http://www.mininova.org/tor/13203094</link><enclosure url="http://www.mininova.org/get/13203094" length="151207325" type="application/x-bittorrent" /><description><![CDATA[
Category: <a href="http://www.mininova.org/cat/5">Music</a><br />
Subcategory: <a href="http://www.mininova.org/sub/60">Drum N Bass</a><br />
Size: 144.2&nbsp;megabyte<br />
Ratio: 4 seeds, 4 leechers<br />
Language: <img src="http://mnstat.com./images/flags/us.gif" /> English<br />
Uploaded by: <a href="http://www.mininova.org/user/Dexcell">Dexcell</a>]]></description></item><item><title>Various Artists - Themeless 2 (BM004) BREAKCORE</title><guid isPermaLink='true'>http://www.mininova.org/tor/13203093</guid><pubDate>Mon, 20 Feb 2012 15:19:06 +0100</pubDate><category>Music</category><link>http://www.mininova.org/tor/13203093</link><enclosure url="http://www.mininova.org/get/13203093" length="385796266" type="application/x-bittorrent" /><description><![CDATA[
Category: <a href="http://www.mininova.org/cat/5">Music</a><br />
Subcategory: <a href="http://www.mininova.org/sub/61">Electronic</a><br />
Size: 367.92&nbsp;megabyte<br />
Ratio: 1 seeds, 6 leechers<br />
Language: Unknown<br />
Uploaded by: <a href="http://www.mininova.org/user/breakcorenl">breakcorenl</a>]]></description></item><item><title>Various Artists - Themeless (BM003) BREAKCORE</title><guid isPermaLink='true'>http://www.mininova.org/tor/13203092</guid><pubDate>Mon, 20 Feb 2012 15:06:02 +0100</pubDate><category>Music</category><link>http://www.mininova.org/tor/13203092</link><enclosure url="http://www.mininova.org/get/13203092" length="386277034" type="application/x-bittorrent" /><description><![CDATA[
Category: <a href="http://www.mininova.org/cat/5">Music</a><br />
Subcategory: <a href="http://www.mininova.org/sub/61">Electronic</a><br />
Size: 368.38&nbsp;megabyte<br />
Ratio: 1 seeds, 6 leechers<br />
Language: Unknown<br />
Uploaded by: <a href="http://www.mininova.org/user/breakcorenl">breakcorenl</a>]]></description></item><item><title>Various Artists - No Time To Waste (BM001) BREAKCORE</title><guid isPermaLink='true'>http://www.mininova.org/tor/13203091</guid><pubDate>Mon, 20 Feb 2012 14:38:24 +0100</pubDate><category>Music</category><link>http://www.mininova.org/tor/13203091</link><enclosure url="http://www.mininova.org/get/13203091" length="51020455" type="application/x-bittorrent" /><description><![CDATA[
Category: <a href="http://www.mininova.org/cat/5">Music</a><br />
Subcategory: <a href="http://www.mininova.org/sub/61">Electronic</a><br />
Size: 48.66&nbsp;megabyte<br />
Ratio: 3 seeds, 4 leechers<br />
Language: Unknown<br />
Uploaded by: <a href="http://www.mininova.org/user/breakcorenl">breakcorenl</a>]]></description></item><item><title>Luke Meadows House Selection Volume 20 (Daft Punk, MAW, Spen, Chocolate Puma, Gel Abril, +more)</title><guid isPermaLink='true'>http://www.mininova.org/tor/13203090</guid><pubDate>Mon, 20 Feb 2012 12:04:53 +0100</pubDate><category>Music</category><link>http://www.mininova.org/tor/13203090</link><enclosure url="http://www.mininova.org/get/13203090" length="115217002" type="application/x-bittorrent" /><description><![CDATA[
Category: <a href="http://www.mininova.org/cat/5">Music</a><br />
Subcategory: <a href="http://www.mininova.org/sub/2">Trance / House / Dance</a><br />
Size: 109.88&nbsp;megabyte<br />
Ratio: 5 seeds, 5 leechers<br />
Language: Unknown<br />
Uploaded by: <a href="http://www.mininova.org/user/DJ-LukeMeadows">DJ-LukeMeadows</a>]]></description></item><item><title>Luke Meadows House Selection Volume 21 (Martin Solveig, Spen, Yass, Axwell, Bob Sinclar, ATFC +more)</title><guid isPermaLink='true'>http://www.mininova.org/tor/13203089</guid><pubDate>Mon, 20 Feb 2012 11:56:56 +0100</pubDate><category>Music</category><link>http://www.mininova.org/tor/13203089</link><enclosure url="http://www.mininova.org/get/13203089" length="111275438" type="application/x-bittorrent" /><description><![CDATA[
Category: <a href="http://www.mininova.org/cat/5">Music</a><br />
Subcategory: <a href="http://www.mininova.org/sub/2">Trance / House / Dance</a><br />
Size: 106.12&nbsp;megabyte<br />
Ratio: 9 seeds, 4 leechers<br />
Language: Unknown<br />
Uploaded by: <a href="http://www.mininova.org/user/DJ-LukeMeadows">DJ-LukeMeadows</a>]]></description></item><item><title>Dexcell - October TwentyEleven Mix</title><guid isPermaLink='true'>http://www.mininova.org/tor/13203088</guid><pubDate>Mon, 20 Feb 2012 11:54:08 +0100</pubDate><category>Music</category><link>http://www.mininova.org/tor/13203088</link><enclosure url="http://www.mininova.org/get/13203088" length="120841478" type="application/x-bittorrent" /><description><![CDATA[
Category: <a href="http://www.mininova.org/cat/5">Music</a><br />
Subcategory: <a href="http://www.mininova.org/sub/60">Drum N Bass</a><br />
Size: 115.24&nbsp;megabyte<br />
Ratio: 3 seeds, 4 leechers<br />
Language: <img src="http://mnstat.com./images/flags/us.gif" /> English<br />
Uploaded by: <a href="http://www.mininova.org/user/Dexcell">Dexcell</a>]]></description></item><item><title>Luke Meadows House Selection Volume 91 (Pleasurekraft, Eats Everything, Lovebirds, Redondo Sideburn)</title><guid isPermaLink='true'>http://www.mininova.org/tor/13203087</guid><pubDate>Mon, 20 Feb 2012 10:29:32 +0100</pubDate><category>Music</category><link>http://www.mininova.org/tor/13203087</link><enclosure url="http://www.mininova.org/get/13203087" length="76044614" type="application/x-bittorrent" /><description><![CDATA[
Category: <a href="http://www.mininova.org/cat/5">Music</a><br />
Subcategory: <a href="http://www.mininova.org/sub/2">Trance / House / Dance</a><br />
Size: 72.52&nbsp;megabyte<br />
Ratio: 4 seeds, 6 leechers<br />
Language: Unknown<br />
Uploaded by: <a href="http://www.mininova.org/user/DJ-LukeMeadows">DJ-LukeMeadows</a>]]></description></item><item><title>Dexcell - September TwentyEleven Mix</title><guid isPermaLink='true'>http://www.mininova.org/tor/13203086</guid><pubDate>Mon, 20 Feb 2012 10:09:59 +0100</pubDate><category>Music</category><link>http://www.mininova.org/tor/13203086</link><enclosure url="http://www.mininova.org/get/13203086" length="129071407" type="application/x-bittorrent" /><description><![CDATA[
Category: <a href="http://www.mininova.org/cat/5">Music</a><br />
Subcategory: <a href="http://www.mininova.org/sub/60">Drum N Bass</a><br />
Size: 123.09&nbsp;megabyte<br />
Ratio: 2 seeds, 4 leechers<br />
Language: <img src="http://mnstat.com./images/flags/us.gif" /> English<br />
Uploaded by: <a href="http://www.mininova.org/user/Dexcell">Dexcell</a>]]></description></item><item><title>OPRACHINA The Jazz Farm</title><guid isPermaLink='true'>http://www.mininova.org/tor/13203085</guid><pubDate>Sun, 19 Feb 2012 22:05:49 +0100</pubDate><category>Music</category><link>http://www.mininova.org/tor/13203085</link><enclosure url="http://www.mininova.org/get/13203085" length="48885216" type="application/x-bittorrent" /><description><![CDATA[
Category: <a href="http://www.mininova.org/cat/5">Music</a><br />
Subcategory: <a href="http://www.mininova.org/sub/66">Jazz</a><br />
Size: 46.62&nbsp;megabyte<br />
Ratio: 7 seeds, 5 leechers<br />
Language: <img src="http://mnstat.com./images/flags/us.gif" /> English<br />
Uploaded by: <a href="http://www.mininova.org/user/bluesbomb">bluesbomb</a>]]></description></item><item><title>00x (self titled EP)</title><guid isPermaLink='true'>http://www.mininova.org/tor/13203084</guid><pubDate>Sun, 19 Feb 2012 20:31:16 +0100</pubDate><category>Music</category><link>http://www.mininova.org/tor/13203084</link><enclosure url="http://www.mininova.org/get/13203084" length="40100826" type="application/x-bittorrent" /><description><![CDATA[
Category: <a href="http://www.mininova.org/cat/5">Music</a><br />
Subcategory: <a href="http://www.mininova.org/sub/61">Electronic</a><br />
Size: 38.24&nbsp;megabyte<br />
Ratio: 2 seeds, 4 leechers<br />
Language: <img src="http://mnstat.com./images/flags/us.gif" /> English<br />
Uploaded by: <a href="http://www.mininova.org/user/cOmaWrek">cOmaWrek</a>]]></description></item><item><title>Abstract Assassinator - Rising EP</title><guid isPermaLink='true'>http://www.mininova.org/tor/13203083</guid><pubDate>Sun, 19 Feb 2012 16:17:42 +0100</pubDate><category>Music</category><link>http://www.mininova.org/tor/13203083</link><enclosure url="http://www.mininova.org/get/13203083" length="25397337" type="application/x-bittorrent" /><description><![CDATA[
Category: <a href="http://www.mininova.org/cat/5">Music</a><br />
Subcategory: <a href="http://www.mininova.org/sub/61">Electronic</a><br />
Size: 24.22&nbsp;megabyte<br />
Ratio: 3 seeds, 5 leechers<br />
Language: Unknown<br />
Uploaded by: <a href="http://www.mininova.org/user/Abstractos">Abstractos</a>]]></description></item><item><title>VirtualBox - PeppermintOS Two Amd64 VirtualBox Virtual Appliance - [VirtualBoxImages.com]</title><guid isPermaLink='true'>http://www.mininova.org/tor/13203082</guid><pubDate>Sun, 19 Feb 2012 15:33:43 +0100</pubDate><category>Software</category><link>http://www.mininova.org/tor/13203082</link><enclosure url="http://www.mininova.org/get/13203082" length="488916583" type="application/x-bittorrent" /><description><![CDATA[
Category: <a href="http://www.mininova.org/cat/7">Software</a><br />
Subcategory: <a href="http://www.mininova.org/sub/17">GNU/Linux</a><br />
Size: 466.27&nbsp;megabyte<br />
Ratio: 6 seeds, 7 leechers<br />
Language: <img src="http://mnstat.com./images/flags/us.gif" /> English<br />
Uploaded by: <a href="http://www.mininova.org/user/veeDee-Eyes">veeDee-Eyes</a>]]></description></item><item><title>[AUDCST063] Affix Nail - Time's Up EP (electronica, industrial, drum&#38;bass [320kbps])</title><guid isPermaLink='true'>http://www.mininova.org/tor/13203081</guid><pubDate>Sun, 19 Feb 2012 15:11:01 +0100</pubDate><category>Music</category><link>http://www.mininova.org/tor/13203081</link><enclosure url="http://www.mininova.org/get/13203081" length="50025383" type="application/x-bittorrent" /><description><![CDATA[
Category: <a href="http://www.mininova.org/cat/5">Music</a><br />
Subcategory: <a href="http://www.mininova.org/sub/61">Electronic</a><br />
Size: 47.71&nbsp;megabyte<br />
Ratio: 3 seeds, 5 leechers<br />
Language: Unknown<br />
Uploaded by: <a href="http://www.mininova.org/user/sonicadam123">sonicadam123</a>]]></description></item>
</channel>
</rss>

View File

@ -1,855 +0,0 @@
<?xml version='1.0' encoding='UTF-8' ?>
<!DOCTYPE torrent PUBLIC "-//bitTorrent//DTD torrent 0.1//EN" "http://xmlns.ezrss.it/0.1/dtd/">
<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/">
<channel>
<title>The Pirate Bay - Audio</title>
<link>http://thepiratebay.se</link>
<description>The newest torrents from The Pirate Bay</description>
<language>en</language>
<pubDate>Tue, 21 Feb 2012 02:18:01 +0100</pubDate>
<lastBuildDate>Tue, 21 Feb 2012 02:18:01 +0100</lastBuildDate>
<docs>http://blogs.law.harvard.edu/tech/rss</docs>
<generator>TPB RSS Generator 1.2</generator>
<item>
<title><![CDATA[Thompson Twins - 1989 - Big Trash [MP3]]]></title>
<link>magnet:?xt=urn:btih:FD4CDDB7BBE722D17A018EFD875EB0695ED7159C&dn=Thompson+Twins+-+1989+-+Big+Trash+%5BMP3%5D</link>
<comments>http://thepiratebay.se/torrent/7047021</comments>
<pubDate>Tue, 21 Feb 2012 00:16:01 +0100</pubDate>
<category domain="http://thepiratebay.se/browse/101"><![CDATA[Audio / Music]]></category>
<dc:creator><![CDATA[guguilatin]]></dc:creator>
<guid>http://thepiratebay.se/torrent/7047021/</guid>
<torrent xmlns="http://xmlns.ezrss.it/0.1/">
<contentLength>100160904</contentLength>
<infoHash>FD4CDDB7BBE722D17A018EFD875EB0695ED7159C</infoHash>
<magnetURI><![CDATA[magnet:?xt=urn:btih:FD4CDDB7BBE722D17A018EFD875EB0695ED7159C&dn=Thompson+Twins+-+1989+-+Big+Trash+%5BMP3%5D]]></magnetURI>
</torrent>
</item>
<item>
<title><![CDATA[Best of Sinners Crossroads reseed]]></title>
<link>magnet:?xt=urn:btih:94382555F8AAC3F7CB7220CAFE1B4CDC9F24D3EA&dn=Best+of+Sinners+Crossroads+reseed</link>
<comments>http://thepiratebay.se/torrent/7047018</comments>
<pubDate>Tue, 21 Feb 2012 00:15:35 +0100</pubDate>
<category domain="http://thepiratebay.se/browse/101"><![CDATA[Audio / Music]]></category>
<dc:creator><![CDATA[PhlamingoPhairy]]></dc:creator>
<guid>http://thepiratebay.se/torrent/7047018/</guid>
<torrent xmlns="http://xmlns.ezrss.it/0.1/">
<contentLength>168327476</contentLength>
<infoHash>94382555F8AAC3F7CB7220CAFE1B4CDC9F24D3EA</infoHash>
<magnetURI><![CDATA[magnet:?xt=urn:btih:94382555F8AAC3F7CB7220CAFE1B4CDC9F24D3EA&dn=Best+of+Sinners+Crossroads+reseed]]></magnetURI>
</torrent>
</item>
<item>
<title><![CDATA[Francesca Michielin (Distratto) 2011 [mp3]]]></title>
<link>magnet:?xt=urn:btih:DD24371F490DF246DCE05B0EE878B59C8F47125C&dn=Francesca+Michielin+%28Distratto%29+2011+%5Bmp3%5D</link>
<comments>http://thepiratebay.se/torrent/7046994</comments>
<pubDate>Tue, 21 Feb 2012 00:08:00 +0100</pubDate>
<category domain="http://thepiratebay.se/browse/101"><![CDATA[Audio / Music]]></category>
<dc:creator><![CDATA[lejipfox]]></dc:creator>
<guid>http://thepiratebay.se/torrent/7046994/</guid>
<torrent xmlns="http://xmlns.ezrss.it/0.1/">
<contentLength>11458750</contentLength>
<infoHash>DD24371F490DF246DCE05B0EE878B59C8F47125C</infoHash>
<magnetURI><![CDATA[magnet:?xt=urn:btih:DD24371F490DF246DCE05B0EE878B59C8F47125C&dn=Francesca+Michielin+%28Distratto%29+2011+%5Bmp3%5D]]></magnetURI>
</torrent>
</item>
<item>
<title><![CDATA[Ridddim Pack (December 2011) {by gtyouth}]]></title>
<link>magnet:?xt=urn:btih:4A8CD595283BE07E15100D429AD2D66D29C97908&dn=Ridddim+Pack+%28December+2011%29+%7Bby+gtyouth%7D</link>
<comments>http://thepiratebay.se/torrent/7046981</comments>
<pubDate>Tue, 21 Feb 2012 00:04:04 +0100</pubDate>
<category domain="http://thepiratebay.se/browse/199"><![CDATA[Audio / Other]]></category>
<dc:creator><![CDATA[gtyouth]]></dc:creator>
<guid>http://thepiratebay.se/torrent/7046981/</guid>
<torrent xmlns="http://xmlns.ezrss.it/0.1/">
<contentLength>2359156334</contentLength>
<infoHash>4A8CD595283BE07E15100D429AD2D66D29C97908</infoHash>
<magnetURI><![CDATA[magnet:?xt=urn:btih:4A8CD595283BE07E15100D429AD2D66D29C97908&dn=Ridddim+Pack+%28December+2011%29+%7Bby+gtyouth%7D]]></magnetURI>
</torrent>
</item>
<item>
<title><![CDATA[Benito Di Paula - 1974 - Gravado Ao Vivo (LP Rip FLAC) [jarax4u]]]></title>
<link>magnet:?xt=urn:btih:A85A6DFD01B374841855BF4717B22DF431AA130D&dn=Benito+Di+Paula+-+1974+-+Gravado+Ao+Vivo+%28LP+Rip+FLAC%29+%5Bjarax4u%5D</link>
<comments>http://thepiratebay.se/torrent/7046967</comments>
<pubDate>Mon, 20 Feb 2012 23:56:54 +0100</pubDate>
<category domain="http://thepiratebay.se/browse/104"><![CDATA[Audio / FLAC]]></category>
<dc:creator><![CDATA[jarax4u]]></dc:creator>
<guid>http://thepiratebay.se/torrent/7046967/</guid>
<torrent xmlns="http://xmlns.ezrss.it/0.1/">
<contentLength>247681857</contentLength>
<infoHash>A85A6DFD01B374841855BF4717B22DF431AA130D</infoHash>
<magnetURI><![CDATA[magnet:?xt=urn:btih:A85A6DFD01B374841855BF4717B22DF431AA130D&dn=Benito+Di+Paula+-+1974+-+Gravado+Ao+Vivo+%28LP+Rip+FLAC%29+%5Bjarax4u%5D]]></magnetURI>
</torrent>
</item>
<item>
<title><![CDATA[Benito Di Paula - 1974 - Gravado Ao Vivo (LP Rip OGG at 500) [ja]]></title>
<link>magnet:?xt=urn:btih:C54BB60E1F8F5D5944C98814F5FB3CBCBE61FC72&dn=Benito+Di+Paula+-+1974+-+Gravado+Ao+Vivo+%28LP+Rip+OGG+at+500%29+%5Bja</link>
<comments>http://thepiratebay.se/torrent/7046953</comments>
<pubDate>Mon, 20 Feb 2012 23:51:44 +0100</pubDate>
<category domain="http://thepiratebay.se/browse/199"><![CDATA[Audio / Other]]></category>
<dc:creator><![CDATA[jarax4u]]></dc:creator>
<guid>http://thepiratebay.se/torrent/7046953/</guid>
<torrent xmlns="http://xmlns.ezrss.it/0.1/">
<contentLength>173305077</contentLength>
<infoHash>C54BB60E1F8F5D5944C98814F5FB3CBCBE61FC72</infoHash>
<magnetURI><![CDATA[magnet:?xt=urn:btih:C54BB60E1F8F5D5944C98814F5FB3CBCBE61FC72&dn=Benito+Di+Paula+-+1974+-+Gravado+Ao+Vivo+%28LP+Rip+OGG+at+500%29+%5Bja]]></magnetURI>
</torrent>
</item>
<item>
<title><![CDATA[Benito Di Paula - 1974 - Gravado Ao Vivo (LP Rip MP3 at 320) [ja]]></title>
<link>magnet:?xt=urn:btih:A924A364F27732C4944CDB6E2AF80B7AB36F6BEB&dn=Benito+Di+Paula+-+1974+-+Gravado+Ao+Vivo+%28LP+Rip+MP3+at+320%29+%5Bja</link>
<comments>http://thepiratebay.se/torrent/7046929</comments>
<pubDate>Mon, 20 Feb 2012 23:44:40 +0100</pubDate>
<category domain="http://thepiratebay.se/browse/199"><![CDATA[Audio / Other]]></category>
<dc:creator><![CDATA[jarax4u]]></dc:creator>
<guid>http://thepiratebay.se/torrent/7046929/</guid>
<torrent xmlns="http://xmlns.ezrss.it/0.1/">
<contentLength>111035604</contentLength>
<infoHash>A924A364F27732C4944CDB6E2AF80B7AB36F6BEB</infoHash>
<magnetURI><![CDATA[magnet:?xt=urn:btih:A924A364F27732C4944CDB6E2AF80B7AB36F6BEB&dn=Benito+Di+Paula+-+1974+-+Gravado+Ao+Vivo+%28LP+Rip+MP3+at+320%29+%5Bja]]></magnetURI>
</torrent>
</item>
<item>
<title><![CDATA[Tears for Fears - Songs From the Big Chair[1984]1998[EAC-FLAC](o]]></title>
<link>magnet:?xt=urn:btih:BC7A54607B625B512B7491C30A732E65556DB494&dn=Tears+for+Fears+-+Songs+From+the+Big+Chair%5B1984%5D1998%5BEAC-FLAC%5D%28o</link>
<comments>http://thepiratebay.se/torrent/7046926</comments>
<pubDate>Mon, 20 Feb 2012 23:44:09 +0100</pubDate>
<category domain="http://thepiratebay.se/browse/104"><![CDATA[Audio / FLAC]]></category>
<dc:creator><![CDATA[oneanight]]></dc:creator>
<guid>http://thepiratebay.se/torrent/7046926/</guid>
<torrent xmlns="http://xmlns.ezrss.it/0.1/">
<contentLength>386198104</contentLength>
<infoHash>BC7A54607B625B512B7491C30A732E65556DB494</infoHash>
<magnetURI><![CDATA[magnet:?xt=urn:btih:BC7A54607B625B512B7491C30A732E65556DB494&dn=Tears+for+Fears+-+Songs+From+the+Big+Chair%5B1984%5D1998%5BEAC-FLAC%5D%28o]]></magnetURI>
</torrent>
</item>
<item>
<title><![CDATA[The Peter Schiff Show - 2012 Feb 20 MO [sebaygo1]]]></title>
<link>magnet:?xt=urn:btih:5E18AD4066DE9F4906F49D0A08A79F858C87CFE8&dn=The+Peter+Schiff+Show+-+2012+Feb+20+MO+%5Bsebaygo1%5D</link>
<comments>http://thepiratebay.se/torrent/7046904</comments>
<pubDate>Mon, 20 Feb 2012 23:36:33 +0100</pubDate>
<category domain="http://thepiratebay.se/browse/199"><![CDATA[Audio / Other]]></category>
<dc:creator><![CDATA[sebaygo1]]></dc:creator>
<guid>http://thepiratebay.se/torrent/7046904/</guid>
<torrent xmlns="http://xmlns.ezrss.it/0.1/">
<contentLength>29569957</contentLength>
<infoHash>5E18AD4066DE9F4906F49D0A08A79F858C87CFE8</infoHash>
<magnetURI><![CDATA[magnet:?xt=urn:btih:5E18AD4066DE9F4906F49D0A08A79F858C87CFE8&dn=The+Peter+Schiff+Show+-+2012+Feb+20+MO+%5Bsebaygo1%5D]]></magnetURI>
</torrent>
</item>
<item>
<title><![CDATA[Fun - We Are Young (ft. Janelle Monae)]]></title>
<link>magnet:?xt=urn:btih:396C2795A4268DA6E465DEE70443AF8CC3A7EE98&dn=Fun+-+We+Are+Young+%28ft.+Janelle+Monae%29</link>
<comments>http://thepiratebay.se/torrent/7046897</comments>
<pubDate>Mon, 20 Feb 2012 23:35:31 +0100</pubDate>
<category domain="http://thepiratebay.se/browse/101"><![CDATA[Audio / Music]]></category>
<dc:creator><![CDATA[lejipfox]]></dc:creator>
<guid>http://thepiratebay.se/torrent/7046897/</guid>
<torrent xmlns="http://xmlns.ezrss.it/0.1/">
<contentLength>7481750</contentLength>
<infoHash>396C2795A4268DA6E465DEE70443AF8CC3A7EE98</infoHash>
<magnetURI><![CDATA[magnet:?xt=urn:btih:396C2795A4268DA6E465DEE70443AF8CC3A7EE98&dn=Fun+-+We+Are+Young+%28ft.+Janelle+Monae%29]]></magnetURI>
</torrent>
</item>
<item>
<title><![CDATA[Various - 1999 - The Music of Friedrich Nietzsche (2-CD) [TQMP]]]></title>
<link>magnet:?xt=urn:btih:657357B61CAFC3873B31C6D2E0AC7527FE1727E3&dn=Various+-+1999+-+The+Music+of+Friedrich+Nietzsche+%282-CD%29+%5BTQMP%5D</link>
<comments>http://thepiratebay.se/torrent/7046877</comments>
<pubDate>Mon, 20 Feb 2012 23:27:22 +0100</pubDate>
<category domain="http://thepiratebay.se/browse/104"><![CDATA[Audio / FLAC]]></category>
<dc:creator><![CDATA[quose]]></dc:creator>
<guid>http://thepiratebay.se/torrent/7046877/</guid>
<torrent xmlns="http://xmlns.ezrss.it/0.1/">
<contentLength>391679383</contentLength>
<infoHash>657357B61CAFC3873B31C6D2E0AC7527FE1727E3</infoHash>
<magnetURI><![CDATA[magnet:?xt=urn:btih:657357B61CAFC3873B31C6D2E0AC7527FE1727E3&dn=Various+-+1999+-+The+Music+of+Friedrich+Nietzsche+%282-CD%29+%5BTQMP%5D]]></magnetURI>
</torrent>
</item>
<item>
<title><![CDATA[Jeff Healy Band - See The Light (1988)]]></title>
<link>magnet:?xt=urn:btih:4BCDB15C0A807A933F3CC8AE2B3D028A37E7A1B2&dn=Jeff+Healy+Band+-+See+The+Light+%281988%29</link>
<comments>http://thepiratebay.se/torrent/7046832</comments>
<pubDate>Mon, 20 Feb 2012 23:16:11 +0100</pubDate>
<category domain="http://thepiratebay.se/browse/101"><![CDATA[Audio / Music]]></category>
<dc:creator><![CDATA[RMG02]]></dc:creator>
<guid>http://thepiratebay.se/torrent/7046832/</guid>
<torrent xmlns="http://xmlns.ezrss.it/0.1/">
<contentLength>119394444</contentLength>
<infoHash>4BCDB15C0A807A933F3CC8AE2B3D028A37E7A1B2</infoHash>
<magnetURI><![CDATA[magnet:?xt=urn:btih:4BCDB15C0A807A933F3CC8AE2B3D028A37E7A1B2&dn=Jeff+Healy+Band+-+See+The+Light+%281988%29]]></magnetURI>
</torrent>
</item>
<item>
<title><![CDATA[The Dennis Prager Radio Show FEB-20-2012 MON CF 64K]]></title>
<link>magnet:?xt=urn:btih:7C28016182EF42DDC537B2B3294EC38AF2301BF2&dn=The+Dennis+Prager+Radio+Show+FEB-20-2012+MON++CF++64K</link>
<comments>http://thepiratebay.se/torrent/7046777</comments>
<pubDate>Mon, 20 Feb 2012 23:06:07 +0100</pubDate>
<category domain="http://thepiratebay.se/browse/199"><![CDATA[Audio / Other]]></category>
<dc:creator><![CDATA[CAPTAIN7SS]]></dc:creator>
<guid>http://thepiratebay.se/torrent/7046777/</guid>
<torrent xmlns="http://xmlns.ezrss.it/0.1/">
<contentLength>51050077</contentLength>
<infoHash>7C28016182EF42DDC537B2B3294EC38AF2301BF2</infoHash>
<magnetURI><![CDATA[magnet:?xt=urn:btih:7C28016182EF42DDC537B2B3294EC38AF2301BF2&dn=The+Dennis+Prager+Radio+Show+FEB-20-2012+MON++CF++64K]]></magnetURI>
</torrent>
</item>
<item>
<title><![CDATA[The Rush Liimbaugh Radio Show FEB-20-2012 MON KCOL DENVER LIVE 4]]></title>
<link>magnet:?xt=urn:btih:A914F54D242A566632D511C82377A890BBEC5831&dn=The+Rush+Liimbaugh+Radio+Show+FEB-20-2012+MON+KCOL+DENVER+LIVE+4</link>
<comments>http://thepiratebay.se/torrent/7046768</comments>
<pubDate>Mon, 20 Feb 2012 23:03:43 +0100</pubDate>
<category domain="http://thepiratebay.se/browse/199"><![CDATA[Audio / Other]]></category>
<dc:creator><![CDATA[CAPTAIN7SS]]></dc:creator>
<guid>http://thepiratebay.se/torrent/7046768/</guid>
<torrent xmlns="http://xmlns.ezrss.it/0.1/">
<contentLength>57073704</contentLength>
<infoHash>A914F54D242A566632D511C82377A890BBEC5831</infoHash>
<magnetURI><![CDATA[magnet:?xt=urn:btih:A914F54D242A566632D511C82377A890BBEC5831&dn=The+Rush+Liimbaugh+Radio+Show+FEB-20-2012+MON+KCOL+DENVER+LIVE+4]]></magnetURI>
</torrent>
</item>
<item>
<title><![CDATA[Dj Fletch - Southern Swag Vol.1.Mixtape-2012]]></title>
<link>magnet:?xt=urn:btih:01D24611657E653CB0761EA126267F2D112E2DCD&dn=Dj+Fletch+-+Southern+Swag+Vol.1.Mixtape-2012</link>
<comments>http://thepiratebay.se/torrent/7046753</comments>
<pubDate>Mon, 20 Feb 2012 22:57:27 +0100</pubDate>
<category domain="http://thepiratebay.se/browse/101"><![CDATA[Audio / Music]]></category>
<dc:creator><![CDATA[boy74]]></dc:creator>
<guid>http://thepiratebay.se/torrent/7046753/</guid>
<torrent xmlns="http://xmlns.ezrss.it/0.1/">
<contentLength>107170413</contentLength>
<infoHash>01D24611657E653CB0761EA126267F2D112E2DCD</infoHash>
<magnetURI><![CDATA[magnet:?xt=urn:btih:01D24611657E653CB0761EA126267F2D112E2DCD&dn=Dj+Fletch+-+Southern+Swag+Vol.1.Mixtape-2012]]></magnetURI>
</torrent>
</item>
<item>
<title><![CDATA[Carny (Original Mix) - Pleasurekraft (HD).mp4]]></title>
<link>magnet:?xt=urn:btih:833E639E4B6B6C00DB671C29BBCED7F2090C9D79&dn=Carny+%28Original+Mix%29+-+Pleasurekraft+%28HD%29.mp4</link>
<comments>http://thepiratebay.se/torrent/7046716</comments>
<pubDate>Mon, 20 Feb 2012 22:40:22 +0100</pubDate>
<category domain="http://thepiratebay.se/browse/101"><![CDATA[Audio / Music]]></category>
<dc:creator><![CDATA[manguila]]></dc:creator>
<guid>http://thepiratebay.se/torrent/7046716/</guid>
<torrent xmlns="http://xmlns.ezrss.it/0.1/">
<contentLength>11080000</contentLength>
<infoHash>833E639E4B6B6C00DB671C29BBCED7F2090C9D79</infoHash>
<magnetURI><![CDATA[magnet:?xt=urn:btih:833E639E4B6B6C00DB671C29BBCED7F2090C9D79&dn=Carny+%28Original+Mix%29+-+Pleasurekraft+%28HD%29.mp4]]></magnetURI>
</torrent>
</item>
<item>
<title><![CDATA[Dripping Wet - Cherie Lily 2 min 16 sec Teaser.mp3]]></title>
<link>magnet:?xt=urn:btih:07F07C1D5B4F2C950091B871265D47070292092D&dn=Dripping+Wet+-+Cherie+Lily+2+min+16+sec+Teaser.mp3</link>
<comments>http://thepiratebay.se/torrent/7046710</comments>
<pubDate>Mon, 20 Feb 2012 22:37:04 +0100</pubDate>
<category domain="http://thepiratebay.se/browse/101"><![CDATA[Audio / Music]]></category>
<dc:creator><![CDATA[shallow2]]></dc:creator>
<guid>http://thepiratebay.se/torrent/7046710/</guid>
<torrent xmlns="http://xmlns.ezrss.it/0.1/">
<contentLength>3279744</contentLength>
<infoHash>07F07C1D5B4F2C950091B871265D47070292092D</infoHash>
<magnetURI><![CDATA[magnet:?xt=urn:btih:07F07C1D5B4F2C950091B871265D47070292092D&dn=Dripping+Wet+-+Cherie+Lily+2+min+16+sec+Teaser.mp3]]></magnetURI>
</torrent>
</item>
<item>
<title><![CDATA[Novena a Nuestra Se&amp;Atilde;&amp;plusmn;ora del Milagro [Santuario de]]></title>
<link>magnet:?xt=urn:btih:C656A86BF569892055C8C936F30C154EB25CE730&dn=Novena+a+Nuestra+Se%26Atilde%3B%26plusmn%3Bora+del+Milagro+%5BSantuario+de</link>
<comments>http://thepiratebay.se/torrent/7046708</comments>
<pubDate>Mon, 20 Feb 2012 22:36:47 +0100</pubDate>
<category domain="http://thepiratebay.se/browse/199"><![CDATA[Audio / Other]]></category>
<dc:creator><![CDATA[JorgeLuisMrtnz]]></dc:creator>
<guid>http://thepiratebay.se/torrent/7046708/</guid>
<torrent xmlns="http://xmlns.ezrss.it/0.1/">
<contentLength>10956667</contentLength>
<infoHash>C656A86BF569892055C8C936F30C154EB25CE730</infoHash>
<magnetURI><![CDATA[magnet:?xt=urn:btih:C656A86BF569892055C8C936F30C154EB25CE730&dn=Novena+a+Nuestra+Se%26Atilde%3B%26plusmn%3Bora+del+Milagro+%5BSantuario+de]]></magnetURI>
</torrent>
</item>
<item>
<title><![CDATA[Giorgia - Inevitabile [feat. Eros Ramazzotti]]]></title>
<link>magnet:?xt=urn:btih:BE03DC1E3785C7E339D21B974E96E5D01042A57D&dn=Giorgia+-+Inevitabile+%5Bfeat.+Eros+Ramazzotti%5D</link>
<comments>http://thepiratebay.se/torrent/7046705</comments>
<pubDate>Mon, 20 Feb 2012 22:19:34 +0100</pubDate>
<category domain="http://thepiratebay.se/browse/101"><![CDATA[Audio / Music]]></category>
<dc:creator><![CDATA[lejipfox]]></dc:creator>
<guid>http://thepiratebay.se/torrent/7046705/</guid>
<torrent xmlns="http://xmlns.ezrss.it/0.1/">
<contentLength>6326500</contentLength>
<infoHash>BE03DC1E3785C7E339D21B974E96E5D01042A57D</infoHash>
<magnetURI><![CDATA[magnet:?xt=urn:btih:BE03DC1E3785C7E339D21B974E96E5D01042A57D&dn=Giorgia+-+Inevitabile+%5Bfeat.+Eros+Ramazzotti%5D]]></magnetURI>
</torrent>
</item>
<item>
<title><![CDATA[Metodo.Linden-Ansiedad.Panico]]></title>
<link>magnet:?xt=urn:btih:C68147F63C1657E4E0C6A117A007606869157EF6&dn=Metodo.Linden-Ansiedad.Panico</link>
<comments>http://thepiratebay.se/torrent/7046681</comments>
<pubDate>Mon, 20 Feb 2012 22:03:44 +0100</pubDate>
<category domain="http://thepiratebay.se/browse/103"><![CDATA[Audio / Sound clips]]></category>
<dc:creator><![CDATA[guguilatin]]></dc:creator>
<guid>http://thepiratebay.se/torrent/7046681/</guid>
<torrent xmlns="http://xmlns.ezrss.it/0.1/">
<contentLength>161146505</contentLength>
<infoHash>C68147F63C1657E4E0C6A117A007606869157EF6</infoHash>
<magnetURI><![CDATA[magnet:?xt=urn:btih:C68147F63C1657E4E0C6A117A007606869157EF6&dn=Metodo.Linden-Ansiedad.Panico]]></magnetURI>
</torrent>
</item>
<item>
<title><![CDATA[Mat Zo Collection (256, 320 kbps)]]></title>
<link>magnet:?xt=urn:btih:C54504F241498252DBEA75EE538CDFB7B1AAE47F&dn=Mat+Zo+Collection+%28256%2C+320+kbps%29</link>
<comments>http://thepiratebay.se/torrent/7046672</comments>
<pubDate>Mon, 20 Feb 2012 21:56:18 +0100</pubDate>
<category domain="http://thepiratebay.se/browse/101"><![CDATA[Audio / Music]]></category>
<dc:creator><![CDATA[MitsEvX]]></dc:creator>
<guid>http://thepiratebay.se/torrent/7046672/</guid>
<torrent xmlns="http://xmlns.ezrss.it/0.1/">
<contentLength>326338340</contentLength>
<infoHash>C54504F241498252DBEA75EE538CDFB7B1AAE47F</infoHash>
<magnetURI><![CDATA[magnet:?xt=urn:btih:C54504F241498252DBEA75EE538CDFB7B1AAE47F&dn=Mat+Zo+Collection+%28256%2C+320+kbps%29]]></magnetURI>
</torrent>
</item>
<item>
<title><![CDATA[[House] Matt Darey - Nocturnal 341 (Joy Kitikonti guest mix)]]></title>
<link>magnet:?xt=urn:btih:4E7540D35479676E2F0B5C434C2876E89E00D6ED&dn=%5BHouse%5D+Matt+Darey+-+Nocturnal+341+%28Joy+Kitikonti+guest+mix%29</link>
<comments>http://thepiratebay.se/torrent/7046670</comments>
<pubDate>Mon, 20 Feb 2012 21:56:00 +0100</pubDate>
<category domain="http://thepiratebay.se/browse/101"><![CDATA[Audio / Music]]></category>
<dc:creator><![CDATA[promoparty]]></dc:creator>
<guid>http://thepiratebay.se/torrent/7046670/</guid>
<torrent xmlns="http://xmlns.ezrss.it/0.1/">
<contentLength>367543114</contentLength>
<infoHash>4E7540D35479676E2F0B5C434C2876E89E00D6ED</infoHash>
<magnetURI><![CDATA[magnet:?xt=urn:btih:4E7540D35479676E2F0B5C434C2876E89E00D6ED&dn=%5BHouse%5D+Matt+Darey+-+Nocturnal+341+%28Joy+Kitikonti+guest+mix%29]]></magnetURI>
</torrent>
</item>
<item>
<title><![CDATA[Bruce Springsteen - Wrecking Ball CDRip 2012 [Bubanee]]]></title>
<link>magnet:?xt=urn:btih:9211A0BF0C5B8989CACCF48734DCF8F0BD28F369&dn=Bruce+Springsteen+-+Wrecking+Ball+CDRip+2012+%5BBubanee%5D</link>
<comments>http://thepiratebay.se/torrent/7046657</comments>
<pubDate>Mon, 20 Feb 2012 21:47:42 +0100</pubDate>
<category domain="http://thepiratebay.se/browse/199"><![CDATA[Audio / Other]]></category>
<dc:creator><![CDATA[bubanee]]></dc:creator>
<guid>http://thepiratebay.se/torrent/7046657/</guid>
<torrent xmlns="http://xmlns.ezrss.it/0.1/">
<contentLength>98524959</contentLength>
<infoHash>9211A0BF0C5B8989CACCF48734DCF8F0BD28F369</infoHash>
<magnetURI><![CDATA[magnet:?xt=urn:btih:9211A0BF0C5B8989CACCF48734DCF8F0BD28F369&dn=Bruce+Springsteen+-+Wrecking+Ball+CDRip+2012+%5BBubanee%5D]]></magnetURI>
</torrent>
</item>
<item>
<title><![CDATA[Dana Winner - 2004 - Thank You For The Music DSM]]></title>
<link>magnet:?xt=urn:btih:CABE823C286BE13D07F902F0FA0864E055B0A32D&dn=Dana+Winner+-+2004+-+Thank+You+For+The+Music+DSM</link>
<comments>http://thepiratebay.se/torrent/7046656</comments>
<pubDate>Mon, 20 Feb 2012 21:46:40 +0100</pubDate>
<category domain="http://thepiratebay.se/browse/101"><![CDATA[Audio / Music]]></category>
<dc:creator><![CDATA[DeSmartlapMan]]></dc:creator>
<guid>http://thepiratebay.se/torrent/7046656/</guid>
<torrent xmlns="http://xmlns.ezrss.it/0.1/">
<contentLength>127056425</contentLength>
<infoHash>CABE823C286BE13D07F902F0FA0864E055B0A32D</infoHash>
<magnetURI><![CDATA[magnet:?xt=urn:btih:CABE823C286BE13D07F902F0FA0864E055B0A32D&dn=Dana+Winner+-+2004+-+Thank+You+For+The+Music+DSM]]></magnetURI>
</torrent>
</item>
<item>
<title><![CDATA[Dana Winner - 2004 - My Hart Is In Afrika DSM]]></title>
<link>magnet:?xt=urn:btih:573FFBE49484D8471FA4D3069550FD821F778519&dn=Dana+Winner+-+2004+-+My+Hart+Is+In+Afrika+DSM</link>
<comments>http://thepiratebay.se/torrent/7046651</comments>
<pubDate>Mon, 20 Feb 2012 21:42:30 +0100</pubDate>
<category domain="http://thepiratebay.se/browse/101"><![CDATA[Audio / Music]]></category>
<dc:creator><![CDATA[DeSmartlapMan]]></dc:creator>
<guid>http://thepiratebay.se/torrent/7046651/</guid>
<torrent xmlns="http://xmlns.ezrss.it/0.1/">
<contentLength>68741829</contentLength>
<infoHash>573FFBE49484D8471FA4D3069550FD821F778519</infoHash>
<magnetURI><![CDATA[magnet:?xt=urn:btih:573FFBE49484D8471FA4D3069550FD821F778519&dn=Dana+Winner+-+2004+-+My+Hart+Is+In+Afrika+DSM]]></magnetURI>
</torrent>
</item>
<item>
<title><![CDATA[Allman Brothers - Idlewild South [1970] 2007 [EAC - FLAC](oan) M]]></title>
<link>magnet:?xt=urn:btih:72158ED9C573AE3BD68079995FABB2BAE95C9C91&dn=Allman+Brothers+-+Idlewild+South+%5B1970%5D+2007+%5BEAC+-+FLAC%5D%28oan%29+M</link>
<comments>http://thepiratebay.se/torrent/7046649</comments>
<pubDate>Mon, 20 Feb 2012 21:41:32 +0100</pubDate>
<category domain="http://thepiratebay.se/browse/104"><![CDATA[Audio / FLAC]]></category>
<dc:creator><![CDATA[oneanight]]></dc:creator>
<guid>http://thepiratebay.se/torrent/7046649/</guid>
<torrent xmlns="http://xmlns.ezrss.it/0.1/">
<contentLength>211398584</contentLength>
<infoHash>72158ED9C573AE3BD68079995FABB2BAE95C9C91</infoHash>
<magnetURI><![CDATA[magnet:?xt=urn:btih:72158ED9C573AE3BD68079995FABB2BAE95C9C91&dn=Allman+Brothers+-+Idlewild+South+%5B1970%5D+2007+%5BEAC+-+FLAC%5D%28oan%29+M]]></magnetURI>
</torrent>
</item>
<item>
<title><![CDATA[Dana Winner - 2003 - M&amp;Atilde;&amp;curren;rchenland Der Gef&amp;Atilde;&amp;]]></title>
<link>magnet:?xt=urn:btih:45EF241A256C0300E21930AFD40021671A72627B&dn=Dana+Winner+-+2003+-+M%26Atilde%3B%26curren%3Brchenland+Der+Gef%26Atilde%3B%26</link>
<comments>http://thepiratebay.se/torrent/7046647</comments>
<pubDate>Mon, 20 Feb 2012 21:37:54 +0100</pubDate>
<category domain="http://thepiratebay.se/browse/101"><![CDATA[Audio / Music]]></category>
<dc:creator><![CDATA[DeSmartlapMan]]></dc:creator>
<guid>http://thepiratebay.se/torrent/7046647/</guid>
<torrent xmlns="http://xmlns.ezrss.it/0.1/">
<contentLength>61871857</contentLength>
<infoHash>45EF241A256C0300E21930AFD40021671A72627B</infoHash>
<magnetURI><![CDATA[magnet:?xt=urn:btih:45EF241A256C0300E21930AFD40021671A72627B&dn=Dana+Winner+-+2003+-+M%26Atilde%3B%26curren%3Brchenland+Der+Gef%26Atilde%3B%26]]></magnetURI>
</torrent>
</item>
<item>
<title><![CDATA[VA - Minimal Bounce (CLO08265) WEB 2012-ALKi]]></title>
<link>magnet:?xt=urn:btih:73DE1DEADB7EA648BAA9FFE8B412679B6C4744FC&dn=VA+-+Minimal+Bounce+%28CLO08265%29+WEB+2012-ALKi</link>
<comments>http://thepiratebay.se/torrent/7046645</comments>
<pubDate>Mon, 20 Feb 2012 21:36:46 +0100</pubDate>
<category domain="http://thepiratebay.se/browse/101"><![CDATA[Audio / Music]]></category>
<dc:creator><![CDATA[xtrancex]]></dc:creator>
<guid>http://thepiratebay.se/torrent/7046645/</guid>
<torrent xmlns="http://xmlns.ezrss.it/0.1/">
<contentLength>321376394</contentLength>
<infoHash>73DE1DEADB7EA648BAA9FFE8B412679B6C4744FC</infoHash>
<magnetURI><![CDATA[magnet:?xt=urn:btih:73DE1DEADB7EA648BAA9FFE8B412679B6C4744FC&dn=VA+-+Minimal+Bounce+%28CLO08265%29+WEB+2012-ALKi]]></magnetURI>
</torrent>
</item>
<item>
<title><![CDATA[[Trance] DJ Feel - TranceMission (16-02-2012)]]></title>
<link>magnet:?xt=urn:btih:220E08E138C513949F5E1C9E3AEE9AE07CD1FBB6&dn=%5BTrance%5D+DJ+Feel+-+TranceMission+%2816-02-2012%29</link>
<comments>http://thepiratebay.se/torrent/7046643</comments>
<pubDate>Mon, 20 Feb 2012 21:34:48 +0100</pubDate>
<category domain="http://thepiratebay.se/browse/101"><![CDATA[Audio / Music]]></category>
<dc:creator><![CDATA[promoparty]]></dc:creator>
<guid>http://thepiratebay.se/torrent/7046643/</guid>
<torrent xmlns="http://xmlns.ezrss.it/0.1/">
<contentLength>355707939</contentLength>
<infoHash>220E08E138C513949F5E1C9E3AEE9AE07CD1FBB6</infoHash>
<magnetURI><![CDATA[magnet:?xt=urn:btih:220E08E138C513949F5E1C9E3AEE9AE07CD1FBB6&dn=%5BTrance%5D+DJ+Feel+-+TranceMission+%2816-02-2012%29]]></magnetURI>
</torrent>
</item>
<item>
<title><![CDATA[Dana Winner - 2003 - 10 Jaar Het Allerbeste Van DSM]]></title>
<link>magnet:?xt=urn:btih:F2326F4DDC5CDC180DDBD0654DDCBA48893C403C&dn=Dana+Winner+-+2003+-+10+Jaar+Het+Allerbeste+Van+DSM</link>
<comments>http://thepiratebay.se/torrent/7046641</comments>
<pubDate>Mon, 20 Feb 2012 21:34:05 +0100</pubDate>
<category domain="http://thepiratebay.se/browse/101"><![CDATA[Audio / Music]]></category>
<dc:creator><![CDATA[DeSmartlapMan]]></dc:creator>
<guid>http://thepiratebay.se/torrent/7046641/</guid>
<torrent xmlns="http://xmlns.ezrss.it/0.1/">
<contentLength>71377941</contentLength>
<infoHash>F2326F4DDC5CDC180DDBD0654DDCBA48893C403C</infoHash>
<magnetURI><![CDATA[magnet:?xt=urn:btih:F2326F4DDC5CDC180DDBD0654DDCBA48893C403C&dn=Dana+Winner+-+2003+-+10+Jaar+Het+Allerbeste+Van+DSM]]></magnetURI>
</torrent>
</item>
<item>
<title><![CDATA[WebbyBoy - 303 (Funk, HipHop, Chill)]]></title>
<link>magnet:?xt=urn:btih:41E9A0D74DA0E419A3E2288F2C3470A40783A244&dn=WebbyBoy+-+303+%28Funk%2C+HipHop%2C+Chill%29</link>
<comments>http://thepiratebay.se/torrent/7046639</comments>
<pubDate>Mon, 20 Feb 2012 21:33:29 +0100</pubDate>
<category domain="http://thepiratebay.se/browse/199"><![CDATA[Audio / Other]]></category>
<dc:creator><![CDATA[niceneasyy]]></dc:creator>
<guid>http://thepiratebay.se/torrent/7046639/</guid>
<torrent xmlns="http://xmlns.ezrss.it/0.1/">
<contentLength>130800968</contentLength>
<infoHash>41E9A0D74DA0E419A3E2288F2C3470A40783A244</infoHash>
<magnetURI><![CDATA[magnet:?xt=urn:btih:41E9A0D74DA0E419A3E2288F2C3470A40783A244&dn=WebbyBoy+-+303+%28Funk%2C+HipHop%2C+Chill%29]]></magnetURI>
</torrent>
</item>
<item>
<title><![CDATA[Dana Winner - 2002 - Unforgettable Too DSM]]></title>
<link>magnet:?xt=urn:btih:3CF7C4D12B54E441DD8BCC4AEE0AB1A62E9287B4&dn=Dana+Winner+-+2002+-+Unforgettable+Too+DSM</link>
<comments>http://thepiratebay.se/torrent/7046633</comments>
<pubDate>Mon, 20 Feb 2012 21:29:56 +0100</pubDate>
<category domain="http://thepiratebay.se/browse/101"><![CDATA[Audio / Music]]></category>
<dc:creator><![CDATA[DeSmartlapMan]]></dc:creator>
<guid>http://thepiratebay.se/torrent/7046633/</guid>
<torrent xmlns="http://xmlns.ezrss.it/0.1/">
<contentLength>59613064</contentLength>
<infoHash>3CF7C4D12B54E441DD8BCC4AEE0AB1A62E9287B4</infoHash>
<magnetURI><![CDATA[magnet:?xt=urn:btih:3CF7C4D12B54E441DD8BCC4AEE0AB1A62E9287B4&dn=Dana+Winner+-+2002+-+Unforgettable+Too+DSM]]></magnetURI>
</torrent>
</item>
<item>
<title><![CDATA[RBD - Empezar Desde Cero (Fan Edition) 260 Kbs+]]></title>
<link>magnet:?xt=urn:btih:1C7C6A1B533A6BA09EDDD0AF38DC4C9938B55234&dn=RBD+-+Empezar+Desde+Cero+%28Fan+Edition%29+260+Kbs%2B</link>
<comments>http://thepiratebay.se/torrent/7046632</comments>
<pubDate>Mon, 20 Feb 2012 21:29:54 +0100</pubDate>
<category domain="http://thepiratebay.se/browse/102"><![CDATA[Audio / Audio books]]></category>
<dc:creator><![CDATA[Cyberele]]></dc:creator>
<guid>http://thepiratebay.se/torrent/7046632/</guid>
<torrent xmlns="http://xmlns.ezrss.it/0.1/">
<contentLength>124080788</contentLength>
<infoHash>1C7C6A1B533A6BA09EDDD0AF38DC4C9938B55234</infoHash>
<magnetURI><![CDATA[magnet:?xt=urn:btih:1C7C6A1B533A6BA09EDDD0AF38DC4C9938B55234&dn=RBD+-+Empezar+Desde+Cero+%28Fan+Edition%29+260+Kbs%2B]]></magnetURI>
</torrent>
</item>
<item>
<title><![CDATA[Hardstyle top 40 December 2011 3pp0 (unmixed)]]></title>
<link>magnet:?xt=urn:btih:3008D36C3483F60AB8C1E3770CA662C222FEB3AE&dn=Hardstyle+top+40+December+2011+3pp0+%28unmixed%29</link>
<comments>http://thepiratebay.se/torrent/7046631</comments>
<pubDate>Mon, 20 Feb 2012 21:29:18 +0100</pubDate>
<category domain="http://thepiratebay.se/browse/101"><![CDATA[Audio / Music]]></category>
<dc:creator><![CDATA[3pp0]]></dc:creator>
<guid>http://thepiratebay.se/torrent/7046631/</guid>
<torrent xmlns="http://xmlns.ezrss.it/0.1/">
<contentLength>513251906</contentLength>
<infoHash>3008D36C3483F60AB8C1E3770CA662C222FEB3AE</infoHash>
<magnetURI><![CDATA[magnet:?xt=urn:btih:3008D36C3483F60AB8C1E3770CA662C222FEB3AE&dn=Hardstyle+top+40+December+2011+3pp0+%28unmixed%29]]></magnetURI>
</torrent>
</item>
<item>
<title><![CDATA[Dana Winner - 2001 - Rainbows Of Love DSM]]></title>
<link>magnet:?xt=urn:btih:57C61F91329F1EE02334A4D8355D9FFFDD4381D7&dn=Dana+Winner+-+2001+-+Rainbows+Of+Love+DSM</link>
<comments>http://thepiratebay.se/torrent/7046620</comments>
<pubDate>Mon, 20 Feb 2012 21:26:19 +0100</pubDate>
<category domain="http://thepiratebay.se/browse/101"><![CDATA[Audio / Music]]></category>
<dc:creator><![CDATA[DeSmartlapMan]]></dc:creator>
<guid>http://thepiratebay.se/torrent/7046620/</guid>
<torrent xmlns="http://xmlns.ezrss.it/0.1/">
<contentLength>51358712</contentLength>
<infoHash>57C61F91329F1EE02334A4D8355D9FFFDD4381D7</infoHash>
<magnetURI><![CDATA[magnet:?xt=urn:btih:57C61F91329F1EE02334A4D8355D9FFFDD4381D7&dn=Dana+Winner+-+2001+-+Rainbows+Of+Love+DSM]]></magnetURI>
</torrent>
</item>
<item>
<title><![CDATA[Dana Winner - 2000 - Licht en Liefde DSM]]></title>
<link>magnet:?xt=urn:btih:A62225128DA2549DAD48476302B5B28985C42769&dn=Dana+Winner+-+2000+-+Licht+en+Liefde+DSM</link>
<comments>http://thepiratebay.se/torrent/7046608</comments>
<pubDate>Mon, 20 Feb 2012 21:21:41 +0100</pubDate>
<category domain="http://thepiratebay.se/browse/101"><![CDATA[Audio / Music]]></category>
<dc:creator><![CDATA[DeSmartlapMan]]></dc:creator>
<guid>http://thepiratebay.se/torrent/7046608/</guid>
<torrent xmlns="http://xmlns.ezrss.it/0.1/">
<contentLength>75953995</contentLength>
<infoHash>A62225128DA2549DAD48476302B5B28985C42769</infoHash>
<magnetURI><![CDATA[magnet:?xt=urn:btih:A62225128DA2549DAD48476302B5B28985C42769&dn=Dana+Winner+-+2000+-+Licht+en+Liefde+DSM]]></magnetURI>
</torrent>
</item>
<item>
<title><![CDATA[Tiesto - Club Life 255 (19-02-2012)]]></title>
<link>magnet:?xt=urn:btih:C1F7F6EFD685245E0FCF7B0615FFF758E75DEEFF&dn=Tiesto+-+Club+Life+255+%2819-02-2012%29</link>
<comments>http://thepiratebay.se/torrent/7046607</comments>
<pubDate>Mon, 20 Feb 2012 21:21:38 +0100</pubDate>
<category domain="http://thepiratebay.se/browse/101"><![CDATA[Audio / Music]]></category>
<dc:creator><![CDATA[mika7272]]></dc:creator>
<guid>http://thepiratebay.se/torrent/7046607/</guid>
<torrent xmlns="http://xmlns.ezrss.it/0.1/">
<contentLength>221047405</contentLength>
<infoHash>C1F7F6EFD685245E0FCF7B0615FFF758E75DEEFF</infoHash>
<magnetURI><![CDATA[magnet:?xt=urn:btih:C1F7F6EFD685245E0FCF7B0615FFF758E75DEEFF&dn=Tiesto+-+Club+Life+255+%2819-02-2012%29]]></magnetURI>
</torrent>
</item>
<item>
<title><![CDATA[Solid Base - 5 Albums, 11 Singles (1994-2002)]]></title>
<link>magnet:?xt=urn:btih:28A3FA5878BF6D1EC82ACE718356CE93B9443888&dn=Solid+Base+-+5+Albums%2C+11+Singles+%281994-2002%29</link>
<comments>http://thepiratebay.se/torrent/7046605</comments>
<pubDate>Mon, 20 Feb 2012 21:21:30 +0100</pubDate>
<category domain="http://thepiratebay.se/browse/104"><![CDATA[Audio / FLAC]]></category>
<dc:creator><![CDATA[tiran1976]]></dc:creator>
<guid>http://thepiratebay.se/torrent/7046605/</guid>
<torrent xmlns="http://xmlns.ezrss.it/0.1/">
<contentLength>4746959240</contentLength>
<infoHash>28A3FA5878BF6D1EC82ACE718356CE93B9443888</infoHash>
<magnetURI><![CDATA[magnet:?xt=urn:btih:28A3FA5878BF6D1EC82ACE718356CE93B9443888&dn=Solid+Base+-+5+Albums%2C+11+Singles+%281994-2002%29]]></magnetURI>
</torrent>
</item>
<item>
<title><![CDATA[THIS DATE IN HOWARD STERN HISTORY - CF128K - 02-20-12 [WDM]]]></title>
<link>magnet:?xt=urn:btih:465C2C62B82E33EBD804B08A3E400F178B47DEA1&dn=THIS+DATE+IN+HOWARD+STERN+HISTORY+-+CF128K+-+02-20-12+%5BWDM%5D</link>
<comments>http://thepiratebay.se/torrent/7046604</comments>
<pubDate>Mon, 20 Feb 2012 21:21:00 +0100</pubDate>
<category domain="http://thepiratebay.se/browse/199"><![CDATA[Audio / Other]]></category>
<dc:creator><![CDATA[wushdishmeen]]></dc:creator>
<guid>http://thepiratebay.se/torrent/7046604/</guid>
<torrent xmlns="http://xmlns.ezrss.it/0.1/">
<contentLength>288668290</contentLength>
<infoHash>465C2C62B82E33EBD804B08A3E400F178B47DEA1</infoHash>
<magnetURI><![CDATA[magnet:?xt=urn:btih:465C2C62B82E33EBD804B08A3E400F178B47DEA1&dn=THIS+DATE+IN+HOWARD+STERN+HISTORY+-+CF128K+-+02-20-12+%5BWDM%5D]]></magnetURI>
</torrent>
</item>
<item>
<title><![CDATA[THIS DATE IN HOWARD STERN HISTORY - CF64K - 02-20-12 [WDM]]]></title>
<link>magnet:?xt=urn:btih:AFFB307B27E5F5854DAFB33E6A8ECB87A5F3BDAF&dn=THIS+DATE+IN+HOWARD+STERN+HISTORY+-+CF64K+-+02-20-12+%5BWDM%5D</link>
<comments>http://thepiratebay.se/torrent/7046601</comments>
<pubDate>Mon, 20 Feb 2012 21:20:24 +0100</pubDate>
<category domain="http://thepiratebay.se/browse/199"><![CDATA[Audio / Other]]></category>
<dc:creator><![CDATA[wushdishmeen]]></dc:creator>
<guid>http://thepiratebay.se/torrent/7046601/</guid>
<torrent xmlns="http://xmlns.ezrss.it/0.1/">
<contentLength>144439968</contentLength>
<infoHash>AFFB307B27E5F5854DAFB33E6A8ECB87A5F3BDAF</infoHash>
<magnetURI><![CDATA[magnet:?xt=urn:btih:AFFB307B27E5F5854DAFB33E6A8ECB87A5F3BDAF&dn=THIS+DATE+IN+HOWARD+STERN+HISTORY+-+CF64K+-+02-20-12+%5BWDM%5D]]></magnetURI>
</torrent>
</item>
<item>
<title><![CDATA[[House] DJ Tumakov (Pacha Moscow) - Selection 24]]></title>
<link>magnet:?xt=urn:btih:DE1E7E0C011DF57A5BC389967EB01F4C9445DADC&dn=%5BHouse%5D+DJ+Tumakov+%28Pacha+Moscow%29+-+Selection+24</link>
<comments>http://thepiratebay.se/torrent/7046595</comments>
<pubDate>Mon, 20 Feb 2012 21:19:01 +0100</pubDate>
<category domain="http://thepiratebay.se/browse/101"><![CDATA[Audio / Music]]></category>
<dc:creator><![CDATA[promoparty]]></dc:creator>
<guid>http://thepiratebay.se/torrent/7046595/</guid>
<torrent xmlns="http://xmlns.ezrss.it/0.1/">
<contentLength>144682586</contentLength>
<infoHash>DE1E7E0C011DF57A5BC389967EB01F4C9445DADC</infoHash>
<magnetURI><![CDATA[magnet:?xt=urn:btih:DE1E7E0C011DF57A5BC389967EB01F4C9445DADC&dn=%5BHouse%5D+DJ+Tumakov+%28Pacha+Moscow%29+-+Selection+24]]></magnetURI>
</torrent>
</item>
<item>
<title><![CDATA[The Jimmy Bowskill Band - Back Number (2012) [mp3@320]]]></title>
<link>magnet:?xt=urn:btih:20991CD3B70FA937AA53821967731821F0A40811&dn=The+Jimmy+Bowskill+Band+-+Back+Number+%282012%29+%5Bmp3%40320%5D</link>
<comments>http://thepiratebay.se/torrent/7046591</comments>
<pubDate>Mon, 20 Feb 2012 21:17:30 +0100</pubDate>
<category domain="http://thepiratebay.se/browse/101"><![CDATA[Audio / Music]]></category>
<dc:creator><![CDATA[zibbik]]></dc:creator>
<guid>http://thepiratebay.se/torrent/7046591/</guid>
<torrent xmlns="http://xmlns.ezrss.it/0.1/">
<contentLength>116141099</contentLength>
<infoHash>20991CD3B70FA937AA53821967731821F0A40811</infoHash>
<magnetURI><![CDATA[magnet:?xt=urn:btih:20991CD3B70FA937AA53821967731821F0A40811&dn=The+Jimmy+Bowskill+Band+-+Back+Number+%282012%29+%5Bmp3%40320%5D]]></magnetURI>
</torrent>
</item>
<item>
<title><![CDATA[Silent Kingdom - Path To Oblivion (2011) [mp3@320]]]></title>
<link>magnet:?xt=urn:btih:8647DBDF5A39C59FA835A54D59A7B47E93BF87E8&dn=Silent+Kingdom+-+Path+To+Oblivion+%282011%29+%5Bmp3%40320%5D</link>
<comments>http://thepiratebay.se/torrent/7046590</comments>
<pubDate>Mon, 20 Feb 2012 21:16:33 +0100</pubDate>
<category domain="http://thepiratebay.se/browse/101"><![CDATA[Audio / Music]]></category>
<dc:creator><![CDATA[zibbik]]></dc:creator>
<guid>http://thepiratebay.se/torrent/7046590/</guid>
<torrent xmlns="http://xmlns.ezrss.it/0.1/">
<contentLength>89279565</contentLength>
<infoHash>8647DBDF5A39C59FA835A54D59A7B47E93BF87E8</infoHash>
<magnetURI><![CDATA[magnet:?xt=urn:btih:8647DBDF5A39C59FA835A54D59A7B47E93BF87E8&dn=Silent+Kingdom+-+Path+To+Oblivion+%282011%29+%5Bmp3%40320%5D]]></magnetURI>
</torrent>
</item>
<item>
<title><![CDATA[Lorenguard - Eve Of Corruption: The Days Of Astasia, Part 1 (201]]></title>
<link>magnet:?xt=urn:btih:49E0AC3DDE5DC4BC4F40D58CA64F6C1C45C1BEE5&dn=Lorenguard+-+Eve+Of+Corruption%3A+The+Days+Of+Astasia%2C+Part+1+%28201</link>
<comments>http://thepiratebay.se/torrent/7046589</comments>
<pubDate>Mon, 20 Feb 2012 21:15:51 +0100</pubDate>
<category domain="http://thepiratebay.se/browse/101"><![CDATA[Audio / Music]]></category>
<dc:creator><![CDATA[zibbik]]></dc:creator>
<guid>http://thepiratebay.se/torrent/7046589/</guid>
<torrent xmlns="http://xmlns.ezrss.it/0.1/">
<contentLength>153858101</contentLength>
<infoHash>49E0AC3DDE5DC4BC4F40D58CA64F6C1C45C1BEE5</infoHash>
<magnetURI><![CDATA[magnet:?xt=urn:btih:49E0AC3DDE5DC4BC4F40D58CA64F6C1C45C1BEE5&dn=Lorenguard+-+Eve+Of+Corruption%3A+The+Days+Of+Astasia%2C+Part+1+%28201]]></magnetURI>
</torrent>
</item>
<item>
<title><![CDATA[In Loving Memory - Negation Of Life (2011) [mp3@320]]]></title>
<link>magnet:?xt=urn:btih:3C2FB2C7A41E52FEB9679EFE04E42A20D5D7E886&dn=In+Loving+Memory+-+Negation+Of+Life+%282011%29+%5Bmp3%40320%5D</link>
<comments>http://thepiratebay.se/torrent/7046588</comments>
<pubDate>Mon, 20 Feb 2012 21:15:07 +0100</pubDate>
<category domain="http://thepiratebay.se/browse/101"><![CDATA[Audio / Music]]></category>
<dc:creator><![CDATA[zibbik]]></dc:creator>
<guid>http://thepiratebay.se/torrent/7046588/</guid>
<torrent xmlns="http://xmlns.ezrss.it/0.1/">
<contentLength>153557304</contentLength>
<infoHash>3C2FB2C7A41E52FEB9679EFE04E42A20D5D7E886</infoHash>
<magnetURI><![CDATA[magnet:?xt=urn:btih:3C2FB2C7A41E52FEB9679EFE04E42A20D5D7E886&dn=In+Loving+Memory+-+Negation+Of+Life+%282011%29+%5Bmp3%40320%5D]]></magnetURI>
</torrent>
</item>
<item>
<title><![CDATA[Hooded Priest - Devil Worship Reckoning (2010) [mp3@320]]]></title>
<link>magnet:?xt=urn:btih:2132CB3304591B4552984B7B4494408B8B128855&dn=Hooded+Priest+-+Devil+Worship+Reckoning+%282010%29+%5Bmp3%40320%5D</link>
<comments>http://thepiratebay.se/torrent/7046587</comments>
<pubDate>Mon, 20 Feb 2012 21:14:14 +0100</pubDate>
<category domain="http://thepiratebay.se/browse/101"><![CDATA[Audio / Music]]></category>
<dc:creator><![CDATA[zibbik]]></dc:creator>
<guid>http://thepiratebay.se/torrent/7046587/</guid>
<torrent xmlns="http://xmlns.ezrss.it/0.1/">
<contentLength>125926739</contentLength>
<infoHash>2132CB3304591B4552984B7B4494408B8B128855</infoHash>
<magnetURI><![CDATA[magnet:?xt=urn:btih:2132CB3304591B4552984B7B4494408B8B128855&dn=Hooded+Priest+-+Devil+Worship+Reckoning+%282010%29+%5Bmp3%40320%5D]]></magnetURI>
</torrent>
</item>
<item>
<title><![CDATA[Hands Of Orlac - Hands Of Orlac (2011) [mp3@320]]]></title>
<link>magnet:?xt=urn:btih:EB7EF537601943A77D7851A0794E3CE7098F385F&dn=Hands+Of+Orlac+-+Hands+Of+Orlac+%282011%29+%5Bmp3%40320%5D</link>
<comments>http://thepiratebay.se/torrent/7046585</comments>
<pubDate>Mon, 20 Feb 2012 21:12:23 +0100</pubDate>
<category domain="http://thepiratebay.se/browse/101"><![CDATA[Audio / Music]]></category>
<dc:creator><![CDATA[zibbik]]></dc:creator>
<guid>http://thepiratebay.se/torrent/7046585/</guid>
<torrent xmlns="http://xmlns.ezrss.it/0.1/">
<contentLength>108265898</contentLength>
<infoHash>EB7EF537601943A77D7851A0794E3CE7098F385F</infoHash>
<magnetURI><![CDATA[magnet:?xt=urn:btih:EB7EF537601943A77D7851A0794E3CE7098F385F&dn=Hands+Of+Orlac+-+Hands+Of+Orlac+%282011%29+%5Bmp3%40320%5D]]></magnetURI>
</torrent>
</item>
<item>
<title><![CDATA[[House] DJ Favorite - February Promo 2012 Mixtape]]></title>
<link>magnet:?xt=urn:btih:4AC1E4648A5E423937964F8FA27850C987E761ED&dn=%5BHouse%5D+DJ+Favorite+-+February+Promo+2012+Mixtape</link>
<comments>http://thepiratebay.se/torrent/7046579</comments>
<pubDate>Mon, 20 Feb 2012 21:07:09 +0100</pubDate>
<category domain="http://thepiratebay.se/browse/101"><![CDATA[Audio / Music]]></category>
<dc:creator><![CDATA[promoparty]]></dc:creator>
<guid>http://thepiratebay.se/torrent/7046579/</guid>
<torrent xmlns="http://xmlns.ezrss.it/0.1/">
<contentLength>173593720</contentLength>
<infoHash>4AC1E4648A5E423937964F8FA27850C987E761ED</infoHash>
<magnetURI><![CDATA[magnet:?xt=urn:btih:4AC1E4648A5E423937964F8FA27850C987E761ED&dn=%5BHouse%5D+DJ+Favorite+-+February+Promo+2012+Mixtape]]></magnetURI>
</torrent>
</item>
<item>
<title><![CDATA[L.S.G. - 1995 - Rendezvous In Outer Space [320K/CBR]]]></title>
<link>magnet:?xt=urn:btih:777B3A92D303BCB2F914C0683756384623ECE16C&dn=L.S.G.+-+1995+-+Rendezvous+In+Outer+Space+%5B320K%2FCBR%5D</link>
<comments>http://thepiratebay.se/torrent/7046575</comments>
<pubDate>Mon, 20 Feb 2012 21:04:43 +0100</pubDate>
<category domain="http://thepiratebay.se/browse/199"><![CDATA[Audio / Other]]></category>
<dc:creator><![CDATA[_F1_]]></dc:creator>
<guid>http://thepiratebay.se/torrent/7046575/</guid>
<torrent xmlns="http://xmlns.ezrss.it/0.1/">
<contentLength>150622967</contentLength>
<infoHash>777B3A92D303BCB2F914C0683756384623ECE16C</infoHash>
<magnetURI><![CDATA[magnet:?xt=urn:btih:777B3A92D303BCB2F914C0683756384623ECE16C&dn=L.S.G.+-+1995+-+Rendezvous+In+Outer+Space+%5B320K%2FCBR%5D]]></magnetURI>
</torrent>
</item>
<item>
<title><![CDATA[Queen - Night at the Opera [1975] 1993 [EAC - FLAC](oan) MFSL]]></title>
<link>magnet:?xt=urn:btih:B0A422E26072B66386A93092ED3FC059C19FE4CF&dn=Queen+-+Night+at+the+Opera+%5B1975%5D+1993+%5BEAC+-+FLAC%5D%28oan%29+MFSL</link>
<comments>http://thepiratebay.se/torrent/7046569</comments>
<pubDate>Mon, 20 Feb 2012 20:59:57 +0100</pubDate>
<category domain="http://thepiratebay.se/browse/104"><![CDATA[Audio / FLAC]]></category>
<dc:creator><![CDATA[oneanight]]></dc:creator>
<guid>http://thepiratebay.se/torrent/7046569/</guid>
<torrent xmlns="http://xmlns.ezrss.it/0.1/">
<contentLength>305014033</contentLength>
<infoHash>B0A422E26072B66386A93092ED3FC059C19FE4CF</infoHash>
<magnetURI><![CDATA[magnet:?xt=urn:btih:B0A422E26072B66386A93092ED3FC059C19FE4CF&dn=Queen+-+Night+at+the+Opera+%5B1975%5D+1993+%5BEAC+-+FLAC%5D%28oan%29+MFSL]]></magnetURI>
</torrent>
</item>
<item>
<title><![CDATA[blessthefall Discography]]></title>
<link>magnet:?xt=urn:btih:5772778A962849737FE0D990928D0EE302CABF8A&dn=blessthefall+Discography</link>
<comments>http://thepiratebay.se/torrent/7046562</comments>
<pubDate>Mon, 20 Feb 2012 20:57:59 +0100</pubDate>
<category domain="http://thepiratebay.se/browse/199"><![CDATA[Audio / Other]]></category>
<dc:creator><![CDATA[UnderworldDemon666]]></dc:creator>
<guid>http://thepiratebay.se/torrent/7046562/</guid>
<torrent xmlns="http://xmlns.ezrss.it/0.1/">
<contentLength>340996183</contentLength>
<infoHash>5772778A962849737FE0D990928D0EE302CABF8A</infoHash>
<magnetURI><![CDATA[magnet:?xt=urn:btih:5772778A962849737FE0D990928D0EE302CABF8A&dn=blessthefall+Discography]]></magnetURI>
</torrent>
</item>
<item>
<title><![CDATA[Tequila Baby]]></title>
<link>magnet:?xt=urn:btih:525A1CF011F38A5E7C82293E6D15923716A8AA73&dn=Tequila+Baby</link>
<comments>http://thepiratebay.se/torrent/7046558</comments>
<pubDate>Mon, 20 Feb 2012 20:57:01 +0100</pubDate>
<category domain="http://thepiratebay.se/browse/101"><![CDATA[Audio / Music]]></category>
<dc:creator><![CDATA[meganaje]]></dc:creator>
<guid>http://thepiratebay.se/torrent/7046558/</guid>
<torrent xmlns="http://xmlns.ezrss.it/0.1/">
<contentLength>471508557</contentLength>
<infoHash>525A1CF011F38A5E7C82293E6D15923716A8AA73</infoHash>
<magnetURI><![CDATA[magnet:?xt=urn:btih:525A1CF011F38A5E7C82293E6D15923716A8AA73&dn=Tequila+Baby]]></magnetURI>
</torrent>
</item>
<item>
<title><![CDATA[The Rush Limbaugh Show 20-Feb-12 CF mp3 48K Mon]]></title>
<link>magnet:?xt=urn:btih:EBE04AE06872CCF05957D79BF9EFC9C0995E43AD&dn=The+Rush+Limbaugh+Show+20-Feb-12+CF+mp3+48K+Mon</link>
<comments>http://thepiratebay.se/torrent/7046533</comments>
<pubDate>Mon, 20 Feb 2012 20:36:09 +0100</pubDate>
<category domain="http://thepiratebay.se/browse/199"><![CDATA[Audio / Other]]></category>
<dc:creator><![CDATA[Annoyme]]></dc:creator>
<guid>http://thepiratebay.se/torrent/7046533/</guid>
<torrent xmlns="http://xmlns.ezrss.it/0.1/">
<contentLength>39727261</contentLength>
<infoHash>EBE04AE06872CCF05957D79BF9EFC9C0995E43AD</infoHash>
<magnetURI><![CDATA[magnet:?xt=urn:btih:EBE04AE06872CCF05957D79BF9EFC9C0995E43AD&dn=The+Rush+Limbaugh+Show+20-Feb-12+CF+mp3+48K+Mon]]></magnetURI>
</torrent>
</item>
<item>
<title><![CDATA[[House] BLUR vs. Nicky Romero - Song 2louse (Alexey Romeo WITH L]]></title>
<link>magnet:?xt=urn:btih:1354EC99D942EDC2F852557493C2B23B87623DA5&dn=%5BHouse%5D+BLUR+vs.+Nicky+Romero+-+Song+2louse+%28Alexey+Romeo+WITH+L</link>
<comments>http://thepiratebay.se/torrent/7046530</comments>
<pubDate>Mon, 20 Feb 2012 20:33:17 +0100</pubDate>
<category domain="http://thepiratebay.se/browse/101"><![CDATA[Audio / Music]]></category>
<dc:creator><![CDATA[promoparty]]></dc:creator>
<guid>http://thepiratebay.se/torrent/7046530/</guid>
<torrent xmlns="http://xmlns.ezrss.it/0.1/">
<contentLength>14931509</contentLength>
<infoHash>1354EC99D942EDC2F852557493C2B23B87623DA5</infoHash>
<magnetURI><![CDATA[magnet:?xt=urn:btih:1354EC99D942EDC2F852557493C2B23B87623DA5&dn=%5BHouse%5D+BLUR+vs.+Nicky+Romero+-+Song+2louse+%28Alexey+Romeo+WITH+L]]></magnetURI>
</torrent>
</item>
<item>
<title><![CDATA[Lana Del Rey (2011-2012) mp3]]></title>
<link>magnet:?xt=urn:btih:8393466519D8AE542ED09A2C74B6F0D84C4A99CD&dn=Lana+Del+Rey+%282011-2012%29+mp3</link>
<comments>http://thepiratebay.se/torrent/7046522</comments>
<pubDate>Mon, 20 Feb 2012 20:18:17 +0100</pubDate>
<category domain="http://thepiratebay.se/browse/101"><![CDATA[Audio / Music]]></category>
<dc:creator><![CDATA[tagorella74]]></dc:creator>
<guid>http://thepiratebay.se/torrent/7046522/</guid>
<torrent xmlns="http://xmlns.ezrss.it/0.1/">
<contentLength>109493282</contentLength>
<infoHash>8393466519D8AE542ED09A2C74B6F0D84C4A99CD</infoHash>
<magnetURI><![CDATA[magnet:?xt=urn:btih:8393466519D8AE542ED09A2C74B6F0D84C4A99CD&dn=Lana+Del+Rey+%282011-2012%29+mp3]]></magnetURI>
</torrent>
</item>
<item>
<title><![CDATA[Dangerous Seed Vertiphon Remaster MP3]]></title>
<link>magnet:?xt=urn:btih:CBE4E2F21D18274A0EB3CEA29D28E662E119E9CD&dn=Dangerous+Seed+Vertiphon+Remaster+MP3</link>
<comments>http://thepiratebay.se/torrent/7046513</comments>
<pubDate>Mon, 20 Feb 2012 19:39:30 +0100</pubDate>
<category domain="http://thepiratebay.se/browse/101"><![CDATA[Audio / Music]]></category>
<dc:creator><![CDATA[Vertiphon25]]></dc:creator>
<guid>http://thepiratebay.se/torrent/7046513/</guid>
<torrent xmlns="http://xmlns.ezrss.it/0.1/">
<contentLength>71521086</contentLength>
<infoHash>CBE4E2F21D18274A0EB3CEA29D28E662E119E9CD</infoHash>
<magnetURI><![CDATA[magnet:?xt=urn:btih:CBE4E2F21D18274A0EB3CEA29D28E662E119E9CD&dn=Dangerous+Seed+Vertiphon+Remaster+MP3]]></magnetURI>
</torrent>
</item>
<item>
<title><![CDATA[Dangerous Seed Vertiphon Remaster FLAC]]></title>
<link>magnet:?xt=urn:btih:BD905FBCFC53892BAC9187FEF3D1B1FE37E6C8BD&dn=Dangerous+Seed+Vertiphon+Remaster+FLAC</link>
<comments>http://thepiratebay.se/torrent/7046511</comments>
<pubDate>Mon, 20 Feb 2012 19:34:25 +0100</pubDate>
<category domain="http://thepiratebay.se/browse/104"><![CDATA[Audio / FLAC]]></category>
<dc:creator><![CDATA[Vertiphon25]]></dc:creator>
<guid>http://thepiratebay.se/torrent/7046511/</guid>
<torrent xmlns="http://xmlns.ezrss.it/0.1/">
<contentLength>289821122</contentLength>
<infoHash>BD905FBCFC53892BAC9187FEF3D1B1FE37E6C8BD</infoHash>
<magnetURI><![CDATA[magnet:?xt=urn:btih:BD905FBCFC53892BAC9187FEF3D1B1FE37E6C8BD&dn=Dangerous+Seed+Vertiphon+Remaster+FLAC]]></magnetURI>
</torrent>
</item>
<item>
<title><![CDATA[Band of Skulls - Sweet Sour (2012) MP3]]></title>
<link>magnet:?xt=urn:btih:C8B6079F9A322C55DE66FD99B8C62D9CAF083BEA&dn=Band+of+Skulls+-+Sweet+Sour+%282012%29+MP3</link>
<comments>http://thepiratebay.se/torrent/7046493</comments>
<pubDate>Mon, 20 Feb 2012 18:23:08 +0100</pubDate>
<category domain="http://thepiratebay.se/browse/101"><![CDATA[Audio / Music]]></category>
<dc:creator><![CDATA[Beolab1700]]></dc:creator>
<guid>http://thepiratebay.se/torrent/7046493/</guid>
<torrent xmlns="http://xmlns.ezrss.it/0.1/">
<contentLength>80800062</contentLength>
<infoHash>C8B6079F9A322C55DE66FD99B8C62D9CAF083BEA</infoHash>
<magnetURI><![CDATA[magnet:?xt=urn:btih:C8B6079F9A322C55DE66FD99B8C62D9CAF083BEA&dn=Band+of+Skulls+-+Sweet+Sour+%282012%29+MP3]]></magnetURI>
</torrent>
</item>
<item>
<title><![CDATA[The Who - Join Together (Live) mp3 peaSoup]]></title>
<link>magnet:?xt=urn:btih:D9B96D16625CCC021D6F3BD35582EC1782E84C21&dn=The+Who+-+Join+Together+%28Live%29+mp3+peaSoup</link>
<comments>http://thepiratebay.se/torrent/7046489</comments>
<pubDate>Mon, 20 Feb 2012 18:03:29 +0100</pubDate>
<category domain="http://thepiratebay.se/browse/101"><![CDATA[Audio / Music]]></category>
<dc:creator><![CDATA[peaSoup]]></dc:creator>
<guid>http://thepiratebay.se/torrent/7046489/</guid>
<torrent xmlns="http://xmlns.ezrss.it/0.1/">
<contentLength>303387657</contentLength>
<infoHash>D9B96D16625CCC021D6F3BD35582EC1782E84C21</infoHash>
<magnetURI><![CDATA[magnet:?xt=urn:btih:D9B96D16625CCC021D6F3BD35582EC1782E84C21&dn=The+Who+-+Join+Together+%28Live%29+mp3+peaSoup]]></magnetURI>
</torrent>
</item>
<item>
<title><![CDATA[VA - Pop Hits - Vol. 1 - [TFM]]]></title>
<link>magnet:?xt=urn:btih:09155BA59695DDDE3EADD69C3408D2DB93C5E243&dn=VA+-+Pop+Hits+-+Vol.+1+-+%5BTFM%5D</link>
<comments>http://thepiratebay.se/torrent/7046485</comments>
<pubDate>Mon, 20 Feb 2012 17:55:15 +0100</pubDate>
<category domain="http://thepiratebay.se/browse/104"><![CDATA[Audio / FLAC]]></category>
<dc:creator><![CDATA[tifon]]></dc:creator>
<guid>http://thepiratebay.se/torrent/7046485/</guid>
<torrent xmlns="http://xmlns.ezrss.it/0.1/">
<contentLength>358563277</contentLength>
<infoHash>09155BA59695DDDE3EADD69C3408D2DB93C5E243</infoHash>
<magnetURI><![CDATA[magnet:?xt=urn:btih:09155BA59695DDDE3EADD69C3408D2DB93C5E243&dn=VA+-+Pop+Hits+-+Vol.+1+-+%5BTFM%5D]]></magnetURI>
</torrent>
</item>
</channel>
</rss>

View File

@ -1,151 +0,0 @@
/*
Copyright (c) 2012, Arvid Norberg
All rights reserved.
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions
are met:
* Redistributions of source code must retain the above copyright
notice, this list of conditions and the following disclaimer.
* Redistributions in binary form must reproduce the above copyright
notice, this list of conditions and the following disclaimer in
the documentation and/or other materials provided with the distribution.
* Neither the name of the author nor the names of its
contributors may be used to endorse or promote products derived
from this software without specific prior written permission.
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
POSSIBILITY OF SUCH DAMAGE.
*/
#include "libtorrent/config.hpp"
#include "libtorrent/rss.hpp"
#include "libtorrent/fingerprint.hpp"
#include "libtorrent/aux_/session_impl.hpp"
#include "libtorrent/http_parser.hpp"
#include "libtorrent/settings_pack.hpp"
#include "test.hpp"
#include "setup_transfer.hpp" // for load_file
#include <boost/make_shared.hpp>
using namespace libtorrent;
void print_feed(feed_status const& f)
{
fprintf(stderr, "FEED: %s\n",f.url.c_str());
if (f.error)
fprintf(stderr, "ERROR: %s\n", f.error.message().c_str());
fprintf(stderr, " %s\n %s\n", f.title.c_str(), f.description.c_str());
fprintf(stderr, " ttl: %d minutes\n", f.ttl);
fprintf(stderr, " num items: %d\n", int(f.items.size()));
for (std::vector<feed_item>::const_iterator i = f.items.begin()
, end(f.items.end()); i != end; ++i)
{
fprintf(stderr, "\033[32m%s\033[0m\n------------------------------------------------------\n"
" url: %s\n size: %" PRId64 "\n info-hash: %s\n uuid: %s\n description: %s\n"
" comment: %s\n category: %s\n"
, i->title.c_str(), i->url.c_str(), i->size
, i->info_hash.is_all_zeros() ? "" : to_hex(i->info_hash.to_string()).c_str()
, i->uuid.c_str(), i->description.c_str(), i->comment.c_str(), i->category.c_str());
}
}
struct rss_expect
{
rss_expect(int nitems, std::string url, std::string title, boost::int64_t size)
: num_items(nitems), first_url(url), first_title(title), first_size(size)
{}
int num_items;
std::string first_url;
std::string first_title;
boost::int64_t first_size;
};
void test_feed(std::string const& filename, rss_expect const& expect)
{
std::vector<char> buffer;
error_code ec;
load_file(filename, buffer, ec);
if (ec)
{
fprintf(stderr, "failed to load file \"%s\": %s\n", filename.c_str(), ec.message().c_str());
}
TEST_CHECK(!ec);
char* buf = buffer.size() ? &buffer[0] : NULL;
int len = buffer.size();
char const header[] = "HTTP/1.1 200 OK\r\n"
"\r\n";
settings_pack pack;
pack.set_int(settings_pack::max_retry_port_bind, 100);
pack.set_str(settings_pack::listen_interfaces, "0.0.0.0:100");
// TODO: 4 we can't use session_impl here
boost::shared_ptr<aux::session_impl> s = boost::make_shared<aux::session_impl>();
settings_pack p;
s->start_session(p);
feed_settings sett;
sett.auto_download = false;
sett.auto_map_handles = false;
boost::shared_ptr<feed> f = boost::shared_ptr<feed>(new feed(*s, sett));
http_parser parser;
bool err = false;
parser.incoming(buffer::const_interval(header, header + sizeof(header)-1), err);
TEST_CHECK(err == false);
f->on_feed(error_code(), parser, buf, len);
feed_status st;
f->get_feed_status(&st);
TEST_CHECK(!st.error);
print_feed(st);
TEST_CHECK(st.items.size() == expect.num_items);
if (st.items.size() > 0)
{
TEST_CHECK(st.items[0].url == expect.first_url);
TEST_CHECK(st.items[0].size == expect.first_size);
TEST_CHECK(st.items[0].title == expect.first_title);
}
entry state;
f->save_state(state);
fprintf(stderr, "feed_state:\n");
std::cerr << state.to_string() << "\n";
// TODO: verify some key state is saved in 'state'
}
int test_main()
{
std::string root_dir = parent_path(current_working_directory());
test_feed(combine_path(root_dir, "eztv.xml"), rss_expect(30, "http://torrent.zoink.it/The.Daily.Show.2012.02.16.(HDTV-LMAO)[VTV].torrent", "The Daily Show 2012-02-16 [HDTV - LMAO]", 183442338));
test_feed(combine_path(root_dir, "cb.xml"), rss_expect(50, "http://www.clearbits.net/get/1911-norbergfestival-2011.torrent", "Norbergfestival 2011", 1160773632));
test_feed(combine_path(root_dir, "kat.xml"), rss_expect(25, "http://kat.ph/torrents/benito-di-paula-1975-benito-di-paula-lp-rip-ogg-at-500-jarax4u-t6194897/", "Benito Di Paula - 1975 - Benito Di Paula (LP Rip OGG at 500) [jarax4u]", 168773863));
test_feed(combine_path(root_dir, "mn.xml"), rss_expect(20, "http://www.mininova.org/get/13203100", "Dexcell - January TwentyTwelve Mix", 137311179));
test_feed(combine_path(root_dir, "pb.xml"), rss_expect(60, "magnet:?xt=urn:btih:FD4CDDB7BBE722D17A018EFD875EB0695ED7159C&dn=Thompson+Twins+-+1989+-+Big+Trash+%5BMP3%5D", "Thompson Twins - 1989 - Big Trash [MP3]", 100160904));
test_feed(combine_path(root_dir, "fg.xml"), rss_expect(15, "http://torrage.com/torrent/470BCD2007011E9F31556B36E199D03D948A1A52.torrent", "Top.Gear.S20E04.1080i.ts", -1));
return 0;
}