Git Product home page Git Product logo

webrecorder / replayweb.page Goto Github PK

View Code? Open in Web Editor NEW
626.0 15.0 51.0 78.05 MB

Serverless replay of web archives directly in the browser

Home Page: https://replayweb.page

License: GNU Affero General Public License v3.0

JavaScript 4.63% HTML 0.93% SCSS 1.07% Shell 0.16% Python 0.11% CSS 1.09% TypeScript 92.03%
web-archiving web-archive replay-web-page web-replay wayback-machine warc service-worker wacz

replayweb.page's Introduction

ReplayWebpage

Embedded Viewer Usage Stats:

ReplayWeb.page provides a full web archive viewer that runs directly in the browser, available at: https://replayweb.page/

For full user docs, see: https://replayweb.page/docs.

The ReplayWeb.page App can be downloaded from the Releases page.

See CHANGES.md for the current changes, or the release notes on the link above.

Embedding Guide

See the Embedding Guide for more info on embedding web archives in other sites.

What's in this repo

ReplayWeb.page provides a static site generated with MkDocs, an npm package/library, and an Electron app all in this repo.

This repository contains the 'frontend' UI for the replay system, while the 'backend' is provided via a service worker implementation found at: https://github.com/webrecorder/wabac.js. (Of course, both frontend and backend actually run in the browser).

The frontend is loaded from ui.js, while the backend service/web worker is loaded from sw.js.

This repository contains:

Running ReplayWeb.page

To run ReplayWeb.page and view web archives, a regular HTTP server is all that is needed.

ReplayWeb.page can run with any HTTP server locally. For example, you can run http-server -p 9990 or python -m http.server 9990 to run a static web server in the directory of this repository after running yarn run build. Then, load http://localhost:9990/ and you'll have the core replayweb.page running locally.

Developing ReplayWeb.page

ReplayWeb.page is built as a Node package can be installed using yarn: yarn install

The package provides various commands that can be used with yarn/npm. Some useful commands include:

  • yarn start-dev - to run in dev mode with Webpack dev server on port 9990. Autobuilds dev assets.

  • yarn start-docs - to build assets in dev mode, and start docs in dev mode. Autobuilds /docs assets.

  • yarn start-prod - to run production site on port 9990, with previously built assets (without docs)

  • yarn start-prod-docs - to build production version of the site and build docs with /docs endpoint available.

  • yarn start-electron - to start electron in dev mode, with previously built assets

  • yarn build - to build production assets sw.js, ui.js

  • yarn build-docs - to build the docs site in mkdocs/site to mkdocs/_genhtml

  • yarn dist - to build production assets + Electron app (in dist/)

Static Site

The static assets are placed in the root index.html, sw.js, and ui.js, and can be used with any HTTP server. This provides the core ReplayWeb.page functionality.

Static Site + Docs

The full site with docs is built using MkDocs. Using the yarn build-docs command, the static assets are copied into mkdocs/site/ and using Markdown in mkdocs/site/docs, the final static site is built to mkdocs/_genhtml. This is what is published to https://replayweb.page/ via CI.

Service Worker Requirements

Note that for the 'backend' service worker to work, the static site must be served from either localhost or an HTTPS endpoint. This is browser security requirement and not much can be done to get around that.

See the user docs for additional info about using ReplayWeb.page

LICENSE

ReplayWeb.page is made available under the AGPLv3 License.

If you would like to use it under a different license or have a question, please reach out as that may be a possibility.

Contributing and Bug Reports

Contributions are definitely welcome!

As this is still a new project and rapidly evolving, please open an issue first before submitting a pull request.

replayweb.page's People

Contributors

av8ta avatar chickensoupwithrice avatar curtgrimes avatar dependabot[bot] avatar edsu avatar emma-sg avatar ikreymer avatar jnny avatar matteocargnelutti avatar pizzaisdavid avatar rangermauve avatar rebeccacremona avatar renevoorburg avatar shrinks99 avatar suayoo avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

replayweb.page's Issues

loading stalls on larger WARC files

I am trying to load files that are between 273 MB and 2 GB. I am using a Mac. However, the files stall halfway through when loading. I do not have this issue with small files. These are WARC files that were created using Conifer.

PWA not working well on flaky connection

I'm not sure if this behaviour is by design. I'm often downloading WARCs so I can consume them later on when I'm without internet connection.

I installed replayweb.page as a PWA (Chrome) and whenever I open previously added archive, it starts loading I assume live version of the archive. It takes many seconds to show me the page, why is that so? I would expect it to be instant (or maybe show local copy first and then try to re-fetch).

Same thing happens when I open PWA app with flaky connection - it hangs on splash screen. It's quite annoying, unfortunately PWA does not have any settings for just using local archives.

How do I hide the address bars of the application?

Sorry if this is the wrong place to ask this type of question but i didn't know where else to go.

Basically I want to hide the website address, local address, client area (file, edit, view etc).

Is this possible to do? Basically I use this app to teach english from slides I downloaded off a website but the top part makes it too clunky.

808175050205819733

Upload form usability: validation

Another quick thing I noticed, but am not (at least yet) addressing in the aforementioned accessibility PR...

The regex used to validate input URLs is complex enough that I think it would really help folks to do inline validation via custom js, rather than use the built-in browser validation. For instance, it took me quite some time to realize that the validation failure on my phone was due to the fact that my phone auto-capitalized the first letter of the URL. Without having access to the regex, it's tough to realize things are being rejected because you omitted the protocol, capitalized the protocol, have stray whitespace, or have selected an unsupported file-type or extensionless URL.

Probably not that much work to just use the same field-level validation pattern as is used for validating the URLs field in the new fact-checking UI... Presuming you are okay with the idea, I can send a PR to that effect in a bit.

Local WARC file stuck at loading

Hi, thank you for your new and/or updated tools, this has been a very exciting day after your announcement! :)

I attempted to load a WARC from my machine on the website but it keeps getting stuck either at 15% or at 23%. The WARC file is relatively big (18MB), but not unreasonably so. It was made using the latest release of the Webrecorder Desktop app on Mac.

Incorretly decoding URLs or not correctly loading images

Hi,
I've been experimenting with browsertrix-crawler and replayweb.page for a few weeks now, it's great!
However, I just encounter a problem with Replaying a warcz file generated by browsertrix-crawler.

image

