feat(source): add basic Cuevana support

This commit is contained in:
WebStreamr 2025-06-15 20:34:05 +00:00
parent a4ceca57ae
commit f192051328
No known key found for this signature in database
23 changed files with 14238 additions and 1 deletions

View file

@ -1,7 +1,7 @@
import express, { NextFunction, Request, Response } from 'express';
import { v4 as uuidv4 } from 'uuid';
import winston from 'winston';
import { CineHDPlus, Eurostreaming, Frembed, FrenchCloud, Source, KinoGer, MeineCloud, MostraGuarda, Soaper, StreamKiste, VerHdLink, VidSrc } from './source';
import { CineHDPlus, Cuevana, Eurostreaming, Frembed, FrenchCloud, Source, KinoGer, MeineCloud, MostraGuarda, Soaper, StreamKiste, VerHdLink, VidSrc } from './source';
import { createExtractors, ExtractorRegistry } from './extractor';
import { ConfigureController, ManifestController, StreamController } from './controller';
import { envGet, envIsProd, Fetcher, StreamResolver, tmdbFetch, TmdbId } from './utils';
@ -25,6 +25,7 @@ const sources: Source[] = [
new VidSrc(fetcher),
// ES / MX
new CineHDPlus(fetcher),
new Cuevana(fetcher),
new VerHdLink(fetcher),
// DE
new KinoGer(fetcher),

View file

@ -0,0 +1,38 @@
import { Cuevana } from './Cuevana';
import { FetcherMock, TmdbId } from '../utils';
import { Context } from '../types';
const ctx: Context = { id: 'id', ip: '127.0.0.1', config: { es: 'on', mx: 'on' } };
describe('Cuevana', () => {
let handler: Cuevana;
beforeEach(() => {
handler = new Cuevana(new FetcherMock(`${__dirname}/__fixtures__/Cuevana`));
});
test('handles non-existent series gracefully', async () => {
const streams = await handler.handle(ctx, 'series', new TmdbId(61945, 1, 1));
expect(streams).toHaveLength(0);
});
test('handles non-existent episodes gracefully', async () => {
const streams = await handler.handle(ctx, 'series', new TmdbId(1402, 1, 99));
expect(streams).toHaveLength(0);
});
test('handle walking dead s1e1', async () => {
const streams = await handler.handle(ctx, 'series', new TmdbId(1402, 1, 1));
expect(streams).toMatchSnapshot();
});
test('handle la frontera s1e1', async () => {
const streams = await handler.handle(ctx, 'series', new TmdbId(274980, 1, 1));
expect(streams).toMatchSnapshot();
});
test('handle el camino', async () => {
const streams = await handler.handle(ctx, 'movie', new TmdbId(559969, undefined, undefined));
expect(streams).toMatchSnapshot();
});
});

109
src/source/Cuevana.ts Normal file
View file

@ -0,0 +1,109 @@
import { ContentType } from 'stremio-addon-sdk';
import * as cheerio from 'cheerio';
import { Source, SourceResult } from './types';
import { Fetcher, getTmdbId, getTmdbMovieDetails, getTmdbTvDetails, Id, TmdbId } from '../utils';
import { Context, CountryCode } from '../types';
export class Cuevana implements Source {
public readonly id = 'cuevana';
public readonly label = 'Cuevana';
public readonly contentTypes: ContentType[] = ['movie', 'series'];
public readonly countryCodes: CountryCode[] = [CountryCode.es, CountryCode.mx];
private readonly fetcher: Fetcher;
public constructor(fetcher: Fetcher) {
this.fetcher = fetcher;
}
public async handle(ctx: Context, _type: string, id: Id): Promise<SourceResult[]> {
const tmdbId = await getTmdbId(ctx, this.fetcher, id);
const name = tmdbId.season
? (await getTmdbTvDetails(ctx, this.fetcher, tmdbId, 'es')).name
: (await getTmdbMovieDetails(ctx, this.fetcher, tmdbId, 'es')).title;
const pageUrl = await this.fetchPageUrl(ctx, name);
if (!pageUrl) {
return [];
}
let title: string = name;
let html: string;
if (tmdbId.season) {
title += ` ${tmdbId.season}x${tmdbId.episode}`;
const episodeUrl = await this.fetchEpisodeUrl(ctx, pageUrl, tmdbId);
if (!episodeUrl) {
return [];
}
html = await this.fetcher.text(ctx, episodeUrl);
} else {
html = await this.fetcher.text(ctx, pageUrl);
}
const $ = cheerio.load(html);
const urlResults = $('.open_submenu')
.map((_i, el) => {
if ($(el).text().includes('Español Latino') && CountryCode.mx in ctx.config) {
return $('[data-tr], [data-video]', el)
.map((_i, el) => ({ countryCode: CountryCode.mx, title, url: new URL($(el).attr('data-tr') ?? $(el).attr('data-video') as string) }))
.toArray();
} else if ($(el).text().includes('Español') && CountryCode.es in ctx.config) {
return $('[data-tr], [data-video]', el)
.map((_i, el) => ({ countryCode: CountryCode.es, title, url: new URL($(el).attr('data-tr') ?? $(el).attr('data-video') as string) }))
.toArray();
} else {
return [];
}
})
.toArray();
return Promise.all(
urlResults.map(async (urlResult) => {
if (!urlResult.url.host.includes('cuevana3')) {
return urlResult;
}
const html = await this.fetcher.text(ctx, urlResult.url, { headers: { Referer: pageUrl.origin } });
const urlMatcher = html.match(/url ?= ?'(.*)'/) as string[];
return { ...urlResult, url: new URL(urlMatcher[1] as string) };
}),
);
};
private async fetchPageUrl(ctx: Context, keyword: string): Promise<URL | undefined> {
const searchUrl = new URL(`https://ww1.cuevana3.is/search/${encodeURIComponent(keyword)}/`);
const html = await this.fetcher.text(ctx, searchUrl, { headers: { Referer: searchUrl.origin } });
const $ = cheerio.load(html);
const urlPath = $('.TPost .Title')
.filter((_i, el) => $(el).text().trim() === keyword)
.closest('a')
.attr('href');
return urlPath !== undefined ? new URL(urlPath, searchUrl.origin) : urlPath;
};
private async fetchEpisodeUrl(ctx: Context, pageUrl: URL, tmdbId: TmdbId): Promise<URL | undefined> {
const html = await this.fetcher.text(ctx, pageUrl, { headers: { Referer: pageUrl.origin } });
const $ = cheerio.load(html);
const urlPath = $('.TPost .Year')
.filter((_i, el) => $(el).text().trim() === `${tmdbId.season}x${tmdbId.episode}`)
.closest('a')
.attr('href');
return urlPath !== undefined ? new URL(urlPath, pageUrl.origin) : urlPath;
}
}

View file

@ -0,0 +1 @@
{"adult":false,"backdrop_path":"/uLXK1LQM28XovWHPao3ViTeggXA.jpg","belongs_to_collection":null,"budget":0,"genres":[{"id":80,"name":"Crimen"},{"id":18,"name":"Drama"},{"id":53,"name":"Suspense"}],"homepage":"https://www.netflix.com/es/title/81078819","id":559969,"imdb_id":"tt9243946","origin_country":["US"],"original_language":"en","original_title":"El Camino: A Breaking Bad Movie","overview":"Tiempo después de los eventos sucedidos tras el último episodio de la serie \"Breaking Bad\", el fugitivo Jesse Pinkman (Aaron Paul) huye de sus perseguidores, de la ley y de su pasado.","popularity":6.291,"poster_path":"/hoWADuvXs3Ua4AXBAiZYnppTupO.jpg","production_companies":[{"id":11073,"logo_path":"/aCbASRcI1MI7DXjPbSW9Fcv9uGR.png","name":"Sony Pictures Television","origin_country":"US"},{"id":2605,"logo_path":null,"name":"Gran Via Productions","origin_country":"US"},{"id":33742,"logo_path":"/2jdh2sEa0R6y6uT0F7g0IgA2WO8.png","name":"High Bridge Productions","origin_country":"US"}],"production_countries":[{"iso_3166_1":"US","name":"United States of America"}],"release_date":"2019-10-11","revenue":0,"runtime":123,"spoken_languages":[{"english_name":"English","iso_639_1":"en","name":"English"}],"status":"Released","tagline":"","title":"El Camino: Una película de Breaking Bad","video":false,"vote_average":6.962,"vote_count":5092}

File diff suppressed because one or more lines are too long

View file

@ -0,0 +1 @@
{"adult":false,"backdrop_path":"/gSphqI0BhosjOz9DhWbqAEkowQh.jpg","created_by":[{"id":1879786,"credit_id":"68442fe17350568d43de674c","name":"David Zurdo","original_name":"David Zurdo","gender":0,"profile_path":null},{"id":236691,"credit_id":"68442fe92c399022f01ea04b","name":"Luis Marías","original_name":"Luis Marías","gender":2,"profile_path":null}],"episode_run_time":[],"first_air_date":"2025-06-13","genres":[{"id":18,"name":"Drama"},{"id":10759,"name":"Action & Adventure"}],"homepage":"","id":274980,"in_production":true,"languages":["es"],"last_air_date":"2025-06-13","last_episode_to_air":{"id":5695934,"name":"De piedra","overview":"El seguimiento a los terroristas falla: ahora tienen los explosivos y su plan sigue en marcha. Pero también sigue en marcha la investigación de Léon y Mario, que logran dar con el piso franco de los terroristas… aunque ellos ya no están allí. El atentado es inminente. ¿Podrán evitarlo?","vote_average":0.0,"vote_count":0,"air_date":"2025-06-13","episode_number":5,"episode_type":"finale","production_code":"","runtime":50,"season_number":1,"show_id":274980,"still_path":"/3ApMchNGajHWPPXLegjbjYF8FVE.jpg"},"name":"La frontera","next_episode_to_air":null,"networks":[{"id":1024,"logo_path":"/w7HfLNm9CWwRmAMU58udl2L7We7.png","name":"Prime Video","origin_country":""}],"number_of_episodes":6,"number_of_seasons":1,"origin_country":["ES"],"original_language":"es","original_name":"La frontera","overview":"Año 1987. Un grupo disidente de la banda terrorista ETA planea atentar en París. Solo tres personas, tan incompatibles como complementarias, podrán evitarlo.","popularity":4.4829,"poster_path":"/6SKzMXhp5q4yzk3f02QuNTQfv3M.jpg","production_companies":[{"id":240053,"logo_path":"/u6wqVYJTKPXc4yswTsoSdQLt2Oc.png","name":"Par Producciones","origin_country":"ES"}],"production_countries":[{"iso_3166_1":"ES","name":"Spain"}],"seasons":[{"air_date":"2025-06-13","episode_count":6,"id":424914,"name":"Temporada 1","overview":"Año 1987. Francia empieza a colaborar con España en la lucha contra ETA. Un grupo disidente de la organización va a cometer un atentado en París. Las autoridades españolas han resuelto no intervenir, pero un joven capitán de la Guardia Civil decide actuar. Una historia de acción, fidelidades y traiciones, donde cada uno tendrá que demostrar en qué cree y cuáles son sus “fronteras”.","poster_path":"/AkrrnHWs12H1my5HlI9dEVJS9a9.jpg","season_number":1,"vote_average":0.0}],"spoken_languages":[{"english_name":"Spanish","iso_639_1":"es","name":"Español"}],"status":"Returning Series","tagline":"","type":"Scripted","vote_average":0.0,"vote_count":0}

View file

@ -0,0 +1 @@
{"adult":false,"backdrop_path":"/uYgcyrinlFfXTFkflzkOjAmtlpP.jpg","created_by":[{"id":49091,"credit_id":"54c38e099251416e6000effe","name":"Uli Brée","original_name":"Uli Brée","gender":2,"profile_path":"/8qHRQed5idzAlfrjc9j4FyNVttq.jpg"}],"episode_run_time":[45],"first_air_date":"2015-01-12","genres":[{"id":35,"name":"Comedia"},{"id":18,"name":"Drama"}],"homepage":"https://www.daserste.de/unterhaltung/serie/vorstadtweiber/index.html","id":61945,"in_production":false,"languages":["de"],"last_air_date":"2022-03-14","last_episode_to_air":{"id":3596974,"name":"Episodio 11","overview":"","vote_average":0.0,"vote_count":0,"air_date":"2022-03-14","episode_number":11,"episode_type":"finale","production_code":"","runtime":45,"season_number":6,"show_id":61945,"still_path":"/zsumt4d4TfvFB4QuXu2rp7jsaGl.jpg"},"name":"Vorstadtweiber","next_episode_to_air":null,"networks":[{"id":189,"logo_path":"/k1poBlW9HGDnIyZU67BtH3BXQuz.png","name":"ORF 1","origin_country":"AT"},{"id":308,"logo_path":"/nGl2dDGonksWY4fTzPPdkK3oNyq.png","name":"Das Erste","origin_country":"DE"}],"number_of_episodes":61,"number_of_seasons":6,"origin_country":["AT"],"original_language":"de","original_name":"Vorstadtweiber","overview":"","popularity":17.8497,"poster_path":"/um3A1r8A5Cuco7ldJHKtMhU7zU9.jpg","production_companies":[{"id":2279,"logo_path":null,"name":"MR Filmproduktion","origin_country":"AT"},{"id":6856,"logo_path":null,"name":"MR FILM","origin_country":"AT"}],"production_countries":[{"iso_3166_1":"AT","name":"Austria"}],"seasons":[{"air_date":"2015-03-31","episode_count":4,"id":74332,"name":"Especiales","overview":"","poster_path":"/tFF69cFAsIvWMYFp9NbxvQJAORE.jpg","season_number":0,"vote_average":0.0},{"air_date":"2015-01-12","episode_count":10,"id":64717,"name":"Temporada 1","overview":"","poster_path":"/aswimgrUIaeHPH3B8lPH2YYUZxj.jpg","season_number":1,"vote_average":9.0},{"air_date":"2016-03-14","episode_count":10,"id":74313,"name":"Temporada 2","overview":"","poster_path":"/7fVAfhzCXitqVVvvfMDzoNZ9uY1.jpg","season_number":2,"vote_average":9.0},{"air_date":"2018-01-08","episode_count":10,"id":97704,"name":"Temporada 3","overview":"","poster_path":"/W6kdpyhpYK6bU77OD3k3YXPH4k.jpg","season_number":3,"vote_average":9.0},{"air_date":"2019-09-16","episode_count":10,"id":132439,"name":"Temporada 4","overview":"","poster_path":"/hhQeOEgvbzzOBCybHISHQAPAHk6.jpg","season_number":4,"vote_average":8.0},{"air_date":"2021-01-11","episode_count":10,"id":171866,"name":"Temporada 5","overview":"","poster_path":"/5n93sCEdcSMyXc3WEJjJvENdztY.jpg","season_number":5,"vote_average":0.0},{"air_date":"2022-01-10","episode_count":11,"id":236440,"name":"Temporada 6","overview":"","poster_path":"/9GomC3oI57Tf3Y70WRMrpCs1GPg.jpg","season_number":6,"vote_average":0.0}],"spoken_languages":[{"english_name":"German","iso_639_1":"de","name":"Deutsch"}],"status":"Ended","tagline":"","type":"Scripted","vote_average":8.1,"vote_count":13}

View file

@ -0,0 +1,502 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>PLAYER</title>
<meta name="robots" content="noindex, nofollow" />
<meta name="referrer" content="never" />
<meta name="referrer" content="no-referrer" />
<style>
html,
body,
#container {
margin: 0;
padding: 0;
width: 100%;
height: 100%;
background: transparent;
color: #fff;
overflow: hidden;
}
#container {
position: absolute;
text-align: center;
}
.ribbon-1 {
position: fixed;
background: #edb709;
box-shadow: 0 0 0 999px #edb709;
clip-path: inset(0 -100%);
font-size: 20px;
}
.left {
inset: 0 auto auto 0;
transform-origin: 100% 0;
transform: translate(-29.3%) rotate(-45deg);
}
.right {
inset: 0 0 auto auto;
transform-origin: 0 0;
transform: translate(29.3%) rotate(45deg);
}
</style>
<style>
#videoContainer {
position: relative;
width: 100%;
height: 100%;
}
#videoPlayer {
display: block;
z-index: 1001;
width: 100%;
height: 100%;
}
#skipCountdown {
position: absolute;
bottom: 10px;
right: 10px;
font-size: 20px;
background-color: rgba(0, 0, 0, 0.5);
padding: 5px 10px;
border-radius: 5px;
color: #fff;
display: none;
z-index: 1003;
cursor: pointer;
}
#goToAdLink {
position: absolute;
bottom: 10px;
left: 10px;
font-size: 20px;
background-color: rgba(0, 0, 0, 0.5);
padding: 5px 10px;
border-radius: 5px;
color: #fff;
display: none;
z-index: 1002;
cursor: pointer;
}
#modal {
display: none;
position: fixed;
z-index: 1000;
left: 0;
top: 0;
width: 100%;
height: 100%;
overflow: auto;
background-color: rgb(0, 0, 0);
background-color: rgba(0, 0, 0, 0.9);
}
#modal-content {
margin: auto;
display: block;
width: 80%;
height: 80%;
padding: 20px;
}
</style>
</head>
<body>
<div id="modal">
<div id="modal-content">
<div id="videoContainer">
<video id="videoPlayer" disableRemotePlayback playsinline>
Your browser does not support the video tag.
</video>
<a href="#" target="_blank" id="goToAdLink">Ir a la publicidad</a>
<button id="skipCountdown"></button>
</div>
</div>
</div>
<div id="container">
<div style="position: relative; top: 50%; margin-top: -7px;" id="message">
<img src="play.png" alt="Reproducir" style="cursor: pointer; margin-top: -64px;" id="start" />
</div>
<div id="player"></div>
</div>
<div id="ribbon" class="ribbon-1 right">filelions</div>
<script type="618b9a0b7c0144b7dffbb3b4-text/javascript">
class VASTVideoPlayer {
constructor(vastUrl) {
if (Array.isArray(vastUrl)) {
this.vastUrl = vastUrl[Math.floor(Math.random() * vastUrl.length)];
} else {
this.vastUrl = vastUrl;
}
this.ready = false;
this.error = false;
this.completed = false;
//
this.onCompletedCallback = null;
//
this.modal = document.getElementById("modal");
this.videoPlayer = document.getElementById("videoPlayer");
this.skipButton = document.getElementById("skipCountdown");
this.goToAdLink = document.getElementById("goToAdLink");
this.skipOffset = 0;
this.clickThrough = null;
//
this.loadVASTVideo();
}
loadVASTVideo() {
try {
var xhr = new XMLHttpRequest();
xhr.open('GET', this.vastUrl, true);
xhr.onload = () => {
try {
if (xhr.status === 200) {
var responseXML = xhr.responseXML;
if (!responseXML) {
throw new Error("Invalid XML format in VAST file.");
}
var mediaFiles = responseXML.getElementsByTagName("MediaFile");
if (mediaFiles.length === 0) {
throw new Error("No compatible video file found in the VAST.");
}
var videoUrl = "";
for (var i = 0; i < mediaFiles.length; i++) {
var mediaFile = mediaFiles[i];
if (mediaFile.getAttribute("type") === "video/mp4") {
videoUrl = mediaFile.textContent || mediaFile.innerText;
break;
}
}
if (videoUrl === "") {
throw new Error("No compatible video file found in the VAST.");
}
this.videoPlayer.src = videoUrl;
var clickThroughElement = responseXML.querySelector("ClickThrough");
if (clickThroughElement) {
this.setClickThrough(clickThroughElement.textContent);
}
var linearElement = responseXML.querySelector("Linear");
if (linearElement) {
this.skipOffset = linearElement.getAttribute("skipoffset");
}
} else {
throw new Error("Error loading VAST file. Status code: " + xhr.status);
}
} catch (e) {
console.error("Error: " + e);
this.error = true;
return;
}
this.ready = true;
};
xhr.onerror = () => {
console.error("Error loading VAST file.");
this.error = true;
};
xhr.send();
} catch (e) {
console.error("Error: " + e);
this.error = true;
}
}
// set clickThrough
setClickThrough(clickThrough) {
this.clickThrough = clickThrough;
}
startClickThrough() {
if (this.clickThrough) {
try {
this.goToAdLink.style.display = "block";
this.goToAdLink.target = "_blank";
this.goToAdLink.href = this.clickThrough;
this.videoPlayer.onclick = () => {
window.open(this.clickThrough, "_blank");
};
} catch (e) {
console.error("Error: " + e);
}
}
}
runAds() {
if (this.error || !this.ready || this.completed) {
this.adsCompleted();
return;
}
try {
this.startPlay();
} catch (e) {
console.error("Error: " + e);
this.adsCompleted();
}
}
startPlay() {
// start click through
this.startClickThrough();
// start play
this.modal.style.display = "block";
this.videoPlayer.onended = () => {
this.adsCompleted();
};
this.videoPlayer.play();
if (this.skipOffset && this.skipOffset !== "" && this.skipOffset !== 0) {
var skipTime = this.parseTimeToSeconds(this.skipOffset);
if (!isNaN(skipTime)) {
this.skipButton.style.display = "block";
this.startSkipCountdown(skipTime);
}
}
}
stopPlay() {
this.modal.style.display = "none";
this.videoPlayer.currentTime = 0;
this.skipButton.style.display = "none";
this.videoPlayer.pause();
}
startSkipCountdown(skipTime) {
var timeLeft = skipTime;
this.skipButton.innerHTML = "Saltar en " + timeLeft + "s";
var countdown = setInterval(() => {
timeLeft--;
this.skipButton.innerHTML = "Saltar en " + timeLeft + "s";
if (timeLeft <= 0) {
clearInterval(countdown);
this.skipButton.innerHTML = "Saltar";
this.skipButton.addEventListener("click", () => {
this.adsCompleted();
});
}
}, 1000);
}
parseTimeToSeconds(timeString) {
var timeParts = timeString.split(":");
var hours = parseInt(timeParts[0]) || 0;
var minutes = parseInt(timeParts[1]) || 0;
var seconds = parseInt(timeParts[2]) || 0;
return hours * 3600 + minutes * 60 + seconds;
}
adsCompleted() {
this.completed = true;
try {
this.stopPlay();
} catch (e) {
console.error("Error: " + e);
}
if (this.onCompletedCallback) {
this.onCompletedCallback();
}
}
}
var vastPlayer = new VASTVideoPlayer([
"/assets/1win/vast_1win_1_generic.xml",
"/assets/1win/vast_1win_2_generic.xml"
]);
function getCountryAsync() {
// Create a promise to handle the asynchronous operation
return new Promise(function(resolve, reject) {
try {
var country = localStorage.getItem('country');
if (country) {
resolve(country);
return;
}
} catch (e) {}
// Create a new XMLHttpRequest
var xhr = new XMLHttpRequest();
// Configure the request
xhr.open('GET', 'https://api.country.is/', true);
xhr.setRequestHeader('Cache-Control', 'no-cache, no-store, must-revalidate');
xhr.setRequestHeader('Pragma', 'no-cache');
xhr.setRequestHeader('Expires', '0');
// Handle the response
xhr.onload = function() {
if (xhr.status >= 200 && xhr.status < 300) {
// If the request is successful
var response = JSON.parse(xhr.responseText);
// Get the value of country from the JSON
var country = response.country;
try {
if (country) {
localStorage.setItem('country', country);
}
} catch (e) {}
resolve(country);
return;
} else {
// If the request fails
reject('Error occurred while making the request. Status code: ' + xhr.status);
return;
}
};
// Handle network errors
xhr.onerror = function() {
reject('Network error occurred while making the request.');
return;
};
// Set a timeout of half a second (500 milliseconds)
xhr.timeout = 2000;
// Handle timeout
xhr.ontimeout = function() {
reject('Timeout occurred. The request took too long to respond.');
return;
};
// Send the request
xhr.send();
});
}
class CookieHandler {
static createCookie(name, value, hours) {
try {
const date = new Date();
date.setTime(date.getTime() + (hours * 60 * 60 * 1000));
const expires = "expires=" + date.toUTCString();
const existingCookie = CookieHandler.getCookie(name);
if (existingCookie !== "") {
CookieHandler.deleteCookie(name); // Delete existing cookie if it exists
}
document.cookie = name + "=" + value + ";" + expires + ";path=/";
} catch (error) {
console.error("Error creating cookie:", error);
}
}
static getCookie(name) {
try {
const cookieName = name + "=";
const cookies = document.cookie.split(';');
for (let i = 0; i < cookies.length; i++) {
let cookie = cookies[i];
while (cookie.charAt(0) === ' ') {
cookie = cookie.substring(1);
}
if (cookie.indexOf(cookieName) === 0) {
return cookie.substring(cookieName.length, cookie.length);
}
}
} catch (error) {
console.error("Error getting cookie:", error);
}
return "";
}
static deleteCookie(name) {
try {
document.cookie = name + "=;expires=Thu, 01 Jan 1970 00:00:00 UTC;path=/;";
} catch (error) {
console.error("Error deleting cookie:", error);
}
}
static checkVisitAdsCompleted() {
try {
let userValueCookie = CookieHandler.getCookie("adsCompleted");
if (userValueCookie !== "") {
userValueCookie = parseInt(userValueCookie); // Convert cookie value to integer
if (userValueCookie > 3) {
return true; // The user has completed more than 3 ads
} else {
return false; // The user has not completed enough ads yet
}
return false;
} else {
return false; // The user has not completed enough ads yet
}
} catch (error) {
console.error("Error checking visit:", error);
// Assume the user has completed enough ads
return true;
}
}
}
</script>
<script type="618b9a0b7c0144b7dffbb3b4-text/javascript">
var message = document.getElementById('message');
var url = 'https://filelions.to/v/rvyogjvsejlh';
var userCountry = "DEFAULT";
getCountryAsync()
.then(function(country) {
userCountry = country;
});
const loadRedirect = () => {
let countdown = 10; // Duración de la cuenta regresiva en segundos
message.innerHTML = `Creando sistemas y consultando datos... Redireccionando en ${countdown} segundos.`;
const intervalId = setInterval(() => {
countdown--;
if (countdown >= 0) {
message.innerHTML = `Creando sistemas y consultando datos... Redireccionando en ${countdown} segundos.`;
}
if (countdown === 2) {
window.location.href = url;
}
}, 1000);
};
vastPlayer.onCompletedCallback = () => {
let userValueCookie = CookieHandler.getCookie("adsCompleted");
let newValue = +userValueCookie + 1;
CookieHandler.createCookie("adsCompleted", newValue.toString(), 12);
loadRedirect();
};
start.onclick = e => {
if (CookieHandler.checkVisitAdsCompleted()) {
loadRedirect();
return;
}
if (userCountry === "AR" || userCountry === "MX") {
vastPlayer.runAds();
} else {
// Force run for all
//vastPlayer.runAds();
loadRedirect();
}
}
</script>
<script type="618b9a0b7c0144b7dffbb3b4-text/javascript" src="https://doo.lat/public/overroll_gasparin.js?v=7"></script>
<script src="/cdn-cgi/scripts/7d0fa10a/cloudflare-static/rocket-loader.min.js" data-cf-settings="618b9a0b7c0144b7dffbb3b4-|49" defer></script></body>
</html>

