Lukas Braach commited on
Commit
aed0607
·
1 Parent(s): 6acb43e

move to merged files

Browse files
This view is limited to 50 files because it contains too many changes.   See raw diff
.gitattributes CHANGED
@@ -53,5 +53,7 @@ saved_model/**/* filter=lfs diff=lfs merge=lfs -text
53
  *.jpg filter=lfs diff=lfs merge=lfs -text
54
  *.jpeg filter=lfs diff=lfs merge=lfs -text
55
  *.webp filter=lfs diff=lfs merge=lfs -text
 
56
  # Video files - compressed
57
  *.mp4 filter=lfs diff=lfs merge=lfs -text
 
 
53
  *.jpg filter=lfs diff=lfs merge=lfs -text
54
  *.jpeg filter=lfs diff=lfs merge=lfs -text
55
  *.webp filter=lfs diff=lfs merge=lfs -text
56
+
57
  # Video files - compressed
58
  *.mp4 filter=lfs diff=lfs merge=lfs -text
59
+ *.csv filter=lfs diff=lfs merge=lfs -text
bundestag_slr.py ADDED
@@ -0,0 +1,134 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ from typing import List, Dict
2
+
3
+ import cv2
4
+ import datasets
5
+ import numpy as np
6
+ import pandas as pd
7
+ from datasets import Sequence, Image, Value
8
+
9
+ base_url = "."
10
+
11
+
12
+ def read_non_empty_lines(file_path):
13
+ with open(file_path) as file:
14
+ lines = [line.strip() for line in file if line.strip()]
15
+
16
+ return lines
17
+
18
+
19
+ def load_video(video_path):
20
+ """Load video and return frames as a list of arrays."""
21
+ cap = cv2.VideoCapture(video_path)
22
+ frames = []
23
+ while cap.isOpened():
24
+ ret, frame = cap.read()
25
+ if not ret:
26
+ break
27
+ frames.append(frame)
28
+ cap.release()
29
+ return np.array(frames)
30
+
31
+
32
+ class BundestagSLR(datasets.GeneratorBasedBuilder):
33
+ """BUNDESTAG SLR: Continuous Sign Language Recognition Dataset."""
34
+
35
+ VERSION = datasets.Version("1.0.0")
36
+ DEFAULT_WRITER_BATCH_SIZE = 25
37
+
38
+ def _info(self):
39
+ features_dict = {
40
+ "id": Value("string"),
41
+ "subtitle": Value("string"),
42
+ "frames": Sequence(Image()),
43
+ }
44
+
45
+ return datasets.DatasetInfo(
46
+ features=datasets.Features(features_dict),
47
+ # No default supervised_keys (as we have to pass both question
48
+ # and context as input).
49
+ supervised_keys=None,
50
+ )
51
+
52
+ def _split_generators(self, dl_manager: datasets.DownloadManager):
53
+ frames = {}
54
+ other_data = {}
55
+
56
+ data_csv = dl_manager.download(f"{base_url}/video_ids.txt")
57
+ df = pd.read_csv(data_csv, header=None, names=['id'])
58
+
59
+ video_ids_all = df['id']
60
+
61
+ video_ids = {
62
+ datasets.Split.TRAIN: video_ids_all[:int(len(video_ids_all) * 0.8)],
63
+ datasets.Split.VALIDATION: video_ids_all[int(len(video_ids_all) * 0.8):int(len(video_ids_all) * 0.9)],
64
+ datasets.Split.TEST: video_ids_all[int(len(video_ids_all) * 0.9):],
65
+ }
66
+
67
+ for split in [
68
+ datasets.Split.TRAIN,
69
+ datasets.Split.VALIDATION,
70
+ datasets.Split.TEST,
71
+ ]:
72
+ subtitle_files_split = dl_manager.download([
73
+ f"{base_url}/videos/{id}/subtitles.txt"
74
+ for id in video_ids[split]
75
+ ])
76
+
77
+ video_file_names_split = []
78
+ video_subtitles_split = []
79
+ video_frames_split = []
80
+
81
+ for idx, subtitle_file in zip(video_ids[split], subtitle_files_split):
82
+ lines = read_non_empty_lines(subtitle_file)
83
+
84
+ video_file_names = [f"{base_url}/videos/{idx}/{i}.mp4" for i in range(len(lines))]
85
+ video_file_names_split.extend(video_file_names)
86
+ video_subtitles_split.extend(lines)
87
+
88
+ video_frames_split.extend(dl_manager.download(video_file_names))
89
+
90
+ other_data_split = {}
91
+
92
+ for video, file_name, subtitle, in zip(video_frames_split, video_file_names_split, video_subtitles_split):
93
+ other_data_split[video] = {
94
+ "id": file_name,
95
+ "subtitle": subtitle,
96
+ }
97
+
98
+ other_data[split] = other_data_split
99
+ frames[split] = video_frames_split
100
+
101
+ return [
102
+ datasets.SplitGenerator(
103
+ name=split,
104
+ gen_kwargs={
105
+ "videos": frames[split],
106
+ "other_data": other_data[split],
107
+ },
108
+ )
109
+ for split in [
110
+ datasets.Split.TRAIN,
111
+ datasets.Split.VALIDATION,
112
+ datasets.Split.TEST,
113
+ ]
114
+ ]
115
+
116
+ def _generate_examples(self, videos: List[dict], other_data: Dict[dict, dict]):
117
+ """
118
+ _generate_examples generates examples for the HuggingFace dataset.
119
+ It takes a list of frame_archives and the corresponding dict of other data.
120
+ Each frame_archive acts as a key for the further data.
121
+
122
+ :param frame_archives: list of ArchiveIterables
123
+ :param other_data: Dict from ArchiveIterables to other data
124
+ """
125
+ for key, frames in enumerate(videos):
126
+ ex = other_data[frames]
127
+
128
+ result = {
129
+ "id": ex['id'],
130
+ "subtitle": ex['subtitle'],
131
+ "frames": load_video(frames),
132
+ }
133
+
134
+ yield key, result
metadata.csv ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e8bae608b4b67168ca76d291a9c7607b7eb0760d13afd2e5c6fc4242b4b56b92
3
+ size 37376385
video_ids.txt DELETED
@@ -1,433 +0,0 @@
1
- 7337902
2
- 7455455
3
- 7501658
4
- 7501858
5
- 7501891
6
- 7501914
7
- 7502269
8
- 7502276
9
- 7502288
10
- 7502297
11
- 7502307
12
- 7504331
13
- 7504355
14
- 7504356
15
- 7504360
16
- 7504388
17
- 7504405
18
- 7505058
19
- 7505064
20
- 7505077
21
- 7505097
22
- 7505106
23
- 7506026
24
- 7506031
25
- 7506430
26
- 7506456
27
- 7506483
28
- 7506668
29
- 7506708
30
- 7510046
31
- 7510047
32
- 7510697
33
- 7510701
34
- 7510776
35
- 7510778
36
- 7510785
37
- 7510795
38
- 7510799
39
- 7511174
40
- 7511190
41
- 7511191
42
- 7511207
43
- 7511229
44
- 7511232
45
- 7511246
46
- 7516632
47
- 7516649
48
- 7516662
49
- 7516680
50
- 7516689
51
- 7516703
52
- 7517103
53
- 7517104
54
- 7517105
55
- 7517134
56
- 7517137
57
- 7517150
58
- 7519042
59
- 7519667
60
- 7519668
61
- 7519669
62
- 7519674
63
- 7519684
64
- 7519689
65
- 7519886
66
- 7519896
67
- 7519913
68
- 7519933
69
- 7520139
70
- 7520145
71
- 7522712
72
- 7522713
73
- 7522724
74
- 7522743
75
- 7522758
76
- 7522772
77
- 7523343
78
- 7523356
79
- 7523375
80
- 7523384
81
- 7523400
82
- 7523410
83
- 7526472
84
- 7526476
85
- 7526480
86
- 7526483
87
- 7526486
88
- 7526489
89
- 7526654
90
- 7526657
91
- 7526677
92
- 7526686
93
- 7526703
94
- 7526718
95
- 7526733
96
- 7526764
97
- 7530162
98
- 7530611
99
- 7530615
100
- 7530626
101
- 7530648
102
- 7530853
103
- 7530872
104
- 7530881
105
- 7530897
106
- 7530908
107
- 7530922
108
- 7531843
109
- 7531959
110
- 7531995
111
- 7532015
112
- 7532162
113
- 7532182
114
- 7532183
115
- 7532191
116
- 7532192
117
- 7532248
118
- 7532261
119
- 7532265
120
- 7532280
121
- 7532299
122
- 7532320
123
- 7532325
124
- 7532340
125
- 7532343
126
- 7532359
127
- 7532415
128
- 7532427
129
- 7532441
130
- 7532452
131
- 7532470
132
- 7532481
133
- 7532542
134
- 7532569
135
- 7532578
136
- 7532579
137
- 7532580
138
- 7532590
139
- 7532593
140
- 7532605
141
- 7532622
142
- 7532632
143
- 7532646
144
- 7532667
145
- 7532670
146
- 7532693
147
- 7532729
148
- 7532755
149
- 7532768
150
- 7532781
151
- 7532789
152
- 7532804
153
- 7532813
154
- 7532825
155
- 7532851
156
- 7532916
157
- 7533022
158
- 7533030
159
- 7533044
160
- 7533045
161
- 7533046
162
- 7533049
163
- 7533066
164
- 7533177
165
- 7533203
166
- 7533222
167
- 7533246
168
- 7533375
169
- 7533389
170
- 7533399
171
- 7533419
172
- 7533429
173
- 7533512
174
- 7533527
175
- 7533544
176
- 7533554
177
- 7533567
178
- 7533661
179
- 7533701
180
- 7533724
181
- 7533885
182
- 7533904
183
- 7533928
184
- 7533944
185
- 7534033
186
- 7534215
187
- 7534253
188
- 7534257
189
- 7534278
190
- 7534298
191
- 7534450
192
- 7535043
193
- 7535182
194
- 7535225
195
- 7535356
196
- 7535376
197
- 7535580
198
- 7535592
199
- 7535611
200
- 7535632
201
- 7535777
202
- 7535800
203
- 7535999
204
- 7536015
205
- 7536036
206
- 7536056
207
- 7536219
208
- 7536290
209
- 7536291
210
- 7536439
211
- 7536505
212
- 7536521
213
- 7536587
214
- 7536591
215
- 7536753
216
- 7536770
217
- 7536780
218
- 7537003
219
- 7537507
220
- 7537520
221
- 7537538
222
- 7537557
223
- 7537761
224
- 7537795
225
- 7537944
226
- 7538049
227
- 7538059
228
- 7538062
229
- 7538115
230
- 7538116
231
- 7538120
232
- 7538373
233
- 7538392
234
- 7538424
235
- 7545916
236
- 7545935
237
- 7545939
238
- 7545965
239
- 7546169
240
- 7546191
241
- 7546655
242
- 7546840
243
- 7546862
244
- 7546884
245
- 7546907
246
- 7547102
247
- 7547117
248
- 7547140
249
- 7547325
250
- 7547345
251
- 7547367
252
- 7547388
253
- 7547548
254
- 7547577
255
- 7547921
256
- 7547924
257
- 7547925
258
- 7547926
259
- 7547927
260
- 7547928
261
- 7548146
262
- 7548148
263
- 7548369
264
- 7548850
265
- 7548882
266
- 7548896
267
- 7548918
268
- 7549185
269
- 7549188
270
- 7549190
271
- 7549446
272
- 7549470
273
- 7549491
274
- 7549537
275
- 7549697
276
- 7549698
277
- 7549939
278
- 7549944
279
- 7549946
280
- 7549948
281
- 7549965
282
- 7550135
283
- 7550164
284
- 7550336
285
- 7550353
286
- 7550374
287
- 7550397
288
- 7550545
289
- 7550567
290
- 7550832
291
- 7550833
292
- 7550834
293
- 7550865
294
- 7551011
295
- 7551035
296
- 7551263
297
- 7551275
298
- 7551303
299
- 7551363
300
- 7551480
301
- 7551498
302
- 7551747
303
- 7551751
304
- 7551772
305
- 7551982
306
- 7552414
307
- 7552418
308
- 7552639
309
- 7552640
310
- 7552664
311
- 7552685
312
- 7552700
313
- 7552750
314
- 7552916
315
- 7552917
316
- 7553337
317
- 7553338
318
- 7553681
319
- 7553685
320
- 7553741
321
- 7553782
322
- 7554037
323
- 7554066
324
- 7554346
325
- 7554557
326
- 7554584
327
- 7554816
328
- 7554819
329
- 7554823
330
- 7554850
331
- 7554878
332
- 7554894
333
- 7555053
334
- 7555140
335
- 7555157
336
- 7555422
337
- 7555460
338
- 7555503
339
- 7555556
340
- 7555778
341
- 7555797
342
- 7555973
343
- 7556072
344
- 7556081
345
- 7556113
346
- 7556161
347
- 7556300
348
- 7556311
349
- 7556855
350
- 7578612
351
- 7578622
352
- 7578640
353
- 7578662
354
- 7578688
355
- 7580529
356
- 7580538
357
- 7590962
358
- 7590988
359
- 7591030
360
- 7591066
361
- 7591293
362
- 7591336
363
- 7591351
364
- 7601709
365
- 7601751
366
- 7602031
367
- 7602032
368
- 7602214
369
- 7602241
370
- 7602259
371
- 7602286
372
- 7602499
373
- 7602519
374
- 7603069
375
- 7603078
376
- 7603096
377
- 7603113
378
- 7603370
379
- 7603389
380
- 7603548
381
- 7603648
382
- 7603651
383
- 7603677
384
- 7603694
385
- 7603912
386
- 7603915
387
- 7604114
388
- 7604549
389
- 7604567
390
- 7604990
391
- 7605012
392
- 7605051
393
- 7605294
394
- 7605309
395
- 7605554
396
- 7605555
397
- 7605586
398
- 7605601
399
- 7605830
400
- 7605871
401
- 7606478
402
- 7607320
403
- 7607334
404
- 7607374
405
- 7607454
406
- 7607674
407
- 7607703
408
- 7607717
409
- 7608121
410
- 7608408
411
- 7608409
412
- 7608419
413
- 7608461
414
- 7608727
415
- 7608736
416
- 7608912
417
- 7608937
418
- 7609010
419
- 7609026
420
- 7609284
421
- 7609288
422
- 7609562
423
- 7609576
424
- 7609598
425
- 7609618
426
- 7609799
427
- 7609816
428
- 7610390
429
- 7610408
430
- 7610452
431
- 7610475
432
- 7610784
433
- 7610785
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
videos/7337902.mp4 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:557c56831209fa47ce042835c55184c0acd2e3767578f1262af5365debe03d2d
3
+ size 120060889
videos/7337902/0.mp4 DELETED
@@ -1,3 +0,0 @@
1
- version https://git-lfs.github.com/spec/v1
2
- oid sha256:607e583ca59bf6af07cb811c732569b8bdf49b9d90588defaa1cf38ee6c0ef56
3
- size 67225
 
 
 
 
videos/7337902/1.mp4 DELETED
@@ -1,3 +0,0 @@
1
- version https://git-lfs.github.com/spec/v1
2
- oid sha256:34f77a193c47da5288b904e4ac43964d44b46f2ba0e044760f85af021fd3e876
3
- size 85759
 
 
 
 
videos/7337902/10.mp4 DELETED
@@ -1,3 +0,0 @@
1
- version https://git-lfs.github.com/spec/v1
2
- oid sha256:1e6d735560e2cfd372c93781732604af7e86b3035f011e181b78a45a8f172df8
3
- size 153828
 
 
 
 
videos/7337902/100.mp4 DELETED
@@ -1,3 +0,0 @@
1
- version https://git-lfs.github.com/spec/v1
2
- oid sha256:293a572ab65590617eaadbf8a7d9eac797d42f94a0e776531f28812acd9afdfc
3
- size 130810
 
 
 
 
videos/7337902/101.mp4 DELETED
@@ -1,3 +0,0 @@
1
- version https://git-lfs.github.com/spec/v1
2
- oid sha256:5a4ec33a4bd42bffbb8d9b4bd661c9dd03bbab5b4f4feb22dc941a6ea3f476cc
3
- size 140860
 
 
 
 
videos/7337902/102.mp4 DELETED
@@ -1,3 +0,0 @@
1
- version https://git-lfs.github.com/spec/v1
2
- oid sha256:1e6f219099f15217e20ea3d32678c640ff16c9d351eaf9a8c53a3881583590fb
3
- size 145744
 
 
 
 
videos/7337902/103.mp4 DELETED
@@ -1,3 +0,0 @@
1
- version https://git-lfs.github.com/spec/v1
2
- oid sha256:d4d0cbce7c09bdb5d8331ea61db95909a6f33c58c551f6205e984ed4df762fd1
3
- size 137569
 
 
 
 
videos/7337902/104.mp4 DELETED
@@ -1,3 +0,0 @@
1
- version https://git-lfs.github.com/spec/v1
2
- oid sha256:8d6f5950977cc67851a589354c9f58323dc5acf148bd6455ef71e210d15659c4
3
- size 146244
 
 
 
 
videos/7337902/105.mp4 DELETED
@@ -1,3 +0,0 @@
1
- version https://git-lfs.github.com/spec/v1
2
- oid sha256:3d0fdb31ad0de1e0f761bc086883a36d789d38e41974137f5dad6ea149d362a6
3
- size 160449
 
 
 
 
videos/7337902/106.mp4 DELETED
@@ -1,3 +0,0 @@
1
- version https://git-lfs.github.com/spec/v1
2
- oid sha256:2c107d960b2a12580ce5d3656d0ee82d3b329295d06064b1fdc33570ce4959b0
3
- size 283025
 
 
 
 
videos/7337902/107.mp4 DELETED
@@ -1,3 +0,0 @@
1
- version https://git-lfs.github.com/spec/v1
2
- oid sha256:64aadd8e328e71d8d0f7a6343721627292b26287c09a8d2acce3e5dafe8485ea
3
- size 118383
 
 
 
 
videos/7337902/108.mp4 DELETED
@@ -1,3 +0,0 @@
1
- version https://git-lfs.github.com/spec/v1
2
- oid sha256:ef121686c7e22967715a95dbf95b6e3d38fb8ccdbd36e2a609d8d88fd4c49980
3
- size 211041
 
 
 
 
videos/7337902/109.mp4 DELETED
@@ -1,3 +0,0 @@
1
- version https://git-lfs.github.com/spec/v1
2
- oid sha256:1bee6104fcaa2d32ca80676a23ed9618a0560a31a698fd3a92f77fa21cdfbe57
3
- size 255306
 
 
 
 
videos/7337902/11.mp4 DELETED
@@ -1,3 +0,0 @@
1
- version https://git-lfs.github.com/spec/v1
2
- oid sha256:6f8f53d4911b639854c9b6d5bbb27fbcc6b7d3df4abfe31eb8d63783ff0a19ef
3
- size 266767
 
 
 
 
videos/7337902/110.mp4 DELETED
@@ -1,3 +0,0 @@
1
- version https://git-lfs.github.com/spec/v1
2
- oid sha256:b51c6e19e6228517ee7854efcd70a7e9438d6a4b174cc768d2c2fd574084882b
3
- size 168287
 
 
 
 
videos/7337902/111.mp4 DELETED
@@ -1,3 +0,0 @@
1
- version https://git-lfs.github.com/spec/v1
2
- oid sha256:da313a7e5e1ba9a4878fbb701b2d38ed93aa9e91021370ce5a6703b670119dc9
3
- size 205881
 
 
 
 
videos/7337902/112.mp4 DELETED
@@ -1,3 +0,0 @@
1
- version https://git-lfs.github.com/spec/v1
2
- oid sha256:0131abdd5f87a71cee3ebc85006bf95cd50f15a2c8b9185c2dc7a92b578a8767
3
- size 203738
 
 
 
 
videos/7337902/113.mp4 DELETED
@@ -1,3 +0,0 @@
1
- version https://git-lfs.github.com/spec/v1
2
- oid sha256:28adf11e676b06d294ca67e81bbca513513901fc587f08f40b8190bb182ec7d2
3
- size 156068
 
 
 
 
videos/7337902/114.mp4 DELETED
@@ -1,3 +0,0 @@
1
- version https://git-lfs.github.com/spec/v1
2
- oid sha256:47d338be194bab71f92943407f2e97deefc25163a0e2b8e5722cb724c25c8213
3
- size 175050
 
 
 
 
videos/7337902/115.mp4 DELETED
@@ -1,3 +0,0 @@
1
- version https://git-lfs.github.com/spec/v1
2
- oid sha256:ae446a5c3dce51e8c8bff792bbd59e18adbdba91f6912026fe23079f047eeed7
3
- size 155332
 
 
 
 
videos/7337902/116.mp4 DELETED
@@ -1,3 +0,0 @@
1
- version https://git-lfs.github.com/spec/v1
2
- oid sha256:4c10327cefe36ce014884f5ce8237bef93b4b5c726f1b67a3518878b84f9b6d4
3
- size 127292
 
 
 
 
videos/7337902/117.mp4 DELETED
@@ -1,3 +0,0 @@
1
- version https://git-lfs.github.com/spec/v1
2
- oid sha256:d5e9396d087cbb7553ce9d714c14483717c18aa5635a2612b2eb31cf499559fe
3
- size 183356
 
 
 
 
videos/7337902/118.mp4 DELETED
@@ -1,3 +0,0 @@
1
- version https://git-lfs.github.com/spec/v1
2
- oid sha256:7587974578264391b9f1819459982c884612666e205a09d1258be4199e8296dc
3
- size 165133
 
 
 
 
videos/7337902/119.mp4 DELETED
@@ -1,3 +0,0 @@
1
- version https://git-lfs.github.com/spec/v1
2
- oid sha256:c3b39bb5aed98a1fbf89cab597fbe670214b9b6210aca79a9289db84c334045a
3
- size 151664
 
 
 
 
videos/7337902/12.mp4 DELETED
@@ -1,3 +0,0 @@
1
- version https://git-lfs.github.com/spec/v1
2
- oid sha256:38febe11bdf62d875cbc7275eea94648ca7649b0cebffb42b3fb0b7b20e8c1dc
3
- size 183355
 
 
 
 
videos/7337902/120.mp4 DELETED
@@ -1,3 +0,0 @@
1
- version https://git-lfs.github.com/spec/v1
2
- oid sha256:1eca887591b396ba0854ae34199168851422e6dbd60472ba9a3be3c9310ca840
3
- size 196865
 
 
 
 
videos/7337902/121.mp4 DELETED
@@ -1,3 +0,0 @@
1
- version https://git-lfs.github.com/spec/v1
2
- oid sha256:2ca519f730ed480da310d39a2a29b2337b628e2c8910c3b57001138df3ad6d4b
3
- size 249323
 
 
 
 
videos/7337902/122.mp4 DELETED
@@ -1,3 +0,0 @@
1
- version https://git-lfs.github.com/spec/v1
2
- oid sha256:cf2f35cc33276983ee2514075dee421c5f890ddef26d92847c14c2b36ec12b5c
3
- size 157758
 
 
 
 
videos/7337902/123.mp4 DELETED
@@ -1,3 +0,0 @@
1
- version https://git-lfs.github.com/spec/v1
2
- oid sha256:8dcb49bebba0cd774768f0417332ec147cf42115952b5e08344e31be165521bb
3
- size 182023
 
 
 
 
videos/7337902/124.mp4 DELETED
@@ -1,3 +0,0 @@
1
- version https://git-lfs.github.com/spec/v1
2
- oid sha256:eb21edbd267b446cb5cd410e164764f7b40843fe4914fdfc3b406247f499bd9d
3
- size 174489
 
 
 
 
videos/7337902/125.mp4 DELETED
@@ -1,3 +0,0 @@
1
- version https://git-lfs.github.com/spec/v1
2
- oid sha256:144c4830b24fff8a340dd089cfd3f6e5607b83c237e95dfa9d816f9bd8203cb7
3
- size 218301
 
 
 
 
videos/7337902/126.mp4 DELETED
@@ -1,3 +0,0 @@
1
- version https://git-lfs.github.com/spec/v1
2
- oid sha256:7a05b6eb047ced4fa113e310fdd75f37586092b22c0c28f059a950dcddf54ffc
3
- size 175547
 
 
 
 
videos/7337902/127.mp4 DELETED
@@ -1,3 +0,0 @@
1
- version https://git-lfs.github.com/spec/v1
2
- oid sha256:b06d9d9c54714f9e8a4ac3f3068dcafce8ac2c24ad839abd124d093da9a9f0e3
3
- size 128824
 
 
 
 
videos/7337902/128.mp4 DELETED
@@ -1,3 +0,0 @@
1
- version https://git-lfs.github.com/spec/v1
2
- oid sha256:601ebfeb89b30a6b2dd38f0910d0516d3dca65ae98a71daee8f3a70c91fb32b3
3
- size 185222
 
 
 
 
videos/7337902/129.mp4 DELETED
@@ -1,3 +0,0 @@
1
- version https://git-lfs.github.com/spec/v1
2
- oid sha256:02ab15f7b310c7426a2ef92b852910e8f9bef836b80945c45d136b6f59bd1d73
3
- size 244007
 
 
 
 
videos/7337902/13.mp4 DELETED
@@ -1,3 +0,0 @@
1
- version https://git-lfs.github.com/spec/v1
2
- oid sha256:cf7fe0a5ff230228eb519f0a39ce2a84613ab214a75ebfc4116a4ca7317b394b
3
- size 211517
 
 
 
 
videos/7337902/130.mp4 DELETED
@@ -1,3 +0,0 @@
1
- version https://git-lfs.github.com/spec/v1
2
- oid sha256:a1001e416a3dddb7dd0ccbe5c274acb3bfe2e87f9b6c9f9476d7f4483992ce74
3
- size 169736
 
 
 
 
videos/7337902/131.mp4 DELETED
@@ -1,3 +0,0 @@
1
- version https://git-lfs.github.com/spec/v1
2
- oid sha256:ed7ce05bded8cbad5cc75f5ad3be1f508fe48d121c571eb3129421144c3530ca
3
- size 159826
 
 
 
 
videos/7337902/132.mp4 DELETED
@@ -1,3 +0,0 @@
1
- version https://git-lfs.github.com/spec/v1
2
- oid sha256:4afa8869ef98664566e43736f2ac6165d5ac157fdcb821ac025d665734eacc5c
3
- size 192189
 
 
 
 
videos/7337902/133.mp4 DELETED
@@ -1,3 +0,0 @@
1
- version https://git-lfs.github.com/spec/v1
2
- oid sha256:70bcb945dd92cda3e4a229585844cae9b3e42876bfa982ec953614b2d428bca6
3
- size 160367
 
 
 
 
videos/7337902/134.mp4 DELETED
@@ -1,3 +0,0 @@
1
- version https://git-lfs.github.com/spec/v1
2
- oid sha256:bea35dfed1c7c2957a724633c007e35af726e720764adf5f5f40f00796f00ea5
3
- size 173282
 
 
 
 
videos/7337902/135.mp4 DELETED
@@ -1,3 +0,0 @@
1
- version https://git-lfs.github.com/spec/v1
2
- oid sha256:800e7022878f0f7c308038f8fe20ac05284a47075dcc8cde022dfbf832439f11
3
- size 198270
 
 
 
 
videos/7337902/136.mp4 DELETED
@@ -1,3 +0,0 @@
1
- version https://git-lfs.github.com/spec/v1
2
- oid sha256:0dfaf398c8c4f88b16a4791cae8588dfb0df1dfa5426b479f9d205c7bd492ad2
3
- size 156620
 
 
 
 
videos/7337902/137.mp4 DELETED
@@ -1,3 +0,0 @@
1
- version https://git-lfs.github.com/spec/v1
2
- oid sha256:7e5efb835823346772131b0db3e902f6b7544a853b1afd4cb94ecc3e9fbd8958
3
- size 122077
 
 
 
 
videos/7337902/138.mp4 DELETED
@@ -1,3 +0,0 @@
1
- version https://git-lfs.github.com/spec/v1
2
- oid sha256:ec90a5c4d9ff70d5c1cf731592cae45cd09c1f74446f790a2eee84f62bca8896
3
- size 160482