summaryrefslogtreecommitdiff
path: root/plugins/af_readability/vendor/fivefilters/readability.php/test/test-pages/videos-2/source.html
blob: 5cfc0ba141a502439201b7d088a0d4da952713eb (plain)
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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
<!DOCTYPE html>
<html lang="fr" xmlns="http://www.w3.org/1999/xhtml" xml:lang="fr">
    <head prefix="og: http://ogp.me/ns# fb: http://ogp.me/ns/fb# article: http://ogp.me/ns/article#">
        <title>
            Screenshot&#160;: «Vape Wave», «6&#160;Days», «Alphonse Président»… - Culture / Next
        </title>
        <meta charset="utf-8" />
        <meta name="viewport" content="width=device-width, initial-scale=1" />
        <meta name="description" content="Séries, documentaires, programmes jeunesse… Retrouvez les recommandations de&#160;Libération&#160;pour savoir quoi regarder sur vos écrans cette semaine. Pour dépasser..." />
        <meta name="keywords" content="Documentaire, Libération, Netflix, Arte, Marsha P. Johnson, Alan Moore, France, New York, Cinéaste, Thriller, Special Air Service, Acteur, Web-série, Opération Nimrod, Jim Carrey, Winamp, Planète+, Queer, LGBT, Icône, From Hell, Comique, Etty Buzyn, Bande-annonce, Jefferson Starship, Vieux-croyants, Greenwich Village, V pour Vendetta, Michel Vuillermoz, Évangélisation, Sans-abri, Frein de bicyclette, Cigarette, Allergie, États-Unis, Dieu merci!, Londres, Édouard Baer, Clément Cogitore, Margaret Thatcher, Vidéo à la demande, Pays de la Loire, Cinéma, Brasses, Réalisateur, 10 Downing Street, Jérusalem, Orange Cinéhappy, Mégot, Long métrage, Un grand patron, Droits de l'homme, Baron noir, Ermites dans la taïga, DVD, Parfum, Financement participatif, Révolution, Albert Dupontel, Sénat, Andy Kaufman, Autarcie, Royaume-Uni, Famille Lykov, Brexit, Captures d'écran, Jan Kounen, Dobermann, Comédie-Française, Famille, Taïga, Queen, Prise d'otages des Jeux olympiques de Munich, Président de la République, 99 francs, Langue de bois, Miloš Forman, Torture, Watchmen, Anonymous, François Hollande, The Dead Lands, Mark Strong, Jamie Bell, Nabiha Akkari, Jean-Michel Lahmi, France 3 Limousin, Tournage, Élysée, Cigarette électronique, Billy Elliot, Andy Warhol, Vaudou, Des lendemains qui chantent, Prostitution, Angleterre, Rosa Parks, Bob Zmuda, Émeutes de Stonewall, CNC, MtF, Tabac, Michel Serres, Violence, ADAGP, French Touch, Premier ministre, Canal+, Danse, Man on the Moon, The Great Beyond, Veep, House of Cards, Vassili Peskov, actualités, news" />
        <meta name="apple-itunes-app" content="app-id=371288979" />
        <meta name="twitter:card" content="summary_large_image" />
        <meta name="twitter:site" content="@libe" />
        <meta name="twitter:creator" content="@libe" />
        <meta name="twitter:title" content="Screenshot&#160;: «Vape Wave», «6&#160;Days», «Alphonse Président»…" />
        <meta name="twitter:description" content="Séries, documentaires, programmes jeunesse… Retrouvez les recommandations de&#160;Libération&#160;pour savoir quoi regarder sur vos écrans cette semaine. Pour dépasser..." />
        <meta name="twitter:url" content="https://next.liberation.fr/culture/2017/11/24/screenshot-vape-wave-6-days-alphonse-president_1612047" />
        <meta name="twitter:image" content="https://medias.liberation.fr/photo/1075029-screenshot-alphonse-vape-wave-6-days.jpg?modified_at=1511536242&amp;amp;picto=fb&amp;amp;ratio_x=191&amp;amp;ratio_y=100&amp;amp;width=600" />
        <meta property="article:section" content="Culture" />
        <meta property="article:published_time" content="2017-11-24T18:42:20" />
        <meta property="article:modified_time" content="2017-11-24T18:42:20" />
        <meta property="article:author" content="https://www.liberation.fr/auteur/5631-alexandre-hervaud" />
        <meta property="article:author" content="https://www.liberation.fr/auteur/17350-jeremy-piette" />
        <meta name="news_keywords" content="Documentaire, Libération, Netflix, Arte, Marsha P. Johnson, Alan Moore, France, New York, Cinéaste, Thriller, Special Air Service, Acteur, Web-série, Opération Nimrod, Jim Carrey, Winamp, Planète+, Queer, LGBT, Icône, From Hell, Comique, Etty Buzyn, Bande-annonce, Jefferson Starship, Vieux-croyants, Greenwich Village, V pour Vendetta, Michel Vuillermoz, Évangélisation, Sans-abri, Frein de bicyclette, Cigarette, Allergie, États-Unis, Dieu merci!, Londres, Édouard Baer, Clément Cogitore, Margaret Thatcher, Vidéo à la demande, Pays de la Loire, Cinéma, Brasses, Réalisateur, 10 Downing Street, Jérusalem, Orange Cinéhappy, Mégot, Long métrage, Un grand patron, Droits de l'homme, Baron noir, Ermites dans la taïga, DVD, Parfum, Financement participatif, Révolution, Albert Dupontel, Sénat, Andy Kaufman, Autarcie, Royaume-Uni, Famille Lykov, Brexit, Captures d'écran, Jan Kounen, Dobermann, Comédie-Française, Famille, Taïga, Queen, Prise d'otages des Jeux olympiques de Munich, Président de la République, 99 francs, Langue de bois, Miloš Forman, Torture, Watchmen, Anonymous, François Hollande, The Dead Lands, Mark Strong, Jamie Bell, Nabiha Akkari, Jean-Michel Lahmi, France 3 Limousin, Tournage, Élysée, Cigarette électronique, Billy Elliot, Andy Warhol, Vaudou, Des lendemains qui chantent, Prostitution, Angleterre, Rosa Parks, Bob Zmuda, Émeutes de Stonewall, CNC, MtF, Tabac, Michel Serres, Violence, ADAGP, French Touch, Premier ministre, Canal+, Danse, Man on the Moon, The Great Beyond, Veep, House of Cards, Vassili Peskov" />
        <meta property="article:tag" content="Documentaire" />
        <meta property="article:tag" content="Libération" />
        <meta property="article:tag" content="Netflix" />
        <meta property="article:tag" content="Arte" />
        <meta property="article:tag" content="Marsha P. Johnson" />
        <meta property="article:tag" content="Alan Moore" />
        <meta property="article:tag" content="France" />
        <meta property="article:tag" content="New York" />
        <meta property="article:tag" content="Cinéaste" />
        <meta property="article:tag" content="Thriller" />
        <meta property="article:tag" content="Special Air Service" />
        <meta property="article:tag" content="Acteur" />
        <meta property="article:tag" content="Web-série" />
        <meta property="article:tag" content="Opération Nimrod" />
        <meta property="article:tag" content="Jim Carrey" />
        <meta property="article:tag" content="Winamp" />
        <meta property="article:tag" content="Planète+" />
        <meta property="article:tag" content="Queer" />
        <meta property="article:tag" content="LGBT" />
        <meta property="article:tag" content="Icône" />
        <meta property="article:tag" content="From Hell" />
        <meta property="article:tag" content="Comique" />
        <meta property="article:tag" content="Etty Buzyn" />
        <meta property="article:tag" content="Bande-annonce" />
        <meta property="article:tag" content="Jefferson Starship" />
        <meta property="article:tag" content="Vieux-croyants" />
        <meta property="article:tag" content="Greenwich Village" />
        <meta property="article:tag" content="V pour Vendetta" />
        <meta property="article:tag" content="Michel Vuillermoz" />
        <meta property="article:tag" content="Évangélisation" />
        <meta property="article:tag" content="Sans-abri" />
        <meta property="article:tag" content="Frein de bicyclette" />
        <meta property="article:tag" content="Cigarette" />
        <meta property="article:tag" content="Allergie" />
        <meta property="article:tag" content="États-Unis" />
        <meta property="article:tag" content="Dieu merci!" />
        <meta property="article:tag" content="Londres" />
        <meta property="article:tag" content="Édouard Baer" />
        <meta property="article:tag" content="Clément Cogitore" />
        <meta property="article:tag" content="Margaret Thatcher" />
        <meta property="article:tag" content="Vidéo à la demande" />
        <meta property="article:tag" content="Pays de la Loire" />
        <meta property="article:tag" content="Cinéma" />
        <meta property="article:tag" content="Brasses" />
        <meta property="article:tag" content="Réalisateur" />
        <meta property="article:tag" content="10 Downing Street" />
        <meta property="article:tag" content="Jérusalem" />
        <meta property="article:tag" content="Orange Cinéhappy" />
        <meta property="article:tag" content="Mégot" />
        <meta property="article:tag" content="Long métrage" />
        <meta property="article:tag" content="Un grand patron" />
        <meta property="article:tag" content="Droits de l'homme" />
        <meta property="article:tag" content="Baron noir" />
        <meta property="article:tag" content="Ermites dans la taïga" />
        <meta property="article:tag" content="DVD" />
        <meta property="article:tag" content="Parfum" />
        <meta property="article:tag" content="Financement participatif" />
        <meta property="article:tag" content="Révolution" />
        <meta property="article:tag" content="Albert Dupontel" />
        <meta property="article:tag" content="Sénat" />
        <meta property="article:tag" content="Andy Kaufman" />
        <meta property="article:tag" content="Autarcie" />
        <meta property="article:tag" content="Royaume-Uni" />
        <meta property="article:tag" content="Famille Lykov" />
        <meta property="article:tag" content="Brexit" />
        <meta property="article:tag" content="Captures d'écran" />
        <meta property="article:tag" content="Jan Kounen" />
        <meta property="article:tag" content="Dobermann" />
        <meta property="article:tag" content="Comédie-Française" />
        <meta property="article:tag" content="Famille" />
        <meta property="article:tag" content="Taïga" />
        <meta property="article:tag" content="Queen" />
        <meta property="article:tag" content="Prise d'otages des Jeux olympiques de Munich" />
        <meta property="article:tag" content="Président de la République" />
        <meta property="article:tag" content="99 francs" />
        <meta property="article:tag" content="Langue de bois" />
        <meta property="article:tag" content="Miloš Forman" />
        <meta property="article:tag" content="Torture" />
        <meta property="article:tag" content="Watchmen" />
        <meta property="article:tag" content="Anonymous" />
        <meta property="article:tag" content="François Hollande" />
        <meta property="article:tag" content="The Dead Lands" />
        <meta property="article:tag" content="Mark Strong" />
        <meta property="article:tag" content="Jamie Bell" />
        <meta property="article:tag" content="Nabiha Akkari" />
        <meta property="article:tag" content="Jean-Michel Lahmi" />
        <meta property="article:tag" content="France 3 Limousin" />
        <meta property="article:tag" content="Tournage" />
        <meta property="article:tag" content="Élysée" />
        <meta property="article:tag" content="Cigarette électronique" />
        <meta property="article:tag" content="Billy Elliot" />
        <meta property="article:tag" content="Andy Warhol" />
        <meta property="article:tag" content="Vaudou" />
        <meta property="article:tag" content="Des lendemains qui chantent" />
        <meta property="article:tag" content="Prostitution" />
        <meta property="article:tag" content="Angleterre" />
        <meta property="article:tag" content="Rosa Parks" />
        <meta property="article:tag" content="Bob Zmuda" />
        <meta property="article:tag" content="Émeutes de Stonewall" />
        <meta property="article:tag" content="CNC" />
        <meta property="article:tag" content="MtF" />
        <meta property="article:tag" content="Tabac" />
        <meta property="article:tag" content="Michel Serres" />
        <meta property="article:tag" content="Violence" />
        <meta property="article:tag" content="ADAGP" />
        <meta property="article:tag" content="French Touch" />
        <meta property="article:tag" content="Premier ministre" />
        <meta property="article:tag" content="Canal+" />
        <meta property="article:tag" content="Danse" />
        <meta property="article:tag" content="Man on the Moon" />
        <meta property="article:tag" content="The Great Beyond" />
        <meta property="article:tag" content="Veep" />
        <meta property="article:tag" content="House of Cards" />
        <meta property="article:tag" content="Vassili Peskov" />
        <link rel="amphtml" href="https://next.liberation.fr/amphtml/culture/2017/11/24/screenshot-vape-wave-6-days-alphonse-president_1612047" />
        <script type="application/ld+json">
        <![CDATA[
        {"publisher": {"url": "https://www.liberation.fr", "logo": {"url": "https://statics.liberation.fr/newnext/images/logo-libe-meta.png", "width": "131", "@type": "ImageObject", "height": "60"}, "@type": "Organization", "name": "Lib\u00e9ration"}, "description": "S\u00e9ries, documentaires, programmes jeunesse\u2026 Retrouvez les recommandations de\u00a0Lib\u00e9ration\u00a0pour savoir quoi regarder sur vos \u00e9crans cette semaine.\nPour d\u00e9passer...", "author": [{"url": "https://www.liberation.fr/auteur/5631-alexandre-hervaud", "@type": "Person", "name": "Alexandre Hervaud"}, {"url": "https://www.liberation.fr/auteur/17350-jeremy-piette", "@type": "Person", "name": "J\u00e9r\u00e9my Piette"}], "headline": "Screenshot\u00a0: \u00abVape Wave\u00bb, \u00ab6\u00a0Days\u00bb, \u00abAlphonse Pr\u00e9sident\u00bb\u2026", "image": {"url": "https://statics.liberation.fr/newnext/images/social-placeholder.jpg", "width": "1000", "@type": "ImageObject", "height": "500"}, "datePublished": "2017-11-24T18:42:20.314667", "keywords": "Documentaire,Lib\u00e9ration,Netflix,Arte,Marsha P. Johnson,Alan Moore,France,New York,Cin\u00e9aste,Thriller,Special Air Service,Acteur,Web-s\u00e9rie,Op\u00e9ration Nimrod,Jim Carrey,Winamp,Plan\u00e8te+,Queer,LGBT,Ic\u00f4ne,From Hell,Comique,Etty Buzyn,Bande-annonce,Jefferson Starship,Vieux-croyants,Greenwich Village,V pour Vendetta,Michel Vuillermoz,\u00c9vang\u00e9lisation,Sans-abri,Frein de bicyclette,Cigarette,Allergie,\u00c9tats-Unis,Dieu merci!,Londres,\u00c9douard Baer,Cl\u00e9ment Cogitore,Margaret Thatcher,Vid\u00e9o \u00e0 la demande,Pays de la Loire,Cin\u00e9ma,Brasses,R\u00e9alisateur,10 Downing Street,J\u00e9rusalem,Orange Cin\u00e9happy,M\u00e9got,Long m\u00e9trage,Un grand patron,Droits de l'homme,Baron noir,Ermites dans la ta\u00efga,DVD,Parfum,Financement participatif,R\u00e9volution,Albert Dupontel,S\u00e9nat,Andy Kaufman,Autarcie,Royaume-Uni,Famille Lykov,Brexit,Captures d'\u00e9cran,Jan Kounen,Dobermann,Com\u00e9die-Fran\u00e7aise,Famille,Ta\u00efga,Queen,Prise d'otages des Jeux olympiques de Munich,Pr\u00e9sident de la R\u00e9publique,99 francs,Langue de bois,Milo\u0161 Forman,Torture,Watchmen,Anonymous,Fran\u00e7ois Hollande,The Dead Lands,Mark Strong,Jamie Bell,Nabiha Akkari,Jean-Michel Lahmi,France 3 Limousin,Tournage,\u00c9lys\u00e9e,Cigarette \u00e9lectronique,Billy Elliot,Andy Warhol,Vaudou,Des lendemains qui chantent,Prostitution,Angleterre,Rosa Parks,Bob Zmuda,\u00c9meutes de Stonewall,CNC,MtF,Tabac,Michel Serres,Violence,ADAGP,French Touch,Premier ministre,Canal+,Danse,Man on the Moon,The Great Beyond,Veep,House of Cards,Vassili Peskov", "@type": "NewsArticle", "mainEntityOfPage": {"@id": "https://next.liberation.fr/culture/2017/11/24/screenshot-vape-wave-6-days-alphonse-president_1612047", "@type": "URL"}, "@context": "http://schema.org", "dateCreated": "2017-11-24T18:42:20.314667", "dateModified": "2017-11-24T18:42:20.314667"}
        ]]>
        </script>
        <meta name="google-site-verification" content="zVHLmJdGBN-aytKJzwnoPQeYRQZLOwePkL6terUtF8U" />
        <meta property="fb:pages" content="147126052393" />
        <meta property="og:site_name" content="Libération.fr" />
        <meta property="og:type" content="article" />
        <meta property="og:title" content="Screenshot&#160;: «Vape Wave», «6&#160;Days», «Alphonse Président»…" />
        <meta property="og:image" content="https://medias.liberation.fr/photo/1075029-screenshot-alphonse-vape-wave-6-days.jpg?modified_at=1511536242&amp;amp;picto=fb&amp;amp;ratio_x=191&amp;amp;ratio_y=100&amp;amp;width=600" />
        <meta property="al:ios:url" content="liberation://article?id=1612047" />
        <meta property="al:ios:app_store_id" content="336173383" />
        <meta property="al:ios:app_name" content="Libération" />
        <meta property="al:android:package" content="com.visuamobile.liberation" />
        <meta property="al:android:app_name" content="Libération - Toute l'actualité" />
        <meta property="al:android:url" content="liberation://article?id=1612047" />
        <meta name="twitter:app:country" content="FR" />
        <meta name="twitter:app:name:iphone" content="Libération" />
        <meta name="twitter:app:id:iphone" content="336173383" />
        <meta name="twitter:app:url:iphone" content="liberation://article?id=1612047" />
        <meta name="twitter:app:name:ipad" content="Libération" />
        <meta name="twitter:app:id:ipad" content="336173383" />
        <meta name="twitter:app:url:ipad" content="liberation://article?id=1612047" />
        <meta name="twitter:app:name:googleplay" content="Libération - Toute l'actualité" />
        <meta name="twitter:app:id:googleplay" content="com.visuamobile.liberation" />
        <meta name="twitter:app:url:googleplay" content="liberation://article?id=1612047" />
        <meta property="og:url" content="https://next.liberation.fr/culture/2017/11/24/screenshot-vape-wave-6-days-alphonse-president_1612047" />
        <meta property="og:description" content="Séries, documentaires, programmes jeunesse… Retrouvez les recommandations de&#160;Libération&#160;pour savoir quoi regarder sur vos écrans cette semaine. Pour dépasser..." />
        <meta property="libe:image" content="https://medias.liberation.fr/photo/1075029-screenshot-alphonse-vape-wave-6-days.jpg?modified_at=1511536242&amp;amp;width=750" />
        <link rel="canonical" href="https://next.liberation.fr/culture/2017/11/24/screenshot-vape-wave-6-days-alphonse-president_1612047" />
        <link rel="shortcut icon" href="https://www.liberation.fr/favicon.ico" />
        <link rel="stylesheet" href="https://statics.liberation.fr/newnext/cache/css/46a524bbe7a5.css" type="text/css" media="all" />
        <link rel="stylesheet" href="https://statics.liberation.fr/newnext/cache/css/db0902551ea0.css" type="text/css" media="all" />
        <link rel="dns-prefetch" href="https://medias.liberation.fr" />
        <link rel="dns-prefetch" href="http://m0.libe.com/" />
        <link rel="dns-prefetch" href="https://statics.liberation.fr/newnext/" />
        <link rel="dns-prefetch" href="http://asqliberation.nuggad.net/" />
        <link rel="dns-prefetch" href="http://logliberation.xiti.com/" />
        <link rel="dns-prefetch" href="http://www.google-analytics.com/" />
        <link rel="dns-prefetch" href="http://static.chartbeat.com/" />
        <link rel="dns-prefetch" href="http://ping.chartbeat.com/" />
        <link rel="dns-prefetch" href="http://widgets.outbrain.com/" />
        <link rel="dns-prefetch" href="http://images.outbrain.com/" />
        <link rel="dns-prefetch" href="http://odb.outbrain.com/" />
        <link rel="dns-prefetch" href="http://platform.twitter.com/" />
        <link rel="dns-prefetch" href="http://connect.facebook.net/" />
        <link rel="dns-prefetch" href="http://www.facebook.com/" />
        <link rel="dns-prefetch" href="https://www6.smartadserver.com/" />
        <link rel="dns-prefetch" href="http://ak-ns.sascdn.com/" />
        <link rel="dns-prefetch" href="http://cdn1.smartadserver.com/" />
        <link rel="dns-prefetch" href="http://ib.adnxs.com/" />
        <link rel="dns-prefetch" href="http://cdn.adslvr.com/" />
        <link rel="dns-prefetch" href="http://d.ligatus.com/" />
        <link rel="dns-prefetch" href="http://x.ligatus.com/" />
        <link rel="dns-prefetch" href="http://l.ligatus.com/" />
        <link rel="dns-prefetch" href="http://cdn.elasticad.net/" />
        <script type="text/javascript" src="https://statics.liberation.fr/newnext/cache/js/6cc7f5d7edf1.js"></script>
        <script type="text/javascript" src="https://statics.liberation.fr/newnext/cache/js/ec1d4b0cc5cb.js"></script>
    </head>
    <body class="contentmodel next article article-screenshot-vape-wave-6-days-alphonse-president article">
        <script type="text/javascript" src="https://statics.liberation.fr/newnext/cache/js/47759a0c4465.js"></script> <svg xmlns="http://www.w3.org/2000/svg" style="height: 0; width: 0; position: absolute; visibility: hidden;"> <!-- LAYOUT -->
        <symbol id="icon-search" viewbox="0 0 21 22">
            <title>
                Search
            </title>
            <g stroke-width="2" stroke-miterlimit="10" fill="none">
                <circle cx="8.4" cy="8.5" r="7.1"></circle>
                <path d="M12.9 13.8l7.1 7.1"></path>
            </g>
        </symbol>
        <symbol id="icon-direct-anim" viewbox="0 0 26 22">
            <title>
                Direct
            </title>
            <path class="stroke-anim" stroke="#000" stroke-width="2" stroke-miterlimit="10" d="M15.5 8c.7-1 2-2 4-2 3 0 5 2.1 5 5s-2.1 5-5 5c-3.3 0-5-2.1-6.5-5s-3.2-5-6.5-5c-2.9 0-5 2.1-5 5s2 5 5 5c2 0 3.2-.9 4-2" fill="none"></path>
        </symbol>
        <symbol id="icon-user" viewbox="0 0 21 22">
            <title>
                User
            </title>
            <g stroke-width="2" stroke-miterlimit="10" fill="none">
                <path d="M7.1 12.2c-3.3 1.3-5.6 4.3-5.6 8.3h17.9c0-4-2.3-7-5.6-8.3"></path>
                <circle cx="10.5" cy="7.1" r="5.6"></circle>
            </g>
        </symbol>
        <symbol id="icon-100" viewbox="0 0 26 22">
            <title>
                100
            </title>
            <g stroke="#000" stroke-width="2" stroke-miterlimit="10" fill="none">
                <path d="M14.8 8c0-1.7-1.3-3-3-3s-3 1.3-3 3v6c0 1.7 1.3 3 3 3s3-1.3 3-3v-6zM24.8 8c0-1.7-1.3-3-3-3s-3 1.3-3 3v6c0 1.7 1.3 3 3 3s3-1.3 3-3v-6zM.8 7l2.6-2h.4v13"></path>
            </g>
        </symbol>
        <symbol id="icon-zoom" viewbox="0 0 22 22">
            <title>
                Zoom
            </title>
            <path fill="#ffffff" d="M9 22v-2h-5.5l6.5-6.5-1.5-1.5-6.5 6.5v-5.5h-2v9zM13 0v2h5.5l-6.5 6.5 1.5 1.5 6.5-6.5v5.5h2v-9z"></path>
        </symbol>
        <symbol id="icon-quiz" viewbox="0 0 60 60">
            <title>
                Quiz
            </title>
            <text transform="translate(23.727 40.574)" fill="#fff" font-family="'Liberation-x2750.00_x1500.00'" font-size="26.585" letter-spacing="2">
                ?
            </text>
            <path stroke="#fff" d="M30 12v-7M21.1 14.5l-3.6-6.2M14.5 21.1l-6.2-3.6M12 30h-7M14.5 38.9l-6.2 3.6M21.1 45.5l-3.6 6.2M30 48v7M38.9 45.5l3.6 6.2M45.5 38.9l6.2 3.6M48 30h7M45.5 21.1l6.2-3.6M38.9 14.5l3.6-6.2"></path>
        </symbol><!-- LIVE -->
        <symbol id="icon-diamond" viewbox="0 0 26 11">
            <title>
                Libération Diamond
            </title>
            <path stroke="#000" stroke-linejoin="round" stroke-miterlimit="10" fill="none" d="M1.1 5.5l11.9-4.4 11.9 4.4-11.9 4.4z"></path>
        </symbol><!-- EVENEMENT -->
        <symbol id="icon-clock" viewbox="0 0 18 18">
            <title>
                clock
            </title>
            <g stroke="#000" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" fill="none">
                <circle cx="9" cy="9" r="7.5"></circle>
                <path d="M9 3.9v5.1h2.6"></path>
            </g>
        </symbol><!-- RSS -->
        <symbol id="icon-xml" viewbox="0 0 14.6 14.6">
            <title>
                xml
            </title>
            <path fill="#fff" d="M0 7.8c1.8 0 3.5.7 4.8 2 1.3 1.3 2 3 2 4.8h2.8c0-5.3-4.3-9.6-9.6-9.6v2.8zm0-5c6.5 0 11.8 5.3 11.8 11.8h2.8c0-8-6.6-14.6-14.6-14.6v2.8zm3.9 9.9c0 1.1-.9 1.9-1.9 1.9-1.1 0-1.9-.9-1.9-1.9 0-1.1.9-1.9 1.9-1.9 1-.1 1.9.8 1.9 1.9z"></path>
        </symbol>
        <symbol id="icon-netvibes" viewbox="0 0 14 14">
            <title>
                netvibes
            </title>
            <g fill="#fff">
                <path d="M6 0h2v14h-2zM0 6h14v2h-14z"></path>
            </g>
        </symbol><!-- CATEGORIES -->
        <symbol id="icon-live" viewbox="0 0 60 60">
            <title>
                live
            </title>
            <path stroke="#fff" stroke-width="2" stroke-miterlimit="10" d="M33 26c1.3-2 3.1-4 6-4 5 0 8 3.7 8 8s-3 8-8 8c-4.9 0-6.8-3.7-9-8s-4.1-8-9-8c-5.1 0-8 3.7-8 8s2.9 8 8 8c3 0 4.8-2.4 6-4" fill="none"></path>
        </symbol>
        <symbol id="icon-anciens-numeros" viewbox="0 0 60 60">
            <title>
                anciens-numeros
            </title>
            <path fill="#fff" d="M20.2 22.5l7.1-2.5 6.9 2.5-6.9 2.5z"></path>
            <path stroke="#fff" stroke-width="2" stroke-miterlimit="10" fill="none" d="M15 17h24v32h-24zM20 14v-2h24v32h-2"></path>
            <path stroke="#fff" stroke-width="2" stroke-miterlimit="10" fill="none" d="M20 29h14v8h-14zM19 41h7M19 44h7M28 41h7M28 44h7"></path>
        </symbol>
        <symbol id="icon-data" viewbox="0 0 60 60">
            <title>
                data
            </title>
            <g stroke="#fff" stroke-width="2" stroke-miterlimit="10" fill="none">
                <circle cx="30" cy="30" r="15.7"></circle>
                <path d="M30 14v16l-10.6 11.6M18.8 19l11.2 11"></path>
            </g>
        </symbol>
        <symbol id="icon-desintox" viewbox="0 0 60 60">
            <title>
                desintox
            </title>
            <g stroke="#fff" stroke-width="2" stroke-linecap="round" stroke-miterlimit="10" fill="none">
                <circle cx="20.6" cy="40.8" r="6.5"></circle>
                <path d="M23.4 40.8c0-1.5-1.3-2.8-2.8-2.8M42.4 40.8c0-1.5-1.3-2.8-2.8-2.8M14 41v-14.7c0-3.5 3-6.3 6.5-6.3s6.5 2.8 6.5 6.3v14.7"></path>
            </g>
            <g stroke="#fff" stroke-width="2" stroke-linecap="round" stroke-miterlimit="10" fill="none">
                <circle cx="39.6" cy="40.8" r="6.5"></circle>
                <path d="M33 41v-14.7c0-3.5 3-6.3 6.5-6.3s6.5 2.8 6.5 6.3v14.7"></path>
            </g>
            <path stroke="#fff" stroke-width="2" stroke-linecap="round" stroke-miterlimit="10" d="M19 20v-4.2c0-2.1 1.9-3.7 4-3.7s4 1.7 4 3.7v9.2M41 20v-4.2c0-2.1-1.9-3.7-4-3.7s-4 1.7-4 3.7v9.2" fill="none"></path>
            <path stroke="#fff" stroke-width="2" stroke-linecap="round" stroke-miterlimit="10" fill="none" d="M27 25h6v11h-6z"></path>
        </symbol>
        <symbol id="icon-diapo" viewbox="0 0 60 60">
            <title>
                diapo
            </title>
            <path stroke="#fff" stroke-width="2" stroke-miterlimit="10" fill="none" d="M11 23h33v21h-33zM11.2 38l7.1-6.2 10 12.2M27.2 42.5l7-6.2 10.1 7.7"></path>
            <circle fill="#fff" cx="38" cy="29.3" r="3.3"></circle>
            <path stroke="#fff" stroke-width="2" stroke-miterlimit="10" fill="none" d="M17 20v-3h33v21h-3"></path>
        </symbol>
        <symbol id="icon-edito" viewbox="0 0 60 60">
            <title>
                edito
            </title>
            <g fill="#fff">
                <path d="M10.2 23h6.5v2.7h-3.7v2.6h3.5v2.6h-3.5v3.1h3.7v2.7h-6.5v-13.7zM18.5 23h3.9c3.1 0 4.1 1.2 4.1 4.5v4.6c0 3.3-1 4.5-4.1 4.5h-3.9v-13.6zm2.8 2.6v8.5h1.1c.9 0 1.3-.4 1.3-2.2v-4c0-1.8-.4-2.2-1.3-2.2h-1.1zM28.4 23h2.9v13.7h-2.9v-13.7zM37.5 25.9v10.8h-2.9v-10.8h-2v-2.9h6.9v2.9h-2zM45.1 36.8c-2.9 0-4.1-1.2-4.1-4.4v-5.2c0-3 1.2-4.3 4.1-4.3 2.9 0 4.1 1.3 4.1 4.3v5.2c0 3.1-1.3 4.4-4.1 4.4zm-.1-11.2c-.9 0-1.3.4-1.3 2v4.5c0 1.6.4 2 1.3 2s1.3-.4 1.3-2v-4.5c0-1.6-.4-2-1.3-2z"></path>
            </g>
            <path fill="#fff" d="M11.7 21l2.2-3h2.3l-2.7 3z"></path>
        </symbol>
        <symbol id="icon-election-2017" viewbox="0 0 60 60">
            <title>
                election-2017
            </title>
            <g fill="#fff">
                <path d="M17.1 49.4c3.9-4.7 4-4.7 4-5.5v-.3c0-.7-.2-1-.9-1-.6 0-.9.3-.9 1.2v.5h-2.3v-.6c0-2.1.9-3 3.2-3 2.2 0 3.1.7 3.1 2.6v.3c0 1.2-.2 1.5-3.4 5.7h3.3v2h-6.2v-1.9zM28 51.4c-2.3 0-3.2-.9-3.2-3.4v-4c0-2.3.9-3.3 3.2-3.3 2.3 0 3.2 1 3.2 3.3v4c0 2.4-1 3.4-3.2 3.4zm0-8.7c-.7 0-1 .3-1 1.5v3.5c0 1.2.3 1.5 1 1.5s1-.3 1-1.5v-3.5c0-1.2-.3-1.5-1-1.5zM33.8 51.3v-8l-1.3.6v-2.1l2.3-1.1h1.2v10.6h-2.2zM38.4 51.3c.3-4.1 1.7-6.5 2.9-8.6h-3.8v-2h6.2v1.6c-1.5 2.7-2.6 4.9-2.9 9h-2.4z"></path>
            </g>
            <path stroke="#fff" stroke-width="2" stroke-miterlimit="10" fill="none" d="M24 13h-10v12h32v-12h-6"></path>
            <path stroke="#fff" stroke-width="2" stroke-miterlimit="10" fill="none" d="M14 25h32v9h-32z"></path>
            <path fill="#fff" d="M32 21l7-7-7-7-10 10 4 4z"></path>
        </symbol>
        <symbol id="icon-election" viewbox="0 0 60 60">
            <title>
                election
            </title>
            <path stroke="#fff" stroke-width="2" stroke-miterlimit="10" fill="none" d="M20.9 21h-7v12h32v-12h-5"></path>
            <path stroke="#fff" stroke-width="2" stroke-miterlimit="10" fill="none" d="M13.9 33h32v10h-32z"></path>
            <path fill="#fff" d="M31.1 29l8.6-7.4-7.4-8.6-12.3 11.1 4.1 4.9z"></path>
        </symbol>
        <symbol id="icon-essentiel" viewbox="0 0 60 60">
            <title>
                essentiel
            </title>
            <g stroke="#fff" stroke-width="2" stroke-miterlimit="10" fill="none">
                <path d="M19 24h-2.5c-3.9 0-6.8 3.1-6.8 7s3 7 6.8 7h26.3c3.9 0 6.8-3.1 6.8-7s-3-7-6.8-7h-18.8M28.2 28.4l-4.4-4.4 4.4-4.4"></path>
            </g>
        </symbol>
        <symbol id="icon-generique" viewbox="0 0 60 60">
            <title>
                generique
            </title>
            <path fill="#fff" d="M12 30l18-6.6 18 6.6-18 6.6-18-6.6"></path>
        </symbol>
        <symbol id="icon-idee" viewbox="0 0 60 60">
            <title>
                idee
            </title>
            <path stroke="#fff" stroke-width="2" stroke-linecap="round" stroke-miterlimit="10" d="M41.5 35c-1.8 3.2-6 2.5-5.7 7.3M38.4 46.9c5-3.4-.5-7.9 3.1-11.9M39.4 30.9c2.6-2.9 8.1-1.3 7.3 3.6M31 31.9c0 .9.3 5 5.3 2.2M31 31.9c0-2.3 3.5-2.6 5.7-5.3" fill="none"></path>
            <path stroke="#fff" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="M24.6 13c-2.8 1.4-3.9 3.7-3 6" fill="none"></path>
            <path stroke="#fff" stroke-width="2" stroke-miterlimit="10" d="M31 45.3c0 5.6 16 2.6 16-14.4 0-16.9-16-23.3-16-15.5v29.9zM31 45.3c0 5.6-16 2.6-16-14.4 0-16.9 16-23.3 16-15.5v29.9z" fill="none"></path>
            <path stroke="#fff" stroke-width="2" stroke-linecap="round" stroke-miterlimit="10" d="M20.2 35.2c5.3-1.3 4.3 3 10.8 3M20.7 35.1c3.9-.7 3.9-1.5 6.5-2M15.6 25.4c-.6 3.5 2.4 5.3 4.4 4.9 2-.4 3.5-1.1 4.6-1.1" fill="none"></path>
            <path stroke="#fff" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="M28.3 25.1c-2.6-1.9-2.8-5.3-1.5-7.8M31 31.1c0-5.1-5-9.8-10-6.3" fill="none"></path>
            <path stroke="#fff" stroke-width="2" stroke-linecap="round" stroke-miterlimit="10" d="M21.9 40c3.1 1.4 2.8 2.7 5.6 3.7" fill="none"></path>
            <g stroke="#fff" stroke-width="2" stroke-linecap="round" stroke-miterlimit="10" fill="none">
                <path d="M36.1 22.4c-.3-1.8.9-3.1 2.5-3.4M35.9 17.3c-.4 2 .1 3.8.2 5.2"></path>
            </g>
            <path stroke="#fff" stroke-width="2" stroke-linecap="round" stroke-miterlimit="10" d="M44.7 30c-2.2-1.4-4.2-3.4-3.9-6.3" fill="none"></path>
        </symbol>
        <symbol id="icon-jo" viewbox="0 0 60 60">
            <title>
                jo
            </title>
            <g stroke="#fff" stroke-width="2" stroke-miterlimit="10" fill="none">
                <circle cx="44.9" cy="28.1" r="6.1"></circle>
                <circle cx="37.6" cy="33.9" r="6.1"></circle>
                <circle cx="23" cy="33.9" r="6.1"></circle>
                <circle cx="30.3" cy="28.1" r="6.1"></circle>
                <circle cx="15.7" cy="28.1" r="6.1"></circle>
            </g>
        </symbol>
        <symbol id="icon-next" viewbox="0 0 60 60">
            <title>
                next
            </title>
            <g fill="#fff">
                <path d="M15.4 29.6v7.1h-2.6v-13.7h2.5l2.9 7.1v-7.1h2.6v13.7h-2.5l-2.9-7.1zM22.6 23h6.5v2.7h-3.7v2.6h3.5v2.6h-3.5v3.1h3.7v2.7h-6.5v-13.7zM30.9 23h3l1 5.9 1-5.9h3l-1.6 6.8 1.6 6.8h-3l-1.1-6-1.1 6h-3l1.6-6.8-1.4-6.8zM44.9 25.9v10.8h-2.9v-10.8h-2v-2.9h6.9v2.9h-2z"></path>
            </g>
        </symbol>
        <symbol id="icon-portrait" viewbox="0 0 60 60">
            <title>
                portrait
            </title>
            <path stroke="#fff" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="M46 30c0-2.4 2-1.7 2-4s-2-1.7-2-4v-7c1-.5 1.8-3.2 0-5s-5.2-1.2-6.1.7c-2.3.4-2.3-1.5-4.7-1.5s-2.9 1.8-5.2 1.8-2.9-1.8-5.2-1.8-2.4 1.9-4.7 1.5c-.9-1.9-4.3-2.5-6.1-.7s-1.2 4.5 0 5v7l-2 4s2 1.6 2 4-2 1.7-2 3.9 2 1.7 2 4v7c-1 .5-1.8 3.2 0 5s5.2 1.2 6.1-.7c2.3-.4 2.3 1.5 4.7 1.5s2.9-1.8 5.2-1.8 2.9 1.8 5.2 1.8 2.4-1.9 4.7-1.5c.9 1.9 4.3 2.5 6.1.7s1.2-4.5 0-5v-7l2-4s-2-1.5-2-3.9z" fill="none"></path>
            <g stroke="#fff" stroke-width="2" stroke-miterlimit="10" fill="none">
                <path d="M28 24v8h3M22 25h6M32 25h5M24 36c1.8 1.3 3.5 2 6 2 2.3 0 3.3-.9 5-2"></path>
            </g>
            <path stroke="#fff" stroke-width="2" stroke-miterlimit="10" fill="none" d="M18 15h24v30h-24z"></path>
        </symbol>
        <symbol id="icon-radio" viewbox="0 0 60 60">
            <title>
                radio
            </title>
            <g stroke="#fff" stroke-width="2" stroke-miterlimit="10" fill="none">
                <path d="M20 22h30v20h-30z"></path>
                <path stroke-linecap="round" stroke-linejoin="round" d="M29 15.3l17.9 6.7"></path>
                <circle cx="30" cy="32" r="4.5"></circle>
                <path d="M38 28h7M38 32h7M38 36h7M7 32h5M11.6 23.2l3.6 3.6M15.2 37.2l-3.6 3.6"></path>
            </g>
        </symbol>
        <symbol id="icon-son" viewbox="0 0 60 60">
            <title>
                son
            </title>
            <g stroke="#fff" stroke-width="2" stroke-miterlimit="10" fill="none">
                <path d="M22 26h6v8h-6zM28 34l7 5v-18l-7 5z"></path>
                <circle cx="30" cy="30" r="18"></circle>
            </g>
        </symbol>
        <symbol id="icon-alerte" viewbox="0 0 60 60">
            <title>
                alerte
            </title>
            <path fill="#fff" d="M25.9 42l2.3-10h-5.3l4.8-14h9.6l-6 10h6.6z"></path>
        </symbol>
        <symbol id="icon-top-100" viewbox="0 0 60 60">
            <title>
                top-100
            </title>
            <g fill="#fff">
                <path d="M27.2 36.7v-10.4l-1.7.8v-2.7l3-1.4h1.6v13.7h-2.9zM36.4 36.8c-2.9 0-4.1-1.2-4.1-4.4v-5.2c0-3 1.2-4.3 4.1-4.3 2.9 0 4.1 1.3 4.1 4.3v5.2c0 3.1-1.2 4.4-4.1 4.4zm0-11.2c-.9 0-1.3.4-1.3 2v4.6c0 1.6.4 2 1.3 2s1.3-.4 1.3-2v-4.6c0-1.6-.4-2-1.3-2zM46.4 36.8c-2.9 0-4.1-1.2-4.1-4.4v-5.2c0-3 1.2-4.3 4.1-4.3 2.9 0 4.1 1.3 4.1 4.3v5.2c.1 3.1-1.2 4.4-4.1 4.4zm0-11.2c-.9 0-1.3.4-1.3 2v4.6c0 1.6.4 2 1.3 2s1.3-.4 1.3-2v-4.6c0-1.6-.4-2-1.3-2z"></path>
            </g>
            <path fill="#fff" d="M22 31l-7-8-7 8h3v5h8v-5z"></path>
        </symbol>
        <symbol id="icon-star" viewbox="0 0 20 20">
            <title>
                star
            </title>
            <path d="M10 2.3l1.9 5.9h6.2l-5 3.6 1.9 5.9-5-3.6-5 3.6 1.9-5.9-5-3.6h6.2z"></path>
        </symbol>
        <symbol id="icon-une" viewbox="0 0 60 60">
            <title>
                une
            </title>
            <path fill="#fff" d="M23.5 16.5l6.5-2.5 6.5 2.5-6.5 2.5z"></path>
            <path stroke="#fff" stroke-width="2" stroke-miterlimit="10" fill="none" d="M15 10h30v40h-30zM21 24h18v12h-18zM20 40h9M20 44h9M31 40h9M31 44h9"></path>
        </symbol>
        <symbol id="icon-video" viewbox="0 0 60 60">
            <title>
                video
            </title>
            <path fill="#fff" d="M37.4 30l-11.4-7.9v15.8z"></path>
            <circle stroke="#fff" stroke-width="2" stroke-miterlimit="10" cx="30.2" cy="30" r="18" fill="none"></circle>
        </symbol>
        <symbol id="icon-scroll" viewbox="0 0 16 26">
            <title>
                scroll
            </title>
            <path stroke="#282828" stroke-width="2" stroke-miterlimit="10" d="M8 24.5c-3.6 0-6.5-2.9-6.5-6.5v-10c0-3.6 2.9-6.5 6.5-6.5s6.5 2.9 6.5 6.5v10c0 3.6-2.9 6.5-6.5 6.5z" fill="none"></path>
            <circle fill="#2D2D2D" cx="8" cy="6.9" r="1.5"></circle>
        </symbol>
        <symbol id="icon-politiques" viewbox="0 0 60 60">
            <title>
                politiques
            </title>
            <g transform="translate(0.2,-104.59999)">
                <rect style="fill:none;stroke-width:0.36275697" height="60" width="60" y="104.59999" x="-0.2"></rect>
                <g transform="matrix(0.36275697,0,0,0.36275697,-0.12744861,104.8902)">
                    <path style="fill:#ffffff" d="m 93.2,64.4 c -4.1,0 -9.4,-4.5 -10.5,-5.5 L 81.8,58.1 82.2,48 c -2.9,-3.7 -4.6,-8.2 -4.6,-12.7 0,-10.2 7,-18.5 15.5,-18.5 8.5,0 15.5,8.3 15.5,18.5 0,4.5 -1.7,9 -4.6,12.7 l 0.4,10.1 -0.9,0.8 c -0.9,0.9 -6.2,5.5 -10.3,5.5 z m -6.3,-8.5 c 2.1,1.6 4.9,3.5 6.3,3.5 1.3,0 4.2,-1.8 6.2,-3.5 L 99,46.3 99.7,45.5 c 2.5,-2.9 4,-6.6 4,-10.2 0,-7.5 -4.7,-13.5 -10.5,-13.5 -5.8,0 -10.5,6.1 -10.5,13.5 0,3.6 1.5,7.3 4,10.2 l 0.7,0.8 z"></path>
                    <path style="fill:#ffffff" d="m 104.4,59 c 4.6,1.2 10.7,2.9 13.1,3.7 l 0.2,0.1 c 1,0.3 2.3,0.8 2.6,1.1 0.1,0.1 0.7,0.9 0.9,4.3 0.3,5.6 1.3,21.7 1.8,30.2 H 98.1 L 104.4,59 M 82,59 88.1,98.3 H 63.5 C 64,89.9 65,73.8 65.3,68.1 c 0.2,-3.5 0.8,-4.2 0.9,-4.3 0.2,-0.3 1.5,-0.7 2.6,-1.1 L 69,62.6 C 71.3,62 77.4,60.3 82,59 m 18.3,-6.2 -7.2,45.4 -7,-45.4 c 0,0 -14.7,3.9 -18.8,5.3 -4.1,1.4 -6.5,2.1 -7,9.9 -0.5,7.8 -2.1,35.5 -2.1,35.5 h 34.9 35.1 c 0,0 -1.7,-27.7 -2.1,-35.5 -0.5,-7.8 -2.8,-8.5 -7,-9.9 -4.1,-1.5 -18.8,-5.3 -18.8,-5.3 z"></path>
                    <path style="fill:#ffffff" d="M 126.8,144 H 35.2 V 114.5 L 20.8,98.8 h 120.8 l -14.8,15.8 z m -86.6,-5 h 81.6 v -26.5 l 8.2,-8.8 H 32.1 l 8.1,8.8 z"></path>
                    <rect style="fill:#ffffff" height="20.6" width="5" y="80.699997" x="27"></rect>
                    <path style="fill:#ffffff" d="m 21.6,88.3 c -0.7,0 -1.4,-0.3 -1.9,-1 -0.7,-1 -0.4,-2.4 0.6,-3.1 L 36.7,73 c 1,-0.7 2.4,-0.4 3.1,0.6 0.7,1 0.4,2.4 -0.6,3.1 L 22.9,87.9 c -0.4,0.2 -0.8,0.4 -1.3,0.4 z"></path>
                    <circle style="fill:#ffffff" r="6.0999999" cy="73.199997" cx="40.599998"></circle>
                </g>
            </g>
        </symbol>
        <symbol id="icon-food" viewbox="0 0 60 60">
            <title>
                food
            </title>
            <g transform="matrix(0.3,0,0,0.3,0.003,0)">
                <polyline style="fill:none" points="-0.01 200 -0.01 0 199.99 0 199.99 200"></polyline>
                <path style="fill:#ffffff" d="M 68.55,79.13 25.61,37.31 21.05,42 l 38,37.14 H 41 v 3.26 c 0,48.1 18.31,63.11 24.64,66.86 v 11.6 h 69.57 v -11.58 c 6.39,-3.69 24.64,-18.5 24.64,-66.88 v -3.27 z m 62.25,65.07 -2.13,0.79 v 9.32 H 72.19 v -7 -2.21 l -2,-0.83 C 69.97,144.18 48.55,134.81 47.64,85.71 h 105.7 c -0.97,49.4 -22.34,58.41 -22.54,58.49 z"></path>
                <path style="fill:#ffffff" d="m 103,69.23 a 3.65,3.65 0 0 1 -3.09,-0.44 2.7,2.7 0 0 1 -0.62,-4.11 c 5.23,-6 2.82,-10.12 -0.51,-15.78 -3,-5.12 -6.76,-11.49 -2.85,-19.5 a 3.53,3.53 0 0 1 4.39,-1.56 2.82,2.82 0 0 1 1.75,3.86 c -2.67,5.45 -0.21,9.63 2.64,14.47 3.43,5.82 7.69,13.06 -0.12,22.06 a 3.38,3.38 0 0 1 -1.59,1"></path>
                <path style="fill:#ffffff" d="m 120.73,69.21 a 3.38,3.38 0 0 0 1.53,-1.09 c 4.25,-5.5 5.18,-11.25 1.23,-17.57 -2.7,-4.31 -1.75,-6.21 -1.27,-8.39 0.48,-2.18 -0.23,-3.21 -2,-3.75 a 3.54,3.54 0 0 0 -4.3,1.8 c 0,0 -2.34,4.62 -0.6,8.93 0.93,2.29 2.48,4 3.22,5.85 1.23,3 1.23,5.93 -1.82,9.88 a 2.71,2.71 0 0 0 0.85,4.08 3.72,3.72 0 0 0 3.12,0.26"></path>
                <path style="fill:#ffffff" d="m 86.72,69 a 3.39,3.39 0 0 0 1.41,-1.24 c 3.69,-5.91 4,-11.72 -0.52,-17.61 -3.11,-4 -2.36,-6 -2.1,-8.22 0.26,-2.22 -0.55,-3.17 -2.33,-3.54 a 3.54,3.54 0 0 0 -4.09,2.22 c 0,0 -1.88,4.84 0.29,9 1.15,2.18 2.87,3.75 3.79,5.49 1.53,2.91 1.81,5.79 -0.83,10 a 2.71,2.71 0 0 0 1.25,4 3.72,3.72 0 0 0 3.13,0"></path>
            </g>
        </symbol>
        <symbol id="icon-sciences" viewbox="0 0 60 60">
            <title>
                sciences
            </title>
            <g transform="matrix(3.7795275,0,0,3.7795275,982.69996,-913.79113)">
                <g transform="matrix(0.09597945,0,0,0.09597945,-259.98684,241.89388)">
                    <path style="fill:#ffffff" d="m 74.33,34.86 a 6.49,6.49 0 1 1 6.48,-6.48 6.49,6.49 0 0 1 -6.48,6.48 z m 0,-9 a 2.49,2.49 0 1 0 2.48,2.49 2.49,2.49 0 0 0 -2.48,-2.46 z"></path>
                    <path style="fill:#ffffff" d="m 91.51,25.46 a 7.91,7.91 0 1 1 7.91,-7.91 7.92,7.92 0 0 1 -7.91,7.91 z m 0,-11.82 a 3.91,3.91 0 1 0 3.91,3.91 3.91,3.91 0 0 0 -3.91,-3.91 z"></path>
                    <path style="fill:#ffffff" d="M 125.5,134.07 97.2,71.41 V 48.88 c 4,-2.44 3.57,-4.47 3.41,-5.19 -0.69,-2.95 -4.52,-2.95 -6.15,-2.95 H 70.33 c -1.84,0 -5.66,0 -6.33,3 -0.41,1.86 0.76,3.57 3.59,5.19 v 22.5 l -28,62.41 -0.1,0.24 c -1.38,4.1 -1.26,7.19 0.37,9.46 2.63,3.63 7.91,3.62 13.52,3.61 h 59.27 c 5.2,0 10,-0.2 12.47,-3.61 1.64,-2.28 1.76,-5.37 0.38,-9.47 z M 72.89,72.55 V 46 h 19 v 6.07 h -8.8 v 4 h 8.81 v 4.57 h -8.81 v 4 h 8.81 v 4.58 h -8.81 v 4 h 9.13 l 15.48,34.25 H 57.21 Z m 47.94,67.88 c -1,1.43 -5.56,1.42 -9.2,1.41 H 53.37 c -3.63,0 -8.16,0 -9.2,-1.41 -0.51,-0.72 -0.4,-2.38 0.32,-4.55 l 10.34,-23.07 h 55.26 l 10.42,23.07 c 0.72,2.17 0.83,3.83 0.32,4.55 z"></path>
                </g>
            </g>
        </symbol><!-- SOCIAL ICON -->
        <symbol id="icon-facebook" viewbox="0 0 20 20">
            <title>
                Facebook
            </title>
            <path d="M5.7 7h1.8v-1.8000000000000003c0-.8 0-2 .6-2.8.6-.7 1.5-1.3 2.9-1.3 2.3 0 3.3.3 3.3.3l-.5 2.7s-.8-.2-1.5-.2-1.3.3-1.3 1v2.1h2.9l-.2 2.7h-2.7v9.2h-3.5v-9.2h-1.8v-2.7z"></path>
        </symbol>
        <symbol id="icon-whatsapp" viewbox="15 15 80.000000 80.000000">
            <title>
                Whatsapp
            </title>
            <g transform="matrix(1.25 0 0 -1.25 0 109.553)">
                <path d="M58.113 37.793c-.752.412-4.45 2.407-5.143 2.69-.693.28-1.2.428-1.738-.32-.54-.747-2.074-2.418-2.54-2.913-.466-.495-.915-.54-1.667-.128-.752.41-3.192 1.314-6.02 4.033-2.202 2.116-3.646 4.683-4.065 5.467-.42.783-.003 1.183.395 1.55.358.33.8.867 1.2 1.3.4.433.54.747.814 1.25.272.5.16.953-.016 1.343-.178.39-1.57 4.22-2.15 5.777-.58 1.557-1.23 1.326-1.676 1.343-.448.017-.957.1-1.468.12-.51.018-1.348-.142-2.08-.884-.73-.736-2.78-2.516-2.92-6.29-.14-3.77 2.467-7.514 2.83-8.04.365-.524 4.983-8.7 12.658-12.06 7.677-3.36 7.716-2.335 9.125-2.26 1.41.075 4.604 1.685 5.31 3.45.706 1.764.763 3.3.583 3.626-.18.326-.684.538-1.435.95m-14.075-18.17a24.858 24.858 0 0 0-13.75 4.13l-9.604-3.073 3.123 9.28a24.86 24.86 0 0 0-4.76 14.654c0 13.782 11.212 24.993 24.992 24.993 13.78 0 24.992-11.21 24.992-24.994 0-13.78-11.213-24.99-24.994-24.99m0 55.012c-16.58 0-30.02-13.44-30.02-30.022a29.893 29.893 0 0 1 4.307-15.502L12.9 13.008l16.623 5.32a29.897 29.897 0 0 1 14.51-3.733c16.58 0 30.022 13.442 30.022 30.02 0 16.582-13.443 30.023-30.023 30.023" fill-rule="evenodd"></path>
            </g>
        </symbol>
        <symbol id="icon-twitter" viewbox="0 0 20 20">
            <title>
                Twitter
            </title>
            <path d="M19.5 4.1c-.7.3-1.5.5-2.2.6.8-.5 1.4-1.2 1.7-2.2-.8.4-1.6.8-2.5.9-.7-.8-1.7-1.2-2.8-1.2-2.2 0-3.9 1.7-3.9 3.9 0 .3 0 .6.1.9-3.3-.1-6.2-1.7-8.1-4-.3.6-.5 1.2-.5 2 0 1.3.7 2.5 1.7 3.2-.6 0-1.2-.2-1.7-.5 0 1.9 1.3 3.5 3.1 3.8-.3.1-.7.1-1 .1-.3 0-.5 0-.7-.1.5 1.5 1.9 2.7 3.6 2.7-1.3 1-3 1.7-4.8 1.7-.3 0-.6 0-.9-.1 1.7 1.1 3.8 1.8 6 1.8 7.2 0 11.1-5.9 11.1-11.1v-.5c.6-.4 1.3-1.1 1.8-1.9"></path>
        </symbol>
        <symbol id="icon-insta" viewbox="0 0 20 20">
            <title>
                insta
            </title>
            <path d="M14.6 2.5h-9.2c-1.6 0-2.9 1.3-2.9 2.9v9.3c0 1.6 1.3 2.9 2.9 2.9h9.3c1.6 0 2.9-1.3 2.9-2.9v-9.3c-.1-1.6-1.4-2.9-3-2.9zm.9 1.7h.3v2.5h-2.5v-2.6l2.2.1zm-7.7 4.3c.5-.7 1.3-1.2 2.2-1.2.9 0 1.7.4 2.2 1.1.3.4.5 1 .5 1.5 0 1.5-1.2 2.7-2.7 2.7s-2.7-1.1-2.7-2.6c0-.6.2-1.1.5-1.5zm8.3 6.1c0 .8-.6 1.4-1.4 1.4h-9.3c-.8 0-1.4-.6-1.4-1.4v-6.1h2.3c-.3.4-.4 1-.4 1.5 0 2.3 1.9 4.1 4.1 4.1 2.3 0 4.1-1.9 4.1-4.1 0-.5-.1-1.1-.3-1.5h2.3v6.1z"></path>
        </symbol>
        <symbol id="icon-vine" viewbox="0 0 20 20">
            <title>
                vine
            </title>
            <path d="M17 10c-.4.1-.8.1-1.2.1-2 0-3.6-1.4-3.6-3.9 0-1.2.5-1.8 1.1-1.8.6 0 1 .6 1 1.7 0 .6-.2 1.4-.3 1.8 0 0 .6 1.1 2.3.8.5-.9.7-1.9.7-2.8 0-2.5-1.2-3.9-3.5-3.9-2.4 0-3.7 1.8-3.7 4.2 0 2.4 1.1 4.4 2.9 5.3-.8 1.5-1.7 2.9-2.8 3.9-1.8-2.2-3.5-5.2-4.2-11h-2.7c1.3 9.7 5 12.8 6 13.4.6.3 1 .3 1.6 0 .8-.5 3.2-2.9 4.6-5.7.6 0 1.2-.1 1.9-.2v-1.9z"></path>
        </symbol>
        <symbol id="icon-later" viewbox="0 0 16 22">
            <title>
                later
            </title>
            <path d="M13.5 4.5h-11c0 3.4 2.1 6 5.5 6s5.5-2.6 5.5-6m-3.5 3h-4c-.7 0-1.2-.8-2-2h8c-.8 1.1-1.4 2-2 2"></path>
            <path d="M.5 18.5h15v2h-15zM.5 1.5h15v2h-15zM2.5 17.5h11c0-3.4-2.1-6-5.5-6s-5.5 2.6-5.5 6m5.5-5c1.5 0 2.2.8 3 2h-6c.8-1.2 1.5-2 3-2"></path>
            <path d="M9 10.5h-2v1h2z"></path>
        </symbol>
        <symbol id="icon-glass" viewbox="0 0 37 22">
            <title>
                glass
            </title>
            <path d="M27.8 4.5c-3.5 0-6.6 2-8.9 2-2.3 0-5.7-2-9.2-2s-4.2.2-9.2 1v1s2.3.1 2.3 4c0 3.5 3.5 7 7.1 7 3.6 0 7-2.5 7-5.9 0-3.4 2.1-3.1 2.1-3.1s2-.2 2 3c0 4.3 3.4 6 7 6s6.7-3.6 6.7-7.1c0-3.7 1.8-3.9 1.8-3.9v-1c-5-.8-5.2-1-8.7-1m-17.8 11c-2.9 0-5-1.8-5-4 0-2.8.5-3.5 1-4s2-1 4-1c1.8 0 3.5.7 4 1 1 .7 1 2.9 1 4 0 2.2-2.1 4-5 4m18 0c-2.9 0-5-1.8-5-4 0-1.1 0-3.3 1-4 .5-.3 2.2-1 4-1 2 0 3.5.5 4 1s1 1.2 1 4c0 2.2-2.1 4-5 4M9.5 8v1.5c2 0 2.5 1 2.5 2h1.5c0-3-1-3.5-4-3.5M27.5 8v1.5c2 0 2.5 1 2.5 2h1.5c0-3.1-1-3.5-4-3.5"></path>
        </symbol>
        <symbol id="icon-mail" viewbox="0 0 21 22">
            <title>
                Mail
            </title>
            <path d="M14.5 11.5l-4 3-4-3-6 6h20zM.5 6.5v9l5-5zM20.5 15.5v-9l-5 4zM20.5 4.5h-20l10 8z"></path>
        </symbol>
        <symbol id="icon-print" viewbox="0 0 27 22">
            <title>
                print
            </title>
            <path d="M23 6h-19c-1.6 0-3 1.3-3 3v4c0 1.7 1.4 3 3 3h2v-5h15v5h2c1.6 0 3-1.3 3-3v-4c0-1.7-1.4-3-3-3m1 4h-2v-2h2v2zM8 0h11v5h-11zM8 22h11v-10h-11v10zm9-3h-3v-1h3v1zm-6-4h6v1h-6v-1z"></path>
        </symbol>
        <symbol id="icon-losange-facebook" viewbox="0 0 116 43">
            <title>
                Facebook
            </title>
            <path d="M58 .6l-57.3 20.8 57.3 21 57.3-21-57.3-20.8zm1.7 20.9v8h-4v-8h-1v-3h1v-1.5c0-1.3.8-3.3 3.4-3.3h2.6v2.8h-1.8c-.3 0-.2 0-.2.6v1.4h1.9l-.3 3h-1.6z"></path>
        </symbol>
        <symbol id="icon-losange-insta" viewbox="0 0 116 43">
            <title>
                Instagram
            </title>
            <path d="M62.8 21.4c0 2.6-2.1 4.8-4.8 4.8-2.6 0-4.8-2.2-4.8-4.8 0-.6.1-.9.3-1.9h-3.1v7.3c0 .9 1.2 1.7 2.2 1.7h10.7c.9 0 2.2-.7 2.2-1.7v-7.3h-3.1c.2 1 .4 1.3.4 1.9zM58 24.6c1.7 0 3.1-1.4 3.1-3.1 0-.7-.2-1.3-.6-1.8-.6-.8-1.5-1.3-2.5-1.3s-1.9.5-2.5 1.3c-.4.5-.6 1.1-.6 1.8 0 1.7 1.4 3.1 3.1 3.1zM64.5 17.8v-3h-2.8l-.1 3zM58 .6l-57.3 20.8 57.3 21 57.3-21-57.3-20.8zm8.5 26.2c0 1.9-1.3 3.7-3.2 3.7h-10.6c-1.9 0-3.2-1.8-3.2-3.7v-10.6c0-1.9 1.3-3.7 3.2-3.7h10.7c1.9 0 3.2 1.8 3.2 3.7v10.6z"></path>
        </symbol>
        <symbol id="icon-losange-twitter" viewbox="0 0 116 43">
            <title>
                Twitter
            </title>
            <path d="M58 .6l-57.3 20.8 57.3 21 57.3-21-57.3-20.8zm6.5 18c0 4.4-3.4 9.6-9.6 9.6-1.9 0-3.7-.6-5.2-1.5h.8c1.6 0 3-.5 4.2-1.4-1.5 0-2.7-1-3.1-2.3l.6.1c.3 0 .5 0 .7-.1-1.5-.3-2.8-1.7-2.8-3.3 0 .3 1.1.4 1.7.4-.9-.6-1.4-1.6-1.4-2.8 0-.6.2-1.2.5-1.7 1.7 2 4.2 3.4 7 3.5-.1-.2-.1-.5-.1-.8 0-1.9 1.5-3.4 3.4-3.4 1 0 1.8.4 2.5 1.1.8-.2 1.5-.4 2.1-.8-.3.8-.8 1.4-1.5 1.9.7-.1 1.3-.3 1.9-.5-.5.7-1 1.3-1.7 1.7v.3z"></path>
        </symbol><!-- READER -->
        <symbol id="icon-reader-calendar" viewbox="0 0 31 40">
            <title>
                Calendar
            </title>
            <path d="M1 7v26h29v-26h-29zm2 8h7v7h-7v-7zm9 0h7v7h-7v-7zm-9 16v-7h7v7h-7zm9 0v-7h7v7h-7zm16 0h-7v-7h7v7zm0-9h-7v-7h7v7zm-7-9h-18v-4h25v4h-7z"></path>
        </symbol>
        <symbol id="icon-reader-download" viewbox="0 0 29 40">
            <title>
                download
            </title>
            <path d="M10 19.9l5.2 5.2 5.1-5.2-1.4-1.4-2.9 2.7v-19.2h-2v19l-2.6-2.5zM18 8v2h8v21h-23v-21h9v-2h-11v25h27v-25z"></path>
        </symbol>
        <symbol id="icon-reader-cross" viewbox="0 0 40 45">
            <title>
                cross
            </title>
            <path stroke-miterlimit="10" fill="none" d="M35.2 7.3l-30.4 30.4M35.2 37.7l-30.4-30.4"></path>
        </symbol>
        <symbol id="icon-reader-zoom-in" viewbox="0 0 43 45">
            <title>
                zoom-in
            </title>
            <g stroke="#fff" stroke-miterlimit="10" fill="none">
                <circle stroke-width="1.2" cx="21.5" cy="22.5" r="20"></circle>
                <path stroke-linecap="round" d="M22.1 16.1v14M29.6 22.6h-15"></path>
            </g>
        </symbol>
        <symbol id="icon-reader-zoom-out" viewbox="0 0 43 45">
            <title>
                zoom-out
            </title>
            <g stroke="#fff" stroke-miterlimit="10" fill="none">
                <circle stroke-width="1.2" cx="21.5" cy="22.5" r="20"></circle>
                <path stroke-linecap="round" d="M29.6 22.6h-15"></path>
            </g>
        </symbol><!-- READER -->
        <symbol id="icon-viewer-previous" viewbox="0 0 20.7 40.8">
            <title>
                previous
            </title>
            <path fill="#878787" d="M.4.4l20 20"></path>
            <path stroke="#fff" stroke-miterlimit="10" d="M.4.4l20 20" fill="none"></path>
            <path fill="#878787" d="M20.4 20.4l-20 20"></path>
            <path stroke="#fff" stroke-miterlimit="10" d="M20.4 20.4l-20 20" fill="none"></path>
        </symbol>
        <symbol id="icon-viewer-next" viewbox="0 0 20.7 40.8">
            <title>
                next
            </title>
            <path fill="#878787" d="M20.4 40.4l-20-20"></path>
            <path stroke="#fff" stroke-miterlimit="10" d="M20.4 40.4l-20-20" fill="none"></path>
            <path fill="#878787" d="M.4 20.4l20-20"></path>
            <path stroke="#fff" stroke-miterlimit="10" d="M.4 20.4l20-20" fill="none"></path>
        </symbol><!-- EBOOK -->
        <symbol id="icon-truck" viewbox="0 0 29 21">
            <title>
                truck
            </title>
            <g stroke="#000" stroke-miterlimit="10" fill="none">
                <circle stroke-width="2" stroke-linecap="round" cx="6.6" cy="16.3" r="2.8"></circle>
                <path stroke-width="1.5" stroke-linejoin="round" d="M24.1 7.3l-2.1-5.6h-20.3v14h2.2c.3-1.2 1.4-2.1 2.7-2.1s2.4.9 2.7 2.1h10c.3-1.2 1.4-2.1 2.7-2.1 1.3 0 2.4.9 2.7 2.1h2.5v-6.3l-3.1-2.1z"></path>
                <circle stroke-width="2" stroke-linecap="round" cx="22" cy="16.3" r="2.8"></circle>
                <path stroke-width="2" stroke-linejoin="round" d="M26.2 8.7h-10v-4h7"></path>
            </g>
        </symbol>
        <symbol id="icon-visa" viewbox="0 0 27 20">
            <title>
                visa
            </title>
            <g fill-rule="evenodd" clip-rule="evenodd">
                <path fill="#F6A90F" d="M2.8 17.9c5.1-2.2 12.3-4.2 21.8-2.2l.1-2.4c-10-1.1-17.2 2.1-21.9 4.4v.2z"></path>
                <path fill="#005495" d="M8.1 11.6l2.3-7.3h1.9l-2.2 7.3zM7.3 4.3l-1.8 3.1c-.5.8-.7 1.2-.9 1.7 0-.6-.1-1.4-.1-1.9l-.2-2.9h-3.3v.2c.9 0 1.4.4 1.5 1.3l.6 5.8h2l4.1-7.3h-1.9zM22.6 11.6l-.1-1.1h-2.5l-.5 1.1h-2.1l3.9-7.3h2.7l.7 7.3h-2.1zm-.2-4.4v-1.7c-.1.4-.6 1.5-.9 2l-.7 1.6h1.7l-.1-1.9zM14.4 11.8c-1.4 0-2.3-.4-3-.8l.9-1.4c.6.3 1.1.7 2.1.7.3 0 .7-.1.9-.4.3-.5-.1-.7-.8-1.2l-.4-.2c-1.1-.9-1.6-1.7-1.1-2.9.3-.8 1.3-1.5 2.8-1.5 1 0 2 .4 2.6.9l-1.1 1.3c-.6-.4-1-.7-1.5-.7-.4 0-.7.2-.8.4-.3.4 0 .6.6 1l.4.3c1.4.9 1.7 1.8 1.4 2.7-.6 1.4-1.8 1.8-3 1.8M25.2 5.4h-.2v-.8h.3c.2 0 .3.1.3.2 0 .2-.1.2-.2.2l.2.3h-.1l-.2-.3h-.1v.4zm.1-.5c.1 0 .2 0 .2-.1s-.1-.1-.2-.1h-.2v.2h.2zm0 .8c-.4 0-.7-.3-.7-.7 0-.4.3-.7.7-.7.4 0 .7.2.7.7 0 .4-.3.7-.7.7m0-1.3c-.3 0-.6.2-.6.6 0 .3.2.6.6.6.3 0 .5-.2.5-.6.1-.4-.2-.6-.5-.6"></path>
            </g>
        </symbol>
        <symbol id="icon-mastercard" viewbox="0 0 26 20">
            <title>
                mastercard
            </title>
            <path fill-rule="evenodd" clip-rule="evenodd" fill="#F8B31E" d="M18 17.4h1.1l.4-.1.3-.1.4-.1.3-.1.4-.1.3-.2.3-.2.3-.1.3-.2.3-.2.3-.3.3-.2.2-.2.3-.3.2-.3.2-.3.3-.2.2-.3.1-.4.2-.3.1-.3.2-.4.1-.3.1-.4.1-.3v-.4l.1-.4v-1.5l-.1-.3v-.4l-.1-.4-.1-.3-.1-.4-.2-.3-.1-.3-.2-.3-.1-.4-.2-.3-.3-.3-.2-.2-.2-.3-.3-.3-.2-.2-.3-.2-.3-.3-.3-.2-.3-.2-.3-.1-.3-.2-.3-.2-.4-.1-.3-.1-.4-.1-.3-.1-.4-.1h-2.3l-.3.1-.4.1-.3.1-.4.1-.3.1-.3.2-.4.2-.3.1-.3.2-.3.2-.2.3-.3.2-.3.2-.2.3-.3.3-.2.2-.2.3-.2.3-.2.4-.1.3-.2.3-.1.3-.1.4-.1.3-.1.4-.1.4v.7l-.1.4.1.4v.7l.1.4.1.3.1.4.1.3.1.4.2.3.1.3.2.4.2.3.2.2.2.3.3.3.2.3.3.2.3.2.2.3.3.2.3.2.3.1.4.2.3.2.3.1.4.1.3.1.4.1.3.1h.8z"></path>
            <path fill-rule="evenodd" clip-rule="evenodd" fill="#E20520" d="M8 17.4h1.2000000000000002l.3-.1.4-.1.3-.1.4-.1.3-.1.3-.2.4-.2.3-.1.3-.2.3-.2.2-.3.3-.2.3-.2.2-.3.3-.3.2-.3.2-.2.2-.3.2-.4.1-.3.2-.3.1-.4.1-.3.1-.4.1-.3.1-.4v-2.1999999999999997l-.1-.4-.1-.4-.1-.3-.1-.4-.1-.3-.2-.3-.1-.3-.2-.4-.2-.3-.2-.3-.2-.2-.3-.3-.2-.3-.3-.2-.3-.2-.2-.3-.3-.2-.3-.2-.3-.1-.4-.2-.3-.2-.3-.1-.4-.1-.3-.1-.4-.1-.3-.1h-2.3000000000000003l-.4.1-.3.1-.4.1-.3.1-.4.1-.3.2-.3.2-.3.1-.3.2-.3.2-.3.3-.3.2-.2.2-.3.3-.2.3-.3.2-.2.3-.2.3-.1.4-.2.3-.1.3-.2.3-.1.4-.1.3-.1.4v.4l-.1.3v1.5000000000000002l.1.4v.4l.1.3.1.4.1.3.2.4.1.3.2.3.1.4.2.3.2.2.3.3.2.3.3.3.2.2.3.2.3.3.3.2.3.2.3.1.3.2.3.2.4.1.3.1.4.1.3.1.4.1h.7z"></path>
            <path fill-rule="evenodd" clip-rule="evenodd" fill="#F8B31E" d="M11.5 6.3h4.6v-.4h-4.3zM11.1 7.2h5v-.4h-4.8zM10.8 8.1h5.3v-.4h-5.2zM11 12.4h5.1v-.4h-5.3zM11.3 13.3h4.8v-.4h-4.9zM11.9 14.2h4.2v-.4h-4.5zM12.6 15.1h3.5v-.4h-3.8zM10.6 9h5.5v-.4h-5.4zM13.9 11.6h2.1v-.5h-2zM14.1 10.7h1.9v-.5h-1.8zM10.5 10.2h.5v.5h-.5z"></path>
            <path fill-rule="evenodd" clip-rule="evenodd" fill="#fff" d="M9.5 9.8h-.1v-.1h-.7l-.1.1h-.1v.30000000000000004h.1v.1h.2l.1.1h.1l.1.1h.1v.1h.1l.1.1v.7l-.1.1v.1l-.1.1-.1.1h-.1l-.1.1h-.1l-.1.1h-.9999999999999999l-.1-.1h-.2l.1-.6h.1v.1h.8999999999999999l.1-.1v-.30000000000000004l-.1-.1h-.1l-.1-.1h-.1l-.1-.1h-.1l-.1-.1h-.1l-.1-.1v-.7l.1-.1v-.1l.1-.1.1-.1.1-.1h.30000000000000004l.1-.1h.7999999999999999v.1h.30000000000000004z"></path>
            <path stroke="#fff" stroke-width=".216" stroke-miterlimit="2.613" fill="none" d="M9.5 9.8h-.1v-.1h-.7l-.1.1h-.1v.30000000000000004h.1v.1h.2l.1.1h.1l.1.1h.1v.1h.1l.1.1v.7l-.1.1v.1l-.1.1-.1.1h-.1l-.1.1h-.1l-.1.1h-.9999999999999999l-.1-.1h-.2l.1-.6h.1v.1h.8999999999999999l.1-.1v-.30000000000000004l-.1-.1h-.1l-.1-.1h-.1l-.1-.1h-.1l-.1-.1h-.1l-.1-.1v-.7l.1-.1v-.1l.1-.1.1-.1.1-.1h.30000000000000004l.1-.1h.7999999999999999v.1h.30000000000000004l-.1.6"></path>
            <path fill-rule="evenodd" clip-rule="evenodd" fill="#fff" d="M10.1 8.6h.7l-.1.6h.4l-.1.5h-.5l-.2 1.4v.2h.5v.5h-.30000000000000004v.1h-.5l-.1-.1h-.2v-.1h-.1v-.4z"></path>
            <path stroke="#fff" stroke-width=".216" stroke-miterlimit="2.613" fill="none" d="M10.1 8.6h.7l-.1.6h.4l-.1.5h-.5l-.2 1.4v.2h.5v.5h-.30000000000000004v.1h-.5l-.1-.1h-.2v-.1h-.1v-.4l.5-2.7"></path>
            <path fill-rule="evenodd" clip-rule="evenodd" fill="#fff" d="M11.6 10.7v.2l.1.1v.1h.1v.1h.1l.1.1h.8999999999999999v-.1h.2l.1-.1-.1.6h-.1v.1h-.30000000000000004l-.1.1h-.6l-.1-.1h-.30000000000000004l-.1-.1h-.1l-.1-.1-.1-.1-.1-.1-.1-.1v-.2l-.1-.1v-.8l.1-.1v-.1l.1-.2v-.1l.1-.1.1-.1.1-.1h.1l.1-.1.1-.1h.2l.2-.1h.4l.1.1h.2l.1.1h.1l.1.1v.1l.1.1.1.1v.8999999999999999l-.1.1h-1.8l.1-.5h1.1v-.30000000000000004l-.1-.1-.1-.1h-.4v.1h-.1v.1h-.1v.2h-.1v.1z"></path>
            <path stroke="#fff" stroke-width=".216" stroke-miterlimit="2.613" fill="none" d="M11.6 10.7v.2l.1.1v.1h.1v.1h.1l.1.1h.8999999999999999v-.1h.2l.1-.1-.1.6h-.1v.1h-.30000000000000004l-.1.1h-.6l-.1-.1h-.30000000000000004l-.1-.1h-.1l-.1-.1-.1-.1-.1-.1-.1-.1v-.2l-.1-.1v-.8l.1-.1v-.1l.1-.2v-.1l.1-.1.1-.1.1-.1h.1l.1-.1.1-.1h.2l.2-.1h.4l.1.1h.2l.1.1h.1l.1.1v.1l.1.1.1.1v.8999999999999999l-.1.1h-1.8l.1-.5h1.1v-.30000000000000004l-.1-.1-.1-.1h-.4v.1h-.1v.1h-.1v.2h-.1v.1l-.1.5"></path>
            <path fill-rule="evenodd" clip-rule="evenodd" fill="#fff" d="M17.6 9.3h-.1l-.1-.1h-.8999999999999999l-.1.1h-.1l-.1.1-.1.1v.1l-.1.1v.1l-.1.2v.2l-.1.1v.30000000000000004l.1.1v.1l.1.1v.1h.1l.1.1h.1v.1h.7999999999999999l.1-.1h.1v-.1l-.1.7h-.1v.1h-.30000000000000004l-.1.1h-.5l-.1-.1h-.2l-.1-.1h-.2l-.1-.1-.1-.1-.1-.1v-.1l-.1-.1-.1-.2v-1.0999999999999999l.1-.1v-.2l.1-.1v-.2l.1-.1.1-.1v-.1h.1v-.1h.1v-.1h.1v-.1h.2v-.1h.2l.1-.1h1.0999999999999999l.1.1h.2z"></path>
            <path stroke="#fff" stroke-width=".216" stroke-miterlimit="2.613" fill="none" d="M17.6 9.3h-.1l-.1-.1h-.8999999999999999l-.1.1h-.1l-.1.1-.1.1v.1l-.1.1v.1l-.1.2v.2l-.1.1v.30000000000000004l.1.1v.1l.1.1v.1h.1l.1.1h.1v.1h.7999999999999999l.1-.1h.1v-.1l-.1.7h-.1v.1h-.30000000000000004l-.1.1h-.5l-.1-.1h-.2l-.1-.1h-.2l-.1-.1-.1-.1-.1-.1v-.1l-.1-.1-.1-.2v-1.0999999999999999l.1-.1v-.2l.1-.1v-.2l.1-.1.1-.1v-.1h.1v-.1h.1v-.1h.1v-.1h.2v-.1h.2l.1-.1h1.0999999999999999l.1.1h.2l-.1.7"></path>
            <path fill-rule="evenodd" clip-rule="evenodd" fill="#fff" d="M23.8 11.9h-.7v-.3.1h-.1l-.1.1h-.1l-.1.1h-.6000000000000001l-.1-.1h-.1l-.1-.1v-.1l-.1-.1-.1-.1v-.1l-.1-.1v-.7999999999999999l.1-.1v-.2l.1-.1v-.1l.1-.1.1-.1v-.1l.1-.1.1-.1h.1l.1-.1h.1l.1-.1h.6l.1.1h.1l.1.1v.1h.1v.1l.2-1h.7z"></path>
            <path stroke="#fff" stroke-width=".216" stroke-miterlimit="2.613" fill="none" d="M23.8 11.9h-.7v-.3.1h-.1l-.1.1h-.1l-.1.1h-.6000000000000001l-.1-.1h-.1l-.1-.1v-.1l-.1-.1-.1-.1v-.1l-.1-.1v-.7999999999999999l.1-.1v-.2l.1-.1v-.1l.1-.1.1-.1v-.1l.1-.1.1-.1h.1l.1-.1h.1l.1-.1h.6l.1.1h.1l.1.1v.1h.1v.1l.2-1h.7l-.6 3.3"></path>
            <path fill-rule="evenodd" clip-rule="evenodd" fill="#F8B31E" d="M22.7 11.3l.1-.1h.2v-.1h.1v-.1l.1-.1v-.1h.1v-.7999999999999999h-.1v-.1h-.1v-.1h-.4v.1h-.1v.1h-.1v.1l-.1.1v.1l-.1.1v.5l.1.1v.1l.1.1h.1z"></path>
            <path fill-rule="evenodd" clip-rule="evenodd" fill="#fff" d="M7.2 11.3l-.1.6h-.6v-.30000000000000004h.1-.1l-.1.1-.1.1h-.2v.1h-.6l-.1-.1h-.2v-.1h-.1v-.1l-.1-.1v-.7l.1-.1v-.1h.1v-.1l.1-.1h.1v-.1h.2l.1-.1h.6v-.1h.1l.1.1h.2v-.4h-.2v-.1h-.5l-.1.1h-.5v.1l.1-.6.1-.1h.6v-.1h.30000000000000004l.1.1h.4l.1.1h.1l.1.1.1.1.1.1v.4z"></path>
            <path stroke="#fff" stroke-width=".216" stroke-miterlimit="2.613" fill="none" d="M7.2 11.3l-.1.6h-.6v-.30000000000000004h.1-.1l-.1.1-.1.1h-.2v.1h-.6l-.1-.1h-.2v-.1h-.1v-.1l-.1-.1v-.7l.1-.1v-.1h.1v-.1l.1-.1h.1v-.1h.2l.1-.1h.6v-.1h.1l.1.1h.2v-.4h-.2v-.1h-.5l-.1.1h-.5v.1l.1-.6.1-.1h.6v-.1h.30000000000000004l.1.1h.4l.1.1h.1l.1.1.1.1.1.1v.4l-.3 1.3"></path>
            <path fill-rule="evenodd" clip-rule="evenodd" fill="#E20520" d="M6.6 10.7v-.1h-.4v.1h-.2l-.1.1h-.1v.1l-.1.1v.2h.1v.1h.5v-.1h.1l.1-.1v-.1h.1v-.30000000000000004z"></path>
            <path fill-rule="evenodd" clip-rule="evenodd" fill="#fff" d="M2 11.9h-.7l.5-3.3h1.2l.1 1.9.9-1.9h1.2l-.6 3.3h-.7l.5-2.5h-.1l-1 2.5h-.7l-.1-.1v-1.6l-.1-.4v-.4z"></path>
            <path stroke="#fff" stroke-width=".216" stroke-miterlimit="2.613" fill="none" d="M2 11.9h-.7l.5-3.3h1.2l.1 1.9.9-1.9h1.2l-.6 3.3h-.7l.5-2.5h-.1l-1 2.5h-.7l-.1-.1v-1.6l-.1-.4v-.4l-.4 2.5"></path>
            <path fill-rule="evenodd" clip-rule="evenodd" fill="#fff" d="M19.7 11.3l-.1.6h-.6v-.30000000000000004h-.1v.1h-.1v.1h-.2l-.1.1h-.6l-.1-.1h-.1v-.1h-.1v-.1h-.1v-.2h-.1v-.4l.1-.1v-.2l.1-.1.1-.1.1-.1.1-.1h.2v-.1h.7v-.1h.1v.1h.30000000000000004v-.30000000000000004l-.1-.1h-.1l-.1-.1h-.5l-.1.1h-.4v.1h-.1l.2-.6.1-.1h.5l.1-.1h.2l.1.1h.5l.1.1.1.1h.1v.1h.1v.1l.1.1v.30000000000000004zM19.6 11.9l.1-.6-.1.6zM18.9 11.9h.7999999999999999-.6-.1zM19 11.6v.2l-.1.1h.1v-.30000000000000004zM18 11.9h.6v-.1h.2v-.1h.1l.1-.1h-.1l-.1.1-.1.1h-.2l-.1.1h-.4zM17.4 11.1v.30000000000000004l.1.1v.1l.1.1.1.1h.1v.1h.2-.1l-.1-.1h-.1v-.1h-.1v-.1h-.1v-.2l-.1-.1v-.2zM18.3 10.2h-.30000000000000004v.1h-.1l-.1.1h-.1v.1l-.1.1-.1.1v.1l-.1.1v.2l.1-.1v-.2l.1-.1v-.1l.1-.1h.1v-.1h.1l.1-.1h.1l.1-.1h.1zM18.8 10.1h-.2v.1h-.30000000000000004.1.1.1.1.1zM19.2 10.2v-.1h-.4v.1h.4zM19.2 10v.2-.1-.1zM18.9 9.8h.2v.1h.1v.1-.1-.1h-.1l-.1-.1h-.1zM17.8 9.9h.1v-.1h.6l.1-.1h.2l.1.1v-.1h-.6l-.1.1h-.4v.1zM18 9.3l-.2.6.2-.6zM19.1 9.1h-.7v.1h-.30000000000000004l-.1.1h.1v-.1h.9999999999999999zM20 10v-.30000000000000004l-.1-.1v-.1l-.1-.1h-.1v-.1h-.1l-.1-.1h-.2l-.1-.1h-.1v.1h.30000000000000004l.1.1h.1l.1.1h.1v.1l.1.1v.1l.1.1v.1l-.1.1zM19.7 11.3l.3-1.3h-.1l-.2 1.3z"></path>
            <path fill-rule="evenodd" clip-rule="evenodd" fill="#F8B31E" d="M19.1 10.7v-.1h-.4l-.1.1h-.2v.1h-.1v.1h-.1v.30000000000000004l.1.1h.5v-.1h.1v-.1h.1v-.1l.1-.1v-.2z"></path>
            <path fill-rule="evenodd" clip-rule="evenodd" fill="#fff" d="M24.3 11.5v-.2h.1v-.1h.4l.1.1v.1l.1.1h-.1v-.1h-.1v-.1h-.1l-.1-.1v.1h-.2v.1l-.1.1zM24.5 11.5v-.1h.2v.1h-.1.1v-.1h-.2v.1zM24.3 11.5v.2l.1.1.1.1h.2l.1-.1h.1v-.1l.1-.1v-.1h-.1v.2h-.1v.1h-.30000000000000004l-.1-.1-.1-.1v-.1zM24.5 11.5v.2-.1h.1l.1.1v-.2h-.2z"></path>
            <path stroke="#fff" stroke-width=".216" stroke-miterlimit="2.613" d="M24.3 11.5v-.30000000000000004h.7999999999999999v.7h-.7999999999999999v-.4m.2.2l-.1-.3h.1l.1.1h-.1l-.1-.1h-.1v.3m.3-.2v-.1h-.1l.1.1m0 .3h.1v-.4h-.4v.4h.3" fill="none"></path>
            <path fill-rule="evenodd" clip-rule="evenodd" fill="#fff" d="M19.9 11.9h.7l.2-1.5h.1v-.2l.1-.1v-.1h.1v-.1h.2v-.1h.4l.1-.6h-.4l-.1.1-.1.1h-.1v.1l-.1.1.1-.4h-.7z"></path>
            <path stroke="#fff" stroke-width=".216" stroke-miterlimit="2.613" fill="none" d="M19.9 11.9h.7l.2-1.5h.1v-.2l.1-.1v-.1h.1v-.1h.2v-.1h.4l.1-.6h-.4l-.1.1-.1.1h-.1v.1l-.1.1.1-.4h-.7l-.5 2.7"></path>
            <path fill-rule="evenodd" clip-rule="evenodd" fill="#fff" d="M13.2 11.9h.7999999999999999l.2-1.5v-.1l.1-.1v-.1l.1-.1.1-.1h.30000000000000004l.1-.1v.1h.1v-.30000000000000004l.1-.1v-.2h.1v-.1h-.5v.1h-.1v.1h-.1l-.1.1v.1h-.1l.1-.4h-.7z"></path>
            <path stroke="#fff" stroke-width=".216" stroke-miterlimit="2.613" fill="none" d="M13.2 11.9h.7999999999999999l.2-1.5v-.1l.1-.1v-.1l.1-.1.1-.1h.30000000000000004l.1-.1v.1h.1v-.30000000000000004l.1-.1v-.2h.1v-.1h-.5v.1h-.1v.1h-.1l-.1.1v.1h-.1l.1-.4h-.7l-.5 2.7"></path>
        </symbol><!-- USER MENU -->
        <symbol id="icon-user-libe" viewbox="0 0 34 30">
            <title>
                user-libe
            </title>
            <path d="M17 21.2h-.2l-15.5-5.7c-.2-.1-.4-.3-.4-.6s.2-.5.4-.6l15.5-5.6h.4l15.5 5.6c.2.1.4.3.4.6s-.2.5-.4.6l-15.5 5.7h-.2zm-13.7-6.2l13.7 5 13.7-5-13.7-5-13.7 5z"></path>
        </symbol>
        <symbol id="icon-user-doc" viewbox="0 0 30 30">
            <title>
                user-doc
            </title>
            <path fill="#fff" d="M22 6v18h-14v-18h14m0-1h-14c-.5 0-1 .5-1 1v18c0 .5.5 1 1 1h14c.5 0 1-.5 1-1v-18c0-.5-.5-1-1-1zM10 9h10v1h-10zM10 12h10v1h-10zM10 15h10v1h-10zM10 18h6v1h-6z"></path>
        </symbol>
        <symbol id="icon-user-doc-list" viewbox="0 0 30 30">
            <title>
                user-doc-list
            </title>
            <path d="M22.5 5.5v19h-15v-19h15m0-1h-15c-.5 0-1 .5-1 1v19c0 .5.5 1 1 1h15c.5 0 1-.5 1-1v-19c0-.5-.5-1-1-1zm-13 5h6.8v1h-6.8zm0 5h6.8v1h-6.8zm0 5h6.8v1h-6.8z"></path>
            <circle cx="19.4" cy="10" r="1.1"></circle>
            <circle cx="19.4" cy="14.8" r="1.1"></circle>
            <circle cx="19.4" cy="19.7" r="1.1"></circle>
        </symbol>
        <symbol id="icon-user-mail" viewbox="0 0 30 30">
            <title>
                user-mail
            </title>
            <path fill="#fff" d="M23.6 8.2v13.6h-17.2v-13.6h17.2m0-1h-17.2c-.5 0-1 .5-1 1v13.6c0 .5.5 1 1 1h17.2c.5 0 1-.5 1-1v-13.6c0-.5-.5-1-1-1z"></path>
            <path stroke="#fff" stroke-linejoin="round" stroke-miterlimit="10" fill="none" d="M6.1 8l8.9 9.3 8.9-9.3M6.1 21.7l7.1-6.5M23.9 21.7l-7.1-6.5"></path>
        </symbol>
        <symbol id="icon-user-security" viewbox="0 0 30 30">
            <title>
                user-security
            </title>
            <path d="M19 13v-4c0-2.2-1.8-4-4-4s-4 1.8-4 4v4h-2v11h12v-11h-2zm-7-4c0-1.6 1.4-3 3-3s3 1.4 3 3v4h-6v-4zm8 14h-10v-9h10v9zM12 16h6v1h-6zM12 19h6v1h-6z"></path>
        </symbol>
        <symbol id="icon-user-settings" viewbox="0 0 30 30">
            <title>
                user-settings
            </title>
            <path stroke="#fff" stroke-linejoin="round" stroke-miterlimit="10" d="M21.5 14.9v-.6l2-1-1-2.3-1.9.5c-.5-.9-1.3-1.6-2.2-2.2l.6-2-2.3-.9-1 1.9h-.6c-.8 0-1.5.1-2.2.4l-1.5-1.7-2 1.4 1 1.9c-.6.7-1.2 1.5-1.5 2.4h-2.1l-.2 2.4 2.1.5c.1 1 .5 1.8 1 2.6l-1.4 1.8 1.8 1.7 1.7-1.2c.7.4 1.5.7 2.3.8l.6 2.2 2.4-.2v-2.2c1-.3 1.8-.7 2.5-1.5l1.9 1 1.3-2-1.7-1.4c.2-.7.4-1.5.4-2.3zm-6.5 2.5c-1.3 0-2.4-1.1-2.4-2.4 0-1.3 1.1-2.4 2.4-2.4 1.3 0 2.4 1.1 2.4 2.4 0 1.3-1.1 2.4-2.4 2.4z" fill="none"></path>
        </symbol>
        <symbol id="icon-user-shop" viewbox="0 0 30 30">
            <title>
                user-shop
            </title>
            <path fill="#fff" d="M21.2 8.7l-.8 7.8h-13.3l-1.6-7.8h15.7m1.1-1h-18l2 9.8h15l1-9.8zM15.3 8.7h1v7.8h-1zM10.3 8.7h1v7.8h-1z"></path>
            <path stroke="#fff" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" fill="none" d="M25.2 5.6h-2.9l-1.7 14.6h-13.9"></path>
            <circle fill="#fff" cx="10" cy="23.3" r="1.7"></circle>
            <circle fill="#fff" cx="17.6" cy="23.3" r="1.7"></circle>
        </symbol>
        <symbol id="icon-user-star" viewbox="0 0 30 30">
            <title>
                user-star
            </title>
            <path fill="#fff" d="M15 9.2l1.3 4h4.2l-3.4 2.5 1.3 4-3.4-2.5-3.4 2.5 1.3-4-3.4-2.5h4.2l1.3-4m0-1c-.4 0-.8.3-1 .7l-1 3.3h-3.5c-.4 0-.8.3-1 .7-.1.4 0 .9.4 1.1l2.8 2.1-1.1 3.3c-.1.4 0 .9.4 1.1.2.1.4.2.6.2s.4-.1.6-.2l2.8-2.1 2.8 2.1c.2.1.4.2.6.2s.4-.1.6-.2c.4-.3.5-.7.4-1.1l-1.1-3.3 2.8-2.1c.4-.3.5-.7.4-1.1-.1-.4-.5-.7-1-.7h-3.5l-1-3.3c-.2-.5-.6-.7-1-.7z"></path>
            <circle stroke="#fff" stroke-width="1.5" stroke-linejoin="round" stroke-miterlimit="10" cx="15" cy="15" r="12" fill="none"></circle>
        </symbol><!-- ABO -->
        <symbol id="icon-abo-ribbon" viewbox="0 0 15 24">
            <title>
                Ruban abo
            </title>
            <path fill="#fff" d="M13.2 23c-.2 0-.4-.1-.5-.2l-5.2-5.3-5.2 5.3c-.2.2-.5.3-.8.2-.3-.2-.5-.4-.5-.7v-20.5c0-.2.1-.4.2-.5s.4-.3.6-.3h11.5c.4 0 .7.3.7.7v20.5c0 .3-.2.6-.5.7-.1.1-.2.1-.3.1zm-5.7-7.4c.2 0 .4.1.5.2l4.5 4.7v-18l-10-.1v17.9l4.5-4.4c.1-.2.3-.3.5-.3z"></path>
        </symbol>
        <symbol id="icon-gold-diamond" viewbox="0 0 40 15">
            <title>
                Losange orange
            </title>
            <path fill="#F7AF13" d="M.8 7.5l19.2-7 19.2 7-19.2 7-19.2-7"></path>
        </symbol>
        <symbol id="icon-list-check" viewbox="0 0 20 15">
            <title>
                List check
            </title>
            <path fill="#00BC84" d="M1.54 6.758l2.828-2.828 5.657 5.657-2.828 2.828zM5.743 11.051l9.899-9.899 2.828 2.828-9.899 9.899z"></path>
        </symbol>
        <symbol id="icon-most-read" viewbox="0 0 94 161">
            <title>
                Most read
            </title>
            <path fill="#1D1D1B" d="M47 .3l-46.3 80.2 46.3 80.2 46.3-80.2z"></path>
        </symbol>
        <symbol id="icon-ptit-libe" viewbox="-269 271 60 60">
            <title>
                Ptit Libé
            </title>
            <path fill="#fff" d="M-243.5 292.5c.2.6 1.1.8 1.6.5s.7-.9.5-1.5-.9-.7-1.3-.6c-.9.1-1 1.1-.8 1.6zM-238.7 291.5c0 .7.4 1.2.9 1.3 1.1.2 1.6-.5 1.6-1.3s-.6-1.7-1.8-1.4c-.4.2-.7.8-.7 1.4zM-239.4 307.6c-.5 0-3.1 1.9-3.1 2.4 0 .4 2.6 2 3 2.1.4.1 3.5-1.1 3.5-2.1 0-.6-2.6-2.4-3.4-2.4z"></path>
            <path fill="#fff" d="M-228.8 304.3c-.3-.3-.7-.4-1.2-.4-.3 0-1.6.4-1.7.4 0-.1-1.1-4.1-1.3-5.7v-.2c3.5-1.5 5-4.1 5.1-7.5.1-5.1-3.2-8.5-7.3-9.7-.9-.3-1.7.2-1.8.8-.1.7.3 1.1.9 1.3 2.7.8 5.6 2.9 6.1 6.3s-1.9 6-4.4 6.9c-1.8.6-4.1 1-6.3 1-2.7 0-9.2-1-9.5-6.5-.2-3.6 2.5-6.3 5.4-7.5.6-.2 1.1-.9.8-1.5-.2-.5-1-.6-1.8-.3-3.9 1.6-5.9 4.5-6.5 7.8-.9 6.9 6.3 9.3 6.7 9.4-.3 1-.9 5.1-.9 5.1-.2 0-2-.2-2.1-.2h-.7c-1.8 0-2.2 1.1-2.3 1.8-.1.9-.2 2 .5 2.6.5.5 1.3.5 1.5.5h1.8c.5 0 .9-.1 1.3-.3l-.8 5.7c-.1.7.3 1.4 1 1.5.8.2 2 .3 2.9.4-.1.7-.1 1.6-.2 2.9-.6-.1-1.5-.1-2.1-.1h-.5c-.7 0-1.3.6-1.3 1.3 0 .1-.2 2.1.3 2.8.5 1 4.4.4 5-.2.6-.6.7-1.4.8-2.3.1-1 .3-4 .3-4 .8 0 1.5.1 2.3.1h.8c0 .9 0 2.2.1 3v.6s0-.1 0 0c0 1 .2 1.9.7 2.6.6.7 3.4.4 3.6.3 1.2-.3 1.7-2.5 1.7-2.6.1-.4.1-.7-.1-1.1-.2-.3-.7-.5-1.1-.5 0 0-1.7-.1-2.3-.1 0-.8 0-1.4-.1-2.5.5 0 4.2-.4 4.8-1.5.3-.6-.4-5.1-.5-5.7h.5c.7 0 1.4-.2 1.7-.3 1.2-.3 1-3.8.2-4.4zm-18.9 2.9c-.3.2-2.1 0-2.3-.2s-.2-.6 0-1.1c.2-.5.7-.4 1.1-.4h1.6c0 .5-.3 1.6-.4 1.7zm4.1 14.8c-.5.1-1 .3-1.7.3-.6.1-.6-.1-.6-.6-.1-.4 0-.7 0-1.1 1 0 1.9.1 2.9.3-.2.3 0 1-.6 1.1zm9.6-1.8c-.1.2-.1.5-.2.7-.2.5-.3.5-.8.6-.4 0-.9.1-1.1 0-.5-.2-.4-.7-.4-1.2.8 0 1.7 0 2.5-.1zm1-7c-3.5.8-8 1.2-12.1.1l1.3-13.7c.6.1 2.5.2 3.1.2 1.6 0 3.8-.2 5.8-.7.7 4.5 2 14 1.9 14.1zm3.3-5.8c-.2 0-1.3.5-1.6.2-.1-.1-.3-1.4-.3-1.8.4-.1 1.4-.6 1.9-.2 0 .1.4 1.7 0 1.8z"></path>
        </symbol>
        <symbol id="icon-sport" viewbox="0 0 60 60">
            <title>
                sport
            </title>
            <g stroke="#fff" stroke-width="2" stroke-miterlimit="10" fill="none">
                <circle cx="30" cy="30" r="18"></circle>
                <path d="M29.6 48c-.1-4.5-1.9-8.9-5.3-12.3-3.4-3.4-7.9-5.2-12.3-5.3m18.4-18.4c.1 4.5 1.9 8.9 5.3 12.3 3.4 3.4 7.9 5.2 12.3 5.3m-30.7-12.3l25.4 25.4m0-25.4l-25.4 25.4"></path>
            </g>
        </symbol>
        <symbol id="icon-blog" viewbox="0 0 60 60">
            <title>
                blog
            </title>
            <g stroke="#fff" stroke-width="2" stroke-miterlimit="10" fill="none">
                <path d="M39 28v21h-24v-32h17M27.035 27.005l16.97-16.97 4.03 4.03-16.97 16.97zm3.965 3.995l-4-4-2 6zm-12 10h7m2 0h7m-16-3h7m2 0h7m-16 6h7m2 0h7"></path>
            </g>
        </symbol>
        <symbol id="icon-voyage" viewbox="0 0 60 60">
            <title>
                voyage
            </title>
            <path d="M47 45c-2.7-6.6-9.5-11-17-11s-14.3 4.4-17 11h34zm-38 0h38m-25 4h12m16-4h3m-37 4h3m13-29v14h-3v-14m3 0c.8-.5 7.3.3 10 3-1.1-4.7-7.1-8-11-8h-1c-3.9 0-9.9 3.3-11 8 2.7-2.7 9-3.5 10-3m-4-4s-1.7-2.1-6-1.5c2.4-3.5 9.2-3.3 11.6.3m5.4 1.2s1.7-2.1 6-1.5c-2.4-3.5-9.1-3.3-11.6.3" stroke="#fff" stroke-width="2" stroke-miterlimit="10" fill="none"></path>
        </symbol><!-- 2017 -->
        <defs>
            <lineargradient id="Gradient_1" gradientunits="userSpaceOnUse" x1="0" y1="18.5" x2="37" y2="18.5">
                <stop offset="0" stop-color="#3857C4"></stop>
                <stop offset="1" stop-color="#E72743"></stop>
            </lineargradient>
        </defs>
        <symbol id="icon-2017" viewbox="0, 0, 37, 37">
            <g id="Calque_1">
                <path d="M37,37 L0,37 L0,0 L37,0 z" fill="url(#Gradient_1)"></path>
                <g>
                    <path d="M8.312,15.566 C5.879,15.566 4.71,16.56 4.403,18.24 L4.403,18.42 L6.539,18.42 L6.539,18.145 C6.662,17.539 7.231,17.195 8.291,17.195 C9.334,17.195 9.957,17.714 9.957,17.714 L9.957,17.721 C9.957,18.063 9.781,18.162 4.83,19.957 L4.83,21.41 L11.665,21.41 L11.665,20.128 L8.502,20.128 C8.502,20.128 11.775,18.327 11.665,17.589 L11.665,17.524 C11.775,16.26 10.701,15.566 8.312,15.566" fill="#FFFFFF"></path>
                    <path d="M18.073,18.612 C18.073,19.534 17.516,19.841 16.353,19.841 C15.168,19.841 14.655,19.519 14.655,18.612 L14.655,18.546 C14.655,17.595 15.189,17.302 16.353,17.302 C17.538,17.302 18.073,17.58 18.073,18.546 z M16.154,15.587 C13.63,15.587 12.519,16.609 12.519,18.394 L12.519,18.561 C12.519,20.687 13.666,21.571 16.154,21.571 C18.57,21.571 19.781,20.636 19.781,18.561 L19.781,18.394 C19.781,16.588 18.613,15.587 16.154,15.587" fill="#FFFFFF"></path>
                    <path d="M20.636,16.618 L20.636,18.437 L21.917,17.758 L21.917,21.41 L24.054,21.41 L24.054,15.429 L22.958,15.429 z" fill="#FFFFFF"></path>
                    <path d="M25.762,15.429 L25.762,17.137 L30.145,17.137 C28.656,18.209 27.158,20.03 26.791,21.402 L29.103,21.409 C29.419,20.176 30.497,18.635 32.597,16.741 L32.597,15.429 z" fill="#FFFFFF"></path>
                </g>
            </g>
        </symbol></svg> 
        <script>
        <![CDATA[

        // Facebook PW
        var getParameterByName = function(name, url) {
        if (!url) url = window.location.href;
        name = name.replace(/[\[\]]/g, '\\$&');
        var regex = new RegExp('[?&]' + name + '(=([^&#]*)|&|#|$)'),
            results = regex.exec(url);
        if (!results) return null;
        if (!results[2]) return '';
        return decodeURIComponent(results[2].replace(/\+/g, ' '));
        }

        var FBRedirect = function() {
        var search = location.search.substring(1);
        var hasSurface = getParameterByName('surface')
        if(hasSurface) {
                var nxturl = 'https://bolq.liberation.fr/paywall' + document.location.search;
                document.location.href= nxturl;
        }
        };
        FBRedirect();
        ]]>
        </script> 
        <script type="text/javascript">
        //<![CDATA[

        var session_cookie = getCookie('djazsession'); var libeUserInfo = { authenticated: false, access_level: "BAS", }; var isPubActive = true; if (session_cookie) { document.write('<script type="text/javascript" src="/session_info/?format=json&confirm=' + escape(session_cookie) + '"></' + 'script>'); };
        var is_responsive_mobile = (document.documentElement.clientWidth <= 640);
        var releaseSuffix = "c05ba9975432d75cc66fb3e70859d5b6";
        //]]>
        </script> 
        <script type="text/javascript">
        //<![CDATA[

        libeUserInfo["cookie_domain"] = '.liberation.Fr';
        libeUserInfo["softwarer_blocker"] = 1;
        libeUserInfo["token_host"] = 'token.liberation.fr';
        var dispayName = (typeof libeUserInfo['displayname'] == 'undefined') ? '' : libeUserInfo['displayname']; var accessLevel = (typeof libeUserInfo['access_level'] == 'undefined') ? 'BAS' : libeUserInfo['access_level']; var isPubActive = !(accessLevel == 'PRE' || accessLevel == 'ESS' || accessLevel == 'MAYDAY'); var bodyClass = ' ' + 'access-' + accessLevel.toLowerCase(); bodyClass += ' ' + (libeUserInfo['authenticated'] ? 'authenticated' : 'unlogged'); document.body.className = document.body.className + bodyClass;
        // Global api url
        apiUrl = "https://www.liberation.fr/api/v3/";
        currentPath = '/culture/2017/11/24/screenshot-vape-wave-6-days-alphonse-president_1612047';
        flavour = 'desktop';
        libeSiteUrl = 'https://www.liberation.fr';

        objectId = '1612047'

        // Check kill switch for ads.

        // Recovery
        if (typeof libeUserInfo !== 'undefined' && libeUserInfo.access_level == 'MAYDAY') { document.body.className = document.body.className + ' recovery-mode'; }
        //]]>
        </script>
        <div role="navigation">
            <div class="header-fix-nav">
                <div class="alert-nav red-alert js-alert">
                    <a href="" class="alert-nav-label js-alert-link"></a>
                </div>
                <nav class="main-nav">
                    <div class="left-nav v-centerer">
                        <a role="button" class="button menu-nav open v-centered open"><span class="menu-nav-label">Menu</span></a> <a href="https://www.liberation.fr" class="menu-nav-libe-logo v-centered"><img src="https://statics.liberation.fr/newnext/images/logo-libe.svg" height="42" alt="Libération" /></a>
                    </div>
                    <div class="subs-label v-centerer js-nav-label"></div>
                    <div class="right-nav v-centerer">
                        <a href="" role="button" class="button v-centered init twitter-share"><span class="button-icon"><svg class="icon fill-black" role="img" width="20" height="20">
                        <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#icon-twitter"></use></svg></span></a> <a href="" role="button" class="button v-centered init facebook-share"><span class="button-icon"><svg class="icon fill-black" role="img" width="20" height="20">
                        <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#icon-facebook"></use></svg></span></a>
                        <div class="button search-nav v-centered">
                            <form action="https://www.liberation.fr/recherche/" method="get">
                                <input type="search" name="q" class="search-nav-input" placeholder="rechercher" /> <button type="submit" class="search-nav-button"><svg class="icon fill-black" role="img" width="21" height="22">
                                <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#icon-search"></use></svg></button>
                            </form>
                        </div><a href="https://www.liberation.fr/direct/" class="button v-centered js-nav-live-button"><span class="button-icon"><svg xmlns="http://www.w3.org/2000/svg" class="icon" width="26" height="22" viewbox="0 0 26 22">
                        <path class="stroke-anim" stroke="#000" stroke-width="2" stroke-miterlimit="10" d="M15.5 8c.7-1 2-2 4-2 3 0 5 2.1 5 5s-2.1 5-5 5c-3.3 0-5-2.1-6.5-5s-3.2-5-6.5-5c-2.9 0-5 2.1-5 5s2 5 5 5c2 0 3.2-.9 4-2" fill="none"></path></svg></span></a> <a href="https://www.liberation.fr/top100/" role="button" class="button v-centered"><span class="button-icon"><svg class="icon fill-black" role="img" width="26" height="22">
                        <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#icon-100"></use></svg></span></a> <a href="http://token.liberation.fr/accounts/login/" role="button" class="button nav-user-button v-centered js-nav-user-button"><span class="button-icon"><svg class="icon fill-black" role="img" width="21" height="22">
                        <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#icon-user"></use></svg></span> <span class="button-label js-nav-user-button-name">Connexion</span></a> <a href="http://token.liberation.fr/accounts/offers/" role="button" class="subscribe-button v-centered js-nav-subscribe-button"><span>Abonnement</span></a>
                    </div>
                    <div class="title-nav-container">
                        <div class="title-nav-wrap width-wrap width-padded v-centerer">
                            <div class="title-nav hide v-centered">
                                <div class="title-nav-article ellipsis show">
                                    <div class="share">
                                        <div class="share-link js-nav-share">
                                            <a href="https://www.facebook.com/sharer/sharer.php?u=https%3A%2F%2Fnext.liberation.fr%2Fculture%2F2017%2F11%2F24%2Fscreenshot-vape-wave-6-days-alphonse-president_1612047&amp;t=Screenshot%C2%A0%3A+%C2%ABVape+Wave%C2%BB%2C+%C2%AB6%C2%A0Days%C2%BB%2C+%C2%ABAlphonse+Pr%C3%A9sident%C2%BB%E2%80%A6" class="js-share-facebook" rel="nofollow"><svg class="icon share-link-fb" role="img" width="20" height="20">
                                            <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#icon-facebook"></use></svg></a> <a href="https://twitter.com/intent/tweet?url=https%3A%2F%2Fnext.liberation.fr%2Fculture%2F2017%2F11%2F24%2Fscreenshot-vape-wave-6-days-alphonse-president_1612047&amp;text=Screenshot%C2%A0%3A+%C2%ABVape+Wave%C2%BB%2C+%C2%AB6%C2%A0Days%C2%BB%2C+%C2%ABAlphonse+Pr%C3%A9sident%C2%BB%E2%80%A6&amp;via=libe&amp;related=libe" class="js-share-twitter" rel="nofollow"><svg class="icon share-link-tw" role="img" width="20" height="20">
                                            <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#icon-twitter"></use></svg></a>
                                        </div>
                                    </div><span class="nav-title js-nav-title">Screenshot&#160;: «Vape Wave», «6&#160;Days», «Alphonse Président»…</span>
                                </div>
                            </div>
                        </div>
                    </div>
                </nav>
            </div>
            <div class="menu hide">
                <div class="menu-container">
                    <div class="mosaic">
                        <div class="mosaic-container clearfix">
                            <ul class="menu-univers">
                                <li class="menu-univer">
                                    <a class="menu-univer-item v-centerer active" data-item-target="first-item" href="https://www.liberation.fr/france,11">
                                    <div class="v-centered">
                                        <span class="menu-univer-title">France</span>
                                    </div></a>
                                </li>
                                <li class="menu-univer">
                                    <a class="menu-univer-item v-centerer" data-item-target="second-item" href="https://www.liberation.fr/planete,10">
                                    <div class="v-centered">
                                        <span class="menu-univer-title">Planète</span>
                                    </div></a>
                                </li>
                                <li class="menu-univer">
                                    <a class="menu-univer-item v-centerer" data-item-target="third-item" href="https://www.liberation.fr/debats,18">
                                    <div class="v-centered">
                                        <span class="menu-univer-title">Idées</span>
                                    </div></a>
                                </li>
                                <li class="menu-univer">
                                    <a class="menu-univer-item v-centerer" data-item-target="fourth-item" href="/">
                                    <div class="v-centered">
                                        <span class="menu-univer-title">Culture</span>
                                    </div></a>
                                </li>
                                <li class="menu-univer">
                                    <a class="menu-univer-item v-centerer" data-item-target="fifth-item" href="https://www.liberation.fr/checknews,100893">
                                    <div class="v-centered">
                                        <span class="menu-univer-title">Checknews</span>
                                    </div></a>
                                </li>
                            </ul>
                            <div class="menu-univers-pictures">
                                <div class="menu-pictures first-item clearfix show">
                                    <div class="menu-pictures-col-1">
                                        <a href="https://www.liberation.fr/france/2019/03/01/c-est-important-que-les-agricultures-alternatives-soient-visibles-au-salon_1712334" class="menu-picture" style="background-image: url(https://medias.liberation.fr/photo/1199482-imagappel-agriculture.jpg?modified_at=1551361794&amp;amp;ratio_x=03&amp;amp;ratio_y=02&amp;amp;width=580);">
                                        <div class="menu-picture-desc">
                                            <p>
                                                «C'est important que les agricultures alternatives soient visibles au Salon»
                                            </p><span class="menu-picture-desc-authors">1 mars 2019 à 15:20</span>
                                        </div></a> <a href="https://www.liberation.fr/france/2019/03/01/immobilier-a-paris-le-metre-carre-frole-la-barre-des-10-000-euros_1712329" class="menu-picture" style="background-image: url(https://medias.liberation.fr/photo/1199725-000_17v5u6.jpg?modified_at=1551449721&amp;amp;ratio_x=03&amp;amp;ratio_y=02&amp;amp;width=580);">
                                        <div class="menu-picture-desc">
                                            <p>
                                                Immobilier&#160;: à Paris, le mètre carré frôle la barre des 10&#160;000&#160;euros
                                            </p><span class="menu-picture-desc-authors">1 mars 2019 à 15:15</span>
                                        </div></a>
                                    </div>
                                    <div class="menu-pictures-col-2">
                                        <a href="https://www.liberation.fr/france/2019/03/01/air-france-klm-paris-et-la-haye-calment-le-jeu_1712338" class="menu-picture menu-high-picture" style="background-image: url(https://medias.liberation.fr/photo/1199678-le-ministre-de-l-economie-bruno-le-maire-d-et-son-homologue-wopke-hoekstra-g-lors-d-une-conference-d.jpg?modified_at=1551444312&amp;amp;ratio_x=03&amp;amp;ratio_y=02&amp;amp;width=580);">
                                        <div class="menu-picture-desc">
                                            <p>
                                                Air France-KLM&#160;: Paris et La&#160;Haye calment le jeu
                                            </p><span class="menu-picture-desc-authors">1 mars 2019 à 13:16</span>
                                        </div></a>
                                    </div>
                                    <div class="menu-pictures-col-2 menu-pictures-last-col">
                                        <a href="https://www.liberation.fr/france/2019/03/01/ligue-du-lol-deux-salaries-licencies-aux-inrocks_1712320" class="menu-picture menu-high-picture" style="background-image: url(https://medias.liberation.fr/photo/1169564-logo-a-chaud.png?modified_at=1551434128&amp;amp;ratio_x=03&amp;amp;ratio_y=02&amp;amp;width=580);">
                                        <div class="menu-picture-desc">
                                            <p>
                                                Ligue du LOL : deux salariés licenciés aux «Inrocks»
                                            </p><span class="menu-picture-desc-authors">1 mars 2019 à 10:55</span>
                                        </div></a>
                                    </div>
                                </div>
                                <div class="menu-pictures second-item clearfix">
                                    <div class="menu-pictures-col-2">
                                        <a href="https://www.liberation.fr/planete/2019/03/01/fespaco-des-actrices-lancent-une-petition-contre-un-realisateur-burkinabe_1712360" class="menu-picture menu-high-picture" style="background-image: url(https://medias.liberation.fr/photo/1199722-000_1e1213.jpg?modified_at=1551448366&amp;amp;ratio_x=03&amp;amp;ratio_y=02&amp;amp;width=580);">
                                        <div class="menu-picture-desc">
                                            <p>
                                                Fespaco&#160;: des actrices lancent une pétition contre un réalisateur burkinabè
                                            </p><span class="menu-picture-desc-authors">1 mars 2019 à 15:17</span>
                                        </div></a>
                                    </div>
                                    <div class="menu-pictures-col-1">
                                        <a href="https://www.liberation.fr/planete/2019/03/01/vonhier-un-hashtag-ou-debattre-de-l-obsession-des-allemands-pour-les-origines_1712171" class="menu-picture" style="background-image: url(https://medias.liberation.fr/photo/1199676-outrerhin.jpg?modified_at=1551433451&amp;amp;ratio_x=03&amp;amp;ratio_y=02&amp;amp;width=580);">
                                        <div class="menu-picture-desc">
                                            <p>
                                                #VonHier, un hashtag où débattre de l'obsession des Allemands pour les origines
                                            </p><span class="menu-picture-desc-authors">1 mars 2019 à 10:44</span>
                                        </div></a> <a href="https://www.liberation.fr/planete/2019/02/28/proces-nemmouche-defense-et-indecence_1712248" class="menu-picture" style="background-image: url(https://medias.liberation.fr/photo/1199577-prodlibe-2019-0257-proces-nemmouche-a-bruxelles.jpg?modified_at=1551383309&amp;amp;ratio_x=03&amp;amp;ratio_y=02&amp;amp;width=580);">
                                        <div class="menu-picture-desc">
                                            <p>
                                                Procès Nemmouche&#160;: défense et indécence
                                            </p><span class="menu-picture-desc-authors">28 février 2019 à 20:36</span>
                                        </div></a>
                                    </div>
                                    <div class="menu-pictures-col-2 menu-pictures-last-col">
                                        <a href="https://www.liberation.fr/planete/2019/02/28/triple-inculpation-imminente-pour-un-roi-bibi-toujours-dans-le-deni_1712244" class="menu-picture menu-high-picture" style="background-image: url(https://medias.liberation.fr/photo/1199581-netanyahu-and-wife-sara-attend-the-mimona-ceremony-at-the-israeli-town-of-or-akiva.jpg?modified_at=1551383141&amp;amp;ratio_x=03&amp;amp;ratio_y=02&amp;amp;width=580);">
                                        <div class="menu-picture-desc">
                                            <p>
                                                Triple inculpation imminente pour un «roi Bibi» toujours dans le déni
                                            </p><span class="menu-picture-desc-authors">28 février 2019 à 20:36</span>
                                        </div></a>
                                    </div>
                                </div>
                                <div class="menu-pictures third-item clearfix">
                                    <div class="menu-pictures-col-2">
                                        <a href="/debats/2019/03/01/quand-le-genre-et-la-race-divisent-le-milieu-universitaire_1712336" class="menu-picture menu-high-picture" style="background-image: url(https://medias.liberation.fr/photo/1199702-mouvement.jpg?modified_at=1551439556&amp;amp;ratio_x=03&amp;amp;ratio_y=02&amp;amp;width=580);">
                                        <div class="menu-picture-desc">
                                            <p>
                                                Quand le genre et la race divisent le milieu universitaire
                                            </p><span class="menu-picture-desc-authors">1 mars 2019 à 12:26</span>
                                        </div></a>
                                    </div>
                                    <div class="menu-pictures-col-2">
                                        <a href="https://www.liberation.fr/debats/2019/02/28/l-anarchisme-convivial-d-illich-seduit-ceux-qui-veulent-vivre-leur-autonomie-face-aux-institutions_1712214" class="menu-picture menu-high-picture" style="background-image: url(https://medias.liberation.fr/photo/1199543-ivan-illich.jpg?modified_at=1551374904&amp;amp;ratio_x=03&amp;amp;ratio_y=02&amp;amp;width=580);">
                                        <div class="menu-picture-desc">
                                            <p>
                                                «L’anarchisme convivial d’Illich&#160;séduit ceux qui&#160;veulent vivre leur&#160;autonomie face aux institutions»
                                            </p><span class="menu-picture-desc-authors">28 février 2019 à 18:06</span>
                                        </div></a>
                                    </div>
                                    <div class="menu-pictures-col-1 menu-pictures-last-col">
                                        <a href="https://www.liberation.fr/debats/2019/02/28/quand-le-genre-et-la-race-divisent-le-milieu-universitaire_1712211" class="menu-picture" style="background-image: url(https://medias.liberation.fr/photo/1199674-mouvement.jpg?modified_at=1551432871&amp;amp;ratio_x=03&amp;amp;ratio_y=02&amp;amp;width=580);">
                                        <div class="menu-picture-desc">
                                            <p>
                                                Quand le genre et la&#160;race&#160;divisent le&#160;milieu universitaire
                                            </p><span class="menu-picture-desc-authors">28 février 2019 à 17:56</span>
                                        </div></a> <a href="https://www.liberation.fr/debats/2019/02/28/oscars-le-black-le-green-et-miss-daisy-ii_1712209" class="menu-picture" style="background-image: url(https://medias.liberation.fr/photo/1198527-oscars-2019.jpg?modified_at=1551086117&amp;amp;ratio_x=03&amp;amp;ratio_y=02&amp;amp;width=580);">
                                        <div class="menu-picture-desc">
                                            <p>
                                                Oscars : le black, le&#160;green et «Miss&#160;Daisy&#160;II»
                                            </p><span class="menu-picture-desc-authors">28 février 2019 à 17:56</span>
                                        </div></a>
                                    </div>
                                </div>
                                <div class="menu-pictures fourth-item clearfix">
                                    <div class="menu-pictures-col-1">
                                        <a href="/musique/2019/03/01/de-little-simz-a-sakamoto-cinq-sons-de-sortie-ce-vendredi_1711753" class="menu-picture" style="background-image: url(https://medias.liberation.fr/photo/1192248-1139650-infographie-illustration-disques-dans-les-bacs.jpg?modified_at=1551369474&amp;amp;ratio_x=03&amp;amp;ratio_y=02&amp;amp;width=580);">
                                        <div class="menu-picture-desc">
                                            <p>
                                                De Little Simz à Sakamoto, cinq sons de sortie ce vendredi
                                            </p><span class="menu-picture-desc-authors">1 mars 2019 à 06:43</span>
                                        </div></a> <a href="/culture/2019/03/01/fashion-week-au-petit-trot_1712148" class="menu-picture" style="background-image: url(https://medias.liberation.fr/photo/1199621-prodlibe-pacorabane1.jpg?modified_at=1551393234&amp;amp;ratio_x=03&amp;amp;ratio_y=02&amp;amp;width=580);">
                                        <div class="menu-picture-desc">
                                            <p>
                                                Fashion Week&#160;: au petit trot
                                            </p><span class="menu-picture-desc-authors">1 mars 2019 à 06:14</span>
                                        </div></a>
                                    </div>
                                    <div class="menu-pictures-col-2">
                                        <a href="/theatre/2019/02/28/eins-zwei-drei-le-clown-du-spectacle_1712205" class="menu-picture menu-high-picture" style="background-image: url(https://medias.liberation.fr/photo/1199527-martin-zimmermann_einszweidrei_photo1_nelly_rodriguezjpg.jpg?modified_at=1551376407&amp;amp;ratio_x=03&amp;amp;ratio_y=02&amp;amp;width=580);">
                                        <div class="menu-picture-desc">
                                            <p>
                                                «Eins Zwei Drei», le clown du spectacle
                                            </p><span class="menu-picture-desc-authors">28 février 2019 à 18:46</span>
                                        </div></a>
                                    </div>
                                    <div class="menu-pictures-col-2 menu-pictures-last-col">
                                        <a href="/theatre/2019/02/28/direction-d-operas-prise-de-tetes-a-paris-et-lyon_1712204" class="menu-picture menu-high-picture" style="background-image: url(https://medias.liberation.fr/photo/1199528-palais-garnier-1-c-jean-pierre-delagarde-opera-national-de-parisjpg.jpg?modified_at=1551376301&amp;amp;ratio_x=03&amp;amp;ratio_y=02&amp;amp;width=580);">
                                        <div class="menu-picture-desc">
                                            <p>
                                                Direction d’opéras&#160;: prise de têtes à Paris et Lyon
                                            </p><span class="menu-picture-desc-authors">28 février 2019 à 18:46</span>
                                        </div></a>
                                    </div>
                                </div>
                                <div class="menu-pictures fifth-item clearfix">
                                    <div class="menu-pictures-col-1">
                                        <a href="https://www.liberation.fr/checknews/2019/03/01/le-colonialisme-a-t-il-ete-presente-comme-une-oeuvre-civilisatrice-a-l-ecole-publique_1712332" class="menu-picture" style="background-image: url(https://medias.liberation.fr/photo/1185761--.jpg?modified_at=1547122257&amp;amp;ratio_x=03&amp;amp;ratio_y=02&amp;amp;width=580);">
                                        <div class="menu-picture-desc">
                                            <p>
                                                Le colonialisme a-t-il été présenté comme une «œuvre civilisatrice» à l'école publique ?
                                            </p><span class="menu-picture-desc-authors">1 mars 2019 à 13:38</span>
                                        </div></a> <a href="https://www.liberation.fr/checknews/2019/03/01/l-euro-a-t-il-vraiment-fait-perdre-56-000-a-chaque-francais_1712170" class="menu-picture" style="background-image: url(https://medias.liberation.fr/photo/1199693-cep4.jpg?modified_at=1551436916&amp;amp;ratio_x=03&amp;amp;ratio_y=02&amp;amp;width=580);">
                                        <div class="menu-picture-desc">
                                            <p>
                                                L'Euro a-t-il vraiment fait perdre 56 000€ à chaque Français?
                                            </p><span class="menu-picture-desc-authors">1 mars 2019 à 12:54</span>
                                        </div></a>
                                    </div>
                                    <div class="menu-pictures-col-2">
                                        <a href="https://www.liberation.fr/checknews/2019/03/01/les-animaux-exposes-au-salon-de-l-agriculture-seront-ils-directement-envoyes-a-l-abattoir_1712212" class="menu-picture menu-high-picture" style="background-image: url(https://medias.liberation.fr/photo/1199451-checknews_prodlibe-2019-0337-salon-de-l-agriculture-2019.jpg?modified_at=1551356738&amp;amp;ratio_x=03&amp;amp;ratio_y=02&amp;amp;width=580);">
                                        <div class="menu-picture-desc">
                                            <p>
                                                Les animaux exposés au salon de l'Agriculture seront-ils directement envoyés à l'abattoir&#160;?
                                            </p><span class="menu-picture-desc-authors">1 mars 2019 à 12:45</span>
                                        </div></a>
                                    </div>
                                    <div class="menu-pictures-col-2 menu-pictures-last-col">
                                        <a href="https://www.liberation.fr/checknews/2019/02/28/si-un-depute-est-elu-au-parlement-europeen-organise-t-on-une-nouvelle-election_1707531" class="menu-picture menu-high-picture" style="background-image: url(https://medias.liberation.fr/photo/1193398-checknews.jpg?modified_at=1549392233&amp;amp;ratio_x=03&amp;amp;ratio_y=02&amp;amp;width=580);">
                                        <div class="menu-picture-desc">
                                            <p>
                                                Si un député est élu au Parlement européen, organise-t-on une nouvelle élection ?
                                            </p><span class="menu-picture-desc-authors">28 février 2019 à 17:44</span>
                                        </div></a>
                                    </div>
                                </div>
                            </div>
                        </div>
                    </div>
                    <div class="menu-rubric clearfix">
                        <ul class="menu-rubric-bloc">
                            <li>
                                <a href="https://www.liberation.fr/liseuse/publication/01-03-2019/" class="menu-rubric-link menu-rubric-direct"><span>Le journal du jour</span></a>
                            </li>
                            <li>
                                <a href="https://www.liberation.fr/direct/" class="menu-rubric-link menu-rubric-live"><svg class="icon" role="img" width="60" height="60">
                                <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#icon-live"></use></svg> <span>Le direct</span></a>
                            </li>
                            <li>
                                <a href="https://www.liberation.fr/libe-labo-data-nouveaux-formats,100538" class="menu-rubric-link menu-rubric-data"><svg class="icon" role="img" width="60" height="60">
                                <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#icon-data"></use></svg> <span>Libé Labo</span></a>
                            </li>
                            <li>
                                <a href="/food,100293" class="menu-rubric-link menu-rubric-food"><svg class="icon" role="img" width="60" height="60">
                                <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#icon-food"></use></svg> <span>Food</span></a>
                            </li>
                            <li>
                                <a href="https://www.liberation.fr/photographie,99965" class="menu-rubric-link menu-rubric-diapo"><svg class="icon" role="img" width="60" height="60">
                                <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#icon-diapo"></use></svg> <span>Photo</span></a>
                            </li>
                            <li>
                                <a href="http://www.leptitlibe.fr" class="menu-rubric-link menu-rubric-ptitlibe"><svg class="icon" role="img" width="60" height="60">
                                <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#icon-ptit-libe"></use></svg> <span>Le P'tit Libé</span></a>
                            </li>
                            <li>
                                <a href="https://www.liberation.fr/politiques,100666" class="menu-rubric-link menu-rubric-politiques"><svg class="icon" role="img" width="60" height="60">
                                <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#icon-politiques"></use></svg> <span>Politiques</span></a>
                            </li>
                            <li>
                                <a href="https://www.liberation.fr/portrait,67" class="menu-rubric-link menu-rubric-portrait"><svg class="icon" role="img" width="60" height="60">
                                <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#icon-portrait"></use></svg> <span>Portrait</span></a>
                            </li>
                            <li>
                                <a href="https://www.liberation.fr/sports,14" class="menu-rubric-link menu-rubric-sport"><svg class="icon" role="img" width="60" height="60">
                                <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#icon-sport"></use></svg> <span>Sports</span></a>
                            </li>
                            <li>
                                <a href="https://www.liberation.fr/voyages,55" class="menu-rubric-link menu-rubric-voyage"><svg class="icon" role="img" width="60" height="60">
                                <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#icon-voyage"></use></svg> <span>Voyages</span></a>
                            </li>
                            <li>
                                <a href="https://www.liberation.fr/blogs,26" class="menu-rubric-link menu-rubric-blogs"><svg class="icon" role="img" width="60" height="60">
                                <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#icon-blog"></use></svg> <span>Blogs</span></a>
                            </li>
                            <li>
                                <a href="https://www.liberation.fr/sciences,90" class="menu-rubric-link menu-rubric-sciences"><svg class="icon" role="img" width="60" height="60">
                                <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#icon-sciences"></use></svg> <span>Sciences</span></a>
                            </li>
                        </ul>
                        <div class="menu-link-bloc-subscription">
                            <div class="menu-link-bloc-subscription-title">
                                <div class="bloc-subscription-link-title">
                                    <a href="http://token.liberation.fr/accounts/offers/">Abonnement</a>
                                </div><a href="/offre-numerique/" class="menu-link-bloc-title">100% numérique<br />
                                <span class="small-link-title"><span class="yellow-title">8€ par mois sans engagement</span></span></a> <a href="/offre-integrale/" class="menu-link-bloc-title">Formule Intégrale<br />
                                <span class="small-link-title"><span class="yellow-title">Libération en version papier et numérique</span></span></a>
                            </div>
                        </div>
                        <div class="menu-link-bloc-event">
                            <div class="menu-link-bloc-event-title">
                                <div class="bloc-event-link-title">
                                    <a href="https://www.liberation.fr/evenements/">Èvénements</a>
                                </div>
                            </div>
                        </div>
                        <div class="menu-link-bloc-store">
                            <div class="menu-link-bloc-store-title">
                                <div class="bloc-store-link-title">
                                    <a href="http://boutique.liberation.fr/">La Boutique</a>
                                </div><a href="http://boutique.liberation.fr/collections/unes" class="menu-link-bloc-title">Unes en affiches<br />
                                <span class="small-link-title"><span class="green-title">Les unes cultes en tirage photo</span></span></a> <a href="http://boutique.liberation.fr/collections/all" class="menu-link-bloc-title">Relire Libé<br />
                                <span class="small-link-title"><span class="green-title">Commander des anciens numéros</span></span></a>
                            </div>
                        </div>
                    </div>
                </div>
                <footer class="footer-menu clearfix">
                    <div class="footer-social-links">
                        <a href="/" role="button" class="button v-centered init facebook-share"><span class="button-icon"><svg class="icon fill-black" role="img" width="20" height="20">
                        <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#icon-facebook"></use></svg></span></a> <a href="/" role="button" class="button v-centered init twitter-share"><span class="button-icon"><svg class="icon fill-black" role="img" width="20" height="20">
                        <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#icon-twitter"></use></svg></span></a>
                    </div>
                    <div class="footer-newsletter">
                        <span class="newsletter-title-bloc">newsletter</span>
                        <form class="newsletter-inscription">
                            <input type="email" class="input-email newsletter-bar" value="" placeholder="email" /> <button class="newsletter-bar-submit" onclick="return validForm(this, 'newsletter-form');">ok</button>
                        </form>
                    </div>
                    <ul class="footer-menu-links clearfix">
                        <li class="footer-menu-link">
                            <a href="https://liberation.zendesk.com/hc/fr" class="link-footer">FAQ</a>
                        </li>
                        <li class="footer-menu-link">
                            <a href="/cgvu/#mentions-legales" class="link-footer">La rédaction</a>
                        </li>
                        <li class="footer-menu-link">
                            <a href="/contacts/" class="link-footer">Contact</a>
                        </li>
                        <li class="footer-menu-link">
                            <a href="http://www.alticemediapublicite.fr/marques/liberation-presse/" class="link-footer">Publicité</a>
                        </li>
                        <li class="footer-menu-link">
                            <a href="/cgvu/#donnees-personnelles" class="link-footer">Données personnelles</a>
                        </li>
                        <li class="footer-menu-link">
                            <a href="/cgvu/#cgv" class="link-footer">CGV</a>
                        </li>
                        <li class="footer-menu-link">
                            <a href="/cgvu/#charte-ethique" class="link-footer">Charte éthique</a>
                        </li>
                        <li class="footer-menu-link">
                            <a href="/cgvu/#credits" class="link-footer">Crédits</a>
                        </li>
                    </ul>
                </footer>
            </div>
            <div class="modal-shadow"></div>
            <script type="text/javascript">
            //<![CDATA[
            var body = document.getElementsByTagName('body')[0];

            var navSubscribeButton = document.getElementsByClassName('js-nav-subscribe-button')[0];
            var navUserButton = document.getElementsByClassName('js-nav-user-button')[0];
            var navUserButtonName = document.getElementsByClassName('js-nav-user-button-name')[0];

            if (libeUserInfo.authenticated) {
            body.className += ' authenticated';
            navUserButtonName.innerHTML = libeUserInfo.displayname;
            if(navUserButtonName.href) {
            navUserButtonName.href = 'http://token.liberation.fr/accounts/home/';
            } else {
            navUserButton.href = 'http://token.liberation.fr/accounts/home/';
            }
            }

            if (libeUserInfo.access_level === 'PRE' || libeUserInfo.access_level === 'ESS' ) {
            body.className += ' subscribed';
            navSubscribeButton.style.display = 'none';
            }

            // staff
            if (typeof libeUserInfo !== 'undefined' && libeUserInfo.is_staff) {
            var elements = document.getElementsByClassName('header-fix-nav');
            if(elements.length > 0) {
            var headerElem = elements[0];

            // div
            var adminNav = document.createElement('div');
            adminNav.className = 'admin-nav active';

            // span
            var titleElem = document.createElement('span');
            var titleTxt = document.createTextNode('Réservés aux administrateurs');
            titleElem.appendChild(titleTxt);

            adminNav.appendChild(titleElem);


            // buttons
            var adminButtons = [{
            text: 'Annuaire',
            href: libeUserInfo.url_dock + '/annuaire/',
            },{
            text: 'Back office',
            href: libeUserInfo.url_quai + '/quai/',
            },{
            text: 'Éditer',
            href: "javascript:location.href = '"+ libeUserInfo.url_quai +"/quai/redirect_to_change_view?u=' + location.href;",
            },{
            text: 'Actualiser',
            href: "javascript: window.location.href = window.location.pathname + '?refresh=' + Math.floor((Math.random() * 1000000) + 1);",
            }];

            if (libeUserInfo.is_superuser && typeof(objectId) !== 'undefined') {
            adminButtons.push({
            text: 'Compose',
            href: libeUserInfo.url_dock + '/compose/' + objectId + '/'
            })
            }

            for (i = 0; i < adminButtons.length; i++) {
            var elem = document.createElement('a');
            elem.href = adminButtons[i]['href'];
            var txt = document.createTextNode(adminButtons[i]['text']);
            elem.appendChild(txt);
            adminNav.appendChild(elem);
            }

            headerElem.insertBefore(adminNav, headerElem.firstChild);
            headerFixNavHeight = headerElem.offsetHeight;
            document.body.style.paddingTop = headerFixNavHeight + 'px';
            }
            }

            //]]>
            </script> 
            <script src="https://statics.liberation.fr/newnext/js/advertisement.js"></script>
        </div>
        <nav class="next-nav white-bg">
            <ul class="next-nav-cat next-color-07-c">
                <li>
                    <a href="/cinema,58">Cinéma</a>
                </li>
                <li>
                    <a href="/musique,59">Musique</a>
                </li>
                <li>
                    <a href="/livres,60">Livres</a>
                </li>
                <li>
                    <a href="/theatre,28">Scènes</a>
                </li>
                <li>
                    <a href="/arts,99964">Arts</a>
                </li>
                <li>
                    <a href="/images,100296">Images</a>
                </li>
                <li>
                    <a href="/vous,15">Lifestyle</a>
                </li>
                <li>
                    <a href="/mode,99924">Mode</a>
                </li>
                <li>
                    <a href="https://www.liberation.fr/beaute,100215">Beauté</a>
                </li>
                <li>
                    <a href="/food,100293">Food</a>
                </li>
            </ul>
        </nav>
        <main id="main-content" class="main-content page-next">
            <div class="viewer-container js-viewer">
                <div class="viewer-photo">
                    <ul class="viewer-slider-container js-viewer-pictures-container"></ul>
                </div>
                <div class="reader-nav">
                    <a href="javascript:void(0)" class="reader-nav-bloc reader-nav-button js-viewer-close-button"><svg class="icon" role="img" width="40" height="44">
                    <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#icon-reader-cross"></use></svg></a> <a href="javascript:void(0)" class="reader-nav-bloc reader-nav-button js-viewer-next-button"><svg class="icon" role="img" width="38" height="44">
                    <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#icon-viewer-previous"></use></svg></a> <a href="javascript:void(0)" class="reader-nav-bloc reader-nav-button js-viewer-prev-button"><svg class="icon" role="img" width="40" height="44">
                    <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#icon-viewer-next"></use></svg></a> <a href="javascript:void(0)" class="reader-nav-bloc reader-nav-button viewer-infos-button js-viewer-info-button">info</a> <a href="javascript:void(0)" class="reader-nav-bloc reader-nav-button js-viewer-next-button">/</a>
                </div>
            </div>
            <div class="pub-container ad-container">
                <div id="sas_28993"></div>
            </div>
            <div class="width-wrap">
                <article data-progress-bar="push" class="article-box top-line" data-url="/culture/2017/11/24/screenshot-vape-wave-6-days-alphonse-president_1612047">
                    <div class="width-padded">
                        <header class="article-header">
                            <div class="read-left-padding">
                                <div class="article-subhead">
                                    Sur vos écrans cette semaine
                                </div>
                                <h1 class="article-headline">
                                    Screenshot&#160;: «Vape Wave», «6&#160;Days», «Alphonse Président»…
                                </h1>
                                <div class="article-head-metas">
                                    <span class="authors">Par <span class="author"><a href="https://www.liberation.fr/auteur/5631-alexandre-hervaud">Alexandre Hervaud</a></span> et <span class="author"><a href="https://www.liberation.fr/auteur/17350-jeremy-piette">Jérémy Piette</a></span></span> — <span class="date"><time datetime="2017-11-24T18:42:20">24 novembre 2017 à 18:42</time></span>
                                </div>
                            </div>
                        </header>
                    </div>
                    <div class="container-column clearfix">
                        <div class="wide-column width-padded-left">
                            <figure class="article-image article-header-image">
                                <a role="button" class="figure-zoom js-figure-zoom"><img src="https://medias.liberation.fr/photo/1075029-screenshot-alphonse-vape-wave-6-days.jpg?modified_at=1511536242&amp;width=975" alt="«Vape Wave», «6 Days», «Alphonse président» et «Braguino»" data-src="https://medias.liberation.fr/photo/1075029-screenshot-alphonse-vape-wave-6-days.jpg?modified_at=1511536242&amp;width=975" data-src-retina="https://medias.liberation.fr/photo/1075029-screenshot-alphonse-vape-wave-6-days.jpg?modified_at=1511536242&amp;width=975" data-lazy-load="false" width="975" /> <i class="zoom-icon"><svg class="icon" role="img" width="22" height="22">
                                <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#icon-zoom"></use></svg></i></a>
                                <figcaption class="read-left-padding caption">
                                    <span class="desc">«Vape Wave», «6 Days», «Alphonse président» et «Braguino»</span> <span class="copy">DR</span>
                                    <div class="share-link">
                                        <span class="share"><a href="https://www.facebook.com/sharer/sharer.php?u=https%3A%2F%2Fnext.liberation.fr%2Fculture%2F2017%2F11%2F24%2Fscreenshot-vape-wave-6-days-alphonse-president_1612047&amp;t=Screenshot%C2%A0%3A+%C2%ABVape+Wave%C2%BB%2C+%C2%AB6%C2%A0Days%C2%BB%2C+%C2%ABAlphonse+Pr%C3%A9sident%C2%BB%E2%80%A6" class="js-share-facebook" rel="nofollow"><svg class="icon share-link-fb" role="img" width="20" height="20">
                                        <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#icon-facebook"></use></svg></a> <a href="https://twitter.com/intent/tweet?url=https%3A%2F%2Fnext.liberation.fr%2Fculture%2F2017%2F11%2F24%2Fscreenshot-vape-wave-6-days-alphonse-president_1612047&amp;text=Screenshot%C2%A0%3A+%C2%ABVape+Wave%C2%BB%2C+%C2%AB6%C2%A0Days%C2%BB%2C+%C2%ABAlphonse+Pr%C3%A9sident%C2%BB%E2%80%A6&amp;via=libe&amp;related=libe" class="js-share-twitter" rel="nofollow"><svg class="icon share-link-tw" role="img" width="20" height="20">
                                        <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#icon-twitter"></use></svg></a></span>
                                    </div>
                                </figcaption>
                            </figure>
                            <div class="article-body read-left-padding js-figure-zoom">
                                <p>
                                    Séries, documentaires, programmes jeunesse… Retrouvez les recommandations de&#160;<em>Libération</em>&#160;pour savoir quoi regarder sur vos écrans cette semaine.
                                </p>
                                <h3>
                                    Pour dépasser le tabac
                                </h3>
                                <p>
                                    <strong><em>Vape Wave</em> (documentaire, 1h28, Planète+)</strong>
                                </p>
                                <p>
                                    <iframe width="100%" src="https://www.youtube.com/embed/lGL7RgHn5f0" frameborder="0" allowfullscreen="allowfullscreen" data-aspect-ratio="0.5625" data-responsive="1"></iframe>
                                </p>
                                <p>
                                    Pendant quelques jours, le doute a plané&#160;: l’Etat comptait-il vraiment légiférer contre la cigarette dans les films français, que ce soit via une interdiction pure et simple ou via un système de «punition» (coupe des aides CNC, par exemple) pour les longs-métrages qui sentent le mégot&#160;? Si <a href="https://www.liberation.fr/direct/element/agnes-buzyn-assure-quelle-na-jamais-envisage-linterdiction-de-la-cigarette-au-cinema_73855/" target="_blank">le rétropédalage de la ministre Buzyn</a> n’en est pas vraiment un (elle n’avait jamais clairement menacé le septième art), la polémique a le mérite de pointer la (sur)représentation clopesque sur écran. Et si, comme c’est le cas dans la vie quotidienne, on voyait progressivement les cigarettes électroniques remplacer les tiges nicotinées authentiques&#160;? Que ceux qui mettraient en doute le potentiel cinématographique des vapoteuses se ruent sur <a href="http://www.vapewave.net/" target="_blank"><em>Vape Wave</em></a>, documentaire militant signé Jan Kounen, ex-fumeur reconverti à la vape dont les images magnifient les volutes de vapeur recrachée.
                                </p>
                                <p>
                                    Si le film du réalisateur de <em>Dobermann</em> et <em>99 Francs</em> part un peu dans tous les sens, il a le mérite de défendre avec une passion contagieuse ce qui semble, de loin, être <a href="https://www.liberation.fr/societe/2015/08/20/une-e-cigarette-tres-frequentable_1366687" target="_blank">le meilleur et plus sain substitut à la clope</a>, n’en déplaise aux mesures restrictives imposées en France <a href="https://www.liberation.fr/france/2017/10/03/la-cigarette-electronique-bannie-de-certains-lieux-publics_1600601" target="_blank">à son égard</a>. Financé en partie via crowdfunding, le documentaire a été présenté par Kounen à travers toute la France lors de projection tenant quasiment de l’évangélisation. Disponible en VOD/DVD, il a été diffusé cette semaine sur la chaîne Planète+, qui le rediffusera les 25/11, 30/11 et 02/12 prochains. <strong>(Alexandre Hervaud)</strong>
                                </p>
                                <h3>
                                    Pour écouter parler un génie
                                </h3>
                                <p>
                                    <strong><em>Dans la tête d’Alan Moore</em> (websérie documentaire, 8x5min, Arte Creative)</strong>
                                </p>
                                <p>
                                    <iframe width="100%" src="https://www.youtube.com/embed/s_rw5fPHz2g" frameborder="0" allowfullscreen="allowfullscreen" data-aspect-ratio="0.5625" data-responsive="1"></iframe>
                                </p>
                                <p>
                                    Le week-end dernier, <em>Libération</em> publiait <a href="http://next.liberation.fr/livres/2017/11/17/alan-moore-dernier-barde-avant-la-fin-du-monde_1610854" target="_blank">un portrait de der consacré à l’auteur britannique Alan Moore</a>, connu pour ses BD cultes (<em>V pour Vendetta, Watchmen, From Hell</em>), à l’occasion de la sortie de son deuxième roman, le pavé <em>Jérusalem</em>. En attendant l’imminente sortie d’une version longue de son entretien avec <em>Libé</em>, on pourra se replonger dans les épisodes d’une websérie documentaire d’Arte Creative en 8 épisodes consacré au maître. Brexit, magie, Anonymous font partie des sujets discutés avec le maître au fil de ce programme sobrement intitulé <a href="https://www.arte.tv/fr/videos/RC-014342/dans-la-tete-d-alan-moore/" target="_blank"><em>Dans la tête d’Alan Moore</em></a>. <strong>(A.H.)</strong>
                                </p>
                                <h3>
                                    Pour honorer la mémoire d’une icône queer
                                </h3>
                                <p>
                                    <strong><em>The Death and Life of Marsha P. Johnson</em> (docu, 1h45, Netflix)</strong>
                                </p>
                                <p>
                                    <iframe width="100%" src="https://www.youtube.com/embed/pADsuuPd79E" frameborder="0" allowfullscreen="allowfullscreen" data-aspect-ratio="0.5625" data-responsive="1"></iframe>
                                </p>
                                <p>
                                    Marsha, la <em>«Rosa Parks du mouvement LGBTQ»</em>. Marsha <em>«la prostituée, l’actrice et la sainte, modèle d’Andy Warhol»</em> ou encore Marsha l’élaborée, la radicale, <em>«avec ses plumes et ce maquillage qu’elle ne mettait jamais bien»</em>. «Queen Marsha» a été retrouvée morte dans l’Hudson en juillet&#160;1992, alors qu’on la voyait encore parader dans les rues de Greenwich Village quelques jours auparavant. Un choc glaçant. Là où son corps a été repêché puis ingratement déposé, les sans-abri ont constitué le lendemain un mémorial de bouteilles et de plantes qui délimitent les contours de l’absente.
                                </p>
                                <p>
                                    Marsha P. Johnson de son nom complet, icône queer, femme transgenre noire américaine et emblème de la lutte pour les droits des LGBTQ avait été l’une des premières à s’engager lors des émeutes de Stonewall à New York, en&#160;1969&#160;: <em>«C’est la révolution. Dieu merci.»</em> Marsha était une fleur souriante au parfum d’espoir. Le documentaire <em>The Death and Life of Marsha P. Johnson</em> du cinéaste David France relate l’enquête de l’activiste Victoria Cruz, membre de l’organisation Anti-Violence Project à New York qui, avant de prendre sa retraite, réclame que lumière soit faite sur la disparition de l’icône […]&#160;<a href="http://next.liberation.fr/cinema/2017/11/17/docu-marsha-p-johnson-unique-en-son-genre_1610846" target="_blank">Lire la suite de la critique de Jérémy Piette sur Libération.fr</a>
                                </p>
                                <h3>
                                    Pour Michel Vuilermoz (et rien d’autre)
                                </h3>
                                <p>
                                    <strong><em>Alphonse President</em> (série, 10x26, OCS Max)</strong>
                                </p>
                                <p>
                                    <iframe width="100%" frameborder="0" src="https://www.dailymotion.com/embed/video/x67iqc9" allowfullscreen="allowfullscreen" data-aspect-ratio="0.5625" data-responsive="1"></iframe>
                                </p>
                                <p>
                                    Un temps baptisée <em>French Touch</em>, la série <em>Alphonse Président</em> est le dernier né des programmes originaux made in OCS. On savait les budgets de la chaîne bien moins généreux que ceux de Canal+ (voire que ceux de France 3 Limousin), et cette série le prouve à nouveau régulièrement, notamment lors d’une scène de conférence de presse alternant plans larges d’une authentique conf' à l’Elysée période François Hollande et plans serrés d’acteurs filmés dans un château des Pays de la Loire où a eu lieu le tournage. Le principal atout (et quel atout) de cette série écrite et réalisée par Nicolas Castro (<em>Des lendemains qui chantent</em>, 2014) réside dans son interprète principal, Michel Vuillermoz.
                                </p>
                                <p>
                                    Dans le rôle d’un sénateur ringard devenu par un concours de circonstances président de la République, ce pensionnaire de la Comédie-Française et complice d’Albert Dupontel fait des merveilles, notamment lorsque le scénario lui prête des répliques enflammées typiques de la langue de bois politicienne –&#160;pas étonnant qu’il brasse du vent, son personnage de prof d’histoire retraité s’appelle Alphonse Dumoulin. C’est lorsqu’il n’est plus à l’écran que les choses se gâtent&#160;: si Jean-Michel Lahmi (de la bande d’Edouard Baer) fait le job en grand patron des flics, difficile de croire une seconde à Nabiha Akkari dans le rôle de la Première ministre –&#160;et pas uniquement parce que l’idée d’avoir une femme trentenaire issue de la diversité à Matignon sonne hélas comme un doux rêve en&#160;2017. Si, en matière de fiction politique sérieuse, un <em>Baron Noir</em> n’a pas grand-chose à envier à un <em>House of Cards</em>, côté comique la France est encore loin d’avoir son <em>Veep</em>. Gageons que la génération LREM saura largement inspirer des scénaristes moqueurs. <strong>(A.H.)</strong>
                                </p>
                                <h3>
                                    Pour les coulisses d’un tournage dément
                                </h3>
                                <p>
                                    <strong><em>Jim &amp; Andy</em> (documentaire, 1h33, Netflix)&#160;</strong>
                                </p>
                                <p>
                                    <iframe width="100%" src="https://www.youtube.com/embed/kB15UFO5ebA" frameborder="0" allowfullscreen="allowfullscreen" data-aspect-ratio="0.5625" data-responsive="1"></iframe>
                                </p>
                                <p>
                                    A la sortie de <em>Man on the Moon</em> (2000), le magnifique film de Milos Forman consacré à Andy Kaufman –&#160;comique et génie de la performance absurde mort en 1984&#160;–, le cinéaste et les acteurs insistaient dans chaque interview sur l’in­croyable comportement de Jim Carrey pendant le tournage&#160;: il aurait été comme possédé par Kaufman, se prenant pour lui 24&#160;heures sur 24. Certains affirmaient même ne jamais avoir eu l’impression que l’acteur était présent, tant son modèle avait littéralement pris sa place. Nous en avons aujourd’hui la preuve en images car tout cela avait été filmé par Bob Zmuda et Lynne Margulies, l’ancien complice et la veuve de Kaufman.
                                </p>
                                <p>
                                    Dans le passionnant <em>Jim &amp; Andy&#160;: the Great Beyond</em>, disponible sur Netflix, Chris Smith a monté ces documents inédits parallèlement à un entretien dans lequel Jim Carrey revient sur cette expérience unique. <a href="http://next.liberation.fr/cinema,58" target="_blank">Lire la suite de la critique de Marcos Uzal sur Liberation.fr</a>
                                </p>
                                <h3>
                                    Pour un trip sibérien en totale autarcie
                                </h3>
                                <p>
                                    <strong><em>Braguino</em> (documentaire, 50min, Arte)</strong>
                                </p>
                                <p>
                                    <iframe width="100%" src="https://www.youtube.com/embed/OIS-P-0-cRk" frameborder="0" allowfullscreen="allowfullscreen" data-aspect-ratio="0.5625" data-responsive="1"></iframe>
                                </p>
                                <p>
                                    La querelle peut se trouver derrière toutes les portes, y compris celle de l’exil. On a beau croire avoir tourné le dos à tout, à cette inclination humaine à nourrir sa&#160;propre haine, l’allergie peut regermer fissa sur une&#160;peau qui frissonne à&#160;l’approche de ce voisin que l’on ne comprend pas. Issu&#160;d’une lignée de vieux-croyants orthodoxes russes, Sacha Braguine a pris sa famille sous le bras, loin de toute autre présence humaine en taïga sibérienne. Un autre groupe, les Kiline, a décidé d’en faire de même et de s’installer de l’autre côté de la rivière. Qui est arrivé en premier&#160;? Qui menace l’autre&#160;? L’histoire de l’impossible communauté peut commencer.
                                </p>
                                <p>
                                    La lecture d’<em>Ermites dans la taïga</em>&#160;(1992) de Vassili Peskov, authentique récit sur la famille Lykov opérant une migration similaire en&#160;1938, a poussé l’artiste&#160;<a href="http://next.liberation.fr/images/2017/09/29/clement-cogitore-j-essaye-de-raconter-les-terreurs-profondes-de-l-etre-humain_1599854">Clément Cogitore</a>&#160;à&#160;rencontrer les Braguine, puis à se faire témoin de la&#160;bisbille de voisinage en&#160;2016. Il en est revenu avec un nouveau film d’une cinquantaine de minutes&#160;:&#160;<em>Braguino,</em>&#160;soutenu par le prix Le&#160;Bal de la&#160;jeune création avec l’ADAGP.<em>&#160;</em>Le documentaire y frôle son déguisement fictionnel, tant ce qui s’y déroule convoque une dramaturgie comme invoquée par on ne sait quel rituel vaudou […] <a href="http://next.liberation.fr/cinema/2017/10/30/braguino-prises-de-bec-dans-la-taiga_1606859" target="_blank">Lire la suite de la critique de Jérémy Piette sur Liberation.fr</a>, le film diffusé cette semaine sur Arte est visible en intégralité ci-dessus.
                                </p>
                                <h3>
                                    Pour un thriller tiré de faits réels
                                </h3>
                                <p>
                                    <strong><em>6 Days</em> (film, 1h34, Netflix)</strong>
                                </p>
                                <p>
                                    <iframe width="100%" src="https://www.youtube.com/embed/7HthiTi_IcI" frameborder="0" allowfullscreen="allowfullscreen" data-aspect-ratio="0.5625" data-responsive="1"></iframe>
                                </p>
                                <p>
                                    Fin avril 1980, l’ambassade d’Iran à Londres a été le théâtre d’une prise d’otages largement médiatisée : une trentaine de personnes ont ainsi été retenues pendant six jours par des soldats iraniens dissidents exigeant la libération de 91 prisonniers. Avec Margaret Thatcher au 10 Downing Street à l’époque, pas question pour l’Angleterre d’avoir l’air mou du genou sur la réponse à apporter à cette crise scrutée par les caméras du monde entier. Le SAS (Special Air Service) est sur le coup : l’opération Nimrod se met en place pour prendre d’assaut l’ambassade.
                                </p>
                                <p>
                                    Inspiré par cet épisode, <em>6 Days</em> de&#160;Toa Fraser (<em>The Dead Lands</em>, 2014) est un thriller carré pouvant compter sur l'autorité naturelle de Mark Strong (<em>Kingsman</em>) ici recyclé en flic londonien et sur la néo-badass attitude de Jamie Bell, bien loin du freluquet danseur de <em>Billy Elliot</em> puisqu'on le retrouve ici&#160;en soldat chargé d’organiser l’opération de secours. Attention, la bande-annonce ci-dessus dévoile à peu près l’intégralité des scènes d’action du film. <strong>(A.H.)</strong>
                                </p><span class="authors"><span class="author"><a href="https://www.liberation.fr/auteur/5631-alexandre-hervaud">Alexandre Hervaud</a></span> , <span class="author"><a href="https://www.liberation.fr/auteur/17350-jeremy-piette">Jérémy Piette</a></span></span>
                            </div>
                        </div>
                        <aside class="aside-column side-flow-bloc width-padded">
                            <div class="bloc-share clearfix">
                                <div class="bloc-share-button">
                                    <a href="https://www.facebook.com/sharer/sharer.php?u=https%3A%2F%2Fnext.liberation.fr%2Fculture%2F2017%2F11%2F24%2Fscreenshot-vape-wave-6-days-alphonse-president_1612047&amp;t=Screenshot%C2%A0%3A+%C2%ABVape+Wave%C2%BB%2C+%C2%AB6%C2%A0Days%C2%BB%2C+%C2%ABAlphonse+Pr%C3%A9sident%C2%BB%E2%80%A6" class="js-share-facebook bloc-share-social fb" rel="nofollow"><i class="button-icon fb"><svg class="icon" role="img" width="20" height="20">
                                    <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#icon-facebook"></use></svg></i>
                                    <p>
                                        partager
                                    </p></a>
                                </div>
                                <div class="bloc-share-button">
                                    <a href="https://twitter.com/intent/tweet?url=https%3A%2F%2Fnext.liberation.fr%2Fculture%2F2017%2F11%2F24%2Fscreenshot-vape-wave-6-days-alphonse-president_1612047&amp;text=Screenshot%C2%A0%3A+%C2%ABVape+Wave%C2%BB%2C+%C2%AB6%C2%A0Days%C2%BB%2C+%C2%ABAlphonse+Pr%C3%A9sident%C2%BB%E2%80%A6&amp;via=libe&amp;related=libe" class="js-share-twitter bloc-share-social tw" rel="nofollow"><i class="button-icon tw"><svg class="icon" role="img" width="20" height="20">
                                    <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#icon-twitter"></use></svg></i>
                                    <p>
                                        tweeter
                                    </p></a>
                                </div>
                                <div class="bloc-share-tools">
                                    <a data-libe-tooltip="Imprimer" class="bloc-share-action js-share-print" href="javascript:;" onclick="window.print();"><svg class="icon" role="img" width="27" height="22">
                                    <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#icon-print"></use></svg></a> <a data-libe-tooltip="Envoyer par mail" class="bloc-share-action" href="mailto:?subject=Lu%20sur%20liberation.fr%20&amp;body=Screenshot%C2%A0%3A%20%C2%ABVape%20Wave%C2%BB%2C%20%C2%AB6%C2%A0Days%C2%BB%2C%20%C2%ABAlphonse%20Pr%C3%A9sident%C2%BB%E2%80%A6%0D%0A%0D%0A%0D%0ARetrouvez%20cet%20article%20sur%20le%20site%20de%20Lib%C3%A9ration%20:%20https%3A//next.liberation.fr/culture/2017/11/24/screenshot-vape-wave-6-days-alphonse-president_1612047"><svg class="icon" role="img" width="23" height="24">
                                    <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#icon-mail"></use></svg></a>
                                </div>
                            </div>
                            <div class="sticky-element-container sideblocks-container js-sideblocks-container">
                                <div class="unsubs-content sticky-element">
                                    <div class="bloc-yellow-header unsubs-content">
                                        <a href="http://token.liberation.fr/accounts/personal-data/"><svg class="icon" role="img" width="15" height="24">
                                        <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#icon-abo-ribbon"></use></svg>
                                        <div class="header-title js-nav-user-button-name"></div><span class="header-text">Vous êtes abonné à Libération</span></a>
                                    </div>
                                    <script type="text/javascript">
                                    //<![CDATA[
                                    (function() {
                                    buttons = document.getElementsByClassName('header-title js-nav-user-button-name')
                                    for( pos = 0 ; pos < buttons.length ; pos++ ){
                                    buttons[pos].innerHTML = libeUserInfo['full_name'] ? libeUserInfo['full_name'] : libeUserInfo['displayname'];
                                    }
                                    })();
                                    //]]>
                                    </script>
                                    <div class="flow-bloc flow-bloc-subscription">
                                        <div class="bloc-title">
                                            Le journal d'aujourd'hui
                                        </div>
                                        <div class="flow-bloc-content">
                                            <a href="/liseuse/publication/01-03-2019/" class="">
                                            <div class="flow-bloc-journal">
                                                <img src="/liseuse/paperpage/262207/" alt="" class="journal-une-img" width="229" />
                                            </div></a>
                                            <ul class="list-bottom-box">
                                                <li>
                                                    <a class="list-bottom-item" href="/publication/">découvrir le sommaire</a>
                                                </li>
                                                <li>
                                                    <a class="list-bottom-item" href="https://www.liberation.fr/france/2019/02/28/dilemmes_1712264">lire l'édito</a>
                                                </li>
                                                <li>
                                                    <a class="list-bottom-item" href="/liseuse/publication/01-03-2019/">feuilleter</a>
                                                </li>
                                                <li>
                                                    <a class="list-bottom-item subscription-bloc" href="http://token.liberation.fr/accounts/offers"><strong>s'abonner</strong> à partir de 8€</a>
                                                </li>
                                            </ul>
                                        </div>
                                    </div>
                                </div>
                                <div class="sticky-element js-replace-asq" style="display: none;">
                                    <div class="flow-bloc flow-bloc-subscription subs-desc single full-bg subs-content">
                                        <div class="subs-punch">
                                            Offre 100% numérique: <strong>8€ par mois sans engagement</strong>
                                        </div><img width="170" height="100" alt="" src="https://statics.liberation.fr/newnext/images/illu-daily-journal-wb.svg" />
                                        <p class="desc-txt">
                                            Le journal du jour en exclusivité et le journal de demain avant tout le monde
                                        </p><a href="http://token.liberation.fr/accounts/offers" class="subscription-desc-button">Voir les offres d’abonnement</a>
                                    </div>
                                </div>
                            </div>
                            <div class="pined-bottom">
                                <div class="bloc-share clearfix">
                                    <div class="bloc-share-button">
                                        <a href="https://www.facebook.com/sharer/sharer.php?u=https%3A%2F%2Fnext.liberation.fr%2Fculture%2F2017%2F11%2F24%2Fscreenshot-vape-wave-6-days-alphonse-president_1612047&amp;t=Screenshot%C2%A0%3A+%C2%ABVape+Wave%C2%BB%2C+%C2%AB6%C2%A0Days%C2%BB%2C+%C2%ABAlphonse+Pr%C3%A9sident%C2%BB%E2%80%A6" class="js-share-facebook bloc-share-social fb" rel="nofollow"><i class="button-icon fb"><svg class="icon" role="img" width="20" height="20">
                                        <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#icon-facebook"></use></svg></i>
                                        <p>
                                            partager
                                        </p></a>
                                    </div>
                                    <div class="bloc-share-button">
                                        <a href="https://twitter.com/intent/tweet?url=https%3A%2F%2Fnext.liberation.fr%2Fculture%2F2017%2F11%2F24%2Fscreenshot-vape-wave-6-days-alphonse-president_1612047&amp;text=Screenshot%C2%A0%3A+%C2%ABVape+Wave%C2%BB%2C+%C2%AB6%C2%A0Days%C2%BB%2C+%C2%ABAlphonse+Pr%C3%A9sident%C2%BB%E2%80%A6&amp;via=libe&amp;related=libe" class="js-share-twitter bloc-share-social tw" rel="nofollow"><i class="button-icon tw"><svg class="icon" role="img" width="20" height="20">
                                        <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#icon-twitter"></use></svg></i>
                                        <p>
                                            tweeter
                                        </p></a>
                                    </div>
                                    <div class="bloc-share-tools">
                                        <a data-libe-tooltip="Imprimer" class="bloc-share-action js-share-print" href="javascript:;" onclick="window.print();"><svg class="icon" role="img" width="27" height="22">
                                        <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#icon-print"></use></svg></a> <a data-libe-tooltip="Envoyer par mail" class="bloc-share-action" href="mailto:?subject=Lu%20sur%20liberation.fr%20&amp;body=Screenshot%C2%A0%3A%20%C2%ABVape%20Wave%C2%BB%2C%20%C2%AB6%C2%A0Days%C2%BB%2C%20%C2%ABAlphonse%20Pr%C3%A9sident%C2%BB%E2%80%A6%0D%0A%0D%0A%0D%0ARetrouvez%20cet%20article%20sur%20le%20site%20de%20Lib%C3%A9ration%20:%20https%3A//next.liberation.fr/culture/2017/11/24/screenshot-vape-wave-6-days-alphonse-president_1612047"><svg class="icon" role="img" width="23" height="24">
                                        <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#icon-mail"></use></svg></a>
                                    </div>
                                </div>
                            </div>
                        </aside>
                    </div>
                </article>
            </div>
            <div class="width-wrap category-container">
                <div class="container-column clearfix">
                    <div class="wide-column js-infinity-section-container next-footer-section">
                        <link rel="next" href="/?page=1&amp;list" />
                    </div>
                    <aside class="next-aside-container aside-column width-padded">
                        <div class="sticky-element-container sideblocks-container js-sideblocks-container">
                            <div class="unsubs-content sticky-element">
                                <div class="bloc-yellow-header unsubs-content">
                                    <a href="http://token.liberation.fr/accounts/personal-data/"><svg class="icon" role="img" width="15" height="24">
                                    <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#icon-abo-ribbon"></use></svg>
                                    <div class="header-title js-nav-user-button-name"></div><span class="header-text">Vous êtes abonné à Libération</span></a>
                                </div>
                                <script type="text/javascript">
                                //<![CDATA[
                                (function() {
                                buttons = document.getElementsByClassName('header-title js-nav-user-button-name')
                                for( pos = 0 ; pos < buttons.length ; pos++ ){
                                buttons[pos].innerHTML = libeUserInfo['full_name'] ? libeUserInfo['full_name'] : libeUserInfo['displayname'];
                                }
                                })();
                                //]]>
                                </script>
                                <div class="flow-bloc flow-bloc-subscription">
                                    <div class="bloc-title">
                                        Le journal d'aujourd'hui
                                    </div>
                                    <div class="flow-bloc-content">
                                        <a href="/liseuse/publication/01-03-2019/" class="">
                                        <div class="flow-bloc-journal">
                                            <img src="/liseuse/paperpage/262207/" alt="" class="journal-une-img" width="229" />
                                        </div></a>
                                        <ul class="list-bottom-box">
                                            <li>
                                                <a class="list-bottom-item" href="/publication/">découvrir le sommaire</a>
                                            </li>
                                            <li>
                                                <a class="list-bottom-item" href="https://www.liberation.fr/france/2019/02/28/dilemmes_1712264">lire l'édito</a>
                                            </li>
                                            <li>
                                                <a class="list-bottom-item" href="/liseuse/publication/01-03-2019/">feuilleter</a>
                                            </li>
                                            <li>
                                                <a class="list-bottom-item subscription-bloc" href="http://token.liberation.fr/accounts/offers"><strong>s'abonner</strong> à partir de 8€</a>
                                            </li>
                                        </ul>
                                    </div>
                                </div>
                            </div>
                            <div class="sticky-element bloc-ads ad-container">
                                <div id="sas_28999"></div>
                            </div>
                        </div>
                    </aside>
                </div>
            </div>
            <div class="js-infinity-contentmodel-container"></div>
            <div class="libe-aside-comment js-stop-scroll-propagation">
                <div class="libe-comment-header">
                    <a href="" class="libe-comment-close"></a>
                    <div class="libe-comment-header-title">
                        Un mot à ajouter ?
                    </div>
                </div>
            </div>
            <div id="sas_28991"></div>
            <div id="sas_28990"></div>
        </main>
        <script type="text/javascript" src="https://statics.liberation.fr/newnext/cache/js/321bd053e6d6.js"></script> 
        <script type="text/javascript" src="https://statics.liberation.fr/newnext/cache/js/107fa81103c2.js"></script> 
        <script type="text/javascript">
        //<![CDATA[


          var JSONData = JSON.parse("{\u0022title\u0022: \u0022Screenshot\u005Cu00a0: \u005Cu00abVape Wave\u005Cu00bb, \u005Cu00ab6\u005Cu00a0Days\u005Cu00bb, \u005Cu00abAlphonse Pr\u005Cu00e9sident\u005Cu00bb\u005Cu2026\u0022, \u0022xiti_level\u0022: \u002242\u0022, \u0022section\u0022: \u0022Culture\u0022, \u0022author\u0022: \u0022Web\u0022, \u0022xiti_page\u0022: \u0022Culture::Article_\u002D_Screenshot_Vape_Wave_6_Days_Alphonse_President_\u002D_1612047\u0022, \u0022facebook\u0022: \u0022https://www.facebook.com/sharer/sharer.php?u\u003Dhttps%3A%2F%2Fnext.liberation.fr%2Fculture%2F2017%2F11%2F24%2Fscreenshot\u002Dvape\u002Dwave\u002D6\u002Ddays\u002Dalphonse\u002Dpresident_1612047\u0026t\u003DScreenshot%C2%A0%3A+%C2%ABVape+Wave%C2%BB%2C+%C2%AB6%C2%A0Days%C2%BB%2C+%C2%ABAlphonse+Pr%C3%A9sident%C2%BB%E2%80%A6\u0022, \u0022pw_date\u0022: \u00222019\u002D03\u002D01T15:32:22.666827\u0022, \u0022pk\u0022: 1612047, \u0022twitter\u0022: \u0022https://twitter.com/intent/tweet?url\u003Dhttps%3A%2F%2Fnext.liberation.fr%2Fculture%2F2017%2F11%2F24%2Fscreenshot\u002Dvape\u002Dwave\u002D6\u002Ddays\u002Dalphonse\u002Dpresident_1612047\u0026text\u003DScreenshot%C2%A0%3A+%C2%ABVape+Wave%C2%BB%2C+%C2%AB6%C2%A0Days%C2%BB%2C+%C2%ABAlphonse+Pr%C3%A9sident%C2%BB%E2%80%A6\u0026via\u003Dlibe\u0026related\u003Dlibe\u0022}");


        var genericSettings = {};

          genericSettings['paddix'] = JSON.parse('{"enabled": true}');

          genericSettings['paywall'] = JSON.parse('{"enabled": true}');

          genericSettings['ads'] = JSON.parse('{"enabled": true}');

          genericSettings['elections'] = JSON.parse('{"election_tour": "2", "election_name": "Pr\u00e9sidentielle 2017", "enabled": false, "election_constant": "PR2017", "file_path": "/data/ftp/fremen/data/PR2017/", "election_url": "/elections/presidentielle-2017/"}');

        var StaticUrl = "https://statics.liberation.fr/newnext/";
        //]]>
        </script> 
        <script type="text/javascript" src="https://www6.smartadserver.com/config.js?nwid=14"></script> 
        <script type="text/javascript">
        //<![CDATA[

        if (typeof sas !== 'undefined') {
          sas.setup({domain: 'https://www6.smartadserver.com', async: true, renderMode: 0});
        }
        //]]>
        </script> 
        <script type="text/javascript" src="https://widgets.outbrain.com/outbrain.js"></script> 
        <script id="twitter-wjs" type="text/javascript" async="async" defer="defer" src="https://platform.twitter.com/widgets.js"></script> 
        <script type="text/javascript">
        //<![CDATA[

        (function(d,s,id){var js,fjs=d.getElementsByTagName(s)[0];if(d.getElementById(id)) return;js=d.createElement(s);js.id=id;js.src='//connect.facebook.net/fr_FR/all.js#xfbml=1&appId=WWWWWW';fjs.parentNode.insertBefore(js,fjs);}(document,'script','facebook-jssdk'));
        //]]>
        </script> 
        <script type="text/javascript">
        //<![CDATA[


        var pw_duration = 7;
        var pw_session_time = 30;
        var pw_session_count = 4;
        var pw_date = '2019-03-01T15:32:23.483787';




        var pw_constants = {"PW_DENY": {"footer_link": "https://token.liberation.fr/accounts/login/", "cta_link": "https://next.liberation.fr/offre-numerique/", "text": "Pour continuer \u00e0 consulter nos articles et nous soutenir, abonnez-vous d\u00e8s maintenant", "title": "Vous avez profit\u00e9 des 4 visites\n offertes par Lib\u00e9ration", "cta_text": "Je m'abonne", "poster": "https://statics.liberation.fr/newnext/images/paywall/paywall-5.jpg", "offer_name": "100% num\u00e9rique", "offer_price": "8\u20ac", "footer_text": "Je suis d\u00e9j\u00e0 abonn\u00e9"}, "PW_MSG": [{"count": 1, "status": "Lib\u00e9ration vous offre 4 visites !", "cta_link": null, "text": "Soutenez notre culture de d\u00e9bats et de libert\u00e9 en rejoignant la communaut\u00e9 des abonn\u00e9s et des journalistes de Lib\u00e9ration", "title": "Nos contenus ont de la valeur\npour vous comme pour nous", "cta_text": "Poursuivre ma lecture", "poster": "https://statics.liberation.fr/newnext/images/paywall/paywall-1.jpg", "footer_text": "D\u00e9couvrir l'offre", "footer_link": "https://token.liberation.fr/accounts/offers/"}, {"count": 2, "status": "Lib\u00e9ration vous offre encore 3 visites !", "cta_link": null, "text": "en \u00e9tant toujours honn\u00eate, tol\u00e9rant et prospectif", "title": "Cr\u00e9er le d\u00e9bat et le nourrir", "cta_text": "Poursuivre ma lecture", "poster": "https://statics.liberation.fr/newnext/images/paywall/paywall-2.jpg", "footer_text": "D\u00e9couvrir l'offre", "footer_link": "https://token.liberation.fr/accounts/offers/"}, {"count": 3, "status": "Lib\u00e9ration vous offre encore 2 visites !", "cta_link": "https://next.liberation.fr/offre-numerique/", "text": "Contribuez \u00e0 faire vivre le journalisme exigeant en vous abonnant", "title": "Soyons r\u00e9alistes:\nIl n'y a pas de qualit\u00e9 sans financement", "cta_text": "M'abonner sans engagement - 8\u20ac/MOIS", "poster": "https://statics.liberation.fr/newnext/images/paywall/paywall-3.jpg", "footer_text": "D\u00e9couvrir l'offre", "footer_link": "https://token.liberation.fr/accounts/offers/"}, {"count": 4, "status": "C'est votre derni\u00e8re visite gratuite", "cta_link": "https://next.liberation.fr/offre-numerique/", "text": "Soutenez le journalisme vigilant et progressiste en vous abonnant", "title": "Si vous \u00eates arriv\u00e9(e) jusque l\u00e0 c\u2019est que vous aimez Lib\u00e9, merci", "cta_text": "M'abonner sans engagement - 8\u20ac/MOIS", "poster": "https://statics.liberation.fr/newnext/images/paywall/paywall-4.jpg", "footer_text": "D\u00e9couvrir l'offre", "footer_link": "https://token.liberation.fr/accounts/offers/"}]};
        var pw_json_alert = "\n<div class=\"pws anim-in\">\n  <div class=\"pw-container\">\n    <a class=\"pw-action-close discard\">\n      <img src=\"https://statics.liberation.fr/newnext/images/paywall/icons/close-cross.png\" alt=\"\">\n    <\/a>\n    <div class=\"pw-status\">\n      <p class=\"pw-status-text\">%%status%%<\/p>\n    <\/div>\n\n    <div class=\"pw-poster\" style=\"background-image: url(%%poster%%);\">\n      <img src=\"https://statics.liberation.fr/newnext/images/paywall/calque-paywall.png\" alt=\"\" class=\"pw-poster__image__calque\">\n    <\/div>\n\n    <div class=\"pw-text\">\n      <div class=\"pw-text__title\">\n        <p class=\"pw-text__title__text\">%%title%%<\/p>\n      <\/div>\n      <div class=\"pw-text__desc\">\n        <p class=\"pw-text__desc__text\">%%text%%<\/p>\n      <\/div>\n    <\/div>\n    <div class=\"pw-footer\">\n      <button class=\"pw-footer__main-cta ldg__main-button\">%%cta_text%%<\/button>\n      <a href=\"%%footer_link%%\" class=\"pw-footer__offer-cta\">%%footer_text%%<\/a>\n    <\/div>\n  <\/div>\n<\/div>\n";
        var pw_json_deny = "\n<div class=\"pws\">\n  <!-- PAYWALL DENY -->\n  <div class=\"pw-container pw-container--last\">\n    <div class=\"pw-poster\" style=\"background-image: url(%%poster%%);\">\n      <img src=\"https://statics.liberation.fr/newnext/images/paywall/calque-paywall.png\" alt=\"\" class=\"pw-poster__image__calque\">\n    <\/div>\n    <div class=\"pw-text\">\n      <div class=\"pw-text__title\">\n        <p class=\"pw-text__title__text\">%%title%%<\/p>\n      <\/div>\n      <div class=\"pw-text__desc\">\n        <p class=\"pw-text__desc__text\">%%text%%<\/p>\n      <\/div>\n    <\/div>\n    <div class=\"pw-cta cta-paywall-1\">\n      <div class=\"cta-paywall-1__mockup\">\n        <img class=\"cta-paywall-1__mockup__image\" src=\"https://statics.liberation.fr/newnext/images/paywall/offer-numerique-mobile.png\" alt=\"\">\n      <\/div>\n      <div class=\"cta-paywall-1__body\">\n        <span class=\"cta-paywall-1__body__info\">%%offer_name%%<\/span>\n        <div class=\"cta-paywall-1__body__price\">\n          <span class=\"cta-paywall-1__body__price__item\">%%offer_price%%<\/span>\n          <p class=\"cta-paywall-1__body__price__text\">\n            <span class=\"cta-paywall-1__body__price__text__1\">par mois<\/span>\n            <span class=\"cta-paywall-1__body__price__text__2\">sans engagement<\/span>\n          <\/p>\n        <\/div>\n      <\/div>\n      <div class=\"cta-paywall-1__footer\">\n        <button class=\"ldg__main-button cta-paywall-1__footer__cta ldg__main-button\" data-location=\"%%cta_link%%\">%%cta_text%%<\/button>\n      <\/div>\n    <\/div>\n    <div class=\"pw-footer\">\n      <a href=\"%%footer_link%%?next=/culture/2017/11/24/screenshot-vape-wave-6-days-alphonse-president_1612047\" class=\"pw-footer__offer-cta\">%%footer_text%%<\/a>\n    <\/div>\n  <\/div>\n<\/div>\n";


        var paywall = new Paywall();

        paywall.updateCurrentSession();

        paywall.readArticle();

        //]]>
        </script> 
        <script type="text/javascript">
        //<![CDATA[

        /*************************************************
        *                   Chartbeat                    *
        *************************************************/

        var _sf_async_config = {};
        _sf_async_config.uid = 43601;
        _sf_async_config.domain = 'liberation.fr';
        _sf_async_config.useCanonical = true;


        _sf_async_config.sections = 'Culture';



        _sf_async_config.authors = 'Web';


        (function() {
        function loadChartbeat() {
        window._sf_endpt = (new Date()).getTime();
        var e = document.createElement('script');
        e.setAttribute('language', 'javascript');
        e.setAttribute('type', 'text/javascript');
        e.setAttribute('src', '//static.chartbeat.com/js/chartbeat.js');
        document.body.appendChild(e);
        }

        var oldonload = window.onload;
        window.onload = (typeof window.onload != "function") ?
        loadChartbeat : function() { oldonload(); loadChartbeat(); };
        })();

        /*************************************************
        *                Google Analytics                *
        *************************************************/

        (function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
        (i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
        m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
        })(window,document,'script','//www.google-analytics.com/analytics.js','ga');


        ga('create', 'UA-41822557-1', 'auto');

        ga('set', 'dimension1', libeUserInfo.authenticated.toString());            // authenticated
        ga('set', 'dimension2', libeUserInfo.access_level);                        // level
        ga('set', 'dimension3', libeUserInfo.softwarer_blocker ? 'true': 'false'); // adblock
        ga('set', 'dimension4', libeUserInfo.xiti_user_id ?                        // uid
        libeUserInfo.xiti_user_id.toString() :
        null
        );

        if ('undefined' !== typeof libe_ga_datas) {
        for(var key in libe_ga_datas) {
        var value = libe_ga_datas[key];
        ga('set', key, value);
        }
        }

        ga('send', 'pageview');
        //]]>
        </script> <!--**********************************************