View file

@ -0,0 +1,502 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>PLAYER</title>
<meta name="robots" content="noindex, nofollow" />
<meta name="referrer" content="never" />
<meta name="referrer" content="no-referrer" />
<style>
html,
body,
#container {
margin: 0;
padding: 0;
width: 100%;
height: 100%;
background: transparent;
color: #fff;
overflow: hidden;
}
#container {
position: absolute;
text-align: center;
}
.ribbon-1 {
position: fixed;
background: #edb709;
box-shadow: 0 0 0 999px #edb709;
clip-path: inset(0 -100%);
font-size: 20px;
}
.left {
inset: 0 auto auto 0;
transform-origin: 100% 0;
transform: translate(-29.3%) rotate(-45deg);
}
.right {
inset: 0 0 auto auto;
transform-origin: 0 0;
transform: translate(29.3%) rotate(45deg);
}
</style>
<style>
#videoContainer {
position: relative;
width: 100%;
height: 100%;
}
#videoPlayer {
display: block;
z-index: 1001;
width: 100%;
height: 100%;
}
#skipCountdown {
position: absolute;
bottom: 10px;
right: 10px;
font-size: 20px;
background-color: rgba(0, 0, 0, 0.5);
padding: 5px 10px;
border-radius: 5px;
color: #fff;
display: none;
z-index: 1003;
cursor: pointer;
}
#goToAdLink {
position: absolute;
bottom: 10px;
left: 10px;
font-size: 20px;
background-color: rgba(0, 0, 0, 0.5);
padding: 5px 10px;
border-radius: 5px;
color: #fff;
display: none;
z-index: 1002;
cursor: pointer;
}
#modal {
display: none;
position: fixed;
z-index: 1000;
left: 0;
top: 0;
width: 100%;
height: 100%;
overflow: auto;
background-color: rgb(0, 0, 0);
background-color: rgba(0, 0, 0, 0.9);
}
#modal-content {
margin: auto;
display: block;
width: 80%;
height: 80%;
padding: 20px;
}
</style>
</head>
<body>
<div id="modal">
<div id="modal-content">
<div id="videoContainer">
<video id="videoPlayer" disableRemotePlayback playsinline>
Your browser does not support the video tag.
</video>
<a href="#" target="_blank" id="goToAdLink">Ir a la publicidad</a>
<button id="skipCountdown"></button>
</div>
</div>
</div>
<div id="container">
<div style="position: relative; top: 50%; margin-top: -7px;" id="message">
<img src="play.png" alt="Reproducir" style="cursor: pointer; margin-top: -64px;" id="start" />
</div>
<div id="player"></div>
</div>
<div id="ribbon" class="ribbon-1 right">filemoon</div>
<script type="fd8946eaf35f603c2a343bf5-text/javascript">
class VASTVideoPlayer {
constructor(vastUrl) {
if (Array.isArray(vastUrl)) {
this.vastUrl = vastUrl[Math.floor(Math.random() * vastUrl.length)];
} else {
this.vastUrl = vastUrl;
}
this.ready = false;
this.error = false;
this.completed = false;
//
this.onCompletedCallback = null;
//
this.modal = document.getElementById("modal");
this.videoPlayer = document.getElementById("videoPlayer");
this.skipButton = document.getElementById("skipCountdown");
this.goToAdLink = document.getElementById("goToAdLink");
this.skipOffset = 0;
this.clickThrough = null;
//
this.loadVASTVideo();
}
loadVASTVideo() {
try {
var xhr = new XMLHttpRequest();
xhr.open('GET', this.vastUrl, true);
xhr.onload = () => {
try {
if (xhr.status === 200) {
var responseXML = xhr.responseXML;
if (!responseXML) {
throw new Error("Invalid XML format in VAST file.");
}
var mediaFiles = responseXML.getElementsByTagName("MediaFile");
if (mediaFiles.length === 0) {
throw new Error("No compatible video file found in the VAST.");
}
var videoUrl = "";
for (var i = 0; i < mediaFiles.length; i++) {
var mediaFile = mediaFiles[i];
if (mediaFile.getAttribute("type") === "video/mp4") {
videoUrl = mediaFile.textContent || mediaFile.innerText;
break;
}
}
if (videoUrl === "") {
throw new Error("No compatible video file found in the VAST.");
}
this.videoPlayer.src = videoUrl;
var clickThroughElement = responseXML.querySelector("ClickThrough");
if (clickThroughElement) {
this.setClickThrough(clickThroughElement.textContent);
}
var linearElement = responseXML.querySelector("Linear");
if (linearElement) {
this.skipOffset = linearElement.getAttribute("skipoffset");
}
} else {
throw new Error("Error loading VAST file. Status code: " + xhr.status);
}
} catch (e) {
console.error("Error: " + e);
this.error = true;
return;
}
this.ready = true;
};
xhr.onerror = () => {
console.error("Error loading VAST file.");
this.error = true;
};
xhr.send();
} catch (e) {
console.error("Error: " + e);
this.error = true;
}
}
// set clickThrough
setClickThrough(clickThrough) {
this.clickThrough = clickThrough;
}
startClickThrough() {
if (this.clickThrough) {
try {
this.goToAdLink.style.display = "block";
this.goToAdLink.target = "_blank";
this.goToAdLink.href = this.clickThrough;
this.videoPlayer.onclick = () => {
window.open(this.clickThrough, "_blank");
};
} catch (e) {
console.error("Error: " + e);
}
}
}
runAds() {
if (this.error || !this.ready || this.completed) {
this.adsCompleted();
return;
}
try {
this.startPlay();
} catch (e) {
console.error("Error: " + e);
this.adsCompleted();
}
}
startPlay() {
// start click through
this.startClickThrough();
// start play
this.modal.style.display = "block";
this.videoPlayer.onended = () => {
this.adsCompleted();
};
this.videoPlayer.play();
if (this.skipOffset && this.skipOffset !== "" && this.skipOffset !== 0) {
var skipTime = this.parseTimeToSeconds(this.skipOffset);
if (!isNaN(skipTime)) {
this.skipButton.style.display = "block";
this.startSkipCountdown(skipTime);
}
}
}
stopPlay() {
this.modal.style.display = "none";
this.videoPlayer.currentTime = 0;
this.skipButton.style.display = "none";
this.videoPlayer.pause();
}
startSkipCountdown(skipTime) {
var timeLeft = skipTime;
this.skipButton.innerHTML = "Saltar en " + timeLeft + "s";
var countdown = setInterval(() => {
timeLeft--;
this.skipButton.innerHTML = "Saltar en " + timeLeft + "s";
if (timeLeft <= 0) {
clearInterval(countdown);
this.skipButton.innerHTML = "Saltar";
this.skipButton.addEventListener("click", () => {
this.adsCompleted();
});
}
}, 1000);
}
parseTimeToSeconds(timeString) {
var timeParts = timeString.split(":");
var hours = parseInt(timeParts[0]) || 0;
var minutes = parseInt(timeParts[1]) || 0;
var seconds = parseInt(timeParts[2]) || 0;
return hours * 3600 + minutes * 60 + seconds;
}
adsCompleted() {
this.completed = true;
try {
this.stopPlay();
} catch (e) {
console.error("Error: " + e);
}
if (this.onCompletedCallback) {
this.onCompletedCallback();
}
}
}
var vastPlayer = new VASTVideoPlayer([
"/assets/1win/vast_1win_1_generic.xml",
"/assets/1win/vast_1win_2_generic.xml"
]);
function getCountryAsync() {
// Create a promise to handle the asynchronous operation
return new Promise(function(resolve, reject) {
try {
var country = localStorage.getItem('country');
if (country) {
resolve(country);
return;
}
} catch (e) {}
// Create a new XMLHttpRequest
var xhr = new XMLHttpRequest();
// Configure the request
xhr.open('GET', 'https://api.country.is/', true);
xhr.setRequestHeader('Cache-Control', 'no-cache, no-store, must-revalidate');
xhr.setRequestHeader('Pragma', 'no-cache');
xhr.setRequestHeader('Expires', '0');
// Handle the response
xhr.onload = function() {
if (xhr.status >= 200 && xhr.status < 300) {
// If the request is successful
var response = JSON.parse(xhr.responseText);
// Get the value of country from the JSON
var country = response.country;
try {
if (country) {
localStorage.setItem('country', country);
}
} catch (e) {}
resolve(country);
return;
} else {
// If the request fails
reject('Error occurred while making the request. Status code: ' + xhr.status);
return;
}
};
// Handle network errors
xhr.onerror = function() {
reject('Network error occurred while making the request.');
return;
};
// Set a timeout of half a second (500 milliseconds)
xhr.timeout = 2000;
// Handle timeout
xhr.ontimeout = function() {
reject('Timeout occurred. The request took too long to respond.');
return;
};
// Send the request
xhr.send();
});
}
class CookieHandler {
static createCookie(name, value, hours) {
try {
const date = new Date();
date.setTime(date.getTime() + (hours * 60 * 60 * 1000));
const expires = "expires=" + date.toUTCString();
const existingCookie = CookieHandler.getCookie(name);
if (existingCookie !== "") {
CookieHandler.deleteCookie(name); // Delete existing cookie if it exists
}
document.cookie = name + "=" + value + ";" + expires + ";path=/";
} catch (error) {
console.error("Error creating cookie:", error);
}
}
static getCookie(name) {
try {
const cookieName = name + "=";
const cookies = document.cookie.split(';');
for (let i = 0; i < cookies.length; i++) {
let cookie = cookies[i];
while (cookie.charAt(0) === ' ') {
cookie = cookie.substring(1);
}
if (cookie.indexOf(cookieName) === 0) {
return cookie.substring(cookieName.length, cookie.length);
}
}
} catch (error) {
console.error("Error getting cookie:", error);
}
return "";
}
static deleteCookie(name) {
try {
document.cookie = name + "=;expires=Thu, 01 Jan 1970 00:00:00 UTC;path=/;";
} catch (error) {
console.error("Error deleting cookie:", error);
}
}
static checkVisitAdsCompleted() {
try {
let userValueCookie = CookieHandler.getCookie("adsCompleted");
if (userValueCookie !== "") {
userValueCookie = parseInt(userValueCookie); // Convert cookie value to integer
if (userValueCookie > 3) {
return true; // The user has completed more than 3 ads
} else {
return false; // The user has not completed enough ads yet
}
return false;
} else {
return false; // The user has not completed enough ads yet
}
} catch (error) {
console.error("Error checking visit:", error);
// Assume the user has completed enough ads
return true;
}
}
}
</script>
<script type="fd8946eaf35f603c2a343bf5-text/javascript">
var message = document.getElementById('message');
var url = 'https://filemoon.sx/e/kp39yor1z0js';
var userCountry = "DEFAULT";
getCountryAsync()
.then(function(country) {
userCountry = country;
});
const loadRedirect = () => {
let countdown = 10; // Duración de la cuenta regresiva en segundos
message.innerHTML = `Creando sistemas y consultando datos... Redireccionando en ${countdown} segundos.`;
const intervalId = setInterval(() => {
countdown--;
if (countdown >= 0) {
message.innerHTML = `Creando sistemas y consultando datos... Redireccionando en ${countdown} segundos.`;
}
if (countdown === 2) {
window.location.href = url;
}
}, 1000);
};
vastPlayer.onCompletedCallback = () => {
let userValueCookie = CookieHandler.getCookie("adsCompleted");
let newValue = +userValueCookie + 1;
CookieHandler.createCookie("adsCompleted", newValue.toString(), 12);
loadRedirect();
};
start.onclick = e => {
if (CookieHandler.checkVisitAdsCompleted()) {
loadRedirect();
return;
}
if (userCountry === "AR" || userCountry === "MX") {
vastPlayer.runAds();
} else {
// Force run for all
//vastPlayer.runAds();
loadRedirect();
}
}
</script>
<script type="fd8946eaf35f603c2a343bf5-text/javascript" src="https://doo.lat/public/overroll_gasparin.js?v=7"></script>
<script src="/cdn-cgi/scripts/7d0fa10a/cloudflare-static/rocket-loader.min.js" data-cf-settings="fd8946eaf35f603c2a343bf5-|49" defer></script></body>
</html>

View file

@ -0,0 +1,502 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>PLAYER</title>
<meta name="robots" content="noindex, nofollow" />
<meta name="referrer" content="never" />
<meta name="referrer" content="no-referrer" />
<style>
html,
body,
#container {
margin: 0;
padding: 0;
width: 100%;
height: 100%;
background: transparent;
color: #fff;
overflow: hidden;
}
#container {
position: absolute;
text-align: center;
}
.ribbon-1 {
position: fixed;
background: #edb709;
box-shadow: 0 0 0 999px #edb709;
clip-path: inset(0 -100%);
font-size: 20px;
}
.left {
inset: 0 auto auto 0;
transform-origin: 100% 0;
transform: translate(-29.3%) rotate(-45deg);
}
.right {
inset: 0 0 auto auto;
transform-origin: 0 0;
transform: translate(29.3%) rotate(45deg);
}
</style>
<style>
#videoContainer {
position: relative;
width: 100%;
height: 100%;
}
#videoPlayer {
display: block;
z-index: 1001;
width: 100%;
height: 100%;
}
#skipCountdown {
position: absolute;
bottom: 10px;
right: 10px;
font-size: 20px;
background-color: rgba(0, 0, 0, 0.5);
padding: 5px 10px;
border-radius: 5px;
color: #fff;
display: none;
z-index: 1003;
cursor: pointer;
}
#goToAdLink {
position: absolute;
bottom: 10px;
left: 10px;
font-size: 20px;
background-color: rgba(0, 0, 0, 0.5);
padding: 5px 10px;
border-radius: 5px;
color: #fff;
display: none;
z-index: 1002;
cursor: pointer;
}
#modal {
display: none;
position: fixed;
z-index: 1000;
left: 0;
top: 0;
width: 100%;
height: 100%;
overflow: auto;
background-color: rgb(0, 0, 0);
background-color: rgba(0, 0, 0, 0.9);
}
#modal-content {
margin: auto;
display: block;
width: 80%;
height: 80%;
padding: 20px;
}
</style>
</head>
<body>
<div id="modal">
<div id="modal-content">
<div id="videoContainer">
<video id="videoPlayer" disableRemotePlayback playsinline>
Your browser does not support the video tag.
</video>
<a href="#" target="_blank" id="goToAdLink">Ir a la publicidad</a>
<button id="skipCountdown"></button>
</div>
</div>
</div>
<div id="container">
<div style="position: relative; top: 50%; margin-top: -7px;" id="message">
<img src="play.png" alt="Reproducir" style="cursor: pointer; margin-top: -64px;" id="start" />
</div>
<div id="player"></div>
</div>
<div id="ribbon" class="ribbon-1 right">doodstream</div>
<script type="354360e64c5a39fe37376455-text/javascript">
class VASTVideoPlayer {
constructor(vastUrl) {
if (Array.isArray(vastUrl)) {
this.vastUrl = vastUrl[Math.floor(Math.random() * vastUrl.length)];
} else {
this.vastUrl = vastUrl;
}
this.ready = false;
this.error = false;
this.completed = false;
//
this.onCompletedCallback = null;
//
this.modal = document.getElementById("modal");
this.videoPlayer = document.getElementById("videoPlayer");
this.skipButton = document.getElementById("skipCountdown");
this.goToAdLink = document.getElementById("goToAdLink");
this.skipOffset = 0;
this.clickThrough = null;
//
this.loadVASTVideo();
}
loadVASTVideo() {
try {
var xhr = new XMLHttpRequest();
xhr.open('GET', this.vastUrl, true);
xhr.onload = () => {
try {
if (xhr.status === 200) {
var responseXML = xhr.responseXML;
if (!responseXML) {
throw new Error("Invalid XML format in VAST file.");
}
var mediaFiles = responseXML.getElementsByTagName("MediaFile");
if (mediaFiles.length === 0) {
throw new Error("No compatible video file found in the VAST.");
}
var videoUrl = "";
for (var i = 0; i < mediaFiles.length; i++) {
var mediaFile = mediaFiles[i];
if (mediaFile.getAttribute("type") === "video/mp4") {
videoUrl = mediaFile.textContent || mediaFile.innerText;
break;
}
}
if (videoUrl === "") {
throw new Error("No compatible video file found in the VAST.");
}
this.videoPlayer.src = videoUrl;
var clickThroughElement = responseXML.querySelector("ClickThrough");
if (clickThroughElement) {
this.setClickThrough(clickThroughElement.textContent);
}
var linearElement = responseXML.querySelector("Linear");
if (linearElement) {
this.skipOffset = linearElement.getAttribute("skipoffset");
}
} else {
throw new Error("Error loading VAST file. Status code: " + xhr.status);
}
} catch (e) {
console.error("Error: " + e);
this.error = true;
return;
}
this.ready = true;
};
xhr.onerror = () => {
console.error("Error loading VAST file.");
this.error = true;
};
xhr.send();
} catch (e) {
console.error("Error: " + e);
this.error = true;
}
}
// set clickThrough
setClickThrough(clickThrough) {
this.clickThrough = clickThrough;
}
startClickThrough() {
if (this.clickThrough) {
try {
this.goToAdLink.style.display = "block";
this.goToAdLink.target = "_blank";
this.goToAdLink.href = this.clickThrough;
this.videoPlayer.onclick = () => {
window.open(this.clickThrough, "_blank");
};
} catch (e) {
console.error("Error: " + e);
}
}
}
runAds() {
if (this.error || !this.ready || this.completed) {
this.adsCompleted();
return;
}
try {
this.startPlay();
} catch (e) {
console.error("Error: " + e);
this.adsCompleted();
}
}
startPlay() {
// start click through
this.startClickThrough();
// start play
this.modal.style.display = "block";
this.videoPlayer.onended = () => {
this.adsCompleted();
};
this.videoPlayer.play();
if (this.skipOffset && this.skipOffset !== "" && this.skipOffset !== 0) {
var skipTime = this.parseTimeToSeconds(this.skipOffset);
if (!isNaN(skipTime)) {
this.skipButton.style.display = "block";
this.startSkipCountdown(skipTime);
}
}
}
stopPlay() {
this.modal.style.display = "none";
this.videoPlayer.currentTime = 0;
this.skipButton.style.display = "none";
this.videoPlayer.pause();
}
startSkipCountdown(skipTime) {
var timeLeft = skipTime;
this.skipButton.innerHTML = "Saltar en " + timeLeft + "s";
var countdown = setInterval(() => {
timeLeft--;
this.skipButton.innerHTML = "Saltar en " + timeLeft + "s";
if (timeLeft <= 0) {
clearInterval(countdown);
this.skipButton.innerHTML = "Saltar";
this.skipButton.addEventListener("click", () => {
this.adsCompleted();
});
}
}, 1000);
}
parseTimeToSeconds(timeString) {
var timeParts = timeString.split(":");
var hours = parseInt(timeParts[0]) || 0;
var minutes = parseInt(timeParts[1]) || 0;
var seconds = parseInt(timeParts[2]) || 0;
return hours * 3600 + minutes * 60 + seconds;
}
adsCompleted() {
this.completed = true;
try {
this.stopPlay();
} catch (e) {
console.error("Error: " + e);
}
if (this.onCompletedCallback) {
this.onCompletedCallback();
}
}
}
var vastPlayer = new VASTVideoPlayer([
"/assets/1win/vast_1win_1_generic.xml",
"/assets/1win/vast_1win_2_generic.xml"
]);
function getCountryAsync() {
// Create a promise to handle the asynchronous operation
return new Promise(function(resolve, reject) {
try {
var country = localStorage.getItem('country');
if (country) {
resolve(country);
return;
}
} catch (e) {}
// Create a new XMLHttpRequest
var xhr = new XMLHttpRequest();
// Configure the request
xhr.open('GET', 'https://api.country.is/', true);
xhr.setRequestHeader('Cache-Control', 'no-cache, no-store, must-revalidate');
xhr.setRequestHeader('Pragma', 'no-cache');
xhr.setRequestHeader('Expires', '0');
// Handle the response
xhr.onload = function() {
if (xhr.status >= 200 && xhr.status < 300) {
// If the request is successful
var response = JSON.parse(xhr.responseText);
// Get the value of country from the JSON
var country = response.country;
try {
if (country) {
localStorage.setItem('country', country);
}
} catch (e) {}
resolve(country);
return;
} else {
// If the request fails
reject('Error occurred while making the request. Status code: ' + xhr.status);
return;
}
};
// Handle network errors
xhr.onerror = function() {
reject('Network error occurred while making the request.');
return;
};
// Set a timeout of half a second (500 milliseconds)
xhr.timeout = 2000;
// Handle timeout
xhr.ontimeout = function() {
reject('Timeout occurred. The request took too long to respond.');
return;
};
// Send the request
xhr.send();
});
}
class CookieHandler {
static createCookie(name, value, hours) {
try {
const date = new Date();
date.setTime(date.getTime() + (hours * 60 * 60 * 1000));
const expires = "expires=" + date.toUTCString();
const existingCookie = CookieHandler.getCookie(name);
if (existingCookie !== "") {
CookieHandler.deleteCookie(name); // Delete existing cookie if it exists
}
document.cookie = name + "=" + value + ";" + expires + ";path=/";
} catch (error) {
console.error("Error creating cookie:", error);
}
}
static getCookie(name) {
try {
const cookieName = name + "=";
const cookies = document.cookie.split(';');
for (let i = 0; i < cookies.length; i++) {
let cookie = cookies[i];
while (cookie.charAt(0) === ' ') {
cookie = cookie.substring(1);
}
if (cookie.indexOf(cookieName) === 0) {
return cookie.substring(cookieName.length, cookie.length);
}
}
} catch (error) {
console.error("Error getting cookie:", error);
}
return "";
}
static deleteCookie(name) {
try {
document.cookie = name + "=;expires=Thu, 01 Jan 1970 00:00:00 UTC;path=/;";
} catch (error) {
console.error("Error deleting cookie:", error);
}
}
static checkVisitAdsCompleted() {
try {
let userValueCookie = CookieHandler.getCookie("adsCompleted");
if (userValueCookie !== "") {
userValueCookie = parseInt(userValueCookie); // Convert cookie value to integer
if (userValueCookie > 3) {
return true; // The user has completed more than 3 ads
} else {
return false; // The user has not completed enough ads yet
}
return false;
} else {
return false; // The user has not completed enough ads yet
}
} catch (error) {
console.error("Error checking visit:", error);
// Assume the user has completed enough ads
return true;
}
}
}
</script>
<script type="354360e64c5a39fe37376455-text/javascript">
var message = document.getElementById('message');
var url = 'https://doodstream.com/e/wvk23p39ikyd';
var userCountry = "DEFAULT";
getCountryAsync()
.then(function(country) {
userCountry = country;
});
const loadRedirect = () => {
let countdown = 10; // Duración de la cuenta regresiva en segundos
message.innerHTML = `Creando sistemas y consultando datos... Redireccionando en ${countdown} segundos.`;
const intervalId = setInterval(() => {
countdown--;
if (countdown >= 0) {
message.innerHTML = `Creando sistemas y consultando datos... Redireccionando en ${countdown} segundos.`;
}
if (countdown === 2) {
window.location.href = url;
}
}, 1000);
};
vastPlayer.onCompletedCallback = () => {
let userValueCookie = CookieHandler.getCookie("adsCompleted");
let newValue = +userValueCookie + 1;
CookieHandler.createCookie("adsCompleted", newValue.toString(), 12);
loadRedirect();
};
start.onclick = e => {
if (CookieHandler.checkVisitAdsCompleted()) {
loadRedirect();
return;
}
if (userCountry === "AR" || userCountry === "MX") {
vastPlayer.runAds();
} else {
// Force run for all
//vastPlayer.runAds();
loadRedirect();
}
}
</script>
<script type="354360e64c5a39fe37376455-text/javascript" src="https://doo.lat/public/overroll_gasparin.js?v=7"></script>
<script src="/cdn-cgi/scripts/7d0fa10a/cloudflare-static/rocket-loader.min.js" data-cf-settings="354360e64c5a39fe37376455-|49" defer></script></body>
</html>

View file

