fix(source): remove PrimeWire

they started to limit redirect url resolve requests to one per second
This commit is contained in:
WebStreamr 2025-10-13 10:33:16 +00:00
parent cf1f3e9eed
commit a42edcd438
No known key found for this signature in database
70 changed files with 3 additions and 5707 deletions

View file

@ -1,37 +0,0 @@
import { createTestContext } from '../test';
import { FetcherMock, ImdbId } from '../utils';
import { PrimeWire } from './PrimeWire';
const ctx = createTestContext({ en: 'on' });
describe('PrimeWire', () => {
let source: PrimeWire;
beforeEach(() => {
source = new PrimeWire(new FetcherMock(`${__dirname}/__fixtures__/PrimeWire`));
});
test('handle non-existent movie gracefully', async () => {
const streams = await source.handle(ctx, 'movie', new ImdbId('tt12345678', undefined, undefined));
expect(streams).toHaveLength(0);
});
test('handle non-existent episode gracefully', async () => {
const streams = await source.handle(ctx, 'series', new ImdbId('tt18546730', 99, 99));
expect(streams).toHaveLength(0);
});
test('handle imdb dead city s2e5', async () => {
const streams = await source.handle(ctx, 'series', new ImdbId('tt18546730', 2, 5));
expect(streams).toMatchSnapshot();
});
test('handle el camino', async () => {
const streams = await source.handle(ctx, 'series', new ImdbId('tt9243946', undefined, undefined));
expect(streams).toMatchSnapshot();
// Should be using the redirectUrlCache
const streams2 = await source.handle(ctx, 'series', new ImdbId('tt9243946', undefined, undefined));
expect(streams2).toMatchSnapshot();
});
});

View file

@ -1,136 +0,0 @@
import crypto from 'crypto';
// eslint-disable-next-line import/no-named-as-default
import KeyvSqlite from '@keyv/sqlite';
import bytes from 'bytes';
import { Cacheable, CacheableMemory, Keyv } from 'cacheable';
import * as cheerio from 'cheerio';
import { ContentType } from 'stremio-addon-sdk';
import { Context, CountryCode } from '../types';
import { Fetcher, getCacheDir, getImdbId, Id, ImdbId } from '../utils';
import { Source, SourceResult } from './Source';
interface PrimeSrcResponsePartial {
servers: {
name: string;
key: string;
file_size: string | null;
file_name: string | null;
}[];
}
export class PrimeWire extends Source {
public readonly id = 'primewire';
public readonly label = 'PrimeWire';
public readonly contentTypes: ContentType[] = ['movie', 'series'];
public readonly countryCodes: CountryCode[] = [CountryCode.en];
public readonly baseUrl = 'https://www.primewire.tf';
private readonly primeSrcBaseUrl = 'https://primesrc.me';
private readonly fetcher: Fetcher;
private readonly redirectUrlCache = new Cacheable({
primary: new Keyv({ store: new CacheableMemory({ lruSize: 1024 }) }),
secondary: new Keyv(new KeyvSqlite(`sqlite://${getCacheDir()}/webstreamr-primewire-redirect-url-cache.sqlite`)),
});
public constructor(fetcher: Fetcher) {
super();
this.fetcher = fetcher;
}
public async handleInternal(ctx: Context, _type: string, id: Id): Promise<SourceResult[]> {
const imdbId = await getImdbId(ctx, this.fetcher, id);
// We need any non-protected entrypoint to grab the app.js
const html = await this.fetcher.text(ctx, new URL('/legal', this.baseUrl));
const appJsMatch = html.match(/src="(.*?app-.*\.js.*?)"/) as string[];
const appJs = await this.fetcher.text(ctx, new URL(appJsMatch[1] as string, this.baseUrl));
const pageUrl = await this.fetchPageUrl(ctx, appJs, imdbId);
if (!pageUrl) {
return [];
}
const pageIdMatch = pageUrl.pathname.match(/\/([0-9]{2,})/) as string[];
const pageId = pageIdMatch[1];
const primeSrcUrl = new URL(`/api/v1/s?s_id=${pageId}&type=movie`, this.primeSrcBaseUrl);
if (imdbId.season) {
const episodeId = await this.fetchEpisodeId(ctx, pageUrl, imdbId);
if (!episodeId) {
return [];
}
primeSrcUrl.searchParams.set('e_id', `${episodeId}`);
primeSrcUrl.searchParams.set('type', 'tv');
}
const primeSrcResponse = await this.fetcher.json(ctx, primeSrcUrl, { headers: { Referer: pageUrl.origin } }) as PrimeSrcResponsePartial;
const linksTokenMatch = appJs.match(/t="(0\.x.*?)"/) as string[];
const linksToken = linksTokenMatch[1] as string;
return Promise.all(
primeSrcResponse.servers.map(async ({ key, file_name, file_size }) => {
const redirectUrl = new URL(`/links/gos/${key}`, this.baseUrl);
let targetUrlHref = await this.redirectUrlCache.get<string>(redirectUrl.href);
/* istanbul ignore if */
if (!targetUrlHref) {
const linkFetchUrl = new URL(redirectUrl.href.replace('/gos/', '/go/'));
linkFetchUrl.searchParams.set('token', linksToken);
targetUrlHref = (await this.fetcher.json(ctx, linkFetchUrl))['link'] as string;
await this.redirectUrlCache.set<string>(redirectUrl.href, targetUrlHref);
}
return {
url: new URL(targetUrlHref),
meta: {
countryCodes: [CountryCode.en],
referer: pageUrl.origin,
...(file_name && { title: file_name }),
...(file_size && { bytes: bytes.parse(file_size) as number }),
},
};
}),
);
};
private readonly fetchPageUrl = async (ctx: Context, appJs: string, imdbId: ImdbId): Promise<URL | undefined> => {
const sha1SuffixMatch = appJs.match(/s\.value\+"(.*?)"/) as string[];
const ds = crypto.createHash('sha1')
.update(imdbId.id + sha1SuffixMatch[1])
.digest('hex')
.slice(0, 10);
const searchResults = await this.fetcher.text(ctx, new URL(`/filter?s=${encodeURIComponent(imdbId.id)}&ds=${encodeURIComponent(ds)}`, this.baseUrl));
const $ = cheerio.load(searchResults);
return $('.index_item a')
.map((_i, el) => new URL($(el).attr('href') as string, this.baseUrl))
.get(0);
};
private readonly fetchEpisodeId = async (ctx: Context, pageUrl: URL, imdbId: ImdbId): Promise<number | undefined> => {
const pageHtml = await this.fetcher.text(ctx, pageUrl);
const $ = cheerio.load(pageHtml);
return $(`div[data-id="${imdbId.season}"]`)
.children(`.tv_episode_item:nth-child(${imdbId.episode})`)
.children('.episode-checkbox')
.map((_i, el) => parseInt($(el).val() as string))
.get(0);
};
}

View file

@ -1 +0,0 @@
{"servers":[{"name":"Streamtape","key":"IsbCY","file_size":"1.2 GB","file_name":"El.Camino.A.Breaking.Bad.Movie.2019.1080p.WEBRip.x264 YTS.LT.mp4"},{"name":"Streamtape","key":"_f2fA","file_size":"1.2 GB","file_name":"El.Camino.A.Breaking.Bad.Movie.2019.1080p.WEBRip.x264 YTS.LT.mp4"},{"name":"Filelions","key":"rLct3","file_size":null,"file_name":null},{"name":"Filelions","key":"pEVxr","file_size":null,"file_name":null},{"name":"Voe","key":"rE5wr","file_size":"1.1 GB","file_name":"El.Camino.A.Breaking.Bad.Movie.2019.720p.BluRay.x264.AAC-[YTS.MX].mp4"},{"name":"Voe","key":"cFpdE","file_size":"1.1 GB","file_name":"El Camino A Breaking Bad Movie 2019 720p BluRay x264 AAC-YTS MX.mp4"},{"name":"Voe","key":"FAzyt","file_size":"1.1 GB","file_name":"El Camino A Breaking Bad Movie 2019 720p BluRay x264 AAC-YTS MX.mp4"},{"name":"Mixdrop","key":"CyrR4","file_size":"2 GB","file_name":"El.Camino.A.Breaking.Bad.Movie.2019.720p.BluRay.x264.AAC-[YTS.MX].mp4"},{"name":"Mixdrop","key":"XwFmZ","file_size":"2 GB","file_name":"El Camino A Breaking Bad Movie 2019 HDRip AC3-EVO.mp4"},{"name":"Mixdrop","key":"pLBKU","file_size":"2 GB","file_name":"El Camino A Breaking Bad Movie 2019 720p BluRay x264 AAC-YTS MX.mp4"},{"name":"Dood","key":"Plx_D","file_size":"1.2 GB","file_name":"El Camino A Breaking Bad Movie 2019 1080p WEBRip YTS LT"},{"name":"Dood","key":"dltpm","file_size":"1.1 GB","file_name":"El Camino A Breaking Bad Movie 2019 720p BluRay AAC-YTS MX"},{"name":"Dood","key":"CumXE","file_size":"1.1 GB","file_name":"El Camino A Breaking Bad Movie 2019 720p BluRay AAC-[YTS MX]"},{"name":"Streamwish","key":"oVw_n","file_size":null,"file_name":null}],"info":{"tmdb_image":"/ePXuKdXZuJx8hHMNr2yM4jY2L7Z.jpg","tmdb_backdrop":"https://imgproxy.primesrc.me/80oiPA4QZGpwIjufUB8Y4qIew-z8uCeiIsNQMbRk6-o/rs:fit:1000:10000:false/aHR0cHM6Ly9pbWFnZS50bWRiLm9yZy90L3AvdzEyODAva3Qya3k4eWZ5S2NYeUU2RWRDV0k3Y3JpOWRLLmpwZw","title":"El Camino: A Breaking Bad Movie","status":null,"release_date":"2019-10-11","description":"Finally free from torture and slavery at the hands of Tod's uncle Jack, and from Mr. White, Jesse must escape demons from his past. He's on the run from a police manhunt, with his only hope of escape being Saul Goodman's hoover guy, Ed Galbraith. A man who for the right price, can give you a new identity and a fresh start. Jesse is racing against the clock, with help from his crew, avoiding capture to get enough money together to buy a 'new dust filter for his Hoover MaxExtract PressurePro model', a new life."}}

View file

@ -1 +0,0 @@
{"servers":[{"name":"Bigwarp","key":"2jvy9","file_size":null,"file_name":null},{"name":"Bigwarp","key":"LBX09","file_size":null,"file_name":null},{"name":"Bigwarp","key":"PLj4s","file_size":null,"file_name":null},{"name":"PrimeVid","key":"jDCGx","file_size":null,"file_name":null},{"name":"Filelions","key":"U36xr","file_size":null,"file_name":null},{"name":"Filelions","key":"v5JPj","file_size":null,"file_name":null},{"name":"Filelions","key":"STTAR","file_size":null,"file_name":null},{"name":"Filelions","key":"le1S7","file_size":null,"file_name":null},{"name":"Voe","key":"EJaZm","file_size":"406.6 MB","file_name":"The.Walking.Dead.Dead.City.S02E05.The.Bird.Always.Knows.720p.AMZN.WEB-DL.DDP5.1.H.264-NTb.mkv"},{"name":"Voe","key":"amuYo","file_size":"406.6 MB","file_name":"The.Walking.Dead.Dead.City.S02E05.The.Bird.Always.Knows.720p.AMZN.WEB-DL.DDP5.1.H.264-NTb.mkv"},{"name":"Voe","key":"4tLpZ","file_size":"424.4 MB","file_name":"The.Walking.Dead.Dead.City.S02E05.The.Bird.Always.Knows.720p.AMZN.WEB-DL.DDP5.1.H.264-NTb.mp4"},{"name":"Mixdrop","key":"KJZRh","file_size":"2 GB","file_name":"The.Walking.Dead.Dead.City.S02E05.The.Bird.Always.Knows.720p.AMZN.WEB-DL.DDP5.1.H.264-NTb.mp4"},{"name":"Mixdrop","key":"LA0md","file_size":"2 GB","file_name":"The.Walking.Dead.Dead.City.S02E05.The.Bird.Always.Knows.720p.AMZN.WEB-DL.DDP5.1.H.264-NTb.mp4"},{"name":"Mixdrop","key":"PLWrd","file_size":"2 GB","file_name":"The.Walking.Dead.Dead.City.S02E05.The.Bird.Always.Knows.720p.AMZN.WEB-DL.DDP5.1.H.264-NTb.mkv.mp4"},{"name":"Dood","key":"AhLrm","file_size":null,"file_name":null},{"name":"Dood","key":"gum1X","file_size":null,"file_name":null},{"name":"Dood","key":"i4Ils","file_size":null,"file_name":null},{"name":"Dood","key":"yy0yS","file_size":null,"file_name":null},{"name":"Streamwish","key":"GQeD_","file_size":null,"file_name":null},{"name":"Streamwish","key":"DX2MX","file_size":null,"file_name":null},{"name":"Streamwish","key":"wIpyb","file_size":null,"file_name":null},{"name":"Savefiles","key":"IzjO6","file_size":null,"file_name":"The Walking Dead Dead City S02E05 The Bird Always Knows 720p AMZN WEB-DL DDP5 1 H 264-NTb mkv"},{"name":"Filemoon","key":"oPkmy","file_size":null,"file_name":"The Walking Dead Dead City S02E05 The Bird Always Knows 720p AMZN WEB-DL DDP5 1 H 264-NTb mkv"},{"name":"Filemoon","key":"lRJk8","file_size":null,"file_name":"The Walking Dead Dead City S02E05 The Bird Always Knows 720p AMZN WEB-DL DDP5 1 H 264-NTb"},{"name":"Vidmoly","key":"tgcYa","file_size":null,"file_name":null},{"name":"Vidmoly","key":"Y7aNA","file_size":null,"file_name":null},{"name":"Luluvdoo","key":"mlaaM","file_size":null,"file_name":"The Walking Dead Dead City S02E05 The Bird Always Knows 720p AMZN WEB-DL DDP5 1 H 264-NTb"},{"name":"Filegram","key":"eodg5","file_size":null,"file_name":null},{"name":"Filegram","key":"HGxM6","file_size":null,"file_name":null},{"name":"Filegram","key":"Bodj0","file_size":null,"file_name":null}],"info":{"tmdb_image":"/wq3vuQzQgbS83zX3malAFWMsSwX.jpg","tmdb_backdrop":"https://imgproxy.primesrc.me/siFpa6sroHOfWGwyqkQ88GPk1BvVCgyZXlsLkI_82Ho/rs:fit:1000:10000:false/aHR0cHM6Ly9pbWFnZS50bWRiLm9yZy90L3AvdzEyODAvNFZUbVFhVDFSZXAyakxNeVBPSW1ZYXNDdmpwLmpwZw","title":"The Walking Dead: Dead City","status":"Running","release_date":"2023-06-15","episode":{"title":"The Bird Always Knows","season":2,"release_date":"2025-06-01","episode":5,"description":"<p>Negan makes some big moves, while Maggie takes matters into her own hands.</p>"},"description":"<p><b>The Walking Dead: Dead City</b> envisions the popular Maggie and Negan characters travelling into a post-apocalyptic Manhattan long ago cut off from the mainland. The crumbling city is filled with the dead and denizens who have made New York City their own world full of anarchy, danger, beauty, and terror.</p>"}}

View file

@ -1,5 +0,0 @@
{
"link": "https://dood.watch/d/1qfuy5yiq4r6",
"host_id": 42,
"host": "dood.watch"
}

View file

@ -1,5 +0,0 @@
{
"link": "https://streamwish.to/h9p9qqgpq2lw",
"host_id": 65,
"host": "streamwish.to"
}

View file

@ -1,5 +0,0 @@
{
"link": "https://filelions.to/f/wayeo7l1cw7d",
"host_id": 64,
"host": "filelions.to"
}

View file

@ -1,5 +0,0 @@
{
"link": "https://orca.streamcasthub.store/?a=4f560fbe52#rc6mf",
"host_id": 71,
"host": "primevid.click"
}

View file

@ -1,5 +0,0 @@
{
"link": "https://bigwarp.cc/aazhpuex9ppj",
"host_id": 67,
"host": "bigwarp.cc"
}

View file

@ -1,5 +0,0 @@
{
"link": "http://vidmoly.me/w/okcwblnaqw3t",
"host_id": 61,
"host": "vidmoly.me"
}

View file

@ -1,5 +0,0 @@
{
"link": "https://dood.watch/d/reslxv9siz41",
"host_id": 42,
"host": "dood.watch"
}

View file

@ -1,5 +0,0 @@
{
"link": "https://mixdrop.ag/f/4njk6691b1k60d",
"host_id": 29,
"host": "mixdrop.ag"
}

View file

@ -1,5 +0,0 @@
{
"link": "https://voe.sx/paqi7qqku3zi",
"host_id": 48,
"host": "voe.sx"
}

View file

@ -1,5 +0,0 @@
{
"link": "https://voe.sx/te40pmzra8du",
"host_id": 48,
"host": "voe.sx"
}

View file

@ -1,5 +0,0 @@
{
"link": "https://mixdrop.ag/f/9wvz9gp3b3q1llk",
"host_id": 29,
"host": "mixdrop.ag"
}

View file

@ -1,5 +0,0 @@
{
"link": "https://filelions.to/f/0i0j0qz5o478",
"host_id": 64,
"host": "filelions.to"
}

View file

@ -1,5 +0,0 @@
{
"link": "http://vidmoly.me/w/46bi0sec0966",
"host_id": 61,
"host": "vidmoly.me"
}

View file

@ -1,5 +0,0 @@
{
"link": "https://luluvdoo.com/d/au00sj11vqku",
"host_id": 68,
"host": "luluvdoo.com"
}

View file

@ -1,5 +0,0 @@
{
"link": "https://dood.watch/d/8odyvc9bre16",
"host_id": 42,
"host": "dood.watch"
}

View file

@ -1,5 +0,0 @@
{
"link": "https://voe.sx/y8lrmf2t7jhp",
"host_id": 48,
"host": "voe.sx"
}

View file

@ -1,5 +0,0 @@
{
"link": "https://voe.sx/xwhvakkexuob",
"host_id": 48,
"host": "voe.sx"
}

View file

@ -1,5 +0,0 @@
{
"link": "https://bigwarp.cc/u66q6mybilfa",
"host_id": 67,
"host": "bigwarp.cc"
}

View file

@ -1,5 +0,0 @@
{
"link": "https://mixdrop.ag/f/nlpj3q3ran17rv",
"host_id": 29,
"host": "mixdrop.ag"
}

View file

@ -1,5 +0,0 @@
{
"link": "https://filelions.to/f/odssr9dyjx5n",
"host_id": 64,
"host": "filelions.to"
}

View file

@ -1,5 +0,0 @@
{
"link": "https://streamtape.com/v/qMVMPa49M1hz8BR/El.Camino.A.Breaking.Bad.Movie.2019.1080p.WEBRip.x264_YTS.LT.mp4",
"host_id": 43,
"host": "streamtape.com"
}

View file

@ -1,5 +0,0 @@
{
"link": "https://savefiles.com/i0bj9gazequy",
"host_id": 69,
"host": "savefiles.com"
}

View file

@ -1,5 +0,0 @@
{
"link": "https://streamtape.com/v/6QLoLq0O8DtObX",
"host_id": 43,
"host": "streamtape.com"
}

View file

@ -1,5 +0,0 @@
{
"link": "https://filelions.to/f/eqmzrkv5kf5s",
"host_id": 64,
"host": "filelions.to"
}

View file

@ -1,5 +0,0 @@
{
"link": "https://streamwish.to/s986lkdy8mb5",
"host_id": 65,
"host": "streamwish.to"
}

View file

@ -1,5 +0,0 @@
{
"link": "https://filemoon.sx/d/ftowmfa7f0ge/The.Walking.Dead.Dead.City.S02E05.The.Bird.Always.Knows.720p.AMZN.WEB-DL.DDP5.1.H.264-NTb.mkv",
"host_id": 66,
"host": "filemoon.sx"
}

View file

@ -1,5 +0,0 @@
{
"link": "https://filelions.to/f/bv4b7tl9u1ij",
"host_id": 64,
"host": "filelions.to"
}

View file

@ -1,5 +0,0 @@
{
"link": "https://filegram.to/6q8gctbf79gc",
"host_id": 70,
"host": "filegram.to"
}

View file

@ -1,5 +0,0 @@
{
"link": "https://dood.watch/d/j2pa25q11pdu",
"host_id": 42,
"host": "dood.watch"
}

View file

@ -1,5 +0,0 @@
{
"link": "https://dood.watch/d/9lw62yyosxc0",
"host_id": 42,
"host": "dood.watch"
}

View file

@ -1,5 +0,0 @@
{
"link": "https://streamwish.to/09q73jf6t6jw",
"host_id": 65,
"host": "streamwish.to"
}

View file

@ -1,5 +0,0 @@
{
"link": "https://bigwarp.cc/4tb37obzt6re",
"host_id": 67,
"host": "bigwarp.cc"
}

View file

@ -1,5 +0,0 @@
{
"link": "https://mixdrop.ag/f/q1pz4k94uxxkgvo",
"host_id": 29,
"host": "mixdrop.ag"
}

View file

@ -1,5 +0,0 @@
{
"link": "https://filelions.to/f/fpru8wthtsf4",
"host_id": 64,
"host": "filelions.to"
}

