diff --git a/.github/workflows/process-debates.yaml b/.github/workflows/upload-debates.yaml similarity index 55% rename from .github/workflows/process-debates.yaml rename to .github/workflows/upload-debates.yaml index d864027..5ce87fc 100644 --- a/.github/workflows/process-debates.yaml +++ b/.github/workflows/upload-debates.yaml @@ -22,8 +22,18 @@ jobs: cache-environment: true post-cleanup: 'all' + - name: Setup Rclone + uses: AnimMouse/setup-rclone@v1 + with: + rclone_config: ${{ secrets.RCLONE_CONFIG }} + + - name: Extract gcloud config from rclone config + run: echo "${{ secrets.RCLONE_CONFIG }}" | python parse_rclone_conf.py > gcloud.json + - name: Process Debates - run: python process_debates.py debates.yaml public/debates + env: + CLIENT_SECRETS_FILE: gcloud.json + run: python process_debates.py public/debates --skip-transcription - name: Commit and Push Changes uses: EndBug/add-and-commit@v7 @@ -32,3 +42,9 @@ jobs: add: 'public/debates/' env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + + - name: Refresh Rclone Config + uses: AnimMouse/setup-rclone/update-config@v1 + with: + rclone_config_secret_name: RCLONE_CONFIG + token: ${{ secrets.GITHUB_TOKEN }} diff --git a/cloudfare-corsproxy.json b/cloudfare-corsproxy.js similarity index 100% rename from cloudfare-corsproxy.json rename to cloudfare-corsproxy.js diff --git a/debates.yaml b/debates.yaml deleted file mode 100644 index cd34992..0000000 --- a/debates.yaml +++ /dev/null @@ -1,48 +0,0 @@ -- title: PS vs IL - url: https://sicnoticias.pt/pais/2024-02-05-Debate-PS--IL-na-integra-dc65b6a5 - -- title: Chega vs PAN - url: https://www.rtp.pt/play/p12900/e746061/debates-legislativas-2024 - -- title: PCP vs PAN - url: https://www.rtp.pt/play/p12900/e746296/debates-legislativas-2024 - -- title: BE vs PSD - url: https://sicnoticias.pt/especiais/eleicoes-legislativas/2024-02-06-Debate-entre-BE-e-PSD-Quem-e-que-sabe-salvar-o-SNS--a252ab7c - -- title: Chega vs IL - url: https://www.rtp.pt/play/p12899/e746368/debates-legislativas-2024-sicsic-noticias - -- title: BE vs Livre - url: https://www.rtp.pt/play/p12899/e746909/debates-legislativas-2024-sicsic-noticias - -- title: Livre vs IL - url: https://www.rtp.pt/play/p12901/e746631/debates-legislativas-2024-tvicnn - -- title: Livre vs PS - url: https://www.rtp.pt/play/p12900/e747215/debates-legislativas-2024 - -- title: PSD vs PCP - url: https://www.rtp.pt/play/p12900/e747327/debates-legislativas-2024 - -- title: IL vs PAN - url: https://www.rtp.pt/play/p12899/e747269/debates-legislativas-2024-sicsic-noticias - -- title: Chega vs PCP - url: https://www.rtp.pt/play/p12901/e747268/debates-legislativas-2024-tvicnn - -- title: BE vs Chega - url: https://www.rtp.pt/play/p12900/e747851/debates-legislativas-2024 - -- title: PSD vs Chega - url: https://www.rtp.pt/play/p12900/e747692/debates-legislativas-2024 - -- title: BE vs PCP - url: https://www.rtp.pt/play/p12899/e747442/debates-legislativas-2024-sicsic-noticias - -- title: PSD vs PAN - url: https://www.rtp.pt/play/p12899/e747423/debates-legislativas-2024-sicsic-noticias - -- title: PS vs PAN - url: https://www.rtp.pt/play/p12901/e747338/debates-legislativas-2024-tvicnn - diff --git a/parse_rclone_conf.py b/parse_rclone_conf.py new file mode 100644 index 0000000..af579e2 --- /dev/null +++ b/parse_rclone_conf.py @@ -0,0 +1,26 @@ +import configparser +import json +import base64 + + +def main(): + config = configparser.ConfigParser() + # decode config from base64 stdin + + conf_str = base64.b64decode(input()).decode("utf-8") + config.read_string(conf_str) + conf = config["debates"] + + refresh_token = json.loads(conf["token"])["refresh_token"] + + out = { + "client_id": conf["client_id"], + "client_secret": conf["client_secret"], + "refresh_token": refresh_token, + } + + print(json.dumps(out)) + + +if __name__ == "__main__": + main() diff --git a/process_debates.py b/process_debates.py index 27c8325..9d10b7c 100644 --- a/process_debates.py +++ b/process_debates.py @@ -15,6 +15,8 @@ import webvtt from video_utils import upload_to_gdrive, get_file_ids, direct_link +from speaker_party_conversion import speaker_party_conversion + def convert_to_seconds(time): """ @@ -155,7 +157,7 @@ def slugify(title): Turn a title into a slug """ - return title.lower().replace(" ", "-") + return title.lower().replace(" - ", "-vs-") def transcribe_audio(audio_path, output_root, mp3_direct_link): @@ -213,12 +215,18 @@ def process_debate(*, title, url, output_root, gdrive_service, skip_transcriptio Process a debate from the input data """ + slug = slugify(title) + rev_slug = "-".join(slug.split("-")[::-1]) + + # check if reverse slug exists, if so, slug is the reverse slug + if (output_root / f"{rev_slug}.json").exists(): + slug = rev_slug + m3u8_url, thumbnail_url = find_m3u8_and_thumbnail(url) if m3u8_url is None or thumbnail_url is None: logging.warning(f"Could not find m3u8 or thumbnail for {url}") return {"title": title, "thumbnail": thumbnail_url, "slug": slug} - slug = slugify(title) audio_path = output_root / f"media/{slug}.mp3" if "rtp.pt" in url: @@ -262,8 +270,52 @@ def process_debate(*, title, url, output_root, gdrive_service, skip_transcriptio return {"title": title, "thumbnail": thumbnail_url, "slug": slug} +def scrape_page(url): + debates = {} + + page = requests.get(url) + page = bs4.BeautifulSoup(page.text, "html.parser") + + # find div with id "listProgramsContent" + div = page.find("div", id="listProgramsContent") + + # find
tags -> one per "episode" + articles = div.find_all("article") + for article in articles: + title = article.find("h4", class_="episode-title").text.strip() + title = " - ".join([speaker_party_conversion[s.strip()] for s in title.split(" - ")]) + href = article.find("a", class_="episode-item")["href"] + + if href is not None: + debates[title] = "https://www.rtp.pt" + href + + return debates + + +def scrape_debate_links(): + ROOT_URLS = [ + "https://www.rtp.pt/play/p12900/debates-legislativas-2024", + "https://www.rtp.pt/play/p12899/debates-legislativas-2024-sicsic-noticias", + "https://www.rtp.pt/play/p12901/debates-legislativas-2024-tvicnn", + ] + + debates = {} + + for url in ROOT_URLS: + new_debates = scrape_page(url) + debates.update(new_debates) + + # get a random url from new_debates, for the second pass + # (because one of the episodes will be selected and not have a link) + random_url = list(new_debates.values())[0] + + new_debates = scrape_page(random_url) + debates.update(new_debates) + + return [{"title": k, "url": v} for k,v in debates.items()] + + def main(args): - input_path = Path(args.input) output_root = Path(args.output_root) output_root.mkdir(exist_ok=True, parents=True) @@ -277,19 +329,11 @@ def main(args): else: creds, gdrive_service = None, None - with open(input_path, "r") as f: - data = yaml.safe_load(f) - master_json = [] - for debate in data: - output_path = output_root / f"{debate}.json" - - if output_path.exists() and not args.force: - continue - - if debate is None: - continue + debates = scrape_debate_links() + master_json = [] + for debate in debates: summary = process_debate(**debate, output_root=output_root, skip_transcription=args.skip_transcription, gdrive_service=gdrive_service, skip_upload=args.skip_upload) master_json.append(summary) diff --git a/public/debates/be-vs-chega.json b/public/debates/be-vs-chega.json index 7fa9e8b..9689e65 100644 --- a/public/debates/be-vs-chega.json +++ b/public/debates/be-vs-chega.json @@ -1,6 +1,6 @@ { "slug": "be-vs-chega", - "title": "BE vs Chega", + "title": "Chega - BE", "original_url": "https://www.rtp.pt/play/p12900/e747851/debates-legislativas-2024", "audio_url": "https://drive.google.com/uc?id=1Tk9gV0e_r_H638ZQsB0ume7r8K-ZzwRP" } \ No newline at end of file diff --git a/public/debates/be-vs-livre.json b/public/debates/be-vs-livre.json index e505cb8..c560105 100644 --- a/public/debates/be-vs-livre.json +++ b/public/debates/be-vs-livre.json @@ -1,6 +1,6 @@ { "slug": "be-vs-livre", - "title": "BE vs Livre", + "title": "BE - Livre", "original_url": "https://www.rtp.pt/play/p12899/e746909/debates-legislativas-2024-sicsic-noticias", "audio_url": "https://drive.google.com/uc?id=18VRopVy-VbjNLKYkUU9TRtyo2JdGowv0" } \ No newline at end of file diff --git a/public/debates/be-vs-pcp.json b/public/debates/be-vs-pcp.json index f3fa94a..4869e63 100644 --- a/public/debates/be-vs-pcp.json +++ b/public/debates/be-vs-pcp.json @@ -1,6 +1,6 @@ { "slug": "be-vs-pcp", - "title": "BE vs PCP", + "title": "BE - PCP", "original_url": "https://www.rtp.pt/play/p12899/e747442/debates-legislativas-2024-sicsic-noticias", "audio_url": "https://drive.google.com/uc?id=1-A5Q4Jc6FY4TN2kKbN16gKlh2SV1tfX5" } \ No newline at end of file diff --git a/public/debates/be-vs-psd.json b/public/debates/be-vs-psd.json index 3f8c436..08912d2 100644 --- a/public/debates/be-vs-psd.json +++ b/public/debates/be-vs-psd.json @@ -1,6 +1,6 @@ { "slug": "be-vs-psd", - "title": "BE vs PSD", - "original_url": "https://sicnoticias.pt/especiais/eleicoes-legislativas/2024-02-06-Debate-entre-BE-e-PSD-Quem-e-que-sabe-salvar-o-SNS--a252ab7c", + "title": "PSD - BE", + "original_url": "https://www.rtp.pt/play/p12901/e746363/debates-legislativas-2024-tvicnn", "audio_url": "https://drive.google.com/uc?id=1EIbaHmM2Xk-RFsIgYVf9BsH-xgrnntTt" } \ No newline at end of file diff --git a/public/debates/chega-vs-il.json b/public/debates/chega-vs-il.json index 9d70650..ad4e649 100644 --- a/public/debates/chega-vs-il.json +++ b/public/debates/chega-vs-il.json @@ -1,6 +1,6 @@ { "slug": "chega-vs-il", - "title": "Chega vs IL", + "title": "Chega - IL", "original_url": "https://www.rtp.pt/play/p12899/e746368/debates-legislativas-2024-sicsic-noticias", "audio_url": "https://drive.google.com/uc?id=1Z_VuncGFLxSYo_pV2irq-9hPydvN1o8-" } \ No newline at end of file diff --git a/public/debates/chega-vs-pan.json b/public/debates/chega-vs-pan.json index 8c12872..41e20ad 100644 --- a/public/debates/chega-vs-pan.json +++ b/public/debates/chega-vs-pan.json @@ -1,6 +1,6 @@ { "slug": "chega-vs-pan", - "title": "Chega vs PAN", + "title": "Chega - PAN", "original_url": "https://www.rtp.pt/play/p12900/e746061/debates-legislativas-2024", "audio_url": "https://drive.google.com/uc?id=16V6_OfgkVBkZl4cVW29QUbPZtfg5jNiQ" } \ No newline at end of file diff --git a/public/debates/chega-vs-pcp.json b/public/debates/chega-vs-pcp.json index c2de781..be5498e 100644 --- a/public/debates/chega-vs-pcp.json +++ b/public/debates/chega-vs-pcp.json @@ -1,6 +1,6 @@ { "slug": "chega-vs-pcp", - "title": "Chega vs PCP", + "title": "Chega - PCP", "original_url": "https://www.rtp.pt/play/p12901/e747268/debates-legislativas-2024-tvicnn", "audio_url": "https://drive.google.com/uc?id=1aa_ln4ZOb6gDvh3iorstQ-GS2lZE6Hyj" } \ No newline at end of file diff --git a/public/debates/il-vs-pan.json b/public/debates/il-vs-pan.json index a428bba..001f8c6 100644 --- a/public/debates/il-vs-pan.json +++ b/public/debates/il-vs-pan.json @@ -1,6 +1,6 @@ { "slug": "il-vs-pan", - "title": "IL vs PAN", + "title": "IL - PAN", "original_url": "https://www.rtp.pt/play/p12899/e747269/debates-legislativas-2024-sicsic-noticias", "audio_url": "https://drive.google.com/uc?id=1tWrPr9c-oQz202wU0jjnsqoMkxIrnLtW" } \ No newline at end of file diff --git a/public/debates/livre-vs-il.json b/public/debates/livre-vs-il.json index 15a14fe..937d314 100644 --- a/public/debates/livre-vs-il.json +++ b/public/debates/livre-vs-il.json @@ -1,6 +1,6 @@ { "slug": "livre-vs-il", - "title": "Livre vs IL", + "title": "IL - Livre", "original_url": "https://www.rtp.pt/play/p12901/e746631/debates-legislativas-2024-tvicnn", "audio_url": "https://drive.google.com/uc?id=1ExCAfb6cx3Cm3LyduuC3F9F1HBUHGjVL" } \ No newline at end of file diff --git a/public/debates/livre-vs-pan.json b/public/debates/livre-vs-pan.json new file mode 100644 index 0000000..8542b9e --- /dev/null +++ b/public/debates/livre-vs-pan.json @@ -0,0 +1,6 @@ +{ + "slug": "livre-vs-pan", + "title": "Livre - PAN", + "original_url": "https://www.rtp.pt/play/p12900/e748150/debates-legislativas-2024", + "audio_url": "https://drive.google.com/uc?id=1b65VelhrrUcAiaZu6lAHgUV5SbRLEDrk" +} \ No newline at end of file diff --git a/public/debates/livre-vs-ps.json b/public/debates/livre-vs-ps.json index ef18179..50d0396 100644 --- a/public/debates/livre-vs-ps.json +++ b/public/debates/livre-vs-ps.json @@ -1,6 +1,6 @@ { "slug": "livre-vs-ps", - "title": "Livre vs PS", + "title": "PS - Livre", "original_url": "https://www.rtp.pt/play/p12900/e747215/debates-legislativas-2024", "audio_url": "https://drive.google.com/uc?id=1204EOcVfCSOwsm_W1BMIV-LTJtuFWI7F" } \ No newline at end of file diff --git a/public/debates/media/livre-vs-pan.m3u8 b/public/debates/media/livre-vs-pan.m3u8 new file mode 100644 index 0000000..3746922 --- /dev/null +++ b/public/debates/media/livre-vs-pan.m3u8 @@ -0,0 +1,389 @@ +#EXTM3U +#EXT-X-VERSION:3 +#EXT-X-TARGETDURATION:20 +#EXT-X-MEDIA-SEQUENCE:0 +#EXTINF:18.493333, +https://worker-little-base-2714.mail-2e4.workers.dev/?https%3A%2F%2Fdrive.google.com%2Fuc%3Fid%3D1VXw9iu6ci4gnCT5lZ8ZtUzdNWsKnSCsu +#EXTINF:10.061333, +https://worker-little-base-2714.mail-2e4.workers.dev/?https%3A%2F%2Fdrive.google.com%2Fuc%3Fid%3D1PCA4qg6DKxfOEG20D1f22H38SmaIKt0L +#EXTINF:5.917333, +https://worker-little-base-2714.mail-2e4.workers.dev/?https%3A%2F%2Fdrive.google.com%2Fuc%3Fid%3D1GDN0yoEsp8e6MrHjBoVLEyKln7bXo8Gi +#EXTINF:10.072, +https://worker-little-base-2714.mail-2e4.workers.dev/?https%3A%2F%2Fdrive.google.com%2Fuc%3Fid%3D17d1fVzK6zPu98WOM44jzQCc-NvAxM4id +#EXTINF:10.066667, +https://worker-little-base-2714.mail-2e4.workers.dev/?https%3A%2F%2Fdrive.google.com%2Fuc%3Fid%3D1_w56hBxcq9pS6wG8wSJckT5wtHQlGxiS +#EXTINF:10.061333, +https://worker-little-base-2714.mail-2e4.workers.dev/?https%3A%2F%2Fdrive.google.com%2Fuc%3Fid%3D1B68Rc5BzgsMlb13OXtW3S9e7N0LEEeW7 +#EXTINF:8.877333, +https://worker-little-base-2714.mail-2e4.workers.dev/?https%3A%2F%2Fdrive.google.com%2Fuc%3Fid%3D102SbLxMBBj38PQzmJXm9-DyexDUzBdN4 +#EXTINF:15.026667, +https://worker-little-base-2714.mail-2e4.workers.dev/?https%3A%2F%2Fdrive.google.com%2Fuc%3Fid%3D1NNSqBVvQuBh4j5jSq60Lv6zJcDWsC5Vo +#EXTINF:10.072, +https://worker-little-base-2714.mail-2e4.workers.dev/?https%3A%2F%2Fdrive.google.com%2Fuc%3Fid%3D1jLyfWLH7-LzzIGu8ojoQyD_vV6nvHvp_ +#EXTINF:9.626667, +https://worker-little-base-2714.mail-2e4.workers.dev/?https%3A%2F%2Fdrive.google.com%2Fuc%3Fid%3D1lz-S7S4ONhBa8w1E_6-CVskcvdrvHsTu +#EXTINF:10.069333, +https://worker-little-base-2714.mail-2e4.workers.dev/?https%3A%2F%2Fdrive.google.com%2Fuc%3Fid%3D1I04GaFay9ISOIUsAZlTpX4tiU2FkMG5B +#EXTINF:10.064, +https://worker-little-base-2714.mail-2e4.workers.dev/?https%3A%2F%2Fdrive.google.com%2Fuc%3Fid%3D1o0iqSJEZqUJfLnZVUKWZQ33KDW-oP5ej +#EXTINF:10.08, +https://worker-little-base-2714.mail-2e4.workers.dev/?https%3A%2F%2Fdrive.google.com%2Fuc%3Fid%3D1Fb__-Nm3u-E64quIQhwt1ZKpUGOtCQH7 +#EXTINF:10.074667, +https://worker-little-base-2714.mail-2e4.workers.dev/?https%3A%2F%2Fdrive.google.com%2Fuc%3Fid%3D1YJ6GWA4Sa90H8L6GsWQXrhU-uVe1Jp_- +#EXTINF:10.069333, +https://worker-little-base-2714.mail-2e4.workers.dev/?https%3A%2F%2Fdrive.google.com%2Fuc%3Fid%3D1p2vpxE0FqQurocXrkMAFxqvAL_mUt430 +#EXTINF:8.104, +https://worker-little-base-2714.mail-2e4.workers.dev/?https%3A%2F%2Fdrive.google.com%2Fuc%3Fid%3D1HwYtkOoVX-5SJx_ZAvFpoNnsRjQPABHv +#EXTINF:10.061333, +https://worker-little-base-2714.mail-2e4.workers.dev/?https%3A%2F%2Fdrive.google.com%2Fuc%3Fid%3D1T2v5q8s-rZeIDu6J_T1cNSvPp8tXh0N0 +#EXTINF:10.077333, +https://worker-little-base-2714.mail-2e4.workers.dev/?https%3A%2F%2Fdrive.google.com%2Fuc%3Fid%3D1ZsXlGfwRbWd26We6zd30Q5V2p0dkUiYi +#EXTINF:10.072, +https://worker-little-base-2714.mail-2e4.workers.dev/?https%3A%2F%2Fdrive.google.com%2Fuc%3Fid%3D1pSiwak5JvGZ1R3nGOWjKGbCOGvAwxR2P +#EXTINF:10.066667, +https://worker-little-base-2714.mail-2e4.workers.dev/?https%3A%2F%2Fdrive.google.com%2Fuc%3Fid%3D1oZBjKjUcoKFThGCN69UGGZC27LASyHrC +#EXTINF:10.061333, +https://worker-little-base-2714.mail-2e4.workers.dev/?https%3A%2F%2Fdrive.google.com%2Fuc%3Fid%3D1iRodLH5VmOg7mYxpAWr6MpLygrD_A-qU +#EXTINF:10.077333, +https://worker-little-base-2714.mail-2e4.workers.dev/?https%3A%2F%2Fdrive.google.com%2Fuc%3Fid%3D1R5Ihnze7QOEeWGX-oY3X1IO0MLWZEkBb +#EXTINF:10.072, +https://worker-little-base-2714.mail-2e4.workers.dev/?https%3A%2F%2Fdrive.google.com%2Fuc%3Fid%3D1aDpQYfqkjxAFCjMTk5vEo9xD0craAFON +#EXTINF:10.066667, +https://worker-little-base-2714.mail-2e4.workers.dev/?https%3A%2F%2Fdrive.google.com%2Fuc%3Fid%3D194jNoHbh9OwTA5Cc82I0yD2I7vf1qdui +#EXTINF:8.261333, +https://worker-little-base-2714.mail-2e4.workers.dev/?https%3A%2F%2Fdrive.google.com%2Fuc%3Fid%3D15pLMhUJmrkD5zVhfkqBWhdFpQi1mtJMA +#EXTINF:10.069333, +https://worker-little-base-2714.mail-2e4.workers.dev/?https%3A%2F%2Fdrive.google.com%2Fuc%3Fid%3D1J8ZU-dolon8eD5-upzdIHjbZcJfHoh2K +#EXTINF:10.064, +https://worker-little-base-2714.mail-2e4.workers.dev/?https%3A%2F%2Fdrive.google.com%2Fuc%3Fid%3D1uNvZV9bErrRocEy1zV-YNuEn6As94xY0 +#EXTINF:9.76, +https://worker-little-base-2714.mail-2e4.workers.dev/?https%3A%2F%2Fdrive.google.com%2Fuc%3Fid%3D1Xm59O3JqwUEHP1VZatP1fuQltz9dYzD_ +#EXTINF:10.074667, +https://worker-little-base-2714.mail-2e4.workers.dev/?https%3A%2F%2Fdrive.google.com%2Fuc%3Fid%3D1OiSXtV4db34gS5Ancx6pAHrnv3Vx9GCg +#EXTINF:6.589333, +https://worker-little-base-2714.mail-2e4.workers.dev/?https%3A%2F%2Fdrive.google.com%2Fuc%3Fid%3D1HVhb1auzZoQhDhAcUe-6r2Dmumf8WIa5 +#EXTINF:15.021333, +https://worker-little-base-2714.mail-2e4.workers.dev/?https%3A%2F%2Fdrive.google.com%2Fuc%3Fid%3D13g8VEl6dPHvwiklFw0NtqZmXUoNhmiIP +#EXTINF:10.066667, +https://worker-little-base-2714.mail-2e4.workers.dev/?https%3A%2F%2Fdrive.google.com%2Fuc%3Fid%3D103KKALV7StXG7orv59X1TLeZIP-Iy44y +#EXTINF:10.061333, +https://worker-little-base-2714.mail-2e4.workers.dev/?https%3A%2F%2Fdrive.google.com%2Fuc%3Fid%3D1jv7ePsRuQfNZrOdZS7jkOG6OmnKDtGyO +#EXTINF:7.717333, +https://worker-little-base-2714.mail-2e4.workers.dev/?https%3A%2F%2Fdrive.google.com%2Fuc%3Fid%3D1cyUZANrVedJFJ9QbRhjUbjwxMG6SnFaz +#EXTINF:10.08, +https://worker-little-base-2714.mail-2e4.workers.dev/?https%3A%2F%2Fdrive.google.com%2Fuc%3Fid%3D19XbEoPl9S0Re_Fxla5_CT3eDGuL2daQ3 +#EXTINF:7.474667, +https://worker-little-base-2714.mail-2e4.workers.dev/?https%3A%2F%2Fdrive.google.com%2Fuc%3Fid%3D1nDDmI2oaware4m1_lbFLrg2tjIk0CVCQ +#EXTINF:10.072, +https://worker-little-base-2714.mail-2e4.workers.dev/?https%3A%2F%2Fdrive.google.com%2Fuc%3Fid%3D1240zet8ebD4rHn3U8rkXXF2FWrnzVxTO +#EXTINF:10.066667, +https://worker-little-base-2714.mail-2e4.workers.dev/?https%3A%2F%2Fdrive.google.com%2Fuc%3Fid%3D1BlCtFTIfbXxQY-cPvf3ZbhwJ3klhZnMW +#EXTINF:19.021333, +https://worker-little-base-2714.mail-2e4.workers.dev/?https%3A%2F%2Fdrive.google.com%2Fuc%3Fid%3D1aSywni2ZCLlLGVQofn-ugaEevS1BAZOM +#EXTINF:10.077333, +https://worker-little-base-2714.mail-2e4.workers.dev/?https%3A%2F%2Fdrive.google.com%2Fuc%3Fid%3D1hSb4wcYjONZYfYplkUpBKBbtU5jcW2eh +#EXTINF:10.072, +https://worker-little-base-2714.mail-2e4.workers.dev/?https%3A%2F%2Fdrive.google.com%2Fuc%3Fid%3D1tClz0U85IIrRgeWEL2qcErZlh5o4XK5J +#EXTINF:8.306667, +https://worker-little-base-2714.mail-2e4.workers.dev/?https%3A%2F%2Fdrive.google.com%2Fuc%3Fid%3D1zyitsOqo9k8Vmp1rV-zGs98wN4BBhKs3 +#EXTINF:10.072, +https://worker-little-base-2714.mail-2e4.workers.dev/?https%3A%2F%2Fdrive.google.com%2Fuc%3Fid%3D1ZHhnb3AQdfj61V4jnnFbK6OqUU15rR_5 +#EXTINF:10.066667, +https://worker-little-base-2714.mail-2e4.workers.dev/?https%3A%2F%2Fdrive.google.com%2Fuc%3Fid%3D10QM6hsYXJBapvvT5i4uqJ_ZOlK3v1OT9 +#EXTINF:9.901333, +https://worker-little-base-2714.mail-2e4.workers.dev/?https%3A%2F%2Fdrive.google.com%2Fuc%3Fid%3D1-Mom3FtlOZ0EtcWP96Rqk-KyRMMxeIfD +#EXTINF:4.386667, +https://worker-little-base-2714.mail-2e4.workers.dev/?https%3A%2F%2Fdrive.google.com%2Fuc%3Fid%3D1ugL5YqfH3_29EzD5dnAcOpmOAL8lJozV +#EXTINF:10.077333, +https://worker-little-base-2714.mail-2e4.workers.dev/?https%3A%2F%2Fdrive.google.com%2Fuc%3Fid%3D1_MdemLJdfIijwSdqIRc3ERUh0hV2LWJh +#EXTINF:10.072, +https://worker-little-base-2714.mail-2e4.workers.dev/?https%3A%2F%2Fdrive.google.com%2Fuc%3Fid%3D1JbKJVx7xKseq7TWcSAliyimJZjomJVjk +#EXTINF:10.066667, +https://worker-little-base-2714.mail-2e4.workers.dev/?https%3A%2F%2Fdrive.google.com%2Fuc%3Fid%3D1g34saMvaE10hJP98bGpB13eRW7HD2-H2 +#EXTINF:10.061333, +https://worker-little-base-2714.mail-2e4.workers.dev/?https%3A%2F%2Fdrive.google.com%2Fuc%3Fid%3D1x7sB0aMEVcNii8tgXgtKFDcrmqwsINwI +#EXTINF:9.157333, +https://worker-little-base-2714.mail-2e4.workers.dev/?https%3A%2F%2Fdrive.google.com%2Fuc%3Fid%3D1ggiKgndVzy0N8r31JqV22v2IvuB-pi23 +#EXTINF:10.069333, +https://worker-little-base-2714.mail-2e4.workers.dev/?https%3A%2F%2Fdrive.google.com%2Fuc%3Fid%3D1kxncLHb7S6nEN8a-6FEfZbk7Lz6JnY_z +#EXTINF:10.064, +https://worker-little-base-2714.mail-2e4.workers.dev/?https%3A%2F%2Fdrive.google.com%2Fuc%3Fid%3D1gxiZFvKeKeLRTsG1ZT9XswaMmd9No6y5 +#EXTINF:17.44, +https://worker-little-base-2714.mail-2e4.workers.dev/?https%3A%2F%2Fdrive.google.com%2Fuc%3Fid%3D1O73PKUffi7HVbC9t2GFYAvsZG-lBbgh0 +#EXTINF:7.914667, +https://worker-little-base-2714.mail-2e4.workers.dev/?https%3A%2F%2Fdrive.google.com%2Fuc%3Fid%3D1Xzo2t-EFNeCVN93ao7hwtGHhXI40Ll5n +#EXTINF:10.064, +https://worker-little-base-2714.mail-2e4.workers.dev/?https%3A%2F%2Fdrive.google.com%2Fuc%3Fid%3D1z7ocZc-PBiZEcbV4lCpvoPysCaH2veDs +#EXTINF:10.08, +https://worker-little-base-2714.mail-2e4.workers.dev/?https%3A%2F%2Fdrive.google.com%2Fuc%3Fid%3D1E6APD_psZjKUlToDEC1RtoWZVrWueGJl +#EXTINF:10.074667, +https://worker-little-base-2714.mail-2e4.workers.dev/?https%3A%2F%2Fdrive.google.com%2Fuc%3Fid%3D1-c9LkVj-p4Fb3HPafW8ZTgRXYc037IEx +#EXTINF:10.069333, +https://worker-little-base-2714.mail-2e4.workers.dev/?https%3A%2F%2Fdrive.google.com%2Fuc%3Fid%3D1FBlBHq2taTk6xWL4wnyWLLhmiF08CFcG +#EXTINF:10.064, +https://worker-little-base-2714.mail-2e4.workers.dev/?https%3A%2F%2Fdrive.google.com%2Fuc%3Fid%3D1Xn1m09TYoWY5mkbXW_wKpjBWWlas7wO6 +#EXTINF:10.08, +https://worker-little-base-2714.mail-2e4.workers.dev/?https%3A%2F%2Fdrive.google.com%2Fuc%3Fid%3D17HOVaadtz4CPKG-rMBiqcDU05vqwMqWC +#EXTINF:10.074667, +https://worker-little-base-2714.mail-2e4.workers.dev/?https%3A%2F%2Fdrive.google.com%2Fuc%3Fid%3D1H2Vm_8u3Yq6F1Yq5uApZci6knOe3kUzD +#EXTINF:10.069333, +https://worker-little-base-2714.mail-2e4.workers.dev/?https%3A%2F%2Fdrive.google.com%2Fuc%3Fid%3D1donoQEonu_VNx0GSJ0dllEZ4_u-rjtSA +#EXTINF:9.024, +https://worker-little-base-2714.mail-2e4.workers.dev/?https%3A%2F%2Fdrive.google.com%2Fuc%3Fid%3D1ZBmpgMgKAyi2eDjlAyWrpTZhb6xuXRlj +#EXTINF:10.064, +https://worker-little-base-2714.mail-2e4.workers.dev/?https%3A%2F%2Fdrive.google.com%2Fuc%3Fid%3D1uy2_nH99AD8oT77uVycX09YWeqfE5FUt +#EXTINF:10.08, +https://worker-little-base-2714.mail-2e4.workers.dev/?https%3A%2F%2Fdrive.google.com%2Fuc%3Fid%3D1Ii6JV-M-h7V8vR_h8AD4lsrvPz7wR21J +#EXTINF:10.074667, +https://worker-little-base-2714.mail-2e4.workers.dev/?https%3A%2F%2Fdrive.google.com%2Fuc%3Fid%3D18mJ30SNKub8H1gR0e8Fwqxl5SweoaABw +#EXTINF:10.069333, +https://worker-little-base-2714.mail-2e4.workers.dev/?https%3A%2F%2Fdrive.google.com%2Fuc%3Fid%3D1wgzy36hNoxfzu5H-J6jqsr0uted_XNS1 +#EXTINF:10.064, +https://worker-little-base-2714.mail-2e4.workers.dev/?https%3A%2F%2Fdrive.google.com%2Fuc%3Fid%3D1E4JHG16mdjvitR2gDF_CRyFMSXg3sYmj +#EXTINF:10.08, +https://worker-little-base-2714.mail-2e4.workers.dev/?https%3A%2F%2Fdrive.google.com%2Fuc%3Fid%3D1yCXhH_sExiE9fiXvoXTVS4f2jZbpqYnm +#EXTINF:10.074667, +https://worker-little-base-2714.mail-2e4.workers.dev/?https%3A%2F%2Fdrive.google.com%2Fuc%3Fid%3D1GrjpIrobnkw4avHnGuObDHnEMntoiZzM +#EXTINF:10.069333, +https://worker-little-base-2714.mail-2e4.workers.dev/?https%3A%2F%2Fdrive.google.com%2Fuc%3Fid%3D1TNzVpNAXbhGn-i5Z6rXyJn3iNA2JqabP +#EXTINF:8.624, +https://worker-little-base-2714.mail-2e4.workers.dev/?https%3A%2F%2Fdrive.google.com%2Fuc%3Fid%3D1TUD_Oxdh5yVnOEzBRETQ7EGWaI6sjH5V +#EXTINF:10.069333, +https://worker-little-base-2714.mail-2e4.workers.dev/?https%3A%2F%2Fdrive.google.com%2Fuc%3Fid%3D10T1p8rbWzXjCjOQwMyyL0LeutxaJyLSp +#EXTINF:8.704, +https://worker-little-base-2714.mail-2e4.workers.dev/?https%3A%2F%2Fdrive.google.com%2Fuc%3Fid%3D1pf_RxhzE2VKbQAwiSths2Z-Wgkl_4HJH +#EXTINF:10.064, +https://worker-little-base-2714.mail-2e4.workers.dev/?https%3A%2F%2Fdrive.google.com%2Fuc%3Fid%3D1Vi6AJXbkWsoBkzNSzTMiicRRp5U1ROle +#EXTINF:10.08, +https://worker-little-base-2714.mail-2e4.workers.dev/?https%3A%2F%2Fdrive.google.com%2Fuc%3Fid%3D1eAzieAWNnrnQtbICOTSy_kU1bhx9_rk9 +#EXTINF:8.314667, +https://worker-little-base-2714.mail-2e4.workers.dev/?https%3A%2F%2Fdrive.google.com%2Fuc%3Fid%3D1RTlp7ViOOzJiBlZTs7fdrlP1oGX13fDE +#EXTINF:10.08, +https://worker-little-base-2714.mail-2e4.workers.dev/?https%3A%2F%2Fdrive.google.com%2Fuc%3Fid%3D1dEV4-iRSvwNcQaoeuYWXo0YcDkxjPMZt +#EXTINF:10.074667, +https://worker-little-base-2714.mail-2e4.workers.dev/?https%3A%2F%2Fdrive.google.com%2Fuc%3Fid%3D1-lOIWmMzeNCk1NZ48No8bz9iq23aZLr3 +#EXTINF:10.069333, +https://worker-little-base-2714.mail-2e4.workers.dev/?https%3A%2F%2Fdrive.google.com%2Fuc%3Fid%3D160IfdMkQZxxcoGi2XHcMBTcmnq3p1dID +#EXTINF:10.064, +https://worker-little-base-2714.mail-2e4.workers.dev/?https%3A%2F%2Fdrive.google.com%2Fuc%3Fid%3D1h3bF5iBdTcDWAkgTojEUekF3H0937-_v +#EXTINF:10.08, +https://worker-little-base-2714.mail-2e4.workers.dev/?https%3A%2F%2Fdrive.google.com%2Fuc%3Fid%3D15bLCqrWA2exBNeju2ZMPKfLVxluKNMLJ +#EXTINF:10.074667, +https://worker-little-base-2714.mail-2e4.workers.dev/?https%3A%2F%2Fdrive.google.com%2Fuc%3Fid%3D1BZe09mPDrYxXp27t1R5ZgNn95wi44eAv +#EXTINF:10.069333, +https://worker-little-base-2714.mail-2e4.workers.dev/?https%3A%2F%2Fdrive.google.com%2Fuc%3Fid%3D1adMFIL04jcIWczCd4WZvQqm_5vXvMVRb +#EXTINF:10.064, +https://worker-little-base-2714.mail-2e4.workers.dev/?https%3A%2F%2Fdrive.google.com%2Fuc%3Fid%3D1qqnUn3P7HsaFgj5UkWSqoAL5gGA3ZBpc +#EXTINF:10.08, +https://worker-little-base-2714.mail-2e4.workers.dev/?https%3A%2F%2Fdrive.google.com%2Fuc%3Fid%3D1slwc9VQxb2bSAHysyd_Ked-iMVYZb5fw +#EXTINF:10.074667, +https://worker-little-base-2714.mail-2e4.workers.dev/?https%3A%2F%2Fdrive.google.com%2Fuc%3Fid%3D1LU8QqoILMnTZMTC7htPK83d8mz9NNzuj +#EXTINF:10.069333, +https://worker-little-base-2714.mail-2e4.workers.dev/?https%3A%2F%2Fdrive.google.com%2Fuc%3Fid%3D1MIkaefa0jBSr6ELYtrpLZvcNehceO2jV +#EXTINF:19.544, +https://worker-little-base-2714.mail-2e4.workers.dev/?https%3A%2F%2Fdrive.google.com%2Fuc%3Fid%3D1tQczxv7rRqXEE3aQ-4H63iPnH7C2uCBf +#EXTINF:10.066667, +https://worker-little-base-2714.mail-2e4.workers.dev/?https%3A%2F%2Fdrive.google.com%2Fuc%3Fid%3D1PsvSZCXen-WjSIaADuksapUWxRM_1EQC +#EXTINF:10.061333, +https://worker-little-base-2714.mail-2e4.workers.dev/?https%3A%2F%2Fdrive.google.com%2Fuc%3Fid%3D12QBWyPHzkF7GKtLPRnvIAzGNju6IGSq0 +#EXTINF:10.077333, +https://worker-little-base-2714.mail-2e4.workers.dev/?https%3A%2F%2Fdrive.google.com%2Fuc%3Fid%3D1XaaSoZdlfqKJrQY768gdLqnPbW7x_04Z +#EXTINF:8.912, +https://worker-little-base-2714.mail-2e4.workers.dev/?https%3A%2F%2Fdrive.google.com%2Fuc%3Fid%3D1x8EyzOkRLLFURhmgArcLFgzCmNEF84gZ +#EXTINF:10.08, +https://worker-little-base-2714.mail-2e4.workers.dev/?https%3A%2F%2Fdrive.google.com%2Fuc%3Fid%3D1MXVNTvEvv2D-tbs4MpoSAvWVkHcljl8J +#EXTINF:10.074667, +https://worker-little-base-2714.mail-2e4.workers.dev/?https%3A%2F%2Fdrive.google.com%2Fuc%3Fid%3D1DlyDR2iobk9PtiUikI5dM7TSCNX-moPP +#EXTINF:10.069333, +https://worker-little-base-2714.mail-2e4.workers.dev/?https%3A%2F%2Fdrive.google.com%2Fuc%3Fid%3D1xayhd4NzQ8b9FvhVW9aLI8jkho4_ssVw +#EXTINF:10.064, +https://worker-little-base-2714.mail-2e4.workers.dev/?https%3A%2F%2Fdrive.google.com%2Fuc%3Fid%3D1TqXxU3O2uhXVapbh1MjXlSIhgUSJSIgv +#EXTINF:10.08, +https://worker-little-base-2714.mail-2e4.workers.dev/?https%3A%2F%2Fdrive.google.com%2Fuc%3Fid%3D1gFbMk4lm9psbqA7cmK2C7W28hD8mTWZW +#EXTINF:10.074667, +https://worker-little-base-2714.mail-2e4.workers.dev/?https%3A%2F%2Fdrive.google.com%2Fuc%3Fid%3D1Vi-8JUOtYozy8S3j0Z6gj7Z306zqSI-3 +#EXTINF:10.069333, +https://worker-little-base-2714.mail-2e4.workers.dev/?https%3A%2F%2Fdrive.google.com%2Fuc%3Fid%3D17ApsTeFkm_KiTWdVkgDmu_7zivdRNU6L +#EXTINF:10.064, +https://worker-little-base-2714.mail-2e4.workers.dev/?https%3A%2F%2Fdrive.google.com%2Fuc%3Fid%3D1I3p-XezTtr4w0VtPnfLJZGlaghsdVjlV +#EXTINF:10.08, +https://worker-little-base-2714.mail-2e4.workers.dev/?https%3A%2F%2Fdrive.google.com%2Fuc%3Fid%3D1F8K4RRagS-e3ov2PfpZnnfUqFywzzGPt +#EXTINF:10.074667, +https://worker-little-base-2714.mail-2e4.workers.dev/?https%3A%2F%2Fdrive.google.com%2Fuc%3Fid%3D1mg2JhYTWWg5Eq7lK7SB0zR6r_47J_U__ +#EXTINF:10.069333, +https://worker-little-base-2714.mail-2e4.workers.dev/?https%3A%2F%2Fdrive.google.com%2Fuc%3Fid%3D1QPEa-J9OkzQbe7Ti4sYirF0HyzxKkgEj +#EXTINF:10.064, +https://worker-little-base-2714.mail-2e4.workers.dev/?https%3A%2F%2Fdrive.google.com%2Fuc%3Fid%3D1CQgM8eHdMMgSNAqLJp7PoH623ctgA-U6 +#EXTINF:10.08, +https://worker-little-base-2714.mail-2e4.workers.dev/?https%3A%2F%2Fdrive.google.com%2Fuc%3Fid%3D1oJGbFSaHyrQsfAxOGyJ1zdfrn4DmTwQm +#EXTINF:10.074667, +https://worker-little-base-2714.mail-2e4.workers.dev/?https%3A%2F%2Fdrive.google.com%2Fuc%3Fid%3D1gZyMN1x8ocBiLXstfAWGw6oNMn20Z2oS +#EXTINF:10.069333, +https://worker-little-base-2714.mail-2e4.workers.dev/?https%3A%2F%2Fdrive.google.com%2Fuc%3Fid%3D1qnU3ZRyQ-WuJ3zWvP4Khrei96VhpSWZg +#EXTINF:10.064, +https://worker-little-base-2714.mail-2e4.workers.dev/?https%3A%2F%2Fdrive.google.com%2Fuc%3Fid%3D1U5tl0wXl1I8pkD7zRQMjr2HMMGy8QgRZ +#EXTINF:10.08, +https://worker-little-base-2714.mail-2e4.workers.dev/?https%3A%2F%2Fdrive.google.com%2Fuc%3Fid%3D1yfnOOIOCoTK1bBn_0FTvUGjmIrcmCfh0 +#EXTINF:10.074667, +https://worker-little-base-2714.mail-2e4.workers.dev/?https%3A%2F%2Fdrive.google.com%2Fuc%3Fid%3D1oNpBlgJ3PnI7L8V5XjMMyyI6QeeGQRGl +#EXTINF:10.069333, +https://worker-little-base-2714.mail-2e4.workers.dev/?https%3A%2F%2Fdrive.google.com%2Fuc%3Fid%3D1JI3LOBN5pae0bCXEsPBCwsk6Ch8t0bGe +#EXTINF:10.064, +https://worker-little-base-2714.mail-2e4.workers.dev/?https%3A%2F%2Fdrive.google.com%2Fuc%3Fid%3D133phB8Wv5h2_qEwBYb6tSccqZaWWtKnr +#EXTINF:10.08, +https://worker-little-base-2714.mail-2e4.workers.dev/?https%3A%2F%2Fdrive.google.com%2Fuc%3Fid%3D1x_ITknA_OBTBfY_ZhLtACHFKLcvosFri +#EXTINF:9.594667, +https://worker-little-base-2714.mail-2e4.workers.dev/?https%3A%2F%2Fdrive.google.com%2Fuc%3Fid%3D1KfoxqRw7twpwAq4GB0nhncg6OTdI80pZ +#EXTINF:10.08, +https://worker-little-base-2714.mail-2e4.workers.dev/?https%3A%2F%2Fdrive.google.com%2Fuc%3Fid%3D1AVtYgjEsyap-yNO48FGtAAQHb69buJkW +#EXTINF:10.074667, +https://worker-little-base-2714.mail-2e4.workers.dev/?https%3A%2F%2Fdrive.google.com%2Fuc%3Fid%3D1SOwg8AujmENON4DGj2czV0-GrcTCQ3oe +#EXTINF:10.069333, +https://worker-little-base-2714.mail-2e4.workers.dev/?https%3A%2F%2Fdrive.google.com%2Fuc%3Fid%3D1La614wAcOOOuegzkrSS0jE9H50-jee4b +#EXTINF:10.064, +https://worker-little-base-2714.mail-2e4.workers.dev/?https%3A%2F%2Fdrive.google.com%2Fuc%3Fid%3D1BM4QW2ZZ4mfZ7gW7yuzBxl4ClUm8Jo5O +#EXTINF:10.08, +https://worker-little-base-2714.mail-2e4.workers.dev/?https%3A%2F%2Fdrive.google.com%2Fuc%3Fid%3D17CaldjCiWXvXJrMmm9igJI3K5rxarRcw +#EXTINF:10.074667, +https://worker-little-base-2714.mail-2e4.workers.dev/?https%3A%2F%2Fdrive.google.com%2Fuc%3Fid%3D1Bm3dtf_hMqVmRQprNamOcEpzvFrOVyyb +#EXTINF:10.069333, +https://worker-little-base-2714.mail-2e4.workers.dev/?https%3A%2F%2Fdrive.google.com%2Fuc%3Fid%3D1u4xVdie3dCvCCUc9GHxLT8p_WL08yAxR +#EXTINF:10.064, +https://worker-little-base-2714.mail-2e4.workers.dev/?https%3A%2F%2Fdrive.google.com%2Fuc%3Fid%3D1mevPEpA5NXagoiUDysHO_LsBdQX3lGkd +#EXTINF:9.64, +https://worker-little-base-2714.mail-2e4.workers.dev/?https%3A%2F%2Fdrive.google.com%2Fuc%3Fid%3D1YrJMnou63T0fRZRaKdTKCqJYT9M5450m +#EXTINF:9.341333, +https://worker-little-base-2714.mail-2e4.workers.dev/?https%3A%2F%2Fdrive.google.com%2Fuc%3Fid%3D1nmwb8Bigd1lV3xQhUZ1kulq_4pDoa_cX +#EXTINF:10.061333, +https://worker-little-base-2714.mail-2e4.workers.dev/?https%3A%2F%2Fdrive.google.com%2Fuc%3Fid%3D1OkeOnjZwM-LZeiWOwcTIONGPzwE2y9We +#EXTINF:10.077333, +https://worker-little-base-2714.mail-2e4.workers.dev/?https%3A%2F%2Fdrive.google.com%2Fuc%3Fid%3D1MZJwbexMmN_9-kzeKo2Xd9sHNviRZknc +#EXTINF:9.752, +https://worker-little-base-2714.mail-2e4.workers.dev/?https%3A%2F%2Fdrive.google.com%2Fuc%3Fid%3D1vIuLCwIj8FXk54LA50TrAA9301Z4OuwA +#EXTINF:10.066667, +https://worker-little-base-2714.mail-2e4.workers.dev/?https%3A%2F%2Fdrive.google.com%2Fuc%3Fid%3D1ESh4DI5S2nIK9Sn_UDmBByRjmtnAvKSI +#EXTINF:10.061333, +https://worker-little-base-2714.mail-2e4.workers.dev/?https%3A%2F%2Fdrive.google.com%2Fuc%3Fid%3D1GoPjJjs_uYs5mInWWZ0elrXsM4vmpJrd +#EXTINF:9.477333, +https://worker-little-base-2714.mail-2e4.workers.dev/?https%3A%2F%2Fdrive.google.com%2Fuc%3Fid%3D1naMOjKhkGn-wPotCmRBWmygsx10ezkxQ +#EXTINF:8.789333, +https://worker-little-base-2714.mail-2e4.workers.dev/?https%3A%2F%2Fdrive.google.com%2Fuc%3Fid%3D1zmIMWEAfNw_ELijWfCP65Q4zbvr7YQTR +#EXTINF:10.064, +https://worker-little-base-2714.mail-2e4.workers.dev/?https%3A%2F%2Fdrive.google.com%2Fuc%3Fid%3D1CO1UniHNJI5oFtBLEbFng98gJSaNl3tQ +#EXTINF:10.08, +https://worker-little-base-2714.mail-2e4.workers.dev/?https%3A%2F%2Fdrive.google.com%2Fuc%3Fid%3D1QUeqbM2L6MbEbU3dguFv2RAFY705cei2 +#EXTINF:10.074667, +https://worker-little-base-2714.mail-2e4.workers.dev/?https%3A%2F%2Fdrive.google.com%2Fuc%3Fid%3D1nn9Ie_6EPGNfK0mP2R8z42hShjMYX3fd +#EXTINF:10.069333, +https://worker-little-base-2714.mail-2e4.workers.dev/?https%3A%2F%2Fdrive.google.com%2Fuc%3Fid%3D1YTqYzYBIdVMu3XF9S6VpdS8NmXjZtWBY +#EXTINF:10.064, +https://worker-little-base-2714.mail-2e4.workers.dev/?https%3A%2F%2Fdrive.google.com%2Fuc%3Fid%3D1RasamFgsKkM7z4L4ptKrQ6bZgfTZoExj +#EXTINF:10.08, +https://worker-little-base-2714.mail-2e4.workers.dev/?https%3A%2F%2Fdrive.google.com%2Fuc%3Fid%3D1IMRKJq4-sLMAz77ZDb25FdqLXDtf80pg +#EXTINF:10.074667, +https://worker-little-base-2714.mail-2e4.workers.dev/?https%3A%2F%2Fdrive.google.com%2Fuc%3Fid%3D1GXztbor8DjakZC64A98Bh6B4UWWCq9he +#EXTINF:10.069333, +https://worker-little-base-2714.mail-2e4.workers.dev/?https%3A%2F%2Fdrive.google.com%2Fuc%3Fid%3D1f3qC28zfTnCCXvriijcP34mCIVy-_daA +#EXTINF:10.064, +https://worker-little-base-2714.mail-2e4.workers.dev/?https%3A%2F%2Fdrive.google.com%2Fuc%3Fid%3D1cspnL6jgSik1zGG3BerNT1mXteojzCZX +#EXTINF:10.08, +https://worker-little-base-2714.mail-2e4.workers.dev/?https%3A%2F%2Fdrive.google.com%2Fuc%3Fid%3D1rAD3f8FdnK9MzlI2aBqCSRzrVGEGCROi +#EXTINF:10.074667, +https://worker-little-base-2714.mail-2e4.workers.dev/?https%3A%2F%2Fdrive.google.com%2Fuc%3Fid%3D1aXCEWvMEtsYOaigqJjSP58UZJIHYVae4 +#EXTINF:7.669333, +https://worker-little-base-2714.mail-2e4.workers.dev/?https%3A%2F%2Fdrive.google.com%2Fuc%3Fid%3D1Y-EQYV-FtUjqqv8tp93Rjxs7p8ig2a06 +#EXTINF:10.074667, +https://worker-little-base-2714.mail-2e4.workers.dev/?https%3A%2F%2Fdrive.google.com%2Fuc%3Fid%3D1KKN6KPw3N_-i3fxuVgY13k1lRwDG0Nwn +#EXTINF:10.069333, +https://worker-little-base-2714.mail-2e4.workers.dev/?https%3A%2F%2Fdrive.google.com%2Fuc%3Fid%3D1TBgqC9C_srCD1zEy9dC6lCO8ImuMWIzU +#EXTINF:10.064, +https://worker-little-base-2714.mail-2e4.workers.dev/?https%3A%2F%2Fdrive.google.com%2Fuc%3Fid%3D1uIVoR-DuHefF0Q6psPpjzuQhajMnp9Be +#EXTINF:13.56, +https://worker-little-base-2714.mail-2e4.workers.dev/?https%3A%2F%2Fdrive.google.com%2Fuc%3Fid%3D1kjyJmJ_D29RQJr63-EbIbONZljYkvpPC +#EXTINF:10.077333, +https://worker-little-base-2714.mail-2e4.workers.dev/?https%3A%2F%2Fdrive.google.com%2Fuc%3Fid%3D1_8VZjReYBbT_uz53zFpiFi9bHFUnph09 +#EXTINF:10.072, +https://worker-little-base-2714.mail-2e4.workers.dev/?https%3A%2F%2Fdrive.google.com%2Fuc%3Fid%3D1-6ZNnztu2QZQJu0KlUSa7unBJ_fVR_rP +#EXTINF:10.066667, +https://worker-little-base-2714.mail-2e4.workers.dev/?https%3A%2F%2Fdrive.google.com%2Fuc%3Fid%3D1V9cR2vwyi_Buylg2byTEksXI3AQLdIpJ +#EXTINF:10.061333, +https://worker-little-base-2714.mail-2e4.workers.dev/?https%3A%2F%2Fdrive.google.com%2Fuc%3Fid%3D1ooVq6wmjSItP6nk9GeT25II95OPGvFTO +#EXTINF:6.597333, +https://worker-little-base-2714.mail-2e4.workers.dev/?https%3A%2F%2Fdrive.google.com%2Fuc%3Fid%3D1-_MOsVh_9EmlNQpa4EpVe8zzbgOnA6-3 +#EXTINF:10.069333, +https://worker-little-base-2714.mail-2e4.workers.dev/?https%3A%2F%2Fdrive.google.com%2Fuc%3Fid%3D1abmYBDQ9IfRmhti-4MJKx0gOFmRotA2p +#EXTINF:10.064, +https://worker-little-base-2714.mail-2e4.workers.dev/?https%3A%2F%2Fdrive.google.com%2Fuc%3Fid%3D1Pl8uzV3DaSkRq48Q_H7nZ-aoUdMS4IkM +#EXTINF:10.08, +https://worker-little-base-2714.mail-2e4.workers.dev/?https%3A%2F%2Fdrive.google.com%2Fuc%3Fid%3D18QneZFXmmoXqXeB_isi-SFL97lxanw4R +#EXTINF:9.994667, +https://worker-little-base-2714.mail-2e4.workers.dev/?https%3A%2F%2Fdrive.google.com%2Fuc%3Fid%3D1eAhlmIrwBgikDlPKWRcg1FWbUDAfK49G +#EXTINF:10.074667, +https://worker-little-base-2714.mail-2e4.workers.dev/?https%3A%2F%2Fdrive.google.com%2Fuc%3Fid%3D1Vh7LyO896o7TwdGlG6wYprq5GMj5w-ci +#EXTINF:8.389333, +https://worker-little-base-2714.mail-2e4.workers.dev/?https%3A%2F%2Fdrive.google.com%2Fuc%3Fid%3D1kteooCZEAh0uVnCQkv38kOYyyEkOv3pY +#EXTINF:10.069333, +https://worker-little-base-2714.mail-2e4.workers.dev/?https%3A%2F%2Fdrive.google.com%2Fuc%3Fid%3D1RvnO_5KK0H_vsOOMusPhyBRptexppL2F +#EXTINF:10.064, +https://worker-little-base-2714.mail-2e4.workers.dev/?https%3A%2F%2Fdrive.google.com%2Fuc%3Fid%3D1hdcePoqM3J_Scdrr63TnRGvB0eabY9Kp +#EXTINF:18.48, +https://worker-little-base-2714.mail-2e4.workers.dev/?https%3A%2F%2Fdrive.google.com%2Fuc%3Fid%3D1PyykqlSmvSECqO8M9G5YyXMk9QVyTXpM +#EXTINF:10.069333, +https://worker-little-base-2714.mail-2e4.workers.dev/?https%3A%2F%2Fdrive.google.com%2Fuc%3Fid%3D1ISLcYbY8tqoDboSM8HOU_q4L_ShUmZdS +#EXTINF:10.064, +https://worker-little-base-2714.mail-2e4.workers.dev/?https%3A%2F%2Fdrive.google.com%2Fuc%3Fid%3D139uK4d5NFpZZrv1pCzIPwRQWJvc-KzI- +#EXTINF:10.08, +https://worker-little-base-2714.mail-2e4.workers.dev/?https%3A%2F%2Fdrive.google.com%2Fuc%3Fid%3D1ny0LSLwcT4WqIxN4t53B5ehlNZtUjGbJ +#EXTINF:8.794667, +https://worker-little-base-2714.mail-2e4.workers.dev/?https%3A%2F%2Fdrive.google.com%2Fuc%3Fid%3D1nJMvI-vm2J8DLlz_o3bAMDX1J0tYQ57h +#EXTINF:7.629333, +https://worker-little-base-2714.mail-2e4.workers.dev/?https%3A%2F%2Fdrive.google.com%2Fuc%3Fid%3D1aqaRNthUf3epkviMnxQRbKa3XQoPOorD +#EXTINF:10.077333, +https://worker-little-base-2714.mail-2e4.workers.dev/?https%3A%2F%2Fdrive.google.com%2Fuc%3Fid%3D1-AMewCebF5AwmDqMqg6lJkS6Kc-RyndT +#EXTINF:6.752, +https://worker-little-base-2714.mail-2e4.workers.dev/?https%3A%2F%2Fdrive.google.com%2Fuc%3Fid%3D12dUK8pG0pd7LS2TDb5WlobRuHTZ3xOuE +#EXTINF:10.074667, +https://worker-little-base-2714.mail-2e4.workers.dev/?https%3A%2F%2Fdrive.google.com%2Fuc%3Fid%3D18P0QCSmEiopj-yCHsonRDY6qx4U0GNhc +#EXTINF:10.069333, +https://worker-little-base-2714.mail-2e4.workers.dev/?https%3A%2F%2Fdrive.google.com%2Fuc%3Fid%3D13H5sgWAiDmchNOZf14Cpct532wOraahv +#EXTINF:10.064, +https://worker-little-base-2714.mail-2e4.workers.dev/?https%3A%2F%2Fdrive.google.com%2Fuc%3Fid%3D1s2_lzslbxnMKtAtDQuFoA2EjtczHBx0H +#EXTINF:10.08, +https://worker-little-base-2714.mail-2e4.workers.dev/?https%3A%2F%2Fdrive.google.com%2Fuc%3Fid%3D1EVcnQRwXFWy3QgNukiffUdUJXf_oZUy_ +#EXTINF:10.074667, +https://worker-little-base-2714.mail-2e4.workers.dev/?https%3A%2F%2Fdrive.google.com%2Fuc%3Fid%3D1XgvO3MMxgH6bmP7Fj_Wi6AQPPKE4ftFI +#EXTINF:10.069333, +https://worker-little-base-2714.mail-2e4.workers.dev/?https%3A%2F%2Fdrive.google.com%2Fuc%3Fid%3D1opo5VfMlUzI46mEMZiUTmdo4DmaDWFKL +#EXTINF:15.864, +https://worker-little-base-2714.mail-2e4.workers.dev/?https%3A%2F%2Fdrive.google.com%2Fuc%3Fid%3D1pKq7OsaQCyLdBjL9NDibKCUqPOaSTl6T +#EXTINF:10.077333, +https://worker-little-base-2714.mail-2e4.workers.dev/?https%3A%2F%2Fdrive.google.com%2Fuc%3Fid%3D1QP19XDKHQFo_pAsJtjomXvyJKxoM6E8i +#EXTINF:10.072, +https://worker-little-base-2714.mail-2e4.workers.dev/?https%3A%2F%2Fdrive.google.com%2Fuc%3Fid%3D1vkK1E8UBteWjus6Dbpl9O0mhMB8mQFyb +#EXTINF:10.066667, +https://worker-little-base-2714.mail-2e4.workers.dev/?https%3A%2F%2Fdrive.google.com%2Fuc%3Fid%3D1DG11xJefgVBOKfAZoEhYqrXTmgttDHmW +#EXTINF:9.181333, +https://worker-little-base-2714.mail-2e4.workers.dev/?https%3A%2F%2Fdrive.google.com%2Fuc%3Fid%3D1MOnbP_qtiPBMobb0T6g-3hEplIUk1JbR +#EXTINF:8.912, +https://worker-little-base-2714.mail-2e4.workers.dev/?https%3A%2F%2Fdrive.google.com%2Fuc%3Fid%3D1fy27eJPl45i03Aw40z3LzzPrASJUwfGh +#EXTINF:10.08, +https://worker-little-base-2714.mail-2e4.workers.dev/?https%3A%2F%2Fdrive.google.com%2Fuc%3Fid%3D117BtMAU8JbJX6ttKVRiGKtEgAk9aWLky +#EXTINF:10.074667, +https://worker-little-base-2714.mail-2e4.workers.dev/?https%3A%2F%2Fdrive.google.com%2Fuc%3Fid%3D19AdAT6bI76AKDijWlpY5v_YJEEwqyaec +#EXTINF:10.069333, +https://worker-little-base-2714.mail-2e4.workers.dev/?https%3A%2F%2Fdrive.google.com%2Fuc%3Fid%3D16vIwUdgdwYrU2sjXKeerVFFYFgfetQil +#EXTINF:8.824, +https://worker-little-base-2714.mail-2e4.workers.dev/?https%3A%2F%2Fdrive.google.com%2Fuc%3Fid%3D1xUtjmXjHUvYaOiBFASwJVUppz_7ZEisN +#EXTINF:10.077333, +https://worker-little-base-2714.mail-2e4.workers.dev/?https%3A%2F%2Fdrive.google.com%2Fuc%3Fid%3D1K6KsEaVRXj3tiSO2Znq2O273ewZSma__ +#EXTINF:10.032, +https://worker-little-base-2714.mail-2e4.workers.dev/?https%3A%2F%2Fdrive.google.com%2Fuc%3Fid%3D10uy3jve1krWs0GdTEhJeC2cuMyMPINh7 +#EXTINF:8.829333, +https://worker-little-base-2714.mail-2e4.workers.dev/?https%3A%2F%2Fdrive.google.com%2Fuc%3Fid%3D1G_9eRQELAV4huxxMhiHVmRoYezQ7lxCy +#EXTINF:10.061333, +https://worker-little-base-2714.mail-2e4.workers.dev/?https%3A%2F%2Fdrive.google.com%2Fuc%3Fid%3D1hEkb8FFdrnDcf3voMcDke9scJCqRa860 +#EXTINF:10.077333, +https://worker-little-base-2714.mail-2e4.workers.dev/?https%3A%2F%2Fdrive.google.com%2Fuc%3Fid%3D1Q6KhSsLfj6OVvW-2Dei_NTDf2fnztH69 +#EXTINF:7.632, +https://worker-little-base-2714.mail-2e4.workers.dev/?https%3A%2F%2Fdrive.google.com%2Fuc%3Fid%3D1DNTQkEdYdZrCH7aHI6mL1aOsTaCYo3EU +#EXT-X-ENDLIST diff --git a/public/debates/media/livre-vs-pan.m3u8.orig b/public/debates/media/livre-vs-pan.m3u8.orig new file mode 100644 index 0000000..cbd10cc --- /dev/null +++ b/public/debates/media/livre-vs-pan.m3u8.orig @@ -0,0 +1,389 @@ +#EXTM3U +#EXT-X-VERSION:3 +#EXT-X-TARGETDURATION:19 +#EXT-X-MEDIA-SEQUENCE:0 +#EXTINF:18.480000, +livre-vs-pan_segment_000.ts +#EXTINF:10.000000, +livre-vs-pan_segment_001.ts +#EXTINF:5.840000, +livre-vs-pan_segment_002.ts +#EXTINF:10.000000, +livre-vs-pan_segment_003.ts +#EXTINF:10.000000, +livre-vs-pan_segment_004.ts +#EXTINF:10.000000, +livre-vs-pan_segment_005.ts +#EXTINF:8.800000, +livre-vs-pan_segment_006.ts +#EXTINF:14.960000, +livre-vs-pan_segment_007.ts +#EXTINF:10.000000, +livre-vs-pan_segment_008.ts +#EXTINF:9.560000, +livre-vs-pan_segment_009.ts +#EXTINF:10.000000, +livre-vs-pan_segment_010.ts +#EXTINF:10.000000, +livre-vs-pan_segment_011.ts +#EXTINF:10.000000, +livre-vs-pan_segment_012.ts +#EXTINF:10.000000, +livre-vs-pan_segment_013.ts +#EXTINF:10.000000, +livre-vs-pan_segment_014.ts +#EXTINF:8.040000, +livre-vs-pan_segment_015.ts +#EXTINF:10.000000, +livre-vs-pan_segment_016.ts +#EXTINF:10.000000, +livre-vs-pan_segment_017.ts +#EXTINF:10.000000, +livre-vs-pan_segment_018.ts +#EXTINF:10.000000, +livre-vs-pan_segment_019.ts +#EXTINF:10.000000, +livre-vs-pan_segment_020.ts +#EXTINF:10.000000, +livre-vs-pan_segment_021.ts +#EXTINF:10.000000, +livre-vs-pan_segment_022.ts +#EXTINF:10.000000, +livre-vs-pan_segment_023.ts +#EXTINF:8.200000, +livre-vs-pan_segment_024.ts +#EXTINF:10.000000, +livre-vs-pan_segment_025.ts +#EXTINF:10.000000, +livre-vs-pan_segment_026.ts +#EXTINF:9.680000, +livre-vs-pan_segment_027.ts +#EXTINF:10.000000, +livre-vs-pan_segment_028.ts +#EXTINF:6.520000, +livre-vs-pan_segment_029.ts +#EXTINF:14.960000, +livre-vs-pan_segment_030.ts +#EXTINF:10.000000, +livre-vs-pan_segment_031.ts +#EXTINF:10.000000, +livre-vs-pan_segment_032.ts +#EXTINF:7.640000, +livre-vs-pan_segment_033.ts +#EXTINF:10.000000, +livre-vs-pan_segment_034.ts +#EXTINF:7.400000, +livre-vs-pan_segment_035.ts +#EXTINF:10.000000, +livre-vs-pan_segment_036.ts +#EXTINF:10.000000, +livre-vs-pan_segment_037.ts +#EXTINF:18.960000, +livre-vs-pan_segment_038.ts +#EXTINF:10.000000, +livre-vs-pan_segment_039.ts +#EXTINF:10.000000, +livre-vs-pan_segment_040.ts +#EXTINF:8.240000, +livre-vs-pan_segment_041.ts +#EXTINF:10.000000, +livre-vs-pan_segment_042.ts +#EXTINF:10.000000, +livre-vs-pan_segment_043.ts +#EXTINF:9.840000, +livre-vs-pan_segment_044.ts +#EXTINF:4.320000, +livre-vs-pan_segment_045.ts +#EXTINF:10.000000, +livre-vs-pan_segment_046.ts +#EXTINF:10.000000, +livre-vs-pan_segment_047.ts +#EXTINF:10.000000, +livre-vs-pan_segment_048.ts +#EXTINF:10.000000, +livre-vs-pan_segment_049.ts +#EXTINF:9.080000, +livre-vs-pan_segment_050.ts +#EXTINF:10.000000, +livre-vs-pan_segment_051.ts +#EXTINF:10.000000, +livre-vs-pan_segment_052.ts +#EXTINF:17.360000, +livre-vs-pan_segment_053.ts +#EXTINF:7.840000, +livre-vs-pan_segment_054.ts +#EXTINF:10.000000, +livre-vs-pan_segment_055.ts +#EXTINF:10.000000, +livre-vs-pan_segment_056.ts +#EXTINF:10.000000, +livre-vs-pan_segment_057.ts +#EXTINF:10.000000, +livre-vs-pan_segment_058.ts +#EXTINF:10.000000, +livre-vs-pan_segment_059.ts +#EXTINF:10.000000, +livre-vs-pan_segment_060.ts +#EXTINF:10.000000, +livre-vs-pan_segment_061.ts +#EXTINF:10.000000, +livre-vs-pan_segment_062.ts +#EXTINF:8.960000, +livre-vs-pan_segment_063.ts +#EXTINF:10.000000, +livre-vs-pan_segment_064.ts +#EXTINF:10.000000, +livre-vs-pan_segment_065.ts +#EXTINF:10.000000, +livre-vs-pan_segment_066.ts +#EXTINF:10.000000, +livre-vs-pan_segment_067.ts +#EXTINF:10.000000, +livre-vs-pan_segment_068.ts +#EXTINF:10.000000, +livre-vs-pan_segment_069.ts +#EXTINF:10.000000, +livre-vs-pan_segment_070.ts +#EXTINF:10.000000, +livre-vs-pan_segment_071.ts +#EXTINF:8.560000, +livre-vs-pan_segment_072.ts +#EXTINF:10.000000, +livre-vs-pan_segment_073.ts +#EXTINF:8.640000, +livre-vs-pan_segment_074.ts +#EXTINF:10.000000, +livre-vs-pan_segment_075.ts +#EXTINF:10.000000, +livre-vs-pan_segment_076.ts +#EXTINF:8.240000, +livre-vs-pan_segment_077.ts +#EXTINF:10.000000, +livre-vs-pan_segment_078.ts +#EXTINF:10.000000, +livre-vs-pan_segment_079.ts +#EXTINF:10.000000, +livre-vs-pan_segment_080.ts +#EXTINF:10.000000, +livre-vs-pan_segment_081.ts +#EXTINF:10.000000, +livre-vs-pan_segment_082.ts +#EXTINF:10.000000, +livre-vs-pan_segment_083.ts +#EXTINF:10.000000, +livre-vs-pan_segment_084.ts +#EXTINF:10.000000, +livre-vs-pan_segment_085.ts +#EXTINF:10.000000, +livre-vs-pan_segment_086.ts +#EXTINF:10.000000, +livre-vs-pan_segment_087.ts +#EXTINF:10.000000, +livre-vs-pan_segment_088.ts +#EXTINF:19.480000, +livre-vs-pan_segment_089.ts +#EXTINF:10.000000, +livre-vs-pan_segment_090.ts +#EXTINF:10.000000, +livre-vs-pan_segment_091.ts +#EXTINF:10.000000, +livre-vs-pan_segment_092.ts +#EXTINF:8.840000, +livre-vs-pan_segment_093.ts +#EXTINF:10.000000, +livre-vs-pan_segment_094.ts +#EXTINF:10.000000, +livre-vs-pan_segment_095.ts +#EXTINF:10.000000, +livre-vs-pan_segment_096.ts +#EXTINF:10.000000, +livre-vs-pan_segment_097.ts +#EXTINF:10.000000, +livre-vs-pan_segment_098.ts +#EXTINF:10.000000, +livre-vs-pan_segment_099.ts +#EXTINF:10.000000, +livre-vs-pan_segment_100.ts +#EXTINF:10.000000, +livre-vs-pan_segment_101.ts +#EXTINF:10.000000, +livre-vs-pan_segment_102.ts +#EXTINF:10.000000, +livre-vs-pan_segment_103.ts +#EXTINF:10.000000, +livre-vs-pan_segment_104.ts +#EXTINF:10.000000, +livre-vs-pan_segment_105.ts +#EXTINF:10.000000, +livre-vs-pan_segment_106.ts +#EXTINF:10.000000, +livre-vs-pan_segment_107.ts +#EXTINF:10.000000, +livre-vs-pan_segment_108.ts +#EXTINF:10.000000, +livre-vs-pan_segment_109.ts +#EXTINF:10.000000, +livre-vs-pan_segment_110.ts +#EXTINF:10.000000, +livre-vs-pan_segment_111.ts +#EXTINF:10.000000, +livre-vs-pan_segment_112.ts +#EXTINF:10.000000, +livre-vs-pan_segment_113.ts +#EXTINF:10.000000, +livre-vs-pan_segment_114.ts +#EXTINF:9.520000, +livre-vs-pan_segment_115.ts +#EXTINF:10.000000, +livre-vs-pan_segment_116.ts +#EXTINF:10.000000, +livre-vs-pan_segment_117.ts +#EXTINF:10.000000, +livre-vs-pan_segment_118.ts +#EXTINF:10.000000, +livre-vs-pan_segment_119.ts +#EXTINF:10.000000, +livre-vs-pan_segment_120.ts +#EXTINF:10.000000, +livre-vs-pan_segment_121.ts +#EXTINF:10.000000, +livre-vs-pan_segment_122.ts +#EXTINF:10.000000, +livre-vs-pan_segment_123.ts +#EXTINF:9.560000, +livre-vs-pan_segment_124.ts +#EXTINF:9.280000, +livre-vs-pan_segment_125.ts +#EXTINF:10.000000, +livre-vs-pan_segment_126.ts +#EXTINF:10.000000, +livre-vs-pan_segment_127.ts +#EXTINF:9.680000, +livre-vs-pan_segment_128.ts +#EXTINF:10.000000, +livre-vs-pan_segment_129.ts +#EXTINF:10.000000, +livre-vs-pan_segment_130.ts +#EXTINF:9.400000, +livre-vs-pan_segment_131.ts +#EXTINF:8.720000, +livre-vs-pan_segment_132.ts +#EXTINF:10.000000, +livre-vs-pan_segment_133.ts +#EXTINF:10.000000, +livre-vs-pan_segment_134.ts +#EXTINF:10.000000, +livre-vs-pan_segment_135.ts +#EXTINF:10.000000, +livre-vs-pan_segment_136.ts +#EXTINF:10.000000, +livre-vs-pan_segment_137.ts +#EXTINF:10.000000, +livre-vs-pan_segment_138.ts +#EXTINF:10.000000, +livre-vs-pan_segment_139.ts +#EXTINF:10.000000, +livre-vs-pan_segment_140.ts +#EXTINF:10.000000, +livre-vs-pan_segment_141.ts +#EXTINF:10.000000, +livre-vs-pan_segment_142.ts +#EXTINF:10.000000, +livre-vs-pan_segment_143.ts +#EXTINF:7.600000, +livre-vs-pan_segment_144.ts +#EXTINF:10.000000, +livre-vs-pan_segment_145.ts +#EXTINF:10.000000, +livre-vs-pan_segment_146.ts +#EXTINF:10.000000, +livre-vs-pan_segment_147.ts +#EXTINF:13.480000, +livre-vs-pan_segment_148.ts +#EXTINF:10.000000, +livre-vs-pan_segment_149.ts +#EXTINF:10.000000, +livre-vs-pan_segment_150.ts +#EXTINF:10.000000, +livre-vs-pan_segment_151.ts +#EXTINF:10.000000, +livre-vs-pan_segment_152.ts +#EXTINF:6.520000, +livre-vs-pan_segment_153.ts +#EXTINF:10.000000, +livre-vs-pan_segment_154.ts +#EXTINF:10.000000, +livre-vs-pan_segment_155.ts +#EXTINF:10.000000, +livre-vs-pan_segment_156.ts +#EXTINF:9.920000, +livre-vs-pan_segment_157.ts +#EXTINF:10.000000, +livre-vs-pan_segment_158.ts +#EXTINF:8.320000, +livre-vs-pan_segment_159.ts +#EXTINF:10.000000, +livre-vs-pan_segment_160.ts +#EXTINF:10.000000, +livre-vs-pan_segment_161.ts +#EXTINF:18.400000, +livre-vs-pan_segment_162.ts +#EXTINF:10.000000, +livre-vs-pan_segment_163.ts +#EXTINF:10.000000, +livre-vs-pan_segment_164.ts +#EXTINF:10.000000, +livre-vs-pan_segment_165.ts +#EXTINF:8.720000, +livre-vs-pan_segment_166.ts +#EXTINF:7.560000, +livre-vs-pan_segment_167.ts +#EXTINF:10.000000, +livre-vs-pan_segment_168.ts +#EXTINF:6.680000, +livre-vs-pan_segment_169.ts +#EXTINF:10.000000, +livre-vs-pan_segment_170.ts +#EXTINF:10.000000, +livre-vs-pan_segment_171.ts +#EXTINF:10.000000, +livre-vs-pan_segment_172.ts +#EXTINF:10.000000, +livre-vs-pan_segment_173.ts +#EXTINF:10.000000, +livre-vs-pan_segment_174.ts +#EXTINF:10.000000, +livre-vs-pan_segment_175.ts +#EXTINF:15.800000, +livre-vs-pan_segment_176.ts +#EXTINF:10.000000, +livre-vs-pan_segment_177.ts +#EXTINF:10.000000, +livre-vs-pan_segment_178.ts +#EXTINF:10.000000, +livre-vs-pan_segment_179.ts +#EXTINF:9.120000, +livre-vs-pan_segment_180.ts +#EXTINF:8.840000, +livre-vs-pan_segment_181.ts +#EXTINF:10.000000, +livre-vs-pan_segment_182.ts +#EXTINF:10.000000, +livre-vs-pan_segment_183.ts +#EXTINF:10.000000, +livre-vs-pan_segment_184.ts +#EXTINF:8.760000, +livre-vs-pan_segment_185.ts +#EXTINF:10.000000, +livre-vs-pan_segment_186.ts +#EXTINF:9.960000, +livre-vs-pan_segment_187.ts +#EXTINF:8.760000, +livre-vs-pan_segment_188.ts +#EXTINF:10.000000, +livre-vs-pan_segment_189.ts +#EXTINF:10.000000, +livre-vs-pan_segment_190.ts +#EXTINF:7.560000, +livre-vs-pan_segment_191.ts +#EXT-X-ENDLIST diff --git a/public/debates/media/pcp-vs-livre.m3u8 b/public/debates/media/pcp-vs-livre.m3u8 new file mode 100644 index 0000000..0bfa92b --- /dev/null +++ b/public/debates/media/pcp-vs-livre.m3u8 @@ -0,0 +1,381 @@ +#EXTM3U +#EXT-X-VERSION:3 +#EXT-X-TARGETDURATION:20 +#EXT-X-MEDIA-SEQUENCE:0 +#EXTINF:15.36, +https://worker-little-base-2714.mail-2e4.workers.dev/?https%3A%2F%2Fdrive.google.com%2Fuc%3Fid%3D1pCeW6KrZUIZpy-3rR5dw9Lfq0_BEsts3 +#EXTINF:5.426667, +https://worker-little-base-2714.mail-2e4.workers.dev/?https%3A%2F%2Fdrive.google.com%2Fuc%3Fid%3D1dX-tBm-pNII7i19WuDmBMiN2yw6DqYs5 +#EXTINF:15.112, +https://worker-little-base-2714.mail-2e4.workers.dev/?https%3A%2F%2Fdrive.google.com%2Fuc%3Fid%3D1IArgt5hQSYpndATDtGr4XdnjTJ2sZYFS +#EXTINF:11.992, +https://worker-little-base-2714.mail-2e4.workers.dev/?https%3A%2F%2Fdrive.google.com%2Fuc%3Fid%3D1LryJ9SaSVvg-JfwEi1dK74gSdUb5GIbj +#EXTINF:10.066667, +https://worker-little-base-2714.mail-2e4.workers.dev/?https%3A%2F%2Fdrive.google.com%2Fuc%3Fid%3D1rVrv3OoJ3zJ0eGIxMdYX-wjC4j1Rai9n +#EXTINF:10.061333, +https://worker-little-base-2714.mail-2e4.workers.dev/?https%3A%2F%2Fdrive.google.com%2Fuc%3Fid%3D1XIAHgCWumtyvd1XPu-fPRYPhRKiBnE02 +#EXTINF:9.077333, +https://worker-little-base-2714.mail-2e4.workers.dev/?https%3A%2F%2Fdrive.google.com%2Fuc%3Fid%3D1M39d1cLT110z1YWMLeQDPSGXCa22R2HQ +#EXTINF:10.074667, +https://worker-little-base-2714.mail-2e4.workers.dev/?https%3A%2F%2Fdrive.google.com%2Fuc%3Fid%3D1YJIYpNEFAiYi038NtR0BSQnOlOlX89h6 +#EXTINF:10.069333, +https://worker-little-base-2714.mail-2e4.workers.dev/?https%3A%2F%2Fdrive.google.com%2Fuc%3Fid%3D1X-UnH6frFIN35zzzqRPBur5zWbX_aRuW +#EXTINF:6.224, +https://worker-little-base-2714.mail-2e4.workers.dev/?https%3A%2F%2Fdrive.google.com%2Fuc%3Fid%3D1_x3M-UMIodGpgNHHyohgP_Zj5VFZGX5v +#EXTINF:7.88, +https://worker-little-base-2714.mail-2e4.workers.dev/?https%3A%2F%2Fdrive.google.com%2Fuc%3Fid%3D1Z1Io86R_5lAQcW4M8yzYiUn62YQbVQxx +#EXTINF:10.072, +https://worker-little-base-2714.mail-2e4.workers.dev/?https%3A%2F%2Fdrive.google.com%2Fuc%3Fid%3D1CTrYZX2fwNUKTnCNe233BHz6vd2ke1iC +#EXTINF:10.066667, +https://worker-little-base-2714.mail-2e4.workers.dev/?https%3A%2F%2Fdrive.google.com%2Fuc%3Fid%3D1vGq5qrxyO11pHQo4oJAmiQfk3Bq99JCB +#EXTINF:10.061333, +https://worker-little-base-2714.mail-2e4.workers.dev/?https%3A%2F%2Fdrive.google.com%2Fuc%3Fid%3D1eVjGx5DWYf_HFT7uPW0m54kbwHoatQTo +#EXTINF:9.757333, +https://worker-little-base-2714.mail-2e4.workers.dev/?https%3A%2F%2Fdrive.google.com%2Fuc%3Fid%3D1bRjGkUKP8QpKdQ1jtSSDUnDcNL55lD1t +#EXTINF:10.072, +https://worker-little-base-2714.mail-2e4.workers.dev/?https%3A%2F%2Fdrive.google.com%2Fuc%3Fid%3D1PAL80lG8r6gQuGmvqrRPh8cIEMzifmQ4 +#EXTINF:10.066667, +https://worker-little-base-2714.mail-2e4.workers.dev/?https%3A%2F%2Fdrive.google.com%2Fuc%3Fid%3D1OjbuV2QUSIubP5XvCI_iquZlASG5WP9Z +#EXTINF:19.541333, +https://worker-little-base-2714.mail-2e4.workers.dev/?https%3A%2F%2Fdrive.google.com%2Fuc%3Fid%3D10lHQLay3K8hla4_G4k1DdcbsbYSLpvgK +#EXTINF:10.064, +https://worker-little-base-2714.mail-2e4.workers.dev/?https%3A%2F%2Fdrive.google.com%2Fuc%3Fid%3D1S803wCBoUWTsEb3_cJalWHJIcTT_GWBG +#EXTINF:7.68, +https://worker-little-base-2714.mail-2e4.workers.dev/?https%3A%2F%2Fdrive.google.com%2Fuc%3Fid%3D1R6bwNP5ouVCcxmAKx0CXpc2G2F5_hKw_ +#EXTINF:5.264, +https://worker-little-base-2714.mail-2e4.workers.dev/?https%3A%2F%2Fdrive.google.com%2Fuc%3Fid%3D1lapHgDUkV7Stk5emjly3yidvogLEmDud +#EXTINF:7.52, +https://worker-little-base-2714.mail-2e4.workers.dev/?https%3A%2F%2Fdrive.google.com%2Fuc%3Fid%3D15F7SuNMOlXayKgKA12lN2KVDgVY-XHV1 +#EXTINF:12.994667, +https://worker-little-base-2714.mail-2e4.workers.dev/?https%3A%2F%2Fdrive.google.com%2Fuc%3Fid%3D12K8lvGFLDadOHyq4SG1Ajg3TK-PDuLfO +#EXTINF:10.066667, +https://worker-little-base-2714.mail-2e4.workers.dev/?https%3A%2F%2Fdrive.google.com%2Fuc%3Fid%3D1xW3vAo_MxsGFnCpOlB7KHBN-MUvpFTXE +#EXTINF:10.061333, +https://worker-little-base-2714.mail-2e4.workers.dev/?https%3A%2F%2Fdrive.google.com%2Fuc%3Fid%3D1ESxBixA-sGbPpgt1zBzQJswNGxll_ox3 +#EXTINF:10.077333, +https://worker-little-base-2714.mail-2e4.workers.dev/?https%3A%2F%2Fdrive.google.com%2Fuc%3Fid%3D1VPRvhxMGcAkt_u3X0_ej2kJDaXGCBJlW +#EXTINF:10.072, +https://worker-little-base-2714.mail-2e4.workers.dev/?https%3A%2F%2Fdrive.google.com%2Fuc%3Fid%3D1nXNzl_PuTveTwLaMj9wgkJo7AmYGaxJD +#EXTINF:16.546667, +https://worker-little-base-2714.mail-2e4.workers.dev/?https%3A%2F%2Fdrive.google.com%2Fuc%3Fid%3D10QoY6dQoxhDvyEpCh7WIrJ9Of7b4wm8B +#EXTINF:10.077333, +https://worker-little-base-2714.mail-2e4.workers.dev/?https%3A%2F%2Fdrive.google.com%2Fuc%3Fid%3D1KIaiO3UUBMw58Sqx5tqKwBMu2DcwI6R4 +#EXTINF:10.072, +https://worker-little-base-2714.mail-2e4.workers.dev/?https%3A%2F%2Fdrive.google.com%2Fuc%3Fid%3D1vlUH-M_Zh0evWK7Smm7ssO56O0NIj6QJ +#EXTINF:4.986667, +https://worker-little-base-2714.mail-2e4.workers.dev/?https%3A%2F%2Fdrive.google.com%2Fuc%3Fid%3D14q744_CsBX9ziA1WdxClTBc2ubAYyu5X +#EXTINF:10.08, +https://worker-little-base-2714.mail-2e4.workers.dev/?https%3A%2F%2Fdrive.google.com%2Fuc%3Fid%3D1mWGoe0FHu7H_cZYw_koKOzv9gtP9Yxzz +#EXTINF:10.074667, +https://worker-little-base-2714.mail-2e4.workers.dev/?https%3A%2F%2Fdrive.google.com%2Fuc%3Fid%3D1KSHlB3CWrpCCQMYoYYrTpktcSwfe-Fiw +#EXTINF:10.069333, +https://worker-little-base-2714.mail-2e4.workers.dev/?https%3A%2F%2Fdrive.google.com%2Fuc%3Fid%3D1wAYTxRYaO7gLeDQeoLzA7KNnfLCfI6H- +#EXTINF:10.064, +https://worker-little-base-2714.mail-2e4.workers.dev/?https%3A%2F%2Fdrive.google.com%2Fuc%3Fid%3D1M9GFb-tSwDYIbQ6czxNCXDks73UU17bW +#EXTINF:10.08, +https://worker-little-base-2714.mail-2e4.workers.dev/?https%3A%2F%2Fdrive.google.com%2Fuc%3Fid%3D1_Dc4jCc2KPDKifZA0KhAP2z4GXf4JESA +#EXTINF:10.074667, +https://worker-little-base-2714.mail-2e4.workers.dev/?https%3A%2F%2Fdrive.google.com%2Fuc%3Fid%3D1NwbVziK8dtS8JMHiL73crSJ0uzB1n5NT +#EXTINF:10.069333, +https://worker-little-base-2714.mail-2e4.workers.dev/?https%3A%2F%2Fdrive.google.com%2Fuc%3Fid%3D1yEFLwONrhcVO7nkEu2TS1v-7xvKCj8h8 +#EXTINF:10.064, +https://worker-little-base-2714.mail-2e4.workers.dev/?https%3A%2F%2Fdrive.google.com%2Fuc%3Fid%3D12lsr5GmbCMR9WpTai5s7_uj2k88AvlDo +#EXTINF:13.32, +https://worker-little-base-2714.mail-2e4.workers.dev/?https%3A%2F%2Fdrive.google.com%2Fuc%3Fid%3D1QmMEx39NioWH1I44YsBy1E0e0FvuEgRh +#EXTINF:8.632, +https://worker-little-base-2714.mail-2e4.workers.dev/?https%3A%2F%2Fdrive.google.com%2Fuc%3Fid%3D1LlURKL_lAiZeHzwAmDVKsNLszwlJjxW1 +#EXTINF:8.557333, +https://worker-little-base-2714.mail-2e4.workers.dev/?https%3A%2F%2Fdrive.google.com%2Fuc%3Fid%3D1JjEY0L34LZ7-WFHPpYR1ZgaJP2OlRVln +#EXTINF:7.666667, +https://worker-little-base-2714.mail-2e4.workers.dev/?https%3A%2F%2Fdrive.google.com%2Fuc%3Fid%3D1lH7x45RWenx5JVRPLMd8p7cPyI1ugnHg +#EXTINF:9.472, +https://worker-little-base-2714.mail-2e4.workers.dev/?https%3A%2F%2Fdrive.google.com%2Fuc%3Fid%3D1KFFfrUAugOHaSyw65i3ZNWjHSVy0xmcS +#EXTINF:10.064, +https://worker-little-base-2714.mail-2e4.workers.dev/?https%3A%2F%2Fdrive.google.com%2Fuc%3Fid%3D1nJVrCoP84kcLBZlU4anfSYcLdcaWtJCs +#EXTINF:10.08, +https://worker-little-base-2714.mail-2e4.workers.dev/?https%3A%2F%2Fdrive.google.com%2Fuc%3Fid%3D1jMd90Usf_vgSXzGvmwk-PETznncqm03- +#EXTINF:10.074667, +https://worker-little-base-2714.mail-2e4.workers.dev/?https%3A%2F%2Fdrive.google.com%2Fuc%3Fid%3D1fsmaThODmn5P29n0bznYqAQEkrAkLGBY +#EXTINF:10.069333, +https://worker-little-base-2714.mail-2e4.workers.dev/?https%3A%2F%2Fdrive.google.com%2Fuc%3Fid%3D1JhyAoRjQ8QM5sFpAe5frKY-v92MsJAUZ +#EXTINF:10.064, +https://worker-little-base-2714.mail-2e4.workers.dev/?https%3A%2F%2Fdrive.google.com%2Fuc%3Fid%3D14vp5hp2NwoYuwOmFWlJYDNg-DqRjluYB +#EXTINF:10.08, +https://worker-little-base-2714.mail-2e4.workers.dev/?https%3A%2F%2Fdrive.google.com%2Fuc%3Fid%3D1W4nf-2J9Rpr5X97d8ST4MizZ0Zpma42V +#EXTINF:10.074667, +https://worker-little-base-2714.mail-2e4.workers.dev/?https%3A%2F%2Fdrive.google.com%2Fuc%3Fid%3D13Low1KbMD4Qv1FAcIMUEaOLVQPFQUc7F +#EXTINF:10.069333, +https://worker-little-base-2714.mail-2e4.workers.dev/?https%3A%2F%2Fdrive.google.com%2Fuc%3Fid%3D18EP_pdYRtFK-Re4r3cjJMeSeIpE3bqlB +#EXTINF:10.064, +https://worker-little-base-2714.mail-2e4.workers.dev/?https%3A%2F%2Fdrive.google.com%2Fuc%3Fid%3D1QCbDGNVme_R3Tp2oaSWlo5tmFAHBGhMP +#EXTINF:10.08, +https://worker-little-base-2714.mail-2e4.workers.dev/?https%3A%2F%2Fdrive.google.com%2Fuc%3Fid%3D13Qf1O7obol6dzZiuTCxFX2ZdehwrbknR +#EXTINF:10.074667, +https://worker-little-base-2714.mail-2e4.workers.dev/?https%3A%2F%2Fdrive.google.com%2Fuc%3Fid%3D1iKThsfosgFWtmTywdbuEhJcHlIngOr4I +#EXTINF:16.509333, +https://worker-little-base-2714.mail-2e4.workers.dev/?https%3A%2F%2Fdrive.google.com%2Fuc%3Fid%3D1-JoLj4olA39xhhsLvrHC3wOHOD0eGijU +#EXTINF:10.061333, +https://worker-little-base-2714.mail-2e4.workers.dev/?https%3A%2F%2Fdrive.google.com%2Fuc%3Fid%3D1fFrkWa2DWuKEzX_h8wtgrS6Hr8Pijtup +#EXTINF:10.077333, +https://worker-little-base-2714.mail-2e4.workers.dev/?https%3A%2F%2Fdrive.google.com%2Fuc%3Fid%3D1AhV7YgQl-f-Pk6q8eZgILraT0BI4xkuU +#EXTINF:8.632, +https://worker-little-base-2714.mail-2e4.workers.dev/?https%3A%2F%2Fdrive.google.com%2Fuc%3Fid%3D1Qqi9xYL6hBMnB0ioLMmSMA03gKdyquim +#EXTINF:10.077333, +https://worker-little-base-2714.mail-2e4.workers.dev/?https%3A%2F%2Fdrive.google.com%2Fuc%3Fid%3D1GjXhiwoFAl4ddVmcq2l6O10_yLEvIIXl +#EXTINF:5.792, +https://worker-little-base-2714.mail-2e4.workers.dev/?https%3A%2F%2Fdrive.google.com%2Fuc%3Fid%3D1_0dq_Vds5u8YNnhrQSuR0KDhWS6o_-Uq +#EXTINF:10.074667, +https://worker-little-base-2714.mail-2e4.workers.dev/?https%3A%2F%2Fdrive.google.com%2Fuc%3Fid%3D11bBY876zcrhdnxw4QX3Po-0oRAJN73YI +#EXTINF:10.069333, +https://worker-little-base-2714.mail-2e4.workers.dev/?https%3A%2F%2Fdrive.google.com%2Fuc%3Fid%3D1aacFQz9_ivYJkGy9vpmTKWSupZ5OuRBo +#EXTINF:8.984, +https://worker-little-base-2714.mail-2e4.workers.dev/?https%3A%2F%2Fdrive.google.com%2Fuc%3Fid%3D1Bt-x7RyO9YvfHXSbxC99XBHXT-XabjxT +#EXTINF:9.626667, +https://worker-little-base-2714.mail-2e4.workers.dev/?https%3A%2F%2Fdrive.google.com%2Fuc%3Fid%3D1R0w9KtL55Fmm2qv1CelDiFp9y1ar5wVJ +#EXTINF:10.069333, +https://worker-little-base-2714.mail-2e4.workers.dev/?https%3A%2F%2Fdrive.google.com%2Fuc%3Fid%3D1oMNxsfzUtFJRit8EyNkeeCmOjGdSrSrB +#EXTINF:16.024, +https://worker-little-base-2714.mail-2e4.workers.dev/?https%3A%2F%2Fdrive.google.com%2Fuc%3Fid%3D16U6X9rRo2xyDHM7Vf1H80Km9Boewb2TX +#EXTINF:10.066667, +https://worker-little-base-2714.mail-2e4.workers.dev/?https%3A%2F%2Fdrive.google.com%2Fuc%3Fid%3D1GkmINcUWxH1_jCWRdu6UaqN8Jnldzflo +#EXTINF:10.061333, +https://worker-little-base-2714.mail-2e4.workers.dev/?https%3A%2F%2Fdrive.google.com%2Fuc%3Fid%3D1TsFOrizMhGFk1SirDntLpg1bE84CInSJ +#EXTINF:6.197333, +https://worker-little-base-2714.mail-2e4.workers.dev/?https%3A%2F%2Fdrive.google.com%2Fuc%3Fid%3D1QJZK7kvLIWoPuRsE1PIYP2pWQWtGH3mx +#EXTINF:11.554667, +https://worker-little-base-2714.mail-2e4.workers.dev/?https%3A%2F%2Fdrive.google.com%2Fuc%3Fid%3D1NPoVbhU8d6VILWJgbSGM30-_5JJNM9YK +#EXTINF:9.877333, +https://worker-little-base-2714.mail-2e4.workers.dev/?https%3A%2F%2Fdrive.google.com%2Fuc%3Fid%3D1wQLEtBakHYagaaBbAz4fHNlsXnXDBN8O +#EXTINF:8.584, +https://worker-little-base-2714.mail-2e4.workers.dev/?https%3A%2F%2Fdrive.google.com%2Fuc%3Fid%3D1frIHQuNahLR3rSHhLGmNOibq_sNn4Nt6 +#EXTINF:10.072, +https://worker-little-base-2714.mail-2e4.workers.dev/?https%3A%2F%2Fdrive.google.com%2Fuc%3Fid%3D1CEvf1v9ZTfz5kvG8ZsMKdWmVIWIDLbGn +#EXTINF:10.066667, +https://worker-little-base-2714.mail-2e4.workers.dev/?https%3A%2F%2Fdrive.google.com%2Fuc%3Fid%3D1QAftmyiKYpgIRrWVDcQRJJuhie0fwrqe +#EXTINF:10.061333, +https://worker-little-base-2714.mail-2e4.workers.dev/?https%3A%2F%2Fdrive.google.com%2Fuc%3Fid%3D13J6TaEJ-WNNbnuh46WoudkMNEJLHX-DV +#EXTINF:10.077333, +https://worker-little-base-2714.mail-2e4.workers.dev/?https%3A%2F%2Fdrive.google.com%2Fuc%3Fid%3D1EeViAqVKsHgWAXzhuHF3saDVvotoSLuR +#EXTINF:10.072, +https://worker-little-base-2714.mail-2e4.workers.dev/?https%3A%2F%2Fdrive.google.com%2Fuc%3Fid%3D1X0HZc2BEetDJ57lA-Sh6naKJPAUz1Sfz +#EXTINF:13.146667, +https://worker-little-base-2714.mail-2e4.workers.dev/?https%3A%2F%2Fdrive.google.com%2Fuc%3Fid%3D1NCxoJAiD2xPJFIQfK8g-0rDhuu9M5vSV +#EXTINF:9.749333, +https://worker-little-base-2714.mail-2e4.workers.dev/?https%3A%2F%2Fdrive.google.com%2Fuc%3Fid%3D1oiYj9OzLYLD-lA6hQgZPhg2yowMZCAKC +#EXTINF:6.264, +https://worker-little-base-2714.mail-2e4.workers.dev/?https%3A%2F%2Fdrive.google.com%2Fuc%3Fid%3D1BH53zN7tZLAoqGDlcOJ04fDf5GVceeMR +#EXTINF:10.077333, +https://worker-little-base-2714.mail-2e4.workers.dev/?https%3A%2F%2Fdrive.google.com%2Fuc%3Fid%3D1xjN9GwfCas-iVJpb7LJAo4kbhtne955P +#EXTINF:10.072, +https://worker-little-base-2714.mail-2e4.workers.dev/?https%3A%2F%2Fdrive.google.com%2Fuc%3Fid%3D1qZ8Y6pYPbtIVZ1cSw_aZ5gXDnvrZV99e +#EXTINF:10.066667, +https://worker-little-base-2714.mail-2e4.workers.dev/?https%3A%2F%2Fdrive.google.com%2Fuc%3Fid%3D1BVLydSS969Vjfc6Bf3p8aWzwE2tzM5OK +#EXTINF:10.061333, +https://worker-little-base-2714.mail-2e4.workers.dev/?https%3A%2F%2Fdrive.google.com%2Fuc%3Fid%3D1poTqVb8FVVKzBLIZBhztHiqBjM_TfyQ8 +#EXTINF:16.317333, +https://worker-little-base-2714.mail-2e4.workers.dev/?https%3A%2F%2Fdrive.google.com%2Fuc%3Fid%3D1Knu9oPH7po69X9HGznFCbHB25Mmgmov7 +#EXTINF:10.061333, +https://worker-little-base-2714.mail-2e4.workers.dev/?https%3A%2F%2Fdrive.google.com%2Fuc%3Fid%3D1GX2PVofSjeU3l3cID-M20NpV7xeEfEQB +#EXTINF:10.077333, +https://worker-little-base-2714.mail-2e4.workers.dev/?https%3A%2F%2Fdrive.google.com%2Fuc%3Fid%3D1CgZFy3tYuon1fIdyqmlj-zDOkD3-nZcM +#EXTINF:10.072, +https://worker-little-base-2714.mail-2e4.workers.dev/?https%3A%2F%2Fdrive.google.com%2Fuc%3Fid%3D18iIGPu-CDLrh4OnXwTCNo4GGRpcxt6mK +#EXTINF:4.106667, +https://worker-little-base-2714.mail-2e4.workers.dev/?https%3A%2F%2Fdrive.google.com%2Fuc%3Fid%3D1EjyJjvJ7RUizwdcXRamTpEXxutPTRxRI +#EXTINF:10.074667, +https://worker-little-base-2714.mail-2e4.workers.dev/?https%3A%2F%2Fdrive.google.com%2Fuc%3Fid%3D1Xz3nbMBC33MW45Uq807P7ClckDY9_Uso +#EXTINF:10.069333, +https://worker-little-base-2714.mail-2e4.workers.dev/?https%3A%2F%2Fdrive.google.com%2Fuc%3Fid%3D1oUE75dJDk0q-qrITQtEjU4vsVq7KZSJm +#EXTINF:10.064, +https://worker-little-base-2714.mail-2e4.workers.dev/?https%3A%2F%2Fdrive.google.com%2Fuc%3Fid%3D1TnTLqNYuey0jsiDrIv4W4t1PM7mlBfMB +#EXTINF:8.12, +https://worker-little-base-2714.mail-2e4.workers.dev/?https%3A%2F%2Fdrive.google.com%2Fuc%3Fid%3D1rn1wZ_BdrDAQYabhEaB4FezUQS0z1UHN +#EXTINF:10.077333, +https://worker-little-base-2714.mail-2e4.workers.dev/?https%3A%2F%2Fdrive.google.com%2Fuc%3Fid%3D1BSRGNwtD9XjMzRXnq0f34BDWm-Ku3hb4 +#EXTINF:10.072, +https://worker-little-base-2714.mail-2e4.workers.dev/?https%3A%2F%2Fdrive.google.com%2Fuc%3Fid%3D1jJuk3r7vNREabZNmUxLsIcj8Nf1YwVtc +#EXTINF:13.706667, +https://worker-little-base-2714.mail-2e4.workers.dev/?https%3A%2F%2Fdrive.google.com%2Fuc%3Fid%3D1c2dX_mDEvU_ccFqlsd1RL8IoYB3S7bRp +#EXTINF:10.074667, +https://worker-little-base-2714.mail-2e4.workers.dev/?https%3A%2F%2Fdrive.google.com%2Fuc%3Fid%3D1jLFwAiQ6tyn4MRKH7-jUKYeMpZdiGcrZ +#EXTINF:10.069333, +https://worker-little-base-2714.mail-2e4.workers.dev/?https%3A%2F%2Fdrive.google.com%2Fuc%3Fid%3D1cby6KFNwmihyA1Ev0YdW6hTWZ-4qSbWj +#EXTINF:10.064, +https://worker-little-base-2714.mail-2e4.workers.dev/?https%3A%2F%2Fdrive.google.com%2Fuc%3Fid%3D1SnDpE4iIFQogXeA8tfWYg6F1TNqxxfuc +#EXTINF:10.08, +https://worker-little-base-2714.mail-2e4.workers.dev/?https%3A%2F%2Fdrive.google.com%2Fuc%3Fid%3D1-tsjsi0woMTgYQQltsse9fWaiOJhrulB +#EXTINF:10.074667, +https://worker-little-base-2714.mail-2e4.workers.dev/?https%3A%2F%2Fdrive.google.com%2Fuc%3Fid%3D1CtO-B-3qw-d2s8f17h_EED8HIWIrzEL3 +#EXTINF:8.829333, +https://worker-little-base-2714.mail-2e4.workers.dev/?https%3A%2F%2Fdrive.google.com%2Fuc%3Fid%3D1UVOemHeVACxRMOMfeVTwEQCFWGyZAiKJ +#EXTINF:10.061333, +https://worker-little-base-2714.mail-2e4.workers.dev/?https%3A%2F%2Fdrive.google.com%2Fuc%3Fid%3D1aqoTMLV7vzs6FwYojllQsabvJpfSbuI2 +#EXTINF:10.077333, +https://worker-little-base-2714.mail-2e4.workers.dev/?https%3A%2F%2Fdrive.google.com%2Fuc%3Fid%3D1nP2cQ4fpHsXc26sKzTu5m40e2PgAJKSw +#EXTINF:10.072, +https://worker-little-base-2714.mail-2e4.workers.dev/?https%3A%2F%2Fdrive.google.com%2Fuc%3Fid%3D1ieMT0cftN54fYT3dJVOwIkXtveO2lTPS +#EXTINF:10.066667, +https://worker-little-base-2714.mail-2e4.workers.dev/?https%3A%2F%2Fdrive.google.com%2Fuc%3Fid%3D1QMqfzhC-Q1h8vp9mxCW-T4UqdEAjLPBb +#EXTINF:10.061333, +https://worker-little-base-2714.mail-2e4.workers.dev/?https%3A%2F%2Fdrive.google.com%2Fuc%3Fid%3D1qqEGl2L8pzRqMROlhiKhOK6HK9Nbkjft +#EXTINF:16.557333, +https://worker-little-base-2714.mail-2e4.workers.dev/?https%3A%2F%2Fdrive.google.com%2Fuc%3Fid%3D1GMdoJIq3bx3hfagkcNR8FBfgivoaOOIA +#EXTINF:10.066667, +https://worker-little-base-2714.mail-2e4.workers.dev/?https%3A%2F%2Fdrive.google.com%2Fuc%3Fid%3D1unCEmWS5mYXGctxppefPj7_6DSG2Owo9 +#EXTINF:10.061333, +https://worker-little-base-2714.mail-2e4.workers.dev/?https%3A%2F%2Fdrive.google.com%2Fuc%3Fid%3D1UDP9dt2ab7NpCT96Q8lci-qDbJb8t-qu +#EXTINF:10.077333, +https://worker-little-base-2714.mail-2e4.workers.dev/?https%3A%2F%2Fdrive.google.com%2Fuc%3Fid%3D1Jo21Yw8yEFLliJHxQ7pRcVDZle1CPr9K +#EXTINF:2.032, +https://worker-little-base-2714.mail-2e4.workers.dev/?https%3A%2F%2Fdrive.google.com%2Fuc%3Fid%3D1-c-8Dooklwgp4ed6v4uuJT4m907l1S9f +#EXTINF:10.069333, +https://worker-little-base-2714.mail-2e4.workers.dev/?https%3A%2F%2Fdrive.google.com%2Fuc%3Fid%3D1H7zzIYZy2of-62szSvMG8YFz4sOJVr1g +#EXTINF:10.064, +https://worker-little-base-2714.mail-2e4.workers.dev/?https%3A%2F%2Fdrive.google.com%2Fuc%3Fid%3D1zvY9RezXUF3JkdffaVdiL7l04VNNAQwI +#EXTINF:10.08, +https://worker-little-base-2714.mail-2e4.workers.dev/?https%3A%2F%2Fdrive.google.com%2Fuc%3Fid%3D12QMbUu3qBdPb02s0j_2B3DQkSjUH5uOS +#EXTINF:18.274667, +https://worker-little-base-2714.mail-2e4.workers.dev/?https%3A%2F%2Fdrive.google.com%2Fuc%3Fid%3D1JlGfs7KTpU7gPb1BAWgN39LfBZDEh1nw +#EXTINF:9.477333, +https://worker-little-base-2714.mail-2e4.workers.dev/?https%3A%2F%2Fdrive.google.com%2Fuc%3Fid%3D1M73MxNKPmoERj1-79J6zAMAr-sqXl7GL +#EXTINF:8.229333, +https://worker-little-base-2714.mail-2e4.workers.dev/?https%3A%2F%2Fdrive.google.com%2Fuc%3Fid%3D1_LnO6SveyOQHSPJWO-E9IQMLuW-Hp3al +#EXTINF:10.08, +https://worker-little-base-2714.mail-2e4.workers.dev/?https%3A%2F%2Fdrive.google.com%2Fuc%3Fid%3D1ZVoDQt1EqnvnBmgi2cvbc6uvXB6-bw_J +#EXTINF:10.074667, +https://worker-little-base-2714.mail-2e4.workers.dev/?https%3A%2F%2Fdrive.google.com%2Fuc%3Fid%3D1-6N_TBe20-FW49yQff1632CWMk3QVBp7 +#EXTINF:10.069333, +https://worker-little-base-2714.mail-2e4.workers.dev/?https%3A%2F%2Fdrive.google.com%2Fuc%3Fid%3D1Mapec25RelzGSGsl4r_njTWtYe7479hH +#EXTINF:8.504, +https://worker-little-base-2714.mail-2e4.workers.dev/?https%3A%2F%2Fdrive.google.com%2Fuc%3Fid%3D1M7TYSoF2xvSZmaTjgVgJk71DCizE9nn- +#EXTINF:10.077333, +https://worker-little-base-2714.mail-2e4.workers.dev/?https%3A%2F%2Fdrive.google.com%2Fuc%3Fid%3D1SDXT-AGUEC9bT1L4BI8tVcPmOCQu4SAo +#EXTINF:8.312, +https://worker-little-base-2714.mail-2e4.workers.dev/?https%3A%2F%2Fdrive.google.com%2Fuc%3Fid%3D1YmOMtCjlkVCrfP867bpVXkO31eRFVG8s +#EXTINF:12.957333, +https://worker-little-base-2714.mail-2e4.workers.dev/?https%3A%2F%2Fdrive.google.com%2Fuc%3Fid%3D1mwz3Kj1UbVzxgTcyC7eY2jhX9cQqTpQ5 +#EXTINF:10.072, +https://worker-little-base-2714.mail-2e4.workers.dev/?https%3A%2F%2Fdrive.google.com%2Fuc%3Fid%3D1rmywFVe3V63kwR2TIIeNENnJNxuzHdk7 +#EXTINF:10.066667, +https://worker-little-base-2714.mail-2e4.workers.dev/?https%3A%2F%2Fdrive.google.com%2Fuc%3Fid%3D1pzaSI5FfPUvu49NB5vZrImHQAfRjdv5T +#EXTINF:10.061333, +https://worker-little-base-2714.mail-2e4.workers.dev/?https%3A%2F%2Fdrive.google.com%2Fuc%3Fid%3D1xpoFioirQCrZQVsIzcLEEFxnlJelDM0P +#EXTINF:6.677333, +https://worker-little-base-2714.mail-2e4.workers.dev/?https%3A%2F%2Fdrive.google.com%2Fuc%3Fid%3D1I1hVJYL4FDvSRAZ1uKjsIfYYIfupKc-M +#EXTINF:10.064, +https://worker-little-base-2714.mail-2e4.workers.dev/?https%3A%2F%2Fdrive.google.com%2Fuc%3Fid%3D1luetodqhxbY15hWNICdQTMLlirHqQlZ9 +#EXTINF:10.08, +https://worker-little-base-2714.mail-2e4.workers.dev/?https%3A%2F%2Fdrive.google.com%2Fuc%3Fid%3D1l5JmywOf1RKy-sGnwSn8GdM-IGMdaa7a +#EXTINF:10.074667, +https://worker-little-base-2714.mail-2e4.workers.dev/?https%3A%2F%2Fdrive.google.com%2Fuc%3Fid%3D1E83UoKR1hPwvKVAyXHTBm_hz4iytIZZN +#EXTINF:10.069333, +https://worker-little-base-2714.mail-2e4.workers.dev/?https%3A%2F%2Fdrive.google.com%2Fuc%3Fid%3D1sZNKuivlify6ui6P7GhDsgU3yMuyHj8b +#EXTINF:10.064, +https://worker-little-base-2714.mail-2e4.workers.dev/?https%3A%2F%2Fdrive.google.com%2Fuc%3Fid%3D1dd7xciFgFvNy9kmUzC5FMDSqAYr0h9fN +#EXTINF:15.12, +https://worker-little-base-2714.mail-2e4.workers.dev/?https%3A%2F%2Fdrive.google.com%2Fuc%3Fid%3D1P9_c9WIVaCAhcbhhEKa_non3WJjJZPW_ +#EXTINF:10.08, +https://worker-little-base-2714.mail-2e4.workers.dev/?https%3A%2F%2Fdrive.google.com%2Fuc%3Fid%3D1V87s6RGOfUDoDNcNeEb7Ay0Oh90SZtcR +#EXTINF:10.074667, +https://worker-little-base-2714.mail-2e4.workers.dev/?https%3A%2F%2Fdrive.google.com%2Fuc%3Fid%3D1ac7nweMhvxR3_Wh0KBYCt2EMQdgg-hbC +#EXTINF:10.069333, +https://worker-little-base-2714.mail-2e4.workers.dev/?https%3A%2F%2Fdrive.google.com%2Fuc%3Fid%3D1DE0hbVmoHDGrDa2qG_JeeODL64PFcyLj +#EXTINF:10.064, +https://worker-little-base-2714.mail-2e4.workers.dev/?https%3A%2F%2Fdrive.google.com%2Fuc%3Fid%3D1FDVH-MOAHzYdx286IkWk-d8A62II7XpB +#EXTINF:10.08, +https://worker-little-base-2714.mail-2e4.workers.dev/?https%3A%2F%2Fdrive.google.com%2Fuc%3Fid%3D14xmJ6dpY_7H3bghn3puns6EGKayZL4gD +#EXTINF:10.074667, +https://worker-little-base-2714.mail-2e4.workers.dev/?https%3A%2F%2Fdrive.google.com%2Fuc%3Fid%3D1P_XYOh_TdvfOfq9vYSI2gvTNw28rdWLE +#EXTINF:10.069333, +https://worker-little-base-2714.mail-2e4.workers.dev/?https%3A%2F%2Fdrive.google.com%2Fuc%3Fid%3D14UyvRSLXriJA8DEnB1we_-h9rkaxbJTG +#EXTINF:10.064, +https://worker-little-base-2714.mail-2e4.workers.dev/?https%3A%2F%2Fdrive.google.com%2Fuc%3Fid%3D1L5oO8fKPhS0fXltTAd_ztAEz4_fhHPsZ +#EXTINF:9.24, +https://worker-little-base-2714.mail-2e4.workers.dev/?https%3A%2F%2Fdrive.google.com%2Fuc%3Fid%3D1LNAA8qJZ437_OKPZYY8X16qVlPRXf21h +#EXTINF:5.906667, +https://worker-little-base-2714.mail-2e4.workers.dev/?https%3A%2F%2Fdrive.google.com%2Fuc%3Fid%3D1nT-grdkkRjOZkuaqPQe6zmWoQPM-Qn-Y +#EXTINF:10.061333, +https://worker-little-base-2714.mail-2e4.workers.dev/?https%3A%2F%2Fdrive.google.com%2Fuc%3Fid%3D1mwNGRlpiZsFwdldYDu0xXXa8U7wQhdei +#EXTINF:10.077333, +https://worker-little-base-2714.mail-2e4.workers.dev/?https%3A%2F%2Fdrive.google.com%2Fuc%3Fid%3D1W_c39LphFP0DF9iuA4lkh_XCKCxQ0YYt +#EXTINF:9.472, +https://worker-little-base-2714.mail-2e4.workers.dev/?https%3A%2F%2Fdrive.google.com%2Fuc%3Fid%3D1c5lA-VvCvWAClGjC4EX4eyZATAjNgDJ3 +#EXTINF:15.584, +https://worker-little-base-2714.mail-2e4.workers.dev/?https%3A%2F%2Fdrive.google.com%2Fuc%3Fid%3D1h49Nbr1EBjVv_sE69V84OrEAS_gfB3JN +#EXTINF:3.714667, +https://worker-little-base-2714.mail-2e4.workers.dev/?https%3A%2F%2Fdrive.google.com%2Fuc%3Fid%3D183AZhVmR6R8z6S73Hg_B62W93H4-kYdx +#EXTINF:10.066667, +https://worker-little-base-2714.mail-2e4.workers.dev/?https%3A%2F%2Fdrive.google.com%2Fuc%3Fid%3D1aOKClXx92faIPLp589P9pAIgy4gFLuWw +#EXTINF:10.061333, +https://worker-little-base-2714.mail-2e4.workers.dev/?https%3A%2F%2Fdrive.google.com%2Fuc%3Fid%3D1-gv8pZLOC2-sEqRmlYAYFPLAqV8eq6Ek +#EXTINF:10.077333, +https://worker-little-base-2714.mail-2e4.workers.dev/?https%3A%2F%2Fdrive.google.com%2Fuc%3Fid%3D1p5qz3cjyaD9yv7pmcxSHh4XiHlyR4NRS +#EXTINF:10.072, +https://worker-little-base-2714.mail-2e4.workers.dev/?https%3A%2F%2Fdrive.google.com%2Fuc%3Fid%3D1b4dOz4QEXV2tG7EtkqrIHCaIczrz6w93 +#EXTINF:17.826667, +https://worker-little-base-2714.mail-2e4.workers.dev/?https%3A%2F%2Fdrive.google.com%2Fuc%3Fid%3D1K-sGBulCANzxPrcqmpaaBzkLcMLDIxyU +#EXTINF:10.077333, +https://worker-little-base-2714.mail-2e4.workers.dev/?https%3A%2F%2Fdrive.google.com%2Fuc%3Fid%3D1dWtUB1jU0bO8HRS73YKeHz85xdzmyrLu +#EXTINF:7.672, +https://worker-little-base-2714.mail-2e4.workers.dev/?https%3A%2F%2Fdrive.google.com%2Fuc%3Fid%3D1KoMSxONN-MPCl7zwFMzLKKt0tbnH-EO3 +#EXTINF:10.077333, +https://worker-little-base-2714.mail-2e4.workers.dev/?https%3A%2F%2Fdrive.google.com%2Fuc%3Fid%3D1baWEIj6esNSvTnb9PkBwGhSY_K-dYF6Q +#EXTINF:10.072, +https://worker-little-base-2714.mail-2e4.workers.dev/?https%3A%2F%2Fdrive.google.com%2Fuc%3Fid%3D1vL5WrxS7KPL6O4Mkwtw06HnZl6kSNsgU +#EXTINF:8.826667, +https://worker-little-base-2714.mail-2e4.workers.dev/?https%3A%2F%2Fdrive.google.com%2Fuc%3Fid%3D1rR5OMRC1WrhMjqWgaySLwTcdaBh6YbHT +#EXTINF:9.68, +https://worker-little-base-2714.mail-2e4.workers.dev/?https%3A%2F%2Fdrive.google.com%2Fuc%3Fid%3D19PQO8FFN0ax-X8DIYtE5jam5Hf8Wzq99 +#EXTINF:6.64, +https://worker-little-base-2714.mail-2e4.workers.dev/?https%3A%2F%2Fdrive.google.com%2Fuc%3Fid%3D1gRZeWZ7ua3eyxEMwPgd7fr4ViWScMgIE +#EXTINF:10.069333, +https://worker-little-base-2714.mail-2e4.workers.dev/?https%3A%2F%2Fdrive.google.com%2Fuc%3Fid%3D17mTjhmE-Z-IQWWuJtOziLgIrY9N4_tLk +#EXTINF:10.064, +https://worker-little-base-2714.mail-2e4.workers.dev/?https%3A%2F%2Fdrive.google.com%2Fuc%3Fid%3D1DS_j8x9R-zJTFq9doIeFFJHaqCV8_Zgn +#EXTINF:10.08, +https://worker-little-base-2714.mail-2e4.workers.dev/?https%3A%2F%2Fdrive.google.com%2Fuc%3Fid%3D1lj2xmGXKv6UzV-KvfN3Lb8K1nRquqTlS +#EXTINF:10.074667, +https://worker-little-base-2714.mail-2e4.workers.dev/?https%3A%2F%2Fdrive.google.com%2Fuc%3Fid%3D1QHvre5o77bBoyvxEtvBjBKVmGbhTt50e +#EXTINF:10.069333, +https://worker-little-base-2714.mail-2e4.workers.dev/?https%3A%2F%2Fdrive.google.com%2Fuc%3Fid%3D1dTRqm7L6cajZ5XkYLz9lpBObNt0WReee +#EXTINF:10.064, +https://worker-little-base-2714.mail-2e4.workers.dev/?https%3A%2F%2Fdrive.google.com%2Fuc%3Fid%3D1OAQJwJ6k7CHv3orEzxsknwUxa4yBJ0Nw +#EXTINF:16.2, +https://worker-little-base-2714.mail-2e4.workers.dev/?https%3A%2F%2Fdrive.google.com%2Fuc%3Fid%3D1klGVdNXtQVtIT4MKr2M3PV9g55zAZR7t +#EXTINF:10.072, +https://worker-little-base-2714.mail-2e4.workers.dev/?https%3A%2F%2Fdrive.google.com%2Fuc%3Fid%3D1A0lc2TAiPS9NCifb2bP-x0QvYRFeC_Kp +#EXTINF:10.066667, +https://worker-little-base-2714.mail-2e4.workers.dev/?https%3A%2F%2Fdrive.google.com%2Fuc%3Fid%3D18LvLlklHoLhFQ5KVjY6LZbOmKGqH5JrZ +#EXTINF:4.541333, +https://worker-little-base-2714.mail-2e4.workers.dev/?https%3A%2F%2Fdrive.google.com%2Fuc%3Fid%3D1A5UuCBpu5Q5BDCLAAnEcwct1R-t4OGYD +#EXTINF:10.061333, +https://worker-little-base-2714.mail-2e4.workers.dev/?https%3A%2F%2Fdrive.google.com%2Fuc%3Fid%3D1aNn8JCj780XqgBxEQIiOgVgO_jXQscoR +#EXTINF:10.077333, +https://worker-little-base-2714.mail-2e4.workers.dev/?https%3A%2F%2Fdrive.google.com%2Fuc%3Fid%3D1Fan2pFnrdwSMUjrzYSoMQQhQsaFpKxj5 +#EXTINF:10.072, +https://worker-little-base-2714.mail-2e4.workers.dev/?https%3A%2F%2Fdrive.google.com%2Fuc%3Fid%3D1zSZNpmpPyjygitB9WsiOCLuj_50CRqol +#EXTINF:10.066667, +https://worker-little-base-2714.mail-2e4.workers.dev/?https%3A%2F%2Fdrive.google.com%2Fuc%3Fid%3D1Vzdiji2gUQXr1dmUElu8C1SVX-ZOkhTN +#EXTINF:10.061333, +https://worker-little-base-2714.mail-2e4.workers.dev/?https%3A%2F%2Fdrive.google.com%2Fuc%3Fid%3D1U1o4lqpMMZoMNcCmE_WiJcExLCtc0bVT +#EXTINF:16.917333, +https://worker-little-base-2714.mail-2e4.workers.dev/?https%3A%2F%2Fdrive.google.com%2Fuc%3Fid%3D1li4jHyt09bhwARj0YmmM7-yn_KTbrFF9 +#EXTINF:10.064, +https://worker-little-base-2714.mail-2e4.workers.dev/?https%3A%2F%2Fdrive.google.com%2Fuc%3Fid%3D1LFAAXYH9xHkNtSsNUethZLQsVMqA7Bbd +#EXTINF:10.08, +https://worker-little-base-2714.mail-2e4.workers.dev/?https%3A%2F%2Fdrive.google.com%2Fuc%3Fid%3D1yqVdbzl20c5AuIXIbACkHkWuHjaHlk5N +#EXTINF:10.074667, +https://worker-little-base-2714.mail-2e4.workers.dev/?https%3A%2F%2Fdrive.google.com%2Fuc%3Fid%3D1RQB9nvjvD_jKa2BxI36Ogqhn1k00P1yb +#EXTINF:9.669333, +https://worker-little-base-2714.mail-2e4.workers.dev/?https%3A%2F%2Fdrive.google.com%2Fuc%3Fid%3D1ybpY4isX8f4g_bukhBFreN3wvHJ92rjC +#EXTINF:10.069333, +https://worker-little-base-2714.mail-2e4.workers.dev/?https%3A%2F%2Fdrive.google.com%2Fuc%3Fid%3D18nQn86JIzSOFjLou813XOPRix6rO3r4N +#EXTINF:10.064, +https://worker-little-base-2714.mail-2e4.workers.dev/?https%3A%2F%2Fdrive.google.com%2Fuc%3Fid%3D1DImO124zYfbzn07krbEaKo2V8K3qCO6S +#EXTINF:5.12, +https://worker-little-base-2714.mail-2e4.workers.dev/?https%3A%2F%2Fdrive.google.com%2Fuc%3Fid%3D18HqPVJGVu5gjrPzsusKsU93k5wr4XLA5 +#EXTINF:7.784, +https://worker-little-base-2714.mail-2e4.workers.dev/?https%3A%2F%2Fdrive.google.com%2Fuc%3Fid%3D1tvsq5tPWqmi2L7OEfFDIVmGa0f6hE0di +#EXTINF:4.901333, +https://worker-little-base-2714.mail-2e4.workers.dev/?https%3A%2F%2Fdrive.google.com%2Fuc%3Fid%3D1uYj7QEBd7m4mPGVoGUie4S1udzafsRfB +#EXT-X-ENDLIST diff --git a/public/debates/media/pcp-vs-livre.m3u8.orig b/public/debates/media/pcp-vs-livre.m3u8.orig new file mode 100644 index 0000000..1a7118f --- /dev/null +++ b/public/debates/media/pcp-vs-livre.m3u8.orig @@ -0,0 +1,381 @@ +#EXTM3U +#EXT-X-VERSION:3 +#EXT-X-TARGETDURATION:19 +#EXT-X-MEDIA-SEQUENCE:0 +#EXTINF:15.360000, +pcp-vs-livre_segment_000.ts +#EXTINF:5.360000, +pcp-vs-livre_segment_001.ts +#EXTINF:15.040000, +pcp-vs-livre_segment_002.ts +#EXTINF:11.920000, +pcp-vs-livre_segment_003.ts +#EXTINF:10.000000, +pcp-vs-livre_segment_004.ts +#EXTINF:10.000000, +pcp-vs-livre_segment_005.ts +#EXTINF:9.000000, +pcp-vs-livre_segment_006.ts +#EXTINF:10.000000, +pcp-vs-livre_segment_007.ts +#EXTINF:10.000000, +pcp-vs-livre_segment_008.ts +#EXTINF:6.160000, +pcp-vs-livre_segment_009.ts +#EXTINF:7.800000, +pcp-vs-livre_segment_010.ts +#EXTINF:10.000000, +pcp-vs-livre_segment_011.ts +#EXTINF:10.000000, +pcp-vs-livre_segment_012.ts +#EXTINF:10.000000, +pcp-vs-livre_segment_013.ts +#EXTINF:9.680000, +pcp-vs-livre_segment_014.ts +#EXTINF:10.000000, +pcp-vs-livre_segment_015.ts +#EXTINF:10.000000, +pcp-vs-livre_segment_016.ts +#EXTINF:19.480000, +pcp-vs-livre_segment_017.ts +#EXTINF:10.000000, +pcp-vs-livre_segment_018.ts +#EXTINF:7.600000, +pcp-vs-livre_segment_019.ts +#EXTINF:5.200000, +pcp-vs-livre_segment_020.ts +#EXTINF:7.440000, +pcp-vs-livre_segment_021.ts +#EXTINF:12.920000, +pcp-vs-livre_segment_022.ts +#EXTINF:10.000000, +pcp-vs-livre_segment_023.ts +#EXTINF:10.000000, +pcp-vs-livre_segment_024.ts +#EXTINF:10.000000, +pcp-vs-livre_segment_025.ts +#EXTINF:10.000000, +pcp-vs-livre_segment_026.ts +#EXTINF:16.480000, +pcp-vs-livre_segment_027.ts +#EXTINF:10.000000, +pcp-vs-livre_segment_028.ts +#EXTINF:10.000000, +pcp-vs-livre_segment_029.ts +#EXTINF:4.920000, +pcp-vs-livre_segment_030.ts +#EXTINF:10.000000, +pcp-vs-livre_segment_031.ts +#EXTINF:10.000000, +pcp-vs-livre_segment_032.ts +#EXTINF:10.000000, +pcp-vs-livre_segment_033.ts +#EXTINF:10.000000, +pcp-vs-livre_segment_034.ts +#EXTINF:10.000000, +pcp-vs-livre_segment_035.ts +#EXTINF:10.000000, +pcp-vs-livre_segment_036.ts +#EXTINF:10.000000, +pcp-vs-livre_segment_037.ts +#EXTINF:10.000000, +pcp-vs-livre_segment_038.ts +#EXTINF:13.240000, +pcp-vs-livre_segment_039.ts +#EXTINF:8.560000, +pcp-vs-livre_segment_040.ts +#EXTINF:8.480000, +pcp-vs-livre_segment_041.ts +#EXTINF:7.600000, +pcp-vs-livre_segment_042.ts +#EXTINF:9.400000, +pcp-vs-livre_segment_043.ts +#EXTINF:10.000000, +pcp-vs-livre_segment_044.ts +#EXTINF:10.000000, +pcp-vs-livre_segment_045.ts +#EXTINF:10.000000, +pcp-vs-livre_segment_046.ts +#EXTINF:10.000000, +pcp-vs-livre_segment_047.ts +#EXTINF:10.000000, +pcp-vs-livre_segment_048.ts +#EXTINF:10.000000, +pcp-vs-livre_segment_049.ts +#EXTINF:10.000000, +pcp-vs-livre_segment_050.ts +#EXTINF:10.000000, +pcp-vs-livre_segment_051.ts +#EXTINF:10.000000, +pcp-vs-livre_segment_052.ts +#EXTINF:10.000000, +pcp-vs-livre_segment_053.ts +#EXTINF:10.000000, +pcp-vs-livre_segment_054.ts +#EXTINF:16.440000, +pcp-vs-livre_segment_055.ts +#EXTINF:10.000000, +pcp-vs-livre_segment_056.ts +#EXTINF:10.000000, +pcp-vs-livre_segment_057.ts +#EXTINF:8.560000, +pcp-vs-livre_segment_058.ts +#EXTINF:10.000000, +pcp-vs-livre_segment_059.ts +#EXTINF:5.720000, +pcp-vs-livre_segment_060.ts +#EXTINF:10.000000, +pcp-vs-livre_segment_061.ts +#EXTINF:10.000000, +pcp-vs-livre_segment_062.ts +#EXTINF:8.920000, +pcp-vs-livre_segment_063.ts +#EXTINF:9.560000, +pcp-vs-livre_segment_064.ts +#EXTINF:10.000000, +pcp-vs-livre_segment_065.ts +#EXTINF:15.960000, +pcp-vs-livre_segment_066.ts +#EXTINF:10.000000, +pcp-vs-livre_segment_067.ts +#EXTINF:10.000000, +pcp-vs-livre_segment_068.ts +#EXTINF:6.120000, +pcp-vs-livre_segment_069.ts +#EXTINF:11.480000, +pcp-vs-livre_segment_070.ts +#EXTINF:9.800000, +pcp-vs-livre_segment_071.ts +#EXTINF:8.520000, +pcp-vs-livre_segment_072.ts +#EXTINF:10.000000, +pcp-vs-livre_segment_073.ts +#EXTINF:10.000000, +pcp-vs-livre_segment_074.ts +#EXTINF:10.000000, +pcp-vs-livre_segment_075.ts +#EXTINF:10.000000, +pcp-vs-livre_segment_076.ts +#EXTINF:10.000000, +pcp-vs-livre_segment_077.ts +#EXTINF:13.080000, +pcp-vs-livre_segment_078.ts +#EXTINF:9.680000, +pcp-vs-livre_segment_079.ts +#EXTINF:6.200000, +pcp-vs-livre_segment_080.ts +#EXTINF:10.000000, +pcp-vs-livre_segment_081.ts +#EXTINF:10.000000, +pcp-vs-livre_segment_082.ts +#EXTINF:10.000000, +pcp-vs-livre_segment_083.ts +#EXTINF:10.000000, +pcp-vs-livre_segment_084.ts +#EXTINF:16.240000, +pcp-vs-livre_segment_085.ts +#EXTINF:10.000000, +pcp-vs-livre_segment_086.ts +#EXTINF:10.000000, +pcp-vs-livre_segment_087.ts +#EXTINF:10.000000, +pcp-vs-livre_segment_088.ts +#EXTINF:4.040000, +pcp-vs-livre_segment_089.ts +#EXTINF:10.000000, +pcp-vs-livre_segment_090.ts +#EXTINF:10.000000, +pcp-vs-livre_segment_091.ts +#EXTINF:10.000000, +pcp-vs-livre_segment_092.ts +#EXTINF:8.040000, +pcp-vs-livre_segment_093.ts +#EXTINF:10.000000, +pcp-vs-livre_segment_094.ts +#EXTINF:10.000000, +pcp-vs-livre_segment_095.ts +#EXTINF:13.640000, +pcp-vs-livre_segment_096.ts +#EXTINF:10.000000, +pcp-vs-livre_segment_097.ts +#EXTINF:10.000000, +pcp-vs-livre_segment_098.ts +#EXTINF:10.000000, +pcp-vs-livre_segment_099.ts +#EXTINF:10.000000, +pcp-vs-livre_segment_100.ts +#EXTINF:10.000000, +pcp-vs-livre_segment_101.ts +#EXTINF:8.760000, +pcp-vs-livre_segment_102.ts +#EXTINF:10.000000, +pcp-vs-livre_segment_103.ts +#EXTINF:10.000000, +pcp-vs-livre_segment_104.ts +#EXTINF:10.000000, +pcp-vs-livre_segment_105.ts +#EXTINF:10.000000, +pcp-vs-livre_segment_106.ts +#EXTINF:10.000000, +pcp-vs-livre_segment_107.ts +#EXTINF:16.480000, +pcp-vs-livre_segment_108.ts +#EXTINF:10.000000, +pcp-vs-livre_segment_109.ts +#EXTINF:10.000000, +pcp-vs-livre_segment_110.ts +#EXTINF:10.000000, +pcp-vs-livre_segment_111.ts +#EXTINF:1.960000, +pcp-vs-livre_segment_112.ts +#EXTINF:10.000000, +pcp-vs-livre_segment_113.ts +#EXTINF:10.000000, +pcp-vs-livre_segment_114.ts +#EXTINF:10.000000, +pcp-vs-livre_segment_115.ts +#EXTINF:18.200000, +pcp-vs-livre_segment_116.ts +#EXTINF:9.400000, +pcp-vs-livre_segment_117.ts +#EXTINF:8.160000, +pcp-vs-livre_segment_118.ts +#EXTINF:10.000000, +pcp-vs-livre_segment_119.ts +#EXTINF:10.000000, +pcp-vs-livre_segment_120.ts +#EXTINF:10.000000, +pcp-vs-livre_segment_121.ts +#EXTINF:8.440000, +pcp-vs-livre_segment_122.ts +#EXTINF:10.000000, +pcp-vs-livre_segment_123.ts +#EXTINF:8.240000, +pcp-vs-livre_segment_124.ts +#EXTINF:12.880000, +pcp-vs-livre_segment_125.ts +#EXTINF:10.000000, +pcp-vs-livre_segment_126.ts +#EXTINF:10.000000, +pcp-vs-livre_segment_127.ts +#EXTINF:10.000000, +pcp-vs-livre_segment_128.ts +#EXTINF:6.600000, +pcp-vs-livre_segment_129.ts +#EXTINF:10.000000, +pcp-vs-livre_segment_130.ts +#EXTINF:10.000000, +pcp-vs-livre_segment_131.ts +#EXTINF:10.000000, +pcp-vs-livre_segment_132.ts +#EXTINF:10.000000, +pcp-vs-livre_segment_133.ts +#EXTINF:10.000000, +pcp-vs-livre_segment_134.ts +#EXTINF:15.040000, +pcp-vs-livre_segment_135.ts +#EXTINF:10.000000, +pcp-vs-livre_segment_136.ts +#EXTINF:10.000000, +pcp-vs-livre_segment_137.ts +#EXTINF:10.000000, +pcp-vs-livre_segment_138.ts +#EXTINF:10.000000, +pcp-vs-livre_segment_139.ts +#EXTINF:10.000000, +pcp-vs-livre_segment_140.ts +#EXTINF:10.000000, +pcp-vs-livre_segment_141.ts +#EXTINF:10.000000, +pcp-vs-livre_segment_142.ts +#EXTINF:10.000000, +pcp-vs-livre_segment_143.ts +#EXTINF:9.160000, +pcp-vs-livre_segment_144.ts +#EXTINF:5.840000, +pcp-vs-livre_segment_145.ts +#EXTINF:10.000000, +pcp-vs-livre_segment_146.ts +#EXTINF:10.000000, +pcp-vs-livre_segment_147.ts +#EXTINF:9.400000, +pcp-vs-livre_segment_148.ts +#EXTINF:15.520000, +pcp-vs-livre_segment_149.ts +#EXTINF:3.640000, +pcp-vs-livre_segment_150.ts +#EXTINF:10.000000, +pcp-vs-livre_segment_151.ts +#EXTINF:10.000000, +pcp-vs-livre_segment_152.ts +#EXTINF:10.000000, +pcp-vs-livre_segment_153.ts +#EXTINF:10.000000, +pcp-vs-livre_segment_154.ts +#EXTINF:17.760000, +pcp-vs-livre_segment_155.ts +#EXTINF:10.000000, +pcp-vs-livre_segment_156.ts +#EXTINF:7.600000, +pcp-vs-livre_segment_157.ts +#EXTINF:10.000000, +pcp-vs-livre_segment_158.ts +#EXTINF:10.000000, +pcp-vs-livre_segment_159.ts +#EXTINF:8.760000, +pcp-vs-livre_segment_160.ts +#EXTINF:9.600000, +pcp-vs-livre_segment_161.ts +#EXTINF:6.560000, +pcp-vs-livre_segment_162.ts +#EXTINF:10.000000, +pcp-vs-livre_segment_163.ts +#EXTINF:10.000000, +pcp-vs-livre_segment_164.ts +#EXTINF:10.000000, +pcp-vs-livre_segment_165.ts +#EXTINF:10.000000, +pcp-vs-livre_segment_166.ts +#EXTINF:10.000000, +pcp-vs-livre_segment_167.ts +#EXTINF:10.000000, +pcp-vs-livre_segment_168.ts +#EXTINF:16.120000, +pcp-vs-livre_segment_169.ts +#EXTINF:10.000000, +pcp-vs-livre_segment_170.ts +#EXTINF:10.000000, +pcp-vs-livre_segment_171.ts +#EXTINF:4.480000, +pcp-vs-livre_segment_172.ts +#EXTINF:10.000000, +pcp-vs-livre_segment_173.ts +#EXTINF:10.000000, +pcp-vs-livre_segment_174.ts +#EXTINF:10.000000, +pcp-vs-livre_segment_175.ts +#EXTINF:10.000000, +pcp-vs-livre_segment_176.ts +#EXTINF:10.000000, +pcp-vs-livre_segment_177.ts +#EXTINF:16.840000, +pcp-vs-livre_segment_178.ts +#EXTINF:10.000000, +pcp-vs-livre_segment_179.ts +#EXTINF:10.000000, +pcp-vs-livre_segment_180.ts +#EXTINF:10.000000, +pcp-vs-livre_segment_181.ts +#EXTINF:9.600000, +pcp-vs-livre_segment_182.ts +#EXTINF:10.000000, +pcp-vs-livre_segment_183.ts +#EXTINF:10.000000, +pcp-vs-livre_segment_184.ts +#EXTINF:5.040000, +pcp-vs-livre_segment_185.ts +#EXTINF:7.720000, +pcp-vs-livre_segment_186.ts +#EXTINF:4.840000, +pcp-vs-livre_segment_187.ts +#EXT-X-ENDLIST diff --git a/public/debates/pcp-vs-livre.json b/public/debates/pcp-vs-livre.json new file mode 100644 index 0000000..1cc736f --- /dev/null +++ b/public/debates/pcp-vs-livre.json @@ -0,0 +1,6 @@ +{ + "slug": "pcp-vs-livre", + "title": "PCP - Livre", + "original_url": "https://www.rtp.pt/play/p12901/e747867/debates-legislativas-2024-tvicnn", + "audio_url": "https://drive.google.com/uc?id=1VLqNd3CG2_mGgRkz_r4U94B3HWhH6h2K" +} \ No newline at end of file diff --git a/public/debates/pcp-vs-pan.json b/public/debates/pcp-vs-pan.json index 0e84e39..e960235 100644 --- a/public/debates/pcp-vs-pan.json +++ b/public/debates/pcp-vs-pan.json @@ -1,6 +1,6 @@ { "slug": "pcp-vs-pan", - "title": "PCP vs PAN", + "title": "PCP - PAN", "original_url": "https://www.rtp.pt/play/p12900/e746296/debates-legislativas-2024", "audio_url": "https://drive.google.com/uc?id=146tb4dYnPThDMOCAmQkHzcWIyzR5moqB" } \ No newline at end of file diff --git a/public/debates/ps-vs-il.json b/public/debates/ps-vs-il.json index e574aa4..1e42638 100644 --- a/public/debates/ps-vs-il.json +++ b/public/debates/ps-vs-il.json @@ -1,6 +1,6 @@ { "slug": "ps-vs-il", - "title": "PS vs IL", - "original_url": "https://sicnoticias.pt/pais/2024-02-05-Debate-PS--IL-na-integra-dc65b6a5", + "title": "PS - IL", + "original_url": "https://www.rtp.pt/play/p12899/e746117/debates-legislativas-2024-sicsic-noticias", "audio_url": "https://drive.google.com/uc?id=1Pnc9e-zgUmcAaYxyVh4OxldU8dC7PLHm" } \ No newline at end of file diff --git a/public/debates/ps-vs-pan.json b/public/debates/ps-vs-pan.json index 7986bc6..877b1d4 100644 --- a/public/debates/ps-vs-pan.json +++ b/public/debates/ps-vs-pan.json @@ -1,6 +1,6 @@ { "slug": "ps-vs-pan", - "title": "PS vs PAN", + "title": "PS - PAN", "original_url": "https://www.rtp.pt/play/p12901/e747338/debates-legislativas-2024-tvicnn", "audio_url": "https://drive.google.com/uc?id=1xY2LBaY8H9WthtUEG7h4S_sQN7LjxVfJ" } \ No newline at end of file diff --git a/public/debates/psd-vs-chega.json b/public/debates/psd-vs-chega.json index 20d1774..053aa9b 100644 --- a/public/debates/psd-vs-chega.json +++ b/public/debates/psd-vs-chega.json @@ -1,6 +1,6 @@ { "slug": "psd-vs-chega", - "title": "PSD vs Chega", + "title": "PSD - Chega", "original_url": "https://www.rtp.pt/play/p12900/e747692/debates-legislativas-2024", "audio_url": "https://drive.google.com/uc?id=1-21NOlgRcOMDBbCG1oDCzm26RWlZoY8h" } \ No newline at end of file diff --git a/public/debates/psd-vs-pan.json b/public/debates/psd-vs-pan.json index c0cfb8f..fb63388 100644 --- a/public/debates/psd-vs-pan.json +++ b/public/debates/psd-vs-pan.json @@ -1,6 +1,6 @@ { "slug": "psd-vs-pan", - "title": "PSD vs PAN", + "title": "PSD - PAN", "original_url": "https://www.rtp.pt/play/p12899/e747423/debates-legislativas-2024-sicsic-noticias", "audio_url": "https://drive.google.com/uc?id=1WHxFtmYjukmONNtaUaLXkcUlyMgcZQ9v" } \ No newline at end of file diff --git a/public/debates/psd-vs-pcp.json b/public/debates/psd-vs-pcp.json index b8aca52..8be6478 100644 --- a/public/debates/psd-vs-pcp.json +++ b/public/debates/psd-vs-pcp.json @@ -1,6 +1,6 @@ { "slug": "psd-vs-pcp", - "title": "PSD vs PCP", + "title": "PSD - PCP", "original_url": "https://www.rtp.pt/play/p12900/e747327/debates-legislativas-2024", "audio_url": "https://drive.google.com/uc?id=1gb46XcJOGBmo5r8PkTA6Tw0YylDZv2BA" } \ No newline at end of file diff --git a/speaker_party_conversion.py b/speaker_party_conversion.py new file mode 100644 index 0000000..ec59403 --- /dev/null +++ b/speaker_party_conversion.py @@ -0,0 +1,16 @@ +speaker_party_conversion = { + "Rui Tavares": "Livre", + "Mariana Mortágua": "BE", + "Mariana Mortagua": "BE", + "Pedro Nuno Santos": "PS", + "Luís Montenegro": "PSD", + "Luis Montenegro": "PSD", + "Paulo Raimundo": "PCP", + "Inês de Sousa Real": "PAN", + "Ines de Sousa Real": "PAN", + "Inês Sousa Real": "PAN", + "Ines Sousa Real": "PAN", + "Rui Rocha": "IL", + "André Ventura": "Chega", + "Andre Ventura": "Chega", +} diff --git a/src/debates.json b/src/debates.json index 7ed85db..15407aa 100644 --- a/src/debates.json +++ b/src/debates.json @@ -1,82 +1,92 @@ [ { - "title": "PS vs IL", - "thumbnail": "https://images.impresa.pt/sicnot/2024-02-05-Pedro-Nuno-Santos-Rui-Rocha-e66319ff/16x9/mw-1200&outputFormat=jpeg", - "slug": "ps-vs-il" + "title": "Livre - PAN", + "thumbnail": "https://cdn-images.rtp.pt/multimedia/screenshots/p12900/p12900_1_20240214190334e007t1448.jpg?q=100&format=pjpg&auto=webp&v=3&w=400", + "slug": "livre-vs-pan" }, { - "title": "Chega vs PAN", - "thumbnail": "https://cdn-images.rtp.pt/multimedia/screenshots/p12900/p12900_1_2024020515461.jpg?q=100&format=pjpg&auto=webp&v=3&w=400", - "slug": "chega-vs-pan" + "title": "Chega - BE", + "thumbnail": "https://cdn-images.rtp.pt/multimedia/screenshots/p12900/p12900_1_20240213224338e006t6815.jpg?q=100&format=pjpg&auto=webp&v=3&w=400", + "slug": "be-vs-chega" }, { - "title": "PCP vs PAN", - "thumbnail": "https://cdn-images.rtp.pt/multimedia/screenshots/p12900/p12900_1_2024020615498.jpg?q=100&format=pjpg&auto=webp&v=3&w=400", - "slug": "pcp-vs-pan" + "title": "PSD - Chega", + "thumbnail": "https://cdn-images.rtp.pt/multimedia/screenshots/p12900/p12900_2_2024021215609.jpg?q=100&format=pjpg&auto=webp&v=3&w=400", + "slug": "psd-vs-chega" }, { - "title": "BE vs PSD", - "thumbnail": "https://images.impresa.pt/sicnot/2024-02-06-Mortagua-Montenegro-9d90a5bf/16x9/mw-1200&outputFormat=jpeg", - "slug": "be-vs-psd" + "title": "PSD - PCP", + "thumbnail": "https://cdn-images.rtp.pt/multimedia/screenshots/p12900/p12900_2_20240210000000e004t1350.jpg?q=100&format=pjpg&auto=webp&v=3&w=400", + "slug": "psd-vs-pcp" }, { - "title": "Chega vs IL", - "thumbnail": "https://cdn-images.rtp.pt/multimedia/screenshots/p12899/p12899_1_20240206000000e002t5554.jpg?q=100&format=pjpg&auto=webp&v=3&w=400", - "slug": "chega-vs-il" + "title": "PS - Livre", + "thumbnail": "https://cdn-images.rtp.pt/multimedia/screenshots/p12900/p12900_2_20240209000000e003t2868.jpg?q=100&format=pjpg&auto=webp&v=3&w=400", + "slug": "livre-vs-ps" }, { - "title": "BE vs Livre", - "thumbnail": "https://cdn-images.rtp.pt/multimedia/screenshots/p12899/p12899_1_20240208000000e003t9758.jpg?q=100&format=pjpg&auto=webp&v=3&w=400", - "slug": "be-vs-livre" + "title": "PCP - PAN", + "thumbnail": "https://cdn-images.rtp.pt/multimedia/screenshots/p12900/p12900_1_2024020615498.jpg?q=100&format=pjpg&auto=webp&v=3&w=400", + "slug": "pcp-vs-pan" }, { - "title": "Livre vs IL", - "thumbnail": "https://cdn-images.rtp.pt/multimedia/screenshots/p12901/p12901_1_20240207000000e002t8819.jpg?q=100&format=pjpg&auto=webp&v=3&w=400", - "slug": "livre-vs-il" + "title": "Chega - PAN", + "thumbnail": "https://cdn-images.rtp.pt/multimedia/screenshots/p12900/p12900_1_2024020515461.jpg?q=100&format=pjpg&auto=webp&v=3&w=400", + "slug": "chega-vs-pan" }, { - "title": "Livre vs PS", - "thumbnail": "https://cdn-images.rtp.pt/multimedia/screenshots/p12900/p12900_2_20240209000000e003t2868.jpg?q=100&format=pjpg&auto=webp&v=3&w=400", - "slug": "livre-vs-ps" + "title": "BE - PCP", + "thumbnail": "https://cdn-images.rtp.pt/multimedia/screenshots/p12899/p12899_1_2024021215588.jpg?q=100&format=pjpg&auto=webp&v=3&w=400", + "slug": "be-vs-pcp" }, { - "title": "PSD vs PCP", - "thumbnail": "https://cdn-images.rtp.pt/multimedia/screenshots/p12900/p12900_2_20240210000000e004t1350.jpg?q=100&format=pjpg&auto=webp&v=3&w=400", - "slug": "psd-vs-pcp" + "title": "PSD - PAN", + "thumbnail": "https://cdn-images.rtp.pt/multimedia/screenshots/p12899/p12899_1_20240211000000e005t3623.jpg?q=100&format=pjpg&auto=webp&v=3&w=400", + "slug": "psd-vs-pan" }, { - "title": "IL vs PAN", + "title": "IL - PAN", "thumbnail": "https://cdn-images.rtp.pt/multimedia/screenshots/p12899/p12899_1_20240209000000e004t6009.jpg?q=100&format=pjpg&auto=webp&v=3&w=400", "slug": "il-vs-pan" }, { - "title": "Chega vs PCP", - "thumbnail": "https://cdn-images.rtp.pt/multimedia/screenshots/p12901/p12901_1_20240209000000e003t0509.jpg?q=100&format=pjpg&auto=webp&v=3&w=400", - "slug": "chega-vs-pcp" - }, - { - "title": "BE vs Chega", - "thumbnail": "https://cdn-images.rtp.pt/multimedia/screenshots/p12900/p12900_1_20240213224338e006t6815.jpg?q=100&format=pjpg&auto=webp&v=3&w=400", - "slug": "be-vs-chega" + "title": "BE - Livre", + "thumbnail": "https://cdn-images.rtp.pt/multimedia/screenshots/p12899/p12899_1_20240208000000e003t9758.jpg?q=100&format=pjpg&auto=webp&v=3&w=400", + "slug": "be-vs-livre" }, { - "title": "PSD vs Chega", - "thumbnail": "https://cdn-images.rtp.pt/multimedia/screenshots/p12900/p12900_2_2024021215609.jpg?q=100&format=pjpg&auto=webp&v=3&w=400", - "slug": "psd-vs-chega" + "title": "Chega - IL", + "thumbnail": "https://cdn-images.rtp.pt/multimedia/screenshots/p12899/p12899_1_20240206000000e002t5554.jpg?q=100&format=pjpg&auto=webp&v=3&w=400", + "slug": "chega-vs-il" }, { - "title": "BE vs PCP", - "thumbnail": "https://cdn-images.rtp.pt/multimedia/screenshots/p12899/p12899_1_2024021215588.jpg?q=100&format=pjpg&auto=webp&v=3&w=400", - "slug": "be-vs-pcp" + "title": "PS - IL", + "thumbnail": "https://cdn-images.rtp.pt/multimedia/screenshots/p12899/p12899_20240205070320et0921.jpg?q=100&format=pjpg&auto=webp&v=3&w=400", + "slug": "ps-vs-il" }, { - "title": "PSD vs PAN", - "thumbnail": "https://cdn-images.rtp.pt/multimedia/screenshots/p12899/p12899_1_20240211000000e005t3623.jpg?q=100&format=pjpg&auto=webp&v=3&w=400", - "slug": "psd-vs-pan" + "title": "PCP - Livre", + "thumbnail": "https://cdn-images.rtp.pt/multimedia/screenshots/p12901/p12901_1_20240213000000e005t8779.jpg?q=100&format=pjpg&auto=webp&v=3&w=400", + "slug": "pcp-vs-livre" }, { - "title": "PS vs PAN", + "title": "PS - PAN", "thumbnail": "https://cdn-images.rtp.pt/multimedia/screenshots/p12901/p12901_1_20240210000000e004t8847.jpg?q=100&format=pjpg&auto=webp&v=3&w=400", "slug": "ps-vs-pan" + }, + { + "title": "Chega - PCP", + "thumbnail": "https://cdn-images.rtp.pt/multimedia/screenshots/p12901/p12901_1_20240209000000e003t0509.jpg?q=100&format=pjpg&auto=webp&v=3&w=400", + "slug": "chega-vs-pcp" + }, + { + "title": "IL - Livre", + "thumbnail": "https://cdn-images.rtp.pt/multimedia/screenshots/p12901/p12901_1_20240207000000e002t8819.jpg?q=100&format=pjpg&auto=webp&v=3&w=400", + "slug": "livre-vs-il" + }, + { + "title": "PSD - BE", + "thumbnail": "https://cdn-images.rtp.pt/multimedia/screenshots/p12901/p12901_1_20240206000000e001t7782.jpg?q=100&format=pjpg&auto=webp&v=3&w=400", + "slug": "be-vs-psd" } ] \ No newline at end of file