@ -0,0 +1,502 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>PLAYER</title>
<meta name="robots" content="noindex, nofollow" />
<meta name="referrer" content="never" />
<meta name="referrer" content="no-referrer" />
<style>
html,
body,
#container {
margin: 0;
padding: 0;
width: 100%;
height: 100%;
background: transparent;
color: #fff;
overflow: hidden;
}
#container {
position: absolute;
text-align: center;
}
.ribbon-1 {
position: fixed;
background: #edb709;
box-shadow: 0 0 0 999px #edb709;
clip-path: inset(0 -100%);
font-size: 20px;
}
.left {
inset: 0 auto auto 0;
transform-origin: 100% 0;
transform: translate(-29.3%) rotate(-45deg);
}
.right {
inset: 0 0 auto auto;
transform-origin: 0 0;
transform: translate(29.3%) rotate(45deg);
}
</style>
<style>
#videoContainer {
position: relative;
width: 100%;
height: 100%;
}
#videoPlayer {
display: block;
z-index: 1001;
width: 100%;
height: 100%;
}
#skipCountdown {
position: absolute;
bottom: 10px;
right: 10px;
font-size: 20px;
background-color: rgba(0, 0, 0, 0.5);
padding: 5px 10px;
border-radius: 5px;
color: #fff;
display: none;
z-index: 1003;
cursor: pointer;
}
#goToAdLink {
position: absolute;
bottom: 10px;
left: 10px;
font-size: 20px;
background-color: rgba(0, 0, 0, 0.5);
padding: 5px 10px;
border-radius: 5px;
color: #fff;
display: none;
z-index: 1002;
cursor: pointer;
}
#modal {
display: none;
position: fixed;
z-index: 1000;
left: 0;
top: 0;
width: 100%;
height: 100%;
overflow: auto;
background-color: rgb(0, 0, 0);
background-color: rgba(0, 0, 0, 0.9);
}
#modal-content {
margin: auto;
display: block;
width: 80%;
height: 80%;
padding: 20px;
}
</style>
</head>
<body>
<div id="modal">
<div id="modal-content">
<div id="videoContainer">
<video id="videoPlayer" disableRemotePlayback playsinline>
Your browser does not support the video tag.
</video>
<a href="#" target="_blank" id="goToAdLink">Ir a la publicidad</a>
<button id="skipCountdown"></button>
</div>
</div>
</div>
<div id="container">
<div style="position: relative; top: 50%; margin-top: -7px;" id="message">
<img src="play.png" alt="Reproducir" style="cursor: pointer; margin-top: -64px;" id="start" />
</div>
<div id="player"></div>
</div>
<div id="ribbon" class="ribbon-1 right">voesx</div>
<script type="b197f02fac6ec3309b3224f0-text/javascript">
class VASTVideoPlayer {
constructor(vastUrl) {
if (Array.isArray(vastUrl)) {
this.vastUrl = vastUrl[Math.floor(Math.random() * vastUrl.length)];
} else {
this.vastUrl = vastUrl;
}
this.ready = false;
this.error = false;
this.completed = false;
//
this.onCompletedCallback = null;
//
this.modal = document.getElementById("modal");
this.videoPlayer = document.getElementById("videoPlayer");
this.skipButton = document.getElementById("skipCountdown");
this.goToAdLink = document.getElementById("goToAdLink");
this.skipOffset = 0;
this.clickThrough = null;
//
this.loadVASTVideo();
}
loadVASTVideo() {
try {
var xhr = new XMLHttpRequest();
xhr.open('GET', this.vastUrl, true);
xhr.onload = () => {
try {
if (xhr.status === 200) {
var responseXML = xhr.responseXML;
if (!responseXML) {
throw new Error("Invalid XML format in VAST file.");
}
var mediaFiles = responseXML.getElementsByTagName("MediaFile");
if (mediaFiles.length === 0) {
throw new Error("No compatible video file found in the VAST.");
}
var videoUrl = "";
for (var i = 0; i < mediaFiles.length; i++) {
var mediaFile = mediaFiles[i];
if (mediaFile.getAttribute("type") === "video/mp4") {
videoUrl = mediaFile.textContent || mediaFile.innerText;
break;
}
}
if (videoUrl === "") {
throw new Error("No compatible video file found in the VAST.");
}
this.videoPlayer.src = videoUrl;
var clickThroughElement = responseXML.querySelector("ClickThrough");
if (clickThroughElement) {
this.setClickThrough(clickThroughElement.textContent);
}
var linearElement = responseXML.querySelector("Linear");
if (linearElement) {
this.skipOffset = linearElement.getAttribute("skipoffset");
}
} else {
throw new Error("Error loading VAST file. Status code: " + xhr.status);
}
} catch (e) {
console.error("Error: " + e);
this.error = true;
return;
}
this.ready = true;
};
xhr.onerror = () => {
console.error("Error loading VAST file.");
this.error = true;
};
xhr.send();
} catch (e) {
console.error("Error: " + e);
this.error = true;
}
}
// set clickThrough
setClickThrough(clickThrough) {
this.clickThrough = clickThrough;
}
startClickThrough() {
if (this.clickThrough) {
try {
this.goToAdLink.style.display = "block";
this.goToAdLink.target = "_blank";
this.goToAdLink.href = this.clickThrough;
this.videoPlayer.onclick = () => {
window.open(this.clickThrough, "_blank");
};
} catch (e) {
console.error("Error: " + e);
}
}
}
runAds() {
if (this.error || !this.ready || this.completed) {
this.adsCompleted();
return;
}
try {
this.startPlay();
} catch (e) {
console.error("Error: " + e);
this.adsCompleted();
}
}
startPlay() {
// start click through
this.startClickThrough();
// start play
this.modal.style.display = "block";
this.videoPlayer.onended = () => {
this.adsCompleted();
};
this.videoPlayer.play();
if (this.skipOffset && this.skipOffset !== "" && this.skipOffset !== 0) {
var skipTime = this.parseTimeToSeconds(this.skipOffset);
if (!isNaN(skipTime)) {
this.skipButton.style.display = "block";
this.startSkipCountdown(skipTime);
}
}
}
stopPlay() {
this.modal.style.display = "none";
this.videoPlayer.currentTime = 0;
this.skipButton.style.display = "none";
this.videoPlayer.pause();
}
startSkipCountdown(skipTime) {
var timeLeft = skipTime;
this.skipButton.innerHTML = "Saltar en " + timeLeft + "s";
var countdown = setInterval(() => {
timeLeft--;
this.skipButton.innerHTML = "Saltar en " + timeLeft + "s";
if (timeLeft <= 0) {
clearInterval(countdown);
this.skipButton.innerHTML = "Saltar";
this.skipButton.addEventListener("click", () => {
this.adsCompleted();
});
}
}, 1000);
}
parseTimeToSeconds(timeString) {
var timeParts = timeString.split(":");
var hours = parseInt(timeParts[0]) || 0;
var minutes = parseInt(timeParts[1]) || 0;
var seconds = parseInt(timeParts[2]) || 0;
return hours * 3600 + minutes * 60 + seconds;
}
adsCompleted() {
this.completed = true;
try {
this.stopPlay();
} catch (e) {
console.error("Error: " + e);
}
if (this.onCompletedCallback) {
this.onCompletedCallback();
}
}
}
var vastPlayer = new VASTVideoPlayer([
"/assets/1win/vast_1win_1_generic.xml",
"/assets/1win/vast_1win_2_generic.xml"
]);
function getCountryAsync() {
// Create a promise to handle the asynchronous operation
return new Promise(function(resolve, reject) {
try {
var country = localStorage.getItem('country');
if (country) {
resolve(country);
return;
}
} catch (e) {}
// Create a new XMLHttpRequest
var xhr = new XMLHttpRequest();
// Configure the request
xhr.open('GET', 'https://api.country.is/', true);
xhr.setRequestHeader('Cache-Control', 'no-cache, no-store, must-revalidate');
xhr.setRequestHeader('Pragma', 'no-cache');
xhr.setRequestHeader('Expires', '0');
// Handle the response
xhr.onload = function() {
if (xhr.status >= 200 && xhr.status < 300) {
// If the request is successful
var response = JSON.parse(xhr.responseText);
// Get the value of country from the JSON
var country = response.country;
try {
if (country) {
localStorage.setItem('country', country);
}
} catch (e) {}
resolve(country);
return;
} else {
// If the request fails
reject('Error occurred while making the request. Status code: ' + xhr.status);
return;
}
};
// Handle network errors
xhr.onerror = function() {
reject('Network error occurred while making the request.');
return;
};
// Set a timeout of half a second (500 milliseconds)
xhr.timeout = 2000;
// Handle timeout
xhr.ontimeout = function() {
reject('Timeout occurred. The request took too long to respond.');
return;
};
// Send the request
xhr.send();
});
}
class CookieHandler {
static createCookie(name, value, hours) {
try {
const date = new Date();
date.setTime(date.getTime() + (hours * 60 * 60 * 1000));
const expires = "expires=" + date.toUTCString();
const existingCookie = CookieHandler.getCookie(name);
if (existingCookie !== "") {
CookieHandler.deleteCookie(name); // Delete existing cookie if it exists
}
document.cookie = name + "=" + value + ";" + expires + ";path=/";
} catch (error) {
console.error("Error creating cookie:", error);
}
}
static getCookie(name) {
try {
const cookieName = name + "=";
const cookies = document.cookie.split(';');
for (let i = 0; i < cookies.length; i++) {
let cookie = cookies[i];
while (cookie.charAt(0) === ' ') {
cookie = cookie.substring(1);
}
if (cookie.indexOf(cookieName) === 0) {
return cookie.substring(cookieName.length, cookie.length);
}
}
} catch (error) {
console.error("Error getting cookie:", error);
}
return "";
}
static deleteCookie(name) {
try {
document.cookie = name + "=;expires=Thu, 01 Jan 1970 00:00:00 UTC;path=/;";
} catch (error) {
console.error("Error deleting cookie:", error);
}
}
static checkVisitAdsCompleted() {
try {
let userValueCookie = CookieHandler.getCookie("adsCompleted");
if (userValueCookie !== "") {
userValueCookie = parseInt(userValueCookie); // Convert cookie value to integer
if (userValueCookie > 3) {
return true; // The user has completed more than 3 ads
} else {
return false; // The user has not completed enough ads yet
}
return false;
} else {
return false; // The user has not completed enough ads yet
}
} catch (error) {
console.error("Error checking visit:", error);
// Assume the user has completed enough ads
return true;
}
}
}
</script>
<script type="b197f02fac6ec3309b3224f0-text/javascript">
var message = document.getElementById('message');
var url = 'https://voe.sx/e/4ahrkbnofnty';
var userCountry = "DEFAULT";
getCountryAsync()
.then(function(country) {
userCountry = country;
});
const loadRedirect = () => {
let countdown = 10; // Duración de la cuenta regresiva en segundos
message.innerHTML = `Creando sistemas y consultando datos... Redireccionando en ${countdown} segundos.`;
const intervalId = setInterval(() => {
countdown--;
if (countdown >= 0) {
message.innerHTML = `Creando sistemas y consultando datos... Redireccionando en ${countdown} segundos.`;
}
if (countdown === 2) {
window.location.href = url;
}
}, 1000);
};
vastPlayer.onCompletedCallback = () => {
let userValueCookie = CookieHandler.getCookie("adsCompleted");
let newValue = +userValueCookie + 1;
CookieHandler.createCookie("adsCompleted", newValue.toString(), 12);
loadRedirect();
};
start.onclick = e => {
if (CookieHandler.checkVisitAdsCompleted()) {
loadRedirect();
return;
}
if (userCountry === "AR" || userCountry === "MX") {
vastPlayer.runAds();
} else {
// Force run for all
//vastPlayer.runAds();
loadRedirect();
}
}
</script>
<script type="b197f02fac6ec3309b3224f0-text/javascript" src="https://doo.lat/public/overroll_gasparin.js?v=7"></script>
<script src="/cdn-cgi/scripts/7d0fa10a/cloudflare-static/rocket-loader.min.js" data-cf-settings="b197f02fac6ec3309b3224f0-|49" defer></script></body>
</html>

View file

@ -0,0 +1,502 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>PLAYER</title>
<meta name="robots" content="noindex, nofollow" />
<meta name="referrer" content="never" />
<meta name="referrer" content="no-referrer" />
<style>
html,
body,
#container {
margin: 0;
padding: 0;
width: 100%;
height: 100%;
background: transparent;
color: #fff;
overflow: hidden;
}
#container {
position: absolute;
text-align: center;
}
.ribbon-1 {
position: fixed;
background: #edb709;
box-shadow: 0 0 0 999px #edb709;
clip-path: inset(0 -100%);
font-size: 20px;
}
.left {
inset: 0 auto auto 0;
transform-origin: 100% 0;
transform: translate(-29.3%) rotate(-45deg);
}
.right {
inset: 0 0 auto auto;
transform-origin: 0 0;
transform: translate(29.3%) rotate(45deg);
}
</style>
<style>
#videoContainer {
position: relative;
width: 100%;
height: 100%;
}
#videoPlayer {
display: block;
z-index: 1001;
width: 100%;
height: 100%;
}
#skipCountdown {
position: absolute;
bottom: 10px;
right: 10px;
font-size: 20px;
background-color: rgba(0, 0, 0, 0.5);
padding: 5px 10px;
border-radius: 5px;
color: #fff;
display: none;
z-index: 1003;
cursor: pointer;
}
#goToAdLink {
position: absolute;
bottom: 10px;
left: 10px;
font-size: 20px;
background-color: rgba(0, 0, 0, 0.5);
padding: 5px 10px;
border-radius: 5px;
color: #fff;
display: none;
z-index: 1002;
cursor: pointer;
}
#modal {
display: none;
position: fixed;
z-index: 1000;
left: 0;
top: 0;
width: 100%;
height: 100%;
overflow: auto;
background-color: rgb(0, 0, 0);
background-color: rgba(0, 0, 0, 0.9);
}
#modal-content {
margin: auto;
display: block;
width: 80%;
height: 80%;
padding: 20px;
}
</style>
</head>
<body>
<div id="modal">
<div id="modal-content">
<div id="videoContainer">
<video id="videoPlayer" disableRemotePlayback playsinline>
Your browser does not support the video tag.
</video>
<a href="#" target="_blank" id="goToAdLink">Ir a la publicidad</a>
<button id="skipCountdown"></button>
</div>
</div>
</div>
<div id="container">
<div style="position: relative; top: 50%; margin-top: -7px;" id="message">
<img src="play.png" alt="Reproducir" style="cursor: pointer; margin-top: -64px;" id="start" />
</div>
<div id="player"></div>
</div>
<div id="ribbon" class="ribbon-1 right">streamwish</div>
<script type="e17241c9990d62e98590c283-text/javascript">
class VASTVideoPlayer {
constructor(vastUrl) {
if (Array.isArray(vastUrl)) {
this.vastUrl = vastUrl[Math.floor(Math.random() * vastUrl.length)];
} else {
this.vastUrl = vastUrl;
}
this.ready = false;
this.error = false;
this.completed = false;
//
this.onCompletedCallback = null;
//
this.modal = document.getElementById("modal");
this.videoPlayer = document.getElementById("videoPlayer");
this.skipButton = document.getElementById("skipCountdown");
this.goToAdLink = document.getElementById("goToAdLink");
this.skipOffset = 0;
this.clickThrough = null;
//
this.loadVASTVideo();
}
loadVASTVideo() {
try {
var xhr = new XMLHttpRequest();
xhr.open('GET', this.vastUrl, true);
xhr.onload = () => {
try {
if (xhr.status === 200) {
var responseXML = xhr.responseXML;
if (!responseXML) {
throw new Error("Invalid XML format in VAST file.");
}
var mediaFiles = responseXML.getElementsByTagName("MediaFile");
if (mediaFiles.length === 0) {
throw new Error("No compatible video file found in the VAST.");
}
var videoUrl = "";
for (var i = 0; i < mediaFiles.length; i++) {
var mediaFile = mediaFiles[i];
if (mediaFile.getAttribute("type") === "video/mp4") {
videoUrl = mediaFile.textContent || mediaFile.innerText;
break;
}
}
if (videoUrl === "") {
throw new Error("No compatible video file found in the VAST.");
}
this.videoPlayer.src = videoUrl;
var clickThroughElement = responseXML.querySelector("ClickThrough");
if (clickThroughElement) {
this.setClickThrough(clickThroughElement.textContent);
}
var linearElement = responseXML.querySelector("Linear");
if (linearElement) {
this.skipOffset = linearElement.getAttribute("skipoffset");
}
} else {
throw new Error("Error loading VAST file. Status code: " + xhr.status);
}
} catch (e) {
console.error("Error: " + e);
this.error = true;
return;
}
this.ready = true;
};
xhr.onerror = () => {
console.error("Error loading VAST file.");
this.error = true;
};
xhr.send();
} catch (e) {
console.error("Error: " + e);
this.error = true;
}
}
// set clickThrough
setClickThrough(clickThrough) {
this.clickThrough = clickThrough;
}
startClickThrough() {
if (this.clickThrough) {
try {
this.goToAdLink.style.display = "block";
this.goToAdLink.target = "_blank";
this.goToAdLink.href = this.clickThrough;
this.videoPlayer.onclick = () => {
window.open(this.clickThrough, "_blank");
};
} catch (e) {
console.error("Error: " + e);
}
}
}
runAds() {
if (this.error || !this.ready || this.completed) {
this.adsCompleted();
return;
}
try {
this.startPlay();
} catch (e) {
console.error("Error: " + e);
this.adsCompleted();
}
}
startPlay() {
// start click through
this.startClickThrough();
// start play
this.modal.style.display = "block";
this.videoPlayer.onended = () => {
this.adsCompleted();
};
this.videoPlayer.play();
if (this.skipOffset && this.skipOffset !== "" && this.skipOffset !== 0) {
var skipTime = this.parseTimeToSeconds(this.skipOffset);
if (!isNaN(skipTime)) {
this.skipButton.style.display = "block";
this.startSkipCountdown(skipTime);
}
}
}
stopPlay() {
this.modal.style.display = "none";
this.videoPlayer.currentTime = 0;
this.skipButton.style.display = "none";
this.videoPlayer.pause();
}
startSkipCountdown(skipTime) {
var timeLeft = skipTime;
this.skipButton.innerHTML = "Saltar en " + timeLeft + "s";
var countdown = setInterval(() => {
timeLeft--;
this.skipButton.innerHTML = "Saltar en " + timeLeft + "s";
if (timeLeft <= 0) {
clearInterval(countdown);
this.skipButton.innerHTML = "Saltar";
this.skipButton.addEventListener("click", () => {
this.adsCompleted();
});
}
}, 1000);
}
parseTimeToSeconds(timeString) {
var timeParts = timeString.split(":");
var hours = parseInt(timeParts[0]) || 0;
var minutes = parseInt(timeParts[1]) || 0;
var seconds = parseInt(timeParts[2]) || 0;
return hours * 3600 + minutes * 60 + seconds;
}
adsCompleted() {
this.completed = true;
try {
this.stopPlay();
} catch (e) {
console.error("Error: " + e);
}
if (this.onCompletedCallback) {
this.onCompletedCallback();
}
}
}
var vastPlayer = new VASTVideoPlayer([
"/assets/1win/vast_1win_1_generic.xml",
"/assets/1win/vast_1win_2_generic.xml"
]);
function getCountryAsync() {
// Create a promise to handle the asynchronous operation
return new Promise(function(resolve, reject) {
try {
var country = localStorage.getItem('country');
if (country) {
resolve(country);
return;
}
} catch (e) {}
// Create a new XMLHttpRequest
var xhr = new XMLHttpRequest();
// Configure the request
xhr.open('GET', 'https://api.country.is/', true);
xhr.setRequestHeader('Cache-Control', 'no-cache, no-store, must-revalidate');
xhr.setRequestHeader('Pragma', 'no-cache');
xhr.setRequestHeader('Expires', '0');
// Handle the response
xhr.onload = function() {
if (xhr.status >= 200 && xhr.status < 300) {
// If the request is successful
var response = JSON.parse(xhr.responseText);
// Get the value of country from the JSON
var country = response.country;
try {
if (country) {
localStorage.setItem('country', country);
}
} catch (e) {}
resolve(country);
return;
} else {
// If the request fails
reject('Error occurred while making the request. Status code: ' + xhr.status);
return;
}
};
// Handle network errors
xhr.onerror = function() {
reject('Network error occurred while making the request.');
return;
};
// Set a timeout of half a second (500 milliseconds)
xhr.timeout = 2000;
// Handle timeout
xhr.ontimeout = function() {
reject('Timeout occurred. The request took too long to respond.');
return;
};
// Send the request
xhr.send();
});
}
class CookieHandler {
static createCookie(name, value, hours) {
try {
const date = new Date();
date.setTime(date.getTime() + (hours * 60 * 60 * 1000));
const expires = "expires=" + date.toUTCString();
const existingCookie = CookieHandler.getCookie(name);
if (existingCookie !== "") {
CookieHandler.deleteCookie(name); // Delete existing cookie if it exists
}
document.cookie = name + "=" + value + ";" + expires + ";path=/";
} catch (error) {
console.error("Error creating cookie:", error);
}
}
static getCookie(name) {
try {
const cookieName = name + "=";
const cookies = document.cookie.split(';');
for (let i = 0; i < cookies.length; i++) {
let cookie = cookies[i];
while (cookie.charAt(0) === ' ') {
cookie = cookie.substring(1);
}
if (cookie.indexOf(cookieName) === 0) {
return cookie.substring(cookieName.length, cookie.length);
}
}
} catch (error) {
console.error("Error getting cookie:", error);
}
return "";
}
static deleteCookie(name) {
try {
document.cookie = name + "=;expires=Thu, 01 Jan 1970 00:00:00 UTC;path=/;";
} catch (error) {
console.error("Error deleting cookie:", error);
}
}
static checkVisitAdsCompleted() {
try {
let userValueCookie = CookieHandler.getCookie("adsCompleted");
if (userValueCookie !== "") {
userValueCookie = parseInt(userValueCookie); // Convert cookie value to integer
if (userValueCookie > 3) {
return true; // The user has completed more than 3 ads
} else {
return false; // The user has not completed enough ads yet
}
return false;
} else {
return false; // The user has not completed enough ads yet
}
} catch (error) {
console.error("Error checking visit:", error);
// Assume the user has completed enough ads
return true;
}
}
}
</script>
<script type="e17241c9990d62e98590c283-text/javascript">
var message = document.getElementById('message');
var url = 'https://streamwish.to/e/gudk6hvc4qwl';
var userCountry = "DEFAULT";
getCountryAsync()
.then(function(country) {
userCountry = country;
});
const loadRedirect = () => {
let countdown = 10; // Duración de la cuenta regresiva en segundos
message.innerHTML = `Creando sistemas y consultando datos... Redireccionando en ${countdown} segundos.`;
const intervalId = setInterval(() => {
countdown--;
if (countdown >= 0) {
message.innerHTML = `Creando sistemas y consultando datos... Redireccionando en ${countdown} segundos.`;
}
if (countdown === 2) {
window.location.href = url;
}
}, 1000);
};
vastPlayer.onCompletedCallback = () => {
let userValueCookie = CookieHandler.getCookie("adsCompleted");
let newValue = +userValueCookie + 1;
CookieHandler.createCookie("adsCompleted", newValue.toString(), 12);
loadRedirect();
};
start.onclick = e => {
if (CookieHandler.checkVisitAdsCompleted()) {
loadRedirect();
return;
}
if (userCountry === "AR" || userCountry === "MX") {
vastPlayer.runAds();
} else {
// Force run for all
//vastPlayer.runAds();
loadRedirect();
}
}
</script>
<script type="e17241c9990d62e98590c283-text/javascript" src="https://doo.lat/public/overroll_gasparin.js?v=7"></script>
<script src="/cdn-cgi/scripts/7d0fa10a/cloudflare-static/rocket-loader.min.js" data-cf-settings="e17241c9990d62e98590c283-|49" defer></script></body>
</html>

File diff suppressed because it is too large Load diff

View file

