-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtrending_by_time.csv
We can't make this file beautiful and searchable because it's too large.
12344 lines (12344 loc) · 673 KB
/
trending_by_time.csv
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
record_id,region,trending_date,category_title,videos_count
1,France,2017-11-14 00:00:00.000000,Autos & Vehicles,8
2,France,2017-11-15 00:00:00.000000,Autos & Vehicles,2
3,France,2017-11-16 00:00:00.000000,Autos & Vehicles,6
4,France,2017-11-17 00:00:00.000000,Autos & Vehicles,8
5,France,2017-11-18 00:00:00.000000,Autos & Vehicles,4
6,France,2017-11-19 00:00:00.000000,Autos & Vehicles,10
7,France,2017-11-20 00:00:00.000000,Autos & Vehicles,12
8,France,2017-11-21 00:00:00.000000,Autos & Vehicles,8
9,France,2017-11-22 00:00:00.000000,Autos & Vehicles,4
10,France,2017-11-23 00:00:00.000000,Autos & Vehicles,6
11,France,2017-11-24 00:00:00.000000,Autos & Vehicles,8
12,France,2017-11-25 00:00:00.000000,Autos & Vehicles,8
13,France,2017-11-26 00:00:00.000000,Autos & Vehicles,10
14,France,2017-11-27 00:00:00.000000,Autos & Vehicles,26
15,France,2017-11-28 00:00:00.000000,Autos & Vehicles,16
16,France,2017-11-29 00:00:00.000000,Autos & Vehicles,4
17,France,2017-11-30 00:00:00.000000,Autos & Vehicles,10
18,France,2017-12-01 00:00:00.000000,Autos & Vehicles,12
19,France,2017-12-02 00:00:00.000000,Autos & Vehicles,6
20,France,2017-12-03 00:00:00.000000,Autos & Vehicles,4
21,France,2017-12-04 00:00:00.000000,Autos & Vehicles,8
22,France,2017-12-05 00:00:00.000000,Autos & Vehicles,8
23,France,2017-12-06 00:00:00.000000,Autos & Vehicles,8
24,France,2017-12-07 00:00:00.000000,Autos & Vehicles,6
25,France,2017-12-08 00:00:00.000000,Autos & Vehicles,2
26,France,2017-12-09 00:00:00.000000,Autos & Vehicles,4
27,France,2017-12-10 00:00:00.000000,Autos & Vehicles,2
28,France,2017-12-12 00:00:00.000000,Autos & Vehicles,4
29,France,2017-12-13 00:00:00.000000,Autos & Vehicles,6
30,France,2017-12-14 00:00:00.000000,Autos & Vehicles,4
31,France,2017-12-16 00:00:00.000000,Autos & Vehicles,6
32,France,2017-12-17 00:00:00.000000,Autos & Vehicles,4
33,France,2017-12-18 00:00:00.000000,Autos & Vehicles,8
34,France,2017-12-19 00:00:00.000000,Autos & Vehicles,8
35,France,2017-12-20 00:00:00.000000,Autos & Vehicles,2
36,France,2017-12-21 00:00:00.000000,Autos & Vehicles,6
37,France,2017-12-22 00:00:00.000000,Autos & Vehicles,8
38,France,2017-12-23 00:00:00.000000,Autos & Vehicles,8
39,France,2017-12-24 00:00:00.000000,Autos & Vehicles,2
40,France,2017-12-26 00:00:00.000000,Autos & Vehicles,4
41,France,2017-12-27 00:00:00.000000,Autos & Vehicles,4
42,France,2017-12-28 00:00:00.000000,Autos & Vehicles,10
43,France,2017-12-29 00:00:00.000000,Autos & Vehicles,6
44,France,2017-12-30 00:00:00.000000,Autos & Vehicles,6
45,France,2017-12-31 00:00:00.000000,Autos & Vehicles,6
46,France,2018-01-01 00:00:00.000000,Autos & Vehicles,2
47,France,2018-01-02 00:00:00.000000,Autos & Vehicles,2
48,France,2018-01-03 00:00:00.000000,Autos & Vehicles,4
49,France,2018-01-04 00:00:00.000000,Autos & Vehicles,2
50,France,2018-01-05 00:00:00.000000,Autos & Vehicles,8
51,France,2018-01-06 00:00:00.000000,Autos & Vehicles,2
52,France,2018-01-08 00:00:00.000000,Autos & Vehicles,6
53,France,2018-01-09 00:00:00.000000,Autos & Vehicles,8
54,France,2018-01-12 00:00:00.000000,Autos & Vehicles,10
55,France,2018-01-14 00:00:00.000000,Autos & Vehicles,2
56,France,2018-01-15 00:00:00.000000,Autos & Vehicles,2
57,France,2018-01-16 00:00:00.000000,Autos & Vehicles,8
58,France,2018-01-17 00:00:00.000000,Autos & Vehicles,2
59,France,2018-01-18 00:00:00.000000,Autos & Vehicles,6
60,France,2018-01-19 00:00:00.000000,Autos & Vehicles,6
61,France,2018-01-21 00:00:00.000000,Autos & Vehicles,4
62,France,2018-01-22 00:00:00.000000,Autos & Vehicles,2
63,France,2018-01-23 00:00:00.000000,Autos & Vehicles,12
64,France,2018-01-24 00:00:00.000000,Autos & Vehicles,6
65,France,2018-01-25 00:00:00.000000,Autos & Vehicles,12
66,France,2018-01-26 00:00:00.000000,Autos & Vehicles,4
67,France,2018-01-27 00:00:00.000000,Autos & Vehicles,10
68,France,2018-01-28 00:00:00.000000,Autos & Vehicles,16
69,France,2018-01-29 00:00:00.000000,Autos & Vehicles,14
70,France,2018-01-30 00:00:00.000000,Autos & Vehicles,12
71,France,2018-01-31 00:00:00.000000,Autos & Vehicles,2
72,France,2018-02-01 00:00:00.000000,Autos & Vehicles,6
73,France,2018-02-02 00:00:00.000000,Autos & Vehicles,6
74,France,2018-02-03 00:00:00.000000,Autos & Vehicles,14
75,France,2018-02-04 00:00:00.000000,Autos & Vehicles,4
76,France,2018-02-05 00:00:00.000000,Autos & Vehicles,6
77,France,2018-02-06 00:00:00.000000,Autos & Vehicles,10
78,France,2018-02-07 00:00:00.000000,Autos & Vehicles,6
79,France,2018-02-08 00:00:00.000000,Autos & Vehicles,10
80,France,2018-02-09 00:00:00.000000,Autos & Vehicles,8
81,France,2018-02-10 00:00:00.000000,Autos & Vehicles,6
82,France,2018-02-11 00:00:00.000000,Autos & Vehicles,2
83,France,2018-02-12 00:00:00.000000,Autos & Vehicles,6
84,France,2018-02-13 00:00:00.000000,Autos & Vehicles,8
85,France,2018-02-14 00:00:00.000000,Autos & Vehicles,2
86,France,2018-02-15 00:00:00.000000,Autos & Vehicles,8
87,France,2018-02-16 00:00:00.000000,Autos & Vehicles,8
88,France,2018-02-17 00:00:00.000000,Autos & Vehicles,4
89,France,2018-02-18 00:00:00.000000,Autos & Vehicles,4
90,France,2018-02-19 00:00:00.000000,Autos & Vehicles,2
91,France,2018-02-20 00:00:00.000000,Autos & Vehicles,8
92,France,2018-02-21 00:00:00.000000,Autos & Vehicles,6
93,France,2018-02-22 00:00:00.000000,Autos & Vehicles,2
94,France,2018-02-23 00:00:00.000000,Autos & Vehicles,10
95,France,2018-02-24 00:00:00.000000,Autos & Vehicles,4
96,France,2018-02-25 00:00:00.000000,Autos & Vehicles,6
97,France,2018-02-26 00:00:00.000000,Autos & Vehicles,12
98,France,2018-02-27 00:00:00.000000,Autos & Vehicles,8
99,France,2018-02-28 00:00:00.000000,Autos & Vehicles,6
100,France,2018-03-01 00:00:00.000000,Autos & Vehicles,4
101,France,2018-03-02 00:00:00.000000,Autos & Vehicles,4
102,France,2018-03-03 00:00:00.000000,Autos & Vehicles,6
103,France,2018-03-04 00:00:00.000000,Autos & Vehicles,4
104,France,2018-03-05 00:00:00.000000,Autos & Vehicles,10
105,France,2018-03-06 00:00:00.000000,Autos & Vehicles,16
106,France,2018-03-07 00:00:00.000000,Autos & Vehicles,14
107,France,2018-03-08 00:00:00.000000,Autos & Vehicles,8
108,France,2018-03-09 00:00:00.000000,Autos & Vehicles,16
109,France,2018-03-10 00:00:00.000000,Autos & Vehicles,6
110,France,2018-03-11 00:00:00.000000,Autos & Vehicles,4
111,France,2018-03-12 00:00:00.000000,Autos & Vehicles,6
112,France,2018-03-13 00:00:00.000000,Autos & Vehicles,6
113,France,2018-03-14 00:00:00.000000,Autos & Vehicles,6
114,France,2018-03-15 00:00:00.000000,Autos & Vehicles,6
115,France,2018-03-16 00:00:00.000000,Autos & Vehicles,8
116,France,2018-03-17 00:00:00.000000,Autos & Vehicles,8
117,France,2018-03-18 00:00:00.000000,Autos & Vehicles,8
118,France,2018-03-19 00:00:00.000000,Autos & Vehicles,8
119,France,2018-03-20 00:00:00.000000,Autos & Vehicles,2
120,France,2018-03-21 00:00:00.000000,Autos & Vehicles,4
121,France,2018-03-22 00:00:00.000000,Autos & Vehicles,4
122,France,2018-03-23 00:00:00.000000,Autos & Vehicles,12
123,France,2018-03-24 00:00:00.000000,Autos & Vehicles,6
124,France,2018-03-25 00:00:00.000000,Autos & Vehicles,6
125,France,2018-03-26 00:00:00.000000,Autos & Vehicles,10
126,France,2018-03-27 00:00:00.000000,Autos & Vehicles,2
127,France,2018-03-28 00:00:00.000000,Autos & Vehicles,8
128,France,2018-03-29 00:00:00.000000,Autos & Vehicles,2
129,France,2018-03-30 00:00:00.000000,Autos & Vehicles,8
130,France,2018-03-31 00:00:00.000000,Autos & Vehicles,8
131,France,2018-04-01 00:00:00.000000,Autos & Vehicles,14
132,France,2018-04-02 00:00:00.000000,Autos & Vehicles,8
133,France,2018-04-03 00:00:00.000000,Autos & Vehicles,4
134,France,2018-04-04 00:00:00.000000,Autos & Vehicles,4
135,France,2018-04-05 00:00:00.000000,Autos & Vehicles,8
136,France,2018-04-06 00:00:00.000000,Autos & Vehicles,10
137,France,2018-04-07 00:00:00.000000,Autos & Vehicles,10
138,France,2018-04-14 00:00:00.000000,Autos & Vehicles,4
139,France,2018-04-16 00:00:00.000000,Autos & Vehicles,4
140,France,2018-04-17 00:00:00.000000,Autos & Vehicles,6
141,France,2018-04-18 00:00:00.000000,Autos & Vehicles,8
142,France,2018-04-19 00:00:00.000000,Autos & Vehicles,8
143,France,2018-04-20 00:00:00.000000,Autos & Vehicles,10
144,France,2018-04-21 00:00:00.000000,Autos & Vehicles,8
145,France,2018-04-23 00:00:00.000000,Autos & Vehicles,14
146,France,2018-04-24 00:00:00.000000,Autos & Vehicles,10
147,France,2018-04-25 00:00:00.000000,Autos & Vehicles,4
148,France,2018-04-26 00:00:00.000000,Autos & Vehicles,4
149,France,2018-04-27 00:00:00.000000,Autos & Vehicles,2
150,France,2018-04-28 00:00:00.000000,Autos & Vehicles,8
151,France,2018-04-29 00:00:00.000000,Autos & Vehicles,4
152,France,2018-04-30 00:00:00.000000,Autos & Vehicles,6
153,France,2018-05-01 00:00:00.000000,Autos & Vehicles,6
154,France,2018-05-02 00:00:00.000000,Autos & Vehicles,2
155,France,2018-05-03 00:00:00.000000,Autos & Vehicles,8
156,France,2018-05-04 00:00:00.000000,Autos & Vehicles,6
157,France,2018-05-05 00:00:00.000000,Autos & Vehicles,6
158,France,2018-05-06 00:00:00.000000,Autos & Vehicles,2
159,France,2018-05-08 00:00:00.000000,Autos & Vehicles,6
160,France,2018-05-09 00:00:00.000000,Autos & Vehicles,2
161,France,2018-05-10 00:00:00.000000,Autos & Vehicles,8
162,France,2018-05-11 00:00:00.000000,Autos & Vehicles,2
163,France,2018-05-12 00:00:00.000000,Autos & Vehicles,2
164,France,2018-05-13 00:00:00.000000,Autos & Vehicles,6
165,France,2018-05-14 00:00:00.000000,Autos & Vehicles,4
166,France,2018-05-15 00:00:00.000000,Autos & Vehicles,6
167,France,2018-05-16 00:00:00.000000,Autos & Vehicles,2
168,France,2018-05-17 00:00:00.000000,Autos & Vehicles,2
169,France,2018-05-18 00:00:00.000000,Autos & Vehicles,6
170,France,2018-05-19 00:00:00.000000,Autos & Vehicles,6
171,France,2018-05-20 00:00:00.000000,Autos & Vehicles,4
172,France,2018-05-21 00:00:00.000000,Autos & Vehicles,4
173,France,2018-05-22 00:00:00.000000,Autos & Vehicles,2
174,France,2018-05-23 00:00:00.000000,Autos & Vehicles,2
175,France,2018-05-24 00:00:00.000000,Autos & Vehicles,6
176,France,2018-05-25 00:00:00.000000,Autos & Vehicles,12
177,France,2018-05-26 00:00:00.000000,Autos & Vehicles,4
178,France,2018-05-27 00:00:00.000000,Autos & Vehicles,6
179,France,2018-05-29 00:00:00.000000,Autos & Vehicles,2
180,France,2018-05-30 00:00:00.000000,Autos & Vehicles,8
181,France,2018-05-31 00:00:00.000000,Autos & Vehicles,4
182,France,2018-06-01 00:00:00.000000,Autos & Vehicles,4
183,France,2018-06-03 00:00:00.000000,Autos & Vehicles,2
184,France,2018-06-04 00:00:00.000000,Autos & Vehicles,4
185,France,2018-06-05 00:00:00.000000,Autos & Vehicles,6
186,France,2018-06-06 00:00:00.000000,Autos & Vehicles,2
187,France,2018-06-08 00:00:00.000000,Autos & Vehicles,8
188,France,2018-06-09 00:00:00.000000,Autos & Vehicles,6
189,France,2018-06-10 00:00:00.000000,Autos & Vehicles,2
190,France,2018-06-11 00:00:00.000000,Autos & Vehicles,4
191,France,2018-06-12 00:00:00.000000,Autos & Vehicles,4
192,France,2018-06-13 00:00:00.000000,Autos & Vehicles,4
193,France,2018-06-14 00:00:00.000000,Autos & Vehicles,2
194,France,2017-11-14 00:00:00.000000,Comedy,46
195,France,2017-11-15 00:00:00.000000,Comedy,38
196,France,2017-11-16 00:00:00.000000,Comedy,56
197,France,2017-11-17 00:00:00.000000,Comedy,62
198,France,2017-11-18 00:00:00.000000,Comedy,70
199,France,2017-11-19 00:00:00.000000,Comedy,56
200,France,2017-11-20 00:00:00.000000,Comedy,50
201,France,2017-11-21 00:00:00.000000,Comedy,42
202,France,2017-11-22 00:00:00.000000,Comedy,42
203,France,2017-11-23 00:00:00.000000,Comedy,50
204,France,2017-11-24 00:00:00.000000,Comedy,52
205,France,2017-11-25 00:00:00.000000,Comedy,68
206,France,2017-11-26 00:00:00.000000,Comedy,66
207,France,2017-11-27 00:00:00.000000,Comedy,44
208,France,2017-11-28 00:00:00.000000,Comedy,48
209,France,2017-11-29 00:00:00.000000,Comedy,50
210,France,2017-11-30 00:00:00.000000,Comedy,46
211,France,2017-12-01 00:00:00.000000,Comedy,54
212,France,2017-12-02 00:00:00.000000,Comedy,58
213,France,2017-12-03 00:00:00.000000,Comedy,48
214,France,2017-12-04 00:00:00.000000,Comedy,40
215,France,2017-12-05 00:00:00.000000,Comedy,48
216,France,2017-12-06 00:00:00.000000,Comedy,28
217,France,2017-12-07 00:00:00.000000,Comedy,38
218,France,2017-12-08 00:00:00.000000,Comedy,44
219,France,2017-12-09 00:00:00.000000,Comedy,58
220,France,2017-12-10 00:00:00.000000,Comedy,46
221,France,2017-12-11 00:00:00.000000,Comedy,50
222,France,2017-12-12 00:00:00.000000,Comedy,46
223,France,2017-12-13 00:00:00.000000,Comedy,38
224,France,2017-12-14 00:00:00.000000,Comedy,54
225,France,2017-12-15 00:00:00.000000,Comedy,72
226,France,2017-12-16 00:00:00.000000,Comedy,82
227,France,2017-12-17 00:00:00.000000,Comedy,64
228,France,2017-12-18 00:00:00.000000,Comedy,56
229,France,2017-12-19 00:00:00.000000,Comedy,50
230,France,2017-12-20 00:00:00.000000,Comedy,60
231,France,2017-12-21 00:00:00.000000,Comedy,62
232,France,2017-12-22 00:00:00.000000,Comedy,74
233,France,2017-12-23 00:00:00.000000,Comedy,66
234,France,2017-12-24 00:00:00.000000,Comedy,50
235,France,2017-12-25 00:00:00.000000,Comedy,54
236,France,2017-12-26 00:00:00.000000,Comedy,40
237,France,2017-12-27 00:00:00.000000,Comedy,26
238,France,2017-12-28 00:00:00.000000,Comedy,44
239,France,2017-12-29 00:00:00.000000,Comedy,44
240,France,2017-12-30 00:00:00.000000,Comedy,38
241,France,2017-12-31 00:00:00.000000,Comedy,36
242,France,2018-01-01 00:00:00.000000,Comedy,42
243,France,2018-01-02 00:00:00.000000,Comedy,34
244,France,2018-01-03 00:00:00.000000,Comedy,32
245,France,2018-01-04 00:00:00.000000,Comedy,42
246,France,2018-01-05 00:00:00.000000,Comedy,36
247,France,2018-01-06 00:00:00.000000,Comedy,34
248,France,2018-01-07 00:00:00.000000,Comedy,42
249,France,2018-01-08 00:00:00.000000,Comedy,38
250,France,2018-01-09 00:00:00.000000,Comedy,48
251,France,2018-01-12 00:00:00.000000,Comedy,54
252,France,2018-01-13 00:00:00.000000,Comedy,52
253,France,2018-01-14 00:00:00.000000,Comedy,44
254,France,2018-01-15 00:00:00.000000,Comedy,42
255,France,2018-01-16 00:00:00.000000,Comedy,42
256,France,2018-01-17 00:00:00.000000,Comedy,48
257,France,2018-01-18 00:00:00.000000,Comedy,56
258,France,2018-01-19 00:00:00.000000,Comedy,42
259,France,2018-01-20 00:00:00.000000,Comedy,52
260,France,2018-01-21 00:00:00.000000,Comedy,56
261,France,2018-01-22 00:00:00.000000,Comedy,38
262,France,2018-01-23 00:00:00.000000,Comedy,38
263,France,2018-01-24 00:00:00.000000,Comedy,36
264,France,2018-01-25 00:00:00.000000,Comedy,44
265,France,2018-01-26 00:00:00.000000,Comedy,50
266,France,2018-01-27 00:00:00.000000,Comedy,46
267,France,2018-01-28 00:00:00.000000,Comedy,38
268,France,2018-01-29 00:00:00.000000,Comedy,44
269,France,2018-01-30 00:00:00.000000,Comedy,28
270,France,2018-01-31 00:00:00.000000,Comedy,30
271,France,2018-02-01 00:00:00.000000,Comedy,26
272,France,2018-02-02 00:00:00.000000,Comedy,30
273,France,2018-02-03 00:00:00.000000,Comedy,46
274,France,2018-02-04 00:00:00.000000,Comedy,32
275,France,2018-02-05 00:00:00.000000,Comedy,42
276,France,2018-02-06 00:00:00.000000,Comedy,48
277,France,2018-02-07 00:00:00.000000,Comedy,24
278,France,2018-02-08 00:00:00.000000,Comedy,34
279,France,2018-02-09 00:00:00.000000,Comedy,38
280,France,2018-02-10 00:00:00.000000,Comedy,28
281,France,2018-02-11 00:00:00.000000,Comedy,26
282,France,2018-02-12 00:00:00.000000,Comedy,34
283,France,2018-02-13 00:00:00.000000,Comedy,36
284,France,2018-02-14 00:00:00.000000,Comedy,28
285,France,2018-02-15 00:00:00.000000,Comedy,20
286,France,2018-02-16 00:00:00.000000,Comedy,28
287,France,2018-02-17 00:00:00.000000,Comedy,30
288,France,2018-02-18 00:00:00.000000,Comedy,30
289,France,2018-02-19 00:00:00.000000,Comedy,26
290,France,2018-02-20 00:00:00.000000,Comedy,24
291,France,2018-02-21 00:00:00.000000,Comedy,22
292,France,2018-02-22 00:00:00.000000,Comedy,40
293,France,2018-02-23 00:00:00.000000,Comedy,32
294,France,2018-02-24 00:00:00.000000,Comedy,46
295,France,2018-02-25 00:00:00.000000,Comedy,42
296,France,2018-02-26 00:00:00.000000,Comedy,44
297,France,2018-02-27 00:00:00.000000,Comedy,40
298,France,2018-02-28 00:00:00.000000,Comedy,32
299,France,2018-03-01 00:00:00.000000,Comedy,38
300,France,2018-03-02 00:00:00.000000,Comedy,46
301,France,2018-03-03 00:00:00.000000,Comedy,34
302,France,2018-03-04 00:00:00.000000,Comedy,30
303,France,2018-03-05 00:00:00.000000,Comedy,38
304,France,2018-03-06 00:00:00.000000,Comedy,30
305,France,2018-03-07 00:00:00.000000,Comedy,38
306,France,2018-03-08 00:00:00.000000,Comedy,46
307,France,2018-03-09 00:00:00.000000,Comedy,36
308,France,2018-03-10 00:00:00.000000,Comedy,30
309,France,2018-03-11 00:00:00.000000,Comedy,26
310,France,2018-03-12 00:00:00.000000,Comedy,52
311,France,2018-03-13 00:00:00.000000,Comedy,48
312,France,2018-03-14 00:00:00.000000,Comedy,48
313,France,2018-03-15 00:00:00.000000,Comedy,32
314,France,2018-03-16 00:00:00.000000,Comedy,44
315,France,2018-03-17 00:00:00.000000,Comedy,40
316,France,2018-03-18 00:00:00.000000,Comedy,16
317,France,2018-03-19 00:00:00.000000,Comedy,24
318,France,2018-03-20 00:00:00.000000,Comedy,32
319,France,2018-03-21 00:00:00.000000,Comedy,36
320,France,2018-03-22 00:00:00.000000,Comedy,34
321,France,2018-03-23 00:00:00.000000,Comedy,38
322,France,2018-03-24 00:00:00.000000,Comedy,34
323,France,2018-03-25 00:00:00.000000,Comedy,24
324,France,2018-03-26 00:00:00.000000,Comedy,30
325,France,2018-03-27 00:00:00.000000,Comedy,36
326,France,2018-03-28 00:00:00.000000,Comedy,36
327,France,2018-03-29 00:00:00.000000,Comedy,52
328,France,2018-03-30 00:00:00.000000,Comedy,54
329,France,2018-03-31 00:00:00.000000,Comedy,36
330,France,2018-04-01 00:00:00.000000,Comedy,24
331,France,2018-04-02 00:00:00.000000,Comedy,38
332,France,2018-04-03 00:00:00.000000,Comedy,32
333,France,2018-04-04 00:00:00.000000,Comedy,54
334,France,2018-04-05 00:00:00.000000,Comedy,52
335,France,2018-04-06 00:00:00.000000,Comedy,46
336,France,2018-04-07 00:00:00.000000,Comedy,56
337,France,2018-04-14 00:00:00.000000,Comedy,32
338,France,2018-04-15 00:00:00.000000,Comedy,40
339,France,2018-04-16 00:00:00.000000,Comedy,42
340,France,2018-04-17 00:00:00.000000,Comedy,38
341,France,2018-04-18 00:00:00.000000,Comedy,38
342,France,2018-04-19 00:00:00.000000,Comedy,36
343,France,2018-04-20 00:00:00.000000,Comedy,36
344,France,2018-04-21 00:00:00.000000,Comedy,40
345,France,2018-04-22 00:00:00.000000,Comedy,46
346,France,2018-04-23 00:00:00.000000,Comedy,46
347,France,2018-04-24 00:00:00.000000,Comedy,34
348,France,2018-04-25 00:00:00.000000,Comedy,32
349,France,2018-04-26 00:00:00.000000,Comedy,44
350,France,2018-04-27 00:00:00.000000,Comedy,52
351,France,2018-04-28 00:00:00.000000,Comedy,58
352,France,2018-04-29 00:00:00.000000,Comedy,42
353,France,2018-04-30 00:00:00.000000,Comedy,34
354,France,2018-05-01 00:00:00.000000,Comedy,26
355,France,2018-05-02 00:00:00.000000,Comedy,38
356,France,2018-05-03 00:00:00.000000,Comedy,38
357,France,2018-05-04 00:00:00.000000,Comedy,32
358,France,2018-05-05 00:00:00.000000,Comedy,38
359,France,2018-05-06 00:00:00.000000,Comedy,40
360,France,2018-05-07 00:00:00.000000,Comedy,54
361,France,2018-05-08 00:00:00.000000,Comedy,52
362,France,2018-05-09 00:00:00.000000,Comedy,42
363,France,2018-05-10 00:00:00.000000,Comedy,34
364,France,2018-05-11 00:00:00.000000,Comedy,30
365,France,2018-05-12 00:00:00.000000,Comedy,36
366,France,2018-05-13 00:00:00.000000,Comedy,32
367,France,2018-05-14 00:00:00.000000,Comedy,20
368,France,2018-05-15 00:00:00.000000,Comedy,34
369,France,2018-05-16 00:00:00.000000,Comedy,28
370,France,2018-05-17 00:00:00.000000,Comedy,32
371,France,2018-05-18 00:00:00.000000,Comedy,36
372,France,2018-05-19 00:00:00.000000,Comedy,34
373,France,2018-05-20 00:00:00.000000,Comedy,32
374,France,2018-05-21 00:00:00.000000,Comedy,42
375,France,2018-05-22 00:00:00.000000,Comedy,48
376,France,2018-05-23 00:00:00.000000,Comedy,44
377,France,2018-05-24 00:00:00.000000,Comedy,34
378,France,2018-05-25 00:00:00.000000,Comedy,38
379,France,2018-05-26 00:00:00.000000,Comedy,38
380,France,2018-05-27 00:00:00.000000,Comedy,40
381,France,2018-05-28 00:00:00.000000,Comedy,56
382,France,2018-05-29 00:00:00.000000,Comedy,48
383,France,2018-05-30 00:00:00.000000,Comedy,36
384,France,2018-05-31 00:00:00.000000,Comedy,50
385,France,2018-06-01 00:00:00.000000,Comedy,38
386,France,2018-06-02 00:00:00.000000,Comedy,36
387,France,2018-06-03 00:00:00.000000,Comedy,24
388,France,2018-06-04 00:00:00.000000,Comedy,40
389,France,2018-06-05 00:00:00.000000,Comedy,40
390,France,2018-06-06 00:00:00.000000,Comedy,28
391,France,2018-06-07 00:00:00.000000,Comedy,38
392,France,2018-06-08 00:00:00.000000,Comedy,34
393,France,2018-06-09 00:00:00.000000,Comedy,40
394,France,2018-06-10 00:00:00.000000,Comedy,30
395,France,2018-06-11 00:00:00.000000,Comedy,40
396,France,2018-06-12 00:00:00.000000,Comedy,52
397,France,2018-06-13 00:00:00.000000,Comedy,48
398,France,2018-06-14 00:00:00.000000,Comedy,36
399,France,2017-11-14 00:00:00.000000,Education,12
400,France,2017-11-15 00:00:00.000000,Education,4
401,France,2017-11-16 00:00:00.000000,Education,8
402,France,2017-11-17 00:00:00.000000,Education,8
403,France,2017-11-18 00:00:00.000000,Education,2
404,France,2017-11-19 00:00:00.000000,Education,8
405,France,2017-11-20 00:00:00.000000,Education,4
406,France,2017-11-21 00:00:00.000000,Education,10
407,France,2017-11-22 00:00:00.000000,Education,12
408,France,2017-11-23 00:00:00.000000,Education,10
409,France,2017-11-24 00:00:00.000000,Education,8
410,France,2017-11-25 00:00:00.000000,Education,10
411,France,2017-11-26 00:00:00.000000,Education,6
412,France,2017-11-27 00:00:00.000000,Education,8
413,France,2017-11-28 00:00:00.000000,Education,4
414,France,2017-11-29 00:00:00.000000,Education,10
415,France,2017-11-30 00:00:00.000000,Education,6
416,France,2017-12-01 00:00:00.000000,Education,12
417,France,2017-12-02 00:00:00.000000,Education,14
418,France,2017-12-03 00:00:00.000000,Education,6
419,France,2017-12-04 00:00:00.000000,Education,18
420,France,2017-12-05 00:00:00.000000,Education,6
421,France,2017-12-06 00:00:00.000000,Education,6
422,France,2017-12-07 00:00:00.000000,Education,6
423,France,2017-12-08 00:00:00.000000,Education,8
424,France,2017-12-09 00:00:00.000000,Education,8
425,France,2017-12-10 00:00:00.000000,Education,8
426,France,2017-12-11 00:00:00.000000,Education,4
427,France,2017-12-12 00:00:00.000000,Education,4
428,France,2017-12-13 00:00:00.000000,Education,4
429,France,2017-12-14 00:00:00.000000,Education,8
430,France,2017-12-15 00:00:00.000000,Education,12
431,France,2017-12-16 00:00:00.000000,Education,2
432,France,2017-12-17 00:00:00.000000,Education,6
433,France,2017-12-18 00:00:00.000000,Education,8
434,France,2017-12-19 00:00:00.000000,Education,8
435,France,2017-12-20 00:00:00.000000,Education,4
436,France,2017-12-21 00:00:00.000000,Education,12
437,France,2017-12-22 00:00:00.000000,Education,12
438,France,2017-12-23 00:00:00.000000,Education,6
439,France,2017-12-24 00:00:00.000000,Education,6
440,France,2017-12-25 00:00:00.000000,Education,6
441,France,2017-12-26 00:00:00.000000,Education,12
442,France,2017-12-27 00:00:00.000000,Education,10
443,France,2017-12-28 00:00:00.000000,Education,6
444,France,2017-12-29 00:00:00.000000,Education,4
445,France,2017-12-30 00:00:00.000000,Education,6
446,France,2017-12-31 00:00:00.000000,Education,12
447,France,2018-01-01 00:00:00.000000,Education,6
448,France,2018-01-02 00:00:00.000000,Education,10
449,France,2018-01-03 00:00:00.000000,Education,8
450,France,2018-01-04 00:00:00.000000,Education,2
451,France,2018-01-05 00:00:00.000000,Education,2
452,France,2018-01-06 00:00:00.000000,Education,4
453,France,2018-01-07 00:00:00.000000,Education,6
454,France,2018-01-08 00:00:00.000000,Education,10
455,France,2018-01-09 00:00:00.000000,Education,2
456,France,2018-01-12 00:00:00.000000,Education,10
457,France,2018-01-13 00:00:00.000000,Education,6
458,France,2018-01-14 00:00:00.000000,Education,2
459,France,2018-01-15 00:00:00.000000,Education,16
460,France,2018-01-16 00:00:00.000000,Education,8
461,France,2018-01-17 00:00:00.000000,Education,8
462,France,2018-01-18 00:00:00.000000,Education,4
463,France,2018-01-19 00:00:00.000000,Education,6
464,France,2018-01-20 00:00:00.000000,Education,6
465,France,2018-01-21 00:00:00.000000,Education,2
466,France,2018-01-22 00:00:00.000000,Education,6
467,France,2018-01-23 00:00:00.000000,Education,10
468,France,2018-01-24 00:00:00.000000,Education,4
469,France,2018-01-25 00:00:00.000000,Education,10
470,France,2018-01-26 00:00:00.000000,Education,10
471,France,2018-01-27 00:00:00.000000,Education,6
472,France,2018-01-28 00:00:00.000000,Education,2
473,France,2018-01-29 00:00:00.000000,Education,6
474,France,2018-01-30 00:00:00.000000,Education,8
475,France,2018-01-31 00:00:00.000000,Education,12
476,France,2018-02-01 00:00:00.000000,Education,10
477,France,2018-02-02 00:00:00.000000,Education,8
478,France,2018-02-03 00:00:00.000000,Education,4
479,France,2018-02-04 00:00:00.000000,Education,6
480,France,2018-02-05 00:00:00.000000,Education,6
481,France,2018-02-06 00:00:00.000000,Education,8
482,France,2018-02-07 00:00:00.000000,Education,10
483,France,2018-02-08 00:00:00.000000,Education,6
484,France,2018-02-09 00:00:00.000000,Education,14
485,France,2018-02-10 00:00:00.000000,Education,6
486,France,2018-02-11 00:00:00.000000,Education,10
487,France,2018-02-12 00:00:00.000000,Education,8
488,France,2018-02-13 00:00:00.000000,Education,10
489,France,2018-02-14 00:00:00.000000,Education,4
490,France,2018-02-15 00:00:00.000000,Education,12
491,France,2018-02-16 00:00:00.000000,Education,8
492,France,2018-02-17 00:00:00.000000,Education,6
493,France,2018-02-18 00:00:00.000000,Education,2
494,France,2018-02-19 00:00:00.000000,Education,10
495,France,2018-02-20 00:00:00.000000,Education,6
496,France,2018-02-21 00:00:00.000000,Education,4
497,France,2018-02-22 00:00:00.000000,Education,6
498,France,2018-02-23 00:00:00.000000,Education,2
499,France,2018-02-24 00:00:00.000000,Education,8
500,France,2018-02-25 00:00:00.000000,Education,4
501,France,2018-02-26 00:00:00.000000,Education,6
502,France,2018-02-27 00:00:00.000000,Education,4
503,France,2018-02-28 00:00:00.000000,Education,10
504,France,2018-03-01 00:00:00.000000,Education,8
505,France,2018-03-02 00:00:00.000000,Education,12
506,France,2018-03-03 00:00:00.000000,Education,6
507,France,2018-03-04 00:00:00.000000,Education,4
508,France,2018-03-05 00:00:00.000000,Education,2
509,France,2018-03-06 00:00:00.000000,Education,8
510,France,2018-03-07 00:00:00.000000,Education,6
511,France,2018-03-08 00:00:00.000000,Education,6
512,France,2018-03-09 00:00:00.000000,Education,12
513,France,2018-03-10 00:00:00.000000,Education,6
514,France,2018-03-12 00:00:00.000000,Education,10
515,France,2018-03-13 00:00:00.000000,Education,2
516,France,2018-03-14 00:00:00.000000,Education,2
517,France,2018-03-15 00:00:00.000000,Education,8
518,France,2018-03-16 00:00:00.000000,Education,14
519,France,2018-03-17 00:00:00.000000,Education,16
520,France,2018-03-18 00:00:00.000000,Education,4
521,France,2018-03-19 00:00:00.000000,Education,12
522,France,2018-03-20 00:00:00.000000,Education,4
523,France,2018-03-22 00:00:00.000000,Education,2
524,France,2018-03-23 00:00:00.000000,Education,8
525,France,2018-03-24 00:00:00.000000,Education,8
526,France,2018-03-25 00:00:00.000000,Education,6
527,France,2018-03-26 00:00:00.000000,Education,8
528,France,2018-03-27 00:00:00.000000,Education,4
529,France,2018-03-28 00:00:00.000000,Education,10
530,France,2018-03-29 00:00:00.000000,Education,8
531,France,2018-03-30 00:00:00.000000,Education,6
532,France,2018-03-31 00:00:00.000000,Education,8
533,France,2018-04-01 00:00:00.000000,Education,4
534,France,2018-04-02 00:00:00.000000,Education,6
535,France,2018-04-03 00:00:00.000000,Education,4
536,France,2018-04-04 00:00:00.000000,Education,6
537,France,2018-04-05 00:00:00.000000,Education,6
538,France,2018-04-06 00:00:00.000000,Education,8
539,France,2018-04-07 00:00:00.000000,Education,6
540,France,2018-04-14 00:00:00.000000,Education,8
541,France,2018-04-15 00:00:00.000000,Education,10
542,France,2018-04-16 00:00:00.000000,Education,10
543,France,2018-04-17 00:00:00.000000,Education,4
544,France,2018-04-18 00:00:00.000000,Education,4
545,France,2018-04-19 00:00:00.000000,Education,10
546,France,2018-04-20 00:00:00.000000,Education,6
547,France,2018-04-21 00:00:00.000000,Education,12
548,France,2018-04-22 00:00:00.000000,Education,6
549,France,2018-04-23 00:00:00.000000,Education,8
550,France,2018-04-24 00:00:00.000000,Education,10
551,France,2018-04-26 00:00:00.000000,Education,4
552,France,2018-04-27 00:00:00.000000,Education,4
553,France,2018-04-28 00:00:00.000000,Education,14
554,France,2018-04-29 00:00:00.000000,Education,6
555,France,2018-04-30 00:00:00.000000,Education,4
556,France,2018-05-01 00:00:00.000000,Education,4
557,France,2018-05-04 00:00:00.000000,Education,6
558,France,2018-05-05 00:00:00.000000,Education,6
559,France,2018-05-06 00:00:00.000000,Education,6
560,France,2018-05-07 00:00:00.000000,Education,10
561,France,2018-05-08 00:00:00.000000,Education,6
562,France,2018-05-09 00:00:00.000000,Education,6
563,France,2018-05-10 00:00:00.000000,Education,8
564,France,2018-05-11 00:00:00.000000,Education,10
565,France,2018-05-12 00:00:00.000000,Education,10
566,France,2018-05-13 00:00:00.000000,Education,4
567,France,2018-05-14 00:00:00.000000,Education,8
568,France,2018-05-15 00:00:00.000000,Education,6
569,France,2018-05-16 00:00:00.000000,Education,8
570,France,2018-05-17 00:00:00.000000,Education,6
571,France,2018-05-18 00:00:00.000000,Education,8
572,France,2018-05-19 00:00:00.000000,Education,6
573,France,2018-05-20 00:00:00.000000,Education,4
574,France,2018-05-21 00:00:00.000000,Education,10
575,France,2018-05-22 00:00:00.000000,Education,10
576,France,2018-05-23 00:00:00.000000,Education,6
577,France,2018-05-24 00:00:00.000000,Education,6
578,France,2018-05-25 00:00:00.000000,Education,8
579,France,2018-05-26 00:00:00.000000,Education,10
580,France,2018-05-27 00:00:00.000000,Education,6
581,France,2018-05-28 00:00:00.000000,Education,6
582,France,2018-05-29 00:00:00.000000,Education,6
583,France,2018-05-30 00:00:00.000000,Education,10
584,France,2018-05-31 00:00:00.000000,Education,4
585,France,2018-06-01 00:00:00.000000,Education,2
586,France,2018-06-03 00:00:00.000000,Education,8
587,France,2018-06-04 00:00:00.000000,Education,14
588,France,2018-06-05 00:00:00.000000,Education,16
589,France,2018-06-06 00:00:00.000000,Education,6
590,France,2018-06-07 00:00:00.000000,Education,8
591,France,2018-06-08 00:00:00.000000,Education,8
592,France,2018-06-09 00:00:00.000000,Education,14
593,France,2018-06-10 00:00:00.000000,Education,10
594,France,2018-06-11 00:00:00.000000,Education,16
595,France,2018-06-12 00:00:00.000000,Education,16
596,France,2018-06-13 00:00:00.000000,Education,16
597,France,2018-06-14 00:00:00.000000,Education,8
598,France,2017-11-14 00:00:00.000000,Entertainment,104
599,France,2017-11-15 00:00:00.000000,Entertainment,90
600,France,2017-11-16 00:00:00.000000,Entertainment,94
601,France,2017-11-17 00:00:00.000000,Entertainment,90
602,France,2017-11-18 00:00:00.000000,Entertainment,80
603,France,2017-11-19 00:00:00.000000,Entertainment,90
604,France,2017-11-20 00:00:00.000000,Entertainment,90
605,France,2017-11-21 00:00:00.000000,Entertainment,86
606,France,2017-11-22 00:00:00.000000,Entertainment,96
607,France,2017-11-23 00:00:00.000000,Entertainment,98
608,France,2017-11-24 00:00:00.000000,Entertainment,88
609,France,2017-11-25 00:00:00.000000,Entertainment,84
610,France,2017-11-26 00:00:00.000000,Entertainment,66
611,France,2017-11-27 00:00:00.000000,Entertainment,64
612,France,2017-11-28 00:00:00.000000,Entertainment,98
613,France,2017-11-29 00:00:00.000000,Entertainment,108
614,France,2017-11-30 00:00:00.000000,Entertainment,90
615,France,2017-12-01 00:00:00.000000,Entertainment,90
616,France,2017-12-02 00:00:00.000000,Entertainment,68
617,France,2017-12-03 00:00:00.000000,Entertainment,98
618,France,2017-12-04 00:00:00.000000,Entertainment,96
619,France,2017-12-05 00:00:00.000000,Entertainment,108
620,France,2017-12-06 00:00:00.000000,Entertainment,108
621,France,2017-12-07 00:00:00.000000,Entertainment,104
622,France,2017-12-08 00:00:00.000000,Entertainment,102
623,France,2017-12-09 00:00:00.000000,Entertainment,78
624,France,2017-12-10 00:00:00.000000,Entertainment,92
625,France,2017-12-11 00:00:00.000000,Entertainment,86
626,France,2017-12-12 00:00:00.000000,Entertainment,104
627,France,2017-12-13 00:00:00.000000,Entertainment,98
628,France,2017-12-14 00:00:00.000000,Entertainment,82
629,France,2017-12-15 00:00:00.000000,Entertainment,78
630,France,2017-12-16 00:00:00.000000,Entertainment,96
631,France,2017-12-17 00:00:00.000000,Entertainment,98
632,France,2017-12-18 00:00:00.000000,Entertainment,104
633,France,2017-12-19 00:00:00.000000,Entertainment,112
634,France,2017-12-20 00:00:00.000000,Entertainment,104
635,France,2017-12-21 00:00:00.000000,Entertainment,102
636,France,2017-12-22 00:00:00.000000,Entertainment,80
637,France,2017-12-23 00:00:00.000000,Entertainment,74
638,France,2017-12-24 00:00:00.000000,Entertainment,104
639,France,2017-12-25 00:00:00.000000,Entertainment,102
640,France,2017-12-26 00:00:00.000000,Entertainment,96
641,France,2017-12-27 00:00:00.000000,Entertainment,112
642,France,2017-12-28 00:00:00.000000,Entertainment,92
643,France,2017-12-29 00:00:00.000000,Entertainment,102
644,France,2017-12-30 00:00:00.000000,Entertainment,116
645,France,2017-12-31 00:00:00.000000,Entertainment,100
646,France,2018-01-01 00:00:00.000000,Entertainment,84
647,France,2018-01-02 00:00:00.000000,Entertainment,84
648,France,2018-01-03 00:00:00.000000,Entertainment,84
649,France,2018-01-04 00:00:00.000000,Entertainment,86
650,France,2018-01-05 00:00:00.000000,Entertainment,86
651,France,2018-01-06 00:00:00.000000,Entertainment,82
652,France,2018-01-07 00:00:00.000000,Entertainment,94
653,France,2018-01-08 00:00:00.000000,Entertainment,90
654,France,2018-01-09 00:00:00.000000,Entertainment,110
655,France,2018-01-12 00:00:00.000000,Entertainment,76
656,France,2018-01-13 00:00:00.000000,Entertainment,82
657,France,2018-01-14 00:00:00.000000,Entertainment,96
658,France,2018-01-15 00:00:00.000000,Entertainment,74
659,France,2018-01-16 00:00:00.000000,Entertainment,68
660,France,2018-01-17 00:00:00.000000,Entertainment,80
661,France,2018-01-18 00:00:00.000000,Entertainment,80
662,France,2018-01-19 00:00:00.000000,Entertainment,78
663,France,2018-01-20 00:00:00.000000,Entertainment,76
664,France,2018-01-21 00:00:00.000000,Entertainment,100
665,France,2018-01-22 00:00:00.000000,Entertainment,86
666,France,2018-01-23 00:00:00.000000,Entertainment,92
667,France,2018-01-24 00:00:00.000000,Entertainment,96
668,France,2018-01-25 00:00:00.000000,Entertainment,86
669,France,2018-01-26 00:00:00.000000,Entertainment,86
670,France,2018-01-27 00:00:00.000000,Entertainment,84
671,France,2018-01-28 00:00:00.000000,Entertainment,88
672,France,2018-01-29 00:00:00.000000,Entertainment,82
673,France,2018-01-30 00:00:00.000000,Entertainment,88
674,France,2018-01-31 00:00:00.000000,Entertainment,96
675,France,2018-02-01 00:00:00.000000,Entertainment,86
676,France,2018-02-02 00:00:00.000000,Entertainment,72
677,France,2018-02-03 00:00:00.000000,Entertainment,94
678,France,2018-02-04 00:00:00.000000,Entertainment,110
679,France,2018-02-05 00:00:00.000000,Entertainment,72
680,France,2018-02-06 00:00:00.000000,Entertainment,94
681,France,2018-02-07 00:00:00.000000,Entertainment,96
682,France,2018-02-08 00:00:00.000000,Entertainment,82
683,France,2018-02-09 00:00:00.000000,Entertainment,92
684,France,2018-02-10 00:00:00.000000,Entertainment,84
685,France,2018-02-11 00:00:00.000000,Entertainment,102
686,France,2018-02-12 00:00:00.000000,Entertainment,80
687,France,2018-02-13 00:00:00.000000,Entertainment,76
688,France,2018-02-14 00:00:00.000000,Entertainment,92
689,France,2018-02-15 00:00:00.000000,Entertainment,84
690,France,2018-02-16 00:00:00.000000,Entertainment,90
691,France,2018-02-17 00:00:00.000000,Entertainment,112
692,France,2018-02-18 00:00:00.000000,Entertainment,114
693,France,2018-02-19 00:00:00.000000,Entertainment,100
694,France,2018-02-20 00:00:00.000000,Entertainment,86
695,France,2018-02-21 00:00:00.000000,Entertainment,120
696,France,2018-02-22 00:00:00.000000,Entertainment,106
697,France,2018-02-23 00:00:00.000000,Entertainment,86
698,France,2018-02-24 00:00:00.000000,Entertainment,78
699,France,2018-02-25 00:00:00.000000,Entertainment,92
700,France,2018-02-26 00:00:00.000000,Entertainment,82
701,France,2018-02-27 00:00:00.000000,Entertainment,88
702,France,2018-02-28 00:00:00.000000,Entertainment,102
703,France,2018-03-01 00:00:00.000000,Entertainment,80
704,France,2018-03-02 00:00:00.000000,Entertainment,82
705,France,2018-03-03 00:00:00.000000,Entertainment,76
706,France,2018-03-04 00:00:00.000000,Entertainment,106
707,France,2018-03-05 00:00:00.000000,Entertainment,106
708,France,2018-03-06 00:00:00.000000,Entertainment,100
709,France,2018-03-07 00:00:00.000000,Entertainment,98
710,France,2018-03-08 00:00:00.000000,Entertainment,112
711,France,2018-03-09 00:00:00.000000,Entertainment,90
712,France,2018-03-10 00:00:00.000000,Entertainment,86
713,France,2018-03-11 00:00:00.000000,Entertainment,94
714,France,2018-03-12 00:00:00.000000,Entertainment,74
715,France,2018-03-13 00:00:00.000000,Entertainment,60
716,France,2018-03-14 00:00:00.000000,Entertainment,62
717,France,2018-03-15 00:00:00.000000,Entertainment,102
718,France,2018-03-16 00:00:00.000000,Entertainment,90
719,France,2018-03-17 00:00:00.000000,Entertainment,82
720,France,2018-03-18 00:00:00.000000,Entertainment,106
721,France,2018-03-19 00:00:00.000000,Entertainment,94
722,France,2018-03-20 00:00:00.000000,Entertainment,92
723,France,2018-03-21 00:00:00.000000,Entertainment,100
724,France,2018-03-22 00:00:00.000000,Entertainment,98
725,France,2018-03-23 00:00:00.000000,Entertainment,102
726,France,2018-03-24 00:00:00.000000,Entertainment,72
727,France,2018-03-25 00:00:00.000000,Entertainment,90
728,France,2018-03-26 00:00:00.000000,Entertainment,66
729,France,2018-03-27 00:00:00.000000,Entertainment,88
730,France,2018-03-28 00:00:00.000000,Entertainment,76
731,France,2018-03-29 00:00:00.000000,Entertainment,84
732,France,2018-03-30 00:00:00.000000,Entertainment,94
733,France,2018-03-31 00:00:00.000000,Entertainment,78
734,France,2018-04-01 00:00:00.000000,Entertainment,76
735,France,2018-04-02 00:00:00.000000,Entertainment,98
736,France,2018-04-03 00:00:00.000000,Entertainment,90
737,France,2018-04-04 00:00:00.000000,Entertainment,84
738,France,2018-04-05 00:00:00.000000,Entertainment,78
739,France,2018-04-06 00:00:00.000000,Entertainment,76
740,France,2018-04-07 00:00:00.000000,Entertainment,78
741,France,2018-04-14 00:00:00.000000,Entertainment,80
742,France,2018-04-15 00:00:00.000000,Entertainment,92
743,France,2018-04-16 00:00:00.000000,Entertainment,76
744,France,2018-04-17 00:00:00.000000,Entertainment,84
745,France,2018-04-18 00:00:00.000000,Entertainment,100
746,France,2018-04-19 00:00:00.000000,Entertainment,98
747,France,2018-04-20 00:00:00.000000,Entertainment,102
748,France,2018-04-21 00:00:00.000000,Entertainment,80
749,France,2018-04-22 00:00:00.000000,Entertainment,84
750,France,2018-04-23 00:00:00.000000,Entertainment,72
751,France,2018-04-24 00:00:00.000000,Entertainment,100
752,France,2018-04-25 00:00:00.000000,Entertainment,96
753,France,2018-04-26 00:00:00.000000,Entertainment,90
754,France,2018-04-27 00:00:00.000000,Entertainment,84
755,France,2018-04-28 00:00:00.000000,Entertainment,80
756,France,2018-04-29 00:00:00.000000,Entertainment,98
757,France,2018-04-30 00:00:00.000000,Entertainment,98
758,France,2018-05-01 00:00:00.000000,Entertainment,92
759,France,2018-05-02 00:00:00.000000,Entertainment,88
760,France,2018-05-03 00:00:00.000000,Entertainment,106
761,France,2018-05-04 00:00:00.000000,Entertainment,100
762,France,2018-05-05 00:00:00.000000,Entertainment,82
763,France,2018-05-06 00:00:00.000000,Entertainment,96
764,France,2018-05-07 00:00:00.000000,Entertainment,66
765,France,2018-05-08 00:00:00.000000,Entertainment,72
766,France,2018-05-09 00:00:00.000000,Entertainment,86
767,France,2018-05-10 00:00:00.000000,Entertainment,104
768,France,2018-05-11 00:00:00.000000,Entertainment,90
769,France,2018-05-12 00:00:00.000000,Entertainment,78
770,France,2018-05-13 00:00:00.000000,Entertainment,94
771,France,2018-05-14 00:00:00.000000,Entertainment,68
772,France,2018-05-15 00:00:00.000000,Entertainment,82
773,France,2018-05-16 00:00:00.000000,Entertainment,100
774,France,2018-05-17 00:00:00.000000,Entertainment,108
775,France,2018-05-18 00:00:00.000000,Entertainment,120
776,France,2018-05-19 00:00:00.000000,Entertainment,120
777,France,2018-05-20 00:00:00.000000,Entertainment,114
778,France,2018-05-21 00:00:00.000000,Entertainment,114
779,France,2018-05-22 00:00:00.000000,Entertainment,118
780,France,2018-05-23 00:00:00.000000,Entertainment,128
781,France,2018-05-24 00:00:00.000000,Entertainment,106
782,France,2018-05-25 00:00:00.000000,Entertainment,116
783,France,2018-05-26 00:00:00.000000,Entertainment,98
784,France,2018-05-27 00:00:00.000000,Entertainment,94
785,France,2018-05-28 00:00:00.000000,Entertainment,102
786,France,2018-05-29 00:00:00.000000,Entertainment,116
787,France,2018-05-30 00:00:00.000000,Entertainment,118
788,France,2018-05-31 00:00:00.000000,Entertainment,132
789,France,2018-06-01 00:00:00.000000,Entertainment,106
790,France,2018-06-02 00:00:00.000000,Entertainment,116
791,France,2018-06-03 00:00:00.000000,Entertainment,122
792,France,2018-06-04 00:00:00.000000,Entertainment,100
793,France,2018-06-05 00:00:00.000000,Entertainment,96
794,France,2018-06-06 00:00:00.000000,Entertainment,118
795,France,2018-06-07 00:00:00.000000,Entertainment,134
796,France,2018-06-08 00:00:00.000000,Entertainment,120
797,France,2018-06-09 00:00:00.000000,Entertainment,104
798,France,2018-06-10 00:00:00.000000,Entertainment,68
799,France,2018-06-11 00:00:00.000000,Entertainment,104
800,France,2018-06-12 00:00:00.000000,Entertainment,114
801,France,2018-06-13 00:00:00.000000,Entertainment,98
802,France,2018-06-14 00:00:00.000000,Entertainment,110
803,France,2017-11-14 00:00:00.000000,Film & Animation,16
804,France,2017-11-15 00:00:00.000000,Film & Animation,18
805,France,2017-11-16 00:00:00.000000,Film & Animation,18
806,France,2017-11-17 00:00:00.000000,Film & Animation,26
807,France,2017-11-18 00:00:00.000000,Film & Animation,18
808,France,2017-11-19 00:00:00.000000,Film & Animation,26
809,France,2017-11-20 00:00:00.000000,Film & Animation,20
810,France,2017-11-21 00:00:00.000000,Film & Animation,24
811,France,2017-11-22 00:00:00.000000,Film & Animation,32
812,France,2017-11-23 00:00:00.000000,Film & Animation,22
813,France,2017-11-24 00:00:00.000000,Film & Animation,14
814,France,2017-11-25 00:00:00.000000,Film & Animation,16
815,France,2017-11-26 00:00:00.000000,Film & Animation,22
816,France,2017-11-27 00:00:00.000000,Film & Animation,22
817,France,2017-11-28 00:00:00.000000,Film & Animation,20
818,France,2017-11-29 00:00:00.000000,Film & Animation,14
819,France,2017-11-30 00:00:00.000000,Film & Animation,20
820,France,2017-12-01 00:00:00.000000,Film & Animation,12
821,France,2017-12-02 00:00:00.000000,Film & Animation,20
822,France,2017-12-03 00:00:00.000000,Film & Animation,26
823,France,2017-12-04 00:00:00.000000,Film & Animation,28
824,France,2017-12-05 00:00:00.000000,Film & Animation,20
825,France,2017-12-06 00:00:00.000000,Film & Animation,18
826,France,2017-12-07 00:00:00.000000,Film & Animation,12
827,France,2017-12-08 00:00:00.000000,Film & Animation,20
828,France,2017-12-09 00:00:00.000000,Film & Animation,16
829,France,2017-12-10 00:00:00.000000,Film & Animation,22
830,France,2017-12-11 00:00:00.000000,Film & Animation,28
831,France,2017-12-12 00:00:00.000000,Film & Animation,24
832,France,2017-12-13 00:00:00.000000,Film & Animation,32
833,France,2017-12-14 00:00:00.000000,Film & Animation,24
834,France,2017-12-15 00:00:00.000000,Film & Animation,22
835,France,2017-12-16 00:00:00.000000,Film & Animation,18
836,France,2017-12-17 00:00:00.000000,Film & Animation,20
837,France,2017-12-18 00:00:00.000000,Film & Animation,18
838,France,2017-12-19 00:00:00.000000,Film & Animation,10
839,France,2017-12-20 00:00:00.000000,Film & Animation,22
840,France,2017-12-21 00:00:00.000000,Film & Animation,18
841,France,2017-12-22 00:00:00.000000,Film & Animation,14
842,France,2017-12-23 00:00:00.000000,Film & Animation,14
843,France,2017-12-24 00:00:00.000000,Film & Animation,12
844,France,2017-12-25 00:00:00.000000,Film & Animation,14
845,France,2017-12-26 00:00:00.000000,Film & Animation,22
846,France,2017-12-27 00:00:00.000000,Film & Animation,18
847,France,2017-12-28 00:00:00.000000,Film & Animation,16
848,France,2017-12-29 00:00:00.000000,Film & Animation,16
849,France,2017-12-30 00:00:00.000000,Film & Animation,20
850,France,2017-12-31 00:00:00.000000,Film & Animation,26
851,France,2018-01-01 00:00:00.000000,Film & Animation,28
852,France,2018-01-02 00:00:00.000000,Film & Animation,22
853,France,2018-01-03 00:00:00.000000,Film & Animation,16
854,France,2018-01-04 00:00:00.000000,Film & Animation,12
855,France,2018-01-05 00:00:00.000000,Film & Animation,10
856,France,2018-01-06 00:00:00.000000,Film & Animation,10
857,France,2018-01-07 00:00:00.000000,Film & Animation,22
858,France,2018-01-08 00:00:00.000000,Film & Animation,20
859,France,2018-01-09 00:00:00.000000,Film & Animation,12
860,France,2018-01-12 00:00:00.000000,Film & Animation,16
861,France,2018-01-13 00:00:00.000000,Film & Animation,20
862,France,2018-01-14 00:00:00.000000,Film & Animation,28
863,France,2018-01-15 00:00:00.000000,Film & Animation,20
864,France,2018-01-16 00:00:00.000000,Film & Animation,20
865,France,2018-01-17 00:00:00.000000,Film & Animation,24
866,France,2018-01-18 00:00:00.000000,Film & Animation,12
867,France,2018-01-19 00:00:00.000000,Film & Animation,10
868,France,2018-01-20 00:00:00.000000,Film & Animation,12
869,France,2018-01-21 00:00:00.000000,Film & Animation,26
870,France,2018-01-22 00:00:00.000000,Film & Animation,18
871,France,2018-01-23 00:00:00.000000,Film & Animation,16
872,France,2018-01-24 00:00:00.000000,Film & Animation,20
873,France,2018-01-25 00:00:00.000000,Film & Animation,20
874,France,2018-01-26 00:00:00.000000,Film & Animation,10
875,France,2018-01-27 00:00:00.000000,Film & Animation,10
876,France,2018-01-28 00:00:00.000000,Film & Animation,22
877,France,2018-01-29 00:00:00.000000,Film & Animation,16
878,France,2018-01-30 00:00:00.000000,Film & Animation,24
879,France,2018-01-31 00:00:00.000000,Film & Animation,20
880,France,2018-02-01 00:00:00.000000,Film & Animation,18
881,France,2018-02-02 00:00:00.000000,Film & Animation,28
882,France,2018-02-03 00:00:00.000000,Film & Animation,22
883,France,2018-02-04 00:00:00.000000,Film & Animation,22
884,France,2018-02-05 00:00:00.000000,Film & Animation,10
885,France,2018-02-06 00:00:00.000000,Film & Animation,16
886,France,2018-02-07 00:00:00.000000,Film & Animation,28
887,France,2018-02-08 00:00:00.000000,Film & Animation,12
888,France,2018-02-09 00:00:00.000000,Film & Animation,10
889,France,2018-02-10 00:00:00.000000,Film & Animation,20
890,France,2018-02-11 00:00:00.000000,Film & Animation,22
891,France,2018-02-12 00:00:00.000000,Film & Animation,24
892,France,2018-02-13 00:00:00.000000,Film & Animation,18
893,France,2018-02-14 00:00:00.000000,Film & Animation,14
894,France,2018-02-15 00:00:00.000000,Film & Animation,18
895,France,2018-02-16 00:00:00.000000,Film & Animation,14
896,France,2018-02-17 00:00:00.000000,Film & Animation,14
897,France,2018-02-18 00:00:00.000000,Film & Animation,10
898,France,2018-02-19 00:00:00.000000,Film & Animation,14
899,France,2018-02-20 00:00:00.000000,Film & Animation,14
900,France,2018-02-21 00:00:00.000000,Film & Animation,20
901,France,2018-02-22 00:00:00.000000,Film & Animation,24
902,France,2018-02-23 00:00:00.000000,Film & Animation,24
903,France,2018-02-24 00:00:00.000000,Film & Animation,18
904,France,2018-02-25 00:00:00.000000,Film & Animation,28
905,France,2018-02-26 00:00:00.000000,Film & Animation,18
906,France,2018-02-27 00:00:00.000000,Film & Animation,16
907,France,2018-02-28 00:00:00.000000,Film & Animation,22
908,France,2018-03-01 00:00:00.000000,Film & Animation,16
909,France,2018-03-02 00:00:00.000000,Film & Animation,16
910,France,2018-03-03 00:00:00.000000,Film & Animation,20
911,France,2018-03-04 00:00:00.000000,Film & Animation,34
912,France,2018-03-05 00:00:00.000000,Film & Animation,32
913,France,2018-03-06 00:00:00.000000,Film & Animation,22
914,France,2018-03-07 00:00:00.000000,Film & Animation,22
915,France,2018-03-08 00:00:00.000000,Film & Animation,12
916,France,2018-03-09 00:00:00.000000,Film & Animation,12
917,France,2018-03-10 00:00:00.000000,Film & Animation,16
918,France,2018-03-11 00:00:00.000000,Film & Animation,10
919,France,2018-03-12 00:00:00.000000,Film & Animation,14
920,France,2018-03-13 00:00:00.000000,Film & Animation,10
921,France,2018-03-14 00:00:00.000000,Film & Animation,10
922,France,2018-03-15 00:00:00.000000,Film & Animation,14
923,France,2018-03-16 00:00:00.000000,Film & Animation,20
924,France,2018-03-17 00:00:00.000000,Film & Animation,24
925,France,2018-03-18 00:00:00.000000,Film & Animation,18
926,France,2018-03-19 00:00:00.000000,Film & Animation,14
927,France,2018-03-20 00:00:00.000000,Film & Animation,18
928,France,2018-03-21 00:00:00.000000,Film & Animation,26
929,France,2018-03-22 00:00:00.000000,Film & Animation,16
930,France,2018-03-23 00:00:00.000000,Film & Animation,16
931,France,2018-03-24 00:00:00.000000,Film & Animation,10
932,France,2018-03-25 00:00:00.000000,Film & Animation,12
933,France,2018-03-26 00:00:00.000000,Film & Animation,20
934,France,2018-03-27 00:00:00.000000,Film & Animation,18
935,France,2018-03-28 00:00:00.000000,Film & Animation,20
936,France,2018-03-29 00:00:00.000000,Film & Animation,14
937,France,2018-03-30 00:00:00.000000,Film & Animation,8
938,France,2018-03-31 00:00:00.000000,Film & Animation,18
939,France,2018-04-01 00:00:00.000000,Film & Animation,16
940,France,2018-04-02 00:00:00.000000,Film & Animation,16
941,France,2018-04-03 00:00:00.000000,Film & Animation,18
942,France,2018-04-04 00:00:00.000000,Film & Animation,16
943,France,2018-04-05 00:00:00.000000,Film & Animation,14
944,France,2018-04-06 00:00:00.000000,Film & Animation,16
945,France,2018-04-07 00:00:00.000000,Film & Animation,22
946,France,2018-04-14 00:00:00.000000,Film & Animation,22
947,France,2018-04-15 00:00:00.000000,Film & Animation,26
948,France,2018-04-16 00:00:00.000000,Film & Animation,18
949,France,2018-04-17 00:00:00.000000,Film & Animation,18
950,France,2018-04-18 00:00:00.000000,Film & Animation,16
951,France,2018-04-19 00:00:00.000000,Film & Animation,22
952,France,2018-04-20 00:00:00.000000,Film & Animation,12
953,France,2018-04-21 00:00:00.000000,Film & Animation,12
954,France,2018-04-22 00:00:00.000000,Film & Animation,20
955,France,2018-04-23 00:00:00.000000,Film & Animation,14
956,France,2018-04-24 00:00:00.000000,Film & Animation,14
957,France,2018-04-25 00:00:00.000000,Film & Animation,12
958,France,2018-04-26 00:00:00.000000,Film & Animation,12
959,France,2018-04-27 00:00:00.000000,Film & Animation,18
960,France,2018-04-28 00:00:00.000000,Film & Animation,20
961,France,2018-04-29 00:00:00.000000,Film & Animation,18
962,France,2018-04-30 00:00:00.000000,Film & Animation,16
963,France,2018-05-01 00:00:00.000000,Film & Animation,18
964,France,2018-05-02 00:00:00.000000,Film & Animation,14
965,France,2018-05-03 00:00:00.000000,Film & Animation,14
966,France,2018-05-04 00:00:00.000000,Film & Animation,20
967,France,2018-05-05 00:00:00.000000,Film & Animation,14
968,France,2018-05-06 00:00:00.000000,Film & Animation,4
969,France,2018-05-07 00:00:00.000000,Film & Animation,16
970,France,2018-05-08 00:00:00.000000,Film & Animation,26
971,France,2018-05-09 00:00:00.000000,Film & Animation,22
972,France,2018-05-10 00:00:00.000000,Film & Animation,20
973,France,2018-05-11 00:00:00.000000,Film & Animation,14
974,France,2018-05-12 00:00:00.000000,Film & Animation,24
975,France,2018-05-13 00:00:00.000000,Film & Animation,22
976,France,2018-05-14 00:00:00.000000,Film & Animation,14
977,France,2018-05-15 00:00:00.000000,Film & Animation,20
978,France,2018-05-16 00:00:00.000000,Film & Animation,30
979,France,2018-05-17 00:00:00.000000,Film & Animation,28
980,France,2018-05-18 00:00:00.000000,Film & Animation,26
981,France,2018-05-19 00:00:00.000000,Film & Animation,16
982,France,2018-05-20 00:00:00.000000,Film & Animation,16
983,France,2018-05-21 00:00:00.000000,Film & Animation,14
984,France,2018-05-22 00:00:00.000000,Film & Animation,16
985,France,2018-05-23 00:00:00.000000,Film & Animation,18
986,France,2018-05-24 00:00:00.000000,Film & Animation,24
987,France,2018-05-25 00:00:00.000000,Film & Animation,26
988,France,2018-05-26 00:00:00.000000,Film & Animation,22
989,France,2018-05-27 00:00:00.000000,Film & Animation,20
990,France,2018-05-28 00:00:00.000000,Film & Animation,22
991,France,2018-05-29 00:00:00.000000,Film & Animation,18
992,France,2018-05-30 00:00:00.000000,Film & Animation,18
993,France,2018-05-31 00:00:00.000000,Film & Animation,12
994,France,2018-06-01 00:00:00.000000,Film & Animation,18
995,France,2018-06-02 00:00:00.000000,Film & Animation,16
996,France,2018-06-03 00:00:00.000000,Film & Animation,10
997,France,2018-06-04 00:00:00.000000,Film & Animation,18
998,France,2018-06-05 00:00:00.000000,Film & Animation,20
999,France,2018-06-06 00:00:00.000000,Film & Animation,26