Here is the problem: the top window is one of the warc file where I opened an image (original url of the image: https://img.atwikiimg.com/www65.atwiki.jp/sinoalice_kousatu/attach/40/212/%E3%82%A2%E3%83%AA%E3%82%B9%E8%A1%9D%E5%8B%9525.jpg)

And now the bottom window is the exact same image but from the warcz file (generated with the option --generateWACZ). This time, the image doesn't load.

Both the warc files and the warcz file are roughly the same size so I'm guessing the data is there.

Here's the exact command I used for generating the archive:
docker run -v $PWD/crawls:/crawls/ -it webrecorder/browsertrix-crawler crawl --url https://w.atwiki.jp/sinoalice_kousatu --include "https:\/\/w\.atwiki\.jp\/sinoalice_kousatu|https:\/\/img\.atwikiimg\.com" --ex clude "\/copy2\/|\/pedit\/|\/child\/|\/editx\/|\/renamex\/|\/editxx\/|\/chmod\/|\/chkind\/" --workers 3 --text --generateWACZ

Edit: I initially though it was because of the Japanese characters, but no, here's another example without any characters outside of the typical Latin character-set:

image

Edit2: here's the execution log in case there is something important there:

Text Extraction: Enabled
Load timeout for https://w.atwiki.jp/sinoalice_kousatu/pages/35.html TimeoutError: Navigation timeout of 90000 ms exceeded
    at /app/node_modules/puppeteer-core/lib/cjs/puppeteer/common/LifecycleWatcher.js:106:111

== Start:     2021-08-14 07:06:20.518
== Now:       2021-08-14 08:17:22.477 (running for 1.2 hours)
== Progress:  5198 / 5198 (100.00%), errors: 1 (0.02%)
== Remaining: 0.0 ms (@ 1.22 pages/second)
== Sys. load: 53.3% CPU / 90.8% memory
== Workers:   3
   #0 IDLE
   #1 IDLE
   #2 IDLE
Waiting to ensure pending data is written to WARCs...
Generating WACZ
Validating passed pages.jsonl file
Reading and Indexing All WARCs
Writing archives...
Generating page index from passed pages...
Header detected in the passed pages.jsonl file
Generating datapackage.json
Generating datapackage-digest.json

Upload form on mobile

On mobile, input#filename escapes its container and the overflow is cut off. As well, since button[type="submit"].is-hidden-mobile, so far as I can tell, there is no way to submit the form from a mobile device, unless that device is using an external keyboard.

I spent a few minutes trying to fix while working on the aforementioned accessibility PR, but it was proving sufficiently finicky that I decided to make an issue instead. Might take another swing at it in a bit.

Replay of multiple, split warcs

Hello. Is it possible to load and replay multiple warcs that are dependent on each other on this software? The warcs I've acquired are in this format and my only ability to replay them is limited to individual warcs, meaning co-dependent things like formatting and fonts and content from one warc are absent when loading the other. The closest I've come to finding a solution to this is to add all of them as a collection on webrecorder-desktop, but I would hope for a more practical and accessible method than using up space on the desktop's HDD and loading each warc individually.

Hosting from subpath breaks navigating some links within archived pages

Hello. When I am hosting the static page from a subdirectory and loading from, say, http://localhost:8989/replayweb.page/index.html, most behavior seems to work as expected. The only issue I can see is when clicking on a link within the rendered page and having it navigate to another archived page within that archive.

image

Here, the example 'netpreserve-twitter.warc' archive has a twitter page preserved that links to the blog post which is preserved. Clicking that link when serving the static pages from root works fine but it breaks when serving off a subpath after it tries to navigate to root when resolving the archive id and reloading. (I also wish it did not load the link in another tab and instead loaded within the iframe... but it doesn't seem to want to do that) I would expect it to resolve to /<subpath>/?source=blah, etc, and perhaps not reload.

I'm using Firefox 96 and my copy of Chrome just hangs and crashes when I load that twitter archive at both my local server and the main replayweb.page site using the warc file hosted there via 'source' query parameter. I don't know why. ๐Ÿ˜…

My goals would be to host replayweb.page as some kind of applet within my own web archive project that can embed artifacts in an iframe and it is rather important that it be off of a subpath and not trying to shoehorn my own project's root route. Thanks!

Problem in installing package with npm install

Hello team,

I was trying to run this repository and getting some warning and error and with these errors I am not able to move forward ,Please help me out if I am doing it with wrong way.

For the reference I am attaching a screenshot with this issue.
errorreplay

And when I type 'yes' to connect it anyway then I am getting these errors please find the below screenshot :-
errorreplay1

Displaying incorrect url when using a wacz file, works when using a warc.gz

Hi there,

first of all thank you very much for this great tool and the idea of the wacz format so simplify the handling of warc files.
I'm not sure if this is the correct project to report this too, so please let me know if I should go elsewhere.

I've greated a warc.gz file with grab-site. It's valid according to a check with warcio.

Using the warc-gz (4,3GB in size) works fine with replayweb.page if you're patient while it loads (using Chrome).

I created a wacz with

wacz create

It loads fine within replayweb.page.

Browsing through leads to an unexpected behaviour. Clicking on some links will bring you to a different page.
I crawled a bulletin board. So browsing a overview page and clicking on a thread will lead you to a differnt thread.

Example:
Overview page contains a link to showflat.php?Number=5970002, but it will take you to showflat.php?Number=1005878.

This is only happening with the wacz file, not with the warc.gz, so I'm pretty confident that it's either something in the wacz creation process, in the wabac.js handling or within replayweb.page.

I've verified that the the index.cdx file within the warc does contain an entry for showflat.php?Number=5970002.
The index.idx file does not, but I'm not sure if it should.

Looking at the IndexedDB via Chrome Dev Console shows 107813 entries for resources if I open the warc.gz file, just 2700 entries for the wacz file.

I'm happy to share the warc file if that helps or any other information that helps to debug this.

AppImage not launching

Downloaded the latest AppImage release 1.1.0 from GitHub, it doesn't start on Ubuntu 20.04.

Unfortunately there is not much meaningful debugging output:

despens@slice:~/bin$ chmod a+x ReplayWeb.page-1.1.0.AppImage 
despens@slice:~/bin$ ./ReplayWeb.page-1.1.0.AppImage 
bash: ./ReplayWeb.page-1.1.0.AppImage: No such file or directory

Double-clicking from the file manager doesn't launch a new task.

There are no issues with other AppImages on my system.

Loading local files in Firefox (was: Charset issues in Firefox but not in Chrome)

Hello! First off, thank you so much for creating this tool. It's really awesome and it's got me really excited about the future for web archiving.

While working on archiving a webpage for someone (here's the warc.gz I produced) I ran into an issue with Firefox (version 79.0b5 (64-bit)):

Screen Shot 2020-07-08 at 5 31 34 PM

It got to the loading screen but never progressed past 0%. Since then the page has no longer responded to any clicks or user interaction, even after a reload.

It loads fine on Chromium (version 86.0.4185.0) however.

I was trying to debug the error but I couldn't figure out where it was coming from since there weren't any line numbers and I couldn't find the error message in this repository. I'm not sure the error message is even related to the freezup. Since I have a workaround I don't need to be unblocked, but I'd love out with making this project more robust if possible (if this is a user issue then sorry for wasting your time!).

out of memory

For an in company use of webarchives, I'm experimenting transforming older Heritrix crawls to wacz (thanks to py-wacz). One of these transforms results in 48GB and reports 325.000 pages. Using this archive with the online replayweb.page results in out of memory. Opening it in the app (Windows 10) functions but not quite smooth.

I suppose the problem lies in the number of pages and/or the text index. What are the limitations for these?

Unable to load a big WARC (18GB)

Hi, I'm trying to read a very big WARC, of 18GB as I said in the title, and using the desktop version for Windows, the load stops (in fact, the app only change to a white screen, with the menus and the windows still active, so I supose it just make crash the algorithm of loading files) at the 21%, 4.2GBs in the progress bar, and 7.4GBs of effective RAM used for the app in that moment. I supose the app it's trying to load all the file in the RAM, so... It's something a bit troublesome when you are trying to use big files like this one (I have 16GBs of RAM btw, and well, when the load stops the total RAM was still at 80% aproximatelly, so isn't a problem of "no more RAM space", in this case at least). In older versions of this app, like the Web Recorder Player (x64), the WARC can be loaded without problems, except the app enter in an infinite "Indexing..." state and finally crash in a similar way when I try to access to the search field, but all the links are loaded in screen and I can access them if I just go to search them manually, so... I supose the problem isn't only the size of the file, but the way you manage to load the files. There is some way to fix this from my own? Or can you try to fix it in a next release?

Thank you.

Non functional WARCs

Hello,

I have several WARCs that were made in another software. I would like to view them in Conifer, or replayweb.page. However, the warcโ€™s cannot be displayed. They were made in a software called Capsis PreSurf, a company that no longer exists. These files were made in the time span of 2006-2015.

I have opened and checked the warcs, and they seem to conform to the WARC format standard. The files CAN indeed be displayed in the old viewer of Capsis PreSurf, which means that they are functional. However, they cannot be opened in replayweb.page or conifer.

Are there any known solutions to this, or can you tell me what the problem may be?

Thank you in advance.

Andrรฉ

Support load of multiple WARC files

Some crawlers could create multiple WARC files, it's importand if we had to upload WARC files to storages with limitation on single file size. I have a lot of archives websites splitted to 5-50 5GB WARC files each one.
Is it possible to add to Reply Web.Page ability to open more than one file at once ?

"No pages are defined in this archive" + no URL's

Hi,

Some days ago I created a WARC file with Heritrix. Webrecorder Players discovers around 10.000 pages; replayweb 0. There certainly are pages and URL's in that WARC-file. Is this a bug? Or maybe there is a dependency for the app that I had to install first?

Can't see contents of WACZ file with Reply Web.Page local

I've created wacz file from warc.gz with latest py-warcz package 0.4.5
Original file https://cdn1.ruarxive.org/public/webcollect2022/ngo2022/cafrussia.ru/cafrussia.ru.warc.gz (179MB)
Produced WACZ file https://cdn1.ruarxive.org/public/webcollect2022/ngo2022/cafrussia.ru/cafrussia.ru.wacz (179MB)

I open wacz file with Reply Web.Page and I don't see it's contents.
ะธะทะพะฑั€ะฐะถะตะฝะธะต

There is no issues opening original warc.gz file.

Environment
OS - WIndows 10
Product version - reply web.page release 1.5.10 installed from binary from here https://github.com/webrecorder/replayweb.page/releases/tag/v1.5.10

WARC from authenticated session redirects to logout page

I have a WARC file from a logged-in site that I generated using Webrecorder Desktop, and which replays correctly in Webrecorder and Webrecorder Player.

In replaywebpage, something (presumably JavaScript from the archive) is attempting to redirect to the logout page of the site, instead of displaying the original data from the archived session:

Sorry, the URL https://app.docusign.com/logout is not in this archive.

I've attached a sample .warc file (generated using a dummy account) for reproducing this bug.

Sample WARC file:

5nntovqatoa4bbxh-20201230001405.warc.zip

Click the "Bug Demo" bookmark.

What I expect to see:

Archived page is shown.
screenshot-ok-webrecorder-player-1 8 0

What I actually see:

"Sorry, the URL https://app.docusign.com/logout is not in this archive."

screenshot-bad-replaywebpage-1 3 4

Software/Versions tested:

Feature request: page timeline

It would be nice to have a timeline similar to what web.archive.org has for pages there are multiple saved instances of.
It could be accessed by clicking on the displayed date field in the url bar, or some other way.

It would also be nice to be able to group saved pages in the search by url instead of one entry being shown for every version of a saved page.

Did I miss any built in functionality for this?

URLs are being sufixed with "null"

Whenever I try to access a page, the program fails and claims I tried to access a different page than the one I asked.

Example: I asked for http://127.0.0.1:8000/gdb/pt but I get an error message saying:

This page http://127.0.0.1:8000/gdb/ptnull is not part of this archive.

Screenshot from 2021-08-05 02-03-30

File I tried to load: biblia-disforia-genero-pt.har.txt Plase not that I had to change the file extension in order to upload it to GitHub. Just remove the final .txt and you should be fine.

Service Worker path & embedding in Rails app

Just documenting what I figured out to embed replayweb.page in a Ruby on Rails app (a Blacklight discovery implementation). Still working on our implementation of embedding WARCs, but in case anyone else runs into the same issues I did just getting it running I hope this is helpful.

I had a heck of a time getting Rails to register the service worker at ./replay/sw.js. First I tried registering the service worker as an object in the Rails app, but it turned out to be a red herring since the ui.js script really does all the heavy lifting. All I needed was to get the right path to sw.js which turned out to be tricky! I ended up using a gem called rails-static-router that allowed me to reroute the request for the sw.js file to the actual path on disk (in the Rails Public folder). So (using Rails 5):

/my-app/Gemfile

gem 'rails-static-router'

/my-app/config/routes.rb

get '/root-path/replay/sw.js', to: static('/replay/sw.js') # the `replay` folder is inside the app `Public` folder

That's it!

Can't load archive over https in Firefox

Hi, I'm having trouble loading archives over https in Firefox

Here is the archive i've been testing with: https://f.codl.fr/2201/test.warc.gz
and how I'm loading it into replayweb.page: https://replayweb.page/?source=https%3A%2F%2Ff.codl.fr%2F2201%2Ftest.warc.gz#url=https%3A%2F%2Ff.codl.fr%2Fdancing_baby.gif

When I load it into Chrome, it loads up fine. When I load it in Firefox, it fails with "An unexpected error occured: TypeError: NetworkError when attempting to fetch resource."

Firefox's console complains further about CORS:

Cross-Origin Request Blocked: The Same Origin Policy disallows reading the remote resource at https://f.codl.fr/2201/test.warc.gz. (Reason: CORS request did not succeed). Status code: (null).

Failed to load โ€˜https://f.codl.fr/2201/test.warc.gzโ€™. A ServiceWorker passed a promise to FetchEvent.respondWith() that rejected with โ€˜TypeError: NetworkError when attempting to fetch resource.โ€™.

However I believe I am serving sufficient CORS headers per the documentation:

$ curl -Is "https://f.codl.fr/2201/test.warc.gz" | grep access-control    
access-control-allow-origin: *
access-control-allow-methods: GET, POST, OPTIONS, HEAD
access-control-expose-headers: Content-Encoding, Content-Range, Content-Length
access-control-allow-headers: *

How to make a WARC searchable

I noticed that the netpreserve-twitter.warc example file has a list of pages and that it's possible to perform a full-text search on these pages. A WARC of a site created by wget doesn't have any pages defined and cannot be searched. I was hoping to somehow make this WARC searchable, but I have not succeeded in doing so. I tried converting the WARC to a WACZ using py-wacz, but the resulting WACZ file behaves exactly like the WARC file in repayweb.page.

I understand this is not really an issue with replayweb.page, but I was expecting to be able to use it's page search functionality on my WARC file just like with the example file. I've searched the net for information on creating a searchable WARC, but nothing has turned up.

Issue with rendering images in existing WARC files

Hello and congratulations on all the new developments with the webrecorder tools.

I was trying out replayweb.page compared to the old Web Recorder Player, and the performance seems much improved. However, it looks like some images are not rendering for me in replayweb.page where they were working in the old player.

For example, here they are in the old player:
image

And here is the same page in the new one:
image

I am using the desktop application of both webrecorder player and replayweb.page, running in Windows 10.

Many thanks for all your work on this project.

Question about the future of Webrecorder Player

I've been a big fan of webrecorder.io for a few years now and I've been using your tools Webrecorder Player, Webrecorder Desktop and the command line tool pywb extensively during that time.

The replaying peformance of Webrecorder Player has sadly always been quite bad for me, with complex JavaScript sites taking anywhere from 20-30 seconds to load despite the archive being stored on a local SSD (this was not the case with its predecessor WebArchivePlayer).

I gave this new tool a try just now and was blown away by the insane performance difference. The same page that takes over 20 seconds to replay in Webrecorder Player loads in less than two seconds with ReplayWeb.page:

2020-06-12_05-48-01

In light of this, I wanted to ask if there are any plans to deprecate Webrecorder Player the same way it deprecated WebArchivePlayer and to focus development on ReplayWeb.page going forward.

P.S.: Thank you for all the work that you do! I immediately fell in love with the new embedding feature.

Version 1.2 and some guidance on setup/making the embed plugin and make it work consistently

Hi @ikreymer @emmadickson

I know you guys are busy with WACZ but wanted to catch up with some issues we have been having on the embed version of replay web on Archipelago with version 1.2

I suspect a lot of this is because we are CDN loading the JS but also because the files we are testing agains are "largish" and also pure WARC. But we may have other issues so open to suggestions.

  1. Safari (Version 14.0 (15610.1.28.1.9, 15610)) v/s Chrome (Version 86.0.4240.198 (Official Build) (x86_64)).
    This URL , a 1 GByte WARC file eventually loads on Safari (slow), I see small pauses made every 1000 records and I get a lot of restarts and failed attempts (inclusive from the Client reloading the whole page) and surprisingly loads faster (still a few minutes() and more resilient on Chrome but without any CSS/Images/assets

image

  1. I updated the way we deliver the file to use streaming and was using a get argument (?stream=true) to enable modal during testing. This basically is read 1024 bytes from S3+ pass 1024 back to the HTTP request (I may chunk this larger?) Sadly can not use GET argument that in production because the embed tag fails if the "source" property is not just actual end in a valid file extension (not a big issue, modified it to always stream fro WARC and WACZ files in that first URL i shared). But know I have second thoughts. Is streaming what you need/works better? or is chunking better for your JS? Also, does the stream need to be seek-able?

To test a direct download of the stream please test this url (reusing or IIIF endpoint, please dismiss the weird semantic here)
https://webarchive.archipelago.nyc//do/4/iiif/51b281b4-093e-494c-9820-9eeeb03a4c6e/full/full/0/default.warc
e.g wget takes (942.50M 26.7MB/s in 39s ), replay embed 5 minutes of more on Chrome.

  1. JS errors in every browser. We are getting quite a few. E.g Firefox:
failed to load โ€˜https://webarchive.archipelago.nyc/do/4/iiif/51b281b4-093e-494c-9820-9eeeb03a4c6e/full/full/0/default.warcโ€™. A ServiceWorker intercepted the request and encountered an unexpected error. sw.js:33:126116
Read 1000 records sw.js:9:52746
AbortError: A request was aborted, for example through a call to IDBTransaction.abort. sw.js:9:179926
AbortError: AbortError

And It restarts. Sometimes it works, sometimes not.

E.g Safari

(anonymous function)
rejectPromise
rejectPromiseWithFirstResolvingFunctionCallCheck
s โ€” sw.js:9:159182
s โ€” sw.js:9:159182

Also should we be worried about the initial message (since running from CDN)

done
webarchive.archipelago.nyc/:8 GET https://webarchive.archipelago.nyc/replay/ui.js net::ERR_ABORTED 404 (Not Found)
ui.js:661 GET https://webarchive.archipelago.nyc/replay/wabac/api/id-a5343ec7bd53?all=1 404

We are loading ui.js via CDN and it works.

FYI we are running NGINX, and file delivery is not directly S3, (access control + some other users may be using Azure or directly filesystem so we wrap things. maybe we need to tune our Binary responses?

Sorry for the "cover it all" issue but I feel its more like a use case sharing and for sure using just WACZ should solve all the issues, but for now I want to be sure its not us/something we can do better

Thanks for the great work!!

Clarification of playback index requirements

When playing back web archives using ReplayWeb.page, we can get very high quality playback, and I think this is down to:

  • how you index POST (and other non-GET???) requests.
  • you fuzzy matching rules.

For large-scale web archives, we need to find ways to support this via OutbackCDX or SolrWayback/webarchive-discovery. Can you give us a clear summary of what we need to do ensure that pywb (and future ReplayWeb.page?) can achieve the same level of playback quality?

parts of POST request data is excluded

Hello, I am using the ReplayWebpage ArchiveWeb.page Chrome extension to capture webpages and analyze their network requests.

I have found some situations where parts of the POST data from the original request are not included in the requests of the replay.

steps to reproduce

  1. Run this script (or clone this repo, run npm install, and run npm start.)
    const express = require('express')
    const app = express()
    const port = 3000
    
    app.get('/test.html', (req, res) => {
      res.send(`
        <html>
          <script>
            const request = new XMLHttpRequest()
            request.open('POST', '/whatever')
            request.setRequestHeader('Content-Type', 'application/json;charset=UTF-8')
            request.send(
              JSON.stringify([{ key: 'a' }, { key: 'b' }, { key: 'c' }])
            )
          </script>
          <body>
            Page loaded. Open the network tab and refresh the page.
          </body>
        </html>
      `)
    })
    
    app.listen(port, () => {
      console.log(`click here: http://localhost:${port}/test.html`)
    })
    
  2. Navigate to http://localhost:3000/test.html in a web browser.
  3. Verify that the request payload is:
    [{"key":"a"},{"key":"b"},{"key":"c"}]
    
  4. Capture the webpage with the Chrome extension (or download the WARC from the repo.)
  5. View the WARC at https://replayweb.page
  6. Verify that the request payload is:
    ...localhost:3000/whatever?__wb_method=POST&key=c
    

So instead of having key0=a&key1=b&key2=c (or something similar) it only takes the last value, which in this case was "c."

Collection loading stalls.

The collection referenced in webrecorder/pywb#573 also causes replayweb.page to struggle. It takes over five minutes before the message Indexed 1234014 records is printed. Immediately thereafter, this warning is printed to the console:

DOMException: Transaction timed out due to inactivity.

My browser tab crashes soon thereafter. I'm using Chrome 80.0.3987.122, Linux.

Safari only: collection not found if replayweb JS is in a cross-origin iframe

This one takes a bit of explaining, so please bear with me ๐Ÿ™‚.

As discussed at length with @ikreymer, we are working on a setup where users visit https://perma.cc/AAAA-AAAA and are served a page with a banner and an iframe. The iframe is pointed at https://replay.perma.cc, a page on a subdomain that includes an embedded playback of a warc using replayweb.page JS. It's working great in Chrome and Firefox, but does not work in Safari. (Example: https://perma.cc/7ESS-U63W?view-mode=client-side)

It is easy to reproduce outside of our setup: the following HTML just loads https://replayweb.page in an iframe.

<!DOCTYPE html>
<html>
<head>
    <meta charset="utf-8">
    <meta name="viewport" content="width=device-width, initial-scale=1">
    <title>Replayweb.page in an iframe</title>
</head>
<body>
    <iframe style="width:100%; height: 100vh" src="https://replayweb.page">
</body>
</html>

If loaded in Firefox or Chrome, you can use the app normally, for instance, to request a playback of https://webrecorder-builds.s3.amazonaws.com/warcs/netpreserve-twitter.warc:
image
Observe the messages in the console: an initial 404 for https://replayweb.page/w/api/c/id-a3dec314b685?all=1, followed by the message that the service worker is now registered, followed by a message that 147 records were read, followed by nothing else. And, everything works, you can explore the archive and play back resources perfectly.

But, if loaded in Safari, this fetch request 404s again:
image
Observe the second 404 error in the console, after the message that 147 records were read. The response is indeed from the service worker, as opposed to the live web: {"error": "collection_not_found"}.
image

Something appears to be going wrong with IndexedDB.... and it has something to do with origins.

Both in the minimal reproduction above (HTML loaded into the browser directly with a file:/// protocol, iframe pointed at https://replayweb.page) and in my more complex setup (HTML served over SSL, iframe pointed at a subdomain), two instances of collDB appear in the Safari dev tools:
image

In all other browsers, CollDB only appears once. If I visit https://replayweb.page in Safari directly and request a playback of https://webrecorder-builds.s3.amazonaws.com/warcs/netpreserve-twitter.warc, collDB only appears once. AND.... if I change my setup so that my playback is not at a subdomain, but rather, both top-level page and the iframe are at the same origin.... then even in Safari CollDB only appears once, and even in Safari, the second fetch request succeeds
image

I am about out of ideas for how I might be able to fix, work around, or debug further.

  • I have tried inspecting the file system to see if multiple sqlite DBs have been created: it doesn't look like it... but it's also not clear to me when Safari flushes this data to disk.

  • I have added a log line to _init_DB and seen it print once and once only. I have created my own canary DBs in that function and observed that they, too, display twice in the Safari dev tools.

  • I have created a canary DB elsewhere in the code, for instance, in this constructor, and seen that it does NOT display in duplicate in the Safari dev tools.

Any suggestions?

Note: if you experiment with the minimal reproduction above, you'll see an error to the tune of Blocked a frame with origin "file:///...." from accessing a frame with origin "https://replayweb.page". Protocols, domains, and ports must match.: while suggestive, that's not actually the problem. The complete repro, where the iframe's src url has the CORS headers Access-Control-Allow-Origin=* and Access-Control-Allow-Methods=*, does not therefore throw that error, and yet behaves exactly as described.

replayweb.poge site doesn't support IPFS CID yet?

It's not about the code, but could be related to the version of IPFS on the site. If the ipfs://xxxx is not offered as Qm****, instead as ba**** (CID format), it won't show the content from IPFS network.

e.g.
ipfs://bafybeia5s7bazmnyo3zvqgiuwu3airnlugicyp44dj5w6pfeiakja3iqfu/hkcnews.wacz is not shown in the replayweb.page.

replayweb.page not loading complete WARC-file

Hi,

I have a WARC-file of 970 MB. I discovered that the full archive is not loaded, not even 1 MB of the archive is loaded. A lot of pages/URL's can't be seen with replayweb.page.

My pages also have no styling.

Schermafbeelding 2020-10-14 om 15 18 36

Maybe I'm doing something wrong? the WARC was created with Heritrix.

Prefix not working

I loaded a pretty large file (40Gb roughly) and when I tried to search the whole archive by keywords I used url prefix search. But the results contain links that have been loaded only. Is there a way to find urls that haven't been loaded yet?

Youtube video embeds not replaying

Following up on openzim/zimit#71.

Zimit 1.1.4 uses browsertrix-crawler:0.3.1 and [email protected].

With those, we seem to capture Youtube embeds as there are matching files in the WARC/ZIM (hard to tell actually) that piles up to 800MB+

Here's a few of those entries in the ZIM, sorted by decreasing sizes:

Path Size Bytes
A/r2---sn-25ge7ns7.googlevideo.com/videoplayback?expire=1621737809&ei=8WypYIm3AZ2uxN8PsbOcuAM&ip=195.154.207.98&id=o-ACC30tmq6BHtsiYWyt2rHv8xGdhLm6ILKUYcd1Jngf8T&itag=18&source=youtube&requiressl=yes&mh=Mu&mm=31%2C29&mn=sn-25ge7ns7%2Csn-25glenes&ms=au%2Crdu&mv=m&mvi=2&pl=22&initcwndbps=333750&vprv=1&mime=video%2Fmp4&ns=U5T1xX5QhrR-C74atFxfMEAF&gir=yes&clen=34459529&ratebypass=yes&dur=864.571&lmt=1408758953839048&mt=1621716057&fvip=2&fexp=24001373%2C24007246&c=WEB_EMBEDDED_PLAYER&n=XyP0C9rloBB1sA&sparams=expire%2Cei%2Cip%2Cid%2Citag%2Csource%2Crequiressl%2Cvprv%2Cmime%2Cns%2Cgir%2Cclen%2Cratebypass%2Cdur%2Clmt&sig=AOq0QJ8wRgIhAJUtHCrbIEQONXpWQ6D405llxnj0JoYDFAL7NyQeGSXAAiEAvAtgB3Whel5hC46TBleqJxUfeouDmWJhHerFCi_-xu0%3D&lsparams=mh%2Cmm%2Cmn%2Cms%2Cmv%2Cmvi%2Cpl%2Cinitcwndbps&lsig=AG3C_xAwRAIgQm_iOggwEBCMaxT_jEN_LPIsrWcpQkQQF5TpynqBXUECIC7uuI9fmRmBryunoglvJc0bFBaasE2McV7prVKgrpPj&cpn=gqAexNT8Yo3LKMRi&cver=1.20210519.1.1&ptk=youtube_none&pltype=contentugc 32.86 MiB 34459529
A/r5---sn-4g5e6nzs.googlevideo.com/videoplayback?expire=1621733464&ei=-FupYP2AD520xN8Pl56SmA0&ip=195.154.207.98&id=o-AIHIekGWmcCIYFe7qd2y36R94VTkXOYe4XKxKdfB3IYB&itag=18&source=youtube&requiressl=yes&vprv=1&mime=video%2Fmp4&ns=Tnarqzj9ttp9RrDECT2i2DIF&gir=yes&clen=34459529&ratebypass=yes&dur=864.571&lmt=1408758953839048&fexp=24001373,24007246&c=WEB_EMBEDDED_PLAYER&n=dt-pUzQvr1ujiw&sparams=expire%2Cei%2Cip%2Cid%2Citag%2Csource%2Crequiressl%2Cvprv%2Cmime%2Cns%2Cgir%2Cclen%2Cratebypass%2Cdur%2Clmt&sig=AOq0QJ8wRgIhANNNVilUy5EQ7oSyzhawhJ8uespWIMIK8TUKvZYT1lhUAiEAi6076dDnuBSLjfBoX3vI4JIwbX4S6_555dr80c4BJfg%3D&cpn=POQVmqYgzElWDg-_&cver=1.20210519.1.1&ptk=youtube_none&pltype=contentugc&redirect_counter=1&cm2rm=sn-25gks7l&req_id=b51c7c07c069a3ee&cms_redirect=yes&mh=Mu&mm=34&mn=sn-4g5e6nzs&ms=ltu&mt=1621711716&mv=m&mvi=2&pl=22&lsparams=mh,mm,mn,ms,mv,mvi,pl&lsig=AG3C_xAwRAIgPe59NrApONoaCMcEG9znO_Qouvnkz8iFX3IAnOTR6c8CICunc38VyNAIEQBz1lvbOa62XCzx5FXpZWv9SQnrEdPH&ir=1&rr=12 32.86 MiB 34459529
A/r5---sn-4g5e6nzs.googlevideo.com/videoplayback?expire=1621737710&ei=jmypYLerKPfWxN8P1I-8yAM&ip=195.154.207.98&id=o-ACdXLs9xMa-cejIy2fkuKQrxR1_JHwwFw-tleHsRfMjj&itag=18&source=youtube&requiressl=yes&vprv=1&mime=video%2Fmp4&ns=Zx4lfciCO7Xj-g1_T-HtwpIF&gir=yes&clen=34459529&ratebypass=yes&dur=864.571&lmt=1408758953839048&fexp=24001373,24007246&c=WEB_EMBEDDED_PLAYER&n=FZYGz9qH9WCekg&sparams=expire%2Cei%2Cip%2Cid%2Citag%2Csource%2Crequiressl%2Cvprv%2Cmime%2Cns%2Cgir%2Cclen%2Cratebypass%2Cdur%2Clmt&sig=AOq0QJ8wRQIhAK7clnp74Dgtj8_KThTZvpeSgcO5DfqjThQft7eMrdIsAiAeU9EwK8L6oZTgaOks79AaRBvS0tOCc3NK4S1t2xfFfw%3D%3D&cpn=FaOr3arodvWBjsxw&cver=1.20210519.1.1&ptk=youtube_none&pltype=contentugc&redirect_counter=1&cm2rm=sn-25gdl7l&req_id=e6ed1a45214da3ee&cms_redirect=yes&mh=Mu&mm=34&mn=sn-4g5e6nzs&ms=ltu&mt=1621715711&mv=u&mvi=2&pl=22&lsparams=mh,mm,mn,ms,mv,mvi,pl&lsig=AG3C_xAwRQIhANs1v5gK23pUeGa0ZVtQyUwmz7iHehVb-SR3k1Vv5DDBAiB1i2tTE86sKffsQk7MbyHpFJNyGjpwQHVsRHcf4vQ8EQ%3D%3D&ir=1&rr=12 32.86 MiB 34459529
A/r1---sn-4g5ednsk.googlevideo.com/videoplayback?expire=1621732827&ei=e1mpYIqYL-OqxN8PyYag-AE&ip=195.154.207.98&id=o-AN3bxtkx3fUa6jhY53m3m2VQ-gFQUQ8cfZM9mGPeivlG&itag=18&source=youtube&requiressl=yes&vprv=1&mime=video%2Fmp4&ns=KbeRikULd5xXUN1h7SxHXmoF&gir=yes&clen=23696363&ratebypass=yes&dur=246.410&lmt=1378822722944759&fexp=24001373,24007246&c=WEB_EMBEDDED_PLAYER&n=O7RCmkYdjrV60A&sparams=expire%2Cei%2Cip%2Cid%2Citag%2Csource%2Crequiressl%2Cvprv%2Cmime%2Cns%2Cgir%2Cclen%2Cratebypass%2Cdur%2Clmt&sig=AOq0QJ8wRQIhAMoX1ecrm4a6uhN3Kj9tpDeqeYvbOeZp-aoScH3ljQQpAiByZ5u4QKzIR7zeqp431r78QgXvzXh0zgBPr0AsAwp-9Q%3D%3D&cpn=BBKIO_TZUOM2jSO9&cver=1.20210519.1.1&ptk=youtube_none&pltype=contentugc&redirect_counter=1&cm2rm=sn-25g6r7d&req_id=da26b0d92f7fa3ee&cms_redirect=yes&mh=G6&mm=34&mn=sn-4g5ednsk&ms=ltu&mt=1621710633&mv=u&mvi=1&pl=22&lsparams=mh,mm,mn,ms,mv,mvi,pl&lsig=AG3C_xAwRQIhAMr1X6vgYSAXQDyaurJnGi1kXaV5ugik2xs_WfK6xi0hAiB6Q526P_z0_jwxTy_WDhtDBjw-sq0ObSLeGpHGQeH9YQ%3D%3D 22.6 MiB 23696363
A/r1---sn-4g5ednsk.googlevideo.com/videoplayback?expire=1621736361&ei=SWepYN2bJounW9TUoYAF&ip=195.154.207.98&id=o-ACEN63bfX1L5C0JGgMkg0bn5QDFIAuh94Cs3fjnwXTyH&itag=18&source=youtube&requiressl=yes&vprv=1&mime=video%2Fmp4&ns=1ABjy36o6zkIX2m__vqapzMF&gir=yes&clen=23696363&ratebypass=yes&dur=246.410&lmt=1378822722944759&fexp=24001373,24007246&c=WEB_EMBEDDED_PLAYER&n=moq4sy6WjeEzJw&sparams=expire%2Cei%2Cip%2Cid%2Citag%2Csource%2Crequiressl%2Cvprv%2Cmime%2Cns%2Cgir%2Cclen%2Cratebypass%2Cdur%2Clmt&sig=AOq0QJ8wRgIhAIFHOfLsKTFtm4DW3NRDWKRH1Oz4yFXk18vhNJKsANLsAiEA06NbsKXSHcMnWkh5My69CUCt3NvDjHZpiwyG3f2F_i8%3D&cpn=vPBuLpqoAPQxGwo8&cver=1.20210519.1.1&ptk=youtube_none&pltype=contentugc&redirect_counter=1&cm2rm=sn-25gkd76&req_id=43ec12df3ff6a3ee&cms_redirect=yes&mh=G6&mm=34&mn=sn-4g5ednsk&ms=ltu&mt=1621714241&mv=u&mvi=1&pl=22&lsparams=mh,mm,mn,ms,mv,mvi,pl&lsig=AG3C_xAwRgIhAIOWgo2D-YQc21FLVFXw66yZHe1m2d8QoYErmgct_RZ_AiEA5izdCY3-nfYDNAYwwhY25OmwXldZWOdZkkB8hbfWjfw%3D 22.6 MiB 23696363
A/r6---sn-25glen7l.googlevideo.com/videoplayback?expire=1621734738&ei=8mCpYKO-KKLBmwe5pZ3oAg&ip=195.154.207.98&id=o-AKm-VYG24vW_8xrOVQ5_IsSKhi5v5wK59qrYiD_T8YRE&itag=18&source=youtube&requiressl=yes&mh=G6&mm=31%2C26&mn=sn-25glen7l%2Csn-h5q7kned&ms=au%2Conr&mv=m&mvi=6&pl=22&initcwndbps=282500&vprv=1&mime=video%2Fmp4&ns=gwZPKics712ZHYQs3l2jBoIF&gir=yes&clen=23696363&ratebypass=yes&dur=246.410&lmt=1378822722944759&mt=1621712936&fvip=1&fexp=24001373%2C24007246&c=WEB_EMBEDDED_PLAYER&n=-xrS-T4ltI-6NQ&sparams=expire%2Cei%2Cip%2Cid%2Citag%2Csource%2Crequiressl%2Cvprv%2Cmime%2Cns%2Cgir%2Cclen%2Cratebypass%2Cdur%2Clmt&sig=AOq0QJ8wRQIhAJPvZLOxCZIFS3UnDIkk_2e30hIBLkw9xwfKmgrKveM6AiAxzUMep2SN0F-dcyzruQyrh8zHWezpeQiAKJV8eYB8pA%3D%3D&lsparams=mh%2Cmm%2Cmn%2Cms%2Cmv%2Cmvi%2Cpl%2Cinitcwndbps&lsig=AG3C_xAwRQIhAKgj8dD9P4DWssTIFaSWv3XEYG3xosUx_Jz4_lqbCzJbAiAnVcSrTtkVdiXatftZCNpenPpL3uX3j91OPbgzEBLgzg%3D%3D&cpn=6LZtsuzEI29RiD0h&cver=1.20210519.1.1&ptk=youtube_none&pltype=contentugc 22.6 MiB 23696363
A/r5---sn-4g5e6nzl.googlevideo.com/videoplayback?expire=1621735550&ei=HmSpYOzhItbVxN8P8YusoAE&ip=195.154.207.98&id=o-ANYm4De_mcgkSDTpWG84mTScIHVUOH8TmIFkAUZE6LRf&itag=18&source=youtube&requiressl=yes&vprv=1&mime=video%2Fmp4&ns=tI-sy9TWVjPDuVtdGSuh04gF&gir=yes&clen=13587518&ratebypass=yes&dur=144.010&lmt=1404631343103506&fexp=24001373,24007246&c=WEB_EMBEDDED_PLAYER&n=CGDEch7d1JmaPA&sparams=expire%2Cei%2Cip%2Cid%2Citag%2Csource%2Crequiressl%2Cvprv%2Cmime%2Cns%2Cgir%2Cclen%2Cratebypass%2Cdur%2Clmt&sig=AOq0QJ8wRQIgEmoi-TjKxC3EuqwPrbt6GsI_O8aJyS2bqcxSumiL-jQCIQC2kUKNMJRpUMNGX7PTtn9lwXq_3zEz-Ra5EvtkawKErQ%3D%3D&cpn=t8POQVmqYgzElWDg&cver=1.20210519.1.1&ptk=youtube_single&oid=ghgcd_xPPR_URSW5U_cwtQ&pltype=contentugc&redirect_counter=1&cm2rm=sn-25gde76&req_id=ed2e4f0d726aa3ee&cms_redirect=yes&mh=c2&mm=34&mn=sn-4g5e6nzl&ms=ltu&mt=1621713514&mv=u&mvi=5&pl=22&lsparams=mh,mm,mn,ms,mv,mvi,pl&lsig=AG3C_xAwRQIgJ34I5FsTTstSyTWkql-xzwTJlXUotDlf3P_BXX_oc_UCIQCgT_YhAtvNXRGDr5WGErylIZMuzQ7G3GVHQEPXBIS4Dw%3D%3D 12.96 MiB 13587518
A/r2---sn-25ge7nsd.googlevideo.com/videoplayback?expire=1621732728&ei=GFmpYKXAObqzxN8PkfaksAU&ip=195.154.207.98&id=o-AODoTh6D27FR1Ya0zW8whRIr3RkKcw4aohJ78n87F6j3&itag=18&source=youtube&requiressl=yes&mh=rg&mm=31%2C29&mn=sn-25ge7nsd%2Csn-25glene6&ms=au%2Crdu&mv=m&mvi=2&pl=22&initcwndbps=281250&vprv=1&mime=video%2Fmp4&ns=8S5m2DtKWxggdOA2py0BxiYF&gir=yes&clen=12120074&ratebypass=yes&dur=205.125&lmt=1452480333306164&mt=1621710774&fvip=2&fexp=24001373%2C24007246&c=WEB_EMBEDDED_PLAYER&n=qvfgT5A4P3RAyA&sparams=expire%2Cei%2Cip%2Cid%2Citag%2Csource%2Crequiressl%2Cvprv%2Cmime%2Cns%2Cgir%2Cclen%2Cratebypass%2Cdur%2Clmt&lsparams=mh%2Cmm%2Cmn%2Cms%2Cmv%2Cmvi%2Cpl%2Cinitcwndbps&lsig=AG3C_xAwRAIgf39Ya44DW2C3r9Yf0g4e0TUUTPKkm6jqp2ZKIFcn2xECIBfV_HWDFptIE2LEXe9mwYoSGppw-o533a2w4Uic8bAD&sig=AOq0QJ8wRQIgdsbca-R-QYqAsChSDjF8A_lEUNA8th9XaypGylMYDOgCIQDNNK1pbYqAiYZ_X5J9fvvZyhvWUYjECZXADUPG28T6ag%3D%3D&cpn=mxYVVMrEaUrs8yuL&cver=1.20210519.1.1&ptk=youtube_multi&oid=L2YoOATTFNKUmlyfk-e46g&pltype=contentugc 11.56 MiB 12120074
A/r2---sn-4g5e6nez.googlevideo.com/videoplayback?expire=1621730746&ei=WlGpYPz4CeikxN8PiYmyuAE&ip=195.154.207.98&id=o-ACVrSsa40ftEzfEyNu1cryYdPsE8eeqiA0bOTGevG9v0&itag=18&source=youtube&requiressl=yes&vprv=1&mime=video%2Fmp4&ns=KlkPp2VG7-RjgfB-CxNZXfgF&gir=yes&clen=12120074&ratebypass=yes&dur=205.125&lmt=1452480333306164&fexp=24001373,24007246&c=WEB_EMBEDDED_PLAYER&n=J82-k1Yg4hJNlQ&sparams=expire%2Cei%2Cip%2Cid%2Citag%2Csource%2Crequiressl%2Cvprv%2Cmime%2Cns%2Cgir%2Cclen%2Cratebypass%2Cdur%2Clmt&sig=AOq0QJ8wRQIhANOELKHOcTrg7y5Zbbbh3i2nkAg18MWdsApf7HhUXiTVAiAfhP40aUuxv6RTExM_4_br1yBDOe89EdXytvEzo8brFw%3D%3D&cpn=gf-G9KGtNKcx-yhL&cver=1.20210519.1.1&ptk=youtube_multi&oid=L2YoOATTFNKUmlyfk-e46g&pltype=contentugc&redirect_counter=1&cm2rm=sn-25gk67s&req_id=c1de679bfd58a3ee&cms_redirect=yes&mh=rg&mm=34&mn=sn-4g5e6nez&ms=ltu&mt=1621708627&mv=u&mvi=2&pl=22&lsparams=mh,mm,mn,ms,mv,mvi,pl&lsig=AG3C_xAwRQIhAL6mkIRW5NEAWM6NVRZDLymXd1O518mgxXQ6Qy58mMZ5AiB3XW68Wzye9N8z3TDSk9mHS2nBbveL785bsENciI6-Rg%3D%3D 11.56 MiB 12120074
A/r2---sn-4g5e6nez.googlevideo.com/videoplayback?expire=1621732635&ei=u1ipYMhJ2PnE3w-ExIPoDQ&ip=195.154.207.98&id=o-ADhKV5qbiE8gbUEauo6UWdI-iDoJyfPepRfEJcK1mPCN&itag=18&source=youtube&requiressl=yes&vprv=1&mime=video%2Fmp4&ns=rcRdTBh2T2EFh8sZIUrt9bEF&gir=yes&clen=12120074&ratebypass=yes&dur=205.125&lmt=1452480333306164&fexp=24001373,24007246&c=WEB_EMBEDDED_PLAYER&n=D2_p-2Ece48RUA&sparams=expire%2Cei%2Cip%2Cid%2Citag%2Csource%2Crequiressl%2Cvprv%2Cmime%2Cns%2Cgir%2Cclen%2Cratebypass%2Cdur%2Clmt&sig=AOq0QJ8wRQIgdg7eQxjlHrmZOzTGF4JeaAtuttMAR8-LGu56I_xLqsICIQCUiyU-agxI6DAD8uxgk_v1eP7hqC8rD6pfnIJ8gL6JQQ%3D%3D&cpn=5Icbdiz3lsARxjQt&cver=1.20210519.1.1&ptk=youtube_multi&oid=L2YoOATTFNKUmlyfk-e46g&pltype=contentugc&redirect_counter=1&cm2rm=sn-25gkd7s&req_id=c5e611ac4e73a3ee&cms_redirect=yes&mh=rg&mm=34&mn=sn-4g5e6nez&ms=ltu&mt=1621710633&mv=u&mvi=2&pl=22&lsparams=mh,mm,mn,ms,mv,mvi,pl&lsig=AG3C_xAwRQIhANTnVZnVmZ0vn3kplZY2gSeXdwfnTIOJUm_T-J-mvOJ4AiB7v8rpdrYBNbTgMx1vXlnt68aigjl3_F_SwhJ1V5LnWQ%3D%3D 11.56 MiB 12120074
A/r3---sn-25glene6.googlevideo.com/videoplayback?expire=1621731062&ei=llKpYPKKCp3ZxN8PkY-xuAU&ip=195.154.207.98&id=o-AMMFlluWHWp90pcBQOLlI1Yv1CDKSsnMH3sGvzreIdfH&itag=18&source=youtube&requiressl=yes&mh=rg&mm=31%2C29&mn=sn-25glene6%2Csn-25ge7nsd&ms=au%2Crdu&mv=m&mvi=2&pl=22&initcwndbps=201250&vprv=1&mime=video%2Fmp4&ns=Psxqcs-Y4hGLffawPBe1WhYF&gir=yes&clen=12120074&ratebypass=yes&dur=205.125&lmt=1452480333306164&mt=1621709091&fvip=2&fexp=24001373,24007246&c=WEB_EMBEDDED_PLAYER&n=P0rT_Rm965Lzng&sparams=expire%2Cei%2Cip%2Cid%2Citag%2Csource%2Crequiressl%2Cvprv%2Cmime%2Cns%2Cgir%2Cclen%2Cratebypass%2Cdur%2Clmt&lsparams=mh%2Cmm%2Cmn%2Cms%2Cmv%2Cmvi%2Cpl%2Cinitcwndbps&lsig=AG3C_xAwRQIhAJ138Id4g-09RwgdMYF2s8JFKqBW0YUabptq7PHhYQTtAiAg7ilYn3Fne7laRqjvwMApZ5OG_KQoA8N-z2BB3f1xKw%3D%3D&sig=AOq0QJ8wRgIhAOI4PT4Dl0KF5JIj7RcLS6F4VnFeB4pAJ0Dfek5lF5skAiEA4Hs5mTC5IKyJmudrX3PsAVSKB4NZ0NU_SlHi1GwsB1I%3D&cpn=QxGwo8wNZ8NK_R4j&cver=1.20210519.1.1&ptk=youtube_multi&oid=L2YoOATTFNKUmlyfk-e46g&pltype=contentugc&ir=1&rr=12 11.56 MiB 12120074
A/r3---sn-25glene6.googlevideo.com/videoplayback?expire=1621731161&ei=-VKpYOzyLJztsAKzh6TIBA&ip=195.154.207.98&id=o-ADoacU9rdWWpl1X4m_WZhM5OlaZIZcFlQyREYH-_OSog&itag=18&source=youtube&requiressl=yes&mh=rg&mm=31%2C26&mn=sn-25glene6%2Csn-h5q7kned&ms=au%2Conr&mv=m&mvi=2&pl=22&initcwndbps=233750&vprv=1&mime=video%2Fmp4&ns=l6Mu7rsVqhjJEGf8DU36CgAF&gir=yes&clen=12120074&ratebypass=yes&dur=205.125&lmt=1452480333306164&mt=1621709334&fvip=2&fexp=24001373,24007246&c=WEB_EMBEDDED_PLAYER&n=iWmUJNb6_4--QA&sparams=expire%2Cei%2Cip%2Cid%2Citag%2Csource%2Crequiressl%2Cvprv%2Cmime%2Cns%2Cgir%2Cclen%2Cratebypass%2Cdur%2Clmt&lsparams=mh%2Cmm%2Cmn%2Cms%2Cmv%2Cmvi%2Cpl%2Cinitcwndbps&lsig=AG3C_xAwRQIhAIpiyLMjRAAKEZkjYahD-o-iCQdRkDOJqwzTaYKiTOxiAiAffGpOxGnlJHLFQOWw5nxV0kr3YIZjbxqIGEt-tsTYBQ%3D%3D&sig=AOq0QJ8wRAIgTinvV9XiosVjO7M-LvL4eAjNF6USt5nqdHHselprlkwCIDJVx8Mgl-raK29IKseN26XP6etfQfYQVkOT6agx8iOP&cpn=KIyfOK4RDB9Il8EM&cver=1.20210519.1.1&ptk=youtube_multi&oid=L2YoOATTFNKUmlyfk-e46g&pltype=contentugc&ir=1&rr=12 11.56 MiB 12120074
A/r3---sn-25glene6.googlevideo.com/videoplayback?expire=1621731691&ei=C1WpYObeAdbVxN8P8YusoAE&ip=195.154.207.98&id=o-ALcqBpINllG0LcId1dj48mmBU4Q3h3VyKxagVE0xsrhE&itag=18&source=youtube&requiressl=yes&mh=rg&mm=31%2C26&mn=sn-25glene6%2Csn-h5qzen7y&ms=au%2Conr&mv=m&mvi=2&pl=22&initcwndbps=288750&vprv=1&mime=video%2Fmp4&ns=ahzpgOb2S8eA0cBVASe_ubgF&gir=yes&clen=12120074&ratebypass=yes&dur=205.125&lmt=1452480333306164&mt=1621710054&fvip=2&fexp=24001373,24007246&c=WEB_EMBEDDED_PLAYER&n=1gBGxKeQB9LGJQ&sparams=expire%2Cei%2Cip%2Cid%2Citag%2Csource%2Crequiressl%2Cvprv%2Cmime%2Cns%2Cgir%2Cclen%2Cratebypass%2Cdur%2Clmt&lsparams=mh%2Cmm%2Cmn%2Cms%2Cmv%2Cmvi%2Cpl%2Cinitcwndbps&lsig=AG3C_xAwRAIgV1PwGW2zq2RGWgLxqzjuZ4Wu3JMy67sPg7yffQ1BFdICIGaJytr9i1jOfav7_6atdHIwHJUcNoBNTIeXc415s0ip&sig=AOq0QJ8wRgIhANLusMx-ZJz1yioK3Zu0negFDVRQu5GFhvV4j58oLGFZAiEAl3liAE8jvSDoOB7TFEuNI5SgIQ4ol1nTJO1Iit2uPAI%3D&cpn=kooNO60W8EpYmz5G&cver=1.20210519.1.1&ptk=youtube_multi&oid=L2YoOATTFNKUmlyfk-e46g&pltype=contentugc&ir=1&rr=12 11.56 MiB 12120074
A/r5---sn-4g5ednss.googlevideo.com/videoplayback?expire=1621734184&ei=x16pYO7IPISqxN8PyKCyyAg&ip=195.154.207.98&id=o-AG10POQ7HP8k_tO20m4cii5BaaSAyByIbG2lUf8aHlwz&itag=18&source=youtube&requiressl=yes&vprv=1&mime=video%2Fmp4&ns=DM4LBGtbtgsTD0vfBJ3usdEF&gir=yes&clen=12068843&ratebypass=yes&dur=145.078&lmt=1370698318855405&fexp=24001373,24007246&c=WEB_EMBEDDED_PLAYER&n=yzbVUjtquX55Ug&sparams=expire%2Cei%2Cip%2Cid%2Citag%2Csource%2Crequiressl%2Cvprv%2Cmime%2Cns%2Cgir%2Cclen%2Cratebypass%2Cdur%2Clmt&sig=AOq0QJ8wRQIhAK3S0_jS1uvu_kplGmhPjmahMrQ2MeE-ql6LWm1LNLx8AiB-J5jrS3uNcZPjUvVRmM2GFqxM6tCZg2G9it6s1TiVqQ%3D%3D&cpn=zcD5AC0n-R_j6waZ&cver=1.20210519.1.1&ptk=youtube_none&pltype=contentugc&redirect_counter=1&cm2rm=sn-25gkr76&req_id=3242c0a82ef0a3ee&cms_redirect=yes&mh=d0&mm=34&mn=sn-4g5ednss&ms=ltu&mt=1621712436&mv=m&mvi=5&pl=22&lsparams=mh,mm,mn,ms,mv,mvi,pl&lsig=AG3C_xAwRAIgbVte0lkRgRBvtS52_VdS8lHueSVazCFPjQWHq5yS_0ECIHnNuI763RnCcKMH49WDfP5joyNhYi2VL3jzw14MSVPM 11.51 MiB 12068843
A/r2---sn-25glen7l.googlevideo.com/videoplayback?expire=1621734859&ei=a2GpYNCwGIbZxN8PnI2FcA&ip=195.154.207.98&id=o-ABv_5inZacrArW6_zg3gn9JVd7hAQqJmhLFu68OsArLB&itag=18&source=youtube&requiressl=yes&mh=TP&mm=31%2C29&mn=sn-25glen7l%2Csn-25ge7nsd&ms=au%2Crdu&mv=m&mvi=2&pl=22&initcwndbps=317500&vprv=1&mime=video%2Fmp4&ns=Ra_y6N9TXISPt0BfJvJwd0sF&gir=yes&clen=11137038&ratebypass=yes&dur=121.742&lmt=1379793017884324&mt=1621713175&fvip=2&fexp=24001373%2C24007246&c=WEB_EMBEDDED_PLAYER&n=5qHKOWFKqH8PBA&sparams=expire%2Cei%2Cip%2Cid%2Citag%2Csource%2Crequiressl%2Cvprv%2Cmime%2Cns%2Cgir%2Cclen%2Cratebypass%2Cdur%2Clmt&sig=AOq0QJ8wRgIhAKoPqfwMaMTon6V1Fp2_w9Sk7g97Iz_PvcYZ-zGTYdKIAiEA96uMBgfuq9IokI8DCH-TTDivEd9F6tZMtvZ7Req5R9s%3D&lsparams=mh%2Cmm%2Cmn%2Cms%2Cmv%2Cmvi%2Cpl%2Cinitcwndbps&lsig=AG3C_xAwRgIhAJrIW_ecIqRwNtxjtLW5pgstjTEGJme2afiWBzjSyGqUAiEA6zIMN6EAhifSltYq7zs7Jx-dZijS1uBdZKfyyB9uz9s%3D&cpn=lYByNM9jHwEc1c15&cver=1.20210519.1.1&ptk=youtube_none&pltype=contentugc 10.62 MiB 11137038
A/r2---sn-4g5ednsr.googlevideo.com/videoplayback?expire=1621731844&ei=pFWpYMPNMuWexN8Pk-6uwAM&ip=195.154.207.98&id=o-AJhoefN5C0v-jDoZvsrR4gIoYEHA1kZ8tUlG89FigEO_&itag=18&source=youtube&requiressl=yes&vprv=1&mime=video%2Fmp4&ns=LvV6ty2-Aa1c39mJ4aBTrCIF&gir=yes&clen=11137038&ratebypass=yes&dur=121.742&lmt=1379793017884324&fexp=24001373,24007246&c=WEB_EMBEDDED_PLAYER&n=c4mYINJLfjmESg&sparams=expire%2Cei%2Cip%2Cid%2Citag%2Csource%2Crequiressl%2Cvprv%2Cmime%2Cns%2Cgir%2Cclen%2Cratebypass%2Cdur%2Clmt&sig=AOq0QJ8wRQIhAMnKuUMU6nJ__W7uwbPsySBSMbWvz4PpyFtzr4dvZEMXAiAah301JfWAcOcOThQUARUqgUwfZEtqLcv31KZBS6ORjw%3D%3D&cpn=IyfOK4RDB9Il8EM4&cver=1.20210519.1.1&ptk=youtube_none&pltype=contentugc&redirect_counter=1&cm2rm=sn-25gkd7s&req_id=93509250c92ca3ee&cms_redirect=yes&mh=TP&mm=34&mn=sn-4g5ednsr&ms=ltu&mt=1621709865&mv=u&mvi=2&pl=22&lsparams=mh,mm,mn,ms,mv,mvi,pl&lsig=AG3C_xAwRQIhANWNOnd-4f4TGpz60y_u-Nhh2SHu8Mbesk0vRfoO5cYnAiBvkD--TVm7jgxzDl_2qAyRItzs-LJtIfC3wZBobAAjug%3D%3D 10.62 MiB 11137038
A/r2---sn-4g5ednsr.googlevideo.com/videoplayback?expire=1621733845&ei=dV2pYJ-TO_L3xN8Pp_WgyAQ&ip=195.154.207.98&id=o-AK5TPVP5TWSAnU5MWlh6yjrOC2kZsf9UITwZhdn6esr6&itag=18&source=youtube&requiressl=yes&vprv=1&mime=video%2Fmp4&ns=MITU9AtBu1Dqm5KTBOXz_nIF&gir=yes&clen=11137038&ratebypass=yes&dur=121.742&lmt=1379793017884324&fexp=24001373,24007246&c=WEB_EMBEDDED_PLAYER&n=iikwGzl5eqIbzA&sparams=expire%2Cei%2Cip%2Cid%2Citag%2Csource%2Crequiressl%2Cvprv%2Cmime%2Cns%2Cgir%2Cclen%2Cratebypass%2Cdur%2Clmt&sig=AOq0QJ8wRQIhAK82p-_8lXArbwYHibi0ecNjLVu_VjfYzXay6lmLjfNCAiBDTR8z8qwUqBIfFgRkqvmaLpSfpbeU1lI0n_kbkXj5qA%3D%3D&cpn=h173wuYF0wf4pojv&cver=1.20210519.1.1&ptk=youtube_none&pltype=contentugc&redirect_counter=1&cm2rm=sn-25g6r7l&req_id=623d0f68371ca3ee&cms_redirect=yes&mh=TP&mm=34&mn=sn-4g5ednsr&ms=ltu&mt=1621712198&mv=m&mvi=2&pl=22&lsparams=mh,mm,mn,ms,mv,mvi,pl&lsig=AG3C_xAwRgIhAIgd5Mi0JCeQdSqeTC1GHIiQLANu03zHVBEH1hyka68tAiEAuOIzYqphnd98lIM2I8bGcooNQt5TcfPBtVwy6F1wPHM%3D 10.62 MiB 11137038
A/r2---sn-4g5ednsz.googlevideo.com/videoplayback?expire=1621730838&ei=tlGpYITBCfSvxN8P9uu_6AU&ip=195.154.207.98&id=o-AIsEj8eQUN5ltsE4ROGvqt04_upk951ZhPzW7ntzC3aA&itag=18&source=youtube&requiressl=yes&vprv=1&mime=video%2Fmp4&ns=-bDWR9VNnMcPe9Q7hLVqrVcF&gir=yes&clen=10760846&ratebypass=yes&dur=116.610&lmt=1594994512707452&fexp=24001373,24007246&c=WEB_EMBEDDED_PLAYER&txp=1211222&n=gM_5aN-Nn5UZqQ&sparams=expire%2Cei%2Cip%2Cid%2Citag%2Csource%2Crequiressl%2Cvprv%2Cmime%2Cns%2Cgir%2Cclen%2Cratebypass%2Cdur%2Clmt&sig=AOq0QJ8wRQIhALBCJ7RNzlUOk7iGsgIlEnRO4-5Rw1uq2E2tfz77IAruAiAZJqO1HboyN7cWd2yJ5l9kVoqFBCywB2Toe9N03NCXqA%3D%3D&cpn=vCBEIZdMTm3YJ2Tx&cver=1.20210519.1.1&ptk=youtube_none&pltype=contentugc&redirect_counter=1&cm2rm=sn-25gdz7d&req_id=61ae3d1b42ada3ee&cms_redirect=yes&mh=kx&mm=34&mn=sn-4g5ednsz&ms=ltu&mt=1621708627&mv=u&mvi=2&pl=22&lsparams=mh,mm,mn,ms,mv,mvi,pl&lsig=AG3C_xAwRQIhAIHnZxYEG5_hGnLxBHMbsNLnmNRiGgS8DNiLAOZctVOuAiAZjAJWua7-h4HwnfQsUXZUl_bzocJ2SH1WcLVJqCgZhQ%3D%3D 10.26 MiB 10760846
A/r2---sn-4g5ednsz.googlevideo.com/videoplayback?expire=1621732385&ei=wVepYKGuLbvSxN8PxaqZkAw&ip=195.154.207.98&id=o-ACyuXNORQEmmbdOPTjDQutdxNAwuSSiETp1nvNj4TuNR&itag=18&source=youtube&requiressl=yes&vprv=1&mime=video%2Fmp4&ns=75cr-MXbFFPetbFSuUiYk4MF&gir=yes&clen=10760846&ratebypass=yes&dur=116.610&lmt=1594994512707452&fexp=24001373,24007246&c=WEB_EMBEDDED_PLAYER&txp=1211222&n=M7ezj87ReetyZw&sparams=expire%2Cei%2Cip%2Cid%2Citag%2Csource%2Crequiressl%2Cvprv%2Cmime%2Cns%2Cgir%2Cclen%2Cratebypass%2Cdur%2Clmt&sig=AOq0QJ8wRgIhAPWOok6RZZQF1fbC6gpQF6mqKCvZi4rKoI7_bSzoIHSXAiEAnuPyONo-3_2G4DxOYA-smNGhmu5jEsqrw0RenMZ_NoU%3D&cpn=pWohq5e8sL2qSDed&cver=1.20210519.1.1&ptk=youtube_none&pltype=contentugc&redirect_counter=1&cm2rm=sn-25g6k7d&req_id=a3903df8be3fa3ee&cms_redirect=yes&mh=kx&mm=34&mn=sn-4g5ednsz&ms=ltu&mt=1621710633&mv=u&mvi=2&pl=22&lsparams=mh,mm,mn,ms,mv,mvi,pl&lsig=AG3C_xAwRQIgObMWhkLy1DyFOWa2Ne_Q6kkBbhEztqN1tVF3snKkazACIQC62qWY258oqV0bpkt1YpZ_d8XTrrQ6rwUvtKvLJ9GZpg%3D%3D 10.26 MiB 10760846
A/r6---sn-25ge7nsl.googlevideo.com/videoplayback?expire=1621732289&ei=YVepYMG5GOz2xN8P-d2uyA4&ip=195.154.207.98&id=o-ANJGoAXP4KBn2QCXSYhI939-SynEb-BFqzhtvI_1op0E&itag=18&source=youtube&requiressl=yes&mh=kx&mm=31%2C29&mn=sn-25ge7nsl%2Csn-25glen7e&ms=au%2Crdu&mv=m&mvi=6&pl=22&initcwndbps=277500&vprv=1&mime=video%2Fmp4&ns=UYBGMfb6NSw0AWvAQWmHxPEF&gir=yes&clen=10760846&ratebypass=yes&dur=116.610&lmt=1594994512707452&mt=1621710534&fvip=6&fexp=24001373%2C24007246&c=WEB_EMBEDDED_PLAYER&txp=1211222&n=LQ3o8Yare89Kow&sparams=expire%2Cei%2Cip%2Cid%2Citag%2Csource%2Crequiressl%2Cvprv%2Cmime%2Cns%2Cgir%2Cclen%2Cratebypass%2Cdur%2Clmt&sig=AOq0QJ8wRQIhAM8Z6hkFuuwJZJneuboPIK3wJVjab697t1nE34qPAgVtAiBKQ-pPw2mEWKIK_jOIaIteeNbVkn0vhXXtpuwBPpwsQQ%3D%3D&lsparams=mh%2Cmm%2Cmn%2Cms%2Cmv%2Cmvi%2Cpl%2Cinitcwndbps&lsig=AG3C_xAwRQIgAjFNMgOsBzk_LYr-wLLOP8vbe_VqR0BeLEEtWTHv7M4CIQDfDKnwTHTfiZpaltvjImpKvGEySdoKLYu3eGEjSBD0Ag%3D%3D&cpn=dozsH0G_IX8aJpUH&cver=1.20210519.1.1&ptk=youtube_none&pltype=contentugc 10.26 MiB 10760846
A/r6---sn-25glen7e.googlevideo.com/videoplayback?expire=1621735454&ei=vmOpYJ6pG7qCp-oP1rCjiA4&ip=195.154.207.98&id=o-AFjUX8n0Kl3zxO8kpG--ywFb0x7QKSgyeK048Z8NbvBw&itag=18&source=youtube&requiressl=yes&mh=kx&mm=31%2C26&mn=sn-25glen7e%2Csn-h5q7knes&ms=au%2Conr&mv=m&mvi=6&pl=22&initcwndbps=310000&vprv=1&mime=video%2Fmp4&ns=-efUjrSgOVZV6BdEiX7Il_4F&gir=yes&clen=10760846&ratebypass=yes&dur=116.610&lmt=1594994512707452&mt=1621713409&fvip=2&fexp=24001373%2C24007246&c=WEB_EMBEDDED_PLAYER&txp=1211222&n=Q0g-OT7lJT4rFg&sparams=expire%2Cei%2Cip%2Cid%2Citag%2Csource%2Crequiressl%2Cvprv%2Cmime%2Cns%2Cgir%2Cclen%2Cratebypass%2Cdur%2Clmt&sig=AOq0QJ8wRQIgQgL05eLwG_2IQpB46zwwa_ltgt6IOqbtKhTLD5AiivQCIQDZoxYTpno9C-zjkJTA6NwmAV6Ix5dtYvO1U80ZhFgLow%3D%3D&lsparams=mh%2Cmm%2Cmn%2Cms%2Cmv%2Cmvi%2Cpl%2Cinitcwndbps&lsig=AG3C_xAwRgIhANuMeZmOO9bb8LeF_R_5DZC3hB2rpV5vOjmBU_xReoYUAiEA_Zz3edJP6i63LTQCIAYJOqzTR0WzmNW7vOyz_Fue0Ls%3D&cpn=xwWXD9eFMyhv7CPm&cver=1.20210519.1.1&ptk=youtube_none&pltype=contentugc 10.26 MiB 10760846
A/r4---sn-25ge7nse.googlevideo.com/videoplayback?expire=1621730935&ei=F1KpYOGyNdScmLAPytO88AQ&ip=195.154.207.98&id=o-ABT3p7wZtkvjZ0nJ8H4RJYiuWaWgHRD8wQ9VqWKdYL_w&itag=18&source=youtube&requiressl=yes&mh=vu&mm=31%2C29&mn=sn-25ge7nse%2Csn-25glene6&ms=au%2Crdu&mv=m&mvi=4&pl=22&initcwndbps=201250&vprv=1&mime=video%2Fmp4&ns=yNRE2onsPJi5-2J3X97rOLwF&gir=yes&clen=10320822&ratebypass=yes&dur=136.301&lmt=1405577725720950&mt=1621709091&fvip=4&fexp=24001373%2C24007246&c=WEB_EMBEDDED_PLAYER&n=PGdrhV-DMGCKAg&sparams=expire%2Cei%2Cip%2Cid%2Citag%2Csource%2Crequiressl%2Cvprv%2Cmime%2Cns%2Cgir%2Cclen%2Cratebypass%2Cdur%2Clmt&sig=AOq0QJ8wRQIhALdmXseJs-s-SkJplh7KF_E7hxhWiySvHKqjQxCezZPAAiAkePZfsTKPUIVo0PGHnCfVXM3HEHIa3aHdZUfPT2KbiQ%3D%3D&lsparams=mh%2Cmm%2Cmn%2Cms%2Cmv%2Cmvi%2Cpl%2Cinitcwndbps&lsig=AG3C_xAwRQIhAOChSRGI8LUoRwTSYlD35WUmjgi8sVWorc_-ZbG0X6ooAiAyd1Qicyn_a-x1NTuf4Fv9YVslMVW0mciC8nBvsISB9g%3D%3D&cpn=JT03CMFgOgZixWzj&cver=1.20210519.1.1&ptk=youtube_none&pltype=contentugc 9.84 MiB 10320822
A/r4---sn-25ge7nse.googlevideo.com/videoplayback?expire=1621733116&ei=nFqpYMGFBKf7xN8P9qCmmAE&ip=195.154.207.98&id=o-AG1PeaO0c0LzsvLkbN29622mKncqGOSm6O2GjlGVShX3&itag=18&source=youtube&requiressl=yes&mh=vu&mm=31%2C26&mn=sn-25ge7nse%2Csn-4g5e6nsk&ms=au%2Conr&mv=m&mvi=4&pl=22&initcwndbps=278750&vprv=1&mime=video%2Fmp4&ns=v3_iZp5CyxzlAX0SHhUYMkkF&gir=yes&clen=10320822&ratebypass=yes&dur=136.301&lmt=1405577725720950&mt=1621711256&fvip=4&fexp=24001373%2C24007246&c=WEB_EMBEDDED_PLAYER&n=gPTkFfwzXCv1Zg&sparams=expire%2Cei%2Cip%2Cid%2Citag%2Csource%2Crequiressl%2Cvprv%2Cmime%2Cns%2Cgir%2Cclen%2Cratebypass%2Cdur%2Clmt&sig=AOq0QJ8wRgIhAJdld4lopycjNkVlAT4brvbNkM3XjgGf9JgYXQyIWQWzAiEA71YN9b2BcMo4pn2rpGzG-pJT00TVAVQoIgv65JeQI0o%3D&lsparams=mh%2Cmm%2Cmn%2Cms%2Cmv%2Cmvi%2Cpl%2Cinitcwndbps&lsig=AG3C_xAwRAIgdFEdzdvSo4cM0bdJZcBmDSGRT9j_HC224MA9B4gpK60CIGfSwZ6y877nOqt9mYJbHAyT-LLglZUPcBL8PIqpmjdk&cpn=FGysN07hQeqx-VBG&cver=1.20210519.1.1&ptk=youtube_none&pltype=contentugc 9.84 MiB 10320822
A/r4---sn-4g5ednsl.googlevideo.com/videoplayback?expire=1621730746&ei=WlGpYMLBKM34xN8Pw_WlyAQ&ip=195.154.207.98&id=o-AJI-monvCOz9IYeiF7AaXw2kFAG3u3NIILs_puG1EW1U&itag=18&source=youtube&requiressl=yes&vprv=1&mime=video%2Fmp4&ns=hyWrBzNkSVY9opDrUO_DjP0F&gir=yes&clen=10320822&ratebypass=yes&dur=136.301&lmt=1405577725720950&fexp=24001373,24007246&c=WEB_EMBEDDED_PLAYER&n=-3qRWLViGx63KQ&sparams=expire%2Cei%2Cip%2Cid%2Citag%2Csource%2Crequiressl%2Cvprv%2Cmime%2Cns%2Cgir%2Cclen%2Cratebypass%2Cdur%2Clmt&sig=AOq0QJ8wRQIhALwpfcOZlBY0979GALFwxisDOoltSOtkz9MVAmc5CygmAiBX5qxkAC1YdFH03d0CK_RStCPJJbx3WvRJ-Oxy6nBPCg%3D%3D&cpn=gf-G9KGtNKcx-yhL&cver=1.20210519.1.1&ptk=youtube_none&pltype=contentugc&redirect_counter=1&cm2rm=sn-25gds7s&req_id=eca3405e6ee0a3ee&cms_redirect=yes&mh=vu&mm=34&mn=sn-4g5ednsl&ms=ltu&mt=1621708627&mv=u&mvi=4&pl=22&lsparams=mh,mm,mn,ms,mv,mvi,pl&lsig=AG3C_xAwRgIhAIewBh8141BOlc7qAQ2DRAC9Eyo9t3j0GzfXN8MORmEdAiEAw6A2Lq7mPNG5rLxVS_m_O0FzWWxdpPYP_Af__MI51bU%3D 9.84 MiB 10320822
A/r4---sn-4g5ednsl.googlevideo.com/videoplayback?expire=1621731281&ei=cVOpYJiiG7j0xN8PwqCZyAQ&ip=195.154.207.98&id=o-AF4vIIsCQjNxmQQI6csL2WHj97gtX2cVhYp1IFaMjY6U&itag=18&source=youtube&requiressl=yes&vprv=1&mime=video%2Fmp4&ns=-G0xk52XiAClK2-E0AdpuVsF&gir=yes&clen=10320822&ratebypass=yes&dur=136.301&lmt=1405577725720950&fexp=24001373,24007246&c=WEB_EMBEDDED_PLAYER&n=o-utHU3vu54wnw&sparams=expire%2Cei%2Cip%2Cid%2Citag%2Csource%2Crequiressl%2Cvprv%2Cmime%2Cns%2Cgir%2Cclen%2Cratebypass%2Cdur%2Clmt&sig=AOq0QJ8wRQIhANeMKY8kpw5XWeKhCmekt4Ng5WKqoYYhnKYD0lLc17R7AiBuLUvKjZ1q2-mYasiTyAmGN87X1Y0x-31DvHGY-YEygg%3D%3D&cpn=mzcmY6yYr1cZZQvJ&cver=1.20210519.1.1&ptk=youtube_none&pltype=contentugc&redirect_counter=1&cm2rm=sn-25gk67z&req_id=9a5aee3172a2a3ee&cms_redirect=yes&mh=vu&mm=34&mn=sn-4g5ednsl&ms=ltu&mt=1621709247&mv=u&mvi=4&pl=22&lsparams=mh,mm,mn,ms,mv,mvi,pl&lsig=AG3C_xAwRgIhAKY7YRVwehIntJsEjfDSY9uE7CYoedXuUVkOdcsX4YISAiEAoqH6jYA3cgTPoTS9PIiKnJkklIQvg4k_qe-zeNGW9D4%3D 9.84 MiB 10320822
A/r2---sn-4g5e6ns6.googlevideo.com/videoplayback?expire=1621734183&ei=x16pYKTmFuKqxN8P1NaM0AQ&ip=195.154.207.98&id=o-AJKGiRGHjwAylzyI5y_fdKYazTs2iUM9849awK713p0i&itag=18&source=youtube&requiressl=yes&vprv=1&mime=video%2Fmp4&ns=9bphw-wlSOp_PVS0gxvwiKoF&gir=yes&clen=9949224&ratebypass=yes&dur=148.166&lmt=1370712722493059&fexp=24001373,24007246&c=WEB_EMBEDDED_PLAYER&n=HMf4eXDj5tlxsg&sparams=expire%2Cei%2Cip%2Cid%2Citag%2Csource%2Crequiressl%2Cvprv%2Cmime%2Cns%2Cgir%2Cclen%2Cratebypass%2Cdur%2Clmt&sig=AOq0QJ8wRgIhAO6UMSczYfLtfOJm9BKiXmik5C74FWct31Q_IJlunBl9AiEAn2iWkr2d-QG1MvwFdWz8E19Y4TQaWe4ivEaWtYgNj7k%3D&cpn=zcD5AC0n-R_j6waZ&cver=1.20210519.1.1&ptk=youtube_none&pltype=contentugc&redirect_counter=1&cm2rm=sn-25gd77l&req_id=31d4a55fe3d1a3ee&cms_redirect=yes&mh=q2&mm=34&mn=sn-4g5e6ns6&ms=ltu&mt=1621712436&mv=m&mvi=2&pl=22&lsparams=mh,mm,mn,ms,mv,mvi,pl&lsig=AG3C_xAwRgIhAMpfc0jiRNkT2Ic0iJYG8cKj8W4ZfRntshOQk5WW6xK3AiEAq9FVV6HwkcB66-VbAy0SidrnPxkBoDzs0B-lXJLRc48%3D 9.49 MiB 9949224
A/r1---sn-25ge7nzs.googlevideo.com/videoplayback?expire=1621735166&ei=nmKpYKeCJc3gxgKwn6XwBw&ip=195.154.207.98&id=o-AD1_yqux0V-4GhObpp6EfFL7oY_8TG_3Tgf4BGS2iufR&itag=18&source=youtube&requiressl=yes&mh=kG&mm=31%2C29&mn=sn-25ge7nzs%2Csn-25glenez&ms=au%2Crdu&mv=m&mvi=1&pl=22&initcwndbps=312500&vprv=1&mime=video%2Fmp4&ns=YgDq5ZSW_zpu2-NfFF0cJAYF&gir=yes&clen=9620087&ratebypass=yes&dur=110.248&lmt=1595660125375704&mt=1621713409&fvip=1&fexp=24001373%2C24007246&c=WEB_EMBEDDED_PLAYER&txp=1211222&n=z6uNBtUEdvU6ZQ&sparams=expire%2Cei%2Cip%2Cid%2Citag%2Csource%2Crequiressl%2Cvprv%2Cmime%2Cns%2Cgir%2Cclen%2Cratebypass%2Cdur%2Clmt&sig=AOq0QJ8wRQIhAMPhXhFx5bPeVx6XUoPvyxZY3KOe5kGphC_F7hKvZmqbAiAFwZfh-HyEEqtoiOc7babwrz5t7Q5VOqhBWVqCVDl9xA%3D%3D&lsparams=mh%2Cmm%2Cmn%2Cms%2Cmv%2Cmvi%2Cpl%2Cinitcwndbps&lsig=AG3C_xAwRQIhAN0NKKxh5VDeKgXn2SZpkn7nchD5PXzXM6tWPRjnEZgrAiAn_YgUsP3VoINYkuRqD_Yl_TJdeOjRbR2aoEqAVGqRyg%3D%3D&cpn=LynuwjWtAuSpfJIV&cver=1.20210519.1.1&ptk=youtube_none&pltype=contentugc 9.17 MiB 9620087
A/r1---sn-25ge7nzs.googlevideo.com/videoplayback?expire=1621735245&ei=7WKpYJTSLILBsALWrLxo&ip=195.154.207.98&id=o-ALlaLPIUbE-N0a3qdhlTsn_i9rrI4kHg_z5QfBDFB0wa&itag=18&source=youtube&requiressl=yes&mh=kG&mm=31%2C26&mn=sn-25ge7nzs%2Csn-4g5ednsy&ms=au%2Conr&mv=m&mvi=1&pl=22&initcwndbps=312500&vprv=1&mime=video%2Fmp4&ns=Go5vs0M6Z3B4aGMR9k1J2F0F&gir=yes&clen=9620087&ratebypass=yes&dur=110.248&lmt=1595660125375704&mt=1621713409&fvip=1&fexp=24001373%2C24007246&c=WEB_EMBEDDED_PLAYER&txp=1211222&n=q54LzYex14V-hA&sparams=expire%2Cei%2Cip%2Cid%2Citag%2Csource%2Crequiressl%2Cvprv%2Cmime%2Cns%2Cgir%2Cclen%2Cratebypass%2Cdur%2Clmt&sig=AOq0QJ8wRQIhAIbysN3di_9hx0DkuPlAyFS95_da1geYmCkpC5qUq0DGAiAqp-PQDtLf7feRYbJ-dioUH1Y8sfN9HWia2_rSiNqRQw%3D%3D&lsparams=mh%2Cmm%2Cmn%2Cms%2Cmv%2Cmvi%2Cpl%2Cinitcwndbps&lsig=AG3C_xAwRAIgNX6y23FdxMULarm2NV8pGSvJiqlAQg3nS3H30644fIwCIA97nOQtPGDqZYkZGtNVUbYo8uXYEM_PY4eqKZdLnDjN&cpn=EuaJG0N_95Eg4AI0&cver=1.20210519.1.1&ptk=youtube_none&pltype=contentugc 9.17 MiB 9620087
A/r1---sn-25ge7nzs.googlevideo.com/videoplayback?expire=1621735329&ei=QWOpYMCYIcGixN8PpLS-mA0&ip=195.154.207.98&id=o-AG2tNsccckrW60Zb4W5NVXczxhAgjiGqtQF2nD_aIdSi&itag=18&source=youtube&requiressl=yes&mh=kG&mm=31%2C26&mn=sn-25ge7nzs%2Csn-4g5ednsy&ms=au%2Conr&mv=m&mvi=1&pl=22&initcwndbps=311250&vprv=1&mime=video%2Fmp4&ns=aCzCxZeFA8Va-GwlAEl_vzIF&gir=yes&clen=9620087&ratebypass=yes&dur=110.248&lmt=1595660125375704&mt=1621713649&fvip=1&fexp=24001373%2C24007246&c=WEB_EMBEDDED_PLAYER&txp=1211222&n=-RLgmLmosVBlVw&sparams=expire%2Cei%2Cip%2Cid%2Citag%2Csource%2Crequiressl%2Cvprv%2Cmime%2Cns%2Cgir%2Cclen%2Cratebypass%2Cdur%2Clmt&sig=AOq0QJ8wRQIgPnhCMk6TJ_0MwE9C_fKhTAd13s8nLhGJeK7kL9aoGeECIQDz-apw32aD_nTwGkSjvgv5ikAjjaaeImXYOvZtWMtb2Q%3D%3D&lsparams=mh%2Cmm%2Cmn%2Cms%2Cmv%2Cmvi%2Cpl%2Cinitcwndbps&lsig=AG3C_xAwRQIgK1zk9wnxctZoWoW5ZYeA9w8PHKEUmE-0p_rO4oflA00CIQCtg1UuhhXg7SLewibhTi79DVWy1RuMekeglYnq6DFMNw%3D%3D&cpn=50Acz7EwYbUBMMgD&cver=1.20210519.1.1&ptk=youtube_none&pltype=contentugc 9.17 MiB 9620087
A/r1---sn-25glenez.googlevideo.com/videoplayback?expire=1621732128&ei=wFapYIfEAZuQxN8PwLOdyAQ&ip=195.154.207.98&id=o-ALf3_nen5YdX5gGIzNdSe9FCb8OXOf6k2RJrd_Xhh3E9&itag=18&source=youtube&requiressl=yes&mh=kG&mm=31%2C26&mn=sn-25glenez%2Csn-h5q7kned&ms=au%2Conr&mv=m&mvi=1&pl=22&initcwndbps=263750&vprv=1&mime=video%2Fmp4&ns=i0MiVgszgtvmdOGt3bNAfR8F&gir=yes&clen=9620087&ratebypass=yes&dur=110.248&lmt=1595660125375704&mt=1621710297&fvip=1&fexp=24001373%2C24007246&c=WEB_EMBEDDED_PLAYER&txp=1211222&n=AoUCZ41N9NA8mA&sparams=expire%2Cei%2Cip%2Cid%2Citag%2Csource%2Crequiressl%2Cvprv%2Cmime%2Cns%2Cgir%2Cclen%2Cratebypass%2Cdur%2Clmt&sig=AOq0QJ8wRQIgC3ZiNI3r2fm2uqrnpawrJb5x_pKsQKsQ0RLUsQl6VWICIQDARIQEEwjGTu0MhCBOPVgOqQo2dbOYBTQ-_hzbR4YQfA%3D%3D&lsparams=mh%2Cmm%2Cmn%2Cms%2Cmv%2Cmvi%2Cpl%2Cinitcwndbps&lsig=AG3C_xAwRQIhAK1AY06FwmXW7tYXNc_p9cVURCJ7YTa342ZE1_hRJtljAiBuk_xcbbTkLrD0-aZtTcaCxc7R3K1WCuLm0XvsmhwO8w%3D%3D&cpn=_IX8aJpUHwh87sS2&cver=1.20210519.1.1&ptk=youtube_none&pltype=contentugc 9.17 MiB 9620087
A/r1---sn-4g5ednsy.googlevideo.com/videoplayback?expire=1621730838&ei=tlGpYLCpEZT_WtKUnNgE&ip=195.154.207.98&id=o-AO7yzxXZ91p5QS75_LSujPBRZmmQvYQn6ohQinKKcTfr&itag=18&source=youtube&requiressl=yes&vprv=1&mime=video%2Fmp4&ns=HPt3zU7dRaMbrPi__BrFl6AF&gir=yes&clen=9620087&ratebypass=yes&dur=110.248&lmt=1595660125375704&fexp=24001373,24007246&c=WEB_EMBEDDED_PLAYER&txp=1211222&n=VE8k44McXEqZ-g&sparams=expire%2Cei%2Cip%2Cid%2Citag%2Csource%2Crequiressl%2Cvprv%2Cmime%2Cns%2Cgir%2Cclen%2Cratebypass%2Cdur%2Clmt&sig=AOq0QJ8wRAIgW30rWDXWNYSv0ZW44aKy6vPvhZtQIzFkSC1-NmqJlMQCIA_-Z7VjrOfZ3gTyfZ7sFOU_1d3xduZRroFBR1XdNqrF&cpn=vCBEIZdMTm3YJ2Tx&cver=1.20210519.1.1&ptk=youtube_none&pltype=contentugc&redirect_counter=1&cm2rm=sn-25gkr7e&req_id=711fcfd3edd3a3ee&cms_redirect=yes&mh=kG&mm=34&mn=sn-4g5ednsy&ms=ltu&mt=1621708627&mv=u&mvi=1&pl=22&lsparams=mh,mm,mn,ms,mv,mvi,pl&lsig=AG3C_xAwRQIgB-_7A2-4qF9R94lBUg-GjKNVSN9R8ACH3pZtFM5tprsCIQDT_i7XKNVbULJgjVASSgZZFZtzjXhfroRR-Xyv7KO5vw%3D%3D 9.17 MiB 9620087
A/r1---sn-4g5ednsy.googlevideo.com/videoplayback?expire=1621732038&ei=ZlapYJmuM8fFxgLprbGYBw&ip=195.154.207.98&id=o-AA1r5MIc97eGACfFBzTTmi9WS4Nd0AVFyTFxZPzUU3sp&itag=18&source=youtube&requiressl=yes&vprv=1&mime=video%2Fmp4&ns=5dqEBpBz480HRBCj_klr5iMF&gir=yes&clen=9620087&ratebypass=yes&dur=110.248&lmt=1595660125375704&fexp=24001373,24007246&c=WEB_EMBEDDED_PLAYER&txp=1211222&n=VEJ5Z2H3DULHKw&sparams=expire%2Cei%2Cip%2Cid%2Citag%2Csource%2Crequiressl%2Cvprv%2Cmime%2Cns%2Cgir%2Cclen%2Cratebypass%2Cdur%2Clmt&sig=AOq0QJ8wRgIhAJP3pxVGNjH-1eoEZj4uVPmIn9GM3F74lK73brhhqCqlAiEAq4P0wKss9kyVavNeujHi-cAJCz_zbDS3cpE0wvqBG5E%3D&cpn=uwG2nxRVgqj-r-3A&cver=1.20210519.1.1&ptk=youtube_none&pltype=contentugc&redirect_counter=1&cm2rm=sn-25gkz7e&req_id=597986984b09a3ee&cms_redirect=yes&mh=kG&mm=34&mn=sn-4g5ednsy&ms=ltu&mt=1621709865&mv=u&mvi=1&pl=22&lsparams=mh,mm,mn,ms,mv,mvi,pl&lsig=AG3C_xAwRgIhANTdlnaJsgk-UcEdTwlMfwRWS8QiIbHJaI1fUnQQsIINAiEAlOdBQBsyjwXwGMK6fkANUHCRJSQlVECSpid8Sav0X_g%3D 9.17 MiB 9620087
A/r1---sn-25ge7nsd.googlevideo.com/videoplayback?expire=1621736477&ei=vWepYIQcvJHE3w-JsKpg&ip=195.154.207.98&id=o-AL8kWjJObL8AApPCYVshUVC-hvKvSGF06TGpeBs9oo_S&itag=18&source=youtube&requiressl=yes&mh=Qy&mm=31%2C29&mn=sn-25ge7nsd%2Csn-25glen7e&ms=au%2Crdu&mv=m&mvi=1&pl=22&initcwndbps=320000&vprv=1&mime=video%2Fmp4&ns=Kcljg5QeZy7_SmsGgS7xaJoF&gir=yes&clen=7331306&ratebypass=yes&dur=66.850&lmt=1378795360769161&mt=1621714617&fvip=1&fexp=24001373%2C24007246&c=WEB_EMBEDDED_PLAYER&n=wXNHynhfbTRK5Q&sparams=expire%2Cei%2Cip%2Cid%2Citag%2Csource%2Crequiressl%2Cvprv%2Cmime%2Cns%2Cgir%2Cclen%2Cratebypass%2Cdur%2Clmt&sig=AOq0QJ8wRgIhALQ35RoVrPIwGZsRrL1POv7KV-hxwCkT4ulIRSlaxkCsAiEAxdttopoYMEzMm0BFKaINr6PwVYG3JtVLNlJlHgW0zgU%3D&lsparams=mh%2Cmm%2Cmn%2Cms%2Cmv%2Cmvi%2Cpl%2Cinitcwndbps&lsig=AG3C_xAwRgIhAIjvY6q-Hh_aiVpZ8bWB9mH7JfEUpCoKF69AvluFpbMxAiEAvrJfT1lphDB5GXaStro8SBjbZlZKGm6ELbYpoJVkeCo%3D&cpn=Ov599jkQKrSZ-u7I&cver=1.20210519.1.1&ptk=youtube_none&pltype=contentugc 6.99 MiB 7331306
A/r1---sn-4g5e6nsr.googlevideo.com/videoplayback?expire=1621732917&ei=1VmpYKHdMeHrsALa5YJo&ip=195.154.207.98&id=o-ANeZs8Yr9SD_bgKm1SFAKQGIQFaL0_aDihlgjvgTnS9Z&itag=18&source=youtube&requiressl=yes&vprv=1&mime=video%2Fmp4&ns=I_rc-8jkUr8i5H3oUCtDw4YF&gir=yes&clen=7331306&ratebypass=yes&dur=66.850&lmt=1378795360769161&fexp=24001373,24007246&c=WEB_EMBEDDED_PLAYER&n=YnykUJ2wRndiDg&sparams=expire%2Cei%2Cip%2Cid%2Citag%2Csource%2Crequiressl%2Cvprv%2Cmime%2Cns%2Cgir%2Cclen%2Cratebypass%2Cdur%2Clmt&sig=AOq0QJ8wRQIhANBo9f0K9j8EKQhO6VO2VpBOCjjsjbPOTh6nx6OU_S9KAiB2sAA_4-p4xLiNIRHNtGmu9XWLITjMQjB7a8LP5b-dPw%3D%3D&cpn=xfUKtzLIrfZoxLVr&cver=1.20210519.1.1&ptk=youtube_none&pltype=contentugc&redirect_counter=1&cm2rm=sn-25gkd76&req_id=e96234d805ba3ee&cms_redirect=yes&mh=Qy&mm=34&mn=sn-4g5e6nsr&ms=ltu&mt=1621711236&mv=m&mvi=1&pl=22&lsparams=mh,mm,mn,ms,mv,mvi,pl&lsig=AG3C_xAwRAIgbAVbbhUiu4-yTExUv-d6elgXOYYG1X3OMPIfOcv7cvoCIFR22br2qfFGlJnxKZ0rDGgzqZwVtwHhfIFwAHYAhyGg 6.99 MiB 7331306
A/r1---sn-4g5e6nsr.googlevideo.com/videoplayback?expire=1621734739&ei=82CpYI64A6vKxgLuoI-wAg&ip=195.154.207.98&id=o-ADKKQGwn4lUW9CvJbQWDr_UzWpsf6cPptwOoBU8TtcwD&itag=18&source=youtube&requiressl=yes&vprv=1&mime=video%2Fmp4&ns=2_xInXbDXiCMQcix_2sOSL4F&gir=yes&clen=7331306&ratebypass=yes&dur=66.850&lmt=1378795360769161&fexp=24001373,24007246&c=WEB_EMBEDDED_PLAYER&n=N6_PYjdoSgGoEQ&sparams=expire%2Cei%2Cip%2Cid%2Citag%2Csource%2Crequiressl%2Cvprv%2Cmime%2Cns%2Cgir%2Cclen%2Cratebypass%2Cdur%2Clmt&sig=AOq0QJ8wRAIgJV3IEhL7dEYwyNEpi86i4-qURIWZjRU_fBpy7hnE94sCIFuRzkKHSzD8in0z6WOwmzjRxvjnxcrCLys9N0cZCnIk&cpn=6LZtsuzEI29RiD0h&cver=1.20210519.1.1&ptk=youtube_none&pltype=contentugc&redirect_counter=1&cm2rm=sn-25g6k7e&req_id=9f4b930eea74a3ee&cms_redirect=yes&mh=Qy&mm=34&mn=sn-4g5e6nsr&ms=ltu&mt=1621712916&mv=m&mvi=1&pl=22&lsparams=mh,mm,mn,ms,mv,mvi,pl&lsig=AG3C_xAwRgIhAPSwuYjp0siVhgs5mY8t7euc0IU84kmHTzVa8esK_kirAiEAzadrwXpX6zlhwj5RpnK2unRLGmzUR8YLPtndBE_WkYg%3D 6.99 MiB 7331306
A/r5---sn-4g5edn7y.googlevideo.com/videoplayback?expire=1621734039&ei=N16pYM2AD9nAsALcqYO4BA&ip=195.154.207.98&id=o-ALmQaGqh7EX9dBytqH5RgNfGCFzo_lVVAPa2s4Zs_ZuB&itag=18&source=youtube&requiressl=yes&vprv=1&mime=video%2Fmp4&ns=3Cg6V2pns1Sp-HYCN9QSVcgF&gir=yes&clen=6836118&ratebypass=yes&dur=76.602&lmt=1594735589512884&fexp=24001373,24007246&c=WEB_EMBEDDED_PLAYER&txp=1211222&n=uX3H7PUbzidK9g&sparams=expire%2Cei%2Cip%2Cid%2Citag%2Csource%2Crequiressl%2Cvprv%2Cmime%2Cns%2Cgir%2Cclen%2Cratebypass%2Cdur%2Clmt&sig=AOq0QJ8wRAIgKg1Io6PV5StNGPbAoFs7vM3eW_glb90aYSKdJaVaL0cCIB_eioTPB5huCffDi6yaRJWYe4ZnVh_a2WuiX99j3xaj&cpn=puqjhL4njSrdbXi-&cver=1.20210519.1.1&ptk=youtube_none&pltype=contentugc&redirect_counter=1&cm2rm=sn-25gkz76&req_id=c27c7e313798a3ee&cms_redirect=yes&mh=hL&mm=34&mn=sn-4g5edn7y&ms=ltu&mt=1621712198&mv=m&mvi=5&pl=22&lsparams=mh,mm,mn,ms,mv,mvi,pl&lsig=AG3C_xAwRQIhAPki_ID1bZJBTtkxyUaGKu9_xQ8vlIJb-wx7X19IGUIhAiAE1wxsK7J-V8JbgijdPuJdEaRzDuI9wlalkmKi15xjcA%3D%3D 6.52 MiB 6836118
A/r4---sn-25glen7e.gvt1.com/edgedl/chromewebstore/L2Nocm9tZV9leHRlbnNpb24vYmxvYnMvYjFkQUFWdmlaXy12MHFUTGhWQUViMUVlUQ/0.57.44.2492_hnimpnehoodheedghdeeijklkeaacbdc.crx?cms_redirect=yes&mh=2D&mip=195.154.207.98&mm=28&mn=sn-25glen7e&ms=nvh&mt=1621708931&mv=u&mvi=4&pl=22&shardbypass=yes 6.45 MiB 6760942
A/r1---sn-25glene6.googlevideo.com/videoplayback?expire=1621736583&ei=J2ipYLmiB8b2xgLop6b4BA&ip=195.154.207.98&id=o-AMw4oyEohW6JbGddKjoFDqjCNIhodVnFZVEKfmcZzETm&itag=18&source=youtube&requiressl=yes&mh=57&mm=31%2C26&mn=sn-25glene6%2Csn-h5q7kned&ms=au%2Conr&mv=m&mvi=1&pl=22&initcwndbps=320000&vprv=1&mime=video%2Fmp4&ns=J6pRlArZoUHFFQ0YEBfqx1UF&gir=yes&clen=5503217&ratebypass=yes&dur=61.648&lmt=1404633645299015&mt=1621714617&fvip=1&fexp=24001373%2C24007246&c=WEB_EMBEDDED_PLAYER&n=Td_QoDrIHeQf0Q&sparams=expire%2Cei%2Cip%2Cid%2Citag%2Csource%2Crequiressl%2Cvprv%2Cmime%2Cns%2Cgir%2Cclen%2Cratebypass%2Cdur%2Clmt&sig=AOq0QJ8wQwIfNcspWfDotfcwLSUSRWdPwCXNO0zlyFm9BOXONTJBAQIgIj1imSMwgmr8VDzKCgfhQLmKwLB3O77wtMBa-BEn1gU%3D&lsparams=mh%2Cmm%2Cmn%2Cms%2Cmv%2Cmvi%2Cpl%2Cinitcwndbps&lsig=AG3C_xAwRQIhALMOVHjhfxmJNBM1hHRlqPzgESwWY0QkSdQo2OkWdcE5AiBktFTU7l7WsD1S0DLUIT02rgDXz3uxk4-uYg3-jDbkIg%3D%3D&cpn=jWQgoCMiATv1f6LZ&cver=1.20210519.1.1&ptk=youtube_none&pltype=contentugc 5.25 MiB 5503217
A/r1---sn-4g5e6nes.googlevideo.com/videoplayback?expire=1621732977&ei=EVqpYIzLBd7VxN8PoOuMqAM&ip=195.154.207.98&id=o-ACX5TcBIc7ruag--M_muvGIh_tVR-vGD_BlHKBmJSAJl&itag=18&source=youtube&requiressl=yes&vprv=1&mime=video%2Fmp4&ns=OBylBFkMya-XV2jhEDXN8OEF&gir=yes&clen=5503217&ratebypass=yes&dur=61.648&lmt=1404633645299015&fexp=24001373,24007246&c=WEB_EMBEDDED_PLAYER&n=dIcqHa1F3GilAA&sparams=expire%2Cei%2Cip%2Cid%2Citag%2Csource%2Crequiressl%2Cvprv%2Cmime%2Cns%2Cgir%2Cclen%2Cratebypass%2Cdur%2Clmt&sig=AOq0QJ8wRAIgYyJY5wkLxfrIqAONqeAZb7moADKXYYHlOgyLqDbuL6cCIB6bD_FRaH-L2W4AFanzLvbHmTrnd1O8sDcmn5JDnJkX&cpn=oAPQxGwo8wNZ8NK_&cver=1.20210519.1.1&ptk=youtube_none&pltype=contentugc&redirect_counter=1&cm2rm=sn-25gk67e&req_id=fd69ef192459a3ee&cms_redirect=yes&mh=57&mm=34&mn=sn-4g5e6nes&ms=ltu&mt=1621711236&mv=m&mvi=1&pl=22&lsparams=mh,mm,mn,ms,mv,mvi,pl&lsig=AG3C_xAwRQIhAJlheKRRFVpJ4eJaQnY-HDE2Tkn6mqDiijAgLh2IIGKQAiAJ3hYfecs4vEwICPAr3NrTVgOupz-AHDhyIwuf3dwwEQ%3D%3D 5.25 MiB 5503217
A/r5---sn-4g5e6nz7.googlevideo.com/videoplayback?expire=1621732976&ei=EFqpYMHKK4_1xN8Pt_efeA&ip=195.154.207.98&id=o-ANobF4e1aA4CWEiA7w0U-Dqi6ATfRKGCn2EAGIVXCORz&itag=18&source=youtube&requiressl=yes&vprv=1&mime=video%2Fmp4&ns=fWBWRyCEumfzo-1Jzt7op1IF&gir=yes&clen=5501800&ratebypass=yes&dur=61.648&lmt=1404632258609712&fexp=24001373,24007246&c=WEB_EMBEDDED_PLAYER&n=0glfnMOuJSVfOQ&sparams=expire%2Cei%2Cip%2Cid%2Citag%2Csource%2Crequiressl%2Cvprv%2Cmime%2Cns%2Cgir%2Cclen%2Cratebypass%2Cdur%2Clmt&sig=AOq0QJ8wRQIhALevjopueBGfvJF9YOqoaeNizm093IMtd8kNpYhrzovdAiBLZrhmm3CNsMP4sCaEhjgZyRoSLaWj68NvnIY7k_a23Q%3D%3D&cpn=oAPQxGwo8wNZ8NK_&cver=1.20210519.1.1&ptk=youtube_none&pltype=contentugc&redirect_counter=1&cm2rm=sn-25g6r7d&req_id=11d74b447e0fa3ee&cms_redirect=yes&mh=j6&mm=34&mn=sn-4g5e6nz7&ms=ltu&mt=1621711236&mv=m&mvi=5&pl=22&lsparams=mh,mm,mn,ms,mv,mvi,pl&lsig=AG3C_xAwRQIhALl6xomJETaqq-IP0P8hLCrgtWJKo3YKQnOLqULnVnFnAiAKwO2SKnb8EQmrumF9U5u1PqPTBQ02Q2Ct_hCM5_Ovzw%3D%3D 5.25 MiB 5501800
A/r5---sn-4g5e6nz7.googlevideo.com/videoplayback?expire=1621736582&ei=JmipYI-QNre6xN8P_pKEaA&ip=195.154.207.98&id=o-AEbnDGqJqxAO42KwHbxhMzrz_rqLL_yMTI4PQKDmjnAO&itag=18&source=youtube&requiressl=yes&vprv=1&mime=video%2Fmp4&ns=TWZ1Zseg072-KmtPqWiRSJoF&gir=yes&clen=5501800&ratebypass=yes&dur=61.648&lmt=1404632258609712&fexp=24001373,24007246&c=WEB_EMBEDDED_PLAYER&n=dyjIaFnD0hi_Wg&sparams=expire%2Cei%2Cip%2Cid%2Citag%2Csource%2Crequiressl%2Cvprv%2Cmime%2Cns%2Cgir%2Cclen%2Cratebypass%2Cdur%2Clmt&sig=AOq0QJ8wRQIhAKatc8COHL9_h4GO8fJmpuzl5-A7JVtj2gnYFBZb9gBaAiB5dND9VDiDBjreY7B5lIP_QOxuobk7ddH-OXNNFZoHQA%3D%3D&cpn=jWQgoCMiATv1f6LZ&cver=1.20210519.1.1&ptk=youtube_none&pltype=contentugc&redirect_counter=1&cm2rm=sn-25gkr76&req_id=71e9a85f65a4a3ee&cms_redirect=yes&mh=j6&mm=34&mn=sn-4g5e6nz7&ms=ltu&mt=1621714838&mv=m&mvi=5&pl=22&lsparams=mh,mm,mn,ms,mv,mvi,pl&lsig=AG3C_xAwRQIhALSzRE71Unhiso_SkhiG9LGKI_ZVeE67uIiw39x38IfnAiBbmfcwFwthvVIrKIwEwD0P6SNljNFNJXbujtfuFhUMpA%3D%3D 5.25 MiB 5501800
A/r12---sn-4g5e6nzy.googlevideo.com/videoplayback?expire=1621733031&ei=R1qpYNayApP2xN8PhrqmkAE&ip=195.154.207.98&id=o-AIQaHDTQ4PgKbed184f2es18OuWZCiHHfmSmd-ISp24b&itag=18&source=youtube&requiressl=yes&vprv=1&mime=video%2Fmp4&ns=X_XWJopSdlIh0IlzrraS9FcF&gir=yes&clen=4194722&ratebypass=yes&dur=47.090&lmt=1371673351140183&fexp=24001373,24007246&c=WEB_EMBEDDED_PLAYER&n=LbYB8wFBvrhaaQ&sparams=expire%2Cei%2Cip%2Cid%2Citag%2Csource%2Crequiressl%2Cvprv%2Cmime%2Cns%2Cgir%2Cclen%2Cratebypass%2Cdur%2Clmt&sig=AOq0QJ8wRAIgMR_27W2M7U6zhbelcN_WqvXi7n83UUEB3CpRatfwj-wCIA9Ytd2rHPyTVlRhTNFOgoKrH6HWfFcTY7XgtJr5hvCO&cpn=x5TezRkAGwLcq-9_&cver=1.20210519.1.1&ptk=youtube_none&pltype=contentugc&redirect_counter=1&cm2rm=sn-25gd776&req_id=c504de423619a3ee&cms_redirect=yes&mh=1a&mm=34&mn=sn-4g5e6nzy&ms=ltu&mt=1621711236&mv=m&mvi=12&pl=22&lsparams=mh,mm,mn,ms,mv,mvi,pl&lsig=AG3C_xAwRgIhALr0rxbubQH1iPfMNnZsH3QKzrPHltPJChzRpckhNWfBAiEAymHsdbLaUJkph0LvGRKNgmG_NNuRsFb1NMVTX0mLZxI%3D 4 MiB 4194722
A/r5---sn-25glen7y.googlevideo.com/videoplayback?expire=1621736681&ei=iWipYOSSE_jUxN8Px-u2kAo&ip=195.154.207.98&id=o-ANje2O-k4xOn65_zYyMJyZAOdFHUc35Zf_Y51Tgb7kka&itag=18&source=youtube&requiressl=yes&mh=1a&mm=31%2C29&mn=sn-25glen7y%2Csn-25ge7nsk&ms=au%2Crdu&mv=m&mvi=5&pl=22&initcwndbps=351250&vprv=1&mime=video%2Fmp4&ns=bHn2qjuA2ObuMmIAtT6qyZwF&gir=yes&clen=4194722&ratebypass=yes&dur=47.090&lmt=1371673351140183&mt=1621714855&fvip=5&fexp=24001373%2C24007246&c=WEB_EMBEDDED_PLAYER&n=sp_L_KCeUJdiXA&sparams=expire%2Cei%2Cip%2Cid%2Citag%2Csource%2Crequiressl%2Cvprv%2Cmime%2Cns%2Cgir%2Cclen%2Cratebypass%2Cdur%2Clmt&sig=AOq0QJ8wRgIhAIiZW_haL0H435AGtS-gFHAh24A59a1yuxZqd1c77zNIAiEA4AixNv5Tk8un_QfPx-HpjmU2J0pOK9G7okN2V-ZvDsA%3D&lsparams=mh%2Cmm%2Cmn%2Cms%2Cmv%2Cmvi%2Cpl%2Cinitcwndbps&lsig=AG3C_xAwRQIhAJMgdmH7an-LtGSzG1-z2NHf9VmHZK0eU0G84eobwfY6AiAWxGbn9sXPnZmdDjlTRioJ15MziqboyluqNF-ae19Qbw%3D%3D&cpn=9nCTi1137NQ_GarL&cver=1.20210519.1.1&ptk=youtube_none&pltype=contentugc 4 MiB 4194722
A/r5---sn-25ge7nsd.googlevideo.com/videoplayback?expire=1621737969&ei=kW2pYOexEL_ZxN8PzLqV8AE&ip=195.154.207.98&id=o-AO1EfZ_AgpIXb2NWZt-AxEIN-VaHMFgpjg-C71SMcOPp&itag=18&source=youtube&requiressl=yes&mh=4s&mm=31%2C29&mn=sn-25ge7nsd%2Csn-25glen7l&ms=au%2Crdu&mv=m&mvi=5&pl=22&initcwndbps=337500&vprv=1&mime=video%2Fmp4&ns=fNbLPDQZxPrQHvVlN0tLWCkF&gir=yes&clen=4163408&ratebypass=yes&dur=49.667&lmt=1595634175589705&mt=1621716057&fvip=5&fexp=24001373%2C24007246&c=WEB_EMBEDDED_PLAYER&txp=1211222&n=JV-oHe2VgulJ6Q&sparams=expire%2Cei%2Cip%2Cid%2Citag%2Csource%2Crequiressl%2Cvprv%2Cmime%2Cns%2Cgir%2Cclen%2Cratebypass%2Cdur%2Clmt&sig=AOq0QJ8wRQIhAM5srMdm8sDkeqcijFS8rhjQ6FRZ-LTnVSO_WgfE6pOcAiBED0sVFmaWAlAAHC6eSTB8u_HaLzcynjIGYFRUb7wHFA%3D%3D&lsparams=mh%2Cmm%2Cmn%2Cms%2Cmv%2Cmvi%2Cpl%2Cinitcwndbps&lsig=AG3C_xAwRQIgXzSzhmjFKOiS3-rrDedJHzlu_N0aSk0A7hVHW0_3YgwCIQDqLVXaRV-ppuZcQ4ajZotFRuldZF7-EilXZnEawSC8ng%3D%3D&cpn=gFiSxcQ4pEE0a-n8&cver=1.20210519.1.1&ptk=youtube_none&pltype=contentugc 3.97 MiB 4163408
A/r5---sn-4g5edn7y.googlevideo.com/videoplayback?expire=1621733573&ei=ZVypYPi4DKbYxN8Pzey3-A0&ip=195.154.207.98&id=o-AKeHQxK_tz0BgLX6LohY41leKfFgP9DQAxiOgF6gNc9w&itag=18&source=youtube&requiressl=yes&vprv=1&mime=video%2Fmp4&ns=gGYip8i_4BZ0f8jQoIR8P4cF&gir=yes&clen=4163408&ratebypass=yes&dur=49.667&lmt=1595634175589705&fexp=24001373,24007246&c=WEB_EMBEDDED_PLAYER&txp=1211222&n=rhS34xSGQ9WMzg&sparams=expire%2Cei%2Cip%2Cid%2Citag%2Csource%2Crequiressl%2Cvprv%2Cmime%2Cns%2Cgir%2Cclen%2Cratebypass%2Cdur%2Clmt&sig=AOq0QJ8wRQIhANPrm80rawHnl8bz-hDCL1qEXA9MV_4I7T4YAKAKYEMzAiB6Iba1luYFnED7s6jg_Uvkip6uN-S8N9vKSSwh8I81vg%3D%3D&cpn=zYk1n3RKByqsCyjs&cver=1.20210519.1.1&ptk=youtube_none&pltype=contentugc&redirect_counter=1&cm2rm=sn-25gkd76&req_id=b4711a7f8c2ca3ee&cms_redirect=yes&mh=4s&mm=34&mn=sn-4g5edn7y&ms=ltu&mt=1621711716&mv=m&mvi=5&pl=22&lsparams=mh,mm,mn,ms,mv,mvi,pl&lsig=AG3C_xAwRgIhAI8SjRgkrKqI4oGVWp8p-nMoIAgpehG9v8Do3s7FtgPnAiEAy-GXwQ9tIOkBKh-dGQewgFXYiOoGzTIEOKNzhOzC5dg%3D 3.97 MiB 4163408
A/r6---sn-4g5e6nez.googlevideo.com/videoplayback?expire=1621734183&ei=x16pYMSoJZCOxN8Ph6KVgAs&ip=195.154.207.98&id=o-ADVpY3zAzJZEzGzmWH2jyk5EQqtB1B0Jj0YDcjp8u1x_&itag=18&source=youtube&requiressl=yes&vprv=1&mime=video%2Fmp4&ns=lp6rqBsAfLG6e7UAEdKJ7C4F&gir=yes&clen=3852813&ratebypass=yes&dur=43.258&lmt=1370713019174544&fexp=24001373,24007246&c=WEB_EMBEDDED_PLAYER&n=thf8pFB0MtWiPA&sparams=expire%2Cei%2Cip%2Cid%2Citag%2Csource%2Crequiressl%2Cvprv%2Cmime%2Cns%2Cgir%2Cclen%2Cratebypass%2Cdur%2Clmt&sig=AOq0QJ8wRQIhAOhBScTEB8oZQuCyaNA-3-Fmi2lZhJjbXMN1yS0kl5C1AiAefxJ6pmngpj-rL_LSiUrpgOZN7aNwvu_KbYRp9WTt9w%3D%3D&cpn=zcD5AC0n-R_j6waZ&cver=1.20210519.1.1&ptk=youtube_none&pltype=contentugc&redirect_counter=1&cm2rm=sn-25g6r7d&req_id=2ebdd998c098a3ee&cms_redirect=yes&mh=Iv&mm=34&mn=sn-4g5e6nez&ms=ltu&mt=1621712436&mv=m&mvi=6&pl=22&lsparams=mh,mm,mn,ms,mv,mvi,pl&lsig=AG3C_xAwRQIhAJZ_iu8oNRj8KSqRgaBBHqK4SFsR843kwFfBULOzv3snAiBEGbNqhiY4KPY9bQkny-8cynqXp9m6AWsRrAwsMhMPJw%3D%3D 3.67 MiB 3852813
A/r5---sn-25glenez.googlevideo.com/videoplayback?expire=1621736637&ei=XWipYPPjKuPWxN8P-6Oq0Ao&ip=195.154.207.98&id=o-ANjBJlDrkGSWW8FPlcX-5Wpu0NUQWuot8Tsmk2Nu1Nkc&itag=18&source=youtube&requiressl=yes&mh=J0&mm=31%2C29&mn=sn-25glenez%2Csn-25ge7nsd&ms=au%2Crdu&mv=m&mvi=5&pl=22&initcwndbps=386250&vprv=1&mime=video%2Fmp4&ns=x42aoEu6bbgE4xjcQlce-YAF&gir=yes&clen=3833629&ratebypass=yes&dur=59.698&lmt=1404629186408182&mt=1621714855&fvip=5&fexp=24001373%2C24007246&c=WEB_EMBEDDED_PLAYER&n=w6LprFIRYRBSug&sparams=expire%2Cei%2Cip%2Cid%2Citag%2Csource%2Crequiressl%2Cvprv%2Cmime%2Cns%2Cgir%2Cclen%2Cratebypass%2Cdur%2Clmt&sig=AOq0QJ8wRQIhAJF4tkt5L-OgZppPaKPvfxzwGauhNORyxuW-CBvYDLI-AiBdmBxY25bqtp2drsq06ZblzxsbuoO5rlO-r5ymuzq8UA%3D%3D&lsparams=mh%2Cmm%2Cmn%2Cms%2Cmv%2Cmvi%2Cpl%2Cinitcwndbps&lsig=AG3C_xAwQwIfddY27hxNfFuua6soYTNpV7G7dCR5icbho3Ofa_m02QIgQz8eIV_G5VPqc4l5eNAQ5w8PvBpJZ4mu3AE3LyDLGEg%3D&cpn=sPVtqNB7KTt3Nr-a&cver=1.20210519.1.1&ptk=youtube_none&pltype=contentugc 3.66 MiB 3833629
A/r5---sn-4g5e6nsz.googlevideo.com/videoplayback?expire=1621733007&ei=L1qpYNiWF9PpxN8PhtOr-A0&ip=195.154.207.98&id=o-AOjDZszvP6Ycb6M5sZ4QlxJ9WxX2eFKb0x2Cypx7M8wA&itag=18&source=youtube&requiressl=yes&vprv=1&mime=video%2Fmp4&ns=f0DGvvxFUb8rmynbGYRDTjsF&gir=yes&clen=3833629&ratebypass=yes&dur=59.698&lmt=1404629186408182&fexp=24001373,24007246&c=WEB_EMBEDDED_PLAYER&n=fexc9qnGuPyUQA&sparams=expire%2Cei%2Cip%2Cid%2Citag%2Csource%2Crequiressl%2Cvprv%2Cmime%2Cns%2Cgir%2Cclen%2Cratebypass%2Cdur%2Clmt&sig=AOq0QJ8wRAIgTXWGARb2NfO_TB2fhyNh8DBc6h05yx3tl8vil7PqS-8CIF_tAEPCM4-QfcSAIXC61sV5fXlxLO9Jg1-iJypbCBVg&cpn=C2lQgLiHTkWmA5wh&cver=1.20210519.1.1&ptk=youtube_none&pltype=contentugc&redirect_counter=1&cm2rm=sn-25gkz76&req_id=7b8220a7e4eba3ee&cms_redirect=yes&mh=J0&mm=34&mn=sn-4g5e6nsz&ms=ltu&mt=1621711236&mv=m&mvi=5&pl=22&lsparams=mh,mm,mn,ms,mv,mvi,pl&lsig=AG3C_xAwRQIgJ77sXm5Gw5EH97cxA4PKRYF8ML8jQtV0Wr_L1LX46wICIQDeNEEsB0V54j6uktjttMOWZbmU3uWCoAJy8sJUO8IvhQ%3D%3D 3.66 MiB 3833629
A/r1---sn-4g5ednly.googlevideo.com/videoplayback?expire=1621733958&ei=5l2pYPaYJ-CexN8Pp9Cw4As&ip=195.154.207.98&id=o-AKvaudkhojgZpD_L6oPXPNVM-38oY9CD-8SWW6rD5yFQ&itag=18&source=youtube&requiressl=yes&vprv=1&mime=video%2Fmp4&ns=USDiz8aqTM-cHrloQSpF2fkF&gir=yes&clen=3775555&ratebypass=yes&dur=46.230&lmt=1360602051739458&fexp=24001373,24007246&c=WEB_EMBEDDED_PLAYER&n=P5qvUxHYbvo6gQ&sparams=expire%2Cei%2Cip%2Cid%2Citag%2Csource%2Crequiressl%2Cvprv%2Cmime%2Cns%2Cgir%2Cclen%2Cratebypass%2Cdur%2Clmt&sig=AOq0QJ8wRAIgAh3BQtkBxYFoxExXLGSrXLRTm1EATW8FJWnCIarfbikCIDCTQNj0ZFvCsAOqd8At6IY2iipRmI5mPPVkZ13LHWEK&cpn=St-Ngfim37pxEV2n&cver=1.20210519.1.1&ptk=youtube_none&pltype=contentugc&redirect_counter=1&cm2rm=sn-25g6k7e&req_id=be2b43de7cb9a3ee&cms_redirect=yes&mh=wZ&mm=34&mn=sn-4g5ednly&ms=ltu&mt=1621712198&mv=m&mvi=1&pl=22&lsparams=mh,mm,mn,ms,mv,mvi,pl&lsig=AG3C_xAwRAIgEDcz0jwwLblwrggrKbOayRRk3PsHCC084ksaMJydbXsCID599vLiMy63Zhygdebeo0qJMbgTre3gbRvt81e4BmZX 3.6 MiB 3775555
A/r5---sn-25glenez.googlevideo.com/videoplayback?expire=1621737968&ei=kG2pYNelOZGsxN8P1OaDwAc&ip=195.154.207.98&id=o-AMSKXlQ54z3mAYRVtMUHWTr_7vR8qIa_iC9AeIA_SwKD&itag=18&source=youtube&requiressl=yes&mh=-q&mm=31%2C29&mn=sn-25glenez%2Csn-25ge7nse&ms=au%2Crdu&mv=m&mvi=5&pl=22&initcwndbps=337500&vprv=1&mime=video%2Fmp4&ns=jR5rd5SXEl7bwVQrO8ZU-7AF&gir=yes&clen=3634234&ratebypass=yes&dur=41.888&lmt=1593598469685473&mt=1621716057&fvip=5&fexp=24001373%2C24007246&c=WEB_EMBEDDED_PLAYER&txp=1211222&n=PJx1Uy6hhszm8A&sparams=expire%2Cei%2Cip%2Cid%2Citag%2Csource%2Crequiressl%2Cvprv%2Cmime%2Cns%2Cgir%2Cclen%2Cratebypass%2Cdur%2Clmt&sig=AOq0QJ8wRQIgE_4EhimQIul6oot1-REezutU52jajtiy1vC2_6avugwCIQDSBEa1uGvzxCDzG8qX1K2gph6nWb_Aextt_7SFbQdvGg%3D%3D&lsparams=mh%2Cmm%2Cmn%2Cms%2Cmv%2Cmvi%2Cpl%2Cinitcwndbps&lsig=AG3C_xAwRQIhAILGAsN70ibM7eDezCrk98YN3lrCMs3QsTrJSIb7yNBVAiAxk3oQ6KvdQCJcDoygl8KHmdHhtt0BXfgn_0C7BitimQ%3D%3D&cpn=gFiSxcQ4pEE0a-n8&cver=1.20210519.1.1&ptk=youtube_none&pltype=contentugc 3.47 MiB 3634234
A/r5---sn-4g5edns7.googlevideo.com/videoplayback?expire=1621733572&ei=ZFypYOTFN7b2xN8PhOGc6AQ&ip=195.154.207.98&id=o-AKhXoaBcHfxJki7n5dPtGWGzvVhhqf1pQfYgnuqomJ0A&itag=18&source=youtube&requiressl=yes&vprv=1&mime=video%2Fmp4&ns=oT7KhqzFxLsIx1ASgALms7cF&gir=yes&clen=3634234&ratebypass=yes&dur=41.888&lmt=1593598469685473&fexp=24001373,24007246&c=WEB_EMBEDDED_PLAYER&txp=1211222&n=vArMUOZbmAi9SA&sparams=expire%2Cei%2Cip%2Cid%2Citag%2Csource%2Crequiressl%2Cvprv%2Cmime%2Cns%2Cgir%2Cclen%2Cratebypass%2Cdur%2Clmt&sig=AOq0QJ8wRgIhAJiXmQOuxK9DEjkbsetjYaaC5XCOzpx-rhKuw97tBdkoAiEA5df0pLcCXElwb0tK0rTk-HQVN8v08hm3-Oip1opXYQo%3D&cpn=zYk1n3RKByqsCyjs&cver=1.20210519.1.1&ptk=youtube_none&pltype=contentugc&redirect_counter=1&cm2rm=sn-25gkz76&req_id=44889d44a259a3ee&cms_redirect=yes&mh=-q&mm=34&mn=sn-4g5edns7&ms=ltu&mt=1621711716&mv=m&mvi=5&pl=22&lsparams=mh,mm,mn,ms,mv,mvi,pl&lsig=AG3C_xAwRgIhAKdj84DWwLCQYJRMoemhw_nIsWn5uKLhgMwSiJAuG68DAiEAyaQ4VH1e2e7ESL7k1-JS9eESXD3F5hWW5MEcqcObQfQ%3D 3.47 MiB 3634234
A/r3---sn-4g5edns6.googlevideo.com/videoplayback?expire=1621736154&ei=emapYJC_FuLTxgK-toqwCA&ip=195.154.207.98&id=o-AGhvMOCf2UVvNUelFewbY69KCfeojbWD-Y5dZwDYmxuM&itag=18&source=youtube&requiressl=yes&vprv=1&mime=video%2Fmp4&ns=Fh9CmDNoywJ3uktRnr0ZjPUF&gir=yes&clen=3361803&ratebypass=yes&dur=37.709&lmt=1369177672083143&fexp=24001373,24007246&c=WEB_EMBEDDED_PLAYER&n=yWH4OfbvN7oypA&sparams=expire%2Cei%2Cip%2Cid%2Citag%2Csource%2Crequiressl%2Cvprv%2Cmime%2Cns%2Cgir%2Cclen%2Cratebypass%2Cdur%2Clmt&sig=AOq0QJ8wRAIgfP8Gt_4CwLcmqixhiLzh3yu3vm_Jb-U9CjxBHiEMl6UCICeWEEX4ncKMQnqsRDlwo-zKh23Klwi0lWbG-rEMt7oY&cpn=RvCekNp5Icbdiz3l&cver=1.20210519.1.1&ptk=youtube_single&oid=U3drvmRaynRbtANDbo8t-Q&pltype=contentugc&redirect_counter=1&cm2rm=sn-25gdl7s&req_id=8d463306490ba3ee&cms_redirect=yes&mh=hF&mm=34&mn=sn-4g5edns6&ms=ltu&mt=1621714241&mv=u&mvi=3&pl=22&lsparams=mh,mm,mn,ms,mv,mvi,pl&lsig=AG3C_xAwRQIhANAt80dtPCusOCqEyDR-xe2crRsVRbDBz4w8kCZaUREIAiA4KJKzQAJdIMTyg1uB28CGkkTcf_Rw7ETnkmSj4bTC6A%3D%3D 3.21 MiB 3361803
A/r3---sn-4g5ednsr.googlevideo.com/videoplayback?expire=1621734660&ei=pGCpYLLII4HZxN8Po6yoiAI&ip=195.154.207.98&id=o-ABFeCVzdJcOp8Gc8o-UwG8y7Kr8rRiIyQ3RkhQnxFRMs&itag=18&source=youtube&requiressl=yes&vprv=1&mime=video%2Fmp4&ns=_QzoIigZdYff9U9aoF_YBhYF&gir=yes&clen=3041143&ratebypass=yes&dur=34.156&lmt=1370290190834200&fexp=24001373,24007246&c=WEB_EMBEDDED_PLAYER&n=Rs1QvCbKwDiedQ&sparams=expire%2Cei%2Cip%2Cid%2Citag%2Csource%2Crequiressl%2Cvprv%2Cmime%2Cns%2Cgir%2Cclen%2Cratebypass%2Cdur%2Clmt&sig=AOq0QJ8wRQIhAJx1LAWezwaDxlQFGp-EJDVavBhMyIarCDViLZoHY4YXAiA2DaZkZoiHbGUayFvQxcgnaCYAgXT24w82-24c493aYA%3D%3D&cpn=RxjQtLMKixzUpSKe&cver=1.20210519.1.1&ptk=youtube_none&pltype=contentugc&redirect_counter=1&cm2rm=sn-25gks7s&req_id=4d466f215690a3ee&cms_redirect=yes&mh=hP&mm=34&mn=sn-4g5ednsr&ms=ltu&mt=1621712916&mv=m&mvi=3&pl=22&lsparams=mh,mm,mn,ms,mv,mvi,pl&lsig=AG3C_xAwRQIgATjkvlIv7-rI1QQxrJCaLXfqKTDCzxk0SvayK3adhUYCIQCH8i8mTZtPmC3S2jyIuUf_zjmrLKdUeZvcREbgxQjUPQ%3D%3D 2.9 MiB 3041143
A/r1---sn-4g5edns6.googlevideo.com/videoplayback?expire=1621733391&ei=r1upYLqPMJqOxN8Pr9WJyAQ&ip=195.154.207.98&id=o-ANuv9RmIH8xfsJEiq4_3qRS5Rd5cXgNgBaTaysc6ysYN&itag=18&source=youtube&requiressl=yes&vprv=1&mime=video%2Fmp4&ns=1xsaZudfToH_LpHNVGSkp_EF&gir=yes&clen=2877598&ratebypass=yes&dur=37.244&lmt=1370290244106668&fexp=24001373,24007246&c=WEB_EMBEDDED_PLAYER&n=ihEbtFwOOlhsow&sparams=expire%2Cei%2Cip%2Cid%2Citag%2Csource%2Crequiressl%2Cvprv%2Cmime%2Cns%2Cgir%2Cclen%2Cratebypass%2Cdur%2Clmt&sig=AOq0QJ8wRQIgEItsYITulSCNQ_ZdllPQXIW9Jcj9Jhdm5c5xO5TOsN4CIQC9fTUJj2LS7SYTGMv4AnNGMJ5yCef-ZXq9HdVu4kkT5Q%3D%3D&cpn=yjJtWrCcDcf8lLBI&cver=1.20210519.1.1&ptk=youtube_none&pltype=contentugc&redirect_counter=1&cm2rm=sn-25gd77e&req_id=9d10634e335a3ee&cms_redirect=yes&mh=Ez&mm=34&mn=sn-4g5edns6&ms=ltu&mt=1621711716&mv=m&mvi=1&pl=22&lsparams=mh,mm,mn,ms,mv,mvi,pl&lsig=AG3C_xAwRgIhANv9uSobgOZc5C3ewDOvswO-LgdZE3a5uacFQEmckW9pAiEA35yz3Okpef7KqqskHe52LONmnCXch5qkLLXkbkaqc-c%3D 2.74 MiB 2877598
A/r1---sn-4g5edns6.googlevideo.com/videoplayback?expire=1621737326&ei=DmupYKTAKsagxN8Pn9OtyAQ&ip=195.154.207.98&id=o-ALHylvHbsZazvDnXqVU_3SxH3yqhTkk6PRHWZkTCPxre&itag=18&source=youtube&requiressl=yes&vprv=1&mime=video%2Fmp4&ns=-mcFp2U0-K0h8VkpJtKp8FMF&gir=yes&clen=2877598&ratebypass=yes&dur=37.244&lmt=1370290244106668&fexp=24001373,24007246&c=WEB_EMBEDDED_PLAYER&n=ccmQN1AccvJZ-A&sparams=expire%2Cei%2Cip%2Cid%2Citag%2Csource%2Crequiressl%2Cvprv%2Cmime%2Cns%2Cgir%2Cclen%2Cratebypass%2Cdur%2Clmt&sig=AOq0QJ8wRQIgTEknSPz7ZcIhdrd7g7K9Vy6nZ-WxvwZjNX5jQmZjJmoCIQDp6VOEywSebzHImZ_a6dzZl9dr1XZ2nryV2XlCcG0vZg%3D%3D&cpn=VtqNB7KTt3Nr-afJ&cver=1.20210519.1.1&ptk=youtube_none&pltype=contentugc&redirect_counter=1&cm2rm=sn-25gkd7z&req_id=e26ef7cebe50a3ee&cms_redirect=yes&mh=Ez&mm=34&mn=sn-4g5edns6&ms=ltu&mt=1621715002&mv=u&mvi=1&pl=22&lsparams=mh,mm,mn,ms,mv,mvi,pl&lsig=AG3C_xAwRgIhAOkhiUor07ddTiCcNkJqLQenDWsvJj1fgoK8vsmjbdf4AiEAjE61zwf6mKyrMeWwQj5-v1JJGHgRWEsVkjV6PEn0qDQ%3D 2.74 MiB 2877598
A/r5---sn-4g5e6nzs.googlevideo.com/videoplayback?expire=1621733718&ei=9lypYMKQEo6oW7ugiPAF&ip=195.154.207.98&id=o-AGay6nGs8ouF4djPKngobPf5nSi14QVtJFAGlhiraGwr&itag=18&source=youtube&requiressl=yes&vprv=1&mime=video%2Fmp4&ns=91_MJjP47z6qoK5W_BK8v0oF&gir=yes&clen=2782378&ratebypass=yes&dur=43.560&lmt=1369554568336748&fexp=24001373,24007246&c=WEB_EMBEDDED_PLAYER&n=oF2RLWlsEGvr3A&sparams=expire%2Cei%2Cip%2Cid%2Citag%2Csource%2Crequiressl%2Cvprv%2Cmime%2Cns%2Cgir%2Cclen%2Cratebypass%2Cdur%2Clmt&sig=AOq0QJ8wRQIgbNzrobJhMqcx2crow7iIT2enkf6V4Dkpa_4nAomUMPQCIQDqy0X_FOVPBlMeO3268xyxvTlExVxJZM5MJ8-YKuhJNw%3D%3D&cpn=7RvCekNp5Icbdiz3&cver=1.20210519.1.1&ptk=youtube_none&pltype=contentugc&redirect_counter=1&cm2rm=sn-25gks7l&req_id=6db765373c38a3ee&cms_redirect=yes&mh=dn&mm=34&mn=sn-4g5e6nzs&ms=ltu&mt=1621712014&mv=u&mvi=2&pl=22&lsparams=mh,mm,mn,ms,mv,mvi,pl&lsig=AG3C_xAwRAIgWDPLsrIoTAVLWF6NS6RAUKP1eA3Syd5CwvYhGjK_0tkCICpp7RsvSQjVwls282W8dsQcMVAAqF_YsSAm2bIKed30&ir=1&rr=12 2.65 MiB 2782378
A/r3---sn-4g5ednle.googlevideo.com/videoplayback?expire=1621733718&ei=9VypYLjIO5SuxN8P4tyIwAQ&ip=195.154.207.98&id=o-AE0Tl8pZy34ClKqe1wAv3wf6AlRstXovnz9wUIr5mVR5&itag=18&source=youtube&requiressl=yes&vprv=1&mime=video%2Fmp4&ns=xLrvgPC2yVaB87igSwsBrRMF&gir=yes&clen=2548416&ratebypass=yes&dur=39.148&lmt=1369554527125133&fexp=24001373,24007246&c=WEB_EMBEDDED_PLAYER&n=2qgZDlGJ32NgKQ&sparams=expire%2Cei%2Cip%2Cid%2Citag%2Csource%2Crequiressl%2Cvprv%2Cmime%2Cns%2Cgir%2Cclen%2Cratebypass%2Cdur%2Clmt&sig=AOq0QJ8wRgIhAKqjbAhKGPBuLDBJtg2BudU3lLjGXgEB9YNOdIXBwcGKAiEA_OOAZH5IwTwWT9VQxmPK-v_aHeOxcHpa2ltX2AQXacg%3D&cpn=7RvCekNp5Icbdiz3&cver=1.20210519.1.1&ptk=youtube_none&pltype=contentugc&redirect_counter=1&cm2rm=sn-25g6y7s&req_id=94474e96f37ea3ee&cms_redirect=yes&mh=9G&mm=34&mn=sn-4g5ednle&ms=ltu&mt=1621712014&mv=u&mvi=3&pl=22&lsparams=mh,mm,mn,ms,mv,mvi,pl&lsig=AG3C_xAwQgIeCXuWDUBZu-0wJS8wVU4f8dcmKlPcpzs_PuiS624uAiBkXv7xsUrhhty2esybYi5KJGDaYkQ5-QhrkzdBvDpU-Q%3D%3D 2.43 MiB 2548416
A/r2---sn-4g5ednsy.googlevideo.com/videoplayback?expire=1621736347&ei=O2epYJzfLJmzxN8Pvt6AcA&ip=195.154.207.98&id=o-AByR46RMb9gc2sDdnceN34C6Gsg1xdUX6wouacB5TPN-&itag=18&source=youtube&requiressl=yes&vprv=1&mime=video%2Fmp4&ns=RsS9FkkJz4ZyKysX1DL3D7QF&gir=yes&clen=2507593&ratebypass=yes&dur=29.953&lmt=1393792464632611&fexp=24001373,24007246&c=WEB_EMBEDDED_PLAYER&n=qa_d8P-5VjlU-g&sparams=expire%2Cei%2Cip%2Cid%2Citag%2Csource%2Crequiressl%2Cvprv%2Cmime%2Cns%2Cgir%2Cclen%2Cratebypass%2Cdur%2Clmt&sig=AOq0QJ8wRAIgaqCP6x7u1sJCgEdL8UyycOsM055R1nOfHkCyez6SMoICIAQbn01grxGo3gDb6sHxEleeEirUYm0l5Ao4jjeDLnNO&cpn=ZoxLVrJc49nCTi11&cver=1.20210519.1.1&ptk=youtube_none&pltype=contentugc&redirect_counter=1&cm2rm=sn-25gde7l&req_id=e779b26ab2f1a3ee&cms_redirect=yes&mh=QM&mm=34&mn=sn-4g5ednsy&ms=ltu&mt=1621714241&mv=u&mvi=2&pl=22&lsparams=mh,mm,mn,ms,mv,mvi,pl&lsig=AG3C_xAwRQIgRvXTL8gHhWw5SQ0HhmYPt2ZJoBbNZTk0ZaDYZ3vQpMICIQCPOfBKAmWfpDoco1iQKDbg-JFWCwny4GC6i1qZJrgtGg%3D%3D 2.39 MiB 2507593
A/r3---sn-4g5ednz7.googlevideo.com/videoplayback?expire=1621733795&ei=Q12pYNWwH-joxN8P9qWruAE&ip=195.154.207.98&id=o-AOg930H4bZpmpAAXyy2KI03HNZr_HPLWDxWsMgv44iZE&itag=18&source=youtube&requiressl=yes&vprv=1&mime=video%2Fmp4&ns=6Vkuo--WAu2tYFY2v4Z23MIF&gir=yes&clen=2456762&ratebypass=yes&dur=27.631&lmt=1370700579464706&fexp=24001373,24007246&c=WEB_EMBEDDED_PLAYER&n=-O6xdaNrWI0Dmw&sparams=expire%2Cei%2Cip%2Cid%2Citag%2Csource%2Crequiressl%2Cvprv%2Cmime%2Cns%2Cgir%2Cclen%2Cratebypass%2Cdur%2Clmt&sig=AOq0QJ8wRgIhAJHyODh0SQESKZIMUYrfaPXHNBHSv3B56hWgXer63dtLAiEA4DB_H9YyamRTKyhZhvXaMWxJtfeFRqXj_ysxHil8z9M%3D&cpn=VHphHakLII_e4NIe&cver=1.20210519.1.1&ptk=youtube_none&pltype=contentugc&fallback_count=1&redirect_counter=1&cm2rm=sn-4g5ezs7s&req_id=2c659fe0fa0ba3ee&cms_redirect=yes&mh=xW&mm=34&mn=sn-4g5ednz7&ms=ltu&mt=1621712014&mv=u&mvi=3&pl=22&lsparams=mh,mm,mn,ms,mv,mvi,pl&lsig=AG3C_xAwRQIgcWjlVFPXHnUJgQzHw557sz3TtVMSsgUiH9tU47FzLNcCIQDamH7bOy-gCYdGX9uURQNbp5R129o4laIIw9B223hD3w%3D%3D 2.34 MiB 2456762
A/r3---sn-4g5ednz7.googlevideo.com/videoplayback?expire=1621733795&ei=Q12pYNWwH-joxN8P9qWruAE&ip=195.154.207.98&id=o-AOg930H4bZpmpAAXyy2KI03HNZr_HPLWDxWsMgv44iZE&itag=18&source=youtube&requiressl=yes&vprv=1&mime=video%2Fmp4&ns=6Vkuo--WAu2tYFY2v4Z23MIF&gir=yes&clen=2456762&ratebypass=yes&dur=27.631&lmt=1370700579464706&fexp=24001373,24007246&c=WEB_EMBEDDED_PLAYER&n=-O6xdaNrWI0Dmw&sparams=expire%2Cei%2Cip%2Cid%2Citag%2Csource%2Crequiressl%2Cvprv%2Cmime%2Cns%2Cgir%2Cclen%2Cratebypass%2Cdur%2Clmt&sig=AOq0QJ8wRgIhAJHyODh0SQESKZIMUYrfaPXHNBHSv3B56hWgXer63dtLAiEA4DB_H9YyamRTKyhZhvXaMWxJtfeFRqXj_ysxHil8z9M%3D&cpn=VHphHakLII_e4NIe&cver=1.20210519.1.1&ptk=youtube_none&pltype=contentugc&fallback_count=1&redirect_counter=1&cm2rm=sn-4g5ezs7s&req_id=a2c26866ca1aa3ee&cms_redirect=yes&mh=xW&mm=34&mn=sn-4g5ednz7&ms=ltu&mt=1621712014&mv=u&mvi=3&pl=22&lsparams=mh,mm,mn,ms,mv,mvi,pl&lsig=AG3C_xAwRgIhAIVlqCLa15DYQ2_fDVe9dWnnvAp2dmy-0IPZDg4w8JeRAiEA3kVTfJHt5eNkKoddTVVWWIVxgGCbLv2gV2ywKaZFpTc%3D 2.34 MiB 2456762
A/r3---sn-4g5ednz7.googlevideo.com/videoplayback?expire=1621733795&ei=Q12pYNWwH-joxN8P9qWruAE&ip=195.154.207.98&id=o-AOg930H4bZpmpAAXyy2KI03HNZr_HPLWDxWsMgv44iZE&itag=18&source=youtube&requiressl=yes&vprv=1&mime=video%2Fmp4&ns=6Vkuo--WAu2tYFY2v4Z23MIF&gir=yes&clen=2456762&ratebypass=yes&dur=27.631&lmt=1370700579464706&fexp=24001373,24007246&c=WEB_EMBEDDED_PLAYER&n=-O6xdaNrWI0Dmw&sparams=expire%2Cei%2Cip%2Cid%2Citag%2Csource%2Crequiressl%2Cvprv%2Cmime%2Cns%2Cgir%2Cclen%2Cratebypass%2Cdur%2Clmt&sig=AOq0QJ8wRgIhAJHyODh0SQESKZIMUYrfaPXHNBHSv3B56hWgXer63dtLAiEA4DB_H9YyamRTKyhZhvXaMWxJtfeFRqXj_ysxHil8z9M%3D&cpn=VHphHakLII_e4NIe&cver=1.20210519.1.1&ptk=youtube_none&pltype=contentugc&fallback_count=1&redirect_counter=1&cm2rm=sn-4g5ezs7s&req_id=a7b032ab786ba3ee&cms_redirect=yes&mh=xW&mm=34&mn=sn-4g5ednz7&ms=ltu&mt=1621712014&mv=u&mvi=3&pl=22&lsparams=mh,mm,mn,ms,mv,mvi,pl&lsig=AG3C_xAwRAIgSpyb8P7V-gjZDwyZb0gL2qEGY-tuSp-wDDjp-Vx6-KoCIBlqVzuvD4VUY_0Erie76WhyFTnDQbwkifvo30Zmzs_c 2.34 MiB 2456762
A/r3---sn-4g5ednz7.googlevideo.com/videoplayback?expire=1621733795&ei=Q12pYNWwH-joxN8P9qWruAE&ip=195.154.207.98&id=o-AOg930H4bZpmpAAXyy2KI03HNZr_HPLWDxWsMgv44iZE&itag=18&source=youtube&requiressl=yes&vprv=1&mime=video%2Fmp4&ns=6Vkuo--WAu2tYFY2v4Z23MIF&gir=yes&clen=2456762&ratebypass=yes&dur=27.631&lmt=1370700579464706&fexp=24001373,24007246&c=WEB_EMBEDDED_PLAYER&n=-O6xdaNrWI0Dmw&sparams=expire%2Cei%2Cip%2Cid%2Citag%2Csource%2Crequiressl%2Cvprv%2Cmime%2Cns%2Cgir%2Cclen%2Cratebypass%2Cdur%2Clmt&sig=AOq0QJ8wRgIhAJHyODh0SQESKZIMUYrfaPXHNBHSv3B56hWgXer63dtLAiEA4DB_H9YyamRTKyhZhvXaMWxJtfeFRqXj_ysxHil8z9M%3D&cpn=VHphHakLII_e4NIe&cver=1.20210519.1.1&ptk=youtube_none&pltype=contentugc&redirect_counter=1&cm2rm=sn-25gkz7s&req_id=69b8785b0ce2a3ee&cms_redirect=yes&mh=xW&mm=34&mn=sn-4g5ednz7&ms=ltu&mt=1621712014&mv=u&mvi=3&pl=22&lsparams=mh,mm,mn,ms,mv,mvi,pl&lsig=AG3C_xAwRQIgO_qSki1QB1XApdK6GCVzLb1_gcFz3XxOG-NcrrLtfdQCIQDVJDvF4o03s_Q7ukIY-_diyvBlH-Y5eh9PpYtiJaLriQ%3D%3D 2.34 MiB 2456762
A/r3---sn-4g5ednz7.googlevideo.com/videoplayback?expire=1621736192&ei=oGapYPaPHo_2xN8PrPq3EA&ip=195.154.207.98&id=o-AL-TB56FTvOMGAiJw-5qrGXfNngIJby_KHyemoZU9cyI&itag=18&source=youtube&requiressl=yes&vprv=1&mime=video%2Fmp4&ns=AYBdphdCoZz65rLn_k_E_MgF&gir=yes&clen=2338488&ratebypass=yes&dur=28.908&lmt=1368338696651552&fexp=24001373,24007246&c=WEB_EMBEDDED_PLAYER&n=7S1oBr-Ekknzow&sparams=expire%2Cei%2Cip%2Cid%2Citag%2Csource%2Crequiressl%2Cvprv%2Cmime%2Cns%2Cgir%2Cclen%2Cratebypass%2Cdur%2Clmt&sig=AOq0QJ8wRQIgFqZNf9cKF-1h2_kD-jxch0pmBViiN0BpxHsM-6IOYLoCIQCktB49sxGN6HROC4iyOKyzm6xoyuy0krBZCVWIqkCXBw%3D%3D&cpn=WZBPtSM_E55C_G2L&cver=1.20210519.1.1&ptk=youtube_none&pltype=contentugc&redirect_counter=1&cm2rm=sn-25gk67s&req_id=efd0e68f272ca3ee&cms_redirect=yes&mh=Yf&mm=34&mn=sn-4g5ednz7&ms=ltu&mt=1621714241&mv=u&mvi=3&pl=22&lsparams=mh,mm,mn,ms,mv,mvi,pl&lsig=AG3C_xAwRgIhAMOjgSL3TWCB8zY6CDjpXGlsR72wQNjo8p6M6AFDaa3TAiEAoXFFQPepEKRVj5XSOR-2gR-PiFBA2cGivDTw5iOxwPY%3D 2.23 MiB 2338488
A/r3---sn-4g5ednld.googlevideo.com/videoplayback?expire=1621736760&ei=2GipYJWDE8HXxN8P7YiVwAc&ip=195.154.207.98&id=o-ALFRa3H54Rk4p71g1e0juJ2yp_cbqfVRMdwjM9r3JXDX&itag=18&source=youtube&requiressl=yes&vprv=1&mime=video%2Fmp4&ns=lTmx2PJak8ge8G6SXvpFwIUF&gir=yes&clen=2311845&ratebypass=yes&dur=25.983&lmt=1365015247152294&fexp=24001373,24007246&c=WEB_EMBEDDED_PLAYER&n=NL9szKTG03DRwA&sparams=expire%2Cei%2Cip%2Cid%2Citag%2Csource%2Crequiressl%2Cvprv%2Cmime%2Cns%2Cgir%2Cclen%2Cratebypass%2Cdur%2Clmt&sig=AOq0QJ8wRAIgKz547cQHprV0hTAI8Ths7cA7u7WAUflXKmjl-5ha3NECIGjTzNzSTKkAG9WorNwdt6pP86MR_xbe31OYh_0aSGpo&cpn=2j1u3GrJ4YD2fQrq&cver=1.20210519.1.1&ptk=youtube_none&pltype=contentugc&redirect_counter=1&cm2rm=sn-25gk67s&req_id=2e40052ba88da3ee&cms_redirect=yes&mh=oH&mm=34&mn=sn-4g5ednld&ms=ltu&mt=1621715002&mv=u&mvi=3&pl=22&lsparams=mh,mm,mn,ms,mv,mvi,pl&lsig=AG3C_xAwRQIgXQSVy-OcPI5IeG8qj6uyMxfiKauK4l6eDVWd-KIWM5oCIQCuyapC6TERJe4bJLDQFFuR7pilQVfhzcFy1x8DeTLBcQ%3D%3D 2.2 MiB 2311845
A/r3---sn-25ge7nse.googlevideo.com/videoplayback?expire=1621736551&ei=B2ipYK2tHt7VxN8PoOuMqAM&ip=195.154.207.98&id=o-AImdy9fh3eQ_y6C283WubsF8V-0-o5_MOyXrpGkbs1dw&itag=18&source=youtube&requiressl=yes&mh=Vy&mm=31%2C29&mn=sn-25ge7nse%2Csn-25glene6&ms=au%2Crdu&mv=m&mvi=3&pl=22&initcwndbps=315000&vprv=1&mime=video%2Fmp4&ns=ALJvw4itdVIxRK7lkZL-8okF&gir=yes&clen=2202614&ratebypass=yes&dur=32.879&lmt=1404630960311513&mt=1621714617&fvip=3&fexp=24001373%2C24007246&c=WEB_EMBEDDED_PLAYER&n=dPXu6egUEpudiA&sparams=expire%2Cei%2Cip%2Cid%2Citag%2Csource%2Crequiressl%2Cvprv%2Cmime%2Cns%2Cgir%2Cclen%2Cratebypass%2Cdur%2Clmt&sig=AOq0QJ8wRAIgKJCN8ZWm1NKfXxvO7IXAAGqBB0YrObzaK4z0lfmDDjMCIAstFFhrjYqyLnBfr7p1Y8xzL6p-kwHDPIPLijQXIMS5&lsparams=mh%2Cmm%2Cmn%2Cms%2Cmv%2Cmvi%2Cpl%2Cinitcwndbps&lsig=AG3C_xAwRgIhAK0TdAjyTXdsQyt3Let8o-p1SsvY203jUHX63YU0ilP5AiEAiA1naSQMcSumbR5POEr7VcL5dchZqdZiJ6z3fOegxz0%3D&cpn=Jg6h69aDpfmobOk3&cver=1.20210519.1.1&ptk=youtube_none&pltype=contentugc 2.1 MiB 2202614
A/r3---sn-4g5ednly.googlevideo.com/videoplayback?expire=1621732970&ei=ClqpYM2NGbj7xN8P6duf0AM&ip=195.154.207.98&id=o-AGuO3qaTmELfZUoIxtxEeONSyPg3NhZJAjrDk3xCaDVh&itag=18&source=youtube&requiressl=yes&vprv=1&mime=video%2Fmp4&ns=x_qA3j7TDCoRtf1pE1bb9BMF&gir=yes&clen=2202614&ratebypass=yes&dur=32.879&lmt=1404630960311513&fexp=24001373,24007246&c=WEB_EMBEDDED_PLAYER&n=EnSCz9xtdBuWbw&sparams=expire%2Cei%2Cip%2Cid%2Citag%2Csource%2Crequiressl%2Cvprv%2Cmime%2Cns%2Cgir%2Cclen%2Cratebypass%2Cdur%2Clmt&sig=AOq0QJ8wRgIhAMEDlKB8Ogvu4E5JQ0AG0U-m9XhLXAQQ4OvcGyvFXpQwAiEAlwX4u-sNZYfSS5RuEU-iS56k1btnMkc0iUmokUmsI6k%3D&cpn=Mvjdt1PZvNg8CrHX&cver=1.20210519.1.1&ptk=youtube_none&pltype=contentugc&redirect_counter=1&cm2rm=sn-25gds7s&req_id=d3f2020e4ff4a3ee&cms_redirect=yes&mh=Vy&mm=34&mn=sn-4g5ednly&ms=ltu&mt=1621711236&mv=m&mvi=3&pl=22&lsparams=mh,mm,mn,ms,mv,mvi,pl&lsig=AG3C_xAwRQIgCL7N8hD8jnpj0IXDhGT1dWxLhPlqhHFpwPbOg1VK68ICIQCkBsCyHW6J2MFBTupfIcgyU8dRU9VBO5rqlhN9KQbBWA%3D%3D 2.1 MiB 2202614
A/r3---sn-4g5ednly.googlevideo.com/videoplayback?expire=1621736564&ei=FGipYKTTIovMWLWoh_gG&ip=195.154.207.98&id=o-AF9yvtf5uF3zikqoUWPnfJuYjYS46mgeX_pQx8ui8RNx&itag=18&source=youtube&requiressl=yes&vprv=1&mime=video%2Fmp4&ns=V17lUpvRGsZwIKCkviJyBhcF&gir=yes&clen=2202614&ratebypass=yes&dur=32.879&lmt=1404630960311513&fexp=24001373,24007246&c=WEB_EMBEDDED_PLAYER&n=74y2uBBYcdZoLA&sparams=expire%2Cei%2Cip%2Cid%2Citag%2Csource%2Crequiressl%2Cvprv%2Cmime%2Cns%2Cgir%2Cclen%2Cratebypass%2Cdur%2Clmt&sig=AOq0QJ8wRQIgLrJ2eJ4xLhCsxiCPUGHwhlvRY-T72A7htjuvdY0PNLkCIQDLqIcqLPSQOTEL9OvWBKMJAz7xC4RDs01jqeRTplXnFA%3D%3D&cpn=PkNFaOr3arodvWBj&cver=1.20210519.1.1&ptk=youtube_none&pltype=contentugc&redirect_counter=1&cm2rm=sn-25gk67s&req_id=5e4acff02468a3ee&cms_redirect=yes&mh=Vy&mm=34&mn=sn-4g5ednly&ms=ltu&mt=1621714838&mv=m&mvi=3&pl=22&lsparams=mh,mm,mn,ms,mv,mvi,pl&lsig=AG3C_xAwRQIhAMUE96gDKOgsIuzddwPtDBCcuww0c_B8auqi1f7PckTRAiA_Qa62L8WrBDh7vdASheFETbt_Fr4xUksWNCQlw42eYg%3D%3D 2.1 MiB 2202614
A/r4---sn-25glen7y.googlevideo.com/videoplayback?expire=1621735806&ei=HmWpYJ8npbLE3w_usZzgCA&ip=195.154.207.98&id=o-AOWbuYUghVuq4aj3Y2Ze2_JuY1OCs3Obobo_pY6yJVC7&itag=18&source=youtube&requiressl=yes&mh=Fl&mm=31%2C26&mn=sn-25glen7y%2Csn-h5q7knez&ms=au%2Conr&mv=m&mvi=4&pl=22&initcwndbps=298750&vprv=1&mime=video%2Fmp4&ns=AuSiCSZxQT1f5Cig0bZIGk4F&gir=yes&clen=1916862&ratebypass=yes&dur=31.137&lmt=1404632720235539&mt=1621714129&fvip=4&fexp=24001373%2C24007246&c=WEB_EMBEDDED_PLAYER&n=RmsYFCU_1fjHZQ&sparams=expire%2Cei%2Cip%2Cid%2Citag%2Csource%2Crequiressl%2Cvprv%2Cmime%2Cns%2Cgir%2Cclen%2Cratebypass%2Cdur%2Clmt&sig=AOq0QJ8wRgIhAIIK0r70BpIiFtysL4aNyX1klrov5nWVGRJ7R8xfkDsgAiEAlboHDfrURPbyFXZdM7TXLX2_RxcWo1EXLxALNgEW2HM%3D&lsparams=mh%2Cmm%2Cmn%2Cms%2Cmv%2Cmvi%2Cpl%2Cinitcwndbps&lsig=AG3C_xAwRQIgR7Bfc-uvFIlZ7Z_BHbo9jMYPw1-Rslcr6oD87bYXvcACIQD9DT5dvBFjTWwR39ChWEQT7KExSvbXxyQBZcuNVr9NyQ%3D%3D&cpn=4En31q8jOv599jkQ&cver=1.20210519.1.1&ptk=youtube_none&pltype=contentugc 1.83 MiB 1916862
A/r4---sn-4g5ednle.googlevideo.com/videoplayback?expire=1621732570&ei=elipYImoBaGDxgLYlr_ACA&ip=195.154.207.98&id=o-AJeOTKb6xjOPGw0AM50BXgatUKwB2LPtkBfyCzI4bBkk&itag=18&source=youtube&requiressl=yes&vprv=1&mime=video%2Fmp4&ns=oq-aQunSNyOjZ6_KAGYDZB0F&gir=yes&clen=1916862&ratebypass=yes&dur=31.137&lmt=1404632720235539&fexp=24001373,24007246&c=WEB_EMBEDDED_PLAYER&n=Oa3G6yaHSsSHFQ&sparams=expire%2Cei%2Cip%2Cid%2Citag%2Csource%2Crequiressl%2Cvprv%2Cmime%2Cns%2Cgir%2Cclen%2Cratebypass%2Cdur%2Clmt&sig=AOq0QJ8wRQIgGRNTw2qPT0lfpiEQtSTtzC7ShTHy05FFh4fwLifBQToCIQDHMH3D47atNi0Zn3tMcu6itBPUDV9sZHh7GhRIl6XW-g%3D%3D&cpn=nW2hU8uJI4eDrAYx&cver=1.20210519.1.1&ptk=youtube_none&pltype=contentugc&redirect_counter=1&cm2rm=sn-25gd77z&req_id=ba4e5a0b0d58a3ee&cms_redirect=yes&mh=Fl&mm=34&mn=sn-4g5ednle&ms=ltu&mt=1621710633&mv=u&mvi=4&pl=22&lsparams=mh,mm,mn,ms,mv,mvi,pl&lsig=AG3C_xAwRAIgYoA4zd9hA1gf8wJqgVH5G9Y6OM88OkZhn-FwVuqcVocCICkpVwC9SzHpFK1bYTXWUrDCy2S392OmEJG9gCQaTmML 1.83 MiB 1916862
A/r2---sn-4g5e6nzl.googlevideo.com/videoplayback?expire=1621734452&ei=1F-pYODzK5TPxwLIwZn4DQ&ip=195.154.207.98&id=o-AFwgTEoTNlOq-LlNgicXEMM43ktLOjA81H1PXEYWgOh7&itag=18&source=youtube&requiressl=yes&vprv=1&mime=video%2Fmp4&ns=j2JMlbjzWHbehHbp9roJbKcF&gir=yes&clen=1840653&ratebypass=yes&dur=20.712&lmt=1363118836441104&fexp=24001373,24007246&c=WEB_EMBEDDED_PLAYER&n=c5OVuvVNDkJ_-Q&sparams=expire%2Cei%2Cip%2Cid%2Citag%2Csource%2Crequiressl%2Cvprv%2Cmime%2Cns%2Cgir%2Cclen%2Cratebypass%2Cdur%2Clmt&sig=AOq0QJ8wRgIhAJovTYu8B23vp7l0oXksF2mg_vWqIAEInW_8MtZCBU_VAiEAgbERHHpcsZEkv-RBBo4HpEkY-pTdjk7L1TpyADy1ADI%3D&cpn=VMrEaUrs8yuLGKtP&cver=1.20210519.1.1&ptk=youtube_none&pltype=contentugc&redirect_counter=1&cm2rm=sn-25gkk7l&req_id=1b28416b738ba3ee&cms_redirect=yes&mh=7c&mm=34&mn=sn-4g5e6nzl&ms=ltu&mt=1621712780&mv=u&mvi=2&pl=22&lsparams=mh,mm,mn,ms,mv,mvi,pl&lsig=AG3C_xAwRAIgCsmEttoZpNreZJGb7wFn0_-QdyGNIk4jyI1LFBluYnsCIB3_yb8n-LY69XoaE4st-fXeFnzBGRP2bI24ioEFa2HX 1.76 MiB 1840653
A/r5---sn-4g5e6nes.googlevideo.com/videoplayback?expire=1621734452&ei=1F-pYOiFEY2zWb78ioAN&ip=195.154.207.98&id=o-APUvFtTZ3LySYmcCXyWMFzD2mpj8B5G4do6XemlScB55&itag=18&source=youtube&requiressl=yes&vprv=1&mime=video%2Fmp4&ns=dBGEuXUpp-rIYs5PpN31-_AF&gir=yes&clen=1825891&ratebypass=yes&dur=31.579&lmt=1363118882196304&fexp=24001373,24007246&c=WEB_EMBEDDED_PLAYER&n=ZL7PtC9Rf45lwg&sparams=expire%2Cei%2Cip%2Cid%2Citag%2Csource%2Crequiressl%2Cvprv%2Cmime%2Cns%2Cgir%2Cclen%2Cratebypass%2Cdur%2Clmt&sig=AOq0QJ8wRAIgGIUOnCGXDEG1epDOL7TtdDdlmRw8WuXh-krBvqpCEMsCIHSd4CE8eAscbxT3nCFr-GE5ZV-oSlXhpq_TAOxMlP2r&cpn=VMrEaUrs8yuLGKtP&cver=1.20210519.1.1&ptk=youtube_none&pltype=contentugc&redirect_counter=1&cm2rm=sn-25gkz76&req_id=8a02455740d6a3ee&cms_redirect=yes&mh=kB&mm=34&mn=sn-4g5e6nes&ms=ltu&mt=1621712780&mv=u&mvi=5&pl=22&lsparams=mh,mm,mn,ms,mv,mvi,pl&lsig=AG3C_xAwRQIgBgvkto6AxMIK14-jiuG4l5BRJhYSsIp4GShFmCE2_vkCIQDC8Qbk4oajSdQMpG-OZ9-eZT92YS3mM0mYoLaQtFg8Fw%3D%3D 1.74 MiB 1825891
A/r1---sn-4g5ednld.googlevideo.com/videoplayback?expire=1621734183&ei=x16pYIm4KqifxN8P9qKiuAE&ip=195.154.207.98&id=o-AJHxZLDHOg9VHlAmEB2mFAZSPVHYcwYGBMIRC_8PWPdM&itag=18&source=youtube&requiressl=yes&vprv=1&mime=video%2Fmp4&ns=GzjNTsVFCkqUFL40lZEOrysF&gir=yes&clen=1821496&ratebypass=yes&dur=21.408&lmt=1370713179257190&fexp=24001373,24007246&c=WEB_EMBEDDED_PLAYER&n=5FR8A2Nd_rFbsg&sparams=expire%2Cei%2Cip%2Cid%2Citag%2Csource%2Crequiressl%2Cvprv%2Cmime%2Cns%2Cgir%2Cclen%2Cratebypass%2Cdur%2Clmt&sig=AOq0QJ8wRAIgW3FLd4IOI_eiuAO8vzJIGZ82RTbZLLYdeVHhzDhK7TwCIH8dqimiO07bpf7KQHrROQgsVKY1ctUQ6i2gAPCeQfon&cpn=zcD5AC0n-R_j6waZ&cver=1.20210519.1.1&ptk=youtube_none&pltype=contentugc&redirect_counter=1&cm2rm=sn-25gkk7e&req_id=991fe99b9377a3ee&cms_redirect=yes&mh=oI&mm=34&mn=sn-4g5ednld&ms=ltu&mt=1621712436&mv=m&mvi=1&pl=22&lsparams=mh,mm,mn,ms,mv,mvi,pl&lsig=AG3C_xAwRQIhAI5OMM0Hd7lWe85SuDzWF0jGQ8OxJbTMp7QaSQ63dWNTAiAzYkAPSUy1-pG4j3S6XpAI1AGIDcYMqdo3LJp-4nNWOA%3D%3D 1.74 MiB 1821496
A/r2---sn-4g5ednsd.googlevideo.com/videoplayback?expire=1621736338&ei=MmepYITeD6bYxN8Pzey3-A0&ip=195.154.207.98&id=o-AHZNHG3g9rP0JyN2kEbNY4KmpQUDnCvKTPoLo4CVMxma&itag=18&source=youtube&requiressl=yes&vprv=1&mime=video%2Fmp4&ns=h2fkO5Tsky2U2UZ5OP7yXukF&gir=yes&clen=1742867&ratebypass=yes&dur=26.122&lmt=1370611512029903&fexp=24001373,24007246&c=WEB_EMBEDDED_PLAYER&n=kz_-ZWNfZXf2Gw&sparams=expire%2Cei%2Cip%2Cid%2Citag%2Csource%2Crequiressl%2Cvprv%2Cmime%2Cns%2Cgir%2Cclen%2Cratebypass%2Cdur%2Clmt&sig=AOq0QJ8wRQIgMNRrZ44NLhCldq_b1iByV1mYxHa-2_zusTiPSPSjKuoCIQDjxVKdrs1Ngk7iMzx-1shyAC942B_jJxNgn9TxYWKawQ%3D%3D&cpn=ANTg4jouNDc8cqbd&cver=1.20210519.1.1&ptk=youtube_none&pltype=contentugc&redirect_counter=1&cm2rm=sn-25gkr7s&req_id=2c77858d3b6ca3ee&cms_redirect=yes&mh=Cv&mm=34&mn=sn-4g5ednsd&ms=ltu&mt=1621714241&mv=u&mvi=3&pl=22&lsparams=mh,mm,mn,ms,mv,mvi,pl&lsig=AG3C_xAwRQIhALupcznHNWjXsFjO95iFj8fhOnoHji7BJUWo_TYZA-IAAiBBfnSZVChGs1-mOZsZlzxYzfcRP8dD1fe04L_Erc3tJA%3D%3D&ir=1&rr=12 1.66 MiB 1742867
A/www.youtube.com/s/player/c39bcc11/player_ias.vflset/fr_FR/base.js 1.59 MiB 1669236
A/s.pinimg.com/webapp/www/pin/create/[method]-unauthdesktop-3ea5f0f8ebc1f5cbe7e8.mjs 1.57 MiB 1647044
A/r1---sn-4g5ednsz.googlevideo.com/videoplayback?expire=1621733428&ei=1FupYKGRC9LJsALKy6egDg&ip=195.154.207.98&id=o-AAsGq_zk-QRpKy1yzknJW7i28HhfO3OLXrzhQ3NxDYYl&itag=18&source=youtube&requiressl=yes&vprv=1&mime=video%2Fmp4&ns=ynvU9cGtjUOtAJV6prpnTs8F&gir=yes&clen=1602580&ratebypass=yes&dur=21.385&lmt=1364685774136071&fexp=24001373,24007246&c=WEB_EMBEDDED_PLAYER&n=_-2dLyBNpk4Dgw&sparams=expire%2Cei%2Cip%2Cid%2Citag%2Csource%2Crequiressl%2Cvprv%2Cmime%2Cns%2Cgir%2Cclen%2Cratebypass%2Cdur%2Clmt&sig=AOq0QJ8wRQIhAK47_G2WCXUwyRdN2LBhfZpxMmaVqplKPY-oL5Ols_dZAiA_TxbP6kiTBklZssyxdVvEhr-FgpUHHk5q_WClvDkx0g%3D%3D&cpn=oqLgJBVKnzWmjZrS&cver=1.20210519.1.1&ptk=youtube_none&pltype=contentugc&redirect_counter=1&cm2rm=sn-25g6y7d&req_id=164999bdac8a3ee&cms_redirect=yes&mh=AK&mm=34&mn=sn-4g5ednsz&ms=ltu&mt=1621711716&mv=m&mvi=1&pl=22&lsparams=mh,mm,mn,ms,mv,mvi,pl&lsig=AG3C_xAwRgIhAMU2zX64Xvgm0m5uqJTb7kZs7A4h1ycqO5ZfWZ7SkinZAiEA6gHQ6Ri_Dnw10UzeSRYKMFyHD3voZIwrZniYDpUgl0I%3D 1.53 MiB 1602580
A/r1---sn-4g5ednsz.googlevideo.com/videoplayback?expire=1621737511&ei=x2upYIisHpejxN8PwKO6eA&ip=195.154.207.98&id=o-AJsn-jq0fKKVhdaLhXBGAVz36Yp5tlNxCAUO2Rg9ATo4&itag=18&source=youtube&requiressl=yes&vprv=1&mime=video%2Fmp4&ns=yp3XC4QzFfuDfvqVwEqJOZ8F&gir=yes&clen=1602580&ratebypass=yes&dur=21.385&lmt=1364685774136071&fexp=24001373,24007246&c=WEB_EMBEDDED_PLAYER&n=TFFq4npgYn2g3A&sparams=expire%2Cei%2Cip%2Cid%2Citag%2Csource%2Crequiressl%2Cvprv%2Cmime%2Cns%2Cgir%2Cclen%2Cratebypass%2Cdur%2Clmt&sig=AOq0QJ8wRQIhALyCLvFn-yDPJXXyrQxlXITltC-rbmu3wDOLcvGHRfscAiAg3AY2u8kTj4pUUcBtN9CyssWOPYEw2n7r1HUHy7Gj_Q%3D%3D&cpn=iQ0LBrq3hqd-3cv5&cver=1.20210519.1.1&ptk=youtube_none&pltype=contentugc&redirect_counter=1&cm2rm=sn-25gkr7e&req_id=58197eb03219a3ee&cms_redirect=yes&mh=AK&mm=34&mn=sn-4g5ednsz&ms=ltu&mt=1621715795&mv=m&mvi=1&pl=22&lsparams=mh,mm,mn,ms,mv,mvi,pl&lsig=AG3C_xAwRgIhAO236-Xcv_NTrbiK-Xxpilfkzgi7iq-PVTqV61drpIVxAiEAuQ3t1fmA6Lr2YDMX6rKxZj8w4LKaD1LtlK0jvRHrK1g%3D 1.53 MiB 1602580
A/r6---sn-25glen7r.googlevideo.com/videoplayback?expire=1621737493&ei=tWupYOq4FIW5xN8P9oiKyAQ&ip=195.154.207.98&id=o-APe_qfFSO4-JNWFHStvdtITHpoDGMK4oeWeZk4gTcTeS&itag=18&source=youtube&requiressl=yes&mh=AK&mm=31%2C26&mn=sn-25glen7r%2Csn-h5q7knes&ms=au%2Conr&mv=m&mvi=6&pl=22&initcwndbps=296250&vprv=1&mime=video%2Fmp4&ns=DYnwICt9OFSwxuZBKeKuqGsF&gir=yes&clen=1602580&ratebypass=yes&dur=21.385&lmt=1364685774136071&mt=1621715330&fvip=1&fexp=24001373%2C24007246&c=WEB_EMBEDDED_PLAYER&n=YBpCZsowBa7KAQ&sparams=expire%2Cei%2Cip%2Cid%2Citag%2Csource%2Crequiressl%2Cvprv%2Cmime%2Cns%2Cgir%2Cclen%2Cratebypass%2Cdur%2Clmt&sig=AOq0QJ8wRQIgSlNK148mAlydnl_tuiLxQxl4qDtNdWmaj2b56nYSFIUCIQCnOwBXF_6Ba67biSSCbdTMdvO3VdqiXaDscTu0W657VQ%3D%3D&lsparams=mh%2Cmm%2Cmn%2Cms%2Cmv%2Cmvi%2Cpl%2Cinitcwndbps&lsig=AG3C_xAwRAIgHL3W-h4fOeVWuKHkO-sCyrcwR8vNDol7o_hbNJstvXMCIFYQkzec7ZqVxb5Og7QqDFpTS5Ld3aa4hVLCfLntD4tT&cpn=A70ycJ41j8usozPm&cver=1.20210519.1.1&ptk=youtube_none&pltype=contentugc 1.53 MiB 1602580
A/r6---sn-25glen7r.googlevideo.com/videoplayback?expire=1621737506&ei=wmupYNOqN-SCmQbhpJTwAQ&ip=195.154.207.98&id=o-AJsFnk29C_GegifcIEygh91jKaRX-NWA9uMnSM0SUG9h&itag=18&source=youtube&requiressl=yes&mh=AK&mm=31%2C26&mn=sn-25glen7r%2Csn-4g5e6nz7&ms=au%2Conr&mv=m&mvi=6&pl=22&initcwndbps=296250&vprv=1&mime=video%2Fmp4&ns=46BmAOzeiXcNfBrSvhGFnFQF&gir=yes&clen=1602580&ratebypass=yes&dur=21.385&lmt=1364685774136071&mt=1621715330&fvip=1&fexp=24001373%2C24007246&c=WEB_EMBEDDED_PLAYER&n=dAl82UDuyhhNvw&sparams=expire%2Cei%2Cip%2Cid%2Citag%2Csource%2Crequiressl%2Cvprv%2Cmime%2Cns%2Cgir%2Cclen%2Cratebypass%2Cdur%2Clmt&sig=AOq0QJ8wRgIhALbitrFQCpyCuvIFbekHWKc-u6W3cB2Gvnm25bB22WmBAiEAq-4qTPR-0fHcF8YZfoZosO_qaipCJb7BWoiD-bql-V4%3D&lsparams=mh%2Cmm%2Cmn%2Cms%2Cmv%2Cmvi%2Cpl%2Cinitcwndbps&lsig=AG3C_xAwRgIhALgdH--jU9OkunxixI-EX4BeY4ENU0bc4DeVoOUZg14WAiEAvSHOajV-nYmuuAmsFDP8eIyaHP6ckU09JtYSE9mFbcg%3D&cpn=WiFVSHaBrNXbbBBu&cver=1.20210519.1.1&ptk=youtube_none&pltype=contentugc 1.53 MiB 1602580
A/r6---sn-25glen7r.googlevideo.com/videoplayback?expire=1621737516&ei=zGupYLyLCpaexN8Pn-GVwAw&ip=195.154.207.98&id=o-ADlyKjNGVipZ7RdpViu3jNOxuQkCVfyUsrLCUchPYBV6&itag=18&source=youtube&requiressl=yes&mh=AK&mm=31%2C29&mn=sn-25glen7r%2Csn-25ge7nzs&ms=au%2Crdu&mv=m&mvi=6&pl=22&initcwndbps=296250&vprv=1&mime=video%2Fmp4&ns=0K9kDek-qN3zxszAQCRA3DgF&gir=yes&clen=1602580&ratebypass=yes&dur=21.385&lmt=1364685774136071&mt=1621715330&fvip=1&fexp=24001373%2C24007246&c=WEB_EMBEDDED_PLAYER&n=Imr8weYlvn5smw&sparams=expire%2Cei%2Cip%2Cid%2Citag%2Csource%2Crequiressl%2Cvprv%2Cmime%2Cns%2Cgir%2Cclen%2Cratebypass%2Cdur%2Clmt&sig=AOq0QJ8wRQIgIgHuPH9cYOGurble0uRcA8SRAQbN_LD7iLOwWt2MPZMCIQD0LHbDwpWrahLLaYOq9lO9hKgC6N2c3rttsOjsx4uivA%3D%3D&lsparams=mh%2Cmm%2Cmn%2Cms%2Cmv%2Cmvi%2Cpl%2Cinitcwndbps&lsig=AG3C_xAwRAIgQJVnyR10WO2KVgaoz1zHhwSfvLQCjxH8dxCQ5P-WbgkCICpTKxSModw0VJUnk2O3jc4mhfyD3YJ2kHNz2biNBimr&cpn=fbmCaiqW_C7nzyGp&cver=1.20210519.1.1&ptk=youtube_none&pltype=contentugc 1.53 MiB 1602580
A/mesquartierschinois.files.wordpress.com/2014/07/img_9161.jpg 1.41 MiB 1480277
A/r5---sn-25ge7nsd.googlevideo.com/videoplayback?expire=1621733226&ei=ClupYLP-J93AsAKTiqfgCw&ip=195.154.207.98&id=o-AFcZgt4ZkWCtZHfqsHZVTsSJzlRuAwi80Fi62dQOm4ER&itag=18&source=youtube&requiressl=yes&mh=9j&mm=31%2C29&mn=sn-25ge7nsd%2Csn-25glene7&ms=au%2Crdu&mv=m&mvi=5&pl=22&initcwndbps=288750&vprv=1&mime=video%2Fmp4&ns=4LLcGi4EsLZ9-OH3TOX2UYgF&gir=yes&clen=1444431&ratebypass=yes&dur=42.562&lmt=1576893938779638&mt=1621711491&fvip=5&fexp=24001373%2C24007246&c=WEB_EMBEDDED_PLAYER&txp=1311222&n=K7J0f8VR0lg-iQ&sparams=expire%2Cei%2Cip%2Cid%2Citag%2Csource%2Crequiressl%2Cvprv%2Cmime%2Cns%2Cgir%2Cclen%2Cratebypass%2Cdur%2Clmt&lsparams=mh%2Cmm%2Cmn%2Cms%2Cmv%2Cmvi%2Cpl%2Cinitcwndbps&lsig=AG3C_xAwRAIgLRQaPH-WSYi9cdDHWsYTr8ASu600oooNXVZ75JlYx0MCIEDX3jpyuEGlYXoZN7rXnSmri8lXpmcZYipts7K7k-PY&sig=AOq0QJ8wRgIhAJKQQMXbK2jO9MdVVPVgqom2hMYocFYF3Zg1ywCYefviAiEAyNCELVTeZou8mHcElJfqfZm1lzen9tRNqsiSc2tWrxY%3D&cpn=mb4En31q8jOv599j&cver=1.20210519.1.1&ptk=youtube_single&oid=ghgcd_xPPR_URSW5U_cwtQ&pltype=contentugc 1.38 MiB 1444431
A/r5---sn-25glene7.googlevideo.com/videoplayback?expire=1621731401&ei=6VOpYP3SMdn5xN8Pj4WLuAE&ip=195.154.207.98&id=o-ACeAQ96kvi1rVrOQMoQ90Td5Ij6kad7-t1GXTaiqvyp6&itag=18&source=youtube&requiressl=yes&mh=9j&mm=31%2C26&mn=sn-25glene7%2Csn-4g5ednll&ms=au%2Conr&mv=m&mvi=5&pl=22&initcwndbps=233750&vprv=1&mime=video%2Fmp4&ns=zp-JVwyNzd0MjhO3EfvI5HgF&gir=yes&clen=1444431&ratebypass=yes&dur=42.562&lmt=1576893938779638&mt=1621709334&fvip=5&fexp=24001373%2C24007246&c=WEB_EMBEDDED_PLAYER&txp=1311222&n=E_i1l9ZUP2LcrA&sparams=expire%2Cei%2Cip%2Cid%2Citag%2Csource%2Crequiressl%2Cvprv%2Cmime%2Cns%2Cgir%2Cclen%2Cratebypass%2Cdur%2Clmt&lsparams=mh%2Cmm%2Cmn%2Cms%2Cmv%2Cmvi%2Cpl%2Cinitcwndbps&lsig=AG3C_xAwRAIgQHW5l7uYPWG1KsS-36DJySnQh5pVu6Oufdfohey0EjkCIGXNhvc_JD0EFFAx5U9RHNwV34XjW2Y--uiCGLKzqL6l&sig=AOq0QJ8wRQIgbaDkGT8QIpWSHX5Cg4UTMMUsOYlNXW--zQ3b5OZYy-0CIQDEURejFLO4z59KMVIGj7RA4LIMrd5YDDaNtudyAju2WQ%3D%3D&cpn=gkApQFMOB0LeLvG9&cver=1.20210519.1.1&ptk=youtube_single&oid=ghgcd_xPPR_URSW5U_cwtQ&pltype=contentugc 1.38 MiB 1444431
A/r5---sn-25glene7.googlevideo.com/videoplayback?expire=1621731416&ei=-FOpYJOpBOSqxN8P9qWgsAY&ip=195.154.207.98&id=o-AEbRBZ8ZA5brcJ6pddd8_xlB9Nu9etKTwU7S2AIWP5lm&itag=18&source=youtube&requiressl=yes&mh=9j&mm=31%2C26&mn=sn-25glene7%2Csn-4g5ednll&ms=au%2Conr&mv=m&mvi=5&pl=22&initcwndbps=233750&vprv=1&mime=video%2Fmp4&ns=zkBTYem79CqTULEgFmPv8gsF&gir=yes&clen=1444431&ratebypass=yes&dur=42.562&lmt=1576893938779638&mt=1621709334&fvip=5&fexp=24001373%2C24007246&c=WEB_EMBEDDED_PLAYER&txp=1311222&n=kMNSwuBzTJBKSw&sparams=expire%2Cei%2Cip%2Cid%2Citag%2Csource%2Crequiressl%2Cvprv%2Cmime%2Cns%2Cgir%2Cclen%2Cratebypass%2Cdur%2Clmt&lsparams=mh%2Cmm%2Cmn%2Cms%2Cmv%2Cmvi%2Cpl%2Cinitcwndbps&lsig=AG3C_xAwRgIhAIVnBiO7nSMFZIhkkRhzPygUYYCGXDPjh3UVhBRxo9juAiEAuRt07aW9pMmdg10LvMQVf1nHki6dZ5ijY1R670nXjfQ%3D&sig=AOq0QJ8wRAIgRAdUABJ0yjfW4zDorATLTz6pcWLI4yEOItu5-r39-TgCIH0eYaDCsfIGRs2tfKKrU5ahA5eXrfBmQ3gwfi5nOEzO&cpn=2LRMFEuaJG0N_95E&cver=1.20210519.1.1&ptk=youtube_single&oid=ghgcd_xPPR_URSW5U_cwtQ&pltype=contentugc 1.38 MiB 1444431
A/r5---sn-4g5ednll.googlevideo.com/videoplayback?expire=1621730747&ei=W1GpYPTFGNWgxN8P0_Cu-As&ip=195.154.207.98&id=o-AAnKgVQpc9PnrGHxW4hi-tldEB6KSyKKt7SeC0BBjSx2&itag=18&source=youtube&requiressl=yes&vprv=1&mime=video%2Fmp4&ns=vkFo9IvccC2PZbIvwa7mM0wF&gir=yes&clen=1444431&ratebypass=yes&dur=42.562&lmt=1576893938779638&fexp=24001373,24007246&c=WEB_EMBEDDED_PLAYER&txp=1311222&n=YmH3ETHCsefs7w&sparams=expire%2Cei%2Cip%2Cid%2Citag%2Csource%2Crequiressl%2Cvprv%2Cmime%2Cns%2Cgir%2Cclen%2Cratebypass%2Cdur%2Clmt&sig=AOq0QJ8wRAIgGSHYIS4rdMsmd_A7s_YwuBQzoXgWqR2AeI66V5qu6LACICu2f4hvtVMTi3EPt7lGpiX_8o-RKfQ3VLGC_xQR2lt5&cpn=gf-G9KGtNKcx-yhL&cver=1.20210519.1.1&ptk=youtube_single&oid=ghgcd_xPPR_URSW5U_cwtQ&pltype=contentugc&redirect_counter=1&cm2rm=sn-25gkd76&req_id=9fde2d830216a3ee&cms_redirect=yes&mh=9j&mm=34&mn=sn-4g5ednll&ms=ltu&mt=1621708627&mv=u&mvi=5&pl=22&lsparams=mh,mm,mn,ms,mv,mvi,pl&lsig=AG3C_xAwRAIge_T38Kasmk31gCMh-r4CwzCTNE-8Tm9iLiZ7ds8l3WwCIGwNQKOFLSGXwg3QqJQBcJ4ggscfQCOgSbQ97xudKPdc 1.38 MiB 1444431
A/r2---sn-4g5ednee.googlevideo.com/videoplayback?expire=1621733573&ei=ZVypYPD3Bt6uxN8P_YGQyAQ&ip=195.154.207.98&id=o-AIWZUGASBusYl6gKscyCd6BjCV4dDb8w0hNDmUo1u9mC&itag=18&source=youtube&requiressl=yes&vprv=1&mime=video%2Fmp4&ns=OrRvzxoBID6Ig15bAB_SmxMF&gir=yes&clen=1442847&ratebypass=yes&dur=32.368&lmt=1581017865695518&fexp=24001373,24007246&c=WEB_EMBEDDED_PLAYER&txp=1311222&n=jYUZKmwbg7h0NQ&sparams=expire%2Cei%2Cip%2Cid%2Citag%2Csource%2Crequiressl%2Cvprv%2Cmime%2Cns%2Cgir%2Cclen%2Cratebypass%2Cdur%2Clmt&sig=AOq0QJ8wRAIgH7WUhoB83Ps7XOOMmQQRdl1GOTI2JVFVkehpnIsJ_lQCICc5bUTGfJa38-rgbUxTtY_BZR4u8Z_yUX3BlX8lG_yF&cpn=zYk1n3RKByqsCyjs&cver=1.20210519.1.1&ptk=youtube_none&pltype=contentugc&redirect_counter=1&cm2rm=sn-25g6y7l&req_id=8e65b04e9f8da3ee&cms_redirect=yes&mh=_R&mm=34&mn=sn-4g5ednee&ms=ltu&mt=1621711344&mv=u&mvi=2&pl=22&lsparams=mh,mm,mn,ms,mv,mvi,pl&lsig=AG3C_xAwRAIgCbtMDurbYxUiVf3IbdIlqHFMQgFu18upYGt-z-FGpxUCIEeifpEzB7vC9lgcjNmLsUFu9weB3kxJ-OfcolPv3-3F 1.38 MiB 1442847
A/r2---sn-4g5ednee.googlevideo.com/videoplayback?expire=1621737968&ei=kG2pYLeeL7KKxN8P6emqyAQ&ip=195.154.207.98&id=o-AEOUknyJ580H5A4GpoB0YQph9FlsNt39lKYj7R7Rhi_I&itag=18&source=youtube&requiressl=yes&vprv=1&mime=video%2Fmp4&ns=2G06I_cjz5-ll713ApHa8zoF&gir=yes&clen=1442847&ratebypass=yes&dur=32.368&lmt=1581017865695518&fexp=24001373,24007246&c=WEB_EMBEDDED_PLAYER&txp=1311222&n=FdDgNoeomK6YaA&sparams=expire%2Cei%2Cip%2Cid%2Citag%2Csource%2Crequiressl%2Cvprv%2Cmime%2Cns%2Cgir%2Cclen%2Cratebypass%2Cdur%2Clmt&sig=AOq0QJ8wRQIhAKL5LK1VFZfwB93zTSa9iwo_xUjY0vBKHda9TS8pXxo9AiBJKwAoSIhbshU2F7SbLTkgs5TdpUIO41baWYAJb5S_IQ%3D%3D&cpn=gFiSxcQ4pEE0a-n8&cver=1.20210519.1.1&ptk=youtube_none&pltype=contentugc&redirect_counter=1&cm2rm=sn-25gkr7l&req_id=96d605aaf15ea3ee&cms_redirect=yes&mh=_R&mm=34&mn=sn-4g5ednee&ms=ltu&mt=1621715711&mv=u&mvi=2&pl=22&lsparams=mh,mm,mn,ms,mv,mvi,pl&lsig=AG3C_xAwRQIgBpUOBepyjyll5tx-cDO4HXY3nr9ueRegLLGfFo-EGQ4CIQC6Y8HMIP63f4XfkznRKYYr-JR9vKtQD-KOk8kNV8_Rag%3D%3D 1.38 MiB 1442847
A/r1---sn-25glenez.googlevideo.com/videoplayback?expire=1621736171&ei=i2apYNaYGKvKxgLuoI-wAg&ip=195.154.207.98&id=o-AO6-V8pMEUj6u_tn_z-tieVrs9eO3hjyk9fukIpjeYVK&itag=18&source=youtube&requiressl=yes&mh=jb&mm=31%2C26&mn=sn-25glenez%2Csn-4g5ednsr&ms=au%2Conr&mv=m&mvi=1&pl=22&initcwndbps=318750&vprv=1&mime=video%2Fmp4&ns=I50NNJkOMwSUl6rVWdk9S6oF&gir=yes&clen=1299240&ratebypass=yes&dur=20.619&lmt=1404680054011182&mt=1621714129&fvip=1&fexp=24001373%2C24007246&c=WEB_EMBEDDED_PLAYER&n=eGayYewaemKNPg&sparams=expire%2Cei%2Cip%2Cid%2Citag%2Csource%2Crequiressl%2Cvprv%2Cmime%2Cns%2Cgir%2Cclen%2Cratebypass%2Cdur%2Clmt&sig=AOq0QJ8wRQIgH93_9RpvLRxjC5zYEfiXjBXXh_YG23AE3yE2lHRYCYgCIQCzxH5gKsYyyA3YjmHk7Y6pKiJeJjMAp4803oq70FmQbw%3D%3D&lsparams=mh%2Cmm%2Cmn%2Cms%2Cmv%2Cmvi%2Cpl%2Cinitcwndbps&lsig=AG3C_xAwRgIhAMzN8UOCInAoQpt263qGurlijOE-ZhYZAk1ES61RG5YwAiEA0DPKTXZwF1JCrlpTXPfKQRTTGbGnOJRX5Rv7A3T42ZY%3D&cpn=GcM9Gnq1A5TBTMVk&cver=1.20210519.1.1&ptk=youtube_none&pltype=contentugc 1.24 MiB 1299240
A/r1---sn-4g5ednsr.googlevideo.com/videoplayback?expire=1621732604&ei=nFipYMmKBYSaWq66gagP&ip=195.154.207.98&id=o-ALhYF0uJ1M4TWPTEeNhy11dAnV5Di_nWobl4tw9OaS_G&itag=18&source=youtube&requiressl=yes&vprv=1&mime=video%2Fmp4&ns=i9euG9VKeQSHYVylooyGiaYF&gir=yes&clen=1299240&ratebypass=yes&dur=20.619&lmt=1404680054011182&fexp=24001373,24007246&c=WEB_EMBEDDED_PLAYER&n=yOgnIiXiDvJaQg&sparams=expire%2Cei%2Cip%2Cid%2Citag%2Csource%2Crequiressl%2Cvprv%2Cmime%2Cns%2Cgir%2Cclen%2Cratebypass%2Cdur%2Clmt&sig=AOq0QJ8wRQIgbjHUWS2dC54wgeOIDIEFHou0VxGYkqnUX5gFT18wt2ECIQDvKlRtp0AHS9DjGpX-7qhjVBlNTQx2wVPI4tBVscK2Ww%3D%3D&cpn=v1CaFKRvl-e-N9_n&cver=1.20210519.1.1&ptk=youtube_none&pltype=contentugc&redirect_counter=1&cm2rm=sn-25gkz7e&req_id=7693739e445ca3ee&cms_redirect=yes&mh=jb&mm=34&mn=sn-4g5ednsr&ms=ltu&mt=1621710633&mv=u&mvi=1&pl=22&lsparams=mh,mm,mn,ms,mv,mvi,pl&lsig=AG3C_xAwRAIgOUBv2a-8ViIjqDEI56Mgl5Dr8L0ytYGAMu4xRwxxpAICIGVvd82hoBk52Bjz7q9ys-OhQLgMygV_6EVBntXXJ6Dp 1.24 MiB 1299240
A/abs.twimg.com/responsive-web/client-web/main.99d0c545.js 1.22 MiB 1280613
A/r10---sn-4g5e6nzy.googlevideo.com/videoplayback?expire=1621733571&ei=Y1ypYMrhNLP4xN8PrN-dwAc&ip=195.154.207.98&id=o-AKmK8C7U6B5QsRyiOQQ6dbTjR7eYxEQgcL36aVuWkO2T&itag=18&source=youtube&requiressl=yes&vprv=1&mime=video%2Fmp4&ns=gwYKrJ4BWE3H2lQAgiavbO4F&gir=yes&clen=1196155&ratebypass=yes&dur=19.504&lmt=1593586912099454&fexp=24001373,24007246&c=WEB_EMBEDDED_PLAYER&txp=1211222&n=sy1q82zxCTJ_9w&sparams=expire%2Cei%2Cip%2Cid%2Citag%2Csource%2Crequiressl%2Cvprv%2Cmime%2Cns%2Cgir%2Cclen%2Cratebypass%2Cdur%2Clmt&sig=AOq0QJ8wRQIhAKqhbqLN48O8S1WI6SJkU8JyB6XvzCScZzWJ-rYKRcIuAiAJeuep2iSbGt3nJr0UEdFEoKqqtKkbh6uq1VOI9RVWDA%3D%3D&cpn=zYk1n3RKByqsCyjs&cver=1.20210519.1.1&ptk=youtube_none&pltype=contentugc&redirect_counter=1&cm2rm=sn-25g6y7s&req_id=a95a67653db8a3ee&cms_redirect=yes&mh=um&mm=34&mn=sn-4g5e6nzy&ms=ltu&mt=1621711344&mv=u&mvi=10&pl=22&lsparams=mh,mm,mn,ms,mv,mvi,pl&lsig=AG3C_xAwRQIhAMcEXo7LDLbVmI3S9u2oIqGt9WsyIJtCt5lNnO-CLNPjAiANqtdK1bpAkkT6NXbKNfQmUT4k4qVspOejEpuA_wF0Fw%3D%3D 1.14 MiB 1196155
A/r10---sn-4g5e6nzy.googlevideo.com/videoplayback?expire=1621737969&ei=kW2pYMS_C9fGWsjCp-AD&ip=195.154.207.98&id=o-APH4SNjahIyAc6wjiO3qly47F_YEXfxGlKIBY6RDZo9X&itag=18&source=youtube&requiressl=yes&vprv=1&mime=video%2Fmp4&ns=AAo_Um9qTYvHGiGsXcH3WxoF&gir=yes&clen=1196155&ratebypass=yes&dur=19.504&lmt=1593586912099454&fexp=24001373,24007246&c=WEB_EMBEDDED_PLAYER&txp=1211222&n=fsCRbx3e9J9PoA&sparams=expire%2Cei%2Cip%2Cid%2Citag%2Csource%2Crequiressl%2Cvprv%2Cmime%2Cns%2Cgir%2Cclen%2Cratebypass%2Cdur%2Clmt&sig=AOq0QJ8wRgIhAJeSGfePmywDdbM0Nn47bi7o1CZQWbIFhBQo6tv3j0ELAiEA7I2mBBLtSaMKV7QuEFKy_8WPBrCkhd7KCimQ6CTy0hk%3D&cpn=gFiSxcQ4pEE0a-n8&cver=1.20210519.1.1&ptk=youtube_none&pltype=contentugc&redirect_counter=1&cm2rm=sn-25gkr7s&req_id=48497a8eaae3a3ee&cms_redirect=yes&mh=um&mm=34&mn=sn-4g5e6nzy&ms=ltu&mt=1621715711&mv=u&mvi=10&pl=22&lsparams=mh,mm,mn,ms,mv,mvi,pl&lsig=AG3C_xAwRQIhAPK1Fq1f3DTs0sFUfiaU1ro4wiU1ek7_Ko7VrRLNt1FcAiB7l70EhYqcOO0_j3vGA2tamfbdqYXEFYM00Kqz0y1QFQ%3D%3D 1.14 MiB 1196155
A/r4---sn-4g5e6nlk.googlevideo.com/videoplayback?expire=1621733737&ei=CV2pYLK5CvjUxN8Px-u2kAo&ip=195.154.207.98&id=o-AAdc72cNkw6rFQfZCuz1qL82o5cHAxxcQb2lSCVL3lNi&itag=18&source=youtube&requiressl=yes&vprv=1&mime=video%2Fmp4&ns=jmPdbTHhmeJNDI--4K4oJJEF&gir=yes&clen=1179559&ratebypass=yes&dur=23.521&lmt=1364685468389322&fexp=24001373,24007246&c=WEB_EMBEDDED_PLAYER&n=er8jDcAyMhBewA&sparams=expire%2Cei%2Cip%2Cid%2Citag%2Csource%2Crequiressl%2Cvprv%2Cmime%2Cns%2Cgir%2Cclen%2Cratebypass%2Cdur%2Clmt&sig=AOq0QJ8wRgIhAMrOQTGHSRGx_3NO6iHhGq89go0nrkCutSrQ-VRIuPLBAiEAjSJjPzIb62yFxM8L6wB1ET02X47I_SH88JHWd0fzyAQ%3D&cpn=emvaDG_r33LtsLTK&cver=1.20210519.1.1&ptk=youtube_none&pltype=contentugc&redirect_counter=1&cm2rm=sn-25gks7z&req_id=b76440523ab6a3ee&cms_redirect=yes&mh=GY&mm=34&mn=sn-4g5e6nlk&ms=ltu&mt=1621712014&mv=u&mvi=4&pl=22&lsparams=mh,mm,mn,ms,mv,mvi,pl&lsig=AG3C_xAwRAIgIaqj7hWW1IkV2uhXXe_zd2Krx7cj0m3eehn8K568U8cCIFOxSEmx2oXsDc0B85-pensbQafI1DsO56C2ZhtD9JSZ 1.12 MiB 1179559
X/fulltext/xapian 1.07 MiB 1122304
A/r2---sn-25glene7.gvt1.com/edgedl/release2/chrome_component/AKTnRVkE3WgE1n_TgCKn6BY_20210511.374110927/AMeytxAPqKrDcpDX4D-u9zQ?cms_redirect=yes&mh=mD&mip=195.154.207.98&mm=28&mn=sn-25glene7&ms=nvh&mt=1621708931&mv=u&mvi=2&pl=22&shardbypass=yes 970.66 KiB 993960
A/sw.js 907.38 KiB 929153

First thing you'd notice is that there are multiple entries with the very same bytesize, for all of the entries. Safe to assume it's not a coincidence and we are bundling each video data 3+ times each.
Note that the log is full of revisit entries.

Now that's not the issue I'm after here. The problem is that those video don't replay. I'm not sure what kind of feedback I should provide here. Please let me know. You can download the ZIM from here (expires in a week).

Source URL: https://mesquartierschinois.wordpress.com/

Sort a WARC by its size

Hey, I don't know if it's possible, but I have a rather large WARC (1.3 Gigabytes for a crawl of a probably 1mb site), and I want to see where the culprits of the space are. Can I sort a WARC by its size?

embedding and service workers path

from doc:

Thus, if the HTML snippet was added to https://my-site.example.com/path/my-web-archive-embed.html then the sw.js should be added such that it is at: https://my-site.example.com/path/replay/sw.js.

i have this example: https://docuver.se/replayweb/mlol-iiif-stories.html

the sw in this path is not working https://docuver.se/replayweb/replay/sw.js

ui.js:199 Error during service worker registration: TypeError: Failed to register a ServiceWorker for scope ('https://docuver.se/replay/') with script ('https://docuver.se/replay/sw.js'): A bad HTTP response code (404) was received when fetching the script.

while it works if saved on https://docuver.se/replay/sw.js

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.