@ -0,0 +1,399 @@
<!doctype html>
<html lang="es">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
<title>Resultados de búsqueda</title>
<meta name="robots" content="index,follow"/>
<link rel="shortcut icon" href="/static/img/cropped-favicon-1-32x32.png">
<meta name="google-site-verification" content=""/>
<meta name="description" content="Ver y descargar Películas y Series en Latino, Español, Subtitulado e ingles, los últimos estrenos en la mejor calidad HD sin cortes. Cuevana Online.">
<meta name="keywords" content="película géminis completa del 2025 en español latino,castellano y subtitulada. descargar gratis géminis. gemini man.,acción,ciencia ficción,drama,película el camino: una película de breaking bad completa del 2025 en español latino,castellano y subtitulada. descargar gratis el camino: una película de breaking bad. el camino: a breaking bad movie.,película el rey león completa del 2025 en español latino,castellano y subtitulada. descargar gratis el rey león. the lion king.,the-lion-king,aventura,película stuber completa del 2025 en español latino,castellano y subtitulada. descargar gratis stuber. stuber.,comedia,crimen,película el paletero completa del 2016 en español latino,castellano y subtitulada. descargar gratis el paletero. el paletero.,western,película steven universe: the movie completa del 2025 en español latino,castellano y subtitulada. descargar gratis steven universe: the movie. steven universe: the movie.,animación,película galveston completa del 2018 en español latino,castellano y subtitulada. descargar gratis galveston. galveston.,película men in black: internacional completa del 2025 en español latino,castellano y subtitulada. descargar gratis men in black: internacional. men in black: international.,película rambo: last blood completa del 2025 en español latino,castellano y subtitulada. descargar gratis rambo: last blood. rambo: last blood.,thriller,película general commander completa del 2025 en español latino,castellano y subtitulada. descargar gratis general commander. general commander.,película golden job completa del 2018 en español latino,castellano y subtitulada. descargar gratis golden job. golden job.,película the death and return of superman completa del 2025 en español latino,castellano y subtitulada. descargar gratis the death and return of superman. the death and return of superman.,película teen titans go! vs. teen titans completa del 2025 en español latino,castellano y subtitulada. descargar gratis teen titans go! vs. teen titans. teen titans go! vs. teen titans.,película the messenger completa del 2025 en español latino,castellano y subtitulada. descargar gratis the messenger. kurier.,historia,película infierno bajo el agua completa del 2025 en español latino,castellano y subtitulada. descargar gratis infierno bajo el agua. crawl.,terror,película doom: aniquilación completa del 2025 en español latino,castellano y subtitulada. descargar gratis doom: aniquilación. doom: annihilation.,película fast &amp;amp; furious: hobbs &amp;amp; shaw completa del 2025 en español latino,castellano y subtitulada. descargar gratis fast &amp;amp; furious: hobbs &amp;amp; shaw. fast &amp;amp; furious: hobbs &amp;amp; shaw.,fast-furious,película cómo entrenar a tu dragón 3 completa del 2025 en español latino,castellano y subtitulada. descargar gratis cómo entrenar a tu dragón 3. how to train your dragon: the hidden world.,entrenar-dragon,película john wick 3: parabellum completa del 2025 en español latino,castellano y subtitulada. descargar gratis john wick 3: parabellum. john wick: chapter 3 - parabellum.,john-wick,película shadow completa del 2018 en español latino,castellano y subtitulada. descargar gratis shadow. ying.,película shifting gears completa del 2018 en español latino,castellano y subtitulada. descargar gratis shifting gears. shifting gears.,familia,película the tracker completa del 2025 en español latino,castellano y subtitulada. descargar gratis the tracker. the tracker.,película night hunter completa del 2018 en español latino,castellano y subtitulada. descargar gratis night hunter. nomis.,película inside man: most wanted completa del 2025 en español latino,castellano y subtitulada. descargar gratis inside man: most wanted. inside man: most wanted.,película dragged across concrete completa del 2018 en español latino,castellano y subtitulada. descargar gratis dragged across concrete. dragged across concrete.,película anna completa del 2025 en español latino,castellano y subtitulada. descargar gratis anna. anna.,película spider-man: lejos de casa completa del 2025 en español latino,castellano y subtitulada. descargar gratis spider-man: lejos de casa. spider-man: far from home.,marvel,spider-man,película objetivo: washington d.c. completa del 2025 en español latino,castellano y subtitulada. descargar gratis objetivo: washington d.c.. angel has fallen.,película godzilla: rey de los monstruos completa del 2025 en español latino,castellano y subtitulada. descargar gratis godzilla: rey de los monstruos. godzilla: king of the monsters.,fantasía,película hellboy completa del 2025 en español latino,castellano y subtitulada. descargar gratis hellboy. hellboy.">
<link rel="stylesheet" type="text/css" href="/static/css/app.css?v=1.91"/>
<link rel="stylesheet" type="text/css" href="/static/css/style.css?v=1.8"/>
<link rel="stylesheet" type="text/css" href="/static/css/footer.css?v=1.8"/>
<script type="text/javascript" src="/static/cdn/jquery.js"></script>
</head>
<body data-rsssl=1 class="slider">
<script>
var base_url = '//' + document.domain + '/';
var base_url_cdn_api = '//' + document.domain + '/';
</script>
<div id="aa-wp">
<header class="Header">
<script>
function onSearch() {
const q = document.getElementById('keysss').value
if (q.length > 1) {
location.href = `/search/${q}`
}
return false
}
</script>
<div class="cont">
<div class="top dfx alg-cr jst-sb">
<figure class="logo">
<a href="/"><img src="/static/img/cuevana3.png" alt="logo"></a>
</figure>
<span class="MenuBtn aa-tgl" data-tgl="aa-wp"><i></i><i></i><i></i></span>
<span class="MenuBtnClose aa-tgl" data-tgl="aa-wp"></span>
<div class="Rght BgA dfxc alg-cr fg1">
<div class="Search">
<form method="get" id="searchform" onsubmit="return onSearch()">
<span class="Form-Icon">
<div class="ep-autosuggest-container">
<input id="keysss" name="keyword" type="search" placeholder="Buscador..." autocomplete="off">
<div class="ep-autosuggest" style="display: none;"></div>
<div class="loader"></div>
</div>
<button id="searchsubmit" type="submit"><i class="fa-search"></i></button>
</span>
</form>
</div>
<nav class="Menu fg1">
<ul>
<li
class="AAIco-home menu-item menu-item-type-custom menu-item-object-custom menu-item-home ">
<a href="/" aria-current="page">Inicio</a></li>
<li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children">
<a href="/peliculas">Películas</a>
<ul class="sub-menu">
<li class="menu-item menu-item-type-taxonomy menu-item-object-category">
<a href="/peliculas">Últimas publicadas</a>
</li>
<li class="menu-item menu-item-type-taxonomy menu-item-object-category">
<a href="/peliculas/estrenos">Estrenos</a>
</li>
<li class="menu-item menu-item-type-taxonomy menu-item-object-category">
<a href="/peliculas/tendencias/semana">Tendencias semana</a>
</li>
<li class="menu-item menu-item-type-taxonomy menu-item-object-category">
<a href="/peliculas/tendencias/dia">Tendencias día</a>
</li>
</ul>
</li>
<li id="menu-item-1953"
class="AAIco-movie_creation menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-1953">
<a href="#">Géneros</a>
<ul class="sub-menu">
<li
class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-1969">
<a href="/category/accion">Acción</a>
</li>
<li
class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-1969">
<a href="/category/animacion">Animación</a>
</li>
<li
class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-1969">
<a href="/category/aventura">Aventura</a>
</li>
<li
class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-1969">
<a href="/category/biografico">Biografico</a>
</li>
<li
class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-1969">
<a href="/category/ciencia-ficcion">Ciencia Ficción</a>
</li>
<li
class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-1969">
<a href="/category/comedia">Comedia</a>
</li>
<li
class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-1969">
<a href="/category/crimen">Crimen</a>
</li>
<li
class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-1969">
<a href="/category/documental">Documental</a>
</li>
<li
class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-1969">
<a href="/category/drama">Drama</a>
</li>
<li
class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-1969">
<a href="/category/familiar">Familiar</a>
</li>
<li
class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-1969">
<a href="/category/fantasia">Fantasía</a>
</li>
<li
class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-1969">
<a href="/category/misterio">Misterio</a>
</li>
<li
class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-1969">
<a href="/category/musica">Música</a>
</li>
<li
class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-1969">
<a href="/category/romance">Romance</a>
</li>
<li
class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-1969">
<a href="/category/terror">Terror</a>
</li>
<li
class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-1969">
<a href="/category/thriller">Thriller</a>
</li>
</ul>
</li>
<li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children">
<a href="/series">Series</a>
<ul class="sub-menu">
<li class="menu-item menu-item-type-taxonomy menu-item-object-category">
<a href="/series">Series</a>
</li>
<li class="menu-item menu-item-type-taxonomy menu-item-object-category">
<a href="/series/estrenos">Estrenos</a>
</li>
<li class="menu-item menu-item-type-taxonomy menu-item-object-category">
<a href="/series/tendencias/dia">Tendencias dia</a>
</li>
<li class="menu-item menu-item-type-taxonomy menu-item-object-category">
<a href="/series/tendencias/semana">Tendencias semana</a>
</li>
</ul>
</li>
</ul>
</nav>
</div>
</div>
</div>
</header>
<div class="bd">
<div class="TpRwCont cont">
<main>
<section>
<div class="Top">
<h1 style="text-transform: capitalize;">Search El Camino: Una película de Breaking Bad</h1>
</div>
<ul class="MovieList Rows">
<li class="TPostMv">
<div class="TPost C post type-post status-publish format-standard has-post-thumbnail hentry">
<a href="/ver-pelicula/el-camino-una-pelicula-de-breaking-bad">
<div class="Image">
<span class="Year">2019</span>
<figure class="Objf TpMvPlay AAIco-play_arrow">
<img width="160" height="242" src="/static/img/loading.gif" data-src="https://image.tmdb.org/t/p/original/hoWADuvXs3Ua4AXBAiZYnppTupO.jpg" class="lazy attachment-thumbnail size-thumbnail wp-post-image" alt="img">
</figure>
</div>
<h2 class="Title">El Camino: Una película de Breaking Bad</h2>
</a>
<div class="TPMvCn anmt">
<div class="Title">El Camino: Una película de Breaking Bad</div>
<div class="Description non-href">
<p>Después de escapar de Jack y su pandilla, Jesse Pinkman huye de la policía e intenta escapar de su...</p>
<p class="Genre AAIco-movie_creation"><span>Género :</span> Crimen,Drama,Suspenso</p>
<p class="Actors AAIco-person"><span>Reparto :</span> Aaron Paul,Jesse Plemons,Charles Baker,Matt Jones,Scott MacArthur,Larry Hankin,Scott Shepherd,Tom Bo...</p>
</div>
<img width="160" height="242" data-src="https://image.tmdb.org/t/p/original/hoWADuvXs3Ua4AXBAiZYnppTupO.jpg" class="lazy attachment-thumbnail size-thumbnail wp-post-image bg" alt="img">
</div>
</div>
</li> </ul>
</section>
</main>
<aside class="widget-area">
<section class="peli_movies widget_languages Wdgt">
<h3 class="widget-title">Películas Destacadas</h3>
<ul class="aa-nv dfx tac" data-tbs="aa-movies">
<li class="fg1"><a href="#aa-tb-1" class="on">Día</a></li>
<li class="fg1"><a href="#aa-tb-2" class="">Semana</a></li>
</ul>
<div class="aa-cn" id="aa-movies">
<div id="aa-tb-1" class="aa-tb on">
<ul class="MovieList">
<li>
<div class="TPost A">
<a href="/ver-pelicula/el-amateur-operacion-venganza">
<div class="Image">
<img alt="Longlegs: Coleccionista de almas" layout="intrinsic" src="https://image.tmdb.org/t/p/original/9WPWF0AmklsKclrXeyKXbQ543ZA.jpg" width="80" height="120" decoding="async" data-nimg="future" loading="lazy" style="color: transparent;">
</div>
<div class="Title">El amateur: Operación venganza</div>
</a>
<p class="Info Infowdgt">
<span class="Vote AAIco-star">6.8</span>
<span class="Time AAIco-access_time">2h 03m</span>
<span class="Date AAIco-date_range">2025</span>
</p>
</div>
</li><li>
<div class="TPost A">
<a href="/ver-pelicula/como-entrenar-a-tu-dragon-1087192">
<div class="Image">
<img alt="Longlegs: Coleccionista de almas" layout="intrinsic" src="https://image.tmdb.org/t/p/original/fTpbUIwdsfyIldzYvzQi2K4Icws.jpg" width="80" height="120" decoding="async" data-nimg="future" loading="lazy" style="color: transparent;">
</div>
<div class="Title">Cómo entrenar a tu dragón</div>
</a>
<p class="Info Infowdgt">
<span class="Vote AAIco-star">7.82</span>
<span class="Time AAIco-access_time">2h 05m</span>
<span class="Date AAIco-date_range">2025</span>
</p>
</div>
</li><li>
<div class="TPost A">
<a href="/ver-pelicula/pecadores">
<div class="Image">
<img alt="Longlegs: Coleccionista de almas" layout="intrinsic" src="https://image.tmdb.org/t/p/original/zdClwqpYQXBSCGGDMdtvsuggwec.jpg" width="80" height="120" decoding="async" data-nimg="future" loading="lazy" style="color: transparent;">
</div>
<div class="Title">Pecadores</div>
</a>
<p class="Info Infowdgt">
<span class="Vote AAIco-star">7.55</span>
<span class="Time AAIco-access_time">2h 18m</span>
<span class="Date AAIco-date_range">2025</span>
</p>
</div>
</li><li>
<div class="TPost A">
<a href="/ver-pelicula/el-contador-2">
<div class="Image">
<img alt="Longlegs: Coleccionista de almas" layout="intrinsic" src="https://image.tmdb.org/t/p/original/jcV9YfjBRo6occxqeWtEiyWwMoG.jpg" width="80" height="120" decoding="async" data-nimg="future" loading="lazy" style="color: transparent;">
</div>
<div class="Title">El contador 2</div>
</a>
<p class="Info Infowdgt">
<span class="Vote AAIco-star">7.22</span>
<span class="Time AAIco-access_time">2h 13m</span>
<span class="Date AAIco-date_range">2025</span>
</p>
</div>
</li><li>
<div class="TPost A">
<a href="/ver-pelicula/depredador-cazador-de-asesinos">
<div class="Image">
<img alt="Longlegs: Coleccionista de almas" layout="intrinsic" src="https://image.tmdb.org/t/p/original/qHDsrBZJRx6ZCO4tocFh3gnbosU.jpg" width="80" height="120" decoding="async" data-nimg="future" loading="lazy" style="color: transparent;">
</div>
<div class="Title">Depredador: Cazador de asesinos</div>
</a>
<p class="Info Infowdgt">
<span class="Vote AAIco-star">7.99</span>
<span class="Time AAIco-access_time">1h 25m</span>
<span class="Date AAIco-date_range">2025</span>
</p>
</div>
</li> </ul>
</div>
<div id="aa-tb-2" class="aa-tb ">
<ul class="MovieList">
<li>
<div class="TPost A">
<a href="/ver-pelicula/el-amateur-operacion-venganza">
<div class="Image">
<img alt="Longlegs: Coleccionista de almas" layout="intrinsic" src="https://image.tmdb.org/t/p/original/9WPWF0AmklsKclrXeyKXbQ543ZA.jpg" width="80" height="120" decoding="async" data-nimg="future" loading="lazy" style="color: transparent;">
</div>
<div class="Title">El amateur: Operación venganza</div>
</a>
<p class="Info Infowdgt">
<span class="Vote AAIco-star">6.8</span>
<span class="Time AAIco-access_time">2h 03m</span>
<span class="Date AAIco-date_range">2025</span>
</p>
</div>
</li><li>
<div class="TPost A">
<a href="/ver-pelicula/como-entrenar-a-tu-dragon-1087192">
<div class="Image">
<img alt="Longlegs: Coleccionista de almas" layout="intrinsic" src="https://image.tmdb.org/t/p/original/fTpbUIwdsfyIldzYvzQi2K4Icws.jpg" width="80" height="120" decoding="async" data-nimg="future" loading="lazy" style="color: transparent;">
</div>
<div class="Title">Cómo entrenar a tu dragón</div>
</a>
<p class="Info Infowdgt">
<span class="Vote AAIco-star">7.82</span>
<span class="Time AAIco-access_time">2h 05m</span>
<span class="Date AAIco-date_range">2025</span>
</p>
</div>
</li><li>
<div class="TPost A">
<a href="/ver-pelicula/el-contador-2">
<div class="Image">
<img alt="Longlegs: Coleccionista de almas" layout="intrinsic" src="https://image.tmdb.org/t/p/original/jcV9YfjBRo6occxqeWtEiyWwMoG.jpg" width="80" height="120" decoding="async" data-nimg="future" loading="lazy" style="color: transparent;">
</div>
<div class="Title">El contador 2</div>
</a>
<p class="Info Infowdgt">
<span class="Vote AAIco-star">7.22</span>
<span class="Time AAIco-access_time">2h 13m</span>
<span class="Date AAIco-date_range">2025</span>
</p>
</div>
</li><li>
<div class="TPost A">
<a href="/ver-pelicula/depredador-cazador-de-asesinos">
<div class="Image">
<img alt="Longlegs: Coleccionista de almas" layout="intrinsic" src="https://image.tmdb.org/t/p/original/qHDsrBZJRx6ZCO4tocFh3gnbosU.jpg" width="80" height="120" decoding="async" data-nimg="future" loading="lazy" style="color: transparent;">
</div>
<div class="Title">Depredador: Cazador de asesinos</div>
</a>
<p class="Info Infowdgt">
<span class="Vote AAIco-star">7.99</span>
<span class="Time AAIco-access_time">1h 25m</span>
<span class="Date AAIco-date_range">2025</span>
</p>
</div>
</li><li>
<div class="TPost A">
<a href="/ver-pelicula/pecadores">
<div class="Image">
<img alt="Longlegs: Coleccionista de almas" layout="intrinsic" src="https://image.tmdb.org/t/p/original/zdClwqpYQXBSCGGDMdtvsuggwec.jpg" width="80" height="120" decoding="async" data-nimg="future" loading="lazy" style="color: transparent;">
</div>
<div class="Title">Pecadores</div>
</a>
<p class="Info Infowdgt">
<span class="Vote AAIco-star">7.55</span>
<span class="Time AAIco-access_time">2h 18m</span>
<span class="Date AAIco-date_range">2025</span>
</p>
</div>
</li> </ul>
</div>
</div>
</section>
</aside>
</div>
<!--aside-->
</div>
<footer class="ft ok">
<div class="cont dfxb alg-cr">
<figure class="logo-ft"><img src="/static/img/cuevana-logo.png" alt="cuevana"></figure>
</div>
<p class="copy tac">© 2025 Cuevana 3 Peliculas Online, Todos los derechos reservados.</p>
</footer>
</div>
<script type="text/javascript" src="/static/cdn/owl.js"></script>
<script type="text/javascript" src="/static/cdn/loadMoreResults.js"></script>
<script type="text/javascript" src="/static/cdn/bct-public.js?v=1.8"></script>
<div style="display:none"><!-- Histats.com (div with counter) --><div id="histats_counter"></div>
<!-- Histats.com START (aync)-->
<script type="text/javascript">var _Hasync= _Hasync|| [];
_Hasync.push(['Histats.start', '1,4682163,4,511,95,18,00000000']);
_Hasync.push(['Histats.fasi', '1']);
_Hasync.push(['Histats.track_hits', '']);
(function() {
var hs = document.createElement('script'); hs.type = 'text/javascript'; hs.async = true;
hs.src = ('//s10.histats.com/js15_as.js');
(document.getElementsByTagName('head')[0] || document.getElementsByTagName('body')[0]).appendChild(hs);
})();</script>
<noscript><a href="/" target="_blank"><img src="//sstatic1.histats.com/0.gif?4682163&101" alt="free tracking" border="0"></a></noscript>
<!-- Histats.com END --></div>
<script type="text/javascript" src="https://platform-api.sharethis.com/js/sharethis.js#property=65af1f192bb34700194aa378&product=sticky-share-buttons&source=platform" async="async"></script>
<script type='text/javascript' src='//jeopardizegrowled.com/dd/96/e5/dd96e5c6537e6beb13142995569b4fc1.js'></script>
<script type='text/javascript' src='//jeopardizegrowled.com/df/8b/64/df8b644060747a92d7efb671469b1ad3.js'></script></body>
</html>

View file