View file

@ -1,5 +0,0 @@
{
"link": "https://voe.sx/grsvpdbxvw3e",
"host_id": 48,
"host": "voe.sx"
}

View file

@ -1,5 +0,0 @@
{
"link": "https://streamwish.to/jult1lcvqjlt",
"host_id": 65,
"host": "streamwish.to"
}

View file

@ -1,5 +0,0 @@
{
"link": "https://filegram.to/erapbfgcdguq",
"host_id": 70,
"host": "filegram.to"
}

View file

@ -1,5 +0,0 @@
{
"link": "https://dood.watch/d/sn87i3ru7plx",
"host_id": 42,
"host": "dood.watch"
}

View file

@ -1,5 +0,0 @@
{
"link": "https://mixdrop.ag/f/ql0qrxnjb89nx8",
"host_id": 29,
"host": "mixdrop.ag"
}

View file

@ -1,5 +0,0 @@
{
"link": "https://filemoon.sx/d/8wllnog0cyl7",
"host_id": 66,
"host": "filemoon.sx"
}

View file

@ -1,5 +0,0 @@
{
"link": "https://filegram.to/6yuyz0dgqu05",
"host_id": 70,
"host": "filegram.to"
}

View file

@ -1,5 +0,0 @@
{
"link": "https://voe.sx/ysimllytd3zo",
"host_id": 48,
"host": "voe.sx"
}

View file

@ -1,5 +0,0 @@
{
"link": "https://dood.watch/d/05fm25orfeux",
"host_id": 42,
"host": "dood.watch"
}

View file

@ -1,5 +0,0 @@
{
"link": "https://mixdrop.ag/f/2bnmi",
"host_id": 29,
"host": "mixdrop.ag"
}

View file

