torrent-finder 0.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +7 -0
- data/.gitignore +17 -0
- data/Gemfile +4 -0
- data/LICENSE.txt +22 -0
- data/README.md +46 -0
- data/Rakefile +1 -0
- data/bin/torrent-finder +5 -0
- data/lib/torrent-finder.rb +7 -0
- data/lib/torrent-finder/adapters.rb +36 -0
- data/lib/torrent-finder/adapters/eztv_adapter.rb +44 -0
- data/lib/torrent-finder/adapters/popgo_adapter.rb +43 -0
- data/lib/torrent-finder/command.rb +43 -0
- data/lib/torrent-finder/torrent.rb +3 -0
- data/lib/torrent-finder/version.rb +5 -0
- data/spec/adapters/eztv_adapter_spec.rb +26 -0
- data/spec/adapters/popgo_adapter_spec.rb +30 -0
- data/spec/fixtures/vcr_cassettes/TorrentFinder_Adapters_EztvAdapter/_list.yml +2026 -0
- data/spec/fixtures/vcr_cassettes/TorrentFinder_Adapters_EztvAdapter/_list/should_list_first_page_of_torrent.yml +2026 -0
- data/spec/fixtures/vcr_cassettes/TorrentFinder_Adapters_EztvAdapter/_search.yml +2026 -0
- data/spec/fixtures/vcr_cassettes/TorrentFinder_Adapters_EztvAdapter/_search/should_search_torrent.yml +2026 -0
- data/spec/fixtures/vcr_cassettes/TorrentFinder_Adapters_PopgoAdapter/_list.yml +1333 -0
- data/spec/fixtures/vcr_cassettes/TorrentFinder_Adapters_PopgoAdapter/_list/should_list_first_page_of_torrent.yml +1333 -0
- data/spec/fixtures/vcr_cassettes/TorrentFinder_Adapters_PopgoAdapter/_search.yml +1326 -0
- data/spec/fixtures/vcr_cassettes/TorrentFinder_Adapters_PopgoAdapter/_search/should_search_torrent.yml +1326 -0
- data/spec/spec_helper.rb +10 -0
- data/torrent-finder.gemspec +31 -0
- metadata +221 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA1:
|
3
|
+
metadata.gz: 3579379ecaf1774eb2486df1ed1ad1b05d259969
|
4
|
+
data.tar.gz: de3ddf2b13cf65d6df419e82eb5d2649924854d9
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: 900d81e691615fa7ac29c3aa29343287529f6cbd4254ccb8de6a94314bf7e455214fb9b0ee7b9b801018521c81246768609c35ccb152400cbaffada58e9b0466
|
7
|
+
data.tar.gz: 5b40f2ea4a1b9d1d489f55c2653a9b587235d943a63c5c4fa7ab8af6d7de1f9ac5fe6db2e8310dcd4ff637fbd80f3378fe8c9fed28d1cca220c4a2159d7bd1e9
|
data/.gitignore
ADDED
data/Gemfile
ADDED
data/LICENSE.txt
ADDED
@@ -0,0 +1,22 @@
|
|
1
|
+
Copyright (c) 2014 Francis Chong
|
2
|
+
|
3
|
+
MIT License
|
4
|
+
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
6
|
+
a copy of this software and associated documentation files (the
|
7
|
+
"Software"), to deal in the Software without restriction, including
|
8
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
9
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
10
|
+
permit persons to whom the Software is furnished to do so, subject to
|
11
|
+
the following conditions:
|
12
|
+
|
13
|
+
The above copyright notice and this permission notice shall be
|
14
|
+
included in all copies or substantial portions of the Software.
|
15
|
+
|
16
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
17
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
18
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
19
|
+
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
20
|
+
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
21
|
+
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
22
|
+
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
data/README.md
ADDED
@@ -0,0 +1,46 @@
|
|
1
|
+
# TorrentFinder
|
2
|
+
|
3
|
+
Extensible command line tool to search torrent.
|
4
|
+
|
5
|
+
## Installation
|
6
|
+
|
7
|
+
Add this line to your application's Gemfile:
|
8
|
+
|
9
|
+
gem 'torrent-finder'
|
10
|
+
|
11
|
+
And then execute:
|
12
|
+
|
13
|
+
$ bundle
|
14
|
+
|
15
|
+
Or install it yourself as:
|
16
|
+
|
17
|
+
$ gem install torrent-finder
|
18
|
+
|
19
|
+
## Usage
|
20
|
+
|
21
|
+
Search "Magi" on popgo, then launch peerflix with first result.
|
22
|
+
|
23
|
+
```
|
24
|
+
$ torrent-finder --site=popgo --search=Magi --peerflix
|
25
|
+
```
|
26
|
+
|
27
|
+
Search "Carl Sagans Cosmos" on extv, and list the result.
|
28
|
+
|
29
|
+
```
|
30
|
+
$ torrent-finder --site=eztv --search="Carl Sagans Cosmos"
|
31
|
+
```
|
32
|
+
|
33
|
+
## Sites
|
34
|
+
|
35
|
+
Currently following sites are supported:
|
36
|
+
|
37
|
+
- popgo
|
38
|
+
- eztv
|
39
|
+
|
40
|
+
## Contributing
|
41
|
+
|
42
|
+
1. Fork it ( http://github.com/siuying/torrent-find/fork )
|
43
|
+
2. Create your feature branch (`git checkout -b my-new-feature`)
|
44
|
+
3. Commit your changes (`git commit -am 'Add some feature'`)
|
45
|
+
4. Push to the branch (`git push origin my-new-feature`)
|
46
|
+
5. Create new Pull Request
|
data/Rakefile
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
require "bundler/gem_tasks"
|
data/bin/torrent-finder
ADDED
@@ -0,0 +1,36 @@
|
|
1
|
+
module TorrentFinder
|
2
|
+
module Adapters
|
3
|
+
class Registry
|
4
|
+
@@adapters = []
|
5
|
+
|
6
|
+
def self.register(adapter)
|
7
|
+
@@adapters << adapter
|
8
|
+
end
|
9
|
+
|
10
|
+
def self.adapters
|
11
|
+
@@adapters
|
12
|
+
end
|
13
|
+
end
|
14
|
+
|
15
|
+
class Adapter
|
16
|
+
# name of the adapter
|
17
|
+
def name
|
18
|
+
"adapter"
|
19
|
+
end
|
20
|
+
|
21
|
+
# list recently available torrent
|
22
|
+
def list(page=0)
|
23
|
+
[]
|
24
|
+
end
|
25
|
+
|
26
|
+
# search and return available torrent
|
27
|
+
def search(terms)
|
28
|
+
[]
|
29
|
+
end
|
30
|
+
|
31
|
+
def self.inherited(c)
|
32
|
+
Registry.register(c)
|
33
|
+
end
|
34
|
+
end
|
35
|
+
end
|
36
|
+
end
|
@@ -0,0 +1,44 @@
|
|
1
|
+
require 'nokogiri'
|
2
|
+
require 'open-uri'
|
3
|
+
require 'httparty'
|
4
|
+
require 'mechanize'
|
5
|
+
|
6
|
+
module TorrentFinder
|
7
|
+
module Adapters
|
8
|
+
class EztvAdapter < Adapter
|
9
|
+
# name of the adapter
|
10
|
+
def name
|
11
|
+
"eztv"
|
12
|
+
end
|
13
|
+
|
14
|
+
# list recently available torrent
|
15
|
+
def list(page=0)
|
16
|
+
url = page == 0 ? "http://eztv.it" : "http://eztv.it/page_#{page.to_s}"
|
17
|
+
response = HTTParty.get(url)
|
18
|
+
parse_html(response.body)
|
19
|
+
end
|
20
|
+
|
21
|
+
# search and return available torrent
|
22
|
+
def search(terms)
|
23
|
+
agent = Mechanize.new
|
24
|
+
agent.get 'http://eztv.it'
|
25
|
+
search_form = agent.page.form('search')
|
26
|
+
search_form.SearchString1 = "Cosmos"
|
27
|
+
search_form.submit
|
28
|
+
parse_html(agent.page)
|
29
|
+
end
|
30
|
+
|
31
|
+
protected
|
32
|
+
def parse_html(doc)
|
33
|
+
doc = Nokogiri::HTML(doc) if doc.is_a?(String)
|
34
|
+
rows = doc.search("#tooltip ~ table > tr")
|
35
|
+
rows.collect do |row|
|
36
|
+
name = row.xpath('./td[2]').text.strip
|
37
|
+
url = row.css('td > a').collect {|a| a['href'] }.select {|link| link =~ /\.torrent$/}.last rescue nil
|
38
|
+
url = "http:#{url}" if url =~ %r{^//}
|
39
|
+
Torrent.new(name, url)
|
40
|
+
end.select {|row| row.name && row.url }
|
41
|
+
end
|
42
|
+
end
|
43
|
+
end
|
44
|
+
end
|
@@ -0,0 +1,43 @@
|
|
1
|
+
require 'nokogiri'
|
2
|
+
require 'open-uri'
|
3
|
+
require 'httparty'
|
4
|
+
|
5
|
+
module TorrentFinder
|
6
|
+
module Adapters
|
7
|
+
class PopgoAdapter < Adapter
|
8
|
+
# name of the adapter
|
9
|
+
def name
|
10
|
+
"popgo"
|
11
|
+
end
|
12
|
+
|
13
|
+
# list recently available torrent
|
14
|
+
def list(page=0)
|
15
|
+
url = page == 0 ? "http://share.popgo.org/" : "http://share.popgo.org/search.php?title=&groups=&uploader=&sorts=&orderby=&page=#{(page+1).to_s}"
|
16
|
+
response = HTTParty.get(url)
|
17
|
+
parse_html(response.body)
|
18
|
+
end
|
19
|
+
|
20
|
+
# search and return available torrent
|
21
|
+
def search(terms)
|
22
|
+
response = HTTParty.get("http://share.popgo.org/search.php", :query => {"title" => terms})
|
23
|
+
parse_html(response.body)
|
24
|
+
end
|
25
|
+
|
26
|
+
protected
|
27
|
+
def parse_html(html)
|
28
|
+
doc = Nokogiri::HTML(html)
|
29
|
+
rows = doc.search("#index_maintable tr")
|
30
|
+
rows.collect do |row|
|
31
|
+
seed = row.xpath('.//*[@class="inde_tab_seedname"]').first
|
32
|
+
if seed
|
33
|
+
name = seed.text.strip rescue nil
|
34
|
+
url = seed.search('a/@href').text rescue nil
|
35
|
+
hash = url.match(%r{program-([a-zA-Z0-9]+)\.html})[1] rescue nil
|
36
|
+
end
|
37
|
+
|
38
|
+
Torrent.new(name, "https://share.popgo.org/downseed.php?hash=#{hash}")
|
39
|
+
end.select {|row| row.name && row.url }
|
40
|
+
end
|
41
|
+
end
|
42
|
+
end
|
43
|
+
end
|
@@ -0,0 +1,43 @@
|
|
1
|
+
require 'claide'
|
2
|
+
|
3
|
+
module TorrentFinder
|
4
|
+
class Command < CLAide::Command
|
5
|
+
self.description = 'Find recent torrent or search specific torrent.'
|
6
|
+
self.command = 'torrent-find'
|
7
|
+
|
8
|
+
def self.options
|
9
|
+
[
|
10
|
+
['--peerflix', 'launch peerflix with first matched result'],
|
11
|
+
['--site=site', 'use site, default popgo'],
|
12
|
+
['--search=keywords', 'search keywords instead of find recent torrent']
|
13
|
+
].concat(super)
|
14
|
+
end
|
15
|
+
|
16
|
+
def initialize(argv)
|
17
|
+
@use_peerflix = argv.flag?('peerflix', false)
|
18
|
+
@site = argv.option('site', "popgo")
|
19
|
+
@keywords = argv.option('search')
|
20
|
+
super
|
21
|
+
end
|
22
|
+
|
23
|
+
def run
|
24
|
+
require "torrent-finder/adapters/#{@site}_adapter"
|
25
|
+
adapter_clazz = TorrentFinder::Adapters::Registry.adapters.first
|
26
|
+
adapter = adapter_clazz.new
|
27
|
+
|
28
|
+
if @keywords
|
29
|
+
torrents = adapter.search(@keywords)
|
30
|
+
else
|
31
|
+
torrents = adapter.list
|
32
|
+
end
|
33
|
+
if @use_peerflix
|
34
|
+
torrent = torrents.find {|torrent| torrent.name.include?(@keywords) } || torrents.first
|
35
|
+
exec %{peerflix #{torrent.url} --vlc}
|
36
|
+
else
|
37
|
+
torrents.each do |torrent|
|
38
|
+
puts "#{torrent.name},#{torrent.url}"
|
39
|
+
end
|
40
|
+
end
|
41
|
+
end
|
42
|
+
end
|
43
|
+
end
|
@@ -0,0 +1,26 @@
|
|
1
|
+
require 'spec_helper'
|
2
|
+
require 'torrent-finder/adapters/eztv_adapter'
|
3
|
+
|
4
|
+
describe TorrentFinder::Adapters::EztvAdapter do
|
5
|
+
context "#name" do
|
6
|
+
it "should be eztv" do
|
7
|
+
expect(subject.name).to eq("eztv")
|
8
|
+
end
|
9
|
+
end
|
10
|
+
|
11
|
+
context "#list", :vcr => :new_episode do
|
12
|
+
it "should list first page of torrent" do
|
13
|
+
list = subject.list
|
14
|
+
expect(list).to be_a(Array)
|
15
|
+
expect(list.any?{|item| item[:name] =~ /Astronauts Houston/}).to be_true
|
16
|
+
end
|
17
|
+
end
|
18
|
+
|
19
|
+
context "#search", :vcr => :new_episode do
|
20
|
+
it "should search torrent" do
|
21
|
+
list = subject.search("Top Gear")
|
22
|
+
expect(list).to be_a(Array)
|
23
|
+
expect(list.any?{|item| item[:name] =~ /Top Gear/}).to be_true
|
24
|
+
end
|
25
|
+
end
|
26
|
+
end
|
@@ -0,0 +1,30 @@
|
|
1
|
+
require 'spec_helper'
|
2
|
+
require 'torrent-finder/adapters/popgo_adapter'
|
3
|
+
|
4
|
+
describe TorrentFinder::Adapters::PopgoAdapter do
|
5
|
+
context "#name" do
|
6
|
+
it "should be eztv" do
|
7
|
+
expect(subject.name).to eq("popgo")
|
8
|
+
end
|
9
|
+
end
|
10
|
+
|
11
|
+
context "#list", :vcr => :new_episode do
|
12
|
+
it "should list first page of torrent" do
|
13
|
+
list = subject.list
|
14
|
+
expect(list).to be_a(Array)
|
15
|
+
expect(list.any?{|item| item[:name] =~ /伪恋/}).to be_true
|
16
|
+
url = list.find{|item| item.name.include? "伪恋"}.url
|
17
|
+
|
18
|
+
expect(url).to be_include("https://share.popgo.org/downseed")
|
19
|
+
expect(url).to be_include("c969a5a34caac2e89718c4ed3336eb3e728be586")
|
20
|
+
end
|
21
|
+
end
|
22
|
+
|
23
|
+
context "#search", :vcr => :new_episode do
|
24
|
+
it "should search torrent" do
|
25
|
+
list = subject.search("Magi")
|
26
|
+
expect(list).to be_a(Array)
|
27
|
+
expect(list.any?{|item| item[:name] =~ /魔笛/}).to be_true
|
28
|
+
end
|
29
|
+
end
|
30
|
+
end
|
@@ -0,0 +1,2026 @@
|
|
1
|
+
---
|
2
|
+
http_interactions:
|
3
|
+
- request:
|
4
|
+
method: get
|
5
|
+
uri: http://eztv.it/
|
6
|
+
body:
|
7
|
+
encoding: US-ASCII
|
8
|
+
string: ''
|
9
|
+
headers: {}
|
10
|
+
response:
|
11
|
+
status:
|
12
|
+
code: 200
|
13
|
+
message: OK
|
14
|
+
headers:
|
15
|
+
Server:
|
16
|
+
- cloudflare-nginx
|
17
|
+
Date:
|
18
|
+
- Mon, 17 Mar 2014 13:16:14 GMT
|
19
|
+
Content-Type:
|
20
|
+
- text/html
|
21
|
+
Transfer-Encoding:
|
22
|
+
- chunked
|
23
|
+
Connection:
|
24
|
+
- keep-alive
|
25
|
+
Set-Cookie:
|
26
|
+
- PHPSESSID=g0oghnmpev3otmn6kthdbgisr5; path=/
|
27
|
+
- __cfduid=d413414098b61319a4b774e1be8dd9e051395062174227; expires=Mon, 23-Dec-2019
|
28
|
+
23:50:00 GMT; path=/; domain=.eztv.it; HttpOnly
|
29
|
+
X-Powered-By:
|
30
|
+
- PHP/5.5.6-1
|
31
|
+
Expires:
|
32
|
+
- Thu, 19 Nov 1981 08:52:00 GMT
|
33
|
+
Cache-Control:
|
34
|
+
- no-store, no-cache, must-revalidate, post-check=0, pre-check=0
|
35
|
+
Pragma:
|
36
|
+
- no-cache
|
37
|
+
Vary:
|
38
|
+
- Accept-Encoding
|
39
|
+
Cf-Ray:
|
40
|
+
- 10c976bceb4d00c5-HKG
|
41
|
+
body:
|
42
|
+
encoding: UTF-8
|
43
|
+
string: "<html>\n\t<head>\n\t\t<title>EZTV - TV Torrents Online</title>\n\t\t<meta
|
44
|
+
name=\"Description\" content=\"EZTV, your one stop source for all your favorite
|
45
|
+
TV shows.\" />\n\t\t<meta name=\"Keywords\" content=\"EZTV, EZ TV, EZTV Efnet,
|
46
|
+
EZTV@EFnet, eztvefnet.org, eztv.it, Easy TV, Televison, 24, Prison Break,
|
47
|
+
Lost, Stargate, Battlestar, Heroes, House, Dexter, Torrent, BitTorrent, Downloading,
|
48
|
+
\" />\n\t\t<meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\"
|
49
|
+
/>\n\t\t<meta name=\"verify-v1\" content=\"HfJckMzdut1OAtGdt9CiJPYlzbRAlmFMrZFEcGThxQ0=\"
|
50
|
+
/>\n\t\t<meta name=\"globalsign-domain-verification\" content=\"2LINv7AjSAVcdbzNTMdspBXGFlkPDjY1XGh7oWBVEm\"
|
51
|
+
/>\n\t\t<link rel=\"shortcut icon\" href=\"/favicon.ico\" />\n\t\t<meta property=\"og:type\"
|
52
|
+
content=\"video.episode\" />\n\t\t<link rel=\"image_src\" href=\"//ezimg.it/s/3/1/tv-icon.png\"
|
53
|
+
/>\n\t\t<link rel=\"stylesheet\" type=\"text/css\" href=\"/styles/eztv.css\"
|
54
|
+
id=\"forum_css\" />\n\t\t<link rel=\"stylesheet\" type=\"text/css\" href=\"/styles/rating/eztv.css\"
|
55
|
+
id=\"rating_css\" />\n\t\t<script type=\"text/javascript\" src=\"/js/g=js\"></script>\n\t\t<script
|
56
|
+
type=\"text/javascript\">\n\t\t\tvar _gaq = _gaq || [];\n\t\t\t_gaq.push(
|
57
|
+
['_setAccount', 'UA-2913038-1'] );\n\t\t\t_gaq.push( ['_trackPageview'] );\n\t\n\t\t\t(
|
58
|
+
function() {\n\t\t\tvar ga = document.createElement( 'script' ); ga.type =
|
59
|
+
'text/javascript'; ga.async = true;\n\t\t\tga.src = ( 'https:' == document.location.protocol
|
60
|
+
? 'https://ssl' : 'http://www' ) + '.google-analytics.com/ga.js';\n\t\t\tvar
|
61
|
+
s = document.getElementsByTagName( 'script' )[0]; s.parentNode.insertBefore(
|
62
|
+
ga, s );\n\t\t\t} )();\n\t\t</script>\n\t\t\t</head>\n\t<body>\n\t\t<!-- ez-www-2
|
63
|
+
-->\n\t\t<div align=\"center\" id=\"header_holder\">\n\t\t<div style=\"position:
|
64
|
+
relative; width: 950px;\"><div id=\"header_logo\"><a href=\"irc://irc.efnet.org/eztv\"
|
65
|
+
id=\"header_link\"><img src=\"//ezimg.it/s/1/1/s.gif\" id=\"header_link_holder\"
|
66
|
+
border=\"0\" width=\"303\" height=\"115\" alt=\"EZTV.IT\" title=\"EZTV.IT\"
|
67
|
+
/></a><a href=\"http://flattr.com/thing/1712969/EZTV\" target=\"_blank\"><img
|
68
|
+
src=\"//api.flattr.com/button/flattr-badge-large.png\" alt=\"Flattr this\"
|
69
|
+
title=\"Flattr this\" border=\"0\" style=\"position: absolute; top: 10px;
|
70
|
+
right: 0px;\" /></a></div></div>\n\t\t<div style=\"height: 3px;\"></div>\n\t\t<span
|
71
|
+
style=\"font-size: 9px;\">Monday 17th of March 2014 08:16:45 EST</span><br
|
72
|
+
/>\n\t\t<center>Want to help us out? Bitcoin: <a href=\"bitcoin:1EZTVaGQ6UsjYJ9fwqGnd45oZ6HGT7WKZd\">1EZTVaGQ6UsjYJ9fwqGnd45oZ6HGT7WKZd</a></center>\n\t\t\t\t\t<div
|
73
|
+
id=\"site_menu\">\n\t\t\t\t[ <a class=\"site_menu\" href=\"/\">Home</a> ]\n\t\t\t\t•\n\t\t\t\t[
|
74
|
+
<a class=\"site_menu\" href=\"/tvnews/\">TV-News</a> ]\n\t\t\t\t•\n\t\t\t\t[
|
75
|
+
<a class=\"site_menu\" href=\"/countdown/\">Countdown List</a> ]\n\t\t\t\t•\n\t\t\t\t[
|
76
|
+
<a class=\"site_menu\" href=\"/calendar/\">Calendar</a> ]\n\t\t\t\t•\n\t\t\t\t[
|
77
|
+
<a class=\"site_menu\" href=\"/showlist/\">Show List</a> ]\n\t\t\t\t•\n\t\t\t\t[
|
78
|
+
<a class=\"site_menu\" href=\"/forum/\">Forum</a> ]\n\t\t\t\t•\n\t\t\t\t[
|
79
|
+
<a class=\"site_menu\" href=\"//ezrss.it/\" target=\"_blank\">RSS</a> ]\n\t\t\t\t•\n\t\t\t\t[
|
80
|
+
<a class=\"site_menu\" href=\"/faq/\">FAQ / Help</a> ]\n\t\t\t\t• [
|
81
|
+
<a class=\"site_menu\" href=\"/login/\">Login</a> ] \t\t\t</div>\n\t\t\t<div
|
82
|
+
id=\"gap\"></div>\n\t\t\t<div id=\"divider\"></div>\n\t\t\t<div id=\"gap\"></div><table
|
83
|
+
border=\"0\" width=\"950\" align=\"center\" cellspacing=\"0\" cellpadding=\"0\"
|
84
|
+
class=\"forum_header_border\"><table border=\"0\" width=\"950\" align=\"center\"
|
85
|
+
class=\"forum_header_border\" cellspacing=\"0\" cellpadding=\"0\">\n\t<tr>\n\t\t<td
|
86
|
+
class=\"section_header_column\" valign=\"top\" width=\"300\">\n\t\t\t<!--
|
87
|
+
cache -->\t\t\t<div class=\"forum_thread_header\">\n\t\t\t\t<a href=\"/calendar/\"
|
88
|
+
class=\"site_menu\"><b>Airs today:</b> Monday</a>\n\t\t\t</div>\n\t\t\t<div
|
89
|
+
style=\"overflow: auto; width: 300px; height: 132px; padding-left: 0px;\"
|
90
|
+
class=\"section_header_column\">\n<table border=\"0\" align=\"center\" width=\"100%\"
|
91
|
+
cellspacing=\"0\" cellpadding=\"0\"><tr name=\"hover\"><td class=\"forum_thread_post_end\"> <a
|
92
|
+
href=\"/shows/777/the-following/\" class=\"thread_link\"><b><font size=\"1\">Following,
|
93
|
+
The</font></b></a></td></tr><tr name=\"hover\"><td class=\"forum_thread_post_end\"> <a
|
94
|
+
href=\"/shows/779/adventure-time-with-finn-and-jake/\" class=\"thread_link\"><b><font
|
95
|
+
size=\"1\">Adventure Time with Finn and Jake</font></b></a></td></tr><tr name=\"hover\"><td
|
96
|
+
class=\"forum_thread_post_end\"> <a href=\"/shows/539/2-broke-girls/\"
|
97
|
+
class=\"thread_link\"><b><font size=\"1\">2 Broke Girls</font></b></a></td></tr><tr
|
98
|
+
name=\"hover\"><td class=\"forum_thread_post_end\"> <a
|
99
|
+
href=\"/shows/31/bones/\" class=\"thread_link\"><b><font size=\"1\">Bones</font></b></a></td></tr><tr
|
100
|
+
name=\"hover\"><td class=\"forum_thread_post_end\"> <a
|
101
|
+
href=\"/shows/799/bates-motel/\" class=\"thread_link\"><b><font size=\"1\">Bates
|
102
|
+
Motel</font></b></a></td></tr><tr name=\"hover\"><td class=\"forum_thread_post_end\"> <a
|
103
|
+
href=\"/shows/42/castle-2009/\" class=\"thread_link\"><b><font size=\"1\">Castle
|
104
|
+
(2009)</font></b></a></td></tr><tr name=\"hover\"><td class=\"forum_thread_post_end\"> <a
|
105
|
+
href=\"/shows/319/archer-2009/\" class=\"thread_link\"><b><font size=\"1\">Archer
|
106
|
+
(2009)</font></b></a></td></tr><tr name=\"hover\"><td class=\"forum_thread_post_end\"> <a
|
107
|
+
href=\"/shows/69/dancing-with-the-stars/\" class=\"thread_link\"><b><font
|
108
|
+
size=\"1\">Dancing with the Stars</font></b></a></td></tr><tr name=\"hover\"><td
|
109
|
+
class=\"forum_thread_post_end\"> <a href=\"/shows/70/late-show-with-david-letterman/\"
|
110
|
+
class=\"thread_link\"><b><font size=\"1\">David Letterman, Late Show With</font></b></a></td></tr><tr
|
111
|
+
name=\"hover\"><td class=\"forum_thread_post_end\"> <a
|
112
|
+
href=\"/shows/849/the-fosters/\" class=\"thread_link\"><b><font size=\"1\">Fosters,
|
113
|
+
The</font></b></a></td></tr><tr name=\"hover\"><td class=\"forum_thread_post_end\"> <a
|
114
|
+
href=\"/shows/358/craig-ferguson-the-late-late-show-with/\" class=\"thread_link\"><b><font
|
115
|
+
size=\"1\">Craig Ferguson, The Late Late Show ...</font></b></a></td></tr><tr
|
116
|
+
name=\"hover\"><td class=\"forum_thread_post_end\"> <a
|
117
|
+
href=\"/shows/887/the-blacklist/\" class=\"thread_link\"><b><font size=\"1\">Blacklist,
|
118
|
+
The</font></b></a></td></tr><tr name=\"hover\"><td class=\"forum_thread_post_end\"> <a
|
119
|
+
href=\"/shows/125/how-i-met-your-mother/\" class=\"thread_link\"><b><font
|
120
|
+
size=\"1\">How I met your mother</font></b></a></td></tr><tr name=\"hover\"><td
|
121
|
+
class=\"forum_thread_post_end\"> <a href=\"/shows/899/mom/\"
|
122
|
+
class=\"thread_link\"><b><font size=\"1\">Mom</font></b></a></td></tr><tr
|
123
|
+
name=\"hover\"><td class=\"forum_thread_post_end\"> <a
|
124
|
+
href=\"/shows/659/dallas-2012/\" class=\"thread_link\"><b><font size=\"1\">Dallas
|
125
|
+
(2012)</font></b></a></td></tr><tr name=\"hover\"><td class=\"forum_thread_post_end\"> <a
|
126
|
+
href=\"/shows/416/mike-and-molly/\" class=\"thread_link\"><b><font size=\"1\">Mike
|
127
|
+
and Molly</font></b></a></td></tr><tr name=\"hover\"><td class=\"forum_thread_post_end\"> <a
|
128
|
+
href=\"/shows/930/jimmy-kimmel-live/\" class=\"thread_link\"><b><font size=\"1\">Jimmy
|
129
|
+
Kimmel Live!</font></b></a></td></tr><tr name=\"hover\"><td class=\"forum_thread_post_end\"> <a
|
130
|
+
href=\"/shows/932/the-arsenio-hall-show/\" class=\"thread_link\"><b><font
|
131
|
+
size=\"1\">Arsenio Hall Show, The</font></b></a></td></tr><tr name=\"hover\"><td
|
132
|
+
class=\"forum_thread_post_end\"> <a href=\"/shows/432/conan/\"
|
133
|
+
class=\"thread_link\"><b><font size=\"1\">Conan</font></b></a></td></tr><tr
|
134
|
+
name=\"hover\"><td class=\"forum_thread_post_end\"> <a
|
135
|
+
href=\"/shows/947/intelligence-us/\" class=\"thread_link\"><b><font size=\"1\">Intelligence
|
136
|
+
(US)</font></b></a></td></tr><tr name=\"hover\"><td class=\"forum_thread_post_end\"> <a
|
137
|
+
href=\"/shows/444/being-human-us/\" class=\"thread_link\"><b><font size=\"1\">Being
|
138
|
+
Human (US)</font></b></a></td></tr><tr name=\"hover\"><td class=\"forum_thread_post_end\"> <a
|
139
|
+
href=\"/shows/960/chozen/\" class=\"thread_link\"><b><font size=\"1\">Chozen</font></b></a></td></tr><tr
|
140
|
+
name=\"hover\"><td class=\"forum_thread_post_end\"> <a
|
141
|
+
href=\"/shows/719/moone-boy/\" class=\"thread_link\"><b><font size=\"1\">Moone
|
142
|
+
Boy</font></b></a></td></tr><tr name=\"hover\"><td class=\"forum_thread_post_end\"> <a
|
143
|
+
href=\"/shows/980/star-crossed/\" class=\"thread_link\"><b><font size=\"1\">Star
|
144
|
+
Crossed</font></b></a></td></tr><tr name=\"hover\"><td class=\"forum_thread_post_end\"> <a
|
145
|
+
href=\"/shows/983/the-tonight-show-starring-jimmy-fallon/\" class=\"thread_link\"><b><font
|
146
|
+
size=\"1\">Jimmy Fallon, The Tonight Show Star...</font></b></a></td></tr><tr
|
147
|
+
name=\"hover\"><td class=\"forum_thread_post_end\"> <a
|
148
|
+
href=\"/shows/991/seth-meyers-late-night-with/\" class=\"thread_link\"><b><font
|
149
|
+
size=\"1\">Seth Meyers, Late Night With</font></b></a></td></tr><tr name=\"hover\"><td
|
150
|
+
class=\"forum_thread_post_end\"> <a href=\"/shows/487/teen-wolf/\"
|
151
|
+
class=\"thread_link\"><b><font size=\"1\">Teen Wolf</font></b></a></td></tr><tr
|
152
|
+
name=\"hover\"><td class=\"forum_thread_post_end\"> <a
|
153
|
+
href=\"/shows/490/the-voice/\" class=\"thread_link\"><b><font size=\"1\">Voice,
|
154
|
+
The</font></b></a></td></tr><tr name=\"hover\"><td class=\"forum_thread_post_end\"> <a
|
155
|
+
href=\"/shows/492/single-ladies/\" class=\"thread_link\"><b><font size=\"1\">Single
|
156
|
+
Ladies</font></b></a></td></tr><tr name=\"hover\"><td class=\"forum_thread_post_end\"
|
157
|
+
style=\"border-bottom: 0px;\"> <a href=\"/shows/493/switched-at-birth/\"
|
158
|
+
class=\"thread_link\"><b><font size=\"1\">Switched at Birth</font></b></a></td></tr></table></div>\t\t</td>\n\t\t<td
|
159
|
+
class=\"section_header_column\" valign=\"top\" width=\"350\">\n\t\t\t<!--
|
160
|
+
cache -->\t\t<table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\">\n\t\t\t<tr>\n\t\t\t\t<td
|
161
|
+
colspan=\"2\" class=\"forum_thread_header\">\n\t\t\t\t\t<b>Website News</b>\n\t\t\t\t</td>\n\t\t\t</tr>\n\t\t\t\t<tr
|
162
|
+
name=\"hover\">\n\t\t\t\t\t<td class=\"forum_thread_post\">\n\t\t\t\t\t\t<a
|
163
|
+
href=\"/news/79/know-someone-who-cant-access-eztv/\" class=\"thread_link\"
|
164
|
+
alt=\"Know someone who can't access EZTV?\" title=\"Know someone who can't
|
165
|
+
access EZTV?\">Know someone who can't access EZTV?</a>\n\t\t\t\t\t</td>\n\t\t\t\t</tr>\n\t\t\t\t<tr
|
166
|
+
name=\"hover\">\n\t\t\t\t\t<td class=\"forum_thread_post\">\n\t\t\t\t\t\t<a
|
167
|
+
href=\"/news/78/start-your-own-tv-site-software-worth-sharing/\" class=\"thread_link\"
|
168
|
+
alt=\"Start your own TV site, software worth sharing\" title=\"Start your
|
169
|
+
own TV site, software worth sharing\">Start your own TV site, software worth
|
170
|
+
\ shari...</a>\n\t\t\t\t\t</td>\n\t\t\t\t</tr>\n\t\t\t\t<tr name=\"hover\">\n\t\t\t\t\t<td
|
171
|
+
class=\"forum_thread_post\">\n\t\t\t\t\t\t<a href=\"/news/77/real-media-click-here/\"
|
172
|
+
class=\"thread_link\" alt=\"Real Media? click here!\" title=\"Real Media?
|
173
|
+
click here!\">Real Media? click here!</a>\n\t\t\t\t\t</td>\n\t\t\t\t</tr>\n\t\t\t\t<tr
|
174
|
+
name=\"hover\">\n\t\t\t\t\t<td class=\"forum_thread_post\">\n\t\t\t\t\t\t<a
|
175
|
+
href=\"/news/76/white-house-petitioned-to-investigate-mpaa-bribery/\" class=\"thread_link\"
|
176
|
+
alt=\"White House Petitioned to Investigate MPAA Bribery\" title=\"White House
|
177
|
+
Petitioned to Investigate MPAA Bribery\">White House Petitioned to Investigate
|
178
|
+
MPAA Br...</a>\n\t\t\t\t\t</td>\n\t\t\t\t</tr>\n\t\t\t\t<tr name=\"hover\">\n\t\t\t\t\t<td
|
179
|
+
class=\"forum_thread_post\">\n\t\t\t\t\t\t<a href=\"/news/75/your-chance-to-get-involved/\"
|
180
|
+
class=\"thread_link\" alt=\"Your chance to get involved!\" title=\"Your chance
|
181
|
+
to get involved!\">Your chance to get involved!</a>\n\t\t\t\t\t</td>\n\t\t\t\t</tr>\n\t\t\t\t<tr
|
182
|
+
name=\"hover\">\n\t\t\t\t\t<td class=\"forum_thread_post\">\n\t\t\t\t\t\t<a
|
183
|
+
href=\"/news/74/issues-with-website/\" class=\"thread_link\" alt=\"Issues
|
184
|
+
with website\" title=\"Issues with website\">Issues with website</a>\n\t\t\t\t\t</td>\n\t\t\t\t</tr>\n\t\t\t\t<tr
|
185
|
+
name=\"hover\">\n\t\t\t\t\t<td class=\"forum_thread_post\" style=\"border-bottom:
|
186
|
+
0px;\">\n\t\t\t\t\t\t<a href=\"/news/73/eztv-turns-5/\" class=\"thread_link\"
|
187
|
+
alt=\"EZTV turns 5\" title=\"EZTV turns 5\">EZTV turns 5</a>\n\t\t\t\t\t</td>\n\t\t\t\t</tr>\n</table>\t\t</td>\n\t\t<td
|
188
|
+
class=\"section_header_column\" valign=\"top\">\n\t\t\t<!-- cache -->\t\t<table
|
189
|
+
width=\"100%\" cellspacing=\"0\" cellpadding=\"0\">\n\t\t\t<tr>\n\t\t\t\t<td
|
190
|
+
colspan=\"2\" class=\"forum_thread_header_end\">\n\t\t\t\t\t<a href=\"/tvnews/\"
|
191
|
+
class=\"site_menu\"><b>TV News</b></a>\n\t\t\t\t</td>\n\t\t\t</tr>\n\t\t\t<tr
|
192
|
+
name=\"hover\">\n\t\t\t\t<td class=\"forum_thread_post_end\">\n\t\t\t\t\t<a
|
193
|
+
href=\"/tvnews/6061/star-wars-the-clone-wars-2014-new-episodes-march-7th/\"
|
194
|
+
class=\"thread_link\" alt=\"Star Wars The Clone Wars - 2014 New Episodes March
|
195
|
+
7th\" title=\"Star Wars The Clone Wars - 2014 New Episodes March 7th\">Star
|
196
|
+
Wars The Clone Wars - 2014 New...</a>\n\t\t\t\t</td>\n\t\t\t</tr>\n\t\t\t<tr
|
197
|
+
name=\"hover\">\n\t\t\t\t<td class=\"forum_thread_post_end\">\n\t\t\t\t\t<a
|
198
|
+
href=\"/tvnews/6060/being-human-us-ending/\" class=\"thread_link\" alt=\"Being
|
199
|
+
Human US - Ending\" title=\"Being Human US - Ending\">Being Human US - Ending</a>\n\t\t\t\t</td>\n\t\t\t</tr>\n\t\t\t<tr
|
200
|
+
name=\"hover\">\n\t\t\t\t<td class=\"forum_thread_post_end\">\n\t\t\t\t\t<a
|
201
|
+
href=\"/tvnews/6059/heroes-returns-reborn-2015/\" class=\"thread_link\" alt=\"Heroes
|
202
|
+
Returns Reborn - 2015\" title=\"Heroes Returns Reborn - 2015\">Heroes Returns
|
203
|
+
Reborn - 2015</a>\n\t\t\t\t</td>\n\t\t\t</tr>\n\t\t\t<tr name=\"hover\">\n\t\t\t\t<td
|
204
|
+
class=\"forum_thread_post_end\">\n\t\t\t\t\t<a href=\"/tvnews/6057/24-live-another-day-5-may-2014/\"
|
205
|
+
class=\"thread_link\" alt=\"24 Live Another Day - 5 May, 2014\" title=\"24
|
206
|
+
Live Another Day - 5 May, 2014\">24 Live Another Day - 5 May, 2014</a>\n\t\t\t\t</td>\n\t\t\t</tr>\n\t\t\t<tr
|
207
|
+
name=\"hover\">\n\t\t\t\t<td class=\"forum_thread_post_end\">\n\t\t\t\t\t<a
|
208
|
+
href=\"/tvnews/6056/orange-is-the-new-black-s2-coming-in-june/\" class=\"thread_link\"
|
209
|
+
alt=\"Orange is the New Black S2 Coming in June\" title=\"Orange is the New
|
210
|
+
Black S2 Coming in June\">Orange is the New Black S2 Coming i...</a>\n\t\t\t\t</td>\n\t\t\t</tr>\n\t\t\t<tr
|
211
|
+
name=\"hover\">\n\t\t\t\t<td class=\"forum_thread_post_end\">\n\t\t\t\t\t<a
|
212
|
+
href=\"/tvnews/6055/the-x-factor-us-not-renewed/\" class=\"thread_link\" alt=\"The
|
213
|
+
X Factor (US) - Not Renewed\" title=\"The X Factor (US) - Not Renewed\">The
|
214
|
+
X Factor (US) - Not Renewed</a>\n\t\t\t\t</td>\n\t\t\t</tr>\n\t\t\t<tr name=\"hover\">\n\t\t\t\t<td
|
215
|
+
class=\"forum_thread_post_end\" style=\"border-bottom: 0px;\">\n\t\t\t\t\t<a
|
216
|
+
href=\"/tvnews/6054/psych-final-season/\" class=\"thread_link\" alt=\"Psych
|
217
|
+
- FINAL SEASON\" title=\"Psych - FINAL SEASON\">Psych - FINAL SEASON</a>\n\t\t\t\t</td>\n\t\t\t</tr>\n</table>\t\t</td>\n\t</tr>\n</table>\n<table
|
218
|
+
border=\"0\" width=\"950\" align=\"center\" class=\"forum_header_border\"
|
219
|
+
style=\"border-top: 0px; border-bottom: 0px;\" cellspacing=\"0\" cellpadding=\"0\">\n\t<tr>\n\t\t<td
|
220
|
+
class=\"forum_thread_header_end\"><!-- cache -->Select Theme: [ <a href=\"/style/original/\"
|
221
|
+
class=\"header\">Original</a> ] • [ <a href=\"/style/light/\" class=\"header\">Light</a>
|
222
|
+
] • [ <a href=\"/style/dark/\" class=\"header\">Dark</a> ]</td>\n\t</tr>\n</table>\n<BR
|
223
|
+
/>\n<table border=\"0\" width=\"950\" align=\"center\" class=\"forum_header_border\"
|
224
|
+
cellspacing=\"0\" cellpadding=\"0\">\n\t<tr>\n\t\t<td class=\"forum_thread_header_end\"
|
225
|
+
colspan=\"2\">Announcement</td>\n\t</tr>\n\t<tr>\n\t\t<td class=\"forum_thread_post\">\n\t\t\tDo
|
226
|
+
you want to help seed? We are always looking for new seeders who can <b>sustain
|
227
|
+
10mbit and/or higher upload</b> speeds!<BR />\n\t\t\t<BR />\n\t\t\tIf you
|
228
|
+
think you would be able to help seed at least five new torrents a day, likes
|
229
|
+
the thought of receiving the shows<BR />\n\t\t\tbefore everyone else while
|
230
|
+
giving back to the community, and have some free time - please stop by our
|
231
|
+
IRC channel and contact an op.<BR />\n\t\t</td>\n\t\t<td valign=\"top\" class=\"forum_header\"
|
232
|
+
style=\"padding: 2px 0px 2px 0px; border-bottom: 1px SOLID #CECECE;\">\n\t\t\t<form
|
233
|
+
action=\"/login/\" method=\"post\">\t\t\t<table width=\"100%\" cellpadding=\"0\"
|
234
|
+
cellspacing=\"0\" border=\"0\">\n\t\t\t\t<tr>\n\t\t\t\t\t<td nowrap=\"nowrap\"
|
235
|
+
class=\"forum_header\" scope=\"col\"><p align=\"right\">Username: <input type=\"text\"
|
236
|
+
class=\"form_field\" name=\"loginname\"></p></td>\n\t\t\t\t</tr>\n\t\t\t\t<tr>\n\t\t\t\t\t<td
|
237
|
+
nowrap=\"nowrap\" class=\"forum_header\"><p align=\"right\">Password: <input
|
238
|
+
type=\"password\" class=\"form_field\" name=\"password\"></p></td>\n\t\t\t\t</tr>\n\t\t\t\t<tr>\n\t\t\t\t\t\t\t\t\t\t<td
|
239
|
+
nowrap=\"nowrap\" class=\"forum_header\" style=\"padding-left: 34px;\">\n\t\t\t\t\t\t<script
|
240
|
+
type=\"text/javascript\">function login_submit_form( obj ) { $( '#' + obj
|
241
|
+
).submit(); return false; }</script>\n\t\t\t\t\t\t<input type=\"submit\" name=\"submit\"
|
242
|
+
value=\"Login\" id=\"login_submit\" style=\"display: none;\" />\n\t\t\t\t\t\t<a
|
243
|
+
href=\"javascript:void(0);\" id=\"form_submit_button\" class=\"form_action_button_left\"
|
244
|
+
onclick=\"return login_submit_form( 'login_submit' );\">\n\t\t\t\t\t\t\t<span
|
245
|
+
class=\"form_action_left\"></span>\n\t\t\t\t\t\t\t<span class=\"form_action_text\">Login</span>\n\t\t\t\t\t\t\t<span
|
246
|
+
class=\"form_action_right\"></span>\n\t\t\t\t\t\t</a>\n\t\t\t\t\t\t<a href=\"/register/\"
|
247
|
+
id=\"form_submit_button\" class=\"form_action_button_left\">\n\t\t\t\t\t\t\t<span
|
248
|
+
class=\"form_action_left\"></span>\n\t\t\t\t\t\t\t<span class=\"form_action_text\">Register</span>\n\t\t\t\t\t\t\t<span
|
249
|
+
class=\"form_action_right\"></span>\n\t\t\t\t\t\t</a>\n\t\t\t\t\t</td>\n\t\t\t\t</tr>\n\t\t\t</table>\n\t\t\t</form>\t\t</td>\n\t</tr>\n\t<tr>\n\t\t<td
|
250
|
+
class=\"section_create\" colspan=\"2\">\n\t\t\t<form action=\"/search/\" method=\"POST\"
|
251
|
+
name=\"search\" id=\"search\">\n\t\t\t<div style=\"float: left;\">\n\t\t\t\tSearch:
|
252
|
+
<input type=\"txt\" name=\"SearchString1\" size=\"46\" value=\"\" /> or \n\t\t\t</div>\n\t\t\t<div
|
253
|
+
style=\"float: left;\">\n\t\t\t\t<!-- cache -->\n\t\t\t\t<select name=\"SearchString\">\n\t\t\t\t\t<option
|
254
|
+
value=\"\"> -- select show -- </option><option value=\"449\">10 O'Clock Live</option><option
|
255
|
+
value=\"308\">10 Things I Hate About You</option><option value=\"1000\">100,
|
256
|
+
The</option><option value=\"750\">1600 Penn</option><option value=\"539\">2
|
257
|
+
Broke Girls</option><option value=\"350\">2010 Vancouver Winter Olympics</option><option
|
258
|
+
value=\"678\">2012 London Summer Olympics</option><option value=\"970\">2014
|
259
|
+
Sochi Winter Olympics</option><option value=\"1\">24</option><option value=\"2\">30
|
260
|
+
Rock</option><option value=\"482\">5 inch Floppy</option><option value=\"817\">60
|
261
|
+
Minutes (US)</option><option value=\"718\">666 Park Avenue</option><option
|
262
|
+
value=\"952\">7.39, The</option><option value=\"3\">90210</option><option
|
263
|
+
value=\"650\">A Jubilee Tribute To The Queen By The Prince Of Wales</option><option
|
264
|
+
value=\"507\">A Lonely Place for Dying</option><option value=\"698\">A Touch
|
265
|
+
Of Cloth</option><option value=\"753\">A Young Doctors Notebook</option><option
|
266
|
+
value=\"981\">About A Boy</option><option value=\"567\">Absolutely Fabulous</option><option
|
267
|
+
value=\"994\">Academy Awards (Oscars), The</option><option value=\"320\">Accidentally
|
268
|
+
on Purpose</option><option value=\"4\">According to Jim</option><option value=\"697\">Accused
|
269
|
+
(UK)</option><option value=\"649\">Adele Live in London with Matt Lauer (2012)</option><option
|
270
|
+
value=\"779\">Adventure Time with Finn and Jake</option><option value=\"510\">Against
|
271
|
+
the Wall</option><option value=\"618\">Alan Carr's New Year Specstacular</option><option
|
272
|
+
value=\"573\">Alcatraz</option><option value=\"964\">Ali G Rezurection</option><option
|
273
|
+
value=\"555\">Allen Gregory</option><option value=\"924\">Almost Human</option><option
|
274
|
+
value=\"957\">Alpha House</option><option value=\"501\">Alphas</option><option
|
275
|
+
value=\"5\">Amazing Race, The</option><option value=\"922\">Ambassadors</option><option
|
276
|
+
value=\"6\">American Chopper</option><option value=\"7\">American Dad!</option><option
|
277
|
+
value=\"8\">American Gladiators</option><option value=\"562\">American Horror
|
278
|
+
Story</option><option value=\"9\">American Idol</option><option value=\"780\">Americans
|
279
|
+
(2013), The</option><option value=\"10\">Americas Funniest Home Videos</option><option
|
280
|
+
value=\"11\">Americas Got Talent</option><option value=\"12\">Americas Next
|
281
|
+
Top Model</option><option value=\"423\">An Idiot Abroad</option><option value=\"720\">Andrew
|
282
|
+
Marrs History Of The World</option><option value=\"670\">Anger Management</option><option
|
283
|
+
value=\"502\">Angry Boys</option><option value=\"680\">Animal Practice</option><option
|
284
|
+
value=\"971\">Annual Grammy Awards</option><option value=\"827\">Anthony Bourdain
|
285
|
+
Parts Unknown</option><option value=\"13\">Apparitions</option><option value=\"14\">Apprentice
|
286
|
+
(UK), The</option><option value=\"15\">Apprentice (US), The</option><option
|
287
|
+
value=\"694\">Aqua Teen Hunger Force</option><option value=\"667\">Arachnoquake</option><option
|
288
|
+
value=\"319\">Archer (2009)</option><option value=\"584\">Arctic Air</option><option
|
289
|
+
value=\"583\">Are You There Chelsea</option><option value=\"805\">Army Wives</option><option
|
290
|
+
value=\"845\">Arrested Development</option><option value=\"679\">Arrow</option><option
|
291
|
+
value=\"932\">Arsenio Hall Show, The</option><option value=\"16\">Ashes to
|
292
|
+
Ashes</option><option value=\"946\">Assets, The</option><option value=\"897\">Atlantis
|
293
|
+
(2013)</option><option value=\"749\">Attenborough 60 Years In The Wild</option><option
|
294
|
+
value=\"582\">Awake</option><option value=\"508\">Awkward</option><option
|
295
|
+
value=\"872\">Axe Cop</option><option value=\"664\">Baby Daddy</option><option
|
296
|
+
value=\"977\">Babylon</option><option value=\"17\">Bachelor, The</option><option
|
297
|
+
value=\"906\">Back in the Game</option><option value=\"687\">Bad Education
|
298
|
+
(UK)</option><option value=\"381\">Bad Universe</option><option value=\"552\">Bag
|
299
|
+
of Bones</option><option value=\"768\">Banshee</option><option value=\"816\">Barabbas</option><option
|
300
|
+
value=\"799\">Bates Motel</option><option value=\"18\">Battlestar Galactica</option><option
|
301
|
+
value=\"19\">Beast, The</option><option value=\"316\">Beautiful Life, The</option><option
|
302
|
+
value=\"725\">Beauty And The Beast (2012)</option><option value=\"513\">Beaver
|
303
|
+
Falls</option><option value=\"566\">Beavis and Butt-head</option><option value=\"465\">Bedlam</option><option
|
304
|
+
value=\"20\">Being Erica</option><option value=\"21\">Being Human</option><option
|
305
|
+
value=\"444\">Being Human (US)</option><option value=\"863\">Being Mary Jane</option><option
|
306
|
+
value=\"888\">Being: Mike Tyson</option><option value=\"997\">Believe</option><option
|
307
|
+
value=\"706\">Ben and Kate</option><option value=\"607\">Bent</option><option
|
308
|
+
value=\"628\">Best Friends Forever</option><option value=\"965\">Best Laid
|
309
|
+
Plans, The</option><option value=\"956\">Betas</option><option value=\"903\">Betrayal</option><option
|
310
|
+
value=\"22\">Better Off Ted</option><option value=\"402\">Better With You</option><option
|
311
|
+
value=\"637\">Betty White's Off Their Rockers</option><option value=\"455\">Beyond
|
312
|
+
the Game</option><option value=\"23\">Big Bang Theory, The</option><option
|
313
|
+
value=\"27\">Big Brother (US)</option><option value=\"24\">Big Brother UK</option><option
|
314
|
+
value=\"25\">Big Brothers Big Mouth</option><option value=\"26\">Big Brothers
|
315
|
+
Little Brother</option><option value=\"391\">Big C, The</option><option value=\"28\">Big
|
316
|
+
Love</option><option value=\"893\">Big School</option><option value=\"876\">Bikinis
|
317
|
+
& Boardwalks</option><option value=\"936\">Bill Cosby Far From Finished (2013)</option><option
|
318
|
+
value=\"29\">Biography Channel Documentaries</option><option value=\"951\">Birds
|
319
|
+
Of A Feather</option><option value=\"599\">Birdsong</option><option value=\"955\">Bitten</option><option
|
320
|
+
value=\"677\">Black Dynamite</option><option value=\"30\">Black Gold</option><option
|
321
|
+
value=\"546\">Black Mirror</option><option value=\"962\">Black Sails</option><option
|
322
|
+
value=\"887\">Blacklist, The</option><option value=\"671\">Blackout</option><option
|
323
|
+
value=\"801\">Blandings</option><option value=\"563\">Bleak Old Shop of Stuff,
|
324
|
+
The</option><option value=\"978\">Bletchley Circle, The</option><option value=\"408\">Blue
|
325
|
+
Bloods</option><option value=\"570\">Blue Mountain State</option><option value=\"791\">Blue
|
326
|
+
Rose, The</option><option value=\"806\">Bluestone 42</option><option value=\"411\">Boardwalk
|
327
|
+
Empire</option><option value=\"429\">Bobs Burgers</option><option value=\"532\">Body
|
328
|
+
Farm, The</option><option value=\"472\">Body of Proof</option><option value=\"597\">Bomb
|
329
|
+
Girls</option><option value=\"31\">Bones</option><option value=\"940\">Bonnie
|
330
|
+
& Clyde (2013)</option><option value=\"366\">Boondocks, The</option><option
|
331
|
+
value=\"32\">Border, The</option><option value=\"317\">Bored to Death</option><option
|
332
|
+
value=\"474\">Borgias, The</option><option value=\"34\">Born Survivor Bear
|
333
|
+
Grylls</option><option value=\"547\">Boss</option><option value=\"33\">Boston
|
334
|
+
Legal</option><option value=\"378\">Boston Med</option><option value=\"795\">Boston's
|
335
|
+
Finest</option><option value=\"35\">Boy Meets Girl 2009</option><option value=\"36\">Breaking
|
336
|
+
Bad</option><option value=\"478\">Breaking In</option><option value=\"468\">Breakout
|
337
|
+
kings</option><option value=\"914\">Breathless (UK)</option><option value=\"709\">Brickleberry</option><option
|
338
|
+
value=\"869\">Bridge (US), The</option><option value=\"967\">Broad City</option><option
|
339
|
+
value=\"803\">Broadchurch</option><option value=\"847\">Brooklyn DA</option><option
|
340
|
+
value=\"885\">Brooklyn Nine-Nine</option><option value=\"37\">Brotherhood</option><option
|
341
|
+
value=\"38\">Brothers and Sisters</option><option value=\"351\">Bubble, The</option><option
|
342
|
+
value=\"691\">Bullet in the Face</option><option value=\"660\">Bunheads</option><option
|
343
|
+
value=\"39\">Burn Notice</option><option value=\"901\">By Any Means</option><option
|
344
|
+
value=\"40\">Californication</option><option value=\"861\">Call Centre, The</option><option
|
345
|
+
value=\"469\">Camelot</option><option value=\"868\">Camp</option><option value=\"442\">Cape,
|
346
|
+
The (2011)</option><option value=\"41\">Caprica</option><option value=\"880\">Capture</option><option
|
347
|
+
value=\"759\">Carrie Diaries, The</option><option value=\"42\">Castle (2009)</option><option
|
348
|
+
value=\"43\">Catastrophe</option><option value=\"870\">Cedar Cove</option><option
|
349
|
+
value=\"44\">Celebrity Fit Club</option><option value=\"473\">CHAOS</option><option
|
350
|
+
value=\"430\">Charlie Brooker's Screenwipe</option><option value=\"785\">Charlie
|
351
|
+
Brooker's Weekly Wipe</option><option value=\"523\">Charlie's Angels (2011)</option><option
|
352
|
+
value=\"417\">Chase (2010)</option><option value=\"45\">Chasers War on Everything,
|
353
|
+
The</option><option value=\"46\">Cheerleader U</option><option value=\"544\">Chemistry</option><option
|
354
|
+
value=\"673\">Cherry Healey How To Get A Life</option><option value=\"462\">Chicago
|
355
|
+
Code, The</option><option value=\"682\">Chicago Fire</option><option value=\"921\">Chicago
|
356
|
+
PD</option><option value=\"881\">Chickens</option><option value=\"695\">Childrens
|
357
|
+
Hospital (US)</option><option value=\"47\">Chopping Block, The</option><option
|
358
|
+
value=\"960\">Chozen</option><option value=\"48\">Chuck</option><option value=\"705\">Citizen
|
359
|
+
Khan</option><option value=\"49\">City Homicide</option><option value=\"50\">Cleaner,
|
360
|
+
The</option><option value=\"349\">Cleveland Show, The</option><option value=\"629\">Client
|
361
|
+
List, The</option><option value=\"51\">Clone</option><option value=\"52\">Closer,
|
362
|
+
The</option><option value=\"514\">Code, The</option><option value=\"53\">Colbert
|
363
|
+
Report, The</option><option value=\"54\">Cold Case</option><option value=\"55\">CollegeHumor
|
364
|
+
Show, The</option><option value=\"704\">Coma (2012)</option><option value=\"499\">Combat
|
365
|
+
Hospital</option><option value=\"431\">Come Fly With Me (2010)</option><option
|
366
|
+
value=\"56\">Comedy Central Presents</option><option value=\"575\">Comic Book
|
367
|
+
Men</option><option value=\"638\">Common Law (2012)</option><option value=\"325\">Community</option><option
|
368
|
+
value=\"432\">Conan</option><option value=\"643\">Continuum</option><option
|
369
|
+
value=\"692\">Copper</option><option value=\"57\">COPS</option><option value=\"384\">Cops
|
370
|
+
L.A.C.</option><option value=\"998\">Cosmos A Spacetime Odyssey</option><option
|
371
|
+
value=\"329\">Cougar Town</option><option value=\"388\">Covert Affairs</option><option
|
372
|
+
value=\"767\">Cracked</option><option value=\"358\">Craig Ferguson, The Late
|
373
|
+
Late Show with</option><option value=\"58\">Crash</option><option value=\"895\">Crazy
|
374
|
+
Ones, The</option><option value=\"59\">Criminal Justice</option><option value=\"60\">Criminal
|
375
|
+
Minds</option><option value=\"457\">Criminal Minds: Suspect Behavior</option><option
|
376
|
+
value=\"1002\">Crisis</option><option value=\"760\">Crossbones</option><option
|
377
|
+
value=\"857\">Crossing Lines</option><option value=\"61\">Crusoe</option><option
|
378
|
+
value=\"62\">CSI: Crime Scene Investigation</option><option value=\"63\">CSI:
|
379
|
+
Miami</option><option value=\"64\">CSI: NY</option><option value=\"727\">Cuckoo</option><option
|
380
|
+
value=\"788\">Cult</option><option value=\"651\">Culture Show, The</option><option
|
381
|
+
value=\"65\">Cupid (2009)</option><option value=\"66\">Curb Your Enthusiasm</option><option
|
382
|
+
value=\"733\">Curiosity</option><option value=\"815\">Da Vincis Demons</option><option
|
383
|
+
value=\"884\">Dads (2013)</option><option value=\"67\">Daily Show, The</option><option
|
384
|
+
value=\"659\">Dallas (2012)</option><option value=\"68\">Damages</option><option
|
385
|
+
value=\"485\">Dan For Mayor</option><option value=\"69\">Dancing with the
|
386
|
+
Stars</option><option value=\"590\">Danger 5</option><option value=\"742\">Dara
|
387
|
+
O Briains Science Club</option><option value=\"313\">Dark Blue</option><option
|
388
|
+
value=\"773\">David Attenboroughs Africa</option><option value=\"70\">David
|
389
|
+
Letterman, Late Show With</option><option value=\"663\">Dead Boss</option><option
|
390
|
+
value=\"71\">Dead Set</option><option value=\"72\">Deadliest Catch</option><option
|
391
|
+
value=\"73\">Deadliest Warrior</option><option value=\"535\">Death Valley</option><option
|
392
|
+
value=\"758\">Deception</option><option value=\"383\">Deep, The</option><option
|
393
|
+
value=\"400\">Defenders, The</option><option value=\"810\">Defiance</option><option
|
394
|
+
value=\"299\">Defying Gravity</option><option value=\"74\">Delocated</option><option
|
395
|
+
value=\"75\">Demons</option><option value=\"632\">Derek</option><option value=\"76\">Desperate
|
396
|
+
Housewives</option><option value=\"310\">Desperate Romantics</option><option
|
397
|
+
value=\"397\">Detroit 187</option><option value=\"77\">Devils Whore, The</option><option
|
398
|
+
value=\"854\">Devious Maids</option><option value=\"78\">Dexter</option><option
|
399
|
+
value=\"657\">Diamond Jubilee Concert 2012</option><option value=\"592\">Diamond
|
400
|
+
Queen, The</option><option value=\"617\">Dick Clark's New Year's Rockin' Eve
|
401
|
+
with Ryan Seacrest</option><option value=\"602\">Dirk Gently</option><option
|
402
|
+
value=\"79\">Dirty Jobs</option><option value=\"80\">Dirty Sexy Money</option><option
|
403
|
+
value=\"81\">Discovery Channel</option><option value=\"761\">Do No Harm</option><option
|
404
|
+
value=\"82\">Doctor Who (2005)</option><option value=\"988\">Doll & Em</option><option
|
405
|
+
value=\"83\">Dollhouse</option><option value=\"630\">Don't Trust the B----
|
406
|
+
in Apartment 23</option><option value=\"540\">Downton Abbey</option><option
|
407
|
+
value=\"762\">Dracula (US) (2013)</option><option value=\"927\">Drifters</option><option
|
408
|
+
value=\"301\">Drop Dead Diva</option><option value=\"875\">Drunk History</option><option
|
409
|
+
value=\"976\">Duck Quacks Dont Echo (UK)</option><option value=\"641\">Duets</option><option
|
410
|
+
value=\"305\">Durham County</option><option value=\"606\">Earthflight</option><option
|
411
|
+
value=\"84\">Eastbound and Down</option><option value=\"327\">Eastwick</option><option
|
412
|
+
value=\"312\">Easy Money</option><option value=\"715\">Elementary</option><option
|
413
|
+
value=\"85\">Eleventh Hour</option><option value=\"86\">Eli Stone</option><option
|
414
|
+
value=\"729\">Emily Owens MD</option><option value=\"318\">Emmy Awards</option><option
|
415
|
+
value=\"460\">Endgame</option><option value=\"551\">Enlightened</option><option
|
416
|
+
value=\"953\">Enlisted</option><option value=\"87\">Entourage</option><option
|
417
|
+
value=\"433\">Episodes</option><option value=\"88\">ER</option><option value=\"596\">Eternal
|
418
|
+
Law</option><option value=\"89\">Eureka</option><option value=\"646\">Eurovision
|
419
|
+
Song Contest</option><option value=\"415\">Event, The</option><option value=\"90\">Everybody
|
420
|
+
Hates Chris</option><option value=\"665\">Exes, The</option><option value=\"736\">Face
|
421
|
+
Off</option><option value=\"91\">Factory</option><option value=\"530\">Fades,
|
422
|
+
The</option><option value=\"447\">Fairly Legal</option><option value=\"746\">Falcon</option><option
|
423
|
+
value=\"842\">Fall, The</option><option value=\"494\">Falling Skies</option><option
|
424
|
+
value=\"92\">Family Guy</option><option value=\"835\">Family Tools</option><option
|
425
|
+
value=\"837\">Family Tree</option><option value=\"989\">Fat Tony & Co</option><option
|
426
|
+
value=\"559\">Fear Factor</option><option value=\"93\">Fear Itself</option><option
|
427
|
+
value=\"94\">Feasting On Waves</option><option value=\"95\">Fifth Gear</option><option
|
428
|
+
value=\"589\">Finder, The</option><option value=\"744\">Firefly 10th Anniversary
|
429
|
+
Browncoats Unite</option><option value=\"591\">Firm, The</option><option value=\"96\">Fixer,
|
430
|
+
The</option><option value=\"324\">FlashForward</option><option value=\"97\">Flashpoint</option><option
|
431
|
+
value=\"973\">Fleming The Man Who Would Be Bond</option><option value=\"98\">Flight
|
432
|
+
of the Conchords</option><option value=\"959\">Flowers In The Attic (2014)</option><option
|
433
|
+
value=\"777\">Following, The</option><option value=\"99\">Fonejacker</option><option
|
434
|
+
value=\"323\">Forgotten, The</option><option value=\"849\">Fosters, The</option><option
|
435
|
+
value=\"843\">Frankie</option><option value=\"491\">Franklin & Bash</option><option
|
436
|
+
value=\"528\">Free Agents (US)</option><option value=\"529\">Fresh Meat</option><option
|
437
|
+
value=\"100\">Friday Night Lights</option><option value=\"512\">Friends with
|
438
|
+
Benefits</option><option value=\"101\">Fringe</option><option value=\"102\">Frisky
|
439
|
+
Dingo</option><option value=\"999\">From Dusk Till Dawn The Series</option><option
|
440
|
+
value=\"531\">Fry's Planet Word </option><option value=\"374\">Futurama</option><option
|
441
|
+
value=\"481\">Game of Thrones</option><option value=\"103\">Game, The</option><option
|
442
|
+
value=\"654\">Gary Barlow On Her Majestys Service</option><option value=\"104\">Gary
|
443
|
+
Unmarried</option><option value=\"688\">Gates</option><option value=\"367\">Gates,
|
444
|
+
The</option><option value=\"576\">GCB</option><option value=\"105\">Gene Simmons
|
445
|
+
Family Jewels</option><option value=\"864\">Get Out Alive (2013)</option><option
|
446
|
+
value=\"934\">Getting On (US)</option><option value=\"106\">Ghost Whisperer</option><option
|
447
|
+
value=\"517\">Gifted Man, A</option><option value=\"634\">Girls</option><option
|
448
|
+
value=\"412\">Glades, The</option><option value=\"107\">Glee</option><option
|
449
|
+
value=\"683\">Go On</option><option value=\"890\">Goldbergs, The</option><option
|
450
|
+
value=\"793\">Golden Boy</option><option value=\"700\">Good Cop</option><option
|
451
|
+
value=\"379\">Good Game (2010)</option><option value=\"363\">Good Guys, The</option><option
|
452
|
+
value=\"322\">Good Wife, The</option><option value=\"108\">Goode Family, The</option><option
|
453
|
+
value=\"838\">Goodwin Games, The</option><option value=\"716\">Gordon Ramsays
|
454
|
+
Ultimate Cookery Course</option><option value=\"853\">Gordons Great Escape</option><option
|
455
|
+
value=\"109\">Gossip Girl</option><option value=\"833\">Graceland</option><option
|
456
|
+
value=\"939\">Great Christmas Light Fight, The</option><option value=\"568\">Great
|
457
|
+
Expectations (2011)</option><option value=\"110\">Greek</option><option value=\"111\">Greys
|
458
|
+
Anatomy</option><option value=\"556\">Grimm</option><option value=\"926\">Ground
|
459
|
+
Floor</option><option value=\"982\">Growing Up Fisher</option><option value=\"614\">Gruffalo's
|
460
|
+
Child, The</option><option value=\"112\">Guard, The</option><option value=\"702\">Guys
|
461
|
+
With Kids</option><option value=\"615\">Hacks</option><option value=\"332\">Hank</option><option
|
462
|
+
value=\"763\">Hannibal</option><option value=\"497\">Happily Divorced</option><option
|
463
|
+
value=\"480\">Happy Endings</option><option value=\"113\">Harpers Island</option><option
|
464
|
+
value=\"446\">Harry's Law</option><option value=\"538\">Hart of Dixie</option><option
|
465
|
+
value=\"644\">Hatfields and McCoys (2012)</option><option value=\"647\">Have
|
466
|
+
I Got A Bit More News For You</option><option value=\"642\">Have I Got News
|
467
|
+
For You</option><option value=\"409\">Haven</option><option value=\"848\">Haves
|
468
|
+
and the Have Nots, The</option><option value=\"418\">Hawaii Five-0 (2010)</option><option
|
469
|
+
value=\"114\">Hawthorne</option><option value=\"800\">Heading Out</option><option
|
470
|
+
value=\"950\">Helix</option><option value=\"558\">Hell on Wheels</option><option
|
471
|
+
value=\"399\">Hellcats</option><option value=\"902\">Hello Ladies</option><option
|
472
|
+
value=\"115\">Hells Kitchen UK</option><option value=\"311\">Hells Kitchen
|
473
|
+
US</option><option value=\"645\">Hemingway & Gellhorn</option><option value=\"831\">Hemlock
|
474
|
+
Grove</option><option value=\"116\">Heroes</option><option value=\"375\">Hiccups</option><option
|
475
|
+
value=\"871\">High School USA</option><option value=\"117\">Hills, The</option><option
|
476
|
+
value=\"969\">Hinterland (a.k.a. Y Gwyll)</option><option value=\"118\">History
|
477
|
+
Channel Documentaries</option><option value=\"745\">Hit And Miss</option><option
|
478
|
+
value=\"846\">Hit The Floor</option><option value=\"958\">HitRECord on TV</option><option
|
479
|
+
value=\"119\">Hole in the Wall</option><option value=\"672\">Hollow Crown,
|
480
|
+
The</option><option value=\"120\">Hollowmen, The</option><option value=\"536\">Homeland</option><option
|
481
|
+
value=\"121\">Honest</option><option value=\"598\">Hooters Dream Girls</option><option
|
482
|
+
value=\"122\">Hope Springs</option><option value=\"898\">Hostages</option><option
|
483
|
+
value=\"389\">Hot in Cleveland</option><option value=\"123\">Hotel Babylon</option><option
|
484
|
+
value=\"689\">Hotel Hell</option><option value=\"506\">Hour UK (2011), The</option><option
|
485
|
+
value=\"124\">House</option><option value=\"792\">House of Cards (2013)</option><option
|
486
|
+
value=\"557\">House of Lies</option><option value=\"125\">How I met your mother</option><option
|
487
|
+
value=\"126\">How Not To Live Your Life</option><option value=\"520\">How
|
488
|
+
To Be A Gentleman</option><option value=\"822\">How to Live With Your Parents</option><option
|
489
|
+
value=\"353\">How to Make It In America</option><option value=\"456\">How
|
490
|
+
TV Ruined Your Life</option><option value=\"127\">How's Your News</option><option
|
491
|
+
value=\"346\">Human Target (2010)</option><option value=\"128\">Human Weapon</option><option
|
492
|
+
value=\"300\">Hung</option><option value=\"730\">Hunted</option><option value=\"129\">Hustle</option><option
|
493
|
+
value=\"561\">I Hate My Teenage Daughter</option><option value=\"572\">I Just
|
494
|
+
Want My Pants Back</option><option value=\"829\">Ice Cream Girls, The</option><option
|
495
|
+
value=\"377\">Identity (2010)</option><option value=\"130\">Impact</option><option
|
496
|
+
value=\"131\">Important Things with Demetri Martin</option><option value=\"340\">In
|
497
|
+
Guantanamo</option><option value=\"132\">In Plain Sight</option><option value=\"808\">In
|
498
|
+
The Flesh</option><option value=\"133\">In Treatment</option><option value=\"693\">Inbetweeners
|
499
|
+
(US), The</option><option value=\"594\">Increasingly Poor Decisions of Todd
|
500
|
+
Margaret, The</option><option value=\"134\">Inferno 999</option><option value=\"488\">Injustice</option><option
|
501
|
+
value=\"434\">InSecurity</option><option value=\"867\">Inside Amy Schumer</option><option
|
502
|
+
value=\"595\">Inside Men</option><option value=\"974\">Inside No 9</option><option
|
503
|
+
value=\"135\">Inspector Lynley Mysteries, The</option><option value=\"947\">Intelligence
|
504
|
+
(US)</option><option value=\"136\">Invisibles, The</option><option value=\"907\">Ironside
|
505
|
+
(2013)</option><option value=\"137\">IT Crowd, The</option><option value=\"138\">It's
|
506
|
+
Always Sunny in Philadelphia</option><option value=\"943\">James Gandolfini
|
507
|
+
Tribute to a Friend</option><option value=\"975\">Jamie Private School Girl</option><option
|
508
|
+
value=\"579\">Jane by Design</option><option value=\"273\">Jay Leno, The Tonight
|
509
|
+
Show with</option><option value=\"338\">Jeff Dunham Show, The</option><option
|
510
|
+
value=\"790\">Jenny McCarthy Show (2013), The</option><option value=\"929\">Jimmy
|
511
|
+
Fallon, Late Night with </option><option value=\"983\">Jimmy Fallon, The Tonight
|
512
|
+
Show Starring</option><option value=\"930\">Jimmy Kimmel Live!</option><option
|
513
|
+
value=\"787\">Job (2013), The</option><option value=\"339\">John Safrans Race
|
514
|
+
Relations</option><option value=\"821\">Jonathan Creek</option><option value=\"450\">Joy
|
515
|
+
of Teen Sex, The</option><option value=\"139\">Jurassic Fight Club</option><option
|
516
|
+
value=\"421\">Justified</option><option value=\"941\">Karl Pilkington The
|
517
|
+
Moaning of Life</option><option value=\"140\">Kath and Kim</option><option
|
518
|
+
value=\"475\">Kennedys The</option><option value=\"585\">Key and Peele</option><option
|
519
|
+
value=\"435\">Kidnap And Ransom</option><option value=\"948\">Killer Women</option><option
|
520
|
+
value=\"479\">Killing, The</option><option value=\"850\">King & Maxwell</option><option
|
521
|
+
value=\"486\">King (2011)</option><option value=\"611\">King George and Queen
|
522
|
+
Mary: The Royals Who Rescued The Monarchy</option><option value=\"141\">King
|
523
|
+
of the Hill</option><option value=\"804\">King of The Nerds</option><option
|
524
|
+
value=\"142\">Kingdom</option><option value=\"143\">Kings</option><option
|
525
|
+
value=\"938\">Kirstie</option><option value=\"616\">Kirstie's Handmade Christmas</option><option
|
526
|
+
value=\"144\">Kitchen Nightmares</option><option value=\"966\">Klondike (2014)</option><option
|
527
|
+
value=\"145\">Knight Rider (2008)</option><option value=\"146\">Krod Mandoon
|
528
|
+
and the Flaming Sword of Fire</option><option value=\"775\">Kroll Show</option><option
|
529
|
+
value=\"147\">Kyle XY</option><option value=\"148\">L Word, The</option><option
|
530
|
+
value=\"571\">L5</option><option value=\"593\">LA Complex, The</option><option
|
531
|
+
value=\"149\">LA Ink</option><option value=\"150\">Lab Rats</option><option
|
532
|
+
value=\"818\">Labyrinth (2013)</option><option value=\"811\">Lady Vanishes
|
533
|
+
(2013), The</option><option value=\"151\">Last Comic Standing</option><option
|
534
|
+
value=\"553\">Last Man Standing (US)</option><option value=\"714\">Last Resort</option><option
|
535
|
+
value=\"152\">Last Templar, The</option><option value=\"153\">Late Night with
|
536
|
+
Conan O'Brien</option><option value=\"154\">Law and Order</option><option
|
537
|
+
value=\"155\">Law and Order: Criminal Intent</option><option value=\"422\">Law
|
538
|
+
and Order: Los Angeles</option><option value=\"156\">Law and Order: Special
|
539
|
+
Victims Unit</option><option value=\"157\">Law and Order: UK</option><option
|
540
|
+
value=\"390\">League, The</option><option value=\"158\">Legend of the Seeker</option><option
|
541
|
+
value=\"776\">Legit</option><option value=\"342\">Level 3</option><option
|
542
|
+
value=\"586\">Level Up</option><option value=\"159\">Leverage</option><option
|
543
|
+
value=\"160\">Lewis Blacks the Root of all Evil</option><option value=\"161\">Lie
|
544
|
+
to me</option><option value=\"162\">Life</option><option value=\"163\">Life
|
545
|
+
and Times of Tim, The</option><option value=\"334\">Life Documentary</option><option
|
546
|
+
value=\"841\">Life Of Crime</option><option value=\"164\">Life on Mars US</option><option
|
547
|
+
value=\"348\">Life Unexpected</option><option value=\"560\">Life's Too Short
|
548
|
+
(UK)</option><option value=\"436\">Lights Out (2011)</option><option value=\"165\">Lincoln
|
549
|
+
Heights</option><option value=\"669\">Line Of Duty</option><option value=\"166\">Line,
|
550
|
+
The</option><option value=\"167\">Lipstick Jungle</option><option value=\"168\">Listener,
|
551
|
+
The</option><option value=\"169\">Little Britain USA</option><option value=\"170\">Little
|
552
|
+
Mosque on the Prairie</option><option value=\"414\">Lone Star</option><option
|
553
|
+
value=\"600\">Long Way Down</option><option value=\"627\">Long Way Round</option><option
|
554
|
+
value=\"653\">Longmire</option><option value=\"963\">Looking</option><option
|
555
|
+
value=\"171\">Lost</option><option value=\"413\">Lost Girl</option><option
|
556
|
+
value=\"385\">Louie</option><option value=\"658\">Louis Theroux</option><option
|
557
|
+
value=\"483\">Love Bites</option><option value=\"748\">Love You Mean It With
|
558
|
+
Whitney Cummings</option><option value=\"879\">Low Winter Sun (US)</option><option
|
559
|
+
value=\"942\">Lucan (UK)</option><option value=\"935\">Lucas Bros Moving Company</option><option
|
560
|
+
value=\"549\">Luck</option><option value=\"891\">Lucky 7</option><option value=\"778\">Luther</option><option
|
561
|
+
value=\"509\">Lying Game, The</option><option value=\"392\">MAD</option><option
|
562
|
+
value=\"461\">Mad Love </option><option value=\"172\">Mad Men</option><option
|
563
|
+
value=\"717\">Made in Jersey</option><option value=\"173\">MadTV</option><option
|
564
|
+
value=\"624\">Magic City</option><option value=\"686\">Major Crimes</option><option
|
565
|
+
value=\"174\">Make It or Break It</option><option value=\"739\">Malibu Country</option><option
|
566
|
+
value=\"928\">Man Down</option><option value=\"545\">Man Up!</option><option
|
567
|
+
value=\"175\">Man vs. Wild</option><option value=\"176\">Mark Loves Sharon</option><option
|
568
|
+
value=\"836\">Maron</option><option value=\"360\">Marriage Ref, The</option><option
|
569
|
+
value=\"878\">Marvel's Agents of S.H.I.E.L.D.</option><option value=\"852\">MasterChef
|
570
|
+
(US)</option><option value=\"896\">Masters of Sex</option><option value=\"802\">Mayday
|
571
|
+
(UK-2013)</option><option value=\"177\">Medium</option><option value=\"395\">Melissa
|
572
|
+
and Joey</option><option value=\"315\">Melrose Place</option><option value=\"380\">Memphis
|
573
|
+
beat</option><option value=\"640\">Men at Work</option><option value=\"343\">Men
|
574
|
+
of a Certain Age</option><option value=\"178\">Mental</option><option value=\"179\">Mentalist,
|
575
|
+
The</option><option value=\"331\">Mercy</option><option value=\"180\">Merlin</option><option
|
576
|
+
value=\"894\">Michael J Fox Show, The </option><option value=\"328\">Middle,
|
577
|
+
The</option><option value=\"357\">Midsomer Murders</option><option value=\"416\">Mike
|
578
|
+
and Molly</option><option value=\"470\">Mildred Pierce</option><option value=\"877\">Mill,
|
579
|
+
The</option><option value=\"909\">Millers, The</option><option value=\"807\">Mimic,
|
580
|
+
The</option><option value=\"984\">Mind Games</option><option value=\"710\">Mindy
|
581
|
+
Project, The</option><option value=\"344\">Misfits</option><option value=\"604\">Missing
|
582
|
+
(2012)</option><option value=\"181\">Missing 2009</option><option value=\"182\">Mistresses</option><option
|
583
|
+
value=\"851\">Mistresses (US)</option><option value=\"985\">Mixology</option><option
|
584
|
+
value=\"345\">Mixtape #1</option><option value=\"937\">Mob City</option><option
|
585
|
+
value=\"703\">Mob Doctor, The</option><option value=\"505\">Mock The Week</option><option
|
586
|
+
value=\"737\">Mockingbird Lane</option><option value=\"330\">Modern Family</option><option
|
587
|
+
value=\"183\">Mole (US), The</option><option value=\"899\">Mom</option><option
|
588
|
+
value=\"783\">Monday Mornings</option><option value=\"184\">Monk</option><option
|
589
|
+
value=\"476\">Monroe</option><option value=\"185\">MonsterQuest</option><option
|
590
|
+
value=\"812\">Monsters vs Aliens</option><option value=\"719\">Moone Boy</option><option
|
591
|
+
value=\"620\">Most Shocking Celebrity Moments</option><option value=\"782\">Motive</option><option
|
592
|
+
value=\"186\">Moving Wallpaper</option><option value=\"772\">Mr Selfridge</option><option
|
593
|
+
value=\"458\">Mr. Sunshine (2011)</option><option value=\"619\">Mrs Dickens'
|
594
|
+
Family Christmas</option><option value=\"648\">MTV Movie Awards</option><option
|
595
|
+
value=\"699\">Murder Joint Enterprise</option><option value=\"860\">Murder
|
596
|
+
Trial, The</option><option value=\"961\">Musketeers, The</option><option value=\"187\">MV
|
597
|
+
Group Documentaries</option><option value=\"188\">My Boys</option><option
|
598
|
+
value=\"189\">My Fair Brady</option><option value=\"403\">My Generation (2010)</option><option
|
599
|
+
value=\"190\">My Name Is Earl</option><option value=\"191\">My Own Worst Enemy</option><option
|
600
|
+
value=\"608\">Mystery Of Edwin Drood, The</option><option value=\"192\">Mythbusters</option><option
|
601
|
+
value=\"873\">Naked And Afraid</option><option value=\"577\">Napoleon Dynamite</option><option
|
602
|
+
value=\"724\">Nashville (2012)</option><option value=\"193\">National Geographic</option><option
|
603
|
+
value=\"652\">National Treasures</option><option value=\"194\">NCIS</option><option
|
604
|
+
value=\"321\">NCIS: Los Angeles</option><option value=\"504\">Necessary Roughness</option><option
|
605
|
+
value=\"713\">Neighbors, The (2012)</option><option value=\"813\">Nerdist,
|
606
|
+
The</option><option value=\"721\">Never Mind The Buzzcocks (UK)</option><option
|
607
|
+
value=\"195\">New Adventures Of Old Christine, The</option><option value=\"554\">New
|
608
|
+
Girl</option><option value=\"701\">New Normal, The</option><option value=\"196\">New
|
609
|
+
Street Law</option><option value=\"197\">New Tricks</option><option value=\"636\">NewGamePlus</option><option
|
610
|
+
value=\"668\">Newsroom (2012), The</option><option value=\"352\">Newswipe
|
611
|
+
With Charlie Brooker</option><option value=\"741\">Nick Nickleby</option><option
|
612
|
+
value=\"426\">Nick Swardson's Pretend Time</option><option value=\"404\">Nikita</option><option
|
613
|
+
value=\"498\">Nine Lives of Chloe King, The</option><option value=\"198\">Nip/Tuck</option><option
|
614
|
+
value=\"199\">No 1 Ladies Detective Agency, The</option><option value=\"200\">No
|
615
|
+
Heroics</option><option value=\"419\">No Ordinary Family</option><option value=\"201\">Nova
|
616
|
+
ScienceNOW</option><option value=\"684\">NTSF SD SUV</option><option value=\"202\">Numb3rs</option><option
|
617
|
+
value=\"203\">Nurse Jackie</option><option value=\"633\">NYC 22</option><option
|
618
|
+
value=\"437\">Off The Map</option><option value=\"204\">Office, The</option><option
|
619
|
+
value=\"754\">Oliver Stones Untold History Of The United States</option><option
|
620
|
+
value=\"548\">Once Upon A Time</option><option value=\"882\">Once Upon a Time
|
621
|
+
in Wonderland</option><option value=\"622\">One Night</option><option value=\"205\">One
|
622
|
+
Tree Hill</option><option value=\"452\">Onion News Network</option><option
|
623
|
+
value=\"865\">Orange Is The New Black</option><option value=\"908\">Originals,
|
624
|
+
The</option><option value=\"796\">Orphan Black</option><option value=\"463\">Outcasts</option><option
|
625
|
+
value=\"387\">Outlaw</option><option value=\"406\">Outsourced</option><option
|
626
|
+
value=\"764\">Over Under</option><option value=\"361\">Pacific, The</option><option
|
627
|
+
value=\"306\">Packed To The Rafters</option><option value=\"541\">Pan Am</option><option
|
628
|
+
value=\"206\">Paper, The</option><option value=\"696\">Parades End</option><option
|
629
|
+
value=\"723\">Paradise, The</option><option value=\"396\">Parenthood (2010)</option><option
|
630
|
+
value=\"207\">Paris Hiltons British Best Friend</option><option value=\"208\">Parks
|
631
|
+
and Recreation</option><option value=\"708\">Partners (2012)</option><option
|
632
|
+
value=\"209\">Party Down</option><option value=\"356\">Past Life</option><option
|
633
|
+
value=\"889\">Peaky Blinders</option><option value=\"438\">Peep Show</option><option
|
634
|
+
value=\"210\">Penguins Of Madagascar, The</option><option value=\"211\">Penn
|
635
|
+
And Teller: Bullshit!</option><option value=\"675\">Perception</option><option
|
636
|
+
value=\"448\">Perfect Couples</option><option value=\"519\">Person of Interest</option><option
|
637
|
+
value=\"424\">Person of Interest 2010 (VODO-Movie)</option><option value=\"212\">Personal
|
638
|
+
Affairs</option><option value=\"364\">Persons Unknown</option><option value=\"213\">Philanthropist,
|
639
|
+
The</option><option value=\"214\">Pick up Artist, The</option><option value=\"382\">Pillars
|
640
|
+
of the Earth, The</option><option value=\"362\">Pioneer One</option><option
|
641
|
+
value=\"639\">Planet Earth Live</option><option value=\"537\">Playboy Club,
|
642
|
+
The</option><option value=\"904\">Played (CA)</option><option value=\"830\">Player
|
643
|
+
Attack</option><option value=\"820\">Plebs</option><option value=\"752\">Poison
|
644
|
+
Tree, The</option><option value=\"766\">Polar Bear Family And Me</option><option
|
645
|
+
value=\"676\">Political Animals</option><option value=\"832\">Politicians
|
646
|
+
Husband, The</option><option value=\"453\">Portlandia</option><option value=\"372\">Pretty
|
647
|
+
Little Liars</option><option value=\"524\">Prime Suspect (2011)</option><option
|
648
|
+
value=\"215\">Primeval</option><option value=\"734\">Primeval New World</option><option
|
649
|
+
value=\"216\">Prison Break</option><option value=\"217\">Private Practice</option><option
|
650
|
+
value=\"769\">Privates</option><option value=\"218\">Privileged</option><option
|
651
|
+
value=\"219\">Project Runway</option><option value=\"500\">Protector, The</option><option
|
652
|
+
value=\"220\">Psych</option><option value=\"221\">Psychoville</option><option
|
653
|
+
value=\"610\">Public Enemies</option><option value=\"222\">Pushing Daisies</option><option
|
654
|
+
value=\"223\">QI</option><option value=\"626\">Race To Dakar</option><option
|
655
|
+
value=\"945\">Raised By Wolves (UK)</option><option value=\"393\">Raising
|
656
|
+
Hope</option><option value=\"224\">Raising the bar</option><option value=\"968\">Rake
|
657
|
+
(US)</option><option value=\"923\">Ravenswood</option><option value=\"855\">Ray
|
658
|
+
Donovan</option><option value=\"225\">Real Time with Bill Maher</option><option
|
659
|
+
value=\"226\">Reaper</option><option value=\"828\">Rectify</option><option
|
660
|
+
value=\"227\">Red Dwarf</option><option value=\"987\">Red Road, The</option><option
|
661
|
+
value=\"797\">Red Widow</option><option value=\"920\">Reign</option><option
|
662
|
+
value=\"228\">Reno 911</option><option value=\"229\">Rescue Me</option><option
|
663
|
+
value=\"755\">Restless</option><option value=\"996\">Resurrection (2014) (US)</option><option
|
664
|
+
value=\"451\">Retired at 35</option><option value=\"365\">Rev</option><option
|
665
|
+
value=\"525\">Revenge</option><option value=\"681\">Revolution (2012)</option><option
|
666
|
+
value=\"722\">Richard Hammonds Crash Course</option><option value=\"355\">Ricky
|
667
|
+
Gervais Show, The</option><option value=\"543\">Ringer</option><option value=\"757\">Ripper
|
668
|
+
Street</option><option value=\"230\">Rita Rocks</option><option value=\"580\">River,
|
669
|
+
The</option><option value=\"386\">Rizzoli & Isles</option><option value=\"581\">Rob</option><option
|
670
|
+
value=\"231\">Robin Hood</option><option value=\"232\">Robot Chicken</option><option
|
671
|
+
value=\"814\">Rogue</option><option value=\"420\">Rookie Blue</option><option
|
672
|
+
value=\"569\">Royal Bodyguard, The</option><option value=\"439\">Royal Institution
|
673
|
+
Christmas Lectures</option><option value=\"233\">Royal Pains</option><option
|
674
|
+
value=\"410\">Rubicon</option><option value=\"309\">Ruby and The Rockits</option><option
|
675
|
+
value=\"234\">Rules of Engagement</option><option value=\"866\">Run</option><option
|
676
|
+
value=\"235\">Run's House</option><option value=\"394\">Running Wilde</option><option
|
677
|
+
value=\"236\">Rush</option><option value=\"892\">SAF3 (a.k.a. Rescue 3)</option><option
|
678
|
+
value=\"993\">Saint George</option><option value=\"237\">Samantha Who?</option><option
|
679
|
+
value=\"238\">Sanctuary</option><option value=\"239\">Sarah Jane Adventures,
|
680
|
+
The</option><option value=\"240\">Sarah Silverman Program, The</option><option
|
681
|
+
value=\"241\">Saturday Night Live</option><option value=\"839\">Save Me</option><option
|
682
|
+
value=\"242\">Saving Grace</option><option value=\"656\">Saving Hope</option><option
|
683
|
+
value=\"243\">Saxondale</option><option value=\"631\">Scandal (US)</option><option
|
684
|
+
value=\"244\">Sci Fi Guys, The</option><option value=\"931\">Science Of Doctor
|
685
|
+
Who (BBC) (2013), The</option><option value=\"245\">Scott Baio is 46...and
|
686
|
+
Pregnant</option><option value=\"368\">Scoundrels</option><option value=\"246\">Scrubs</option><option
|
687
|
+
value=\"912\">Sean Saves The World</option><option value=\"522\">Secret Circle,
|
688
|
+
The</option><option value=\"359\">Secret Diary of a Call Girl</option><option
|
689
|
+
value=\"247\">Secret Life of the American Teenager, The</option><option value=\"747\">Secret
|
690
|
+
Of Crickley Hall, The</option><option value=\"601\">Secret Policemans Ball,
|
691
|
+
The</option><option value=\"731\">See Dad Run</option><option value=\"781\">Seed</option><option
|
692
|
+
value=\"900\">Serangoon Road</option><option value=\"991\">Seth Meyers, Late
|
693
|
+
Night With</option><option value=\"484\">Shadow Line, The</option><option
|
694
|
+
value=\"440\">Shameless (US)</option><option value=\"376\">Sherlock</option><option
|
695
|
+
value=\"405\">Shit My Dad Says</option><option value=\"862\">Siberia</option><option
|
696
|
+
value=\"248\">Side Order of Life</option><option value=\"441\">Silent Witness</option><option
|
697
|
+
value=\"249\">Simpsons, The</option><option value=\"690\">Sinbad</option><option
|
698
|
+
value=\"425\">Single Father</option><option value=\"492\">Single Ladies</option><option
|
699
|
+
value=\"995\">Sirens (2014)</option><option value=\"250\">Sit Down Shut Up</option><option
|
700
|
+
value=\"251\">Skins</option><option value=\"445\">Skins (US)</option><option
|
701
|
+
value=\"883\">Sleepy Hollow</option><option value=\"252\">Smallville</option><option
|
702
|
+
value=\"574\">Smash</option><option value=\"986\">Smoke, The</option><option
|
703
|
+
value=\"253\">So You Think You Can Dance</option><option value=\"254\">Somebodies</option><option
|
704
|
+
value=\"255\">Sons of Anarchy</option><option value=\"370\">Sons of Tucson</option><option
|
705
|
+
value=\"256\">Sophie</option><option value=\"666\">Soul Man, The</option><option
|
706
|
+
value=\"603\">Soup, The</option><option value=\"257\">South Park</option><option
|
707
|
+
value=\"258\">Southland</option><option value=\"789\">Spa, The</option><option
|
708
|
+
value=\"347\">Spartacus</option><option value=\"454\">Spartacus: Gods of the
|
709
|
+
Arena</option><option value=\"259\">Spicks And Specks</option><option value=\"771\">Spies
|
710
|
+
Of Warsaw</option><option value=\"949\">Spoils Of Babylon, The</option><option
|
711
|
+
value=\"260\">Spooks</option><option value=\"261\">Spooks: Code 9</option><option
|
712
|
+
value=\"489\">Sports Show with Norm MacDonald</option><option value=\"980\">Star
|
713
|
+
Crossed</option><option value=\"979\">Star Trek Continues</option><option
|
714
|
+
value=\"990\">Star Wars Threads of Destiny</option><option value=\"262\">Star
|
715
|
+
Wars: The Clone Wars (2008)</option><option value=\"263\">Stargate Atlantis</option><option
|
716
|
+
value=\"326\">Stargate Universe</option><option value=\"770\">Stargazing Live</option><option
|
717
|
+
value=\"515\">State of Georgia</option><option value=\"751\">Stephen Fry Gadget
|
718
|
+
Man</option><option value=\"303\">Storm, The</option><option value=\"612\">Story
|
719
|
+
Of Musicals, The</option><option value=\"674\">Strange Case Of The Law, The</option><option
|
720
|
+
value=\"511\">Strike Back</option><option value=\"526\">Suburgatory</option><option
|
721
|
+
value=\"495\">Suits</option><option value=\"972\">Super Bowl</option><option
|
722
|
+
value=\"919\">Super Fun Night</option><option value=\"264\">Supernatural</option><option
|
723
|
+
value=\"471\">SuprNova</option><option value=\"265\">Surviving Suburbia</option><option
|
724
|
+
value=\"266\">Survivor</option><option value=\"267\">Survivors</option><option
|
725
|
+
value=\"493\">Switched at Birth</option><option value=\"268\">Talk to me</option><option
|
726
|
+
value=\"886\">Talking Bad</option><option value=\"925\">Talking Dead</option><option
|
727
|
+
value=\"487\">Teen Wolf</option><option value=\"269\">Terminator: The Sarah
|
728
|
+
Connor Chronicles</option><option value=\"534\">Terra Nova</option><option
|
729
|
+
value=\"407\">Terriers</option><option value=\"270\">Thank God You're here</option><option
|
730
|
+
value=\"712\">Thick of It, The</option><option value=\"992\">Those Who Kill
|
731
|
+
(US)</option><option value=\"371\">Three Rivers</option><option value=\"728\">Threesome</option><option
|
732
|
+
value=\"516\">Thundercats (2011)</option><option value=\"271\">Til Death</option><option
|
733
|
+
value=\"272\">Time Warp</option><option value=\"621\">Titanic (2012)</option><option
|
734
|
+
value=\"913\">Tomorrow People (US), The</option><option value=\"661\">Tony
|
735
|
+
Awards</option><option value=\"274\">Top Chef</option><option value=\"275\">Top
|
736
|
+
Gear</option><option value=\"276\">Top Gear Australia</option><option value=\"874\">Top
|
737
|
+
Of The Lake</option><option value=\"277\">Torchwood</option><option value=\"341\">TorrentFreak
|
738
|
+
TV</option><option value=\"685\">Totally Biased with W Kamau Bell</option><option
|
739
|
+
value=\"605\">Touch</option><option value=\"784\">TPB AFK</option><option
|
740
|
+
value=\"459\">Traffic Light</option><option value=\"765\">Transporter The
|
741
|
+
Series</option><option value=\"336\">Trauma</option><option value=\"609\">Treasure
|
742
|
+
Island (2012)</option><option value=\"467\">Treme</option><option value=\"278\">Trial
|
743
|
+
and Retribution</option><option value=\"655\">Tron Uprising</option><option
|
744
|
+
value=\"910\">Trophy Wife</option><option value=\"279\">True Blood</option><option
|
745
|
+
value=\"954\">True Detective</option><option value=\"623\">True Justice</option><option
|
746
|
+
value=\"662\">True Love</option><option value=\"280\">Trust Me</option><option
|
747
|
+
value=\"281\">Tudors, The</option><option value=\"918\">Tunnel, The</option><option
|
748
|
+
value=\"809\">Twisted (2013)</option><option value=\"282\">Two and a Half
|
749
|
+
Men</option><option value=\"427\">Ugly Americans</option><option value=\"283\">Ugly
|
750
|
+
Betty</option><option value=\"284\">Ultimate Fighter, The</option><option
|
751
|
+
value=\"625\">Unchained Reaction</option><option value=\"859\">Under the Dome</option><option
|
752
|
+
value=\"285\">Underbelly</option><option value=\"354\">Undercover Boss (US)</option><option
|
753
|
+
value=\"398\">Undercovers</option><option value=\"735\">Underemployed</option><option
|
754
|
+
value=\"732\">Underground The Julian Assange Story (2012)</option><option
|
755
|
+
value=\"533\">Unforgettable</option><option value=\"286\">Unit, The</option><option
|
756
|
+
value=\"287\">United States of Tara</option><option value=\"288\">Universe,
|
757
|
+
The</option><option value=\"369\">Unnatural History</option><option value=\"578\">Unsupervised</option><option
|
758
|
+
value=\"289\">Unusuals, The</option><option value=\"527\">Up All Night (2011)</option><option
|
759
|
+
value=\"443\">Upstairs Downstairs (2010)</option><option value=\"333\">Us
|
760
|
+
Now</option><option value=\"774\">Utopia</option><option value=\"335\">V (2009)</option><option
|
761
|
+
value=\"726\">Valleys, The</option><option value=\"314\">Vampire Diaries,
|
762
|
+
The</option><option value=\"635\">Veep</option><option value=\"711\">Vegas</option><option
|
763
|
+
value=\"290\">Venture Brothers, The</option><option value=\"823\">Vice</option><option
|
764
|
+
value=\"834\">Vicious</option><option value=\"825\">Victoria Woods Nice Cup
|
765
|
+
Of Tea</option><option value=\"798\">Vikings (US)</option><option value=\"819\">Village,
|
766
|
+
The</option><option value=\"490\">Voice, The</option><option value=\"428\">Walking
|
767
|
+
Dead, The</option><option value=\"826\">Walking Through History</option><option
|
768
|
+
value=\"291\">Wallander</option><option value=\"304\">Warehouse 13</option><option
|
769
|
+
value=\"917\">Was It Something I Said</option><option value=\"587\">Watson
|
770
|
+
And Oliver</option><option value=\"905\">We Are Men</option><option value=\"503\">Web
|
771
|
+
Therapy</option><option value=\"743\">Wedding Band</option><option value=\"794\">Weed
|
772
|
+
Country</option><option value=\"292\">Weeds</option><option value=\"915\">Welcome
|
773
|
+
to the Family</option><option value=\"302\">Whale Wars</option><option value=\"944\">Whale,
|
774
|
+
The</option><option value=\"844\">What Remains</option><option value=\"293\">Whistler</option><option
|
775
|
+
value=\"337\">White Collar</option><option value=\"856\">White Queen, The</option><option
|
776
|
+
value=\"588\">Whitechapel</option><option value=\"521\">Whitney</option><option
|
777
|
+
value=\"466\">Who Do You Think You Are (US)</option><option value=\"858\">Whodunnit?
|
778
|
+
(2013)</option><option value=\"401\">Whole Truth, The</option><option value=\"542\">Wild
|
779
|
+
Boys</option><option value=\"496\">Wilfred (US)</option><option value=\"294\">Wire
|
780
|
+
in the Blood</option><option value=\"911\">Witches of East End</option><option
|
781
|
+
value=\"295\">Without A Trace</option><option value=\"565\">Without You</option><option
|
782
|
+
value=\"740\">Witness (2012)</option><option value=\"738\">Wizards Vs Aliens</option><option
|
783
|
+
value=\"613\">Work It</option><option value=\"477\">Workaholics</option><option
|
784
|
+
value=\"464\">Working Class</option><option value=\"1001\">Working the Engels</option><option
|
785
|
+
value=\"296\">World Series of Poker</option><option value=\"707\">World Without
|
786
|
+
End</option><option value=\"297\">Worst Week</option><option value=\"840\">Wright
|
787
|
+
Way, The</option><option value=\"916\">Wrong Mans, The</option><option value=\"518\">X
|
788
|
+
Factor (US), The</option><option value=\"298\">X Factor, The</option><option
|
789
|
+
value=\"756\">XIII The Series (2011)</option><option value=\"373\">Yes Men
|
790
|
+
Fix The World, The</option><option value=\"933\">Yonderland</option><option
|
791
|
+
value=\"307\">You Have Been Watching</option><option value=\"550\">Young Apprentice</option><option
|
792
|
+
value=\"564\">Young Herriot</option><option value=\"824\">Youngers</option><option
|
793
|
+
value=\"786\">Zero Hour (US)</option>\n\t\t\t </select>\n\t\t </div>\n\t\t\t<div
|
794
|
+
style=\"width: 10px; float: left;\"> </div>\n\t\t\t<script type=\"text/javascript\">function
|
795
|
+
search_submit_form( obj ) { $( '#' + obj ).click(); return false; }</script>\n\t\t\t<input
|
796
|
+
type=\"submit\" value=\"Search\" name=\"search\" id=\"search_submit\" style=\"display:
|
797
|
+
none;\" />\n\t\t\t<a href=\"javascript:void(0);\" id=\"form_submit_button\"
|
798
|
+
class=\"form_action_button_left\" onclick=\"return search_submit_form( 'search_submit'
|
799
|
+
);\">\n\t\t\t\t<span class=\"form_action_left\"></span>\n\t\t\t\t<span class=\"form_action_text\">Search</span>\n\t\t\t\t<span
|
800
|
+
class=\"form_action_right\"></span>\n\t\t\t</a>\n\t\t\t</form>\n\t\t</td>\n\t</tr>\n</table>\n<BR
|
801
|
+
/>\n<!-- live -->\n<div class=\"featured_border\">\n\t<div class=\"featured_header\">Featured
|
802
|
+
Release</div>\n\t<div class=\"featured_thumb\"><a href=\"/ep/48935/star-trek-continues-e01-720p-pilgrim-of-eternity-anon/\"><img
|
803
|
+
src=\"//ezimg.it/f/star_trek_continues/thumbnail.png\" width=\"215\" height=\"125\"
|
804
|
+
border=\"0\" /></a></div>\n\t<div class=\"featured_info\">\n\t\t<a href=\"/ep/48935/star-trek-continues-e01-720p-pilgrim-of-eternity-anon/\"><b>Star
|
805
|
+
Trek Continues</b></a><br />\n\t\t\t"Star Trek Continues" a FAN
|
806
|
+
film Weberies -- What happens when you throw a rag-tag team of entertainment
|
807
|
+
professionals, who also happen to be HUGE Star Trek fans, together? One of
|
808
|
+
the most acclaimed fan-produced Star Trek (TOS: The Originl Series) webseries
|
809
|
+
ever created. Vic Mignogna and team are proud to be part of Star Trek history
|
810
|
+
with the fan production aimed at completing the final two years of the original
|
811
|
+
5-year mission.\n\t</div>\n\t<div class=\"featured_links\">\n\t\t<div style=\"float:
|
812
|
+
left;\">Download: </div><a href=\"magnet:?xt=urn:btih:7D35ZYME4YUYNVFDOJGOC6QWTNKP7LGT&tr=udp://tracker.openbittorrent.com:80/\"
|
813
|
+
class=\"magnet\" title=\"Magnet Link\"></a><a href=\"http://getsecuredfiles.com/ez/dl/?file=Star.Trek.Continues.E01.720p.Pilgrim.of.Eternity-ANON.[eztv].torrent&url=http%3A%2F%2Fre.zoink.it%2Fg%2FF8F7DCE184E62986D4A3724CE17A169B54FFACD3\"
|
814
|
+
target=\"_blank\" class=\"ddl\" title=\"Direct Download Link\" onclick=\"_gaq.push(['_trackEvent',
|
815
|
+
'Sponsored', 'sponsored_index_click']);\"></a><a href=\"http://torrent.zoink.it/Star.Trek.Continues.E01.720p.Pilgrim.of.Eternity-ANON.[eztv].torrent\"
|
816
|
+
class=\"download_1\" title=\"Download Mirror #1\"></a><a href=\"http://piratebaytorrents.info/9091545/Star_Trek_Continues_E01_720p_Pilgrim_of_Eternity-ANON.9091545.TPB.torrent\"
|
817
|
+
class=\"download_2\" title=\"Download Mirror #2\"></a><a href=\"http://torrage.com/torrent/F8F7DCE184E62986D4A3724CE17A169B54FFACD3.torrent\"
|
818
|
+
class=\"download_3\" title=\"Download Mirror #3\"></a>\n\t\t\t\t\t|\n\t\t\tDonate
|
819
|
+
to Artist: <a href=\"http://www.startrekcontinues.com/contact-us/\"><img src=\"//ezimg.it/s/1/9/donate.png\"
|
820
|
+
width=\"16\" height=\"16\" border=\"0\" align=\"absmiddle\" title=\"Donate
|
821
|
+
to this featured release\" /></a>\n\n\t\t\t\t\t|\n\t\t\tPromote: <a href=\"http://www.startrekcontinues.com/\"><img
|
822
|
+
src=\"//ezimg.it/s/1/9/promote.png\" width=\"16\" height=\"16\" border=\"0\"
|
823
|
+
align=\"absmiddle\" title=\"Promote this featured release\" /></a>\n\n\t\t|\n\t\tDiscuss:
|
824
|
+
<a href=\"/forum/33941/star-trek-continues-e01-720p-pilgrim-of-eternity-anon/\"><img
|
825
|
+
src=\"//ezimg.it/s/1/3/chat_messages.png\" border=\"0\" width=\"16\" height=\"16\"
|
826
|
+
align=\"absmiddle\" alt=\"57 comments\" title=\"57 forum comments\" /></a>\n\t\t|\n\t\tWebsite:
|
827
|
+
<a href=\"http://www.startrekcontinues.com/\"><img src=\"//ezimg.it/s/1/9/vodo-net.png\"
|
828
|
+
width=\"16\" height=\"16\" border=\"0\" align=\"absmiddle\" title=\"Visit
|
829
|
+
this featured releases website\" /></a>\n\t</div>\n</div>\n<br />\n<!-- cache
|
830
|
+
-->\n\t<table width=\"950\" border=\"0\" align=\"center\">\n\t\t<tr>\n\t\t\t<td
|
831
|
+
width=\"150\"></td>\n\t\t\t<td align=\"center\">\n\t\t\t\tDisplay: <a href=\"/sort/50/\">50
|
832
|
+
Releases</a> | <a href=\"/sort/100/\">100 Releases</a>\n\t\t\t</td>\n\t\t\t<td
|
833
|
+
align=\"right\"><a href=\"/page_1\"> next page</a> >></td>\n\t\t</tr>\n\t</table>\n\t<div
|
834
|
+
id=\"tooltip\" class=\"ajaxtooltip\"></div>\n\t<table border=\"0\" width=\"950\"
|
835
|
+
align=\"center\" cellspacing=\"0\" cellpadding=\"0\" class=\"forum_header_border\">\n\t\t<tr>\n\t\t\t<td
|
836
|
+
class=\"section_post_header\" colspan=\"11\">\n\t\t\t\tTelevision Show Releases\n\t\t\t\t\t\t\t</td>\n\t\t</tr>\n\t\t<tr>\n\t\t\t<td
|
837
|
+
width=\"35\" class=\"forum_thread_header\" title=\"Show Information\">Info</td>\n\t\t\t<td
|
838
|
+
class=\"forum_thread_header\" style=\"text-align: left; padding-left: 10px;\">Episode
|
839
|
+
Name</td>\n\t\t\t<td class=\"forum_thread_header\">Downloads</td>\n\t\t\t<td
|
840
|
+
class=\"forum_thread_header\">Released</td>\n\t\t\t<td class=\"forum_thread_header_end\">Forum</td>\n\t\t</tr>\n\t\t<tr
|
841
|
+
class=\"forum_space_border\">\n\t\t\t<td colspan=\"5\" class=\"header_date\">\n\t\t\t\tAdded
|
842
|
+
on: <b>17, March, 2014</b>\n\t\t\t</td>\n\t\t</tr>\n\t <tr name=\"hover\"
|
843
|
+
class=\"forum_header_border\">\n\t\t <td width=\"35\" class=\"forum_thread_post\"><a
|
844
|
+
href=\"/shows/187/mv-group-documentaries/\"><img src=\"//ezimg.it/s/1/3/show_info.png\"
|
845
|
+
border=\"0\" alt=\"Show\" title=\"Show Description about MV Group Documentaries\"></a> </td>\n\t\t\t<td
|
846
|
+
class=\"forum_thread_post\">\n\t\t\t\t<a href=\"/ep/53237/astronauts-houston-we-have-a-problem-pdtv-xvid-mvgroup/\"
|
847
|
+
title=\"Astronauts Houston We Have a Problem PDTV XviD-MVGroup (481.26 MB)\"
|
848
|
+
alt=\"Astronauts Houston We Have a Problem PDTV XviD-MVGroup (481.26 MB)\"
|
849
|
+
class=\"epinfo\">Astronauts Houston We Have a Problem PDTV XviD-MVGroup</a>\n\t\t\t</td>\n\t\t
|
850
|
+
\ <td align=\"center\" class=\"forum_thread_post\"><a href=\"magnet:?xt=urn:btih:PMAPQREWTYXGF6AXUJMZGFWUY4LNBMGD&dn=Astronauts.Houston.We.Have.a.Problem.PDTV.XviD-MVGroup&tr=http://www.mvgroup.org:2710/announce&tr=udp://tracker.openbittorrent.com:80&tr=udp://tracker.publicbt.com:80&tr=udp://tracker.istole.it:80&tr=udp://open.demonii.com:80&tr=udp://tracker.coppersurfer.tk:80\"
|
851
|
+
class=\"magnet\" title=\"Magnet Link\"></a><a href=\"http://getsecuredfiles.com/ez/dl/?file=Astronauts.Houston.We.Have.a.Problem.PDTV.XviD-MVGroup.torrent&url=http%3A%2F%2Fre.zoink.it%2Fg%2F7B00F844969E2E62F817A2599316D4C716D0B0C3\"
|
852
|
+
target=\"_blank\" class=\"ddl\" title=\"Direct Download Link\" onclick=\"_gaq.push(['_trackEvent',
|
853
|
+
'Sponsored', 'sponsored_index_click']);\"></a><a href=\"http://forums.mvgroup.org/tracker/get.php?id=ewD4RJaeLmL4F6JZkxbUxxbQsMM%3D\"
|
854
|
+
class=\"download_1\" title=\"Download Mirror #1\"></a><a href=\"http://torrage.com/torrent/7B00F844969E2E62F817A2599316D4C716D0B0C3.torrent\"
|
855
|
+
class=\"download_2\" title=\"Download Mirror #2\"></a><a href=\"//zoink.it/torrent/7B00F844969E2E62F817A2599316D4C716D0B0C3.torrent\"
|
856
|
+
class=\"download_3\" title=\"Download Mirror #3\"></a><a href=\"http://extratorrent.cc/download/3486448/Astronauts+Houston+We+Have+a+Problem+PDTV+XviD+%5BMVGroup+org%5D.torrent\"
|
857
|
+
class=\"download_4\" title=\"Download Mirror #4\"></a>\t </td>\n\t\t\t<td
|
858
|
+
align=\"center\" class=\"forum_thread_post\">59m 31s </td>\n\t\t\t<td align=\"center\"
|
859
|
+
class=\"forum_thread_post_end\"><a href=\"/forum/36142/astronauts-houston-we-have-a-problem-pdtv-xvid/\"><img
|
860
|
+
src=\"//ezimg.it/s/1/3/chat_messages.png\" border=\"0\" width=\"16\" height=\"16\"
|
861
|
+
alt=\"2 comments\" title=\"2 forum comments\" /></a></td>\n\t\t</tr>\n\t <tr
|
862
|
+
name=\"hover\" class=\"forum_header_border\">\n\t\t <td width=\"35\" class=\"forum_thread_post\"><a
|
863
|
+
href=\"/shows/187/mv-group-documentaries/\"><img src=\"//ezimg.it/s/1/3/show_info.png\"
|
864
|
+
border=\"0\" alt=\"Show\" title=\"Show Description about MV Group Documentaries\"></a> </td>\n\t\t\t<td
|
865
|
+
class=\"forum_thread_post\">\n\t\t\t\t<a href=\"/ep/53236/astronauts-living-in-space-pdtv-xvid-mvgroup/\"
|
866
|
+
title=\"Astronauts Living In Space PDTV XviD-MVGroup (465.90 MB)\" alt=\"Astronauts
|
867
|
+
Living In Space PDTV XviD-MVGroup (465.90 MB)\" class=\"epinfo\">Astronauts
|
868
|
+
Living In Space PDTV XviD-MVGroup</a>\n\t\t\t</td>\n\t\t <td align=\"center\"
|
869
|
+
class=\"forum_thread_post\"><a href=\"magnet:?xt=urn:btih:Q5O2HS73KIWIKHDEYISFEGOJ34QC7UXL&dn=Astronauts.Living.In.Space.PDTV.XviD-MVGroup&tr=http://www.mvgroup.org:2710/announce&tr=udp://tracker.openbittorrent.com:80&tr=udp://tracker.publicbt.com:80&tr=udp://tracker.istole.it:80&tr=udp://open.demonii.com:80&tr=udp://tracker.coppersurfer.tk:80\"
|
870
|
+
class=\"magnet\" title=\"Magnet Link\"></a><a href=\"http://getsecuredfiles.com/ez/dl/?file=Astronauts.Living.In.Space.PDTV.XviD-MVGroup.torrent&url=http%3A%2F%2Fre.zoink.it%2Fg%2F875DA3CBFB522C851C64C2245219C9DF202FD2EB\"
|
871
|
+
target=\"_blank\" class=\"ddl\" title=\"Direct Download Link\" onclick=\"_gaq.push(['_trackEvent',
|
872
|
+
'Sponsored', 'sponsored_index_click']);\"></a><a href=\"http://forums.mvgroup.org/tracker/get.php?id=h12jy%2FtSLIUcZMIkUhnJ3yAv0us%3D\"
|
873
|
+
class=\"download_1\" title=\"Download Mirror #1\"></a><a href=\"http://torrage.com/torrent/875DA3CBFB522C851C64C2245219C9DF202FD2EB.torrent\"
|
874
|
+
class=\"download_2\" title=\"Download Mirror #2\"></a><a href=\"http://extratorrent.cc/download/3486399/Astronauts+Living+In+Space+PDTV+XviD+%5BMVGroup+org%5D.torrent\"
|
875
|
+
class=\"download_3\" title=\"Download Mirror #3\"></a>\t </td>\n\t\t\t<td
|
876
|
+
align=\"center\" class=\"forum_thread_post\">1h 45m </td>\n\t\t\t<td align=\"center\"
|
877
|
+
class=\"forum_thread_post_end\"><a href=\"/forum/36141/astronauts-living-in-space-pdtv-xvid/\"><img
|
878
|
+
src=\"//ezimg.it/s/1/3/chat_messages.png\" border=\"0\" width=\"16\" height=\"16\"
|
879
|
+
alt=\"2 comments\" title=\"2 forum comments\" /></a></td>\n\t\t</tr>\n\t <tr
|
880
|
+
name=\"hover\" class=\"forum_header_border\">\n\t\t <td width=\"35\" class=\"forum_thread_post\"><a
|
881
|
+
href=\"/shows/428/the-walking-dead/\"><img src=\"//ezimg.it/s/1/3/show_info.png\"
|
882
|
+
border=\"0\" alt=\"Show\" title=\"Show Description about The Walking Dead\"></a><a
|
883
|
+
href=\"http://www.tvrage.com/The_Walking_Dead/episodes/1065477186\" target=\"_blank\"
|
884
|
+
title=\"More info about The Walking Dead S04E14 PROPER 720p HDTV x264-KILLERS
|
885
|
+
at tvrage.com\" alt=\"More info about The Walking Dead S04E14 PROPER 720p
|
886
|
+
HDTV x264-KILLERS at tvrage.com\"><img src=\"//ezimg.it/s/2/1/tvrage.png\"
|
887
|
+
width=\"16\" height=\"16\" border=\"0\" /></a></td>\n\t\t\t<td class=\"forum_thread_post\">\n\t\t\t\t<a
|
888
|
+
href=\"/ep/53235/the-walking-dead-s04e14-proper-720p-hdtv-x264-killers/\"
|
889
|
+
title=\"The Walking Dead S04E14 PROPER 720p HDTV x264-KILLERS (2.35 GB)\"
|
890
|
+
alt=\"The Walking Dead S04E14 PROPER 720p HDTV x264-KILLERS (2.35 GB)\" class=\"epinfo\">The
|
891
|
+
Walking Dead S04E14 PROPER 720p HDTV x264-KILLERS</a>\n\t\t\t</td>\n\t\t <td
|
892
|
+
align=\"center\" class=\"forum_thread_post\"><a href=\"magnet:?xt=urn:btih:HNU7CS6AGBCWZJ54ENI4TBBVQFYPRDCX&dn=The.Walking.Dead.S04E14.PROPER.720p.HDTV.x264-KILLERS&tr=udp://tracker.openbittorrent.com:80&tr=udp://tracker.publicbt.com:80&tr=udp://tracker.istole.it:80&tr=udp://open.demonii.com:80&tr=udp://tracker.coppersurfer.tk:80\"
|
893
|
+
class=\"magnet\" title=\"Magnet Link\"></a><a href=\"http://getsecuredfiles.com/ez/dl/?file=The.Walking.Dead.S04E14.PROPER.720p.HDTV.x264-KILLERS.torrent&url=http%3A%2F%2Fre.zoink.it%2Fg%2F3B69F14BC030456CA7BC2351C984358170F88C57\"
|
894
|
+
target=\"_blank\" class=\"ddl\" title=\"Direct Download Link\" onclick=\"_gaq.push(['_trackEvent',
|
895
|
+
'Sponsored', 'sponsored_index_click']);\"></a><a href=\"//re.zoink.it/3B785a1569\"
|
896
|
+
class=\"download_1\" title=\"Download Mirror #1\"></a><a href=\"http://piratebaytorrents.info/9776307/The_Walking_Dead_S04E14_PROPER_720p_HDTV_x264-KILLERS.9776307.TPB.torrent\"
|
897
|
+
class=\"download_2\" title=\"Download Mirror #2\"></a><a href=\"http://extratorrent.cc/download/3485942/The+Walking+Dead+S04E14+PROPER+720p+HDTV+x264-KILLERS+%5Beztv%5D.torrent\"
|
898
|
+
class=\"download_3\" title=\"Download Mirror #3\"></a><a href=\"http://www.bt-chat.com/download1.php?id=187970&type=torrent\"
|
899
|
+
class=\"download_4\" title=\"Download Mirror #4\"></a><a href=\"http://torrage.com/torrent/3B69F14BC030456CA7BC2351C984358170F88C57.torrent\"
|
900
|
+
class=\"download_5\" title=\"Download Mirror #5\"></a><a href=\"//zoink.it/torrent/3B69F14BC030456CA7BC2351C984358170F88C57.torrent\"
|
901
|
+
class=\"download_6\" title=\"Download Mirror #6\"></a>\t </td>\n\t\t\t<td
|
902
|
+
align=\"center\" class=\"forum_thread_post\">7h 48m </td>\n\t\t\t<td align=\"center\"
|
903
|
+
class=\"forum_thread_post_end\"><a href=\"/forum/discuss/53235/\"><img src=\"//ezimg.it/s/1/3/chat_empty.png\"
|
904
|
+
border=\"0\" width=\"16\" height=\"16\" alt=\"Discuss\" title=\"Discuss about
|
905
|
+
this show\" /></a></td>\n\t\t</tr>\n\t <tr name=\"hover\" class=\"forum_header_border\">\n\t\t
|
906
|
+
\ <td width=\"35\" class=\"forum_thread_post\"><a href=\"/shows/772/mr-selfridge/\"><img
|
907
|
+
src=\"//ezimg.it/s/1/3/show_info.png\" border=\"0\" alt=\"Show\" title=\"Show
|
908
|
+
Description about Mr Selfridge\"></a><a href=\"http://www.tvrage.com/Mr_Selfridge/episodes/1065497905\"
|
909
|
+
target=\"_blank\" title=\"More info about Mr Selfridge S02E09 HDTV x264-RiVER
|
910
|
+
at tvrage.com\" alt=\"More info about Mr Selfridge S02E09 HDTV x264-RiVER
|
911
|
+
at tvrage.com\"><img src=\"//ezimg.it/s/2/1/tvrage.png\" width=\"16\" height=\"16\"
|
912
|
+
border=\"0\" /></a></td>\n\t\t\t<td class=\"forum_thread_post\">\n\t\t\t\t<a
|
913
|
+
href=\"/ep/53234/mr-selfridge-s02e09-hdtv-x264-river/\" title=\"Mr Selfridge
|
914
|
+
S02E09 HDTV x264-RiVER (280.30 MB)\" alt=\"Mr Selfridge S02E09 HDTV x264-RiVER
|
915
|
+
(280.30 MB)\" class=\"epinfo\">Mr Selfridge S02E09 HDTV x264-RiVER</a>\n\t\t\t</td>\n\t\t
|
916
|
+
\ <td align=\"center\" class=\"forum_thread_post\"><a href=\"magnet:?xt=urn:btih:USEPI6S5FEEM3PTQBUOGE5YZPZHPWIVH&dn=Mr.Selfridge.S02E09.HDTV.x264-RiVER&tr=udp://tracker.openbittorrent.com:80&tr=udp://tracker.publicbt.com:80&tr=udp://tracker.istole.it:80&tr=udp://open.demonii.com:80&tr=udp://tracker.coppersurfer.tk:80\"
|
917
|
+
class=\"magnet\" title=\"Magnet Link\"></a><a href=\"http://getsecuredfiles.com/ez/dl/?file=Mr.Selfridge.S02E09.HDTV.x264-RiVER.torrent&url=http%3A%2F%2Fre.zoink.it%2Fg%2FA488F47A5D2908CDBE700D1C6277197E4EFB22A7\"
|
918
|
+
target=\"_blank\" class=\"ddl\" title=\"Direct Download Link\" onclick=\"_gaq.push(['_trackEvent',
|
919
|
+
'Sponsored', 'sponsored_index_click']);\"></a><a href=\"//re.zoink.it/A47859c988\"
|
920
|
+
class=\"download_1\" title=\"Download Mirror #1\"></a><a href=\"http://piratebaytorrents.info/9776172/Mr_Selfridge_S02E09_HDTV_x264-RiVER.9776172.TPB.torrent\"
|
921
|
+
class=\"download_2\" title=\"Download Mirror #2\"></a><a href=\"http://extratorrent.cc/download/3485928/Mr+Selfridge+S02E09+HDTV+x264-RiVER+%5Beztv%5D.torrent\"
|
922
|
+
class=\"download_3\" title=\"Download Mirror #3\"></a><a href=\"http://www.bt-chat.com/download1.php?id=187968&type=torrent\"
|
923
|
+
class=\"download_4\" title=\"Download Mirror #4\"></a><a href=\"http://torrage.com/torrent/A488F47A5D2908CDBE700D1C6277197E4EFB22A7.torrent\"
|
924
|
+
class=\"download_5\" title=\"Download Mirror #5\"></a><a href=\"//zoink.it/torrent/A488F47A5D2908CDBE700D1C6277197E4EFB22A7.torrent\"
|
925
|
+
class=\"download_6\" title=\"Download Mirror #6\"></a>\t </td>\n\t\t\t<td
|
926
|
+
align=\"center\" class=\"forum_thread_post\">8h 5m </td>\n\t\t\t<td align=\"center\"
|
927
|
+
class=\"forum_thread_post_end\"><a href=\"/forum/discuss/53234/\"><img src=\"//ezimg.it/s/1/3/chat_empty.png\"
|
928
|
+
border=\"0\" width=\"16\" height=\"16\" alt=\"Discuss\" title=\"Discuss about
|
929
|
+
this show\" /></a></td>\n\t\t</tr>\n\t <tr name=\"hover\" class=\"forum_header_border\">\n\t\t
|
930
|
+
\ <td width=\"35\" class=\"forum_thread_post\"><a href=\"/shows/996/resurrection-2014-us/\"><img
|
931
|
+
src=\"//ezimg.it/s/1/3/show_info.png\" border=\"0\" alt=\"Show\" title=\"Show
|
932
|
+
Description about Resurrection (2014) (US)\"></a> </td>\n\t\t\t<td class=\"forum_thread_post\">\n\t\t\t\t<a
|
933
|
+
href=\"/ep/53233/resurrection-us-s01e02-hdtv-x264-lol/\" title=\"Resurrection
|
934
|
+
US S01E02 HDTV x264-LOL (253.24 MB)\" alt=\"Resurrection US S01E02 HDTV x264-LOL
|
935
|
+
(253.24 MB)\" class=\"epinfo\">Resurrection US S01E02 HDTV x264-LOL</a>\n\t\t\t</td>\n\t\t
|
936
|
+
\ <td align=\"center\" class=\"forum_thread_post\"><a href=\"magnet:?xt=urn:btih:3KVSV53S2D7HBQJKV3GZG26YGMPMCPFD&dn=Resurrection.US.S01E02.HDTV.x264-LOL&tr=udp://tracker.openbittorrent.com:80&tr=udp://tracker.publicbt.com:80&tr=udp://tracker.istole.it:80&tr=udp://open.demonii.com:80&tr=udp://tracker.coppersurfer.tk:80\"
|
937
|
+
class=\"magnet\" title=\"Magnet Link\"></a><a href=\"http://getsecuredfiles.com/ez/dl/?file=Resurrection.US.S01E02.HDTV.x264-LOL.torrent&url=http%3A%2F%2Fre.zoink.it%2Fg%2FDAAB2AF772D0FE70C12AAECD936BD8331EC13CA3\"
|
938
|
+
target=\"_blank\" class=\"ddl\" title=\"Direct Download Link\" onclick=\"_gaq.push(['_trackEvent',
|
939
|
+
'Sponsored', 'sponsored_index_click']);\"></a><a href=\"//re.zoink.it/DA7859c7AB\"
|
940
|
+
class=\"download_1\" title=\"Download Mirror #1\"></a><a href=\"http://piratebaytorrents.info/9776168/Resurrection_US_S01E02_HDTV_x264-LOL.9776168.TPB.torrent\"
|
941
|
+
class=\"download_2\" title=\"Download Mirror #2\"></a><a href=\"http://extratorrent.cc/download/3485926/Resurrection+US+S01E02+HDTV+x264-LOL+%5Beztv%5D.torrent\"
|
942
|
+
class=\"download_3\" title=\"Download Mirror #3\"></a><a href=\"http://www.bt-chat.com/download1.php?id=187967&type=torrent\"
|
943
|
+
class=\"download_4\" title=\"Download Mirror #4\"></a><a href=\"http://torrage.com/torrent/DAAB2AF772D0FE70C12AAECD936BD8331EC13CA3.torrent\"
|
944
|
+
class=\"download_5\" title=\"Download Mirror #5\"></a><a href=\"//zoink.it/torrent/DAAB2AF772D0FE70C12AAECD936BD8331EC13CA3.torrent\"
|
945
|
+
class=\"download_6\" title=\"Download Mirror #6\"></a>\t </td>\n\t\t\t<td
|
946
|
+
align=\"center\" class=\"forum_thread_post\">8h 5m </td>\n\t\t\t<td align=\"center\"
|
947
|
+
class=\"forum_thread_post_end\"><a href=\"/forum/discuss/53233/\"><img src=\"//ezimg.it/s/1/3/chat_empty.png\"
|
948
|
+
border=\"0\" width=\"16\" height=\"16\" alt=\"Discuss\" title=\"Discuss about
|
949
|
+
this show\" /></a></td>\n\t\t</tr>\n\t <tr name=\"hover\" class=\"forum_header_border\">\n\t\t
|
950
|
+
\ <td width=\"35\" class=\"forum_thread_post\"><a href=\"/shows/997/believe/\"><img
|
951
|
+
src=\"//ezimg.it/s/1/3/show_info.png\" border=\"0\" alt=\"Show\" title=\"Show
|
952
|
+
Description about Believe\"></a><a href=\"http://www.tvrage.com/shows/id-34327/episodes/1065461631\"
|
953
|
+
target=\"_blank\" title=\"More info about Believe S01E02 HDTV x264-LOL at
|
954
|
+
tvrage.com\" alt=\"More info about Believe S01E02 HDTV x264-LOL at tvrage.com\"><img
|
955
|
+
src=\"//ezimg.it/s/2/1/tvrage.png\" width=\"16\" height=\"16\" border=\"0\"
|
956
|
+
/></a></td>\n\t\t\t<td class=\"forum_thread_post\">\n\t\t\t\t<a href=\"/ep/53232/believe-s01e02-hdtv-x264-lol/\"
|
957
|
+
title=\"Believe S01E02 HDTV x264-LOL (224.58 MB)\" alt=\"Believe S01E02 HDTV
|
958
|
+
x264-LOL (224.58 MB)\" class=\"epinfo\">Believe S01E02 HDTV x264-LOL</a>\n\t\t\t</td>\n\t\t
|
959
|
+
\ <td align=\"center\" class=\"forum_thread_post\"><a href=\"magnet:?xt=urn:btih:S4QR7FDOHA2ASFDVNM4OM6OFCURGNB6I&dn=Believe.S01E02.HDTV.x264-LOL&tr=udp://tracker.openbittorrent.com:80&tr=udp://tracker.publicbt.com:80&tr=udp://tracker.istole.it:80&tr=udp://open.demonii.com:80&tr=udp://tracker.coppersurfer.tk:80\"
|
960
|
+
class=\"magnet\" title=\"Magnet Link\"></a><a href=\"http://getsecuredfiles.com/ez/dl/?file=Believe.S01E02.HDTV.x264-LOL.torrent&url=http%3A%2F%2Fre.zoink.it%2Fg%2F97211F946E38340914756B38E679C515226687C8\"
|
961
|
+
target=\"_blank\" class=\"ddl\" title=\"Direct Download Link\" onclick=\"_gaq.push(['_trackEvent',
|
962
|
+
'Sponsored', 'sponsored_index_click']);\"></a><a href=\"//re.zoink.it/977859c521\"
|
963
|
+
class=\"download_1\" title=\"Download Mirror #1\"></a><a href=\"http://piratebaytorrents.info/9776167/Believe_S01E02_HDTV_x264-LOL.9776167.TPB.torrent\"
|
964
|
+
class=\"download_2\" title=\"Download Mirror #2\"></a><a href=\"http://extratorrent.cc/download/3485923/Believe+S01E02+HDTV+x264-LOL+%5Beztv%5D.torrent\"
|
965
|
+
class=\"download_3\" title=\"Download Mirror #3\"></a><a href=\"http://www.bt-chat.com/download1.php?id=187966&type=torrent\"
|
966
|
+
class=\"download_4\" title=\"Download Mirror #4\"></a><a href=\"http://torrage.com/torrent/97211F946E38340914756B38E679C515226687C8.torrent\"
|
967
|
+
class=\"download_5\" title=\"Download Mirror #5\"></a><a href=\"//zoink.it/torrent/97211F946E38340914756B38E679C515226687C8.torrent\"
|
968
|
+
class=\"download_6\" title=\"Download Mirror #6\"></a>\t </td>\n\t\t\t<td
|
969
|
+
align=\"center\" class=\"forum_thread_post\">8h 6m </td>\n\t\t\t<td align=\"center\"
|
970
|
+
class=\"forum_thread_post_end\"><a href=\"/forum/36139/believe-s01e02-hdtv-x264-lol/\"><img
|
971
|
+
src=\"//ezimg.it/s/1/3/chat_messages.png\" border=\"0\" width=\"16\" height=\"16\"
|
972
|
+
alt=\"3 comments\" title=\"3 forum comments\" /></a></td>\n\t\t</tr>\n\t <tr
|
973
|
+
name=\"hover\" class=\"forum_header_border\">\n\t\t <td width=\"35\" class=\"forum_thread_post\"><a
|
974
|
+
href=\"/shows/998/cosmos-a-spacetime-odyssey/\"><img src=\"//ezimg.it/s/1/3/show_info.png\"
|
975
|
+
border=\"0\" alt=\"Show\" title=\"Show Description about Cosmos A Spacetime
|
976
|
+
Odyssey\"></a><a href=\"http://www.tvrage.com/shows/id-29336/episodes/1065481941\"
|
977
|
+
target=\"_blank\" title=\"More info about Cosmos A Space Time Odyssey S01E02
|
978
|
+
PROPER 720p HDTV X264-DIMENSION at tvrage.com\" alt=\"More info about Cosmos
|
979
|
+
A Space Time Odyssey S01E02 PROPER 720p HDTV X264-DIMENSION at tvrage.com\"><img
|
980
|
+
src=\"//ezimg.it/s/2/1/tvrage.png\" width=\"16\" height=\"16\" border=\"0\"
|
981
|
+
/></a></td>\n\t\t\t<td class=\"forum_thread_post\">\n\t\t\t\t<a href=\"/ep/53231/cosmos-a-space-time-odyssey-s01e02-proper-720p-hdtv-x264-dimension/\"
|
982
|
+
title=\"Cosmos A Space Time Odyssey S01E02 PROPER 720p HDTV X264-DIMENSION
|
983
|
+
(1.25 GB)\" alt=\"Cosmos A Space Time Odyssey S01E02 PROPER 720p HDTV X264-DIMENSION
|
984
|
+
(1.25 GB)\" class=\"epinfo\">Cosmos A Space Time Odyssey S01E02 PROPER 720p
|
985
|
+
HDTV X264-DIMENSION</a>\n\t\t\t</td>\n\t\t <td align=\"center\" class=\"forum_thread_post\"><a
|
986
|
+
href=\"magnet:?xt=urn:btih:V725GMJFNGYSY7NWK2WADJ3UVIYRX77A&dn=Cosmos.A.Space.Time.Odyssey.S01E02.PROPER.720p.HDTV.X264-DIMENSION&tr=udp://tracker.openbittorrent.com:80&tr=udp://tracker.publicbt.com:80&tr=udp://tracker.istole.it:80&tr=udp://open.demonii.com:80&tr=udp://tracker.coppersurfer.tk:80\"
|
987
|
+
class=\"magnet\" title=\"Magnet Link\"></a><a href=\"http://getsecuredfiles.com/ez/dl/?file=Cosmos.A.Space.Time.Odyssey.S01E02.PROPER.720p.HDTV.X264-DIMENSION.torrent&url=http%3A%2F%2Fre.zoink.it%2Fg%2FAFF5D3312569B12C7DB656AC01A774AA311BFFE0\"
|
988
|
+
target=\"_blank\" class=\"ddl\" title=\"Direct Download Link\" onclick=\"_gaq.push(['_trackEvent',
|
989
|
+
'Sponsored', 'sponsored_index_click']);\"></a><a href=\"//re.zoink.it/AF785921F5\"
|
990
|
+
class=\"download_1\" title=\"Download Mirror #1\"></a><a href=\"http://extratorrent.cc/download/3485921/Cosmos+A+Space+Time+Odyssey+S01E02+PROPER+720p+HDTV+X264-DIMENSION+%5Beztv%5D.torrent\"
|
991
|
+
class=\"download_2\" title=\"Download Mirror #2\"></a><a href=\"http://www.bt-chat.com/download1.php?id=187965&type=torrent\"
|
992
|
+
class=\"download_3\" title=\"Download Mirror #3\"></a><a href=\"http://torrage.com/torrent/AFF5D3312569B12C7DB656AC01A774AA311BFFE0.torrent\"
|
993
|
+
class=\"download_4\" title=\"Download Mirror #4\"></a><a href=\"//zoink.it/torrent/AFF5D3312569B12C7DB656AC01A774AA311BFFE0.torrent\"
|
994
|
+
class=\"download_5\" title=\"Download Mirror #5\"></a>\t </td>\n\t\t\t<td
|
995
|
+
align=\"center\" class=\"forum_thread_post\">8h 7m </td>\n\t\t\t<td align=\"center\"
|
996
|
+
class=\"forum_thread_post_end\"><a href=\"/forum/discuss/53231/\"><img src=\"//ezimg.it/s/1/3/chat_empty.png\"
|
997
|
+
border=\"0\" width=\"16\" height=\"16\" alt=\"Discuss\" title=\"Discuss about
|
998
|
+
this show\" /></a></td>\n\t\t</tr>\n\t <tr name=\"hover\" class=\"forum_header_border\">\n\t\t
|
999
|
+
\ <td width=\"35\" class=\"forum_thread_post\"><a href=\"/shows/998/cosmos-a-spacetime-odyssey/\"><img
|
1000
|
+
src=\"//ezimg.it/s/1/3/show_info.png\" border=\"0\" alt=\"Show\" title=\"Show
|
1001
|
+
Description about Cosmos A Spacetime Odyssey\"></a><a href=\"http://www.tvrage.com/shows/id-29336/episodes/1065481941\"
|
1002
|
+
target=\"_blank\" title=\"More info about Cosmos A Space Time Odyssey S01E02
|
1003
|
+
HDTV x264 PROPER-LOL at tvrage.com\" alt=\"More info about Cosmos A Space
|
1004
|
+
Time Odyssey S01E02 HDTV x264 PROPER-LOL at tvrage.com\"><img src=\"//ezimg.it/s/2/1/tvrage.png\"
|
1005
|
+
width=\"16\" height=\"16\" border=\"0\" /></a></td>\n\t\t\t<td class=\"forum_thread_post\">\n\t\t\t\t<a
|
1006
|
+
href=\"/ep/53230/cosmos-a-space-time-odyssey-s01e02-hdtv-x264-proper-lol/\"
|
1007
|
+
title=\"Cosmos A Space Time Odyssey S01E02 HDTV x264 PROPER-LOL (274.20 MB)\"
|
1008
|
+
alt=\"Cosmos A Space Time Odyssey S01E02 HDTV x264 PROPER-LOL (274.20 MB)\"
|
1009
|
+
class=\"epinfo\">Cosmos A Space Time Odyssey S01E02 HDTV x264 PROPER-LOL</a>\n\t\t\t</td>\n\t\t
|
1010
|
+
\ <td align=\"center\" class=\"forum_thread_post\"><a href=\"magnet:?xt=urn:btih:TJJBX6LQOVQNWAYJLJ54M5SMP63WS6EO&dn=Cosmos.A.Space.Time.Odyssey.S01E02.HDTV.x264.PROPER-LOL&tr=udp://tracker.openbittorrent.com:80&tr=udp://tracker.publicbt.com:80&tr=udp://tracker.istole.it:80&tr=udp://open.demonii.com:80&tr=udp://tracker.coppersurfer.tk:80\"
|
1011
|
+
class=\"magnet\" title=\"Magnet Link\"></a><a href=\"http://getsecuredfiles.com/ez/dl/?file=Cosmos.A.Space.Time.Odyssey.S01E02.HDTV.x264.PROPER-LOL.torrent&url=http%3A%2F%2Fre.zoink.it%2Fg%2F9A521BF9707560DB03095A7BC6764C7FB769788E\"
|
1012
|
+
target=\"_blank\" class=\"ddl\" title=\"Direct Download Link\" onclick=\"_gaq.push(['_trackEvent',
|
1013
|
+
'Sponsored', 'sponsored_index_click']);\"></a><a href=\"//re.zoink.it/9A7859c352\"
|
1014
|
+
class=\"download_1\" title=\"Download Mirror #1\"></a><a href=\"http://piratebaytorrents.info/9776160/Cosmos_A_Space_Time_Odyssey_S01E02_HDTV_x264_PROPER-LOL.9776160.TPB.torrent\"
|
1015
|
+
class=\"download_2\" title=\"Download Mirror #2\"></a><a href=\"http://extratorrent.cc/download/3485919/Cosmos+A+Space+Time+Odyssey+S01E02+HDTV+x264+PROPER-LOL+%5Beztv%5D.torrent\"
|
1016
|
+
class=\"download_3\" title=\"Download Mirror #3\"></a><a href=\"http://www.bt-chat.com/download1.php?id=187964&type=torrent\"
|
1017
|
+
class=\"download_4\" title=\"Download Mirror #4\"></a><a href=\"http://torrage.com/torrent/9A521BF9707560DB03095A7BC6764C7FB769788E.torrent\"
|
1018
|
+
class=\"download_5\" title=\"Download Mirror #5\"></a><a href=\"//zoink.it/torrent/9A521BF9707560DB03095A7BC6764C7FB769788E.torrent\"
|
1019
|
+
class=\"download_6\" title=\"Download Mirror #6\"></a>\t </td>\n\t\t\t<td
|
1020
|
+
align=\"center\" class=\"forum_thread_post\">8h 8m </td>\n\t\t\t<td align=\"center\"
|
1021
|
+
class=\"forum_thread_post_end\"><a href=\"/forum/discuss/53230/\"><img src=\"//ezimg.it/s/1/3/chat_empty.png\"
|
1022
|
+
border=\"0\" width=\"16\" height=\"16\" alt=\"Discuss\" title=\"Discuss about
|
1023
|
+
this show\" /></a></td>\n\t\t</tr>\n\t <tr name=\"hover\" class=\"forum_header_border\">\n\t\t
|
1024
|
+
\ <td width=\"35\" class=\"forum_thread_post\"><a href=\"/shows/7/american-dad/\"><img
|
1025
|
+
src=\"//ezimg.it/s/1/3/show_info.png\" border=\"0\" alt=\"Show\" title=\"Show
|
1026
|
+
Description about American Dad\"></a><a href=\"http://www.tvrage.com/American_Dad/episodes/1065344281\"
|
1027
|
+
target=\"_blank\" title=\"More info about American Dad S09E12 PROPER HDTV
|
1028
|
+
x264-2HD at tvrage.com\" alt=\"More info about American Dad S09E12 PROPER
|
1029
|
+
HDTV x264-2HD at tvrage.com\"><img src=\"//ezimg.it/s/2/1/tvrage.png\" width=\"16\"
|
1030
|
+
height=\"16\" border=\"0\" /></a></td>\n\t\t\t<td class=\"forum_thread_post\">\n\t\t\t\t<a
|
1031
|
+
href=\"/ep/53229/american-dad-s09e12-proper-hdtv-x264-2hd/\" title=\"American
|
1032
|
+
Dad S09E12 PROPER HDTV x264-2HD (71.49 MB)\" alt=\"American Dad S09E12 PROPER
|
1033
|
+
HDTV x264-2HD (71.49 MB)\" class=\"epinfo\">American Dad S09E12 PROPER HDTV
|
1034
|
+
x264-2HD</a>\n\t\t\t</td>\n\t\t <td align=\"center\" class=\"forum_thread_post\"><a
|
1035
|
+
href=\"magnet:?xt=urn:btih:DLWKBW7G7S3B452VYJPWGZIWUCJOLJJ6&dn=American.Dad.S09E12.PROPER.HDTV.x264-2HD&tr=udp://tracker.openbittorrent.com:80&tr=udp://tracker.publicbt.com:80&tr=udp://tracker.istole.it:80&tr=udp://open.demonii.com:80&tr=udp://tracker.coppersurfer.tk:80\"
|
1036
|
+
class=\"magnet\" title=\"Magnet Link\"></a><a href=\"http://getsecuredfiles.com/ez/dl/?file=American.Dad.S09E12.PROPER.HDTV.x264-2HD.torrent&url=http%3A%2F%2Fre.zoink.it%2Fg%2F1AECA0DBE6FCB61E7755C25F636516A092E5A53E\"
|
1037
|
+
target=\"_blank\" class=\"ddl\" title=\"Direct Download Link\" onclick=\"_gaq.push(['_trackEvent',
|
1038
|
+
'Sponsored', 'sponsored_index_click']);\"></a><a href=\"//re.zoink.it/1A785999EC\"
|
1039
|
+
class=\"download_1\" title=\"Download Mirror #1\"></a><a href=\"http://piratebaytorrents.info/9776157/American_Dad_S09E12_PROPER_HDTV_x264-2HD.9776157.TPB.torrent\"
|
1040
|
+
class=\"download_2\" title=\"Download Mirror #2\"></a><a href=\"http://extratorrent.cc/download/3485916/American+Dad+S09E12+PROPER+HDTV+x264-2HD+%5Beztv%5D.torrent\"
|
1041
|
+
class=\"download_3\" title=\"Download Mirror #3\"></a><a href=\"http://www.bt-chat.com/download1.php?id=187963&type=torrent\"
|
1042
|
+
class=\"download_4\" title=\"Download Mirror #4\"></a><a href=\"http://torrage.com/torrent/1AECA0DBE6FCB61E7755C25F636516A092E5A53E.torrent\"
|
1043
|
+
class=\"download_5\" title=\"Download Mirror #5\"></a><a href=\"//zoink.it/torrent/1AECA0DBE6FCB61E7755C25F636516A092E5A53E.torrent\"
|
1044
|
+
class=\"download_6\" title=\"Download Mirror #6\"></a>\t </td>\n\t\t\t<td
|
1045
|
+
align=\"center\" class=\"forum_thread_post\">8h 9m </td>\n\t\t\t<td align=\"center\"
|
1046
|
+
class=\"forum_thread_post_end\"><a href=\"/forum/discuss/53229/\"><img src=\"//ezimg.it/s/1/3/chat_empty.png\"
|
1047
|
+
border=\"0\" width=\"16\" height=\"16\" alt=\"Discuss\" title=\"Discuss about
|
1048
|
+
this show\" /></a></td>\n\t\t</tr>\n\t\t<tr class=\"forum_space_border\">\n\t\t\t<td
|
1049
|
+
colspan=\"5\" class=\"header_date\">\n\t\t\t\tAdded on: <b>16, March, 2014</b>\n\t\t\t</td>\n\t\t</tr>\n\t
|
1050
|
+
\ <tr name=\"hover\" class=\"forum_header_border\">\n\t\t <td width=\"35\"
|
1051
|
+
class=\"forum_thread_post\"><a href=\"/shows/428/the-walking-dead/\"><img
|
1052
|
+
src=\"//ezimg.it/s/1/3/show_info.png\" border=\"0\" alt=\"Show\" title=\"Show
|
1053
|
+
Description about The Walking Dead\"></a><a href=\"http://www.tvrage.com/The_Walking_Dead/episodes/1065477186\"
|
1054
|
+
target=\"_blank\" title=\"More info about The Walking Dead S04E14 HDTV x264-2HD
|
1055
|
+
at tvrage.com\" alt=\"More info about The Walking Dead S04E14 HDTV x264-2HD
|
1056
|
+
at tvrage.com\"><img src=\"//ezimg.it/s/2/1/tvrage.png\" width=\"16\" height=\"16\"
|
1057
|
+
border=\"0\" /></a></td>\n\t\t\t<td class=\"forum_thread_post\">\n\t\t\t\t<a
|
1058
|
+
href=\"/ep/53228/the-walking-dead-s04e14-hdtv-x264-2hd/\" title=\"The Walking
|
1059
|
+
Dead S04E14 HDTV x264-2HD (493.79 MB)\" alt=\"The Walking Dead S04E14 HDTV
|
1060
|
+
x264-2HD (493.79 MB)\" class=\"epinfo\">The Walking Dead S04E14 HDTV x264-2HD</a>\n\t\t\t</td>\n\t\t
|
1061
|
+
\ <td align=\"center\" class=\"forum_thread_post\"><a href=\"magnet:?xt=urn:btih:ZTTYOAE65VFA3WRJ2WQICRD33JK2IW34&dn=The.Walking.Dead.S04E14.HDTV.x264-2HD&tr=udp://tracker.openbittorrent.com:80&tr=udp://tracker.publicbt.com:80&tr=udp://tracker.istole.it:80&tr=udp://open.demonii.com:80&tr=udp://tracker.coppersurfer.tk:80\"
|
1062
|
+
class=\"magnet\" title=\"Magnet Link\"></a><a href=\"http://getsecuredfiles.com/ez/dl/?file=The.Walking.Dead.S04E14.HDTV.x264-2HD.torrent&url=http%3A%2F%2Fre.zoink.it%2Fg%2FCCE787009EED4A0DDA29D5A081447BDA55A45B7C\"
|
1063
|
+
target=\"_blank\" class=\"ddl\" title=\"Direct Download Link\" onclick=\"_gaq.push(['_trackEvent',
|
1064
|
+
'Sponsored', 'sponsored_index_click']);\"></a><a href=\"//re.zoink.it/CC78597dE7\"
|
1065
|
+
class=\"download_1\" title=\"Download Mirror #1\"></a><a href=\"http://piratebaytorrents.info/9776138/The_Walking_Dead_S04E14_HDTV_x264-2HD.9776138.TPB.torrent\"
|
1066
|
+
class=\"download_2\" title=\"Download Mirror #2\"></a><a href=\"http://extratorrent.cc/download/3485910/The+Walking+Dead+S04E14+HDTV+x264-2HD+%5Beztv%5D.torrent\"
|
1067
|
+
class=\"download_3\" title=\"Download Mirror #3\"></a><a href=\"http://www.bt-chat.com/download1.php?id=187962&type=torrent\"
|
1068
|
+
class=\"download_4\" title=\"Download Mirror #4\"></a><a href=\"http://torrage.com/torrent/CCE787009EED4A0DDA29D5A081447BDA55A45B7C.torrent\"
|
1069
|
+
class=\"download_5\" title=\"Download Mirror #5\"></a><a href=\"//zoink.it/torrent/CCE787009EED4A0DDA29D5A081447BDA55A45B7C.torrent\"
|
1070
|
+
class=\"download_6\" title=\"Download Mirror #6\"></a>\t </td>\n\t\t\t<td
|
1071
|
+
align=\"center\" class=\"forum_thread_post\">8h 16m </td>\n\t\t\t<td align=\"center\"
|
1072
|
+
class=\"forum_thread_post_end\"><a href=\"/forum/36137/the-walking-dead-s04e14-hdtv-x264-2hd/\"><img
|
1073
|
+
src=\"//ezimg.it/s/1/3/chat_messages.png\" border=\"0\" width=\"16\" height=\"16\"
|
1074
|
+
alt=\"2 comments\" title=\"2 forum comments\" /></a></td>\n\t\t</tr>\n\t <tr
|
1075
|
+
name=\"hover\" class=\"forum_header_border\">\n\t\t <td width=\"35\" class=\"forum_thread_post\"><a
|
1076
|
+
href=\"/shows/275/top-gear/\"><img src=\"//ezimg.it/s/1/3/show_info.png\"
|
1077
|
+
border=\"0\" alt=\"Show\" title=\"Show Description about Top Gear\"></a><a
|
1078
|
+
href=\"http://www.tvrage.com/Top_Gear/episodes/1065478418\" target=\"_blank\"
|
1079
|
+
title=\"More info about Top Gear S21E07 PROPER HDTV x264-RiVER at tvrage.com\"
|
1080
|
+
alt=\"More info about Top Gear S21E07 PROPER HDTV x264-RiVER at tvrage.com\"><img
|
1081
|
+
src=\"//ezimg.it/s/2/1/tvrage.png\" width=\"16\" height=\"16\" border=\"0\"
|
1082
|
+
/></a></td>\n\t\t\t<td class=\"forum_thread_post\">\n\t\t\t\t<a href=\"/ep/53227/top-gear-s21e07-proper-hdtv-x264-river/\"
|
1083
|
+
title=\"Top Gear S21E07 PROPER HDTV x264-RiVER (718.92 MB)\" alt=\"Top Gear
|
1084
|
+
S21E07 PROPER HDTV x264-RiVER (718.92 MB)\" class=\"epinfo\">Top Gear S21E07
|
1085
|
+
PROPER HDTV x264-RiVER</a>\n\t\t\t</td>\n\t\t <td align=\"center\" class=\"forum_thread_post\"><a
|
1086
|
+
href=\"magnet:?xt=urn:btih:XHYNV4DZRET5TVOLTSHHDP2B5F7OIFIM&dn=Top.Gear.S21E07.PROPER.HDTV.x264-RiVER&tr=udp://tracker.openbittorrent.com:80&tr=udp://tracker.publicbt.com:80&tr=udp://tracker.istole.it:80&tr=udp://open.demonii.com:80&tr=udp://tracker.coppersurfer.tk:80\"
|
1087
|
+
class=\"magnet\" title=\"Magnet Link\"></a><a href=\"http://getsecuredfiles.com/ez/dl/?file=Top.Gear.S21E07.PROPER.HDTV.x264-RiVER.torrent&url=http%3A%2F%2Fre.zoink.it%2Fg%2FB9F0DAF0798927D9D5CB9C8E71BF41E97EE4150C\"
|
1088
|
+
target=\"_blank\" class=\"ddl\" title=\"Direct Download Link\" onclick=\"_gaq.push(['_trackEvent',
|
1089
|
+
'Sponsored', 'sponsored_index_click']);\"></a><a href=\"//re.zoink.it/B978597bF0\"
|
1090
|
+
class=\"download_1\" title=\"Download Mirror #1\"></a><a href=\"http://piratebaytorrents.info/9776137/Top_Gear_S21E07_PROPER_HDTV_x264-RiVER.9776137.TPB.torrent\"
|
1091
|
+
class=\"download_2\" title=\"Download Mirror #2\"></a><a href=\"http://extratorrent.cc/download/3485909/Top+Gear+S21E07+PROPER+HDTV+x264-RiVER+%5Beztv%5D.torrent\"
|
1092
|
+
class=\"download_3\" title=\"Download Mirror #3\"></a><a href=\"http://www.bt-chat.com/download1.php?id=187961&type=torrent\"
|
1093
|
+
class=\"download_4\" title=\"Download Mirror #4\"></a><a href=\"http://torrage.com/torrent/B9F0DAF0798927D9D5CB9C8E71BF41E97EE4150C.torrent\"
|
1094
|
+
class=\"download_5\" title=\"Download Mirror #5\"></a><a href=\"//zoink.it/torrent/B9F0DAF0798927D9D5CB9C8E71BF41E97EE4150C.torrent\"
|
1095
|
+
class=\"download_6\" title=\"Download Mirror #6\"></a>\t </td>\n\t\t\t<td
|
1096
|
+
align=\"center\" class=\"forum_thread_post\">8h 16m </td>\n\t\t\t<td align=\"center\"
|
1097
|
+
class=\"forum_thread_post_end\"><a href=\"/forum/36138/top-gear-s21e07-proper-hdtv-x264-river/\"><img
|
1098
|
+
src=\"//ezimg.it/s/1/3/chat_messages.png\" border=\"0\" width=\"16\" height=\"16\"
|
1099
|
+
alt=\"3 comments\" title=\"3 forum comments\" /></a></td>\n\t\t</tr>\n\t <tr
|
1100
|
+
name=\"hover\" class=\"forum_header_border\">\n\t\t <td width=\"35\" class=\"forum_thread_post\"><a
|
1101
|
+
href=\"/shows/643/continuum/\"><img src=\"//ezimg.it/s/1/3/show_info.png\"
|
1102
|
+
border=\"0\" alt=\"Show\" title=\"Show Description about Continuum\"></a><a
|
1103
|
+
href=\"http://www.tvrage.com/Continuum/episodes/1065448980\" target=\"_blank\"
|
1104
|
+
title=\"More info about Continuum S03E01 HDTV x264-2HD at tvrage.com\" alt=\"More
|
1105
|
+
info about Continuum S03E01 HDTV x264-2HD at tvrage.com\"><img src=\"//ezimg.it/s/2/1/tvrage.png\"
|
1106
|
+
width=\"16\" height=\"16\" border=\"0\" /></a></td>\n\t\t\t<td class=\"forum_thread_post\">\n\t\t\t\t<a
|
1107
|
+
href=\"/ep/53226/continuum-s03e01-hdtv-x264-2hd/\" title=\"Continuum S03E01
|
1108
|
+
HDTV x264-2HD (307.79 MB)\" alt=\"Continuum S03E01 HDTV x264-2HD (307.79 MB)\"
|
1109
|
+
class=\"epinfo\">Continuum S03E01 HDTV x264-2HD</a>\n\t\t\t</td>\n\t\t <td
|
1110
|
+
align=\"center\" class=\"forum_thread_post\"><a href=\"magnet:?xt=urn:btih:RLL4GM4FGTH3ABV2TBKSFG3QQU6KO2MJ&dn=Continuum.S03E01.HDTV.x264-2HD&tr=udp://tracker.openbittorrent.com:80&tr=udp://tracker.publicbt.com:80&tr=udp://tracker.istole.it:80&tr=udp://open.demonii.com:80&tr=udp://tracker.coppersurfer.tk:80\"
|
1111
|
+
class=\"magnet\" title=\"Magnet Link\"></a><a href=\"http://getsecuredfiles.com/ez/dl/?file=Continuum.S03E01.HDTV.x264-2HD.torrent&url=http%3A%2F%2Fre.zoink.it%2Fg%2F8AD7C3338534CFB006BA9855229B70853CA76989\"
|
1112
|
+
target=\"_blank\" class=\"ddl\" title=\"Direct Download Link\" onclick=\"_gaq.push(['_trackEvent',
|
1113
|
+
'Sponsored', 'sponsored_index_click']);\"></a><a href=\"//re.zoink.it/8A785974D7\"
|
1114
|
+
class=\"download_1\" title=\"Download Mirror #1\"></a><a href=\"http://piratebaytorrents.info/9776134/Continuum_S03E01_HDTV_x264-2HD.9776134.TPB.torrent\"
|
1115
|
+
class=\"download_2\" title=\"Download Mirror #2\"></a><a href=\"http://extratorrent.cc/download/3485907/Continuum+S03E01+HDTV+x264-2HD+%5Beztv%5D.torrent\"
|
1116
|
+
class=\"download_3\" title=\"Download Mirror #3\"></a><a href=\"http://www.bt-chat.com/download1.php?id=187960&type=torrent\"
|
1117
|
+
class=\"download_4\" title=\"Download Mirror #4\"></a><a href=\"http://torrage.com/torrent/8AD7C3338534CFB006BA9855229B70853CA76989.torrent\"
|
1118
|
+
class=\"download_5\" title=\"Download Mirror #5\"></a><a href=\"//zoink.it/torrent/8AD7C3338534CFB006BA9855229B70853CA76989.torrent\"
|
1119
|
+
class=\"download_6\" title=\"Download Mirror #6\"></a>\t </td>\n\t\t\t<td
|
1120
|
+
align=\"center\" class=\"forum_thread_post\">8h 17m </td>\n\t\t\t<td align=\"center\"
|
1121
|
+
class=\"forum_thread_post_end\"><a href=\"/forum/discuss/53226/\"><img src=\"//ezimg.it/s/1/3/chat_empty.png\"
|
1122
|
+
border=\"0\" width=\"16\" height=\"16\" alt=\"Discuss\" title=\"Discuss about
|
1123
|
+
this show\" /></a></td>\n\t\t</tr>\n\t <tr name=\"hover\" class=\"forum_header_border\">\n\t\t
|
1124
|
+
\ <td width=\"35\" class=\"forum_thread_post\"><a href=\"/shows/1002/crisis/\"><img
|
1125
|
+
src=\"//ezimg.it/s/1/3/show_info.png\" border=\"0\" alt=\"Show\" title=\"Show
|
1126
|
+
Description about Crisis\"></a><a href=\"http://www.tvrage.com/shows/id-35791/episodes/1065325066\"
|
1127
|
+
target=\"_blank\" title=\"More info about Crisis S01E01 HDTV x264-LOL at tvrage.com\"
|
1128
|
+
alt=\"More info about Crisis S01E01 HDTV x264-LOL at tvrage.com\"><img src=\"//ezimg.it/s/2/1/tvrage.png\"
|
1129
|
+
width=\"16\" height=\"16\" border=\"0\" /></a></td>\n\t\t\t<td class=\"forum_thread_post\">\n\t\t\t\t<a
|
1130
|
+
href=\"/ep/53225/crisis-s01e01-hdtv-x264-lol/\" title=\"Crisis S01E01 HDTV
|
1131
|
+
x264-LOL (410.00 MB)\" alt=\"Crisis S01E01 HDTV x264-LOL (410.00 MB)\" class=\"epinfo\">Crisis
|
1132
|
+
S01E01 HDTV x264-LOL</a>\n\t\t\t</td>\n\t\t <td align=\"center\" class=\"forum_thread_post\"><a
|
1133
|
+
href=\"magnet:?xt=urn:btih:EDZKXXRN2A36NEQG4TOU7IS24WCL2CVH&dn=Crisis.S01E01.HDTV.x264-LOL&tr=udp://tracker.openbittorrent.com:80&tr=udp://tracker.publicbt.com:80&tr=udp://tracker.istole.it:80&tr=udp://open.demonii.com:80&tr=udp://tracker.coppersurfer.tk:80\"
|
1134
|
+
class=\"magnet\" title=\"Magnet Link\"></a><a href=\"http://getsecuredfiles.com/ez/dl/?file=Crisis.S01E01.HDTV.x264-LOL.torrent&url=http%3A%2F%2Fre.zoink.it%2Fg%2F20F2ABDE2DD037E69206E4DD4FA25AE584BD0AA7\"
|
1135
|
+
target=\"_blank\" class=\"ddl\" title=\"Direct Download Link\" onclick=\"_gaq.push(['_trackEvent',
|
1136
|
+
'Sponsored', 'sponsored_index_click']);\"></a><a href=\"//re.zoink.it/20785972F2\"
|
1137
|
+
class=\"download_1\" title=\"Download Mirror #1\"></a><a href=\"http://piratebaytorrents.info/9776130/Crisis_S01E01_HDTV_x264-LOL.9776130.TPB.torrent\"
|
1138
|
+
class=\"download_2\" title=\"Download Mirror #2\"></a><a href=\"http://extratorrent.cc/download/3485904/Crisis+S01E01+HDTV+x264-LOL+%5Beztv%5D.torrent\"
|
1139
|
+
class=\"download_3\" title=\"Download Mirror #3\"></a><a href=\"http://www.bt-chat.com/download1.php?id=187959&type=torrent\"
|
1140
|
+
class=\"download_4\" title=\"Download Mirror #4\"></a><a href=\"http://torrage.com/torrent/20F2ABDE2DD037E69206E4DD4FA25AE584BD0AA7.torrent\"
|
1141
|
+
class=\"download_5\" title=\"Download Mirror #5\"></a><a href=\"//zoink.it/torrent/20F2ABDE2DD037E69206E4DD4FA25AE584BD0AA7.torrent\"
|
1142
|
+
class=\"download_6\" title=\"Download Mirror #6\"></a>\t </td>\n\t\t\t<td
|
1143
|
+
align=\"center\" class=\"forum_thread_post\">8h 18m </td>\n\t\t\t<td align=\"center\"
|
1144
|
+
class=\"forum_thread_post_end\"><a href=\"/forum/36136/crisis-s01e01-hdtv-x264-lol/\"><img
|
1145
|
+
src=\"//ezimg.it/s/1/3/chat_messages.png\" border=\"0\" width=\"16\" height=\"16\"
|
1146
|
+
alt=\"3 comments\" title=\"3 forum comments\" /></a></td>\n\t\t</tr>\n\t <tr
|
1147
|
+
name=\"hover\" class=\"forum_header_border\">\n\t\t <td width=\"35\" class=\"forum_thread_post\"><a
|
1148
|
+
href=\"/shows/634/girls/\"><img src=\"//ezimg.it/s/1/3/show_info.png\" border=\"0\"
|
1149
|
+
alt=\"Show\" title=\"Show Description about Girls\"></a><a href=\"http://www.tvrage.com/shows/id-30124/episodes/1065467868\"
|
1150
|
+
target=\"_blank\" title=\"More info about Girls S03E11 HDTV x264-KILLERS at
|
1151
|
+
tvrage.com\" alt=\"More info about Girls S03E11 HDTV x264-KILLERS at tvrage.com\"><img
|
1152
|
+
src=\"//ezimg.it/s/2/1/tvrage.png\" width=\"16\" height=\"16\" border=\"0\"
|
1153
|
+
/></a></td>\n\t\t\t<td class=\"forum_thread_post\">\n\t\t\t\t<a href=\"/ep/53224/girls-s03e11-hdtv-x264-killers/\"
|
1154
|
+
title=\"Girls S03E11 HDTV x264-KILLERS (155.37 MB)\" alt=\"Girls S03E11 HDTV
|
1155
|
+
x264-KILLERS (155.37 MB)\" class=\"epinfo\">Girls S03E11 HDTV x264-KILLERS</a>\n\t\t\t</td>\n\t\t
|
1156
|
+
\ <td align=\"center\" class=\"forum_thread_post\"><a href=\"magnet:?xt=urn:btih:OKZXDEC56KG7D5JQE4CXKYRIXB2CQVQP&dn=Girls.S03E11.HDTV.x264-KILLERS&tr=udp://tracker.openbittorrent.com:80&tr=udp://tracker.publicbt.com:80&tr=udp://tracker.istole.it:80&tr=udp://open.demonii.com:80&tr=udp://tracker.coppersurfer.tk:80\"
|
1157
|
+
class=\"magnet\" title=\"Magnet Link\"></a><a href=\"http://getsecuredfiles.com/ez/dl/?file=Girls.S03E11.HDTV.x264-KILLERS.torrent&url=http%3A%2F%2Fre.zoink.it%2Fg%2F72B371905DF28DF1F5302705756228B87428560F\"
|
1158
|
+
target=\"_blank\" class=\"ddl\" title=\"Direct Download Link\" onclick=\"_gaq.push(['_trackEvent',
|
1159
|
+
'Sponsored', 'sponsored_index_click']);\"></a><a href=\"//re.zoink.it/727858c8B3\"
|
1160
|
+
class=\"download_1\" title=\"Download Mirror #1\"></a><a href=\"http://piratebaytorrents.info/9775936/Girls_S03E11_HDTV_x264-KILLERS.9775936.TPB.torrent\"
|
1161
|
+
class=\"download_2\" title=\"Download Mirror #2\"></a><a href=\"http://extratorrent.cc/download/3485837/Girls+S03E11+HDTV+x264-KILLERS+%5Beztv%5D.torrent\"
|
1162
|
+
class=\"download_3\" title=\"Download Mirror #3\"></a><a href=\"http://www.bt-chat.com/download1.php?id=187949&type=torrent\"
|
1163
|
+
class=\"download_4\" title=\"Download Mirror #4\"></a><a href=\"http://torrage.com/torrent/72B371905DF28DF1F5302705756228B87428560F.torrent\"
|
1164
|
+
class=\"download_5\" title=\"Download Mirror #5\"></a><a href=\"//zoink.it/torrent/72B371905DF28DF1F5302705756228B87428560F.torrent\"
|
1165
|
+
class=\"download_6\" title=\"Download Mirror #6\"></a>\t </td>\n\t\t\t<td
|
1166
|
+
align=\"center\" class=\"forum_thread_post\">9h 15m </td>\n\t\t\t<td align=\"center\"
|
1167
|
+
class=\"forum_thread_post_end\"><a href=\"/forum/discuss/53224/\"><img src=\"//ezimg.it/s/1/3/chat_empty.png\"
|
1168
|
+
border=\"0\" width=\"16\" height=\"16\" alt=\"Discuss\" title=\"Discuss about
|
1169
|
+
this show\" /></a></td>\n\t\t</tr>\n\t <tr name=\"hover\" class=\"forum_header_border\">\n\t\t
|
1170
|
+
\ <td width=\"35\" class=\"forum_thread_post\"><a href=\"/shows/179/the-mentalist/\"><img
|
1171
|
+
src=\"//ezimg.it/s/1/3/show_info.png\" border=\"0\" alt=\"Show\" title=\"Show
|
1172
|
+
Description about The Mentalist\"></a><a href=\"http://www.tvrage.com/The_Mentalist/episodes/1065500419\"
|
1173
|
+
target=\"_blank\" title=\"More info about The Mentalist S06E14 HDTV x264-LOL
|
1174
|
+
at tvrage.com\" alt=\"More info about The Mentalist S06E14 HDTV x264-LOL at
|
1175
|
+
tvrage.com\"><img src=\"//ezimg.it/s/2/1/tvrage.png\" width=\"16\" height=\"16\"
|
1176
|
+
border=\"0\" /></a></td>\n\t\t\t<td class=\"forum_thread_post\">\n\t\t\t\t<a
|
1177
|
+
href=\"/ep/53223/the-mentalist-s06e14-hdtv-x264-lol/\" title=\"The Mentalist
|
1178
|
+
S06E14 HDTV x264-LOL (227.25 MB)\" alt=\"The Mentalist S06E14 HDTV x264-LOL
|
1179
|
+
(227.25 MB)\" class=\"epinfo\">The Mentalist S06E14 HDTV x264-LOL</a>\n\t\t\t</td>\n\t\t
|
1180
|
+
\ <td align=\"center\" class=\"forum_thread_post\"><a href=\"magnet:?xt=urn:btih:3HZTPBH2RK2C6I66JOA5HCZCSGS4PF34&dn=The.Mentalist.S06E14.HDTV.x264-LOL&tr=udp://tracker.openbittorrent.com:80&tr=udp://tracker.publicbt.com:80&tr=udp://tracker.istole.it:80&tr=udp://open.demonii.com:80&tr=udp://tracker.coppersurfer.tk:80\"
|
1181
|
+
class=\"magnet\" title=\"Magnet Link\"></a><a href=\"http://getsecuredfiles.com/ez/dl/?file=The.Mentalist.S06E14.HDTV.x264-LOL.torrent&url=http%3A%2F%2Fre.zoink.it%2Fg%2FD9F33784FA8AB42F23DE4B81D38B2291A5C7977C\"
|
1182
|
+
target=\"_blank\" class=\"ddl\" title=\"Direct Download Link\" onclick=\"_gaq.push(['_trackEvent',
|
1183
|
+
'Sponsored', 'sponsored_index_click']);\"></a><a href=\"//re.zoink.it/D97858b2F3\"
|
1184
|
+
class=\"download_1\" title=\"Download Mirror #1\"></a><a href=\"http://piratebaytorrents.info/9775891/The_Mentalist_S06E14_HDTV_x264-LOL.9775891.TPB.torrent\"
|
1185
|
+
class=\"download_2\" title=\"Download Mirror #2\"></a><a href=\"http://extratorrent.cc/download/3485831/The+Mentalist+S06E14+HDTV+x264-LOL+%5Beztv%5D.torrent\"
|
1186
|
+
class=\"download_3\" title=\"Download Mirror #3\"></a><a href=\"http://www.bt-chat.com/download1.php?id=187946&type=torrent\"
|
1187
|
+
class=\"download_4\" title=\"Download Mirror #4\"></a><a href=\"http://torrage.com/torrent/D9F33784FA8AB42F23DE4B81D38B2291A5C7977C.torrent\"
|
1188
|
+
class=\"download_5\" title=\"Download Mirror #5\"></a><a href=\"//zoink.it/torrent/D9F33784FA8AB42F23DE4B81D38B2291A5C7977C.torrent\"
|
1189
|
+
class=\"download_6\" title=\"Download Mirror #6\"></a>\t </td>\n\t\t\t<td
|
1190
|
+
align=\"center\" class=\"forum_thread_post\">9h 21m </td>\n\t\t\t<td align=\"center\"
|
1191
|
+
class=\"forum_thread_post_end\"><a href=\"/forum/discuss/53223/\"><img src=\"//ezimg.it/s/1/3/chat_empty.png\"
|
1192
|
+
border=\"0\" width=\"16\" height=\"16\" alt=\"Discuss\" title=\"Discuss about
|
1193
|
+
this show\" /></a></td>\n\t\t</tr>\n\t <tr name=\"hover\" class=\"forum_header_border\">\n\t\t
|
1194
|
+
\ <td width=\"35\" class=\"forum_thread_post\"><a href=\"/shows/92/family-guy/\"><img
|
1195
|
+
src=\"//ezimg.it/s/1/3/show_info.png\" border=\"0\" alt=\"Show\" title=\"Show
|
1196
|
+
Description about Family Guy\"></a><a href=\"http://www.tvrage.com/Family_Guy/episodes/1065344250\"
|
1197
|
+
target=\"_blank\" title=\"More info about Family Guy S12E13 HDTV x264-2HD
|
1198
|
+
at tvrage.com\" alt=\"More info about Family Guy S12E13 HDTV x264-2HD at tvrage.com\"><img
|
1199
|
+
src=\"//ezimg.it/s/2/1/tvrage.png\" width=\"16\" height=\"16\" border=\"0\"
|
1200
|
+
/></a></td>\n\t\t\t<td class=\"forum_thread_post\">\n\t\t\t\t<a href=\"/ep/53222/family-guy-s12e13-hdtv-x264-2hd/\"
|
1201
|
+
title=\"Family Guy S12E13 HDTV x264-2HD (74.64 MB)\" alt=\"Family Guy S12E13
|
1202
|
+
HDTV x264-2HD (74.64 MB)\" class=\"epinfo\">Family Guy S12E13 HDTV x264-2HD</a>\n\t\t\t</td>\n\t\t
|
1203
|
+
\ <td align=\"center\" class=\"forum_thread_post\"><a href=\"magnet:?xt=urn:btih:HIYSKF3M3PDQH7NLW2P5YSR4EZUIPICZ&dn=Family.Guy.S12E13.HDTV.x264-2HD&tr=udp://tracker.openbittorrent.com:80&tr=udp://tracker.publicbt.com:80&tr=udp://tracker.istole.it:80&tr=udp://open.demonii.com:80&tr=udp://tracker.coppersurfer.tk:80\"
|
1204
|
+
class=\"magnet\" title=\"Magnet Link\"></a><a href=\"http://getsecuredfiles.com/ez/dl/?file=Family.Guy.S12E13.HDTV.x264-2HD.torrent&url=http%3A%2F%2Fre.zoink.it%2Fg%2F3A3125176CDBC703FDABB69FDC4A3C266887A059\"
|
1205
|
+
target=\"_blank\" class=\"ddl\" title=\"Direct Download Link\" onclick=\"_gaq.push(['_trackEvent',
|
1206
|
+
'Sponsored', 'sponsored_index_click']);\"></a><a href=\"//re.zoink.it/3A66ff4c031\"
|
1207
|
+
class=\"download_1\" title=\"Download Mirror #1\"></a><a href=\"http://piratebaytorrents.info/9775568/Family_Guy_S12E13_HDTV_x264-2HD.9775568.TPB.torrent\"
|
1208
|
+
class=\"download_2\" title=\"Download Mirror #2\"></a><a href=\"http://extratorrent.cc/download/3485744/Family+Guy+S12E13+HDTV+x264-2HD+%5Beztv%5D.torrent\"
|
1209
|
+
class=\"download_3\" title=\"Download Mirror #3\"></a><a href=\"http://www.bt-chat.com/download1.php?id=187941&type=torrent\"
|
1210
|
+
class=\"download_4\" title=\"Download Mirror #4\"></a><a href=\"http://torrage.com/torrent/3A3125176CDBC703FDABB69FDC4A3C266887A059.torrent\"
|
1211
|
+
class=\"download_5\" title=\"Download Mirror #5\"></a><a href=\"//zoink.it/torrent/3A3125176CDBC703FDABB69FDC4A3C266887A059.torrent\"
|
1212
|
+
class=\"download_6\" title=\"Download Mirror #6\"></a>\t </td>\n\t\t\t<td
|
1213
|
+
align=\"center\" class=\"forum_thread_post\">11h 5m </td>\n\t\t\t<td align=\"center\"
|
1214
|
+
class=\"forum_thread_post_end\"><a href=\"/forum/discuss/53222/\"><img src=\"//ezimg.it/s/1/3/chat_empty.png\"
|
1215
|
+
border=\"0\" width=\"16\" height=\"16\" alt=\"Discuss\" title=\"Discuss about
|
1216
|
+
this show\" /></a></td>\n\t\t</tr>\n\t <tr name=\"hover\" class=\"forum_header_border\">\n\t\t
|
1217
|
+
\ <td width=\"35\" class=\"forum_thread_post\"><a href=\"/shows/5/the-amazing-race/\"><img
|
1218
|
+
src=\"//ezimg.it/s/1/3/show_info.png\" border=\"0\" alt=\"Show\" title=\"Show
|
1219
|
+
Description about The Amazing Race\"></a><a href=\"http://www.tvrage.com/The_Amazing_Race/episodes/1065496154\"
|
1220
|
+
target=\"_blank\" title=\"More info about The Amazing Race S24E04 HDTV x264-LOL
|
1221
|
+
at tvrage.com\" alt=\"More info about The Amazing Race S24E04 HDTV x264-LOL
|
1222
|
+
at tvrage.com\"><img src=\"//ezimg.it/s/2/1/tvrage.png\" width=\"16\" height=\"16\"
|
1223
|
+
border=\"0\" /></a></td>\n\t\t\t<td class=\"forum_thread_post\">\n\t\t\t\t<a
|
1224
|
+
href=\"/ep/53221/the-amazing-race-s24e04-hdtv-x264-lol/\" title=\"The Amazing
|
1225
|
+
Race S24E04 HDTV x264-LOL (449.68 MB)\" alt=\"The Amazing Race S24E04 HDTV
|
1226
|
+
x264-LOL (449.68 MB)\" class=\"epinfo\">The Amazing Race S24E04 HDTV x264-LOL</a>\n\t\t\t</td>\n\t\t
|
1227
|
+
\ <td align=\"center\" class=\"forum_thread_post\"><a href=\"magnet:?xt=urn:btih:2F5PEUMTFL6V7LYVPBQJ32HUT5IMIQNI&dn=The.Amazing.Race.S24E04.HDTV.x264-LOL&tr=udp://tracker.openbittorrent.com:80&tr=udp://tracker.publicbt.com:80&tr=udp://tracker.istole.it:80&tr=udp://open.demonii.com:80&tr=udp://tracker.coppersurfer.tk:80\"
|
1228
|
+
class=\"magnet\" title=\"Magnet Link\"></a><a href=\"http://getsecuredfiles.com/ez/dl/?file=The.Amazing.Race.S24E04.HDTV.x264-LOL.torrent&url=http%3A%2F%2Fre.zoink.it%2Fg%2FD17AF251932AFD5FAF1578609DE8F49F50C441A8\"
|
1229
|
+
target=\"_blank\" class=\"ddl\" title=\"Direct Download Link\" onclick=\"_gaq.push(['_trackEvent',
|
1230
|
+
'Sponsored', 'sponsored_index_click']);\"></a><a href=\"//re.zoink.it/D17857717A\"
|
1231
|
+
class=\"download_1\" title=\"Download Mirror #1\"></a><a href=\"http://piratebaytorrents.info/9775567/The_Amazing_Race_S24E04_HDTV_x264-LOL.9775567.TPB.torrent\"
|
1232
|
+
class=\"download_2\" title=\"Download Mirror #2\"></a><a href=\"http://extratorrent.cc/download/3485743/The+Amazing+Race+S24E04+HDTV+x264-LOL+%5Beztv%5D.torrent\"
|
1233
|
+
class=\"download_3\" title=\"Download Mirror #3\"></a><a href=\"http://www.bt-chat.com/download1.php?id=187940&type=torrent\"
|
1234
|
+
class=\"download_4\" title=\"Download Mirror #4\"></a><a href=\"http://torrage.com/torrent/D17AF251932AFD5FAF1578609DE8F49F50C441A8.torrent\"
|
1235
|
+
class=\"download_5\" title=\"Download Mirror #5\"></a><a href=\"//zoink.it/torrent/D17AF251932AFD5FAF1578609DE8F49F50C441A8.torrent\"
|
1236
|
+
class=\"download_6\" title=\"Download Mirror #6\"></a>\t </td>\n\t\t\t<td
|
1237
|
+
align=\"center\" class=\"forum_thread_post\">11h 5m </td>\n\t\t\t<td align=\"center\"
|
1238
|
+
class=\"forum_thread_post_end\"><a href=\"/forum/discuss/53221/\"><img src=\"//ezimg.it/s/1/3/chat_empty.png\"
|
1239
|
+
border=\"0\" width=\"16\" height=\"16\" alt=\"Discuss\" title=\"Discuss about
|
1240
|
+
this show\" /></a></td>\n\t\t</tr>\n\t <tr name=\"hover\" class=\"forum_header_border\">\n\t\t
|
1241
|
+
\ <td width=\"35\" class=\"forum_thread_post\"><a href=\"/shows/249/the-simpsons/\"><img
|
1242
|
+
src=\"//ezimg.it/s/1/3/show_info.png\" border=\"0\" alt=\"Show\" title=\"Show
|
1243
|
+
Description about The Simpsons\"></a><a href=\"http://www.tvrage.com/The_Simpsons/episodes/1065344290\"
|
1244
|
+
target=\"_blank\" title=\"More info about The Simpsons S25E14 HDTV x264-LOL
|
1245
|
+
at tvrage.com\" alt=\"More info about The Simpsons S25E14 HDTV x264-LOL at
|
1246
|
+
tvrage.com\"><img src=\"//ezimg.it/s/2/1/tvrage.png\" width=\"16\" height=\"16\"
|
1247
|
+
border=\"0\" /></a></td>\n\t\t\t<td class=\"forum_thread_post\">\n\t\t\t\t<a
|
1248
|
+
href=\"/ep/53220/the-simpsons-s25e14-hdtv-x264-lol/\" title=\"The Simpsons
|
1249
|
+
S25E14 HDTV x264-LOL (127.00 MB)\" alt=\"The Simpsons S25E14 HDTV x264-LOL
|
1250
|
+
(127.00 MB)\" class=\"epinfo\">The Simpsons S25E14 HDTV x264-LOL</a>\n\t\t\t</td>\n\t\t
|
1251
|
+
\ <td align=\"center\" class=\"forum_thread_post\"><a href=\"magnet:?xt=urn:btih:FIY54XUJBS7EPOEH6VFDAXQNRMYJDYJN&dn=The.Simpsons.S25E14.HDTV.x264-LOL&tr=udp://tracker.openbittorrent.com:80&tr=udp://tracker.publicbt.com:80&tr=udp://tracker.istole.it:80&tr=udp://open.demonii.com:80&tr=udp://tracker.coppersurfer.tk:80\"
|
1252
|
+
class=\"magnet\" title=\"Magnet Link\"></a><a href=\"http://getsecuredfiles.com/ez/dl/?file=The.Simpsons.S25E14.HDTV.x264-LOL.torrent&url=http%3A%2F%2Fre.zoink.it%2Fg%2F2A31DE5E890CBE47B887F54A305E0D8B3091E12D\"
|
1253
|
+
target=\"_blank\" class=\"ddl\" title=\"Direct Download Link\" onclick=\"_gaq.push(['_trackEvent',
|
1254
|
+
'Sponsored', 'sponsored_index_click']);\"></a><a href=\"//re.zoink.it/2A78576c31\"
|
1255
|
+
class=\"download_1\" title=\"Download Mirror #1\"></a><a href=\"http://piratebaytorrents.info/9775565/The_Simpsons_S25E14_HDTV_x264-LOL.9775565.TPB.torrent\"
|
1256
|
+
class=\"download_2\" title=\"Download Mirror #2\"></a><a href=\"http://extratorrent.cc/download/3485742/The+Simpsons+S25E14+HDTV+x264-LOL+%5Beztv%5D.torrent\"
|
1257
|
+
class=\"download_3\" title=\"Download Mirror #3\"></a><a href=\"http://www.bt-chat.com/download1.php?id=187939&type=torrent\"
|
1258
|
+
class=\"download_4\" title=\"Download Mirror #4\"></a><a href=\"http://torrage.com/torrent/2A31DE5E890CBE47B887F54A305E0D8B3091E12D.torrent\"
|
1259
|
+
class=\"download_5\" title=\"Download Mirror #5\"></a><a href=\"//zoink.it/torrent/2A31DE5E890CBE47B887F54A305E0D8B3091E12D.torrent\"
|
1260
|
+
class=\"download_6\" title=\"Download Mirror #6\"></a>\t </td>\n\t\t\t<td
|
1261
|
+
align=\"center\" class=\"forum_thread_post\">11h 6m </td>\n\t\t\t<td align=\"center\"
|
1262
|
+
class=\"forum_thread_post_end\"><a href=\"/forum/36133/the-simpsons-s25e14-hdtv-x264-lol/\"><img
|
1263
|
+
src=\"//ezimg.it/s/1/3/chat_messages.png\" border=\"0\" width=\"16\" height=\"16\"
|
1264
|
+
alt=\"3 comments\" title=\"3 forum comments\" /></a></td>\n\t\t</tr>\n\t <tr
|
1265
|
+
name=\"hover\" class=\"forum_header_border\">\n\t\t <td width=\"35\" class=\"forum_thread_post\"><a
|
1266
|
+
href=\"/shows/7/american-dad/\"><img src=\"//ezimg.it/s/1/3/show_info.png\"
|
1267
|
+
border=\"0\" alt=\"Show\" title=\"Show Description about American Dad\"></a><a
|
1268
|
+
href=\"http://www.tvrage.com/American_Dad/episodes/1065344281\" target=\"_blank\"
|
1269
|
+
title=\"More info about American Dad S09E12 HDTV x264-EXCELLENCE at tvrage.com\"
|
1270
|
+
alt=\"More info about American Dad S09E12 HDTV x264-EXCELLENCE at tvrage.com\"><img
|
1271
|
+
src=\"//ezimg.it/s/2/1/tvrage.png\" width=\"16\" height=\"16\" border=\"0\"
|
1272
|
+
/></a></td>\n\t\t\t<td class=\"forum_thread_post\">\n\t\t\t\t<a href=\"/ep/53219/american-dad-s09e12-hdtv-x264-excellence/\"
|
1273
|
+
title=\"American Dad S09E12 HDTV x264-EXCELLENCE (77.55 MB)\" alt=\"American
|
1274
|
+
Dad S09E12 HDTV x264-EXCELLENCE (77.55 MB)\" class=\"epinfo\">American Dad
|
1275
|
+
S09E12 HDTV x264-EXCELLENCE</a>\n\t\t\t</td>\n\t\t <td align=\"center\" class=\"forum_thread_post\"><a
|
1276
|
+
href=\"magnet:?xt=urn:btih:VSNH3CYUL2WLGFYI5L5IWDYJBTREOZ5B&dn=American.Dad.S09E12.HDTV.x264-EXCELLENCE&tr=udp://tracker.openbittorrent.com:80&tr=udp://tracker.publicbt.com:80&tr=udp://tracker.istole.it:80&tr=udp://open.demonii.com:80&tr=udp://tracker.coppersurfer.tk:80\"
|
1277
|
+
class=\"magnet\" title=\"Magnet Link\"></a><a href=\"http://getsecuredfiles.com/ez/dl/?file=American.Dad.S09E12.HDTV.x264-EXCELLENCE.torrent&url=http%3A%2F%2Fre.zoink.it%2Fg%2FAC9A7D8B145EACB31708EAFA8B0F090CE24767A1\"
|
1278
|
+
target=\"_blank\" class=\"ddl\" title=\"Direct Download Link\" onclick=\"_gaq.push(['_trackEvent',
|
1279
|
+
'Sponsored', 'sponsored_index_click']);\"></a><a href=\"//re.zoink.it/AC7856c39A\"
|
1280
|
+
class=\"download_1\" title=\"Download Mirror #1\"></a><a href=\"http://www.bt-chat.com/download1.php?id=187938&type=torrent\"
|
1281
|
+
class=\"download_2\" title=\"Download Mirror #2\"></a><a href=\"http://torrage.com/torrent/AC9A7D8B145EACB31708EAFA8B0F090CE24767A1.torrent\"
|
1282
|
+
class=\"download_3\" title=\"Download Mirror #3\"></a><a href=\"//zoink.it/torrent/AC9A7D8B145EACB31708EAFA8B0F090CE24767A1.torrent\"
|
1283
|
+
class=\"download_4\" title=\"Download Mirror #4\"></a>\t </td>\n\t\t\t<td
|
1284
|
+
align=\"center\" class=\"forum_thread_post\">11h 7m </td>\n\t\t\t<td align=\"center\"
|
1285
|
+
class=\"forum_thread_post_end\"><a href=\"/forum/36135/american-dad-s09e12-hdtv-x264-excellence/\"><img
|
1286
|
+
src=\"//ezimg.it/s/1/3/chat_messages.png\" border=\"0\" width=\"16\" height=\"16\"
|
1287
|
+
alt=\"2 comments\" title=\"2 forum comments\" /></a></td>\n\t\t</tr>\n\t <tr
|
1288
|
+
name=\"hover\" class=\"forum_header_border\">\n\t\t <td width=\"35\" class=\"forum_thread_post\"><a
|
1289
|
+
href=\"/shows/322/the-good-wife/\"><img src=\"//ezimg.it/s/1/3/show_info.png\"
|
1290
|
+
border=\"0\" alt=\"Show\" title=\"Show Description about The Good Wife\"></a><a
|
1291
|
+
href=\"http://www.tvrage.com/The_Good_Wife/episodes/1065499738\" target=\"_blank\"
|
1292
|
+
title=\"More info about The Good Wife S05E14 HDTV x264-LOL at tvrage.com\"
|
1293
|
+
alt=\"More info about The Good Wife S05E14 HDTV x264-LOL at tvrage.com\"><img
|
1294
|
+
src=\"//ezimg.it/s/2/1/tvrage.png\" width=\"16\" height=\"16\" border=\"0\"
|
1295
|
+
/></a></td>\n\t\t\t<td class=\"forum_thread_post\">\n\t\t\t\t<a href=\"/ep/53218/the-good-wife-s05e14-hdtv-x264-lol/\"
|
1296
|
+
title=\"The Good Wife S05E14 HDTV x264-LOL (188.14 MB)\" alt=\"The Good Wife
|
1297
|
+
S05E14 HDTV x264-LOL (188.14 MB)\" class=\"epinfo\">The Good Wife S05E14 HDTV
|
1298
|
+
x264-LOL</a>\n\t\t\t</td>\n\t\t <td align=\"center\" class=\"forum_thread_post\"><a
|
1299
|
+
href=\"magnet:?xt=urn:btih:IWZUWRLAXKMRYQX7KDCILQRM7654ETLJ&dn=The.Good.Wife.S05E14.HDTV.x264-LOL&tr=udp://tracker.openbittorrent.com:80&tr=udp://tracker.publicbt.com:80&tr=udp://tracker.istole.it:80&tr=udp://open.demonii.com:80&tr=udp://tracker.coppersurfer.tk:80\"
|
1300
|
+
class=\"magnet\" title=\"Magnet Link\"></a><a href=\"http://getsecuredfiles.com/ez/dl/?file=The.Good.Wife.S05E14.HDTV.x264-LOL.torrent&url=http%3A%2F%2Fre.zoink.it%2Fg%2F45B34B4560BA991C42FF50C485C22CFFBBC24D69\"
|
1301
|
+
target=\"_blank\" class=\"ddl\" title=\"Direct Download Link\" onclick=\"_gaq.push(['_trackEvent',
|
1302
|
+
'Sponsored', 'sponsored_index_click']);\"></a><a href=\"//re.zoink.it/45785711B3\"
|
1303
|
+
class=\"download_1\" title=\"Download Mirror #1\"></a><a href=\"http://piratebaytorrents.info/9775374/The_Good_Wife_S05E14_HDTV_x264-LOL.9775374.TPB.torrent\"
|
1304
|
+
class=\"download_2\" title=\"Download Mirror #2\"></a><a href=\"http://extratorrent.cc/download/3485706/The+Good+Wife+S05E14+HDTV+x264-LOL+%5Beztv%5D.torrent\"
|
1305
|
+
class=\"download_3\" title=\"Download Mirror #3\"></a><a href=\"http://www.bt-chat.com/download1.php?id=187935&type=torrent\"
|
1306
|
+
class=\"download_4\" title=\"Download Mirror #4\"></a><a href=\"http://torrage.com/torrent/45B34B4560BA991C42FF50C485C22CFFBBC24D69.torrent\"
|
1307
|
+
class=\"download_5\" title=\"Download Mirror #5\"></a><a href=\"//zoink.it/torrent/45B34B4560BA991C42FF50C485C22CFFBBC24D69.torrent\"
|
1308
|
+
class=\"download_6\" title=\"Download Mirror #6\"></a>\t </td>\n\t\t\t<td
|
1309
|
+
align=\"center\" class=\"forum_thread_post\">11h 32m </td>\n\t\t\t<td align=\"center\"
|
1310
|
+
class=\"forum_thread_post_end\"><a href=\"/forum/discuss/53218/\"><img src=\"//ezimg.it/s/1/3/chat_empty.png\"
|
1311
|
+
border=\"0\" width=\"16\" height=\"16\" alt=\"Discuss\" title=\"Discuss about
|
1312
|
+
this show\" /></a></td>\n\t\t</tr>\n\t <tr name=\"hover\" class=\"forum_header_border\">\n\t\t
|
1313
|
+
\ <td width=\"35\" class=\"forum_thread_post\"><a href=\"/shows/429/bobs-burgers/\"><img
|
1314
|
+
src=\"//ezimg.it/s/1/3/show_info.png\" border=\"0\" alt=\"Show\" title=\"Show
|
1315
|
+
Description about Bob's Burgers\"></a><a href=\"http://www.tvrage.com/Bobs_Burgers/episodes/1065341993\"
|
1316
|
+
target=\"_blank\" title=\"More info about Bobs Burgers S04E13 HDTV x264-EXCELLENCE
|
1317
|
+
at tvrage.com\" alt=\"More info about Bobs Burgers S04E13 HDTV x264-EXCELLENCE
|
1318
|
+
at tvrage.com\"><img src=\"//ezimg.it/s/2/1/tvrage.png\" width=\"16\" height=\"16\"
|
1319
|
+
border=\"0\" /></a></td>\n\t\t\t<td class=\"forum_thread_post\">\n\t\t\t\t<a
|
1320
|
+
href=\"/ep/53217/bobs-burgers-s04e13-hdtv-x264-excellence/\" title=\"Bobs
|
1321
|
+
Burgers S04E13 HDTV x264-EXCELLENCE (88.92 MB)\" alt=\"Bobs Burgers S04E13
|
1322
|
+
HDTV x264-EXCELLENCE (88.92 MB)\" class=\"epinfo\">Bobs Burgers S04E13 HDTV
|
1323
|
+
x264-EXCELLENCE</a>\n\t\t\t</td>\n\t\t <td align=\"center\" class=\"forum_thread_post\"><a
|
1324
|
+
href=\"magnet:?xt=urn:btih:QGNRFPOWUUJVSSZ4P3KC6LCJVUH5LOIN&dn=Bobs.Burgers.S04E13.HDTV.x264-EXCELLENCE&tr=udp://tracker.openbittorrent.com:80&tr=udp://tracker.publicbt.com:80&tr=udp://tracker.istole.it:80&tr=udp://open.demonii.com:80&tr=udp://tracker.coppersurfer.tk:80\"
|
1325
|
+
class=\"magnet\" title=\"Magnet Link\"></a><a href=\"http://getsecuredfiles.com/ez/dl/?file=Bobs.Burgers.S04E13.HDTV.x264-EXCELLENCE.torrent&url=http%3A%2F%2Fre.zoink.it%2Fg%2F819B12BDD6A513594B3C7ED42F2C49AD0FD5B90D\"
|
1326
|
+
target=\"_blank\" class=\"ddl\" title=\"Direct Download Link\" onclick=\"_gaq.push(['_trackEvent',
|
1327
|
+
'Sponsored', 'sponsored_index_click']);\"></a><a href=\"//re.zoink.it/8178565a9B\"
|
1328
|
+
class=\"download_1\" title=\"Download Mirror #1\"></a><a href=\"http://extratorrent.cc/download/3485701/Bobs+Burgers+S04E13+HDTV+x264-EXCELLENCE+%5Beztv%5D.torrent\"
|
1329
|
+
class=\"download_2\" title=\"Download Mirror #2\"></a><a href=\"http://www.bt-chat.com/download1.php?id=187934&type=torrent\"
|
1330
|
+
class=\"download_3\" title=\"Download Mirror #3\"></a><a href=\"http://torrage.com/torrent/819B12BDD6A513594B3C7ED42F2C49AD0FD5B90D.torrent\"
|
1331
|
+
class=\"download_4\" title=\"Download Mirror #4\"></a><a href=\"//zoink.it/torrent/819B12BDD6A513594B3C7ED42F2C49AD0FD5B90D.torrent\"
|
1332
|
+
class=\"download_5\" title=\"Download Mirror #5\"></a>\t </td>\n\t\t\t<td
|
1333
|
+
align=\"center\" class=\"forum_thread_post\">11h 41m </td>\n\t\t\t<td align=\"center\"
|
1334
|
+
class=\"forum_thread_post_end\"><a href=\"/forum/discuss/53217/\"><img src=\"//ezimg.it/s/1/3/chat_empty.png\"
|
1335
|
+
border=\"0\" width=\"16\" height=\"16\" alt=\"Discuss\" title=\"Discuss about
|
1336
|
+
this show\" /></a></td>\n\t\t</tr>\n\t <tr name=\"hover\" class=\"forum_header_border\">\n\t\t
|
1337
|
+
\ <td width=\"35\" class=\"forum_thread_post\"><a href=\"/shows/548/once-upon-a-time/\"><img
|
1338
|
+
src=\"//ezimg.it/s/1/3/show_info.png\" border=\"0\" alt=\"Show\" title=\"Show
|
1339
|
+
Description about Once Upon A Time\"></a><a href=\"http://www.tvrage.com/Once_Upon_a_Time/episodes/1065449148\"
|
1340
|
+
target=\"_blank\" title=\"More info about Once Upon a Time S03E13 720p HDTV
|
1341
|
+
X264-DIMENSION at tvrage.com\" alt=\"More info about Once Upon a Time S03E13
|
1342
|
+
720p HDTV X264-DIMENSION at tvrage.com\"><img src=\"//ezimg.it/s/2/1/tvrage.png\"
|
1343
|
+
width=\"16\" height=\"16\" border=\"0\" /></a></td>\n\t\t\t<td class=\"forum_thread_post\">\n\t\t\t\t<a
|
1344
|
+
href=\"/ep/53216/once-upon-a-time-s03e13-720p-hdtv-x264-dimension/\" title=\"Once
|
1345
|
+
Upon a Time S03E13 720p HDTV X264-DIMENSION (889.24 MB)\" alt=\"Once Upon
|
1346
|
+
a Time S03E13 720p HDTV X264-DIMENSION (889.24 MB)\" class=\"epinfo\">Once
|
1347
|
+
Upon a Time S03E13 720p HDTV X264-DIMENSION</a>\n\t\t\t</td>\n\t\t <td align=\"center\"
|
1348
|
+
class=\"forum_thread_post\"><a href=\"magnet:?xt=urn:btih:R654USLP42IQLZI2LD35LSU275AJNW3H&dn=Once.Upon.a.Time.S03E13.720p.HDTV.X264-DIMENSION&tr=udp://tracker.openbittorrent.com:80&tr=udp://tracker.publicbt.com:80&tr=udp://tracker.istole.it:80&tr=udp://open.demonii.com:80&tr=udp://tracker.coppersurfer.tk:80\"
|
1349
|
+
class=\"magnet\" title=\"Magnet Link\"></a><a href=\"http://getsecuredfiles.com/ez/dl/?file=Once.Upon.a.Time.S03E13.720p.HDTV.X264-DIMENSION.torrent&url=http%3A%2F%2Fre.zoink.it%2Fg%2F8FBBCA496FE69105E51A58F7D5CA9AFF4096DB67\"
|
1350
|
+
target=\"_blank\" class=\"ddl\" title=\"Direct Download Link\" onclick=\"_gaq.push(['_trackEvent',
|
1351
|
+
'Sponsored', 'sponsored_index_click']);\"></a><a href=\"http://piratebaytorrents.info/9775350/Once_Upon_a_Time_S03E13_720p_HDTV_X264-DIMENSION.9775350.TPB.torrent\"
|
1352
|
+
class=\"download_1\" title=\"Download Mirror #1\"></a><a href=\"http://extratorrent.cc/download/3485699/Once+Upon+a+Time+S03E13+720p+HDTV+X264-DIMENSION+%5Beztv%5D.torrent\"
|
1353
|
+
class=\"download_2\" title=\"Download Mirror #2\"></a><a href=\"http://www.bt-chat.com/download1.php?id=187933&type=torrent\"
|
1354
|
+
class=\"download_3\" title=\"Download Mirror #3\"></a><a href=\"http://torrage.com/torrent/8FBBCA496FE69105E51A58F7D5CA9AFF4096DB67.torrent\"
|
1355
|
+
class=\"download_4\" title=\"Download Mirror #4\"></a><a href=\"//zoink.it/torrent/8FBBCA496FE69105E51A58F7D5CA9AFF4096DB67.torrent\"
|
1356
|
+
class=\"download_5\" title=\"Download Mirror #5\"></a>\t </td>\n\t\t\t<td
|
1357
|
+
align=\"center\" class=\"forum_thread_post\">11h 44m </td>\n\t\t\t<td align=\"center\"
|
1358
|
+
class=\"forum_thread_post_end\"><a href=\"/forum/discuss/53216/\"><img src=\"//ezimg.it/s/1/3/chat_empty.png\"
|
1359
|
+
border=\"0\" width=\"16\" height=\"16\" alt=\"Discuss\" title=\"Discuss about
|
1360
|
+
this show\" /></a></td>\n\t\t</tr>\n\t <tr name=\"hover\" class=\"forum_header_border\">\n\t\t
|
1361
|
+
\ <td width=\"35\" class=\"forum_thread_post\"><a href=\"/shows/548/once-upon-a-time/\"><img
|
1362
|
+
src=\"//ezimg.it/s/1/3/show_info.png\" border=\"0\" alt=\"Show\" title=\"Show
|
1363
|
+
Description about Once Upon A Time\"></a><a href=\"http://www.tvrage.com/Once_Upon_a_Time/episodes/1065449148\"
|
1364
|
+
target=\"_blank\" title=\"More info about Once Upon a Time S03E13 HDTV x264-LOL
|
1365
|
+
at tvrage.com\" alt=\"More info about Once Upon a Time S03E13 HDTV x264-LOL
|
1366
|
+
at tvrage.com\"><img src=\"//ezimg.it/s/2/1/tvrage.png\" width=\"16\" height=\"16\"
|
1367
|
+
border=\"0\" /></a></td>\n\t\t\t<td class=\"forum_thread_post\">\n\t\t\t\t<a
|
1368
|
+
href=\"/ep/53215/once-upon-a-time-s03e13-hdtv-x264-lol/\" title=\"Once Upon
|
1369
|
+
a Time S03E13 HDTV x264-LOL (277.16 MB)\" alt=\"Once Upon a Time S03E13 HDTV
|
1370
|
+
x264-LOL (277.16 MB)\" class=\"epinfo\">Once Upon a Time S03E13 HDTV x264-LOL</a>\n\t\t\t</td>\n\t\t
|
1371
|
+
\ <td align=\"center\" class=\"forum_thread_post\"><a href=\"magnet:?xt=urn:btih:AE3IIIFKGOO7WWW6FRQRWI6RZJRFNHAC&dn=Once.Upon.a.Time.S03E13.HDTV.x264-LOL&tr=udp://tracker.openbittorrent.com:80&tr=udp://tracker.publicbt.com:80&tr=udp://tracker.istole.it:80&tr=udp://open.demonii.com:80&tr=udp://tracker.coppersurfer.tk:80\"
|
1372
|
+
class=\"magnet\" title=\"Magnet Link\"></a><a href=\"http://getsecuredfiles.com/ez/dl/?file=Once.Upon.a.Time.S03E13.HDTV.x264-LOL.torrent&url=http%3A%2F%2Fre.zoink.it%2Fg%2F01368420AA339DFB5ADE2C611B23D1CA62569C02\"
|
1373
|
+
target=\"_blank\" class=\"ddl\" title=\"Direct Download Link\" onclick=\"_gaq.push(['_trackEvent',
|
1374
|
+
'Sponsored', 'sponsored_index_click']);\"></a><a href=\"//re.zoink.it/017856d236\"
|
1375
|
+
class=\"download_1\" title=\"Download Mirror #1\"></a><a href=\"http://piratebaytorrents.info/9775349/Once_Upon_a_Time_S03E13_HDTV_x264-LOL.9775349.TPB.torrent\"
|
1376
|
+
class=\"download_2\" title=\"Download Mirror #2\"></a><a href=\"http://extratorrent.cc/download/3485698/Once+Upon+a+Time+S03E13+HDTV+x264-LOL+%5Beztv%5D.torrent\"
|
1377
|
+
class=\"download_3\" title=\"Download Mirror #3\"></a><a href=\"http://www.bt-chat.com/download1.php?id=187932&type=torrent\"
|
1378
|
+
class=\"download_4\" title=\"Download Mirror #4\"></a><a href=\"http://torrage.com/torrent/01368420AA339DFB5ADE2C611B23D1CA62569C02.torrent\"
|
1379
|
+
class=\"download_5\" title=\"Download Mirror #5\"></a><a href=\"//zoink.it/torrent/01368420AA339DFB5ADE2C611B23D1CA62569C02.torrent\"
|
1380
|
+
class=\"download_6\" title=\"Download Mirror #6\"></a>\t </td>\n\t\t\t<td
|
1381
|
+
align=\"center\" class=\"forum_thread_post\">11h 45m </td>\n\t\t\t<td align=\"center\"
|
1382
|
+
class=\"forum_thread_post_end\"><a href=\"/forum/discuss/53215/\"><img src=\"//ezimg.it/s/1/3/chat_empty.png\"
|
1383
|
+
border=\"0\" width=\"16\" height=\"16\" alt=\"Discuss\" title=\"Discuss about
|
1384
|
+
this show\" /></a></td>\n\t\t</tr>\n\t <tr name=\"hover\" class=\"forum_header_border\">\n\t\t
|
1385
|
+
\ <td width=\"35\" class=\"forum_thread_post\"><a href=\"/shows/187/mv-group-documentaries/\"><img
|
1386
|
+
src=\"//ezimg.it/s/1/3/show_info.png\" border=\"0\" alt=\"Show\" title=\"Show
|
1387
|
+
Description about MV Group Documentaries\"></a> </td>\n\t\t\t<td class=\"forum_thread_post\">\n\t\t\t\t<a
|
1388
|
+
href=\"/ep/53214/live-from-space-x264-hdtv-mvgroup/\" title=\"Live from Space
|
1389
|
+
x264 HDTV-MVGroup (1.63 GB)\" alt=\"Live from Space x264 HDTV-MVGroup (1.63
|
1390
|
+
GB)\" class=\"epinfo\">Live from Space x264 HDTV-MVGroup</a>\n\t\t\t</td>\n\t\t
|
1391
|
+
\ <td align=\"center\" class=\"forum_thread_post\"><a href=\"magnet:?xt=urn:btih:LNE3DJ2LJYGJW65ACNCH2QDFIGXAVYON&dn=Live.from.Space.x264.HDTV-MVGroup&tr=http://www.mvgroup.org:2710/announce&tr=udp://tracker.openbittorrent.com:80&tr=udp://tracker.publicbt.com:80&tr=udp://tracker.istole.it:80&tr=udp://open.demonii.com:80&tr=udp://tracker.coppersurfer.tk:80\"
|
1392
|
+
class=\"magnet\" title=\"Magnet Link\"></a><a href=\"http://getsecuredfiles.com/ez/dl/?file=Live.from.Space.x264.HDTV-MVGroup.torrent&url=http%3A%2F%2Fre.zoink.it%2Fg%2F5B49B1A74B4E0C9B7BA013447D406541AE0AE1CD\"
|
1393
|
+
target=\"_blank\" class=\"ddl\" title=\"Direct Download Link\" onclick=\"_gaq.push(['_trackEvent',
|
1394
|
+
'Sponsored', 'sponsored_index_click']);\"></a><a href=\"http://forums.mvgroup.org/tracker/get.php?id=W0mxp0tODJt7oBNEfUBlQa4K4c0%3D\"
|
1395
|
+
class=\"download_1\" title=\"Download Mirror #1\"></a><a href=\"http://torrage.com/torrent/5B49B1A74B4E0C9B7BA013447D406541AE0AE1CD.torrent\"
|
1396
|
+
class=\"download_2\" title=\"Download Mirror #2\"></a><a href=\"//zoink.it/torrent/5B49B1A74B4E0C9B7BA013447D406541AE0AE1CD.torrent\"
|
1397
|
+
class=\"download_3\" title=\"Download Mirror #3\"></a><a href=\"http://extratorrent.cc/download/3485571/Live+from+Space+x264+HDTV+%5BMVGroup+org%5D.torrent\"
|
1398
|
+
class=\"download_4\" title=\"Download Mirror #4\"></a>\t </td>\n\t\t\t<td
|
1399
|
+
align=\"center\" class=\"forum_thread_post\">14h 55m </td>\n\t\t\t<td align=\"center\"
|
1400
|
+
class=\"forum_thread_post_end\"><a href=\"/forum/36130/live-from-space-x264-hdtv/\"><img
|
1401
|
+
src=\"//ezimg.it/s/1/3/chat_messages.png\" border=\"0\" width=\"16\" height=\"16\"
|
1402
|
+
alt=\"3 comments\" title=\"3 forum comments\" /></a></td>\n\t\t</tr>\n\t <tr
|
1403
|
+
name=\"hover\" class=\"forum_header_border\">\n\t\t <td width=\"35\" class=\"forum_thread_post\"><a
|
1404
|
+
href=\"/shows/275/top-gear/\"><img src=\"//ezimg.it/s/1/3/show_info.png\"
|
1405
|
+
border=\"0\" alt=\"Show\" title=\"Show Description about Top Gear\"></a><a
|
1406
|
+
href=\"http://www.tvrage.com/Top_Gear/episodes/1065478418\" target=\"_blank\"
|
1407
|
+
title=\"More info about Top Gear S21E07 720p HDTV x264-FTP at tvrage.com\"
|
1408
|
+
alt=\"More info about Top Gear S21E07 720p HDTV x264-FTP at tvrage.com\"><img
|
1409
|
+
src=\"//ezimg.it/s/2/1/tvrage.png\" width=\"16\" height=\"16\" border=\"0\"
|
1410
|
+
/></a></td>\n\t\t\t<td class=\"forum_thread_post\">\n\t\t\t\t<a href=\"/ep/53213/top-gear-s21e07-720p-hdtv-x264-ftp/\"
|
1411
|
+
title=\"Top Gear S21E07 720p HDTV x264-FTP (2.00 GB)\" alt=\"Top Gear S21E07
|
1412
|
+
720p HDTV x264-FTP (2.00 GB)\" class=\"epinfo\">Top Gear S21E07 720p HDTV
|
1413
|
+
x264-FTP</a>\n\t\t\t</td>\n\t\t <td align=\"center\" class=\"forum_thread_post\"><a
|
1414
|
+
href=\"magnet:?xt=urn:btih:SNIHFSII6OASA6F43FOAEJLX745OGIVI&dn=Top.Gear.S21E07.720p.HDTV.x264-FTP&tr=udp://tracker.openbittorrent.com:80&tr=udp://tracker.publicbt.com:80&tr=udp://tracker.istole.it:80&tr=udp://open.demonii.com:80&tr=udp://tracker.coppersurfer.tk:80\"
|
1415
|
+
class=\"magnet\" title=\"Magnet Link\"></a><a href=\"http://getsecuredfiles.com/ez/dl/?file=Top.Gear.S21E07.720p.HDTV.x264-FTP.torrent&url=http%3A%2F%2Fre.zoink.it%2Fg%2F935072C908F3812078BCD95C022577FF3AE322A8\"
|
1416
|
+
target=\"_blank\" class=\"ddl\" title=\"Direct Download Link\" onclick=\"_gaq.push(['_trackEvent',
|
1417
|
+
'Sponsored', 'sponsored_index_click']);\"></a><a href=\"//re.zoink.it/9378538850\"
|
1418
|
+
class=\"download_1\" title=\"Download Mirror #1\"></a><a href=\"http://piratebaytorrents.info/9774669/Top_Gear_S21E07_720p_HDTV_x264-FTP.9774669.TPB.torrent\"
|
1419
|
+
class=\"download_2\" title=\"Download Mirror #2\"></a><a href=\"http://extratorrent.cc/download/3485535/Top+Gear+S21E07+720p+HDTV+x264-FTP+%5Beztv%5D.torrent\"
|
1420
|
+
class=\"download_3\" title=\"Download Mirror #3\"></a><a href=\"http://www.bt-chat.com/download1.php?id=187918&type=torrent\"
|
1421
|
+
class=\"download_4\" title=\"Download Mirror #4\"></a><a href=\"http://torrage.com/torrent/935072C908F3812078BCD95C022577FF3AE322A8.torrent\"
|
1422
|
+
class=\"download_5\" title=\"Download Mirror #5\"></a><a href=\"//zoink.it/torrent/935072C908F3812078BCD95C022577FF3AE322A8.torrent\"
|
1423
|
+
class=\"download_6\" title=\"Download Mirror #6\"></a>\t </td>\n\t\t\t<td
|
1424
|
+
align=\"center\" class=\"forum_thread_post\">15h 35m </td>\n\t\t\t<td align=\"center\"
|
1425
|
+
class=\"forum_thread_post_end\"><a href=\"/forum/discuss/53213/\"><img src=\"//ezimg.it/s/1/3/chat_empty.png\"
|
1426
|
+
border=\"0\" width=\"16\" height=\"16\" alt=\"Discuss\" title=\"Discuss about
|
1427
|
+
this show\" /></a></td>\n\t\t</tr>\n\t <tr name=\"hover\" class=\"forum_header_border\">\n\t\t
|
1428
|
+
\ <td width=\"35\" class=\"forum_thread_post\"><a href=\"/shows/801/blandings/\"><img
|
1429
|
+
src=\"//ezimg.it/s/1/3/show_info.png\" border=\"0\" alt=\"Show\" title=\"Show
|
1430
|
+
Description about Blandings\"></a><a href=\"http://www.tvrage.com/shows/id-33853/episodes/1065503229\"
|
1431
|
+
target=\"_blank\" title=\"More info about Blandings S02E05 HDTV x264-TLA at
|
1432
|
+
tvrage.com\" alt=\"More info about Blandings S02E05 HDTV x264-TLA at tvrage.com\"><img
|
1433
|
+
src=\"//ezimg.it/s/2/1/tvrage.png\" width=\"16\" height=\"16\" border=\"0\"
|
1434
|
+
/></a></td>\n\t\t\t<td class=\"forum_thread_post\">\n\t\t\t\t<a href=\"/ep/53212/blandings-s02e05-hdtv-x264-tla/\"
|
1435
|
+
title=\"Blandings S02E05 HDTV x264-TLA (199.29 MB)\" alt=\"Blandings S02E05
|
1436
|
+
HDTV x264-TLA (199.29 MB)\" class=\"epinfo\">Blandings S02E05 HDTV x264-TLA</a>\n\t\t\t</td>\n\t\t
|
1437
|
+
\ <td align=\"center\" class=\"forum_thread_post\"><a href=\"magnet:?xt=urn:btih:6MPJTJ5LSS6NL6KPZXNUT5D64LTHW5MB&dn=Blandings.S02E05.HDTV.x264-TLA&tr=udp://tracker.openbittorrent.com:80&tr=udp://tracker.publicbt.com:80&tr=udp://tracker.istole.it:80&tr=udp://open.demonii.com:80&tr=udp://tracker.coppersurfer.tk:80\"
|
1438
|
+
class=\"magnet\" title=\"Magnet Link\"></a><a href=\"http://getsecuredfiles.com/ez/dl/?file=Blandings.S02E05.HDTV.x264-TLA.torrent&url=http%3A%2F%2Fre.zoink.it%2Fg%2FF31E99A7AB94BCD5F94FCDDB49F47EE2E67B7581\"
|
1439
|
+
target=\"_blank\" class=\"ddl\" title=\"Direct Download Link\" onclick=\"_gaq.push(['_trackEvent',
|
1440
|
+
'Sponsored', 'sponsored_index_click']);\"></a><a href=\"//re.zoink.it/F37853411E\"
|
1441
|
+
class=\"download_1\" title=\"Download Mirror #1\"></a><a href=\"http://piratebaytorrents.info/9774653/Blandings_S02E05_HDTV_x264-TLA.9774653.TPB.torrent\"
|
1442
|
+
class=\"download_2\" title=\"Download Mirror #2\"></a><a href=\"http://extratorrent.cc/download/3485517/Blandings+S02E05+HDTV+x264-TLA+%5Beztv%5D.torrent\"
|
1443
|
+
class=\"download_3\" title=\"Download Mirror #3\"></a><a href=\"http://www.bt-chat.com/download1.php?id=187917&type=torrent\"
|
1444
|
+
class=\"download_4\" title=\"Download Mirror #4\"></a><a href=\"http://torrage.com/torrent/F31E99A7AB94BCD5F94FCDDB49F47EE2E67B7581.torrent\"
|
1445
|
+
class=\"download_5\" title=\"Download Mirror #5\"></a><a href=\"//zoink.it/torrent/F31E99A7AB94BCD5F94FCDDB49F47EE2E67B7581.torrent\"
|
1446
|
+
class=\"download_6\" title=\"Download Mirror #6\"></a>\t </td>\n\t\t\t<td
|
1447
|
+
align=\"center\" class=\"forum_thread_post\">15h 48m </td>\n\t\t\t<td align=\"center\"
|
1448
|
+
class=\"forum_thread_post_end\"><a href=\"/forum/discuss/53212/\"><img src=\"//ezimg.it/s/1/3/chat_empty.png\"
|
1449
|
+
border=\"0\" width=\"16\" height=\"16\" alt=\"Discuss\" title=\"Discuss about
|
1450
|
+
this show\" /></a></td>\n\t\t</tr>\n\t <tr name=\"hover\" class=\"forum_header_border\">\n\t\t
|
1451
|
+
\ <td width=\"35\" class=\"forum_thread_post\"><a href=\"/shows/275/top-gear/\"><img
|
1452
|
+
src=\"//ezimg.it/s/1/3/show_info.png\" border=\"0\" alt=\"Show\" title=\"Show
|
1453
|
+
Description about Top Gear\"></a><a href=\"http://www.tvrage.com/Top_Gear/episodes/1065478418\"
|
1454
|
+
target=\"_blank\" title=\"More info about Top Gear 21x07 HDTV x264-FoV at
|
1455
|
+
tvrage.com\" alt=\"More info about Top Gear 21x07 HDTV x264-FoV at tvrage.com\"><img
|
1456
|
+
src=\"//ezimg.it/s/2/1/tvrage.png\" width=\"16\" height=\"16\" border=\"0\"
|
1457
|
+
/></a></td>\n\t\t\t<td class=\"forum_thread_post\">\n\t\t\t\t<a href=\"/ep/53211/top-gear-21x07-hdtv-x264-fov/\"
|
1458
|
+
title=\"Top Gear 21x07 HDTV x264-FoV (724.38 MB)\" alt=\"Top Gear 21x07 HDTV
|
1459
|
+
x264-FoV (724.38 MB)\" class=\"epinfo\">Top Gear 21x07 HDTV x264-FoV</a>\n\t\t\t</td>\n\t\t
|
1460
|
+
\ <td align=\"center\" class=\"forum_thread_post\"><a href=\"magnet:?xt=urn:btih:NTCDEZNNR6GFH55AEDPK45QBZZXPRLZX&dn=Top.Gear.21x07.HDTV.x264-FoV&tr=udp://tracker.openbittorrent.com:80&tr=udp://tracker.publicbt.com:80&tr=udp://tracker.istole.it:80&tr=udp://open.demonii.com:80&tr=udp://tracker.coppersurfer.tk:80\"
|
1461
|
+
class=\"magnet\" title=\"Magnet Link\"></a><a href=\"http://getsecuredfiles.com/ez/dl/?file=Top.Gear.21x07.HDTV.x264-FoV.torrent&url=http%3A%2F%2Fre.zoink.it%2Fg%2F6CC43265AD8F8C53F7A020DEAE7601CE6EF8AF37\"
|
1462
|
+
target=\"_blank\" class=\"ddl\" title=\"Direct Download Link\" onclick=\"_gaq.push(['_trackEvent',
|
1463
|
+
'Sponsored', 'sponsored_index_click']);\"></a><a href=\"//re.zoink.it/6C78532dC4\"
|
1464
|
+
class=\"download_1\" title=\"Download Mirror #1\"></a><a href=\"http://piratebaytorrents.info/9774609/Top_Gear_21x07_HDTV_x264-FoV.9774609.TPB.torrent\"
|
1465
|
+
class=\"download_2\" title=\"Download Mirror #2\"></a><a href=\"http://extratorrent.cc/download/3485507/Top+Gear+21x07+HDTV+x264-FoV+%5Beztv%5D.torrent\"
|
1466
|
+
class=\"download_3\" title=\"Download Mirror #3\"></a><a href=\"http://www.bt-chat.com/download1.php?id=187916&type=torrent\"
|
1467
|
+
class=\"download_4\" title=\"Download Mirror #4\"></a><a href=\"http://torrage.com/torrent/6CC43265AD8F8C53F7A020DEAE7601CE6EF8AF37.torrent\"
|
1468
|
+
class=\"download_5\" title=\"Download Mirror #5\"></a><a href=\"//zoink.it/torrent/6CC43265AD8F8C53F7A020DEAE7601CE6EF8AF37.torrent\"
|
1469
|
+
class=\"download_6\" title=\"Download Mirror #6\"></a>\t </td>\n\t\t\t<td
|
1470
|
+
align=\"center\" class=\"forum_thread_post\">15h 53m </td>\n\t\t\t<td align=\"center\"
|
1471
|
+
class=\"forum_thread_post_end\"><a href=\"/forum/36131/top-gear-21x07-hdtv-x264-fov/\"><img
|
1472
|
+
src=\"//ezimg.it/s/1/3/chat_messages.png\" border=\"0\" width=\"16\" height=\"16\"
|
1473
|
+
alt=\"7 comments\" title=\"7 forum comments\" /></a></td>\n\t\t</tr>\n\t <tr
|
1474
|
+
name=\"hover\" class=\"forum_header_border\">\n\t\t <td width=\"35\" class=\"forum_thread_post\"><a
|
1475
|
+
href=\"/shows/779/adventure-time-with-finn-and-jake/\"><img src=\"//ezimg.it/s/1/3/show_info.png\"
|
1476
|
+
border=\"0\" alt=\"Show\" title=\"Show Description about Adventure Time with
|
1477
|
+
Finn and Jake\"></a><a href=\"http://www.tvrage.com/Adventure_Time/episodes/1065478558\"
|
1478
|
+
target=\"_blank\" title=\"More info about Adventure Time S05E48 PROPER HDTV
|
1479
|
+
x264-W4F at tvrage.com\" alt=\"More info about Adventure Time S05E48 PROPER
|
1480
|
+
HDTV x264-W4F at tvrage.com\"><img src=\"//ezimg.it/s/2/1/tvrage.png\" width=\"16\"
|
1481
|
+
height=\"16\" border=\"0\" /></a></td>\n\t\t\t<td class=\"forum_thread_post\">\n\t\t\t\t<a
|
1482
|
+
href=\"/ep/53210/adventure-time-s05e48-proper-hdtv-x264-w4f/\" title=\"Adventure
|
1483
|
+
Time S05E48 PROPER HDTV x264-W4F (56.49 MB)\" alt=\"Adventure Time S05E48
|
1484
|
+
PROPER HDTV x264-W4F (56.49 MB)\" class=\"epinfo\">Adventure Time S05E48 PROPER
|
1485
|
+
HDTV x264-W4F</a>\n\t\t\t</td>\n\t\t <td align=\"center\" class=\"forum_thread_post\"><a
|
1486
|
+
href=\"magnet:?xt=urn:btih:U3T6HTKACGRQW7BDHD7MA6CSHLIGNS5E&dn=Adventure.Time.S05E48.PROPER.HDTV.x264-W4F&tr=udp://tracker.openbittorrent.com:80&tr=udp://tracker.publicbt.com:80&tr=udp://tracker.istole.it:80&tr=udp://open.demonii.com:80&tr=udp://tracker.coppersurfer.tk:80\"
|
1487
|
+
class=\"magnet\" title=\"Magnet Link\"></a><a href=\"http://getsecuredfiles.com/ez/dl/?file=Adventure.Time.S05E48.PROPER.HDTV.x264-W4F.torrent&url=http%3A%2F%2Fre.zoink.it%2Fg%2FA6E7E3CD4011A30B7C2338FEC078523AD066CBA4\"
|
1488
|
+
target=\"_blank\" class=\"ddl\" title=\"Direct Download Link\" onclick=\"_gaq.push(['_trackEvent',
|
1489
|
+
'Sponsored', 'sponsored_index_click']);\"></a><a href=\"//re.zoink.it/A673ea874E7\"
|
1490
|
+
class=\"download_1\" title=\"Download Mirror #1\"></a><a href=\"http://piratebaytorrents.info/9774573/Adventure_Time_S05E48_PROPER_HDTV_x264-W4F.9774573.TPB.torrent\"
|
1491
|
+
class=\"download_2\" title=\"Download Mirror #2\"></a><a href=\"http://extratorrent.cc/download/3485501/Adventure+Time+S05E48+PROPER+HDTV+x264-W4F+%5Beztv%5D.torrent\"
|
1492
|
+
class=\"download_3\" title=\"Download Mirror #3\"></a><a href=\"http://www.bt-chat.com/download1.php?id=187914&type=torrent\"
|
1493
|
+
class=\"download_4\" title=\"Download Mirror #4\"></a><a href=\"http://torrage.com/torrent/A6E7E3CD4011A30B7C2338FEC078523AD066CBA4.torrent\"
|
1494
|
+
class=\"download_5\" title=\"Download Mirror #5\"></a><a href=\"//zoink.it/torrent/A6E7E3CD4011A30B7C2338FEC078523AD066CBA4.torrent\"
|
1495
|
+
class=\"download_6\" title=\"Download Mirror #6\"></a>\t </td>\n\t\t\t<td
|
1496
|
+
align=\"center\" class=\"forum_thread_post\">15h 57m </td>\n\t\t\t<td align=\"center\"
|
1497
|
+
class=\"forum_thread_post_end\"><a href=\"/forum/discuss/53210/\"><img src=\"//ezimg.it/s/1/3/chat_empty.png\"
|
1498
|
+
border=\"0\" width=\"16\" height=\"16\" alt=\"Discuss\" title=\"Discuss about
|
1499
|
+
this show\" /></a></td>\n\t\t</tr>\n\t <tr name=\"hover\" class=\"forum_header_border\">\n\t\t
|
1500
|
+
\ <td width=\"35\" class=\"forum_thread_post\"><a href=\"/shows/962/black-sails/\"><img
|
1501
|
+
src=\"//ezimg.it/s/1/3/show_info.png\" border=\"0\" alt=\"Show\" title=\"Show
|
1502
|
+
Description about Black Sails\"></a><a href=\"http://www.tvrage.com/shows/id-32725/episodes/1065462108\"
|
1503
|
+
target=\"_blank\" title=\"More info about Black Sails S01E08 720p HDTV x264-2HD
|
1504
|
+
at tvrage.com\" alt=\"More info about Black Sails S01E08 720p HDTV x264-2HD
|
1505
|
+
at tvrage.com\"><img src=\"//ezimg.it/s/2/1/tvrage.png\" width=\"16\" height=\"16\"
|
1506
|
+
border=\"0\" /></a></td>\n\t\t\t<td class=\"forum_thread_post\">\n\t\t\t\t<a
|
1507
|
+
href=\"/ep/53209/black-sails-s01e08-720p-hdtv-x264-2hd/\" title=\"Black Sails
|
1508
|
+
S01E08 720p HDTV x264-2HD (1.56 GB)\" alt=\"Black Sails S01E08 720p HDTV x264-2HD
|
1509
|
+
(1.56 GB)\" class=\"epinfo\">Black Sails S01E08 720p HDTV x264-2HD</a>\n\t\t\t</td>\n\t\t
|
1510
|
+
\ <td align=\"center\" class=\"forum_thread_post\"><a href=\"magnet:?xt=urn:btih:3RAXLHOYOGD6OX3TFELUL6HNUTXJJ7PZ&dn=Black.Sails.S01E08.720p.HDTV.x264-2HD&tr=udp://tracker.openbittorrent.com:80&tr=udp://tracker.publicbt.com:80&tr=udp://tracker.istole.it:80&tr=udp://open.demonii.com:80&tr=udp://tracker.coppersurfer.tk:80\"
|
1511
|
+
class=\"magnet\" title=\"Magnet Link\"></a><a href=\"http://getsecuredfiles.com/ez/dl/?file=Black.Sails.S01E08.720p.HDTV.x264-2HD.torrent&url=http%3A%2F%2Fre.zoink.it%2Fg%2FDC41759DD87187E75F73291745F8EDA4EE94FDF9\"
|
1512
|
+
target=\"_blank\" class=\"ddl\" title=\"Direct Download Link\" onclick=\"_gaq.push(['_trackEvent',
|
1513
|
+
'Sponsored', 'sponsored_index_click']);\"></a><a href=\"//re.zoink.it/DC78532541\"
|
1514
|
+
class=\"download_1\" title=\"Download Mirror #1\"></a><a href=\"http://piratebaytorrents.info/9774567/Black_Sails_S01E08_720p_HDTV_x264-2HD.9774567.TPB.torrent\"
|
1515
|
+
class=\"download_2\" title=\"Download Mirror #2\"></a><a href=\"http://extratorrent.cc/download/3485500/Black+Sails+S01E08+720p+HDTV+x264-2HD+%5Beztv%5D.torrent\"
|
1516
|
+
class=\"download_3\" title=\"Download Mirror #3\"></a><a href=\"http://www.bt-chat.com/download1.php?id=187913&type=torrent\"
|
1517
|
+
class=\"download_4\" title=\"Download Mirror #4\"></a><a href=\"http://torrage.com/torrent/DC41759DD87187E75F73291745F8EDA4EE94FDF9.torrent\"
|
1518
|
+
class=\"download_5\" title=\"Download Mirror #5\"></a><a href=\"//zoink.it/torrent/DC41759DD87187E75F73291745F8EDA4EE94FDF9.torrent\"
|
1519
|
+
class=\"download_6\" title=\"Download Mirror #6\"></a>\t </td>\n\t\t\t<td
|
1520
|
+
align=\"center\" class=\"forum_thread_post\">15h 58m </td>\n\t\t\t<td align=\"center\"
|
1521
|
+
class=\"forum_thread_post_end\"><a href=\"/forum/discuss/53209/\"><img src=\"//ezimg.it/s/1/3/chat_empty.png\"
|
1522
|
+
border=\"0\" width=\"16\" height=\"16\" alt=\"Discuss\" title=\"Discuss about
|
1523
|
+
this show\" /></a></td>\n\t\t</tr>\n\t <tr name=\"hover\" class=\"forum_header_border\">\n\t\t
|
1524
|
+
\ <td width=\"35\" class=\"forum_thread_post\"><a href=\"/shows/187/mv-group-documentaries/\"><img
|
1525
|
+
src=\"//ezimg.it/s/1/3/show_info.png\" border=\"0\" alt=\"Show\" title=\"Show
|
1526
|
+
Description about MV Group Documentaries\"></a> </td>\n\t\t\t<td class=\"forum_thread_post\">\n\t\t\t\t<a
|
1527
|
+
href=\"/ep/53208/aircraft-films-f4f-wildcat-xvid-mvgroup/\" title=\"Aircraft
|
1528
|
+
Films F4F Wildcat XviD-MVGroup (895.43 MB)\" alt=\"Aircraft Films F4F Wildcat
|
1529
|
+
XviD-MVGroup (895.43 MB)\" class=\"epinfo\">Aircraft Films F4F Wildcat XviD-MVGroup</a>\n\t\t\t</td>\n\t\t
|
1530
|
+
\ <td align=\"center\" class=\"forum_thread_post\"><a href=\"magnet:?xt=urn:btih:3WDGBLXFYRVJU4UCUOCBIZWJQ4DA7VU2&dn=Aircraft.Films.F4F.Wildcat.XviD-MVGroup&tr=http://www.mvgroup.org:2710/announce&tr=udp://tracker.openbittorrent.com:80&tr=udp://tracker.publicbt.com:80&tr=udp://tracker.istole.it:80&tr=udp://open.demonii.com:80&tr=udp://tracker.coppersurfer.tk:80\"
|
1531
|
+
class=\"magnet\" title=\"Magnet Link\"></a><a href=\"http://getsecuredfiles.com/ez/dl/?file=Aircraft.Films.F4F.Wildcat.XviD-MVGroup.torrent&url=http%3A%2F%2Fre.zoink.it%2Fg%2FDD8660AEE5C46A9A7282A3841466C987060FD69A\"
|
1532
|
+
target=\"_blank\" class=\"ddl\" title=\"Direct Download Link\" onclick=\"_gaq.push(['_trackEvent',
|
1533
|
+
'Sponsored', 'sponsored_index_click']);\"></a><a href=\"http://forums.mvgroup.org/tracker/get.php?id=3YZgruXEappygqOEFGbJhwYP1po%3D\"
|
1534
|
+
class=\"download_1\" title=\"Download Mirror #1\"></a><a href=\"http://torrage.com/torrent/DD8660AEE5C46A9A7282A3841466C987060FD69A.torrent\"
|
1535
|
+
class=\"download_2\" title=\"Download Mirror #2\"></a><a href=\"//zoink.it/torrent/DD8660AEE5C46A9A7282A3841466C987060FD69A.torrent\"
|
1536
|
+
class=\"download_3\" title=\"Download Mirror #3\"></a>\t </td>\n\t\t\t<td
|
1537
|
+
align=\"center\" class=\"forum_thread_post\">16h 30m </td>\n\t\t\t<td align=\"center\"
|
1538
|
+
class=\"forum_thread_post_end\"><a href=\"/forum/36129/aircraft-films-f4f-wildcat-xvid/\"><img
|
1539
|
+
src=\"//ezimg.it/s/1/3/chat_messages.png\" border=\"0\" width=\"16\" height=\"16\"
|
1540
|
+
alt=\"2 comments\" title=\"2 forum comments\" /></a></td>\n\t\t</tr>\n\t <tr
|
1541
|
+
name=\"hover\" class=\"forum_header_border\">\n\t\t <td width=\"35\" class=\"forum_thread_post\"><a
|
1542
|
+
href=\"/shows/187/mv-group-documentaries/\"><img src=\"//ezimg.it/s/1/3/show_info.png\"
|
1543
|
+
border=\"0\" alt=\"Show\" title=\"Show Description about MV Group Documentaries\"></a><a
|
1544
|
+
href=\"http://www.tvrage.com/The_Culture_Show\" target=\"_blank\" title=\"More
|
1545
|
+
info about The Culture Show 2014 Viking Art x264 HDTV-MVGroup at tvrage.com\"
|
1546
|
+
alt=\"More info about The Culture Show 2014 Viking Art x264 HDTV-MVGroup at
|
1547
|
+
tvrage.com\"><img src=\"//ezimg.it/s/2/1/tvrage.png\" width=\"16\" height=\"16\"
|
1548
|
+
border=\"0\" /></a></td>\n\t\t\t<td class=\"forum_thread_post\">\n\t\t\t\t<a
|
1549
|
+
href=\"/ep/53207/the-culture-show-2014-viking-art-x264-hdtv-mvgroup/\" title=\"The
|
1550
|
+
Culture Show 2014 Viking Art x264 HDTV-MVGroup (1.10 GB)\" alt=\"The Culture
|
1551
|
+
Show 2014 Viking Art x264 HDTV-MVGroup (1.10 GB)\" class=\"epinfo\">The Culture
|
1552
|
+
Show 2014 Viking Art x264 HDTV-MVGroup</a>\n\t\t\t</td>\n\t\t <td align=\"center\"
|
1553
|
+
class=\"forum_thread_post\"><a href=\"magnet:?xt=urn:btih:6WOLTKLZBZN33ZLDDJEDAIOZ3QRDREHR&dn=The.Culture.Show.2014.Viking.Art.x264.HDTV-MVGroup&tr=http://www.mvgroup.org:2710/announce&tr=udp://tracker.openbittorrent.com:80&tr=udp://tracker.publicbt.com:80&tr=udp://tracker.istole.it:80&tr=udp://open.demonii.com:80&tr=udp://tracker.coppersurfer.tk:80\"
|
1554
|
+
class=\"magnet\" title=\"Magnet Link\"></a><a href=\"http://getsecuredfiles.com/ez/dl/?file=The.Culture.Show.2014.Viking.Art.x264.HDTV-MVGroup.torrent&url=http%3A%2F%2Fre.zoink.it%2Fg%2FF59CB9A9790E5BBDE5631A483021D9DC223890F1\"
|
1555
|
+
target=\"_blank\" class=\"ddl\" title=\"Direct Download Link\" onclick=\"_gaq.push(['_trackEvent',
|
1556
|
+
'Sponsored', 'sponsored_index_click']);\"></a><a href=\"http://forums.mvgroup.org/tracker/get.php?id=9Zy5qXkOW73lYxpIMCHZ3CI4kPE%3D\"
|
1557
|
+
class=\"download_1\" title=\"Download Mirror #1\"></a><a href=\"http://torrage.com/torrent/F59CB9A9790E5BBDE5631A483021D9DC223890F1.torrent\"
|
1558
|
+
class=\"download_2\" title=\"Download Mirror #2\"></a><a href=\"http://extratorrent.cc/download/3485354/The+Culture+Show+2014+Viking+Art+x264+HDTV+%5BMVGroup+org%5D.torrent\"
|
1559
|
+
class=\"download_3\" title=\"Download Mirror #3\"></a>\t </td>\n\t\t\t<td
|
1560
|
+
align=\"center\" class=\"forum_thread_post\">17h 16m </td>\n\t\t\t<td align=\"center\"
|
1561
|
+
class=\"forum_thread_post_end\"><a href=\"/forum/36127/the-culture-show-2014-viking-art-x264-hdtv/\"><img
|
1562
|
+
src=\"//ezimg.it/s/1/3/chat_messages.png\" border=\"0\" width=\"16\" height=\"16\"
|
1563
|
+
alt=\"2 comments\" title=\"2 forum comments\" /></a></td>\n\t\t</tr>\n\t <tr
|
1564
|
+
name=\"hover\" class=\"forum_header_border\">\n\t\t <td width=\"35\" class=\"forum_thread_post\"><a
|
1565
|
+
href=\"/shows/187/mv-group-documentaries/\"><img src=\"//ezimg.it/s/1/3/show_info.png\"
|
1566
|
+
border=\"0\" alt=\"Show\" title=\"Show Description about MV Group Documentaries\"></a> </td>\n\t\t\t<td
|
1567
|
+
class=\"forum_thread_post\">\n\t\t\t\t<a href=\"/ep/53206/photographing-africa-x264-hdtv-mvgroup/\"
|
1568
|
+
title=\"Photographing Africa x264 HDTV-MVGroup (1.35 GB)\" alt=\"Photographing
|
1569
|
+
Africa x264 HDTV-MVGroup (1.35 GB)\" class=\"epinfo\">Photographing Africa
|
1570
|
+
x264 HDTV-MVGroup</a>\n\t\t\t</td>\n\t\t <td align=\"center\" class=\"forum_thread_post\"><a
|
1571
|
+
href=\"magnet:?xt=urn:btih:26DTTXXGRPLOERGPCOYTLBNTJVSOO53S&dn=Photographing.Africa.x264.HDTV-MVGroup&tr=http://www.mvgroup.org:2710/announce&tr=udp://tracker.openbittorrent.com:80&tr=udp://tracker.publicbt.com:80&tr=udp://tracker.istole.it:80&tr=udp://open.demonii.com:80&tr=udp://tracker.coppersurfer.tk:80\"
|
1572
|
+
class=\"magnet\" title=\"Magnet Link\"></a><a href=\"http://getsecuredfiles.com/ez/dl/?file=Photographing.Africa.x264.HDTV-MVGroup.torrent&url=http%3A%2F%2Fre.zoink.it%2Fg%2FD78739DEE68BD6E244CF13B13585B34D64E77772\"
|
1573
|
+
target=\"_blank\" class=\"ddl\" title=\"Direct Download Link\" onclick=\"_gaq.push(['_trackEvent',
|
1574
|
+
'Sponsored', 'sponsored_index_click']);\"></a><a href=\"http://forums.mvgroup.org/tracker/get.php?id=14c53uaL1uJEzxOxNYWzTWTnd3I%3D\"
|
1575
|
+
class=\"download_1\" title=\"Download Mirror #1\"></a><a href=\"http://torrage.com/torrent/D78739DEE68BD6E244CF13B13585B34D64E77772.torrent\"
|
1576
|
+
class=\"download_2\" title=\"Download Mirror #2\"></a><a href=\"//zoink.it/torrent/D78739DEE68BD6E244CF13B13585B34D64E77772.torrent\"
|
1577
|
+
class=\"download_3\" title=\"Download Mirror #3\"></a><a href=\"http://extratorrent.cc/download/3485210/Photographing+Africa+x264+HDTV+%5BMVGroup+org%5D.torrent\"
|
1578
|
+
class=\"download_4\" title=\"Download Mirror #4\"></a>\t </td>\n\t\t\t<td
|
1579
|
+
align=\"center\" class=\"forum_thread_post\">18h 53m </td>\n\t\t\t<td align=\"center\"
|
1580
|
+
class=\"forum_thread_post_end\"><a href=\"/forum/36126/photographing-africa-x264-hdtv/\"><img
|
1581
|
+
src=\"//ezimg.it/s/1/3/chat_messages.png\" border=\"0\" width=\"16\" height=\"16\"
|
1582
|
+
alt=\"2 comments\" title=\"2 forum comments\" /></a></td>\n\t\t</tr>\n\t <tr
|
1583
|
+
name=\"hover\" class=\"forum_header_border\">\n\t\t <td width=\"35\" class=\"forum_thread_post\"><a
|
1584
|
+
href=\"/shows/187/mv-group-documentaries/\"><img src=\"//ezimg.it/s/1/3/show_info.png\"
|
1585
|
+
border=\"0\" alt=\"Show\" title=\"Show Description about MV Group Documentaries\"></a> </td>\n\t\t\t<td
|
1586
|
+
class=\"forum_thread_post\">\n\t\t\t\t<a href=\"/ep/53204/discovering-dire-straits-pdtv-x264-mvgroup/\"
|
1587
|
+
title=\"Discovering Dire Straits PDTV x264-MVGroup (336.81 MB)\" alt=\"Discovering
|
1588
|
+
Dire Straits PDTV x264-MVGroup (336.81 MB)\" class=\"epinfo\">Discovering
|
1589
|
+
Dire Straits PDTV x264-MVGroup</a>\n\t\t\t</td>\n\t\t <td align=\"center\"
|
1590
|
+
class=\"forum_thread_post\"><a href=\"magnet:?xt=urn:btih:SBKY2N2XRFYFYSMJYRL3FUUBOHVTMPCU&dn=Discovering.Dire.Straits.PDTV.x264-MVGroup&tr=http://www.mvgroup.org:2710/announce&tr=udp://tracker.openbittorrent.com:80&tr=udp://tracker.publicbt.com:80&tr=udp://tracker.istole.it:80&tr=udp://open.demonii.com:80&tr=udp://tracker.coppersurfer.tk:80\"
|
1591
|
+
class=\"magnet\" title=\"Magnet Link\"></a><a href=\"http://getsecuredfiles.com/ez/dl/?file=Discovering.Dire.Straits.PDTV.x264-MVGroup.torrent&url=http%3A%2F%2Fre.zoink.it%2Fg%2F90558D375789705C4989C457B2D28171EB363C54\"
|
1592
|
+
target=\"_blank\" class=\"ddl\" title=\"Direct Download Link\" onclick=\"_gaq.push(['_trackEvent',
|
1593
|
+
'Sponsored', 'sponsored_index_click']);\"></a><a href=\"http://forums.mvgroup.org/tracker/get.php?id=kFWNN1eJcFxJicRXstKBces2PFQ%3D\"
|
1594
|
+
class=\"download_1\" title=\"Download Mirror #1\"></a><a href=\"http://torrage.com/torrent/90558D375789705C4989C457B2D28171EB363C54.torrent\"
|
1595
|
+
class=\"download_2\" title=\"Download Mirror #2\"></a><a href=\"//zoink.it/torrent/90558D375789705C4989C457B2D28171EB363C54.torrent\"
|
1596
|
+
class=\"download_3\" title=\"Download Mirror #3\"></a><a href=\"http://extratorrent.cc/download/3485143/Discovering+Dire+Straits+PDTV+x264+%5BMVGroup+org%5D.torrent\"
|
1597
|
+
class=\"download_4\" title=\"Download Mirror #4\"></a>\t </td>\n\t\t\t<td
|
1598
|
+
align=\"center\" class=\"forum_thread_post\">19h 42m </td>\n\t\t\t<td align=\"center\"
|
1599
|
+
class=\"forum_thread_post_end\"><a href=\"/forum/36125/discovering-dire-straits-pdtv-x264/\"><img
|
1600
|
+
src=\"//ezimg.it/s/1/3/chat_messages.png\" border=\"0\" width=\"16\" height=\"16\"
|
1601
|
+
alt=\"2 comments\" title=\"2 forum comments\" /></a></td>\n\t\t</tr>\n\t <tr
|
1602
|
+
name=\"hover\" class=\"forum_header_border\">\n\t\t <td width=\"35\" class=\"forum_thread_post\"><a
|
1603
|
+
href=\"/shows/962/black-sails/\"><img src=\"//ezimg.it/s/1/3/show_info.png\"
|
1604
|
+
border=\"0\" alt=\"Show\" title=\"Show Description about Black Sails\"></a><a
|
1605
|
+
href=\"http://www.tvrage.com/shows/id-32725/episodes/1065462108\" target=\"_blank\"
|
1606
|
+
title=\"More info about Black Sails S01E08 HDTV x264-2HD at tvrage.com\" alt=\"More
|
1607
|
+
info about Black Sails S01E08 HDTV x264-2HD at tvrage.com\"><img src=\"//ezimg.it/s/2/1/tvrage.png\"
|
1608
|
+
width=\"16\" height=\"16\" border=\"0\" /></a></td>\n\t\t\t<td class=\"forum_thread_post\">\n\t\t\t\t<a
|
1609
|
+
href=\"/ep/53205/black-sails-s01e08-hdtv-x264-2hd/\" title=\"Black Sails S01E08
|
1610
|
+
HDTV x264-2HD (495.54 MB)\" alt=\"Black Sails S01E08 HDTV x264-2HD (495.54
|
1611
|
+
MB)\" class=\"epinfo\">Black Sails S01E08 HDTV x264-2HD</a>\n\t\t\t</td>\n\t\t
|
1612
|
+
\ <td align=\"center\" class=\"forum_thread_post\"><a href=\"magnet:?xt=urn:btih:GONMRQDPNP6LF2F2HULREPST4BY4D5DR&dn=Black.Sails.S01E08.HDTV.x264-2HD&tr=udp://tracker.openbittorrent.com:80&tr=udp://tracker.publicbt.com:80&tr=udp://tracker.istole.it:80&tr=udp://open.demonii.com:80&tr=udp://tracker.coppersurfer.tk:80\"
|
1613
|
+
class=\"magnet\" title=\"Magnet Link\"></a><a href=\"http://getsecuredfiles.com/ez/dl/?file=Black.Sails.S01E08.HDTV.x264-2HD.torrent&url=http%3A%2F%2Fre.zoink.it%2Fg%2F339AC8C06F6BFCB2E8BA3D17123E53E071C1F471\"
|
1614
|
+
target=\"_blank\" class=\"ddl\" title=\"Direct Download Link\" onclick=\"_gaq.push(['_trackEvent',
|
1615
|
+
'Sponsored', 'sponsored_index_click']);\"></a><a href=\"//re.zoink.it/33784f159A\"
|
1616
|
+
class=\"download_1\" title=\"Download Mirror #1\"></a><a href=\"http://piratebaytorrents.info/9773818/Black_Sails_S01E08_HDTV_x264-2HD.9773818.TPB.torrent\"
|
1617
|
+
class=\"download_2\" title=\"Download Mirror #2\"></a><a href=\"http://extratorrent.cc/download/3485153/Black+Sails+S01E08+HDTV+x264-2HD+%5Beztv%5D.torrent\"
|
1618
|
+
class=\"download_3\" title=\"Download Mirror #3\"></a><a href=\"http://www.bt-chat.com/download1.php?id=187910&type=torrent\"
|
1619
|
+
class=\"download_4\" title=\"Download Mirror #4\"></a><a href=\"http://torrage.com/torrent/339AC8C06F6BFCB2E8BA3D17123E53E071C1F471.torrent\"
|
1620
|
+
class=\"download_5\" title=\"Download Mirror #5\"></a>\t </td>\n\t\t\t<td
|
1621
|
+
align=\"center\" class=\"forum_thread_post\">19h 46m </td>\n\t\t\t<td align=\"center\"
|
1622
|
+
class=\"forum_thread_post_end\"><a href=\"/forum/discuss/53205/\"><img src=\"//ezimg.it/s/1/3/chat_empty.png\"
|
1623
|
+
border=\"0\" width=\"16\" height=\"16\" alt=\"Discuss\" title=\"Discuss about
|
1624
|
+
this show\" /></a></td>\n\t\t</tr>\n\t <tr name=\"hover\" class=\"forum_header_border\">\n\t\t
|
1625
|
+
\ <td width=\"35\" class=\"forum_thread_post\"><a href=\"/shows/187/mv-group-documentaries/\"><img
|
1626
|
+
src=\"//ezimg.it/s/1/3/show_info.png\" border=\"0\" alt=\"Show\" title=\"Show
|
1627
|
+
Description about MV Group Documentaries\"></a> </td>\n\t\t\t<td class=\"forum_thread_post\">\n\t\t\t\t<a
|
1628
|
+
href=\"/ep/53203/storyville-2013-blackfish-the-whale-that-killed-pdtv-x264-mvgroup/\"
|
1629
|
+
title=\"Storyville 2013 Blackfish The Whale that Killed PDTV x264-MVGroup
|
1630
|
+
(880.15 MB)\" alt=\"Storyville 2013 Blackfish The Whale that Killed PDTV x264-MVGroup
|
1631
|
+
(880.15 MB)\" class=\"epinfo\">Storyville 2013 Blackfish The Whale that Killed
|
1632
|
+
PDTV x264-MVGroup</a>\n\t\t\t</td>\n\t\t <td align=\"center\" class=\"forum_thread_post\"><a
|
1633
|
+
href=\"magnet:?xt=urn:btih:OFWOSY3HUD3ME7ROBLJXKODCIGG4DGTG&dn=Storyville.2013.Blackfish.The.Whale.that.Killed.PDTV.x264-MVGroup&tr=http://www.mvgroup.org:2710/announce&tr=udp://tracker.openbittorrent.com:80&tr=udp://tracker.publicbt.com:80&tr=udp://tracker.istole.it:80&tr=udp://open.demonii.com:80&tr=udp://tracker.coppersurfer.tk:80\"
|
1634
|
+
class=\"magnet\" title=\"Magnet Link\"></a><a href=\"http://getsecuredfiles.com/ez/dl/?file=Storyville.2013.Blackfish.The.Whale.that.Killed.PDTV.x264-MVGroup.torrent&url=http%3A%2F%2Fre.zoink.it%2Fg%2F716CE96367A0F6C27E2E0AD3753862418DC19A66\"
|
1635
|
+
target=\"_blank\" class=\"ddl\" title=\"Direct Download Link\" onclick=\"_gaq.push(['_trackEvent',
|
1636
|
+
'Sponsored', 'sponsored_index_click']);\"></a><a href=\"http://forums.mvgroup.org/tracker/get.php?id=cWzpY2eg9sJ%2BLgrTdThiQY3BmmY%3D\"
|
1637
|
+
class=\"download_1\" title=\"Download Mirror #1\"></a><a href=\"http://torrage.com/torrent/716CE96367A0F6C27E2E0AD3753862418DC19A66.torrent\"
|
1638
|
+
class=\"download_2\" title=\"Download Mirror #2\"></a><a href=\"//zoink.it/torrent/716CE96367A0F6C27E2E0AD3753862418DC19A66.torrent\"
|
1639
|
+
class=\"download_3\" title=\"Download Mirror #3\"></a><a href=\"http://extratorrent.cc/download/3485114/Storyville+2013+Blackfish+The+Whale+that+Killed+PDTV+x264+%5BMVGroup+org%5D.torrent\"
|
1640
|
+
class=\"download_4\" title=\"Download Mirror #4\"></a>\t </td>\n\t\t\t<td
|
1641
|
+
align=\"center\" class=\"forum_thread_post\">20h 31m </td>\n\t\t\t<td align=\"center\"
|
1642
|
+
class=\"forum_thread_post_end\"><a href=\"/forum/36124/storyville-2013-blackfish-the-whale-that-killed-pdtv-x264/\"><img
|
1643
|
+
src=\"//ezimg.it/s/1/3/chat_messages.png\" border=\"0\" width=\"16\" height=\"16\"
|
1644
|
+
alt=\"3 comments\" title=\"3 forum comments\" /></a></td>\n\t\t</tr>\n\t <tr
|
1645
|
+
name=\"hover\" class=\"forum_header_border\">\n\t\t <td width=\"35\" class=\"forum_thread_post\"><a
|
1646
|
+
href=\"/shows/955/bitten/\"><img src=\"//ezimg.it/s/1/3/show_info.png\" border=\"0\"
|
1647
|
+
alt=\"Show\" title=\"Show Description about Bitten\"></a><a href=\"http://www.tvrage.com/shows/id-34965/episodes/1065487049\"
|
1648
|
+
target=\"_blank\" title=\"More info about Bitten S01E10 HDTV x264-KILLERS
|
1649
|
+
at tvrage.com\" alt=\"More info about Bitten S01E10 HDTV x264-KILLERS at tvrage.com\"><img
|
1650
|
+
src=\"//ezimg.it/s/2/1/tvrage.png\" width=\"16\" height=\"16\" border=\"0\"
|
1651
|
+
/></a></td>\n\t\t\t<td class=\"forum_thread_post\">\n\t\t\t\t<a href=\"/ep/53202/bitten-s01e10-hdtv-x264-killers/\"
|
1652
|
+
title=\"Bitten S01E10 HDTV x264-KILLERS (249.25 MB)\" alt=\"Bitten S01E10
|
1653
|
+
HDTV x264-KILLERS (249.25 MB)\" class=\"epinfo\">Bitten S01E10 HDTV x264-KILLERS</a>\n\t\t\t</td>\n\t\t
|
1654
|
+
\ <td align=\"center\" class=\"forum_thread_post\"><a href=\"magnet:?xt=urn:btih:6F56B5KR2TTR6FZMGXX5MHCH5TEXCDAJ&dn=Bitten.S01E10.HDTV.x264-KILLERS&tr=udp://tracker.openbittorrent.com:80&tr=udp://tracker.publicbt.com:80&tr=udp://tracker.istole.it:80&tr=udp://open.demonii.com:80&tr=udp://tracker.coppersurfer.tk:80\"
|
1655
|
+
class=\"magnet\" title=\"Magnet Link\"></a><a href=\"http://getsecuredfiles.com/ez/dl/?file=Bitten.S01E10.HDTV.x264-KILLERS.torrent&url=http%3A%2F%2Fre.zoink.it%2Fg%2FF17BE0F551D4E71F172C35EFD61C47ECC9710C09\"
|
1656
|
+
target=\"_blank\" class=\"ddl\" title=\"Direct Download Link\" onclick=\"_gaq.push(['_trackEvent',
|
1657
|
+
'Sponsored', 'sponsored_index_click']);\"></a><a href=\"//re.zoink.it/F1784d907B\"
|
1658
|
+
class=\"download_1\" title=\"Download Mirror #1\"></a><a href=\"http://piratebaytorrents.info/9773424/Bitten_S01E10_HDTV_x264-KILLERS.9773424.TPB.torrent\"
|
1659
|
+
class=\"download_2\" title=\"Download Mirror #2\"></a><a href=\"http://extratorrent.cc/download/3485097/Bitten+S01E10+HDTV+x264-KILLERS+%5Beztv%5D.torrent\"
|
1660
|
+
class=\"download_3\" title=\"Download Mirror #3\"></a><a href=\"http://www.bt-chat.com/download1.php?id=187907&type=torrent\"
|
1661
|
+
class=\"download_4\" title=\"Download Mirror #4\"></a><a href=\"http://torrage.com/torrent/F17BE0F551D4E71F172C35EFD61C47ECC9710C09.torrent\"
|
1662
|
+
class=\"download_5\" title=\"Download Mirror #5\"></a><a href=\"//zoink.it/torrent/F17BE0F551D4E71F172C35EFD61C47ECC9710C09.torrent\"
|
1663
|
+
class=\"download_6\" title=\"Download Mirror #6\"></a>\t </td>\n\t\t\t<td
|
1664
|
+
align=\"center\" class=\"forum_thread_post\">21h 2m </td>\n\t\t\t<td align=\"center\"
|
1665
|
+
class=\"forum_thread_post_end\"><a href=\"/forum/discuss/53202/\"><img src=\"//ezimg.it/s/1/3/chat_empty.png\"
|
1666
|
+
border=\"0\" width=\"16\" height=\"16\" alt=\"Discuss\" title=\"Discuss about
|
1667
|
+
this show\" /></a></td>\n\t\t</tr>\n\t <tr name=\"hover\" class=\"forum_header_border\">\n\t\t
|
1668
|
+
\ <td width=\"35\" class=\"forum_thread_post\"><a href=\"/shows/187/mv-group-documentaries/\"><img
|
1669
|
+
src=\"//ezimg.it/s/1/3/show_info.png\" border=\"0\" alt=\"Show\" title=\"Show
|
1670
|
+
Description about MV Group Documentaries\"></a> </td>\n\t\t\t<td class=\"forum_thread_post\">\n\t\t\t\t<a
|
1671
|
+
href=\"/ep/53201/astronauts-houston-we-have-a-problem-x264-hdtv-mvgroup/\"
|
1672
|
+
title=\"Astronauts Houston We Have a Problem x264 HDTV-MVGroup (1.10 GB)\"
|
1673
|
+
alt=\"Astronauts Houston We Have a Problem x264 HDTV-MVGroup (1.10 GB)\" class=\"epinfo\">Astronauts
|
1674
|
+
Houston We Have a Problem x264 HDTV-MVGroup</a>\n\t\t\t</td>\n\t\t <td align=\"center\"
|
1675
|
+
class=\"forum_thread_post\"><a href=\"magnet:?xt=urn:btih:QW52FJ7YOPIJXIVJBB2BCHAIMJ6QM3N7&dn=Astronauts.Houston.We.Have.a.Problem.x264.HDTV-MVGroup&tr=http://www.mvgroup.org:2710/announce&tr=udp://tracker.openbittorrent.com:80&tr=udp://tracker.publicbt.com:80&tr=udp://tracker.istole.it:80&tr=udp://open.demonii.com:80&tr=udp://tracker.coppersurfer.tk:80\"
|
1676
|
+
class=\"magnet\" title=\"Magnet Link\"></a><a href=\"http://getsecuredfiles.com/ez/dl/?file=Astronauts.Houston.We.Have.a.Problem.x264.HDTV-MVGroup.torrent&url=http%3A%2F%2Fre.zoink.it%2Fg%2F85BBA2A7F873D09BA2A90874111C08627D066DBF\"
|
1677
|
+
target=\"_blank\" class=\"ddl\" title=\"Direct Download Link\" onclick=\"_gaq.push(['_trackEvent',
|
1678
|
+
'Sponsored', 'sponsored_index_click']);\"></a><a href=\"http://forums.mvgroup.org/tracker/get.php?id=hbuip%2Fhz0JuiqQh0ERwIYn0Gbb8%3D\"
|
1679
|
+
class=\"download_1\" title=\"Download Mirror #1\"></a><a href=\"http://torrage.com/torrent/85BBA2A7F873D09BA2A90874111C08627D066DBF.torrent\"
|
1680
|
+
class=\"download_2\" title=\"Download Mirror #2\"></a><a href=\"//zoink.it/torrent/85BBA2A7F873D09BA2A90874111C08627D066DBF.torrent\"
|
1681
|
+
class=\"download_3\" title=\"Download Mirror #3\"></a><a href=\"http://extratorrent.cc/download/3484746/Astronauts+Houston+We+Have+a+Problem+x264+HDTV+%5BMVGroup+org%5D.torrent\"
|
1682
|
+
class=\"download_4\" title=\"Download Mirror #4\"></a>\t </td>\n\t\t\t<td
|
1683
|
+
align=\"center\" class=\"forum_thread_post\">1d 44s </td>\n\t\t\t<td align=\"center\"
|
1684
|
+
class=\"forum_thread_post_end\"><a href=\"/forum/36123/astronauts-houston-we-have-a-problem-x264-hdtv/\"><img
|
1685
|
+
src=\"//ezimg.it/s/1/3/chat_messages.png\" border=\"0\" width=\"16\" height=\"16\"
|
1686
|
+
alt=\"3 comments\" title=\"3 forum comments\" /></a></td>\n\t\t</tr>\n\t <tr
|
1687
|
+
name=\"hover\" class=\"forum_header_border\">\n\t\t <td width=\"35\" class=\"forum_thread_post\"><a
|
1688
|
+
href=\"/shows/187/mv-group-documentaries/\"><img src=\"//ezimg.it/s/1/3/show_info.png\"
|
1689
|
+
border=\"0\" alt=\"Show\" title=\"Show Description about MV Group Documentaries\"></a> </td>\n\t\t\t<td
|
1690
|
+
class=\"forum_thread_post\">\n\t\t\t\t<a href=\"/ep/53200/astronauts-living-in-space-x264-hdtv-mvgroup/\"
|
1691
|
+
title=\"Astronauts Living In Space x264 HDTV-MVGroup (1.06 GB)\" alt=\"Astronauts
|
1692
|
+
Living In Space x264 HDTV-MVGroup (1.06 GB)\" class=\"epinfo\">Astronauts
|
1693
|
+
Living In Space x264 HDTV-MVGroup</a>\n\t\t\t</td>\n\t\t <td align=\"center\"
|
1694
|
+
class=\"forum_thread_post\"><a href=\"magnet:?xt=urn:btih:5CRWC25MHM7XOWSYKJNVBYXJMHULIZPI&dn=Astronauts.Living.In.Space.x264.HDTV-MVGroup&tr=http://www.mvgroup.org:2710/announce&tr=udp://tracker.openbittorrent.com:80&tr=udp://tracker.publicbt.com:80&tr=udp://tracker.istole.it:80&tr=udp://open.demonii.com:80&tr=udp://tracker.coppersurfer.tk:80\"
|
1695
|
+
class=\"magnet\" title=\"Magnet Link\"></a><a href=\"http://getsecuredfiles.com/ez/dl/?file=Astronauts.Living.In.Space.x264.HDTV-MVGroup.torrent&url=http%3A%2F%2Fre.zoink.it%2Fg%2FE8A3616BAC3B3F775A58525B50E2E961E8B465E8\"
|
1696
|
+
target=\"_blank\" class=\"ddl\" title=\"Direct Download Link\" onclick=\"_gaq.push(['_trackEvent',
|
1697
|
+
'Sponsored', 'sponsored_index_click']);\"></a><a href=\"http://forums.mvgroup.org/tracker/get.php?id=6KNha6w7P3daWFJbUOLpYei0Zeg%3D\"
|
1698
|
+
class=\"download_1\" title=\"Download Mirror #1\"></a><a href=\"http://torrage.com/torrent/E8A3616BAC3B3F775A58525B50E2E961E8B465E8.torrent\"
|
1699
|
+
class=\"download_2\" title=\"Download Mirror #2\"></a><a href=\"//zoink.it/torrent/E8A3616BAC3B3F775A58525B50E2E961E8B465E8.torrent\"
|
1700
|
+
class=\"download_3\" title=\"Download Mirror #3\"></a><a href=\"http://extratorrent.cc/download/3484610/Astronauts+Living+In+Space+x264+HDTV+%5BMVGroup+org%5D.torrent\"
|
1701
|
+
class=\"download_4\" title=\"Download Mirror #4\"></a>\t </td>\n\t\t\t<td
|
1702
|
+
align=\"center\" class=\"forum_thread_post\">1d 1h </td>\n\t\t\t<td align=\"center\"
|
1703
|
+
class=\"forum_thread_post_end\"><a href=\"/forum/36122/astronauts-living-in-space-x264-hdtv/\"><img
|
1704
|
+
src=\"//ezimg.it/s/1/3/chat_messages.png\" border=\"0\" width=\"16\" height=\"16\"
|
1705
|
+
alt=\"2 comments\" title=\"2 forum comments\" /></a></td>\n\t\t</tr>\n\t <tr
|
1706
|
+
name=\"hover\" class=\"forum_header_border\">\n\t\t <td width=\"35\" class=\"forum_thread_post\"><a
|
1707
|
+
href=\"/shows/187/mv-group-documentaries/\"><img src=\"//ezimg.it/s/1/3/show_info.png\"
|
1708
|
+
border=\"0\" alt=\"Show\" title=\"Show Description about MV Group Documentaries\"></a><a
|
1709
|
+
href=\"http://www.tvrage.com/shows/id-2231\" target=\"_blank\" title=\"More
|
1710
|
+
info about Cosmos A Personal Voyage 07of13 The Backbone of Night DVDRip x264-MVGroup
|
1711
|
+
at tvrage.com\" alt=\"More info about Cosmos A Personal Voyage 07of13 The
|
1712
|
+
Backbone of Night DVDRip x264-MVGroup at tvrage.com\"><img src=\"//ezimg.it/s/2/1/tvrage.png\"
|
1713
|
+
width=\"16\" height=\"16\" border=\"0\" /></a></td>\n\t\t\t<td class=\"forum_thread_post\">\n\t\t\t\t<a
|
1714
|
+
href=\"/ep/53199/cosmos-a-personal-voyage-07of13-the-backbone-of-night-dvdrip-x264-mvgroup/\"
|
1715
|
+
title=\"Cosmos A Personal Voyage 07of13 The Backbone of Night DVDRip x264-MVGroup
|
1716
|
+
(1.26 GB)\" alt=\"Cosmos A Personal Voyage 07of13 The Backbone of Night DVDRip
|
1717
|
+
x264-MVGroup (1.26 GB)\" class=\"epinfo\">Cosmos A Personal Voyage 07of13
|
1718
|
+
The Backbone of Night DVDRip x264-MVGroup</a>\n\t\t\t</td>\n\t\t <td align=\"center\"
|
1719
|
+
class=\"forum_thread_post\"><a href=\"magnet:?xt=urn:btih:25DZRMHMVAAXNO43VUISWYMHE4VLJVFF&dn=Cosmos.A.Personal.Voyage.07of13.The.Backbone.of.Night.DVDRip.x264-MVGroup&tr=http://www.mvgroup.org:2710/announce&tr=udp://tracker.openbittorrent.com:80&tr=udp://tracker.publicbt.com:80&tr=udp://tracker.istole.it:80&tr=udp://open.demonii.com:80&tr=udp://tracker.coppersurfer.tk:80\"
|
1720
|
+
class=\"magnet\" title=\"Magnet Link\"></a><a href=\"http://getsecuredfiles.com/ez/dl/?file=Cosmos.A.Personal.Voyage.07of13.The.Backbone.of.Night.DVDRip.x264-MVGroup.torrent&url=http%3A%2F%2Fre.zoink.it%2Fg%2FD74798B0ECA80176BB9BAD112B6187272AB4D4A5\"
|
1721
|
+
target=\"_blank\" class=\"ddl\" title=\"Direct Download Link\" onclick=\"_gaq.push(['_trackEvent',
|
1722
|
+
'Sponsored', 'sponsored_index_click']);\"></a><a href=\"http://forums.mvgroup.org/tracker/get.php?id=10eYsOyoAXa7m60RK2GHJyq01KU%3D\"
|
1723
|
+
class=\"download_1\" title=\"Download Mirror #1\"></a><a href=\"http://torrage.com/torrent/D74798B0ECA80176BB9BAD112B6187272AB4D4A5.torrent\"
|
1724
|
+
class=\"download_2\" title=\"Download Mirror #2\"></a><a href=\"http://extratorrent.cc/download/3484500/Cosmos+A+Personal+Voyage+07of13+The+Backbone+of+Night+DVDRip+x264+%5BMVGroup+org%5D.torrent\"
|
1725
|
+
class=\"download_3\" title=\"Download Mirror #3\"></a>\t </td>\n\t\t\t<td
|
1726
|
+
align=\"center\" class=\"forum_thread_post\">1d 3h </td>\n\t\t\t<td align=\"center\"
|
1727
|
+
class=\"forum_thread_post_end\"><a href=\"/forum/36121/cosmos-a-personal-voyage-07of13-the-backbone-of-night-dvdrip-x264/\"><img
|
1728
|
+
src=\"//ezimg.it/s/1/3/chat_messages.png\" border=\"0\" width=\"16\" height=\"16\"
|
1729
|
+
alt=\"2 comments\" title=\"2 forum comments\" /></a></td>\n\t\t</tr>\n\t\t<tr
|
1730
|
+
class=\"forum_space_border\">\n\t\t\t<td colspan=\"5\" class=\"header_date\">\n\t\t\t\tAdded
|
1731
|
+
on: <b>15, March, 2014</b>\n\t\t\t</td>\n\t\t</tr>\n\t <tr name=\"hover\"
|
1732
|
+
class=\"forum_header_border\">\n\t\t <td width=\"35\" class=\"forum_thread_post\"><a
|
1733
|
+
href=\"/shows/983/the-tonight-show-starring-jimmy-fallon/\"><img src=\"//ezimg.it/s/1/3/show_info.png\"
|
1734
|
+
border=\"0\" alt=\"Show\" title=\"Show Description about The Tonight Show
|
1735
|
+
Starring Jimmy Fallon\"></a><a href=\"http://www.tvrage.com/Late_Night_with_Jimmy_Fallon\"
|
1736
|
+
target=\"_blank\" title=\"More info about Jimmy Fallon 2014 03 14 James Franco
|
1737
|
+
HDTV x264-CROOKS at tvrage.com\" alt=\"More info about Jimmy Fallon 2014 03
|
1738
|
+
14 James Franco HDTV x264-CROOKS at tvrage.com\"><img src=\"//ezimg.it/s/2/1/tvrage.png\"
|
1739
|
+
width=\"16\" height=\"16\" border=\"0\" /></a></td>\n\t\t\t<td class=\"forum_thread_post\">\n\t\t\t\t<a
|
1740
|
+
href=\"/ep/53198/jimmy-fallon-2014-03-14-james-franco-hdtv-x264-crooks/\"
|
1741
|
+
title=\"Jimmy Fallon 2014 03 14 James Franco HDTV x264-CROOKS (354.59 MB)\"
|
1742
|
+
alt=\"Jimmy Fallon 2014 03 14 James Franco HDTV x264-CROOKS (354.59 MB)\"
|
1743
|
+
class=\"epinfo\">Jimmy Fallon 2014 03 14 James Franco HDTV x264-CROOKS</a>\n\t\t\t</td>\n\t\t
|
1744
|
+
\ <td align=\"center\" class=\"forum_thread_post\"><a href=\"magnet:?xt=urn:btih:LIQ4RUJCFEZMMMPYDQVIVCGQXJWBMXQQ&dn=Jimmy.Fallon.2014.03.14.James.Franco.HDTV.x264-CROOKS&tr=udp://tracker.openbittorrent.com:80&tr=udp://tracker.publicbt.com:80&tr=udp://tracker.istole.it:80&tr=udp://open.demonii.com:80&tr=udp://tracker.coppersurfer.tk:80\"
|
1745
|
+
class=\"magnet\" title=\"Magnet Link\"></a><a href=\"http://getsecuredfiles.com/ez/dl/?file=Jimmy.Fallon.2014.03.14.James.Franco.HDTV.x264-CROOKS.torrent&url=http%3A%2F%2Fre.zoink.it%2Fg%2F5A21C8D1222932C631F81C2A8A88D0BA6C165E10\"
|
1746
|
+
target=\"_blank\" class=\"ddl\" title=\"Direct Download Link\" onclick=\"_gaq.push(['_trackEvent',
|
1747
|
+
'Sponsored', 'sponsored_index_click']);\"></a><a href=\"//re.zoink.it/5A7c2dac421\"
|
1748
|
+
class=\"download_1\" title=\"Download Mirror #1\"></a><a href=\"http://piratebaytorrents.info/9770303/Jimmy_Fallon_2014_03_14_James_Franco_HDTV_x264-CROOKS.9770303.TPB.torrent\"
|
1749
|
+
class=\"download_2\" title=\"Download Mirror #2\"></a><a href=\"http://extratorrent.cc/download/3484091/Jimmy+Fallon+2014+03+14+James+Franco+HDTV+x264-CROOKS+%5Beztv%5D.torrent\"
|
1750
|
+
class=\"download_3\" title=\"Download Mirror #3\"></a><a href=\"http://www.bt-chat.com/download1.php?id=187901&type=torrent\"
|
1751
|
+
class=\"download_4\" title=\"Download Mirror #4\"></a><a href=\"http://torrage.com/torrent/5A21C8D1222932C631F81C2A8A88D0BA6C165E10.torrent\"
|
1752
|
+
class=\"download_5\" title=\"Download Mirror #5\"></a><a href=\"//zoink.it/torrent/5A21C8D1222932C631F81C2A8A88D0BA6C165E10.torrent\"
|
1753
|
+
class=\"download_6\" title=\"Download Mirror #6\"></a>\t </td>\n\t\t\t<td
|
1754
|
+
align=\"center\" class=\"forum_thread_post\">1d 11h </td>\n\t\t\t<td align=\"center\"
|
1755
|
+
class=\"forum_thread_post_end\"><a href=\"/forum/discuss/53198/\"><img src=\"//ezimg.it/s/1/3/chat_empty.png\"
|
1756
|
+
border=\"0\" width=\"16\" height=\"16\" alt=\"Discuss\" title=\"Discuss about
|
1757
|
+
this show\" /></a></td>\n\t\t</tr>\n\t <tr name=\"hover\" class=\"forum_header_border\">\n\t\t
|
1758
|
+
\ <td width=\"35\" class=\"forum_thread_post\"><a href=\"/shows/991/seth-meyers-late-night-with/\"><img
|
1759
|
+
src=\"//ezimg.it/s/1/3/show_info.png\" border=\"0\" alt=\"Show\" title=\"Show
|
1760
|
+
Description about Seth Meyers, Late Night With\"></a><a href=\"http://www.tvrage.com/shows/id-35852\"
|
1761
|
+
target=\"_blank\" title=\"More info about Seth Meyers 2014 03 13 Tilda Swinton
|
1762
|
+
HDTV x264-CROOKS at tvrage.com\" alt=\"More info about Seth Meyers 2014 03
|
1763
|
+
13 Tilda Swinton HDTV x264-CROOKS at tvrage.com\"><img src=\"//ezimg.it/s/2/1/tvrage.png\"
|
1764
|
+
width=\"16\" height=\"16\" border=\"0\" /></a></td>\n\t\t\t<td class=\"forum_thread_post\">\n\t\t\t\t<a
|
1765
|
+
href=\"/ep/53197/seth-meyers-2014-03-13-tilda-swinton-hdtv-x264-crooks/\"
|
1766
|
+
title=\"Seth Meyers 2014 03 13 Tilda Swinton HDTV x264-CROOKS (261.64 MB)\"
|
1767
|
+
alt=\"Seth Meyers 2014 03 13 Tilda Swinton HDTV x264-CROOKS (261.64 MB)\"
|
1768
|
+
class=\"epinfo\">Seth Meyers 2014 03 13 Tilda Swinton HDTV x264-CROOKS</a>\n\t\t\t</td>\n\t\t
|
1769
|
+
\ <td align=\"center\" class=\"forum_thread_post\"><a href=\"magnet:?xt=urn:btih:K766YPLWJW5ZQCM4VOUZOZ4KZKROSRBX&dn=Seth.Meyers.2014.03.13.Tilda.Swinton.HDTV.x264-CROOKS&tr=udp://tracker.openbittorrent.com:80&tr=udp://tracker.publicbt.com:80&tr=udp://tracker.istole.it:80&tr=udp://open.demonii.com:80&tr=udp://tracker.coppersurfer.tk:80\"
|
1770
|
+
class=\"magnet\" title=\"Magnet Link\"></a><a href=\"http://getsecuredfiles.com/ez/dl/?file=Seth.Meyers.2014.03.13.Tilda.Swinton.HDTV.x264-CROOKS.torrent&url=http%3A%2F%2Fre.zoink.it%2Fg%2F57FDEC3D764DBB98099CABA997678ACAA2E94437\"
|
1771
|
+
target=\"_blank\" class=\"ddl\" title=\"Direct Download Link\" onclick=\"_gaq.push(['_trackEvent',
|
1772
|
+
'Sponsored', 'sponsored_index_click']);\"></a><a href=\"//re.zoink.it/57783ed7FD\"
|
1773
|
+
class=\"download_1\" title=\"Download Mirror #1\"></a><a href=\"http://piratebaytorrents.info/9770301/Seth_Meyers_2014_03_13_Tilda_Swinton_HDTV_x264-CROOKS.9770301.TPB.torrent\"
|
1774
|
+
class=\"download_2\" title=\"Download Mirror #2\"></a><a href=\"http://extratorrent.cc/download/3484090/Seth+Meyers+2014+03+13+Tilda+Swinton+HDTV+x264-CROOKS+%5Beztv%5D.torrent\"
|
1775
|
+
class=\"download_3\" title=\"Download Mirror #3\"></a><a href=\"http://www.bt-chat.com/download1.php?id=187900&type=torrent\"
|
1776
|
+
class=\"download_4\" title=\"Download Mirror #4\"></a><a href=\"http://torrage.com/torrent/57FDEC3D764DBB98099CABA997678ACAA2E94437.torrent\"
|
1777
|
+
class=\"download_5\" title=\"Download Mirror #5\"></a><a href=\"//zoink.it/torrent/57FDEC3D764DBB98099CABA997678ACAA2E94437.torrent\"
|
1778
|
+
class=\"download_6\" title=\"Download Mirror #6\"></a>\t </td>\n\t\t\t<td
|
1779
|
+
align=\"center\" class=\"forum_thread_post\">1d 11h </td>\n\t\t\t<td align=\"center\"
|
1780
|
+
class=\"forum_thread_post_end\"><a href=\"/forum/discuss/53197/\"><img src=\"//ezimg.it/s/1/3/chat_empty.png\"
|
1781
|
+
border=\"0\" width=\"16\" height=\"16\" alt=\"Discuss\" title=\"Discuss about
|
1782
|
+
this show\" /></a></td>\n\t\t</tr>\n\t <tr name=\"hover\" class=\"forum_header_border\">\n\t\t
|
1783
|
+
\ <td width=\"35\" class=\"forum_thread_post\"><a href=\"/shows/539/2-broke-girls/\"><img
|
1784
|
+
src=\"//ezimg.it/s/1/3/show_info.png\" border=\"0\" alt=\"Show\" title=\"Show
|
1785
|
+
Description about 2 Broke Girls\"></a><a href=\"http://www.tvrage.com/2_Broke_Girls/episodes/1065495766\"
|
1786
|
+
target=\"_blank\" title=\"More info about 2 Broke Girls S03E18 HDTV x264 REPACK-LOL
|
1787
|
+
at tvrage.com\" alt=\"More info about 2 Broke Girls S03E18 HDTV x264 REPACK-LOL
|
1788
|
+
at tvrage.com\"><img src=\"//ezimg.it/s/2/1/tvrage.png\" width=\"16\" height=\"16\"
|
1789
|
+
border=\"0\" /></a></td>\n\t\t\t<td class=\"forum_thread_post\">\n\t\t\t\t<a
|
1790
|
+
href=\"/ep/53196/2-broke-girls-s03e18-hdtv-x264-repack-lol/\" title=\"2 Broke
|
1791
|
+
Girls S03E18 HDTV x264 REPACK-LOL (188.40 MB)\" alt=\"2 Broke Girls S03E18
|
1792
|
+
HDTV x264 REPACK-LOL (188.40 MB)\" class=\"epinfo\">2 Broke Girls S03E18 HDTV
|
1793
|
+
x264 REPACK-LOL</a>\n\t\t\t</td>\n\t\t <td align=\"center\" class=\"forum_thread_post\"><a
|
1794
|
+
href=\"magnet:?xt=urn:btih:7X2GLUAHBLPXHNSCKUW2YIRNUJNHGMWP&dn=2.Broke.Girls.S03E18.HDTV.x264.REPACK-LOL&tr=udp://tracker.openbittorrent.com:80&tr=udp://tracker.publicbt.com:80&tr=udp://tracker.istole.it:80&tr=udp://open.demonii.com:80&tr=udp://tracker.coppersurfer.tk:80\"
|
1795
|
+
class=\"magnet\" title=\"Magnet Link\"></a><a href=\"http://getsecuredfiles.com/ez/dl/?file=2.Broke.Girls.S03E18.HDTV.x264.REPACK-LOL.torrent&url=http%3A%2F%2Fre.zoink.it%2Fg%2FFDF465D0070ADF73B642552DAC222DA25A7332CF\"
|
1796
|
+
target=\"_blank\" class=\"ddl\" title=\"Direct Download Link\" onclick=\"_gaq.push(['_trackEvent',
|
1797
|
+
'Sponsored', 'sponsored_index_click']);\"></a><a href=\"//re.zoink.it/FD7b6b8f0F4\"
|
1798
|
+
class=\"download_1\" title=\"Download Mirror #1\"></a><a href=\"http://piratebaytorrents.info/9770297/2_Broke_Girls_S03E18_HDTV_x264_REPACK-LOL.9770297.TPB.torrent\"
|
1799
|
+
class=\"download_2\" title=\"Download Mirror #2\"></a><a href=\"http://extratorrent.cc/download/3484088/2+Broke+Girls+S03E18+HDTV+x264+REPACK-LOL+%5Beztv%5D.torrent\"
|
1800
|
+
class=\"download_3\" title=\"Download Mirror #3\"></a><a href=\"http://www.bt-chat.com/download1.php?id=187899&type=torrent\"
|
1801
|
+
class=\"download_4\" title=\"Download Mirror #4\"></a><a href=\"http://torrage.com/torrent/FDF465D0070ADF73B642552DAC222DA25A7332CF.torrent\"
|
1802
|
+
class=\"download_5\" title=\"Download Mirror #5\"></a><a href=\"//zoink.it/torrent/FDF465D0070ADF73B642552DAC222DA25A7332CF.torrent\"
|
1803
|
+
class=\"download_6\" title=\"Download Mirror #6\"></a>\t </td>\n\t\t\t<td
|
1804
|
+
align=\"center\" class=\"forum_thread_post\">1d 11h </td>\n\t\t\t<td align=\"center\"
|
1805
|
+
class=\"forum_thread_post_end\"><a href=\"/forum/36120/2-broke-girls-s03e18-hdtv-x264-repack-lol/\"><img
|
1806
|
+
src=\"//ezimg.it/s/1/3/chat_messages.png\" border=\"0\" width=\"16\" height=\"16\"
|
1807
|
+
alt=\"2 comments\" title=\"2 forum comments\" /></a></td>\n\t\t</tr>\n\t <tr
|
1808
|
+
name=\"hover\" class=\"forum_header_border\">\n\t\t <td width=\"35\" class=\"forum_thread_post\"><a
|
1809
|
+
href=\"/shows/713/the-neighbors-2012/\"><img src=\"//ezimg.it/s/1/3/show_info.png\"
|
1810
|
+
border=\"0\" alt=\"Show\" title=\"Show Description about The Neighbors (2012)\"></a><a
|
1811
|
+
href=\"http://www.tvrage.com/shows/id-31677/episodes/1065498092\" target=\"_blank\"
|
1812
|
+
title=\"More info about The Neighbors 2012 S02E18 HDTV x264-LOL at tvrage.com\"
|
1813
|
+
alt=\"More info about The Neighbors 2012 S02E18 HDTV x264-LOL at tvrage.com\"><img
|
1814
|
+
src=\"//ezimg.it/s/2/1/tvrage.png\" width=\"16\" height=\"16\" border=\"0\"
|
1815
|
+
/></a></td>\n\t\t\t<td class=\"forum_thread_post\">\n\t\t\t\t<a href=\"/ep/53195/the-neighbors-2012-s02e18-hdtv-x264-lol/\"
|
1816
|
+
title=\"The Neighbors 2012 S02E18 HDTV x264-LOL (126.43 MB)\" alt=\"The Neighbors
|
1817
|
+
2012 S02E18 HDTV x264-LOL (126.43 MB)\" class=\"epinfo\">The Neighbors 2012
|
1818
|
+
S02E18 HDTV x264-LOL</a>\n\t\t\t</td>\n\t\t <td align=\"center\" class=\"forum_thread_post\"><a
|
1819
|
+
href=\"magnet:?xt=urn:btih:AHTLA3SWVZTJUEQELOSQG2VGOY6Z3ZSN&dn=The.Neighbors.2012.S02E18.HDTV.x264-LOL&tr=udp://tracker.openbittorrent.com:80&tr=udp://tracker.publicbt.com:80&tr=udp://tracker.istole.it:80&tr=udp://open.demonii.com:80&tr=udp://tracker.coppersurfer.tk:80\"
|
1820
|
+
class=\"magnet\" title=\"Magnet Link\"></a><a href=\"http://getsecuredfiles.com/ez/dl/?file=The.Neighbors.2012.S02E18.HDTV.x264-LOL.torrent&url=http%3A%2F%2Fre.zoink.it%2Fg%2F01E6B06E56AE669A12045BA5036AA6763D9DE64D\"
|
1821
|
+
target=\"_blank\" class=\"ddl\" title=\"Direct Download Link\" onclick=\"_gaq.push(['_trackEvent',
|
1822
|
+
'Sponsored', 'sponsored_index_click']);\"></a><a href=\"//re.zoink.it/01783ed6E6\"
|
1823
|
+
class=\"download_1\" title=\"Download Mirror #1\"></a><a href=\"http://piratebaytorrents.info/9770293/The_Neighbors_2012_S02E18_HDTV_x264-LOL.9770293.TPB.torrent\"
|
1824
|
+
class=\"download_2\" title=\"Download Mirror #2\"></a><a href=\"http://extratorrent.cc/download/3484087/The+Neighbors+2012+S02E18+HDTV+x264-LOL+%5Beztv%5D.torrent\"
|
1825
|
+
class=\"download_3\" title=\"Download Mirror #3\"></a><a href=\"http://www.bt-chat.com/download1.php?id=187898&type=torrent\"
|
1826
|
+
class=\"download_4\" title=\"Download Mirror #4\"></a><a href=\"http://torrage.com/torrent/01E6B06E56AE669A12045BA5036AA6763D9DE64D.torrent\"
|
1827
|
+
class=\"download_5\" title=\"Download Mirror #5\"></a><a href=\"//zoink.it/torrent/01E6B06E56AE669A12045BA5036AA6763D9DE64D.torrent\"
|
1828
|
+
class=\"download_6\" title=\"Download Mirror #6\"></a>\t </td>\n\t\t\t<td
|
1829
|
+
align=\"center\" class=\"forum_thread_post\">1d 11h </td>\n\t\t\t<td align=\"center\"
|
1830
|
+
class=\"forum_thread_post_end\"><a href=\"/forum/discuss/53195/\"><img src=\"//ezimg.it/s/1/3/chat_empty.png\"
|
1831
|
+
border=\"0\" width=\"16\" height=\"16\" alt=\"Discuss\" title=\"Discuss about
|
1832
|
+
this show\" /></a></td>\n\t\t</tr>\n\t <tr name=\"hover\" class=\"forum_header_border\">\n\t\t
|
1833
|
+
\ <td width=\"35\" class=\"forum_thread_post\"><a href=\"/shows/968/rake-us/\"><img
|
1834
|
+
src=\"//ezimg.it/s/1/3/show_info.png\" border=\"0\" alt=\"Show\" title=\"Show
|
1835
|
+
Description about Rake (US)\"></a><a href=\"http://www.tvrage.com/Rake/episodes/1065498178\"
|
1836
|
+
target=\"_blank\" title=\"More info about Rake US S01E08 HDTV x264-EXCELLENCE
|
1837
|
+
at tvrage.com\" alt=\"More info about Rake US S01E08 HDTV x264-EXCELLENCE
|
1838
|
+
at tvrage.com\"><img src=\"//ezimg.it/s/2/1/tvrage.png\" width=\"16\" height=\"16\"
|
1839
|
+
border=\"0\" /></a></td>\n\t\t\t<td class=\"forum_thread_post\">\n\t\t\t\t<a
|
1840
|
+
href=\"/ep/53194/rake-us-s01e08-hdtv-x264-excellence/\" title=\"Rake US S01E08
|
1841
|
+
HDTV x264-EXCELLENCE (308.17 MB)\" alt=\"Rake US S01E08 HDTV x264-EXCELLENCE
|
1842
|
+
(308.17 MB)\" class=\"epinfo\">Rake US S01E08 HDTV x264-EXCELLENCE</a>\n\t\t\t</td>\n\t\t
|
1843
|
+
\ <td align=\"center\" class=\"forum_thread_post\"><a href=\"magnet:?xt=urn:btih:3UG552G4JKM3ZO7FUNJKNVALO6GQH34C&dn=Rake.US.S01E08.HDTV.x264-EXCELLENCE&tr=udp://tracker.openbittorrent.com:80&tr=udp://tracker.publicbt.com:80&tr=udp://tracker.istole.it:80&tr=udp://open.demonii.com:80&tr=udp://tracker.coppersurfer.tk:80\"
|
1844
|
+
class=\"magnet\" title=\"Magnet Link\"></a><a href=\"http://getsecuredfiles.com/ez/dl/?file=Rake.US.S01E08.HDTV.x264-EXCELLENCE.torrent&url=http%3A%2F%2Fre.zoink.it%2Fg%2FDD0DDEE8DC4A99BCBBE5A352A6D40B778D03EF82\"
|
1845
|
+
target=\"_blank\" class=\"ddl\" title=\"Direct Download Link\" onclick=\"_gaq.push(['_trackEvent',
|
1846
|
+
'Sponsored', 'sponsored_index_click']);\"></a><a href=\"//re.zoink.it/DD783ed00D\"
|
1847
|
+
class=\"download_1\" title=\"Download Mirror #1\"></a><a href=\"http://piratebaytorrents.info/9770278/Rake_US_S01E08_HDTV_x264-EXCELLENCE.9770278.TPB.torrent\"
|
1848
|
+
class=\"download_2\" title=\"Download Mirror #2\"></a><a href=\"http://extratorrent.cc/download/3484082/Rake+US+S01E08+HDTV+x264-EXCELLENCE+%5Beztv%5D.torrent\"
|
1849
|
+
class=\"download_3\" title=\"Download Mirror #3\"></a><a href=\"http://www.bt-chat.com/download1.php?id=187896&type=torrent\"
|
1850
|
+
class=\"download_4\" title=\"Download Mirror #4\"></a><a href=\"http://torrage.com/torrent/DD0DDEE8DC4A99BCBBE5A352A6D40B778D03EF82.torrent\"
|
1851
|
+
class=\"download_5\" title=\"Download Mirror #5\"></a><a href=\"//zoink.it/torrent/DD0DDEE8DC4A99BCBBE5A352A6D40B778D03EF82.torrent\"
|
1852
|
+
class=\"download_6\" title=\"Download Mirror #6\"></a>\t </td>\n\t\t\t<td
|
1853
|
+
align=\"center\" class=\"forum_thread_post\">1d 11h </td>\n\t\t\t<td align=\"center\"
|
1854
|
+
class=\"forum_thread_post_end\"><a href=\"/forum/discuss/53194/\"><img src=\"//ezimg.it/s/1/3/chat_empty.png\"
|
1855
|
+
border=\"0\" width=\"16\" height=\"16\" alt=\"Discuss\" title=\"Discuss about
|
1856
|
+
this show\" /></a></td>\n\t\t</tr>\n\t <tr name=\"hover\" class=\"forum_header_border\">\n\t\t
|
1857
|
+
\ <td width=\"35\" class=\"forum_thread_post\"><a href=\"/shows/418/hawaii-five-0-2010/\"><img
|
1858
|
+
src=\"//ezimg.it/s/1/3/show_info.png\" border=\"0\" alt=\"Show\" title=\"Show
|
1859
|
+
Description about Hawaii Five-0 (2010)\"></a><a href=\"http://www.tvrage.com/Hawaii_Five-0/episodes/1065466082\"
|
1860
|
+
target=\"_blank\" title=\"More info about Hawaii Five-0 2010 S04E17 HDTV x264-LOL
|
1861
|
+
at tvrage.com\" alt=\"More info about Hawaii Five-0 2010 S04E17 HDTV x264-LOL
|
1862
|
+
at tvrage.com\"><img src=\"//ezimg.it/s/2/1/tvrage.png\" width=\"16\" height=\"16\"
|
1863
|
+
border=\"0\" /></a></td>\n\t\t\t<td class=\"forum_thread_post\">\n\t\t\t\t<a
|
1864
|
+
href=\"/ep/53193/hawaii-five-0-2010-s04e17-hdtv-x264-lol/\" title=\"Hawaii
|
1865
|
+
Five-0 2010 S04E17 HDTV x264-LOL (364.11 MB)\" alt=\"Hawaii Five-0 2010 S04E17
|
1866
|
+
HDTV x264-LOL (364.11 MB)\" class=\"epinfo\">Hawaii Five-0 2010 S04E17 HDTV
|
1867
|
+
x264-LOL</a>\n\t\t\t</td>\n\t\t <td align=\"center\" class=\"forum_thread_post\"><a
|
1868
|
+
href=\"magnet:?xt=urn:btih:DZJHPTILMDJ6HE5EVXABUQGD2CBSUGUO&dn=Hawaii.Five-0.2010.S04E17.HDTV.x264-LOL&tr=udp://tracker.openbittorrent.com:80&tr=udp://tracker.publicbt.com:80&tr=udp://tracker.istole.it:80&tr=udp://open.demonii.com:80&tr=udp://tracker.coppersurfer.tk:80\"
|
1869
|
+
class=\"magnet\" title=\"Magnet Link\"></a><a href=\"http://getsecuredfiles.com/ez/dl/?file=Hawaii.Five-0.2010.S04E17.HDTV.x264-LOL.torrent&url=http%3A%2F%2Fre.zoink.it%2Fg%2F1E5277CD0B60D3E393A4ADC01A40C3D0832A1A8E\"
|
1870
|
+
target=\"_blank\" class=\"ddl\" title=\"Direct Download Link\" onclick=\"_gaq.push(['_trackEvent',
|
1871
|
+
'Sponsored', 'sponsored_index_click']);\"></a><a href=\"//re.zoink.it/1E783ecf52\"
|
1872
|
+
class=\"download_1\" title=\"Download Mirror #1\"></a><a href=\"http://piratebaytorrents.info/9770275/Hawaii_Five-0_2010_S04E17_HDTV_x264-LOL.9770275.TPB.torrent\"
|
1873
|
+
class=\"download_2\" title=\"Download Mirror #2\"></a><a href=\"http://extratorrent.cc/download/3484080/Hawaii+Five-0+2010+S04E17+HDTV+x264-LOL+%5Beztv%5D.torrent\"
|
1874
|
+
class=\"download_3\" title=\"Download Mirror #3\"></a><a href=\"http://www.bt-chat.com/download1.php?id=187895&type=torrent\"
|
1875
|
+
class=\"download_4\" title=\"Download Mirror #4\"></a><a href=\"http://torrage.com/torrent/1E5277CD0B60D3E393A4ADC01A40C3D0832A1A8E.torrent\"
|
1876
|
+
class=\"download_5\" title=\"Download Mirror #5\"></a><a href=\"//zoink.it/torrent/1E5277CD0B60D3E393A4ADC01A40C3D0832A1A8E.torrent\"
|
1877
|
+
class=\"download_6\" title=\"Download Mirror #6\"></a>\t </td>\n\t\t\t<td
|
1878
|
+
align=\"center\" class=\"forum_thread_post\">1d 11h </td>\n\t\t\t<td align=\"center\"
|
1879
|
+
class=\"forum_thread_post_end\"><a href=\"/forum/36134/hawaii-five-0-2010-s04e17-hdtv-x264-lol/\"><img
|
1880
|
+
src=\"//ezimg.it/s/1/3/chat_messages.png\" border=\"0\" width=\"16\" height=\"16\"
|
1881
|
+
alt=\"2 comments\" title=\"2 forum comments\" /></a></td>\n\t\t</tr>\n\t <tr
|
1882
|
+
name=\"hover\" class=\"forum_header_border\">\n\t\t <td width=\"35\" class=\"forum_thread_post\"><a
|
1883
|
+
href=\"/shows/393/raising-hope/\"><img src=\"//ezimg.it/s/1/3/show_info.png\"
|
1884
|
+
border=\"0\" alt=\"Show\" title=\"Show Description about Raising Hope\"></a><a
|
1885
|
+
href=\"http://www.tvrage.com/Raising_Hope/episodes/1065500347\" target=\"_blank\"
|
1886
|
+
title=\"More info about Raising Hope S04E18 HDTV x264-EXCELLENCE at tvrage.com\"
|
1887
|
+
alt=\"More info about Raising Hope S04E18 HDTV x264-EXCELLENCE at tvrage.com\"><img
|
1888
|
+
src=\"//ezimg.it/s/2/1/tvrage.png\" width=\"16\" height=\"16\" border=\"0\"
|
1889
|
+
/></a></td>\n\t\t\t<td class=\"forum_thread_post\">\n\t\t\t\t<a href=\"/ep/53192/raising-hope-s04e18-hdtv-x264-excellence/\"
|
1890
|
+
title=\"Raising Hope S04E18 HDTV x264-EXCELLENCE (158.97 MB)\" alt=\"Raising
|
1891
|
+
Hope S04E18 HDTV x264-EXCELLENCE (158.97 MB)\" class=\"epinfo\">Raising Hope
|
1892
|
+
S04E18 HDTV x264-EXCELLENCE</a>\n\t\t\t</td>\n\t\t <td align=\"center\" class=\"forum_thread_post\"><a
|
1893
|
+
href=\"magnet:?xt=urn:btih:ILBZRAH4WKLDOOFFSZZJ4QOXV7ZPDPUR&dn=Raising.Hope.S04E18.HDTV.x264-EXCELLENCE&tr=udp://tracker.openbittorrent.com:80&tr=udp://tracker.publicbt.com:80&tr=udp://tracker.istole.it:80&tr=udp://open.demonii.com:80&tr=udp://tracker.coppersurfer.tk:80\"
|
1894
|
+
class=\"magnet\" title=\"Magnet Link\"></a><a href=\"http://getsecuredfiles.com/ez/dl/?file=Raising.Hope.S04E18.HDTV.x264-EXCELLENCE.torrent&url=http%3A%2F%2Fre.zoink.it%2Fg%2F42C39880FCB2963738A596729E41D7AFF2F1BE91\"
|
1895
|
+
target=\"_blank\" class=\"ddl\" title=\"Direct Download Link\" onclick=\"_gaq.push(['_trackEvent',
|
1896
|
+
'Sponsored', 'sponsored_index_click']);\"></a><a href=\"//re.zoink.it/42783eccC3\"
|
1897
|
+
class=\"download_1\" title=\"Download Mirror #1\"></a><a href=\"http://piratebaytorrents.info/9770274/Raising_Hope_S04E18_HDTV_x264-EXCELLENCE.9770274.TPB.torrent\"
|
1898
|
+
class=\"download_2\" title=\"Download Mirror #2\"></a><a href=\"http://extratorrent.cc/download/3484076/Raising+Hope+S04E18+HDTV+x264-EXCELLENCE+%5Beztv%5D.torrent\"
|
1899
|
+
class=\"download_3\" title=\"Download Mirror #3\"></a><a href=\"http://www.bt-chat.com/download1.php?id=187894&type=torrent\"
|
1900
|
+
class=\"download_4\" title=\"Download Mirror #4\"></a><a href=\"http://torrage.com/torrent/42C39880FCB2963738A596729E41D7AFF2F1BE91.torrent\"
|
1901
|
+
class=\"download_5\" title=\"Download Mirror #5\"></a><a href=\"//zoink.it/torrent/42C39880FCB2963738A596729E41D7AFF2F1BE91.torrent\"
|
1902
|
+
class=\"download_6\" title=\"Download Mirror #6\"></a>\t </td>\n\t\t\t<td
|
1903
|
+
align=\"center\" class=\"forum_thread_post\">1d 11h </td>\n\t\t\t<td align=\"center\"
|
1904
|
+
class=\"forum_thread_post_end\"><a href=\"/forum/discuss/53192/\"><img src=\"//ezimg.it/s/1/3/chat_empty.png\"
|
1905
|
+
border=\"0\" width=\"16\" height=\"16\" alt=\"Discuss\" title=\"Discuss about
|
1906
|
+
this show\" /></a></td>\n\t\t</tr>\n\t <tr name=\"hover\" class=\"forum_header_border\">\n\t\t
|
1907
|
+
\ <td width=\"35\" class=\"forum_thread_post\"><a href=\"/shows/953/enlisted/\"><img
|
1908
|
+
src=\"//ezimg.it/s/1/3/show_info.png\" border=\"0\" alt=\"Show\" title=\"Show
|
1909
|
+
Description about Enlisted\"></a><a href=\"http://www.tvrage.com/shows/id-34772/episodes/1065498170\"
|
1910
|
+
target=\"_blank\" title=\"More info about Enlisted S01E08 HDTV x264-EXCELLENCE
|
1911
|
+
at tvrage.com\" alt=\"More info about Enlisted S01E08 HDTV x264-EXCELLENCE
|
1912
|
+
at tvrage.com\"><img src=\"//ezimg.it/s/2/1/tvrage.png\" width=\"16\" height=\"16\"
|
1913
|
+
border=\"0\" /></a></td>\n\t\t\t<td class=\"forum_thread_post\">\n\t\t\t\t<a
|
1914
|
+
href=\"/ep/53191/enlisted-s01e08-hdtv-x264-excellence/\" title=\"Enlisted
|
1915
|
+
S01E08 HDTV x264-EXCELLENCE (183.96 MB)\" alt=\"Enlisted S01E08 HDTV x264-EXCELLENCE
|
1916
|
+
(183.96 MB)\" class=\"epinfo\">Enlisted S01E08 HDTV x264-EXCELLENCE</a>\n\t\t\t</td>\n\t\t
|
1917
|
+
\ <td align=\"center\" class=\"forum_thread_post\"><a href=\"magnet:?xt=urn:btih:HFFBLESLPXUKEOBFYMZP4BTM25745ZIN&dn=Enlisted.S01E08.HDTV.x264-EXCELLENCE&tr=udp://tracker.openbittorrent.com:80&tr=udp://tracker.publicbt.com:80&tr=udp://tracker.istole.it:80&tr=udp://open.demonii.com:80&tr=udp://tracker.coppersurfer.tk:80\"
|
1918
|
+
class=\"magnet\" title=\"Magnet Link\"></a><a href=\"http://getsecuredfiles.com/ez/dl/?file=Enlisted.S01E08.HDTV.x264-EXCELLENCE.torrent&url=http%3A%2F%2Fre.zoink.it%2Fg%2F394A15924B7DE8A23825C332FE066CD77FCEE50D\"
|
1919
|
+
target=\"_blank\" class=\"ddl\" title=\"Direct Download Link\" onclick=\"_gaq.push(['_trackEvent',
|
1920
|
+
'Sponsored', 'sponsored_index_click']);\"></a><a href=\"//re.zoink.it/39783eca4A\"
|
1921
|
+
class=\"download_1\" title=\"Download Mirror #1\"></a><a href=\"http://piratebaytorrents.info/9770267/Enlisted_S01E08_HDTV_x264-EXCELLENCE.9770267.TPB.torrent\"
|
1922
|
+
class=\"download_2\" title=\"Download Mirror #2\"></a><a href=\"http://extratorrent.cc/download/3484075/Enlisted+S01E08+HDTV+x264-EXCELLENCE+%5Beztv%5D.torrent\"
|
1923
|
+
class=\"download_3\" title=\"Download Mirror #3\"></a><a href=\"http://www.bt-chat.com/download1.php?id=187893&type=torrent\"
|
1924
|
+
class=\"download_4\" title=\"Download Mirror #4\"></a><a href=\"http://torrage.com/torrent/394A15924B7DE8A23825C332FE066CD77FCEE50D.torrent\"
|
1925
|
+
class=\"download_5\" title=\"Download Mirror #5\"></a><a href=\"//zoink.it/torrent/394A15924B7DE8A23825C332FE066CD77FCEE50D.torrent\"
|
1926
|
+
class=\"download_6\" title=\"Download Mirror #6\"></a>\t </td>\n\t\t\t<td
|
1927
|
+
align=\"center\" class=\"forum_thread_post\">1d 11h </td>\n\t\t\t<td align=\"center\"
|
1928
|
+
class=\"forum_thread_post_end\"><a href=\"/forum/36128/enlisted-s01e08-hdtv-x264-excellence/\"><img
|
1929
|
+
src=\"//ezimg.it/s/1/3/chat_messages.png\" border=\"0\" width=\"16\" height=\"16\"
|
1930
|
+
alt=\"4 comments\" title=\"4 forum comments\" /></a></td>\n\t\t</tr>\n\t <tr
|
1931
|
+
name=\"hover\" class=\"forum_header_border\">\n\t\t <td width=\"35\" class=\"forum_thread_post\"><a
|
1932
|
+
href=\"/shows/763/hannibal/\"><img src=\"//ezimg.it/s/1/3/show_info.png\"
|
1933
|
+
border=\"0\" alt=\"Show\" title=\"Show Description about Hannibal\"></a><a
|
1934
|
+
href=\"http://www.tvrage.com/Hannibal/episodes/1065492900\" target=\"_blank\"
|
1935
|
+
title=\"More info about Hannibal S02E03 720p HDTV X264-DIMENSION at tvrage.com\"
|
1936
|
+
alt=\"More info about Hannibal S02E03 720p HDTV X264-DIMENSION at tvrage.com\"><img
|
1937
|
+
src=\"//ezimg.it/s/2/1/tvrage.png\" width=\"16\" height=\"16\" border=\"0\"
|
1938
|
+
/></a></td>\n\t\t\t<td class=\"forum_thread_post\">\n\t\t\t\t<a href=\"/ep/53190/hannibal-s02e03-720p-hdtv-x264-dimension/\"
|
1939
|
+
title=\"Hannibal S02E03 720p HDTV X264-DIMENSION (752.95 MB)\" alt=\"Hannibal
|
1940
|
+
S02E03 720p HDTV X264-DIMENSION (752.95 MB)\" class=\"epinfo\">Hannibal S02E03
|
1941
|
+
720p HDTV X264-DIMENSION</a>\n\t\t\t</td>\n\t\t <td align=\"center\" class=\"forum_thread_post\"><a
|
1942
|
+
href=\"magnet:?xt=urn:btih:OMQFFHA5U4ZIAGOMYTODAFI6UJ6YJCYF&dn=Hannibal.S02E03.720p.HDTV.X264-DIMENSION&tr=udp://tracker.openbittorrent.com:80&tr=udp://tracker.publicbt.com:80&tr=udp://tracker.istole.it:80&tr=udp://open.demonii.com:80&tr=udp://tracker.coppersurfer.tk:80\"
|
1943
|
+
class=\"magnet\" title=\"Magnet Link\"></a><a href=\"http://getsecuredfiles.com/ez/dl/?file=Hannibal.S02E03.720p.HDTV.X264-DIMENSION.torrent&url=http%3A%2F%2Fre.zoink.it%2Fg%2F7320529C1DA7328019CCC4DC30151EA27D848B05\"
|
1944
|
+
target=\"_blank\" class=\"ddl\" title=\"Direct Download Link\" onclick=\"_gaq.push(['_trackEvent',
|
1945
|
+
'Sponsored', 'sponsored_index_click']);\"></a><a href=\"//re.zoink.it/73783e5c20\"
|
1946
|
+
class=\"download_1\" title=\"Download Mirror #1\"></a><a href=\"http://piratebaytorrents.info/9769770/Hannibal_S02E03_720p_HDTV_X264-DIMENSION.9769770.TPB.torrent\"
|
1947
|
+
class=\"download_2\" title=\"Download Mirror #2\"></a><a href=\"http://extratorrent.cc/download/3484055/Hannibal+S02E03+720p+HDTV+X264-DIMENSION+%5Beztv%5D.torrent\"
|
1948
|
+
class=\"download_3\" title=\"Download Mirror #3\"></a><a href=\"http://www.bt-chat.com/download1.php?id=187892&type=torrent\"
|
1949
|
+
class=\"download_4\" title=\"Download Mirror #4\"></a><a href=\"http://torrage.com/torrent/7320529C1DA7328019CCC4DC30151EA27D848B05.torrent\"
|
1950
|
+
class=\"download_5\" title=\"Download Mirror #5\"></a><a href=\"//zoink.it/torrent/7320529C1DA7328019CCC4DC30151EA27D848B05.torrent\"
|
1951
|
+
class=\"download_6\" title=\"Download Mirror #6\"></a>\t </td>\n\t\t\t<td
|
1952
|
+
align=\"center\" class=\"forum_thread_post\">1d 11h </td>\n\t\t\t<td align=\"center\"
|
1953
|
+
class=\"forum_thread_post_end\"><a href=\"/forum/discuss/53190/\"><img src=\"//ezimg.it/s/1/3/chat_empty.png\"
|
1954
|
+
border=\"0\" width=\"16\" height=\"16\" alt=\"Discuss\" title=\"Discuss about
|
1955
|
+
this show\" /></a></td>\n\t\t</tr>\n\t <tr name=\"hover\" class=\"forum_header_border\">\n\t\t
|
1956
|
+
\ <td width=\"35\" class=\"forum_thread_post\"><a href=\"/shows/768/banshee/\"><img
|
1957
|
+
src=\"//ezimg.it/s/1/3/show_info.png\" border=\"0\" alt=\"Show\" title=\"Show
|
1958
|
+
Description about Banshee\"></a><a href=\"http://www.tvrage.com/Banshee/episodes/1065397504\"
|
1959
|
+
target=\"_blank\" title=\"More info about Banshee S02E10 720p HDTV x264-KILLERS
|
1960
|
+
at tvrage.com\" alt=\"More info about Banshee S02E10 720p HDTV x264-KILLERS
|
1961
|
+
at tvrage.com\"><img src=\"//ezimg.it/s/2/1/tvrage.png\" width=\"16\" height=\"16\"
|
1962
|
+
border=\"0\" /></a></td>\n\t\t\t<td class=\"forum_thread_post\">\n\t\t\t\t<a
|
1963
|
+
href=\"/ep/53189/banshee-s02e10-720p-hdtv-x264-killers/\" title=\"Banshee
|
1964
|
+
S02E10 720p HDTV x264-KILLERS (1.51 GB)\" alt=\"Banshee S02E10 720p HDTV x264-KILLERS
|
1965
|
+
(1.51 GB)\" class=\"epinfo\">Banshee S02E10 720p HDTV x264-KILLERS</a>\n\t\t\t</td>\n\t\t
|
1966
|
+
\ <td align=\"center\" class=\"forum_thread_post\"><a href=\"magnet:?xt=urn:btih:NI3V6D2UGNMWSZWBN4FPJ3DKBYM76AYC&dn=Banshee.S02E10.720p.HDTV.x264-KILLERS&tr=udp://tracker.openbittorrent.com:80&tr=udp://tracker.publicbt.com:80&tr=udp://tracker.istole.it:80&tr=udp://open.demonii.com:80&tr=udp://tracker.coppersurfer.tk:80\"
|
1967
|
+
class=\"magnet\" title=\"Magnet Link\"></a><a href=\"http://getsecuredfiles.com/ez/dl/?file=Banshee.S02E10.720p.HDTV.x264-KILLERS.torrent&url=http%3A%2F%2Fre.zoink.it%2Fg%2F6A375F0F5433596966C16F0AF4EC6A0E19FF0302\"
|
1968
|
+
target=\"_blank\" class=\"ddl\" title=\"Direct Download Link\" onclick=\"_gaq.push(['_trackEvent',
|
1969
|
+
'Sponsored', 'sponsored_index_click']);\"></a><a href=\"//re.zoink.it/6A783e2b37\"
|
1970
|
+
class=\"download_1\" title=\"Download Mirror #1\"></a><a href=\"http://piratebaytorrents.info/9769641/Banshee_S02E10_720p_HDTV_x264-KILLERS.9769641.TPB.torrent\"
|
1971
|
+
class=\"download_2\" title=\"Download Mirror #2\"></a><a href=\"http://extratorrent.cc/download/3484047/Banshee+S02E10+720p+HDTV+x264-KILLERS+%5Beztv%5D.torrent\"
|
1972
|
+
class=\"download_3\" title=\"Download Mirror #3\"></a><a href=\"http://www.bt-chat.com/download1.php?id=187891&type=torrent\"
|
1973
|
+
class=\"download_4\" title=\"Download Mirror #4\"></a><a href=\"http://torrage.com/torrent/6A375F0F5433596966C16F0AF4EC6A0E19FF0302.torrent\"
|
1974
|
+
class=\"download_5\" title=\"Download Mirror #5\"></a><a href=\"//zoink.it/torrent/6A375F0F5433596966C16F0AF4EC6A0E19FF0302.torrent\"
|
1975
|
+
class=\"download_6\" title=\"Download Mirror #6\"></a>\t </td>\n\t\t\t<td
|
1976
|
+
align=\"center\" class=\"forum_thread_post\">1d 12h </td>\n\t\t\t<td align=\"center\"
|
1977
|
+
class=\"forum_thread_post_end\"><a href=\"/forum/discuss/53189/\"><img src=\"//ezimg.it/s/1/3/chat_empty.png\"
|
1978
|
+
border=\"0\" width=\"16\" height=\"16\" alt=\"Discuss\" title=\"Discuss about
|
1979
|
+
this show\" /></a></td>\n\t\t</tr>\n\t <tr name=\"hover\" class=\"forum_header_border\">\n\t\t
|
1980
|
+
\ <td width=\"35\" class=\"forum_thread_post\"><a href=\"/shows/821/jonathan-creek/\"><img
|
1981
|
+
src=\"//ezimg.it/s/1/3/show_info.png\" border=\"0\" alt=\"Show\" title=\"Show
|
1982
|
+
Description about Jonathan Creek\"></a><a href=\"http://www.tvrage.com/shows/id-4073/episodes/1065499380\"
|
1983
|
+
target=\"_blank\" title=\"More info about Jonathan Creek S05E03 HDTV x264-TLA
|
1984
|
+
at tvrage.com\" alt=\"More info about Jonathan Creek S05E03 HDTV x264-TLA
|
1985
|
+
at tvrage.com\"><img src=\"//ezimg.it/s/2/1/tvrage.png\" width=\"16\" height=\"16\"
|
1986
|
+
border=\"0\" /></a></td>\n\t\t\t<td class=\"forum_thread_post\">\n\t\t\t\t<a
|
1987
|
+
href=\"/ep/53188/jonathan-creek-s05e03-hdtv-x264-tla/\" title=\"Jonathan Creek
|
1988
|
+
S05E03 HDTV x264-TLA (401.61 MB)\" alt=\"Jonathan Creek S05E03 HDTV x264-TLA
|
1989
|
+
(401.61 MB)\" class=\"epinfo\">Jonathan Creek S05E03 HDTV x264-TLA</a>\n\t\t\t</td>\n\t\t
|
1990
|
+
\ <td align=\"center\" class=\"forum_thread_post\"><a href=\"magnet:?xt=urn:btih:WZ2L2TZXWYHLOEXWGB4CEKJALMU2YBGH&dn=Jonathan.Creek.S05E03.HDTV.x264-TLA&tr=udp://tracker.openbittorrent.com:80&tr=udp://tracker.publicbt.com:80&tr=udp://tracker.istole.it:80&tr=udp://open.demonii.com:80&tr=udp://tracker.coppersurfer.tk:80\"
|
1991
|
+
class=\"magnet\" title=\"Magnet Link\"></a><a href=\"http://getsecuredfiles.com/ez/dl/?file=Jonathan.Creek.S05E03.HDTV.x264-TLA.torrent&url=http%3A%2F%2Fre.zoink.it%2Fg%2FB674BD4F37B60EB712F630782229205B29AC04C7\"
|
1992
|
+
target=\"_blank\" class=\"ddl\" title=\"Direct Download Link\" onclick=\"_gaq.push(['_trackEvent',
|
1993
|
+
'Sponsored', 'sponsored_index_click']);\"></a><a href=\"//re.zoink.it/B676bedb74\"
|
1994
|
+
class=\"download_1\" title=\"Download Mirror #1\"></a><a href=\"http://piratebaytorrents.info/9769291/Jonathan_Creek_S05E03_HDTV_x264-TLA.9769291.TPB.torrent\"
|
1995
|
+
class=\"download_2\" title=\"Download Mirror #2\"></a><a href=\"http://extratorrent.cc/download/3483998/Jonathan+Creek+S05E03+HDTV+x264-TLA+%5Beztv%5D.torrent\"
|
1996
|
+
class=\"download_3\" title=\"Download Mirror #3\"></a><a href=\"http://torrage.com/torrent/B674BD4F37B60EB712F630782229205B29AC04C7.torrent\"
|
1997
|
+
class=\"download_4\" title=\"Download Mirror #4\"></a><a href=\"//zoink.it/torrent/B674BD4F37B60EB712F630782229205B29AC04C7.torrent\"
|
1998
|
+
class=\"download_5\" title=\"Download Mirror #5\"></a>\t </td>\n\t\t\t<td
|
1999
|
+
align=\"center\" class=\"forum_thread_post\">1d 13h </td>\n\t\t\t<td align=\"center\"
|
2000
|
+
class=\"forum_thread_post_end\"><a href=\"/forum/discuss/53188/\"><img src=\"//ezimg.it/s/1/3/chat_empty.png\"
|
2001
|
+
border=\"0\" width=\"16\" height=\"16\" alt=\"Discuss\" title=\"Discuss about
|
2002
|
+
this show\" /></a></td>\n\t\t</tr>\n\t</table>\n\t<table width=\"950\" border=\"0\"
|
2003
|
+
align=\"center\">\n\t\t<tr>\n\t\t\t<td width=\"150\"></td>\n\t\t\t<td align=\"center\">\n\t\t\t\tDisplay:
|
2004
|
+
<a href=\"/sort/50/\">50 Releases</a> | <a href=\"/sort/100/\">100
|
2005
|
+
Releases</a>\n\t\t\t</td>\n\t\t\t<td align=\"right\"><a href=\"/page_1\">
|
2006
|
+
next page</a> >></td>\n\t\t</tr>\n\t</table>\n</table>\t\t<div id=\"gap\"></div>\n\t\t<div
|
2007
|
+
id=\"divider\"></div>\n\t\t<div id=\"gap\"></div>\n\t\t<center>\n\t\t<a href=\"http://www.kopimi.com/kopimi/\"
|
2008
|
+
target=\"_blank\"><img src=\"//ezimg.it/s/1/2/kopimi.png\" width=\"80\" height=\"15\"
|
2009
|
+
border=\"0\" /></a>\n\t\t<a href=\"http://bitsnoop.com/\" target=\"_blank\"><img
|
2010
|
+
src=\"//ezimg.it/s/1/2/bitsnoop.png\" width=\"80\" height=\"15\" border=\"0\"
|
2011
|
+
/></a>\n\t\t<a href=\"http://mvgroup.org/\" target=\"_blank\"><img src=\"//ezimg.it/s/1/2/mvgroup.png\"
|
2012
|
+
width=\"80\" height=\"15\" border=\"0\" /></a>\n\t\t<a href=\"http://www.bt-chat.com/\"
|
2013
|
+
target=\"_blank\"><img src=\"//ezimg.it/s/1/2/btchat.png\" width=\"80\" height=\"15\"
|
2014
|
+
border=\"0\" /></a>\n\t\t<a href=\"//zoink.it/\" target=\"_blank\"><img src=\"//ezimg.it/s/1/2/zoinkit.png\"
|
2015
|
+
width=\"80\" height=\"15\" border=\"0\" /></a>\n\t\t<a href=\"http://www.torrents.net/\"
|
2016
|
+
target=\"_blank\"><img src=\"//ezimg.it/s/1/2/torrentsnet.png\" width=\"80\"
|
2017
|
+
height=\"15\" border=\"0\" /></a>\n\t\t<a href=\"/forum/11061/eztv-ssl-how-to/\"><img
|
2018
|
+
src=\"//ezimg.it/s/1/2/ssl_off.png\" width=\"80\" height=\"15\" border=\"0\"
|
2019
|
+
/></a>\n\t\t<a href=\"http://ipv6-test.com/validate.php?url=referer\"><img
|
2020
|
+
src=\"//ezimg.it/s/1/2/ipv6.png\" width=\"80\" height=\"15\" alt=\"ipv6 ready\"
|
2021
|
+
title=\"ipv6 ready\" border=\"0\" /></a>\n\t\t<a href=\"//ezrss.it/\" target=\"_blank\"><img
|
2022
|
+
src=\"//ezimg.it/s/1/2/ezrssit.png\" width=\"80\" height=\"15\" border=\"0\"
|
2023
|
+
/></a>\n\t\t</center>\n\t</div>\n\t\t</body>\n</html>"
|
2024
|
+
http_version:
|
2025
|
+
recorded_at: Mon, 17 Mar 2014 13:16:14 GMT
|
2026
|
+
recorded_with: VCR 2.8.0
|