@ -0,0 +1,462 @@
<!doctype html>
<html lang="es">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
<title>Resultados de búsqueda</title>
<meta name="robots" content="index,follow"/>
<link rel="shortcut icon" href="/static/img/cropped-favicon-1-32x32.png">
<meta name="google-site-verification" content=""/>
<meta name="description" content="Ver y descargar Películas y Series en Latino, Español, Subtitulado e ingles, los últimos estrenos en la mejor calidad HD sin cortes. Cuevana Online.">
<meta name="keywords" content="película géminis completa del 2025 en español latino,castellano y subtitulada. descargar gratis géminis. gemini man.,acción,ciencia ficción,drama,película el camino: una película de breaking bad completa del 2025 en español latino,castellano y subtitulada. descargar gratis el camino: una película de breaking bad. el camino: a breaking bad movie.,película el rey león completa del 2025 en español latino,castellano y subtitulada. descargar gratis el rey león. the lion king.,the-lion-king,aventura,película stuber completa del 2025 en español latino,castellano y subtitulada. descargar gratis stuber. stuber.,comedia,crimen,película el paletero completa del 2016 en español latino,castellano y subtitulada. descargar gratis el paletero. el paletero.,western,película steven universe: the movie completa del 2025 en español latino,castellano y subtitulada. descargar gratis steven universe: the movie. steven universe: the movie.,animación,película galveston completa del 2018 en español latino,castellano y subtitulada. descargar gratis galveston. galveston.,película men in black: internacional completa del 2025 en español latino,castellano y subtitulada. descargar gratis men in black: internacional. men in black: international.,película rambo: last blood completa del 2025 en español latino,castellano y subtitulada. descargar gratis rambo: last blood. rambo: last blood.,thriller,película general commander completa del 2025 en español latino,castellano y subtitulada. descargar gratis general commander. general commander.,película golden job completa del 2018 en español latino,castellano y subtitulada. descargar gratis golden job. golden job.,película the death and return of superman completa del 2025 en español latino,castellano y subtitulada. descargar gratis the death and return of superman. the death and return of superman.,película teen titans go! vs. teen titans completa del 2025 en español latino,castellano y subtitulada. descargar gratis teen titans go! vs. teen titans. teen titans go! vs. teen titans.,película the messenger completa del 2025 en español latino,castellano y subtitulada. descargar gratis the messenger. kurier.,historia,película infierno bajo el agua completa del 2025 en español latino,castellano y subtitulada. descargar gratis infierno bajo el agua. crawl.,terror,película doom: aniquilación completa del 2025 en español latino,castellano y subtitulada. descargar gratis doom: aniquilación. doom: annihilation.,película fast &amp;amp; furious: hobbs &amp;amp; shaw completa del 2025 en español latino,castellano y subtitulada. descargar gratis fast &amp;amp; furious: hobbs &amp;amp; shaw. fast &amp;amp; furious: hobbs &amp;amp; shaw.,fast-furious,película cómo entrenar a tu dragón 3 completa del 2025 en español latino,castellano y subtitulada. descargar gratis cómo entrenar a tu dragón 3. how to train your dragon: the hidden world.,entrenar-dragon,película john wick 3: parabellum completa del 2025 en español latino,castellano y subtitulada. descargar gratis john wick 3: parabellum. john wick: chapter 3 - parabellum.,john-wick,película shadow completa del 2018 en español latino,castellano y subtitulada. descargar gratis shadow. ying.,película shifting gears completa del 2018 en español latino,castellano y subtitulada. descargar gratis shifting gears. shifting gears.,familia,película the tracker completa del 2025 en español latino,castellano y subtitulada. descargar gratis the tracker. the tracker.,película night hunter completa del 2018 en español latino,castellano y subtitulada. descargar gratis night hunter. nomis.,película inside man: most wanted completa del 2025 en español latino,castellano y subtitulada. descargar gratis inside man: most wanted. inside man: most wanted.,película dragged across concrete completa del 2018 en español latino,castellano y subtitulada. descargar gratis dragged across concrete. dragged across concrete.,película anna completa del 2025 en español latino,castellano y subtitulada. descargar gratis anna. anna.,película spider-man: lejos de casa completa del 2025 en español latino,castellano y subtitulada. descargar gratis spider-man: lejos de casa. spider-man: far from home.,marvel,spider-man,película objetivo: washington d.c. completa del 2025 en español latino,castellano y subtitulada. descargar gratis objetivo: washington d.c.. angel has fallen.,película godzilla: rey de los monstruos completa del 2025 en español latino,castellano y subtitulada. descargar gratis godzilla: rey de los monstruos. godzilla: king of the monsters.,fantasía,película hellboy completa del 2025 en español latino,castellano y subtitulada. descargar gratis hellboy. hellboy.">
<link rel="stylesheet" type="text/css" href="/static/css/app.css?v=1.91"/>
<link rel="stylesheet" type="text/css" href="/static/css/style.css?v=1.8"/>
<link rel="stylesheet" type="text/css" href="/static/css/footer.css?v=1.8"/>
<script type="text/javascript" src="/static/cdn/jquery.js"></script>
</head>
<body data-rsssl=1 class="slider">
<script>
var base_url = '//' + document.domain + '/';
var base_url_cdn_api = '//' + document.domain + '/';
</script>
<div id="aa-wp">
<header class="Header">
<script>
function onSearch() {
const q = document.getElementById('keysss').value
if (q.length > 1) {
location.href = `/search/${q}`
}
return false
}
</script>
<div class="cont">
<div class="top dfx alg-cr jst-sb">
<figure class="logo">
<a href="/"><img src="/static/img/cuevana3.png" alt="logo"></a>
</figure>
<span class="MenuBtn aa-tgl" data-tgl="aa-wp"><i></i><i></i><i></i></span>
<span class="MenuBtnClose aa-tgl" data-tgl="aa-wp"></span>
<div class="Rght BgA dfxc alg-cr fg1">
<div class="Search">
<form method="get" id="searchform" onsubmit="return onSearch()">
<span class="Form-Icon">
<div class="ep-autosuggest-container">
<input id="keysss" name="keyword" type="search" placeholder="Buscador..." autocomplete="off">
<div class="ep-autosuggest" style="display: none;"></div>
<div class="loader"></div>
</div>
<button id="searchsubmit" type="submit"><i class="fa-search"></i></button>
</span>
</form>
</div>
<nav class="Menu fg1">
<ul>
<li
class="AAIco-home menu-item menu-item-type-custom menu-item-object-custom menu-item-home ">
<a href="/" aria-current="page">Inicio</a></li>
<li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children">
<a href="/peliculas">Películas</a>
<ul class="sub-menu">
<li class="menu-item menu-item-type-taxonomy menu-item-object-category">
<a href="/peliculas">Últimas publicadas</a>
</li>
<li class="menu-item menu-item-type-taxonomy menu-item-object-category">
<a href="/peliculas/estrenos">Estrenos</a>
</li>
<li class="menu-item menu-item-type-taxonomy menu-item-object-category">
<a href="/peliculas/tendencias/semana">Tendencias semana</a>
</li>
<li class="menu-item menu-item-type-taxonomy menu-item-object-category">
<a href="/peliculas/tendencias/dia">Tendencias día</a>
</li>
</ul>
</li>
<li id="menu-item-1953"
class="AAIco-movie_creation menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-1953">
<a href="#">Géneros</a>
<ul class="sub-menu">
<li
class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-1969">
<a href="/category/accion">Acción</a>
</li>
<li
class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-1969">
<a href="/category/animacion">Animación</a>
</li>
<li
class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-1969">
<a href="/category/aventura">Aventura</a>
</li>
<li
class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-1969">
<a href="/category/biografico">Biografico</a>
</li>
<li
class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-1969">
<a href="/category/ciencia-ficcion">Ciencia Ficción</a>
</li>
<li
class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-1969">
<a href="/category/comedia">Comedia</a>
</li>
<li
class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-1969">
<a href="/category/crimen">Crimen</a>
</li>
<li
class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-1969">
<a href="/category/documental">Documental</a>
</li>
<li
class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-1969">
<a href="/category/drama">Drama</a>
</li>
<li
class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-1969">
<a href="/category/familiar">Familiar</a>
</li>
<li
class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-1969">
<a href="/category/fantasia">Fantasía</a>
</li>
<li
class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-1969">
<a href="/category/misterio">Misterio</a>
</li>
<li
class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-1969">
<a href="/category/musica">Música</a>
</li>
<li
class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-1969">
<a href="/category/romance">Romance</a>
</li>
<li
class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-1969">
<a href="/category/terror">Terror</a>
</li>
<li
class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-1969">
<a href="/category/thriller">Thriller</a>
</li>
</ul>
</li>
<li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children">
<a href="/series">Series</a>
<ul class="sub-menu">
<li class="menu-item menu-item-type-taxonomy menu-item-object-category">
<a href="/series">Series</a>
</li>
<li class="menu-item menu-item-type-taxonomy menu-item-object-category">
<a href="/series/estrenos">Estrenos</a>
</li>
<li class="menu-item menu-item-type-taxonomy menu-item-object-category">
<a href="/series/tendencias/dia">Tendencias dia</a>
</li>
<li class="menu-item menu-item-type-taxonomy menu-item-object-category">
<a href="/series/tendencias/semana">Tendencias semana</a>
</li>
</ul>
</li>
</ul>
</nav>
</div>
</div>
</div>
</header>
<div class="bd">
<div class="TpRwCont cont">
<main>
<section>
<div class="Top">
<h1 style="text-transform: capitalize;">Search La frontera</h1>
</div>
<ul class="MovieList Rows">
<li class="TPostMv">
<div class="TPost C post type-post status-publish format-standard has-post-thumbnail hentry">
<a href="/ver-serie/la-frontera">
<div class="Image">
<span class="Year">2025</span>
<figure class="Objf TpMvPlay AAIco-play_arrow">
<img width="160" height="242" src="/static/img/loading.gif" data-src="https://image.tmdb.org/t/p/original/6SKzMXhp5q4yzk3f02QuNTQfv3M.jpg" class="lazy attachment-thumbnail size-thumbnail wp-post-image" alt="img">
</figure>
<span class="TpTv BgA">Serie</span> </div>
<h2 class="Title">La frontera</h2>
</a>
<div class="TPMvCn anmt">
<div class="Title">La frontera</div>
<div class="Description non-href">
<p>Se centra en la colaboración de los comandos de ETA entre España y Francia, un periodo marcado por...</p>
<p class="Genre AAIco-movie_creation"><span>Género :</span> Drama,Acción,Aventura</p>
<p class="Actors AAIco-person"><span>Reparto :</span> Javier Rey,Iria del Río,Vincent Perez</p>
</div>
<img width="160" height="242" data-src="https://image.tmdb.org/t/p/original/6SKzMXhp5q4yzk3f02QuNTQfv3M.jpg" class="lazy attachment-thumbnail size-thumbnail wp-post-image bg" alt="img">
</div>
</div>
</li><li class="TPostMv">
<div class="TPost C post type-post status-publish format-standard has-post-thumbnail hentry">
<a href="/ver-serie/la-frontera-oriental">
<div class="Image">
<span class="Year">2025</span>
<figure class="Objf TpMvPlay AAIco-play_arrow">
<img width="160" height="242" src="/static/img/loading.gif" data-src="https://image.tmdb.org/t/p/original/uL5onQXgVas65Ts8Fok2uXCR8Cp.jpg" class="lazy attachment-thumbnail size-thumbnail wp-post-image" alt="img">
</figure>
<span class="TpTv BgA">Serie</span> </div>
<h2 class="Title">La Frontera Oriental</h2>
</a>
<div class="TPMvCn anmt">
<div class="Title">La Frontera Oriental</div>
<div class="Description non-href">
<p>En un punto estratégicamente crítico de Europa, una devastada espía polaca busca alejarse del mun...</p>
<p class="Genre AAIco-movie_creation"><span>Género :</span> Guerra,Acción,Aventura,Misterio</p>
<p class="Actors AAIco-person"><span>Reparto :</span> Lena Góra,Andrzej Konopka,Bartłomiej Topa,Ewelina Starejki,Alona Szostak,Karol Pocheć,Oleh Kyryli...</p>
</div>
<img width="160" height="242" data-src="https://image.tmdb.org/t/p/original/uL5onQXgVas65Ts8Fok2uXCR8Cp.jpg" class="lazy attachment-thumbnail size-thumbnail wp-post-image bg" alt="img">
</div>
</div>
</li><li class="TPostMv">
<div class="TPost C post type-post status-publish format-standard has-post-thumbnail hentry">
<a href="/ver-pelicula/las-leyes-de-la-frontera">
<div class="Image">
<span class="Year">2021</span>
<figure class="Objf TpMvPlay AAIco-play_arrow">
<img width="160" height="242" src="/static/img/loading.gif" data-src="https://image.tmdb.org/t/p/original/6YsFsmNcjW8eNicqKN2QNT5c0rK.jpg" class="lazy attachment-thumbnail size-thumbnail wp-post-image" alt="img">
</figure>
</div>
<h2 class="Title">Las leyes de la frontera</h2>
</a>
<div class="TPMvCn anmt">
<div class="Title">Las leyes de la frontera</div>
<div class="Description non-href">
<p>Verano de 1978. Ignacio Cañas es un estudiante de 17 años introvertido y algo inadaptado que vive ...</p>
<p class="Genre AAIco-movie_creation"><span>Género :</span> Crimen</p>
<p class="Actors AAIco-person"><span>Reparto :</span> Marcos Ruiz,Begoña Vargas,Chechu Salgado,Pep Tosar,Xavier Martín,Daniel Ibáñez,Guillermo Lashera...</p>
</div>
<img width="160" height="242" data-src="https://image.tmdb.org/t/p/original/6YsFsmNcjW8eNicqKN2QNT5c0rK.jpg" class="lazy attachment-thumbnail size-thumbnail wp-post-image bg" alt="img">
</div>
</div>
</li><li class="TPostMv">
<div class="TPost C post type-post status-publish format-standard has-post-thumbnail hentry">
<a href="/ver-pelicula/infierno-en-la-frontera">
<div class="Image">
<span class="Year">2019</span>
<figure class="Objf TpMvPlay AAIco-play_arrow">
<img width="160" height="242" src="/static/img/loading.gif" data-src="https://image.tmdb.org/t/p/original/jlQURJswWQyJhjDeLCQQIOAgRkF.jpg" class="lazy attachment-thumbnail size-thumbnail wp-post-image" alt="img">
</figure>
</div>
<h2 class="Title">Infierno en la Frontera</h2>
</a>
<div class="TPMvCn anmt">
<div class="Title">Infierno en la Frontera</div>
<div class="Description non-href">
<p>Bass Reeves fue el primer marshal negro de los Estados Unidos al oeste del río Mississippi. Trabaj<61>...</p>
<p class="Genre AAIco-movie_creation"><span>Género :</span> Western,Aventura</p>
<p class="Actors AAIco-person"><span>Reparto :</span> Ron Perlman,Frank Grillo,David Gyasi,Randy Wayne,Manu Intiraymi,Gianni Capaldi,Jaqueline Fleming,Ale...</p>
</div>
<img width="160" height="242" data-src="https://image.tmdb.org/t/p/original/jlQURJswWQyJhjDeLCQQIOAgRkF.jpg" class="lazy attachment-thumbnail size-thumbnail wp-post-image bg" alt="img">
</div>
</div>
</li> </ul>
</section>
</main>
<aside class="widget-area">
<section class="peli_movies widget_languages Wdgt">
<h3 class="widget-title">Películas Destacadas</h3>
<ul class="aa-nv dfx tac" data-tbs="aa-movies">
<li class="fg1"><a href="#aa-tb-1" class="on">Día</a></li>
<li class="fg1"><a href="#aa-tb-2" class="">Semana</a></li>
</ul>
<div class="aa-cn" id="aa-movies">
<div id="aa-tb-1" class="aa-tb on">
<ul class="MovieList">
<li>
<div class="TPost A">
<a href="/ver-pelicula/el-amateur-operacion-venganza">
<div class="Image">
<img alt="Longlegs: Coleccionista de almas" layout="intrinsic" src="https://image.tmdb.org/t/p/original/9WPWF0AmklsKclrXeyKXbQ543ZA.jpg" width="80" height="120" decoding="async" data-nimg="future" loading="lazy" style="color: transparent;">
</div>
<div class="Title">El amateur: Operación venganza</div>
</a>
<p class="Info Infowdgt">
<span class="Vote AAIco-star">6.8</span>
<span class="Time AAIco-access_time">2h 03m</span>
<span class="Date AAIco-date_range">2025</span>
</p>
</div>
</li><li>
<div class="TPost A">
<a href="/ver-pelicula/como-entrenar-a-tu-dragon-1087192">
<div class="Image">
<img alt="Longlegs: Coleccionista de almas" layout="intrinsic" src="https://image.tmdb.org/t/p/original/fTpbUIwdsfyIldzYvzQi2K4Icws.jpg" width="80" height="120" decoding="async" data-nimg="future" loading="lazy" style="color: transparent;">
</div>
<div class="Title">Cómo entrenar a tu dragón</div>
</a>
<p class="Info Infowdgt">
<span class="Vote AAIco-star">7.82</span>
<span class="Time AAIco-access_time">2h 05m</span>
<span class="Date AAIco-date_range">2025</span>
</p>
</div>
</li><li>
<div class="TPost A">
<a href="/ver-pelicula/pecadores">
<div class="Image">
<img alt="Longlegs: Coleccionista de almas" layout="intrinsic" src="https://image.tmdb.org/t/p/original/zdClwqpYQXBSCGGDMdtvsuggwec.jpg" width="80" height="120" decoding="async" data-nimg="future" loading="lazy" style="color: transparent;">
</div>
<div class="Title">Pecadores</div>
</a>
<p class="Info Infowdgt">
<span class="Vote AAIco-star">7.55</span>
<span class="Time AAIco-access_time">2h 18m</span>
<span class="Date AAIco-date_range">2025</span>
</p>
</div>
</li><li>
<div class="TPost A">
<a href="/ver-pelicula/el-contador-2">
<div class="Image">
<img alt="Longlegs: Coleccionista de almas" layout="intrinsic" src="https://image.tmdb.org/t/p/original/jcV9YfjBRo6occxqeWtEiyWwMoG.jpg" width="80" height="120" decoding="async" data-nimg="future" loading="lazy" style="color: transparent;">
</div>
<div class="Title">El contador 2</div>
</a>
<p class="Info Infowdgt">
<span class="Vote AAIco-star">7.22</span>
<span class="Time AAIco-access_time">2h 13m</span>
<span class="Date AAIco-date_range">2025</span>
</p>
</div>
</li><li>
<div class="TPost A">
<a href="/ver-pelicula/depredador-cazador-de-asesinos">
<div class="Image">
<img alt="Longlegs: Coleccionista de almas" layout="intrinsic" src="https://image.tmdb.org/t/p/original/qHDsrBZJRx6ZCO4tocFh3gnbosU.jpg" width="80" height="120" decoding="async" data-nimg="future" loading="lazy" style="color: transparent;">
</div>
<div class="Title">Depredador: Cazador de asesinos</div>
</a>
<p class="Info Infowdgt">
<span class="Vote AAIco-star">7.99</span>
<span class="Time AAIco-access_time">1h 25m</span>
<span class="Date AAIco-date_range">2025</span>
</p>
</div>
</li> </ul>
</div>
<div id="aa-tb-2" class="aa-tb ">
<ul class="MovieList">
<li>
<div class="TPost A">
<a href="/ver-pelicula/el-amateur-operacion-venganza">
<div class="Image">
<img alt="Longlegs: Coleccionista de almas" layout="intrinsic" src="https://image.tmdb.org/t/p/original/9WPWF0AmklsKclrXeyKXbQ543ZA.jpg" width="80" height="120" decoding="async" data-nimg="future" loading="lazy" style="color: transparent;">
</div>
<div class="Title">El amateur: Operación venganza</div>
</a>
<p class="Info Infowdgt">
<span class="Vote AAIco-star">6.8</span>
<span class="Time AAIco-access_time">2h 03m</span>
<span class="Date AAIco-date_range">2025</span>
</p>
</div>
</li><li>
<div class="TPost A">
<a href="/ver-pelicula/como-entrenar-a-tu-dragon-1087192">
<div class="Image">
<img alt="Longlegs: Coleccionista de almas" layout="intrinsic" src="https://image.tmdb.org/t/p/original/fTpbUIwdsfyIldzYvzQi2K4Icws.jpg" width="80" height="120" decoding="async" data-nimg="future" loading="lazy" style="color: transparent;">
</div>
<div class="Title">Cómo entrenar a tu dragón</div>
</a>
<p class="Info Infowdgt">
<span class="Vote AAIco-star">7.82</span>
<span class="Time AAIco-access_time">2h 05m</span>
<span class="Date AAIco-date_range">2025</span>
</p>
</div>
</li><li>
<div class="TPost A">
<a href="/ver-pelicula/el-contador-2">
<div class="Image">
<img alt="Longlegs: Coleccionista de almas" layout="intrinsic" src="https://image.tmdb.org/t/p/original/jcV9YfjBRo6occxqeWtEiyWwMoG.jpg" width="80" height="120" decoding="async" data-nimg="future" loading="lazy" style="color: transparent;">
</div>
<div class="Title">El contador 2</div>
</a>
<p class="Info Infowdgt">
<span class="Vote AAIco-star">7.22</span>
<span class="Time AAIco-access_time">2h 13m</span>
<span class="Date AAIco-date_range">2025</span>
</p>
</div>
</li><li>
<div class="TPost A">
<a href="/ver-pelicula/depredador-cazador-de-asesinos">
<div class="Image">
<img alt="Longlegs: Coleccionista de almas" layout="intrinsic" src="https://image.tmdb.org/t/p/original/qHDsrBZJRx6ZCO4tocFh3gnbosU.jpg" width="80" height="120" decoding="async" data-nimg="future" loading="lazy" style="color: transparent;">
</div>
<div class="Title">Depredador: Cazador de asesinos</div>
</a>
<p class="Info Infowdgt">
<span class="Vote AAIco-star">7.99</span>
<span class="Time AAIco-access_time">1h 25m</span>
<span class="Date AAIco-date_range">2025</span>
</p>
</div>
</li><li>
<div class="TPost A">
<a href="/ver-pelicula/pecadores">
<div class="Image">
<img alt="Longlegs: Coleccionista de almas" layout="intrinsic" src="https://image.tmdb.org/t/p/original/zdClwqpYQXBSCGGDMdtvsuggwec.jpg" width="80" height="120" decoding="async" data-nimg="future" loading="lazy" style="color: transparent;">
</div>
<div class="Title">Pecadores</div>
</a>
<p class="Info Infowdgt">
<span class="Vote AAIco-star">7.55</span>
<span class="Time AAIco-access_time">2h 18m</span>
<span class="Date AAIco-date_range">2025</span>
</p>
</div>
</li> </ul>
</div>
</div>
</section>
</aside>
</div>
<!--aside-->
</div>
<footer class="ft ok">
<div class="cont dfxb alg-cr">
<figure class="logo-ft"><img src="/static/img/cuevana-logo.png" alt="cuevana"></figure>
</div>
<p class="copy tac">© 2025 Cuevana 3 Peliculas Online, Todos los derechos reservados.</p>
</footer>
</div>
<script type="text/javascript" src="/static/cdn/owl.js"></script>
<script type="text/javascript" src="/static/cdn/loadMoreResults.js"></script>
<script type="text/javascript" src="/static/cdn/bct-public.js?v=1.8"></script>
<div style="display:none"><!-- Histats.com (div with counter) --><div id="histats_counter"></div>
<!-- Histats.com START (aync)-->
<script type="text/javascript">var _Hasync= _Hasync|| [];
_Hasync.push(['Histats.start', '1,4682163,4,511,95,18,00000000']);
_Hasync.push(['Histats.fasi', '1']);
_Hasync.push(['Histats.track_hits', '']);
(function() {
var hs = document.createElement('script'); hs.type = 'text/javascript'; hs.async = true;
hs.src = ('//s10.histats.com/js15_as.js');
(document.getElementsByTagName('head')[0] || document.getElementsByTagName('body')[0]).appendChild(hs);
})();</script>
<noscript><a href="/" target="_blank"><img src="//sstatic1.histats.com/0.gif?4682163&101" alt="free tracking" border="0"></a></noscript>
<!-- Histats.com END --></div>
<script type="text/javascript" src="https://platform-api.sharethis.com/js/sharethis.js#property=65af1f192bb34700194aa378&product=sticky-share-buttons&source=platform" async="async"></script>
<script type='text/javascript' src='//jeopardizegrowled.com/dd/96/e5/dd96e5c6537e6beb13142995569b4fc1.js'></script>
<script type='text/javascript' src='//jeopardizegrowled.com/df/8b/64/df8b644060747a92d7efb671469b1ad3.js'></script></body>
</html>

View file