*                      Xiti                      *
***********************************************-->
         
        <script type="text/javascript">
        //<![CDATA[

        xtnv = document;        //parent.document or top.document or document
        xtsd = "https://logs1091";
        xtsite = "381060";
        xtn2 = "42";        // level 2
        xtpage = "Culture::Article_\u002D_Screenshot_Vape_Wave_6_Days_Alphonse_President_\u002D_1612047";        //page name (with the use of :: to create chapters)
        xtdi = "";
        xt_pagetype = "2\u002D1\u002D0";
        xt_multc = "\u0026x1\u003D0\u0026x2\u003D40\u0026x3\u003D10\u0026x4\u003D\u0026x5\u003D20171124\u0026x6\u003D20\u0026x7\u003D1612047";

        // if the user is part of the staff we don't take it into account
        if (typeof(libeUserInfo["is_staff"]) != "undefined" && libeUserInfo["is_staff"]) {
            xt_an = "";
            xt_ac = "";
        }
        else {
            // it is ok to test against libeUserInfo because the script that sets it is blocking
            xt_an = typeof(libeUserInfo["xiti_user_id"]) == "undefined" ? "" : libeUserInfo["xiti_user_id"];
            xt_ac = typeof(libeUserInfo["xiti_access_level"]) == "undefined" ? "" : libeUserInfo["xiti_access_level"];
        }

        // software blocker
        if (typeof(libeUserInfo["softwarer_blocker"]) != "undefined") {
            xt_multc += "&x8=" + libeUserInfo["softwarer_blocker"]
        }

        if (window.xtparam==null) { window.xtparam = ''; }
        window.xtparam += "&ptype="+xt_pagetype+"&ac="+xt_ac+"&an="+xt_an+xt_multc;
        //]]>
        </script> <noscript><img width="1" height="1" alt="xiti" src="https://logs1091.xiti.com/hit.xiti?s=381060&amp;s2=42&amp;p=Culture::Article_-_Screenshot_Vape_Wave_6_Days_Alphonse_President_-_1612047&amp;ptype=2-1-0&amp;di=&amp;ac=&amp;an=&amp;x1=0&amp;x2=40&amp;x3=10&amp;x4=&amp;x5=20171124&amp;x6=20&amp;x7=1612047" /></noscript> 
        <script type="text/javascript" src="https://statics.liberation.fr/newnext/cache/js/8f00b3ddc4db.js"></script> <!--/*********************************************
*                  Mediametrie                   *
**********************************************/-->
        <script>
        <![CDATA[

        (function(){  
        // 1. Loading the measurement system  
        var aS = document.createElement('script');  
        aS.type = 'text/javascript';  
        aS.async = true;  
        aS.src = 'https://tag.audience.acpm.fr/js/on-1.0.min.js';  

        var s = document.getElementsByTagName('script')[0];  
        s.parentNode.insertBefore(aS, s);  

        // 2. Sending the measurement  
        if(aS.addEventListener) {  
          aS.addEventListener('load', function(){  
              aSloaded();  
          }, false)  
        } else {  
          aS.onreadystatechange = function () {  
              if (aS.readyState in {complete: 1, loaded: 1}) {  
                  aSloaded();  
              }  
          };  
        }  
        aSloaded = function(){  
          var tag = new Acpm.Tag("201001216586");  // Insert the serial provided by ACPM
          tag.send();                     
        };  
        })();  
        ]]>
        </script> 
        <script type="text/javascript">
        //<![CDATA[

        var sasOptions = {
        siteId: 130093,
        pageId: 736918,
        formats: ['28993', '28999', '28991', '28990', '29000'],
        target: {
        support: 'article',
        objectId: '1612047',
        primarySection: '54',
        typology: '10',
        section: [9,54],
        site: '2'
        }
        };


        Article.init();

        //]]>
        </script> 
        <script type="text/javascript">
        //<![CDATA[

        initInfinityScroll({
        $container: $('.js-infinity-section-container'),
        replaceState: false,
        limitPages: 1,
        });
        $(document).on('infinityScrollNewPage', function(){
        $('img').unveil();
        })
        //]]>
        </script> <!-- Eulerian Analytics - Tag Generique -->
         
        <script type="text/javascript">

        /*<![CDATA[*/
        var dmp = {
        cat1: '',
        cats: '',
        keywords: '',
        uid: libeUserInfo.email_hash
        };

        dmp.keywords = ['Documentaire', 'Libération', 'Netflix', 'Arte', 'Marsha P. Johnson', 'Alan Moore', 'France', 'New York', 'Cinéaste', 'Thriller', 'Special Air Service', 'Acteur', 'Web\u002Dsérie', 'Opération Nimrod', 'Jim Carrey', 'Winamp', 'Planète+', 'Queer', 'LGBT', 'Icône', 'From Hell', 'Comique', 'Etty Buzyn', 'Bande\u002Dannonce', 'Jefferson Starship', 'Vieux\u002Dcroyants', 'Greenwich Village', 'V pour Vendetta', 'Michel Vuillermoz', 'Évangélisation', 'Sans\u002Dabri', 'Frein de bicyclette', 'Cigarette', 'Allergie', 'États\u002DUnis', 'Dieu merci!', 'Londres', 'Édouard Baer', 'Clément Cogitore', 'Margaret Thatcher', 'Vidéo à la demande', 'Pays de la Loire', 'Cinéma', 'Brasses', 'Réalisateur', '10 Downing Street', 'Jérusalem', 'Orange Cinéhappy', 'Mégot', 'Long métrage', 'Un grand patron', 'Droits de l\u0027homme', 'Baron noir', 'Ermites dans la taïga', 'DVD', 'Parfum', 'Financement participatif', 'Révolution', 'Albert Dupontel', 'Sénat', 'Andy Kaufman', 'Autarcie', 'Royaume\u002DUni', 'Famille Lykov', 'Brexit', 'Captures d\u0027écran', 'Jan Kounen', 'Dobermann', 'Comédie\u002DFrançaise', 'Famille', 'Taïga', 'Queen', 'Prise d\u0027otages des Jeux olympiques de Munich', 'Président de la République', '99 francs', 'Langue de bois', 'Miloš Forman', 'Torture', 'Watchmen', 'Anonymous', 'François Hollande', 'The Dead Lands', 'Mark Strong', 'Jamie Bell', 'Nabiha Akkari', 'Jean\u002DMichel Lahmi', 'France 3 Limousin', 'Tournage', 'Élysée', 'Cigarette électronique', 'Billy Elliot', 'Andy Warhol', 'Vaudou', 'Des lendemains qui chantent', 'Prostitution', 'Angleterre', 'Rosa Parks', 'Bob Zmuda', 'Émeutes de Stonewall', 'CNC', 'MtF', 'Tabac', 'Michel Serres', 'Violence', 'ADAGP', 'French Touch', 'Premier ministre', 'Canal+', 'Danse', 'Man on the Moon', 'The Great Beyond', 'Veep', 'House of Cards', 'Vassili Peskov', ];
        dmp.cat1 = 'culture';
        dmp.cats = ['la-une','culture'];


        var EA_data = [
        'path','LIB_WEB/https://next.liberation.fr/culture/2017/11/24/screenshot-vape-wave-6-days-alphonse-president_1612047'.replace('http://', '') /*Nom de page*/
        ,'uid',dmp.uid /*Email hashé*/
        ,'cflag-key','keywords'
        ,'cflag-val',dmp.keywords /*Mots-clef gestion de type array*/
        ,'adblocker',Boolean(libeUserInfo.softwarer_blocker) ? 'oui' : 'non' /*Présence adblocker actif*/
        ,'abonnement',libeUserInfo.access_level/*Niveau d'abonnement*/
        ,'login_status', libeUserInfo.authenticated ? 'oui' : 'non' /*Statut login*/
        ,'cflag-key','site'
        ,'cflag-val','LIB_WEB'/*sites apps*/
        ,'cflag-key','sous-domaine'
        ,'cflag-val','next.liberation.fr'/*Sous domaine*/
        ,'cflag-key','page_cat1'
        ,'cflag-val',dmp.cat1/*Catégorie page niv.1*/
        ,'cflag-key','page-cats'
        ,'cflag-val',dmp.cats/*gestion de type array*/
        ,'cflag-key','Login_status'
        ,'cflag-val',libeUserInfo.authenticated ? 'oui' : 'non'/*Statut login*/
        ];
        (function(){var td='f7ds.liberation.fr',d=document,l=d.location;if(!l.protocol.indexOf('http')){var
        o=d.createElement('script'),a=d.getElementsByTagName('script')[0],cn=parseInt((new Date()).getTime()/3600000),cj='',cdh=(l.host+td).replace(/[^az]/g,''),cdr=cdh+cdh.toUpperCase(),acdr=cdr.split('');for(var
        i=-1;i<cn%7;i++){cj+=acdr[(cn+i)%acdr.length];}o.type='text/javascript';o.async='async';o.defer='defer';o.src='//'+td+'/'+cj+(cn%8760)+'.js';a.parentNode.insertBefore(o,a);}})();
        /*]]>*/
        </script> 
        <script type="text/javascript">
        //<![CDATA[

        var n_pbt='';
        var nuggrid = encodeURIComponent(top.location.href);
        document.write(
        '<scr' + 'ipt type="text/javascript" src="//asqliberation.nuggad.net/rc?nuggn=400929945&nuggsid=1709843951&nuggrid=' + nuggrid + '"><\/scr' + 'ipt>');
        //]]>
        </script> 
        <script type="text/javascript">
        //<![CDATA[

        // -- Libération -- //

        !function(a,b,c){"use strict";function d(a){var b=e[c]||{};e[c]=b,b[a]||(b[a]=function(){e._queue[c].push({method:a,args:Array.prototype.slice.apply(arguments)})})}var e=a.scimhtiraidem||{},f="init call config push pushDefault addProperties addProperty onFinish onStart _reset".split(" ");e._queue=e._queue||{},e._names=e._names||[],e._names.push(c),e._queue[c]=e._queue[c]||[],e._startTime=(new Date).getTime(),e._snippetVersion="2.0";for(var g=0;g<f.length;g++)d(f[g]);a.scimhtiraidem=e,a[c]=e[c];var h=b.createElement("script");h.setAttribute("type","text/javascript"),h.setAttribute("src","//static.mediarithmics.com/tag/1/tag.min.js"),h.setAttribute("async","true"),b.getElementsByTagName("script")[0].parentNode.appendChild(h)}(window,document,"gravity");

        gravity.init({
        mode: "VISIT",
        site_token: "lib-main17"
        });

        var drProperties = {"page_keywords": "Documentaire,Lib\u00e9ration,Netflix,Arte,Marsha P. Johnson,Alan Moore,France,New York,Cin\u00e9aste,Thriller,Special Air Service,Acteur,Web-s\u00e9rie,Op\u00e9ration Nimrod,Jim Carrey,Winamp,Plan\u00e8te+,Queer,LGBT,Ic\u00f4ne,From Hell,Comique,Etty Buzyn,Bande-annonce,Jefferson Starship,Vieux-croyants,Greenwich Village,V pour Vendetta,Michel Vuillermoz,\u00c9vang\u00e9lisation,Sans-abri,Frein de bicyclette,Cigarette,Allergie,\u00c9tats-Unis,Dieu merci!,Londres,\u00c9douard Baer,Cl\u00e9ment Cogitore,Margaret Thatcher,Vid\u00e9o \u00e0 la demande,Pays de la Loire,Cin\u00e9ma,Brasses,R\u00e9alisateur,10 Downing Street,J\u00e9rusalem,Orange Cin\u00e9happy,M\u00e9got,Long m\u00e9trage,Un grand patron,Droits de l'homme,Baron noir,Ermites dans la ta\u00efga,DVD,Parfum,Financement participatif,R\u00e9volution,Albert Dupontel,S\u00e9nat,Andy Kaufman,Autarcie,Royaume-Uni,Famille Lykov,Brexit,Captures d'\u00e9cran,Jan Kounen,Dobermann,Com\u00e9die-Fran\u00e7aise,Famille,Ta\u00efga,Queen,Prise d'otages des Jeux olympiques de Munich,Pr\u00e9sident de la R\u00e9publique,99 francs,Langue de bois,Milo\u0161 Forman,Torture,Watchmen,Anonymous,Fran\u00e7ois Hollande,The Dead Lands,Mark Strong,Jamie Bell,Nabiha Akkari,Jean-Michel Lahmi,France 3 Limousin,Tournage,\u00c9lys\u00e9e,Cigarette \u00e9lectronique,Billy Elliot,Andy Warhol,Vaudou,Des lendemains qui chantent,Prostitution,Angleterre,Rosa Parks,Bob Zmuda,\u00c9meutes de Stonewall,CNC,MtF,Tabac,Michel Serres,Violence,ADAGP,French Touch,Premier ministre,Canal+,Danse,Man on the Moon,The Great Beyond,Veep,House of Cards,Vassili Peskov", "page_typology": "Article", "page_domain": "next.liberation.fr", "page_title": "Screenshot\u00a0: \u00abVape Wave\u00bb, \u00ab6\u00a0Days\u00bb, \u00abAlphonse Pr\u00e9sident\u00bb\u2026", "page_section": "culture"};

        gravity.push("$page_view", drProperties);

        //]]>
        </script> <!-- Google Tag Manager -->
        <!-- <noscript><iframe src="//www.googletagmanager.com/ns.html?id=GTM-V9PX"
