Datasets:
shivendrra
commited on
Commit
•
6cdf09c
1
Parent(s):
9aa57be
adding data collection files
Browse files- Transcript Collection/TestDataCollector.py +130 -0
- Transcript Collection/YTFineTuneDataCollector.py +85 -0
- Transcript Collection/channel_ids.json +114 -0
- Transcript Collection/channel_ids_snippet.json +12 -0
- Transcript Collection/transcriptCollector.py +76 -0
- Transcript Collection/videoUrls.json +1657 -0
- webscrapper/URLFetcher.py +50 -0
- webscrapper/__pycache__/URLFetcher.cpython-311.pyc +0 -0
- webscrapper/britannicaScrapper.py +52 -0
- webscrapper/fetchedTargetUrls.json +302 -0
- webscrapper/idk.py +44 -0
- webscrapper/search_queries.json +41 -0
Transcript Collection/TestDataCollector.py
ADDED
@@ -0,0 +1,130 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
"""
|
2 |
+
uses channel_ids to fetch all uploaded videos on that particular channel and their urls and writes it in a file
|
3 |
+
and then fetches captions from each of the video and write it into a .txt file
|
4 |
+
"""
|
5 |
+
|
6 |
+
import timeit
|
7 |
+
from googleapiclient.discovery import build
|
8 |
+
from dotenv import load_dotenv
|
9 |
+
import os
|
10 |
+
import json
|
11 |
+
|
12 |
+
load_dotenv()
|
13 |
+
api_key = os.getenv('yt_secret_key')
|
14 |
+
os.chdir('D:/Machine Learning/SLM-Project/')
|
15 |
+
youtube = build('youtube', 'v3', developerKey=api_key)
|
16 |
+
|
17 |
+
start_time = timeit.default_timer()
|
18 |
+
|
19 |
+
file_path = 'channelIDs.json'
|
20 |
+
with open(file_path, 'r') as file:
|
21 |
+
channelData = json.load(file)
|
22 |
+
|
23 |
+
def fetchVideoUrl(channelId):
|
24 |
+
next_page_token = None
|
25 |
+
videoIds = []
|
26 |
+
|
27 |
+
while True:
|
28 |
+
# fetches the channel's info
|
29 |
+
channelRes = youtube.channels().list(
|
30 |
+
part='contentDetails', id=channelId
|
31 |
+
).execute()
|
32 |
+
|
33 |
+
# uses the channel info and then fetches the playlist
|
34 |
+
if 'items' in channelRes and channelRes['items']:
|
35 |
+
playlistId = channelRes['items'][0]['contentDetails']['relatedPlaylists']['uploads']
|
36 |
+
|
37 |
+
# uses that playlist info and then fetches the links of uploaded videos
|
38 |
+
playlistResult = youtube.playlistItems().list(
|
39 |
+
part='contentDetails', playlistId=playlistId,
|
40 |
+
maxResults=100, pageToken=next_page_token
|
41 |
+
).execute()
|
42 |
+
|
43 |
+
# append videoIds from the current page
|
44 |
+
videoIds.extend([item['contentDetails']['videoId'] for item in playlistResult.get('items', [])])
|
45 |
+
|
46 |
+
next_page_token = playlistResult.get('nextPageToken')
|
47 |
+
|
48 |
+
if not next_page_token:
|
49 |
+
break
|
50 |
+
|
51 |
+
return videoIds
|
52 |
+
|
53 |
+
# Initialize an empty list to store all videoIds
|
54 |
+
all_videoIds = []
|
55 |
+
|
56 |
+
for channel_id in channelData:
|
57 |
+
videoIdUrls = fetchVideoUrl(channel_id)
|
58 |
+
all_videoIds.extend(videoIdUrls)
|
59 |
+
|
60 |
+
for channel_id in channelData:
|
61 |
+
videoIdUrls = fetchVideoUrl(channel_id)
|
62 |
+
|
63 |
+
vidFetchTime = timeit.default_timer()
|
64 |
+
|
65 |
+
print(len(videoIdUrls))
|
66 |
+
print(f"videos fetched in: {vidFetchTime - start_time} secs")
|
67 |
+
|
68 |
+
# converting videoIds into videoUrls
|
69 |
+
urlDict = []
|
70 |
+
for i in videoIdUrls:
|
71 |
+
videoLink = f"https://www.youtube.com/watch?v={i}"
|
72 |
+
urlDict.append(videoLink)
|
73 |
+
|
74 |
+
def convertToJson(results):
|
75 |
+
with open('videoUrls.json', 'w') as outfile:
|
76 |
+
json.dump(results, outfile, indent=2)
|
77 |
+
print('data written in JSON file successfully')
|
78 |
+
|
79 |
+
convertToJson(urlDict)
|
80 |
+
|
81 |
+
# get the captions from each video link, if available
|
82 |
+
from youtube_transcript_api import YouTubeTranscriptApi, TranscriptsDisabled
|
83 |
+
import logging
|
84 |
+
|
85 |
+
# Set up logging
|
86 |
+
logging.basicConfig(filename='youtube_fetch.log', level=logging.ERROR)
|
87 |
+
|
88 |
+
# Modify get_captions to store raw transcript data
|
89 |
+
def get_captions(vidId):
|
90 |
+
try:
|
91 |
+
raw_transcripts = []
|
92 |
+
videoNo = 0
|
93 |
+
for ids in vidId:
|
94 |
+
try:
|
95 |
+
captions = YouTubeTranscriptApi.get_transcript(
|
96 |
+
ids, languages=['en'], preserve_formatting=True
|
97 |
+
)
|
98 |
+
if captions:
|
99 |
+
formatted_captions = [{'text': caption['text']} for caption in captions]
|
100 |
+
raw_transcripts.append(formatted_captions)
|
101 |
+
videoNo += 1
|
102 |
+
else:
|
103 |
+
continue
|
104 |
+
except TranscriptsDisabled as e:
|
105 |
+
print(f"Transcripts are disabled for the video: {str(e)}")
|
106 |
+
except Exception as e:
|
107 |
+
logging.error(f"Error while fetching the videos: {str(e)}")
|
108 |
+
print(f"no of videos that had captions were: {videoNo}")
|
109 |
+
return raw_transcripts
|
110 |
+
except Exception as e:
|
111 |
+
logging.error(f"Error in getting captions: {str(e)}")
|
112 |
+
|
113 |
+
caption = get_captions(videoIdUrls)
|
114 |
+
|
115 |
+
capFetchTime = timeit.default_timer()
|
116 |
+
print(f"captions fetched in: {capFetchTime - vidFetchTime} secs")
|
117 |
+
|
118 |
+
# save those captions in a file, all of them in one
|
119 |
+
with open('Data/captions.txt', 'w', encoding='utf-8') as file:
|
120 |
+
for video_captions in caption:
|
121 |
+
for line in video_captions:
|
122 |
+
file.write(line['text'] + ' ')
|
123 |
+
|
124 |
+
print('captions file saved successfully!')
|
125 |
+
writingTime = timeit.default_timer()
|
126 |
+
print(f"file written in: {writingTime - capFetchTime} secs")
|
127 |
+
|
128 |
+
end_time = timeit.default_timer()
|
129 |
+
totalTime = (end_time - start_time)
|
130 |
+
print(f"total time taken: {totalTime} secs")
|
Transcript Collection/YTFineTuneDataCollector.py
ADDED
@@ -0,0 +1,85 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
"""
|
2 |
+
fetches the captions from each video uploaded on a particular youtube channel
|
3 |
+
by channel_id and then writes it in a json file as with title, index and transcript data
|
4 |
+
"""
|
5 |
+
|
6 |
+
from dotenv import load_dotenv
|
7 |
+
import logging
|
8 |
+
|
9 |
+
logging.basicConfig(filename='youtube_fetch.log', level=logging.ERROR)
|
10 |
+
load_dotenv()
|
11 |
+
|
12 |
+
import timeit
|
13 |
+
start_time = timeit.default_timer()
|
14 |
+
|
15 |
+
import os
|
16 |
+
os.chdir('d:/Machine Learning/SLM-Project/Data Collection/')
|
17 |
+
api_key = os.getenv('yt_secret_key')
|
18 |
+
|
19 |
+
from googleapiclient.discovery import build
|
20 |
+
from youtube_transcript_api import TranscriptsDisabled, YouTubeTranscriptApi
|
21 |
+
youtube = build('youtube', 'v3', developerKey=api_key)
|
22 |
+
|
23 |
+
import json
|
24 |
+
file_path = 'channel_ids.json'
|
25 |
+
with open(file_path, 'r') as file:
|
26 |
+
channelData = json.load(file)
|
27 |
+
|
28 |
+
videoNo = 0
|
29 |
+
for links in channelData:
|
30 |
+
next_page_token = None
|
31 |
+
vid_json = []
|
32 |
+
|
33 |
+
while True:
|
34 |
+
channelRes = youtube.channels().list(
|
35 |
+
part='contentDetails', id=links
|
36 |
+
).execute()
|
37 |
+
|
38 |
+
if 'items' in channelRes and channelRes['items']:
|
39 |
+
|
40 |
+
playlistId = channelRes['items'][0]['contentDetails']['relatedPlaylists']['uploads']
|
41 |
+
|
42 |
+
playlistResult = youtube.playlistItems().list(
|
43 |
+
part='contentDetails', playlistId=playlistId,
|
44 |
+
maxResults = 50, pageToken = next_page_token
|
45 |
+
).execute()
|
46 |
+
|
47 |
+
for item in playlistResult.get('items', []):
|
48 |
+
video_response = youtube.videos().list(
|
49 |
+
part='snippet',
|
50 |
+
id=[item['contentDetails']['videoId']]
|
51 |
+
).execute()
|
52 |
+
|
53 |
+
title = video_response['items'][0]['snippet']['title']
|
54 |
+
id = item['contentDetails']['videoId']
|
55 |
+
|
56 |
+
videoUrl = f"https://www.youtube.com/watch?v={id}"
|
57 |
+
try:
|
58 |
+
captions = YouTubeTranscriptApi.get_transcript(
|
59 |
+
id, languages=['en'], preserve_formatting=True
|
60 |
+
)
|
61 |
+
if captions:
|
62 |
+
formatted_captions = [{caption['text']} for caption in captions]
|
63 |
+
raw_transcripts = ' '.join(caption.pop() for caption in formatted_captions)
|
64 |
+
else:
|
65 |
+
continue
|
66 |
+
except TranscriptsDisabled as e:
|
67 |
+
print(F"There was an error while getting the captions: {e}")
|
68 |
+
except Exception as e:
|
69 |
+
logging.error(f"There was some error while fetching the video: {str(e)}")
|
70 |
+
|
71 |
+
video_data = {'title': title, 'video_id': id, 'captions': str(raw_transcripts)}
|
72 |
+
videoNo += 1
|
73 |
+
vid_json.append(video_data)
|
74 |
+
print(f"no of video with valid captions: {videoNo}")
|
75 |
+
next_page_token = playlistResult.get('nextPageToken')
|
76 |
+
|
77 |
+
if not next_page_token:
|
78 |
+
break
|
79 |
+
|
80 |
+
with open('finetune_data.json', 'w') as file:
|
81 |
+
json.dump(vid_json, file, indent=2)
|
82 |
+
|
83 |
+
end_time = timeit.default_timer()
|
84 |
+
print(f"file written, no of videos fetched were {videoNo}")
|
85 |
+
print(f"time taken to fetch the data {(end_time - start_time) /60} mins")
|
Transcript Collection/channel_ids.json
ADDED
@@ -0,0 +1,114 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
[
|
2 |
+
"UCb_MAhL8Thb3HJ_wPkH3gcw",
|
3 |
+
"UCA295QVkf9O1RQ8_-s3FVXg",
|
4 |
+
"UCpFFItkfZz1qz5PpHpqzYBw",
|
5 |
+
"UCY1kMZp36IQSyNx_9h4mpCg",
|
6 |
+
"UCA19mAJURyYHbJzhfpqhpCA",
|
7 |
+
"UCqnbDFdCpuN8CMEg0VuEBqA",
|
8 |
+
"UCddiUEpeqJcYeBxX1IVBKvQ",
|
9 |
+
"UCcefcZRL2oaA_uBNeo5UOWg",
|
10 |
+
"UCLXo7UDZvByw2ixzpQCufnA",
|
11 |
+
"UCsQoiOrh7jzKmE8NBofhTnQ",
|
12 |
+
"UCUyvQV2JsICeLZP4c_h40kA",
|
13 |
+
"UCvjgXvBlbQiydffZU7m1_aw",
|
14 |
+
"UCRI00CwLZdLRCWg5BdDOsNw",
|
15 |
+
"UCEIwxahdLz7bap-VDs9h35A",
|
16 |
+
"UC4bq21IPPbpu0Qrsl7LW0sw",
|
17 |
+
"UCR1IuLEqb6UEA_zQ81kwXfg",
|
18 |
+
"UCIlU5KDHKFSaebYviKfOidw",
|
19 |
+
"UCtYKe7-XbaDjpUwcU5x0bLg",
|
20 |
+
"UCBJycsmduvYEL83R_U4JriQ",
|
21 |
+
"UCRcgy6GzDeccI7dkbbBna3Q",
|
22 |
+
"UC3_BakzLfadvFrsnClMFWmQ",
|
23 |
+
"UCmGSJVG3mCRXVOP4yZrU1Dw",
|
24 |
+
"UCFN6lQpfY8XIRdhv9G-f4bg",
|
25 |
+
"UConJDkGk921yT9hISzFqpzw",
|
26 |
+
"UClWTCPVi-AU9TeCN6FkGARg",
|
27 |
+
"UCyHJ94JzwY92NsBVzJ2aE3Q",
|
28 |
+
"UCTqEu1wZDBju2tHkNP1dwzQ",
|
29 |
+
"UC6nSFpj9HTCZ5t-N3Rm3-HA",
|
30 |
+
"UCX6b17PVsYBQ0ip5gyeme-Q",
|
31 |
+
"UCONtPx56PSebXJOxbFv-2jQ",
|
32 |
+
"UCZYTClx2T1of7BRZ86-8fow",
|
33 |
+
"UCzWQYUVCpZqtN93H8RR44Qw",
|
34 |
+
"UCYbK_tjZ2OrIZFBvU6CCMiA",
|
35 |
+
"UCxzC4EngIsMrPmbm6Nxvb-A",
|
36 |
+
"UCcabW7890RKJzL968QWEykA",
|
37 |
+
"UCamLstJyCa-t5gfZegxsFMw",
|
38 |
+
"UC415bOPUcGSamy543abLmRA",
|
39 |
+
"UCpMcsdZf2KkAnfmxiq2MfMQ",
|
40 |
+
"UCqVEHtQoXHmUCfJ-9smpTSg",
|
41 |
+
"UCYO_jab_esuFRV4b17AJtAw",
|
42 |
+
"UCHnyfMqiRRG1u-2MsSQLbXA",
|
43 |
+
"UCsXVk37bltHxD1rDPwtNM8Q",
|
44 |
+
"UC9RM-iSvTu1uPJb8X5yp3EQ",
|
45 |
+
"UCZaT_X_mc0BI-djXOlfhqWQ",
|
46 |
+
"UCMiJRAwDNSNzuYeN2uWa0pA",
|
47 |
+
"UCHpw8xwDNhU9gdohEcJu4aA",
|
48 |
+
"UCK7tptUDHh-RYDsdxO1-5QQ",
|
49 |
+
"UCsooa4yRKGN_zEE8iknghZA",
|
50 |
+
"UC6n8I1UDTKP1IWjQMg6_TwA",
|
51 |
+
"UC8butISFwT-Wl7EV0hUK0BQ",
|
52 |
+
"UCgRQHK8Ttr1j9xCEpCAlgbQ",
|
53 |
+
"UCEBb1b_L6zDS3xTUrIALZOw",
|
54 |
+
"UCN0QBfKk0ZSytyX_16M11fA",
|
55 |
+
"UCBpxspUNl1Th33XbugiHJzw",
|
56 |
+
"UC3osNjJeuDdvyALIEP-nh0g",
|
57 |
+
"UCaSCt8s_4nfkRglWCvNSDrg",
|
58 |
+
"UCjgpFI5dU-D1-kh9H1muoxQ",
|
59 |
+
"UCBa659QWEk1AI4Tg--mrJ2A",
|
60 |
+
"UCdBK94H6oZT2Q7l0-b0xmMg",
|
61 |
+
"UCBA9cAuPy9L5IYYXqOduIvw",
|
62 |
+
"UCXjmz8dFzRJZrZY8eFiXNUQ",
|
63 |
+
"UClZbmi9JzfnB2CEb0fG8iew",
|
64 |
+
"UCUFoQUaVRt3MVFxqwPUMLCQ",
|
65 |
+
"UCgLxmJ8xER7Y7sywMN5SfWg",
|
66 |
+
"UCac1MisHGa0qtzf0oWlU8Zw",
|
67 |
+
"UCSIvk78tK2TiviLQn4fSHaw",
|
68 |
+
"UCUyvQV2JsICeLZP4c_h40kA",
|
69 |
+
"UCqFzWxSCi39LnW1JKFR3efg",
|
70 |
+
"UCqFzWxSCi39LnW1JKFR3efg",
|
71 |
+
"UCccjdJEay2hpb5scz61zY6Q",
|
72 |
+
"UC8CX0LD98EDXl4UYX1MDCXg",
|
73 |
+
"UC6VcWc1rAoWdBCM0JxrRQ3A",
|
74 |
+
"UCSHZKyawb77ixDdsGog4iWA",
|
75 |
+
"UCVHdvAX5-R8y5l9xp6nroBQ",
|
76 |
+
"UCTb6Oy0TXI03iEUdRMR9dnw",
|
77 |
+
"UCqoAEDirJPjEUFcF2FklnBA",
|
78 |
+
"UCccjdJEay2hpb5scz61zY6Q",
|
79 |
+
"UCNVBYBxWj9dMHqKEl_V8HBQ",
|
80 |
+
"UCNVBYBxWj9dMHqKEl_V8HBQ",
|
81 |
+
"UCb-vZWBeWA5Q2818JmmJiqQ",
|
82 |
+
"UChDKyKQ59fYz3JO2fl0Z6sg",
|
83 |
+
"UCupvZG-5ko_eiXAupbDfxWw",
|
84 |
+
"UCDrLGkZTcNCshOLiKi5NtEw",
|
85 |
+
"UCWOA1ZGywLbqmigxE4Qlvuw",
|
86 |
+
"UCrM7B7SL_g1edFOnmj-SDKg",
|
87 |
+
"UCUMZ7gohGI9HcU9VNsr2FJQ",
|
88 |
+
"UCF9imwPMSGz4Vq1NiTWCC7g",
|
89 |
+
"UCjmJDM5pRKbUlVIzDYYWb6g",
|
90 |
+
"UCrRttZIypNTA1Mrfwo745Sg",
|
91 |
+
"UC0k238zFx-Z8xFH0sxCrPJg",
|
92 |
+
"UCT9zcQNlyht7fRlcjmflRSA",
|
93 |
+
"UC0C-w0YjGpqDXGB8IHb662A",
|
94 |
+
"UCgQna2EqpzqzfBjlSmzT72w",
|
95 |
+
"UCeLHszkByNZtPKcaVXOCOQQ",
|
96 |
+
"UCjNRJBlxvvS0UXAT2Ack-QQ",
|
97 |
+
"UC-J-KZfRV8c13fOCkhXdLiQ",
|
98 |
+
"UCfM3zsQsOnfWNUppiycmBuw",
|
99 |
+
"UCNjHgaLpdy1IMNK57pYiKiQ",
|
100 |
+
"UCqECaJ8Gagnn7YCbPEzWH6g",
|
101 |
+
"UCb2HGwORFBo94DmRx4oLzow",
|
102 |
+
"UCi4EDAgjULwwNBHOg1aaCig",
|
103 |
+
"UCDPM_n1atn2ijUwHd0NNRQw",
|
104 |
+
"UCcgqSM4YEo5vVQpqwN-MaNw",
|
105 |
+
"UCoUM-UJ7rirJYP8CQ0EIaHA",
|
106 |
+
"UC0WP5P-ufpRfjbNrmOWwLBQ",
|
107 |
+
"UCBVjMGOIkavEAhyqpxJ73Dw",
|
108 |
+
"UCPHjpfnnGklkRBBTd0k6aHg",
|
109 |
+
"UCmHhviensDlGQeU8Yo80zdg",
|
110 |
+
"UC6IBMCQ6-d7p41KHxOsq4RA",
|
111 |
+
"UCiMhD4jzUqG-IgPzUmmytRQ",
|
112 |
+
"UCB0JSO6d5ysH2Mmqz5I9rIw",
|
113 |
+
"UC-lHJZR3Gqxm24_Vd_AJ5Yw"
|
114 |
+
]
|
Transcript Collection/channel_ids_snippet.json
ADDED
@@ -0,0 +1,12 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
[
|
2 |
+
"UCDPM_n1atn2ijUwHd0NNRQw",
|
3 |
+
"UCcgqSM4YEo5vVQpqwN-MaNw",
|
4 |
+
"UCoUM-UJ7rirJYP8CQ0EIaHA",
|
5 |
+
"UC0WP5P-ufpRfjbNrmOWwLBQ",
|
6 |
+
"UCBVjMGOIkavEAhyqpxJ73Dw",
|
7 |
+
"UCPHjpfnnGklkRBBTd0k6aHg",
|
8 |
+
"UCmHhviensDlGQeU8Yo80zdg",
|
9 |
+
"UC6IBMCQ6-d7p41KHxOsq4RA",
|
10 |
+
"UCiMhD4jzUqG-IgPzUmmytRQ",
|
11 |
+
"UCB0JSO6d5ysH2Mmqz5I9rIw"
|
12 |
+
]
|
Transcript Collection/transcriptCollector.py
ADDED
@@ -0,0 +1,76 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
import os
|
2 |
+
import json
|
3 |
+
from dotenv import load_dotenv
|
4 |
+
from googleapiclient.discovery import build
|
5 |
+
from youtube_transcript_api import TranscriptsDisabled, YouTubeTranscriptApi
|
6 |
+
import logging
|
7 |
+
import timeit
|
8 |
+
from tqdm import tqdm # Import tqdm
|
9 |
+
|
10 |
+
start_time = timeit.default_timer()
|
11 |
+
logging.basicConfig(filename='youtube_fetch.log', level=logging.ERROR)
|
12 |
+
load_dotenv()
|
13 |
+
|
14 |
+
api_key = os.getenv('yt_secret_key')
|
15 |
+
os.chdir("d:/Machine Learning/SLM-Project/")
|
16 |
+
youtube = build('youtube', 'v3', developerKey=api_key)
|
17 |
+
|
18 |
+
file_path = 'Data Collection/Transcript Collection/channel_ids_snippet.json'
|
19 |
+
with open(file_path, 'r') as file:
|
20 |
+
channelData = json.load(file)
|
21 |
+
|
22 |
+
videoNo = 0
|
23 |
+
for links in channelData:
|
24 |
+
next_page_token = None
|
25 |
+
videoIds = []
|
26 |
+
|
27 |
+
while True:
|
28 |
+
channelRes = youtube.channels().list(
|
29 |
+
part='contentDetails,snippet', id=links
|
30 |
+
).execute()
|
31 |
+
if 'items' in channelRes and channelRes['items']:
|
32 |
+
channel_name = channelRes["items"][0]["snippet"]["title"]
|
33 |
+
playlistId = channelRes['items'][0]['contentDetails']['relatedPlaylists']['uploads']
|
34 |
+
|
35 |
+
playlistResult = youtube.playlistItems().list(
|
36 |
+
part='contentDetails', playlistId=playlistId,
|
37 |
+
maxResults=100, pageToken=next_page_token
|
38 |
+
).execute()
|
39 |
+
|
40 |
+
videoIds.extend([item['contentDetails']['videoId'] for item in playlistResult.get('items', [])])
|
41 |
+
|
42 |
+
next_page_token = playlistResult.get('nextPageToken')
|
43 |
+
|
44 |
+
if not next_page_token:
|
45 |
+
break
|
46 |
+
|
47 |
+
with tqdm(total=len(videoIds), desc=f"Fetching '{channel_name}' videos") as pbar:
|
48 |
+
for ids in videoIds:
|
49 |
+
videoUrl = f"https://www.youtube.com/watch?v={ids}"
|
50 |
+
try:
|
51 |
+
raw_transcripts = []
|
52 |
+
try:
|
53 |
+
captions = YouTubeTranscriptApi.get_transcript(
|
54 |
+
ids, languages=['en'], preserve_formatting=True
|
55 |
+
)
|
56 |
+
if captions:
|
57 |
+
formatted_captions = [{'text': caption['text']} for caption in captions]
|
58 |
+
raw_transcripts.append(formatted_captions)
|
59 |
+
videoNo += 1
|
60 |
+
pbar.update(1)
|
61 |
+
else:
|
62 |
+
continue
|
63 |
+
except TranscriptsDisabled as e:
|
64 |
+
continue
|
65 |
+
except Exception as e:
|
66 |
+
logging.error(f"There was some error while fetching the video: {str(e)}")
|
67 |
+
except Exception as e:
|
68 |
+
logging.error(f"There was some error while getting the captions: {str(e)}")
|
69 |
+
|
70 |
+
with open('Data/caption files/new_data.txt', 'a', encoding='utf-8') as file:
|
71 |
+
for videoCaptions in raw_transcripts:
|
72 |
+
for line in videoCaptions:
|
73 |
+
file.write(line['text'] + ' ')
|
74 |
+
|
75 |
+
print(f"total {videoNo} videos were fetched")
|
76 |
+
print(f"time taken to execute the code is {(timeit.default_timer() - start_time) / 3600} hrs")
|
Transcript Collection/videoUrls.json
ADDED
@@ -0,0 +1,1657 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
[
|
2 |
+
"https://www.youtube.com/watch?v=eovPZkHCKk4",
|
3 |
+
"https://www.youtube.com/watch?v=Fv5SvRVds_w",
|
4 |
+
"https://www.youtube.com/watch?v=1ZKBaRsP1gY",
|
5 |
+
"https://www.youtube.com/watch?v=Xkuh6JqDiQc",
|
6 |
+
"https://www.youtube.com/watch?v=j_n6g-x3r6E",
|
7 |
+
"https://www.youtube.com/watch?v=m6OLXS8_PiM",
|
8 |
+
"https://www.youtube.com/watch?v=NqabT21d8VM",
|
9 |
+
"https://www.youtube.com/watch?v=saBoVaIOfQU",
|
10 |
+
"https://www.youtube.com/watch?v=52JUvgAfXlc",
|
11 |
+
"https://www.youtube.com/watch?v=9z4_leGaQQs",
|
12 |
+
"https://www.youtube.com/watch?v=UWhuHiL8Pug",
|
13 |
+
"https://www.youtube.com/watch?v=z-eC9eoaRm4",
|
14 |
+
"https://www.youtube.com/watch?v=CoBeQzc4vQc",
|
15 |
+
"https://www.youtube.com/watch?v=lmVakNtCYwQ",
|
16 |
+
"https://www.youtube.com/watch?v=lv1SpwwJEW8",
|
17 |
+
"https://www.youtube.com/watch?v=nf-Yy3EuZi0",
|
18 |
+
"https://www.youtube.com/watch?v=EyAdby3hMRM",
|
19 |
+
"https://www.youtube.com/watch?v=dL_H_74VP2w",
|
20 |
+
"https://www.youtube.com/watch?v=oRUjKZOhV6E",
|
21 |
+
"https://www.youtube.com/watch?v=W5hBL94EFMQ",
|
22 |
+
"https://www.youtube.com/watch?v=ujBFPKMQSlg",
|
23 |
+
"https://www.youtube.com/watch?v=a9FbqgOi-4g",
|
24 |
+
"https://www.youtube.com/watch?v=brZjzM75GjY",
|
25 |
+
"https://www.youtube.com/watch?v=n3TCKKAL3uo",
|
26 |
+
"https://www.youtube.com/watch?v=V4j606F6mvo",
|
27 |
+
"https://www.youtube.com/watch?v=pf1GvrUqeIA",
|
28 |
+
"https://www.youtube.com/watch?v=Vjvf684eyuQ",
|
29 |
+
"https://www.youtube.com/watch?v=ZlFF7A8nk0w",
|
30 |
+
"https://www.youtube.com/watch?v=mIsD1cXtmok",
|
31 |
+
"https://www.youtube.com/watch?v=QkD8wsiB-6c",
|
32 |
+
"https://www.youtube.com/watch?v=R2karaKGgkk",
|
33 |
+
"https://www.youtube.com/watch?v=pZz3tfXEFmU",
|
34 |
+
"https://www.youtube.com/watch?v=yeaQUhAOdtk",
|
35 |
+
"https://www.youtube.com/watch?v=1aMTvU40RlU",
|
36 |
+
"https://www.youtube.com/watch?v=12HDvYRYp9w",
|
37 |
+
"https://www.youtube.com/watch?v=R63DdEe_8aM",
|
38 |
+
"https://www.youtube.com/watch?v=UpmwhkNg5Dw",
|
39 |
+
"https://www.youtube.com/watch?v=8_NITp2JgvU",
|
40 |
+
"https://www.youtube.com/watch?v=PGmhLRKpfAE",
|
41 |
+
"https://www.youtube.com/watch?v=80hc9dV5St0",
|
42 |
+
"https://www.youtube.com/watch?v=DiheSWIxydk",
|
43 |
+
"https://www.youtube.com/watch?v=STff_wOQHn4",
|
44 |
+
"https://www.youtube.com/watch?v=6xvrKW2H_hA",
|
45 |
+
"https://www.youtube.com/watch?v=wAQyHqm9STo",
|
46 |
+
"https://www.youtube.com/watch?v=e9OsIj32w7U",
|
47 |
+
"https://www.youtube.com/watch?v=o_-1GRDRPfU",
|
48 |
+
"https://www.youtube.com/watch?v=5Z101RchIBA",
|
49 |
+
"https://www.youtube.com/watch?v=sxHu46YKnZg",
|
50 |
+
"https://www.youtube.com/watch?v=UKlyYvJJF5s",
|
51 |
+
"https://www.youtube.com/watch?v=TXjU4l5wrkk",
|
52 |
+
"https://www.youtube.com/watch?v=RSDnXELorhE",
|
53 |
+
"https://www.youtube.com/watch?v=V1R2yrmjmOQ",
|
54 |
+
"https://www.youtube.com/watch?v=9kaSKoBb7ew",
|
55 |
+
"https://www.youtube.com/watch?v=ZdFFL9wNsaY",
|
56 |
+
"https://www.youtube.com/watch?v=-_fqI0JNU6g",
|
57 |
+
"https://www.youtube.com/watch?v=ot3dT7c7jiE",
|
58 |
+
"https://www.youtube.com/watch?v=gYuHNpNhJO8",
|
59 |
+
"https://www.youtube.com/watch?v=TJAklSh_rjk",
|
60 |
+
"https://www.youtube.com/watch?v=9u20ZSKsQ90",
|
61 |
+
"https://www.youtube.com/watch?v=mQDegCqiVnU",
|
62 |
+
"https://www.youtube.com/watch?v=6ufC5eGpDeY",
|
63 |
+
"https://www.youtube.com/watch?v=J3AAvZjmeI8",
|
64 |
+
"https://www.youtube.com/watch?v=J5H-LCrN-5E",
|
65 |
+
"https://www.youtube.com/watch?v=K7uvrd94mrg",
|
66 |
+
"https://www.youtube.com/watch?v=1W8SXZ8h4YA",
|
67 |
+
"https://www.youtube.com/watch?v=WQhMj10KIpQ",
|
68 |
+
"https://www.youtube.com/watch?v=von_IMi97-w",
|
69 |
+
"https://www.youtube.com/watch?v=B3no7nxN6T0",
|
70 |
+
"https://www.youtube.com/watch?v=FYnr1llUVG0",
|
71 |
+
"https://www.youtube.com/watch?v=40Je_0Jef_o",
|
72 |
+
"https://www.youtube.com/watch?v=oUF8uYPjyQM",
|
73 |
+
"https://www.youtube.com/watch?v=k3e2Fs_-qp0",
|
74 |
+
"https://www.youtube.com/watch?v=eB9dwEXpYbw",
|
75 |
+
"https://www.youtube.com/watch?v=0skgKaJrv4Y",
|
76 |
+
"https://www.youtube.com/watch?v=JEbE92RIgh0",
|
77 |
+
"https://www.youtube.com/watch?v=0RKAqTjVQyc",
|
78 |
+
"https://www.youtube.com/watch?v=kggpgKea0lk",
|
79 |
+
"https://www.youtube.com/watch?v=Xj65jTCq1Rs",
|
80 |
+
"https://www.youtube.com/watch?v=MXzH3gYUkOQ",
|
81 |
+
"https://www.youtube.com/watch?v=s8eAUU4PVlw",
|
82 |
+
"https://www.youtube.com/watch?v=1cycO_x0ZVk",
|
83 |
+
"https://www.youtube.com/watch?v=riWh6Ljgu_M",
|
84 |
+
"https://www.youtube.com/watch?v=ol6xKUkYyhM",
|
85 |
+
"https://www.youtube.com/watch?v=_E5jKBUdIaM",
|
86 |
+
"https://www.youtube.com/watch?v=_y_CCiwKzQw",
|
87 |
+
"https://www.youtube.com/watch?v=344ULCbhAsE",
|
88 |
+
"https://www.youtube.com/watch?v=w4vwaltuAnA",
|
89 |
+
"https://www.youtube.com/watch?v=_-V-1rovXVI",
|
90 |
+
"https://www.youtube.com/watch?v=ILaU78Oo7XM",
|
91 |
+
"https://www.youtube.com/watch?v=_e0VofLJTIk",
|
92 |
+
"https://www.youtube.com/watch?v=mXbOY_iL-VM",
|
93 |
+
"https://www.youtube.com/watch?v=7DlYBJzAo6k",
|
94 |
+
"https://www.youtube.com/watch?v=46gM0dxwB4k",
|
95 |
+
"https://www.youtube.com/watch?v=lDfhxMwoyWo",
|
96 |
+
"https://www.youtube.com/watch?v=9MysP5WCrTo",
|
97 |
+
"https://www.youtube.com/watch?v=E7lc_2onXCI",
|
98 |
+
"https://www.youtube.com/watch?v=uiHtL95GiEw",
|
99 |
+
"https://www.youtube.com/watch?v=6U1fPH6lFNk",
|
100 |
+
"https://www.youtube.com/watch?v=eMjqJKviDBo",
|
101 |
+
"https://www.youtube.com/watch?v=eSoeqzskgrE",
|
102 |
+
"https://www.youtube.com/watch?v=rGVgjS98OsU",
|
103 |
+
"https://www.youtube.com/watch?v=7tuRJIkDcXg",
|
104 |
+
"https://www.youtube.com/watch?v=eQ5MyY3nLS8",
|
105 |
+
"https://www.youtube.com/watch?v=8u8kZSh5wHI",
|
106 |
+
"https://www.youtube.com/watch?v=9ImmGtnDyno",
|
107 |
+
"https://www.youtube.com/watch?v=MJhf0NWOsmE",
|
108 |
+
"https://www.youtube.com/watch?v=EKPFZPyQurA",
|
109 |
+
"https://www.youtube.com/watch?v=lJlIeGep_TM",
|
110 |
+
"https://www.youtube.com/watch?v=K0ldxCh3cnI",
|
111 |
+
"https://www.youtube.com/watch?v=pWxkhPxsH90",
|
112 |
+
"https://www.youtube.com/watch?v=z-k5uS7ALXk",
|
113 |
+
"https://www.youtube.com/watch?v=L-V1iLSnpns",
|
114 |
+
"https://www.youtube.com/watch?v=nH-kJR8nm6Y",
|
115 |
+
"https://www.youtube.com/watch?v=y2BVTW09vck",
|
116 |
+
"https://www.youtube.com/watch?v=cXNZUnY_4ug",
|
117 |
+
"https://www.youtube.com/watch?v=hIxiXHEBrYQ",
|
118 |
+
"https://www.youtube.com/watch?v=asLWBGtAhZk",
|
119 |
+
"https://www.youtube.com/watch?v=Cibnj75Lx88",
|
120 |
+
"https://www.youtube.com/watch?v=q6NDqMeiflg",
|
121 |
+
"https://www.youtube.com/watch?v=tS3hUkOx6Bo",
|
122 |
+
"https://www.youtube.com/watch?v=0NIZZNo4YMY",
|
123 |
+
"https://www.youtube.com/watch?v=O3oLLMHXk-g",
|
124 |
+
"https://www.youtube.com/watch?v=fLVCfKlMcAc",
|
125 |
+
"https://www.youtube.com/watch?v=V8Vtb0bn30M",
|
126 |
+
"https://www.youtube.com/watch?v=a2DgdsE86ts",
|
127 |
+
"https://www.youtube.com/watch?v=TNda3H63m0Q",
|
128 |
+
"https://www.youtube.com/watch?v=ruVMkGPYhCU",
|
129 |
+
"https://www.youtube.com/watch?v=lChJDQVkTGY",
|
130 |
+
"https://www.youtube.com/watch?v=kfNr2zUDEZc",
|
131 |
+
"https://www.youtube.com/watch?v=lMLPguOptzo",
|
132 |
+
"https://www.youtube.com/watch?v=ZHKDouaibDA",
|
133 |
+
"https://www.youtube.com/watch?v=24yjRbBah3w",
|
134 |
+
"https://www.youtube.com/watch?v=RexjMQJOfIc",
|
135 |
+
"https://www.youtube.com/watch?v=R964xCH6v9Q",
|
136 |
+
"https://www.youtube.com/watch?v=LmZfF9vH9rY",
|
137 |
+
"https://www.youtube.com/watch?v=tKvk6-Xs0kU",
|
138 |
+
"https://www.youtube.com/watch?v=mp-yVMiIo0A",
|
139 |
+
"https://www.youtube.com/watch?v=gmehUgOy5ok",
|
140 |
+
"https://www.youtube.com/watch?v=VuVDiniGnNg",
|
141 |
+
"https://www.youtube.com/watch?v=5tjV4RkBEwE",
|
142 |
+
"https://www.youtube.com/watch?v=S5vK5LRvC9w",
|
143 |
+
"https://www.youtube.com/watch?v=F4umCSwifXU",
|
144 |
+
"https://www.youtube.com/watch?v=xRM8ZmcG6Qw",
|
145 |
+
"https://www.youtube.com/watch?v=yH5Ds4_0lO8",
|
146 |
+
"https://www.youtube.com/watch?v=zmd7y6G0nDs",
|
147 |
+
"https://www.youtube.com/watch?v=tRBrmtqX1VA",
|
148 |
+
"https://www.youtube.com/watch?v=2-t54eTNe2M",
|
149 |
+
"https://www.youtube.com/watch?v=laPaezEsteI",
|
150 |
+
"https://www.youtube.com/watch?v=J1wJuXjrxDU",
|
151 |
+
"https://www.youtube.com/watch?v=k-NvVy6xqmE",
|
152 |
+
"https://www.youtube.com/watch?v=knkToma6PnE",
|
153 |
+
"https://www.youtube.com/watch?v=K5E8eeyAQLM",
|
154 |
+
"https://www.youtube.com/watch?v=Oy3DGsNO0Fg",
|
155 |
+
"https://www.youtube.com/watch?v=LAkFtka3UFw",
|
156 |
+
"https://www.youtube.com/watch?v=JcEg8tlQYmA",
|
157 |
+
"https://www.youtube.com/watch?v=uyVCneA_e3o",
|
158 |
+
"https://www.youtube.com/watch?v=Mcetu_75Dak",
|
159 |
+
"https://www.youtube.com/watch?v=zpcI_g_zrpk",
|
160 |
+
"https://www.youtube.com/watch?v=lScbCARaa48",
|
161 |
+
"https://www.youtube.com/watch?v=qlKx8uc_ppU",
|
162 |
+
"https://www.youtube.com/watch?v=ZoLk6GUKzU0",
|
163 |
+
"https://www.youtube.com/watch?v=o83k6ZdyWYY",
|
164 |
+
"https://www.youtube.com/watch?v=r01fv4IXZ68",
|
165 |
+
"https://www.youtube.com/watch?v=iTq08hvG7zM",
|
166 |
+
"https://www.youtube.com/watch?v=6ex2_u6YZzE",
|
167 |
+
"https://www.youtube.com/watch?v=TnlCRoBAcuw",
|
168 |
+
"https://www.youtube.com/watch?v=65bNr6D0Db0",
|
169 |
+
"https://www.youtube.com/watch?v=rrupUTaCAUY",
|
170 |
+
"https://www.youtube.com/watch?v=DHXBacEH0qo",
|
171 |
+
"https://www.youtube.com/watch?v=WA7OjYIdpzI",
|
172 |
+
"https://www.youtube.com/watch?v=Uh4QGey2zTk",
|
173 |
+
"https://www.youtube.com/watch?v=K64wRD8eaus",
|
174 |
+
"https://www.youtube.com/watch?v=tfZYfYbONmI",
|
175 |
+
"https://www.youtube.com/watch?v=qpfo4Z1cMbY",
|
176 |
+
"https://www.youtube.com/watch?v=3bVGuXrd5mg",
|
177 |
+
"https://www.youtube.com/watch?v=pQboAGgLRNE",
|
178 |
+
"https://www.youtube.com/watch?v=_ukRHmIpo30",
|
179 |
+
"https://www.youtube.com/watch?v=jC878J-QGXM",
|
180 |
+
"https://www.youtube.com/watch?v=VYJtb2YXae8",
|
181 |
+
"https://www.youtube.com/watch?v=mBoAMsif9Gk",
|
182 |
+
"https://www.youtube.com/watch?v=Cf66NnJxNyU",
|
183 |
+
"https://www.youtube.com/watch?v=zz8yZYPizdI",
|
184 |
+
"https://www.youtube.com/watch?v=3dlZUlqda18",
|
185 |
+
"https://www.youtube.com/watch?v=9Sj9uPydzyQ",
|
186 |
+
"https://www.youtube.com/watch?v=oxgsOxc3_Q8",
|
187 |
+
"https://www.youtube.com/watch?v=ByyMXdrDNZA",
|
188 |
+
"https://www.youtube.com/watch?v=RlWDsKrBqmE",
|
189 |
+
"https://www.youtube.com/watch?v=4uXJHO-5tLs",
|
190 |
+
"https://www.youtube.com/watch?v=PLDFgKzWy3o",
|
191 |
+
"https://www.youtube.com/watch?v=t6jm8m5PEZE",
|
192 |
+
"https://www.youtube.com/watch?v=TDA4HbuEcxM",
|
193 |
+
"https://www.youtube.com/watch?v=0AUAPRvNrgk",
|
194 |
+
"https://www.youtube.com/watch?v=7qnapmKaeDY",
|
195 |
+
"https://www.youtube.com/watch?v=caUMtmxa5E8",
|
196 |
+
"https://www.youtube.com/watch?v=-nHLjWXIcXs",
|
197 |
+
"https://www.youtube.com/watch?v=lLSUjl4WatY",
|
198 |
+
"https://www.youtube.com/watch?v=JjJaKRv6w8c",
|
199 |
+
"https://www.youtube.com/watch?v=RcPDE7OhbNw",
|
200 |
+
"https://www.youtube.com/watch?v=wMJWNHkk920",
|
201 |
+
"https://www.youtube.com/watch?v=S_potLYuZSY",
|
202 |
+
"https://www.youtube.com/watch?v=jAr9d1yBxow",
|
203 |
+
"https://www.youtube.com/watch?v=8TPaCsQVwA8",
|
204 |
+
"https://www.youtube.com/watch?v=VcyjP9-1gR8",
|
205 |
+
"https://www.youtube.com/watch?v=sKas2Czx4KY",
|
206 |
+
"https://www.youtube.com/watch?v=5bp-0aaXYsA",
|
207 |
+
"https://www.youtube.com/watch?v=iCk-Owuu5Z0",
|
208 |
+
"https://www.youtube.com/watch?v=paEoh6yxvv0",
|
209 |
+
"https://www.youtube.com/watch?v=A4gKKDsNGdo",
|
210 |
+
"https://www.youtube.com/watch?v=C-0CebFpF_s",
|
211 |
+
"https://www.youtube.com/watch?v=AbdtNAYEKr4",
|
212 |
+
"https://www.youtube.com/watch?v=C164kYMGV1A",
|
213 |
+
"https://www.youtube.com/watch?v=ACstD5GCfQY",
|
214 |
+
"https://www.youtube.com/watch?v=XvgI0uCZAFE",
|
215 |
+
"https://www.youtube.com/watch?v=HAuwPue57Vs",
|
216 |
+
"https://www.youtube.com/watch?v=BlKVfJg4hHE",
|
217 |
+
"https://www.youtube.com/watch?v=RcJKtSIkdeQ",
|
218 |
+
"https://www.youtube.com/watch?v=mm5Diw7Bpws",
|
219 |
+
"https://www.youtube.com/watch?v=aBFC7mhDGjo",
|
220 |
+
"https://www.youtube.com/watch?v=Fx9ROEpORJk",
|
221 |
+
"https://www.youtube.com/watch?v=6IJwwjNpzZ8",
|
222 |
+
"https://www.youtube.com/watch?v=zFSHSwV6zCY",
|
223 |
+
"https://www.youtube.com/watch?v=SJQJwhVxi9s",
|
224 |
+
"https://www.youtube.com/watch?v=0-nthHT-J1k",
|
225 |
+
"https://www.youtube.com/watch?v=Qehsk_-Bjq4",
|
226 |
+
"https://www.youtube.com/watch?v=H7tUEWNL7lg",
|
227 |
+
"https://www.youtube.com/watch?v=B75Z5xwpL0I",
|
228 |
+
"https://www.youtube.com/watch?v=FBwFJeleth0",
|
229 |
+
"https://www.youtube.com/watch?v=eUvBuD5MjrQ",
|
230 |
+
"https://www.youtube.com/watch?v=MqMS8mYS5Yk",
|
231 |
+
"https://www.youtube.com/watch?v=qeokW1-mds8",
|
232 |
+
"https://www.youtube.com/watch?v=HnsKfdnKZVk",
|
233 |
+
"https://www.youtube.com/watch?v=2qry7AmdIn8",
|
234 |
+
"https://www.youtube.com/watch?v=rtAWPMLYMpQ",
|
235 |
+
"https://www.youtube.com/watch?v=wrRfOzhM2AE",
|
236 |
+
"https://www.youtube.com/watch?v=05nDoxdSzwY",
|
237 |
+
"https://www.youtube.com/watch?v=3EMOgOhw4A0",
|
238 |
+
"https://www.youtube.com/watch?v=oFIdIVngeYA",
|
239 |
+
"https://www.youtube.com/watch?v=_dA5jivg8-M",
|
240 |
+
"https://www.youtube.com/watch?v=yb-kYt1lpnI",
|
241 |
+
"https://www.youtube.com/watch?v=f0gN1x6sVTc",
|
242 |
+
"https://www.youtube.com/watch?v=TbmoGe1zoDc",
|
243 |
+
"https://www.youtube.com/watch?v=L7INxfISGFs",
|
244 |
+
"https://www.youtube.com/watch?v=l96IgQmXmhM",
|
245 |
+
"https://www.youtube.com/watch?v=jaCkZvrDtC8",
|
246 |
+
"https://www.youtube.com/watch?v=9CVvfFwfI4U",
|
247 |
+
"https://www.youtube.com/watch?v=m1nUCyC8hGA",
|
248 |
+
"https://www.youtube.com/watch?v=rOjTc3F5UB4",
|
249 |
+
"https://www.youtube.com/watch?v=gMaKhXkihGQ",
|
250 |
+
"https://www.youtube.com/watch?v=LN_--egst3s",
|
251 |
+
"https://www.youtube.com/watch?v=WwGRM4QWFlQ",
|
252 |
+
"https://www.youtube.com/watch?v=KtxITylE73U",
|
253 |
+
"https://www.youtube.com/watch?v=n3sEl4bB3qU",
|
254 |
+
"https://www.youtube.com/watch?v=KBXMan0Dafw",
|
255 |
+
"https://www.youtube.com/watch?v=S0dSm_ClcSw",
|
256 |
+
"https://www.youtube.com/watch?v=BB3qNWRaxGE",
|
257 |
+
"https://www.youtube.com/watch?v=jFOyJdP5mds",
|
258 |
+
"https://www.youtube.com/watch?v=Al0rBxHuVk4",
|
259 |
+
"https://www.youtube.com/watch?v=f0KLHiJLbL0",
|
260 |
+
"https://www.youtube.com/watch?v=O0mLfzbmqcg",
|
261 |
+
"https://www.youtube.com/watch?v=1O_YHxd_HWQ",
|
262 |
+
"https://www.youtube.com/watch?v=dphq5X-rMew",
|
263 |
+
"https://www.youtube.com/watch?v=lXshUNU65wI",
|
264 |
+
"https://www.youtube.com/watch?v=3Kzl2suBE2w",
|
265 |
+
"https://www.youtube.com/watch?v=Ef7hQ35bfIU",
|
266 |
+
"https://www.youtube.com/watch?v=SVcsDDABEkM",
|
267 |
+
"https://www.youtube.com/watch?v=S1m-KgEpoow",
|
268 |
+
"https://www.youtube.com/watch?v=iMiQeS1XywA",
|
269 |
+
"https://www.youtube.com/watch?v=s1-StAlw3aE",
|
270 |
+
"https://www.youtube.com/watch?v=_cQKsYYhF20",
|
271 |
+
"https://www.youtube.com/watch?v=twAP3buj9Og",
|
272 |
+
"https://www.youtube.com/watch?v=oPnDOxMXlUc",
|
273 |
+
"https://www.youtube.com/watch?v=4L77Qg53Rjw",
|
274 |
+
"https://www.youtube.com/watch?v=OTk4Q4Nm5CA",
|
275 |
+
"https://www.youtube.com/watch?v=1JStTYpfWZk",
|
276 |
+
"https://www.youtube.com/watch?v=ltwCjFp9B8s",
|
277 |
+
"https://www.youtube.com/watch?v=0V2qtmV2JGE",
|
278 |
+
"https://www.youtube.com/watch?v=eFdMUPTM_9Y",
|
279 |
+
"https://www.youtube.com/watch?v=jnxjRXwC1no",
|
280 |
+
"https://www.youtube.com/watch?v=lejDbulJN54",
|
281 |
+
"https://www.youtube.com/watch?v=__x4wOAGtg8",
|
282 |
+
"https://www.youtube.com/watch?v=ouMl_dbUjd8",
|
283 |
+
"https://www.youtube.com/watch?v=vPRgPs--LIU",
|
284 |
+
"https://www.youtube.com/watch?v=RWRSjNiTYBE",
|
285 |
+
"https://www.youtube.com/watch?v=BuhZauu188A",
|
286 |
+
"https://www.youtube.com/watch?v=MVu8QbxafJE",
|
287 |
+
"https://www.youtube.com/watch?v=sv0dQfRRrEQ",
|
288 |
+
"https://www.youtube.com/watch?v=AThIwfYfNrM",
|
289 |
+
"https://www.youtube.com/watch?v=cEsC5hNfPU4",
|
290 |
+
"https://www.youtube.com/watch?v=0iaj5966HV4",
|
291 |
+
"https://www.youtube.com/watch?v=UnV97eYP6YU",
|
292 |
+
"https://www.youtube.com/watch?v=oYfl4UCGBwk",
|
293 |
+
"https://www.youtube.com/watch?v=S9hbhiZ4mNM",
|
294 |
+
"https://www.youtube.com/watch?v=tWsSa9VtmTw",
|
295 |
+
"https://www.youtube.com/watch?v=Xsx6xqi0vzU",
|
296 |
+
"https://www.youtube.com/watch?v=EGG7sJBBnV0",
|
297 |
+
"https://www.youtube.com/watch?v=_DMhb1FWHso",
|
298 |
+
"https://www.youtube.com/watch?v=STsI6IbPbGQ",
|
299 |
+
"https://www.youtube.com/watch?v=uq8tKXhvanc",
|
300 |
+
"https://www.youtube.com/watch?v=lrAFaONyLtU",
|
301 |
+
"https://www.youtube.com/watch?v=Pm1tFhwq3kM",
|
302 |
+
"https://www.youtube.com/watch?v=waOUNwZA4aQ",
|
303 |
+
"https://www.youtube.com/watch?v=CIWKjBMYfBw",
|
304 |
+
"https://www.youtube.com/watch?v=WsUNylsiDH8",
|
305 |
+
"https://www.youtube.com/watch?v=b5O-19CHMRI",
|
306 |
+
"https://www.youtube.com/watch?v=sTTvilkyTLY",
|
307 |
+
"https://www.youtube.com/watch?v=I2GhFSInBqA",
|
308 |
+
"https://www.youtube.com/watch?v=LsYYl-h0c-4",
|
309 |
+
"https://www.youtube.com/watch?v=mXzgOa3cSeE",
|
310 |
+
"https://www.youtube.com/watch?v=XXcxgOzqgXQ",
|
311 |
+
"https://www.youtube.com/watch?v=JdYiPSl0xpo",
|
312 |
+
"https://www.youtube.com/watch?v=qXdjt8ZBQbE",
|
313 |
+
"https://www.youtube.com/watch?v=vVb43-3AT7s",
|
314 |
+
"https://www.youtube.com/watch?v=fS6TEbQWisM",
|
315 |
+
"https://www.youtube.com/watch?v=Kdv07eIC8Wg",
|
316 |
+
"https://www.youtube.com/watch?v=CaLOiGEDPJQ",
|
317 |
+
"https://www.youtube.com/watch?v=9maR-JiL5jY",
|
318 |
+
"https://www.youtube.com/watch?v=5YquWKsi0Q8",
|
319 |
+
"https://www.youtube.com/watch?v=SHYfsYQDr6M",
|
320 |
+
"https://www.youtube.com/watch?v=qIDkZAOjx9w",
|
321 |
+
"https://www.youtube.com/watch?v=Ia3abCiYX3w",
|
322 |
+
"https://www.youtube.com/watch?v=XWNovg15D0Q",
|
323 |
+
"https://www.youtube.com/watch?v=JE90x8fswlM",
|
324 |
+
"https://www.youtube.com/watch?v=axSh2T0uzYY",
|
325 |
+
"https://www.youtube.com/watch?v=orakE9t1tpo",
|
326 |
+
"https://www.youtube.com/watch?v=Ml-ZP-_e_o4",
|
327 |
+
"https://www.youtube.com/watch?v=DVFBUIGfcJk",
|
328 |
+
"https://www.youtube.com/watch?v=NFaTEvHd94Y",
|
329 |
+
"https://www.youtube.com/watch?v=2p3NIR8LYoo",
|
330 |
+
"https://www.youtube.com/watch?v=MgpQXz34bqs",
|
331 |
+
"https://www.youtube.com/watch?v=KC7YD98HixM",
|
332 |
+
"https://www.youtube.com/watch?v=pafA-RU3q7U",
|
333 |
+
"https://www.youtube.com/watch?v=3_hCLjUrK1E",
|
334 |
+
"https://www.youtube.com/watch?v=PIulbHyK0bc",
|
335 |
+
"https://www.youtube.com/watch?v=0o6ezu_h6iE",
|
336 |
+
"https://www.youtube.com/watch?v=s3ScJ_FwaZk",
|
337 |
+
"https://www.youtube.com/watch?v=ZQ6fSHr5TJg",
|
338 |
+
"https://www.youtube.com/watch?v=xXpB9FNmEOs",
|
339 |
+
"https://www.youtube.com/watch?v=y3mazk5j8Sg",
|
340 |
+
"https://www.youtube.com/watch?v=fFy-muKWmQ8",
|
341 |
+
"https://www.youtube.com/watch?v=AYEWsLdLmcc",
|
342 |
+
"https://www.youtube.com/watch?v=GD1d8wKIrps",
|
343 |
+
"https://www.youtube.com/watch?v=UcN6RXT7qpw",
|
344 |
+
"https://www.youtube.com/watch?v=2sueJoTVqxw",
|
345 |
+
"https://www.youtube.com/watch?v=0Flsg_mzG-M",
|
346 |
+
"https://www.youtube.com/watch?v=V48wmfc_iAA",
|
347 |
+
"https://www.youtube.com/watch?v=OM-wpoe_bs8",
|
348 |
+
"https://www.youtube.com/watch?v=iKHl__BEsD0",
|
349 |
+
"https://www.youtube.com/watch?v=8GqWTqDhahM",
|
350 |
+
"https://www.youtube.com/watch?v=NvFoKkWyZ5Y",
|
351 |
+
"https://www.youtube.com/watch?v=o2IeEsPki0I",
|
352 |
+
"https://www.youtube.com/watch?v=dHENnP11HC0",
|
353 |
+
"https://www.youtube.com/watch?v=0cjSEWZ8LM8",
|
354 |
+
"https://www.youtube.com/watch?v=c2cLBJqxplo",
|
355 |
+
"https://www.youtube.com/watch?v=qryWWGP0kKs",
|
356 |
+
"https://www.youtube.com/watch?v=1otF0N6surM",
|
357 |
+
"https://www.youtube.com/watch?v=4kfcsOhgzRA",
|
358 |
+
"https://www.youtube.com/watch?v=sbSpBl9vLd8",
|
359 |
+
"https://www.youtube.com/watch?v=bZ8S1vbfR7k",
|
360 |
+
"https://www.youtube.com/watch?v=rO47ISz1zNo",
|
361 |
+
"https://www.youtube.com/watch?v=t6V9i8fFADI",
|
362 |
+
"https://www.youtube.com/watch?v=0fhaEIlGux4",
|
363 |
+
"https://www.youtube.com/watch?v=fVKjzvDVGPs",
|
364 |
+
"https://www.youtube.com/watch?v=EXF-9GtHsek",
|
365 |
+
"https://www.youtube.com/watch?v=ChzL17zV9hA",
|
366 |
+
"https://www.youtube.com/watch?v=Ha6yUxze1vk",
|
367 |
+
"https://www.youtube.com/watch?v=SZ8HlNGMolw",
|
368 |
+
"https://www.youtube.com/watch?v=_g2CaF12xxw",
|
369 |
+
"https://www.youtube.com/watch?v=mzZTLT8WpcQ",
|
370 |
+
"https://www.youtube.com/watch?v=W1IYd5vJ6og",
|
371 |
+
"https://www.youtube.com/watch?v=6nWZ15JeZnc",
|
372 |
+
"https://www.youtube.com/watch?v=WMRip0eRER8",
|
373 |
+
"https://www.youtube.com/watch?v=DxJuuWUzQzI",
|
374 |
+
"https://www.youtube.com/watch?v=lUTvB1O8eEg",
|
375 |
+
"https://www.youtube.com/watch?v=ixULmgsTHWk",
|
376 |
+
"https://www.youtube.com/watch?v=EiX3hTPGoCg",
|
377 |
+
"https://www.youtube.com/watch?v=qtSsbnR1Evs",
|
378 |
+
"https://www.youtube.com/watch?v=eky17clTEeQ",
|
379 |
+
"https://www.youtube.com/watch?v=2ty2J0s2W0c",
|
380 |
+
"https://www.youtube.com/watch?v=fsjvwQclGLo",
|
381 |
+
"https://www.youtube.com/watch?v=sCr3QCyGQAg",
|
382 |
+
"https://www.youtube.com/watch?v=B1BdVnpaBtY",
|
383 |
+
"https://www.youtube.com/watch?v=NVH7JewfgJg",
|
384 |
+
"https://www.youtube.com/watch?v=fgebKEYzgGg",
|
385 |
+
"https://www.youtube.com/watch?v=SF3eddlIy3U",
|
386 |
+
"https://www.youtube.com/watch?v=43BDpdMq_Ag",
|
387 |
+
"https://www.youtube.com/watch?v=Xk5pzLeHvdY",
|
388 |
+
"https://www.youtube.com/watch?v=YUbSpI0J9aQ",
|
389 |
+
"https://www.youtube.com/watch?v=pu2sKNJMH-k",
|
390 |
+
"https://www.youtube.com/watch?v=Ok5sKLXqynQ",
|
391 |
+
"https://www.youtube.com/watch?v=ho2IpTpgRUQ",
|
392 |
+
"https://www.youtube.com/watch?v=K3odScka55A",
|
393 |
+
"https://www.youtube.com/watch?v=ajpcHWBuV18",
|
394 |
+
"https://www.youtube.com/watch?v=vaNOuVgwPos",
|
395 |
+
"https://www.youtube.com/watch?v=4kqCCU6lNno",
|
396 |
+
"https://www.youtube.com/watch?v=34oI0yd5YUc",
|
397 |
+
"https://www.youtube.com/watch?v=Zcrsgdl_hP0",
|
398 |
+
"https://www.youtube.com/watch?v=yb0nsX2GHQ0",
|
399 |
+
"https://www.youtube.com/watch?v=kHgI6um1BMc",
|
400 |
+
"https://www.youtube.com/watch?v=LmiBASu41-A",
|
401 |
+
"https://www.youtube.com/watch?v=Z9cJQN6lw3w",
|
402 |
+
"https://www.youtube.com/watch?v=8z0l0yjBFmo",
|
403 |
+
"https://www.youtube.com/watch?v=2z7o3sRxA5g",
|
404 |
+
"https://www.youtube.com/watch?v=F6NKbQzo4aE",
|
405 |
+
"https://www.youtube.com/watch?v=mvA9gs5gxNY",
|
406 |
+
"https://www.youtube.com/watch?v=KQyAnKjD6W4",
|
407 |
+
"https://www.youtube.com/watch?v=HCfHQL4kLnw",
|
408 |
+
"https://www.youtube.com/watch?v=-pOYUX10Mcg",
|
409 |
+
"https://www.youtube.com/watch?v=B6Yg6bwllM4",
|
410 |
+
"https://www.youtube.com/watch?v=hqvOcr0uu9o",
|
411 |
+
"https://www.youtube.com/watch?v=ArffMWtdu-s",
|
412 |
+
"https://www.youtube.com/watch?v=vGQQbulRUjY",
|
413 |
+
"https://www.youtube.com/watch?v=iHpZV7ro7lU",
|
414 |
+
"https://www.youtube.com/watch?v=IUEN2TAqlmU",
|
415 |
+
"https://www.youtube.com/watch?v=XIaF5vfvrEs",
|
416 |
+
"https://www.youtube.com/watch?v=ybyib5pAq7Y",
|
417 |
+
"https://www.youtube.com/watch?v=QTA8j5wSTx4",
|
418 |
+
"https://www.youtube.com/watch?v=Yvhzm3_oBaM",
|
419 |
+
"https://www.youtube.com/watch?v=bDRWhEMz2B0",
|
420 |
+
"https://www.youtube.com/watch?v=2e8EwGibLAE",
|
421 |
+
"https://www.youtube.com/watch?v=mvQ62EdP-mc",
|
422 |
+
"https://www.youtube.com/watch?v=wmSXB7ukH4M",
|
423 |
+
"https://www.youtube.com/watch?v=JHveTVe542Y",
|
424 |
+
"https://www.youtube.com/watch?v=Dy5vHFyqY-Y",
|
425 |
+
"https://www.youtube.com/watch?v=YU2v38hRRbg",
|
426 |
+
"https://www.youtube.com/watch?v=Dql-qQZ1y70",
|
427 |
+
"https://www.youtube.com/watch?v=vYCTLs9iXKA",
|
428 |
+
"https://www.youtube.com/watch?v=rcC7InrYkqA",
|
429 |
+
"https://www.youtube.com/watch?v=NDQ_grwwgtM",
|
430 |
+
"https://www.youtube.com/watch?v=P8QVBt2hh9M",
|
431 |
+
"https://www.youtube.com/watch?v=xCIZd-BjgoI",
|
432 |
+
"https://www.youtube.com/watch?v=To8PwGTMBoY",
|
433 |
+
"https://www.youtube.com/watch?v=YidE46omiS8",
|
434 |
+
"https://www.youtube.com/watch?v=4Rnb0j-bNmM",
|
435 |
+
"https://www.youtube.com/watch?v=S4ugBZmctKA",
|
436 |
+
"https://www.youtube.com/watch?v=FoTE-6wWxXs",
|
437 |
+
"https://www.youtube.com/watch?v=WiCaNBRAxQM",
|
438 |
+
"https://www.youtube.com/watch?v=F07yTI0J3Qk",
|
439 |
+
"https://www.youtube.com/watch?v=ajavsMbCapY",
|
440 |
+
"https://www.youtube.com/watch?v=xRnpUptf7E0",
|
441 |
+
"https://www.youtube.com/watch?v=_7FWr2Nvf9I",
|
442 |
+
"https://www.youtube.com/watch?v=8yNkBic7GfI",
|
443 |
+
"https://www.youtube.com/watch?v=-ZDZtBRTyeI",
|
444 |
+
"https://www.youtube.com/watch?v=S5LrQv496Iw",
|
445 |
+
"https://www.youtube.com/watch?v=SHePglP28CM",
|
446 |
+
"https://www.youtube.com/watch?v=HuEyrLbJ25w",
|
447 |
+
"https://www.youtube.com/watch?v=ETPogv1zq08",
|
448 |
+
"https://www.youtube.com/watch?v=lFJ37ri-Saw",
|
449 |
+
"https://www.youtube.com/watch?v=1kBQ0qlHz8M",
|
450 |
+
"https://www.youtube.com/watch?v=XB-X2NH0rec",
|
451 |
+
"https://www.youtube.com/watch?v=Wk0872XhnHk",
|
452 |
+
"https://www.youtube.com/watch?v=1Veo_T4a5dM",
|
453 |
+
"https://www.youtube.com/watch?v=Bzuk13Ftxgo",
|
454 |
+
"https://www.youtube.com/watch?v=jk1eTURC8sA",
|
455 |
+
"https://www.youtube.com/watch?v=wFpfYTYupKA",
|
456 |
+
"https://www.youtube.com/watch?v=al3qY8ZMHEc",
|
457 |
+
"https://www.youtube.com/watch?v=exUNdTmmSfs",
|
458 |
+
"https://www.youtube.com/watch?v=2w94NJqEOA0",
|
459 |
+
"https://www.youtube.com/watch?v=QfAXbGInwno",
|
460 |
+
"https://www.youtube.com/watch?v=-S_f-huz-EU",
|
461 |
+
"https://www.youtube.com/watch?v=_cj_8_upaVo",
|
462 |
+
"https://www.youtube.com/watch?v=Y5_37k9HdJw",
|
463 |
+
"https://www.youtube.com/watch?v=lG7OmThrq5g",
|
464 |
+
"https://www.youtube.com/watch?v=7lrrXsXXgok",
|
465 |
+
"https://www.youtube.com/watch?v=muy5zpqslRc",
|
466 |
+
"https://www.youtube.com/watch?v=BAsXGN2OX0c",
|
467 |
+
"https://www.youtube.com/watch?v=ScU2oWfWReg",
|
468 |
+
"https://www.youtube.com/watch?v=Za6JtPhscxE",
|
469 |
+
"https://www.youtube.com/watch?v=hwuujiHvduc",
|
470 |
+
"https://www.youtube.com/watch?v=QMGMyKUBdlk",
|
471 |
+
"https://www.youtube.com/watch?v=r2fxJI_cP58",
|
472 |
+
"https://www.youtube.com/watch?v=6IN4ZcZAUbA",
|
473 |
+
"https://www.youtube.com/watch?v=Djy3WNLz_mM",
|
474 |
+
"https://www.youtube.com/watch?v=hoTxiRWrvp8",
|
475 |
+
"https://www.youtube.com/watch?v=sZHuZkUUYM4",
|
476 |
+
"https://www.youtube.com/watch?v=2wVPyiyukQc",
|
477 |
+
"https://www.youtube.com/watch?v=omigBsOmtjw",
|
478 |
+
"https://www.youtube.com/watch?v=0EIFDSb7tWc",
|
479 |
+
"https://www.youtube.com/watch?v=v3MtBE37wHY",
|
480 |
+
"https://www.youtube.com/watch?v=bfUeekXbYzk",
|
481 |
+
"https://www.youtube.com/watch?v=XRUxTFWWWdY",
|
482 |
+
"https://www.youtube.com/watch?v=1ACXn-BDog8",
|
483 |
+
"https://www.youtube.com/watch?v=qp5CEcIyk94",
|
484 |
+
"https://www.youtube.com/watch?v=8RYdItBIuOU",
|
485 |
+
"https://www.youtube.com/watch?v=yw8a8n7ZAZg",
|
486 |
+
"https://www.youtube.com/watch?v=I9w841nrIBg",
|
487 |
+
"https://www.youtube.com/watch?v=W7I8gEhZfX4",
|
488 |
+
"https://www.youtube.com/watch?v=KOAOVbyfjA0",
|
489 |
+
"https://www.youtube.com/watch?v=Vo61TiAGwhk",
|
490 |
+
"https://www.youtube.com/watch?v=6FX-Iisvrj8",
|
491 |
+
"https://www.youtube.com/watch?v=MODobm9mWIk",
|
492 |
+
"https://www.youtube.com/watch?v=9Em0FSsI_VU",
|
493 |
+
"https://www.youtube.com/watch?v=Zu91meda2I8",
|
494 |
+
"https://www.youtube.com/watch?v=VJ86D_DtyWg",
|
495 |
+
"https://www.youtube.com/watch?v=ualUPur6iks",
|
496 |
+
"https://www.youtube.com/watch?v=HLxvq_M4218",
|
497 |
+
"https://www.youtube.com/watch?v=hHHCrf2-x6w",
|
498 |
+
"https://www.youtube.com/watch?v=srnA3cNTsXQ",
|
499 |
+
"https://www.youtube.com/watch?v=2qdd7kirwIk",
|
500 |
+
"https://www.youtube.com/watch?v=uWYTaXWO2t0",
|
501 |
+
"https://www.youtube.com/watch?v=n6QwnzbRUyA",
|
502 |
+
"https://www.youtube.com/watch?v=jLbJayQygzw",
|
503 |
+
"https://www.youtube.com/watch?v=r6ewlQs8CAQ",
|
504 |
+
"https://www.youtube.com/watch?v=XAFD-0aMkwE",
|
505 |
+
"https://www.youtube.com/watch?v=qWIVSmx0zPE",
|
506 |
+
"https://www.youtube.com/watch?v=3lrJYTsKdUM",
|
507 |
+
"https://www.youtube.com/watch?v=j05xm-8_wjc",
|
508 |
+
"https://www.youtube.com/watch?v=C2YxBfUmDt8",
|
509 |
+
"https://www.youtube.com/watch?v=HaraFkhonFo",
|
510 |
+
"https://www.youtube.com/watch?v=I6biQ_2RK3k",
|
511 |
+
"https://www.youtube.com/watch?v=O-3Mlj3MQ_Q",
|
512 |
+
"https://www.youtube.com/watch?v=P27HRClMf2U",
|
513 |
+
"https://www.youtube.com/watch?v=wK7xcWFgHoA",
|
514 |
+
"https://www.youtube.com/watch?v=o1iYSsFqVG4",
|
515 |
+
"https://www.youtube.com/watch?v=421fmflQX0E",
|
516 |
+
"https://www.youtube.com/watch?v=BE-cA4UK07c",
|
517 |
+
"https://www.youtube.com/watch?v=QYXT8hEI8tM",
|
518 |
+
"https://www.youtube.com/watch?v=C5NiAoT3xsY",
|
519 |
+
"https://www.youtube.com/watch?v=_CrbHvbvvMw",
|
520 |
+
"https://www.youtube.com/watch?v=FVIGhz3uwuQ",
|
521 |
+
"https://www.youtube.com/watch?v=xdw7WEMe9AI",
|
522 |
+
"https://www.youtube.com/watch?v=QyMusotiUAs",
|
523 |
+
"https://www.youtube.com/watch?v=h9d86ocFlxE",
|
524 |
+
"https://www.youtube.com/watch?v=-LKVUarhtvE",
|
525 |
+
"https://www.youtube.com/watch?v=dSQztKXR6k0",
|
526 |
+
"https://www.youtube.com/watch?v=UBTMmFcfUrk",
|
527 |
+
"https://www.youtube.com/watch?v=tcsdglJFT0M",
|
528 |
+
"https://www.youtube.com/watch?v=TPpoJGYlW54",
|
529 |
+
"https://www.youtube.com/watch?v=gcHkxP9adiM",
|
530 |
+
"https://www.youtube.com/watch?v=VBpmYDLECF8",
|
531 |
+
"https://www.youtube.com/watch?v=4c5fuOPCeYw",
|
532 |
+
"https://www.youtube.com/watch?v=0yT7hpF654k",
|
533 |
+
"https://www.youtube.com/watch?v=1PjNlBV-_s8",
|
534 |
+
"https://www.youtube.com/watch?v=gs1VWuQEd7Y",
|
535 |
+
"https://www.youtube.com/watch?v=tCvMtkEVqdA",
|
536 |
+
"https://www.youtube.com/watch?v=koGignAPGgs",
|
537 |
+
"https://www.youtube.com/watch?v=kXByOrRrO7c",
|
538 |
+
"https://www.youtube.com/watch?v=dmWL0I3oytw",
|
539 |
+
"https://www.youtube.com/watch?v=NjXPwwxX6Cc",
|
540 |
+
"https://www.youtube.com/watch?v=0k7xusbtTUw",
|
541 |
+
"https://www.youtube.com/watch?v=lFZGmzsvSlg",
|
542 |
+
"https://www.youtube.com/watch?v=HFyaW50GFOs",
|
543 |
+
"https://www.youtube.com/watch?v=utUOJ64X7u0",
|
544 |
+
"https://www.youtube.com/watch?v=UIge2mYdTtM",
|
545 |
+
"https://www.youtube.com/watch?v=qtzvIBAYP_8",
|
546 |
+
"https://www.youtube.com/watch?v=HdsWYOZ8iqM",
|
547 |
+
"https://www.youtube.com/watch?v=RYX9ahqceAI",
|
548 |
+
"https://www.youtube.com/watch?v=UpaKxemSDqA",
|
549 |
+
"https://www.youtube.com/watch?v=fXdBZWyiSLA",
|
550 |
+
"https://www.youtube.com/watch?v=wFqQm1541aA",
|
551 |
+
"https://www.youtube.com/watch?v=LLhrUYtbCi0",
|
552 |
+
"https://www.youtube.com/watch?v=TNQsmPf24go",
|
553 |
+
"https://www.youtube.com/watch?v=EidKI1Bdons",
|
554 |
+
"https://www.youtube.com/watch?v=k8Jsu7wSyHY",
|
555 |
+
"https://www.youtube.com/watch?v=88Cd5H3kmXQ",
|
556 |
+
"https://www.youtube.com/watch?v=5igJv_otlKE",
|
557 |
+
"https://www.youtube.com/watch?v=v3n8txX3144",
|
558 |
+
"https://www.youtube.com/watch?v=2BmN8C8IzRw",
|
559 |
+
"https://www.youtube.com/watch?v=XnK5mG5u8Hg",
|
560 |
+
"https://www.youtube.com/watch?v=7ds2eh2_Un0",
|
561 |
+
"https://www.youtube.com/watch?v=4jmMWohs1XM",
|
562 |
+
"https://www.youtube.com/watch?v=kXCGbAv8YPw",
|
563 |
+
"https://www.youtube.com/watch?v=ika0Ym-6074",
|
564 |
+
"https://www.youtube.com/watch?v=wtTMGLtF2WA",
|
565 |
+
"https://www.youtube.com/watch?v=YNQzqEAphjs",
|
566 |
+
"https://www.youtube.com/watch?v=bVzvZxW5n2Q",
|
567 |
+
"https://www.youtube.com/watch?v=gP6tOvTcpVE",
|
568 |
+
"https://www.youtube.com/watch?v=rU4MgZKI_9g",
|
569 |
+
"https://www.youtube.com/watch?v=cc0dqW2HCRc",
|
570 |
+
"https://www.youtube.com/watch?v=CipkJ_LQZZA",
|
571 |
+
"https://www.youtube.com/watch?v=WC3ZPgg0nds",
|
572 |
+
"https://www.youtube.com/watch?v=ZxSAnF7gijE",
|
573 |
+
"https://www.youtube.com/watch?v=6fbBjRnZ0j0",
|
574 |
+
"https://www.youtube.com/watch?v=IS1hCSsmH1E",
|
575 |
+
"https://www.youtube.com/watch?v=T6BzZcKyJiI",
|
576 |
+
"https://www.youtube.com/watch?v=lTtfqECMEb8",
|
577 |
+
"https://www.youtube.com/watch?v=xuiDuoRJkOY",
|
578 |
+
"https://www.youtube.com/watch?v=WJrgXN0GyDw",
|
579 |
+
"https://www.youtube.com/watch?v=80CKTOjjZFQ",
|
580 |
+
"https://www.youtube.com/watch?v=oGjRNbXeRXI",
|
581 |
+
"https://www.youtube.com/watch?v=e1_4JseKlO4",
|
582 |
+
"https://www.youtube.com/watch?v=SAZAKPUQMw0",
|
583 |
+
"https://www.youtube.com/watch?v=stznrpS3_Gc",
|
584 |
+
"https://www.youtube.com/watch?v=CVdn-2KE2bs",
|
585 |
+
"https://www.youtube.com/watch?v=tSA5HNFBwnk",
|
586 |
+
"https://www.youtube.com/watch?v=9vuqI2v2IRs",
|
587 |
+
"https://www.youtube.com/watch?v=db5JCEktO5M",
|
588 |
+
"https://www.youtube.com/watch?v=NMkZpuiEqh8",
|
589 |
+
"https://www.youtube.com/watch?v=GHpFjtuAYLQ",
|
590 |
+
"https://www.youtube.com/watch?v=Mn4VDwaV-oo",
|
591 |
+
"https://www.youtube.com/watch?v=IbTBehjdlc0",
|
592 |
+
"https://www.youtube.com/watch?v=oUeXaPaKF50",
|
593 |
+
"https://www.youtube.com/watch?v=6Ix2hRBf1V0",
|
594 |
+
"https://www.youtube.com/watch?v=KpamjJtXqFI",
|
595 |
+
"https://www.youtube.com/watch?v=UGqWRyBCHhw",
|
596 |
+
"https://www.youtube.com/watch?v=ylLTMYt24lA",
|
597 |
+
"https://www.youtube.com/watch?v=NtfHggkzmN8",
|
598 |
+
"https://www.youtube.com/watch?v=ZBxvAE_ux9U",
|
599 |
+
"https://www.youtube.com/watch?v=bYJZA86dPEo",
|
600 |
+
"https://www.youtube.com/watch?v=ZuDiPv-aajI",
|
601 |
+
"https://www.youtube.com/watch?v=1XOo1OJFAeQ",
|
602 |
+
"https://www.youtube.com/watch?v=x8fpeVICeGg",
|
603 |
+
"https://www.youtube.com/watch?v=hyWNFvt9Fck",
|
604 |
+
"https://www.youtube.com/watch?v=_V10kWLh71U",
|
605 |
+
"https://www.youtube.com/watch?v=drCGm4wW7ok",
|
606 |
+
"https://www.youtube.com/watch?v=smQC3CXalVg",
|
607 |
+
"https://www.youtube.com/watch?v=8VJ2ltCN4eo",
|
608 |
+
"https://www.youtube.com/watch?v=JTFBQcae4KA",
|
609 |
+
"https://www.youtube.com/watch?v=-3-bVRYRnSM",
|
610 |
+
"https://www.youtube.com/watch?v=d95dOH-7GHM",
|
611 |
+
"https://www.youtube.com/watch?v=ENw2y0ek1Jg",
|
612 |
+
"https://www.youtube.com/watch?v=xiiHjrewXNI",
|
613 |
+
"https://www.youtube.com/watch?v=Z9gQLELtbhg",
|
614 |
+
"https://www.youtube.com/watch?v=YHKFK6_pepo",
|
615 |
+
"https://www.youtube.com/watch?v=9aWYJugVTs4",
|
616 |
+
"https://www.youtube.com/watch?v=cUBg6Qp_N98",
|
617 |
+
"https://www.youtube.com/watch?v=5Ci5XTpPq94",
|
618 |
+
"https://www.youtube.com/watch?v=Y2nLieCOCxI",
|
619 |
+
"https://www.youtube.com/watch?v=_M3vTvm2cfM",
|
620 |
+
"https://www.youtube.com/watch?v=qJT2h5uGAC0",
|
621 |
+
"https://www.youtube.com/watch?v=vWhYlu7ZfYM",
|
622 |
+
"https://www.youtube.com/watch?v=neG6hoxhL8k",
|
623 |
+
"https://www.youtube.com/watch?v=NXHwelwmQPA",
|
624 |
+
"https://www.youtube.com/watch?v=QaIOfgz8FVY",
|
625 |
+
"https://www.youtube.com/watch?v=WSG0MnmUsEY",
|
626 |
+
"https://www.youtube.com/watch?v=lsEA9tGMFQQ",
|
627 |
+
"https://www.youtube.com/watch?v=tkD6QfeRil8",
|
628 |
+
"https://www.youtube.com/watch?v=ObKE1m3EmdE",
|
629 |
+
"https://www.youtube.com/watch?v=ZacOS8NBK6U",
|
630 |
+
"https://www.youtube.com/watch?v=rI_Iy1FoSn4",
|
631 |
+
"https://www.youtube.com/watch?v=Wy8iiC2Mqso",
|
632 |
+
"https://www.youtube.com/watch?v=XgPhKwrWBm4",
|
633 |
+
"https://www.youtube.com/watch?v=WlriwanO4e4",
|
634 |
+
"https://www.youtube.com/watch?v=FrqIA0PpAv8",
|
635 |
+
"https://www.youtube.com/watch?v=WjVVwMGJ9S8",
|
636 |
+
"https://www.youtube.com/watch?v=WesrJBgEmyw",
|
637 |
+
"https://www.youtube.com/watch?v=CZP6nogQYPg",
|
638 |
+
"https://www.youtube.com/watch?v=RWldvqO4AIY",
|
639 |
+
"https://www.youtube.com/watch?v=_c7AuSQdvow",
|
640 |
+
"https://www.youtube.com/watch?v=MiCftTLUzCI",
|
641 |
+
"https://www.youtube.com/watch?v=ddiOJLuu2mo",
|
642 |
+
"https://www.youtube.com/watch?v=TS4AM9mPX-8",
|
643 |
+
"https://www.youtube.com/watch?v=r5Ps1TZXAN8",
|
644 |
+
"https://www.youtube.com/watch?v=6_RdnVtfZPY",
|
645 |
+
"https://www.youtube.com/watch?v=LVQomlXMeek",
|
646 |
+
"https://www.youtube.com/watch?v=TuZ5An350sU",
|
647 |
+
"https://www.youtube.com/watch?v=VL18F8oHMrU",
|
648 |
+
"https://www.youtube.com/watch?v=Gt4jHLteXag",
|
649 |
+
"https://www.youtube.com/watch?v=2IBxAGXhBxk",
|
650 |
+
"https://www.youtube.com/watch?v=GxIDJWCbk6I",
|
651 |
+
"https://www.youtube.com/watch?v=A9asEJokafM",
|
652 |
+
"https://www.youtube.com/watch?v=LwBUfB7hU6A",
|
653 |
+
"https://www.youtube.com/watch?v=5HRU5yonyK8",
|
654 |
+
"https://www.youtube.com/watch?v=VzoZf4IAfAc",
|
655 |
+
"https://www.youtube.com/watch?v=WEhKSWYGluk",
|
656 |
+
"https://www.youtube.com/watch?v=v7xmkzVU29Q",
|
657 |
+
"https://www.youtube.com/watch?v=JTyPQFHB3KM",
|
658 |
+
"https://www.youtube.com/watch?v=-ex7f7KVl3I",
|
659 |
+
"https://www.youtube.com/watch?v=cMkHcZ5IwjU",
|
660 |
+
"https://www.youtube.com/watch?v=YX68ym4n7_c",
|
661 |
+
"https://www.youtube.com/watch?v=xTQTcfk5Bmw",
|
662 |
+
"https://www.youtube.com/watch?v=WwhcrpJTzGQ",
|
663 |
+
"https://www.youtube.com/watch?v=o3epEnJAyu4",
|
664 |
+
"https://www.youtube.com/watch?v=eUkeI_JkArU",
|
665 |
+
"https://www.youtube.com/watch?v=SXe9WCeccOw",
|
666 |
+
"https://www.youtube.com/watch?v=Z2swde6Z97w",
|
667 |
+
"https://www.youtube.com/watch?v=IIWlatQt4KE",
|
668 |
+
"https://www.youtube.com/watch?v=H2tuKiiznsY",
|
669 |
+
"https://www.youtube.com/watch?v=5v13wrVEQ2M",
|
670 |
+
"https://www.youtube.com/watch?v=2gEwEcYnewE",
|
671 |
+
"https://www.youtube.com/watch?v=pAoEHR4aW8I",
|
672 |
+
"https://www.youtube.com/watch?v=v9gLmBgUTV4",
|
673 |
+
"https://www.youtube.com/watch?v=9Ffceu672c4",
|
674 |
+
"https://www.youtube.com/watch?v=JoufCLlY8QE",
|
675 |
+
"https://www.youtube.com/watch?v=RNineSEoxjQ",
|
676 |
+
"https://www.youtube.com/watch?v=GeYyllI-Nhs",
|
677 |
+
"https://www.youtube.com/watch?v=oPPJ7GGDyAw",
|
678 |
+
"https://www.youtube.com/watch?v=4dgzJQsAXfI",
|
679 |
+
"https://www.youtube.com/watch?v=2yzMUs3badc",
|
680 |
+
"https://www.youtube.com/watch?v=OIVPi0bvmtI",
|
681 |
+
"https://www.youtube.com/watch?v=cyayif_nla8",
|
682 |
+
"https://www.youtube.com/watch?v=Xs87FijgVaA",
|
683 |
+
"https://www.youtube.com/watch?v=OCp0oJlrzyE",
|
684 |
+
"https://www.youtube.com/watch?v=0sKN7yYC42g",
|
685 |
+
"https://www.youtube.com/watch?v=R7N5a476DKQ",
|
686 |
+
"https://www.youtube.com/watch?v=UpqFaf8vQfk",
|
687 |
+
"https://www.youtube.com/watch?v=0LhKoefZ2QI",
|
688 |
+
"https://www.youtube.com/watch?v=ebx5Y5qOmTM",
|
689 |
+
"https://www.youtube.com/watch?v=pTwPHuE_HrU",
|
690 |
+
"https://www.youtube.com/watch?v=dBGw7uXc0eo",
|
691 |
+
"https://www.youtube.com/watch?v=g9bkQ7OiEdQ",
|
692 |
+
"https://www.youtube.com/watch?v=x-ItsPBTFO0",
|
693 |
+
"https://www.youtube.com/watch?v=beUhzQAkanM",
|
694 |
+
"https://www.youtube.com/watch?v=a9ottUEiIm8",
|
695 |
+
"https://www.youtube.com/watch?v=-dVwv4wPA88",
|
696 |
+
"https://www.youtube.com/watch?v=lztEnBFN5zU",
|
697 |
+
"https://www.youtube.com/watch?v=qaPQN0aW47I",
|
698 |
+
"https://www.youtube.com/watch?v=ySH5SudRwak",
|
699 |
+
"https://www.youtube.com/watch?v=4pITlnrvhrY",
|
700 |
+
"https://www.youtube.com/watch?v=EO6kYkoCEsA",
|
701 |
+
"https://www.youtube.com/watch?v=bWRO-M47eCY",
|
702 |
+
"https://www.youtube.com/watch?v=tWcV94G4rRI",
|
703 |
+
"https://www.youtube.com/watch?v=-1y8Nq0ndsk",
|
704 |
+
"https://www.youtube.com/watch?v=hpcZmuz2LGY",
|
705 |
+
"https://www.youtube.com/watch?v=r5tnzdZXMKs",
|
706 |
+
"https://www.youtube.com/watch?v=beixsgKr93o",
|
707 |
+
"https://www.youtube.com/watch?v=v394vC23HW0",
|
708 |
+
"https://www.youtube.com/watch?v=q7Eb4KVw4nE",
|
709 |
+
"https://www.youtube.com/watch?v=kiw1Zv-B02c",
|
710 |
+
"https://www.youtube.com/watch?v=qh70RfWqSBo",
|
711 |
+
"https://www.youtube.com/watch?v=VJhsjUPDulw",
|
712 |
+
"https://www.youtube.com/watch?v=_Wb2Rddn3nk",
|
713 |
+
"https://www.youtube.com/watch?v=4zfVOoqoo6U",
|
714 |
+
"https://www.youtube.com/watch?v=jOht6qmuG-k",
|
715 |
+
"https://www.youtube.com/watch?v=U93RImC-by4",
|
716 |
+
"https://www.youtube.com/watch?v=HMiBTj5XBxs",
|
717 |
+
"https://www.youtube.com/watch?v=5mhwDSHKEyM",
|
718 |
+
"https://www.youtube.com/watch?v=_xWxyxsVAsQ",
|
719 |
+
"https://www.youtube.com/watch?v=4tJJnC26_uw",
|
720 |
+
"https://www.youtube.com/watch?v=A505-D4IA_0",
|
721 |
+
"https://www.youtube.com/watch?v=-VI5zDQJoN8",
|
722 |
+
"https://www.youtube.com/watch?v=yOK3bF3jhXU",
|
723 |
+
"https://www.youtube.com/watch?v=NDa_SpvbeCQ",
|
724 |
+
"https://www.youtube.com/watch?v=q0cvGRUbusQ",
|
725 |
+
"https://www.youtube.com/watch?v=7DbdBIuFrIE",
|
726 |
+
"https://www.youtube.com/watch?v=RK1K78PyWDc",
|
727 |
+
"https://www.youtube.com/watch?v=55mpzrRHmFA",
|
728 |
+
"https://www.youtube.com/watch?v=HuUDhfKV3bk",
|
729 |
+
"https://www.youtube.com/watch?v=e3ZYaL0Q9os",
|
730 |
+
"https://www.youtube.com/watch?v=Vi2Vgym6lbw",
|
731 |
+
"https://www.youtube.com/watch?v=R_ViOLgvsuY",
|
732 |
+
"https://www.youtube.com/watch?v=TBDWomgRgWU",
|
733 |
+
"https://www.youtube.com/watch?v=bBn8SKZoWyQ",
|
734 |
+
"https://www.youtube.com/watch?v=NU0RqwweuWY",
|
735 |
+
"https://www.youtube.com/watch?v=Cijh3bdxwmE",
|
736 |
+
"https://www.youtube.com/watch?v=sifv1mPno7M",
|
737 |
+
"https://www.youtube.com/watch?v=axCBA3VD5dQ",
|
738 |
+
"https://www.youtube.com/watch?v=0ySL82WbcvU",
|
739 |
+
"https://www.youtube.com/watch?v=KNgA7dDs90E",
|
740 |
+
"https://www.youtube.com/watch?v=wvYeIfvtJM0",
|
741 |
+
"https://www.youtube.com/watch?v=PLt9fRYT92M",
|
742 |
+
"https://www.youtube.com/watch?v=2xvNhN1PsRw",
|
743 |
+
"https://www.youtube.com/watch?v=62tIvfP9A2w",
|
744 |
+
"https://www.youtube.com/watch?v=h3wHEWGwJIQ",
|
745 |
+
"https://www.youtube.com/watch?v=BJzjt_aFc00",
|
746 |
+
"https://www.youtube.com/watch?v=rYyacj_tYs4",
|
747 |
+
"https://www.youtube.com/watch?v=LIVlbwq5xX0",
|
748 |
+
"https://www.youtube.com/watch?v=Ln61AksUCjY",
|
749 |
+
"https://www.youtube.com/watch?v=HG3GD5am-UQ",
|
750 |
+
"https://www.youtube.com/watch?v=Itjc14Fm-gs",
|
751 |
+
"https://www.youtube.com/watch?v=371CRxnGkA8",
|
752 |
+
"https://www.youtube.com/watch?v=mICxKmCjF-4",
|
753 |
+
"https://www.youtube.com/watch?v=uMXumMJZYYI",
|
754 |
+
"https://www.youtube.com/watch?v=H1DXtQua074",
|
755 |
+
"https://www.youtube.com/watch?v=JXRxdgivnic",
|
756 |
+
"https://www.youtube.com/watch?v=OCjhCL2iqlQ",
|
757 |
+
"https://www.youtube.com/watch?v=F-KcMvdZ344",
|
758 |
+
"https://www.youtube.com/watch?v=TPCpXXBHFSA",
|
759 |
+
"https://www.youtube.com/watch?v=WYKUJgMRQ7A",
|
760 |
+
"https://www.youtube.com/watch?v=t2qZ2_tp-jY",
|
761 |
+
"https://www.youtube.com/watch?v=cPRK_ABldIk",
|
762 |
+
"https://www.youtube.com/watch?v=3jbpoxKzoIs",
|
763 |
+
"https://www.youtube.com/watch?v=yzDjjUAt3zc",
|
764 |
+
"https://www.youtube.com/watch?v=n5CYzHIgJFE",
|
765 |
+
"https://www.youtube.com/watch?v=fNqOGhDMm8k",
|
766 |
+
"https://www.youtube.com/watch?v=LIEWj8Kat_s",
|
767 |
+
"https://www.youtube.com/watch?v=BnuDT8R9UmE",
|
768 |
+
"https://www.youtube.com/watch?v=4HchGsN7eM4",
|
769 |
+
"https://www.youtube.com/watch?v=gOGDDh1thaQ",
|
770 |
+
"https://www.youtube.com/watch?v=pyLvAxs0MXU",
|
771 |
+
"https://www.youtube.com/watch?v=P81i66_tLlU",
|
772 |
+
"https://www.youtube.com/watch?v=Hd5Qs0fc_I0",
|
773 |
+
"https://www.youtube.com/watch?v=rVh7HP_wisw",
|
774 |
+
"https://www.youtube.com/watch?v=wZSRxfHMr5s",
|
775 |
+
"https://www.youtube.com/watch?v=wDVFq0NZgDg",
|
776 |
+
"https://www.youtube.com/watch?v=Qx_r-dP22Ps",
|
777 |
+
"https://www.youtube.com/watch?v=c2YInNlzMDQ",
|
778 |
+
"https://www.youtube.com/watch?v=-eO92ABfq2I",
|
779 |
+
"https://www.youtube.com/watch?v=P8MQTgdjcLE",
|
780 |
+
"https://www.youtube.com/watch?v=1UnIDL-eHOs",
|
781 |
+
"https://www.youtube.com/watch?v=U9wY8Wz6lCs",
|
782 |
+
"https://www.youtube.com/watch?v=E85HMNJix_o",
|
783 |
+
"https://www.youtube.com/watch?v=JVuiB4McVyU",
|
784 |
+
"https://www.youtube.com/watch?v=nknYtlOvaQ0",
|
785 |
+
"https://www.youtube.com/watch?v=BE9kOlBRHok",
|
786 |
+
"https://www.youtube.com/watch?v=morwlxWUFb8",
|
787 |
+
"https://www.youtube.com/watch?v=CxKxsYTIZXc",
|
788 |
+
"https://www.youtube.com/watch?v=SbjciJvacXY",
|
789 |
+
"https://www.youtube.com/watch?v=-CLttw5dl5w",
|
790 |
+
"https://www.youtube.com/watch?v=T1zzyGhA4-g",
|
791 |
+
"https://www.youtube.com/watch?v=WE94D5_d0z4",
|
792 |
+
"https://www.youtube.com/watch?v=e0xGHf8o-9k",
|
793 |
+
"https://www.youtube.com/watch?v=900bLSMuA4A",
|
794 |
+
"https://www.youtube.com/watch?v=hLrFyjGZ9NU",
|
795 |
+
"https://www.youtube.com/watch?v=OerszexsuLw",
|
796 |
+
"https://www.youtube.com/watch?v=AFOpoKBUyok",
|
797 |
+
"https://www.youtube.com/watch?v=DdpEYzvi8pI",
|
798 |
+
"https://www.youtube.com/watch?v=fd8reN4uoBM",
|
799 |
+
"https://www.youtube.com/watch?v=LTv6RkFnelM",
|
800 |
+
"https://www.youtube.com/watch?v=UI4g_amOTSg",
|
801 |
+
"https://www.youtube.com/watch?v=CgKpACQyhgk",
|
802 |
+
"https://www.youtube.com/watch?v=mlDBgOkxgS8",
|
803 |
+
"https://www.youtube.com/watch?v=wOV6Zu4_A5s",
|
804 |
+
"https://www.youtube.com/watch?v=DrwYtGf40hA",
|
805 |
+
"https://www.youtube.com/watch?v=MQyxG4vTyZ8",
|
806 |
+
"https://www.youtube.com/watch?v=z_yIn8V3UcU",
|
807 |
+
"https://www.youtube.com/watch?v=Rs7jHvh7v-4",
|
808 |
+
"https://www.youtube.com/watch?v=StW7oGSR_Mg",
|
809 |
+
"https://www.youtube.com/watch?v=K_jqKtnW2Ec",
|
810 |
+
"https://www.youtube.com/watch?v=2-MLV_RJ6KQ",
|
811 |
+
"https://www.youtube.com/watch?v=07SS5hx3eZw",
|
812 |
+
"https://www.youtube.com/watch?v=l2Pll0V4HdM",
|
813 |
+
"https://www.youtube.com/watch?v=qwqm8T_IFzk",
|
814 |
+
"https://www.youtube.com/watch?v=SxpQKzUNQdA",
|
815 |
+
"https://www.youtube.com/watch?v=-4vUklg2lCc",
|
816 |
+
"https://www.youtube.com/watch?v=P55XYp2KD2Y",
|
817 |
+
"https://www.youtube.com/watch?v=cdl8p9akJJw",
|
818 |
+
"https://www.youtube.com/watch?v=yI4shGV1EsM",
|
819 |
+
"https://www.youtube.com/watch?v=FxsGNyk4j1E",
|
820 |
+
"https://www.youtube.com/watch?v=Wn6A7ksNhS0",
|
821 |
+
"https://www.youtube.com/watch?v=9PNqVilJESg",
|
822 |
+
"https://www.youtube.com/watch?v=U2gvha4CipY",
|
823 |
+
"https://www.youtube.com/watch?v=ItWweMVi41s",
|
824 |
+
"https://www.youtube.com/watch?v=fsRP2_aN7Qw",
|
825 |
+
"https://www.youtube.com/watch?v=2PEt5RdNHNw",
|
826 |
+
"https://www.youtube.com/watch?v=4u-7BNRgESI",
|
827 |
+
"https://www.youtube.com/watch?v=JuRPK6drLbw",
|
828 |
+
"https://www.youtube.com/watch?v=rkiZGgugvJs",
|
829 |
+
"https://www.youtube.com/watch?v=Nd3zqXro_P0",
|
830 |
+
"https://www.youtube.com/watch?v=Iwa3vLoeNmQ",
|
831 |
+
"https://www.youtube.com/watch?v=sQvjD2-p98U",
|
832 |
+
"https://www.youtube.com/watch?v=z4Da0kuYnMI",
|
833 |
+
"https://www.youtube.com/watch?v=yD5mm8FI5hM",
|
834 |
+
"https://www.youtube.com/watch?v=P0HPHUzsHbI",
|
835 |
+
"https://www.youtube.com/watch?v=SE34K88LUek",
|
836 |
+
"https://www.youtube.com/watch?v=jGfvkjzLrNw",
|
837 |
+
"https://www.youtube.com/watch?v=DCGyLjBjuGI",
|
838 |
+
"https://www.youtube.com/watch?v=LtCZJI_6np8",
|
839 |
+
"https://www.youtube.com/watch?v=LzuDyq0-1LM",
|
840 |
+
"https://www.youtube.com/watch?v=5w30XgACSAg",
|
841 |
+
"https://www.youtube.com/watch?v=HXe9iZQpJ1M",
|
842 |
+
"https://www.youtube.com/watch?v=jNTyQPUoFHs",
|
843 |
+
"https://www.youtube.com/watch?v=8A1Aj1_EF9Y",
|
844 |
+
"https://www.youtube.com/watch?v=E21NATEP9QI",
|
845 |
+
"https://www.youtube.com/watch?v=gczHz0CPum4",
|
846 |
+
"https://www.youtube.com/watch?v=YYLzss58CLs",
|
847 |
+
"https://www.youtube.com/watch?v=U-mwFoev3OQ",
|
848 |
+
"https://www.youtube.com/watch?v=e_DsE9f5gyk",
|
849 |
+
"https://www.youtube.com/watch?v=FpKY9KaZJC0",
|
850 |
+
"https://www.youtube.com/watch?v=TImO_RquoW8",
|
851 |
+
"https://www.youtube.com/watch?v=WBaqDjPCH8k",
|
852 |
+
"https://www.youtube.com/watch?v=DloLoFd3Qvw",
|
853 |
+
"https://www.youtube.com/watch?v=vAjvQp69SS8",
|
854 |
+
"https://www.youtube.com/watch?v=q1Hl9bRzwEs",
|
855 |
+
"https://www.youtube.com/watch?v=-3h4Xt9No9o",
|
856 |
+
"https://www.youtube.com/watch?v=e681QNbHloE",
|
857 |
+
"https://www.youtube.com/watch?v=lyUNWpne9CE",
|
858 |
+
"https://www.youtube.com/watch?v=IiZ0UBpKpSk",
|
859 |
+
"https://www.youtube.com/watch?v=yQliow4ghtU",
|
860 |
+
"https://www.youtube.com/watch?v=Tc90I4FrLqM",
|
861 |
+
"https://www.youtube.com/watch?v=8v4Vof2dU9I",
|
862 |
+
"https://www.youtube.com/watch?v=tfREC-AkX20",
|
863 |
+
"https://www.youtube.com/watch?v=HXZGKhpv8eg",
|
864 |
+
"https://www.youtube.com/watch?v=2rnNHt84iRE",
|
865 |
+
"https://www.youtube.com/watch?v=msD4agiRTxM",
|
866 |
+
"https://www.youtube.com/watch?v=oooVC3zfDc8",
|
867 |
+
"https://www.youtube.com/watch?v=EvXROXiIpvQ",
|
868 |
+
"https://www.youtube.com/watch?v=m3F07R2-zW4",
|
869 |
+
"https://www.youtube.com/watch?v=QTCmkIxve0c",
|
870 |
+
"https://www.youtube.com/watch?v=rYcnh7hXOjE",
|
871 |
+
"https://www.youtube.com/watch?v=9zumV39nm60",
|
872 |
+
"https://www.youtube.com/watch?v=qcJeOphUtek",
|
873 |
+
"https://www.youtube.com/watch?v=tvM067ITfe4",
|
874 |
+
"https://www.youtube.com/watch?v=HOE5QDDKDlY",
|
875 |
+
"https://www.youtube.com/watch?v=6XxA-4Jp7AU",
|
876 |
+
"https://www.youtube.com/watch?v=mZCs2N2VjgM",
|
877 |
+
"https://www.youtube.com/watch?v=b33PN2NB2Do",
|
878 |
+
"https://www.youtube.com/watch?v=nvq94pW4l6o",
|
879 |
+
"https://www.youtube.com/watch?v=xgtLKeCkCiw",
|
880 |
+
"https://www.youtube.com/watch?v=gaKwjvxukvg",
|
881 |
+
"https://www.youtube.com/watch?v=RqaSvFqF3Lw",
|
882 |
+
"https://www.youtube.com/watch?v=8U6NKxsqU2M",
|
883 |
+
"https://www.youtube.com/watch?v=Qlf6VjRIHMw",
|
884 |
+
"https://www.youtube.com/watch?v=TM42O6kYbI8",
|
885 |
+
"https://www.youtube.com/watch?v=14NTlDvmzyc",
|
886 |
+
"https://www.youtube.com/watch?v=B_1TChFSOjU",
|
887 |
+
"https://www.youtube.com/watch?v=zDbq7y20wpw",
|
888 |
+
"https://www.youtube.com/watch?v=tC0IMn8lsdc",
|
889 |
+
"https://www.youtube.com/watch?v=NUMa0QkPzns",
|
890 |
+
"https://www.youtube.com/watch?v=GWH5vyi3lTk",
|
891 |
+
"https://www.youtube.com/watch?v=rwAyoX8D3YE",
|
892 |
+
"https://www.youtube.com/watch?v=T2LAd43JoP4",
|
893 |
+
"https://www.youtube.com/watch?v=VA_P3p7MI98",
|
894 |
+
"https://www.youtube.com/watch?v=tIfXsxtnGr4",
|
895 |
+
"https://www.youtube.com/watch?v=i6pw07k3GkM",
|
896 |
+
"https://www.youtube.com/watch?v=7rOQv_6L9fQ",
|
897 |
+
"https://www.youtube.com/watch?v=v1d7UvKWh6M",
|
898 |
+
"https://www.youtube.com/watch?v=aYDTjkTi-2o",
|
899 |
+
"https://www.youtube.com/watch?v=Fb9U1uoYCOc",
|
900 |
+
"https://www.youtube.com/watch?v=xZTD-00H1jE",
|
901 |
+
"https://www.youtube.com/watch?v=e22yH5hUQ_A",
|
902 |
+
"https://www.youtube.com/watch?v=z_3S2_41_FE",
|
903 |
+
"https://www.youtube.com/watch?v=uXxaURaFMWg",
|
904 |
+
"https://www.youtube.com/watch?v=NkpY2VvEEvc",
|
905 |
+
"https://www.youtube.com/watch?v=tfNzMKvoVOU",
|
906 |
+
"https://www.youtube.com/watch?v=lOEqzt36JEM",
|
907 |
+
"https://www.youtube.com/watch?v=8EOxtY3M6Co",
|
908 |
+
"https://www.youtube.com/watch?v=rELHUMNt4HM",
|
909 |
+
"https://www.youtube.com/watch?v=DipzS0VH4PA",
|
910 |
+
"https://www.youtube.com/watch?v=kfPNxNIDHrA",
|
911 |
+
"https://www.youtube.com/watch?v=sOow2__jSlY",
|
912 |
+
"https://www.youtube.com/watch?v=d1BRw32nMqg",
|
913 |
+
"https://www.youtube.com/watch?v=KcrAkPNB8jc",
|
914 |
+
"https://www.youtube.com/watch?v=X6wzFliHRbo",
|
915 |
+
"https://www.youtube.com/watch?v=_Ch5ClOB9AE",
|
916 |
+
"https://www.youtube.com/watch?v=48SbgzxKW-E",
|
917 |
+
"https://www.youtube.com/watch?v=XKVDXbIpW9Q",
|
918 |
+
"https://www.youtube.com/watch?v=XspEs1x9cPU",
|
919 |
+
"https://www.youtube.com/watch?v=jywkm-NEgmk",
|
920 |
+
"https://www.youtube.com/watch?v=WKfVxoPO_Qc",
|
921 |
+
"https://www.youtube.com/watch?v=Cjzvvgmg1NU",
|
922 |
+
"https://www.youtube.com/watch?v=5qx2WFpNTPs",
|
923 |
+
"https://www.youtube.com/watch?v=P_8INf4SKmc",
|
924 |
+
"https://www.youtube.com/watch?v=O6BODAJVYc8",
|
925 |
+
"https://www.youtube.com/watch?v=l2StCpw8z-s",
|
926 |
+
"https://www.youtube.com/watch?v=VJJ90qpzark",
|
927 |
+
"https://www.youtube.com/watch?v=_v-hzc6blGI",
|
928 |
+
"https://www.youtube.com/watch?v=rf3iHqE240I",
|
929 |
+
"https://www.youtube.com/watch?v=IJKjMIU55pE",
|
930 |
+
"https://www.youtube.com/watch?v=hCicRpU3biY",
|
931 |
+
"https://www.youtube.com/watch?v=HqXKEgTYZBQ",
|
932 |
+
"https://www.youtube.com/watch?v=hIWPzcqel9I",
|
933 |
+
"https://www.youtube.com/watch?v=-W6v2_0evUU",
|
934 |
+
"https://www.youtube.com/watch?v=nUnJQWO4YJY",
|
935 |
+
"https://www.youtube.com/watch?v=BU1w-yxQw1k",
|
936 |
+
"https://www.youtube.com/watch?v=EZSCtgfmEO0",
|
937 |
+
"https://www.youtube.com/watch?v=IfYRzxeMdGs",
|
938 |
+
"https://www.youtube.com/watch?v=SENzTt3ftiU",
|
939 |
+
"https://www.youtube.com/watch?v=LY_Yiu2U2Ts",
|
940 |
+
"https://www.youtube.com/watch?v=a-4_6bThk2E",
|
941 |
+
"https://www.youtube.com/watch?v=Mqaobr6w6_I",
|
942 |
+
"https://www.youtube.com/watch?v=tNla9nyRMmQ",
|
943 |
+
"https://www.youtube.com/watch?v=WeyLEe1T0yo",
|
944 |
+
"https://www.youtube.com/watch?v=ECch2g1_6PQ",
|
945 |
+
"https://www.youtube.com/watch?v=lOT0GOyw2pY",
|
946 |
+
"https://www.youtube.com/watch?v=VUbsFtLkGN8",
|
947 |
+
"https://www.youtube.com/watch?v=-n5JYSl_ioA",
|
948 |
+
"https://www.youtube.com/watch?v=aqNHc6ZH7P4",
|
949 |
+
"https://www.youtube.com/watch?v=1xbt0ACMbiA",
|
950 |
+
"https://www.youtube.com/watch?v=G_UHknhNbAQ",
|
951 |
+
"https://www.youtube.com/watch?v=60nDlMw5vFQ",
|
952 |
+
"https://www.youtube.com/watch?v=5HOijUtExiM",
|
953 |
+
"https://www.youtube.com/watch?v=lJFqvRwOiis",
|
954 |
+
"https://www.youtube.com/watch?v=_BVAJ3PXZ1k",
|
955 |
+
"https://www.youtube.com/watch?v=v5e4gwDGrNk",
|
956 |
+
"https://www.youtube.com/watch?v=TUmyygCMMGA",
|
957 |
+
"https://www.youtube.com/watch?v=iMtXqTmfta0",
|
958 |
+
"https://www.youtube.com/watch?v=wK0p27dqZs8",
|
959 |
+
"https://www.youtube.com/watch?v=Nd-9op64t2M",
|
960 |
+
"https://www.youtube.com/watch?v=__mZkioPp3E",
|
961 |
+
"https://www.youtube.com/watch?v=w2crPDgnHeo",
|
962 |
+
"https://www.youtube.com/watch?v=qBfyIQbxXPs",
|
963 |
+
"https://www.youtube.com/watch?v=9hdT8PgT19w",
|
964 |
+
"https://www.youtube.com/watch?v=58nPEe-TU-w",
|
965 |
+
"https://www.youtube.com/watch?v=216fJQOwjAE",
|
966 |
+
"https://www.youtube.com/watch?v=3Om4kr3nhsk",
|
967 |
+
"https://www.youtube.com/watch?v=dOkFXPblLpU",
|
968 |
+
"https://www.youtube.com/watch?v=Wx_2SVm9Jgo",
|
969 |
+
"https://www.youtube.com/watch?v=13bvILz1P7g",
|
970 |
+
"https://www.youtube.com/watch?v=2zsvmsxQvuc",
|
971 |
+
"https://www.youtube.com/watch?v=TVTnwSAFNsQ",
|
972 |
+
"https://www.youtube.com/watch?v=4WvKeYuwifc",
|
973 |
+
"https://www.youtube.com/watch?v=7G2lEMberCw",
|
974 |
+
"https://www.youtube.com/watch?v=HzzmqUoQobc",
|
975 |
+
"https://www.youtube.com/watch?v=YNooxN3AzBw",
|
976 |
+
"https://www.youtube.com/watch?v=eXyHRnDNH64",
|
977 |
+
"https://www.youtube.com/watch?v=oQyKpOJhUKY",
|
978 |
+
"https://www.youtube.com/watch?v=k1vE_LVBx4s",
|
979 |
+
"https://www.youtube.com/watch?v=C1wa2OyP_so",
|
980 |
+
"https://www.youtube.com/watch?v=WBetE_lRje8",
|
981 |
+
"https://www.youtube.com/watch?v=lCZCWjzQUM8",
|
982 |
+
"https://www.youtube.com/watch?v=-p6WWRarjNs",
|
983 |
+
"https://www.youtube.com/watch?v=7TJOjAKL7Qs",
|
984 |
+
"https://www.youtube.com/watch?v=q2KehxKQ3Zk",
|
985 |
+
"https://www.youtube.com/watch?v=Mw5T62dJzhQ",
|
986 |
+
"https://www.youtube.com/watch?v=oStLD-yYAy0",
|
987 |
+
"https://www.youtube.com/watch?v=cIsewG2g-1g",
|
988 |
+
"https://www.youtube.com/watch?v=c8f6us-Sjlo",
|
989 |
+
"https://www.youtube.com/watch?v=n54-eEvoMpg",
|
990 |
+
"https://www.youtube.com/watch?v=04axDDRVy_o",
|
991 |
+
"https://www.youtube.com/watch?v=4gKhm09PKPQ",
|
992 |
+
"https://www.youtube.com/watch?v=wOrmr5kT-48",
|
993 |
+
"https://www.youtube.com/watch?v=Lf3ER5Ope_s",
|
994 |
+
"https://www.youtube.com/watch?v=9W0WPPpCFaM",
|
995 |
+
"https://www.youtube.com/watch?v=CMfo-s9izIc",
|
996 |
+
"https://www.youtube.com/watch?v=3la8bsi4P-c",
|
997 |
+
"https://www.youtube.com/watch?v=PXG1e4r5qeQ",
|
998 |
+
"https://www.youtube.com/watch?v=YSVlSmZWzm0",
|
999 |
+
"https://www.youtube.com/watch?v=GGm0FQ6i74U",
|
1000 |
+
"https://www.youtube.com/watch?v=F2uJvwiSZAQ",
|
1001 |
+
"https://www.youtube.com/watch?v=TJ5C7TsBsao",
|
1002 |
+
"https://www.youtube.com/watch?v=9aGRHOpMRUg",
|
1003 |
+
"https://www.youtube.com/watch?v=QhN4wBfQ9yI",
|
1004 |
+
"https://www.youtube.com/watch?v=UzYDqQDNFzc",
|
1005 |
+
"https://www.youtube.com/watch?v=VIY0FF3TE_E",
|
1006 |
+
"https://www.youtube.com/watch?v=QpKypvDjiPM",
|
1007 |
+
"https://www.youtube.com/watch?v=4x23uOvnyeI",
|
1008 |
+
"https://www.youtube.com/watch?v=S8DQ2kseTWw",
|
1009 |
+
"https://www.youtube.com/watch?v=1TV6JFxMEcI",
|
1010 |
+
"https://www.youtube.com/watch?v=_0TCrGtTEQM",
|
1011 |
+
"https://www.youtube.com/watch?v=9vFRZ_NFJpY",
|
1012 |
+
"https://www.youtube.com/watch?v=S1gUR8wM5vA",
|
1013 |
+
"https://www.youtube.com/watch?v=o2dvXWX3Sdw",
|
1014 |
+
"https://www.youtube.com/watch?v=WClgR6Q0aPE",
|
1015 |
+
"https://www.youtube.com/watch?v=WOX87ztiGWI",
|
1016 |
+
"https://www.youtube.com/watch?v=3eKBiEeag1A",
|
1017 |
+
"https://www.youtube.com/watch?v=Bxz6jShW-3E",
|
1018 |
+
"https://www.youtube.com/watch?v=I1VvZjploCI",
|
1019 |
+
"https://www.youtube.com/watch?v=Xo26Or1GGWE",
|
1020 |
+
"https://www.youtube.com/watch?v=QFbCPM1izaM",
|
1021 |
+
"https://www.youtube.com/watch?v=KhWPw5UZGJQ",
|
1022 |
+
"https://www.youtube.com/watch?v=wgDr26MvWKQ",
|
1023 |
+
"https://www.youtube.com/watch?v=KSO5vRGsD1M",
|
1024 |
+
"https://www.youtube.com/watch?v=RftqoygXXHk",
|
1025 |
+
"https://www.youtube.com/watch?v=wmVJyICw1C8",
|
1026 |
+
"https://www.youtube.com/watch?v=qjPc6KDVvG8",
|
1027 |
+
"https://www.youtube.com/watch?v=p_IHotHxIl8",
|
1028 |
+
"https://www.youtube.com/watch?v=yFsyfXEENPU",
|
1029 |
+
"https://www.youtube.com/watch?v=4Ltr7x8nO2M",
|
1030 |
+
"https://www.youtube.com/watch?v=sOo_aw-xgHQ",
|
1031 |
+
"https://www.youtube.com/watch?v=FHQqKWxF1Tg",
|
1032 |
+
"https://www.youtube.com/watch?v=8ry9X2FPfHM",
|
1033 |
+
"https://www.youtube.com/watch?v=BXmyPsqkP44",
|
1034 |
+
"https://www.youtube.com/watch?v=LVWTQcZbLgY",
|
1035 |
+
"https://www.youtube.com/watch?v=NpiDADw5Omw",
|
1036 |
+
"https://www.youtube.com/watch?v=fj9swy4i9jg",
|
1037 |
+
"https://www.youtube.com/watch?v=SkQKVMYyPoM",
|
1038 |
+
"https://www.youtube.com/watch?v=oNH3akWXaV8",
|
1039 |
+
"https://www.youtube.com/watch?v=Akm7ik-H_7U",
|
1040 |
+
"https://www.youtube.com/watch?v=CrpkZkwTvu0",
|
1041 |
+
"https://www.youtube.com/watch?v=veMFCFyOwFI",
|
1042 |
+
"https://www.youtube.com/watch?v=vxz8NA9gMYc",
|
1043 |
+
"https://www.youtube.com/watch?v=TCDSqgs8qNo",
|
1044 |
+
"https://www.youtube.com/watch?v=t-osG0F2MZM",
|
1045 |
+
"https://www.youtube.com/watch?v=HO2c_2XAXMw",
|
1046 |
+
"https://www.youtube.com/watch?v=LFMuLqZ1zaU",
|
1047 |
+
"https://www.youtube.com/watch?v=imcDUnEs--Y",
|
1048 |
+
"https://www.youtube.com/watch?v=NwbYpdGpx8U",
|
1049 |
+
"https://www.youtube.com/watch?v=lasXF7bFElw",
|
1050 |
+
"https://www.youtube.com/watch?v=3oOcWPI6X7s",
|
1051 |
+
"https://www.youtube.com/watch?v=ND0D3bVbM7Y",
|
1052 |
+
"https://www.youtube.com/watch?v=vly2iHFtOTE",
|
1053 |
+
"https://www.youtube.com/watch?v=FlfFmQUWkmE",
|
1054 |
+
"https://www.youtube.com/watch?v=NrCTofDfkOI",
|
1055 |
+
"https://www.youtube.com/watch?v=c5ZtB8nLRdU",
|
1056 |
+
"https://www.youtube.com/watch?v=TCI8lPvr6SM",
|
1057 |
+
"https://www.youtube.com/watch?v=LJjo1kJW6To",
|
1058 |
+
"https://www.youtube.com/watch?v=pF-Tdsvk0tI",
|
1059 |
+
"https://www.youtube.com/watch?v=Fx-KrvuiafE",
|
1060 |
+
"https://www.youtube.com/watch?v=9TMBWCcYs3o",
|
1061 |
+
"https://www.youtube.com/watch?v=03YjwYb7_J8",
|
1062 |
+
"https://www.youtube.com/watch?v=Q_PA5T6NLmY",
|
1063 |
+
"https://www.youtube.com/watch?v=TVe5XPU10Zc",
|
1064 |
+
"https://www.youtube.com/watch?v=k27mr6p-yhY",
|
1065 |
+
"https://www.youtube.com/watch?v=fD91dTeEzqE",
|
1066 |
+
"https://www.youtube.com/watch?v=CvSW5Ez0koM",
|
1067 |
+
"https://www.youtube.com/watch?v=zSjYra7cYqY",
|
1068 |
+
"https://www.youtube.com/watch?v=zCHMgAQfvZE",
|
1069 |
+
"https://www.youtube.com/watch?v=Am2sYBhg_hM",
|
1070 |
+
"https://www.youtube.com/watch?v=73bIlOzjFHo",
|
1071 |
+
"https://www.youtube.com/watch?v=6fKsBj2M-T8",
|
1072 |
+
"https://www.youtube.com/watch?v=XJ6fqQX_e9U",
|
1073 |
+
"https://www.youtube.com/watch?v=HNlgISa9Giw",
|
1074 |
+
"https://www.youtube.com/watch?v=9UJzVLXmBG4",
|
1075 |
+
"https://www.youtube.com/watch?v=LPLJgkVsXpE",
|
1076 |
+
"https://www.youtube.com/watch?v=Ogb7FyzQhbk",
|
1077 |
+
"https://www.youtube.com/watch?v=DhN8IhWGaaQ",
|
1078 |
+
"https://www.youtube.com/watch?v=vubuBrcAwtY",
|
1079 |
+
"https://www.youtube.com/watch?v=cADiZii4X8s",
|
1080 |
+
"https://www.youtube.com/watch?v=zRKuxK1-e0g",
|
1081 |
+
"https://www.youtube.com/watch?v=vS8Fzy3tGBo",
|
1082 |
+
"https://www.youtube.com/watch?v=IHJsoCAREsg",
|
1083 |
+
"https://www.youtube.com/watch?v=_bYic1R0i28",
|
1084 |
+
"https://www.youtube.com/watch?v=-qfI3DZmmQw",
|
1085 |
+
"https://www.youtube.com/watch?v=5rCIQ1rXfuM",
|
1086 |
+
"https://www.youtube.com/watch?v=BO44JlAElXM",
|
1087 |
+
"https://www.youtube.com/watch?v=qLc5QJsMgvw",
|
1088 |
+
"https://www.youtube.com/watch?v=XuwG75M5YHE",
|
1089 |
+
"https://www.youtube.com/watch?v=mmceh9nIbBY",
|
1090 |
+
"https://www.youtube.com/watch?v=poPLSgbSO6k",
|
1091 |
+
"https://www.youtube.com/watch?v=gMqZR3pqMjg",
|
1092 |
+
"https://www.youtube.com/watch?v=p0242yFKRpU",
|
1093 |
+
"https://www.youtube.com/watch?v=B0nYFJVi3Bs",
|
1094 |
+
"https://www.youtube.com/watch?v=WBZHdbfuFtw",
|
1095 |
+
"https://www.youtube.com/watch?v=CS2WvtlXzyI",
|
1096 |
+
"https://www.youtube.com/watch?v=6RlxySFrkIM",
|
1097 |
+
"https://www.youtube.com/watch?v=zfl8QgiyP68",
|
1098 |
+
"https://www.youtube.com/watch?v=rVnbL5Wm6eY",
|
1099 |
+
"https://www.youtube.com/watch?v=DcHGBaf_ggU",
|
1100 |
+
"https://www.youtube.com/watch?v=8p5n0TbRFEk",
|
1101 |
+
"https://www.youtube.com/watch?v=eyUqqA8wA0A",
|
1102 |
+
"https://www.youtube.com/watch?v=CTAnJTB9roI",
|
1103 |
+
"https://www.youtube.com/watch?v=3u0M4syuNo0",
|
1104 |
+
"https://www.youtube.com/watch?v=nFCPdVtB8gI",
|
1105 |
+
"https://www.youtube.com/watch?v=BxKfpt70rLI",
|
1106 |
+
"https://www.youtube.com/watch?v=XaR5kR8h4es",
|
1107 |
+
"https://www.youtube.com/watch?v=qu7cen0VOAA",
|
1108 |
+
"https://www.youtube.com/watch?v=hgEPHIaScck",
|
1109 |
+
"https://www.youtube.com/watch?v=BdcrP-5bDIk",
|
1110 |
+
"https://www.youtube.com/watch?v=DkZ7BJQupVA",
|
1111 |
+
"https://www.youtube.com/watch?v=nbmt_WeNBck",
|
1112 |
+
"https://www.youtube.com/watch?v=4pS4x8hXQ5c",
|
1113 |
+
"https://www.youtube.com/watch?v=jwZhFUZFGGE",
|
1114 |
+
"https://www.youtube.com/watch?v=y7rOjh4Lr78",
|
1115 |
+
"https://www.youtube.com/watch?v=HygD904iWTY",
|
1116 |
+
"https://www.youtube.com/watch?v=x7EglP5A2Hg",
|
1117 |
+
"https://www.youtube.com/watch?v=gRCZR_BbjTo",
|
1118 |
+
"https://www.youtube.com/watch?v=JFpanWNgfQY",
|
1119 |
+
"https://www.youtube.com/watch?v=tgcONmsp_AY",
|
1120 |
+
"https://www.youtube.com/watch?v=0FUqj6z_E_I",
|
1121 |
+
"https://www.youtube.com/watch?v=a3-GJB2htE4",
|
1122 |
+
"https://www.youtube.com/watch?v=QvmM5_7dKUk",
|
1123 |
+
"https://www.youtube.com/watch?v=-fUDIucr2eo",
|
1124 |
+
"https://www.youtube.com/watch?v=9e2IfMf4KhI",
|
1125 |
+
"https://www.youtube.com/watch?v=6ISOK-XtvYs",
|
1126 |
+
"https://www.youtube.com/watch?v=KEjgAXxrkXY",
|
1127 |
+
"https://www.youtube.com/watch?v=EuD2iNVMS_4",
|
1128 |
+
"https://www.youtube.com/watch?v=TJl_7AEUVlg",
|
1129 |
+
"https://www.youtube.com/watch?v=lxMWSmKieuc",
|
1130 |
+
"https://www.youtube.com/watch?v=ZR2GpiDE4FI",
|
1131 |
+
"https://www.youtube.com/watch?v=eZSe4xVXHhI",
|
1132 |
+
"https://www.youtube.com/watch?v=7ZohjYKGZJM",
|
1133 |
+
"https://www.youtube.com/watch?v=u9fbSGchSr0",
|
1134 |
+
"https://www.youtube.com/watch?v=Ry5jTjBhZpA",
|
1135 |
+
"https://www.youtube.com/watch?v=K8EVQdIUWBE",
|
1136 |
+
"https://www.youtube.com/watch?v=ZKk4uwFw3oM",
|
1137 |
+
"https://www.youtube.com/watch?v=uLgn3geod9Q",
|
1138 |
+
"https://www.youtube.com/watch?v=QHscMam4W7s",
|
1139 |
+
"https://www.youtube.com/watch?v=JRtJXnsUYBc",
|
1140 |
+
"https://www.youtube.com/watch?v=c4dNH-Nb2Ow",
|
1141 |
+
"https://www.youtube.com/watch?v=jCnWPbn-ZKo",
|
1142 |
+
"https://www.youtube.com/watch?v=7t5l7sjcjHU",
|
1143 |
+
"https://www.youtube.com/watch?v=UYMIgnw2FPU",
|
1144 |
+
"https://www.youtube.com/watch?v=2GbkvEvWaQs",
|
1145 |
+
"https://www.youtube.com/watch?v=VCdTyl141bA",
|
1146 |
+
"https://www.youtube.com/watch?v=j4ahNpQLgdk",
|
1147 |
+
"https://www.youtube.com/watch?v=bpbmWqQMzq0",
|
1148 |
+
"https://www.youtube.com/watch?v=SaX_PwxSh5M",
|
1149 |
+
"https://www.youtube.com/watch?v=IsOuSmSLGOs",
|
1150 |
+
"https://www.youtube.com/watch?v=cWVhUmUwDQA",
|
1151 |
+
"https://www.youtube.com/watch?v=rXMQuHmh-3w",
|
1152 |
+
"https://www.youtube.com/watch?v=qAOKOJhzYXk",
|
1153 |
+
"https://www.youtube.com/watch?v=luTPMHC7zHY",
|
1154 |
+
"https://www.youtube.com/watch?v=xHSnHj-zKF4",
|
1155 |
+
"https://www.youtube.com/watch?v=AfIxihGOaQ8",
|
1156 |
+
"https://www.youtube.com/watch?v=cYhnnN1eLxM",
|
1157 |
+
"https://www.youtube.com/watch?v=C-7fzHy3aG0",
|
1158 |
+
"https://www.youtube.com/watch?v=mr5j-Lkk7rw",
|
1159 |
+
"https://www.youtube.com/watch?v=j7F7Pil9tVQ",
|
1160 |
+
"https://www.youtube.com/watch?v=tM2Lsd-hanE",
|
1161 |
+
"https://www.youtube.com/watch?v=wAZswdN2baQ",
|
1162 |
+
"https://www.youtube.com/watch?v=-Of_yz-4iXs",
|
1163 |
+
"https://www.youtube.com/watch?v=vhZvHT4d5LI",
|
1164 |
+
"https://www.youtube.com/watch?v=cWHuWxeH9gU",
|
1165 |
+
"https://www.youtube.com/watch?v=3R3cvbLsbAk",
|
1166 |
+
"https://www.youtube.com/watch?v=Hlk3TBJdWwE",
|
1167 |
+
"https://www.youtube.com/watch?v=H76e8yIbXi4",
|
1168 |
+
"https://www.youtube.com/watch?v=ba63OVl1MHw",
|
1169 |
+
"https://www.youtube.com/watch?v=82DNYqurkxo",
|
1170 |
+
"https://www.youtube.com/watch?v=kCZtIn62lgs",
|
1171 |
+
"https://www.youtube.com/watch?v=DclppILcDcg",
|
1172 |
+
"https://www.youtube.com/watch?v=TSDC7CCyeGY",
|
1173 |
+
"https://www.youtube.com/watch?v=ahh9kLmI7Cs",
|
1174 |
+
"https://www.youtube.com/watch?v=aduTfKE5IOM",
|
1175 |
+
"https://www.youtube.com/watch?v=Rbdt6PXNJ18",
|
1176 |
+
"https://www.youtube.com/watch?v=M0FvLkXDKIs",
|
1177 |
+
"https://www.youtube.com/watch?v=mIYj_CmeRYk",
|
1178 |
+
"https://www.youtube.com/watch?v=URCz2uc4t20",
|
1179 |
+
"https://www.youtube.com/watch?v=K-NBcP0YUQI",
|
1180 |
+
"https://www.youtube.com/watch?v=Rlj6ghQYuJI",
|
1181 |
+
"https://www.youtube.com/watch?v=YgsxdAi7lD0",
|
1182 |
+
"https://www.youtube.com/watch?v=wBEZnvU2mz8",
|
1183 |
+
"https://www.youtube.com/watch?v=V7eqoL18zwg",
|
1184 |
+
"https://www.youtube.com/watch?v=KURTpn0Nuzs",
|
1185 |
+
"https://www.youtube.com/watch?v=vdsj-PIqR0g",
|
1186 |
+
"https://www.youtube.com/watch?v=W57ZDwOsxtk",
|
1187 |
+
"https://www.youtube.com/watch?v=LkWldwFdTPo",
|
1188 |
+
"https://www.youtube.com/watch?v=mh9B5UJbbRg",
|
1189 |
+
"https://www.youtube.com/watch?v=JxzZKcl7FeI",
|
1190 |
+
"https://www.youtube.com/watch?v=cPmUzIRUO10",
|
1191 |
+
"https://www.youtube.com/watch?v=aKyvGHycngM",
|
1192 |
+
"https://www.youtube.com/watch?v=xm4LO22-cyY",
|
1193 |
+
"https://www.youtube.com/watch?v=7kZ47paxVp0",
|
1194 |
+
"https://www.youtube.com/watch?v=Nldo1hvNIjI",
|
1195 |
+
"https://www.youtube.com/watch?v=EsAilPOdQCQ",
|
1196 |
+
"https://www.youtube.com/watch?v=IVjmIovOPek",
|
1197 |
+
"https://www.youtube.com/watch?v=NtJTbF7QcfI",
|
1198 |
+
"https://www.youtube.com/watch?v=CwwP3SiBIC8",
|
1199 |
+
"https://www.youtube.com/watch?v=qZe4KlJcDxU",
|
1200 |
+
"https://www.youtube.com/watch?v=YPE928xUKL4",
|
1201 |
+
"https://www.youtube.com/watch?v=sWLhbcEMWrY",
|
1202 |
+
"https://www.youtube.com/watch?v=nUKp5p77Ev4",
|
1203 |
+
"https://www.youtube.com/watch?v=qJZ1-LAFOTo",
|
1204 |
+
"https://www.youtube.com/watch?v=kIID5FDi2JQ",
|
1205 |
+
"https://www.youtube.com/watch?v=jBqoH-qx-os",
|
1206 |
+
"https://www.youtube.com/watch?v=8R-FQTY4KJk",
|
1207 |
+
"https://www.youtube.com/watch?v=dMlvidnkEwY",
|
1208 |
+
"https://www.youtube.com/watch?v=CCDeMbgX7vk",
|
1209 |
+
"https://www.youtube.com/watch?v=BShvYeyMm_Y",
|
1210 |
+
"https://www.youtube.com/watch?v=ImZD2JGxbmc",
|
1211 |
+
"https://www.youtube.com/watch?v=b-Dzm1QgQck",
|
1212 |
+
"https://www.youtube.com/watch?v=vfKgABPe__g",
|
1213 |
+
"https://www.youtube.com/watch?v=SZNZiu68mUU",
|
1214 |
+
"https://www.youtube.com/watch?v=8yU33cguGaY",
|
1215 |
+
"https://www.youtube.com/watch?v=GaYhcgwsfgg",
|
1216 |
+
"https://www.youtube.com/watch?v=yqmso0c9CBs",
|
1217 |
+
"https://www.youtube.com/watch?v=GvrjWlDgE4Y",
|
1218 |
+
"https://www.youtube.com/watch?v=20tIy89aimA",
|
1219 |
+
"https://www.youtube.com/watch?v=1PUtvNUSpHw",
|
1220 |
+
"https://www.youtube.com/watch?v=C8EVBapt3a0",
|
1221 |
+
"https://www.youtube.com/watch?v=RLCUphApmr8",
|
1222 |
+
"https://www.youtube.com/watch?v=-e3T3VHmEkg",
|
1223 |
+
"https://www.youtube.com/watch?v=Cg6U_9OjIVM",
|
1224 |
+
"https://www.youtube.com/watch?v=Z6R0NvVr164",
|
1225 |
+
"https://www.youtube.com/watch?v=0W2J6MtVR8M",
|
1226 |
+
"https://www.youtube.com/watch?v=KiCzv8cQZBA",
|
1227 |
+
"https://www.youtube.com/watch?v=QeBuWVkUL4A",
|
1228 |
+
"https://www.youtube.com/watch?v=sOgcY8WvVdU",
|
1229 |
+
"https://www.youtube.com/watch?v=xpExmP7ZAyQ",
|
1230 |
+
"https://www.youtube.com/watch?v=PQynVVwlcSE",
|
1231 |
+
"https://www.youtube.com/watch?v=-E4OqN9tJnw",
|
1232 |
+
"https://www.youtube.com/watch?v=K62JCFj7B88",
|
1233 |
+
"https://www.youtube.com/watch?v=Wq37SYtSnZs",
|
1234 |
+
"https://www.youtube.com/watch?v=yPMzWaaMX1g",
|
1235 |
+
"https://www.youtube.com/watch?v=v8O8Em_RPNg",
|
1236 |
+
"https://www.youtube.com/watch?v=IlLFTI24Qkw",
|
1237 |
+
"https://www.youtube.com/watch?v=g6o1eTHC99U",
|
1238 |
+
"https://www.youtube.com/watch?v=UdbOhvjIJxI",
|
1239 |
+
"https://www.youtube.com/watch?v=hJn8iUe6rwY",
|
1240 |
+
"https://www.youtube.com/watch?v=jOgPk5T1xi0",
|
1241 |
+
"https://www.youtube.com/watch?v=ggS6LBhH7Fo",
|
1242 |
+
"https://www.youtube.com/watch?v=SljrHOsbKcM",
|
1243 |
+
"https://www.youtube.com/watch?v=VUFQCIuVuLc",
|
1244 |
+
"https://www.youtube.com/watch?v=_Tlnk0RL5VM",
|
1245 |
+
"https://www.youtube.com/watch?v=rCT-UL2M8Gc",
|
1246 |
+
"https://www.youtube.com/watch?v=Penbo2MtTw8",
|
1247 |
+
"https://www.youtube.com/watch?v=ZORzsubQA_M",
|
1248 |
+
"https://www.youtube.com/watch?v=B6L9mS9ti6o",
|
1249 |
+
"https://www.youtube.com/watch?v=15WhOT_lQiA",
|
1250 |
+
"https://www.youtube.com/watch?v=95Tc0Rk2cNg",
|
1251 |
+
"https://www.youtube.com/watch?v=d2wy7Fp2fqw",
|
1252 |
+
"https://www.youtube.com/watch?v=E0uLbeQlwjw",
|
1253 |
+
"https://www.youtube.com/watch?v=9D420SOmL6U",
|
1254 |
+
"https://www.youtube.com/watch?v=lgz3p4cEXZU",
|
1255 |
+
"https://www.youtube.com/watch?v=lw08dtKt4oY",
|
1256 |
+
"https://www.youtube.com/watch?v=FtV0PV9MF88",
|
1257 |
+
"https://www.youtube.com/watch?v=9hIFDaGs8l8",
|
1258 |
+
"https://www.youtube.com/watch?v=13XU4fMlN3w",
|
1259 |
+
"https://www.youtube.com/watch?v=e31fNccOQSE",
|
1260 |
+
"https://www.youtube.com/watch?v=ZgJyhKEZ8QU",
|
1261 |
+
"https://www.youtube.com/watch?v=6Uhw6Qv2tSw",
|
1262 |
+
"https://www.youtube.com/watch?v=_5jnn1AIt7Q",
|
1263 |
+
"https://www.youtube.com/watch?v=4oqfodY2Lz0",
|
1264 |
+
"https://www.youtube.com/watch?v=Mx9A0BjhEdU",
|
1265 |
+
"https://www.youtube.com/watch?v=iWssRVJgPqc",
|
1266 |
+
"https://www.youtube.com/watch?v=X72KpJKKUhI",
|
1267 |
+
"https://www.youtube.com/watch?v=eUhf-Jyy1_Y",
|
1268 |
+
"https://www.youtube.com/watch?v=_a1lp_ygGB4",
|
1269 |
+
"https://www.youtube.com/watch?v=J0KHiiTtt4w",
|
1270 |
+
"https://www.youtube.com/watch?v=W1sxFgTUbWo",
|
1271 |
+
"https://www.youtube.com/watch?v=kTw05gC2T9Y",
|
1272 |
+
"https://www.youtube.com/watch?v=BN2-n04CCcI",
|
1273 |
+
"https://www.youtube.com/watch?v=B8gHdct_his",
|
1274 |
+
"https://www.youtube.com/watch?v=7QwlT5f7H1c",
|
1275 |
+
"https://www.youtube.com/watch?v=y789MRv7KLI",
|
1276 |
+
"https://www.youtube.com/watch?v=c3BRTlHFpBU",
|
1277 |
+
"https://www.youtube.com/watch?v=7J39jwkNrKQ",
|
1278 |
+
"https://www.youtube.com/watch?v=q8fAe2X6c-8",
|
1279 |
+
"https://www.youtube.com/watch?v=rjccYCcSoxQ",
|
1280 |
+
"https://www.youtube.com/watch?v=b5i0aY_rUZU",
|
1281 |
+
"https://www.youtube.com/watch?v=8yq3o7xRSeg",
|
1282 |
+
"https://www.youtube.com/watch?v=QqkFD-QDDhI",
|
1283 |
+
"https://www.youtube.com/watch?v=fKK9nVLvhGM",
|
1284 |
+
"https://www.youtube.com/watch?v=s8VOM8ET1WU",
|
1285 |
+
"https://www.youtube.com/watch?v=a_wuykzfFzE",
|
1286 |
+
"https://www.youtube.com/watch?v=sgyXFxDw5P8",
|
1287 |
+
"https://www.youtube.com/watch?v=jW_c30hwXTM",
|
1288 |
+
"https://www.youtube.com/watch?v=RXeSKzq79as",
|
1289 |
+
"https://www.youtube.com/watch?v=Rl22caUj-oo",
|
1290 |
+
"https://www.youtube.com/watch?v=kVJbA7KQIo0",
|
1291 |
+
"https://www.youtube.com/watch?v=5VE9nihee7o",
|
1292 |
+
"https://www.youtube.com/watch?v=QMbHLF_zwjs",
|
1293 |
+
"https://www.youtube.com/watch?v=iso8NApqls4",
|
1294 |
+
"https://www.youtube.com/watch?v=OYirwDFKEX0",
|
1295 |
+
"https://www.youtube.com/watch?v=pw3FZ3xOBVo",
|
1296 |
+
"https://www.youtube.com/watch?v=_fzNdnzL8Ms",
|
1297 |
+
"https://www.youtube.com/watch?v=eXTiiz99p9o",
|
1298 |
+
"https://www.youtube.com/watch?v=Pc2aJxnmzh0",
|
1299 |
+
"https://www.youtube.com/watch?v=1W_zM7koJy8",
|
1300 |
+
"https://www.youtube.com/watch?v=czWhVBmrNPQ",
|
1301 |
+
"https://www.youtube.com/watch?v=kIgsXfgiSOY",
|
1302 |
+
"https://www.youtube.com/watch?v=_L4JNftstL0",
|
1303 |
+
"https://www.youtube.com/watch?v=sOCcAh_p8ik",
|
1304 |
+
"https://www.youtube.com/watch?v=zhN5c1ucRNk",
|
1305 |
+
"https://www.youtube.com/watch?v=VGzpv96AQKg",
|
1306 |
+
"https://www.youtube.com/watch?v=9gXXceSzL5E",
|
1307 |
+
"https://www.youtube.com/watch?v=AcMnbw8zOnE",
|
1308 |
+
"https://www.youtube.com/watch?v=a89GNMCJaJU",
|
1309 |
+
"https://www.youtube.com/watch?v=Zm6na9tz4-s",
|
1310 |
+
"https://www.youtube.com/watch?v=_nuYDJf5SFY",
|
1311 |
+
"https://www.youtube.com/watch?v=c1gCtoxyfF8",
|
1312 |
+
"https://www.youtube.com/watch?v=JS70gSukBa4",
|
1313 |
+
"https://www.youtube.com/watch?v=pzC40p-6Tc8",
|
1314 |
+
"https://www.youtube.com/watch?v=JuCYyKJ0-X0",
|
1315 |
+
"https://www.youtube.com/watch?v=8g3pJkP7l1Y",
|
1316 |
+
"https://www.youtube.com/watch?v=bAOoFGCh1eY",
|
1317 |
+
"https://www.youtube.com/watch?v=q4-EJwykDIs",
|
1318 |
+
"https://www.youtube.com/watch?v=AoOeTBD1iEQ",
|
1319 |
+
"https://www.youtube.com/watch?v=5YU9djt_CQM",
|
1320 |
+
"https://www.youtube.com/watch?v=QWveXdj6oZU",
|
1321 |
+
"https://www.youtube.com/watch?v=O_szq20l654",
|
1322 |
+
"https://www.youtube.com/watch?v=hlQE4IGFc5A",
|
1323 |
+
"https://www.youtube.com/watch?v=odF4GSX1y3c",
|
1324 |
+
"https://www.youtube.com/watch?v=krOpWE0o7as",
|
1325 |
+
"https://www.youtube.com/watch?v=fFTAeZcfUOQ",
|
1326 |
+
"https://www.youtube.com/watch?v=us4Eti0UmDI",
|
1327 |
+
"https://www.youtube.com/watch?v=Tct38KwROdw",
|
1328 |
+
"https://www.youtube.com/watch?v=ypOwLUMUHw0",
|
1329 |
+
"https://www.youtube.com/watch?v=XRCj8LVTRyA",
|
1330 |
+
"https://www.youtube.com/watch?v=gTLbLeow2nQ",
|
1331 |
+
"https://www.youtube.com/watch?v=RCLQREWIwyA",
|
1332 |
+
"https://www.youtube.com/watch?v=XOxJwTxrIX4",
|
1333 |
+
"https://www.youtube.com/watch?v=_j-Y0R_DiBE",
|
1334 |
+
"https://www.youtube.com/watch?v=zB0lrSebyng",
|
1335 |
+
"https://www.youtube.com/watch?v=PgJo7GnGorg",
|
1336 |
+
"https://www.youtube.com/watch?v=rOTRn5s6_gg",
|
1337 |
+
"https://www.youtube.com/watch?v=jdLf3SbBH9Q",
|
1338 |
+
"https://www.youtube.com/watch?v=P8aW1Ae6gcI",
|
1339 |
+
"https://www.youtube.com/watch?v=Wp4fKplfGRc",
|
1340 |
+
"https://www.youtube.com/watch?v=chYBlArm9Ao",
|
1341 |
+
"https://www.youtube.com/watch?v=sd58w0CXQrM",
|
1342 |
+
"https://www.youtube.com/watch?v=0ft9XxuFG-k",
|
1343 |
+
"https://www.youtube.com/watch?v=k2APYPjTWZ8",
|
1344 |
+
"https://www.youtube.com/watch?v=RPyuQhxiDtQ",
|
1345 |
+
"https://www.youtube.com/watch?v=j9o6cruoP7Y",
|
1346 |
+
"https://www.youtube.com/watch?v=tWUKBRZJVr0",
|
1347 |
+
"https://www.youtube.com/watch?v=PUjgmSjFOn0",
|
1348 |
+
"https://www.youtube.com/watch?v=ad75ahK2z60",
|
1349 |
+
"https://www.youtube.com/watch?v=_IesAvesFUo",
|
1350 |
+
"https://www.youtube.com/watch?v=JWI5-vWqcGc",
|
1351 |
+
"https://www.youtube.com/watch?v=FcNHTJU1ufM",
|
1352 |
+
"https://www.youtube.com/watch?v=qdjArlHB8k8",
|
1353 |
+
"https://www.youtube.com/watch?v=TAUn9ySuD5E",
|
1354 |
+
"https://www.youtube.com/watch?v=iVN6hu0vpOg",
|
1355 |
+
"https://www.youtube.com/watch?v=rFxu7NEoKC8",
|
1356 |
+
"https://www.youtube.com/watch?v=0ZKDmYfhMhQ",
|
1357 |
+
"https://www.youtube.com/watch?v=3hRsdIF3PFQ",
|
1358 |
+
"https://www.youtube.com/watch?v=9_UXsa5WQ08",
|
1359 |
+
"https://www.youtube.com/watch?v=JdKV1L1DJHc",
|
1360 |
+
"https://www.youtube.com/watch?v=ocUNn6KUN6k",
|
1361 |
+
"https://www.youtube.com/watch?v=Hx7WLlJzrlw",
|
1362 |
+
"https://www.youtube.com/watch?v=R1hC37clqNc",
|
1363 |
+
"https://www.youtube.com/watch?v=wYARrSqsYY4",
|
1364 |
+
"https://www.youtube.com/watch?v=jlPwTMMhGGI",
|
1365 |
+
"https://www.youtube.com/watch?v=xtmwI5K2i3E",
|
1366 |
+
"https://www.youtube.com/watch?v=FNGp1aviGvE",
|
1367 |
+
"https://www.youtube.com/watch?v=Fwht08ceJOg",
|
1368 |
+
"https://www.youtube.com/watch?v=lxn-6DAuqyk",
|
1369 |
+
"https://www.youtube.com/watch?v=YTOr8_ILqGw",
|
1370 |
+
"https://www.youtube.com/watch?v=yY96hTb8WgI",
|
1371 |
+
"https://www.youtube.com/watch?v=4TZ5oCW0JFw",
|
1372 |
+
"https://www.youtube.com/watch?v=bX4qUsgHa4Y",
|
1373 |
+
"https://www.youtube.com/watch?v=drWh6vBa45k",
|
1374 |
+
"https://www.youtube.com/watch?v=waeXBCUkuL8",
|
1375 |
+
"https://www.youtube.com/watch?v=ABUuFJU71PY",
|
1376 |
+
"https://www.youtube.com/watch?v=VoDsUwf1qTU",
|
1377 |
+
"https://www.youtube.com/watch?v=zpkUjrC3-Ds",
|
1378 |
+
"https://www.youtube.com/watch?v=s4C_wDRbatM",
|
1379 |
+
"https://www.youtube.com/watch?v=LVrtd7Ltk-4",
|
1380 |
+
"https://www.youtube.com/watch?v=f5jIwDchi0w",
|
1381 |
+
"https://www.youtube.com/watch?v=r41imlvr4hs",
|
1382 |
+
"https://www.youtube.com/watch?v=1Oqm6eO6deU",
|
1383 |
+
"https://www.youtube.com/watch?v=zbyOsCqDfYM",
|
1384 |
+
"https://www.youtube.com/watch?v=HGStqh1gvR0",
|
1385 |
+
"https://www.youtube.com/watch?v=OILBAbva6QA",
|
1386 |
+
"https://www.youtube.com/watch?v=7QlejFUpn78",
|
1387 |
+
"https://www.youtube.com/watch?v=cnrSa18-onc",
|
1388 |
+
"https://www.youtube.com/watch?v=ILhv5AW8hH8",
|
1389 |
+
"https://www.youtube.com/watch?v=9QcVNahOavw",
|
1390 |
+
"https://www.youtube.com/watch?v=tQBtht_-vAQ",
|
1391 |
+
"https://www.youtube.com/watch?v=hF_A4sp7nM8",
|
1392 |
+
"https://www.youtube.com/watch?v=NUSiLOwkrIw",
|
1393 |
+
"https://www.youtube.com/watch?v=iRYZjOuUnlU",
|
1394 |
+
"https://www.youtube.com/watch?v=EHrrjQ-zVO0",
|
1395 |
+
"https://www.youtube.com/watch?v=6yiQAmgI5s4",
|
1396 |
+
"https://www.youtube.com/watch?v=DygBfjNTHk4",
|
1397 |
+
"https://www.youtube.com/watch?v=6HLB0Deb9G8",
|
1398 |
+
"https://www.youtube.com/watch?v=HoKkasEyDOI",
|
1399 |
+
"https://www.youtube.com/watch?v=J5sWCsgDKvQ",
|
1400 |
+
"https://www.youtube.com/watch?v=fkCxpF9mFbc",
|
1401 |
+
"https://www.youtube.com/watch?v=0oJ6cYyr1bQ",
|
1402 |
+
"https://www.youtube.com/watch?v=EdVyahsYGQs",
|
1403 |
+
"https://www.youtube.com/watch?v=hYcSn4k6woM",
|
1404 |
+
"https://www.youtube.com/watch?v=2OVMYUFWoaU",
|
1405 |
+
"https://www.youtube.com/watch?v=ejsnCn2mzIU",
|
1406 |
+
"https://www.youtube.com/watch?v=RBTiTcHm_ac",
|
1407 |
+
"https://www.youtube.com/watch?v=tUOfAF4va6s",
|
1408 |
+
"https://www.youtube.com/watch?v=VA3RaszQWi0",
|
1409 |
+
"https://www.youtube.com/watch?v=ChdsShZHNPY",
|
1410 |
+
"https://www.youtube.com/watch?v=3Sc3_V7Qyq4",
|
1411 |
+
"https://www.youtube.com/watch?v=pzmO6RWy1v8",
|
1412 |
+
"https://www.youtube.com/watch?v=CK7VarkDM5o",
|
1413 |
+
"https://www.youtube.com/watch?v=EbjKcHPmxKQ",
|
1414 |
+
"https://www.youtube.com/watch?v=AFw8MSF7yE4",
|
1415 |
+
"https://www.youtube.com/watch?v=d7gn3RQPYmo",
|
1416 |
+
"https://www.youtube.com/watch?v=aJd-92ykW40",
|
1417 |
+
"https://www.youtube.com/watch?v=kRjSU8NUwVo",
|
1418 |
+
"https://www.youtube.com/watch?v=N8e9Hz0Xw6g",
|
1419 |
+
"https://www.youtube.com/watch?v=SrXHVZHhtG8",
|
1420 |
+
"https://www.youtube.com/watch?v=Bn6hVIISA6o",
|
1421 |
+
"https://www.youtube.com/watch?v=ggDQXlinbME",
|
1422 |
+
"https://www.youtube.com/watch?v=dDdzJFLw9yw",
|
1423 |
+
"https://www.youtube.com/watch?v=D_A-sj6QCQg",
|
1424 |
+
"https://www.youtube.com/watch?v=fiWOCiexIkE",
|
1425 |
+
"https://www.youtube.com/watch?v=14VYnFhBKcY",
|
1426 |
+
"https://www.youtube.com/watch?v=ebRokjEZU78",
|
1427 |
+
"https://www.youtube.com/watch?v=3bIvqS7gnQo",
|
1428 |
+
"https://www.youtube.com/watch?v=0HcgmtAylVc",
|
1429 |
+
"https://www.youtube.com/watch?v=YR5M5A40sxc",
|
1430 |
+
"https://www.youtube.com/watch?v=NAN1kt4SG9E",
|
1431 |
+
"https://www.youtube.com/watch?v=mRQpd2iQLf8",
|
1432 |
+
"https://www.youtube.com/watch?v=v-prU9JmJEk",
|
1433 |
+
"https://www.youtube.com/watch?v=mNrJOgVDiEs",
|
1434 |
+
"https://www.youtube.com/watch?v=rmtTMW2tg9M",
|
1435 |
+
"https://www.youtube.com/watch?v=JmH7XQoxOZ0",
|
1436 |
+
"https://www.youtube.com/watch?v=0kcWGhiehac",
|
1437 |
+
"https://www.youtube.com/watch?v=n-mUZRP-fpo",
|
1438 |
+
"https://www.youtube.com/watch?v=CaI5LWj6ams",
|
1439 |
+
"https://www.youtube.com/watch?v=Ve810FHZ1CQ",
|
1440 |
+
"https://www.youtube.com/watch?v=vxhyzPUHQQw",
|
1441 |
+
"https://www.youtube.com/watch?v=Q5pggDCnt5M",
|
1442 |
+
"https://www.youtube.com/watch?v=FFPjJM6yYS8",
|
1443 |
+
"https://www.youtube.com/watch?v=CUfTM-BC-ek",
|
1444 |
+
"https://www.youtube.com/watch?v=R3GC9gdmzcw",
|
1445 |
+
"https://www.youtube.com/watch?v=QZZwoObFMhU",
|
1446 |
+
"https://www.youtube.com/watch?v=fTTno8D-b2E",
|
1447 |
+
"https://www.youtube.com/watch?v=d16LNHIEJzs",
|
1448 |
+
"https://www.youtube.com/watch?v=YCjDnX-Xzhg",
|
1449 |
+
"https://www.youtube.com/watch?v=7PTxR-4atOA",
|
1450 |
+
"https://www.youtube.com/watch?v=vreSCqd-bhE",
|
1451 |
+
"https://www.youtube.com/watch?v=wtZdJKH4us8",
|
1452 |
+
"https://www.youtube.com/watch?v=SCl6s68_sGY",
|
1453 |
+
"https://www.youtube.com/watch?v=Dz81uzu5Eiw",
|
1454 |
+
"https://www.youtube.com/watch?v=ISFTFoGSRjE",
|
1455 |
+
"https://www.youtube.com/watch?v=sf06a3MvwvE",
|
1456 |
+
"https://www.youtube.com/watch?v=jAK3IJf64r8",
|
1457 |
+
"https://www.youtube.com/watch?v=UygPcBCFRrA",
|
1458 |
+
"https://www.youtube.com/watch?v=NDBD-D25ItA",
|
1459 |
+
"https://www.youtube.com/watch?v=X02EwjRs4eE",
|
1460 |
+
"https://www.youtube.com/watch?v=aQO_oexCm5s",
|
1461 |
+
"https://www.youtube.com/watch?v=PzySkYQNDlI",
|
1462 |
+
"https://www.youtube.com/watch?v=G6717bNakuA",
|
1463 |
+
"https://www.youtube.com/watch?v=lgD9AlxZxNE",
|
1464 |
+
"https://www.youtube.com/watch?v=oe998kBSwU8",
|
1465 |
+
"https://www.youtube.com/watch?v=E1dMloUfN1o",
|
1466 |
+
"https://www.youtube.com/watch?v=LcXcUrTKIAc",
|
1467 |
+
"https://www.youtube.com/watch?v=YxEa_SpL_Fs",
|
1468 |
+
"https://www.youtube.com/watch?v=vf-k6qOfXz0",
|
1469 |
+
"https://www.youtube.com/watch?v=CZfBENo-2Ek",
|
1470 |
+
"https://www.youtube.com/watch?v=ZaekogALkFM",
|
1471 |
+
"https://www.youtube.com/watch?v=S5vOKKMipSA",
|
1472 |
+
"https://www.youtube.com/watch?v=xFcF_qfLHeQ",
|
1473 |
+
"https://www.youtube.com/watch?v=a07VvKCjRDY",
|
1474 |
+
"https://www.youtube.com/watch?v=XwNUmnDu1r8",
|
1475 |
+
"https://www.youtube.com/watch?v=dyXExGWGEyw",
|
1476 |
+
"https://www.youtube.com/watch?v=RY-Quq0vo2M",
|
1477 |
+
"https://www.youtube.com/watch?v=oqvghou5m3U",
|
1478 |
+
"https://www.youtube.com/watch?v=VF5OdUTT6Ro",
|
1479 |
+
"https://www.youtube.com/watch?v=Eo3EJYo2dX8",
|
1480 |
+
"https://www.youtube.com/watch?v=AlFnPAydJgk",
|
1481 |
+
"https://www.youtube.com/watch?v=dgbXTmiXkhQ",
|
1482 |
+
"https://www.youtube.com/watch?v=18lf1kpBgRk",
|
1483 |
+
"https://www.youtube.com/watch?v=AB32MwHGlQA",
|
1484 |
+
"https://www.youtube.com/watch?v=ULQiCN0YNmw",
|
1485 |
+
"https://www.youtube.com/watch?v=uXALot_v3mQ",
|
1486 |
+
"https://www.youtube.com/watch?v=7hYkUGd2CWo",
|
1487 |
+
"https://www.youtube.com/watch?v=JbVAFFH5X60",
|
1488 |
+
"https://www.youtube.com/watch?v=LYgbwbmsHfw",
|
1489 |
+
"https://www.youtube.com/watch?v=i2crZ4_xgKg",
|
1490 |
+
"https://www.youtube.com/watch?v=pS0GGcz7wN4",
|
1491 |
+
"https://www.youtube.com/watch?v=nNsUcqL5JCg",
|
1492 |
+
"https://www.youtube.com/watch?v=ad77Bzv7uSc",
|
1493 |
+
"https://www.youtube.com/watch?v=YWRpvWAIV0c",
|
1494 |
+
"https://www.youtube.com/watch?v=TkpuRLJhll8",
|
1495 |
+
"https://www.youtube.com/watch?v=fITEtWtgjHg",
|
1496 |
+
"https://www.youtube.com/watch?v=PNdwFftpndM",
|
1497 |
+
"https://www.youtube.com/watch?v=71JhrjTxUgE",
|
1498 |
+
"https://www.youtube.com/watch?v=fKRLHtO4PSE",
|
1499 |
+
"https://www.youtube.com/watch?v=Xppoy2veSP0",
|
1500 |
+
"https://www.youtube.com/watch?v=KnMKCHqXLow",
|
1501 |
+
"https://www.youtube.com/watch?v=krsIsC9Pi5Q",
|
1502 |
+
"https://www.youtube.com/watch?v=hMRMKWxbULs",
|
1503 |
+
"https://www.youtube.com/watch?v=9AEMKudv5p0",
|
1504 |
+
"https://www.youtube.com/watch?v=npKeaNouAzI",
|
1505 |
+
"https://www.youtube.com/watch?v=mVKuCbjFfIY",
|
1506 |
+
"https://www.youtube.com/watch?v=gU8rQWh_qtc",
|
1507 |
+
"https://www.youtube.com/watch?v=J6ahGB6loE8",
|
1508 |
+
"https://www.youtube.com/watch?v=jznbEmKZLtc",
|
1509 |
+
"https://www.youtube.com/watch?v=ydwFZZ2AKpY",
|
1510 |
+
"https://www.youtube.com/watch?v=olvZlzMfFM0",
|
1511 |
+
"https://www.youtube.com/watch?v=SK4GVjXUu9M",
|
1512 |
+
"https://www.youtube.com/watch?v=ZRDIHcFRPFs",
|
1513 |
+
"https://www.youtube.com/watch?v=MNQ9z_Eb-Jc",
|
1514 |
+
"https://www.youtube.com/watch?v=JsgpZdGVNys",
|
1515 |
+
"https://www.youtube.com/watch?v=hjKCYYQcBqY",
|
1516 |
+
"https://www.youtube.com/watch?v=h81SuD2pltM",
|
1517 |
+
"https://www.youtube.com/watch?v=4nxvgFaAVCg",
|
1518 |
+
"https://www.youtube.com/watch?v=MbDIYj7IIQo",
|
1519 |
+
"https://www.youtube.com/watch?v=KaGSYGhUkvM",
|
1520 |
+
"https://www.youtube.com/watch?v=tBkQAxt1JXA",
|
1521 |
+
"https://www.youtube.com/watch?v=ssSIUVPjDns",
|
1522 |
+
"https://www.youtube.com/watch?v=9jv0-dUu4_k",
|
1523 |
+
"https://www.youtube.com/watch?v=fSp6f-t-Rss",
|
1524 |
+
"https://www.youtube.com/watch?v=RlSEE0a7xY8",
|
1525 |
+
"https://www.youtube.com/watch?v=F6e1f36xU0I",
|
1526 |
+
"https://www.youtube.com/watch?v=fdxMOxeoITY",
|
1527 |
+
"https://www.youtube.com/watch?v=iJAKCV8bw9E",
|
1528 |
+
"https://www.youtube.com/watch?v=Op--mNjxzD0",
|
1529 |
+
"https://www.youtube.com/watch?v=l3TgmvV2ElQ",
|
1530 |
+
"https://www.youtube.com/watch?v=jQMZGkMPDFU",
|
1531 |
+
"https://www.youtube.com/watch?v=flM0NTYtees",
|
1532 |
+
"https://www.youtube.com/watch?v=n3IYmdy6d4Y",
|
1533 |
+
"https://www.youtube.com/watch?v=WyIx1qan3v8",
|
1534 |
+
"https://www.youtube.com/watch?v=kKLUV-bO7kM",
|
1535 |
+
"https://www.youtube.com/watch?v=4SUoEEDFVJE",
|
1536 |
+
"https://www.youtube.com/watch?v=JItg5HPUZSQ",
|
1537 |
+
"https://www.youtube.com/watch?v=mgCeH3xovDw",
|
1538 |
+
"https://www.youtube.com/watch?v=sBKPacCuXsw",
|
1539 |
+
"https://www.youtube.com/watch?v=6BsXLnLn9ok",
|
1540 |
+
"https://www.youtube.com/watch?v=l_b86duruvs",
|
1541 |
+
"https://www.youtube.com/watch?v=RJvh42OqWgw",
|
1542 |
+
"https://www.youtube.com/watch?v=GzvfpyyZO9o",
|
1543 |
+
"https://www.youtube.com/watch?v=RBKhpV6MYto",
|
1544 |
+
"https://www.youtube.com/watch?v=td7Dcsco-WY",
|
1545 |
+
"https://www.youtube.com/watch?v=nzL_avUIlEE",
|
1546 |
+
"https://www.youtube.com/watch?v=Icq60Uxd3As",
|
1547 |
+
"https://www.youtube.com/watch?v=MKt1KpGg0vg",
|
1548 |
+
"https://www.youtube.com/watch?v=iY05U7GaU5I",
|
1549 |
+
"https://www.youtube.com/watch?v=z3Js_ldo8yo",
|
1550 |
+
"https://www.youtube.com/watch?v=CUILWlhuv0k",
|
1551 |
+
"https://www.youtube.com/watch?v=BHVp5wILNhA",
|
1552 |
+
"https://www.youtube.com/watch?v=BssacYy-3pA",
|
1553 |
+
"https://www.youtube.com/watch?v=FN3VFgG922A",
|
1554 |
+
"https://www.youtube.com/watch?v=ZhMowQEXxuk",
|
1555 |
+
"https://www.youtube.com/watch?v=71mvp1fJx9A",
|
1556 |
+
"https://www.youtube.com/watch?v=oicts7KOnY4",
|
1557 |
+
"https://www.youtube.com/watch?v=vtwu5KNOsUc",
|
1558 |
+
"https://www.youtube.com/watch?v=aym2Ex6YBuo",
|
1559 |
+
"https://www.youtube.com/watch?v=VnfKgffCZ7U",
|
1560 |
+
"https://www.youtube.com/watch?v=X9js1PqDJSg",
|
1561 |
+
"https://www.youtube.com/watch?v=R6hU3nhudRg",
|
1562 |
+
"https://www.youtube.com/watch?v=seTQHy6w3gA",
|
1563 |
+
"https://www.youtube.com/watch?v=zY_g-oz11AI",
|
1564 |
+
"https://www.youtube.com/watch?v=R_aICC9_28s",
|
1565 |
+
"https://www.youtube.com/watch?v=ex5xKx8vHAU",
|
1566 |
+
"https://www.youtube.com/watch?v=fJ0o2E4d8Ts",
|
1567 |
+
"https://www.youtube.com/watch?v=jSWUDnRn6gY",
|
1568 |
+
"https://www.youtube.com/watch?v=SAMUl7hd9ZU",
|
1569 |
+
"https://www.youtube.com/watch?v=iZnu5EXnPwI",
|
1570 |
+
"https://www.youtube.com/watch?v=J34fRtfCRWg",
|
1571 |
+
"https://www.youtube.com/watch?v=RifZYVPx8ck",
|
1572 |
+
"https://www.youtube.com/watch?v=qZ-pV8R7y8c",
|
1573 |
+
"https://www.youtube.com/watch?v=SUPTIhHy21E",
|
1574 |
+
"https://www.youtube.com/watch?v=fFBVhGiv0gg",
|
1575 |
+
"https://www.youtube.com/watch?v=BCmlglKOTBY",
|
1576 |
+
"https://www.youtube.com/watch?v=cMgarcFkXz4",
|
1577 |
+
"https://www.youtube.com/watch?v=OCBwjFFpNik",
|
1578 |
+
"https://www.youtube.com/watch?v=WVq0APUtjwg",
|
1579 |
+
"https://www.youtube.com/watch?v=77ktNSPFbwQ",
|
1580 |
+
"https://www.youtube.com/watch?v=c9xVWOfXW7U",
|
1581 |
+
"https://www.youtube.com/watch?v=MWxijOjmn-g",
|
1582 |
+
"https://www.youtube.com/watch?v=aiubcUtd-h4",
|
1583 |
+
"https://www.youtube.com/watch?v=1H6UzFgK4_A",
|
1584 |
+
"https://www.youtube.com/watch?v=80OFcp02_r0",
|
1585 |
+
"https://www.youtube.com/watch?v=b5u_R4rWGfs",
|
1586 |
+
"https://www.youtube.com/watch?v=OFJrow7yaec",
|
1587 |
+
"https://www.youtube.com/watch?v=iTmHTNi-dus",
|
1588 |
+
"https://www.youtube.com/watch?v=jtPo3TyBAd4",
|
1589 |
+
"https://www.youtube.com/watch?v=VVa3CFDdFuM",
|
1590 |
+
"https://www.youtube.com/watch?v=GANnzyFXVBU",
|
1591 |
+
"https://www.youtube.com/watch?v=htPXMQ5s-yo",
|
1592 |
+
"https://www.youtube.com/watch?v=vmtqEnDPJdc",
|
1593 |
+
"https://www.youtube.com/watch?v=LvDWrIDrQnw",
|
1594 |
+
"https://www.youtube.com/watch?v=aENQaw1UMzo",
|
1595 |
+
"https://www.youtube.com/watch?v=SGoWEdGl82M",
|
1596 |
+
"https://www.youtube.com/watch?v=2xTzIp20tUw",
|
1597 |
+
"https://www.youtube.com/watch?v=PCz0PHf4-h4",
|
1598 |
+
"https://www.youtube.com/watch?v=2hbgtEnfsC4",
|
1599 |
+
"https://www.youtube.com/watch?v=6SPzfGFOJ84",
|
1600 |
+
"https://www.youtube.com/watch?v=67vMlQc97ds",
|
1601 |
+
"https://www.youtube.com/watch?v=HBG_zB_iiUc",
|
1602 |
+
"https://www.youtube.com/watch?v=Zj8HyeixuqM",
|
1603 |
+
"https://www.youtube.com/watch?v=0Ic_aNFrYug",
|
1604 |
+
"https://www.youtube.com/watch?v=RWSaceaSpRI",
|
1605 |
+
"https://www.youtube.com/watch?v=tnAmddi52Y8",
|
1606 |
+
"https://www.youtube.com/watch?v=u-qO42qjShg",
|
1607 |
+
"https://www.youtube.com/watch?v=BSDYaEV21yQ",
|
1608 |
+
"https://www.youtube.com/watch?v=MDHFJG1no6I",
|
1609 |
+
"https://www.youtube.com/watch?v=40uh5WGamv4",
|
1610 |
+
"https://www.youtube.com/watch?v=bWzJvR6ooOY",
|
1611 |
+
"https://www.youtube.com/watch?v=InOsF5x1lZw",
|
1612 |
+
"https://www.youtube.com/watch?v=XRuCW80L9mA",
|
1613 |
+
"https://www.youtube.com/watch?v=i5C-DQ0edR0",
|
1614 |
+
"https://www.youtube.com/watch?v=556ZV2jjVwc",
|
1615 |
+
"https://www.youtube.com/watch?v=c3EQDfqqHsI",
|
1616 |
+
"https://www.youtube.com/watch?v=OTaYKEumwc8",
|
1617 |
+
"https://www.youtube.com/watch?v=oYkbw0i6oVI",
|
1618 |
+
"https://www.youtube.com/watch?v=lM6rliphNdw",
|
1619 |
+
"https://www.youtube.com/watch?v=JOPCYyItgYI",
|
1620 |
+
"https://www.youtube.com/watch?v=sZAneAxW7j0",
|
1621 |
+
"https://www.youtube.com/watch?v=eB1S9-GsBW8",
|
1622 |
+
"https://www.youtube.com/watch?v=b_gx2Uc95os",
|
1623 |
+
"https://www.youtube.com/watch?v=FyGCGugcWpg",
|
1624 |
+
"https://www.youtube.com/watch?v=bAQlgrnJdLk",
|
1625 |
+
"https://www.youtube.com/watch?v=IINfbN81h6c",
|
1626 |
+
"https://www.youtube.com/watch?v=zGSzj7ztszI",
|
1627 |
+
"https://www.youtube.com/watch?v=2deVJa9MjUk",
|
1628 |
+
"https://www.youtube.com/watch?v=UnOn60YtcGo",
|
1629 |
+
"https://www.youtube.com/watch?v=hjTvaBZAPqE",
|
1630 |
+
"https://www.youtube.com/watch?v=NC45TRP4lq0",
|
1631 |
+
"https://www.youtube.com/watch?v=HJ034SvB16E",
|
1632 |
+
"https://www.youtube.com/watch?v=rxCXyVtN-_E",
|
1633 |
+
"https://www.youtube.com/watch?v=mLHnUjhzv9E",
|
1634 |
+
"https://www.youtube.com/watch?v=SFFE-XY75Js",
|
1635 |
+
"https://www.youtube.com/watch?v=1dItVypEXAY",
|
1636 |
+
"https://www.youtube.com/watch?v=BfNHR7oguoY",
|
1637 |
+
"https://www.youtube.com/watch?v=JjJPBqw1lGM",
|
1638 |
+
"https://www.youtube.com/watch?v=QH0Hl31vdF4",
|
1639 |
+
"https://www.youtube.com/watch?v=xnYT5Fp6w_M",
|
1640 |
+
"https://www.youtube.com/watch?v=T6a87L_f7js",
|
1641 |
+
"https://www.youtube.com/watch?v=LRP2Vw9ix-s",
|
1642 |
+
"https://www.youtube.com/watch?v=6Xa9T2OMzmw",
|
1643 |
+
"https://www.youtube.com/watch?v=zGhu4iaBqtk",
|
1644 |
+
"https://www.youtube.com/watch?v=huSINlXab2E",
|
1645 |
+
"https://www.youtube.com/watch?v=NZCUa_fFxyY",
|
1646 |
+
"https://www.youtube.com/watch?v=W0qn3oPYo5c",
|
1647 |
+
"https://www.youtube.com/watch?v=Jo9Stp6KvYs",
|
1648 |
+
"https://www.youtube.com/watch?v=NlFeAPdmIM8",
|
1649 |
+
"https://www.youtube.com/watch?v=u9x4cRWqPPM",
|
1650 |
+
"https://www.youtube.com/watch?v=lVJlZMu_UVs",
|
1651 |
+
"https://www.youtube.com/watch?v=QOHCJtrQWTU",
|
1652 |
+
"https://www.youtube.com/watch?v=UwKZVPYssOg",
|
1653 |
+
"https://www.youtube.com/watch?v=m6C8soxbN2w",
|
1654 |
+
"https://www.youtube.com/watch?v=eA151sBcCag",
|
1655 |
+
"https://www.youtube.com/watch?v=D8n8gYVdThg",
|
1656 |
+
"https://www.youtube.com/watch?v=PQnhigbI4g4"
|
1657 |
+
]
|
webscrapper/URLFetcher.py
ADDED
@@ -0,0 +1,50 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
import os
|
2 |
+
os.chdir('D:/Machine Learning/SLM-Project/')
|
3 |
+
|
4 |
+
import requests
|
5 |
+
from bs4 import BeautifulSoup
|
6 |
+
from tqdm import tqdm
|
7 |
+
|
8 |
+
class BritannicaUrls:
|
9 |
+
def __init__(self, search_queries, max_limit):
|
10 |
+
self.max_limit = max_limit
|
11 |
+
self.search_queries = search_queries
|
12 |
+
self.headers = {'User-Agent': "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36 Edge/12.246"}
|
13 |
+
|
14 |
+
def build_url(self, query, pageNo):
|
15 |
+
formattedQuery = '%20'.join(query.split(' '))
|
16 |
+
url = f"https://www.britannica.com/search?query={formattedQuery}&page={pageNo}"
|
17 |
+
return url
|
18 |
+
|
19 |
+
def get_target_url(self, targets):
|
20 |
+
r = requests.get(targets, headers=self.headers)
|
21 |
+
list_url = []
|
22 |
+
|
23 |
+
if r.status_code == 200:
|
24 |
+
html_content = r.content
|
25 |
+
soup = BeautifulSoup(html_content, 'html.parser')
|
26 |
+
fetched_urls = soup.find_all('a', attrs={'class': 'font-weight-bold font-18'})
|
27 |
+
list_url.extend([url.get('href') for url in fetched_urls])
|
28 |
+
return list_url
|
29 |
+
|
30 |
+
else:
|
31 |
+
print(f"skipping this {targets}")
|
32 |
+
|
33 |
+
def generate_urls(self, progress_bar=None):
|
34 |
+
page_urls = []
|
35 |
+
total_iterations = len(self.search_queries) * self.max_limit
|
36 |
+
current_iteration = 0
|
37 |
+
|
38 |
+
for query in self.search_queries:
|
39 |
+
pageNo = 1
|
40 |
+
for i in range(self.max_limit):
|
41 |
+
target_url = self.build_url(query, pageNo)
|
42 |
+
pageNo += 1
|
43 |
+
new_url = self.get_target_url(target_url)
|
44 |
+
page_urls.extend(new_url)
|
45 |
+
|
46 |
+
# Update the progress bar
|
47 |
+
current_iteration += 1
|
48 |
+
if progress_bar:
|
49 |
+
progress_bar.update(1)
|
50 |
+
return page_urls
|
webscrapper/__pycache__/URLFetcher.cpython-311.pyc
ADDED
Binary file (3.33 kB). View file
|
|
webscrapper/britannicaScrapper.py
ADDED
@@ -0,0 +1,52 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
"""
|
2 |
+
--> this code takes use of URLFetcher.py and fetches the text data from each of the pages
|
3 |
+
--> saves it in a .txt file
|
4 |
+
--> voila!!
|
5 |
+
"""
|
6 |
+
|
7 |
+
import os
|
8 |
+
import json
|
9 |
+
os.chdir('D:/Machine Learning/SLM-Project/')
|
10 |
+
|
11 |
+
query_file = 'Data Collection/webscrapper/search_queries.json'
|
12 |
+
out_file = f'Data/webscrapped data/britannica_output.txt'
|
13 |
+
max_limit = 10
|
14 |
+
|
15 |
+
with open(query_file, 'r') as file:
|
16 |
+
search_queries = json.load(file)
|
17 |
+
|
18 |
+
from tqdm import tqdm
|
19 |
+
|
20 |
+
from URLFetcher import BritannicaUrls
|
21 |
+
scrape = BritannicaUrls(search_queries=search_queries, max_limit=10)
|
22 |
+
with tqdm(total=len(search_queries) * max_limit, desc="Generating URL snippets: ") as pbar:
|
23 |
+
url_snippets = scrape.generate_urls(progress_bar=pbar)
|
24 |
+
|
25 |
+
print('fetched snippets successfully!')
|
26 |
+
print(f"total snippets: {len(url_snippets)}")
|
27 |
+
|
28 |
+
import requests
|
29 |
+
from bs4 import BeautifulSoup
|
30 |
+
import re
|
31 |
+
|
32 |
+
def text_extractor(url_snippet):
|
33 |
+
target_url = f"https://britannica.com{url_snippet}"
|
34 |
+
r = requests.get(target_url, headers=scrape.headers)
|
35 |
+
|
36 |
+
if r.status_code == 200:
|
37 |
+
soup = BeautifulSoup(r.content, 'html.parser')
|
38 |
+
paragraphs = soup.find_all('p')
|
39 |
+
|
40 |
+
# extract text content from each <p> tag, excluding specified text
|
41 |
+
page = '\n'.join([p.get_text() for p in paragraphs if "Our editors will review what you’ve submitted and determine whether to revise the article." not in p.get_text()])
|
42 |
+
page = re.sub('&\w+;','',page)
|
43 |
+
|
44 |
+
return page
|
45 |
+
|
46 |
+
if __name__ == '__main__':
|
47 |
+
with tqdm(total=len(url_snippets), desc="Scrapping in progress: ") as pbar:
|
48 |
+
for snippets in url_snippets:
|
49 |
+
page = text_extractor(snippets)
|
50 |
+
with open(out_file, 'a', encoding='utf-8') as file:
|
51 |
+
file.write(page)
|
52 |
+
pbar.update(1)
|
webscrapper/fetchedTargetUrls.json
ADDED
@@ -0,0 +1,302 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
[
|
2 |
+
"https://www.britannica.com/search?query=antarctica&page=1",
|
3 |
+
"https://www.britannica.com/search?query=antarctica&page=2",
|
4 |
+
"https://www.britannica.com/search?query=antarctica&page=3",
|
5 |
+
"https://www.britannica.com/search?query=antarctica&page=4",
|
6 |
+
"https://www.britannica.com/search?query=antarctica&page=5",
|
7 |
+
"https://www.britannica.com/search?query=antarctica&page=6",
|
8 |
+
"https://www.britannica.com/search?query=antarctica&page=7",
|
9 |
+
"https://www.britannica.com/search?query=antarctica&page=8",
|
10 |
+
"https://www.britannica.com/search?query=antarctica&page=9",
|
11 |
+
"https://www.britannica.com/search?query=antarctica&page=10",
|
12 |
+
"https://www.britannica.com/search?query=colonization&page=1",
|
13 |
+
"https://www.britannica.com/search?query=colonization&page=2",
|
14 |
+
"https://www.britannica.com/search?query=colonization&page=3",
|
15 |
+
"https://www.britannica.com/search?query=colonization&page=4",
|
16 |
+
"https://www.britannica.com/search?query=colonization&page=5",
|
17 |
+
"https://www.britannica.com/search?query=colonization&page=6",
|
18 |
+
"https://www.britannica.com/search?query=colonization&page=7",
|
19 |
+
"https://www.britannica.com/search?query=colonization&page=8",
|
20 |
+
"https://www.britannica.com/search?query=colonization&page=9",
|
21 |
+
"https://www.britannica.com/search?query=colonization&page=10",
|
22 |
+
"https://www.britannica.com/search?query=world%20war&page=1",
|
23 |
+
"https://www.britannica.com/search?query=world%20war&page=2",
|
24 |
+
"https://www.britannica.com/search?query=world%20war&page=3",
|
25 |
+
"https://www.britannica.com/search?query=world%20war&page=4",
|
26 |
+
"https://www.britannica.com/search?query=world%20war&page=5",
|
27 |
+
"https://www.britannica.com/search?query=world%20war&page=6",
|
28 |
+
"https://www.britannica.com/search?query=world%20war&page=7",
|
29 |
+
"https://www.britannica.com/search?query=world%20war&page=8",
|
30 |
+
"https://www.britannica.com/search?query=world%20war&page=9",
|
31 |
+
"https://www.britannica.com/search?query=world%20war&page=10",
|
32 |
+
"https://www.britannica.com/search?query=asia&page=1",
|
33 |
+
"https://www.britannica.com/search?query=asia&page=2",
|
34 |
+
"https://www.britannica.com/search?query=asia&page=3",
|
35 |
+
"https://www.britannica.com/search?query=asia&page=4",
|
36 |
+
"https://www.britannica.com/search?query=asia&page=5",
|
37 |
+
"https://www.britannica.com/search?query=asia&page=6",
|
38 |
+
"https://www.britannica.com/search?query=asia&page=7",
|
39 |
+
"https://www.britannica.com/search?query=asia&page=8",
|
40 |
+
"https://www.britannica.com/search?query=asia&page=9",
|
41 |
+
"https://www.britannica.com/search?query=asia&page=10",
|
42 |
+
"https://www.britannica.com/search?query=africa&page=1",
|
43 |
+
"https://www.britannica.com/search?query=africa&page=2",
|
44 |
+
"https://www.britannica.com/search?query=africa&page=3",
|
45 |
+
"https://www.britannica.com/search?query=africa&page=4",
|
46 |
+
"https://www.britannica.com/search?query=africa&page=5",
|
47 |
+
"https://www.britannica.com/search?query=africa&page=6",
|
48 |
+
"https://www.britannica.com/search?query=africa&page=7",
|
49 |
+
"https://www.britannica.com/search?query=africa&page=8",
|
50 |
+
"https://www.britannica.com/search?query=africa&page=9",
|
51 |
+
"https://www.britannica.com/search?query=africa&page=10",
|
52 |
+
"https://www.britannica.com/search?query=australia&page=1",
|
53 |
+
"https://www.britannica.com/search?query=australia&page=2",
|
54 |
+
"https://www.britannica.com/search?query=australia&page=3",
|
55 |
+
"https://www.britannica.com/search?query=australia&page=4",
|
56 |
+
"https://www.britannica.com/search?query=australia&page=5",
|
57 |
+
"https://www.britannica.com/search?query=australia&page=6",
|
58 |
+
"https://www.britannica.com/search?query=australia&page=7",
|
59 |
+
"https://www.britannica.com/search?query=australia&page=8",
|
60 |
+
"https://www.britannica.com/search?query=australia&page=9",
|
61 |
+
"https://www.britannica.com/search?query=australia&page=10",
|
62 |
+
"https://www.britannica.com/search?query=holocaust&page=1",
|
63 |
+
"https://www.britannica.com/search?query=holocaust&page=2",
|
64 |
+
"https://www.britannica.com/search?query=holocaust&page=3",
|
65 |
+
"https://www.britannica.com/search?query=holocaust&page=4",
|
66 |
+
"https://www.britannica.com/search?query=holocaust&page=5",
|
67 |
+
"https://www.britannica.com/search?query=holocaust&page=6",
|
68 |
+
"https://www.britannica.com/search?query=holocaust&page=7",
|
69 |
+
"https://www.britannica.com/search?query=holocaust&page=8",
|
70 |
+
"https://www.britannica.com/search?query=holocaust&page=9",
|
71 |
+
"https://www.britannica.com/search?query=holocaust&page=10",
|
72 |
+
"https://www.britannica.com/search?query=voyages&page=1",
|
73 |
+
"https://www.britannica.com/search?query=voyages&page=2",
|
74 |
+
"https://www.britannica.com/search?query=voyages&page=3",
|
75 |
+
"https://www.britannica.com/search?query=voyages&page=4",
|
76 |
+
"https://www.britannica.com/search?query=voyages&page=5",
|
77 |
+
"https://www.britannica.com/search?query=voyages&page=6",
|
78 |
+
"https://www.britannica.com/search?query=voyages&page=7",
|
79 |
+
"https://www.britannica.com/search?query=voyages&page=8",
|
80 |
+
"https://www.britannica.com/search?query=voyages&page=9",
|
81 |
+
"https://www.britannica.com/search?query=voyages&page=10",
|
82 |
+
"https://www.britannica.com/search?query=biological%20viruses&page=1",
|
83 |
+
"https://www.britannica.com/search?query=biological%20viruses&page=2",
|
84 |
+
"https://www.britannica.com/search?query=biological%20viruses&page=3",
|
85 |
+
"https://www.britannica.com/search?query=biological%20viruses&page=4",
|
86 |
+
"https://www.britannica.com/search?query=biological%20viruses&page=5",
|
87 |
+
"https://www.britannica.com/search?query=biological%20viruses&page=6",
|
88 |
+
"https://www.britannica.com/search?query=biological%20viruses&page=7",
|
89 |
+
"https://www.britannica.com/search?query=biological%20viruses&page=8",
|
90 |
+
"https://www.britannica.com/search?query=biological%20viruses&page=9",
|
91 |
+
"https://www.britannica.com/search?query=biological%20viruses&page=10",
|
92 |
+
"https://www.britannica.com/search?query=Martin%20Luther%20King%20Jr&page=1",
|
93 |
+
"https://www.britannica.com/search?query=Martin%20Luther%20King%20Jr&page=2",
|
94 |
+
"https://www.britannica.com/search?query=Martin%20Luther%20King%20Jr&page=3",
|
95 |
+
"https://www.britannica.com/search?query=Martin%20Luther%20King%20Jr&page=4",
|
96 |
+
"https://www.britannica.com/search?query=Martin%20Luther%20King%20Jr&page=5",
|
97 |
+
"https://www.britannica.com/search?query=Martin%20Luther%20King%20Jr&page=6",
|
98 |
+
"https://www.britannica.com/search?query=Martin%20Luther%20King%20Jr&page=7",
|
99 |
+
"https://www.britannica.com/search?query=Martin%20Luther%20King%20Jr&page=8",
|
100 |
+
"https://www.britannica.com/search?query=Martin%20Luther%20King%20Jr&page=9",
|
101 |
+
"https://www.britannica.com/search?query=Martin%20Luther%20King%20Jr&page=10",
|
102 |
+
"https://www.britannica.com/search?query=Abraham%20Lincon&page=1",
|
103 |
+
"https://www.britannica.com/search?query=Abraham%20Lincon&page=2",
|
104 |
+
"https://www.britannica.com/search?query=Abraham%20Lincon&page=3",
|
105 |
+
"https://www.britannica.com/search?query=Abraham%20Lincon&page=4",
|
106 |
+
"https://www.britannica.com/search?query=Abraham%20Lincon&page=5",
|
107 |
+
"https://www.britannica.com/search?query=Abraham%20Lincon&page=6",
|
108 |
+
"https://www.britannica.com/search?query=Abraham%20Lincon&page=7",
|
109 |
+
"https://www.britannica.com/search?query=Abraham%20Lincon&page=8",
|
110 |
+
"https://www.britannica.com/search?query=Abraham%20Lincon&page=9",
|
111 |
+
"https://www.britannica.com/search?query=Abraham%20Lincon&page=10",
|
112 |
+
"https://www.britannica.com/search?query=Quarks&page=1",
|
113 |
+
"https://www.britannica.com/search?query=Quarks&page=2",
|
114 |
+
"https://www.britannica.com/search?query=Quarks&page=3",
|
115 |
+
"https://www.britannica.com/search?query=Quarks&page=4",
|
116 |
+
"https://www.britannica.com/search?query=Quarks&page=5",
|
117 |
+
"https://www.britannica.com/search?query=Quarks&page=6",
|
118 |
+
"https://www.britannica.com/search?query=Quarks&page=7",
|
119 |
+
"https://www.britannica.com/search?query=Quarks&page=8",
|
120 |
+
"https://www.britannica.com/search?query=Quarks&page=9",
|
121 |
+
"https://www.britannica.com/search?query=Quarks&page=10",
|
122 |
+
"https://www.britannica.com/search?query=Quantum%20Mechanincs&page=1",
|
123 |
+
"https://www.britannica.com/search?query=Quantum%20Mechanincs&page=2",
|
124 |
+
"https://www.britannica.com/search?query=Quantum%20Mechanincs&page=3",
|
125 |
+
"https://www.britannica.com/search?query=Quantum%20Mechanincs&page=4",
|
126 |
+
"https://www.britannica.com/search?query=Quantum%20Mechanincs&page=5",
|
127 |
+
"https://www.britannica.com/search?query=Quantum%20Mechanincs&page=6",
|
128 |
+
"https://www.britannica.com/search?query=Quantum%20Mechanincs&page=7",
|
129 |
+
"https://www.britannica.com/search?query=Quantum%20Mechanincs&page=8",
|
130 |
+
"https://www.britannica.com/search?query=Quantum%20Mechanincs&page=9",
|
131 |
+
"https://www.britannica.com/search?query=Quantum%20Mechanincs&page=10",
|
132 |
+
"https://www.britannica.com/search?query=Biological%20Viruses&page=1",
|
133 |
+
"https://www.britannica.com/search?query=Biological%20Viruses&page=2",
|
134 |
+
"https://www.britannica.com/search?query=Biological%20Viruses&page=3",
|
135 |
+
"https://www.britannica.com/search?query=Biological%20Viruses&page=4",
|
136 |
+
"https://www.britannica.com/search?query=Biological%20Viruses&page=5",
|
137 |
+
"https://www.britannica.com/search?query=Biological%20Viruses&page=6",
|
138 |
+
"https://www.britannica.com/search?query=Biological%20Viruses&page=7",
|
139 |
+
"https://www.britannica.com/search?query=Biological%20Viruses&page=8",
|
140 |
+
"https://www.britannica.com/search?query=Biological%20Viruses&page=9",
|
141 |
+
"https://www.britannica.com/search?query=Biological%20Viruses&page=10",
|
142 |
+
"https://www.britannica.com/search?query=Drugs&page=1",
|
143 |
+
"https://www.britannica.com/search?query=Drugs&page=2",
|
144 |
+
"https://www.britannica.com/search?query=Drugs&page=3",
|
145 |
+
"https://www.britannica.com/search?query=Drugs&page=4",
|
146 |
+
"https://www.britannica.com/search?query=Drugs&page=5",
|
147 |
+
"https://www.britannica.com/search?query=Drugs&page=6",
|
148 |
+
"https://www.britannica.com/search?query=Drugs&page=7",
|
149 |
+
"https://www.britannica.com/search?query=Drugs&page=8",
|
150 |
+
"https://www.britannica.com/search?query=Drugs&page=9",
|
151 |
+
"https://www.britannica.com/search?query=Drugs&page=10",
|
152 |
+
"https://www.britannica.com/search?query=Rockets&page=1",
|
153 |
+
"https://www.britannica.com/search?query=Rockets&page=2",
|
154 |
+
"https://www.britannica.com/search?query=Rockets&page=3",
|
155 |
+
"https://www.britannica.com/search?query=Rockets&page=4",
|
156 |
+
"https://www.britannica.com/search?query=Rockets&page=5",
|
157 |
+
"https://www.britannica.com/search?query=Rockets&page=6",
|
158 |
+
"https://www.britannica.com/search?query=Rockets&page=7",
|
159 |
+
"https://www.britannica.com/search?query=Rockets&page=8",
|
160 |
+
"https://www.britannica.com/search?query=Rockets&page=9",
|
161 |
+
"https://www.britannica.com/search?query=Rockets&page=10",
|
162 |
+
"https://www.britannica.com/search?query=Physics&page=1",
|
163 |
+
"https://www.britannica.com/search?query=Physics&page=2",
|
164 |
+
"https://www.britannica.com/search?query=Physics&page=3",
|
165 |
+
"https://www.britannica.com/search?query=Physics&page=4",
|
166 |
+
"https://www.britannica.com/search?query=Physics&page=5",
|
167 |
+
"https://www.britannica.com/search?query=Physics&page=6",
|
168 |
+
"https://www.britannica.com/search?query=Physics&page=7",
|
169 |
+
"https://www.britannica.com/search?query=Physics&page=8",
|
170 |
+
"https://www.britannica.com/search?query=Physics&page=9",
|
171 |
+
"https://www.britannica.com/search?query=Physics&page=10",
|
172 |
+
"https://www.britannica.com/search?query=Mathematics&page=1",
|
173 |
+
"https://www.britannica.com/search?query=Mathematics&page=2",
|
174 |
+
"https://www.britannica.com/search?query=Mathematics&page=3",
|
175 |
+
"https://www.britannica.com/search?query=Mathematics&page=4",
|
176 |
+
"https://www.britannica.com/search?query=Mathematics&page=5",
|
177 |
+
"https://www.britannica.com/search?query=Mathematics&page=6",
|
178 |
+
"https://www.britannica.com/search?query=Mathematics&page=7",
|
179 |
+
"https://www.britannica.com/search?query=Mathematics&page=8",
|
180 |
+
"https://www.britannica.com/search?query=Mathematics&page=9",
|
181 |
+
"https://www.britannica.com/search?query=Mathematics&page=10",
|
182 |
+
"https://www.britannica.com/search?query=nuclear%20physics&page=1",
|
183 |
+
"https://www.britannica.com/search?query=nuclear%20physics&page=2",
|
184 |
+
"https://www.britannica.com/search?query=nuclear%20physics&page=3",
|
185 |
+
"https://www.britannica.com/search?query=nuclear%20physics&page=4",
|
186 |
+
"https://www.britannica.com/search?query=nuclear%20physics&page=5",
|
187 |
+
"https://www.britannica.com/search?query=nuclear%20physics&page=6",
|
188 |
+
"https://www.britannica.com/search?query=nuclear%20physics&page=7",
|
189 |
+
"https://www.britannica.com/search?query=nuclear%20physics&page=8",
|
190 |
+
"https://www.britannica.com/search?query=nuclear%20physics&page=9",
|
191 |
+
"https://www.britannica.com/search?query=nuclear%20physics&page=10",
|
192 |
+
"https://www.britannica.com/search?query=nuclear%20fusion&page=1",
|
193 |
+
"https://www.britannica.com/search?query=nuclear%20fusion&page=2",
|
194 |
+
"https://www.britannica.com/search?query=nuclear%20fusion&page=3",
|
195 |
+
"https://www.britannica.com/search?query=nuclear%20fusion&page=4",
|
196 |
+
"https://www.britannica.com/search?query=nuclear%20fusion&page=5",
|
197 |
+
"https://www.britannica.com/search?query=nuclear%20fusion&page=6",
|
198 |
+
"https://www.britannica.com/search?query=nuclear%20fusion&page=7",
|
199 |
+
"https://www.britannica.com/search?query=nuclear%20fusion&page=8",
|
200 |
+
"https://www.britannica.com/search?query=nuclear%20fusion&page=9",
|
201 |
+
"https://www.britannica.com/search?query=nuclear%20fusion&page=10",
|
202 |
+
"https://www.britannica.com/search?query=CRISPR%20CAS-9&page=1",
|
203 |
+
"https://www.britannica.com/search?query=CRISPR%20CAS-9&page=2",
|
204 |
+
"https://www.britannica.com/search?query=CRISPR%20CAS-9&page=3",
|
205 |
+
"https://www.britannica.com/search?query=CRISPR%20CAS-9&page=4",
|
206 |
+
"https://www.britannica.com/search?query=CRISPR%20CAS-9&page=5",
|
207 |
+
"https://www.britannica.com/search?query=CRISPR%20CAS-9&page=6",
|
208 |
+
"https://www.britannica.com/search?query=CRISPR%20CAS-9&page=7",
|
209 |
+
"https://www.britannica.com/search?query=CRISPR%20CAS-9&page=8",
|
210 |
+
"https://www.britannica.com/search?query=CRISPR%20CAS-9&page=9",
|
211 |
+
"https://www.britannica.com/search?query=CRISPR%20CAS-9&page=10",
|
212 |
+
"https://www.britannica.com/search?query=virginia%20woolf&page=1",
|
213 |
+
"https://www.britannica.com/search?query=virginia%20woolf&page=2",
|
214 |
+
"https://www.britannica.com/search?query=virginia%20woolf&page=3",
|
215 |
+
"https://www.britannica.com/search?query=virginia%20woolf&page=4",
|
216 |
+
"https://www.britannica.com/search?query=virginia%20woolf&page=5",
|
217 |
+
"https://www.britannica.com/search?query=virginia%20woolf&page=6",
|
218 |
+
"https://www.britannica.com/search?query=virginia%20woolf&page=7",
|
219 |
+
"https://www.britannica.com/search?query=virginia%20woolf&page=8",
|
220 |
+
"https://www.britannica.com/search?query=virginia%20woolf&page=9",
|
221 |
+
"https://www.britannica.com/search?query=virginia%20woolf&page=10",
|
222 |
+
"https://www.britannica.com/search?query=cocaine&page=1",
|
223 |
+
"https://www.britannica.com/search?query=cocaine&page=2",
|
224 |
+
"https://www.britannica.com/search?query=cocaine&page=3",
|
225 |
+
"https://www.britannica.com/search?query=cocaine&page=4",
|
226 |
+
"https://www.britannica.com/search?query=cocaine&page=5",
|
227 |
+
"https://www.britannica.com/search?query=cocaine&page=6",
|
228 |
+
"https://www.britannica.com/search?query=cocaine&page=7",
|
229 |
+
"https://www.britannica.com/search?query=cocaine&page=8",
|
230 |
+
"https://www.britannica.com/search?query=cocaine&page=9",
|
231 |
+
"https://www.britannica.com/search?query=cocaine&page=10",
|
232 |
+
"https://www.britannica.com/search?query=marijuana&page=1",
|
233 |
+
"https://www.britannica.com/search?query=marijuana&page=2",
|
234 |
+
"https://www.britannica.com/search?query=marijuana&page=3",
|
235 |
+
"https://www.britannica.com/search?query=marijuana&page=4",
|
236 |
+
"https://www.britannica.com/search?query=marijuana&page=5",
|
237 |
+
"https://www.britannica.com/search?query=marijuana&page=6",
|
238 |
+
"https://www.britannica.com/search?query=marijuana&page=7",
|
239 |
+
"https://www.britannica.com/search?query=marijuana&page=8",
|
240 |
+
"https://www.britannica.com/search?query=marijuana&page=9",
|
241 |
+
"https://www.britannica.com/search?query=marijuana&page=10",
|
242 |
+
"https://www.britannica.com/search?query=apollo%20missions&page=1",
|
243 |
+
"https://www.britannica.com/search?query=apollo%20missions&page=2",
|
244 |
+
"https://www.britannica.com/search?query=apollo%20missions&page=3",
|
245 |
+
"https://www.britannica.com/search?query=apollo%20missions&page=4",
|
246 |
+
"https://www.britannica.com/search?query=apollo%20missions&page=5",
|
247 |
+
"https://www.britannica.com/search?query=apollo%20missions&page=6",
|
248 |
+
"https://www.britannica.com/search?query=apollo%20missions&page=7",
|
249 |
+
"https://www.britannica.com/search?query=apollo%20missions&page=8",
|
250 |
+
"https://www.britannica.com/search?query=apollo%20missions&page=9",
|
251 |
+
"https://www.britannica.com/search?query=apollo%20missions&page=10",
|
252 |
+
"https://www.britannica.com/search?query=birds&page=1",
|
253 |
+
"https://www.britannica.com/search?query=birds&page=2",
|
254 |
+
"https://www.britannica.com/search?query=birds&page=3",
|
255 |
+
"https://www.britannica.com/search?query=birds&page=4",
|
256 |
+
"https://www.britannica.com/search?query=birds&page=5",
|
257 |
+
"https://www.britannica.com/search?query=birds&page=6",
|
258 |
+
"https://www.britannica.com/search?query=birds&page=7",
|
259 |
+
"https://www.britannica.com/search?query=birds&page=8",
|
260 |
+
"https://www.britannica.com/search?query=birds&page=9",
|
261 |
+
"https://www.britannica.com/search?query=birds&page=10",
|
262 |
+
"https://www.britannica.com/search?query=blogs&page=1",
|
263 |
+
"https://www.britannica.com/search?query=blogs&page=2",
|
264 |
+
"https://www.britannica.com/search?query=blogs&page=3",
|
265 |
+
"https://www.britannica.com/search?query=blogs&page=4",
|
266 |
+
"https://www.britannica.com/search?query=blogs&page=5",
|
267 |
+
"https://www.britannica.com/search?query=blogs&page=6",
|
268 |
+
"https://www.britannica.com/search?query=blogs&page=7",
|
269 |
+
"https://www.britannica.com/search?query=blogs&page=8",
|
270 |
+
"https://www.britannica.com/search?query=blogs&page=9",
|
271 |
+
"https://www.britannica.com/search?query=blogs&page=10",
|
272 |
+
"https://www.britannica.com/search?query=journal&page=1",
|
273 |
+
"https://www.britannica.com/search?query=journal&page=2",
|
274 |
+
"https://www.britannica.com/search?query=journal&page=3",
|
275 |
+
"https://www.britannica.com/search?query=journal&page=4",
|
276 |
+
"https://www.britannica.com/search?query=journal&page=5",
|
277 |
+
"https://www.britannica.com/search?query=journal&page=6",
|
278 |
+
"https://www.britannica.com/search?query=journal&page=7",
|
279 |
+
"https://www.britannica.com/search?query=journal&page=8",
|
280 |
+
"https://www.britannica.com/search?query=journal&page=9",
|
281 |
+
"https://www.britannica.com/search?query=journal&page=10",
|
282 |
+
"https://www.britannica.com/search?query=Adolf%20Hitler&page=1",
|
283 |
+
"https://www.britannica.com/search?query=Adolf%20Hitler&page=2",
|
284 |
+
"https://www.britannica.com/search?query=Adolf%20Hitler&page=3",
|
285 |
+
"https://www.britannica.com/search?query=Adolf%20Hitler&page=4",
|
286 |
+
"https://www.britannica.com/search?query=Adolf%20Hitler&page=5",
|
287 |
+
"https://www.britannica.com/search?query=Adolf%20Hitler&page=6",
|
288 |
+
"https://www.britannica.com/search?query=Adolf%20Hitler&page=7",
|
289 |
+
"https://www.britannica.com/search?query=Adolf%20Hitler&page=8",
|
290 |
+
"https://www.britannica.com/search?query=Adolf%20Hitler&page=9",
|
291 |
+
"https://www.britannica.com/search?query=Adolf%20Hitler&page=10",
|
292 |
+
"https://www.britannica.com/search?query=Presidents%20of%20United%20States&page=1",
|
293 |
+
"https://www.britannica.com/search?query=Presidents%20of%20United%20States&page=2",
|
294 |
+
"https://www.britannica.com/search?query=Presidents%20of%20United%20States&page=3",
|
295 |
+
"https://www.britannica.com/search?query=Presidents%20of%20United%20States&page=4",
|
296 |
+
"https://www.britannica.com/search?query=Presidents%20of%20United%20States&page=5",
|
297 |
+
"https://www.britannica.com/search?query=Presidents%20of%20United%20States&page=6",
|
298 |
+
"https://www.britannica.com/search?query=Presidents%20of%20United%20States&page=7",
|
299 |
+
"https://www.britannica.com/search?query=Presidents%20of%20United%20States&page=8",
|
300 |
+
"https://www.britannica.com/search?query=Presidents%20of%20United%20States&page=9",
|
301 |
+
"https://www.britannica.com/search?query=Presidents%20of%20United%20States&page=10"
|
302 |
+
]
|
webscrapper/idk.py
ADDED
@@ -0,0 +1,44 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
"""
|
2 |
+
--> Bhav nhi deta main iss code ko
|
3 |
+
--> kuch to krta h, bss malum nhi
|
4 |
+
"""
|
5 |
+
|
6 |
+
from bs4 import BeautifulSoup
|
7 |
+
import requests
|
8 |
+
import json
|
9 |
+
|
10 |
+
file_path = './search_queries.json'
|
11 |
+
with open(file_path, 'r', encoding='utf-8') as file:
|
12 |
+
url_dict = json.load(file)
|
13 |
+
|
14 |
+
def fetch_url(snippet):
|
15 |
+
url = f"https://www.britannica.com{snippet}"
|
16 |
+
headers = {'User-Agent': "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36 Edge/12.246"}
|
17 |
+
r = requests.get(url=url, headers=headers)
|
18 |
+
return r
|
19 |
+
|
20 |
+
def scrapper(content):
|
21 |
+
soup = BeautifulSoup(content, 'html5lib')
|
22 |
+
links = []
|
23 |
+
for link in soup.find_all('a', href=True):
|
24 |
+
links.append(link['href'])
|
25 |
+
|
26 |
+
paragraph_data = soup.find_all('p')
|
27 |
+
return paragraph_data, links
|
28 |
+
|
29 |
+
def main():
|
30 |
+
for query_data in url_dict:
|
31 |
+
query = query_data['query']
|
32 |
+
link = query_data['links']
|
33 |
+
|
34 |
+
print(f"scarpping html for '{query}' now")
|
35 |
+
for link_list in link:
|
36 |
+
for links in link_list:
|
37 |
+
html_content = fetch_url(links)
|
38 |
+
scrapped_html, extra_urls = scrapper(html_content.content)
|
39 |
+
print(scrapped_html)
|
40 |
+
# with open(f'codes/html content/{query}.txt', 'w', encoding='utf-8') as outfile:
|
41 |
+
# outfile.write(scrapped_html)
|
42 |
+
|
43 |
+
if __name__ == "__main__":
|
44 |
+
main()
|
webscrapper/search_queries.json
ADDED
@@ -0,0 +1,41 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
[
|
2 |
+
"antarctica",
|
3 |
+
"colonization",
|
4 |
+
"world war",
|
5 |
+
"asia",
|
6 |
+
"africa",
|
7 |
+
"australia",
|
8 |
+
"holocaust",
|
9 |
+
"voyages",
|
10 |
+
"biological viruses",
|
11 |
+
"Martin Luther King Jr",
|
12 |
+
"Abraham Lincon",
|
13 |
+
"Quarks",
|
14 |
+
"Quantum Mechanincs",
|
15 |
+
"Biological Viruses",
|
16 |
+
"Drugs",
|
17 |
+
"Rockets",
|
18 |
+
"Physics",
|
19 |
+
"Mathematics",
|
20 |
+
"nuclear physics",
|
21 |
+
"nuclear fusion",
|
22 |
+
"CRISPR CAS-9",
|
23 |
+
"virginia woolf",
|
24 |
+
"cocaine",
|
25 |
+
"marijuana",
|
26 |
+
"apollo missions",
|
27 |
+
"birds",
|
28 |
+
"blogs",
|
29 |
+
"journal",
|
30 |
+
"Adolf Hitler",
|
31 |
+
"Presidents of United States",
|
32 |
+
"genders and sexes",
|
33 |
+
"journalism",
|
34 |
+
"maths theories",
|
35 |
+
"matter and particles",
|
36 |
+
"discoveries",
|
37 |
+
"authoers and writers",
|
38 |
+
"poets and novel writers",
|
39 |
+
"literature",
|
40 |
+
"awards and honors"
|
41 |
+
]
|