@ -0,0 +1,546 @@
<!doctype html>
<html lang="es">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
<title>Resultados de búsqueda</title>
<meta name="robots" content="index,follow"/>
<link rel="shortcut icon" href="/static/img/cropped-favicon-1-32x32.png">
<meta name="google-site-verification" content=""/>
<meta name="description" content="Ver y descargar Películas y Series en Latino, Español, Subtitulado e ingles, los últimos estrenos en la mejor calidad HD sin cortes. Cuevana Online.">
<meta name="keywords" content="película géminis completa del 2025 en español latino,castellano y subtitulada. descargar gratis géminis. gemini man.,acción,ciencia ficción,drama,película el camino: una película de breaking bad completa del 2025 en español latino,castellano y subtitulada. descargar gratis el camino: una película de breaking bad. el camino: a breaking bad movie.,película el rey león completa del 2025 en español latino,castellano y subtitulada. descargar gratis el rey león. the lion king.,the-lion-king,aventura,película stuber completa del 2025 en español latino,castellano y subtitulada. descargar gratis stuber. stuber.,comedia,crimen,película el paletero completa del 2016 en español latino,castellano y subtitulada. descargar gratis el paletero. el paletero.,western,película steven universe: the movie completa del 2025 en español latino,castellano y subtitulada. descargar gratis steven universe: the movie. steven universe: the movie.,animación,película galveston completa del 2018 en español latino,castellano y subtitulada. descargar gratis galveston. galveston.,película men in black: internacional completa del 2025 en español latino,castellano y subtitulada. descargar gratis men in black: internacional. men in black: international.,película rambo: last blood completa del 2025 en español latino,castellano y subtitulada. descargar gratis rambo: last blood. rambo: last blood.,thriller,película general commander completa del 2025 en español latino,castellano y subtitulada. descargar gratis general commander. general commander.,película golden job completa del 2018 en español latino,castellano y subtitulada. descargar gratis golden job. golden job.,película the death and return of superman completa del 2025 en español latino,castellano y subtitulada. descargar gratis the death and return of superman. the death and return of superman.,película teen titans go! vs. teen titans completa del 2025 en español latino,castellano y subtitulada. descargar gratis teen titans go! vs. teen titans. teen titans go! vs. teen titans.,película the messenger completa del 2025 en español latino,castellano y subtitulada. descargar gratis the messenger. kurier.,historia,película infierno bajo el agua completa del 2025 en español latino,castellano y subtitulada. descargar gratis infierno bajo el agua. crawl.,terror,película doom: aniquilación completa del 2025 en español latino,castellano y subtitulada. descargar gratis doom: aniquilación. doom: annihilation.,película fast &amp;amp; furious: hobbs &amp;amp; shaw completa del 2025 en español latino,castellano y subtitulada. descargar gratis fast &amp;amp; furious: hobbs &amp;amp; shaw. fast &amp;amp; furious: hobbs &amp;amp; shaw.,fast-furious,película cómo entrenar a tu dragón 3 completa del 2025 en español latino,castellano y subtitulada. descargar gratis cómo entrenar a tu dragón 3. how to train your dragon: the hidden world.,entrenar-dragon,película john wick 3: parabellum completa del 2025 en español latino,castellano y subtitulada. descargar gratis john wick 3: parabellum. john wick: chapter 3 - parabellum.,john-wick,película shadow completa del 2018 en español latino,castellano y subtitulada. descargar gratis shadow. ying.,película shifting gears completa del 2018 en español latino,castellano y subtitulada. descargar gratis shifting gears. shifting gears.,familia,película the tracker completa del 2025 en español latino,castellano y subtitulada. descargar gratis the tracker. the tracker.,película night hunter completa del 2018 en español latino,castellano y subtitulada. descargar gratis night hunter. nomis.,película inside man: most wanted completa del 2025 en español latino,castellano y subtitulada. descargar gratis inside man: most wanted. inside man: most wanted.,película dragged across concrete completa del 2018 en español latino,castellano y subtitulada. descargar gratis dragged across concrete. dragged across concrete.,película anna completa del 2025 en español latino,castellano y subtitulada. descargar gratis anna. anna.,película spider-man: lejos de casa completa del 2025 en español latino,castellano y subtitulada. descargar gratis spider-man: lejos de casa. spider-man: far from home.,marvel,spider-man,película objetivo: washington d.c. completa del 2025 en español latino,castellano y subtitulada. descargar gratis objetivo: washington d.c.. angel has fallen.,película godzilla: rey de los monstruos completa del 2025 en español latino,castellano y subtitulada. descargar gratis godzilla: rey de los monstruos. godzilla: king of the monsters.,fantasía,película hellboy completa del 2025 en español latino,castellano y subtitulada. descargar gratis hellboy. hellboy.">
<link rel="stylesheet" type="text/css" href="/static/css/app.css?v=1.91"/>
<link rel="stylesheet" type="text/css" href="/static/css/style.css?v=1.8"/>
<link rel="stylesheet" type="text/css" href="/static/css/footer.css?v=1.8"/>
<script type="text/javascript" src="/static/cdn/jquery.js"></script>
</head>
<body data-rsssl=1 class="slider">
<script>
var base_url = '//' + document.domain + '/';
var base_url_cdn_api = '//' + document.domain + '/';
</script>
<div id="aa-wp">
<header class="Header">
<script>
function onSearch() {
const q = document.getElementById('keysss').value
if (q.length > 1) {
location.href = `/search/${q}`
}
return false
}
</script>
<div class="cont">
<div class="top dfx alg-cr jst-sb">
<figure class="logo">
<a href="/"><img src="/static/img/cuevana3.png" alt="logo"></a>
</figure>
<span class="MenuBtn aa-tgl" data-tgl="aa-wp"><i></i><i></i><i></i></span>
<span class="MenuBtnClose aa-tgl" data-tgl="aa-wp"></span>
<div class="Rght BgA dfxc alg-cr fg1">
<div class="Search">
<form method="get" id="searchform" onsubmit="return onSearch()">
<span class="Form-Icon">
<div class="ep-autosuggest-container">
<input id="keysss" name="keyword" type="search" placeholder="Buscador..." autocomplete="off">
<div class="ep-autosuggest" style="display: none;"></div>
<div class="loader"></div>
</div>
<button id="searchsubmit" type="submit"><i class="fa-search"></i></button>
</span>
</form>
</div>
<nav class="Menu fg1">
<ul>
<li
class="AAIco-home menu-item menu-item-type-custom menu-item-object-custom menu-item-home ">
<a href="/" aria-current="page">Inicio</a></li>
<li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children">
<a href="/peliculas">Películas</a>
<ul class="sub-menu">
<li class="menu-item menu-item-type-taxonomy menu-item-object-category">
<a href="/peliculas">Últimas publicadas</a>
</li>
<li class="menu-item menu-item-type-taxonomy menu-item-object-category">
<a href="/peliculas/estrenos">Estrenos</a>
</li>
<li class="menu-item menu-item-type-taxonomy menu-item-object-category">
<a href="/peliculas/tendencias/semana">Tendencias semana</a>
</li>
<li class="menu-item menu-item-type-taxonomy menu-item-object-category">
<a href="/peliculas/tendencias/dia">Tendencias día</a>
</li>
</ul>
</li>
<li id="menu-item-1953"
class="AAIco-movie_creation menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-1953">
<a href="#">Géneros</a>
<ul class="sub-menu">
<li
class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-1969">
<a href="/category/accion">Acción</a>
</li>
<li
class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-1969">
<a href="/category/animacion">Animación</a>
</li>
<li
class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-1969">
<a href="/category/aventura">Aventura</a>
</li>
<li
class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-1969">
<a href="/category/biografico">Biografico</a>
</li>
<li
class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-1969">
<a href="/category/ciencia-ficcion">Ciencia Ficción</a>
</li>
<li
class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-1969">
<a href="/category/comedia">Comedia</a>
</li>
<li
class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-1969">
<a href="/category/crimen">Crimen</a>
</li>
<li
class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-1969">
<a href="/category/documental">Documental</a>
</li>
<li
class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-1969">
<a href="/category/drama">Drama</a>
</li>
<li
class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-1969">
<a href="/category/familiar">Familiar</a>
</li>
<li
class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-1969">
<a href="/category/fantasia">Fantasía</a>
</li>
<li
class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-1969">
<a href="/category/misterio">Misterio</a>
</li>
<li
class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-1969">
<a href="/category/musica">Música</a>
</li>
<li
class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-1969">
<a href="/category/romance">Romance</a>
</li>
<li
class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-1969">
<a href="/category/terror">Terror</a>
</li>
<li
class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-1969">
<a href="/category/thriller">Thriller</a>
</li>
</ul>
</li>
<li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children">
<a href="/series">Series</a>
<ul class="sub-menu">
<li class="menu-item menu-item-type-taxonomy menu-item-object-category">
<a href="/series">Series</a>
</li>
<li class="menu-item menu-item-type-taxonomy menu-item-object-category">
<a href="/series/estrenos">Estrenos</a>
</li>
<li class="menu-item menu-item-type-taxonomy menu-item-object-category">
<a href="/series/tendencias/dia">Tendencias dia</a>
</li>
<li class="menu-item menu-item-type-taxonomy menu-item-object-category">
<a href="/series/tendencias/semana">Tendencias semana</a>
</li>
</ul>
</li>
</ul>
</nav>
</div>
</div>
</div>
</header>
<div class="bd">
<div class="TpRwCont cont">
<main>
<section>
<div class="Top">
<h1 style="text-transform: capitalize;">Search The Walking Dead</h1>
</div>
<ul class="MovieList Rows">
<li class="TPostMv">
<div class="TPost C post type-post status-publish format-standard has-post-thumbnail hentry">
<a href="/ver-serie/the-walking-dead-daryl-dixon">
<div class="Image">
<span class="Year">2023</span>
<figure class="Objf TpMvPlay AAIco-play_arrow">
<img width="160" height="242" src="/static/img/loading.gif" data-src="https://image.tmdb.org/t/p/original/1e6y2MiGL7KCTJfpqa3cNHLDpF3.jpg" class="lazy attachment-thumbnail size-thumbnail wp-post-image" alt="img">
</figure>
<span class="TpTv BgA">Serie</span> </div>
<h2 class="Title">The Walking Dead: Daryl Dixon</h2>
</a>
<div class="TPMvCn anmt">
<div class="Title">The Walking Dead: Daryl Dixon</div>
<div class="Description non-href">
<p>Serie spin-off de The Walking Dead que cuenta la historia de Daryl Dixon tras haber sobtevivido a lo...</p>
<p class="Genre AAIco-movie_creation"><span>Género :</span> Ciencia ficción,Fantasía,Acción,Aventura,Drama</p>
<p class="Actors AAIco-person"><span>Reparto :</span> Norman Reedus,Melissa McBride,Clémence Poésy,Louis Puech Scigliuzzi,Laïka Blanc-Francard,Anne Cha...</p>
</div>
<img width="160" height="242" data-src="https://image.tmdb.org/t/p/original/1e6y2MiGL7KCTJfpqa3cNHLDpF3.jpg" class="lazy attachment-thumbnail size-thumbnail wp-post-image bg" alt="img">
</div>
</div>
</li><li class="TPostMv">
<div class="TPost C post type-post status-publish format-standard has-post-thumbnail hentry">
<a href="/ver-serie/the-walking-dead">
<div class="Image">
<span class="Year">2010</span>
<figure class="Objf TpMvPlay AAIco-play_arrow">
<img width="160" height="242" src="/static/img/loading.gif" data-src="https://image.tmdb.org/t/p/original/hUblG1KZCTRpHc3wqqoU0DW98Q3.jpg" class="lazy attachment-thumbnail size-thumbnail wp-post-image" alt="img">
</figure>
<span class="TpTv BgA">Serie</span> </div>
<h2 class="Title">The Walking Dead</h2>
</a>
<div class="TPMvCn anmt">
<div class="Title">The Walking Dead</div>
<div class="Description non-href">
<p>El oficial Rick Grimes se despierta del coma para descubrir que el mundo está en ruinas y debe guia...</p>
<p class="Genre AAIco-movie_creation"><span>Género :</span> Acción,Aventura,Drama,Ciencia ficción,Fantasía</p>
<p class="Actors AAIco-person"><span>Reparto :</span> Lauren Cohan,Norman Reedus,Jeffrey Dean Morgan,Melissa McBride,Christian Serratos,Seth Gilliam,Ross ...</p>
</div>
<img width="160" height="242" data-src="https://image.tmdb.org/t/p/original/hUblG1KZCTRpHc3wqqoU0DW98Q3.jpg" class="lazy attachment-thumbnail size-thumbnail wp-post-image bg" alt="img">
</div>
</div>
</li><li class="TPostMv">
<div class="TPost C post type-post status-publish format-standard has-post-thumbnail hentry">
<a href="/ver-serie/fear-the-walking-dead">
<div class="Image">
<span class="Year">2015</span>
<figure class="Objf TpMvPlay AAIco-play_arrow">
<img width="160" height="242" src="/static/img/loading.gif" data-src="https://image.tmdb.org/t/p/original/rdaB95H0qnBd2Y3j8FOjUkxBuBk.jpg" class="lazy attachment-thumbnail size-thumbnail wp-post-image" alt="img">
</figure>
<span class="TpTv BgA">Serie</span> </div>
<h2 class="Title">Fear the Walking Dead</h2>
</a>
<div class="TPMvCn anmt">
<div class="Title">Fear the Walking Dead</div>
<div class="Description non-href">
<p>Spin-off / precuela de la serie "The Walking Dead", ambientado en la ciudad de Los Ángeles y centra...</p>
<p class="Genre AAIco-movie_creation"><span>Género :</span> Acción,Aventura,Drama</p>
<p class="Actors AAIco-person"><span>Reparto :</span> Lennie James,Kim Dickens,Colman Domingo,Danay García,Austin Amelio,Karen David,Christine Evangelist...</p>
</div>
<img width="160" height="242" data-src="https://image.tmdb.org/t/p/original/rdaB95H0qnBd2Y3j8FOjUkxBuBk.jpg" class="lazy attachment-thumbnail size-thumbnail wp-post-image bg" alt="img">
</div>
</div>
</li><li class="TPostMv">
<div class="TPost C post type-post status-publish format-standard has-post-thumbnail hentry">
<a href="/ver-serie/tales-of-the-walking-dead">
<div class="Image">
<span class="Year">2022</span>
<figure class="Objf TpMvPlay AAIco-play_arrow">
<img width="160" height="242" src="/static/img/loading.gif" data-src="https://image.tmdb.org/t/p/original/zRMUHvTgQ79zteQafNI46Nd9XFm.jpg" class="lazy attachment-thumbnail size-thumbnail wp-post-image" alt="img">
</figure>
<span class="TpTv BgA">Serie</span> </div>
<h2 class="Title">Tales of the Walking Dead</h2>
</a>
<div class="TPMvCn anmt">
<div class="Title">Tales of the Walking Dead</div>
<div class="Description non-href">
<p>Esperada expansión del universo de The Walking Dead es un drama episódico que cuenta seis historia...</p>
<p class="Genre AAIco-movie_creation"><span>Género :</span> Drama,Acción,Aventura,Ciencia ficción,Fantasía</p>
<p class="Actors AAIco-person"><span>Reparto :</span> </p>
</div>
<img width="160" height="242" data-src="https://image.tmdb.org/t/p/original/zRMUHvTgQ79zteQafNI46Nd9XFm.jpg" class="lazy attachment-thumbnail size-thumbnail wp-post-image bg" alt="img">
</div>
</div>
</li><li class="TPostMv">
<div class="TPost C post type-post status-publish format-standard has-post-thumbnail hentry">
<a href="/ver-serie/the-walking-dead-world-beyond">
<div class="Image">
<span class="Year">2020</span>
<figure class="Objf TpMvPlay AAIco-play_arrow">
<img width="160" height="242" src="/static/img/loading.gif" data-src="https://image.tmdb.org/t/p/original/6HanIV2hTLE2w7A5bI1KJb3bTL7.jpg" class="lazy attachment-thumbnail size-thumbnail wp-post-image" alt="img">
</figure>
<span class="TpTv BgA">Serie</span> </div>
<h2 class="Title">The Walking Dead: World Beyond</h2>
</a>
<div class="TPMvCn anmt">
<div class="Title">The Walking Dead: World Beyond</div>
<div class="Description non-href">
<p>La serie, ambientada en Nebraska diez años después del inicio del apocalipsis zombi, presenta a do...</p>
<p class="Genre AAIco-movie_creation"><span>Género :</span> Drama,Ciencia ficción,Fantasía,Misterio</p>
<p class="Actors AAIco-person"><span>Reparto :</span> Aliyah Royale,Alexa Mansour,Hal Cumpston,Nicolas Cantu,Nico Tortorella,Annet Mahendru,Joe Holt,Natal...</p>
</div>
<img width="160" height="242" data-src="https://image.tmdb.org/t/p/original/6HanIV2hTLE2w7A5bI1KJb3bTL7.jpg" class="lazy attachment-thumbnail size-thumbnail wp-post-image bg" alt="img">
</div>
</div>
</li><li class="TPostMv">
<div class="TPost C post type-post status-publish format-standard has-post-thumbnail hentry">
<a href="/ver-serie/the-walking-dead-dead-city">
<div class="Image">
<span class="Year">2023</span>
<figure class="Objf TpMvPlay AAIco-play_arrow">
<img width="160" height="242" src="/static/img/loading.gif" data-src="https://image.tmdb.org/t/p/original/wq3vuQzQgbS83zX3malAFWMsSwX.jpg" class="lazy attachment-thumbnail size-thumbnail wp-post-image" alt="img">
</figure>
<span class="TpTv BgA">Serie</span> </div>
<h2 class="Title">The Walking Dead: Dead City</h2>
</a>
<div class="TPMvCn anmt">
<div class="Title">The Walking Dead: Dead City</div>
<div class="Description non-href">
<p>"Dead City" amplía la narración de "The Walking Dead" en torno a dos personajes inolvidables que l...</p>
<p class="Genre AAIco-movie_creation"><span>Género :</span> Acción,Aventura,Drama,Ciencia ficción,Fantasía</p>
<p class="Actors AAIco-person"><span>Reparto :</span> Lauren Cohan,Jeffrey Dean Morgan,Zeljko Ivanek,Gaius Charles,Logan Kim,Mahina Napoleon,Lisa Emery,Da...</p>
</div>
<img width="160" height="242" data-src="https://image.tmdb.org/t/p/original/wq3vuQzQgbS83zX3malAFWMsSwX.jpg" class="lazy attachment-thumbnail size-thumbnail wp-post-image bg" alt="img">
</div>
</div>
</li><li class="TPostMv">
<div class="TPost C post type-post status-publish format-standard has-post-thumbnail hentry">
<a href="/ver-serie/the-walking-dead-the-ones-who-live">
<div class="Image">
<span class="Year">2024</span>
<figure class="Objf TpMvPlay AAIco-play_arrow">
<img width="160" height="242" src="/static/img/loading.gif" data-src="https://image.tmdb.org/t/p/original/ywbacot78IuNhGW4uVZPxxxVTkm.jpg" class="lazy attachment-thumbnail size-thumbnail wp-post-image" alt="img">
</figure>
<span class="TpTv BgA">Serie</span> </div>
<h2 class="Title">The Walking Dead: Sobrevivientes</h2>
</a>
<div class="TPMvCn anmt">
<div class="Title">The Walking Dead: Sobrevivientes</div>
<div class="Description non-href">
<p>La historia de amor de Rick Grimes y Michonne cambia gracias a un mundo cambiado. Separados por la d...</p>
<p class="Genre AAIco-movie_creation"><span>Género :</span> Ciencia ficción,Fantasía,Drama</p>
<p class="Actors AAIco-person"><span>Reparto :</span> Andrew Lincoln,Danai Gurira,Pollyanna McIntosh,Danai Gurira,Andrew Lincoln</p>
</div>
<img width="160" height="242" data-src="https://image.tmdb.org/t/p/original/ywbacot78IuNhGW4uVZPxxxVTkm.jpg" class="lazy attachment-thumbnail size-thumbnail wp-post-image bg" alt="img">
</div>
</div>
</li><li class="TPostMv">
<div class="TPost C post type-post status-publish format-standard has-post-thumbnail hentry">
<a href="/ver-pelicula/the-walking-dead-the-return">
<div class="Image">
<span class="Year">2024</span>
<figure class="Objf TpMvPlay AAIco-play_arrow">
<img width="160" height="242" src="/static/img/loading.gif" data-src="https://image.tmdb.org/t/p/original/3clopfmZ8x6s1reWC6fxgXkysZz.jpg" class="lazy attachment-thumbnail size-thumbnail wp-post-image" alt="img">
</figure>
</div>
<h2 class="Title">The Walking Dead: The Return</h2>
</a>
<div class="TPMvCn anmt">
<div class="Title">The Walking Dead: The Return</div>
<div class="Description non-href">
<p>Los protagonistas de The Walking Dead Andrew Lincoln y Danai Gurira recuerdan y visitan lugares icó...</p>
<p class="Genre AAIco-movie_creation"><span>Género :</span> Documental</p>
<p class="Actors AAIco-person"><span>Reparto :</span> Andrew Lincoln,Danai Gurira,Norman Reedus,Jeffrey Dean Morgan,Chandler Riggs,Steven Yeun,Lauren Coha...</p>
</div>
<img width="160" height="242" data-src="https://image.tmdb.org/t/p/original/3clopfmZ8x6s1reWC6fxgXkysZz.jpg" class="lazy attachment-thumbnail size-thumbnail wp-post-image bg" alt="img">
</div>
</div>
</li> </ul>
</section>
</main>
<aside class="widget-area">
<section class="peli_movies widget_languages Wdgt">
<h3 class="widget-title">Películas Destacadas</h3>
<ul class="aa-nv dfx tac" data-tbs="aa-movies">
<li class="fg1"><a href="#aa-tb-1" class="on">Día</a></li>
<li class="fg1"><a href="#aa-tb-2" class="">Semana</a></li>
</ul>
<div class="aa-cn" id="aa-movies">
<div id="aa-tb-1" class="aa-tb on">
<ul class="MovieList">
<li>
<div class="TPost A">
<a href="/ver-pelicula/el-amateur-operacion-venganza">
<div class="Image">
<img alt="Longlegs: Coleccionista de almas" layout="intrinsic" src="https://image.tmdb.org/t/p/original/9WPWF0AmklsKclrXeyKXbQ543ZA.jpg" width="80" height="120" decoding="async" data-nimg="future" loading="lazy" style="color: transparent;">
</div>
<div class="Title">El amateur: Operación venganza</div>
</a>
<p class="Info Infowdgt">
<span class="Vote AAIco-star">6.8</span>
<span class="Time AAIco-access_time">2h 03m</span>
<span class="Date AAIco-date_range">2025</span>
</p>
</div>
</li><li>
<div class="TPost A">
<a href="/ver-pelicula/como-entrenar-a-tu-dragon-1087192">
<div class="Image">
<img alt="Longlegs: Coleccionista de almas" layout="intrinsic" src="https://image.tmdb.org/t/p/original/fTpbUIwdsfyIldzYvzQi2K4Icws.jpg" width="80" height="120" decoding="async" data-nimg="future" loading="lazy" style="color: transparent;">
</div>
<div class="Title">Cómo entrenar a tu dragón</div>
</a>
<p class="Info Infowdgt">
<span class="Vote AAIco-star">7.82</span>
<span class="Time AAIco-access_time">2h 05m</span>
<span class="Date AAIco-date_range">2025</span>
</p>
</div>
</li><li>
<div class="TPost A">
<a href="/ver-pelicula/pecadores">
<div class="Image">
<img alt="Longlegs: Coleccionista de almas" layout="intrinsic" src="https://image.tmdb.org/t/p/original/zdClwqpYQXBSCGGDMdtvsuggwec.jpg" width="80" height="120" decoding="async" data-nimg="future" loading="lazy" style="color: transparent;">
</div>
<div class="Title">Pecadores</div>
</a>
<p class="Info Infowdgt">
<span class="Vote AAIco-star">7.55</span>
<span class="Time AAIco-access_time">2h 18m</span>
<span class="Date AAIco-date_range">2025</span>
</p>
</div>
</li><li>
<div class="TPost A">
<a href="/ver-pelicula/el-contador-2">
<div class="Image">
<img alt="Longlegs: Coleccionista de almas" layout="intrinsic" src="https://image.tmdb.org/t/p/original/jcV9YfjBRo6occxqeWtEiyWwMoG.jpg" width="80" height="120" decoding="async" data-nimg="future" loading="lazy" style="color: transparent;">
</div>
<div class="Title">El contador 2</div>
</a>
<p class="Info Infowdgt">
<span class="Vote AAIco-star">7.22</span>
<span class="Time AAIco-access_time">2h 13m</span>
<span class="Date AAIco-date_range">2025</span>
</p>
</div>
</li><li>
<div class="TPost A">
<a href="/ver-pelicula/depredador-cazador-de-asesinos">
<div class="Image">
<img alt="Longlegs: Coleccionista de almas" layout="intrinsic" src="https://image.tmdb.org/t/p/original/qHDsrBZJRx6ZCO4tocFh3gnbosU.jpg" width="80" height="120" decoding="async" data-nimg="future" loading="lazy" style="color: transparent;">
</div>
<div class="Title">Depredador: Cazador de asesinos</div>
</a>
<p class="Info Infowdgt">
<span class="Vote AAIco-star">7.99</span>
<span class="Time AAIco-access_time">1h 25m</span>
<span class="Date AAIco-date_range">2025</span>
</p>
</div>
</li> </ul>
</div>
<div id="aa-tb-2" class="aa-tb ">
<ul class="MovieList">
<li>
<div class="TPost A">
<a href="/ver-pelicula/el-amateur-operacion-venganza">
<div class="Image">
<img alt="Longlegs: Coleccionista de almas" layout="intrinsic" src="https://image.tmdb.org/t/p/original/9WPWF0AmklsKclrXeyKXbQ543ZA.jpg" width="80" height="120" decoding="async" data-nimg="future" loading="lazy" style="color: transparent;">
</div>
<div class="Title">El amateur: Operación venganza</div>
</a>
<p class="Info Infowdgt">
<span class="Vote AAIco-star">6.8</span>
<span class="Time AAIco-access_time">2h 03m</span>
<span class="Date AAIco-date_range">2025</span>
</p>
</div>
</li><li>
<div class="TPost A">
<a href="/ver-pelicula/como-entrenar-a-tu-dragon-1087192">
<div class="Image">
<img alt="Longlegs: Coleccionista de almas" layout="intrinsic" src="https://image.tmdb.org/t/p/original/fTpbUIwdsfyIldzYvzQi2K4Icws.jpg" width="80" height="120" decoding="async" data-nimg="future" loading="lazy" style="color: transparent;">
</div>
<div class="Title">Cómo entrenar a tu dragón</div>
</a>
<p class="Info Infowdgt">
<span class="Vote AAIco-star">7.82</span>
<span class="Time AAIco-access_time">2h 05m</span>
<span class="Date AAIco-date_range">2025</span>
</p>
</div>
</li><li>
<div class="TPost A">
<a href="/ver-pelicula/el-contador-2">
<div class="Image">
<img alt="Longlegs: Coleccionista de almas" layout="intrinsic" src="https://image.tmdb.org/t/p/original/jcV9YfjBRo6occxqeWtEiyWwMoG.jpg" width="80" height="120" decoding="async" data-nimg="future" loading="lazy" style="color: transparent;">
</div>
<div class="Title">El contador 2</div>
</a>
<p class="Info Infowdgt">
<span class="Vote AAIco-star">7.22</span>
<span class="Time AAIco-access_time">2h 13m</span>
<span class="Date AAIco-date_range">2025</span>
</p>
</div>
</li><li>
<div class="TPost A">
<a href="/ver-pelicula/depredador-cazador-de-asesinos">
<div class="Image">
<img alt="Longlegs: Coleccionista de almas" layout="intrinsic" src="https://image.tmdb.org/t/p/original/qHDsrBZJRx6ZCO4tocFh3gnbosU.jpg" width="80" height="120" decoding="async" data-nimg="future" loading="lazy" style="color: transparent;">
</div>
<div class="Title">Depredador: Cazador de asesinos</div>
</a>
<p class="Info Infowdgt">
<span class="Vote AAIco-star">7.99</span>
<span class="Time AAIco-access_time">1h 25m</span>
<span class="Date AAIco-date_range">2025</span>
</p>
</div>
</li><li>
<div class="TPost A">
<a href="/ver-pelicula/pecadores">
<div class="Image">
<img alt="Longlegs: Coleccionista de almas" layout="intrinsic" src="https://image.tmdb.org/t/p/original/zdClwqpYQXBSCGGDMdtvsuggwec.jpg" width="80" height="120" decoding="async" data-nimg="future" loading="lazy" style="color: transparent;">
</div>
<div class="Title">Pecadores</div>
</a>
<p class="Info Infowdgt">
<span class="Vote AAIco-star">7.55</span>
<span class="Time AAIco-access_time">2h 18m</span>
<span class="Date AAIco-date_range">2025</span>
</p>
</div>
</li> </ul>
</div>
</div>
</section>
</aside>
</div>
<!--aside-->
</div>
<footer class="ft ok">
<div class="cont dfxb alg-cr">
<figure class="logo-ft"><img src="/static/img/cuevana-logo.png" alt="cuevana"></figure>
</div>
<p class="copy tac">© 2025 Cuevana 3 Peliculas Online, Todos los derechos reservados.</p>
</footer>
</div>
<script type="text/javascript" src="/static/cdn/owl.js"></script>
<script type="text/javascript" src="/static/cdn/loadMoreResults.js"></script>
<script type="text/javascript" src="/static/cdn/bct-public.js?v=1.8"></script>
<div style="display:none"><!-- Histats.com (div with counter) --><div id="histats_counter"></div>
<!-- Histats.com START (aync)-->
<script type="text/javascript">var _Hasync= _Hasync|| [];
_Hasync.push(['Histats.start', '1,4682163,4,511,95,18,00000000']);
_Hasync.push(['Histats.fasi', '1']);
_Hasync.push(['Histats.track_hits', '']);
(function() {
var hs = document.createElement('script'); hs.type = 'text/javascript'; hs.async = true;
hs.src = ('//s10.histats.com/js15_as.js');
(document.getElementsByTagName('head')[0] || document.getElementsByTagName('body')[0]).appendChild(hs);
})();</script>
<noscript><a href="/" target="_blank"><img src="//sstatic1.histats.com/0.gif?4682163&101" alt="free tracking" border="0"></a></noscript>
<!-- Histats.com END --></div>
<script type="text/javascript" src="https://platform-api.sharethis.com/js/sharethis.js#property=65af1f192bb34700194aa378&product=sticky-share-buttons&source=platform" async="async"></script>
<script type='text/javascript' src='//jeopardizegrowled.com/dd/96/e5/dd96e5c6537e6beb13142995569b4fc1.js'></script>
<script type='text/javascript' src='//jeopardizegrowled.com/df/8b/64/df8b644060747a92d7efb671469b1ad3.js'></script></body>
</html>

View file