height="0" width="0" style="display:none;visibility:hidden"></iframe></noscript>
<script>(function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({'gtm.start':
new Date().getTime(),event:'gtm.js'});var f=d.getElementsByTagName(s)[0],
j=d.createElement(s),dl=l!='dataLayer'?'&l='+l:'';j.async=true;j.src=
'//www.googletagmanager.com/gtm.js?id='+i+dl;f.parentNode.insertBefore(j,f);
})(window,document,'script','dataLayer','GTM-V9PX');</script> -->
        <!-- End Google Tag Manager -->
         <!-- Twitter universal website tag code -->
        <script>
        <![CDATA[

        !function(e,t,n,s,u,a){e.twq||(s=e.twq=function(){s.exe?s.exe.apply(s,arguments):s.queue.push(arguments);
        },s.version='1.1',s.queue=[],u=t.createElement(n),u.async=!0,u.src='//static.ads-twitter.com/uwt.js',
        a=t.getElementsByTagName(n)[0],a.parentNode.insertBefore(u,a))}(window,document,'script');
        // Insert Twitter Pixel ID and Standard Event data below
        twq('init','nx3h2');
        twq('track','PageView');
        ]]>
        </script> <!-- End Twitter universal website tag code -->
         <!-- Facebook Pixel Code -->
        <script>
        <![CDATA[

        !function(f,b,e,v,n,t,s){if(f.fbq)return;n=f.fbq=function(){n.callMethod?
        n.callMethod.apply(n,arguments):n.queue.push(arguments)};if(!f._fbq)f._fbq=n;
        n.push=n;n.loaded=!0;n.version='2.0';n.queue=[];t=b.createElement(e);t.async=!0;
        t.src=v;s=b.getElementsByTagName(e)[0];s.parentNode.insertBefore(t,s)}(window,
        document,'script','https://connect.facebook.net/en_US/fbevents.js');
        fbq('init', '342040669704613'); // Insert your pixel ID here.
        fbq('track', 'PageView');
        ]]>
        </script> <noscript><img height="1" width="1" style="display:none" src="https://www.facebook.com/tr?id=342040669704613&amp;ev=PageView&amp;noscript=1" /></noscript> <!-- DO NOT MODIFY -->
        <!-- End Facebook Pixel Code -->
         <!-- Code Google de la balise de remarketing -->
        <script type="text/javascript">

        /* <![CDATA[ */
        var google_conversion_id = 964330869;
        var google_custom_params = window.google_tag_params;
        var google_remarketing_only = true;
        /* ]]> */
        </script> 
        <script type="text/javascript" src="//www.googleadservices.com/pagead/conversion.js"></script> <noscript>
        <div style="display:inline;">
            <img height="1" width="1" style="border-style:none;" alt="" src="//googleads.g.doubleclick.net/pagead/viewthroughconversion/964330869/?guid=ON&amp;script=0" />
        </div></noscript> <!--  Quantcast Tag -->
        <script>
        <![CDATA[

        var ezt = ezt ||[];

        (function(){
        var elem = document.createElement('script');
        elem.src = (document.location.protocol == "https:" ? "https://secure" : "http://pixel") + ".quantserve.com/aquant.js?a=p-9E79g-9qXk8bk";
        elem.async = true;
        elem.type = "text/javascript";
        var scpt = document.getElementsByTagName('script')[0];
        scpt.parentNode.insertBefore(elem,scpt);
        }());


        ezt.push({qacct: 'p-9E79g-9qXk8bk',
           uid: ''
           });
        ]]>
        </script> <noscript><img src="//pixel.quantserve.com/pixel/p-9E79g-9qXk8bk.gif" style="display: none;" border="0" height="1" width="1" alt="Quantcast" /></noscript> <!-- End Quantcast Tag -->
         <!-- Pixel MathTag Tag -->
        <img src="//pixel.mathtag.com/event/img?mt_id=1202018&amp;mt_adid=192531&amp;mt_exem=&amp;mt_excl=&amp;v1=&amp;v2=&amp;v3=&amp;s1=&amp;s2=&amp;s3=" width="1" height="1" /> <!-- End Pixel MathTag Tag-->
         
        <script src="https://dhpikd1t89arn.cloudfront.net/js/include/sharethefacts-v1.js"></script>
    </body>
</html>