@ -1,594 +0,0 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html lang="en-US" itemscope itemtype="http://schema.org/WebPage">
<head>
<script>
window.appTrigger = document.createEvent("Event");
window.appTrigger.initEvent("appTrigger", true, true);
</script>
<script async type="text/javascript" src="/js/app-2dec7320ca90cd70f913d51050d73c10.js?vsn=d"></script>
<title>
Movies and TV Shows matching &quot;tt12345678&quot; | PrimeWire
</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<meta name="robots" content="ALL,INDEX,FOLLOW">
<meta name="revisit-after" content="1 days">
<meta name="viewport" content="width=device-width, initial-scale=1">
<script>
var width = (window.innerWidth > 0) ? window.innerWidth : screen.width;
var scale = width/(670.0)
document.querySelector('meta[name=viewport]').setAttribute('content', 'width=670,initial-scale='+scale);
</script>
<meta name="keywords" content="primewire, 1channel, letmewatchthis, movies, tv shows, cast, crew, discover movies">
<meta name="description" content="PrimeWire is a social movie and TV show site which lets you find new movies and TV shows, share them with friends, and find streaming services to watch them on.">
<meta name="classification" content="Movies">
<meta name="distribution" content="Global">
<meta name="rating" content="General">
<meta charset="utf-8">
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
<meta http-equiv="content-language" content="en"/>
<meta name="robots" content="index, follow">
<meta name="revisit-after" content="1 days">
<meta property="og:title" content="PrimeWire">
<meta property="og:description" content="PrimeWire is a social movie and TV show site which lets you find new movies and TV shows, share them with friends, and find streaming services to watch them on.">
<meta property="og:type" content="website">
<meta property="og:image" content="/images/circle_logo.jpg">
<meta property="og:image:width" content="300">
<meta property="og:image:height" content="300">
<meta property="og:image:type" content="image/jpg">
<meta name="referrer" content="no-referrer-when-downgrade" />
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Roboto:wght@100;300;400;500;700;900&display=swap" rel="stylesheet">
<link rel="icon" href="/favicon.ico" type="image/x-icon">
<link rel="shortcut icon" href="/favicon.ico" type="image/x-icon">
<link rel="stylesheet" href="/css/app-3d1ad52122303f34d671a8e13b69704b.css?vsn=d" type="text/css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.2/css/all.min.css" integrity="sha512-HK5fgLBL+xu6dm/Ii3z4xhlSUyZgTT9tuc/hSrtw6uzJOvgRr2a9jyxxT1ely+B+xFAmJKVSTbpM/CuL7qxO8w==" crossorigin="anonymous" />
<script>
window.series = {}
</script>
</head>
<body class="">
<div class="header-bar"></div>
<div class="container">
<div class="col1">
<div class="menu">
<h1 id="a_header"><a href="/home" title="PrimeWire"><span>PrimeWire</span></a></h1>
<div class="header ">
<div class="header_search">
<form method="get" action="/filter" id="searchform">
<fieldset class="search_container">
<input id="search_term" name="s" class="box" placeholder="Search Title or IMDb ID" type="text" value="tt12345678">
<button class="btn" title="Submit Search" type="submit"></button>
</fieldset>
</form>
</div>
<div class="nav_tabs"><ul>
<li class="unpressed"><a href="/movies" title="Movies">Movies</a></li>
<li class="unpressed"><a href="/tv" title="TV Shows">TV Shows</a></li>
<li class="unpressed"><a href="/schedule" title="TV Schedule">Schedule</a></li>
<li class="unpressed"><a href="/playlists" title="Playlists">Playlists</a></li>
<li class="unpressed"><a href="/forum" title="Forums">Forum</a></li>
</ul>
</div>
</div>
</div>
<div class="main-body">
<div id="messages">
<div class="info_message">Try our new domain, <a href="https://www.primewire.mov">PrimeWire.mov</a></div>
</div>
<div class="index_container">
<h1 class="titles">
<span>Movies and TV Shows matching &quot;tt12345678&quot; </span>
</h1>
<form action="/filter" id="main-filter" method="get">
<div id="filter-bar">
<div>
<button class="btn btn-green" type="asdf">Filter</button>
</div>
<div>
<a href="/filter" class="btn btn-red">Reset</a>
</div>
<div>
<span class="btn btn-blue">More <i class="arrow-down"></i></span>
<div class="more-filters">
<span class="more-filter"><span class="more-filter-tag">Search Term:</span> <span><input id="s" name="s" type="text" value="tt12345678"></span></span>
<span class="more-filter"><span class="more-filter-tag">Year:</span>
<span class="range-select">
<input id="released_after" name="released_after" placeholder="1800" type="text">
to
<input id="released_before" name="released_before" placeholder="2050" type="text">
</span>
</span>
<span class="more-filter"><span class="more-filter-tag">Rating:</span>
<span class="range-select">
<input id="rating_above" name="rating_above" placeholder="0" type="text">
to
<input id="rating_below" name="rating_below" placeholder="5" type="text">
</span>
</span>
<span class="more-filter"><span class="more-filter-tag">Cast:</span> <select class="person-select2" id="cast" name="cast"></select></span>
<span class="more-filter"><span class="more-filter-tag">Crew:</span> <select class="person-select2" id="crew" name="crew"></select></span>
<span class="more-filter"><span class="more-filter-tag">Company:</span> <select class="company-select2" id="company" name="company"></select></span>
<span class="more-filter"><span class="more-filter-tag">Country:</span> <select class="country-select2" id="country" name="country" style="width: 205px"></select></span>
</div>
</div>
<div>
<span class="btn btn-blue">Direction <i class="arrow-down"></i></span>
<div>
<ul class="menu-section-list">
<li><label><input id="direction_asc" name="direction" type="radio" value="asc"> Ascending</label></li>
<li><label><input id="direction_desc" name="direction" type="radio" value="desc"> Descending</label></li>
</ul>
</div>
</div>
<div>
<span class="btn btn-blue">Sort <i class="arrow-down"></i></span>
<div style="width: 160px;">
<ul class="menu-sort-list">
<li><label><input id="sort_Featured" name="sort" type="radio" value="Featured"> Featured</label></li>
<li><label><input id="sort_Just_Added" name="sort" type="radio" value="Just Added"> Just Added</label></li>
<li><label><input id="sort_Popular" name="sort" type="radio" value="Popular"> Popular</label></li>
<li><label><input id="sort_Trending_Today" name="sort" type="radio" value="Trending Today"> Trending Today</label></li>
<li><label><input id="sort_Trending_this_Week" name="sort" type="radio" value="Trending this Week"> Trending this Week</label></li>
<li><label><input id="sort_Trending_this_Month" name="sort" type="radio" value="Trending this Month"> Trending this Month</label></li>
<li><label><input id="sort_External_Rating" name="sort" type="radio" value="External Rating"> External Rating</label></li>
<li><label><input id="sort_Primewire_Rating" name="sort" type="radio" value="Primewire Rating"> Primewire Rating</label></li>
<li><label><input id="sort_Favorites" name="sort" type="radio" value="Favorites"> Favorites</label></li>
<li><label><input id="sort_Favorites_per_view" name="sort" type="radio" value="Favorites per view"> Favorites per View</label></li>
<li><label><input id="sort_Views" name="sort" type="radio" value="Views"> Views</label></li>
<li><label><input id="sort_Release" name="sort" type="radio" value="Release"> Release Date</label></li>
<li><label><input id="sort_Alphabet" name="sort" type="radio" value="Alphabet"> Alphabet</label></li>
<li><label><input id="sort_Series_Premiere" name="sort" type="radio" value="Series Premiere"> Series Premiere Date</label></li>
<li><label><input id="sort_Season_Premiere" name="sort" type="radio" value="Season Premiere"> Season Premiere Date</label></li>
<li style="display: none"><label><input id="sort_In_Theaters" name="sort" type="radio" value="In Theaters"> In Theaters</label></li>
<li style="display: none"><label><input id="sort_Streaming_Release" name="sort" type="radio" value="Streaming Release"> In Theaters</label></li>
<li style="display: none"><label><input id="sort_New" name="sort" type="radio" value="New"> New</label></li>
</ul>
</div>
</div>
<div>
<span class="btn btn-blue">Genre <i class="arrow-down"></i></span>
<div style="width: 370px; left: -70px;">
Mode: <label><input id="genre_mode_and" name="genre_mode" type="radio" value="and"> And</label> <label><input id="genre_mode_" name="genre_mode" type="radio" value="" checked> Or</label>
<ul class="menu-genre-list">
<li class="genre-filter-bar"><label><input id="genre[]" name="genre[]" type="checkbox" value="Action"> Action</label></li>
<li class="genre-filter-bar"><label><input id="genre[]" name="genre[]" type="checkbox" value="Adventure"> Adventure</label></li>
<li class="genre-filter-bar"><label><input id="genre[]" name="genre[]" type="checkbox" value="Animation"> Animation</label></li>
<li class="genre-filter-bar"><label><input id="genre[]" name="genre[]" type="checkbox" value="Anime"> Anime</label></li>
<li class="genre-filter-bar"><label><input id="genre[]" name="genre[]" type="checkbox" value="Biography"> Biography</label></li>
<li class="genre-filter-bar"><label><input id="genre[]" name="genre[]" type="checkbox" value="Children"> Children</label></li>
<li class="genre-filter-bar"><label><input id="genre[]" name="genre[]" type="checkbox" value="Comedy"> Comedy</label></li>
<li class="genre-filter-bar"><label><input id="genre[]" name="genre[]" type="checkbox" value="Crime"> Crime</label></li>
<li class="genre-filter-bar"><label><input id="genre[]" name="genre[]" type="checkbox" value="DIY"> DIY</label></li>
<li class="genre-filter-bar"><label><input id="genre[]" name="genre[]" type="checkbox" value="Documentary"> Documentary</label></li>
<li class="genre-filter-bar"><label><input id="genre[]" name="genre[]" type="checkbox" value="Drama"> Drama</label></li>
<li class="genre-filter-bar"><label><input id="genre[]" name="genre[]" type="checkbox" value="Espionage"> Espionage</label></li>
<li class="genre-filter-bar"><label><input id="genre[]" name="genre[]" type="checkbox" value="Family"> Family</label></li>
<li class="genre-filter-bar"><label><input id="genre[]" name="genre[]" type="checkbox" value="Fantasy"> Fantasy</label></li>
<li class="genre-filter-bar"><label><input id="genre[]" name="genre[]" type="checkbox" value="Film-Noir"> Film-Noir</label></li>
<li class="genre-filter-bar"><label><input id="genre[]" name="genre[]" type="checkbox" value="Food"> Food</label></li>
<li class="genre-filter-bar"><label><input id="genre[]" name="genre[]" type="checkbox" value="Game-Show"> Game-Show</label></li>
<li class="genre-filter-bar"><label><input id="genre[]" name="genre[]" type="checkbox" value="History"> History</label></li>
<li class="genre-filter-bar"><label><input id="genre[]" name="genre[]" type="checkbox" value="Horror"> Horror</label></li>
<li class="genre-filter-bar"><label><input id="genre[]" name="genre[]" type="checkbox" value="Legal"> Legal</label></li>
<li class="genre-filter-bar"><label><input id="genre[]" name="genre[]" type="checkbox" value="Medical"> Medical</label></li>
<li class="genre-filter-bar"><label><input id="genre[]" name="genre[]" type="checkbox" value="Music"> Music</label></li>
<li class="genre-filter-bar"><label><input id="genre[]" name="genre[]" type="checkbox" value="Musical"> Musical</label></li>
<li class="genre-filter-bar"><label><input id="genre[]" name="genre[]" type="checkbox" value="Mystery"> Mystery</label></li>
<li class="genre-filter-bar"><label><input id="genre[]" name="genre[]" type="checkbox" value="Nature"> Nature</label></li>
<li class="genre-filter-bar"><label><input id="genre[]" name="genre[]" type="checkbox" value="News"> News</label></li>
<li class="genre-filter-bar"><label><input id="genre[]" name="genre[]" type="checkbox" value="Reality-TV"> Reality-TV</label></li>
<li class="genre-filter-bar"><label><input id="genre[]" name="genre[]" type="checkbox" value="Romance"> Romance</label></li>
<li class="genre-filter-bar"><label><input id="genre[]" name="genre[]" type="checkbox" value="Sci-Fi"> Sci-Fi</label></li>
<li class="genre-filter-bar"><label><input id="genre[]" name="genre[]" type="checkbox" value="Short"> Short</label></li>
<li class="genre-filter-bar"><label><input id="genre[]" name="genre[]" type="checkbox" value="Sport"> Sport</label></li>
<li class="genre-filter-bar"><label><input id="genre[]" name="genre[]" type="checkbox" value="Sports"> Sports</label></li>
<li class="genre-filter-bar"><label><input id="genre[]" name="genre[]" type="checkbox" value="Supernatural"> Supernatural</label></li>
<li class="genre-filter-bar"><label><input id="genre[]" name="genre[]" type="checkbox" value="Talk-Show"> Talk-Show</label></li>
<li class="genre-filter-bar"><label><input id="genre[]" name="genre[]" type="checkbox" value="Thriller"> Thriller</label></li>
<li class="genre-filter-bar"><label><input id="genre[]" name="genre[]" type="checkbox" value="Travel"> Travel</label></li>
<li class="genre-filter-bar"><label><input id="genre[]" name="genre[]" type="checkbox" value="War"> War</label></li>
<li class="genre-filter-bar"><label><input id="genre[]" name="genre[]" type="checkbox" value="Western"> Western</label></li>
</ul>
</div>
</div>
<div>
<span class="btn btn-blue">Streaming <i class="arrow-down"></i></span>
<div id="subscription-selector">
<ul class="menu-section-list">
<li><label><input name="my_subscriptions" type="hidden" value=""><input id="my_subscriptions" name="my_subscriptions" type="checkbox" value="true"> My Subscriptions</label> (<a href="/registrations/edit">Add</a>)</li>
<li><label><input name="free_links" type="hidden" value=""><input id="free_links" name="free_links" type="checkbox" value="true"> Free Links</label></li>
<li><label><input name="missing_links" type="hidden" value=""><input id="missing_links" name="missing_links" type="checkbox" value="true"> No Free Links</label></li>
<li>
<input name="subscription" type="hidden" value=""><input id="subscription" name="subscription" type="checkbox" value="true">
<select class="services-select2" id="service" name="service"></select>
in
<select class="country-select2" id="service_country" name="service_country"><option value="US">United States</option></select>
</li>
<li>
<label>
<input name="buy_rent" type="hidden" value=""><input id="buy_rent" name="buy_rent" type="checkbox" value="true">
Buy/Rent in
</label>
<select class="country-select2" id="buy_rent_country" name="buy_rent_country"><option value="US">United States</option></select>
</li>
</ul>
</div>
</div>
<div>
<span class="btn btn-blue">Type <i class="arrow-down"></i></span>
<div>
<ul class="menu-section-list">
<li><label><input id="type_movie" name="type" type="radio" value="movie"> Movie</label></li>
<li><label><input id="type_tv" name="type" type="radio" value="tv"> TV</label></li>
<li><label><input id="type_" name="type" type="radio" value="" checked> Both</label></li>
</ul>
</div>
</div>
</div>
</form>
<div class="clearer"></div>
<div class="clearer"></div>
<div class="clearer"></div>
<div class="clearer"></div>
<div class="pagination">
<span class="current">1</span>
</div>
<script>
window.preview_list = []
</script>
</div>
</div>
<div class="footer footer_left">
PrimeWire | 1Channel | Formerly LetMeWatchThis - <a href="/" title="PrimeWire | 1Channel">PrimeWire | 1Channel</a>! - <a href="/sitemaps/sitemap.xml.gz">Sitemap</a> - <a href="/legal">Legal</a>
<label><input type="checkbox" id="darkmode-toggle" >Dark Mode</label>
</div>
</div>
<div class="col2">
<a href="/home"><div class="logo"></div></a>
<div class="sidebar">
<div class="loginform" style="width: 280px;">
<form action="/sessions" class="secure" method="post"><input name="_csrf_token" type="hidden" value="RiwZVx85Sg0KRh8CfQsuPg0paRg0VFlW0Ou-ZJsWO42a-DOgFl0oua63">
<div class="form-group">
<label for="session_email">Email</label>
<input id="session_email" name="session[email]" type="text">
</div>
<div class="form-group">
<label for="session_password">Password</label>
<input id="session_password" name="session[password]" type="password">
</div>
<table width="100%" border="0" cellspacing="0" cellpadding="0" style="margin:10px 0px 10px 0px;">
<tbody>
<tr>
<td>
<div class="form-group">
<input checked type="checkbox" class="loginform_checkbox" name="remember" id="remmeber" style="float:left; width:20px;">
<span style="float:left; font-size: 12px; padding:2px 0px 0px 0px; font-weight:bold;">Remember Me</span>
</div>
<div class="clearer"></div>
</td>
<td width="120"><input type="submit" name="login_submit" value="Login" class="login_button" style="width: 120px;"> </td>
</tr>
</tbody>
</table>
<span class="forgot_link"><a href="/passwords/new" class="homing">Forgot Login </a></span> | <span class="register_link"><a href="/registrations/new" class="homing">Make a Free Account</a></span>
</form>
</div>
<h2>Information</h2>
<a href="/faq"><img src="/images/guide_link.gif" alt="LetMeWatchThis Guide" border="0"></a>
<div style="height: 4px;"></div>
<a href="/schedule"><img src="/images/tvschedule_button.jpg" alt="TV Schedule" border="0"></a>
<div style="height: 4px;"></div>
<div style="padding: 0 5px;">
PrimeWire is a social site for discovering, sharing and watching movies and TV shows. <a href="/start" style="text-decoration: underline;">more info</a>
</div>
<div style="padding: 0 5px;">
<a href="https://www.primewire.tf">PrimeWire.tf</a> and <a href="https://www.primewire.mov">PrimeWire.mov</a> are the official domain for PrimeWire
</div>
<h2>Latest Comments</h2>
<div class="latest_comments com_class_tv">
<a href="/tv/368639/foundation-season-3-episode-10">Foundation S3 E10</a>
<p>
<span class="latest_comments_poster">
<a href="/user/dd3dd">dd3dd</a> :
</span>
I think Demerzel knows that&#39;s why all the other Dusks have their lives ended around this t...
</p>
</div>
<div class="latest_comments com_class_tv">
<a href="/tv/1516834/the-rainmaker-season-1-episode-5">The Rainmaker S1 E5</a>
<p>
<span class="latest_comments_poster">
<a href="/user/dd3dd">dd3dd</a> :
</span>
Ep5: Absolute poop of an episode compared to the previous ones. Lazy standard writing of m...
</p>
</div>
<div class="latest_comments com_class_mov">
<a href="/movie/1409057-the-long-walk">The Long Walk</a>
<p>
<span class="latest_comments_poster">
<a href="/user/Neoblade">Neoblade</a> :
</span>
OK YES SKIP TO THE ENDING WTF.
</p>
</div>
<div class="latest_comments com_class_mov">
<a href="/movie/1409057-the-long-walk">The Long Walk</a>
<p>
<span class="latest_comments_poster">
<a href="/user/Neoblade">Neoblade</a> :
</span>
WARNING WARNING: This film was absolute shit. Skipped through it, got the point but man, w...
</p>
</div>
<div class="latest_comments com_class_tv">
<a href="/tv/1331004-star-trek-picard">Star Trek: Picard</a>
<p>
<span class="latest_comments_poster">
<a href="/user/Twixtid">Twixtid</a> :
</span>
Although I haven&#39;t been a Trek fan for long, I started my binge with DS9 coming from Babyl...
</p>
</div>
<div style="text-align:right; padding:5px; font-size: 11px;"><a href="/comments?sort=latest">More Comments</a></div>
<h2>Top Comments</h2>
<div class="latest_comments com_class_mov">
<a href="/movie/874438-playboys-erotic-fantasies-iii">Playboy&#39;s Erotic Fantasies III</a>
<p>
<span class="latest_comments_poster">
<a href="/user/snazzydetritus">snazzydetritus</a> :
</span>
Full disclosure - I haven&#39;t seen a moment of this video, and don&#39;t intend to; but I saw Li...
</p>
</div>
<div class="latest_comments com_class_mov">
<a href="/movie/874438-playboys-erotic-fantasies-iii">Playboy&#39;s Erotic Fantasies III</a>
<p>
<span class="latest_comments_poster">
<a href="/user/snazzydetritus">snazzydetritus</a> :
</span>
my favorite comment of the day
</p>
</div>
<div class="latest_comments com_class_tv">
<a href="/tv/368639/foundation-season-3-episode-10">Foundation S3 E10</a>
<p>
<span class="latest_comments_poster">
<a href="/user/Bryant315">Bryant315</a> :
</span>
<span class="toggler hide" togglee-id="gB2uU">Contains spoilers. Click to show.</span>
<span class="togglee" id="gB2uU">
dusk really wanted to live!
poor dermazel! poor harry!
sorry mule :(
</span>
</p>
</div>
<div class="latest_comments com_class_mov">
<a href="/movie/874438-playboys-erotic-fantasies-iii">Playboy&#39;s Erotic Fantasies III</a>
<p>
<span class="latest_comments_poster">
<a href="/user/%2528%25E2%258C%2590%25E2%2596%25A0_%25E2%2596%25A0%2529">(⌐■_■)</a> :
</span>
NS, ryte?!?!! ... wait &#39;till ya see the wardrobe(s)... 0.0
Comment: straight up +10
</p>
</div>
<div class="latest_comments com_class_tv">
<a href="/tv/1585109-the-sunshine-murders">The Sunshine Murders</a>
<p>
<span class="latest_comments_poster">
<a href="/user/AmieWarren">AmieWarren</a> :
</span>
This show is just bad. The characters are annoying, especially the Kiwi sister, half of th...
</p>
</div>
<div style="text-align:right; padding:5px; font-size: 11px;"><a href="/comments?sort=best-recent">More Comments</a></div>
</div>
<div class="footer footer_right">
<a href="#" title=" unregistered">760 users online</a> -
<a href="/contact">Contacts</a> -
<a href="/faq">FAQ</a> -
<a href="/dmca">DMCA</a> -
<a href="/api">API</a> -
<a href="https://primesrc.me" target="_blank">Embed</a>
</div>
</div>
</div>
<script>
window.csrf_token = "RiwZVx85Sg0KRh8CfQsuPg0paRg0VFlW0Ou-ZJsWO42a-DOgFl0oua63";
window.subs = false
window.tsr = false
document.dispatchEvent(window.appTrigger);
window.appTriggered = true;
</script>
<div id="previewer-el"></div>
</body></html>

View file

@ -1,614 +0,0 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html lang="en-US" itemscope itemtype="http://schema.org/WebPage">
<head>
<script>
window.appTrigger = document.createEvent("Event");
window.appTrigger.initEvent("appTrigger", true, true);
</script>
<script async type="text/javascript" src="/js/app-2dec7320ca90cd70f913d51050d73c10.js?vsn=d"></script>
<title>
Movies and TV Shows matching &quot;tt18546730&quot; | PrimeWire
</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<meta name="robots" content="ALL,INDEX,FOLLOW">
<meta name="revisit-after" content="1 days">
<meta name="viewport" content="width=device-width, initial-scale=1">
<script>
var width = (window.innerWidth > 0) ? window.innerWidth : screen.width;
var scale = width/(670.0)
document.querySelector('meta[name=viewport]').setAttribute('content', 'width=670,initial-scale='+scale);
</script>
<meta name="keywords" content="primewire, 1channel, letmewatchthis, movies, tv shows, cast, crew, discover movies">
<meta name="description" content="PrimeWire is a social movie and TV show site which lets you find new movies and TV shows, share them with friends, and find streaming services to watch them on.">
<meta name="classification" content="Movies">
<meta name="distribution" content="Global">
<meta name="rating" content="General">
<meta charset="utf-8">
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
<meta http-equiv="content-language" content="en"/>
<meta name="robots" content="index, follow">
<meta name="revisit-after" content="1 days">
<meta property="og:title" content="PrimeWire">
<meta property="og:description" content="PrimeWire is a social movie and TV show site which lets you find new movies and TV shows, share them with friends, and find streaming services to watch them on.">
<meta property="og:type" content="website">
<meta property="og:image" content="/images/circle_logo.jpg">
<meta property="og:image:width" content="300">
<meta property="og:image:height" content="300">
<meta property="og:image:type" content="image/jpg">
<meta name="referrer" content="no-referrer-when-downgrade" />
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Roboto:wght@100;300;400;500;700;900&display=swap" rel="stylesheet">
<link rel="icon" href="/favicon.ico" type="image/x-icon">
<link rel="shortcut icon" href="/favicon.ico" type="image/x-icon">
<link rel="stylesheet" href="/css/app-3d1ad52122303f34d671a8e13b69704b.css?vsn=d" type="text/css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.2/css/all.min.css" integrity="sha512-HK5fgLBL+xu6dm/Ii3z4xhlSUyZgTT9tuc/hSrtw6uzJOvgRr2a9jyxxT1ely+B+xFAmJKVSTbpM/CuL7qxO8w==" crossorigin="anonymous" />
<script>
window.series = {}
</script>
</head>
<body class="">
<div class="header-bar"></div>
<div class="container">
<div class="col1">
<div class="menu">
<h1 id="a_header"><a href="/home" title="PrimeWire"><span>PrimeWire</span></a></h1>
<div class="header ">
<div class="header_search">
<form method="get" action="/filter" id="searchform">
<fieldset class="search_container">
<input id="search_term" name="s" class="box" placeholder="Search Title or IMDb ID" type="text" value="tt18546730">
<button class="btn" title="Submit Search" type="submit"></button>
</fieldset>
</form>
</div>
<div class="nav_tabs"><ul>
<li class="unpressed"><a href="/movies" title="Movies">Movies</a></li>
<li class="unpressed"><a href="/tv" title="TV Shows">TV Shows</a></li>
<li class="unpressed"><a href="/schedule" title="TV Schedule">Schedule</a></li>
<li class="unpressed"><a href="/playlists" title="Playlists">Playlists</a></li>
<li class="unpressed"><a href="/forum" title="Forums">Forum</a></li>
</ul>
</div>
</div>
</div>
<div class="main-body">
<div id="messages">
<div class="info_message">Try our new domain, <a href="https://www.primewire.mov">PrimeWire.mov</a></div>
</div>
<div class="index_container">
<h1 class="titles">
<span>Movies and TV Shows matching &quot;tt18546730&quot; </span>
</h1>
<form action="/filter" id="main-filter" method="get">
<div id="filter-bar">
<div>
<button class="btn btn-green" type="asdf">Filter</button>
</div>
<div>
<a href="/filter" class="btn btn-red">Reset</a>
</div>
<div>
<span class="btn btn-blue">More <i class="arrow-down"></i></span>
<div class="more-filters">
<span class="more-filter"><span class="more-filter-tag">Search Term:</span> <span><input id="s" name="s" type="text" value="tt18546730"></span></span>
<span class="more-filter"><span class="more-filter-tag">Year:</span>
<span class="range-select">
<input id="released_after" name="released_after" placeholder="1800" type="text">
to
<input id="released_before" name="released_before" placeholder="2050" type="text">
</span>
</span>
<span class="more-filter"><span class="more-filter-tag">Rating:</span>
<span class="range-select">
<input id="rating_above" name="rating_above" placeholder="0" type="text">
to
<input id="rating_below" name="rating_below" placeholder="5" type="text">
</span>
</span>
<span class="more-filter"><span class="more-filter-tag">Cast:</span> <select class="person-select2" id="cast" name="cast"></select></span>
<span class="more-filter"><span class="more-filter-tag">Crew:</span> <select class="person-select2" id="crew" name="crew"></select></span>
<span class="more-filter"><span class="more-filter-tag">Company:</span> <select class="company-select2" id="company" name="company"></select></span>
<span class="more-filter"><span class="more-filter-tag">Country:</span> <select class="country-select2" id="country" name="country" style="width: 205px"></select></span>
</div>
</div>
<div>
<span class="btn btn-blue">Direction <i class="arrow-down"></i></span>
<div>
<ul class="menu-section-list">
<li><label><input id="direction_asc" name="direction" type="radio" value="asc"> Ascending</label></li>
<li><label><input id="direction_desc" name="direction" type="radio" value="desc"> Descending</label></li>
</ul>
</div>
</div>
<div>
<span class="btn btn-blue">Sort <i class="arrow-down"></i></span>
<div style="width: 160px;">
<ul class="menu-sort-list">
<li><label><input id="sort_Featured" name="sort" type="radio" value="Featured"> Featured</label></li>
<li><label><input id="sort_Just_Added" name="sort" type="radio" value="Just Added"> Just Added</label></li>
<li><label><input id="sort_Popular" name="sort" type="radio" value="Popular"> Popular</label></li>
<li><label><input id="sort_Trending_Today" name="sort" type="radio" value="Trending Today"> Trending Today</label></li>
<li><label><input id="sort_Trending_this_Week" name="sort" type="radio" value="Trending this Week"> Trending this Week</label></li>
<li><label><input id="sort_Trending_this_Month" name="sort" type="radio" value="Trending this Month"> Trending this Month</label></li>
<li><label><input id="sort_External_Rating" name="sort" type="radio" value="External Rating"> External Rating</label></li>
<li><label><input id="sort_Primewire_Rating" name="sort" type="radio" value="Primewire Rating"> Primewire Rating</label></li>
<li><label><input id="sort_Favorites" name="sort" type="radio" value="Favorites"> Favorites</label></li>
<li><label><input id="sort_Favorites_per_view" name="sort" type="radio" value="Favorites per view"> Favorites per View</label></li>
<li><label><input id="sort_Views" name="sort" type="radio" value="Views"> Views</label></li>
<li><label><input id="sort_Release" name="sort" type="radio" value="Release"> Release Date</label></li>
<li><label><input id="sort_Alphabet" name="sort" type="radio" value="Alphabet"> Alphabet</label></li>
<li><label><input id="sort_Series_Premiere" name="sort" type="radio" value="Series Premiere"> Series Premiere Date</label></li>
<li><label><input id="sort_Season_Premiere" name="sort" type="radio" value="Season Premiere"> Season Premiere Date</label></li>
<li style="display: none"><label><input id="sort_In_Theaters" name="sort" type="radio" value="In Theaters"> In Theaters</label></li>
<li style="display: none"><label><input id="sort_Streaming_Release" name="sort" type="radio" value="Streaming Release"> In Theaters</label></li>
<li style="display: none"><label><input id="sort_New" name="sort" type="radio" value="New"> New</label></li>
</ul>
</div>
</div>
<div>
<span class="btn btn-blue">Genre <i class="arrow-down"></i></span>
<div style="width: 370px; left: -70px;">
Mode: <label><input id="genre_mode_and" name="genre_mode" type="radio" value="and"> And</label> <label><input id="genre_mode_" name="genre_mode" type="radio" value="" checked> Or</label>
<ul class="menu-genre-list">
<li class="genre-filter-bar"><label><input id="genre[]" name="genre[]" type="checkbox" value="Action"> Action</label></li>
<li class="genre-filter-bar"><label><input id="genre[]" name="genre[]" type="checkbox" value="Adventure"> Adventure</label></li>
<li class="genre-filter-bar"><label><input id="genre[]" name="genre[]" type="checkbox" value="Animation"> Animation</label></li>
<li class="genre-filter-bar"><label><input id="genre[]" name="genre[]" type="checkbox" value="Anime"> Anime</label></li>
<li class="genre-filter-bar"><label><input id="genre[]" name="genre[]" type="checkbox" value="Biography"> Biography</label></li>
<li class="genre-filter-bar"><label><input id="genre[]" name="genre[]" type="checkbox" value="Children"> Children</label></li>
<li class="genre-filter-bar"><label><input id="genre[]" name="genre[]" type="checkbox" value="Comedy"> Comedy</label></li>
<li class="genre-filter-bar"><label><input id="genre[]" name="genre[]" type="checkbox" value="Crime"> Crime</label></li>
<li class="genre-filter-bar"><label><input id="genre[]" name="genre[]" type="checkbox" value="DIY"> DIY</label></li>
<li class="genre-filter-bar"><label><input id="genre[]" name="genre[]" type="checkbox" value="Documentary"> Documentary</label></li>
<li class="genre-filter-bar"><label><input id="genre[]" name="genre[]" type="checkbox" value="Drama"> Drama</label></li>
<li class="genre-filter-bar"><label><input id="genre[]" name="genre[]" type="checkbox" value="Espionage"> Espionage</label></li>
<li class="genre-filter-bar"><label><input id="genre[]" name="genre[]" type="checkbox" value="Family"> Family</label></li>
<li class="genre-filter-bar"><label><input id="genre[]" name="genre[]" type="checkbox" value="Fantasy"> Fantasy</label></li>
<li class="genre-filter-bar"><label><input id="genre[]" name="genre[]" type="checkbox" value="Film-Noir"> Film-Noir</label></li>
<li class="genre-filter-bar"><label><input id="genre[]" name="genre[]" type="checkbox" value="Food"> Food</label></li>
<li class="genre-filter-bar"><label><input id="genre[]" name="genre[]" type="checkbox" value="Game-Show"> Game-Show</label></li>
<li class="genre-filter-bar"><label><input id="genre[]" name="genre[]" type="checkbox" value="History"> History</label></li>
<li class="genre-filter-bar"><label><input id="genre[]" name="genre[]" type="checkbox" value="Horror"> Horror</label></li>
<li class="genre-filter-bar"><label><input id="genre[]" name="genre[]" type="checkbox" value="Legal"> Legal</label></li>
<li class="genre-filter-bar"><label><input id="genre[]" name="genre[]" type="checkbox" value="Medical"> Medical</label></li>
<li class="genre-filter-bar"><label><input id="genre[]" name="genre[]" type="checkbox" value="Music"> Music</label></li>
<li class="genre-filter-bar"><label><input id="genre[]" name="genre[]" type="checkbox" value="Musical"> Musical</label></li>
<li class="genre-filter-bar"><label><input id="genre[]" name="genre[]" type="checkbox" value="Mystery"> Mystery</label></li>
<li class="genre-filter-bar"><label><input id="genre[]" name="genre[]" type="checkbox" value="Nature"> Nature</label></li>
<li class="genre-filter-bar"><label><input id="genre[]" name="genre[]" type="checkbox" value="News"> News</label></li>
<li class="genre-filter-bar"><label><input id="genre[]" name="genre[]" type="checkbox" value="Reality-TV"> Reality-TV</label></li>
<li class="genre-filter-bar"><label><input id="genre[]" name="genre[]" type="checkbox" value="Romance"> Romance</label></li>
<li class="genre-filter-bar"><label><input id="genre[]" name="genre[]" type="checkbox" value="Sci-Fi"> Sci-Fi</label></li>
<li class="genre-filter-bar"><label><input id="genre[]" name="genre[]" type="checkbox" value="Short"> Short</label></li>
<li class="genre-filter-bar"><label><input id="genre[]" name="genre[]" type="checkbox" value="Sport"> Sport</label></li>
<li class="genre-filter-bar"><label><input id="genre[]" name="genre[]" type="checkbox" value="Sports"> Sports</label></li>
<li class="genre-filter-bar"><label><input id="genre[]" name="genre[]" type="checkbox" value="Supernatural"> Supernatural</label></li>
<li class="genre-filter-bar"><label><input id="genre[]" name="genre[]" type="checkbox" value="Talk-Show"> Talk-Show</label></li>
<li class="genre-filter-bar"><label><input id="genre[]" name="genre[]" type="checkbox" value="Thriller"> Thriller</label></li>
<li class="genre-filter-bar"><label><input id="genre[]" name="genre[]" type="checkbox" value="Travel"> Travel</label></li>
<li class="genre-filter-bar"><label><input id="genre[]" name="genre[]" type="checkbox" value="War"> War</label></li>
<li class="genre-filter-bar"><label><input id="genre[]" name="genre[]" type="checkbox" value="Western"> Western</label></li>
</ul>
</div>
</div>
<div>
<span class="btn btn-blue">Streaming <i class="arrow-down"></i></span>
<div id="subscription-selector">
<ul class="menu-section-list">
<li><label><input name="my_subscriptions" type="hidden" value=""><input id="my_subscriptions" name="my_subscriptions" type="checkbox" value="true"> My Subscriptions</label> (<a href="/registrations/edit">Add</a>)</li>
<li><label><input name="free_links" type="hidden" value=""><input id="free_links" name="free_links" type="checkbox" value="true"> Free Links</label></li>
<li><label><input name="missing_links" type="hidden" value=""><input id="missing_links" name="missing_links" type="checkbox" value="true"> No Free Links</label></li>
<li>
<input name="subscription" type="hidden" value=""><input id="subscription" name="subscription" type="checkbox" value="true">
<select class="services-select2" id="service" name="service"></select>
in
<select class="country-select2" id="service_country" name="service_country"><option value="US">United States</option></select>
</li>
<li>
<label>
<input name="buy_rent" type="hidden" value=""><input id="buy_rent" name="buy_rent" type="checkbox" value="true">
Buy/Rent in
</label>
<select class="country-select2" id="buy_rent_country" name="buy_rent_country"><option value="US">United States</option></select>
</li>
</ul>
</div>
</div>
<div>
<span class="btn btn-blue">Type <i class="arrow-down"></i></span>
<div>
<ul class="menu-section-list">
<li><label><input id="type_movie" name="type" type="radio" value="movie"> Movie</label></li>
<li><label><input id="type_tv" name="type" type="radio" value="tv"> TV</label></li>
<li><label><input id="type_" name="type" type="radio" value="" checked> Both</label></li>
</ul>
</div>
</div>
</div>
</form>
<div class="clearer"></div>
<div class="index_item index_item_ie">
<a href="/tv/1423432-the-walking-dead-dead-city" title="The Walking Dead: Dead City (2023)">
<img src="/poster/small/1423432-the-walking-dead-dead-city-iTJlz.jpg" border="0" width="150" height="225" alt="Watch The Walking Dead: Dead City">
<h2><div class="title-cutoff">The Walking Dead: Dead City</div> (2023)</h2>
</a>
<div class="index_ratings">
<div id="unit_long2792883">
<ul style="width: 100px;" class="unit-rating">
<li style="width: 77.35849056603773px;" class="current-rating">Current rating.</li><li class="r1-unit">
</li><li class="r2-unit"></li><li class="r3-unit"></li><li class="r4-unit"></li><li class="r5-unit"></li>
</ul>
</div>
</div>
<div class="floating-btn preview-btn" data-id="1423432" data-series="">
info
</div>
</div>
<div class="clearer"></div>
<div class="clearer"></div>
<div class="clearer"></div>
<div class="pagination">
<span class="current">1</span>
</div>
<script>
window.preview_list = [1423432, ]
</script>
</div>
</div>
<div class="footer footer_left">
PrimeWire | 1Channel | Formerly LetMeWatchThis - <a href="/" title="PrimeWire | 1Channel">PrimeWire | 1Channel</a>! - <a href="/sitemaps/sitemap.xml.gz">Sitemap</a> - <a href="/legal">Legal</a>
<label><input type="checkbox" id="darkmode-toggle" >Dark Mode</label>
</div>
</div>
<div class="col2">
<a href="/home"><div class="logo"></div></a>
<div class="sidebar">
<div class="loginform" style="width: 280px;">
<form action="/sessions" class="secure" method="post"><input name="_csrf_token" type="hidden" value="MDsOeVgoNnYkeQw_Mw4RUTh0JCQWFAodyu6N2GW2wLawdwudV0nAUrYh">
<div class="form-group">
<label for="session_email">Email</label>
<input id="session_email" name="session[email]" type="text">
</div>
<div class="form-group">
<label for="session_password">Password</label>
<input id="session_password" name="session[password]" type="password">
</div>
<table width="100%" border="0" cellspacing="0" cellpadding="0" style="margin:10px 0px 10px 0px;">
<tbody>
<tr>
<td>
<div class="form-group">
<input checked type="checkbox" class="loginform_checkbox" name="remember" id="remmeber" style="float:left; width:20px;">
<span style="float:left; font-size: 12px; padding:2px 0px 0px 0px; font-weight:bold;">Remember Me</span>
</div>
<div class="clearer"></div>
</td>
<td width="120"><input type="submit" name="login_submit" value="Login" class="login_button" style="width: 120px;"> </td>
</tr>
</tbody>
</table>
<span class="forgot_link"><a href="/passwords/new" class="homing">Forgot Login </a></span> | <span class="register_link"><a href="/registrations/new" class="homing">Make a Free Account</a></span>
</form>
</div>
<h2>Information</h2>
<a href="/faq"><img src="/images/guide_link.gif" alt="LetMeWatchThis Guide" border="0"></a>
<div style="height: 4px;"></div>
<a href="/schedule"><img src="/images/tvschedule_button.jpg" alt="TV Schedule" border="0"></a>
<div style="height: 4px;"></div>
<div style="padding: 0 5px;">
PrimeWire is a social site for discovering, sharing and watching movies and TV shows. <a href="/start" style="text-decoration: underline;">more info</a>
</div>
<div style="padding: 0 5px;">
<a href="https://www.primewire.tf">PrimeWire.tf</a> and <a href="https://www.primewire.mov">PrimeWire.mov</a> are the official domain for PrimeWire
</div>
<h2>Latest Comments</h2>
<div class="latest_comments com_class_tv">
<a href="/tv/368639/foundation-season-3-episode-10">Foundation S3 E10</a>
<p>
<span class="latest_comments_poster">
<a href="/user/dd3dd">dd3dd</a> :
</span>
I think Demerzel knows that&#39;s why all the other Dusks have their lives ended around this t...
</p>
</div>
<div class="latest_comments com_class_tv">
<a href="/tv/1516834/the-rainmaker-season-1-episode-5">The Rainmaker S1 E5</a>
<p>
<span class="latest_comments_poster">
<a href="/user/dd3dd">dd3dd</a> :
</span>
Ep5: Absolute poop of an episode compared to the previous ones. Lazy standard writing of m...
</p>
</div>
<div class="latest_comments com_class_mov">
<a href="/movie/1409057-the-long-walk">The Long Walk</a>
<p>
<span class="latest_comments_poster">
<a href="/user/Neoblade">Neoblade</a> :
</span>
OK YES SKIP TO THE ENDING WTF.
</p>
</div>
<div class="latest_comments com_class_mov">
<a href="/movie/1409057-the-long-walk">The Long Walk</a>
<p>
<span class="latest_comments_poster">
<a href="/user/Neoblade">Neoblade</a> :
</span>
WARNING WARNING: This film was absolute shit. Skipped through it, got the point but man, w...
</p>
</div>
<div class="latest_comments com_class_tv">
<a href="/tv/1331004-star-trek-picard">Star Trek: Picard</a>
<p>
<span class="latest_comments_poster">
<a href="/user/Twixtid">Twixtid</a> :
</span>
Although I haven&#39;t been a Trek fan for long, I started my binge with DS9 coming from Babyl...
</p>
</div>
<div style="text-align:right; padding:5px; font-size: 11px;"><a href="/comments?sort=latest">More Comments</a></div>
<h2>Top Comments</h2>
<div class="latest_comments com_class_mov">
<a href="/movie/874438-playboys-erotic-fantasies-iii">Playboy&#39;s Erotic Fantasies III</a>
<p>
<span class="latest_comments_poster">
<a href="/user/snazzydetritus">snazzydetritus</a> :
</span>
Full disclosure - I haven&#39;t seen a moment of this video, and don&#39;t intend to; but I saw Li...
</p>
</div>
<div class="latest_comments com_class_mov">
<a href="/movie/874438-playboys-erotic-fantasies-iii">Playboy&#39;s Erotic Fantasies III</a>
<p>
<span class="latest_comments_poster">
<a href="/user/snazzydetritus">snazzydetritus</a> :
</span>
my favorite comment of the day
</p>
</div>
<div class="latest_comments com_class_tv">
<a href="/tv/368639/foundation-season-3-episode-10">Foundation S3 E10</a>
<p>
<span class="latest_comments_poster">
<a href="/user/Bryant315">Bryant315</a> :
</span>
<span class="toggler hide" togglee-id="QGGZr">Contains spoilers. Click to show.</span>
<span class="togglee" id="QGGZr">
dusk really wanted to live!
poor dermazel! poor harry!
sorry mule :(
</span>
</p>
</div>
<div class="latest_comments com_class_mov">
<a href="/movie/874438-playboys-erotic-fantasies-iii">Playboy&#39;s Erotic Fantasies III</a>
<p>
<span class="latest_comments_poster">
<a href="/user/%2528%25E2%258C%2590%25E2%2596%25A0_%25E2%2596%25A0%2529">(⌐■_■)</a> :
</span>
NS, ryte?!?!! ... wait &#39;till ya see the wardrobe(s)... 0.0
Comment: straight up +10
</p>
</div>
<div class="latest_comments com_class_tv">
<a href="/tv/1585109-the-sunshine-murders">The Sunshine Murders</a>
<p>
<span class="latest_comments_poster">
<a href="/user/AmieWarren">AmieWarren</a> :
</span>
This show is just bad. The characters are annoying, especially the Kiwi sister, half of th...
</p>
</div>
<div style="text-align:right; padding:5px; font-size: 11px;"><a href="/comments?sort=best-recent">More Comments</a></div>
</div>
<div class="footer footer_right">
<a href="#" title=" unregistered">760 users online</a> -
<a href="/contact">Contacts</a> -
<a href="/faq">FAQ</a> -
<a href="/dmca">DMCA</a> -
<a href="/api">API</a> -
<a href="https://primesrc.me" target="_blank">Embed</a>
</div>
</div>
</div>
<script>
window.csrf_token = "MDsOeVgoNnYkeQw_Mw4RUTh0JCQWFAodyu6N2GW2wLawdwudV0nAUrYh";
window.subs = false
window.tsr = false
document.dispatchEvent(window.appTrigger);
window.appTriggered = true;
</script>
<div id="previewer-el"></div>
</body></html>

View file

@ -1,614 +0,0 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html lang="en-US" itemscope itemtype="http://schema.org/WebPage">
<head>
<script>
window.appTrigger = document.createEvent("Event");
window.appTrigger.initEvent("appTrigger", true, true);
</script>
<script async type="text/javascript" src="/js/app-2dec7320ca90cd70f913d51050d73c10.js?vsn=d"></script>
<title>
Movies and TV Shows matching &quot;tt9243946&quot; | PrimeWire
</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<meta name="robots" content="ALL,INDEX,FOLLOW">
<meta name="revisit-after" content="1 days">
<meta name="viewport" content="width=device-width, initial-scale=1">
<script>
var width = (window.innerWidth > 0) ? window.innerWidth : screen.width;
var scale = width/(670.0)
document.querySelector('meta[name=viewport]').setAttribute('content', 'width=670,initial-scale='+scale);
</script>
<meta name="keywords" content="primewire, 1channel, letmewatchthis, movies, tv shows, cast, crew, discover movies">
<meta name="description" content="PrimeWire is a social movie and TV show site which lets you find new movies and TV shows, share them with friends, and find streaming services to watch them on.">
<meta name="classification" content="Movies">
<meta name="distribution" content="Global">
<meta name="rating" content="General">
<meta charset="utf-8">
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
<meta http-equiv="content-language" content="en"/>
<meta name="robots" content="index, follow">
<meta name="revisit-after" content="1 days">
<meta property="og:title" content="PrimeWire">
<meta property="og:description" content="PrimeWire is a social movie and TV show site which lets you find new movies and TV shows, share them with friends, and find streaming services to watch them on.">
<meta property="og:type" content="website">
<meta property="og:image" content="/images/circle_logo.jpg">
<meta property="og:image:width" content="300">
<meta property="og:image:height" content="300">
<meta property="og:image:type" content="image/jpg">
<meta name="referrer" content="no-referrer-when-downgrade" />
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Roboto:wght@100;300;400;500;700;900&display=swap" rel="stylesheet">
<link rel="icon" href="/favicon.ico" type="image/x-icon">
<link rel="shortcut icon" href="/favicon.ico" type="image/x-icon">
<link rel="stylesheet" href="/css/app-3d1ad52122303f34d671a8e13b69704b.css?vsn=d" type="text/css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.2/css/all.min.css" integrity="sha512-HK5fgLBL+xu6dm/Ii3z4xhlSUyZgTT9tuc/hSrtw6uzJOvgRr2a9jyxxT1ely+B+xFAmJKVSTbpM/CuL7qxO8w==" crossorigin="anonymous" />
<script>
window.series = {}
</script>
</head>
<body class="">
<div class="header-bar"></div>
<div class="container">
<div class="col1">
<div class="menu">
<h1 id="a_header"><a href="/home" title="PrimeWire"><span>PrimeWire</span></a></h1>
<div class="header ">
<div class="header_search">
<form method="get" action="/filter" id="searchform">
<fieldset class="search_container">
<input id="search_term" name="s" class="box" placeholder="Search Title or IMDb ID" type="text" value="tt9243946">
<button class="btn" title="Submit Search" type="submit"></button>
</fieldset>
</form>
</div>
<div class="nav_tabs"><ul>
<li class="unpressed"><a href="/movies" title="Movies">Movies</a></li>
<li class="unpressed"><a href="/tv" title="TV Shows">TV Shows</a></li>
<li class="unpressed"><a href="/schedule" title="TV Schedule">Schedule</a></li>
<li class="unpressed"><a href="/playlists" title="Playlists">Playlists</a></li>
<li class="unpressed"><a href="/forum" title="Forums">Forum</a></li>
</ul>
</div>
</div>
</div>
<div class="main-body">
<div id="messages">
<div class="info_message">Try our new domain, <a href="https://www.primewire.mov">PrimeWire.mov</a></div>
</div>
<div class="index_container">
<h1 class="titles">
<span>Movies and TV Shows matching &quot;tt9243946&quot; </span>
</h1>
<form action="/filter" id="main-filter" method="get">
<div id="filter-bar">
<div>
<button class="btn btn-green" type="asdf">Filter</button>
</div>
<div>
<a href="/filter" class="btn btn-red">Reset</a>
</div>
<div>
<span class="btn btn-blue">More <i class="arrow-down"></i></span>
<div class="more-filters">
<span class="more-filter"><span class="more-filter-tag">Search Term:</span> <span><input id="s" name="s" type="text" value="tt9243946"></span></span>
<span class="more-filter"><span class="more-filter-tag">Year:</span>
<span class="range-select">
<input id="released_after" name="released_after" placeholder="1800" type="text">
to
<input id="released_before" name="released_before" placeholder="2050" type="text">
</span>
</span>
<span class="more-filter"><span class="more-filter-tag">Rating:</span>
<span class="range-select">
<input id="rating_above" name="rating_above" placeholder="0" type="text">
to
<input id="rating_below" name="rating_below" placeholder="5" type="text">
</span>
</span>
<span class="more-filter"><span class="more-filter-tag">Cast:</span> <select class="person-select2" id="cast" name="cast"></select></span>
<span class="more-filter"><span class="more-filter-tag">Crew:</span> <select class="person-select2" id="crew" name="crew"></select></span>
<span class="more-filter"><span class="more-filter-tag">Company:</span> <select class="company-select2" id="company" name="company"></select></span>
<span class="more-filter"><span class="more-filter-tag">Country:</span> <select class="country-select2" id="country" name="country" style="width: 205px"></select></span>
</div>
</div>
<div>
<span class="btn btn-blue">Direction <i class="arrow-down"></i></span>
<div>
<ul class="menu-section-list">
<li><label><input id="direction_asc" name="direction" type="radio" value="asc"> Ascending</label></li>
<li><label><input id="direction_desc" name="direction" type="radio" value="desc"> Descending</label></li>
</ul>
</div>
</div>
<div>
<span class="btn btn-blue">Sort <i class="arrow-down"></i></span>
<div style="width: 160px;">
<ul class="menu-sort-list">
<li><label><input id="sort_Featured" name="sort" type="radio" value="Featured"> Featured</label></li>
<li><label><input id="sort_Just_Added" name="sort" type="radio" value="Just Added"> Just Added</label></li>
<li><label><input id="sort_Popular" name="sort" type="radio" value="Popular"> Popular</label></li>
<li><label><input id="sort_Trending_Today" name="sort" type="radio" value="Trending Today"> Trending Today</label></li>
<li><label><input id="sort_Trending_this_Week" name="sort" type="radio" value="Trending this Week"> Trending this Week</label></li>
<li><label><input id="sort_Trending_this_Month" name="sort" type="radio" value="Trending this Month"> Trending this Month</label></li>
<li><label><input id="sort_External_Rating" name="sort" type="radio" value="External Rating"> External Rating</label></li>
<li><label><input id="sort_Primewire_Rating" name="sort" type="radio" value="Primewire Rating"> Primewire Rating</label></li>
<li><label><input id="sort_Favorites" name="sort" type="radio" value="Favorites"> Favorites</label></li>
<li><label><input id="sort_Favorites_per_view" name="sort" type="radio" value="Favorites per view"> Favorites per View</label></li>
<li><label><input id="sort_Views" name="sort" type="radio" value="Views"> Views</label></li>
<li><label><input id="sort_Release" name="sort" type="radio" value="Release"> Release Date</label></li>
<li><label><input id="sort_Alphabet" name="sort" type="radio" value="Alphabet"> Alphabet</label></li>
<li><label><input id="sort_Series_Premiere" name="sort" type="radio" value="Series Premiere"> Series Premiere Date</label></li>
<li><label><input id="sort_Season_Premiere" name="sort" type="radio" value="Season Premiere"> Season Premiere Date</label></li>
<li style="display: none"><label><input id="sort_In_Theaters" name="sort" type="radio" value="In Theaters"> In Theaters</label></li>
<li style="display: none"><label><input id="sort_Streaming_Release" name="sort" type="radio" value="Streaming Release"> In Theaters</label></li>
<li style="display: none"><label><input id="sort_New" name="sort" type="radio" value="New"> New</label></li>
</ul>
</div>
</div>
<div>
<span class="btn btn-blue">Genre <i class="arrow-down"></i></span>
<div style="width: 370px; left: -70px;">
Mode: <label><input id="genre_mode_and" name="genre_mode" type="radio" value="and"> And</label> <label><input id="genre_mode_" name="genre_mode" type="radio" value="" checked> Or</label>
<ul class="menu-genre-list">
<li class="genre-filter-bar"><label><input id="genre[]" name="genre[]" type="checkbox" value="Action"> Action</label></li>
<li class="genre-filter-bar"><label><input id="genre[]" name="genre[]" type="checkbox" value="Adventure"> Adventure</label></li>
<li class="genre-filter-bar"><label><input id="genre[]" name="genre[]" type="checkbox" value="Animation"> Animation</label></li>
<li class="genre-filter-bar"><label><input id="genre[]" name="genre[]" type="checkbox" value="Anime"> Anime</label></li>
<li class="genre-filter-bar"><label><input id="genre[]" name="genre[]" type="checkbox" value="Biography"> Biography</label></li>
<li class="genre-filter-bar"><label><input id="genre[]" name="genre[]" type="checkbox" value="Children"> Children</label></li>
<li class="genre-filter-bar"><label><input id="genre[]" name="genre[]" type="checkbox" value="Comedy"> Comedy</label></li>
<li class="genre-filter-bar"><label><input id="genre[]" name="genre[]" type="checkbox" value="Crime"> Crime</label></li>
<li class="genre-filter-bar"><label><input id="genre[]" name="genre[]" type="checkbox" value="DIY"> DIY</label></li>
<li class="genre-filter-bar"><label><input id="genre[]" name="genre[]" type="checkbox" value="Documentary"> Documentary</label></li>
<li class="genre-filter-bar"><label><input id="genre[]" name="genre[]" type="checkbox" value="Drama"> Drama</label></li>
<li class="genre-filter-bar"><label><input id="genre[]" name="genre[]" type="checkbox" value="Espionage"> Espionage</label></li>
<li class="genre-filter-bar"><label><input id="genre[]" name="genre[]" type="checkbox" value="Family"> Family</label></li>
<li class="genre-filter-bar"><label><input id="genre[]" name="genre[]" type="checkbox" value="Fantasy"> Fantasy</label></li>
<li class="genre-filter-bar"><label><input id="genre[]" name="genre[]" type="checkbox" value="Film-Noir"> Film-Noir</label></li>
<li class="genre-filter-bar"><label><input id="genre[]" name="genre[]" type="checkbox" value="Food"> Food</label></li>
<li class="genre-filter-bar"><label><input id="genre[]" name="genre[]" type="checkbox" value="Game-Show"> Game-Show</label></li>
<li class="genre-filter-bar"><label><input id="genre[]" name="genre[]" type="checkbox" value="History"> History</label></li>
<li class="genre-filter-bar"><label><input id="genre[]" name="genre[]" type="checkbox" value="Horror"> Horror</label></li>
<li class="genre-filter-bar"><label><input id="genre[]" name="genre[]" type="checkbox" value="Legal"> Legal</label></li>
<li class="genre-filter-bar"><label><input id="genre[]" name="genre[]" type="checkbox" value="Medical"> Medical</label></li>
<li class="genre-filter-bar"><label><input id="genre[]" name="genre[]" type="checkbox" value="Music"> Music</label></li>
<li class="genre-filter-bar"><label><input id="genre[]" name="genre[]" type="checkbox" value="Musical"> Musical</label></li>
<li class="genre-filter-bar"><label><input id="genre[]" name="genre[]" type="checkbox" value="Mystery"> Mystery</label></li>
<li class="genre-filter-bar"><label><input id="genre[]" name="genre[]" type="checkbox" value="Nature"> Nature</label></li>
<li class="genre-filter-bar"><label><input id="genre[]" name="genre[]" type="checkbox" value="News"> News</label></li>
<li class="genre-filter-bar"><label><input id="genre[]" name="genre[]" type="checkbox" value="Reality-TV"> Reality-TV</label></li>
<li class="genre-filter-bar"><label><input id="genre[]" name="genre[]" type="checkbox" value="Romance"> Romance</label></li>
<li class="genre-filter-bar"><label><input id="genre[]" name="genre[]" type="checkbox" value="Sci-Fi"> Sci-Fi</label></li>
<li class="genre-filter-bar"><label><input id="genre[]" name="genre[]" type="checkbox" value="Short"> Short</label></li>
<li class="genre-filter-bar"><label><input id="genre[]" name="genre[]" type="checkbox" value="Sport"> Sport</label></li>
<li class="genre-filter-bar"><label><input id="genre[]" name="genre[]" type="checkbox" value="Sports"> Sports</label></li>
<li class="genre-filter-bar"><label><input id="genre[]" name="genre[]" type="checkbox" value="Supernatural"> Supernatural</label></li>
<li class="genre-filter-bar"><label><input id="genre[]" name="genre[]" type="checkbox" value="Talk-Show"> Talk-Show</label></li>
<li class="genre-filter-bar"><label><input id="genre[]" name="genre[]" type="checkbox" value="Thriller"> Thriller</label></li>
<li class="genre-filter-bar"><label><input id="genre[]" name="genre[]" type="checkbox" value="Travel"> Travel</label></li>
<li class="genre-filter-bar"><label><input id="genre[]" name="genre[]" type="checkbox" value="War"> War</label></li>
<li class="genre-filter-bar"><label><input id="genre[]" name="genre[]" type="checkbox" value="Western"> Western</label></li>
</ul>
</div>
</div>
<div>
<span class="btn btn-blue">Streaming <i class="arrow-down"></i></span>
<div id="subscription-selector">
<ul class="menu-section-list">
<li><label><input name="my_subscriptions" type="hidden" value=""><input id="my_subscriptions" name="my_subscriptions" type="checkbox" value="true"> My Subscriptions</label> (<a href="/registrations/edit">Add</a>)</li>
<li><label><input name="free_links" type="hidden" value=""><input id="free_links" name="free_links" type="checkbox" value="true"> Free Links</label></li>
<li><label><input name="missing_links" type="hidden" value=""><input id="missing_links" name="missing_links" type="checkbox" value="true"> No Free Links</label></li>
<li>
<input name="subscription" type="hidden" value=""><input id="subscription" name="subscription" type="checkbox" value="true">
<select class="services-select2" id="service" name="service"></select>
in
<select class="country-select2" id="service_country" name="service_country"><option value="US">United States</option></select>
</li>
<li>
<label>
<input name="buy_rent" type="hidden" value=""><input id="buy_rent" name="buy_rent" type="checkbox" value="true">
Buy/Rent in
</label>
<select class="country-select2" id="buy_rent_country" name="buy_rent_country"><option value="US">United States</option></select>
</li>
</ul>
</div>
</div>
<div>
<span class="btn btn-blue">Type <i class="arrow-down"></i></span>
<div>
<ul class="menu-section-list">
<li><label><input id="type_movie" name="type" type="radio" value="movie"> Movie</label></li>
<li><label><input id="type_tv" name="type" type="radio" value="tv"> TV</label></li>
<li><label><input id="type_" name="type" type="radio" value="" checked> Both</label></li>
</ul>
</div>
</div>
</div>
</form>
<div class="clearer"></div>
<div class="index_item index_item_ie">
<a href="/movie/1334196-el-camino-a-breaking-bad-movie" title="El Camino: A Breaking Bad Movie (2019)">
<img src="/poster/small/1334196-el-camino-a-breaking-bad-movie-7-D84.jpg" border="0" width="150" height="225" alt="Watch El Camino: A Breaking Bad Movie">
<h2><div class="title-cutoff">El Camino: A Breaking Bad Movie</div> (2019)</h2>
</a>
<div class="index_ratings">
<div id="unit_long2792883">
<ul style="width: 100px;" class="unit-rating">
<li style="width: 85.0px;" class="current-rating">Current rating.</li><li class="r1-unit">
</li><li class="r2-unit"></li><li class="r3-unit"></li><li class="r4-unit"></li><li class="r5-unit"></li>
</ul>
</div>
</div>
<div class="floating-btn preview-btn" data-id="1334196" data-series="">
info
</div>
</div>
<div class="clearer"></div>
<div class="clearer"></div>
<div class="clearer"></div>
<div class="pagination">
<span class="current">1</span>
</div>
<script>
window.preview_list = [1334196, ]
</script>
</div>
</div>
<div class="footer footer_left">
PrimeWire | 1Channel | Formerly LetMeWatchThis - <a href="/" title="PrimeWire | 1Channel">PrimeWire | 1Channel</a>! - <a href="/sitemaps/sitemap.xml.gz">Sitemap</a> - <a href="/legal">Legal</a>
<label><input type="checkbox" id="darkmode-toggle" >Dark Mode</label>
</div>
</div>
<div class="col2">
<a href="/home"><div class="logo"></div></a>
<div class="sidebar">
<div class="loginform" style="width: 280px;">
<form action="/sessions" class="secure" method="post"><input name="_csrf_token" type="hidden" value="ARR5ZCUZFTEbB3JqFQUmMgxgLyBYORAB1L53hhbdxoKGG_OFDUyf0JRx">
<div class="form-group">
<label for="session_email">Email</label>
<input id="session_email" name="session[email]" type="text">
</div>
<div class="form-group">
<label for="session_password">Password</label>
<input id="session_password" name="session[password]" type="password">
</div>
<table width="100%" border="0" cellspacing="0" cellpadding="0" style="margin:10px 0px 10px 0px;">
<tbody>
<tr>
<td>
<div class="form-group">
<input checked type="checkbox" class="loginform_checkbox" name="remember" id="remmeber" style="float:left; width:20px;">
<span style="float:left; font-size: 12px; padding:2px 0px 0px 0px; font-weight:bold;">Remember Me</span>
</div>
<div class="clearer"></div>
</td>
<td width="120"><input type="submit" name="login_submit" value="Login" class="login_button" style="width: 120px;"> </td>
</tr>
</tbody>
</table>
<span class="forgot_link"><a href="/passwords/new" class="homing">Forgot Login </a></span> | <span class="register_link"><a href="/registrations/new" class="homing">Make a Free Account</a></span>
</form>
</div>
<h2>Information</h2>
<a href="/faq"><img src="/images/guide_link.gif" alt="LetMeWatchThis Guide" border="0"></a>
<div style="height: 4px;"></div>
<a href="/schedule"><img src="/images/tvschedule_button.jpg" alt="TV Schedule" border="0"></a>
<div style="height: 4px;"></div>
<div style="padding: 0 5px;">
PrimeWire is a social site for discovering, sharing and watching movies and TV shows. <a href="/start" style="text-decoration: underline;">more info</a>
</div>
<div style="padding: 0 5px;">
<a href="https://www.primewire.tf">PrimeWire.tf</a> and <a href="https://www.primewire.mov">PrimeWire.mov</a> are the official domain for PrimeWire
</div>
<h2>Latest Comments</h2>
<div class="latest_comments com_class_tv">
<a href="/tv/368639/foundation-season-3-episode-10">Foundation S3 E10</a>
<p>
<span class="latest_comments_poster">
<a href="/user/dd3dd">dd3dd</a> :
</span>
I think Demerzel knows that&#39;s why all the other Dusks have their lives ended around this t...
</p>
</div>
<div class="latest_comments com_class_tv">
<a href="/tv/1516834/the-rainmaker-season-1-episode-5">The Rainmaker S1 E5</a>
<p>
<span class="latest_comments_poster">
<a href="/user/dd3dd">dd3dd</a> :
</span>
Ep5: Absolute poop of an episode compared to the previous ones. Lazy standard writing of m...
</p>
</div>
<div class="latest_comments com_class_mov">
<a href="/movie/1409057-the-long-walk">The Long Walk</a>
<p>
<span class="latest_comments_poster">
<a href="/user/Neoblade">Neoblade</a> :
</span>
OK YES SKIP TO THE ENDING WTF.
</p>
</div>
<div class="latest_comments com_class_mov">
<a href="/movie/1409057-the-long-walk">The Long Walk</a>
<p>
<span class="latest_comments_poster">
<a href="/user/Neoblade">Neoblade</a> :
</span>
WARNING WARNING: This film was absolute shit. Skipped through it, got the point but man, w...
</p>
</div>
<div class="latest_comments com_class_tv">
<a href="/tv/1331004-star-trek-picard">Star Trek: Picard</a>
<p>
<span class="latest_comments_poster">
<a href="/user/Twixtid">Twixtid</a> :
</span>
Although I haven&#39;t been a Trek fan for long, I started my binge with DS9 coming from Babyl...
</p>
</div>
<div style="text-align:right; padding:5px; font-size: 11px;"><a href="/comments?sort=latest">More Comments</a></div>
<h2>Top Comments</h2>
<div class="latest_comments com_class_mov">
<a href="/movie/874438-playboys-erotic-fantasies-iii">Playboy&#39;s Erotic Fantasies III</a>
<p>
<span class="latest_comments_poster">
<a href="/user/snazzydetritus">snazzydetritus</a> :
</span>
Full disclosure - I haven&#39;t seen a moment of this video, and don&#39;t intend to; but I saw Li...
</p>
</div>
<div class="latest_comments com_class_mov">
<a href="/movie/874438-playboys-erotic-fantasies-iii">Playboy&#39;s Erotic Fantasies III</a>
<p>
<span class="latest_comments_poster">
<a href="/user/snazzydetritus">snazzydetritus</a> :
</span>
my favorite comment of the day
</p>
</div>
<div class="latest_comments com_class_tv">
<a href="/tv/368639/foundation-season-3-episode-10">Foundation S3 E10</a>
<p>
<span class="latest_comments_poster">
<a href="/user/Bryant315">Bryant315</a> :
</span>
<span class="toggler hide" togglee-id="B6Jaf">Contains spoilers. Click to show.</span>
<span class="togglee" id="B6Jaf">
dusk really wanted to live!
poor dermazel! poor harry!
sorry mule :(
</span>
</p>
</div>
<div class="latest_comments com_class_mov">
<a href="/movie/874438-playboys-erotic-fantasies-iii">Playboy&#39;s Erotic Fantasies III</a>
<p>
<span class="latest_comments_poster">
<a href="/user/%2528%25E2%258C%2590%25E2%2596%25A0_%25E2%2596%25A0%2529">(⌐■_■)</a> :
</span>
NS, ryte?!?!! ... wait &#39;till ya see the wardrobe(s)... 0.0
Comment: straight up +10
</p>
</div>
<div class="latest_comments com_class_tv">
<a href="/tv/1585109-the-sunshine-murders">The Sunshine Murders</a>
<p>
<span class="latest_comments_poster">
<a href="/user/AmieWarren">AmieWarren</a> :
</span>
This show is just bad. The characters are annoying, especially the Kiwi sister, half of th...
</p>
</div>
<div style="text-align:right; padding:5px; font-size: 11px;"><a href="/comments?sort=best-recent">More Comments</a></div>
</div>
<div class="footer footer_right">
<a href="#" title=" unregistered">760 users online</a> -
<a href="/contact">Contacts</a> -
<a href="/faq">FAQ</a> -
<a href="/dmca">DMCA</a> -
<a href="/api">API</a> -
<a href="https://primesrc.me" target="_blank">Embed</a>
</div>
</div>
</div>
<script>
window.csrf_token = "ARR5ZCUZFTEbB3JqFQUmMgxgLyBYORAB1L53hhbdxoKGG_OFDUyf0JRx";
window.subs = false
window.tsr = false
document.dispatchEvent(window.appTrigger);
window.appTriggered = true;
</script>
<div id="previewer-el"></div>
</body></html>

File diff suppressed because one or more lines are too long

View file

@ -1,394 +0,0 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html lang="en-US" itemscope itemtype="http://schema.org/WebPage">
<head>
<script>
window.appTrigger = document.createEvent("Event");
window.appTrigger.initEvent("appTrigger", true, true);
</script>
<script async type="text/javascript" src="/js/app-2dec7320ca90cd70f913d51050d73c10.js?vsn=d"></script>
<title>
PrimeWire - Social Movie & TV Tracker
</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<meta name="robots" content="ALL,INDEX,FOLLOW">
<meta name="revisit-after" content="1 days">
<meta name="viewport" content="width=device-width, initial-scale=1">
<script>
var width = (window.innerWidth > 0) ? window.innerWidth : screen.width;
var scale = width/(670.0)
document.querySelector('meta[name=viewport]').setAttribute('content', 'width=670,initial-scale='+scale);
</script>
<meta name="keywords" content="primewire, 1channel, letmewatchthis, movies, tv shows, cast, crew, discover movies">
<meta name="description" content="PrimeWire is a social movie and TV show site which lets you find new movies and TV shows, share them with friends, and find streaming services to watch them on.">
<meta name="classification" content="Movies">
<meta name="distribution" content="Global">
<meta name="rating" content="General">
<meta charset="utf-8">
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
<meta http-equiv="content-language" content="en"/>
<meta name="robots" content="index, follow">
<meta name="revisit-after" content="1 days">
<meta property="og:title" content="PrimeWire">
<meta property="og:description" content="PrimeWire is a social movie and TV show site which lets you find new movies and TV shows, share them with friends, and find streaming services to watch them on.">
<meta property="og:type" content="website">
<meta property="og:image" content="/images/circle_logo.jpg">
<meta property="og:image:width" content="300">
<meta property="og:image:height" content="300">
<meta property="og:image:type" content="image/jpg">
<meta name="referrer" content="no-referrer-when-downgrade" />
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Roboto:wght@100;300;400;500;700;900&display=swap" rel="stylesheet">
<link rel="icon" href="/favicon.ico" type="image/x-icon">
<link rel="shortcut icon" href="/favicon.ico" type="image/x-icon">
<link rel="stylesheet" href="/css/app-3d1ad52122303f34d671a8e13b69704b.css?vsn=d" type="text/css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.2/css/all.min.css" integrity="sha512-HK5fgLBL+xu6dm/Ii3z4xhlSUyZgTT9tuc/hSrtw6uzJOvgRr2a9jyxxT1ely+B+xFAmJKVSTbpM/CuL7qxO8w==" crossorigin="anonymous" />
<script>
window.series = {}
</script>
</head>
<body class="">
<div class="header-bar"></div>
<div class="container">
<div class="col1">
<div class="menu">
<h1 id="a_header"><a href="/home" title="PrimeWire"><span>PrimeWire</span></a></h1>
<div class="header ">
<div class="header_search">
<form method="get" action="/filter" id="searchform">
<fieldset class="search_container">
<input id="search_term" name="s" class="box" placeholder="Search Title or IMDb ID" type="text" value="">
<button class="btn" title="Submit Search" type="submit"></button>
</fieldset>
</form>
</div>
<div class="nav_tabs"><ul>
<li class="unpressed"><a href="/movies" title="Movies">Movies</a></li>
<li class="unpressed"><a href="/tv" title="TV Shows">TV Shows</a></li>
<li class="unpressed"><a href="/schedule" title="TV Schedule">Schedule</a></li>
<li class="unpressed"><a href="/playlists" title="Playlists">Playlists</a></li>
<li class="unpressed"><a href="/forum" title="Forums">Forum</a></li>
</ul>
</div>
</div>
</div>
<div class="main-body">
<div id="messages">
<div class="info_message">Try our new domain, <a href="https://www.primewire.mov">PrimeWire.mov</a></div>
</div>
<div class="some_padding">
<h1 class="titles">
<span>Legal Stuff</span>
</h1>
<p><strong>General</strong></p>
<p>Our terms of service are to be taken into consideration and adhered to at all times whilst using the site. All users are advised that access to this site and the use of the services detailed therein are strictly conditional upon your confirmation that you comply fully with our terms of use. By proceeding to surf primewire.ag or otherwise using this site, you signify your unequivocal acceptance of these and any other terms prevailing at this or at any future time.</p>
<p><strong>Governing Law</strong></p>
<p>The governing law imposed will be that of the Klingon Empire, the country in which primewire.ag is based and from which all services are provided.</p>
<p><strong>Relationship</strong></p>
<p>The relationship between you (the user) and us (primewire.ag, our agents and partners) is that we provide you with access to the referencing material and media contained within our site, which is provided to you on a purely non commercial basis and is, therefore, not that of customer and supplier.</p>
<p><strong>Content</strong></p>
<p>primewire.ag does not host, provide, archive, store, or distribute media of any kind, and acts merely as an index (or directory) of media posted by other webmasters on the internet, which is completely outside of our control.</p>
<p>Whereas we do not filter such references, we cannot and do not attempt to control, censor, or block any indexed material that may be considered offensive, abusive, libellous, obnoxious, inaccurate, deceptive, unlawful or otherwise distressing neither do we accept responsibility for this content or the consequences of such content being made available.</p>
<p>Material may be inappropriately described or subject to restrictions such as copyright, licensing and other limitations and it is the sole responsibility of those having access to such material to comply with any or all lawful obligations arising from such material coming into their possession and, thus mitigate any alleged transgression.</p>
<p>All users warrant that they are 18 years of age or older, and, therefore, qualified to enter into this agreement either as an individual or as a corporate entity.</p>
<p>All users undertake to comply with the national laws applicable to the country they reside in and observe the rights inherent in any copyright material whilst upholding the rights of any copyright owner.</p>
<p>All users are advised to use caution, discretion, common sense and personal judgment when using primewire.ag or any references detailed within the directory and to respect the wishes of others who may value freedom from censorship, as consenting adults equal to (or possibly superior to) your own personal preferences.</p>
<p><strong>Quality Of Service</strong></p>
<p>primewire.ag does not provide commercial services and there are no actual or implied guarantees as to the availability of service or the speed, operation or function of this site, which is offered on a basis to those who choose to comply with the terms detailed within and access the <20>free<65> contents of this site.</p>
<p>Privacy, Spam &amp; Unsolicited Contact</p>
<p>This site will comply with the requirements of any law enforcement or other officials, Courts, Police or others with a legitimate interest in the official investigation or enforcement of law applicable to the country in which our service is provided, United Kingdom.</p>
<p>The protection of the rights of others is of paramount importance to primewire.ag, and this extends to your adherence to intellectual property law, the laws prevailing in your country or residence (or any temporary residence), the rights of others to enjoy freedom from slander, libel, defamation, provocation, harassment, discrimination of any kind or any other action that may be deemed offensive by the individual concerned or the management of this site.</p>
<p>Users may not use the primewire.ag site or any facilities provided by us to spam, market or promote any goods, services, membership or other websites.</p>
<p><strong>Intellectual Property - General</strong></p>
<p>primewire.ag respects the rights of others, and prohibits the use of referenced material for any purpose other than that for which it is intended (where such use is lawful and free of civil liability or other constraint) and in such circumstances where possession of such material may have any adverse financial, prejudicial or any other effect on any other third party.</p>
<p>primewire.ag is copyrighted, and all rights are reserved, as those are of the proprietors and those of the partners websites material referenced within. Anyone found imitating the site or stealing content from the site will be liable to prosecution.</p>
<p><strong>Definitions</strong></p>
<p>The term <20>the site<74> applies to the site (primewire.ag), its staff, administration, owners, agents, representatives, suppliers and partners. The term <20>the user<65> applies to any site visitor who wishes to proceed surfing the site once arriving at primewire.ag.</p>
<p><strong>Agreement</strong></p>
<p>In usage of this site, or by otherwise using this site, you (the user), hereby undertake to adhere to the terms of use detailed herein and any others appended hereto, without evasion, equivocation or reservation of any kind, in the knowledge that failure to comply with the terms will result in suspension or denial of your access to the site and potential legal and civil penalties, together with the right to make the full circumstances publicly known.</p>
<p><strong>Your Privacy</strong></p>
<p>primewire.ag is committed to protecting your privacy. primewire.ag does not sell, trade or rent your personal information to any other companies. primewire.ag will not collect any personal information about you except when you specifically and knowingly provide such information when registering for the site.</p>
<p>By using our Website, you consent to the collection and use of this information by primewire.ag. If we decide to change our privacy policy, we will post any changes to this page so that you are always aware of which information we collect, how we use it, and under which circumstances we disclose it.</p>
</div>
</div>
<div class="footer footer_left">
PrimeWire | 1Channel | Formerly LetMeWatchThis - <a href="/" title="PrimeWire | 1Channel">PrimeWire | 1Channel</a>! - <a href="/sitemaps/sitemap.xml.gz">Sitemap</a> - <a href="/legal">Legal</a>
<label><input type="checkbox" id="darkmode-toggle" >Dark Mode</label>
</div>
</div>
<div class="col2">
<a href="/home"><div class="logo"></div></a>
<div class="sidebar">
<div class="loginform" style="width: 280px;">
<form action="/sessions" class="secure" method="post"><input name="_csrf_token" type="hidden" value="KxslGmYCCjsPPngtCiRuEEZWCgoNHRoutQz_6GLokk9NUiXf72xLTVlz">
<div class="form-group">
<label for="session_email">Email</label>
<input id="session_email" name="session[email]" type="text">
</div>
<div class="form-group">
<label for="session_password">Password</label>
<input id="session_password" name="session[password]" type="password">
</div>
<table width="100%" border="0" cellspacing="0" cellpadding="0" style="margin:10px 0px 10px 0px;">
<tbody>
<tr>
<td>
<div class="form-group">
<input checked type="checkbox" class="loginform_checkbox" name="remember" id="remmeber" style="float:left; width:20px;">
<span style="float:left; font-size: 12px; padding:2px 0px 0px 0px; font-weight:bold;">Remember Me</span>
</div>
<div class="clearer"></div>
</td>
<td width="120"><input type="submit" name="login_submit" value="Login" class="login_button" style="width: 120px;"> </td>
</tr>
</tbody>
</table>
<span class="forgot_link"><a href="/passwords/new" class="homing">Forgot Login </a></span> | <span class="register_link"><a href="/registrations/new" class="homing">Make a Free Account</a></span>
</form>
</div>
<h2>Information</h2>
<a href="/faq"><img src="/images/guide_link.gif" alt="LetMeWatchThis Guide" border="0"></a>
<div style="height: 4px;"></div>
<a href="/schedule"><img src="/images/tvschedule_button.jpg" alt="TV Schedule" border="0"></a>
<div style="height: 4px;"></div>
<div style="padding: 0 5px;">
PrimeWire is a social site for discovering, sharing and watching movies and TV shows. <a href="/start" style="text-decoration: underline;">more info</a>
</div>
<div style="padding: 0 5px;">
<a href="https://www.primewire.tf">PrimeWire.tf</a> and <a href="https://www.primewire.mov">PrimeWire.mov</a> are the official domain for PrimeWire
</div>
<h2>Latest Comments</h2>
<div class="latest_comments com_class_tv">
<a href="/tv/368639/foundation-season-3-episode-10">Foundation S3 E10</a>
<p>
<span class="latest_comments_poster">
<a href="/user/dd3dd">dd3dd</a> :
</span>
I think Demerzel knows that&#39;s why all the other Dusks have their lives ended around this t...
</p>
</div>
<div class="latest_comments com_class_tv">
<a href="/tv/1516834/the-rainmaker-season-1-episode-5">The Rainmaker S1 E5</a>
<p>
<span class="latest_comments_poster">
<a href="/user/dd3dd">dd3dd</a> :
</span>
Ep5: Absolute poop of an episode compared to the previous ones. Lazy standard writing of m...
</p>
</div>
<div class="latest_comments com_class_mov">
<a href="/movie/1409057-the-long-walk">The Long Walk</a>
<p>
<span class="latest_comments_poster">
<a href="/user/Neoblade">Neoblade</a> :
</span>
OK YES SKIP TO THE ENDING WTF.
</p>
</div>
<div class="latest_comments com_class_mov">
<a href="/movie/1409057-the-long-walk">The Long Walk</a>
<p>
<span class="latest_comments_poster">
<a href="/user/Neoblade">Neoblade</a> :
</span>
WARNING WARNING: This film was absolute shit. Skipped through it, got the point but man, w...
</p>
</div>
<div class="latest_comments com_class_tv">
<a href="/tv/1331004-star-trek-picard">Star Trek: Picard</a>
<p>
<span class="latest_comments_poster">
<a href="/user/Twixtid">Twixtid</a> :
</span>
Although I haven&#39;t been a Trek fan for long, I started my binge with DS9 coming from Babyl...
</p>
</div>
<div style="text-align:right; padding:5px; font-size: 11px;"><a href="/comments?sort=latest">More Comments</a></div>
<h2>Top Comments</h2>
<div class="latest_comments com_class_mov">
<a href="/movie/874438-playboys-erotic-fantasies-iii">Playboy&#39;s Erotic Fantasies III</a>
<p>
<span class="latest_comments_poster">
<a href="/user/snazzydetritus">snazzydetritus</a> :
</span>
Full disclosure - I haven&#39;t seen a moment of this video, and don&#39;t intend to; but I saw Li...
</p>
</div>
<div class="latest_comments com_class_mov">
<a href="/movie/874438-playboys-erotic-fantasies-iii">Playboy&#39;s Erotic Fantasies III</a>
<p>
<span class="latest_comments_poster">
<a href="/user/snazzydetritus">snazzydetritus</a> :
</span>
my favorite comment of the day
</p>
</div>
<div class="latest_comments com_class_tv">
<a href="/tv/368639/foundation-season-3-episode-10">Foundation S3 E10</a>
<p>
<span class="latest_comments_poster">
<a href="/user/Bryant315">Bryant315</a> :
</span>
<span class="toggler hide" togglee-id="y-AQt">Contains spoilers. Click to show.</span>
<span class="togglee" id="y-AQt">
dusk really wanted to live!
poor dermazel! poor harry!
sorry mule :(
</span>
</p>
</div>
<div class="latest_comments com_class_mov">
<a href="/movie/874438-playboys-erotic-fantasies-iii">Playboy&#39;s Erotic Fantasies III</a>
<p>
<span class="latest_comments_poster">
<a href="/user/%2528%25E2%258C%2590%25E2%2596%25A0_%25E2%2596%25A0%2529">(⌐■_■)</a> :
</span>
NS, ryte?!?!! ... wait &#39;till ya see the wardrobe(s)... 0.0
Comment: straight up +10
</p>
</div>
<div class="latest_comments com_class_tv">
<a href="/tv/1585109-the-sunshine-murders">The Sunshine Murders</a>
<p>
<span class="latest_comments_poster">
<a href="/user/AmieWarren">AmieWarren</a> :
</span>
This show is just bad. The characters are annoying, especially the Kiwi sister, half of th...
</p>
</div>
<div style="text-align:right; padding:5px; font-size: 11px;"><a href="/comments?sort=best-recent">More Comments</a></div>
</div>
<div class="footer footer_right">
<a href="#" title=" unregistered">760 users online</a> -
<a href="/contact">Contacts</a> -
<a href="/faq">FAQ</a> -
<a href="/dmca">DMCA</a> -
<a href="/api">API</a> -
<a href="https://primesrc.me" target="_blank">Embed</a>
</div>
</div>
</div>
<script>
window.csrf_token = "KxslGmYCCjsPPngtCiRuEEZWCgoNHRoutQz_6GLokk9NUiXf72xLTVlz";
window.subs = false
window.tsr = false
document.dispatchEvent(window.appTrigger);
window.appTriggered = true;
</script>
<div id="previewer-el"></div>
</body></html>

View file

@ -1,598 +0,0 @@
// Jest Snapshot v1, https://jestjs.io/docs/snapshot-testing
exports[`PrimeWire handle el camino 1`] = `
[
{
"meta": {
"bytes": 1288490188,
"countryCodes": [
"en",
],
"referer": "https://www.primewire.tf",
"title": "El.Camino.A.Breaking.Bad.Movie.2019.1080p.WEBRip.x264 YTS.LT.mp4",
},
"url": "https://streamtape.com/v/qMVMPa49M1hz8BR/El.Camino.A.Breaking.Bad.Movie.2019.1080p.WEBRip.x264_YTS.LT.mp4",
},
{
"meta": {
"bytes": 1288490188,
"countryCodes": [
"en",
],
"referer": "https://www.primewire.tf",
"title": "El.Camino.A.Breaking.Bad.Movie.2019.1080p.WEBRip.x264 YTS.LT.mp4",
},
"url": "https://streamtape.com/v/6QLoLq0O8DtObX",
},
{
"meta": {
"countryCodes": [
"en",
],
"referer": "https://www.primewire.tf",
},
"url": "https://filelions.to/f/bv4b7tl9u1ij",
},
{
"meta": {
"countryCodes": [
"en",
],
"referer": "https://www.primewire.tf",
},
"url": "https://filelions.to/f/wayeo7l1cw7d",
},
{
"meta": {
"bytes": 1181116006,
"countryCodes": [
"en",
],
"referer": "https://www.primewire.tf",
"title": "El.Camino.A.Breaking.Bad.Movie.2019.720p.BluRay.x264.AAC-[YTS.MX].mp4",
},
"url": "https://voe.sx/paqi7qqku3zi",
},
{
"meta": {
"bytes": 1181116006,
"countryCodes": [
"en",
],
"referer": "https://www.primewire.tf",
"title": "El Camino A Breaking Bad Movie 2019 720p BluRay x264 AAC-YTS MX.mp4",
},
"url": "https://voe.sx/ysimllytd3zo",
},
{
"meta": {
"bytes": 1181116006,
"countryCodes": [
"en",
],
"referer": "https://www.primewire.tf",
"title": "El Camino A Breaking Bad Movie 2019 720p BluRay x264 AAC-YTS MX.mp4",
},
"url": "https://voe.sx/xwhvakkexuob",
},
{
"meta": {
"bytes": 2147483648,
"countryCodes": [
"en",
],
"referer": "https://www.primewire.tf",
"title": "El.Camino.A.Breaking.Bad.Movie.2019.720p.BluRay.x264.AAC-[YTS.MX].mp4",
},
"url": "https://mixdrop.ag/f/ql0qrxnjb89nx8",
},
{
"meta": {
"bytes": 2147483648,
"countryCodes": [
"en",
],
"referer": "https://www.primewire.tf",
"title": "El Camino A Breaking Bad Movie 2019 HDRip AC3-EVO.mp4",
},
"url": "https://mixdrop.ag/f/2bnmi",
},
{
"meta": {
"bytes": 2147483648,
"countryCodes": [
"en",
],
"referer": "https://www.primewire.tf",
"title": "El Camino A Breaking Bad Movie 2019 720p BluRay x264 AAC-YTS MX.mp4",
},
"url": "https://mixdrop.ag/f/4njk6691b1k60d",
},
{
"meta": {
"bytes": 1288490188,
"countryCodes": [
"en",
],
"referer": "https://www.primewire.tf",
"title": "El Camino A Breaking Bad Movie 2019 1080p WEBRip YTS LT",
},
"url": "https://dood.watch/d/05fm25orfeux",
},
{
"meta": {
"bytes": 1181116006,
"countryCodes": [
"en",
],
"referer": "https://www.primewire.tf",
"title": "El Camino A Breaking Bad Movie 2019 720p BluRay AAC-YTS MX",
},
"url": "https://dood.watch/d/j2pa25q11pdu",
},
{
"meta": {
"bytes": 1181116006,
"countryCodes": [
"en",
],
"referer": "https://www.primewire.tf",
"title": "El Camino A Breaking Bad Movie 2019 720p BluRay AAC-[YTS MX]",
},
"url": "https://dood.watch/d/9lw62yyosxc0",
},
{
"meta": {
"countryCodes": [
"en",
],
"referer": "https://www.primewire.tf",
},
"url": "https://streamwish.to/09q73jf6t6jw",
},
]
`;
exports[`PrimeWire handle el camino 2`] = `
[
{
"meta": {
"bytes": 1288490188,
"countryCodes": [
"en",
],
"referer": "https://www.primewire.tf",
"title": "El.Camino.A.Breaking.Bad.Movie.2019.1080p.WEBRip.x264 YTS.LT.mp4",
},
"url": "https://streamtape.com/v/qMVMPa49M1hz8BR/El.Camino.A.Breaking.Bad.Movie.2019.1080p.WEBRip.x264_YTS.LT.mp4",
},
{
"meta": {
"bytes": 1288490188,
"countryCodes": [
"en",
],
"referer": "https://www.primewire.tf",
"title": "El.Camino.A.Breaking.Bad.Movie.2019.1080p.WEBRip.x264 YTS.LT.mp4",
},
"url": "https://streamtape.com/v/6QLoLq0O8DtObX",
},
{
"meta": {
"countryCodes": [
"en",
],
"referer": "https://www.primewire.tf",
},
"url": "https://filelions.to/f/bv4b7tl9u1ij",
},
{
"meta": {
"countryCodes": [
"en",
],
"referer": "https://www.primewire.tf",
},
"url": "https://filelions.to/f/wayeo7l1cw7d",
},
{
"meta": {
"bytes": 1181116006,
"countryCodes": [
"en",
],
"referer": "https://www.primewire.tf",
"title": "El.Camino.A.Breaking.Bad.Movie.2019.720p.BluRay.x264.AAC-[YTS.MX].mp4",
},
"url": "https://voe.sx/paqi7qqku3zi",
},
{
"meta": {
"bytes": 1181116006,
"countryCodes": [
"en",
],
"referer": "https://www.primewire.tf",
"title": "El Camino A Breaking Bad Movie 2019 720p BluRay x264 AAC-YTS MX.mp4",
},
"url": "https://voe.sx/ysimllytd3zo",
},
{
"meta": {
"bytes": 1181116006,
"countryCodes": [
"en",
],
"referer": "https://www.primewire.tf",
"title": "El Camino A Breaking Bad Movie 2019 720p BluRay x264 AAC-YTS MX.mp4",
},
"url": "https://voe.sx/xwhvakkexuob",
},
{
"meta": {
"bytes": 2147483648,
"countryCodes": [
"en",
],
"referer": "https://www.primewire.tf",
"title": "El.Camino.A.Breaking.Bad.Movie.2019.720p.BluRay.x264.AAC-[YTS.MX].mp4",
},
"url": "https://mixdrop.ag/f/ql0qrxnjb89nx8",
},
{
"meta": {
"bytes": 2147483648,
"countryCodes": [
"en",
],
"referer": "https://www.primewire.tf",
"title": "El Camino A Breaking Bad Movie 2019 HDRip AC3-EVO.mp4",
},
"url": "https://mixdrop.ag/f/2bnmi",
},
{
"meta": {
"bytes": 2147483648,
"countryCodes": [
"en",
],
"referer": "https://www.primewire.tf",
"title": "El Camino A Breaking Bad Movie 2019 720p BluRay x264 AAC-YTS MX.mp4",
},
"url": "https://mixdrop.ag/f/4njk6691b1k60d",
},
{
"meta": {
"bytes": 1288490188,
"countryCodes": [
"en",
],
"referer": "https://www.primewire.tf",
"title": "El Camino A Breaking Bad Movie 2019 1080p WEBRip YTS LT",
},
"url": "https://dood.watch/d/05fm25orfeux",
},
{
"meta": {
"bytes": 1181116006,
"countryCodes": [
"en",
],
"referer": "https://www.primewire.tf",
"title": "El Camino A Breaking Bad Movie 2019 720p BluRay AAC-YTS MX",
},
"url": "https://dood.watch/d/j2pa25q11pdu",
},
{
"meta": {
"bytes": 1181116006,
"countryCodes": [
"en",
],
"referer": "https://www.primewire.tf",
"title": "El Camino A Breaking Bad Movie 2019 720p BluRay AAC-[YTS MX]",
},
"url": "https://dood.watch/d/9lw62yyosxc0",
},
{
"meta": {
"countryCodes": [
"en",
],
"referer": "https://www.primewire.tf",
},
"url": "https://streamwish.to/09q73jf6t6jw",
},
]
`;
exports[`PrimeWire handle imdb dead city s2e5 1`] = `
[
{
"meta": {
"countryCodes": [
"en",
],
"referer": "https://www.primewire.tf",
},
"url": "https://bigwarp.cc/4tb37obzt6re",
},
{
"meta": {
"countryCodes": [
"en",
],
"referer": "https://www.primewire.tf",
},
"url": "https://bigwarp.cc/u66q6mybilfa",
},
{
"meta": {
"countryCodes": [
"en",
],
"referer": "https://www.primewire.tf",
},
"url": "https://bigwarp.cc/aazhpuex9ppj",
},
{
"meta": {
"countryCodes": [
"en",
],
"referer": "https://www.primewire.tf",
},
"url": "https://orca.streamcasthub.store/?a=4f560fbe52#rc6mf",
},
{
"meta": {
"countryCodes": [
"en",
],
"referer": "https://www.primewire.tf",
},
"url": "https://filelions.to/f/odssr9dyjx5n",
},
{
"meta": {
"countryCodes": [
"en",
],
"referer": "https://www.primewire.tf",
},
"url": "https://filelions.to/f/eqmzrkv5kf5s",
},
{
"meta": {
"countryCodes": [
"en",
],
"referer": "https://www.primewire.tf",
},
"url": "https://filelions.to/f/fpru8wthtsf4",
},
{
"meta": {
"countryCodes": [
"en",
],
"referer": "https://www.primewire.tf",
},
"url": "https://filelions.to/f/0i0j0qz5o478",
},
{
"meta": {
"bytes": 426351001,
"countryCodes": [
"en",
],
"referer": "https://www.primewire.tf",
"title": "The.Walking.Dead.Dead.City.S02E05.The.Bird.Always.Knows.720p.AMZN.WEB-DL.DDP5.1.H.264-NTb.mkv",
},
"url": "https://voe.sx/te40pmzra8du",
},
{
"meta": {
"bytes": 426351001,
"countryCodes": [
"en",
],
"referer": "https://www.primewire.tf",
"title": "The.Walking.Dead.Dead.City.S02E05.The.Bird.Always.Knows.720p.AMZN.WEB-DL.DDP5.1.H.264-NTb.mkv",
},
"url": "https://voe.sx/y8lrmf2t7jhp",
},
{
"meta": {
"bytes": 445015654,
"countryCodes": [
"en",
],
"referer": "https://www.primewire.tf",
"title": "The.Walking.Dead.Dead.City.S02E05.The.Bird.Always.Knows.720p.AMZN.WEB-DL.DDP5.1.H.264-NTb.mp4",
},
"url": "https://voe.sx/grsvpdbxvw3e",
},
{
"meta": {
"bytes": 2147483648,
"countryCodes": [
"en",
],
"referer": "https://www.primewire.tf",
"title": "The.Walking.Dead.Dead.City.S02E05.The.Bird.Always.Knows.720p.AMZN.WEB-DL.DDP5.1.H.264-NTb.mp4",
},
"url": "https://mixdrop.ag/f/q1pz4k94uxxkgvo",
},
{
"meta": {
"bytes": 2147483648,
"countryCodes": [
"en",
],
"referer": "https://www.primewire.tf",
"title": "The.Walking.Dead.Dead.City.S02E05.The.Bird.Always.Knows.720p.AMZN.WEB-DL.DDP5.1.H.264-NTb.mp4",
},
"url": "https://mixdrop.ag/f/nlpj3q3ran17rv",
},
{
"meta": {
"bytes": 2147483648,
"countryCodes": [
"en",
],
"referer": "https://www.primewire.tf",
"title": "The.Walking.Dead.Dead.City.S02E05.The.Bird.Always.Knows.720p.AMZN.WEB-DL.DDP5.1.H.264-NTb.mkv.mp4",
},
"url": "https://mixdrop.ag/f/9wvz9gp3b3q1llk",
},
{
"meta": {
"countryCodes": [
"en",
],
"referer": "https://www.primewire.tf",
},
"url": "https://dood.watch/d/sn87i3ru7plx",
},
{
"meta": {
"countryCodes": [
"en",
],
"referer": "https://www.primewire.tf",
},
"url": "https://dood.watch/d/1qfuy5yiq4r6",
},
{
"meta": {
"countryCodes": [
"en",
],
"referer": "https://www.primewire.tf",
},
"url": "https://dood.watch/d/8odyvc9bre16",
},
{
"meta": {
"countryCodes": [
"en",
],
"referer": "https://www.primewire.tf",
},
"url": "https://dood.watch/d/reslxv9siz41",
},
{
"meta": {
"countryCodes": [
"en",
],
"referer": "https://www.primewire.tf",
},
"url": "https://streamwish.to/h9p9qqgpq2lw",
},
{
"meta": {
"countryCodes": [
"en",
],
"referer": "https://www.primewire.tf",
},
"url": "https://streamwish.to/s986lkdy8mb5",
},
{
"meta": {
"countryCodes": [
"en",
],
"referer": "https://www.primewire.tf",
},
"url": "https://streamwish.to/jult1lcvqjlt",
},
{
"meta": {
"countryCodes": [
"en",
],
"referer": "https://www.primewire.tf",
"title": "The Walking Dead Dead City S02E05 The Bird Always Knows 720p AMZN WEB-DL DDP5 1 H 264-NTb mkv",
},
"url": "https://savefiles.com/i0bj9gazequy",
},
{
"meta": {
"countryCodes": [
"en",
],
"referer": "https://www.primewire.tf",
"title": "The Walking Dead Dead City S02E05 The Bird Always Knows 720p AMZN WEB-DL DDP5 1 H 264-NTb mkv",
},
"url": "https://filemoon.sx/d/8wllnog0cyl7",
},
{
"meta": {
"countryCodes": [
"en",
],
"referer": "https://www.primewire.tf",
"title": "The Walking Dead Dead City S02E05 The Bird Always Knows 720p AMZN WEB-DL DDP5 1 H 264-NTb",
},
"url": "https://filemoon.sx/d/ftowmfa7f0ge/The.Walking.Dead.Dead.City.S02E05.The.Bird.Always.Knows.720p.AMZN.WEB-DL.DDP5.1.H.264-NTb.mkv",
},
{
"meta": {
"countryCodes": [
"en",
],
"referer": "https://www.primewire.tf",
},
"url": "http://vidmoly.me/w/46bi0sec0966",
},
{
"meta": {
"countryCodes": [
"en",
],
"referer": "https://www.primewire.tf",
},
"url": "http://vidmoly.me/w/okcwblnaqw3t",
},
{
"meta": {
"countryCodes": [
"en",
],
"referer": "https://www.primewire.tf",
"title": "The Walking Dead Dead City S02E05 The Bird Always Knows 720p AMZN WEB-DL DDP5 1 H 264-NTb",
},
"url": "https://luluvdoo.com/d/au00sj11vqku",
},
{
"meta": {
"countryCodes": [
"en",
],
"referer": "https://www.primewire.tf",
},
"url": "https://filegram.to/6q8gctbf79gc",
},
{
"meta": {
"countryCodes": [
"en",
],
"referer": "https://www.primewire.tf",
},
"url": "https://filegram.to/6yuyz0dgqu05",
},
{
"meta": {
"countryCodes": [
"en",
],
"referer": "https://www.primewire.tf",
},
"url": "https://filegram.to/erapbfgcdguq",
},
]
`;

View file

@ -12,7 +12,6 @@ import { MegaKino } from './MegaKino';
import { MeineCloud } from './MeineCloud';
import { MostraGuarda } from './MostraGuarda';
import { Movix } from './Movix';
import { PrimeWire } from './PrimeWire';
import { Source } from './Source';
import { StreamKiste } from './StreamKiste';
import { VerHdLink } from './VerHdLink';
@ -29,7 +28,6 @@ export const createSources = (fetcher: Fetcher): Source[] => {
new FourKHDHub(fetcher),
new VixSrc(fetcher),
// EN
new PrimeWire(fetcher),
// new Soaper(fetcher), // "temporarily" rate-limited for over a week
new VidSrc(fetcher),
// ES / MX

View file

@ -5,7 +5,6 @@ import { createExtractors, Extractor, ExtractorRegistry } from '../extractor';
import { Source, SourceResult } from '../source';
import { MeineCloud } from '../source/MeineCloud';
import { MostraGuarda } from '../source/MostraGuarda';
import { PrimeWire } from '../source/PrimeWire';
import { createTestContext } from '../test';
import { BlockedReason, CountryCode, Format, UrlResult } from '../types';
import { FetcherMock } from './FetcherMock';
@ -18,7 +17,6 @@ const ctx = createTestContext({ de: 'on', it: 'on' });
const meineCloud = new MeineCloud(fetcher);
const mostraGuarda = new MostraGuarda(fetcher);
const primeWire = new PrimeWire(fetcher);
describe('resolve', () => {
test('returns info as stream if no sources were configured', async () => {
@ -70,14 +68,6 @@ describe('resolve', () => {
expect(streamsWithExternalUrls.streams).toMatchSnapshot();
});
test('returns ytId instead of url for YouTube video', async () => {
const streamResolver = new StreamResolver(logger, new ExtractorRegistry(logger, createExtractors(fetcher)));
const streams = await streamResolver.resolve({ ...ctx, config: { ...ctx.config, en: 'on' } }, [primeWire], 'movie', new ImdbId('tt0069293', undefined, undefined));
expect(streams.ttl).not.toBeUndefined();
expect(streams.streams).toMatchSnapshot();
});
test('adds error info', async () => {
class MockSource extends Source {
public readonly id = 'mocksource';

View file

@ -132,6 +132,7 @@ export class StreamResolver {
};
private buildUrl(urlResult: UrlResult): { externalUrl: string } | { url: string } | { ytId: string } {
/* istanbul ignore if */
if (urlResult.ytId) {
return { ytId: urlResult.ytId };
}

View file

@ -1 +0,0 @@
{"servers":[{"name":"Mixdrop","key":"KmF1N","file_size":"2 GB","file_name":"Solaris 1972 PROPER 1080p BluRay x264-SADPANDA - [ENG SUBS] - tt0069293.mp4"},{"name":"Mixdrop","key":"98Gq8","file_size":"2 GB","file_name":"Solaris 1972 PROPER 1080p BluRay x264-SADPANDA - [ENG SUBS] - tt0069293.mp4"},{"name":"Dood","key":"nm5qr","file_size":"1.8 GB","file_name":"Solaris 1972 PROPER 1080p BluRay x264-SADPANDA - ENG SUBS - tt0069293"},{"name":"Dailymotion","key":"-XkLK","file_size":null,"file_name":null},{"name":"YouTube","key":"W9yNA","file_size":null,"file_name":null}],"info":{"tmdb_image":"/uER8n2iitx8Tek6v0wXeF5lMGXp.jpg","tmdb_backdrop":"https://imgproxy.primesrc.me/69ipI6yDMn4pOh35XYMNNSDVdvKcT5DZpCPAYWxAH_o/rs:fit:1000:10000:false/aHR0cHM6Ly9pbWFnZS50bWRiLm9yZy90L3AvdzEyODAvbW0zYU5UakZ2dW8wamVpdG5lUkRjMVpVTmpJLmpwZw","title":"Solaris","status":null,"release_date":"1972-09-26","description":"A psychologist is sent to a station orbiting a distant planet in order to discover what has caused the crew to go insane."}}

View file

@ -1,5 +0,0 @@
{
"link": "https://mixdrop.ag/f/gn1d6nkjiwdp8x4",
"host_id": 29,
"host": "mixdrop.ag"
}

View file

@ -1,5 +0,0 @@
{
"link": "https://www.youtube.com/watch?v=Z8ZhQPaw4rE",
"host_id": 19,
"host": "youtube.com"
}

View file

@ -1,5 +0,0 @@
{
"link": "https://dood.watch/d/1srct94x5yfz",
"host_id": 42,
"host": "dood.watch"
}

View file

@ -1,5 +0,0 @@
{
"link": "https://www.dailymotion.com/video/x4tjxgv",
"host_id": 40,
"host": "dailymotion.com"
}

View file

@ -1,5 +0,0 @@
{
"link": "https://mixdrop.ag/f/0vo8vlkqfpvopx",
"host_id": 29,
"host": "mixdrop.ag"
}

View file

@ -1,614 +0,0 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html lang="en-US" itemscope itemtype="http://schema.org/WebPage">
<head>
<script>
window.appTrigger = document.createEvent("Event");
window.appTrigger.initEvent("appTrigger", true, true);
</script>
<script async type="text/javascript" src="/js/app-2dec7320ca90cd70f913d51050d73c10.js?vsn=d"></script>
<title>
Movies and TV Shows matching &quot;tt0069293&quot; | PrimeWire
</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<meta name="robots" content="ALL,INDEX,FOLLOW">
<meta name="revisit-after" content="1 days">
<meta name="viewport" content="width=device-width, initial-scale=1">
<script>
var width = (window.innerWidth > 0) ? window.innerWidth : screen.width;
var scale = width/(670.0)
document.querySelector('meta[name=viewport]').setAttribute('content', 'width=670,initial-scale='+scale);
</script>
<meta name="keywords" content="primewire, 1channel, letmewatchthis, movies, tv shows, cast, crew, discover movies">
<meta name="description" content="PrimeWire is a social movie and TV show site which lets you find new movies and TV shows, share them with friends, and find streaming services to watch them on.">
<meta name="classification" content="Movies">
<meta name="distribution" content="Global">
<meta name="rating" content="General">
<meta charset="utf-8">
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
<meta http-equiv="content-language" content="en"/>
<meta name="robots" content="index, follow">
<meta name="revisit-after" content="1 days">
<meta property="og:title" content="PrimeWire">
<meta property="og:description" content="PrimeWire is a social movie and TV show site which lets you find new movies and TV shows, share them with friends, and find streaming services to watch them on.">
<meta property="og:type" content="website">
<meta property="og:image" content="/images/circle_logo.jpg">
<meta property="og:image:width" content="300">
<meta property="og:image:height" content="300">
<meta property="og:image:type" content="image/jpg">
<meta name="referrer" content="no-referrer-when-downgrade" />
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Roboto:wght@100;300;400;500;700;900&display=swap" rel="stylesheet">
<link rel="icon" href="/favicon.ico" type="image/x-icon">
<link rel="shortcut icon" href="/favicon.ico" type="image/x-icon">
<link rel="stylesheet" href="/css/app-3d1ad52122303f34d671a8e13b69704b.css?vsn=d" type="text/css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.2/css/all.min.css" integrity="sha512-HK5fgLBL+xu6dm/Ii3z4xhlSUyZgTT9tuc/hSrtw6uzJOvgRr2a9jyxxT1ely+B+xFAmJKVSTbpM/CuL7qxO8w==" crossorigin="anonymous" />
<script>
window.series = {}
</script>
</head>
<body class="">
<div class="header-bar"></div>
<div class="container">
<div class="col1">
<div class="menu">
<h1 id="a_header"><a href="/home" title="PrimeWire"><span>PrimeWire</span></a></h1>
<div class="header ">
<div class="header_search">
<form method="get" action="/filter" id="searchform">
<fieldset class="search_container">
<input id="search_term" name="s" class="box" placeholder="Search Title or IMDb ID" type="text" value="tt0069293">
<button class="btn" title="Submit Search" type="submit"></button>
</fieldset>
</form>
</div>
<div class="nav_tabs"><ul>
<li class="unpressed"><a href="/movies" title="Movies">Movies</a></li>
<li class="unpressed"><a href="/tv" title="TV Shows">TV Shows</a></li>
<li class="unpressed"><a href="/schedule" title="TV Schedule">Schedule</a></li>
<li class="unpressed"><a href="/playlists" title="Playlists">Playlists</a></li>
<li class="unpressed"><a href="/forum" title="Forums">Forum</a></li>
</ul>
</div>
</div>
</div>
<div class="main-body">
<div id="messages">
<div class="info_message">Try our new domain, <a href="https://www.primewire.mov">PrimeWire.mov</a></div>
</div>
<div class="index_container">
<h1 class="titles">
<span>Movies and TV Shows matching &quot;tt0069293&quot; </span>
</h1>
<form action="/filter" id="main-filter" method="get">
<div id="filter-bar">
<div>
<button class="btn btn-green" type="asdf">Filter</button>
</div>
<div>
<a href="/filter" class="btn btn-red">Reset</a>
</div>
<div>
<span class="btn btn-blue">More <i class="arrow-down"></i></span>
<div class="more-filters">
<span class="more-filter"><span class="more-filter-tag">Search Term:</span> <span><input id="s" name="s" type="text" value="tt0069293"></span></span>
<span class="more-filter"><span class="more-filter-tag">Year:</span>
<span class="range-select">
<input id="released_after" name="released_after" placeholder="1800" type="text">
to
<input id="released_before" name="released_before" placeholder="2050" type="text">
</span>
</span>
<span class="more-filter"><span class="more-filter-tag">Rating:</span>
<span class="range-select">
<input id="rating_above" name="rating_above" placeholder="0" type="text">
to
<input id="rating_below" name="rating_below" placeholder="5" type="text">
</span>
</span>
<span class="more-filter"><span class="more-filter-tag">Cast:</span> <select class="person-select2" id="cast" name="cast"></select></span>
<span class="more-filter"><span class="more-filter-tag">Crew:</span> <select class="person-select2" id="crew" name="crew"></select></span>
<span class="more-filter"><span class="more-filter-tag">Company:</span> <select class="company-select2" id="company" name="company"></select></span>
<span class="more-filter"><span class="more-filter-tag">Country:</span> <select class="country-select2" id="country" name="country" style="width: 205px"></select></span>
</div>
</div>
<div>
<span class="btn btn-blue">Direction <i class="arrow-down"></i></span>
<div>
<ul class="menu-section-list">
<li><label><input id="direction_asc" name="direction" type="radio" value="asc"> Ascending</label></li>
<li><label><input id="direction_desc" name="direction" type="radio" value="desc"> Descending</label></li>
</ul>
</div>
</div>
<div>
<span class="btn btn-blue">Sort <i class="arrow-down"></i></span>
<div style="width: 160px;">
<ul class="menu-sort-list">
<li><label><input id="sort_Featured" name="sort" type="radio" value="Featured"> Featured</label></li>
<li><label><input id="sort_Just_Added" name="sort" type="radio" value="Just Added"> Just Added</label></li>
<li><label><input id="sort_Popular" name="sort" type="radio" value="Popular"> Popular</label></li>
<li><label><input id="sort_Trending_Today" name="sort" type="radio" value="Trending Today"> Trending Today</label></li>
<li><label><input id="sort_Trending_this_Week" name="sort" type="radio" value="Trending this Week"> Trending this Week</label></li>
<li><label><input id="sort_Trending_this_Month" name="sort" type="radio" value="Trending this Month"> Trending this Month</label></li>
<li><label><input id="sort_External_Rating" name="sort" type="radio" value="External Rating"> External Rating</label></li>
<li><label><input id="sort_Primewire_Rating" name="sort" type="radio" value="Primewire Rating"> Primewire Rating</label></li>
<li><label><input id="sort_Favorites" name="sort" type="radio" value="Favorites"> Favorites</label></li>
<li><label><input id="sort_Favorites_per_view" name="sort" type="radio" value="Favorites per view"> Favorites per View</label></li>
<li><label><input id="sort_Views" name="sort" type="radio" value="Views"> Views</label></li>
<li><label><input id="sort_Release" name="sort" type="radio" value="Release"> Release Date</label></li>
<li><label><input id="sort_Alphabet" name="sort" type="radio" value="Alphabet"> Alphabet</label></li>
<li><label><input id="sort_Series_Premiere" name="sort" type="radio" value="Series Premiere"> Series Premiere Date</label></li>
<li><label><input id="sort_Season_Premiere" name="sort" type="radio" value="Season Premiere"> Season Premiere Date</label></li>
<li style="display: none"><label><input id="sort_In_Theaters" name="sort" type="radio" value="In Theaters"> In Theaters</label></li>
<li style="display: none"><label><input id="sort_Streaming_Release" name="sort" type="radio" value="Streaming Release"> In Theaters</label></li>
<li style="display: none"><label><input id="sort_New" name="sort" type="radio" value="New"> New</label></li>
</ul>
</div>
</div>
<div>
<span class="btn btn-blue">Genre <i class="arrow-down"></i></span>
<div style="width: 370px; left: -70px;">
Mode: <label><input id="genre_mode_and" name="genre_mode" type="radio" value="and"> And</label> <label><input id="genre_mode_" name="genre_mode" type="radio" value="" checked> Or</label>
<ul class="menu-genre-list">
<li class="genre-filter-bar"><label><input id="genre[]" name="genre[]" type="checkbox" value="Action"> Action</label></li>
<li class="genre-filter-bar"><label><input id="genre[]" name="genre[]" type="checkbox" value="Adventure"> Adventure</label></li>
<li class="genre-filter-bar"><label><input id="genre[]" name="genre[]" type="checkbox" value="Animation"> Animation</label></li>
<li class="genre-filter-bar"><label><input id="genre[]" name="genre[]" type="checkbox" value="Anime"> Anime</label></li>
<li class="genre-filter-bar"><label><input id="genre[]" name="genre[]" type="checkbox" value="Biography"> Biography</label></li>
<li class="genre-filter-bar"><label><input id="genre[]" name="genre[]" type="checkbox" value="Children"> Children</label></li>
<li class="genre-filter-bar"><label><input id="genre[]" name="genre[]" type="checkbox" value="Comedy"> Comedy</label></li>
<li class="genre-filter-bar"><label><input id="genre[]" name="genre[]" type="checkbox" value="Crime"> Crime</label></li>
<li class="genre-filter-bar"><label><input id="genre[]" name="genre[]" type="checkbox" value="DIY"> DIY</label></li>
<li class="genre-filter-bar"><label><input id="genre[]" name="genre[]" type="checkbox" value="Documentary"> Documentary</label></li>
<li class="genre-filter-bar"><label><input id="genre[]" name="genre[]" type="checkbox" value="Drama"> Drama</label></li>
<li class="genre-filter-bar"><label><input id="genre[]" name="genre[]" type="checkbox" value="Espionage"> Espionage</label></li>
<li class="genre-filter-bar"><label><input id="genre[]" name="genre[]" type="checkbox" value="Family"> Family</label></li>
<li class="genre-filter-bar"><label><input id="genre[]" name="genre[]" type="checkbox" value="Fantasy"> Fantasy</label></li>
<li class="genre-filter-bar"><label><input id="genre[]" name="genre[]" type="checkbox" value="Film-Noir"> Film-Noir</label></li>
<li class="genre-filter-bar"><label><input id="genre[]" name="genre[]" type="checkbox" value="Food"> Food</label></li>
<li class="genre-filter-bar"><label><input id="genre[]" name="genre[]" type="checkbox" value="Game-Show"> Game-Show</label></li>
<li class="genre-filter-bar"><label><input id="genre[]" name="genre[]" type="checkbox" value="History"> History</label></li>
<li class="genre-filter-bar"><label><input id="genre[]" name="genre[]" type="checkbox" value="Horror"> Horror</label></li>
<li class="genre-filter-bar"><label><input id="genre[]" name="genre[]" type="checkbox" value="Legal"> Legal</label></li>
<li class="genre-filter-bar"><label><input id="genre[]" name="genre[]" type="checkbox" value="Medical"> Medical</label></li>
<li class="genre-filter-bar"><label><input id="genre[]" name="genre[]" type="checkbox" value="Music"> Music</label></li>
<li class="genre-filter-bar"><label><input id="genre[]" name="genre[]" type="checkbox" value="Musical"> Musical</label></li>
<li class="genre-filter-bar"><label><input id="genre[]" name="genre[]" type="checkbox" value="Mystery"> Mystery</label></li>
<li class="genre-filter-bar"><label><input id="genre[]" name="genre[]" type="checkbox" value="Nature"> Nature</label></li>
<li class="genre-filter-bar"><label><input id="genre[]" name="genre[]" type="checkbox" value="News"> News</label></li>
<li class="genre-filter-bar"><label><input id="genre[]" name="genre[]" type="checkbox" value="Reality-TV"> Reality-TV</label></li>
<li class="genre-filter-bar"><label><input id="genre[]" name="genre[]" type="checkbox" value="Romance"> Romance</label></li>
<li class="genre-filter-bar"><label><input id="genre[]" name="genre[]" type="checkbox" value="Sci-Fi"> Sci-Fi</label></li>
<li class="genre-filter-bar"><label><input id="genre[]" name="genre[]" type="checkbox" value="Short"> Short</label></li>
<li class="genre-filter-bar"><label><input id="genre[]" name="genre[]" type="checkbox" value="Sport"> Sport</label></li>
<li class="genre-filter-bar"><label><input id="genre[]" name="genre[]" type="checkbox" value="Sports"> Sports</label></li>
<li class="genre-filter-bar"><label><input id="genre[]" name="genre[]" type="checkbox" value="Supernatural"> Supernatural</label></li>
<li class="genre-filter-bar"><label><input id="genre[]" name="genre[]" type="checkbox" value="Talk-Show"> Talk-Show</label></li>
<li class="genre-filter-bar"><label><input id="genre[]" name="genre[]" type="checkbox" value="Thriller"> Thriller</label></li>
<li class="genre-filter-bar"><label><input id="genre[]" name="genre[]" type="checkbox" value="Travel"> Travel</label></li>
<li class="genre-filter-bar"><label><input id="genre[]" name="genre[]" type="checkbox" value="War"> War</label></li>
<li class="genre-filter-bar"><label><input id="genre[]" name="genre[]" type="checkbox" value="Western"> Western</label></li>
</ul>
</div>
</div>
<div>
<span class="btn btn-blue">Streaming <i class="arrow-down"></i></span>
<div id="subscription-selector">
<ul class="menu-section-list">
<li><label><input name="my_subscriptions" type="hidden" value=""><input id="my_subscriptions" name="my_subscriptions" type="checkbox" value="true"> My Subscriptions</label> (<a href="/registrations/edit">Add</a>)</li>
<li><label><input name="free_links" type="hidden" value=""><input id="free_links" name="free_links" type="checkbox" value="true"> Free Links</label></li>
<li><label><input name="missing_links" type="hidden" value=""><input id="missing_links" name="missing_links" type="checkbox" value="true"> No Free Links</label></li>
<li>
<input name="subscription" type="hidden" value=""><input id="subscription" name="subscription" type="checkbox" value="true">
<select class="services-select2" id="service" name="service"></select>
in
<select class="country-select2" id="service_country" name="service_country"><option value="US">United States</option></select>
</li>
<li>
<label>
<input name="buy_rent" type="hidden" value=""><input id="buy_rent" name="buy_rent" type="checkbox" value="true">
Buy/Rent in
</label>
<select class="country-select2" id="buy_rent_country" name="buy_rent_country"><option value="US">United States</option></select>
</li>
</ul>
</div>
</div>
<div>
<span class="btn btn-blue">Type <i class="arrow-down"></i></span>
<div>
<ul class="menu-section-list">
<li><label><input id="type_movie" name="type" type="radio" value="movie"> Movie</label></li>
<li><label><input id="type_tv" name="type" type="radio" value="tv"> TV</label></li>
<li><label><input id="type_" name="type" type="radio" value="" checked> Both</label></li>
</ul>
</div>
</div>
</div>
</form>
<div class="clearer"></div>
<div class="index_item index_item_ie">
<a href="/movie/151849-solaris" title="Solaris (1972)">
<img src="/poster/small/151849-solaris-SQmyE.jpg" border="0" width="150" height="225" alt="Watch Solaris">
<h2><div class="title-cutoff">Solaris</div> (1972)</h2>
</a>
<div class="index_ratings">
<div id="unit_long2792883">
<ul style="width: 100px;" class="unit-rating">
<li style="width: 75.38461538461539px;" class="current-rating">Current rating.</li><li class="r1-unit">
</li><li class="r2-unit"></li><li class="r3-unit"></li><li class="r4-unit"></li><li class="r5-unit"></li>
</ul>
</div>
</div>
<div class="floating-btn preview-btn" data-id="151849" data-series="">
info
</div>
</div>
<div class="clearer"></div>
<div class="clearer"></div>
<div class="clearer"></div>
<div class="pagination">
<span class="current">1</span>
</div>
<script>
window.preview_list = [151849, ]
</script>
</div>
</div>
<div class="footer footer_left">
PrimeWire | 1Channel | Formerly LetMeWatchThis - <a href="/" title="PrimeWire | 1Channel">PrimeWire | 1Channel</a>! - <a href="/sitemaps/sitemap.xml.gz">Sitemap</a> - <a href="/legal">Legal</a>
<label><input type="checkbox" id="darkmode-toggle" >Dark Mode</label>
</div>
</div>
<div class="col2">
<a href="/home"><div class="logo"></div></a>
<div class="sidebar">
<div class="loginform" style="width: 280px;">
<form action="/sessions" class="secure" method="post"><input name="_csrf_token" type="hidden" value="FlUdASwCJGgSR2EydCBsJgoHIgsgXSk6q3QmHsb0q00z9m-hHqLNQ6Xb">
<div class="form-group">
<label for="session_email">Email</label>
<input id="session_email" name="session[email]" type="text">
</div>
<div class="form-group">
<label for="session_password">Password</label>
<input id="session_password" name="session[password]" type="password">
</div>
<table width="100%" border="0" cellspacing="0" cellpadding="0" style="margin:10px 0px 10px 0px;">
<tbody>
<tr>
<td>
<div class="form-group">
<input checked type="checkbox" class="loginform_checkbox" name="remember" id="remmeber" style="float:left; width:20px;">
<span style="float:left; font-size: 12px; padding:2px 0px 0px 0px; font-weight:bold;">Remember Me</span>
</div>
<div class="clearer"></div>
</td>
<td width="120"><input type="submit" name="login_submit" value="Login" class="login_button" style="width: 120px;"> </td>
</tr>
</tbody>
</table>
<span class="forgot_link"><a href="/passwords/new" class="homing">Forgot Login </a></span> | <span class="register_link"><a href="/registrations/new" class="homing">Make a Free Account</a></span>
</form>
</div>
<h2>Information</h2>
<a href="/faq"><img src="/images/guide_link.gif" alt="LetMeWatchThis Guide" border="0"></a>
<div style="height: 4px;"></div>
<a href="/schedule"><img src="/images/tvschedule_button.jpg" alt="TV Schedule" border="0"></a>
<div style="height: 4px;"></div>
<div style="padding: 0 5px;">
PrimeWire is a social site for discovering, sharing and watching movies and TV shows. <a href="/start" style="text-decoration: underline;">more info</a>
</div>
<div style="padding: 0 5px;">
<a href="https://www.primewire.tf">PrimeWire.tf</a> and <a href="https://www.primewire.mov">PrimeWire.mov</a> are the official domain for PrimeWire
</div>
<h2>Latest Comments</h2>
<div class="latest_comments com_class_mov">
<a href="/movie/1481490-the-passenger">The Passenger</a>
<p>
<span class="latest_comments_poster">
<a href="/user/darthdirk">darthdirk</a> :
</span>
This movie rocks. I just watched it for the second time and still had the same fun. That f...
</p>
</div>
<div class="latest_comments com_class_tv">
<a href="/tv/368639/foundation-season-3-episode-10">Foundation S3 E10</a>
<p>
<span class="latest_comments_poster">
<a href="/user/dd3dd">dd3dd</a> :
</span>
I think Demerzel knows that&#39;s why all the other Dusks have their lives ended around this t...
</p>
</div>
<div class="latest_comments com_class_tv">
<a href="/tv/1516834/the-rainmaker-season-1-episode-5">The Rainmaker S1 E5</a>
<p>
<span class="latest_comments_poster">
<a href="/user/dd3dd">dd3dd</a> :
</span>
Ep5: Absolute poop of an episode compared to the previous ones. Lazy standard writing of m...
</p>
</div>
<div class="latest_comments com_class_mov">
<a href="/movie/1409057-the-long-walk">The Long Walk</a>
<p>
<span class="latest_comments_poster">
<a href="/user/Neoblade">Neoblade</a> :
</span>
OK YES SKIP TO THE ENDING WTF.
</p>
</div>
<div class="latest_comments com_class_mov">
<a href="/movie/1409057-the-long-walk">The Long Walk</a>
<p>
<span class="latest_comments_poster">
<a href="/user/Neoblade">Neoblade</a> :
</span>
WARNING WARNING: This film was absolute shit. Skipped through it, got the point but man, w...
</p>
</div>
<div style="text-align:right; padding:5px; font-size: 11px;"><a href="/comments?sort=latest">More Comments</a></div>
<h2>Top Comments</h2>
<div class="latest_comments com_class_mov">
<a href="/movie/874438-playboys-erotic-fantasies-iii">Playboy&#39;s Erotic Fantasies III</a>
<p>
<span class="latest_comments_poster">
<a href="/user/snazzydetritus">snazzydetritus</a> :
</span>
Full disclosure - I haven&#39;t seen a moment of this video, and don&#39;t intend to; but I saw Li...
</p>
</div>
<div class="latest_comments com_class_tv">
<a href="/tv/368639/foundation-season-3-episode-10">Foundation S3 E10</a>
<p>
<span class="latest_comments_poster">
<a href="/user/Bryant315">Bryant315</a> :
</span>
<span class="toggler hide" togglee-id="raNh8">Contains spoilers. Click to show.</span>
<span class="togglee" id="raNh8">
dusk really wanted to live!
poor dermazel! poor harry!
sorry mule :(
</span>
</p>
</div>
<div class="latest_comments com_class_mov">
<a href="/movie/874438-playboys-erotic-fantasies-iii">Playboy&#39;s Erotic Fantasies III</a>
<p>
<span class="latest_comments_poster">
<a href="/user/%2528%25E2%258C%2590%25E2%2596%25A0_%25E2%2596%25A0%2529">(⌐■_■)</a> :
</span>
NS, ryte?!?!! ... wait &#39;till ya see the wardrobe(s)... 0.0
Comment: straight up +10
</p>
</div>
<div class="latest_comments com_class_tv">
<a href="/tv/1585109-the-sunshine-murders">The Sunshine Murders</a>
<p>
<span class="latest_comments_poster">
<a href="/user/AmieWarren">AmieWarren</a> :
</span>
This show is just bad. The characters are annoying, especially the Kiwi sister, half of th...
</p>
</div>
<div class="latest_comments com_class_tv">
<a href="/tv/1585109-the-sunshine-murders">The Sunshine Murders</a>
<p>
<span class="latest_comments_poster">
<a href="/user/prole">prole</a> :
</span>
same. i got about 20 minutes in before pulling the plug
</p>
</div>
<div style="text-align:right; padding:5px; font-size: 11px;"><a href="/comments?sort=best-recent">More Comments</a></div>
</div>
<div class="footer footer_right">
<a href="#" title=" unregistered">757 users online</a> -
<a href="/contact">Contacts</a> -
<a href="/faq">FAQ</a> -
<a href="/dmca">DMCA</a> -
<a href="/api">API</a> -
<a href="https://primesrc.me" target="_blank">Embed</a>
</div>
</div>
</div>
<script>
window.csrf_token = "FlUdASwCJGgSR2EydCBsJgoHIgsgXSk6q3QmHsb0q00z9m-hHqLNQ6Xb";
window.subs = false
window.tsr = false
document.dispatchEvent(window.appTrigger);
window.appTriggered = true;
</script>
<div id="previewer-el"></div>
</body></html>

View file

@ -1,394 +0,0 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html lang="en-US" itemscope itemtype="http://schema.org/WebPage">
<head>
<script>
window.appTrigger = document.createEvent("Event");
window.appTrigger.initEvent("appTrigger", true, true);
</script>
<script async type="text/javascript" src="/js/app-2dec7320ca90cd70f913d51050d73c10.js?vsn=d"></script>
<title>
PrimeWire - Social Movie & TV Tracker
</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<meta name="robots" content="ALL,INDEX,FOLLOW">
<meta name="revisit-after" content="1 days">
<meta name="viewport" content="width=device-width, initial-scale=1">
<script>
var width = (window.innerWidth > 0) ? window.innerWidth : screen.width;
var scale = width/(670.0)
document.querySelector('meta[name=viewport]').setAttribute('content', 'width=670,initial-scale='+scale);
</script>
<meta name="keywords" content="primewire, 1channel, letmewatchthis, movies, tv shows, cast, crew, discover movies">
<meta name="description" content="PrimeWire is a social movie and TV show site which lets you find new movies and TV shows, share them with friends, and find streaming services to watch them on.">
<meta name="classification" content="Movies">
<meta name="distribution" content="Global">
<meta name="rating" content="General">
<meta charset="utf-8">
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
<meta http-equiv="content-language" content="en"/>
<meta name="robots" content="index, follow">
<meta name="revisit-after" content="1 days">
<meta property="og:title" content="PrimeWire">
<meta property="og:description" content="PrimeWire is a social movie and TV show site which lets you find new movies and TV shows, share them with friends, and find streaming services to watch them on.">
<meta property="og:type" content="website">
<meta property="og:image" content="/images/circle_logo.jpg">
<meta property="og:image:width" content="300">
<meta property="og:image:height" content="300">
<meta property="og:image:type" content="image/jpg">
<meta name="referrer" content="no-referrer-when-downgrade" />
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Roboto:wght@100;300;400;500;700;900&display=swap" rel="stylesheet">
<link rel="icon" href="/favicon.ico" type="image/x-icon">
<link rel="shortcut icon" href="/favicon.ico" type="image/x-icon">
<link rel="stylesheet" href="/css/app-3d1ad52122303f34d671a8e13b69704b.css?vsn=d" type="text/css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.2/css/all.min.css" integrity="sha512-HK5fgLBL+xu6dm/Ii3z4xhlSUyZgTT9tuc/hSrtw6uzJOvgRr2a9jyxxT1ely+B+xFAmJKVSTbpM/CuL7qxO8w==" crossorigin="anonymous" />
<script>
window.series = {}
</script>
</head>
<body class="">
<div class="header-bar"></div>
<div class="container">
<div class="col1">
<div class="menu">
<h1 id="a_header"><a href="/home" title="PrimeWire"><span>PrimeWire</span></a></h1>
<div class="header ">
<div class="header_search">
<form method="get" action="/filter" id="searchform">
<fieldset class="search_container">
<input id="search_term" name="s" class="box" placeholder="Search Title or IMDb ID" type="text" value="">
<button class="btn" title="Submit Search" type="submit"></button>
</fieldset>
</form>
</div>
<div class="nav_tabs"><ul>
<li class="unpressed"><a href="/movies" title="Movies">Movies</a></li>
<li class="unpressed"><a href="/tv" title="TV Shows">TV Shows</a></li>
<li class="unpressed"><a href="/schedule" title="TV Schedule">Schedule</a></li>
<li class="unpressed"><a href="/playlists" title="Playlists">Playlists</a></li>
<li class="unpressed"><a href="/forum" title="Forums">Forum</a></li>
</ul>
</div>
</div>
</div>
<div class="main-body">
<div id="messages">
<div class="info_message">Try our new domain, <a href="https://www.primewire.mov">PrimeWire.mov</a></div>
</div>
<div class="some_padding">
<h1 class="titles">
<span>Legal Stuff</span>
</h1>
<p><strong>General</strong></p>
<p>Our terms of service are to be taken into consideration and adhered to at all times whilst using the site. All users are advised that access to this site and the use of the services detailed therein are strictly conditional upon your confirmation that you comply fully with our terms of use. By proceeding to surf primewire.ag or otherwise using this site, you signify your unequivocal acceptance of these and any other terms prevailing at this or at any future time.</p>
<p><strong>Governing Law</strong></p>
<p>The governing law imposed will be that of the Klingon Empire, the country in which primewire.ag is based and from which all services are provided.</p>
<p><strong>Relationship</strong></p>
<p>The relationship between you (the user) and us (primewire.ag, our agents and partners) is that we provide you with access to the referencing material and media contained within our site, which is provided to you on a purely non commercial basis and is, therefore, not that of customer and supplier.</p>
<p><strong>Content</strong></p>
<p>primewire.ag does not host, provide, archive, store, or distribute media of any kind, and acts merely as an index (or directory) of media posted by other webmasters on the internet, which is completely outside of our control.</p>
<p>Whereas we do not filter such references, we cannot and do not attempt to control, censor, or block any indexed material that may be considered offensive, abusive, libellous, obnoxious, inaccurate, deceptive, unlawful or otherwise distressing neither do we accept responsibility for this content or the consequences of such content being made available.</p>
<p>Material may be inappropriately described or subject to restrictions such as copyright, licensing and other limitations and it is the sole responsibility of those having access to such material to comply with any or all lawful obligations arising from such material coming into their possession and, thus mitigate any alleged transgression.</p>
<p>All users warrant that they are 18 years of age or older, and, therefore, qualified to enter into this agreement either as an individual or as a corporate entity.</p>
<p>All users undertake to comply with the national laws applicable to the country they reside in and observe the rights inherent in any copyright material whilst upholding the rights of any copyright owner.</p>
<p>All users are advised to use caution, discretion, common sense and personal judgment when using primewire.ag or any references detailed within the directory and to respect the wishes of others who may value freedom from censorship, as consenting adults equal to (or possibly superior to) your own personal preferences.</p>
<p><strong>Quality Of Service</strong></p>
<p>primewire.ag does not provide commercial services and there are no actual or implied guarantees as to the availability of service or the speed, operation or function of this site, which is offered on a basis to those who choose to comply with the terms detailed within and access the <20>free<65> contents of this site.</p>
<p>Privacy, Spam &amp; Unsolicited Contact</p>
<p>This site will comply with the requirements of any law enforcement or other officials, Courts, Police or others with a legitimate interest in the official investigation or enforcement of law applicable to the country in which our service is provided, United Kingdom.</p>
<p>The protection of the rights of others is of paramount importance to primewire.ag, and this extends to your adherence to intellectual property law, the laws prevailing in your country or residence (or any temporary residence), the rights of others to enjoy freedom from slander, libel, defamation, provocation, harassment, discrimination of any kind or any other action that may be deemed offensive by the individual concerned or the management of this site.</p>
<p>Users may not use the primewire.ag site or any facilities provided by us to spam, market or promote any goods, services, membership or other websites.</p>
<p><strong>Intellectual Property - General</strong></p>
<p>primewire.ag respects the rights of others, and prohibits the use of referenced material for any purpose other than that for which it is intended (where such use is lawful and free of civil liability or other constraint) and in such circumstances where possession of such material may have any adverse financial, prejudicial or any other effect on any other third party.</p>
<p>primewire.ag is copyrighted, and all rights are reserved, as those are of the proprietors and those of the partners websites material referenced within. Anyone found imitating the site or stealing content from the site will be liable to prosecution.</p>
<p><strong>Definitions</strong></p>
<p>The term <20>the site<74> applies to the site (primewire.ag), its staff, administration, owners, agents, representatives, suppliers and partners. The term <20>the user<65> applies to any site visitor who wishes to proceed surfing the site once arriving at primewire.ag.</p>
<p><strong>Agreement</strong></p>
<p>In usage of this site, or by otherwise using this site, you (the user), hereby undertake to adhere to the terms of use detailed herein and any others appended hereto, without evasion, equivocation or reservation of any kind, in the knowledge that failure to comply with the terms will result in suspension or denial of your access to the site and potential legal and civil penalties, together with the right to make the full circumstances publicly known.</p>
<p><strong>Your Privacy</strong></p>
<p>primewire.ag is committed to protecting your privacy. primewire.ag does not sell, trade or rent your personal information to any other companies. primewire.ag will not collect any personal information about you except when you specifically and knowingly provide such information when registering for the site.</p>
<p>By using our Website, you consent to the collection and use of this information by primewire.ag. If we decide to change our privacy policy, we will post any changes to this page so that you are always aware of which information we collect, how we use it, and under which circumstances we disclose it.</p>
</div>
</div>
<div class="footer footer_left">
PrimeWire | 1Channel | Formerly LetMeWatchThis - <a href="/" title="PrimeWire | 1Channel">PrimeWire | 1Channel</a>! - <a href="/sitemaps/sitemap.xml.gz">Sitemap</a> - <a href="/legal">Legal</a>
<label><input type="checkbox" id="darkmode-toggle" >Dark Mode</label>
</div>
</div>
<div class="col2">
<a href="/home"><div class="logo"></div></a>
<div class="sidebar">
<div class="loginform" style="width: 280px;">
<form action="/sessions" class="secure" method="post"><input name="_csrf_token" type="hidden" value="OjgsVClZBXQlKBUMaAFrKgQMAQRyNGg3WVNbl1a9fFs__MSyaXmeJF-B">
<div class="form-group">
<label for="session_email">Email</label>
<input id="session_email" name="session[email]" type="text">
</div>
<div class="form-group">
<label for="session_password">Password</label>
<input id="session_password" name="session[password]" type="password">
</div>
<table width="100%" border="0" cellspacing="0" cellpadding="0" style="margin:10px 0px 10px 0px;">
<tbody>
<tr>
<td>
<div class="form-group">
<input checked type="checkbox" class="loginform_checkbox" name="remember" id="remmeber" style="float:left; width:20px;">
<span style="float:left; font-size: 12px; padding:2px 0px 0px 0px; font-weight:bold;">Remember Me</span>
</div>
<div class="clearer"></div>
</td>
<td width="120"><input type="submit" name="login_submit" value="Login" class="login_button" style="width: 120px;"> </td>
</tr>
</tbody>
</table>
<span class="forgot_link"><a href="/passwords/new" class="homing">Forgot Login </a></span> | <span class="register_link"><a href="/registrations/new" class="homing">Make a Free Account</a></span>
</form>
</div>
<h2>Information</h2>
<a href="/faq"><img src="/images/guide_link.gif" alt="LetMeWatchThis Guide" border="0"></a>
<div style="height: 4px;"></div>
<a href="/schedule"><img src="/images/tvschedule_button.jpg" alt="TV Schedule" border="0"></a>
<div style="height: 4px;"></div>
<div style="padding: 0 5px;">
PrimeWire is a social site for discovering, sharing and watching movies and TV shows. <a href="/start" style="text-decoration: underline;">more info</a>
</div>
<div style="padding: 0 5px;">
<a href="https://www.primewire.tf">PrimeWire.tf</a> and <a href="https://www.primewire.mov">PrimeWire.mov</a> are the official domain for PrimeWire
</div>
<h2>Latest Comments</h2>
<div class="latest_comments com_class_mov">
<a href="/movie/1481490-the-passenger">The Passenger</a>
<p>
<span class="latest_comments_poster">
<a href="/user/darthdirk">darthdirk</a> :
</span>
This movie rocks. I just watched it for the second time and still had the same fun. That f...
</p>
</div>
<div class="latest_comments com_class_tv">
<a href="/tv/368639/foundation-season-3-episode-10">Foundation S3 E10</a>
<p>
<span class="latest_comments_poster">
<a href="/user/dd3dd">dd3dd</a> :
</span>
I think Demerzel knows that&#39;s why all the other Dusks have their lives ended around this t...
</p>
</div>
<div class="latest_comments com_class_tv">
<a href="/tv/1516834/the-rainmaker-season-1-episode-5">The Rainmaker S1 E5</a>
<p>
<span class="latest_comments_poster">
<a href="/user/dd3dd">dd3dd</a> :
</span>
Ep5: Absolute poop of an episode compared to the previous ones. Lazy standard writing of m...
</p>
</div>
<div class="latest_comments com_class_mov">
<a href="/movie/1409057-the-long-walk">The Long Walk</a>
<p>
<span class="latest_comments_poster">
<a href="/user/Neoblade">Neoblade</a> :
</span>
OK YES SKIP TO THE ENDING WTF.
</p>
</div>
<div class="latest_comments com_class_mov">
<a href="/movie/1409057-the-long-walk">The Long Walk</a>
<p>
<span class="latest_comments_poster">
<a href="/user/Neoblade">Neoblade</a> :
</span>
WARNING WARNING: This film was absolute shit. Skipped through it, got the point but man, w...
</p>
</div>
<div style="text-align:right; padding:5px; font-size: 11px;"><a href="/comments?sort=latest">More Comments</a></div>
<h2>Top Comments</h2>
<div class="latest_comments com_class_mov">
<a href="/movie/874438-playboys-erotic-fantasies-iii">Playboy&#39;s Erotic Fantasies III</a>
<p>
<span class="latest_comments_poster">
<a href="/user/snazzydetritus">snazzydetritus</a> :
</span>
Full disclosure - I haven&#39;t seen a moment of this video, and don&#39;t intend to; but I saw Li...
</p>
</div>
<div class="latest_comments com_class_tv">
<a href="/tv/368639/foundation-season-3-episode-10">Foundation S3 E10</a>
<p>
<span class="latest_comments_poster">
<a href="/user/Bryant315">Bryant315</a> :
</span>
<span class="toggler hide" togglee-id="wP1Ox">Contains spoilers. Click to show.</span>
<span class="togglee" id="wP1Ox">
dusk really wanted to live!
poor dermazel! poor harry!
sorry mule :(
</span>
</p>
</div>
<div class="latest_comments com_class_mov">
<a href="/movie/874438-playboys-erotic-fantasies-iii">Playboy&#39;s Erotic Fantasies III</a>
<p>
<span class="latest_comments_poster">
<a href="/user/%2528%25E2%258C%2590%25E2%2596%25A0_%25E2%2596%25A0%2529">(⌐■_■)</a> :
</span>
NS, ryte?!?!! ... wait &#39;till ya see the wardrobe(s)... 0.0
Comment: straight up +10
</p>
</div>
<div class="latest_comments com_class_tv">
<a href="/tv/1585109-the-sunshine-murders">The Sunshine Murders</a>
<p>
<span class="latest_comments_poster">
<a href="/user/AmieWarren">AmieWarren</a> :
</span>
This show is just bad. The characters are annoying, especially the Kiwi sister, half of th...
</p>
</div>
<div class="latest_comments com_class_tv">
<a href="/tv/1585109-the-sunshine-murders">The Sunshine Murders</a>
<p>
<span class="latest_comments_poster">
<a href="/user/prole">prole</a> :
</span>
same. i got about 20 minutes in before pulling the plug
</p>
</div>
<div style="text-align:right; padding:5px; font-size: 11px;"><a href="/comments?sort=best-recent">More Comments</a></div>
</div>
<div class="footer footer_right">
<a href="#" title=" unregistered">757 users online</a> -
<a href="/contact">Contacts</a> -
<a href="/faq">FAQ</a> -
<a href="/dmca">DMCA</a> -
<a href="/api">API</a> -
<a href="https://primesrc.me" target="_blank">Embed</a>
</div>
</div>
</div>
<script>
window.csrf_token = "OjgsVClZBXQlKBUMaAFrKgQMAQRyNGg3WVNbl1a9fFs__MSyaXmeJF-B";
window.subs = false
window.tsr = false
document.dispatchEvent(window.appTrigger);
window.appTriggered = true;
</script>
<div id="previewer-el"></div>
</body></html>

File diff suppressed because one or more lines are too long

View file

@ -380,34 +380,3 @@ exports[`resolve returns source errors as stream 2`] = `
],
}
`;
exports[`resolve returns ytId instead of url for YouTube video 1`] = `
[
{
"behaviorHints": {
"bingeGroup": "webstreamr-doodstream_en",
"notWebReady": true,
"proxyHeaders": {
"request": {
"Referer": "http://dood.to",
},
},
"videoSize": 1932735283,
},
"name": "WebStreamr 🇺🇸",
"title": "Solaris 1972 PROPER 1080p BluRay x264-SADPANDA - ENG SUBS - tt0069293
💾 1.8 GB 🔗 DoodStream from PrimeWire",
"url": "https://do365ki.cloudatacdn.com/u5kjzcovmpd3sdgge7tc4jacdzaikwer6ff4qd463b6qj6lodlgpnsbkffvq/xy59ygfkku~mocked-random-string?token=aej8q7ajug1gt0nd4lbs8zgd&expiry=639837296000",
},
{
"behaviorHints": {
"bingeGroup": "webstreamr-youtube_en",
"notWebReady": true,
},
"name": "WebStreamr 🇺🇸",
"title": "Solaris | SCIENCE FICTION | FULL MOVIE | directed by Tarkovsky
🔗 YouTube from PrimeWire",
"ytId": "Z8ZhQPaw4rE",
},
]
`;

View file

@ -21,7 +21,7 @@ exports[`buildManifest default manifest 1`] = `
},
{
"key": "en",
"title": "English 🇺🇸 (PrimeWire, VidSrc)",
"title": "English 🇺🇸 (VidSrc)",
"type": "checkbox",
},
{
@ -82,7 +82,7 @@ exports[`buildManifest default manifest 1`] = `
Supported languages: German, English, Castilian Spanish, French, Italian, Latin American Spanish
Supported sources: 4KHDHub, VixSrc, PrimeWire, VidSrc, CineHDPlus, Cuevana, HomeCine, VerHdLink, Einschalten, KinoGer, MegaKino, MeineCloud, StreamKiste, Frembed, FrenchCloud, Movix, Eurostreaming, MostraGuarda
Supported sources: 4KHDHub, VixSrc, VidSrc, CineHDPlus, Cuevana, HomeCine, VerHdLink, Einschalten, KinoGer, MegaKino, MeineCloud, StreamKiste, Frembed, FrenchCloud, Movix, Eurostreaming, MostraGuarda
Supported extractors: ",
"id": "webstreamr",