@ -0,0 +1,378 @@
<!doctype html>
<html lang="es">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
<title>Resultados de búsqueda</title>
<meta name="robots" content="index,follow"/>
<link rel="shortcut icon" href="/static/img/cropped-favicon-1-32x32.png">
<meta name="google-site-verification" content=""/>
<meta name="description" content="Ver y descargar Películas y Series en Latino, Español, Subtitulado e ingles, los últimos estrenos en la mejor calidad HD sin cortes. Cuevana Online.">
<meta name="keywords" content="película géminis completa del 2025 en español latino,castellano y subtitulada. descargar gratis géminis. gemini man.,acción,ciencia ficción,drama,película el camino: una película de breaking bad completa del 2025 en español latino,castellano y subtitulada. descargar gratis el camino: una película de breaking bad. el camino: a breaking bad movie.,película el rey león completa del 2025 en español latino,castellano y subtitulada. descargar gratis el rey león. the lion king.,the-lion-king,aventura,película stuber completa del 2025 en español latino,castellano y subtitulada. descargar gratis stuber. stuber.,comedia,crimen,película el paletero completa del 2016 en español latino,castellano y subtitulada. descargar gratis el paletero. el paletero.,western,película steven universe: the movie completa del 2025 en español latino,castellano y subtitulada. descargar gratis steven universe: the movie. steven universe: the movie.,animación,película galveston completa del 2018 en español latino,castellano y subtitulada. descargar gratis galveston. galveston.,película men in black: internacional completa del 2025 en español latino,castellano y subtitulada. descargar gratis men in black: internacional. men in black: international.,película rambo: last blood completa del 2025 en español latino,castellano y subtitulada. descargar gratis rambo: last blood. rambo: last blood.,thriller,película general commander completa del 2025 en español latino,castellano y subtitulada. descargar gratis general commander. general commander.,película golden job completa del 2018 en español latino,castellano y subtitulada. descargar gratis golden job. golden job.,película the death and return of superman completa del 2025 en español latino,castellano y subtitulada. descargar gratis the death and return of superman. the death and return of superman.,película teen titans go! vs. teen titans completa del 2025 en español latino,castellano y subtitulada. descargar gratis teen titans go! vs. teen titans. teen titans go! vs. teen titans.,película the messenger completa del 2025 en español latino,castellano y subtitulada. descargar gratis the messenger. kurier.,historia,película infierno bajo el agua completa del 2025 en español latino,castellano y subtitulada. descargar gratis infierno bajo el agua. crawl.,terror,película doom: aniquilación completa del 2025 en español latino,castellano y subtitulada. descargar gratis doom: aniquilación. doom: annihilation.,película fast &amp;amp; furious: hobbs &amp;amp; shaw completa del 2025 en español latino,castellano y subtitulada. descargar gratis fast &amp;amp; furious: hobbs &amp;amp; shaw. fast &amp;amp; furious: hobbs &amp;amp; shaw.,fast-furious,película cómo entrenar a tu dragón 3 completa del 2025 en español latino,castellano y subtitulada. descargar gratis cómo entrenar a tu dragón 3. how to train your dragon: the hidden world.,entrenar-dragon,película john wick 3: parabellum completa del 2025 en español latino,castellano y subtitulada. descargar gratis john wick 3: parabellum. john wick: chapter 3 - parabellum.,john-wick,película shadow completa del 2018 en español latino,castellano y subtitulada. descargar gratis shadow. ying.,película shifting gears completa del 2018 en español latino,castellano y subtitulada. descargar gratis shifting gears. shifting gears.,familia,película the tracker completa del 2025 en español latino,castellano y subtitulada. descargar gratis the tracker. the tracker.,película night hunter completa del 2018 en español latino,castellano y subtitulada. descargar gratis night hunter. nomis.,película inside man: most wanted completa del 2025 en español latino,castellano y subtitulada. descargar gratis inside man: most wanted. inside man: most wanted.,película dragged across concrete completa del 2018 en español latino,castellano y subtitulada. descargar gratis dragged across concrete. dragged across concrete.,película anna completa del 2025 en español latino,castellano y subtitulada. descargar gratis anna. anna.,película spider-man: lejos de casa completa del 2025 en español latino,castellano y subtitulada. descargar gratis spider-man: lejos de casa. spider-man: far from home.,marvel,spider-man,película objetivo: washington d.c. completa del 2025 en español latino,castellano y subtitulada. descargar gratis objetivo: washington d.c.. angel has fallen.,película godzilla: rey de los monstruos completa del 2025 en español latino,castellano y subtitulada. descargar gratis godzilla: rey de los monstruos. godzilla: king of the monsters.,fantasía,película hellboy completa del 2025 en español latino,castellano y subtitulada. descargar gratis hellboy. hellboy.">
<link rel="stylesheet" type="text/css" href="/static/css/app.css?v=1.91"/>
<link rel="stylesheet" type="text/css" href="/static/css/style.css?v=1.8"/>
<link rel="stylesheet" type="text/css" href="/static/css/footer.css?v=1.8"/>
<script type="text/javascript" src="/static/cdn/jquery.js"></script>
</head>
<body data-rsssl=1 class="slider">
<script>
var base_url = '//' + document.domain + '/';
var base_url_cdn_api = '//' + document.domain + '/';
</script>
<div id="aa-wp">
<header class="Header">
<script>
function onSearch() {
const q = document.getElementById('keysss').value
if (q.length > 1) {
location.href = `/search/${q}`
}
return false
}
</script>
<div class="cont">
<div class="top dfx alg-cr jst-sb">
<figure class="logo">
<a href="/"><img src="/static/img/cuevana3.png" alt="logo"></a>
</figure>
<span class="MenuBtn aa-tgl" data-tgl="aa-wp"><i></i><i></i><i></i></span>
<span class="MenuBtnClose aa-tgl" data-tgl="aa-wp"></span>
<div class="Rght BgA dfxc alg-cr fg1">
<div class="Search">
<form method="get" id="searchform" onsubmit="return onSearch()">
<span class="Form-Icon">
<div class="ep-autosuggest-container">
<input id="keysss" name="keyword" type="search" placeholder="Buscador..." autocomplete="off">
<div class="ep-autosuggest" style="display: none;"></div>
<div class="loader"></div>
</div>
<button id="searchsubmit" type="submit"><i class="fa-search"></i></button>
</span>
</form>
</div>
<nav class="Menu fg1">
<ul>
<li
class="AAIco-home menu-item menu-item-type-custom menu-item-object-custom menu-item-home ">
<a href="/" aria-current="page">Inicio</a></li>
<li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children">
<a href="/peliculas">Películas</a>
<ul class="sub-menu">
<li class="menu-item menu-item-type-taxonomy menu-item-object-category">
<a href="/peliculas">Últimas publicadas</a>
</li>
<li class="menu-item menu-item-type-taxonomy menu-item-object-category">
<a href="/peliculas/estrenos">Estrenos</a>
</li>
<li class="menu-item menu-item-type-taxonomy menu-item-object-category">
<a href="/peliculas/tendencias/semana">Tendencias semana</a>
</li>
<li class="menu-item menu-item-type-taxonomy menu-item-object-category">
<a href="/peliculas/tendencias/dia">Tendencias día</a>
</li>
</ul>
</li>
<li id="menu-item-1953"
class="AAIco-movie_creation menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-1953">
<a href="#">Géneros</a>
<ul class="sub-menu">
<li
class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-1969">
<a href="/category/accion">Acción</a>
</li>
<li
class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-1969">
<a href="/category/animacion">Animación</a>
</li>
<li
class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-1969">
<a href="/category/aventura">Aventura</a>
</li>
<li
class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-1969">
<a href="/category/biografico">Biografico</a>
</li>
<li
class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-1969">
<a href="/category/ciencia-ficcion">Ciencia Ficción</a>
</li>
<li
class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-1969">
<a href="/category/comedia">Comedia</a>
</li>
<li
class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-1969">
<a href="/category/crimen">Crimen</a>
</li>
<li
class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-1969">
<a href="/category/documental">Documental</a>
</li>
<li
class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-1969">
<a href="/category/drama">Drama</a>
</li>
<li
class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-1969">
<a href="/category/familiar">Familiar</a>
</li>
<li
class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-1969">
<a href="/category/fantasia">Fantasía</a>
</li>
<li
class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-1969">
<a href="/category/misterio">Misterio</a>
</li>
<li
class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-1969">
<a href="/category/musica">Música</a>
</li>
<li
class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-1969">
<a href="/category/romance">Romance</a>
</li>
<li
class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-1969">
<a href="/category/terror">Terror</a>
</li>
<li
class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-1969">
<a href="/category/thriller">Thriller</a>
</li>
</ul>
</li>
<li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children">
<a href="/series">Series</a>
<ul class="sub-menu">
<li class="menu-item menu-item-type-taxonomy menu-item-object-category">
<a href="/series">Series</a>
</li>
<li class="menu-item menu-item-type-taxonomy menu-item-object-category">
<a href="/series/estrenos">Estrenos</a>
</li>
<li class="menu-item menu-item-type-taxonomy menu-item-object-category">
<a href="/series/tendencias/dia">Tendencias dia</a>
</li>
<li class="menu-item menu-item-type-taxonomy menu-item-object-category">
<a href="/series/tendencias/semana">Tendencias semana</a>
</li>
</ul>
</li>
</ul>
</nav>
</div>
</div>
</div>
</header>
<div class="bd">
<div class="TpRwCont cont">
<main>
<section>
<div class="Top">
<h1 style="text-transform: capitalize;">Search Vorstadtweiber</h1>
</div>
<ul class="MovieList Rows">
</ul>
</section>
</main>
<aside class="widget-area">
<section class="peli_movies widget_languages Wdgt">
<h3 class="widget-title">Películas Destacadas</h3>
<ul class="aa-nv dfx tac" data-tbs="aa-movies">
<li class="fg1"><a href="#aa-tb-1" class="on">Día</a></li>
<li class="fg1"><a href="#aa-tb-2" class="">Semana</a></li>
</ul>
<div class="aa-cn" id="aa-movies">
<div id="aa-tb-1" class="aa-tb on">
<ul class="MovieList">
<li>
<div class="TPost A">
<a href="/ver-pelicula/el-amateur-operacion-venganza">
<div class="Image">
<img alt="Longlegs: Coleccionista de almas" layout="intrinsic" src="https://image.tmdb.org/t/p/original/9WPWF0AmklsKclrXeyKXbQ543ZA.jpg" width="80" height="120" decoding="async" data-nimg="future" loading="lazy" style="color: transparent;">
</div>
<div class="Title">El amateur: Operación venganza</div>
</a>
<p class="Info Infowdgt">
<span class="Vote AAIco-star">6.8</span>
<span class="Time AAIco-access_time">2h 03m</span>
<span class="Date AAIco-date_range">2025</span>
</p>
</div>
</li><li>
<div class="TPost A">
<a href="/ver-pelicula/como-entrenar-a-tu-dragon-1087192">
<div class="Image">
<img alt="Longlegs: Coleccionista de almas" layout="intrinsic" src="https://image.tmdb.org/t/p/original/fTpbUIwdsfyIldzYvzQi2K4Icws.jpg" width="80" height="120" decoding="async" data-nimg="future" loading="lazy" style="color: transparent;">
</div>
<div class="Title">Cómo entrenar a tu dragón</div>
</a>
<p class="Info Infowdgt">
<span class="Vote AAIco-star">7.82</span>
<span class="Time AAIco-access_time">2h 05m</span>
<span class="Date AAIco-date_range">2025</span>
</p>
</div>
</li><li>
<div class="TPost A">
<a href="/ver-pelicula/pecadores">
<div class="Image">
<img alt="Longlegs: Coleccionista de almas" layout="intrinsic" src="https://image.tmdb.org/t/p/original/zdClwqpYQXBSCGGDMdtvsuggwec.jpg" width="80" height="120" decoding="async" data-nimg="future" loading="lazy" style="color: transparent;">
</div>
<div class="Title">Pecadores</div>
</a>
<p class="Info Infowdgt">
<span class="Vote AAIco-star">7.55</span>
<span class="Time AAIco-access_time">2h 18m</span>
<span class="Date AAIco-date_range">2025</span>
</p>
</div>
</li><li>
<div class="TPost A">
<a href="/ver-pelicula/el-contador-2">
<div class="Image">
<img alt="Longlegs: Coleccionista de almas" layout="intrinsic" src="https://image.tmdb.org/t/p/original/jcV9YfjBRo6occxqeWtEiyWwMoG.jpg" width="80" height="120" decoding="async" data-nimg="future" loading="lazy" style="color: transparent;">
</div>
<div class="Title">El contador 2</div>
</a>
<p class="Info Infowdgt">
<span class="Vote AAIco-star">7.22</span>
<span class="Time AAIco-access_time">2h 13m</span>
<span class="Date AAIco-date_range">2025</span>
</p>
</div>
</li><li>
<div class="TPost A">
<a href="/ver-pelicula/depredador-cazador-de-asesinos">
<div class="Image">
<img alt="Longlegs: Coleccionista de almas" layout="intrinsic" src="https://image.tmdb.org/t/p/original/qHDsrBZJRx6ZCO4tocFh3gnbosU.jpg" width="80" height="120" decoding="async" data-nimg="future" loading="lazy" style="color: transparent;">
</div>
<div class="Title">Depredador: Cazador de asesinos</div>
</a>
<p class="Info Infowdgt">
<span class="Vote AAIco-star">7.99</span>
<span class="Time AAIco-access_time">1h 25m</span>
<span class="Date AAIco-date_range">2025</span>
</p>
</div>
</li> </ul>
</div>
<div id="aa-tb-2" class="aa-tb ">
<ul class="MovieList">
<li>
<div class="TPost A">
<a href="/ver-pelicula/el-amateur-operacion-venganza">
<div class="Image">
<img alt="Longlegs: Coleccionista de almas" layout="intrinsic" src="https://image.tmdb.org/t/p/original/9WPWF0AmklsKclrXeyKXbQ543ZA.jpg" width="80" height="120" decoding="async" data-nimg="future" loading="lazy" style="color: transparent;">
</div>
<div class="Title">El amateur: Operación venganza</div>
</a>
<p class="Info Infowdgt">
<span class="Vote AAIco-star">6.8</span>
<span class="Time AAIco-access_time">2h 03m</span>
<span class="Date AAIco-date_range">2025</span>
</p>
</div>
</li><li>
<div class="TPost A">
<a href="/ver-pelicula/como-entrenar-a-tu-dragon-1087192">
<div class="Image">
<img alt="Longlegs: Coleccionista de almas" layout="intrinsic" src="https://image.tmdb.org/t/p/original/fTpbUIwdsfyIldzYvzQi2K4Icws.jpg" width="80" height="120" decoding="async" data-nimg="future" loading="lazy" style="color: transparent;">
</div>
<div class="Title">Cómo entrenar a tu dragón</div>
</a>
<p class="Info Infowdgt">
<span class="Vote AAIco-star">7.82</span>
<span class="Time AAIco-access_time">2h 05m</span>
<span class="Date AAIco-date_range">2025</span>
</p>
</div>
</li><li>
<div class="TPost A">
<a href="/ver-pelicula/el-contador-2">
<div class="Image">
<img alt="Longlegs: Coleccionista de almas" layout="intrinsic" src="https://image.tmdb.org/t/p/original/jcV9YfjBRo6occxqeWtEiyWwMoG.jpg" width="80" height="120" decoding="async" data-nimg="future" loading="lazy" style="color: transparent;">
</div>
<div class="Title">El contador 2</div>
</a>
<p class="Info Infowdgt">
<span class="Vote AAIco-star">7.22</span>
<span class="Time AAIco-access_time">2h 13m</span>
<span class="Date AAIco-date_range">2025</span>
</p>
</div>
</li><li>
<div class="TPost A">
<a href="/ver-pelicula/depredador-cazador-de-asesinos">
<div class="Image">
<img alt="Longlegs: Coleccionista de almas" layout="intrinsic" src="https://image.tmdb.org/t/p/original/qHDsrBZJRx6ZCO4tocFh3gnbosU.jpg" width="80" height="120" decoding="async" data-nimg="future" loading="lazy" style="color: transparent;">
</div>
<div class="Title">Depredador: Cazador de asesinos</div>
</a>
<p class="Info Infowdgt">
<span class="Vote AAIco-star">7.99</span>
<span class="Time AAIco-access_time">1h 25m</span>
<span class="Date AAIco-date_range">2025</span>
</p>
</div>
</li><li>
<div class="TPost A">
<a href="/ver-pelicula/pecadores">
<div class="Image">
<img alt="Longlegs: Coleccionista de almas" layout="intrinsic" src="https://image.tmdb.org/t/p/original/zdClwqpYQXBSCGGDMdtvsuggwec.jpg" width="80" height="120" decoding="async" data-nimg="future" loading="lazy" style="color: transparent;">
</div>
<div class="Title">Pecadores</div>
</a>
<p class="Info Infowdgt">
<span class="Vote AAIco-star">7.55</span>
<span class="Time AAIco-access_time">2h 18m</span>
<span class="Date AAIco-date_range">2025</span>
</p>
</div>
</li> </ul>
</div>
</div>
</section>
</aside>
</div>
<!--aside-->
</div>
<footer class="ft ok">
<div class="cont dfxb alg-cr">
<figure class="logo-ft"><img src="/static/img/cuevana-logo.png" alt="cuevana"></figure>
</div>
<p class="copy tac">© 2025 Cuevana 3 Peliculas Online, Todos los derechos reservados.</p>
</footer>
</div>
<script type="text/javascript" src="/static/cdn/owl.js"></script>
<script type="text/javascript" src="/static/cdn/loadMoreResults.js"></script>
<script type="text/javascript" src="/static/cdn/bct-public.js?v=1.8"></script>
<div style="display:none"><!-- Histats.com (div with counter) --><div id="histats_counter"></div>
<!-- Histats.com START (aync)-->
<script type="text/javascript">var _Hasync= _Hasync|| [];
_Hasync.push(['Histats.start', '1,4682163,4,511,95,18,00000000']);
_Hasync.push(['Histats.fasi', '1']);
_Hasync.push(['Histats.track_hits', '']);
(function() {
var hs = document.createElement('script'); hs.type = 'text/javascript'; hs.async = true;
hs.src = ('//s10.histats.com/js15_as.js');
(document.getElementsByTagName('head')[0] || document.getElementsByTagName('body')[0]).appendChild(hs);
})();</script>
<noscript><a href="/" target="_blank"><img src="//sstatic1.histats.com/0.gif?4682163&101" alt="free tracking" border="0"></a></noscript>
<!-- Histats.com END --></div>
<script type="text/javascript" src="https://platform-api.sharethis.com/js/sharethis.js#property=65af1f192bb34700194aa378&product=sticky-share-buttons&source=platform" async="async"></script>
<script type='text/javascript' src='//jeopardizegrowled.com/dd/96/e5/dd96e5c6537e6beb13142995569b4fc1.js'></script>
<script type='text/javascript' src='//jeopardizegrowled.com/df/8b/64/df8b644060747a92d7efb671469b1ad3.js'></script></body>
</html>

View file

@ -0,0 +1,682 @@
<!doctype html>
<html lang="es">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
<title>El Camino: Una película de Breaking Bad 2019 - Pelicula - Cuevana 3</title>
<meta name="robots" content="index,follow"/>
<link rel="shortcut icon" href="/static/img/cropped-favicon-1-32x32.png">
<meta name="google-site-verification" content=""/>
<meta name="description" content="Después de escapar de Jack y su pandilla, Jesse Pinkman huye de la policía e intenta escapar de su propia tormenta interna.">
<meta name="keywords" content="El Camino: Una película de Breaking Bad">
<link rel="stylesheet" type="text/css" href="/static/css/app.css?v=1.91"/>
<link rel="stylesheet" type="text/css" href="/static/css/style.css?v=1.8"/>
<link rel="stylesheet" type="text/css" href="/static/css/footer.css?v=1.8"/>
<script type="text/javascript" src="/static/cdn/jquery.js"></script>
</head>
<body data-rsssl=1 class="slider">
<script>
var base_url = '//' + document.domain + '/';
var base_url_cdn_api = '//' + document.domain + '/';
</script>
<div id="aa-wp">
<header class="Header">
<script>
function onSearch() {
const q = document.getElementById('keysss').value
if (q.length > 1) {
location.href = `/search/${q}`
}
return false
}
</script>
<div class="cont">
<div class="top dfx alg-cr jst-sb">
<figure class="logo">
<a href="/"><img src="/static/img/cuevana3.png" alt="logo"></a>
</figure>
<span class="MenuBtn aa-tgl" data-tgl="aa-wp"><i></i><i></i><i></i></span>
<span class="MenuBtnClose aa-tgl" data-tgl="aa-wp"></span>
<div class="Rght BgA dfxc alg-cr fg1">
<div class="Search">
<form method="get" id="searchform" onsubmit="return onSearch()">
<span class="Form-Icon">
<div class="ep-autosuggest-container">
<input id="keysss" name="keyword" type="search" placeholder="Buscador..." autocomplete="off">
<div class="ep-autosuggest" style="display: none;"></div>
<div class="loader"></div>
</div>
<button id="searchsubmit" type="submit"><i class="fa-search"></i></button>
</span>
</form>
</div>
<nav class="Menu fg1">
<ul>
<li
class="AAIco-home menu-item menu-item-type-custom menu-item-object-custom menu-item-home ">
<a href="/" aria-current="page">Inicio</a></li>
<li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children">
<a href="/peliculas">Películas</a>
<ul class="sub-menu">
<li class="menu-item menu-item-type-taxonomy menu-item-object-category">
<a href="/peliculas">Últimas publicadas</a>
</li>
<li class="menu-item menu-item-type-taxonomy menu-item-object-category">
<a href="/peliculas/estrenos">Estrenos</a>
</li>
<li class="menu-item menu-item-type-taxonomy menu-item-object-category">
<a href="/peliculas/tendencias/semana">Tendencias semana</a>
</li>
<li class="menu-item menu-item-type-taxonomy menu-item-object-category">
<a href="/peliculas/tendencias/dia">Tendencias día</a>
</li>
</ul>
</li>
<li id="menu-item-1953"
class="AAIco-movie_creation menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-1953">
<a href="#">Géneros</a>
<ul class="sub-menu">
<li
class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-1969">
<a href="/category/accion">Acción</a>
</li>
<li
class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-1969">
<a href="/category/animacion">Animación</a>
</li>
<li
class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-1969">
<a href="/category/aventura">Aventura</a>
</li>
<li
class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-1969">
<a href="/category/biografico">Biografico</a>
</li>
<li
class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-1969">
<a href="/category/ciencia-ficcion">Ciencia Ficción</a>
</li>
<li
class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-1969">
<a href="/category/comedia">Comedia</a>
</li>
<li
class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-1969">
<a href="/category/crimen">Crimen</a>
</li>
<li
class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-1969">
<a href="/category/documental">Documental</a>
</li>
<li
class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-1969">
<a href="/category/drama">Drama</a>
</li>
<li
class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-1969">
<a href="/category/familiar">Familiar</a>
</li>
<li
class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-1969">
<a href="/category/fantasia">Fantasía</a>
</li>
<li
class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-1969">
<a href="/category/misterio">Misterio</a>
</li>
<li
class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-1969">
<a href="/category/musica">Música</a>
</li>
<li
class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-1969">
<a href="/category/romance">Romance</a>
</li>
<li
class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-1969">
<a href="/category/terror">Terror</a>
</li>
<li
class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-1969">
<a href="/category/thriller">Thriller</a>
</li>
</ul>
</li>
<li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children">
<a href="/series">Series</a>
<ul class="sub-menu">
<li class="menu-item menu-item-type-taxonomy menu-item-object-category">
<a href="/series">Series</a>
</li>
<li class="menu-item menu-item-type-taxonomy menu-item-object-category">
<a href="/series/estrenos">Estrenos</a>
</li>
<li class="menu-item menu-item-type-taxonomy menu-item-object-category">
<a href="/series/tendencias/dia">Tendencias dia</a>
</li>
<li class="menu-item menu-item-type-taxonomy menu-item-object-category">
<a href="/series/tendencias/semana">Tendencias semana</a>
</li>
</ul>
</li>
</ul>
</nav>
</div>
</div>
</div>
</header>
<div class="bd">
<div class="backdrop">
<article class="TPost movtv-info cont">
<div class="Image">
<figure>
<img src="/static/img/loading.gif" data-src="https://image.tmdb.org/t/p/original/hoWADuvXs3Ua4AXBAiZYnppTupO.jpg" alt="El Camino: Una película de Breaking Bad" class="lazy">
</figure>
</div>
<header>
<h1 class="Title">El Camino: Una película de Breaking Bad</h1>
<h2 class="SubTitle"></h2>
</header>
<footer>
<p class="Info">
<span class="Vote AAIco-star">6.96</span> <span class="Time AAIco-access_time">2h 02m</span>
<span class="Date AAIco-date_range">2019</span>
</p>
</footer>
<div class="Description">Después de escapar de Jack y su pandilla, Jesse Pinkman huye de la policía e intenta escapar de su propia tormenta interna.</div>
<div class="MvTbCn on anmt" id="MvTb-Info">
<ul class="InfoList">
<li class="AAIco-adjust"><strong>Genero:</strong>
<a href="/genero/Crimen">Crimen</a>
,<a href="/genero/Drama">Drama</a>
,<a href="/genero/Suspenso">Suspenso</a>
</li>
<li class="AAIco-adjust"><strong>Actores:</strong>
<a href="/actor/Aaron Paul">Aaron Paul</a>
,<a href="/actor/Jesse Plemons">Jesse Plemons</a>
,<a href="/actor/Charles Baker">Charles Baker</a>
,<a href="/actor/Matt Jones">Matt Jones</a>
,<a href="/actor/Scott MacArthur">Scott MacArthur</a>
,<a href="/actor/Larry Hankin">Larry Hankin</a>
,<a href="/actor/Scott Shepherd">Scott Shepherd</a>
,<a href="/actor/Tom Bower">Tom Bower</a>
,<a href="/actor/Robert Forster">Robert Forster</a>
,<a href="/actor/Jonathan Banks">Jonathan Banks</a>
,<a href="/actor/Bryan Cranston">Bryan Cranston</a>
,<a href="/actor/Krysten Ritter">Krysten Ritter</a>
,<a href="/actor/Kevin Rankin">Kevin Rankin</a>
,<a href="/actor/Tess Harper">Tess Harper</a>
,<a href="/actor/Michael Bofshever">Michael Bofshever</a>
,<a href="/actor/Marla Gibbs">Marla Gibbs</a>
,<a href="/actor/Todd Terry">Todd Terry</a>
,<a href="/actor/Julie Pearl">Julie Pearl</a>
,<a href="/actor/Gloria Sandoval">Gloria Sandoval</a>
,<a href="/actor/Simon Drobik">Simon Drobik</a>
,<a href="/actor/Carlos Sepulveda">Carlos Sepulveda</a>
,<a href="/actor/Brendan Sexton III">Brendan Sexton III</a>
,<a href="/actor/Matthew Van Wettering">Matthew Van Wettering</a>
,<a href="/actor/Chris Bylsma">Chris Bylsma</a>
,<a href="/actor/David Mattey">David Mattey</a>
,<a href="/actor/Cody Renee Cameron">Cody Renee Cameron</a>
,<a href="/actor/Alison Law">Alison Law</a>
,<a href="/actor/Gabriela Alicia Ortega">Gabriela Alicia Ortega</a>
,<a href="/actor/Gregory Steven Soliz">Gregory Steven Soliz</a>
,<a href="/actor/Danielle Todesco">Danielle Todesco</a>
,<a href="/actor/Johnny Ortiz">Johnny Ortiz</a>
,<a href="/actor/Aaron Paul">Aaron Paul</a>
,<a href="/actor/Edie Mirman">Edie Mirman</a>
,<a href="/actor/Steve Stafford">Steve Stafford</a>
,<a href="/actor/John Trejo">John Trejo</a>
,<a href="/actor/Marcus Montoya">Marcus Montoya</a>
</li>
</ul>
</div>
</article>
<div class="Image">
<img alt="" layout="fill" sizes="(min-width: 931px) 50vw, 100vw" src="https://image.tmdb.org/t/p/original/yzpZVgaTZzDrAP1yVeCbKZH9jmA.jpg" width="780" height="440" decoding="async" data-nimg="future" style="color: transparent;">
</div>
</div>
<div class="video cont">
<ul class="_1EGcQ_0 TPlayerNv tab_language_movie">
<li class="open_submenu active actives">
<div class="_3CT5n_0 L6v6v_0">
<div class="H_ndV_0 fa fa-chevron-down"><span class="arrow-down"></span></div>
<img src="/static/img/latino.png">
<div class="_1R6bW_0">
<span>
Español Latino <span> CALIDAD HD </span>
</span>
</div>
</div>
<div>
<ul class="sub-tab-lang _3eEG3_0 optm3 hide">
<li class="clili L6v6v_0" data-tr="https://streamwish.to/e/9icce2ca0yir">
<span class="cdtr"><span>1. streamwish - HD</span></span>
</li><li class="clili L6v6v_0" data-tr="https://filemoon.sx/e/fgxxkidqq4jp">
<span class="cdtr"><span>2. filemoon - HD</span></span>
</li><li class="clili L6v6v_0" data-tr="https://voe.sx/e/h87m8wyj5x8j">
<span class="cdtr"><span>3. voesx - HD</span></span>
</li><li class="clili L6v6v_0" data-tr="https://doodstream.com/e/ju53ufkqy9hc">
<span class="cdtr"><span>4. doodstream - HD</span></span>
</li><li class="clili L6v6v_0" data-tr="https://streamtape.com/e/WgxgBAwOyGfbZxY">
<span class="cdtr"><span>5. streamtape - HD</span></span>
</li><li class="clili L6v6v_0" data-tr="https://waaw.to/f/xtG7M9GL2MmV">
<span class="cdtr"><span>6. netu - HD</span></span>
</li><li class="clili L6v6v_0" data-tr="https://filelions.to/v/tnehp8g7zght">
<span class="cdtr"><span>7. vidhide - HD</span></span>
</li><li class="clili L6v6v_0" data-tr="https://plustream.com/embedb2/gHHRwqKdHgF5MYniuxGWnG8j_vIW77uC4a4vrO5iwLktMwS8ryr2i.bhH3SiGHw6PKNBoqxCHLDyc1Pw6EPhwg--">
<span class="cdtr"><span>8. plustream - HD</span></span>
</li> </ul>
</div>
</li><li class="open_submenu active actives">
<div class="_3CT5n_0 L6v6v_0">
<div class="H_ndV_0 fa fa-chevron-down"><span class="arrow-down"></span></div>
<img src="/static/img/spanish.png">
<div class="_1R6bW_0">
<span>
Español <span> CALIDAD HD </span>
</span>
</div>
</div>
<div>
<ul class="sub-tab-lang _3eEG3_0 optm3 hide">
<li class="clili L6v6v_0" data-tr="https://streamwish.to/e/mtb09rms1njz">
<span class="cdtr"><span>1. streamwish - HD</span></span>
</li><li class="clili L6v6v_0" data-tr="https://filemoon.sx/e/r77fu9ez9nsv">
<span class="cdtr"><span>2. filemoon - HD</span></span>
</li><li class="clili L6v6v_0" data-tr="https://voe.sx/e/cepsnqy0qgyo">
<span class="cdtr"><span>3. voesx - HD</span></span>
</li><li class="clili L6v6v_0" data-tr="https://doodstream.com/e/ny5qlz61x9xt">
<span class="cdtr"><span>4. doodstream - HD</span></span>
</li><li class="clili L6v6v_0" data-tr="https://waaw.to/f/hlHhgFkmWHom">
<span class="cdtr"><span>5. netu - HD</span></span>
</li><li class="clili L6v6v_0" data-tr="https://plustream.com/embedb2/DpAUEfJrAHkBAdb.6erU25OAypGXqMugDfQuWU2sTDBKHNQmIxzyq1b2Ma06kb7EgL6d4hdzw8quWDimAGnIvQ--">
<span class="cdtr"><span>6. plustream - HD</span></span>
</li><li class="clili L6v6v_0" data-tr="https://vidhidepro.com/v/lhaueh479t2v">
<span class="cdtr"><span>7. vidhide - HD</span></span>
</li> </ul>
</div>
</li><li class="open_submenu active actives">
<div class="_3CT5n_0 L6v6v_0">
<div class="H_ndV_0 fa fa-chevron-down"><span class="arrow-down"></span></div>
<img src="/static/img/english.png">
<div class="_1R6bW_0">
<span>
Subtitulado <span> CALIDAD HD </span>
</span>
</div>
</div>
<div>
<ul class="sub-tab-lang _3eEG3_0 optm3 hide">
<li class="clili L6v6v_0" data-tr="https://streamwish.to/e/g3fm7ufjpl94">
<span class="cdtr"><span>1. streamwish - HD</span></span>
</li><li class="clili L6v6v_0" data-tr="https://filemoon.sx/e/9zx3emul5wj9">
<span class="cdtr"><span>2. filemoon - HD</span></span>
</li><li class="clili L6v6v_0" data-tr="https://voe.sx/e/x6skjaztjyzz">
<span class="cdtr"><span>3. voesx - HD</span></span>
</li><li class="clili L6v6v_0" data-tr="https://doodstream.com/e/eiq16q3073ti">
<span class="cdtr"><span>4. doodstream - HD</span></span>
</li><li class="clili L6v6v_0" data-tr="https://waaw.to/f/K6XhAGQzZwQ4">
<span class="cdtr"><span>5. netu - HD</span></span>
</li><li class="clili L6v6v_0" data-tr="https://plustream.com/embedb2/atH8nHy1LPPDwfPflwQ8j6UrgPtFt4Vc2fWBCIFeSyh2N_GxZshyFcsaIqhXfSAgyJ44i4ZjCMpAGlqVhcAhrw--">
<span class="cdtr"><span>6. plustream - HD</span></span>
</li><li class="clili L6v6v_0" data-tr="https://vidhidepro.com/v/b81e6qnamtve">
<span class="cdtr"><span>7. vidhide - HD</span></span>
</li> </ul>
</div>
</li> </ul>
<script>
$('.clili').on('click', function () {
const iframe = $('#play-iframe')
iframe.attr('src', null)
$('.clili').removeClass('actives')
$(this).addClass('actives')
const link = $(this).data('tr')
iframe.attr('src', link)
})
</script>
<div class="TPlayerCn BgA">
<div class="EcBgA">
<div class="TPlayer embed_div">
<div class="video Current">
<div class="load-video">
<iframe id="play-iframe" src="https://streamwish.to/e/9icce2ca0yir" scrolling="no" allowfullscreen="" width="560" height="315"
frameborder="0"></iframe>
</div>
</div>
<span class="fa-lightbulb lgtbx-lnk"></span>
</div>
</div>
</div>
<span class="lgtbx"></span>
</div>
<div class="TpRwCont cont">
<main>
<section>
<div class="Top">
<h2 class="omt Title" data-immersive-translate-walked="097fe65c-baa0-4d8e-a26e-26e02f5cafcd" data-immersive-translate-paragraph="1">Películas similar a El Camino: Una película de Breaking Bad</h2>
</div>
<ul class="MovieList Rows">
<li class="TPostMv">
<div class="TPost C hentry">
<a href="/ver-pelicula/simple-minds-everything-is-possible">
<div class="Image">
<span class="Year">2025</span>
<img layout="intrinsic" alt="Simple Minds: Cuando todo es posible" src="https://image.tmdb.org/t/p/original/3rZ88ku1sSbdpFvTl4i5KFXx1Bx.jpg" width="178" height="267" decoding="async" data-nimg="future" loading="lazy" style="color: transparent;">
</div>
<span class="Title block">Simple Minds: Cuando todo es posible</span></a>
</div>
</li><li class="TPostMv">
<div class="TPost C hentry">
<a href="/ver-pelicula/creatures-of-the-night">
<div class="Image">
<span class="Year">2025</span>
<img layout="intrinsic" alt="Creatures of the Night" src="https://image.tmdb.org/t/p/original/rlypLxmi1IHhp1TJqzyazSQT92U.jpg" width="178" height="267" decoding="async" data-nimg="future" loading="lazy" style="color: transparent;">
</div>
<span class="Title block">Creatures of the Night</span></a>
</div>
</li><li class="TPostMv">
<div class="TPost C hentry">
<a href="/ver-pelicula/broke">
<div class="Image">
<span class="Year">2025</span>
<img layout="intrinsic" alt="Empezar De Nuevo" src="https://image.tmdb.org/t/p/original/4I0OOU9ALso0fjavHJRkXjUFMZo.jpg" width="178" height="267" decoding="async" data-nimg="future" loading="lazy" style="color: transparent;">
</div>
<span class="Title block">Empezar De Nuevo</span></a>
</div>
</li><li class="TPostMv">
<div class="TPost C hentry">
<a href="/ver-pelicula/como-entrenar-a-tu-dragon-1087192">
<div class="Image">
<span class="Year">2025</span>
<img layout="intrinsic" alt="Cómo entrenar a tu dragón" src="https://image.tmdb.org/t/p/original/fTpbUIwdsfyIldzYvzQi2K4Icws.jpg" width="178" height="267" decoding="async" data-nimg="future" loading="lazy" style="color: transparent;">
</div>
<span class="Title block">Cómo entrenar a tu dragón</span></a>
</div>
</li> </ul>
</section>
<section class="peli_top_estrenos Wdgt Others">
<div class="Top">
<h2 class="omt Title">Otras películas</h2>
</div>
<ul class="MovieList top">
<li>
<div class="TPost A">
<a href="/ver-pelicula/draculaw">
<div class="Image">
<img alt="Disciples in the Moonlight" layout="intrinsic" src="https://image.tmdb.org/t/p/original/9UAuGzZgTbKUP2bOGBNUqe6atI.jpg" width="80" height="120" decoding="async" data-nimg="future" loading="lazy" style="color: transparent;">
</div>
<div class="Title">Draculaw</div>
</a>
<p class="Info Infowdgt">
<span class="Vote AAIco-star">10</span>
<span class="Time AAIco-access_time">1h 44m</span>
<span class="Date AAIco-date_range">2023</span>
</p>
<p class="mt-1">Draculaw</p>
</div>
</li><li>
<div class="TPost A">
<a href="/ver-pelicula/karaganda-red-mafia">
<div class="Image">
<img alt="Disciples in the Moonlight" layout="intrinsic" src="https://image.tmdb.org/t/p/original/5xArwm4YqRvy01JMf5o0c6zsR8O.jpg" width="80" height="120" decoding="async" data-nimg="future" loading="lazy" style="color: transparent;">
</div>
<div class="Title">*Karaganda*: Red Mafia</div>
</a>
<p class="Info Infowdgt">
<span class="Vote AAIco-star">5</span>
<span class="Time AAIco-access_time">1h 51m</span>
<span class="Date AAIco-date_range">2024</span>
</p>
<p class="mt-1">*Karaganda*: Red Mafia</p>
</div>
</li><li>
<div class="TPost A">
<a href="/ver-pelicula/gone-with-the-dead">
<div class="Image">
<img alt="Disciples in the Moonlight" layout="intrinsic" src="https://image.tmdb.org/t/p/original/27NOZ3OWpnpM8elM6vmXa58iOpY.jpg" width="80" height="120" decoding="async" data-nimg="future" loading="lazy" style="color: transparent;">
</div>
<div class="Title">Gone with the Dead</div>
</a>
<p class="Info Infowdgt">
<span class="Vote AAIco-star">0</span>
<span class="Time AAIco-access_time">1h 36m</span>
<span class="Date AAIco-date_range">1970</span>
</p>
<p class="mt-1">Gone with the Dead</p>
</div>
</li><li>
<div class="TPost A">
<a href="/ver-pelicula/donors-upgrade-your-lifestyle">
<div class="Image">
<img alt="Disciples in the Moonlight" layout="intrinsic" src="https://image.tmdb.org/t/p/original/blcFVvO9Z59DeLKj9OHSjX3X0nZ.jpg" width="80" height="120" decoding="async" data-nimg="future" loading="lazy" style="color: transparent;">
</div>
<div class="Title">Donors: Upgrade Your Lifestyle</div>
</a>
<p class="Info Infowdgt">
<span class="Vote AAIco-star">0</span>
<span class="Time AAIco-access_time"></span>
<span class="Date AAIco-date_range">1970</span>
</p>
<p class="mt-1">Donors: Upgrade Your Lifestyle</p>
</div>
</li><li>
<div class="TPost A">
<a href="/ver-pelicula/chasing-june">
<div class="Image">
<img alt="Disciples in the Moonlight" layout="intrinsic" src="https://image.tmdb.org/t/p/original/zHukeg4iLfWnWxmbCIrEYJbI4uI.jpg" width="80" height="120" decoding="async" data-nimg="future" loading="lazy" style="color: transparent;">
</div>
<div class="Title">Chasing June</div>
</a>
<p class="Info Infowdgt">
<span class="Vote AAIco-star">0</span>
<span class="Time AAIco-access_time">1h 22m</span>
<span class="Date AAIco-date_range">2025</span>
</p>
<p class="mt-1">Chasing June</p>
</div>
</li> </ul>
</section>
</main>
<aside class="widget-area">
<section class="peli_movies widget_languages Wdgt">
<h3 class="widget-title">Películas Destacadas</h3>
<ul class="aa-nv dfx tac" data-tbs="aa-movies">
<li class="fg1"><a href="#aa-tb-1" class="on">Día</a></li>
<li class="fg1"><a href="#aa-tb-2" class="">Semana</a></li>
</ul>
<div class="aa-cn" id="aa-movies">
<div id="aa-tb-1" class="aa-tb on">
<ul class="MovieList">
<li>
<div class="TPost A">
<a href="/ver-pelicula/el-amateur-operacion-venganza">
<div class="Image">
<img alt="Longlegs: Coleccionista de almas" layout="intrinsic" src="https://image.tmdb.org/t/p/original/9WPWF0AmklsKclrXeyKXbQ543ZA.jpg" width="80" height="120" decoding="async" data-nimg="future" loading="lazy" style="color: transparent;">
</div>
<div class="Title">El amateur: Operación venganza</div>
</a>
<p class="Info Infowdgt">
<span class="Vote AAIco-star">6.8</span>
<span class="Time AAIco-access_time">2h 03m</span>
<span class="Date AAIco-date_range">2025</span>
</p>
</div>
</li><li>
<div class="TPost A">
<a href="/ver-pelicula/como-entrenar-a-tu-dragon-1087192">
<div class="Image">
<img alt="Longlegs: Coleccionista de almas" layout="intrinsic" src="https://image.tmdb.org/t/p/original/fTpbUIwdsfyIldzYvzQi2K4Icws.jpg" width="80" height="120" decoding="async" data-nimg="future" loading="lazy" style="color: transparent;">
</div>
<div class="Title">Cómo entrenar a tu dragón</div>
</a>
<p class="Info Infowdgt">
<span class="Vote AAIco-star">7.82</span>
<span class="Time AAIco-access_time">2h 05m</span>
<span class="Date AAIco-date_range">2025</span>
</p>
</div>
</li><li>
<div class="TPost A">
<a href="/ver-pelicula/pecadores">
<div class="Image">
<img alt="Longlegs: Coleccionista de almas" layout="intrinsic" src="https://image.tmdb.org/t/p/original/zdClwqpYQXBSCGGDMdtvsuggwec.jpg" width="80" height="120" decoding="async" data-nimg="future" loading="lazy" style="color: transparent;">
</div>
<div class="Title">Pecadores</div>
</a>
<p class="Info Infowdgt">
<span class="Vote AAIco-star">7.55</span>
<span class="Time AAIco-access_time">2h 18m</span>
<span class="Date AAIco-date_range">2025</span>
</p>
</div>
</li><li>
<div class="TPost A">
<a href="/ver-pelicula/el-contador-2">
<div class="Image">
<img alt="Longlegs: Coleccionista de almas" layout="intrinsic" src="https://image.tmdb.org/t/p/original/jcV9YfjBRo6occxqeWtEiyWwMoG.jpg" width="80" height="120" decoding="async" data-nimg="future" loading="lazy" style="color: transparent;">
</div>
<div class="Title">El contador 2</div>
</a>
<p class="Info Infowdgt">
<span class="Vote AAIco-star">7.22</span>
<span class="Time AAIco-access_time">2h 13m</span>
<span class="Date AAIco-date_range">2025</span>
</p>
</div>
</li><li>
<div class="TPost A">
<a href="/ver-pelicula/depredador-cazador-de-asesinos">
<div class="Image">
<img alt="Longlegs: Coleccionista de almas" layout="intrinsic" src="https://image.tmdb.org/t/p/original/qHDsrBZJRx6ZCO4tocFh3gnbosU.jpg" width="80" height="120" decoding="async" data-nimg="future" loading="lazy" style="color: transparent;">
</div>
<div class="Title">Depredador: Cazador de asesinos</div>
</a>
<p class="Info Infowdgt">
<span class="Vote AAIco-star">7.99</span>
<span class="Time AAIco-access_time">1h 25m</span>
<span class="Date AAIco-date_range">2025</span>
</p>
</div>
</li> </ul>
</div>
<div id="aa-tb-2" class="aa-tb ">
<ul class="MovieList">
<li>
<div class="TPost A">
<a href="/ver-pelicula/el-amateur-operacion-venganza">
<div class="Image">
<img alt="Longlegs: Coleccionista de almas" layout="intrinsic" src="https://image.tmdb.org/t/p/original/9WPWF0AmklsKclrXeyKXbQ543ZA.jpg" width="80" height="120" decoding="async" data-nimg="future" loading="lazy" style="color: transparent;">
</div>
<div class="Title">El amateur: Operación venganza</div>
</a>
<p class="Info Infowdgt">
<span class="Vote AAIco-star">6.8</span>
<span class="Time AAIco-access_time">2h 03m</span>
<span class="Date AAIco-date_range">2025</span>
</p>
</div>
</li><li>
<div class="TPost A">
<a href="/ver-pelicula/como-entrenar-a-tu-dragon-1087192">
<div class="Image">
<img alt="Longlegs: Coleccionista de almas" layout="intrinsic" src="https://image.tmdb.org/t/p/original/fTpbUIwdsfyIldzYvzQi2K4Icws.jpg" width="80" height="120" decoding="async" data-nimg="future" loading="lazy" style="color: transparent;">
</div>
<div class="Title">Cómo entrenar a tu dragón</div>
</a>
<p class="Info Infowdgt">
<span class="Vote AAIco-star">7.82</span>
<span class="Time AAIco-access_time">2h 05m</span>
<span class="Date AAIco-date_range">2025</span>
</p>
</div>
</li><li>
<div class="TPost A">
<a href="/ver-pelicula/el-contador-2">
<div class="Image">
<img alt="Longlegs: Coleccionista de almas" layout="intrinsic" src="https://image.tmdb.org/t/p/original/jcV9YfjBRo6occxqeWtEiyWwMoG.jpg" width="80" height="120" decoding="async" data-nimg="future" loading="lazy" style="color: transparent;">
</div>
<div class="Title">El contador 2</div>
</a>
<p class="Info Infowdgt">
<span class="Vote AAIco-star">7.22</span>
<span class="Time AAIco-access_time">2h 13m</span>
<span class="Date AAIco-date_range">2025</span>
</p>
</div>
</li><li>
<div class="TPost A">
<a href="/ver-pelicula/depredador-cazador-de-asesinos">
<div class="Image">
<img alt="Longlegs: Coleccionista de almas" layout="intrinsic" src="https://image.tmdb.org/t/p/original/qHDsrBZJRx6ZCO4tocFh3gnbosU.jpg" width="80" height="120" decoding="async" data-nimg="future" loading="lazy" style="color: transparent;">
</div>
<div class="Title">Depredador: Cazador de asesinos</div>
</a>
<p class="Info Infowdgt">
<span class="Vote AAIco-star">7.99</span>
<span class="Time AAIco-access_time">1h 25m</span>
<span class="Date AAIco-date_range">2025</span>
</p>
</div>
</li><li>
<div class="TPost A">
<a href="/ver-pelicula/pecadores">
<div class="Image">
<img alt="Longlegs: Coleccionista de almas" layout="intrinsic" src="https://image.tmdb.org/t/p/original/zdClwqpYQXBSCGGDMdtvsuggwec.jpg" width="80" height="120" decoding="async" data-nimg="future" loading="lazy" style="color: transparent;">
</div>
<div class="Title">Pecadores</div>
</a>
<p class="Info Infowdgt">
<span class="Vote AAIco-star">7.55</span>
<span class="Time AAIco-access_time">2h 18m</span>
<span class="Date AAIco-date_range">2025</span>
</p>
</div>
</li> </ul>
</div>
</div>
</section>
</aside>
</div>
<!--aside-->
</div>
<footer class="ft ok">
<div class="cont dfxb alg-cr">
<figure class="logo-ft"><img src="/static/img/cuevana-logo.png" alt="cuevana"></figure>
</div>
<p class="copy tac">© 2025 Cuevana 3 Peliculas Online, Todos los derechos reservados.</p>
</footer>
</div>
<script type="text/javascript" src="/static/cdn/owl.js"></script>
<script type="text/javascript" src="/static/cdn/loadMoreResults.js"></script>
<script type="text/javascript" src="/static/cdn/bct-public.js?v=1.8"></script>
<div style="display:none"><!-- Histats.com (div with counter) --><div id="histats_counter"></div>
<!-- Histats.com START (aync)-->
<script type="text/javascript">var _Hasync= _Hasync|| [];
_Hasync.push(['Histats.start', '1,4682163,4,511,95,18,00000000']);
_Hasync.push(['Histats.fasi', '1']);
_Hasync.push(['Histats.track_hits', '']);
(function() {
var hs = document.createElement('script'); hs.type = 'text/javascript'; hs.async = true;
hs.src = ('//s10.histats.com/js15_as.js');
(document.getElementsByTagName('head')[0] || document.getElementsByTagName('body')[0]).appendChild(hs);
})();</script>
<noscript><a href="/" target="_blank"><img src="//sstatic1.histats.com/0.gif?4682163&101" alt="free tracking" border="0"></a></noscript>
<!-- Histats.com END --></div>
<script type="text/javascript" src="https://platform-api.sharethis.com/js/sharethis.js#property=65af1f192bb34700194aa378&product=sticky-share-buttons&source=platform" async="async"></script>
<script type='text/javascript' src='//jeopardizegrowled.com/dd/96/e5/dd96e5c6537e6beb13142995569b4fc1.js'></script>
<script type='text/javascript' src='//jeopardizegrowled.com/df/8b/64/df8b644060747a92d7efb671469b1ad3.js'></script></body>
</html>

File diff suppressed because it is too large Load diff

File diff suppressed because it is too large Load diff

View file

@ -0,0 +1,151 @@
// Jest Snapshot v1, https://jestjs.io/docs/snapshot-testing
exports[`Cuevana handle el camino 1`] = `
[
{
"countryCode": "mx",
"title": "El Camino: Una película de Breaking Bad",
"url": "https://streamwish.to/e/9icce2ca0yir",
},
{
"countryCode": "mx",
"title": "El Camino: Una película de Breaking Bad",
"url": "https://filemoon.sx/e/fgxxkidqq4jp",
},
{
"countryCode": "mx",
"title": "El Camino: Una película de Breaking Bad",
"url": "https://voe.sx/e/h87m8wyj5x8j",
},
{
"countryCode": "mx",
"title": "El Camino: Una película de Breaking Bad",
"url": "https://doodstream.com/e/ju53ufkqy9hc",
},
{
"countryCode": "mx",
"title": "El Camino: Una película de Breaking Bad",
"url": "https://streamtape.com/e/WgxgBAwOyGfbZxY",
},
{
"countryCode": "mx",
"title": "El Camino: Una película de Breaking Bad",
"url": "https://waaw.to/f/xtG7M9GL2MmV",
},
{
"countryCode": "mx",
"title": "El Camino: Una película de Breaking Bad",
"url": "https://filelions.to/v/tnehp8g7zght",
},
{
"countryCode": "mx",
"title": "El Camino: Una película de Breaking Bad",
"url": "https://plustream.com/embedb2/gHHRwqKdHgF5MYniuxGWnG8j_vIW77uC4a4vrO5iwLktMwS8ryr2i.bhH3SiGHw6PKNBoqxCHLDyc1Pw6EPhwg--",
},
{
"countryCode": "es",
"title": "El Camino: Una película de Breaking Bad",
"url": "https://streamwish.to/e/mtb09rms1njz",
},
{
"countryCode": "es",
"title": "El Camino: Una película de Breaking Bad",
"url": "https://filemoon.sx/e/r77fu9ez9nsv",
},
{
"countryCode": "es",
"title": "El Camino: Una película de Breaking Bad",
"url": "https://voe.sx/e/cepsnqy0qgyo",
},
{
"countryCode": "es",
"title": "El Camino: Una película de Breaking Bad",
"url": "https://doodstream.com/e/ny5qlz61x9xt",
},
{
"countryCode": "es",
"title": "El Camino: Una película de Breaking Bad",
"url": "https://waaw.to/f/hlHhgFkmWHom",
},
{
"countryCode": "es",
"title": "El Camino: Una película de Breaking Bad",
"url": "https://plustream.com/embedb2/DpAUEfJrAHkBAdb.6erU25OAypGXqMugDfQuWU2sTDBKHNQmIxzyq1b2Ma06kb7EgL6d4hdzw8quWDimAGnIvQ--",
},
{
"countryCode": "es",
"title": "El Camino: Una película de Breaking Bad",
"url": "https://vidhidepro.com/v/lhaueh479t2v",
},
]
`;
exports[`Cuevana handle la frontera s1e1 1`] = `
[
{
"countryCode": "es",
"title": "La frontera 1x1",
"url": "https://streamwish.to/e/tpzbrzz7p41k",
},
{
"countryCode": "es",
"title": "La frontera 1x1",
"url": "https://filemoon.sx/e/nhbmj6o6zl0l",
},
{
"countryCode": "es",
"title": "La frontera 1x1",
"url": "https://vidhidepro.com/v/x5w6b0wys1fs",
},
{
"countryCode": "es",
"title": "La frontera 1x1",
"url": "https://voe.sx/e/nfal9zqu9yvy",
},
{
"countryCode": "es",
"title": "La frontera 1x1",
"url": "https://doodstream.com/e/dyvg7ofnnqgi",
},
{
"countryCode": "es",
"title": "La frontera 1x1",
"url": "https://waaw.to/f/goypdL0qGqks",
},
]
`;
exports[`Cuevana handle walking dead s1e1 1`] = `
[
{
"countryCode": "mx",
"title": "The Walking Dead 1x1",
"url": "https://streamwish.to/e/gudk6hvc4qwl",
},
{
"countryCode": "mx",
"title": "The Walking Dead 1x1",
"url": "https://filemoon.sx/e/kp39yor1z0js",
},
{
"countryCode": "mx",
"title": "The Walking Dead 1x1",
"url": "https://voe.sx/e/4ahrkbnofnty",
},
{
"countryCode": "mx",
"title": "The Walking Dead 1x1",
"url": "https://doodstream.com/e/wvk23p39ikyd",
},
{
"countryCode": "mx",
"title": "The Walking Dead 1x1",
"url": "https://streamtape.com/e/qMjrKleBMpCLO0",
},
{
"countryCode": "mx",
"title": "The Walking Dead 1x1",
"url": "https://filelions.to/v/rvyogjvsejlh",
},
]
`;

View file

@ -1,4 +1,5 @@
export * from './CineHDPlus';
export * from './Cuevana';
export * from './Eurostreaming';
export * from './Frembed';
export * from './FrenchCloud';